diff --git a/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-0f4bb77e-c46f-481f-88eb-a9f64fa32ea41761728358058-2025_10_29-09.59.25.115/source.csv b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-0f4bb77e-c46f-481f-88eb-a9f64fa32ea41761728358058-2025_10_29-09.59.25.115/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..fc4a47af3e70c34cd34590331a669a0cf8462ab3 --- /dev/null +++ b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-0f4bb77e-c46f-481f-88eb-a9f64fa32ea41761728358058-2025_10_29-09.59.25.115/source.csv @@ -0,0 +1,10 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,3,"jasmine/baselines/maskgit/train_dynamics_maskgit.py",0,0,"import os\n\n\nos.environ.setdefault(""XLA_PYTHON_CLIENT_MEM_FRACTION"", ""0.98"")\n\nfrom dataclasses import dataclass, field\nimport itertools\nfrom typing import cast, Optional\n\nimport einops\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax.checkpoint as ocp\nimport numpy as np\nimport dm_pix as pix\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\nimport grain\nimport flax.nnx as nnx\n\nfrom jasmine.models.genie import GenieMaskGIT, restore_genie_components\nfrom jasmine.utils.dataloader import get_dataloader\nfrom jasmine.utils.train_utils import (\n get_lr_schedule,\n count_parameters_by_component,\n print_mem_stats,\n print_compiled_memory_stats,\n print_compiled_cost_analysis,\n)\n\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 200_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 64\n image_width: int = 64\n data_dir: str = """"\n save_ckpt: bool = False\n restore_ckpt: bool = False\n # Optimization\n batch_size: int = 36\n init_lr: float = 0.0\n max_lr: float = 3e-5\n decay_end: float = 0.0\n wsd_decay_steps: int = (\n 20_000 # NOTE: wsd_decay_steps will only be used when using a wsd-schedule\n )\n warmup_steps: int = 5000\n lr_schedule: str = ""wsd"" # supported options: wsd, cos\n # Tokenizer\n tokenizer_dim: int = 512\n tokenizer_ffn_dim: int = 2048\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 16\n tokenizer_num_blocks: int = 4\n tokenizer_num_heads: int = 8\n tokenizer_checkpoint: str = """"\n # LAM\n lam_dim: int = 512\n lam_ffn_dim: int = 2048\n latent_action_dim: int = 32\n num_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 4\n lam_num_heads: int = 8\n lam_checkpoint: str = """"\n # Dynamics\n dyna_dim: int = 512\n dyna_ffn_dim: int = 2048\n dyna_num_blocks: int = 6\n dyna_num_heads: int = 8\n dropout: float = 0.0\n mask_limit: float = 0.5\n z_loss_weight: float = 0.0\n param_dtype = jnp.float32\n dtype = jnp.bfloat16\n use_flash_attention: bool = True\n use_gt_actions: bool = False\n # Logging\n log: bool = True\n entity: str = """"\n project: str = """"\n name: str = ""train_dynamics_maskgit""\n tags: list[str] = field(default_factory=lambda: [""dynamics"", ""maskgit""])\n log_interval: int = 50\n log_image_interval: int = 1000\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 5000\n log_checkpoint_keep_period: int = 20_000\n log_gradients: bool = False\n val_data_dir: str = """"\n val_interval: int = 20_000\n val_steps: int = 50\n eval_full_frame: bool = True\n val_maskgit_steps: int = 25\n val_temperature: float = 1\n val_sample_argmax: bool = False\n wandb_id: str = """"\n\n\ndef build_model(args: Args, rng: jax.Array) -> tuple[GenieMaskGIT, jax.Array]:\n rng, _rng = jax.random.split(rng)\n rngs = nnx.Rngs(_rng)\n genie = GenieMaskGIT(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n tokenizer_ffn_dim=args.tokenizer_ffn_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n lam_ffn_dim=args.lam_ffn_dim,\n latent_action_dim=args.latent_action_dim,\n num_actions=args.num_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n lam_co_train=not args.lam_checkpoint,\n use_gt_actions=args.use_gt_actions,\n # Dynamics\n dyna_type=""maskgit"",\n dyna_dim=args.dyna_dim,\n dyna_ffn_dim=args.dyna_ffn_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n dropout=args.dropout,\n mask_limit=args.mask_limit,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n decode=False,\n rngs=rngs,\n )\n if args.use_gt_actions:\n assert (\n not args.lam_checkpoint\n ), ""Cannot use LAM when using ground-truth actions.""\n else:\n assert genie.lam is not None\n del genie.lam.decoder\n return genie, rng\n\n\ndef build_optimizer(genie: GenieMaskGIT, args: Args) -> nnx.ModelAndOptimizer:\n lr_schedule = get_lr_schedule(\n args.lr_schedule,\n args.init_lr,\n args.max_lr,\n args.decay_end,\n args.num_steps,\n args.warmup_steps,\n args.wsd_decay_steps,\n )\n tx = optax.adamw(\n learning_rate=lr_schedule,\n b1=0.9,\n b2=0.9,\n weight_decay=1e-4,\n mu_dtype=args.param_dtype, # moments in full precision\n )\n optimizer = nnx.ModelAndOptimizer(genie, tx)\n return optimizer\n\n\ndef build_mesh_and_sharding(\n num_devices: int,\n) -> tuple[Mesh, NamedSharding, NamedSharding, NamedSharding]:\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n videos_sharding = NamedSharding(mesh, PartitionSpec(""data"", None, None, None, None))\n actions_sharding = NamedSharding(mesh, PartitionSpec(""data"", None))\n return mesh, replicated_sharding, videos_sharding, actions_sharding\n\n\ndef shard_optimizer_states(\n optimizer: nnx.ModelAndOptimizer, replicated_sharding: NamedSharding\n) -> None:\n model_state = nnx.state(optimizer.model)\n model_sharded_state = jax.lax.with_sharding_constraint(\n model_state, replicated_sharding\n )\n nnx.update(optimizer.model, model_sharded_state)\n optimizer_state = nnx.state(optimizer, nnx.optimizer.OptState)\n optimizer_sharded_state = jax.lax.with_sharding_constraint(\n optimizer_state, replicated_sharding\n )\n nnx.update(optimizer, optimizer_sharded_state)\n\n\ndef build_dataloader(args: Args, data_dir: str) -> grain.DataLoaderIterator:\n image_shape = (args.image_height, args.image_width, args.image_channels)\n array_record_files = [\n os.path.join(data_dir, x)\n for x in os.listdir(data_dir)\n if x.endswith("".array_record"")\n ]\n grain_dataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n args.batch_size,\n *image_shape,\n num_workers=8,\n prefetch_buffer_size=1,\n seed=args.seed,\n )\n initial_state = grain_dataloader._create_initial_state()\n grain_iterator = grain.DataLoaderIterator(grain_dataloader, initial_state)\n return grain_iterator\n\n\ndef build_checkpoint_manager(args: Args) -> Optional[ocp.CheckpointManager]:\n if args.restore_ckpt or args.save_ckpt:\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeSave, ocp.handlers.PyTreeCheckpointHandler\n )\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n handler_registry.add(\n ""train_dataloader_state"",\n grain.checkpoint.CheckpointSave,\n cast(ocp.handlers.CheckpointHandler, grain.checkpoint.CheckpointHandler),\n )\n handler_registry.add(\n ""train_dataloader_state"",\n grain.checkpoint.CheckpointRestore,\n cast(ocp.handlers.CheckpointHandler, grain.checkpoint.CheckpointHandler),\n )\n if args.val_data_dir:\n handler_registry.add(\n ""val_dataloader_state"",\n grain.checkpoint.CheckpointSave,\n cast(\n ocp.handlers.CheckpointHandler, grain.checkpoint.CheckpointHandler\n ),\n )\n handler_registry.add(\n ""val_dataloader_state"",\n grain.checkpoint.CheckpointRestore,\n cast(\n ocp.handlers.CheckpointHandler, grain.checkpoint.CheckpointHandler\n ),\n )\n checkpoint_options = ocp.CheckpointManagerOptions(\n save_interval_steps=args.log_checkpoint_interval,\n max_to_keep=3,\n keep_period=args.log_checkpoint_keep_period,\n step_format_fixed_length=6,\n cleanup_tmp_directories=True,\n )\n checkpoint_manager = ocp.CheckpointManager(\n args.ckpt_dir,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n return checkpoint_manager\n else:\n return None\n\n\ndef restore_or_initialize_components(\n args: Args,\n checkpoint_manager: Optional[ocp.CheckpointManager],\n optimizer: nnx.ModelAndOptimizer,\n train_iterator: grain.DataLoaderIterator,\n rng: jax.Array,\n replicated_sharding: NamedSharding,\n val_iterator: Optional[grain.DataLoaderIterator],\n restore_step: Optional[int] = None,\n) -> tuple[\n int,\n nnx.ModelAndOptimizer,\n grain.DataLoaderIterator,\n grain.DataLoaderIterator,\n jax.Array,\n]:\n step = 0\n if checkpoint_manager and restore_step is None:\n restore_step = checkpoint_manager.latest_step()\n if args.restore_ckpt:\n assert checkpoint_manager is not None\n abstract_optimizer = nnx.eval_shape(lambda: optimizer)\n abstract_optimizer_state = nnx.state(abstract_optimizer)\n if val_iterator:\n restore_args = ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore(abstract_optimizer_state), # type: ignore\n train_dataloader_state=grain.checkpoint.CheckpointRestore(train_iterator), # type: ignore\n val_dataloader_state=grain.checkpoint.CheckpointRestore(val_iterator), # type: ignore\n )\n else:\n restore_args = ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore(abstract_optimizer_state), # type: ignore\n train_dataloader_state=grain.checkpoint.CheckpointRestore(train_iterator), # type: ignore\n )\n restored = checkpoint_manager.restore(\n checkpoint_manager.latest_step(), args=restore_args\n )\n restored_optimizer_state = restored[""model_state""]\n nnx.update(optimizer, restored_optimizer_state)\n train_iterator = restored[""train_dataloader_state""]\n if val_iterator:\n val_iterator = restored[""val_dataloader_state""]\n step = checkpoint_manager.latest_step() or 0\n print(f""Restored dataloader and model state from step {step}"")\n else:\n # Restore from pre-trained tokenizer (and LAM)\n rng, _rng = jax.random.split(rng)\n optimizer = restore_genie_components(\n optimizer, replicated_sharding, _rng, ""vqvae"", args\n )\n return step, optimizer, train_iterator, val_iterator, rng\n\n\ndef _calculate_top_k_accuracy(\n token_logits_BTNV: jax.Array,\n video_tokens_BTN: jax.Array,\n mask_BTN: jax.Array,\n k: int,\n) -> jax.Array:\n _, topk_indices_BTNK = jax.lax.top_k(token_logits_BTNV, k)\n topk_correct = jnp.any(\n topk_indices_BTNK == video_tokens_BTN[..., jnp.newaxis], axis=-1\n )\n topk_acc = (mask_BTN * topk_correct).sum() / mask_BTN.sum()\n return topk_acc\n\n\ndef _calculate_step_metrics(\n outputs: dict[str, jax.Array],\n gt: jax.Array,\n num_actions: int,\n num_patch_latents: int,\n) -> tuple[jax.Array, dict]:\n mask_BTN = outputs[""mask""]\n outputs[""token_logits""] = outputs[""token_logits""].astype(jnp.float32)\n ce_loss = optax.softmax_cross_entropy_with_integer_labels(\n outputs[""token_logits""], outputs[""video_tokens""]\n )\n ce_loss = (mask_BTN * ce_loss).sum() / mask_BTN.sum()\n z_val = jax.nn.logsumexp(outputs[""token_logits""], axis=-1)\n z_loss_metric = (mask_BTN * (z_val**2)).sum() / mask_BTN.sum()\n\n masked_token_top_1_acc = _calculate_top_k_accuracy(\n outputs[""token_logits""], outputs[""video_tokens""], mask_BTN, 1\n )\n masked_token_top_2_acc = _calculate_top_k_accuracy(\n outputs[""token_logits""], outputs[""video_tokens""], mask_BTN, 2\n )\n masked_token_top_5_acc = _calculate_top_k_accuracy(\n outputs[""token_logits""], outputs[""video_tokens""], mask_BTN, 5\n )\n masked_token_top_16_acc = _calculate_top_k_accuracy(\n outputs[""token_logits""], outputs[""video_tokens""], mask_BTN, 16\n )\n\n select_probs = jax.nn.softmax(outputs[""token_logits""])\n gt_val = gt.clip(0, 1).reshape(-1, *gt.shape[2:])\n recon = outputs[""recon""].clip(0, 1).reshape(-1, *outputs[""recon""].shape[2:])\n psnr = jnp.asarray(pix.psnr(gt_val, recon)).mean()\n ssim = jnp.asarray(pix.ssim(gt_val, recon)).mean()\n _, index_counts_tokenizer = jnp.unique_counts(\n jnp.ravel(outputs[""video_tokens""]),\n size=num_patch_latents,\n fill_value=0,\n )\n codebook_usage_tokenizer = (index_counts_tokenizer != 0).mean()\n metrics = dict(\n cross_entropy_loss=ce_loss,\n masked_token_top1_accuracy=masked_token_top_1_acc,\n masked_token_top2_accuracy=masked_token_top_2_acc,\n masked_token_top5_accuracy=masked_token_top_5_acc,\n masked_token_top16_accuracy=masked_token_top_16_acc,\n select_logit=outputs[""token_logits""].max(-1).mean(),\n select_p=select_probs.max(-1).mean(),\n entropy=jax.scipy.special.entr(select_probs).sum(-1).mean(),\n z_loss=z_loss_metric,\n psnr=psnr,\n ssim=ssim,\n codebook_usage_tokenizer=codebook_usage_tokenizer,\n )\n if ""lam_indices"" in outputs.keys():\n _, index_counts_lam = jnp.unique_counts(\n jnp.ravel(outputs[""lam_indices""]),\n size=num_actions,\n fill_value=0,\n )\n codebook_usage_lam = (index_counts_lam != 0).mean()\n metrics[""codebook_usage_lam""] = codebook_usage_lam\n return ce_loss, metrics\n\n\ndef main(args: Args) -> None:\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n rng = jax.random.key(args.seed)\n\n # --- Initialize model ---\n genie, rng = build_model(args, rng)\n _, params, _ = nnx.split(genie, nnx.Param, ...)\n param_counts = count_parameters_by_component(params)\n\n if args.log and jax.process_index() == 0:\n wandb_init_kwargs = {\n ""entity"": args.entity,\n ""project"": args.project,\n ""name"": args.name,\n ""tags"": args.tags,\n ""group"": ""debug"",\n ""config"": args,\n }\n\n if args.wandb_id:\n wandb_init_kwargs.update(\n {\n ""id"": args.wandb_id,\n ""resume"": ""allow"",\n }\n )\n wandb.init(**wandb_init_kwargs)\n\n wandb.config.update({""model_param_count"": param_counts})\n\n print(""Parameter counts:"")\n print(param_counts)\n\n # --- Initialize optimizer ---\n optimizer = build_optimizer(genie, args)\n del genie\n\n # FIXME: switch to create_hybrid_device_mesh for runs spanning multiple nodes\n _, replicated_sharding, videos_sharding, actions_sharding = build_mesh_and_sharding(\n num_devices\n )\n\n shard_optimizer_states(optimizer, replicated_sharding)\n\n # --- Initialize checkpoint manager ---\n checkpoint_manager = build_checkpoint_manager(args)\n\n # --- Create DataLoaderIterator from dataloader ---\n train_iterator = build_dataloader(args, args.data_dir)\n val_iterator = None\n if args.val_data_dir:\n val_iterator = build_dataloader(args, args.val_data_dir)\n\n # --- Restore checkpoint ---\n step, optimizer, train_iterator, val_iterator, rng = (\n restore_or_initialize_components(\n args,\n checkpoint_manager,\n optimizer,\n train_iterator,\n rng,\n replicated_sharding,\n val_iterator,\n )\n )\n\n # --- Define loss and train step (close over args) ---\n def dynamics_loss_fn(\n model: GenieMaskGIT,\n inputs: dict,\n ) -> tuple[jax.Array, tuple[jax.Array, dict]]:\n gt = jnp.asarray(inputs[""videos""], dtype=jnp.float32) / 255.0\n inputs[""videos""] = gt.astype(args.dtype)\n outputs = model(inputs)\n ce_loss, metrics = _calculate_step_metrics(\n outputs, gt, args.num_actions, args.num_patch_latents\n )\n z_loss = metrics[""z_loss""]\n total_loss = ce_loss + args.z_loss_weight * z_loss\n metrics[""total_loss""] = total_loss\n return total_loss, (outputs[""recon""], metrics)\n\n @nnx.jit(donate_argnums=0)\n def train_step(\n optimizer: nnx.ModelAndOptimizer, inputs: dict\n ) -> tuple[jax.Array, jax.Array, dict]:\n def loss_fn(model: GenieMaskGIT) -> tuple[jax.Array, tuple[jax.Array, dict]]:\n model.train()\n return dynamics_loss_fn(model, inputs)\n\n (loss, (recon, metrics)), grads = nnx.value_and_grad(loss_fn, has_aux=True)(\n optimizer.model\n )\n optimizer.update(grads)\n if args.log_gradients:\n metrics[""gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""dynamics""]\n )\n return loss, recon, metrics\n\n @nnx.jit\n def val_step(genie: GenieMaskGIT, inputs: dict) -> dict:\n """"""Evaluate model and compute metrics""""""\n genie.eval()\n gt = jnp.asarray(inputs[""videos""], dtype=jnp.float32) / 255.0\n (loss, (recon, metrics)) = dynamics_loss_fn(genie, inputs)\n val_output = {""loss"": loss, ""recon"": recon, ""metrics"": metrics}\n\n # --- Evaluate full frame prediction (sampling) ---\n if args.eval_full_frame:\n inputs[""videos""] = gt.astype(args.dtype)\n tokenizer_outputs = genie.tokenizer.vq_encode(\n inputs[""videos""], training=False\n )\n tokens_full_frame = tokenizer_outputs[""indices""]\n lam_indices_E = None\n if not args.use_gt_actions:\n lam_indices_E = genie.vq_encode(inputs, training=False)\n inputs[""latent_actions""] = lam_indices_E\n inputs[""videos""] = inputs[""videos""][\n :, :-1\n ] # remove last frame for generation\n recon_full_frame, logits_full_frame = genie.sample_maskgit(\n inputs,\n args.seq_len,\n args.val_maskgit_steps,\n args.val_temperature,\n args.val_sample_argmax,\n )\n # Calculate metrics for the last frame only\n step_outputs = {\n ""recon"": recon_full_frame[:, -1],\n ""token_logits"": logits_full_frame[:, -1],\n ""video_tokens"": tokens_full_frame[:, -1],\n ""mask"": jnp.ones_like(tokens_full_frame[:, -1]),\n }\n if lam_indices_E is not None:\n lam_indices_B = lam_indices_E.reshape((-1, args.seq_len - 1))[:, -1]\n step_outputs[""lam_indices""] = lam_indices_B\n\n loss_full_frame, metrics_full_frame = _calculate_step_metrics(\n step_outputs, gt[:, -1], args.num_actions, args.num_patch_latents\n )\n val_output.update(\n {\n ""loss_full_frame"": loss_full_frame,\n ""recon_full_frame"": recon_full_frame,\n ""metrics_full_frame"": metrics_full_frame,\n }\n )\n return val_output\n\n def calculate_validation_metrics(val_dataloader, genie, rng):\n step = 0\n loss_per_step = []\n metrics_per_step = []\n loss_full_frame_per_step = []\n metrics_full_frame_per_step = []\n batch = None\n recon = None\n recon_full_frame = None\n for batch in val_dataloader:\n rng, _rng_mask = jax.random.split(rng, 2)\n batch[""rng""] = _rng_mask\n val_outputs = val_step(genie, batch)\n loss_per_step.append(val_outputs[""loss""])\n metrics_per_step.append(val_outputs[""metrics""])\n recon = val_outputs[""recon""]\n if args.eval_full_frame:\n loss_full_frame_per_step.append(val_outputs[""loss_full_frame""])\n metrics_full_frame_per_step.append(val_outputs[""metrics_full_frame""])\n recon_full_frame = val_outputs[""recon_full_frame""]\n step += 1\n if step > args.val_steps:\n break\n\n if step < args.val_steps:\n print(\n f""Warning: Your validation dataset is too small to make val_steps many steps. Made {step} steps, expected {args.val_steps}""\n )\n\n val_metrics = {\n f""val_{key}"": np.mean([float(m[key]) for m in metrics_per_step])\n for key in metrics_per_step[0].keys()\n }\n val_metrics[""val_loss""] = np.mean(loss_per_step)\n if args.eval_full_frame:\n val_metrics_full_frame = {\n f""val_full_frame_{key}"": np.mean(\n [float(m[key]) for m in metrics_full_frame_per_step]\n )\n for key in metrics_full_frame_per_step[0].keys()\n }\n val_metrics.update(val_metrics_full_frame)\n val_metrics[""val_full_frame_loss""] = np.mean(loss_full_frame_per_step)\n return val_metrics, batch, recon, recon_full_frame\n\n # --- TRAIN LOOP ---\n dataloader_train = (\n {\n ""videos"": jax.make_array_from_process_local_data(\n videos_sharding, local_data=elem[""videos""]\n ),\n ""actions"": (\n jax.make_array_from_process_local_data(\n actions_sharding, elem[""actions""]\n )\n if args.use_gt_actions\n else None\n ),\n }\n for elem in train_iterator\n )\n dataloader_val = None\n if val_iterator:\n dataloader_val = (\n {\n ""videos"": jax.make_array_from_process_local_data(\n videos_sharding, elem[""videos""]\n ),\n ""actions"": (\n jax.make_array_from_process_local_data(\n actions_sharding, elem[""actions""]\n )\n if args.use_gt_actions\n else None\n ),\n }\n for elem in val_iterator\n )\n if jax.process_index() == 0:\n first_batch = next(dataloader_train)\n first_batch[""rng""] = rng # type: ignore\n compiled = train_step.lower(optimizer, first_batch).compile()\n print_compiled_memory_stats(compiled.memory_analysis())\n print_compiled_cost_analysis(compiled.cost_analysis())\n # Do not skip the first batch during training\n dataloader_train = itertools.chain([first_batch], dataloader_train)\n print(f""Starting training from step {step}..."")\n first_step = step\n while step < args.num_steps:\n for batch in dataloader_train:\n # --- Train step ---\n rng, _rng_mask = jax.random.split(rng, 2)\n batch[""rng""] = _rng_mask\n loss, recon, metrics = train_step(optimizer, batch)\n if step == first_step:\n print_mem_stats(""After params initialized"")\n step += 1\n\n # --- Validation loss ---\n val_results = {}\n if dataloader_val and step % args.val_interval == 0:\n rng, _rng_mask_val = jax.random.split(rng, 2)\n print(""Calculating validation metrics..."")\n val_metrics, val_gt_batch, val_recon, val_recon_full_frame = (\n calculate_validation_metrics(\n dataloader_val, optimizer.model, _rng_mask_val\n )\n )\n print(f""Step {step}, validation loss: {val_metrics['val_loss']}"")\n val_results = {\n ""metrics"": val_metrics,\n ""gt_batch"": val_gt_batch,\n ""recon"": val_recon,\n ""full_frame"": val_recon_full_frame,\n }\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n log_dict = {""loss"": loss, ""step"": step, **metrics}\n if val_results:\n log_dict.update(val_results[""metrics""])\n wandb.log(log_dict)\n if step % args.log_image_interval == 0:\n gt_seq = batch[""videos""][0].astype(jnp.float32) / 255.0\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n if val_results:\n val_results[""gt_seq_val""] = (\n val_results[""gt_batch""][""videos""][0].astype(jnp.float32)\n / 255.0\n )\n val_results[""recon_seq_val""] = val_results[""recon""][0].clip(\n 0, 1\n )\n val_comparison_seq = jnp.concatenate(\n (val_results[""gt_seq_val""], val_results[""recon_seq_val""]),\n axis=1,\n )\n val_results[""val_comparison_seq""] = einops.rearrange(\n val_comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n if args.eval_full_frame:\n val_results[""full_frame_seq_val""] = val_results[\n ""full_frame""\n ][0].clip(0, 1)\n val_results[""val_full_frame_comparison_seq""] = (\n jnp.concatenate(\n (\n val_results[""gt_seq_val""],\n val_results[""full_frame_seq_val""],\n ),\n axis=1,\n )\n )\n val_results[""val_full_frame_comparison_seq""] = (\n einops.rearrange(\n val_results[""val_full_frame_comparison_seq""] * 255,\n ""t h w c -> h (t w) c"",\n )\n )\n # NOTE: Process-dependent control flow deliberately happens\n # after indexing operation since it must not contain code\n # sections that lead to cross-accelerator communication.\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[args.seq_len - 1])),\n recon=wandb.Image(np.asarray(recon_seq[args.seq_len - 1])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n if val_results:\n log_images.update(\n dict(\n val_image=wandb.Image(\n np.asarray(\n val_results[""gt_seq_val""][args.seq_len - 1]\n )\n ),\n val_recon=wandb.Image(\n np.asarray(\n val_results[""recon_seq_val""][\n args.seq_len - 1\n ]\n )\n ),\n val_true_vs_recon=wandb.Image(\n np.asarray(\n val_results[""val_comparison_seq""].astype(\n np.uint8\n )\n )\n ),\n )\n )\n if args.eval_full_frame:\n log_images.update(\n dict(\n val_full_frame=wandb.Image(\n np.asarray(\n val_results[""full_frame_seq_val""][\n args.seq_len - 1\n ]\n )\n ),\n val_true_vs_full_frame=wandb.Image(\n np.asarray(\n val_results[\n ""val_full_frame_comparison_seq""\n ].astype(np.uint8)\n )\n ),\n )\n )\n wandb.log(log_images)\n # --- Checkpointing ---\n if args.save_ckpt and step % args.log_checkpoint_interval == 0:\n assert checkpoint_manager is not None\n optimizer_state = nnx.state(optimizer)\n if val_iterator:\n ckpt_manager_args = ocp.args.Composite(\n model_state=ocp.args.PyTreeSave(optimizer_state), # type: ignore\n train_dataloader_state=grain.checkpoint.CheckpointSave( # type: ignore\n train_iterator # type: ignore\n ),\n val_dataloader_state=grain.checkpoint.CheckpointSave( # type: ignore\n val_iterator # type: ignore\n ),\n )\n else:\n ckpt_manager_args = ocp.args.Composite(\n model_state=ocp.args.PyTreeSave(optimizer_state), # type: ignore\n train_dataloader_state=grain.checkpoint.CheckpointSave( # type: ignore\n train_iterator # type: ignore\n ),\n )\n checkpoint_manager.save(step, args=ckpt_manager_args)\n print(f""Saved checkpoint at step {step}"")\n if step >= args.num_steps:\n break\n\n if checkpoint_manager:\n checkpoint_manager.close()\n\n\nif __name__ == ""__main__"":\n args = tyro.cli(Args)\n main(args)\n",python,tab +2,57,"anysphere.remote-ssh.Remote - SSH",0,0,"2025-10-27 15:18:43.053 [info] Resolving ssh remote authority 'login.haicore.berlin' (Unparsed 'ssh-remote+7b22686f73744e616d65223a226c6f67696e2e686169636f72652e6265726c696e227d') (attempt #1)\n2025-10-27 15:18:43.060 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 15:18:43.060 [info] Using configured platform linux for remote host login.haicore.berlin\n2025-10-27 15:18:43.061 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 15:18:43.063 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_51b6b823-12af-4ceb-9a74-87bac4f40589.sh"" | ssh -T -D 62821 login.haicore.berlin bash --login -c bash\n2025-10-27 15:18:43.063 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_51b6b823-12af-4ceb-9a74-87bac4f40589.sh"" | ssh -T -D 62821 login.haicore.berlin bash --login -c bash\n2025-10-27 15:18:43.063 [info] Started installation script. Waiting for it to finish...\n2025-10-27 15:18:43.063 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 15:18:44.432 [info] (ssh_tunnel) stdout: Configuring Cursor Server on Remote\n\n2025-10-27 15:18:44.434 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/961800067\n\n2025-10-27 15:18:44.474 [info] (ssh_tunnel) stdout: Locking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 15:18:44.480 [info] (ssh_tunnel) stdout: Server script already installed in /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server\nChecking node executable\n\n2025-10-27 15:18:44.485 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-10-27 15:18:44.519 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-27 15:18:44.534 [info] (ssh_tunnel) stdout: Running multiplex server: 3044014 /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js 489663ed-4073-46c6-af01-954cd19d4c05 0\nMultiplex server script is already running /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js. Running processes are 3044014 /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js 489663ed-4073-46c6-af01-954cd19d4c05 0\nReading multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\nMultiplex server token file found\n\n2025-10-27 15:18:44.537 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/961800067/cursor-remote-multiplex.log.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-27 15:18:44.538 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-10-27 15:18:44.545 [info] (ssh_tunnel) stdout: Code server script is already running /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server. Running processes are 3044038 sh /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/961800067/cursor-remote-code.token.c403edc4db82e26fa41a0903d75ac6d0 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\n\n2025-10-27 15:18:44.547 [info] (ssh_tunnel) stdout: Code server log file is /run/user/961800067/cursor-remote-code.log.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 15:18:44.555 [info] (ssh_tunnel) stdout: b3fdd30b1a0b9dc3928aeeb3: start\nexitCode==0==\nnodeExecutable==/home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==33545==\nmultiplexConnectionToken==489663ed-4073-46c6-af01-954cd19d4c05==\ncodeListeningOn==38175==\ncodeConnectionToken==34a65717-7664-485d-8d7e-feb5ff746f08==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n\n2025-10-27 15:18:44.555 [info] (ssh_tunnel) stdout: b3fdd30b1a0b9dc3928aeeb3: end\n\n2025-10-27 15:18:44.557 [info] Server install command exit code: 0\n2025-10-27 15:18:44.557 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_51b6b823-12af-4ceb-9a74-87bac4f40589.sh\n2025-10-27 15:18:44.557 [info] (ssh_tunnel) stdout: Unlocking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 15:18:44.557 [info] [forwarding][code] creating new forwarding server\n2025-10-27 15:18:44.557 [info] [forwarding][code] server listening on 127.0.0.1:62828\n2025-10-27 15:18:44.557 [info] [forwarding][code] Set up server\n2025-10-27 15:18:44.557 [info] [remote-ssh] codeListeningOn (remote=127.0.0.1:38175; local=127.0.0.1:62828) codeConnectionToken: 34a65717-7664-485d-8d7e-feb5ff746f08\n2025-10-27 15:18:44.557 [info] [forwarding][multiplex] creating new forwarding server\n2025-10-27 15:18:44.557 [info] [forwarding][multiplex] server listening on 127.0.0.1:62829\n2025-10-27 15:18:44.557 [info] [forwarding][multiplex] Set up server\n2025-10-27 15:18:44.558 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: 489663ed-4073-46c6-af01-954cd19d4c05\n2025-10-27 15:18:44.558 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:18:44.559 [info] [remote-ssh] Resolved exec server. Socks port: 62821\n2025-10-27 15:18:44.559 [info] Setting up 0 default forwarded ports\n2025-10-27 15:18:44.559 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":62828,""connectionToken"":""34a65717-7664-485d-8d7e-feb5ff746f08"",""extensionHostEnv"":{}}. Socks port: 62821\n2025-10-27 15:18:44.560 [info] [command][a9cc90d4-3f74-4c34-885f-be3458ee8656] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""a9cc90d4-3f74-4c34-885f-be3458ee8656""}\n2025-10-27 15:18:44.562 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][19ec2f0e-833a-4365-b698-2da8fc533b21] received connection request\n2025-10-27 15:18:44.562 [info] (ssh_tunnel) stdout: \n***********************************************************************\n* This terminal is used to establish and maintain the SSH connection. *\n* Closing this terminal will terminate the connection and disconnect *\n* Cursor from the remote server. *\n***********************************************************************\n\n2025-10-27 15:18:44.590 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][19ec2f0e-833a-4365-b698-2da8fc533b21] socks forwarding established\n2025-10-27 15:18:44.607 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][57b3b60e-c0fd-43a0-8759-b6094281db57] received connection request\n2025-10-27 15:18:44.631 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][19ec2f0e-833a-4365-b698-2da8fc533b21] socks connection closed\n2025-10-27 15:18:44.631 [info] [command][a9cc90d4-3f74-4c34-885f-be3458ee8656] Process exited with code 0\n2025-10-27 15:18:44.631 [info] [command][a9cc90d4-3f74-4c34-885f-be3458ee8656] Socket close event received\n2025-10-27 15:18:44.634 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][57b3b60e-c0fd-43a0-8759-b6094281db57] socks forwarding established\n2025-10-27 15:18:44.674 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][fc6b5d7c-eeac-4743-beac-687e60941623] received connection request\n2025-10-27 15:18:44.702 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][fc6b5d7c-eeac-4743-beac-687e60941623] socks forwarding established\n2025-10-27 15:18:44.855 [info] Saved platform linux for remote host login.haicore.berlin\n2025-10-27 15:18:47.459 [info] [tunnel-forwarding][localhost:8888 -> 127.0.0.1:8888] server listening\n2025-10-27 15:18:47.459 [info] Cross binding to [::1]:8888. Originally bound to 127.0.0.1:8888\n2025-10-27 15:18:47.459 [info] [tunnel-forwarding][::1:8888 -> 127.0.0.1:8888] server listening\n2025-10-27 15:18:47.468 [error] [tunnel-forwarding] server threw an error; trying again on port 0 A system error occurred (listen EADDRINUSE: address already in use 127.0.0.1:6006)\n2025-10-27 15:18:47.469 [info] [tunnel-forwarding][localhost:62884 -> localhost:6006] server listening\n2025-10-27 15:18:47.469 [info] Cross binding to [::1]:62884. Originally bound to 127.0.0.1:62884\n2025-10-27 15:18:47.469 [error] [tunnel-forwarding] server threw an error A system error occurred (listen EADDRINUSE: address already in use ::1:6006)\n2025-10-27 15:19:44.632 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:19:44.634 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][6639e79a-24a1-4555-bfff-53db3d077f75] received connection request\n2025-10-27 15:19:44.634 [info] [command][d729e584-c816-40dd-83f5-dfe47b54d5cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d729e584-c816-40dd-83f5-dfe47b54d5cf""}\n2025-10-27 15:19:44.671 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6639e79a-24a1-4555-bfff-53db3d077f75] socks forwarding established\n2025-10-27 15:19:44.703 [info] [command][d729e584-c816-40dd-83f5-dfe47b54d5cf] Process exited with code 0\n2025-10-27 15:19:44.703 [info] [command][d729e584-c816-40dd-83f5-dfe47b54d5cf] Socket close event received\n2025-10-27 15:19:44.703 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6639e79a-24a1-4555-bfff-53db3d077f75] socks connection closed\n2025-10-27 15:19:54.940 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][ea45699b-1b65-4ec0-956c-4b8f5ba9c19a] received connection request\n2025-10-27 15:19:55.024 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][ea45699b-1b65-4ec0-956c-4b8f5ba9c19a] socks forwarding established\n2025-10-27 15:20:01.092 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][ea45699b-1b65-4ec0-956c-4b8f5ba9c19a] socks connection closed\n2025-10-27 15:20:13.283 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][4ff201fe-7def-4fa5-a6da-741ca809aa4b] received connection request\n2025-10-27 15:20:13.323 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][4ff201fe-7def-4fa5-a6da-741ca809aa4b] socks forwarding established\n2025-10-27 15:20:19.353 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][4ff201fe-7def-4fa5-a6da-741ca809aa4b] socks connection closed\n2025-10-27 15:20:44.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:20:44.707 [info] [command][fe0ea855-0f20-42c3-abf5-c2127a462c58] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""fe0ea855-0f20-42c3-abf5-c2127a462c58""}\n2025-10-27 15:20:44.708 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][cdf39fda-0b69-48e8-9cf1-1d7c4ea53d2d] received connection request\n2025-10-27 15:20:44.749 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][cdf39fda-0b69-48e8-9cf1-1d7c4ea53d2d] socks forwarding established\n2025-10-27 15:20:44.775 [info] [command][fe0ea855-0f20-42c3-abf5-c2127a462c58] Process exited with code 0\n2025-10-27 15:20:44.776 [info] [command][fe0ea855-0f20-42c3-abf5-c2127a462c58] Socket close event received\n2025-10-27 15:20:44.776 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][cdf39fda-0b69-48e8-9cf1-1d7c4ea53d2d] socks connection closed\n2025-10-27 15:21:44.781 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:21:44.783 [info] [command][dc33735f-0a40-4587-856f-ff345d6f2787] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""dc33735f-0a40-4587-856f-ff345d6f2787""}\n2025-10-27 15:21:44.783 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7db8fd42-df5c-4f12-8d63-d01513d6aa02] received connection request\n2025-10-27 15:21:44.832 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7db8fd42-df5c-4f12-8d63-d01513d6aa02] socks forwarding established\n2025-10-27 15:21:44.884 [info] [command][dc33735f-0a40-4587-856f-ff345d6f2787] Process exited with code 0\n2025-10-27 15:21:44.884 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7db8fd42-df5c-4f12-8d63-d01513d6aa02] socks connection closed\n2025-10-27 15:21:44.884 [info] [command][dc33735f-0a40-4587-856f-ff345d6f2787] Socket close event received\n2025-10-27 15:22:44.890 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:22:44.892 [info] [command][cbe7cb29-59c4-419f-b327-a25a347eb3a4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""cbe7cb29-59c4-419f-b327-a25a347eb3a4""}\n2025-10-27 15:22:44.892 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][87616fa7-102b-42cb-8114-99d6aaa290ad] received connection request\n2025-10-27 15:22:45.010 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][87616fa7-102b-42cb-8114-99d6aaa290ad] socks forwarding established\n2025-10-27 15:22:45.040 [info] [command][cbe7cb29-59c4-419f-b327-a25a347eb3a4] Process exited with code 0\n2025-10-27 15:22:45.041 [info] [command][cbe7cb29-59c4-419f-b327-a25a347eb3a4] Socket close event received\n2025-10-27 15:22:45.041 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][87616fa7-102b-42cb-8114-99d6aaa290ad] socks connection closed\n2025-10-27 15:23:45.047 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:23:45.049 [info] [command][cb62ebde-256b-4d97-9bba-c4c457803c3f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""cb62ebde-256b-4d97-9bba-c4c457803c3f""}\n2025-10-27 15:23:45.050 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][4361ee7c-54fb-41aa-b755-70d598f523c5] received connection request\n2025-10-27 15:23:45.125 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4361ee7c-54fb-41aa-b755-70d598f523c5] socks forwarding established\n2025-10-27 15:23:45.202 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4361ee7c-54fb-41aa-b755-70d598f523c5] socks connection closed\n2025-10-27 15:23:45.202 [info] [command][cb62ebde-256b-4d97-9bba-c4c457803c3f] Process exited with code 0\n2025-10-27 15:23:45.202 [info] [command][cb62ebde-256b-4d97-9bba-c4c457803c3f] Socket close event received\n2025-10-27 15:24:11.026 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][d3b3e3cc-b484-4e98-a524-6aa2791e4a25] received connection request\n2025-10-27 15:24:11.055 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][d3b3e3cc-b484-4e98-a524-6aa2791e4a25] socks forwarding established\n2025-10-27 15:24:17.084 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][d3b3e3cc-b484-4e98-a524-6aa2791e4a25] socks connection closed\n2025-10-27 15:24:45.203 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:24:45.204 [info] [command][65d039ac-03e8-4bbe-ad01-14c2b1814271] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""65d039ac-03e8-4bbe-ad01-14c2b1814271""}\n2025-10-27 15:24:45.205 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][45f1b6b9-e473-4b5b-b05d-e1a508358f9c] received connection request\n2025-10-27 15:24:45.233 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][45f1b6b9-e473-4b5b-b05d-e1a508358f9c] socks forwarding established\n2025-10-27 15:24:45.285 [info] [command][65d039ac-03e8-4bbe-ad01-14c2b1814271] Process exited with code 0\n2025-10-27 15:24:45.285 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][45f1b6b9-e473-4b5b-b05d-e1a508358f9c] socks connection closed\n2025-10-27 15:24:45.285 [info] [command][65d039ac-03e8-4bbe-ad01-14c2b1814271] Socket close event received\n2025-10-27 15:25:45.291 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:25:45.293 [info] [command][5bcff89d-aba6-4837-a75a-670a34877f7e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5bcff89d-aba6-4837-a75a-670a34877f7e""}\n2025-10-27 15:25:45.293 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ff2af4d2-ab75-44e0-ad49-fae1d3990ddb] received connection request\n2025-10-27 15:25:45.329 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ff2af4d2-ab75-44e0-ad49-fae1d3990ddb] socks forwarding established\n2025-10-27 15:25:45.402 [info] [command][5bcff89d-aba6-4837-a75a-670a34877f7e] Process exited with code 0\n2025-10-27 15:25:45.402 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ff2af4d2-ab75-44e0-ad49-fae1d3990ddb] socks connection closed\n2025-10-27 15:25:45.402 [info] [command][5bcff89d-aba6-4837-a75a-670a34877f7e] Socket close event received\n2025-10-27 15:26:45.407 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:26:45.409 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][15457b29-5048-453a-b1ec-3067d85e7c99] received connection request\n2025-10-27 15:26:45.410 [info] [command][38bed1a2-e827-4816-b7ae-27aa71edba4f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""38bed1a2-e827-4816-b7ae-27aa71edba4f""}\n2025-10-27 15:26:45.513 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][15457b29-5048-453a-b1ec-3067d85e7c99] socks forwarding established\n2025-10-27 15:26:45.548 [info] [command][38bed1a2-e827-4816-b7ae-27aa71edba4f] Process exited with code 0\n2025-10-27 15:26:45.548 [info] [command][38bed1a2-e827-4816-b7ae-27aa71edba4f] Socket close event received\n2025-10-27 15:26:45.548 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][15457b29-5048-453a-b1ec-3067d85e7c99] socks connection closed\n2025-10-27 15:27:45.550 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:27:45.551 [info] [command][b5102041-0803-402e-9590-f511044dc917] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b5102041-0803-402e-9590-f511044dc917""}\n2025-10-27 15:27:45.552 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][f7b1babb-e3e8-44d4-b512-e450974defa9] received connection request\n2025-10-27 15:27:45.618 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f7b1babb-e3e8-44d4-b512-e450974defa9] socks forwarding established\n2025-10-27 15:27:45.672 [info] [command][b5102041-0803-402e-9590-f511044dc917] Process exited with code 0\n2025-10-27 15:27:45.672 [info] [command][b5102041-0803-402e-9590-f511044dc917] Socket close event received\n2025-10-27 15:27:45.675 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f7b1babb-e3e8-44d4-b512-e450974defa9] socks connection closed\n2025-10-27 15:28:45.674 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:28:45.677 [info] [command][5a3f1e08-f7af-464b-aecf-cab831903a66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5a3f1e08-f7af-464b-aecf-cab831903a66""}\n2025-10-27 15:28:45.677 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][39217d8f-06f4-4415-a93c-9119d321b68e] received connection request\n2025-10-27 15:28:45.821 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][39217d8f-06f4-4415-a93c-9119d321b68e] socks forwarding established\n2025-10-27 15:28:45.866 [info] [command][5a3f1e08-f7af-464b-aecf-cab831903a66] Process exited with code 0\n2025-10-27 15:28:45.866 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][39217d8f-06f4-4415-a93c-9119d321b68e] socks connection closed\n2025-10-27 15:28:45.866 [info] [command][5a3f1e08-f7af-464b-aecf-cab831903a66] Socket close event received\n2025-10-27 15:29:45.872 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:29:45.875 [info] [command][b82cbe84-d5d2-4f75-9da0-791cda1dce5a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b82cbe84-d5d2-4f75-9da0-791cda1dce5a""}\n2025-10-27 15:29:45.876 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][be231313-c390-4e6f-93a9-6b85b5b6adb1] received connection request\n2025-10-27 15:29:45.955 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][be231313-c390-4e6f-93a9-6b85b5b6adb1] socks forwarding established\n2025-10-27 15:29:45.991 [info] [command][b82cbe84-d5d2-4f75-9da0-791cda1dce5a] Process exited with code 0\n2025-10-27 15:29:45.991 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][be231313-c390-4e6f-93a9-6b85b5b6adb1] socks connection closed\n2025-10-27 15:29:45.991 [info] [command][b82cbe84-d5d2-4f75-9da0-791cda1dce5a] Socket close event received\n2025-10-27 15:30:45.993 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:30:45.995 [info] [command][218c919f-cfe6-406b-a12b-36e5922faee6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""218c919f-cfe6-406b-a12b-36e5922faee6""}\n2025-10-27 15:30:45.996 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2389066e-c3bb-46ec-bf9c-543aed6d71c5] received connection request\n2025-10-27 15:30:46.108 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2389066e-c3bb-46ec-bf9c-543aed6d71c5] socks forwarding established\n2025-10-27 15:30:46.182 [info] [command][218c919f-cfe6-406b-a12b-36e5922faee6] Process exited with code 0\n2025-10-27 15:30:46.182 [info] [command][218c919f-cfe6-406b-a12b-36e5922faee6] Socket close event received\n2025-10-27 15:30:46.208 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2389066e-c3bb-46ec-bf9c-543aed6d71c5] socks connection closed\n2025-10-27 15:31:46.184 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:31:46.186 [info] [command][4f9cf2d1-8159-4ae0-bd1f-28828d2b889c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4f9cf2d1-8159-4ae0-bd1f-28828d2b889c""}\n2025-10-27 15:31:46.187 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b7a230d2-0ae1-42b4-acdf-a33c046edb1f] received connection request\n2025-10-27 15:31:46.219 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b7a230d2-0ae1-42b4-acdf-a33c046edb1f] socks forwarding established\n2025-10-27 15:31:46.279 [info] [command][4f9cf2d1-8159-4ae0-bd1f-28828d2b889c] Process exited with code 0\n2025-10-27 15:31:46.279 [info] [command][4f9cf2d1-8159-4ae0-bd1f-28828d2b889c] Socket close event received\n2025-10-27 15:31:46.282 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b7a230d2-0ae1-42b4-acdf-a33c046edb1f] socks connection closed\n2025-10-27 15:32:46.280 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:32:46.282 [info] [command][6cdf0cba-35de-4373-adca-820469897181] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6cdf0cba-35de-4373-adca-820469897181""}\n2025-10-27 15:32:46.282 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7b3f0cd9-82e5-4bd7-bd5d-be39c8178779] received connection request\n2025-10-27 15:32:46.435 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7b3f0cd9-82e5-4bd7-bd5d-be39c8178779] socks forwarding established\n2025-10-27 15:32:46.596 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7b3f0cd9-82e5-4bd7-bd5d-be39c8178779] socks connection closed\n2025-10-27 15:32:46.596 [info] [command][6cdf0cba-35de-4373-adca-820469897181] Process exited with code 0\n2025-10-27 15:32:46.596 [info] [command][6cdf0cba-35de-4373-adca-820469897181] Socket close event received\n2025-10-27 15:33:46.598 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:33:46.600 [info] [command][ea273b78-2e40-4e70-b4b9-07b2d9ac3333] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ea273b78-2e40-4e70-b4b9-07b2d9ac3333""}\n2025-10-27 15:33:46.601 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a3a5da4e-901d-4666-b843-7702edd0dd27] received connection request\n2025-10-27 15:33:46.740 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a3a5da4e-901d-4666-b843-7702edd0dd27] socks forwarding established\n2025-10-27 15:33:46.825 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a3a5da4e-901d-4666-b843-7702edd0dd27] socks connection closed\n2025-10-27 15:33:46.826 [info] [command][ea273b78-2e40-4e70-b4b9-07b2d9ac3333] Process exited with code 0\n2025-10-27 15:33:46.826 [info] [command][ea273b78-2e40-4e70-b4b9-07b2d9ac3333] Socket close event received\n2025-10-27 15:34:46.827 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:34:46.829 [info] [command][a8f7b813-f385-40e7-a13f-84e56e5904ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""a8f7b813-f385-40e7-a13f-84e56e5904ab""}\n2025-10-27 15:34:46.829 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][f532af2c-acf2-4ea4-af72-e1a358ec7c53] received connection request\n2025-10-27 15:34:46.867 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f532af2c-acf2-4ea4-af72-e1a358ec7c53] socks forwarding established\n2025-10-27 15:34:46.905 [info] [command][a8f7b813-f385-40e7-a13f-84e56e5904ab] Process exited with code 0\n2025-10-27 15:34:46.905 [info] [command][a8f7b813-f385-40e7-a13f-84e56e5904ab] Socket close event received\n2025-10-27 15:34:46.909 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f532af2c-acf2-4ea4-af72-e1a358ec7c53] socks connection closed\n2025-10-27 15:35:46.908 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:35:46.931 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d3dfead0-09da-4b8a-8493-c0763554b940] received connection request\n2025-10-27 15:35:46.931 [info] [command][dc136d6d-a4c4-4e44-b7ab-a59bb5d98932] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""dc136d6d-a4c4-4e44-b7ab-a59bb5d98932""}\n2025-10-27 15:35:47.022 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d3dfead0-09da-4b8a-8493-c0763554b940] socks forwarding established\n2025-10-27 15:35:47.241 [info] [command][dc136d6d-a4c4-4e44-b7ab-a59bb5d98932] Process exited with code 0\n2025-10-27 15:35:47.241 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d3dfead0-09da-4b8a-8493-c0763554b940] socks connection closed\n2025-10-27 15:35:47.241 [info] [command][dc136d6d-a4c4-4e44-b7ab-a59bb5d98932] Socket close event received\n2025-10-27 15:36:47.242 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:36:47.243 [info] [command][9acc4966-e063-47fd-b568-d3a51258aae7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""9acc4966-e063-47fd-b568-d3a51258aae7""}\n2025-10-27 15:36:47.243 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a77fa41f-b7bb-4a3e-a9b1-542386beee95] received connection request\n2025-10-27 15:36:47.279 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a77fa41f-b7bb-4a3e-a9b1-542386beee95] socks forwarding established\n2025-10-27 15:36:47.324 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a77fa41f-b7bb-4a3e-a9b1-542386beee95] socks connection closed\n2025-10-27 15:36:47.324 [info] [command][9acc4966-e063-47fd-b568-d3a51258aae7] Process exited with code 0\n2025-10-27 15:36:47.324 [info] [command][9acc4966-e063-47fd-b568-d3a51258aae7] Socket close event received\n2025-10-27 15:37:47.328 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:37:47.331 [info] [command][61136625-8d88-4dc3-8379-c71d88036a76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""61136625-8d88-4dc3-8379-c71d88036a76""}\n2025-10-27 15:37:47.331 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][61ca5d57-95c0-4766-8bec-ce326cd070b5] received connection request\n2025-10-27 15:37:47.373 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][61ca5d57-95c0-4766-8bec-ce326cd070b5] socks forwarding established\n2025-10-27 15:37:47.408 [info] [command][61136625-8d88-4dc3-8379-c71d88036a76] Process exited with code 0\n2025-10-27 15:37:47.408 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][61ca5d57-95c0-4766-8bec-ce326cd070b5] socks connection closed\n2025-10-27 15:37:47.408 [info] [command][61136625-8d88-4dc3-8379-c71d88036a76] Socket close event received\n2025-10-27 15:38:47.412 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:38:47.414 [info] [command][1cfee653-2a6a-4431-b98b-61e285b2b2e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""1cfee653-2a6a-4431-b98b-61e285b2b2e4""}\n2025-10-27 15:38:47.414 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][70fac75d-9a2b-49ec-881f-b934a6b90443] received connection request\n2025-10-27 15:38:47.451 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][70fac75d-9a2b-49ec-881f-b934a6b90443] socks forwarding established\n2025-10-27 15:38:47.487 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][70fac75d-9a2b-49ec-881f-b934a6b90443] socks connection closed\n2025-10-27 15:38:47.488 [info] [command][1cfee653-2a6a-4431-b98b-61e285b2b2e4] Process exited with code 0\n2025-10-27 15:38:47.488 [info] [command][1cfee653-2a6a-4431-b98b-61e285b2b2e4] Socket close event received\n2025-10-27 15:39:47.489 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:39:47.492 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2e671570-fc4d-4772-89a9-7a7092f75e28] received connection request\n2025-10-27 15:39:47.493 [info] [command][e9981c7e-339d-4c99-b522-3f405de9741a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""e9981c7e-339d-4c99-b522-3f405de9741a""}\n2025-10-27 15:39:47.565 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2e671570-fc4d-4772-89a9-7a7092f75e28] socks forwarding established\n2025-10-27 15:39:47.625 [info] [command][e9981c7e-339d-4c99-b522-3f405de9741a] Process exited with code 0\n2025-10-27 15:39:47.625 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2e671570-fc4d-4772-89a9-7a7092f75e28] socks connection closed\n2025-10-27 15:39:47.626 [info] [command][e9981c7e-339d-4c99-b522-3f405de9741a] Socket close event received\n2025-10-27 15:40:47.626 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:40:47.627 [info] [command][30efd398-2105-426c-8e1b-afa8f057fed9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""30efd398-2105-426c-8e1b-afa8f057fed9""}\n2025-10-27 15:40:47.627 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0f7c2474-5617-4f7b-9372-aa3fffa6e5d0] received connection request\n2025-10-27 15:40:47.705 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0f7c2474-5617-4f7b-9372-aa3fffa6e5d0] socks forwarding established\n2025-10-27 15:40:47.775 [info] [command][30efd398-2105-426c-8e1b-afa8f057fed9] Process exited with code 0\n2025-10-27 15:40:47.775 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0f7c2474-5617-4f7b-9372-aa3fffa6e5d0] socks connection closed\n2025-10-27 15:40:47.775 [info] [command][30efd398-2105-426c-8e1b-afa8f057fed9] Socket close event received\n2025-10-27 15:41:47.780 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:41:47.781 [info] [command][6627b623-2056-4056-a003-2c72ac635b27] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6627b623-2056-4056-a003-2c72ac635b27""}\n2025-10-27 15:41:47.782 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][9fc25754-1036-45fe-8a3a-5c08c9a45456] received connection request\n2025-10-27 15:41:47.840 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9fc25754-1036-45fe-8a3a-5c08c9a45456] socks forwarding established\n2025-10-27 15:41:47.937 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9fc25754-1036-45fe-8a3a-5c08c9a45456] socks connection closed\n2025-10-27 15:41:47.937 [info] [command][6627b623-2056-4056-a003-2c72ac635b27] Process exited with code 0\n2025-10-27 15:41:47.937 [info] [command][6627b623-2056-4056-a003-2c72ac635b27] Socket close event received\n2025-10-27 15:42:47.942 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:42:47.945 [info] [command][55ed684e-8af3-44fa-b708-332d98ae8230] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""55ed684e-8af3-44fa-b708-332d98ae8230""}\n2025-10-27 15:42:47.945 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0c541290-ce38-424d-9c8f-383f9581fc65] received connection request\n2025-10-27 15:42:48.090 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0c541290-ce38-424d-9c8f-383f9581fc65] socks forwarding established\n2025-10-27 15:42:48.177 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0c541290-ce38-424d-9c8f-383f9581fc65] socks connection closed\n2025-10-27 15:42:48.177 [info] [command][55ed684e-8af3-44fa-b708-332d98ae8230] Process exited with code 0\n2025-10-27 15:42:48.177 [info] [command][55ed684e-8af3-44fa-b708-332d98ae8230] Socket close event received\n2025-10-27 15:43:48.181 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:43:48.182 [info] [command][f697911a-6b78-496c-ae27-bcfd3e48e0fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f697911a-6b78-496c-ae27-bcfd3e48e0fa""}\n2025-10-27 15:43:48.182 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][8bfa460b-d8a1-49cf-b9c4-7933cc8c60ce] received connection request\n2025-10-27 15:43:48.250 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8bfa460b-d8a1-49cf-b9c4-7933cc8c60ce] socks forwarding established\n2025-10-27 15:43:48.316 [info] [command][f697911a-6b78-496c-ae27-bcfd3e48e0fa] Process exited with code 0\n2025-10-27 15:43:48.316 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8bfa460b-d8a1-49cf-b9c4-7933cc8c60ce] socks connection closed\n2025-10-27 15:43:48.316 [info] [command][f697911a-6b78-496c-ae27-bcfd3e48e0fa] Socket close event received\n2025-10-27 15:44:48.318 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:44:48.319 [info] [command][b38186d4-46bd-4cc9-9032-ae3e54f09ef0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b38186d4-46bd-4cc9-9032-ae3e54f09ef0""}\n2025-10-27 15:44:48.320 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][6ff809f3-b158-4761-a17c-83c505866675] received connection request\n2025-10-27 15:44:48.346 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6ff809f3-b158-4761-a17c-83c505866675] socks forwarding established\n2025-10-27 15:44:48.375 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6ff809f3-b158-4761-a17c-83c505866675] socks connection closed\n2025-10-27 15:44:48.375 [info] [command][b38186d4-46bd-4cc9-9032-ae3e54f09ef0] Process exited with code 0\n2025-10-27 15:44:48.375 [info] [command][b38186d4-46bd-4cc9-9032-ae3e54f09ef0] Socket close event received\n2025-10-27 15:45:48.401 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:45:48.402 [info] [command][f0863a53-7bf4-4a5f-a9b0-5d40a38a7b52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f0863a53-7bf4-4a5f-a9b0-5d40a38a7b52""}\n2025-10-27 15:45:48.402 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][cb4fda80-a4fd-4827-88cd-2b72efe9cca6] received connection request\n2025-10-27 15:45:48.442 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][cb4fda80-a4fd-4827-88cd-2b72efe9cca6] socks forwarding established\n2025-10-27 15:45:48.471 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][cb4fda80-a4fd-4827-88cd-2b72efe9cca6] socks connection closed\n2025-10-27 15:45:48.471 [info] [command][f0863a53-7bf4-4a5f-a9b0-5d40a38a7b52] Process exited with code 0\n2025-10-27 15:45:48.471 [info] [command][f0863a53-7bf4-4a5f-a9b0-5d40a38a7b52] Socket close event received\n2025-10-27 15:46:48.473 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:46:48.474 [info] [command][d072ab20-bdbc-4e3f-b6fa-98582a84cd30] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d072ab20-bdbc-4e3f-b6fa-98582a84cd30""}\n2025-10-27 15:46:48.474 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][55534cec-7565-4d35-bd8a-f9074389c16f] received connection request\n2025-10-27 15:46:48.531 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][55534cec-7565-4d35-bd8a-f9074389c16f] socks forwarding established\n2025-10-27 15:46:48.595 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][55534cec-7565-4d35-bd8a-f9074389c16f] socks connection closed\n2025-10-27 15:46:48.596 [info] [command][d072ab20-bdbc-4e3f-b6fa-98582a84cd30] Process exited with code 0\n2025-10-27 15:46:48.596 [info] [command][d072ab20-bdbc-4e3f-b6fa-98582a84cd30] Socket close event received\n2025-10-27 15:47:48.601 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:47:48.603 [info] [command][8ce6ac7f-609d-4f80-9ac2-cabceb50d28e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8ce6ac7f-609d-4f80-9ac2-cabceb50d28e""}\n2025-10-27 15:47:48.604 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][fffcd15f-53ad-4729-9ef2-6be600890e9e] received connection request\n2025-10-27 15:47:48.657 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][fffcd15f-53ad-4729-9ef2-6be600890e9e] socks forwarding established\n2025-10-27 15:47:48.688 [info] [command][8ce6ac7f-609d-4f80-9ac2-cabceb50d28e] Process exited with code 0\n2025-10-27 15:47:48.688 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][fffcd15f-53ad-4729-9ef2-6be600890e9e] socks connection closed\n2025-10-27 15:47:48.688 [info] [command][8ce6ac7f-609d-4f80-9ac2-cabceb50d28e] Socket close event received\n2025-10-27 15:48:48.689 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:48:48.691 [info] [command][8f038332-aca6-40f6-8296-2800150a8241] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8f038332-aca6-40f6-8296-2800150a8241""}\n2025-10-27 15:48:48.691 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][6520daf9-907e-4da8-bc6f-c201b8c1803e] received connection request\n2025-10-27 15:48:48.781 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6520daf9-907e-4da8-bc6f-c201b8c1803e] socks forwarding established\n2025-10-27 15:48:48.857 [info] [command][8f038332-aca6-40f6-8296-2800150a8241] Process exited with code 0\n2025-10-27 15:48:48.857 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6520daf9-907e-4da8-bc6f-c201b8c1803e] socks connection closed\n2025-10-27 15:48:48.857 [info] [command][8f038332-aca6-40f6-8296-2800150a8241] Socket close event received\n2025-10-27 15:49:48.862 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:49:48.864 [info] [command][aa7d4db1-78c1-4a47-88fb-eb9927c96a5e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""aa7d4db1-78c1-4a47-88fb-eb9927c96a5e""}\n2025-10-27 15:49:48.864 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ca47032d-c026-4af8-b597-7647bc458754] received connection request\n2025-10-27 15:49:48.911 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ca47032d-c026-4af8-b597-7647bc458754] socks forwarding established\n2025-10-27 15:49:48.938 [info] [command][aa7d4db1-78c1-4a47-88fb-eb9927c96a5e] Process exited with code 0\n2025-10-27 15:49:48.938 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ca47032d-c026-4af8-b597-7647bc458754] socks connection closed\n2025-10-27 15:49:48.938 [info] [command][aa7d4db1-78c1-4a47-88fb-eb9927c96a5e] Socket close event received\n2025-10-27 15:50:48.943 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:50:48.945 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][3c47bd2b-6053-4686-a472-18a766761db2] received connection request\n2025-10-27 15:50:48.945 [info] [command][07e9be42-0147-45fe-bdc9-2d7530bf1e74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""07e9be42-0147-45fe-bdc9-2d7530bf1e74""}\n2025-10-27 15:50:48.989 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3c47bd2b-6053-4686-a472-18a766761db2] socks forwarding established\n2025-10-27 15:50:49.018 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3c47bd2b-6053-4686-a472-18a766761db2] socks connection closed\n2025-10-27 15:50:49.018 [info] [command][07e9be42-0147-45fe-bdc9-2d7530bf1e74] Process exited with code 0\n2025-10-27 15:50:49.018 [info] [command][07e9be42-0147-45fe-bdc9-2d7530bf1e74] Socket close event received\n2025-10-27 15:51:49.022 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:51:49.023 [info] [command][2d8ec864-c501-4d75-82f5-c03ba1b01b27] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""2d8ec864-c501-4d75-82f5-c03ba1b01b27""}\n2025-10-27 15:51:49.024 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][47029475-f779-4a5b-8ccb-a001d604502c] received connection request\n2025-10-27 15:51:49.080 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][47029475-f779-4a5b-8ccb-a001d604502c] socks forwarding established\n2025-10-27 15:51:49.114 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][47029475-f779-4a5b-8ccb-a001d604502c] socks connection closed\n2025-10-27 15:51:49.115 [info] [command][2d8ec864-c501-4d75-82f5-c03ba1b01b27] Process exited with code 0\n2025-10-27 15:51:49.115 [info] [command][2d8ec864-c501-4d75-82f5-c03ba1b01b27] Socket close event received\n2025-10-27 15:52:49.118 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:52:49.120 [info] [command][586a4b56-a467-4c3b-82be-b4a461141d5c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""586a4b56-a467-4c3b-82be-b4a461141d5c""}\n2025-10-27 15:52:49.121 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][8bed6dcf-9b13-4408-b18b-304068a9b67b] received connection request\n2025-10-27 15:52:49.224 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8bed6dcf-9b13-4408-b18b-304068a9b67b] socks forwarding established\n2025-10-27 15:52:49.295 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8bed6dcf-9b13-4408-b18b-304068a9b67b] socks connection closed\n2025-10-27 15:52:49.295 [info] [command][586a4b56-a467-4c3b-82be-b4a461141d5c] Process exited with code 0\n2025-10-27 15:52:49.296 [info] [command][586a4b56-a467-4c3b-82be-b4a461141d5c] Socket close event received\n2025-10-27 15:53:49.303 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:53:49.305 [info] [command][4ec97290-662b-44bf-97d0-f1bfa7dea781] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4ec97290-662b-44bf-97d0-f1bfa7dea781""}\n2025-10-27 15:53:49.306 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][9344b98f-df95-4424-b66f-f299fd5e46d0] received connection request\n2025-10-27 15:53:49.457 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9344b98f-df95-4424-b66f-f299fd5e46d0] socks forwarding established\n2025-10-27 15:53:49.550 [info] [command][4ec97290-662b-44bf-97d0-f1bfa7dea781] Process exited with code 0\n2025-10-27 15:53:49.551 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9344b98f-df95-4424-b66f-f299fd5e46d0] socks connection closed\n2025-10-27 15:53:49.551 [info] [command][4ec97290-662b-44bf-97d0-f1bfa7dea781] Socket close event received\n2025-10-27 15:54:49.557 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:54:49.559 [info] [command][4fdfbe09-b505-4d36-b9b3-1a2104bd9061] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4fdfbe09-b505-4d36-b9b3-1a2104bd9061""}\n2025-10-27 15:54:49.560 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2f12acf9-c9b6-4030-b168-daa31429fb37] received connection request\n2025-10-27 15:54:49.607 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2f12acf9-c9b6-4030-b168-daa31429fb37] socks forwarding established\n2025-10-27 15:54:49.648 [info] [command][4fdfbe09-b505-4d36-b9b3-1a2104bd9061] Process exited with code 0\n2025-10-27 15:54:49.648 [info] [command][4fdfbe09-b505-4d36-b9b3-1a2104bd9061] Socket close event received\n2025-10-27 15:54:49.653 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2f12acf9-c9b6-4030-b168-daa31429fb37] socks connection closed\n2025-10-27 15:55:49.652 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:55:49.654 [info] [command][d868c20f-213c-4bc6-83e1-63ae857922c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d868c20f-213c-4bc6-83e1-63ae857922c6""}\n2025-10-27 15:55:49.655 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2562cb0c-3afe-4dfb-9b6c-9ddf7c5210b9] received connection request\n2025-10-27 15:55:49.695 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2562cb0c-3afe-4dfb-9b6c-9ddf7c5210b9] socks forwarding established\n2025-10-27 15:55:49.752 [info] [command][d868c20f-213c-4bc6-83e1-63ae857922c6] Process exited with code 0\n2025-10-27 15:55:49.752 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2562cb0c-3afe-4dfb-9b6c-9ddf7c5210b9] socks connection closed\n2025-10-27 15:55:49.752 [info] [command][d868c20f-213c-4bc6-83e1-63ae857922c6] Socket close event received\n2025-10-27 15:56:49.758 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:56:49.761 [info] [command][61e074ab-1178-4d23-a7e2-55cf3a2bbc6a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""61e074ab-1178-4d23-a7e2-55cf3a2bbc6a""}\n2025-10-27 15:56:49.761 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][3d1b8670-1076-4947-aca6-d838ad1a0cf8] received connection request\n2025-10-27 15:56:49.791 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3d1b8670-1076-4947-aca6-d838ad1a0cf8] socks forwarding established\n2025-10-27 15:56:49.846 [info] [command][61e074ab-1178-4d23-a7e2-55cf3a2bbc6a] Process exited with code 0\n2025-10-27 15:56:49.846 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3d1b8670-1076-4947-aca6-d838ad1a0cf8] socks connection closed\n2025-10-27 15:56:49.846 [info] [command][61e074ab-1178-4d23-a7e2-55cf3a2bbc6a] Socket close event received\n2025-10-27 15:57:49.848 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:57:49.850 [info] [command][3ab5c48e-b5f1-409b-a211-f993cb044847] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""3ab5c48e-b5f1-409b-a211-f993cb044847""}\n2025-10-27 15:57:49.851 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][346bd2a8-af52-418c-a0ac-129d4eaadeb9] received connection request\n2025-10-27 15:57:49.875 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][346bd2a8-af52-418c-a0ac-129d4eaadeb9] socks forwarding established\n2025-10-27 15:57:49.901 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][346bd2a8-af52-418c-a0ac-129d4eaadeb9] socks connection closed\n2025-10-27 15:57:49.901 [info] [command][3ab5c48e-b5f1-409b-a211-f993cb044847] Process exited with code 0\n2025-10-27 15:57:49.901 [info] [command][3ab5c48e-b5f1-409b-a211-f993cb044847] Socket close event received\n2025-10-27 15:58:49.904 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:58:49.905 [info] [command][6a975196-b7e8-401d-a9a1-2312ce395d7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6a975196-b7e8-401d-a9a1-2312ce395d7a""}\n2025-10-27 15:58:49.906 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][655381ff-8910-421e-acc1-7b47524210d9] received connection request\n2025-10-27 15:58:49.960 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][655381ff-8910-421e-acc1-7b47524210d9] socks forwarding established\n2025-10-27 15:58:49.997 [info] [command][6a975196-b7e8-401d-a9a1-2312ce395d7a] Process exited with code 0\n2025-10-27 15:58:49.997 [info] [command][6a975196-b7e8-401d-a9a1-2312ce395d7a] Socket close event received\n2025-10-27 15:58:50.001 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][655381ff-8910-421e-acc1-7b47524210d9] socks connection closed\n2025-10-27 15:59:49.998 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 15:59:50.001 [info] [command][71aa91df-f9e6-4bf3-b1c9-0433356152b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""71aa91df-f9e6-4bf3-b1c9-0433356152b5""}\n2025-10-27 15:59:50.001 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][449491c1-4536-4a9e-85b5-3c3e1c4a83f7] received connection request\n2025-10-27 15:59:50.125 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][449491c1-4536-4a9e-85b5-3c3e1c4a83f7] socks forwarding established\n2025-10-27 15:59:50.165 [info] [command][71aa91df-f9e6-4bf3-b1c9-0433356152b5] Process exited with code 0\n2025-10-27 15:59:50.166 [info] [command][71aa91df-f9e6-4bf3-b1c9-0433356152b5] Socket close event received\n2025-10-27 15:59:50.182 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][449491c1-4536-4a9e-85b5-3c3e1c4a83f7] socks connection closed\n2025-10-27 16:00:50.171 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:00:50.174 [info] [command][3aceb69f-f7f1-4060-a471-76e269107142] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""3aceb69f-f7f1-4060-a471-76e269107142""}\n2025-10-27 16:00:50.175 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d0e3548b-73d2-453c-a95e-6fa0f55e7a22] received connection request\n2025-10-27 16:00:50.218 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d0e3548b-73d2-453c-a95e-6fa0f55e7a22] socks forwarding established\n2025-10-27 16:00:50.246 [info] [command][3aceb69f-f7f1-4060-a471-76e269107142] Process exited with code 0\n2025-10-27 16:00:50.247 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d0e3548b-73d2-453c-a95e-6fa0f55e7a22] socks connection closed\n2025-10-27 16:00:50.247 [info] [command][3aceb69f-f7f1-4060-a471-76e269107142] Socket close event received\n2025-10-27 16:01:50.251 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:01:50.253 [info] [command][cbfa6780-d070-44e4-bcbe-01c76cef182f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""cbfa6780-d070-44e4-bcbe-01c76cef182f""}\n2025-10-27 16:01:50.254 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][509096f2-bd5d-4244-b5c8-07602a3837a5] received connection request\n2025-10-27 16:01:50.473 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][509096f2-bd5d-4244-b5c8-07602a3837a5] socks forwarding established\n2025-10-27 16:01:50.560 [info] [command][cbfa6780-d070-44e4-bcbe-01c76cef182f] Process exited with code 0\n2025-10-27 16:01:50.560 [info] [command][cbfa6780-d070-44e4-bcbe-01c76cef182f] Socket close event received\n2025-10-27 16:01:50.562 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][509096f2-bd5d-4244-b5c8-07602a3837a5] socks connection closed\n2025-10-27 16:02:50.563 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:02:50.566 [info] [command][9cb946b2-f9c0-4ede-863e-38d5c5fd9c06] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""9cb946b2-f9c0-4ede-863e-38d5c5fd9c06""}\n2025-10-27 16:02:50.567 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][e9a74ef3-75c3-476d-9cca-17f852311d9b] received connection request\n2025-10-27 16:02:50.663 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e9a74ef3-75c3-476d-9cca-17f852311d9b] socks forwarding established\n2025-10-27 16:02:50.725 [info] [command][9cb946b2-f9c0-4ede-863e-38d5c5fd9c06] Process exited with code 0\n2025-10-27 16:02:50.726 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e9a74ef3-75c3-476d-9cca-17f852311d9b] socks connection closed\n2025-10-27 16:02:50.726 [info] [command][9cb946b2-f9c0-4ede-863e-38d5c5fd9c06] Socket close event received\n2025-10-27 16:03:50.730 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:03:50.734 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b3de652f-be4e-4d6a-b1d8-1eec6dfe5c5d] received connection request\n2025-10-27 16:03:50.735 [info] [command][88a2a0a1-27d3-4137-b87a-b3334f7137a9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""88a2a0a1-27d3-4137-b87a-b3334f7137a9""}\n2025-10-27 16:03:50.760 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b3de652f-be4e-4d6a-b1d8-1eec6dfe5c5d] socks forwarding established\n2025-10-27 16:03:50.817 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b3de652f-be4e-4d6a-b1d8-1eec6dfe5c5d] socks connection closed\n2025-10-27 16:03:50.817 [info] [command][88a2a0a1-27d3-4137-b87a-b3334f7137a9] Process exited with code 0\n2025-10-27 16:03:50.817 [info] [command][88a2a0a1-27d3-4137-b87a-b3334f7137a9] Socket close event received\n2025-10-27 16:04:50.823 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:04:50.824 [info] [command][7790ab6c-cace-437b-84ca-717d48253101] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""7790ab6c-cace-437b-84ca-717d48253101""}\n2025-10-27 16:04:50.825 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][636ae10e-56eb-4f01-a900-e8b08ce7d3d4] received connection request\n2025-10-27 16:04:50.920 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][636ae10e-56eb-4f01-a900-e8b08ce7d3d4] socks forwarding established\n2025-10-27 16:04:50.976 [info] [command][7790ab6c-cace-437b-84ca-717d48253101] Process exited with code 0\n2025-10-27 16:04:50.976 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][636ae10e-56eb-4f01-a900-e8b08ce7d3d4] socks connection closed\n2025-10-27 16:04:50.976 [info] [command][7790ab6c-cace-437b-84ca-717d48253101] Socket close event received\n2025-10-27 16:05:50.982 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:05:50.985 [info] [command][f1bb7bed-390f-4cd0-ace0-e3b960c8f7d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f1bb7bed-390f-4cd0-ace0-e3b960c8f7d1""}\n2025-10-27 16:05:50.986 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][77f5ed0b-e152-4248-bc9f-27f985a474ff] received connection request\n2025-10-27 16:05:51.028 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][77f5ed0b-e152-4248-bc9f-27f985a474ff] socks forwarding established\n2025-10-27 16:05:51.058 [info] [command][f1bb7bed-390f-4cd0-ace0-e3b960c8f7d1] Process exited with code 0\n2025-10-27 16:05:51.059 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][77f5ed0b-e152-4248-bc9f-27f985a474ff] socks connection closed\n2025-10-27 16:05:51.059 [info] [command][f1bb7bed-390f-4cd0-ace0-e3b960c8f7d1] Socket close event received\n2025-10-27 16:06:51.064 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:06:51.068 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d8bb9a8e-e6e2-4baf-a539-4f08f2a65268] received connection request\n2025-10-27 16:06:51.068 [info] [command][8f631eac-9874-459b-9694-9a068b6f50b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8f631eac-9874-459b-9694-9a068b6f50b1""}\n2025-10-27 16:06:51.179 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d8bb9a8e-e6e2-4baf-a539-4f08f2a65268] socks forwarding established\n2025-10-27 16:06:51.304 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d8bb9a8e-e6e2-4baf-a539-4f08f2a65268] socks connection closed\n2025-10-27 16:06:51.304 [info] [command][8f631eac-9874-459b-9694-9a068b6f50b1] Process exited with code 0\n2025-10-27 16:06:51.304 [info] [command][8f631eac-9874-459b-9694-9a068b6f50b1] Socket close event received\n2025-10-27 16:07:51.306 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:07:51.309 [info] [command][45ba31bc-33c8-4535-a103-8170ade3707a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""45ba31bc-33c8-4535-a103-8170ade3707a""}\n2025-10-27 16:07:51.310 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b87911fb-5185-4155-926f-f8831465de46] received connection request\n2025-10-27 16:07:51.349 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b87911fb-5185-4155-926f-f8831465de46] socks forwarding established\n2025-10-27 16:07:51.411 [info] [command][45ba31bc-33c8-4535-a103-8170ade3707a] Process exited with code 0\n2025-10-27 16:07:51.411 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b87911fb-5185-4155-926f-f8831465de46] socks connection closed\n2025-10-27 16:07:51.411 [info] [command][45ba31bc-33c8-4535-a103-8170ade3707a] Socket close event received\n2025-10-27 16:08:51.417 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:08:51.419 [info] [command][ce07337f-eb0e-4719-a8ed-aa9beb6dbd52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ce07337f-eb0e-4719-a8ed-aa9beb6dbd52""}\n2025-10-27 16:08:51.420 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][015ee3b0-dfc8-4d54-a327-06bb10b14848] received connection request\n2025-10-27 16:08:51.496 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][015ee3b0-dfc8-4d54-a327-06bb10b14848] socks forwarding established\n2025-10-27 16:08:51.538 [info] [command][ce07337f-eb0e-4719-a8ed-aa9beb6dbd52] Process exited with code 0\n2025-10-27 16:08:51.538 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][015ee3b0-dfc8-4d54-a327-06bb10b14848] socks connection closed\n2025-10-27 16:08:51.539 [info] [command][ce07337f-eb0e-4719-a8ed-aa9beb6dbd52] Socket close event received\n2025-10-27 16:09:51.433 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:09:51.435 [info] [command][b1d1f55e-28d5-454b-aa44-1f8e499deaab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b1d1f55e-28d5-454b-aa44-1f8e499deaab""}\n2025-10-27 16:09:51.435 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ff25b862-13d2-41b4-8783-8b7916c11e70] received connection request\n2025-10-27 16:09:51.476 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ff25b862-13d2-41b4-8783-8b7916c11e70] socks forwarding established\n2025-10-27 16:09:51.510 [info] [command][b1d1f55e-28d5-454b-aa44-1f8e499deaab] Process exited with code 0\n2025-10-27 16:09:51.510 [info] [command][b1d1f55e-28d5-454b-aa44-1f8e499deaab] Socket close event received\n2025-10-27 16:09:51.511 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ff25b862-13d2-41b4-8783-8b7916c11e70] socks connection closed\n2025-10-27 16:10:51.513 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:10:51.515 [info] [command][b6566924-85cb-47f0-b733-be3490003156] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b6566924-85cb-47f0-b733-be3490003156""}\n2025-10-27 16:10:51.516 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][41162a8c-769a-4a61-b7cf-288c4d191af6] received connection request\n2025-10-27 16:10:51.593 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][41162a8c-769a-4a61-b7cf-288c4d191af6] socks forwarding established\n2025-10-27 16:10:51.646 [info] [command][b6566924-85cb-47f0-b733-be3490003156] Process exited with code 0\n2025-10-27 16:10:51.647 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][41162a8c-769a-4a61-b7cf-288c4d191af6] socks connection closed\n2025-10-27 16:10:51.647 [info] [command][b6566924-85cb-47f0-b733-be3490003156] Socket close event received\n2025-10-27 16:11:51.647 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:11:51.649 [info] [command][06dd6df5-a0f1-444c-ae1d-86fe9229537f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""06dd6df5-a0f1-444c-ae1d-86fe9229537f""}\n2025-10-27 16:11:51.650 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d36a77b9-90c6-46c0-8159-1b4aac2cf5be] received connection request\n2025-10-27 16:11:51.695 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d36a77b9-90c6-46c0-8159-1b4aac2cf5be] socks forwarding established\n2025-10-27 16:11:51.739 [info] [command][06dd6df5-a0f1-444c-ae1d-86fe9229537f] Process exited with code 0\n2025-10-27 16:11:51.739 [info] [command][06dd6df5-a0f1-444c-ae1d-86fe9229537f] Socket close event received\n2025-10-27 16:11:51.746 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d36a77b9-90c6-46c0-8159-1b4aac2cf5be] socks connection closed\n2025-10-27 16:12:51.743 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:12:51.745 [info] [command][258999fe-bd20-4b17-93cd-f7e6f07c732b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""258999fe-bd20-4b17-93cd-f7e6f07c732b""}\n2025-10-27 16:12:51.746 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][aa12751b-fddc-4fe7-8137-d58da304d763] received connection request\n2025-10-27 16:12:51.806 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][aa12751b-fddc-4fe7-8137-d58da304d763] socks forwarding established\n2025-10-27 16:12:51.849 [info] [command][258999fe-bd20-4b17-93cd-f7e6f07c732b] Process exited with code 0\n2025-10-27 16:12:51.849 [info] [command][258999fe-bd20-4b17-93cd-f7e6f07c732b] Socket close event received\n2025-10-27 16:12:51.850 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][aa12751b-fddc-4fe7-8137-d58da304d763] socks connection closed\n2025-10-27 16:13:51.854 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:13:51.856 [info] [command][48f50b98-94b2-4805-8122-4c24bb955a86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""48f50b98-94b2-4805-8122-4c24bb955a86""}\n2025-10-27 16:13:51.857 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][dca48efb-3b31-4127-8237-656e768ac2c0] received connection request\n2025-10-27 16:13:51.891 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][dca48efb-3b31-4127-8237-656e768ac2c0] socks forwarding established\n2025-10-27 16:13:51.960 [info] [command][48f50b98-94b2-4805-8122-4c24bb955a86] Process exited with code 0\n2025-10-27 16:13:51.960 [info] [command][48f50b98-94b2-4805-8122-4c24bb955a86] Socket close event received\n2025-10-27 16:13:51.977 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][dca48efb-3b31-4127-8237-656e768ac2c0] socks connection closed\n2025-10-27 16:14:51.960 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:14:51.962 [info] [command][56721db9-d2da-4951-9b39-dc33bbde1ee2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""56721db9-d2da-4951-9b39-dc33bbde1ee2""}\n2025-10-27 16:14:51.963 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a96c485f-91af-4918-bfef-7d52daf83f22] received connection request\n2025-10-27 16:14:52.000 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a96c485f-91af-4918-bfef-7d52daf83f22] socks forwarding established\n2025-10-27 16:14:52.027 [info] [command][56721db9-d2da-4951-9b39-dc33bbde1ee2] Process exited with code 0\n2025-10-27 16:14:52.027 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a96c485f-91af-4918-bfef-7d52daf83f22] socks connection closed\n2025-10-27 16:14:52.027 [info] [command][56721db9-d2da-4951-9b39-dc33bbde1ee2] Socket close event received\n2025-10-27 16:15:52.032 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:15:52.035 [info] [command][c7aefd8d-78c1-4314-9b8c-a399b864cd99] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""c7aefd8d-78c1-4314-9b8c-a399b864cd99""}\n2025-10-27 16:15:52.036 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][157f1e0d-141b-4cb2-81de-858e45b4f943] received connection request\n2025-10-27 16:15:52.448 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][157f1e0d-141b-4cb2-81de-858e45b4f943] socks forwarding established\n2025-10-27 16:15:52.547 [info] [command][c7aefd8d-78c1-4314-9b8c-a399b864cd99] Process exited with code 0\n2025-10-27 16:15:52.547 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][157f1e0d-141b-4cb2-81de-858e45b4f943] socks connection closed\n2025-10-27 16:15:52.547 [info] [command][c7aefd8d-78c1-4314-9b8c-a399b864cd99] Socket close event received\n2025-10-27 16:16:52.548 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:16:52.549 [info] [command][4b6a5058-658f-4315-83bc-0c3b07bda3f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4b6a5058-658f-4315-83bc-0c3b07bda3f7""}\n2025-10-27 16:16:52.549 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][31b60511-ba4b-4c03-9638-4a7c1e08aa2b] received connection request\n2025-10-27 16:16:52.576 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][31b60511-ba4b-4c03-9638-4a7c1e08aa2b] socks forwarding established\n2025-10-27 16:16:52.606 [info] [command][4b6a5058-658f-4315-83bc-0c3b07bda3f7] Process exited with code 0\n2025-10-27 16:16:52.606 [info] [command][4b6a5058-658f-4315-83bc-0c3b07bda3f7] Socket close event received\n2025-10-27 16:16:52.607 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][31b60511-ba4b-4c03-9638-4a7c1e08aa2b] socks connection closed\n2025-10-27 16:17:52.610 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:17:52.612 [info] [command][66f96687-31fb-477b-9aed-4fa99fa43f74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""66f96687-31fb-477b-9aed-4fa99fa43f74""}\n2025-10-27 16:17:52.613 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][762b1c54-6522-4a9d-96c1-b832cc0d999a] received connection request\n2025-10-27 16:17:52.636 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][762b1c54-6522-4a9d-96c1-b832cc0d999a] socks forwarding established\n2025-10-27 16:17:52.663 [info] [command][66f96687-31fb-477b-9aed-4fa99fa43f74] Process exited with code 0\n2025-10-27 16:17:52.663 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][762b1c54-6522-4a9d-96c1-b832cc0d999a] socks connection closed\n2025-10-27 16:17:52.663 [info] [command][66f96687-31fb-477b-9aed-4fa99fa43f74] Socket close event received\n2025-10-27 16:18:52.667 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:18:52.670 [info] [command][e0fa6a25-ecde-4a58-881a-d2c63a8a2804] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""e0fa6a25-ecde-4a58-881a-d2c63a8a2804""}\n2025-10-27 16:18:52.671 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][4ca851ed-fe6d-426a-b8d5-2db1afbae1af] received connection request\n2025-10-27 16:18:52.696 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4ca851ed-fe6d-426a-b8d5-2db1afbae1af] socks forwarding established\n2025-10-27 16:18:52.733 [info] [command][e0fa6a25-ecde-4a58-881a-d2c63a8a2804] Process exited with code 0\n2025-10-27 16:18:52.733 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4ca851ed-fe6d-426a-b8d5-2db1afbae1af] socks connection closed\n2025-10-27 16:18:52.733 [info] [command][e0fa6a25-ecde-4a58-881a-d2c63a8a2804] Socket close event received\n2025-10-27 16:19:52.738 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:19:52.741 [info] [command][f6539400-793b-45a2-be1d-a6eda59d95fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f6539400-793b-45a2-be1d-a6eda59d95fa""}\n2025-10-27 16:19:52.741 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][9902239c-2f44-44df-911e-940bdda1a8fd] received connection request\n2025-10-27 16:19:52.768 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9902239c-2f44-44df-911e-940bdda1a8fd] socks forwarding established\n2025-10-27 16:19:52.795 [info] [command][f6539400-793b-45a2-be1d-a6eda59d95fa] Process exited with code 0\n2025-10-27 16:19:52.795 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9902239c-2f44-44df-911e-940bdda1a8fd] socks connection closed\n2025-10-27 16:19:52.795 [info] [command][f6539400-793b-45a2-be1d-a6eda59d95fa] Socket close event received\n2025-10-27 16:20:52.800 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:20:52.802 [info] [command][4b887279-1570-4c3f-9f1a-2cbb078f7d72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4b887279-1570-4c3f-9f1a-2cbb078f7d72""}\n2025-10-27 16:20:52.803 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][45d5a70b-5c11-4f39-a58e-e7b942d759f1] received connection request\n2025-10-27 16:20:52.828 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][45d5a70b-5c11-4f39-a58e-e7b942d759f1] socks forwarding established\n2025-10-27 16:20:52.865 [info] [command][4b887279-1570-4c3f-9f1a-2cbb078f7d72] Process exited with code 0\n2025-10-27 16:20:52.865 [info] [command][4b887279-1570-4c3f-9f1a-2cbb078f7d72] Socket close event received\n2025-10-27 16:20:52.868 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][45d5a70b-5c11-4f39-a58e-e7b942d759f1] socks connection closed\n2025-10-27 16:21:52.870 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:21:52.872 [info] [command][af61d82e-7134-472b-bf6f-b453e856e223] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""af61d82e-7134-472b-bf6f-b453e856e223""}\n2025-10-27 16:21:52.872 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][426829ab-40df-4061-9b9e-2c9631efa6df] received connection request\n2025-10-27 16:21:52.904 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][426829ab-40df-4061-9b9e-2c9631efa6df] socks forwarding established\n2025-10-27 16:21:52.942 [info] [command][af61d82e-7134-472b-bf6f-b453e856e223] Process exited with code 0\n2025-10-27 16:21:52.942 [info] [command][af61d82e-7134-472b-bf6f-b453e856e223] Socket close event received\n2025-10-27 16:21:52.946 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][426829ab-40df-4061-9b9e-2c9631efa6df] socks connection closed\n2025-10-27 16:22:52.944 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:22:52.947 [info] [command][5754069d-ac4b-4ae7-b786-6972707d1887] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5754069d-ac4b-4ae7-b786-6972707d1887""}\n2025-10-27 16:22:52.947 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][3d486827-fa4b-4e8f-b56c-825c70ff4c5f] received connection request\n2025-10-27 16:22:53.012 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3d486827-fa4b-4e8f-b56c-825c70ff4c5f] socks forwarding established\n2025-10-27 16:22:53.040 [info] [command][5754069d-ac4b-4ae7-b786-6972707d1887] Process exited with code 0\n2025-10-27 16:22:53.040 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3d486827-fa4b-4e8f-b56c-825c70ff4c5f] socks connection closed\n2025-10-27 16:22:53.040 [info] [command][5754069d-ac4b-4ae7-b786-6972707d1887] Socket close event received\n2025-10-27 16:23:53.040 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:23:53.042 [info] [command][f1de0678-6d5d-499b-a676-fe770b48c67b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f1de0678-6d5d-499b-a676-fe770b48c67b""}\n2025-10-27 16:23:53.043 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][c0530fa6-82fc-4ebe-9e26-af930260a0e8] received connection request\n2025-10-27 16:23:53.065 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c0530fa6-82fc-4ebe-9e26-af930260a0e8] socks forwarding established\n2025-10-27 16:23:53.090 [info] [command][f1de0678-6d5d-499b-a676-fe770b48c67b] Process exited with code 0\n2025-10-27 16:23:53.091 [info] [command][f1de0678-6d5d-499b-a676-fe770b48c67b] Socket close event received\n2025-10-27 16:23:53.091 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c0530fa6-82fc-4ebe-9e26-af930260a0e8] socks connection closed\n2025-10-27 16:24:53.125 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:24:53.128 [info] [command][b25889e4-98bf-4e7b-b8ee-2e51fc6aaf03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b25889e4-98bf-4e7b-b8ee-2e51fc6aaf03""}\n2025-10-27 16:24:53.128 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ff3002a2-8e34-4e04-b7ba-42e19beb2b3d] received connection request\n2025-10-27 16:24:53.151 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ff3002a2-8e34-4e04-b7ba-42e19beb2b3d] socks forwarding established\n2025-10-27 16:24:53.177 [info] [command][b25889e4-98bf-4e7b-b8ee-2e51fc6aaf03] Process exited with code 0\n2025-10-27 16:24:53.177 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ff3002a2-8e34-4e04-b7ba-42e19beb2b3d] socks connection closed\n2025-10-27 16:24:53.178 [info] [command][b25889e4-98bf-4e7b-b8ee-2e51fc6aaf03] Socket close event received\n2025-10-27 16:25:53.193 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:25:53.196 [info] [command][67b701f3-27d5-4d8d-b2ac-9b0271718f99] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""67b701f3-27d5-4d8d-b2ac-9b0271718f99""}\n2025-10-27 16:25:53.197 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][3fedc1a9-1a1d-448c-af09-7e9774969146] received connection request\n2025-10-27 16:25:53.226 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3fedc1a9-1a1d-448c-af09-7e9774969146] socks forwarding established\n2025-10-27 16:25:53.251 [info] [command][67b701f3-27d5-4d8d-b2ac-9b0271718f99] Process exited with code 0\n2025-10-27 16:25:53.252 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3fedc1a9-1a1d-448c-af09-7e9774969146] socks connection closed\n2025-10-27 16:25:53.252 [info] [command][67b701f3-27d5-4d8d-b2ac-9b0271718f99] Socket close event received\n2025-10-27 16:26:53.257 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:26:53.260 [info] [command][cd8f36a3-33ea-4815-80fd-1151e6210c54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""cd8f36a3-33ea-4815-80fd-1151e6210c54""}\n2025-10-27 16:26:53.261 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][1835edc6-c614-4116-91b9-8d6887d4e0ad] received connection request\n2025-10-27 16:26:53.285 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1835edc6-c614-4116-91b9-8d6887d4e0ad] socks forwarding established\n2025-10-27 16:26:53.311 [info] [command][cd8f36a3-33ea-4815-80fd-1151e6210c54] Process exited with code 0\n2025-10-27 16:26:53.312 [info] [command][cd8f36a3-33ea-4815-80fd-1151e6210c54] Socket close event received\n2025-10-27 16:26:53.312 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1835edc6-c614-4116-91b9-8d6887d4e0ad] socks connection closed\n2025-10-27 16:27:53.313 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:27:53.316 [info] [command][d155bf7d-22d6-4032-870e-e9fe2e8f50d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d155bf7d-22d6-4032-870e-e9fe2e8f50d2""}\n2025-10-27 16:27:53.317 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a1025e4f-7c07-4858-adce-c6f13339f556] received connection request\n2025-10-27 16:27:53.341 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a1025e4f-7c07-4858-adce-c6f13339f556] socks forwarding established\n2025-10-27 16:27:53.372 [info] [command][d155bf7d-22d6-4032-870e-e9fe2e8f50d2] Process exited with code 0\n2025-10-27 16:27:53.373 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a1025e4f-7c07-4858-adce-c6f13339f556] socks connection closed\n2025-10-27 16:27:53.373 [info] [command][d155bf7d-22d6-4032-870e-e9fe2e8f50d2] Socket close event received\n2025-10-27 16:28:53.376 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:28:53.386 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][91d0c0e8-6ec4-4787-8634-4c6264681965] received connection request\n2025-10-27 16:28:53.386 [info] [command][5278ca66-e3b2-4c87-8a55-7199f5a09d1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5278ca66-e3b2-4c87-8a55-7199f5a09d1e""}\n2025-10-27 16:28:53.416 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][91d0c0e8-6ec4-4787-8634-4c6264681965] socks forwarding established\n2025-10-27 16:28:53.443 [info] [command][5278ca66-e3b2-4c87-8a55-7199f5a09d1e] Process exited with code 0\n2025-10-27 16:28:53.443 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][91d0c0e8-6ec4-4787-8634-4c6264681965] socks connection closed\n2025-10-27 16:28:53.443 [info] [command][5278ca66-e3b2-4c87-8a55-7199f5a09d1e] Socket close event received\n2025-10-27 16:29:53.446 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:29:53.448 [info] [command][85c1754d-a504-481c-92ca-80bcd9bd802c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""85c1754d-a504-481c-92ca-80bcd9bd802c""}\n2025-10-27 16:29:53.448 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7a3bea2c-a9fa-4c8b-9d9b-55c7bbb22783] received connection request\n2025-10-27 16:29:53.471 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7a3bea2c-a9fa-4c8b-9d9b-55c7bbb22783] socks forwarding established\n2025-10-27 16:29:53.497 [info] [command][85c1754d-a504-481c-92ca-80bcd9bd802c] Process exited with code 0\n2025-10-27 16:29:53.497 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7a3bea2c-a9fa-4c8b-9d9b-55c7bbb22783] socks connection closed\n2025-10-27 16:29:53.497 [info] [command][85c1754d-a504-481c-92ca-80bcd9bd802c] Socket close event received\n2025-10-27 16:30:53.498 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:30:53.500 [info] [command][78f0e111-41c5-4b54-b309-12898b286f48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""78f0e111-41c5-4b54-b309-12898b286f48""}\n2025-10-27 16:30:53.501 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][8a783b5d-2bd4-46d8-b46e-711cfab11896] received connection request\n2025-10-27 16:30:53.524 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8a783b5d-2bd4-46d8-b46e-711cfab11896] socks forwarding established\n2025-10-27 16:30:53.551 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8a783b5d-2bd4-46d8-b46e-711cfab11896] socks connection closed\n2025-10-27 16:30:53.552 [info] [command][78f0e111-41c5-4b54-b309-12898b286f48] Process exited with code 0\n2025-10-27 16:30:53.552 [info] [command][78f0e111-41c5-4b54-b309-12898b286f48] Socket close event received\n2025-10-27 16:31:53.553 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:31:53.555 [info] [command][514b5518-b994-47ca-bd7a-912dc321cf06] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""514b5518-b994-47ca-bd7a-912dc321cf06""}\n2025-10-27 16:31:53.556 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][9f2a11a9-43e7-45a6-8e71-10a739f4d05c] received connection request\n2025-10-27 16:31:53.583 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9f2a11a9-43e7-45a6-8e71-10a739f4d05c] socks forwarding established\n2025-10-27 16:31:53.610 [info] [command][514b5518-b994-47ca-bd7a-912dc321cf06] Process exited with code 0\n2025-10-27 16:31:53.611 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9f2a11a9-43e7-45a6-8e71-10a739f4d05c] socks connection closed\n2025-10-27 16:31:53.611 [info] [command][514b5518-b994-47ca-bd7a-912dc321cf06] Socket close event received\n2025-10-27 16:32:53.618 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:32:53.622 [info] [command][2779a4c9-7d84-4e63-a8e6-a0221f63d670] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""2779a4c9-7d84-4e63-a8e6-a0221f63d670""}\n2025-10-27 16:32:53.622 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][6c786159-3468-487f-934e-6e5655a0c32c] received connection request\n2025-10-27 16:32:53.649 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6c786159-3468-487f-934e-6e5655a0c32c] socks forwarding established\n2025-10-27 16:32:53.676 [info] [command][2779a4c9-7d84-4e63-a8e6-a0221f63d670] Process exited with code 0\n2025-10-27 16:32:53.676 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6c786159-3468-487f-934e-6e5655a0c32c] socks connection closed\n2025-10-27 16:32:53.676 [info] [command][2779a4c9-7d84-4e63-a8e6-a0221f63d670] Socket close event received\n2025-10-27 16:33:53.686 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:33:53.688 [info] [command][6d8485e7-1b40-472d-a75a-b2d923766985] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6d8485e7-1b40-472d-a75a-b2d923766985""}\n2025-10-27 16:33:53.689 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][556aa4f4-2c21-43b5-ba1b-d8b7a2f6c1b0] received connection request\n2025-10-27 16:33:53.713 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][556aa4f4-2c21-43b5-ba1b-d8b7a2f6c1b0] socks forwarding established\n2025-10-27 16:33:53.739 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][556aa4f4-2c21-43b5-ba1b-d8b7a2f6c1b0] socks connection closed\n2025-10-27 16:33:53.740 [info] [command][6d8485e7-1b40-472d-a75a-b2d923766985] Process exited with code 0\n2025-10-27 16:33:53.740 [info] [command][6d8485e7-1b40-472d-a75a-b2d923766985] Socket close event received\n2025-10-27 16:34:53.750 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:34:53.753 [info] [command][9d2276c0-4538-474d-869f-20979be5c2b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""9d2276c0-4538-474d-869f-20979be5c2b4""}\n2025-10-27 16:34:53.754 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][1a52a1ef-a6e0-4ccd-b931-4b1a892d2dae] received connection request\n2025-10-27 16:34:53.791 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1a52a1ef-a6e0-4ccd-b931-4b1a892d2dae] socks forwarding established\n2025-10-27 16:34:53.819 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1a52a1ef-a6e0-4ccd-b931-4b1a892d2dae] socks connection closed\n2025-10-27 16:34:53.819 [info] [command][9d2276c0-4538-474d-869f-20979be5c2b4] Process exited with code 0\n2025-10-27 16:34:53.819 [info] [command][9d2276c0-4538-474d-869f-20979be5c2b4] Socket close event received\n2025-10-27 16:35:53.829 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:35:53.832 [info] [command][49ecae74-0d6f-4a81-b48d-9d73e9a04651] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""49ecae74-0d6f-4a81-b48d-9d73e9a04651""}\n2025-10-27 16:35:53.833 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][c21797b6-6233-4bbc-89c0-f5e6710ea628] received connection request\n2025-10-27 16:35:53.860 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c21797b6-6233-4bbc-89c0-f5e6710ea628] socks forwarding established\n2025-10-27 16:35:53.886 [info] [command][49ecae74-0d6f-4a81-b48d-9d73e9a04651] Process exited with code 0\n2025-10-27 16:35:53.887 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c21797b6-6233-4bbc-89c0-f5e6710ea628] socks connection closed\n2025-10-27 16:35:53.887 [info] [command][49ecae74-0d6f-4a81-b48d-9d73e9a04651] Socket close event received\n2025-10-27 16:36:53.897 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:36:53.898 [info] [command][8dae3036-d256-40b0-a3e5-181688879e54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8dae3036-d256-40b0-a3e5-181688879e54""}\n2025-10-27 16:36:53.898 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][3a5e8717-cdc0-4544-9879-2bfa0be112ba] received connection request\n2025-10-27 16:36:53.921 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3a5e8717-cdc0-4544-9879-2bfa0be112ba] socks forwarding established\n2025-10-27 16:36:53.947 [info] [command][8dae3036-d256-40b0-a3e5-181688879e54] Process exited with code 0\n2025-10-27 16:36:53.948 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3a5e8717-cdc0-4544-9879-2bfa0be112ba] socks connection closed\n2025-10-27 16:36:53.948 [info] [command][8dae3036-d256-40b0-a3e5-181688879e54] Socket close event received\n2025-10-27 16:37:53.958 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:37:53.960 [info] [command][49c26945-30d8-4cf4-b7e9-7fcd8f0f1f8d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""49c26945-30d8-4cf4-b7e9-7fcd8f0f1f8d""}\n2025-10-27 16:37:53.961 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d6b9ffb6-38d3-49a2-a827-ecb6b6e83601] received connection request\n2025-10-27 16:37:53.985 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d6b9ffb6-38d3-49a2-a827-ecb6b6e83601] socks forwarding established\n2025-10-27 16:37:54.016 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d6b9ffb6-38d3-49a2-a827-ecb6b6e83601] socks connection closed\n2025-10-27 16:37:54.016 [info] [command][49c26945-30d8-4cf4-b7e9-7fcd8f0f1f8d] Process exited with code 0\n2025-10-27 16:37:54.017 [info] [command][49c26945-30d8-4cf4-b7e9-7fcd8f0f1f8d] Socket close event received\n2025-10-27 16:38:54.026 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:38:54.028 [info] [command][91cc1ab5-ef2c-43e2-ab4e-12dcad017fc2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""91cc1ab5-ef2c-43e2-ab4e-12dcad017fc2""}\n2025-10-27 16:38:54.029 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0784f644-1487-4745-8233-fabeb813f26a] received connection request\n2025-10-27 16:38:54.051 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0784f644-1487-4745-8233-fabeb813f26a] socks forwarding established\n2025-10-27 16:38:54.076 [info] [command][91cc1ab5-ef2c-43e2-ab4e-12dcad017fc2] Process exited with code 0\n2025-10-27 16:38:54.076 [info] [command][91cc1ab5-ef2c-43e2-ab4e-12dcad017fc2] Socket close event received\n2025-10-27 16:38:54.077 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0784f644-1487-4745-8233-fabeb813f26a] socks connection closed\n2025-10-27 16:39:54.077 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:39:54.080 [info] [command][6dfd2e08-ba60-4778-a851-0d5521a75845] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6dfd2e08-ba60-4778-a851-0d5521a75845""}\n2025-10-27 16:39:54.080 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b9821dc9-dfb3-4776-b00c-f1dad96e4075] received connection request\n2025-10-27 16:39:54.104 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b9821dc9-dfb3-4776-b00c-f1dad96e4075] socks forwarding established\n2025-10-27 16:39:54.129 [info] [command][6dfd2e08-ba60-4778-a851-0d5521a75845] Process exited with code 0\n2025-10-27 16:39:54.129 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b9821dc9-dfb3-4776-b00c-f1dad96e4075] socks connection closed\n2025-10-27 16:39:54.129 [info] [command][6dfd2e08-ba60-4778-a851-0d5521a75845] Socket close event received\n2025-10-27 16:40:54.138 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:40:54.140 [info] [command][2b638224-366a-459a-8da6-9e45c8557af4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""2b638224-366a-459a-8da6-9e45c8557af4""}\n2025-10-27 16:40:54.141 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][414a9b32-9fc3-4c06-819d-7a2d7cc64697] received connection request\n2025-10-27 16:40:54.171 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][414a9b32-9fc3-4c06-819d-7a2d7cc64697] socks forwarding established\n2025-10-27 16:40:54.197 [info] [command][2b638224-366a-459a-8da6-9e45c8557af4] Process exited with code 0\n2025-10-27 16:40:54.197 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][414a9b32-9fc3-4c06-819d-7a2d7cc64697] socks connection closed\n2025-10-27 16:40:54.197 [info] [command][2b638224-366a-459a-8da6-9e45c8557af4] Socket close event received\n2025-10-27 16:41:54.198 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:41:54.201 [info] [command][2e51efbd-4a14-4a6f-9946-40cdeb5b2854] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""2e51efbd-4a14-4a6f-9946-40cdeb5b2854""}\n2025-10-27 16:41:54.201 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][650a2d02-d417-4703-a897-729c37b464f9] received connection request\n2025-10-27 16:41:54.225 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][650a2d02-d417-4703-a897-729c37b464f9] socks forwarding established\n2025-10-27 16:41:54.252 [info] [command][2e51efbd-4a14-4a6f-9946-40cdeb5b2854] Process exited with code 0\n2025-10-27 16:41:54.252 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][650a2d02-d417-4703-a897-729c37b464f9] socks connection closed\n2025-10-27 16:41:54.252 [info] [command][2e51efbd-4a14-4a6f-9946-40cdeb5b2854] Socket close event received\n2025-10-27 16:42:54.257 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:42:54.259 [info] [command][f8e54426-1cda-4371-98f2-3b0fc1c2671c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f8e54426-1cda-4371-98f2-3b0fc1c2671c""}\n2025-10-27 16:42:54.260 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b44d8d4d-177f-49f4-8541-86683c5eb911] received connection request\n2025-10-27 16:42:54.284 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b44d8d4d-177f-49f4-8541-86683c5eb911] socks forwarding established\n2025-10-27 16:42:54.310 [info] [command][f8e54426-1cda-4371-98f2-3b0fc1c2671c] Process exited with code 0\n2025-10-27 16:42:54.310 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b44d8d4d-177f-49f4-8541-86683c5eb911] socks connection closed\n2025-10-27 16:42:54.311 [info] [command][f8e54426-1cda-4371-98f2-3b0fc1c2671c] Socket close event received\n2025-10-27 16:43:54.320 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:43:54.323 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][968a5078-d323-40ba-a302-da03b3f4a738] received connection request\n2025-10-27 16:43:54.324 [info] [command][321d6138-4357-450b-a091-b6bf68af95d3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""321d6138-4357-450b-a091-b6bf68af95d3""}\n2025-10-27 16:43:54.350 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][968a5078-d323-40ba-a302-da03b3f4a738] socks forwarding established\n2025-10-27 16:43:54.376 [info] [command][321d6138-4357-450b-a091-b6bf68af95d3] Process exited with code 0\n2025-10-27 16:43:54.377 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][968a5078-d323-40ba-a302-da03b3f4a738] socks connection closed\n2025-10-27 16:43:54.377 [info] [command][321d6138-4357-450b-a091-b6bf68af95d3] Socket close event received\n2025-10-27 16:44:54.387 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:44:54.390 [info] [command][a026bc38-c4bd-4723-a27c-e7829620fe03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""a026bc38-c4bd-4723-a27c-e7829620fe03""}\n2025-10-27 16:44:54.391 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][e440341e-5681-4750-9ff7-01fe21c2f5fe] received connection request\n2025-10-27 16:44:54.414 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e440341e-5681-4750-9ff7-01fe21c2f5fe] socks forwarding established\n2025-10-27 16:44:54.446 [info] [command][a026bc38-c4bd-4723-a27c-e7829620fe03] Process exited with code 0\n2025-10-27 16:44:54.447 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e440341e-5681-4750-9ff7-01fe21c2f5fe] socks connection closed\n2025-10-27 16:44:54.447 [info] [command][a026bc38-c4bd-4723-a27c-e7829620fe03] Socket close event received\n2025-10-27 16:45:54.451 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:45:54.454 [info] [command][3f5ab6f5-b383-4b0c-8810-20fd99ed7d24] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""3f5ab6f5-b383-4b0c-8810-20fd99ed7d24""}\n2025-10-27 16:45:54.455 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][08cb2fb0-0c11-4c1e-a295-4d0fa37162b6] received connection request\n2025-10-27 16:45:54.478 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][08cb2fb0-0c11-4c1e-a295-4d0fa37162b6] socks forwarding established\n2025-10-27 16:45:54.503 [info] [command][3f5ab6f5-b383-4b0c-8810-20fd99ed7d24] Process exited with code 0\n2025-10-27 16:45:54.503 [info] [command][3f5ab6f5-b383-4b0c-8810-20fd99ed7d24] Socket close event received\n2025-10-27 16:45:54.504 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][08cb2fb0-0c11-4c1e-a295-4d0fa37162b6] socks connection closed\n2025-10-27 16:46:54.513 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:46:54.515 [info] [command][02b6e80e-4431-4bde-961a-286469c03368] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""02b6e80e-4431-4bde-961a-286469c03368""}\n2025-10-27 16:46:54.515 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][c0133f4c-9e41-4899-b9ed-41045936d3c3] received connection request\n2025-10-27 16:46:54.539 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c0133f4c-9e41-4899-b9ed-41045936d3c3] socks forwarding established\n2025-10-27 16:46:54.563 [info] [command][02b6e80e-4431-4bde-961a-286469c03368] Process exited with code 0\n2025-10-27 16:46:54.563 [info] [command][02b6e80e-4431-4bde-961a-286469c03368] Socket close event received\n2025-10-27 16:46:54.565 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c0133f4c-9e41-4899-b9ed-41045936d3c3] socks connection closed\n2025-10-27 16:47:54.572 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:47:54.575 [info] [command][d5d11d09-79c6-4c34-b95a-012d1fa3dc84] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d5d11d09-79c6-4c34-b95a-012d1fa3dc84""}\n2025-10-27 16:47:54.576 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][bb77b1ef-cef6-464d-8cb0-700eea842e8b] received connection request\n2025-10-27 16:47:54.606 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bb77b1ef-cef6-464d-8cb0-700eea842e8b] socks forwarding established\n2025-10-27 16:47:54.632 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bb77b1ef-cef6-464d-8cb0-700eea842e8b] socks connection closed\n2025-10-27 16:47:54.632 [info] [command][d5d11d09-79c6-4c34-b95a-012d1fa3dc84] Process exited with code 0\n2025-10-27 16:47:54.633 [info] [command][d5d11d09-79c6-4c34-b95a-012d1fa3dc84] Socket close event received\n2025-10-27 16:48:54.635 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:48:54.638 [info] [command][cd8c97d5-2b92-4b25-a1d2-5972f7c03416] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""cd8c97d5-2b92-4b25-a1d2-5972f7c03416""}\n2025-10-27 16:48:54.638 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][95ef1641-e478-4288-aa29-3e460bdd98ef] received connection request\n2025-10-27 16:48:54.665 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][95ef1641-e478-4288-aa29-3e460bdd98ef] socks forwarding established\n2025-10-27 16:48:54.690 [info] [command][cd8c97d5-2b92-4b25-a1d2-5972f7c03416] Process exited with code 0\n2025-10-27 16:48:54.691 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][95ef1641-e478-4288-aa29-3e460bdd98ef] socks connection closed\n2025-10-27 16:48:54.691 [info] [command][cd8c97d5-2b92-4b25-a1d2-5972f7c03416] Socket close event received\n2025-10-27 16:49:54.692 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:49:54.694 [info] [command][11846c43-ce34-48a0-9285-1f2ffd4faf98] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""11846c43-ce34-48a0-9285-1f2ffd4faf98""}\n2025-10-27 16:49:54.695 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][eb777e18-c65a-4685-a3ff-37f3e19a3132] received connection request\n2025-10-27 16:49:54.811 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][eb777e18-c65a-4685-a3ff-37f3e19a3132] socks forwarding established\n2025-10-27 16:49:54.960 [info] [command][11846c43-ce34-48a0-9285-1f2ffd4faf98] Process exited with code 0\n2025-10-27 16:49:54.961 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][eb777e18-c65a-4685-a3ff-37f3e19a3132] socks connection closed\n2025-10-27 16:49:54.961 [info] [command][11846c43-ce34-48a0-9285-1f2ffd4faf98] Socket close event received\n2025-10-27 16:50:54.962 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:50:54.963 [info] [command][c617f257-560f-4553-b94b-71d0b1254c1d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""c617f257-560f-4553-b94b-71d0b1254c1d""}\n2025-10-27 16:50:54.964 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][84dbee0b-5005-434a-b961-9daa17e36b5a] received connection request\n2025-10-27 16:50:54.988 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][84dbee0b-5005-434a-b961-9daa17e36b5a] socks forwarding established\n2025-10-27 16:50:55.020 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][84dbee0b-5005-434a-b961-9daa17e36b5a] socks connection closed\n2025-10-27 16:50:55.020 [info] [command][c617f257-560f-4553-b94b-71d0b1254c1d] Process exited with code 0\n2025-10-27 16:50:55.020 [info] [command][c617f257-560f-4553-b94b-71d0b1254c1d] Socket close event received\n2025-10-27 16:51:55.021 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:51:55.022 [info] [command][e11b2299-3612-47bb-ae41-c9eaa387012a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""e11b2299-3612-47bb-ae41-c9eaa387012a""}\n2025-10-27 16:51:55.023 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7613eea0-3146-49fb-9916-0a1f3fc03952] received connection request\n2025-10-27 16:51:55.052 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7613eea0-3146-49fb-9916-0a1f3fc03952] socks forwarding established\n2025-10-27 16:51:55.078 [info] [command][e11b2299-3612-47bb-ae41-c9eaa387012a] Process exited with code 0\n2025-10-27 16:51:55.078 [info] [command][e11b2299-3612-47bb-ae41-c9eaa387012a] Socket close event received\n2025-10-27 16:51:55.078 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7613eea0-3146-49fb-9916-0a1f3fc03952] socks connection closed\n2025-10-27 16:52:55.082 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:52:55.084 [info] [command][33d2e6e8-1da5-4729-a606-cca98cda82a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""33d2e6e8-1da5-4729-a606-cca98cda82a5""}\n2025-10-27 16:52:55.085 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0c92707e-b9c5-4ffc-83c6-0ada18e9991b] received connection request\n2025-10-27 16:52:55.113 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0c92707e-b9c5-4ffc-83c6-0ada18e9991b] socks forwarding established\n2025-10-27 16:52:55.139 [info] [command][33d2e6e8-1da5-4729-a606-cca98cda82a5] Process exited with code 0\n2025-10-27 16:52:55.139 [info] [command][33d2e6e8-1da5-4729-a606-cca98cda82a5] Socket close event received\n2025-10-27 16:52:55.139 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0c92707e-b9c5-4ffc-83c6-0ada18e9991b] socks connection closed\n2025-10-27 16:53:55.143 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:53:55.144 [info] [command][ba506f6f-5fce-41e2-b861-89273bf32e93] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ba506f6f-5fce-41e2-b861-89273bf32e93""}\n2025-10-27 16:53:55.144 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][51600dd7-73cc-4c98-b0e2-94073b672cb5] received connection request\n2025-10-27 16:53:55.182 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][51600dd7-73cc-4c98-b0e2-94073b672cb5] socks forwarding established\n2025-10-27 16:53:55.217 [info] [command][ba506f6f-5fce-41e2-b861-89273bf32e93] Process exited with code 0\n2025-10-27 16:53:55.217 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][51600dd7-73cc-4c98-b0e2-94073b672cb5] socks connection closed\n2025-10-27 16:53:55.217 [info] [command][ba506f6f-5fce-41e2-b861-89273bf32e93] Socket close event received\n2025-10-27 16:54:55.218 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:54:55.220 [info] [command][ac5fe8aa-41e6-4f23-bd8e-d73073ffa5a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ac5fe8aa-41e6-4f23-bd8e-d73073ffa5a0""}\n2025-10-27 16:54:55.221 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a5a63bd6-e3cf-4151-8509-e922442f0928] received connection request\n2025-10-27 16:54:55.244 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a5a63bd6-e3cf-4151-8509-e922442f0928] socks forwarding established\n2025-10-27 16:54:55.278 [info] [command][ac5fe8aa-41e6-4f23-bd8e-d73073ffa5a0] Process exited with code 0\n2025-10-27 16:54:55.279 [info] [command][ac5fe8aa-41e6-4f23-bd8e-d73073ffa5a0] Socket close event received\n2025-10-27 16:54:55.283 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a5a63bd6-e3cf-4151-8509-e922442f0928] socks connection closed\n2025-10-27 16:55:55.283 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:55:55.285 [info] [command][d8e6b210-fbba-46db-8361-b437b37bafc7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d8e6b210-fbba-46db-8361-b437b37bafc7""}\n2025-10-27 16:55:55.285 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][26863afb-cf3c-4231-aca5-e029ba5734d9] received connection request\n2025-10-27 16:55:55.310 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][26863afb-cf3c-4231-aca5-e029ba5734d9] socks forwarding established\n2025-10-27 16:55:55.335 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][26863afb-cf3c-4231-aca5-e029ba5734d9] socks connection closed\n2025-10-27 16:55:55.335 [info] [command][d8e6b210-fbba-46db-8361-b437b37bafc7] Process exited with code 0\n2025-10-27 16:55:55.335 [info] [command][d8e6b210-fbba-46db-8361-b437b37bafc7] Socket close event received\n2025-10-27 16:56:55.365 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:56:55.368 [info] [command][65a4edc4-6e1d-4196-9d5b-c244a382d032] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""65a4edc4-6e1d-4196-9d5b-c244a382d032""}\n2025-10-27 16:56:55.368 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][9db8b4d2-6833-4eb6-8e24-83378dfc1348] received connection request\n2025-10-27 16:56:55.392 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9db8b4d2-6833-4eb6-8e24-83378dfc1348] socks forwarding established\n2025-10-27 16:56:55.436 [info] [command][65a4edc4-6e1d-4196-9d5b-c244a382d032] Process exited with code 0\n2025-10-27 16:56:55.436 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9db8b4d2-6833-4eb6-8e24-83378dfc1348] socks connection closed\n2025-10-27 16:56:55.436 [info] [command][65a4edc4-6e1d-4196-9d5b-c244a382d032] Socket close event received\n2025-10-27 16:57:55.451 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:57:55.453 [info] [command][a6934628-4f04-48fd-ac99-42b065b79579] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""a6934628-4f04-48fd-ac99-42b065b79579""}\n2025-10-27 16:57:55.454 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][bde2f0bd-c242-4113-b8af-a4fa88c55a92] received connection request\n2025-10-27 16:57:55.477 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bde2f0bd-c242-4113-b8af-a4fa88c55a92] socks forwarding established\n2025-10-27 16:57:55.505 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bde2f0bd-c242-4113-b8af-a4fa88c55a92] socks connection closed\n2025-10-27 16:57:55.505 [info] [command][a6934628-4f04-48fd-ac99-42b065b79579] Process exited with code 0\n2025-10-27 16:57:55.505 [info] [command][a6934628-4f04-48fd-ac99-42b065b79579] Socket close event received\n2025-10-27 16:58:55.510 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:58:55.512 [info] [command][dc798778-9ae4-46d6-8657-6ff7345da2a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""dc798778-9ae4-46d6-8657-6ff7345da2a6""}\n2025-10-27 16:58:55.513 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][f23b4ec9-285d-4840-b2e1-e688d508c77b] received connection request\n2025-10-27 16:58:55.557 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f23b4ec9-285d-4840-b2e1-e688d508c77b] socks forwarding established\n2025-10-27 16:58:55.608 [info] [command][dc798778-9ae4-46d6-8657-6ff7345da2a6] Process exited with code 0\n2025-10-27 16:58:55.608 [info] [command][dc798778-9ae4-46d6-8657-6ff7345da2a6] Socket close event received\n2025-10-27 16:58:55.608 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f23b4ec9-285d-4840-b2e1-e688d508c77b] socks connection closed\n2025-10-27 16:59:55.618 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 16:59:55.621 [info] [command][ee91d1d7-6fc9-4448-859e-6176f3b54896] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ee91d1d7-6fc9-4448-859e-6176f3b54896""}\n2025-10-27 16:59:55.622 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][98bf31f5-1089-4963-8f2b-d1045d2a4998] received connection request\n2025-10-27 16:59:55.650 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][98bf31f5-1089-4963-8f2b-d1045d2a4998] socks forwarding established\n2025-10-27 16:59:55.679 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][98bf31f5-1089-4963-8f2b-d1045d2a4998] socks connection closed\n2025-10-27 16:59:55.680 [info] [command][ee91d1d7-6fc9-4448-859e-6176f3b54896] Process exited with code 0\n2025-10-27 16:59:55.680 [info] [command][ee91d1d7-6fc9-4448-859e-6176f3b54896] Socket close event received\n2025-10-27 17:00:55.684 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:00:55.686 [info] [command][b7750b2c-639a-4a0a-9d84-911973ad61d9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b7750b2c-639a-4a0a-9d84-911973ad61d9""}\n2025-10-27 17:00:55.686 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][afa0fe2f-679b-4062-9dac-304864e6d9b7] received connection request\n2025-10-27 17:00:55.711 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][afa0fe2f-679b-4062-9dac-304864e6d9b7] socks forwarding established\n2025-10-27 17:00:55.740 [info] [command][b7750b2c-639a-4a0a-9d84-911973ad61d9] Process exited with code 0\n2025-10-27 17:00:55.740 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][afa0fe2f-679b-4062-9dac-304864e6d9b7] socks connection closed\n2025-10-27 17:00:55.741 [info] [command][b7750b2c-639a-4a0a-9d84-911973ad61d9] Socket close event received\n2025-10-27 17:01:55.746 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:01:55.749 [info] [command][0c5f1738-e6fc-4468-9409-c26e9ed44e45] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""0c5f1738-e6fc-4468-9409-c26e9ed44e45""}\n2025-10-27 17:01:55.750 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][3169a724-e0f6-4d3c-b6b2-9a98868908fa] received connection request\n2025-10-27 17:01:55.789 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3169a724-e0f6-4d3c-b6b2-9a98868908fa] socks forwarding established\n2025-10-27 17:01:55.824 [info] [command][0c5f1738-e6fc-4468-9409-c26e9ed44e45] Process exited with code 0\n2025-10-27 17:01:55.824 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][3169a724-e0f6-4d3c-b6b2-9a98868908fa] socks connection closed\n2025-10-27 17:01:55.824 [info] [command][0c5f1738-e6fc-4468-9409-c26e9ed44e45] Socket close event received\n2025-10-27 17:02:55.830 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:02:55.833 [info] [command][0740716f-c2a3-48d7-8e36-9cdd746e9ff1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""0740716f-c2a3-48d7-8e36-9cdd746e9ff1""}\n2025-10-27 17:02:55.834 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2ed21636-08ba-45a6-89ad-21ec14332664] received connection request\n2025-10-27 17:02:55.858 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2ed21636-08ba-45a6-89ad-21ec14332664] socks forwarding established\n2025-10-27 17:02:55.888 [info] [command][0740716f-c2a3-48d7-8e36-9cdd746e9ff1] Process exited with code 0\n2025-10-27 17:02:55.888 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2ed21636-08ba-45a6-89ad-21ec14332664] socks connection closed\n2025-10-27 17:02:55.888 [info] [command][0740716f-c2a3-48d7-8e36-9cdd746e9ff1] Socket close event received\n2025-10-27 17:03:55.894 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:03:55.897 [info] [command][43ba518c-c1b7-4ea8-95c1-5e57965194b2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""43ba518c-c1b7-4ea8-95c1-5e57965194b2""}\n2025-10-27 17:03:55.897 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0c57cfd1-1604-43c9-b5a5-8e8f42e8d76c] received connection request\n2025-10-27 17:03:55.921 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0c57cfd1-1604-43c9-b5a5-8e8f42e8d76c] socks forwarding established\n2025-10-27 17:03:55.948 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0c57cfd1-1604-43c9-b5a5-8e8f42e8d76c] socks connection closed\n2025-10-27 17:03:55.948 [info] [command][43ba518c-c1b7-4ea8-95c1-5e57965194b2] Process exited with code 0\n2025-10-27 17:03:55.948 [info] [command][43ba518c-c1b7-4ea8-95c1-5e57965194b2] Socket close event received\n2025-10-27 17:04:55.954 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:04:55.957 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7527d859-3445-4da9-a2c5-cd6ca90ebb0e] received connection request\n2025-10-27 17:04:55.958 [info] [command][4df5e9c1-bbb7-4fb8-9d62-e5b3ca5a4c09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4df5e9c1-bbb7-4fb8-9d62-e5b3ca5a4c09""}\n2025-10-27 17:04:55.981 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7527d859-3445-4da9-a2c5-cd6ca90ebb0e] socks forwarding established\n2025-10-27 17:04:56.019 [info] [command][4df5e9c1-bbb7-4fb8-9d62-e5b3ca5a4c09] Process exited with code 0\n2025-10-27 17:04:56.019 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7527d859-3445-4da9-a2c5-cd6ca90ebb0e] socks connection closed\n2025-10-27 17:04:56.019 [info] [command][4df5e9c1-bbb7-4fb8-9d62-e5b3ca5a4c09] Socket close event received\n2025-10-27 17:05:56.021 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:05:56.024 [info] [command][2d664192-4907-4899-a9f2-a80896b612f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""2d664192-4907-4899-a9f2-a80896b612f0""}\n2025-10-27 17:05:56.024 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][29330b5d-85e4-4626-bf69-65465a74affa] received connection request\n2025-10-27 17:05:56.052 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][29330b5d-85e4-4626-bf69-65465a74affa] socks forwarding established\n2025-10-27 17:05:56.081 [info] [command][2d664192-4907-4899-a9f2-a80896b612f0] Process exited with code 0\n2025-10-27 17:05:56.081 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][29330b5d-85e4-4626-bf69-65465a74affa] socks connection closed\n2025-10-27 17:05:56.081 [info] [command][2d664192-4907-4899-a9f2-a80896b612f0] Socket close event received\n2025-10-27 17:06:56.083 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:06:56.085 [info] [command][e302b831-fbf8-4f82-a422-0cfff83aafb9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""e302b831-fbf8-4f82-a422-0cfff83aafb9""}\n2025-10-27 17:06:56.085 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][953a0417-544e-4bf7-b38d-80a36a43aa99] received connection request\n2025-10-27 17:06:56.124 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][953a0417-544e-4bf7-b38d-80a36a43aa99] socks forwarding established\n2025-10-27 17:06:56.154 [info] [command][e302b831-fbf8-4f82-a422-0cfff83aafb9] Process exited with code 0\n2025-10-27 17:06:56.155 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][953a0417-544e-4bf7-b38d-80a36a43aa99] socks connection closed\n2025-10-27 17:06:56.155 [info] [command][e302b831-fbf8-4f82-a422-0cfff83aafb9] Socket close event received\n2025-10-27 17:07:56.161 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:07:56.165 [info] [command][bcf526b0-b707-4ac6-8d37-a22a0f3c147b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""bcf526b0-b707-4ac6-8d37-a22a0f3c147b""}\n2025-10-27 17:07:56.165 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][9002a001-95ac-423e-aa8e-6d1aa435f26b] received connection request\n2025-10-27 17:07:56.189 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9002a001-95ac-423e-aa8e-6d1aa435f26b] socks forwarding established\n2025-10-27 17:07:56.224 [info] [command][bcf526b0-b707-4ac6-8d37-a22a0f3c147b] Process exited with code 0\n2025-10-27 17:07:56.224 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9002a001-95ac-423e-aa8e-6d1aa435f26b] socks connection closed\n2025-10-27 17:07:56.224 [info] [command][bcf526b0-b707-4ac6-8d37-a22a0f3c147b] Socket close event received\n2025-10-27 17:08:56.229 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:08:56.232 [info] [command][20e2d6b4-a678-46cb-93a0-7481ef9971be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""20e2d6b4-a678-46cb-93a0-7481ef9971be""}\n2025-10-27 17:08:56.232 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a6714442-1627-4ad1-954c-bf92b4515eef] received connection request\n2025-10-27 17:08:56.256 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a6714442-1627-4ad1-954c-bf92b4515eef] socks forwarding established\n2025-10-27 17:08:56.299 [info] [command][20e2d6b4-a678-46cb-93a0-7481ef9971be] Process exited with code 0\n2025-10-27 17:08:56.299 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a6714442-1627-4ad1-954c-bf92b4515eef] socks connection closed\n2025-10-27 17:08:56.299 [info] [command][20e2d6b4-a678-46cb-93a0-7481ef9971be] Socket close event received\n2025-10-27 17:09:56.303 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:09:56.306 [info] [command][da401052-c14f-42bb-bdca-6561f1c451d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""da401052-c14f-42bb-bdca-6561f1c451d2""}\n2025-10-27 17:09:56.306 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][1ca9bb1e-1274-483f-a9b6-ed93fba03586] received connection request\n2025-10-27 17:09:56.337 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1ca9bb1e-1274-483f-a9b6-ed93fba03586] socks forwarding established\n2025-10-27 17:09:56.369 [info] [command][da401052-c14f-42bb-bdca-6561f1c451d2] Process exited with code 0\n2025-10-27 17:09:56.369 [info] [command][da401052-c14f-42bb-bdca-6561f1c451d2] Socket close event received\n2025-10-27 17:09:56.370 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1ca9bb1e-1274-483f-a9b6-ed93fba03586] socks connection closed\n2025-10-27 17:10:56.372 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:10:56.374 [info] [command][f742251e-c91a-4bab-abf5-37c3433edc0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f742251e-c91a-4bab-abf5-37c3433edc0a""}\n2025-10-27 17:10:56.375 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2f81b060-5f11-42e8-a152-d244e6e099dd] received connection request\n2025-10-27 17:10:56.398 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2f81b060-5f11-42e8-a152-d244e6e099dd] socks forwarding established\n2025-10-27 17:10:56.425 [info] [command][f742251e-c91a-4bab-abf5-37c3433edc0a] Process exited with code 0\n2025-10-27 17:10:56.425 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2f81b060-5f11-42e8-a152-d244e6e099dd] socks connection closed\n2025-10-27 17:10:56.425 [info] [command][f742251e-c91a-4bab-abf5-37c3433edc0a] Socket close event received\n2025-10-27 17:11:56.429 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:11:56.431 [info] [command][3a56a672-6474-4aa5-90bd-a6903b026b2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""3a56a672-6474-4aa5-90bd-a6903b026b2a""}\n2025-10-27 17:11:56.432 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][e51b26ac-1aef-49a7-bd33-b45d7d6d8dac] received connection request\n2025-10-27 17:11:56.463 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e51b26ac-1aef-49a7-bd33-b45d7d6d8dac] socks forwarding established\n2025-10-27 17:11:56.491 [info] [command][3a56a672-6474-4aa5-90bd-a6903b026b2a] Process exited with code 0\n2025-10-27 17:11:56.491 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e51b26ac-1aef-49a7-bd33-b45d7d6d8dac] socks connection closed\n2025-10-27 17:11:56.492 [info] [command][3a56a672-6474-4aa5-90bd-a6903b026b2a] Socket close event received\n2025-10-27 17:12:56.497 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:12:56.499 [info] [command][56e8f1df-f101-42db-8fe9-8b0fa6efbd57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""56e8f1df-f101-42db-8fe9-8b0fa6efbd57""}\n2025-10-27 17:12:56.500 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][584e93b2-543b-4a5c-8d1e-cb64a0caf254] received connection request\n2025-10-27 17:12:56.524 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][584e93b2-543b-4a5c-8d1e-cb64a0caf254] socks forwarding established\n2025-10-27 17:12:56.569 [info] [command][56e8f1df-f101-42db-8fe9-8b0fa6efbd57] Process exited with code 0\n2025-10-27 17:12:56.569 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][584e93b2-543b-4a5c-8d1e-cb64a0caf254] socks connection closed\n2025-10-27 17:12:56.569 [info] [command][56e8f1df-f101-42db-8fe9-8b0fa6efbd57] Socket close event received\n2025-10-27 17:13:56.572 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:13:56.574 [info] [command][6907a4b5-2580-492a-8dd4-c6478d2afefd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6907a4b5-2580-492a-8dd4-c6478d2afefd""}\n2025-10-27 17:13:56.575 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][05111a71-d7f7-4f64-a61a-a71302869afd] received connection request\n2025-10-27 17:13:56.604 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][05111a71-d7f7-4f64-a61a-a71302869afd] socks forwarding established\n2025-10-27 17:13:56.634 [info] [command][6907a4b5-2580-492a-8dd4-c6478d2afefd] Process exited with code 0\n2025-10-27 17:13:56.634 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][05111a71-d7f7-4f64-a61a-a71302869afd] socks connection closed\n2025-10-27 17:13:56.634 [info] [command][6907a4b5-2580-492a-8dd4-c6478d2afefd] Socket close event received\n2025-10-27 17:14:56.638 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:14:56.641 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][5d6972e3-c2e1-4dca-94fb-5cce6e68e49e] received connection request\n2025-10-27 17:14:56.642 [info] [command][855a89c8-7857-472f-af0c-642e63e41edd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""855a89c8-7857-472f-af0c-642e63e41edd""}\n2025-10-27 17:14:56.666 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5d6972e3-c2e1-4dca-94fb-5cce6e68e49e] socks forwarding established\n2025-10-27 17:14:56.698 [info] [command][855a89c8-7857-472f-af0c-642e63e41edd] Process exited with code 0\n2025-10-27 17:14:56.699 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5d6972e3-c2e1-4dca-94fb-5cce6e68e49e] socks connection closed\n2025-10-27 17:14:56.699 [info] [command][855a89c8-7857-472f-af0c-642e63e41edd] Socket close event received\n2025-10-27 17:15:56.703 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:15:56.706 [info] [command][d12f8a90-cedf-451f-b2f6-36ea5013f0b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d12f8a90-cedf-451f-b2f6-36ea5013f0b3""}\n2025-10-27 17:15:56.707 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a588ca9f-36aa-4059-91ed-20db0600d3be] received connection request\n2025-10-27 17:15:56.740 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a588ca9f-36aa-4059-91ed-20db0600d3be] socks forwarding established\n2025-10-27 17:15:56.766 [info] [command][d12f8a90-cedf-451f-b2f6-36ea5013f0b3] Process exited with code 0\n2025-10-27 17:15:56.767 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a588ca9f-36aa-4059-91ed-20db0600d3be] socks connection closed\n2025-10-27 17:15:56.767 [info] [command][d12f8a90-cedf-451f-b2f6-36ea5013f0b3] Socket close event received\n2025-10-27 17:16:56.772 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:16:56.774 [info] [command][c3f85d0e-02df-4046-b2fc-8934e5636d64] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""c3f85d0e-02df-4046-b2fc-8934e5636d64""}\n2025-10-27 17:16:56.775 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][8409b081-1979-4fca-a91b-e502b5b4256c] received connection request\n2025-10-27 17:16:56.889 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8409b081-1979-4fca-a91b-e502b5b4256c] socks forwarding established\n2025-10-27 17:16:56.943 [info] [command][c3f85d0e-02df-4046-b2fc-8934e5636d64] Process exited with code 0\n2025-10-27 17:16:56.943 [info] [command][c3f85d0e-02df-4046-b2fc-8934e5636d64] Socket close event received\n2025-10-27 17:16:56.966 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8409b081-1979-4fca-a91b-e502b5b4256c] socks connection closed\n2025-10-27 17:17:56.949 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:17:56.950 [info] [command][a39e9d16-10e4-49b3-85f1-50aedad5180b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""a39e9d16-10e4-49b3-85f1-50aedad5180b""}\n2025-10-27 17:17:56.951 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][1ff8b99a-ac19-4ddc-8883-46981054f6f4] received connection request\n2025-10-27 17:17:56.972 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1ff8b99a-ac19-4ddc-8883-46981054f6f4] socks forwarding established\n2025-10-27 17:17:56.999 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1ff8b99a-ac19-4ddc-8883-46981054f6f4] socks connection closed\n2025-10-27 17:17:56.999 [info] [command][a39e9d16-10e4-49b3-85f1-50aedad5180b] Process exited with code 0\n2025-10-27 17:17:56.999 [info] [command][a39e9d16-10e4-49b3-85f1-50aedad5180b] Socket close event received\n2025-10-27 17:18:57.005 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:18:57.007 [info] [command][1af147dd-877f-4d13-a8e2-8cc2e51c6eb1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""1af147dd-877f-4d13-a8e2-8cc2e51c6eb1""}\n2025-10-27 17:18:57.008 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][5fd0dfc5-4ba7-4259-9012-48f3736e4051] received connection request\n2025-10-27 17:18:57.122 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5fd0dfc5-4ba7-4259-9012-48f3736e4051] socks forwarding established\n2025-10-27 17:18:57.302 [info] [command][1af147dd-877f-4d13-a8e2-8cc2e51c6eb1] Process exited with code 0\n2025-10-27 17:18:57.302 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5fd0dfc5-4ba7-4259-9012-48f3736e4051] socks connection closed\n2025-10-27 17:18:57.302 [info] [command][1af147dd-877f-4d13-a8e2-8cc2e51c6eb1] Socket close event received\n2025-10-27 17:19:57.307 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:19:57.310 [info] [command][2bf85dbe-5683-4b32-b71e-1af0a2041fca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""2bf85dbe-5683-4b32-b71e-1af0a2041fca""}\n2025-10-27 17:19:57.311 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d9d98b96-1091-4c64-9173-2bf2f5c4be0d] received connection request\n2025-10-27 17:19:57.339 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d9d98b96-1091-4c64-9173-2bf2f5c4be0d] socks forwarding established\n2025-10-27 17:19:57.366 [info] [command][2bf85dbe-5683-4b32-b71e-1af0a2041fca] Process exited with code 0\n2025-10-27 17:19:57.367 [info] [command][2bf85dbe-5683-4b32-b71e-1af0a2041fca] Socket close event received\n2025-10-27 17:19:57.367 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d9d98b96-1091-4c64-9173-2bf2f5c4be0d] socks connection closed\n2025-10-27 17:20:57.368 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:20:57.369 [info] [command][1b5d910b-35fe-4526-ad95-0aaa0131667a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""1b5d910b-35fe-4526-ad95-0aaa0131667a""}\n2025-10-27 17:20:57.369 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][586a1cf0-957d-44a2-a91c-4830592079e4] received connection request\n2025-10-27 17:20:57.393 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][586a1cf0-957d-44a2-a91c-4830592079e4] socks forwarding established\n2025-10-27 17:20:57.420 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][586a1cf0-957d-44a2-a91c-4830592079e4] socks connection closed\n2025-10-27 17:20:57.420 [info] [command][1b5d910b-35fe-4526-ad95-0aaa0131667a] Process exited with code 0\n2025-10-27 17:20:57.420 [info] [command][1b5d910b-35fe-4526-ad95-0aaa0131667a] Socket close event received\n2025-10-27 17:21:57.425 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:21:57.428 [info] [command][a1515457-31af-4086-a9e7-6257c3d6d372] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""a1515457-31af-4086-a9e7-6257c3d6d372""}\n2025-10-27 17:21:57.430 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][75e770e2-5724-4a4a-a094-bb29664ebace] received connection request\n2025-10-27 17:21:57.458 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][75e770e2-5724-4a4a-a094-bb29664ebace] socks forwarding established\n2025-10-27 17:21:57.485 [info] [command][a1515457-31af-4086-a9e7-6257c3d6d372] Process exited with code 0\n2025-10-27 17:21:57.486 [info] [command][a1515457-31af-4086-a9e7-6257c3d6d372] Socket close event received\n2025-10-27 17:21:57.486 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][75e770e2-5724-4a4a-a094-bb29664ebace] socks connection closed\n2025-10-27 17:22:57.490 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:22:57.493 [info] [command][bcaf49ec-97a8-4ce0-a9b5-805d3038a6ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""bcaf49ec-97a8-4ce0-a9b5-805d3038a6ef""}\n2025-10-27 17:22:57.494 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b61933ff-71a0-4612-b4f1-66191a4909d1] received connection request\n2025-10-27 17:22:57.521 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b61933ff-71a0-4612-b4f1-66191a4909d1] socks forwarding established\n2025-10-27 17:22:57.547 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b61933ff-71a0-4612-b4f1-66191a4909d1] socks connection closed\n2025-10-27 17:22:57.547 [info] [command][bcaf49ec-97a8-4ce0-a9b5-805d3038a6ef] Process exited with code 0\n2025-10-27 17:22:57.547 [info] [command][bcaf49ec-97a8-4ce0-a9b5-805d3038a6ef] Socket close event received\n2025-10-27 17:23:57.551 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:23:57.555 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0a1bfa69-f344-4f33-8641-500ec3a077bb] received connection request\n2025-10-27 17:23:57.555 [info] [command][e38b4750-95f9-4886-b315-3e9cdac72127] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""e38b4750-95f9-4886-b315-3e9cdac72127""}\n2025-10-27 17:23:57.597 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0a1bfa69-f344-4f33-8641-500ec3a077bb] socks forwarding established\n2025-10-27 17:23:57.625 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0a1bfa69-f344-4f33-8641-500ec3a077bb] socks connection closed\n2025-10-27 17:23:57.625 [info] [command][e38b4750-95f9-4886-b315-3e9cdac72127] Process exited with code 0\n2025-10-27 17:23:57.625 [info] [command][e38b4750-95f9-4886-b315-3e9cdac72127] Socket close event received\n2025-10-27 17:24:57.624 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:24:57.626 [info] [command][5b8725f8-dc8e-45a6-90c4-57f1e53fa42f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5b8725f8-dc8e-45a6-90c4-57f1e53fa42f""}\n2025-10-27 17:24:57.627 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][97e53240-0022-4a08-9781-58dbb0c9f14f] received connection request\n2025-10-27 17:24:57.670 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][97e53240-0022-4a08-9781-58dbb0c9f14f] socks forwarding established\n2025-10-27 17:24:57.701 [info] [command][5b8725f8-dc8e-45a6-90c4-57f1e53fa42f] Process exited with code 0\n2025-10-27 17:24:57.701 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][97e53240-0022-4a08-9781-58dbb0c9f14f] socks connection closed\n2025-10-27 17:24:57.702 [info] [command][5b8725f8-dc8e-45a6-90c4-57f1e53fa42f] Socket close event received\n2025-10-27 17:25:57.709 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:25:57.711 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][bfc5970a-3d69-47f8-8316-d7507fbc8d38] received connection request\n2025-10-27 17:25:57.712 [info] [command][8c7d72b4-9275-45c8-b373-b7a04a16af5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8c7d72b4-9275-45c8-b373-b7a04a16af5b""}\n2025-10-27 17:25:57.748 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bfc5970a-3d69-47f8-8316-d7507fbc8d38] socks forwarding established\n2025-10-27 17:25:57.781 [info] [command][8c7d72b4-9275-45c8-b373-b7a04a16af5b] Process exited with code 0\n2025-10-27 17:25:57.781 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bfc5970a-3d69-47f8-8316-d7507fbc8d38] socks connection closed\n2025-10-27 17:25:57.781 [info] [command][8c7d72b4-9275-45c8-b373-b7a04a16af5b] Socket close event received\n2025-10-27 17:26:57.787 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:26:57.790 [info] [command][9c7b0450-5986-43de-8a44-0def26af5d06] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""9c7b0450-5986-43de-8a44-0def26af5d06""}\n2025-10-27 17:26:57.790 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][e0d818d1-7c6c-4ae4-a254-098e3eef91ff] received connection request\n2025-10-27 17:26:57.816 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e0d818d1-7c6c-4ae4-a254-098e3eef91ff] socks forwarding established\n2025-10-27 17:26:57.842 [info] [command][9c7b0450-5986-43de-8a44-0def26af5d06] Process exited with code 0\n2025-10-27 17:26:57.843 [info] [command][9c7b0450-5986-43de-8a44-0def26af5d06] Socket close event received\n2025-10-27 17:26:57.843 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e0d818d1-7c6c-4ae4-a254-098e3eef91ff] socks connection closed\n2025-10-27 17:27:57.848 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:27:57.853 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][283f459f-65ac-4ddb-a9e0-5592a0a49165] received connection request\n2025-10-27 17:27:57.854 [info] [command][6a6677d6-54fc-4b0e-b50d-ee71197d893d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6a6677d6-54fc-4b0e-b50d-ee71197d893d""}\n2025-10-27 17:27:57.879 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][283f459f-65ac-4ddb-a9e0-5592a0a49165] socks forwarding established\n2025-10-27 17:27:57.911 [info] [command][6a6677d6-54fc-4b0e-b50d-ee71197d893d] Process exited with code 0\n2025-10-27 17:27:57.912 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][283f459f-65ac-4ddb-a9e0-5592a0a49165] socks connection closed\n2025-10-27 17:27:57.912 [info] [command][6a6677d6-54fc-4b0e-b50d-ee71197d893d] Socket close event received\n2025-10-27 17:28:57.917 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:28:57.919 [info] [command][f42e18c6-0d41-469f-a180-aa1b64b5cff2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f42e18c6-0d41-469f-a180-aa1b64b5cff2""}\n2025-10-27 17:28:57.920 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0df0c8fd-7804-4a80-9c22-c5eb12c461ec] received connection request\n2025-10-27 17:28:57.945 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0df0c8fd-7804-4a80-9c22-c5eb12c461ec] socks forwarding established\n2025-10-27 17:28:57.972 [info] [command][f42e18c6-0d41-469f-a180-aa1b64b5cff2] Process exited with code 0\n2025-10-27 17:28:57.973 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0df0c8fd-7804-4a80-9c22-c5eb12c461ec] socks connection closed\n2025-10-27 17:28:57.973 [info] [command][f42e18c6-0d41-469f-a180-aa1b64b5cff2] Socket close event received\n2025-10-27 17:29:57.976 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:29:57.981 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a8c7f7de-1be2-4808-9738-8014991ebb13] received connection request\n2025-10-27 17:29:57.982 [info] [command][7f2b7968-42ef-4ff7-ba7e-a0ded8e3ee34] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""7f2b7968-42ef-4ff7-ba7e-a0ded8e3ee34""}\n2025-10-27 17:29:58.006 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a8c7f7de-1be2-4808-9738-8014991ebb13] socks forwarding established\n2025-10-27 17:29:58.038 [info] [command][7f2b7968-42ef-4ff7-ba7e-a0ded8e3ee34] Process exited with code 0\n2025-10-27 17:29:58.038 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a8c7f7de-1be2-4808-9738-8014991ebb13] socks connection closed\n2025-10-27 17:29:58.038 [info] [command][7f2b7968-42ef-4ff7-ba7e-a0ded8e3ee34] Socket close event received\n2025-10-27 17:30:58.046 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:30:58.048 [info] [command][70d6d058-8fc4-4592-a130-9fc43d9155ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""70d6d058-8fc4-4592-a130-9fc43d9155ea""}\n2025-10-27 17:30:58.049 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ea2d9a28-f464-4e83-ab2f-237f52c3cfa9] received connection request\n2025-10-27 17:30:58.078 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ea2d9a28-f464-4e83-ab2f-237f52c3cfa9] socks forwarding established\n2025-10-27 17:30:58.106 [info] [command][70d6d058-8fc4-4592-a130-9fc43d9155ea] Process exited with code 0\n2025-10-27 17:30:58.106 [info] [command][70d6d058-8fc4-4592-a130-9fc43d9155ea] Socket close event received\n2025-10-27 17:30:58.106 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ea2d9a28-f464-4e83-ab2f-237f52c3cfa9] socks connection closed\n2025-10-27 17:31:58.111 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:31:58.114 [info] [command][fe2ac306-d442-49c9-a233-7bea43344896] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""fe2ac306-d442-49c9-a233-7bea43344896""}\n2025-10-27 17:31:58.114 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][356e2bab-c9e6-477e-8133-b1bea833d101] received connection request\n2025-10-27 17:31:58.144 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][356e2bab-c9e6-477e-8133-b1bea833d101] socks forwarding established\n2025-10-27 17:31:58.171 [info] [command][fe2ac306-d442-49c9-a233-7bea43344896] Process exited with code 0\n2025-10-27 17:31:58.171 [info] [command][fe2ac306-d442-49c9-a233-7bea43344896] Socket close event received\n2025-10-27 17:31:58.172 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][356e2bab-c9e6-477e-8133-b1bea833d101] socks connection closed\n2025-10-27 17:32:58.177 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:32:58.179 [info] [command][bf31e690-d0fe-4579-b2ef-32935946d675] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""bf31e690-d0fe-4579-b2ef-32935946d675""}\n2025-10-27 17:32:58.180 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][9d7be75a-4e68-4d8f-a50e-0be3b69fbf79] received connection request\n2025-10-27 17:32:58.211 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9d7be75a-4e68-4d8f-a50e-0be3b69fbf79] socks forwarding established\n2025-10-27 17:32:58.248 [info] [command][bf31e690-d0fe-4579-b2ef-32935946d675] Process exited with code 0\n2025-10-27 17:32:58.248 [info] [command][bf31e690-d0fe-4579-b2ef-32935946d675] Socket close event received\n2025-10-27 17:32:58.248 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9d7be75a-4e68-4d8f-a50e-0be3b69fbf79] socks connection closed\n2025-10-27 17:33:58.253 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:33:58.255 [info] [command][bd7f92ff-37bc-453e-a449-a204f5a5f0e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""bd7f92ff-37bc-453e-a449-a204f5a5f0e6""}\n2025-10-27 17:33:58.255 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][9dcaaca8-2693-45d8-b577-315d26df4c64] received connection request\n2025-10-27 17:33:58.313 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9dcaaca8-2693-45d8-b577-315d26df4c64] socks forwarding established\n2025-10-27 17:33:58.373 [info] [command][bd7f92ff-37bc-453e-a449-a204f5a5f0e6] Process exited with code 0\n2025-10-27 17:33:58.373 [info] [command][bd7f92ff-37bc-453e-a449-a204f5a5f0e6] Socket close event received\n2025-10-27 17:33:58.388 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][9dcaaca8-2693-45d8-b577-315d26df4c64] socks connection closed\n2025-10-27 17:34:58.376 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:34:58.378 [info] [command][a45c85d9-681d-4651-8863-e78d641ab181] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""a45c85d9-681d-4651-8863-e78d641ab181""}\n2025-10-27 17:34:58.379 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b10c4730-7803-48ab-a6f1-73b8306b773e] received connection request\n2025-10-27 17:34:58.402 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b10c4730-7803-48ab-a6f1-73b8306b773e] socks forwarding established\n2025-10-27 17:34:58.429 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b10c4730-7803-48ab-a6f1-73b8306b773e] socks connection closed\n2025-10-27 17:34:58.430 [info] [command][a45c85d9-681d-4651-8863-e78d641ab181] Process exited with code 0\n2025-10-27 17:34:58.430 [info] [command][a45c85d9-681d-4651-8863-e78d641ab181] Socket close event received\n2025-10-27 17:35:58.434 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:35:58.437 [info] [command][b6211a4e-1c17-4015-806e-b21d50682773] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b6211a4e-1c17-4015-806e-b21d50682773""}\n2025-10-27 17:35:58.437 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][282214cf-4c07-4db5-93a7-618d46e31a0d] received connection request\n2025-10-27 17:35:58.470 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][282214cf-4c07-4db5-93a7-618d46e31a0d] socks forwarding established\n2025-10-27 17:35:58.506 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][282214cf-4c07-4db5-93a7-618d46e31a0d] socks connection closed\n2025-10-27 17:35:58.506 [info] [command][b6211a4e-1c17-4015-806e-b21d50682773] Process exited with code 0\n2025-10-27 17:35:58.506 [info] [command][b6211a4e-1c17-4015-806e-b21d50682773] Socket close event received\n2025-10-27 17:36:58.511 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:36:58.513 [info] [command][da0d65dd-2683-4ffe-ac23-5f7deffe4920] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""da0d65dd-2683-4ffe-ac23-5f7deffe4920""}\n2025-10-27 17:36:58.513 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ecbaabdd-29ac-428e-98dd-bf52f2b7dd37] received connection request\n2025-10-27 17:36:58.538 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ecbaabdd-29ac-428e-98dd-bf52f2b7dd37] socks forwarding established\n2025-10-27 17:36:58.564 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ecbaabdd-29ac-428e-98dd-bf52f2b7dd37] socks connection closed\n2025-10-27 17:36:58.564 [info] [command][da0d65dd-2683-4ffe-ac23-5f7deffe4920] Process exited with code 0\n2025-10-27 17:36:58.564 [info] [command][da0d65dd-2683-4ffe-ac23-5f7deffe4920] Socket close event received\n2025-10-27 17:37:58.568 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:37:58.571 [info] [command][3b0e8f8b-48aa-4a6c-8e6c-36a23e4b1c05] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""3b0e8f8b-48aa-4a6c-8e6c-36a23e4b1c05""}\n2025-10-27 17:37:58.571 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][60d581a0-715b-48d3-a0f3-6724a5d2a771] received connection request\n2025-10-27 17:37:58.634 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][60d581a0-715b-48d3-a0f3-6724a5d2a771] socks forwarding established\n2025-10-27 17:37:58.666 [info] [command][3b0e8f8b-48aa-4a6c-8e6c-36a23e4b1c05] Process exited with code 0\n2025-10-27 17:37:58.668 [info] [command][3b0e8f8b-48aa-4a6c-8e6c-36a23e4b1c05] Socket close event received\n2025-10-27 17:37:58.671 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][60d581a0-715b-48d3-a0f3-6724a5d2a771] socks connection closed\n2025-10-27 17:38:58.671 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:38:58.673 [info] [command][16f60a3a-f6f1-49c6-9b8c-69c3aa97acc1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""16f60a3a-f6f1-49c6-9b8c-69c3aa97acc1""}\n2025-10-27 17:38:58.674 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][5cd2ab38-c615-421f-b422-9a54c11fcf1d] received connection request\n2025-10-27 17:38:58.732 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5cd2ab38-c615-421f-b422-9a54c11fcf1d] socks forwarding established\n2025-10-27 17:38:58.772 [info] [command][16f60a3a-f6f1-49c6-9b8c-69c3aa97acc1] Process exited with code 0\n2025-10-27 17:38:58.772 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5cd2ab38-c615-421f-b422-9a54c11fcf1d] socks connection closed\n2025-10-27 17:38:58.772 [info] [command][16f60a3a-f6f1-49c6-9b8c-69c3aa97acc1] Socket close event received\n2025-10-27 17:39:58.775 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:39:58.778 [info] [command][bd5f3188-4f20-453f-b749-c3d812b2d5de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""bd5f3188-4f20-453f-b749-c3d812b2d5de""}\n2025-10-27 17:39:58.778 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][958b163d-0940-49f6-bcee-7e30656c2c5d] received connection request\n2025-10-27 17:39:58.828 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][958b163d-0940-49f6-bcee-7e30656c2c5d] socks forwarding established\n2025-10-27 17:39:58.940 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][958b163d-0940-49f6-bcee-7e30656c2c5d] socks connection closed\n2025-10-27 17:39:58.940 [info] [command][bd5f3188-4f20-453f-b749-c3d812b2d5de] Process exited with code 0\n2025-10-27 17:39:58.940 [info] [command][bd5f3188-4f20-453f-b749-c3d812b2d5de] Socket close event received\n2025-10-27 17:40:58.942 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:40:58.945 [info] [command][72e16f24-6f6c-486a-ba3f-b833cb7e62c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""72e16f24-6f6c-486a-ba3f-b833cb7e62c6""}\n2025-10-27 17:40:58.946 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][042de6f8-e652-4e32-81da-3ab5a924d8b9] received connection request\n2025-10-27 17:40:58.982 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][042de6f8-e652-4e32-81da-3ab5a924d8b9] socks forwarding established\n2025-10-27 17:40:59.028 [info] [command][72e16f24-6f6c-486a-ba3f-b833cb7e62c6] Process exited with code 0\n2025-10-27 17:40:59.029 [info] [command][72e16f24-6f6c-486a-ba3f-b833cb7e62c6] Socket close event received\n2025-10-27 17:40:59.037 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][042de6f8-e652-4e32-81da-3ab5a924d8b9] socks connection closed\n2025-10-27 17:41:59.034 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:41:59.037 [info] [command][cc98fe44-6cb2-4c64-8d84-b62173ca1f05] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""cc98fe44-6cb2-4c64-8d84-b62173ca1f05""}\n2025-10-27 17:41:59.038 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7a1f84e4-fe5c-4057-ad91-b37e52b41dd6] received connection request\n2025-10-27 17:41:59.215 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7a1f84e4-fe5c-4057-ad91-b37e52b41dd6] socks forwarding established\n2025-10-27 17:41:59.254 [info] [command][cc98fe44-6cb2-4c64-8d84-b62173ca1f05] Process exited with code 0\n2025-10-27 17:41:59.254 [info] [command][cc98fe44-6cb2-4c64-8d84-b62173ca1f05] Socket close event received\n2025-10-27 17:41:59.262 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7a1f84e4-fe5c-4057-ad91-b37e52b41dd6] socks connection closed\n2025-10-27 17:42:59.256 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:42:59.261 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][160206fc-e687-4c0f-9082-000bce7023f2] received connection request\n2025-10-27 17:42:59.262 [info] [command][cb5f7a8c-b9a8-4a56-8509-f5ae752d7a14] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""cb5f7a8c-b9a8-4a56-8509-f5ae752d7a14""}\n2025-10-27 17:42:59.386 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][160206fc-e687-4c0f-9082-000bce7023f2] socks forwarding established\n2025-10-27 17:42:59.449 [info] [command][cb5f7a8c-b9a8-4a56-8509-f5ae752d7a14] Process exited with code 0\n2025-10-27 17:42:59.451 [info] [command][cb5f7a8c-b9a8-4a56-8509-f5ae752d7a14] Socket close event received\n2025-10-27 17:42:59.463 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][160206fc-e687-4c0f-9082-000bce7023f2] socks connection closed\n2025-10-27 17:43:59.456 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:43:59.459 [info] [command][f73cab31-f868-47c3-bc5b-6206d6fad59f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f73cab31-f868-47c3-bc5b-6206d6fad59f""}\n2025-10-27 17:43:59.460 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b327a9ac-9aaa-4510-8a62-f4f92305fb1c] received connection request\n2025-10-27 17:43:59.541 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b327a9ac-9aaa-4510-8a62-f4f92305fb1c] socks forwarding established\n2025-10-27 17:43:59.595 [info] [command][f73cab31-f868-47c3-bc5b-6206d6fad59f] Process exited with code 0\n2025-10-27 17:43:59.595 [info] [command][f73cab31-f868-47c3-bc5b-6206d6fad59f] Socket close event received\n2025-10-27 17:43:59.596 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b327a9ac-9aaa-4510-8a62-f4f92305fb1c] socks connection closed\n2025-10-27 17:44:59.600 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:44:59.603 [info] [command][ce70b123-2f5f-4d54-ab35-dc2f5758bd91] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ce70b123-2f5f-4d54-ab35-dc2f5758bd91""}\n2025-10-27 17:44:59.603 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0ee197e7-3f3c-4f17-ac53-e2c83dc0b6ae] received connection request\n2025-10-27 17:44:59.644 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0ee197e7-3f3c-4f17-ac53-e2c83dc0b6ae] socks forwarding established\n2025-10-27 17:44:59.695 [info] [command][ce70b123-2f5f-4d54-ab35-dc2f5758bd91] Process exited with code 0\n2025-10-27 17:44:59.695 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0ee197e7-3f3c-4f17-ac53-e2c83dc0b6ae] socks connection closed\n2025-10-27 17:44:59.696 [info] [command][ce70b123-2f5f-4d54-ab35-dc2f5758bd91] Socket close event received\n2025-10-27 17:45:59.699 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:45:59.700 [info] [command][be23eddc-ce15-4586-9fe7-dab8d3ff3883] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""be23eddc-ce15-4586-9fe7-dab8d3ff3883""}\n2025-10-27 17:45:59.700 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7595b90b-7fb2-4ad2-9ab9-0c68f72ef7c3] received connection request\n2025-10-27 17:45:59.903 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7595b90b-7fb2-4ad2-9ab9-0c68f72ef7c3] socks forwarding established\n2025-10-27 17:46:00.028 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7595b90b-7fb2-4ad2-9ab9-0c68f72ef7c3] socks connection closed\n2025-10-27 17:46:00.031 [info] [command][be23eddc-ce15-4586-9fe7-dab8d3ff3883] Process exited with code 0\n2025-10-27 17:46:00.031 [info] [command][be23eddc-ce15-4586-9fe7-dab8d3ff3883] Socket close event received\n2025-10-27 17:47:00.036 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:47:00.038 [info] [command][15d6cecf-92e0-4a4b-b4a2-98e6265227a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""15d6cecf-92e0-4a4b-b4a2-98e6265227a6""}\n2025-10-27 17:47:00.039 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2d508897-074f-4506-bdc4-1e3b108f80b9] received connection request\n2025-10-27 17:47:00.067 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2d508897-074f-4506-bdc4-1e3b108f80b9] socks forwarding established\n2025-10-27 17:47:00.119 [info] [command][15d6cecf-92e0-4a4b-b4a2-98e6265227a6] Process exited with code 0\n2025-10-27 17:47:00.119 [info] [command][15d6cecf-92e0-4a4b-b4a2-98e6265227a6] Socket close event received\n2025-10-27 17:47:00.120 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2d508897-074f-4506-bdc4-1e3b108f80b9] socks connection closed\n2025-10-27 17:48:00.123 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:48:00.125 [info] [command][a69b0055-84fc-49e2-a409-780881d05572] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""a69b0055-84fc-49e2-a409-780881d05572""}\n2025-10-27 17:48:00.126 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][5513cc7c-b953-475e-9dfa-16e2af634f6e] received connection request\n2025-10-27 17:48:00.150 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5513cc7c-b953-475e-9dfa-16e2af634f6e] socks forwarding established\n2025-10-27 17:48:00.179 [info] [command][a69b0055-84fc-49e2-a409-780881d05572] Process exited with code 0\n2025-10-27 17:48:00.179 [info] [command][a69b0055-84fc-49e2-a409-780881d05572] Socket close event received\n2025-10-27 17:48:00.179 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5513cc7c-b953-475e-9dfa-16e2af634f6e] socks connection closed\n2025-10-27 17:49:00.183 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:49:00.185 [info] [command][56b65593-4800-4215-a229-ea92f017f5bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""56b65593-4800-4215-a229-ea92f017f5bf""}\n2025-10-27 17:49:00.186 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][e723b2c1-384e-4757-9be4-6c623ff0d3aa] received connection request\n2025-10-27 17:49:00.245 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e723b2c1-384e-4757-9be4-6c623ff0d3aa] socks forwarding established\n2025-10-27 17:49:00.272 [info] [command][56b65593-4800-4215-a229-ea92f017f5bf] Process exited with code 0\n2025-10-27 17:49:00.272 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e723b2c1-384e-4757-9be4-6c623ff0d3aa] socks connection closed\n2025-10-27 17:49:00.272 [info] [command][56b65593-4800-4215-a229-ea92f017f5bf] Socket close event received\n2025-10-27 17:50:00.279 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:50:00.282 [info] [command][73f106e7-37d3-411a-9893-f21f7d3dbdf9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""73f106e7-37d3-411a-9893-f21f7d3dbdf9""}\n2025-10-27 17:50:00.283 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][04d3e1e3-f9a6-4659-bdcb-4939e9f5c1b6] received connection request\n2025-10-27 17:50:00.317 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][04d3e1e3-f9a6-4659-bdcb-4939e9f5c1b6] socks forwarding established\n2025-10-27 17:50:00.361 [info] [command][73f106e7-37d3-411a-9893-f21f7d3dbdf9] Process exited with code 0\n2025-10-27 17:50:00.361 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][04d3e1e3-f9a6-4659-bdcb-4939e9f5c1b6] socks connection closed\n2025-10-27 17:50:00.362 [info] [command][73f106e7-37d3-411a-9893-f21f7d3dbdf9] Socket close event received\n2025-10-27 17:51:00.365 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:51:00.366 [info] [command][6fa5b9c2-a02b-4d6d-9589-a99fc17de9aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6fa5b9c2-a02b-4d6d-9589-a99fc17de9aa""}\n2025-10-27 17:51:00.367 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][4163be82-b083-4d79-93e8-bd679942d508] received connection request\n2025-10-27 17:51:00.404 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4163be82-b083-4d79-93e8-bd679942d508] socks forwarding established\n2025-10-27 17:51:00.452 [info] [command][6fa5b9c2-a02b-4d6d-9589-a99fc17de9aa] Process exited with code 0\n2025-10-27 17:51:00.453 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4163be82-b083-4d79-93e8-bd679942d508] socks connection closed\n2025-10-27 17:51:00.453 [info] [command][6fa5b9c2-a02b-4d6d-9589-a99fc17de9aa] Socket close event received\n2025-10-27 17:52:00.457 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:52:00.461 [info] [command][e8f86991-71a0-4325-b12f-33ec151f3530] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""e8f86991-71a0-4325-b12f-33ec151f3530""}\n2025-10-27 17:52:00.462 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ac3b0500-af04-4429-ae56-a8fea16bf38a] received connection request\n2025-10-27 17:52:00.501 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ac3b0500-af04-4429-ae56-a8fea16bf38a] socks forwarding established\n2025-10-27 17:52:00.547 [info] [command][e8f86991-71a0-4325-b12f-33ec151f3530] Process exited with code 0\n2025-10-27 17:52:00.547 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ac3b0500-af04-4429-ae56-a8fea16bf38a] socks connection closed\n2025-10-27 17:52:00.547 [info] [command][e8f86991-71a0-4325-b12f-33ec151f3530] Socket close event received\n2025-10-27 17:53:00.552 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:53:00.554 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a0dbb9df-df8c-4bca-b19b-a14e278227d1] received connection request\n2025-10-27 17:53:00.554 [info] [command][885b3e0c-6dd1-44b2-bc16-840b9b79a9b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""885b3e0c-6dd1-44b2-bc16-840b9b79a9b0""}\n2025-10-27 17:53:00.581 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a0dbb9df-df8c-4bca-b19b-a14e278227d1] socks forwarding established\n2025-10-27 17:53:00.623 [info] [command][885b3e0c-6dd1-44b2-bc16-840b9b79a9b0] Process exited with code 0\n2025-10-27 17:53:00.623 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a0dbb9df-df8c-4bca-b19b-a14e278227d1] socks connection closed\n2025-10-27 17:53:00.623 [info] [command][885b3e0c-6dd1-44b2-bc16-840b9b79a9b0] Socket close event received\n2025-10-27 17:54:00.626 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:54:00.629 [info] [command][8b623d1d-2cd3-476f-b7af-8c2f2c80b60e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8b623d1d-2cd3-476f-b7af-8c2f2c80b60e""}\n2025-10-27 17:54:00.629 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][759af8f0-b14c-4bcf-90bb-3889175c2f54] received connection request\n2025-10-27 17:54:00.667 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][759af8f0-b14c-4bcf-90bb-3889175c2f54] socks forwarding established\n2025-10-27 17:54:00.695 [info] [command][8b623d1d-2cd3-476f-b7af-8c2f2c80b60e] Process exited with code 0\n2025-10-27 17:54:00.695 [info] [command][8b623d1d-2cd3-476f-b7af-8c2f2c80b60e] Socket close event received\n2025-10-27 17:54:00.696 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][759af8f0-b14c-4bcf-90bb-3889175c2f54] socks connection closed\n2025-10-27 17:55:00.700 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:55:00.704 [info] [command][0d8f115e-223d-41b7-aeba-ebf6d571fd77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""0d8f115e-223d-41b7-aeba-ebf6d571fd77""}\n2025-10-27 17:55:00.705 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][4aad8759-3821-4821-827d-3696c4c6367e] received connection request\n2025-10-27 17:55:00.729 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4aad8759-3821-4821-827d-3696c4c6367e] socks forwarding established\n2025-10-27 17:55:00.772 [info] [command][0d8f115e-223d-41b7-aeba-ebf6d571fd77] Process exited with code 0\n2025-10-27 17:55:00.773 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4aad8759-3821-4821-827d-3696c4c6367e] socks connection closed\n2025-10-27 17:55:00.773 [info] [command][0d8f115e-223d-41b7-aeba-ebf6d571fd77] Socket close event received\n2025-10-27 17:56:00.778 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:56:00.780 [info] [command][26e29b5d-d9ce-4c61-aed5-d6dc51ad3844] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""26e29b5d-d9ce-4c61-aed5-d6dc51ad3844""}\n2025-10-27 17:56:00.781 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][90da1f8e-f3fd-4ae6-96f7-57ec96e4f898] received connection request\n2025-10-27 17:56:00.807 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][90da1f8e-f3fd-4ae6-96f7-57ec96e4f898] socks forwarding established\n2025-10-27 17:56:00.832 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][90da1f8e-f3fd-4ae6-96f7-57ec96e4f898] socks connection closed\n2025-10-27 17:56:00.832 [info] [command][26e29b5d-d9ce-4c61-aed5-d6dc51ad3844] Process exited with code 0\n2025-10-27 17:56:00.832 [info] [command][26e29b5d-d9ce-4c61-aed5-d6dc51ad3844] Socket close event received\n2025-10-27 17:57:00.847 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:57:00.849 [info] [command][8ac65c2f-8b0d-4165-878b-d7c61fe39717] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8ac65c2f-8b0d-4165-878b-d7c61fe39717""}\n2025-10-27 17:57:00.850 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][12caf78f-8184-4b91-a4fc-86057163c0b6] received connection request\n2025-10-27 17:57:00.905 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][12caf78f-8184-4b91-a4fc-86057163c0b6] socks forwarding established\n2025-10-27 17:57:00.961 [info] [command][8ac65c2f-8b0d-4165-878b-d7c61fe39717] Process exited with code 0\n2025-10-27 17:57:00.961 [info] [command][8ac65c2f-8b0d-4165-878b-d7c61fe39717] Socket close event received\n2025-10-27 17:57:00.963 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][12caf78f-8184-4b91-a4fc-86057163c0b6] socks connection closed\n2025-10-27 17:58:00.965 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:58:00.968 [info] [command][a46983bd-f8ab-4c0f-b9f5-d02e21735d35] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""a46983bd-f8ab-4c0f-b9f5-d02e21735d35""}\n2025-10-27 17:58:00.969 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ec144793-18a3-4c87-8e4e-c95d41c28628] received connection request\n2025-10-27 17:58:00.992 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ec144793-18a3-4c87-8e4e-c95d41c28628] socks forwarding established\n2025-10-27 17:58:01.024 [info] [command][a46983bd-f8ab-4c0f-b9f5-d02e21735d35] Process exited with code 0\n2025-10-27 17:58:01.024 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ec144793-18a3-4c87-8e4e-c95d41c28628] socks connection closed\n2025-10-27 17:58:01.024 [info] [command][a46983bd-f8ab-4c0f-b9f5-d02e21735d35] Socket close event received\n2025-10-27 17:59:01.028 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 17:59:01.032 [info] [command][f9df73a7-0538-491f-9e12-be81bcf0f752] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f9df73a7-0538-491f-9e12-be81bcf0f752""}\n2025-10-27 17:59:01.032 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][00f1c5b0-8e05-4ef2-a72d-2da95be2c6d5] received connection request\n2025-10-27 17:59:01.055 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][00f1c5b0-8e05-4ef2-a72d-2da95be2c6d5] socks forwarding established\n2025-10-27 17:59:01.099 [info] [command][f9df73a7-0538-491f-9e12-be81bcf0f752] Process exited with code 0\n2025-10-27 17:59:01.099 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][00f1c5b0-8e05-4ef2-a72d-2da95be2c6d5] socks connection closed\n2025-10-27 17:59:01.099 [info] [command][f9df73a7-0538-491f-9e12-be81bcf0f752] Socket close event received\n2025-10-27 18:00:01.104 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:00:01.107 [info] [command][1f2f6186-b5bd-42f6-ba35-3595e0e8a1bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""1f2f6186-b5bd-42f6-ba35-3595e0e8a1bd""}\n2025-10-27 18:00:01.109 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][5fd275bb-dd7a-4b99-a0b7-86953ff584e7] received connection request\n2025-10-27 18:00:01.146 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5fd275bb-dd7a-4b99-a0b7-86953ff584e7] socks forwarding established\n2025-10-27 18:00:01.172 [info] [command][1f2f6186-b5bd-42f6-ba35-3595e0e8a1bd] Process exited with code 0\n2025-10-27 18:00:01.172 [info] [command][1f2f6186-b5bd-42f6-ba35-3595e0e8a1bd] Socket close event received\n2025-10-27 18:00:01.172 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5fd275bb-dd7a-4b99-a0b7-86953ff584e7] socks connection closed\n2025-10-27 18:01:01.174 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:01:01.176 [info] [command][cbec8876-d945-4954-87d2-227e56f3e7df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""cbec8876-d945-4954-87d2-227e56f3e7df""}\n2025-10-27 18:01:01.177 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a9b36161-1ba9-4eed-a463-8a088a91dfc8] received connection request\n2025-10-27 18:01:01.256 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a9b36161-1ba9-4eed-a463-8a088a91dfc8] socks forwarding established\n2025-10-27 18:01:01.311 [info] [command][cbec8876-d945-4954-87d2-227e56f3e7df] Process exited with code 0\n2025-10-27 18:01:01.311 [info] [command][cbec8876-d945-4954-87d2-227e56f3e7df] Socket close event received\n2025-10-27 18:01:01.317 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a9b36161-1ba9-4eed-a463-8a088a91dfc8] socks connection closed\n2025-10-27 18:02:01.321 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:02:01.324 [info] [command][4cf03b15-88d1-44a7-9d2b-6bf8111c6426] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4cf03b15-88d1-44a7-9d2b-6bf8111c6426""}\n2025-10-27 18:02:01.325 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][c75b5537-87e9-44c8-8829-2ad7de55fb05] received connection request\n2025-10-27 18:02:01.348 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c75b5537-87e9-44c8-8829-2ad7de55fb05] socks forwarding established\n2025-10-27 18:02:01.375 [info] [command][4cf03b15-88d1-44a7-9d2b-6bf8111c6426] Process exited with code 0\n2025-10-27 18:02:01.375 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c75b5537-87e9-44c8-8829-2ad7de55fb05] socks connection closed\n2025-10-27 18:02:01.375 [info] [command][4cf03b15-88d1-44a7-9d2b-6bf8111c6426] Socket close event received\n2025-10-27 18:03:01.377 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:03:01.379 [info] [command][fe4fc84a-8bfa-4800-a458-a209ec03046b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""fe4fc84a-8bfa-4800-a458-a209ec03046b""}\n2025-10-27 18:03:01.380 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2c711aba-ae8d-4e78-82da-1f9983ce7629] received connection request\n2025-10-27 18:03:01.403 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2c711aba-ae8d-4e78-82da-1f9983ce7629] socks forwarding established\n2025-10-27 18:03:01.432 [info] [command][fe4fc84a-8bfa-4800-a458-a209ec03046b] Process exited with code 0\n2025-10-27 18:03:01.432 [info] [command][fe4fc84a-8bfa-4800-a458-a209ec03046b] Socket close event received\n2025-10-27 18:03:01.432 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2c711aba-ae8d-4e78-82da-1f9983ce7629] socks connection closed\n2025-10-27 18:04:01.442 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:04:01.444 [info] [command][5e8666fe-309f-45a8-9ec4-78ae51de0609] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5e8666fe-309f-45a8-9ec4-78ae51de0609""}\n2025-10-27 18:04:01.445 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][c04b7e83-e852-4b8c-a83a-a4f8fa4e66fb] received connection request\n2025-10-27 18:04:01.469 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c04b7e83-e852-4b8c-a83a-a4f8fa4e66fb] socks forwarding established\n2025-10-27 18:04:01.500 [info] [command][5e8666fe-309f-45a8-9ec4-78ae51de0609] Process exited with code 0\n2025-10-27 18:04:01.500 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c04b7e83-e852-4b8c-a83a-a4f8fa4e66fb] socks connection closed\n2025-10-27 18:04:01.500 [info] [command][5e8666fe-309f-45a8-9ec4-78ae51de0609] Socket close event received\n2025-10-27 18:05:01.500 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:05:01.502 [info] [command][67ce5088-f55c-4fce-83d2-d16dfecc8874] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""67ce5088-f55c-4fce-83d2-d16dfecc8874""}\n2025-10-27 18:05:01.503 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][e630c382-e46f-43f1-af1a-775fd5c5e362] received connection request\n2025-10-27 18:05:01.525 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e630c382-e46f-43f1-af1a-775fd5c5e362] socks forwarding established\n2025-10-27 18:05:01.552 [info] [command][67ce5088-f55c-4fce-83d2-d16dfecc8874] Process exited with code 0\n2025-10-27 18:05:01.552 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e630c382-e46f-43f1-af1a-775fd5c5e362] socks connection closed\n2025-10-27 18:05:01.552 [info] [command][67ce5088-f55c-4fce-83d2-d16dfecc8874] Socket close event received\n2025-10-27 18:06:01.555 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:06:01.556 [info] [command][1d2943ce-cd68-4849-a0f4-5bfbe68214b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""1d2943ce-cd68-4849-a0f4-5bfbe68214b3""}\n2025-10-27 18:06:01.557 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][35975c6d-4321-449f-a662-97a7d044902a] received connection request\n2025-10-27 18:06:01.580 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][35975c6d-4321-449f-a662-97a7d044902a] socks forwarding established\n2025-10-27 18:06:01.606 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][35975c6d-4321-449f-a662-97a7d044902a] socks connection closed\n2025-10-27 18:06:01.606 [info] [command][1d2943ce-cd68-4849-a0f4-5bfbe68214b3] Process exited with code 0\n2025-10-27 18:06:01.606 [info] [command][1d2943ce-cd68-4849-a0f4-5bfbe68214b3] Socket close event received\n2025-10-27 18:07:01.608 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:07:01.611 [info] [command][c903a41b-baf2-49ef-a232-ab65d4027932] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""c903a41b-baf2-49ef-a232-ab65d4027932""}\n2025-10-27 18:07:01.612 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d01dcb58-3d24-4e8d-9246-c31bc6146587] received connection request\n2025-10-27 18:07:01.636 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d01dcb58-3d24-4e8d-9246-c31bc6146587] socks forwarding established\n2025-10-27 18:07:01.663 [info] [command][c903a41b-baf2-49ef-a232-ab65d4027932] Process exited with code 0\n2025-10-27 18:07:01.663 [info] [command][c903a41b-baf2-49ef-a232-ab65d4027932] Socket close event received\n2025-10-27 18:07:01.664 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d01dcb58-3d24-4e8d-9246-c31bc6146587] socks connection closed\n2025-10-27 18:08:01.672 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:08:01.675 [info] [command][80f5612f-c8bd-4fc7-a76d-0fa9c4e12d41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""80f5612f-c8bd-4fc7-a76d-0fa9c4e12d41""}\n2025-10-27 18:08:01.676 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ef1ce614-e66c-4377-b204-ddf1beec2176] received connection request\n2025-10-27 18:08:01.706 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ef1ce614-e66c-4377-b204-ddf1beec2176] socks forwarding established\n2025-10-27 18:08:01.736 [info] [command][80f5612f-c8bd-4fc7-a76d-0fa9c4e12d41] Process exited with code 0\n2025-10-27 18:08:01.736 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ef1ce614-e66c-4377-b204-ddf1beec2176] socks connection closed\n2025-10-27 18:08:01.736 [info] [command][80f5612f-c8bd-4fc7-a76d-0fa9c4e12d41] Socket close event received\n2025-10-27 18:09:01.739 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:09:01.743 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][1ead8b6f-50f2-4292-ac90-d3a8ed40705e] received connection request\n2025-10-27 18:09:01.744 [info] [command][dd1b8e42-784e-4b37-b3cf-a4f1c73b5454] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""dd1b8e42-784e-4b37-b3cf-a4f1c73b5454""}\n2025-10-27 18:09:01.776 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1ead8b6f-50f2-4292-ac90-d3a8ed40705e] socks forwarding established\n2025-10-27 18:09:01.804 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1ead8b6f-50f2-4292-ac90-d3a8ed40705e] socks connection closed\n2025-10-27 18:09:01.805 [info] [command][dd1b8e42-784e-4b37-b3cf-a4f1c73b5454] Process exited with code 0\n2025-10-27 18:09:01.805 [info] [command][dd1b8e42-784e-4b37-b3cf-a4f1c73b5454] Socket close event received\n2025-10-27 18:10:01.814 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:10:01.816 [info] [command][788d3b84-0c7f-431c-90f5-9ef0a2383481] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""788d3b84-0c7f-431c-90f5-9ef0a2383481""}\n2025-10-27 18:10:01.817 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0a58e907-d68e-4cfb-94e2-e38a937bdff8] received connection request\n2025-10-27 18:10:01.840 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0a58e907-d68e-4cfb-94e2-e38a937bdff8] socks forwarding established\n2025-10-27 18:10:01.872 [info] [command][788d3b84-0c7f-431c-90f5-9ef0a2383481] Process exited with code 0\n2025-10-27 18:10:01.872 [info] [command][788d3b84-0c7f-431c-90f5-9ef0a2383481] Socket close event received\n2025-10-27 18:10:01.873 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0a58e907-d68e-4cfb-94e2-e38a937bdff8] socks connection closed\n2025-10-27 18:11:01.882 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:11:01.884 [info] [command][c35df714-0160-4918-84d5-cd56528fde52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""c35df714-0160-4918-84d5-cd56528fde52""}\n2025-10-27 18:11:01.885 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d0c125ab-4dba-4ea4-a2fc-70f5f6e24458] received connection request\n2025-10-27 18:11:01.909 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d0c125ab-4dba-4ea4-a2fc-70f5f6e24458] socks forwarding established\n2025-10-27 18:11:01.949 [info] [command][c35df714-0160-4918-84d5-cd56528fde52] Process exited with code 0\n2025-10-27 18:11:01.949 [info] [command][c35df714-0160-4918-84d5-cd56528fde52] Socket close event received\n2025-10-27 18:11:01.950 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d0c125ab-4dba-4ea4-a2fc-70f5f6e24458] socks connection closed\n2025-10-27 18:12:01.955 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:12:01.958 [info] [command][5a873055-39db-46db-8917-71a615d9becd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5a873055-39db-46db-8917-71a615d9becd""}\n2025-10-27 18:12:01.959 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][50f50612-8b44-4b69-acc4-cbd07a0383c1] received connection request\n2025-10-27 18:12:01.984 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][50f50612-8b44-4b69-acc4-cbd07a0383c1] socks forwarding established\n2025-10-27 18:12:02.013 [info] [command][5a873055-39db-46db-8917-71a615d9becd] Process exited with code 0\n2025-10-27 18:12:02.014 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][50f50612-8b44-4b69-acc4-cbd07a0383c1] socks connection closed\n2025-10-27 18:12:02.014 [info] [command][5a873055-39db-46db-8917-71a615d9becd] Socket close event received\n2025-10-27 18:13:02.016 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:13:02.019 [info] [command][53f87945-c6ca-4d41-9ea3-c8e1dcf48a49] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""53f87945-c6ca-4d41-9ea3-c8e1dcf48a49""}\n2025-10-27 18:13:02.020 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][4a678e53-a9a9-4a8a-ab5b-85355997224f] received connection request\n2025-10-27 18:13:02.068 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4a678e53-a9a9-4a8a-ab5b-85355997224f] socks forwarding established\n2025-10-27 18:13:02.130 [info] [command][53f87945-c6ca-4d41-9ea3-c8e1dcf48a49] Process exited with code 0\n2025-10-27 18:13:02.130 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4a678e53-a9a9-4a8a-ab5b-85355997224f] socks connection closed\n2025-10-27 18:13:02.130 [info] [command][53f87945-c6ca-4d41-9ea3-c8e1dcf48a49] Socket close event received\n2025-10-27 18:14:02.135 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:14:02.138 [info] [command][ff975ae0-c898-43c9-b3bd-9503dc95c54a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ff975ae0-c898-43c9-b3bd-9503dc95c54a""}\n2025-10-27 18:14:02.138 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d04e378b-8b4e-43d7-bde2-06636d2cd1db] received connection request\n2025-10-27 18:14:02.164 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d04e378b-8b4e-43d7-bde2-06636d2cd1db] socks forwarding established\n2025-10-27 18:14:02.195 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d04e378b-8b4e-43d7-bde2-06636d2cd1db] socks connection closed\n2025-10-27 18:14:02.195 [info] [command][ff975ae0-c898-43c9-b3bd-9503dc95c54a] Process exited with code 0\n2025-10-27 18:14:02.195 [info] [command][ff975ae0-c898-43c9-b3bd-9503dc95c54a] Socket close event received\n2025-10-27 18:15:02.195 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:15:02.199 [info] [command][561850d6-a959-4e47-8afd-b26c05203cd5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""561850d6-a959-4e47-8afd-b26c05203cd5""}\n2025-10-27 18:15:02.200 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][6ccf3d41-fdac-4498-a4c4-af155af81280] received connection request\n2025-10-27 18:15:02.228 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6ccf3d41-fdac-4498-a4c4-af155af81280] socks forwarding established\n2025-10-27 18:15:02.258 [info] [command][561850d6-a959-4e47-8afd-b26c05203cd5] Process exited with code 0\n2025-10-27 18:15:02.259 [info] [command][561850d6-a959-4e47-8afd-b26c05203cd5] Socket close event received\n2025-10-27 18:15:02.259 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6ccf3d41-fdac-4498-a4c4-af155af81280] socks connection closed\n2025-10-27 18:16:02.265 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:16:02.267 [info] [command][4419ed0e-f661-4721-9d72-68b96f03c364] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4419ed0e-f661-4721-9d72-68b96f03c364""}\n2025-10-27 18:16:02.268 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][389bd3e8-0939-47da-9ac0-76f74cf169b2] received connection request\n2025-10-27 18:16:02.294 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][389bd3e8-0939-47da-9ac0-76f74cf169b2] socks forwarding established\n2025-10-27 18:16:02.322 [info] [command][4419ed0e-f661-4721-9d72-68b96f03c364] Process exited with code 0\n2025-10-27 18:16:02.323 [info] [command][4419ed0e-f661-4721-9d72-68b96f03c364] Socket close event received\n2025-10-27 18:16:02.323 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][389bd3e8-0939-47da-9ac0-76f74cf169b2] socks connection closed\n2025-10-27 18:17:02.327 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:17:02.329 [info] [command][c1f7de9d-cb55-4c24-b7eb-0b8cf72bf4ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""c1f7de9d-cb55-4c24-b7eb-0b8cf72bf4ed""}\n2025-10-27 18:17:02.330 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][edf29073-37f9-4d8b-b60f-e5c5fdac18a0] received connection request\n2025-10-27 18:17:02.371 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][edf29073-37f9-4d8b-b60f-e5c5fdac18a0] socks forwarding established\n2025-10-27 18:17:02.399 [info] [command][c1f7de9d-cb55-4c24-b7eb-0b8cf72bf4ed] Process exited with code 0\n2025-10-27 18:17:02.400 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][edf29073-37f9-4d8b-b60f-e5c5fdac18a0] socks connection closed\n2025-10-27 18:17:02.400 [info] [command][c1f7de9d-cb55-4c24-b7eb-0b8cf72bf4ed] Socket close event received\n2025-10-27 18:18:02.406 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:18:02.408 [info] [command][06c39a88-f929-411a-8af8-c86b9f099fbb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""06c39a88-f929-411a-8af8-c86b9f099fbb""}\n2025-10-27 18:18:02.409 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ac4d1fab-5b5d-412b-8f81-5b3fce6fc199] received connection request\n2025-10-27 18:18:02.433 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ac4d1fab-5b5d-412b-8f81-5b3fce6fc199] socks forwarding established\n2025-10-27 18:18:02.460 [info] [command][06c39a88-f929-411a-8af8-c86b9f099fbb] Process exited with code 0\n2025-10-27 18:18:02.460 [info] [command][06c39a88-f929-411a-8af8-c86b9f099fbb] Socket close event received\n2025-10-27 18:18:02.461 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ac4d1fab-5b5d-412b-8f81-5b3fce6fc199] socks connection closed\n2025-10-27 18:19:02.466 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:19:02.469 [info] [command][7f95dde3-562e-415b-83f3-e5aee6e0fff9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""7f95dde3-562e-415b-83f3-e5aee6e0fff9""}\n2025-10-27 18:19:02.469 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7c91da7a-deb1-46ca-9270-fbd4d6cbed1b] received connection request\n2025-10-27 18:19:02.504 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7c91da7a-deb1-46ca-9270-fbd4d6cbed1b] socks forwarding established\n2025-10-27 18:19:02.533 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7c91da7a-deb1-46ca-9270-fbd4d6cbed1b] socks connection closed\n2025-10-27 18:19:02.533 [info] [command][7f95dde3-562e-415b-83f3-e5aee6e0fff9] Process exited with code 0\n2025-10-27 18:19:02.533 [info] [command][7f95dde3-562e-415b-83f3-e5aee6e0fff9] Socket close event received\n2025-10-27 18:20:02.536 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:20:02.538 [info] [command][fdfb67a1-fb14-4cc8-ba41-1848bb7a61f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""fdfb67a1-fb14-4cc8-ba41-1848bb7a61f4""}\n2025-10-27 18:20:02.539 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][94217299-ab52-4387-8358-dff9f4570e67] received connection request\n2025-10-27 18:20:02.562 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][94217299-ab52-4387-8358-dff9f4570e67] socks forwarding established\n2025-10-27 18:20:02.588 [info] [command][fdfb67a1-fb14-4cc8-ba41-1848bb7a61f4] Process exited with code 0\n2025-10-27 18:20:02.588 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][94217299-ab52-4387-8358-dff9f4570e67] socks connection closed\n2025-10-27 18:20:02.588 [info] [command][fdfb67a1-fb14-4cc8-ba41-1848bb7a61f4] Socket close event received\n2025-10-27 18:21:02.594 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:21:02.595 [info] [command][f0c058b9-6fb0-43a8-aff7-cf0d60d90fc5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f0c058b9-6fb0-43a8-aff7-cf0d60d90fc5""}\n2025-10-27 18:21:02.595 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][acac4165-b44f-410b-bf9e-fc3f6c44136a] received connection request\n2025-10-27 18:21:02.624 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][acac4165-b44f-410b-bf9e-fc3f6c44136a] socks forwarding established\n2025-10-27 18:21:02.653 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][acac4165-b44f-410b-bf9e-fc3f6c44136a] socks connection closed\n2025-10-27 18:21:02.653 [info] [command][f0c058b9-6fb0-43a8-aff7-cf0d60d90fc5] Process exited with code 0\n2025-10-27 18:21:02.653 [info] [command][f0c058b9-6fb0-43a8-aff7-cf0d60d90fc5] Socket close event received\n2025-10-27 18:22:02.657 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:22:02.659 [info] [command][521b62c8-58c7-46ca-968d-98d74c020525] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""521b62c8-58c7-46ca-968d-98d74c020525""}\n2025-10-27 18:22:02.660 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][85594d7e-c713-46ff-8ff7-c32a84931c36] received connection request\n2025-10-27 18:22:02.781 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][85594d7e-c713-46ff-8ff7-c32a84931c36] socks forwarding established\n2025-10-27 18:22:02.814 [info] [command][521b62c8-58c7-46ca-968d-98d74c020525] Process exited with code 0\n2025-10-27 18:22:02.814 [info] [command][521b62c8-58c7-46ca-968d-98d74c020525] Socket close event received\n2025-10-27 18:22:02.814 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][85594d7e-c713-46ff-8ff7-c32a84931c36] socks connection closed\n2025-10-27 18:23:02.820 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:23:02.822 [info] [command][6e6d4d0e-239f-43c5-88ee-103b0c8d12c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6e6d4d0e-239f-43c5-88ee-103b0c8d12c8""}\n2025-10-27 18:23:02.823 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][e8901b4b-61ce-4626-93d2-bed1c9c9f70e] received connection request\n2025-10-27 18:23:02.850 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e8901b4b-61ce-4626-93d2-bed1c9c9f70e] socks forwarding established\n2025-10-27 18:23:02.876 [info] [command][6e6d4d0e-239f-43c5-88ee-103b0c8d12c8] Process exited with code 0\n2025-10-27 18:23:02.876 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e8901b4b-61ce-4626-93d2-bed1c9c9f70e] socks connection closed\n2025-10-27 18:23:02.876 [info] [command][6e6d4d0e-239f-43c5-88ee-103b0c8d12c8] Socket close event received\n2025-10-27 18:24:02.879 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:24:02.881 [info] [command][f4188f3d-dffb-4eec-bf81-2e2c424cde05] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f4188f3d-dffb-4eec-bf81-2e2c424cde05""}\n2025-10-27 18:24:02.881 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0f52739f-f109-4d0d-80d9-b6984d6d0753] received connection request\n2025-10-27 18:24:02.903 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0f52739f-f109-4d0d-80d9-b6984d6d0753] socks forwarding established\n2025-10-27 18:24:02.930 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0f52739f-f109-4d0d-80d9-b6984d6d0753] socks connection closed\n2025-10-27 18:24:02.930 [info] [command][f4188f3d-dffb-4eec-bf81-2e2c424cde05] Process exited with code 0\n2025-10-27 18:24:02.930 [info] [command][f4188f3d-dffb-4eec-bf81-2e2c424cde05] Socket close event received\n2025-10-27 18:25:02.933 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:25:02.937 [info] [command][cd8df2f9-10df-4f01-a7b8-f62abc50dd0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""cd8df2f9-10df-4f01-a7b8-f62abc50dd0a""}\n2025-10-27 18:25:02.938 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][db27d339-d7f5-4c89-9c96-5964026799ef] received connection request\n2025-10-27 18:25:02.965 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][db27d339-d7f5-4c89-9c96-5964026799ef] socks forwarding established\n2025-10-27 18:25:02.991 [info] [command][cd8df2f9-10df-4f01-a7b8-f62abc50dd0a] Process exited with code 0\n2025-10-27 18:25:02.992 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][db27d339-d7f5-4c89-9c96-5964026799ef] socks connection closed\n2025-10-27 18:25:02.992 [info] [command][cd8df2f9-10df-4f01-a7b8-f62abc50dd0a] Socket close event received\n2025-10-27 18:26:02.993 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:26:02.995 [info] [command][4ec4f6d7-6a05-4358-84dd-e1dc91fa9edd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4ec4f6d7-6a05-4358-84dd-e1dc91fa9edd""}\n2025-10-27 18:26:02.995 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a84b2cc3-75fb-4100-9ed2-2d256954dbfe] received connection request\n2025-10-27 18:26:03.019 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a84b2cc3-75fb-4100-9ed2-2d256954dbfe] socks forwarding established\n2025-10-27 18:26:03.046 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a84b2cc3-75fb-4100-9ed2-2d256954dbfe] socks connection closed\n2025-10-27 18:26:03.046 [info] [command][4ec4f6d7-6a05-4358-84dd-e1dc91fa9edd] Process exited with code 0\n2025-10-27 18:26:03.046 [info] [command][4ec4f6d7-6a05-4358-84dd-e1dc91fa9edd] Socket close event received\n2025-10-27 18:27:03.053 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:27:03.055 [info] [command][7daacbc6-f68e-4bb2-87e5-66b2076b8eff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""7daacbc6-f68e-4bb2-87e5-66b2076b8eff""}\n2025-10-27 18:27:03.056 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][5f8340bc-a7a4-420f-abda-518cceea9c91] received connection request\n2025-10-27 18:27:03.085 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5f8340bc-a7a4-420f-abda-518cceea9c91] socks forwarding established\n2025-10-27 18:27:03.112 [info] [command][7daacbc6-f68e-4bb2-87e5-66b2076b8eff] Process exited with code 0\n2025-10-27 18:27:03.112 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][5f8340bc-a7a4-420f-abda-518cceea9c91] socks connection closed\n2025-10-27 18:27:03.112 [info] [command][7daacbc6-f68e-4bb2-87e5-66b2076b8eff] Socket close event received\n2025-10-27 18:28:03.118 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:28:03.121 [info] [command][500ce304-8e73-4f99-b35e-ae9b98016729] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""500ce304-8e73-4f99-b35e-ae9b98016729""}\n2025-10-27 18:28:03.122 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0e48b649-ca2b-49dd-833e-71ade726fc6e] received connection request\n2025-10-27 18:28:03.145 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0e48b649-ca2b-49dd-833e-71ade726fc6e] socks forwarding established\n2025-10-27 18:28:03.172 [info] [command][500ce304-8e73-4f99-b35e-ae9b98016729] Process exited with code 0\n2025-10-27 18:28:03.172 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0e48b649-ca2b-49dd-833e-71ade726fc6e] socks connection closed\n2025-10-27 18:28:03.172 [info] [command][500ce304-8e73-4f99-b35e-ae9b98016729] Socket close event received\n2025-10-27 18:29:03.154 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:29:03.158 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][81aaf1cb-ad22-4930-be2a-b31505abbae3] received connection request\n2025-10-27 18:29:03.158 [info] [command][353e7b35-9751-4fe5-b4d4-ef530845f414] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""353e7b35-9751-4fe5-b4d4-ef530845f414""}\n2025-10-27 18:29:03.181 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][81aaf1cb-ad22-4930-be2a-b31505abbae3] socks forwarding established\n2025-10-27 18:29:03.208 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][81aaf1cb-ad22-4930-be2a-b31505abbae3] socks connection closed\n2025-10-27 18:29:03.208 [info] [command][353e7b35-9751-4fe5-b4d4-ef530845f414] Process exited with code 0\n2025-10-27 18:29:03.209 [info] [command][353e7b35-9751-4fe5-b4d4-ef530845f414] Socket close event received\n2025-10-27 18:30:03.212 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:30:03.215 [info] [command][dbabdedb-f1b1-444c-b911-9d7179995b19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""dbabdedb-f1b1-444c-b911-9d7179995b19""}\n2025-10-27 18:30:03.215 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][6d0b2288-aa6a-4802-924d-dd8f1907ed9d] received connection request\n2025-10-27 18:30:03.240 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6d0b2288-aa6a-4802-924d-dd8f1907ed9d] socks forwarding established\n2025-10-27 18:30:03.268 [info] [command][dbabdedb-f1b1-444c-b911-9d7179995b19] Process exited with code 0\n2025-10-27 18:30:03.268 [info] [command][dbabdedb-f1b1-444c-b911-9d7179995b19] Socket close event received\n2025-10-27 18:30:03.275 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][6d0b2288-aa6a-4802-924d-dd8f1907ed9d] socks connection closed\n2025-10-27 18:31:03.271 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:31:03.274 [info] [command][0d435de5-fbfa-4e08-9c21-d22c1c1946bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""0d435de5-fbfa-4e08-9c21-d22c1c1946bd""}\n2025-10-27 18:31:03.274 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][84e2d5e7-80a2-43e2-b00e-022bc2f0b59c] received connection request\n2025-10-27 18:31:03.298 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][84e2d5e7-80a2-43e2-b00e-022bc2f0b59c] socks forwarding established\n2025-10-27 18:31:03.329 [info] [command][0d435de5-fbfa-4e08-9c21-d22c1c1946bd] Process exited with code 0\n2025-10-27 18:31:03.329 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][84e2d5e7-80a2-43e2-b00e-022bc2f0b59c] socks connection closed\n2025-10-27 18:31:03.329 [info] [command][0d435de5-fbfa-4e08-9c21-d22c1c1946bd] Socket close event received\n2025-10-27 18:32:03.330 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:32:03.333 [info] [command][92c026e5-86cf-475f-ac0d-860ac42753cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""92c026e5-86cf-475f-ac0d-860ac42753cd""}\n2025-10-27 18:32:03.333 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][f0a09364-5844-4780-81c7-ec1827d7e165] received connection request\n2025-10-27 18:32:03.357 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f0a09364-5844-4780-81c7-ec1827d7e165] socks forwarding established\n2025-10-27 18:32:03.383 [info] [command][92c026e5-86cf-475f-ac0d-860ac42753cd] Process exited with code 0\n2025-10-27 18:32:03.384 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f0a09364-5844-4780-81c7-ec1827d7e165] socks connection closed\n2025-10-27 18:32:03.384 [info] [command][92c026e5-86cf-475f-ac0d-860ac42753cd] Socket close event received\n2025-10-27 18:33:03.387 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:33:03.389 [info] [command][e19b7bc3-e750-4978-96c0-f4a03c8371c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""e19b7bc3-e750-4978-96c0-f4a03c8371c6""}\n2025-10-27 18:33:03.390 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][dac9d663-6978-41b9-905a-05dcb3252b08] received connection request\n2025-10-27 18:33:03.413 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][dac9d663-6978-41b9-905a-05dcb3252b08] socks forwarding established\n2025-10-27 18:33:03.440 [info] [command][e19b7bc3-e750-4978-96c0-f4a03c8371c6] Process exited with code 0\n2025-10-27 18:33:03.440 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][dac9d663-6978-41b9-905a-05dcb3252b08] socks connection closed\n2025-10-27 18:33:03.440 [info] [command][e19b7bc3-e750-4978-96c0-f4a03c8371c6] Socket close event received\n2025-10-27 18:34:03.443 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:34:03.445 [info] [command][8ab74631-91aa-4705-9a41-9c43cd6eaea8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8ab74631-91aa-4705-9a41-9c43cd6eaea8""}\n2025-10-27 18:34:03.446 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2ed22a21-ec3d-4736-a8a4-c16ac117e9c5] received connection request\n2025-10-27 18:34:03.468 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2ed22a21-ec3d-4736-a8a4-c16ac117e9c5] socks forwarding established\n2025-10-27 18:34:03.496 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2ed22a21-ec3d-4736-a8a4-c16ac117e9c5] socks connection closed\n2025-10-27 18:34:03.497 [info] [command][8ab74631-91aa-4705-9a41-9c43cd6eaea8] Process exited with code 0\n2025-10-27 18:34:03.497 [info] [command][8ab74631-91aa-4705-9a41-9c43cd6eaea8] Socket close event received\n2025-10-27 18:35:03.500 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:35:03.502 [info] [command][abfe846e-e1a5-41fe-93e5-bac0fc0e6227] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""abfe846e-e1a5-41fe-93e5-bac0fc0e6227""}\n2025-10-27 18:35:03.503 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7a357f22-6a78-43d8-8693-fdba49a9f75a] received connection request\n2025-10-27 18:35:03.525 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7a357f22-6a78-43d8-8693-fdba49a9f75a] socks forwarding established\n2025-10-27 18:35:03.555 [info] [command][abfe846e-e1a5-41fe-93e5-bac0fc0e6227] Process exited with code 0\n2025-10-27 18:35:03.556 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7a357f22-6a78-43d8-8693-fdba49a9f75a] socks connection closed\n2025-10-27 18:35:03.556 [info] [command][abfe846e-e1a5-41fe-93e5-bac0fc0e6227] Socket close event received\n2025-10-27 18:36:03.561 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:36:03.564 [info] [command][722ed0ec-6015-4db5-9183-c7a265b315cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""722ed0ec-6015-4db5-9183-c7a265b315cf""}\n2025-10-27 18:36:03.566 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][1530851a-b7a2-4d6d-a2d5-9609a0089eb1] received connection request\n2025-10-27 18:36:03.595 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1530851a-b7a2-4d6d-a2d5-9609a0089eb1] socks forwarding established\n2025-10-27 18:36:03.624 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1530851a-b7a2-4d6d-a2d5-9609a0089eb1] socks connection closed\n2025-10-27 18:36:03.624 [info] [command][722ed0ec-6015-4db5-9183-c7a265b315cf] Process exited with code 0\n2025-10-27 18:36:03.625 [info] [command][722ed0ec-6015-4db5-9183-c7a265b315cf] Socket close event received\n2025-10-27 18:37:03.631 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:37:03.633 [info] [command][21feefa4-b019-4250-80f3-37fd11758352] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""21feefa4-b019-4250-80f3-37fd11758352""}\n2025-10-27 18:37:03.634 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][28130aaf-c0e4-4717-a48b-6ef8d44bc574] received connection request\n2025-10-27 18:37:03.760 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][28130aaf-c0e4-4717-a48b-6ef8d44bc574] socks forwarding established\n2025-10-27 18:37:03.794 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][28130aaf-c0e4-4717-a48b-6ef8d44bc574] socks connection closed\n2025-10-27 18:37:03.794 [info] [command][21feefa4-b019-4250-80f3-37fd11758352] Process exited with code 0\n2025-10-27 18:37:03.795 [info] [command][21feefa4-b019-4250-80f3-37fd11758352] Socket close event received\n2025-10-27 18:38:03.799 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:38:03.802 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][53d425b9-0849-4258-9811-b19b40aafe18] received connection request\n2025-10-27 18:38:03.803 [info] [command][eff0d09b-f850-4ae2-97c9-65d49c158d82] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""eff0d09b-f850-4ae2-97c9-65d49c158d82""}\n2025-10-27 18:38:03.827 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][53d425b9-0849-4258-9811-b19b40aafe18] socks forwarding established\n2025-10-27 18:38:03.858 [info] [command][eff0d09b-f850-4ae2-97c9-65d49c158d82] Process exited with code 0\n2025-10-27 18:38:03.858 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][53d425b9-0849-4258-9811-b19b40aafe18] socks connection closed\n2025-10-27 18:38:03.858 [info] [command][eff0d09b-f850-4ae2-97c9-65d49c158d82] Socket close event received\n2025-10-27 18:39:03.863 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:39:03.867 [info] [command][0938db7a-29bf-4206-95ed-354ec462d557] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""0938db7a-29bf-4206-95ed-354ec462d557""}\n2025-10-27 18:39:03.868 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ca09ee54-487f-4130-ba55-9fcae83d1be4] received connection request\n2025-10-27 18:39:03.904 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ca09ee54-487f-4130-ba55-9fcae83d1be4] socks forwarding established\n2025-10-27 18:39:03.931 [info] [command][0938db7a-29bf-4206-95ed-354ec462d557] Process exited with code 0\n2025-10-27 18:39:03.931 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ca09ee54-487f-4130-ba55-9fcae83d1be4] socks connection closed\n2025-10-27 18:39:03.931 [info] [command][0938db7a-29bf-4206-95ed-354ec462d557] Socket close event received\n2025-10-27 18:40:03.932 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:40:03.936 [info] [command][8a651215-88b7-4f41-bbb7-06bf3817302b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8a651215-88b7-4f41-bbb7-06bf3817302b""}\n2025-10-27 18:40:03.937 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0eed902f-062a-411d-832d-dc2ddd7e679e] received connection request\n2025-10-27 18:40:04.064 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0eed902f-062a-411d-832d-dc2ddd7e679e] socks forwarding established\n2025-10-27 18:40:04.092 [info] [command][8a651215-88b7-4f41-bbb7-06bf3817302b] Process exited with code 0\n2025-10-27 18:40:04.092 [info] [command][8a651215-88b7-4f41-bbb7-06bf3817302b] Socket close event received\n2025-10-27 18:40:04.097 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0eed902f-062a-411d-832d-dc2ddd7e679e] socks connection closed\n2025-10-27 18:41:04.094 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:41:04.095 [info] [command][0131432e-31e8-42e2-bb46-755be5e75b4e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""0131432e-31e8-42e2-bb46-755be5e75b4e""}\n2025-10-27 18:41:04.096 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][831f347e-9787-4ef9-b65d-81c6a62b0e39] received connection request\n2025-10-27 18:41:04.120 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][831f347e-9787-4ef9-b65d-81c6a62b0e39] socks forwarding established\n2025-10-27 18:41:04.145 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][831f347e-9787-4ef9-b65d-81c6a62b0e39] socks connection closed\n2025-10-27 18:41:04.145 [info] [command][0131432e-31e8-42e2-bb46-755be5e75b4e] Process exited with code 0\n2025-10-27 18:41:04.145 [info] [command][0131432e-31e8-42e2-bb46-755be5e75b4e] Socket close event received\n2025-10-27 18:42:04.147 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:42:04.151 [info] [command][ae4fa94d-4cfa-4c88-9063-3b77002b8ea3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ae4fa94d-4cfa-4c88-9063-3b77002b8ea3""}\n2025-10-27 18:42:04.152 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][eabb2d0c-1a3a-4476-b787-c03bb62098ca] received connection request\n2025-10-27 18:42:04.179 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][eabb2d0c-1a3a-4476-b787-c03bb62098ca] socks forwarding established\n2025-10-27 18:42:04.211 [info] [command][ae4fa94d-4cfa-4c88-9063-3b77002b8ea3] Process exited with code 0\n2025-10-27 18:42:04.211 [info] [command][ae4fa94d-4cfa-4c88-9063-3b77002b8ea3] Socket close event received\n2025-10-27 18:42:04.212 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][eabb2d0c-1a3a-4476-b787-c03bb62098ca] socks connection closed\n2025-10-27 18:43:04.215 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:43:04.218 [info] [command][ef86ed93-a987-4fa4-843a-20b3e35d099a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ef86ed93-a987-4fa4-843a-20b3e35d099a""}\n2025-10-27 18:43:04.218 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][15d21aaf-8707-42a1-815b-cc80fdda3d1e] received connection request\n2025-10-27 18:43:04.253 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][15d21aaf-8707-42a1-815b-cc80fdda3d1e] socks forwarding established\n2025-10-27 18:43:04.280 [info] [command][ef86ed93-a987-4fa4-843a-20b3e35d099a] Process exited with code 0\n2025-10-27 18:43:04.280 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][15d21aaf-8707-42a1-815b-cc80fdda3d1e] socks connection closed\n2025-10-27 18:43:04.280 [info] [command][ef86ed93-a987-4fa4-843a-20b3e35d099a] Socket close event received\n2025-10-27 18:44:04.283 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:44:04.286 [info] [command][950798a3-b598-4ab0-a038-07d12ee883e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""950798a3-b598-4ab0-a038-07d12ee883e0""}\n2025-10-27 18:44:04.286 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2d18f19f-9944-4527-ac08-5a10717ce5f9] received connection request\n2025-10-27 18:44:04.361 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2d18f19f-9944-4527-ac08-5a10717ce5f9] socks forwarding established\n2025-10-27 18:44:04.391 [info] [command][950798a3-b598-4ab0-a038-07d12ee883e0] Process exited with code 0\n2025-10-27 18:44:04.391 [info] [command][950798a3-b598-4ab0-a038-07d12ee883e0] Socket close event received\n2025-10-27 18:44:04.395 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2d18f19f-9944-4527-ac08-5a10717ce5f9] socks connection closed\n2025-10-27 18:45:04.397 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:45:04.399 [info] [command][5c740992-b3f8-4803-b422-e103854aa3ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5c740992-b3f8-4803-b422-e103854aa3ca""}\n2025-10-27 18:45:04.399 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][e12fedce-04d2-4a0a-8b15-eb64dda888a5] received connection request\n2025-10-27 18:45:04.426 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e12fedce-04d2-4a0a-8b15-eb64dda888a5] socks forwarding established\n2025-10-27 18:45:04.453 [info] [command][5c740992-b3f8-4803-b422-e103854aa3ca] Process exited with code 0\n2025-10-27 18:45:04.453 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e12fedce-04d2-4a0a-8b15-eb64dda888a5] socks connection closed\n2025-10-27 18:45:04.453 [info] [command][5c740992-b3f8-4803-b422-e103854aa3ca] Socket close event received\n2025-10-27 18:46:04.456 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:46:04.458 [info] [command][d548369a-c54d-4cd4-9e65-92673fb65630] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d548369a-c54d-4cd4-9e65-92673fb65630""}\n2025-10-27 18:46:04.459 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][334324eb-b191-4bf6-b4d6-40abc9a8ac05] received connection request\n2025-10-27 18:46:04.482 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][334324eb-b191-4bf6-b4d6-40abc9a8ac05] socks forwarding established\n2025-10-27 18:46:04.508 [info] [command][d548369a-c54d-4cd4-9e65-92673fb65630] Process exited with code 0\n2025-10-27 18:46:04.509 [info] [command][d548369a-c54d-4cd4-9e65-92673fb65630] Socket close event received\n2025-10-27 18:46:04.509 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][334324eb-b191-4bf6-b4d6-40abc9a8ac05] socks connection closed\n2025-10-27 18:47:04.514 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:47:04.516 [info] [command][4bf90198-d3ae-4062-8be3-d3cdbf325d2d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4bf90198-d3ae-4062-8be3-d3cdbf325d2d""}\n2025-10-27 18:47:04.517 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][95128837-7cb9-49c8-ad44-6ac3a47aaf7d] received connection request\n2025-10-27 18:47:04.540 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][95128837-7cb9-49c8-ad44-6ac3a47aaf7d] socks forwarding established\n2025-10-27 18:47:04.574 [info] [command][4bf90198-d3ae-4062-8be3-d3cdbf325d2d] Process exited with code 0\n2025-10-27 18:47:04.575 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][95128837-7cb9-49c8-ad44-6ac3a47aaf7d] socks connection closed\n2025-10-27 18:47:04.575 [info] [command][4bf90198-d3ae-4062-8be3-d3cdbf325d2d] Socket close event received\n2025-10-27 18:48:04.581 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:48:04.583 [info] [command][4475f7d8-9c01-4f60-b0c0-e999add07936] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""4475f7d8-9c01-4f60-b0c0-e999add07936""}\n2025-10-27 18:48:04.584 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a1c3b026-05ee-4192-bfd3-2228a7d3ab1e] received connection request\n2025-10-27 18:48:04.612 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a1c3b026-05ee-4192-bfd3-2228a7d3ab1e] socks forwarding established\n2025-10-27 18:48:04.637 [info] [command][4475f7d8-9c01-4f60-b0c0-e999add07936] Process exited with code 0\n2025-10-27 18:48:04.637 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a1c3b026-05ee-4192-bfd3-2228a7d3ab1e] socks connection closed\n2025-10-27 18:48:04.638 [info] [command][4475f7d8-9c01-4f60-b0c0-e999add07936] Socket close event received\n2025-10-27 18:49:04.642 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:49:04.645 [info] [command][5f12e9e9-038a-43a9-8f98-de4651ba7fa3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5f12e9e9-038a-43a9-8f98-de4651ba7fa3""}\n2025-10-27 18:49:04.647 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][4c87043b-ea61-46e4-bdb9-1161d0fdde36] received connection request\n2025-10-27 18:49:04.670 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4c87043b-ea61-46e4-bdb9-1161d0fdde36] socks forwarding established\n2025-10-27 18:49:04.697 [info] [command][5f12e9e9-038a-43a9-8f98-de4651ba7fa3] Process exited with code 0\n2025-10-27 18:49:04.697 [info] [command][5f12e9e9-038a-43a9-8f98-de4651ba7fa3] Socket close event received\n2025-10-27 18:49:04.697 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][4c87043b-ea61-46e4-bdb9-1161d0fdde36] socks connection closed\n2025-10-27 18:50:04.700 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:50:04.702 [info] [command][2d90415a-70cb-405d-b907-a3c4c32a9686] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""2d90415a-70cb-405d-b907-a3c4c32a9686""}\n2025-10-27 18:50:04.703 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2c633f99-53be-458f-9c46-26f119948190] received connection request\n2025-10-27 18:50:04.727 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2c633f99-53be-458f-9c46-26f119948190] socks forwarding established\n2025-10-27 18:50:04.751 [info] [command][2d90415a-70cb-405d-b907-a3c4c32a9686] Process exited with code 0\n2025-10-27 18:50:04.751 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2c633f99-53be-458f-9c46-26f119948190] socks connection closed\n2025-10-27 18:50:04.752 [info] [command][2d90415a-70cb-405d-b907-a3c4c32a9686] Socket close event received\n2025-10-27 18:51:04.772 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:51:04.810 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][520aa6ba-178c-4d47-8de5-023060c31754] received connection request\n2025-10-27 18:51:04.810 [info] [command][c94adf48-48b8-4614-934d-84e78f338c2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""c94adf48-48b8-4614-934d-84e78f338c2b""}\n2025-10-27 18:51:04.841 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][520aa6ba-178c-4d47-8de5-023060c31754] socks forwarding established\n2025-10-27 18:51:04.865 [info] [command][c94adf48-48b8-4614-934d-84e78f338c2b] Process exited with code 0\n2025-10-27 18:51:04.866 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][520aa6ba-178c-4d47-8de5-023060c31754] socks connection closed\n2025-10-27 18:51:04.866 [info] [command][c94adf48-48b8-4614-934d-84e78f338c2b] Socket close event received\n2025-10-27 18:52:04.873 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:52:04.876 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][97fe3b3b-3a1a-45ea-ae2a-3fd13ca1982d] received connection request\n2025-10-27 18:52:04.876 [info] [command][d424a128-5153-4202-8569-348536ed739c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d424a128-5153-4202-8569-348536ed739c""}\n2025-10-27 18:52:04.899 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][97fe3b3b-3a1a-45ea-ae2a-3fd13ca1982d] socks forwarding established\n2025-10-27 18:52:04.924 [info] [command][d424a128-5153-4202-8569-348536ed739c] Process exited with code 0\n2025-10-27 18:52:04.924 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][97fe3b3b-3a1a-45ea-ae2a-3fd13ca1982d] socks connection closed\n2025-10-27 18:52:04.924 [info] [command][d424a128-5153-4202-8569-348536ed739c] Socket close event received\n2025-10-27 18:53:04.928 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:53:04.930 [info] [command][43285183-ff13-4cdb-9465-47edb0ba065f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""43285183-ff13-4cdb-9465-47edb0ba065f""}\n2025-10-27 18:53:04.931 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][31d6cddd-eb07-4c88-846c-feeffb5f12cc] received connection request\n2025-10-27 18:53:04.953 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][31d6cddd-eb07-4c88-846c-feeffb5f12cc] socks forwarding established\n2025-10-27 18:53:04.980 [info] [command][43285183-ff13-4cdb-9465-47edb0ba065f] Process exited with code 0\n2025-10-27 18:53:04.980 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][31d6cddd-eb07-4c88-846c-feeffb5f12cc] socks connection closed\n2025-10-27 18:53:04.980 [info] [command][43285183-ff13-4cdb-9465-47edb0ba065f] Socket close event received\n2025-10-27 18:54:04.985 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:54:04.987 [info] [command][9f18e2a4-d3c3-42bc-a860-0c40ebedc258] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""9f18e2a4-d3c3-42bc-a860-0c40ebedc258""}\n2025-10-27 18:54:04.987 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][1da44626-19bc-479e-a729-6de1d024b53b] received connection request\n2025-10-27 18:54:05.010 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1da44626-19bc-479e-a729-6de1d024b53b] socks forwarding established\n2025-10-27 18:54:05.035 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][1da44626-19bc-479e-a729-6de1d024b53b] socks connection closed\n2025-10-27 18:54:05.035 [info] [command][9f18e2a4-d3c3-42bc-a860-0c40ebedc258] Process exited with code 0\n2025-10-27 18:54:05.035 [info] [command][9f18e2a4-d3c3-42bc-a860-0c40ebedc258] Socket close event received\n2025-10-27 18:55:05.036 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:55:05.041 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][90de3316-0fdb-4a66-b534-a7ded279b698] received connection request\n2025-10-27 18:55:05.041 [info] [command][8c3b45e1-0ca1-4bdf-a75a-de9697c4cfa2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8c3b45e1-0ca1-4bdf-a75a-de9697c4cfa2""}\n2025-10-27 18:55:05.075 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][90de3316-0fdb-4a66-b534-a7ded279b698] socks forwarding established\n2025-10-27 18:55:05.105 [info] [command][8c3b45e1-0ca1-4bdf-a75a-de9697c4cfa2] Process exited with code 0\n2025-10-27 18:55:05.105 [info] [command][8c3b45e1-0ca1-4bdf-a75a-de9697c4cfa2] Socket close event received\n2025-10-27 18:55:05.106 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][90de3316-0fdb-4a66-b534-a7ded279b698] socks connection closed\n2025-10-27 18:56:05.108 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:56:05.111 [info] [command][5d079979-0e42-4204-a285-085596c6a8f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5d079979-0e42-4204-a285-085596c6a8f5""}\n2025-10-27 18:56:05.112 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][23551b98-3142-4bad-883d-7f32789b0d5c] received connection request\n2025-10-27 18:56:05.136 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][23551b98-3142-4bad-883d-7f32789b0d5c] socks forwarding established\n2025-10-27 18:56:05.165 [info] [command][5d079979-0e42-4204-a285-085596c6a8f5] Process exited with code 0\n2025-10-27 18:56:05.166 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][23551b98-3142-4bad-883d-7f32789b0d5c] socks connection closed\n2025-10-27 18:56:05.166 [info] [command][5d079979-0e42-4204-a285-085596c6a8f5] Socket close event received\n2025-10-27 18:57:05.170 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:57:05.174 [info] [command][623bbb3a-ed28-43ec-b332-2c0227c01aa9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""623bbb3a-ed28-43ec-b332-2c0227c01aa9""}\n2025-10-27 18:57:05.175 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b77675fe-af61-4db2-b53e-f2085914a6fd] received connection request\n2025-10-27 18:57:05.202 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b77675fe-af61-4db2-b53e-f2085914a6fd] socks forwarding established\n2025-10-27 18:57:05.229 [info] [command][623bbb3a-ed28-43ec-b332-2c0227c01aa9] Process exited with code 0\n2025-10-27 18:57:05.229 [info] [command][623bbb3a-ed28-43ec-b332-2c0227c01aa9] Socket close event received\n2025-10-27 18:57:05.230 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b77675fe-af61-4db2-b53e-f2085914a6fd] socks connection closed\n2025-10-27 18:58:05.232 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:58:05.234 [info] [command][0035b8af-3bc8-408f-bfba-6bd957f04e57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""0035b8af-3bc8-408f-bfba-6bd957f04e57""}\n2025-10-27 18:58:05.235 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a5548533-5238-4053-866b-05d02988d0a9] received connection request\n2025-10-27 18:58:05.259 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a5548533-5238-4053-866b-05d02988d0a9] socks forwarding established\n2025-10-27 18:58:05.286 [info] [command][0035b8af-3bc8-408f-bfba-6bd957f04e57] Process exited with code 0\n2025-10-27 18:58:05.286 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a5548533-5238-4053-866b-05d02988d0a9] socks connection closed\n2025-10-27 18:58:05.287 [info] [command][0035b8af-3bc8-408f-bfba-6bd957f04e57] Socket close event received\n2025-10-27 18:59:05.292 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 18:59:05.296 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][51b69251-e7d9-4b49-b59f-b9d9c54268e1] received connection request\n2025-10-27 18:59:05.297 [info] [command][b8533de6-8cd9-401f-93ab-55093f11189a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b8533de6-8cd9-401f-93ab-55093f11189a""}\n2025-10-27 18:59:05.321 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][51b69251-e7d9-4b49-b59f-b9d9c54268e1] socks forwarding established\n2025-10-27 18:59:05.347 [info] [command][b8533de6-8cd9-401f-93ab-55093f11189a] Process exited with code 0\n2025-10-27 18:59:05.347 [info] [command][b8533de6-8cd9-401f-93ab-55093f11189a] Socket close event received\n2025-10-27 18:59:05.348 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][51b69251-e7d9-4b49-b59f-b9d9c54268e1] socks connection closed\n2025-10-27 19:00:05.353 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:00:05.356 [info] [command][e32e472c-f571-4eeb-9f66-0d68e57ddc08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""e32e472c-f571-4eeb-9f66-0d68e57ddc08""}\n2025-10-27 19:00:05.356 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0411f1a8-c564-4e51-8a3a-069d71c02094] received connection request\n2025-10-27 19:00:05.380 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0411f1a8-c564-4e51-8a3a-069d71c02094] socks forwarding established\n2025-10-27 19:00:05.406 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0411f1a8-c564-4e51-8a3a-069d71c02094] socks connection closed\n2025-10-27 19:00:05.406 [info] [command][e32e472c-f571-4eeb-9f66-0d68e57ddc08] Process exited with code 0\n2025-10-27 19:00:05.406 [info] [command][e32e472c-f571-4eeb-9f66-0d68e57ddc08] Socket close event received\n2025-10-27 19:01:05.410 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:01:05.413 [info] [command][6bd368ea-c878-4e81-a014-f53fe6030c68] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6bd368ea-c878-4e81-a014-f53fe6030c68""}\n2025-10-27 19:01:05.414 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][db0b8e8c-b30f-49f9-94c0-322cc6d45c7f] received connection request\n2025-10-27 19:01:05.437 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][db0b8e8c-b30f-49f9-94c0-322cc6d45c7f] socks forwarding established\n2025-10-27 19:01:05.463 [info] [command][6bd368ea-c878-4e81-a014-f53fe6030c68] Process exited with code 0\n2025-10-27 19:01:05.463 [info] [command][6bd368ea-c878-4e81-a014-f53fe6030c68] Socket close event received\n2025-10-27 19:01:05.464 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][db0b8e8c-b30f-49f9-94c0-322cc6d45c7f] socks connection closed\n2025-10-27 19:02:05.468 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:02:05.472 [info] [command][52f2cef5-91d3-4aa8-a0d2-0a894bb4cb94] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""52f2cef5-91d3-4aa8-a0d2-0a894bb4cb94""}\n2025-10-27 19:02:05.472 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][ef6bbdbb-05b9-4054-afe3-d3eee68b32e4] received connection request\n2025-10-27 19:02:05.495 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ef6bbdbb-05b9-4054-afe3-d3eee68b32e4] socks forwarding established\n2025-10-27 19:02:05.524 [info] [command][52f2cef5-91d3-4aa8-a0d2-0a894bb4cb94] Process exited with code 0\n2025-10-27 19:02:05.524 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][ef6bbdbb-05b9-4054-afe3-d3eee68b32e4] socks connection closed\n2025-10-27 19:02:05.524 [info] [command][52f2cef5-91d3-4aa8-a0d2-0a894bb4cb94] Socket close event received\n2025-10-27 19:03:05.530 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:03:05.534 [info] [command][6cec32bb-a09c-425d-9d6b-9ae082d7a34b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6cec32bb-a09c-425d-9d6b-9ae082d7a34b""}\n2025-10-27 19:03:05.536 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][894e16d1-0274-4b55-8ab7-2b0206f90a09] received connection request\n2025-10-27 19:03:05.570 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][894e16d1-0274-4b55-8ab7-2b0206f90a09] socks forwarding established\n2025-10-27 19:03:05.597 [info] [command][6cec32bb-a09c-425d-9d6b-9ae082d7a34b] Process exited with code 0\n2025-10-27 19:03:05.597 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][894e16d1-0274-4b55-8ab7-2b0206f90a09] socks connection closed\n2025-10-27 19:03:05.598 [info] [command][6cec32bb-a09c-425d-9d6b-9ae082d7a34b] Socket close event received\n2025-10-27 19:04:05.601 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:04:05.603 [info] [command][517f82fb-1400-4fe6-805c-808bd61ac8b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""517f82fb-1400-4fe6-805c-808bd61ac8b5""}\n2025-10-27 19:04:05.603 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][369d138d-5b3c-4fff-b193-db207f9f4895] received connection request\n2025-10-27 19:04:05.626 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][369d138d-5b3c-4fff-b193-db207f9f4895] socks forwarding established\n2025-10-27 19:04:05.653 [info] [command][517f82fb-1400-4fe6-805c-808bd61ac8b5] Process exited with code 0\n2025-10-27 19:04:05.653 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][369d138d-5b3c-4fff-b193-db207f9f4895] socks connection closed\n2025-10-27 19:04:05.653 [info] [command][517f82fb-1400-4fe6-805c-808bd61ac8b5] Socket close event received\n2025-10-27 19:05:05.659 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:05:05.662 [info] [command][79a3438c-6787-4eee-8a43-259ddaf3c037] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""79a3438c-6787-4eee-8a43-259ddaf3c037""}\n2025-10-27 19:05:05.663 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][c04b07af-33c9-4e88-8ac6-02d0f54acfb5] received connection request\n2025-10-27 19:05:05.686 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c04b07af-33c9-4e88-8ac6-02d0f54acfb5] socks forwarding established\n2025-10-27 19:05:05.711 [info] [command][79a3438c-6787-4eee-8a43-259ddaf3c037] Process exited with code 0\n2025-10-27 19:05:05.711 [info] [command][79a3438c-6787-4eee-8a43-259ddaf3c037] Socket close event received\n2025-10-27 19:05:05.712 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c04b07af-33c9-4e88-8ac6-02d0f54acfb5] socks connection closed\n2025-10-27 19:06:05.717 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:06:05.721 [info] [command][28221c2b-7cf6-4b5c-8b14-de9c26cb703e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""28221c2b-7cf6-4b5c-8b14-de9c26cb703e""}\n2025-10-27 19:06:05.722 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][c33749a0-ae86-4fa9-b0f6-64b7317b936f] received connection request\n2025-10-27 19:06:05.748 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c33749a0-ae86-4fa9-b0f6-64b7317b936f] socks forwarding established\n2025-10-27 19:06:05.778 [info] [command][28221c2b-7cf6-4b5c-8b14-de9c26cb703e] Process exited with code 0\n2025-10-27 19:06:05.778 [info] [command][28221c2b-7cf6-4b5c-8b14-de9c26cb703e] Socket close event received\n2025-10-27 19:06:05.779 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c33749a0-ae86-4fa9-b0f6-64b7317b936f] socks connection closed\n2025-10-27 19:07:05.784 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:07:05.785 [info] [command][d3374b7f-c4fa-45c4-abb6-935ce34c55a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d3374b7f-c4fa-45c4-abb6-935ce34c55a7""}\n2025-10-27 19:07:05.786 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a85255db-a9ee-4b2a-92b5-dc609792f540] received connection request\n2025-10-27 19:07:05.811 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a85255db-a9ee-4b2a-92b5-dc609792f540] socks forwarding established\n2025-10-27 19:07:05.837 [info] [command][d3374b7f-c4fa-45c4-abb6-935ce34c55a7] Process exited with code 0\n2025-10-27 19:07:05.837 [info] [command][d3374b7f-c4fa-45c4-abb6-935ce34c55a7] Socket close event received\n2025-10-27 19:07:05.837 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a85255db-a9ee-4b2a-92b5-dc609792f540] socks connection closed\n2025-10-27 19:08:05.843 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:08:05.845 [info] [command][d526f421-fb81-4ae7-8474-99f9fb621c4f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d526f421-fb81-4ae7-8474-99f9fb621c4f""}\n2025-10-27 19:08:05.846 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][f9432691-3541-4828-88f0-eb4ba19d4b11] received connection request\n2025-10-27 19:08:05.873 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f9432691-3541-4828-88f0-eb4ba19d4b11] socks forwarding established\n2025-10-27 19:08:05.900 [info] [command][d526f421-fb81-4ae7-8474-99f9fb621c4f] Process exited with code 0\n2025-10-27 19:08:05.900 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f9432691-3541-4828-88f0-eb4ba19d4b11] socks connection closed\n2025-10-27 19:08:05.901 [info] [command][d526f421-fb81-4ae7-8474-99f9fb621c4f] Socket close event received\n2025-10-27 19:09:05.904 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:09:05.907 [info] [command][b0305d4e-dc97-4b59-9952-488983842a25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b0305d4e-dc97-4b59-9952-488983842a25""}\n2025-10-27 19:09:05.907 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][8cf58117-4709-4c94-941d-1846b21ec3ad] received connection request\n2025-10-27 19:09:05.931 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8cf58117-4709-4c94-941d-1846b21ec3ad] socks forwarding established\n2025-10-27 19:09:05.959 [info] [command][b0305d4e-dc97-4b59-9952-488983842a25] Process exited with code 0\n2025-10-27 19:09:05.959 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8cf58117-4709-4c94-941d-1846b21ec3ad] socks connection closed\n2025-10-27 19:09:05.959 [info] [command][b0305d4e-dc97-4b59-9952-488983842a25] Socket close event received\n2025-10-27 19:10:05.962 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:10:05.964 [info] [command][49485f21-3beb-4ab4-9255-216080044c83] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""49485f21-3beb-4ab4-9255-216080044c83""}\n2025-10-27 19:10:05.965 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b67aa4f8-bb2e-4560-8498-15006458e8ed] received connection request\n2025-10-27 19:10:05.988 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b67aa4f8-bb2e-4560-8498-15006458e8ed] socks forwarding established\n2025-10-27 19:10:06.014 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b67aa4f8-bb2e-4560-8498-15006458e8ed] socks connection closed\n2025-10-27 19:10:06.014 [info] [command][49485f21-3beb-4ab4-9255-216080044c83] Process exited with code 0\n2025-10-27 19:10:06.015 [info] [command][49485f21-3beb-4ab4-9255-216080044c83] Socket close event received\n2025-10-27 19:11:06.028 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:11:06.032 [info] [command][8311afd0-35cc-4975-b779-0651ad42e7f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8311afd0-35cc-4975-b779-0651ad42e7f7""}\n2025-10-27 19:11:06.033 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][819916b5-91e5-4486-92a6-52ac71f272c5] received connection request\n2025-10-27 19:11:06.057 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][819916b5-91e5-4486-92a6-52ac71f272c5] socks forwarding established\n2025-10-27 19:11:06.083 [info] [command][8311afd0-35cc-4975-b779-0651ad42e7f7] Process exited with code 0\n2025-10-27 19:11:06.084 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][819916b5-91e5-4486-92a6-52ac71f272c5] socks connection closed\n2025-10-27 19:11:06.084 [info] [command][8311afd0-35cc-4975-b779-0651ad42e7f7] Socket close event received\n2025-10-27 19:12:06.088 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:12:06.089 [info] [command][5759c192-8735-404e-875e-647504004434] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5759c192-8735-404e-875e-647504004434""}\n2025-10-27 19:12:06.089 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][e6acfc32-7d43-4a29-8b12-cd9bf656c945] received connection request\n2025-10-27 19:12:06.111 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e6acfc32-7d43-4a29-8b12-cd9bf656c945] socks forwarding established\n2025-10-27 19:12:06.137 [info] [command][5759c192-8735-404e-875e-647504004434] Process exited with code 0\n2025-10-27 19:12:06.137 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][e6acfc32-7d43-4a29-8b12-cd9bf656c945] socks connection closed\n2025-10-27 19:12:06.137 [info] [command][5759c192-8735-404e-875e-647504004434] Socket close event received\n2025-10-27 19:13:06.143 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:13:06.146 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][de4aa32b-3568-4881-a52c-bc992f0d40d6] received connection request\n2025-10-27 19:13:06.146 [info] [command][8e73410a-3e9f-46b3-8ac0-ed3a830350ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""8e73410a-3e9f-46b3-8ac0-ed3a830350ea""}\n2025-10-27 19:13:06.170 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][de4aa32b-3568-4881-a52c-bc992f0d40d6] socks forwarding established\n2025-10-27 19:13:06.201 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][de4aa32b-3568-4881-a52c-bc992f0d40d6] socks connection closed\n2025-10-27 19:13:06.201 [info] [command][8e73410a-3e9f-46b3-8ac0-ed3a830350ea] Process exited with code 0\n2025-10-27 19:13:06.201 [info] [command][8e73410a-3e9f-46b3-8ac0-ed3a830350ea] Socket close event received\n2025-10-27 19:14:06.205 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:14:06.210 [info] [command][6f9d3d7f-7913-48ad-b439-3bfd3d9b7ce2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""6f9d3d7f-7913-48ad-b439-3bfd3d9b7ce2""}\n2025-10-27 19:14:06.212 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7a7f5547-7002-44fd-bccc-62fa7d71a8b2] received connection request\n2025-10-27 19:14:06.236 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7a7f5547-7002-44fd-bccc-62fa7d71a8b2] socks forwarding established\n2025-10-27 19:14:06.263 [info] [command][6f9d3d7f-7913-48ad-b439-3bfd3d9b7ce2] Process exited with code 0\n2025-10-27 19:14:06.263 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7a7f5547-7002-44fd-bccc-62fa7d71a8b2] socks connection closed\n2025-10-27 19:14:06.263 [info] [command][6f9d3d7f-7913-48ad-b439-3bfd3d9b7ce2] Socket close event received\n2025-10-27 19:15:06.266 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:15:06.269 [info] [command][899203ad-dce6-4305-a747-5d363007ac72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""899203ad-dce6-4305-a747-5d363007ac72""}\n2025-10-27 19:15:06.269 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][c659eca0-8ab8-479f-99ae-b96d761f82e4] received connection request\n2025-10-27 19:15:06.303 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c659eca0-8ab8-479f-99ae-b96d761f82e4] socks forwarding established\n2025-10-27 19:15:06.329 [info] [command][899203ad-dce6-4305-a747-5d363007ac72] Process exited with code 0\n2025-10-27 19:15:06.329 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c659eca0-8ab8-479f-99ae-b96d761f82e4] socks connection closed\n2025-10-27 19:15:06.329 [info] [command][899203ad-dce6-4305-a747-5d363007ac72] Socket close event received\n2025-10-27 19:16:06.334 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:16:06.337 [info] [command][04887500-6776-4469-a96a-74524198c6f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""04887500-6776-4469-a96a-74524198c6f6""}\n2025-10-27 19:16:06.337 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2c8105ad-187e-4398-a1ba-36ab97a720b0] received connection request\n2025-10-27 19:16:06.366 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2c8105ad-187e-4398-a1ba-36ab97a720b0] socks forwarding established\n2025-10-27 19:16:06.397 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2c8105ad-187e-4398-a1ba-36ab97a720b0] socks connection closed\n2025-10-27 19:16:06.397 [info] [command][04887500-6776-4469-a96a-74524198c6f6] Process exited with code 0\n2025-10-27 19:16:06.397 [info] [command][04887500-6776-4469-a96a-74524198c6f6] Socket close event received\n2025-10-27 19:17:06.400 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:17:06.402 [info] [command][f8f0aebf-e601-4670-a548-d79261a50764] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""f8f0aebf-e601-4670-a548-d79261a50764""}\n2025-10-27 19:17:06.403 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][bd46f90d-aa3a-4fcf-973e-1eff02caafae] received connection request\n2025-10-27 19:17:06.426 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bd46f90d-aa3a-4fcf-973e-1eff02caafae] socks forwarding established\n2025-10-27 19:17:06.457 [info] [command][f8f0aebf-e601-4670-a548-d79261a50764] Process exited with code 0\n2025-10-27 19:17:06.457 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bd46f90d-aa3a-4fcf-973e-1eff02caafae] socks connection closed\n2025-10-27 19:17:06.457 [info] [command][f8f0aebf-e601-4670-a548-d79261a50764] Socket close event received\n2025-10-27 19:18:06.460 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:18:06.462 [info] [command][38326124-a819-4044-ad84-0eeb619c0a11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""38326124-a819-4044-ad84-0eeb619c0a11""}\n2025-10-27 19:18:06.462 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][f3d2ed17-280f-4c8c-82b0-41bf00578fc0] received connection request\n2025-10-27 19:18:06.485 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f3d2ed17-280f-4c8c-82b0-41bf00578fc0] socks forwarding established\n2025-10-27 19:18:06.511 [info] [command][38326124-a819-4044-ad84-0eeb619c0a11] Process exited with code 0\n2025-10-27 19:18:06.512 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f3d2ed17-280f-4c8c-82b0-41bf00578fc0] socks connection closed\n2025-10-27 19:18:06.512 [info] [command][38326124-a819-4044-ad84-0eeb619c0a11] Socket close event received\n2025-10-27 19:19:06.513 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:19:06.517 [info] [command][84c463b9-a1e5-40c3-9ded-5413d8a97fef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""84c463b9-a1e5-40c3-9ded-5413d8a97fef""}\n2025-10-27 19:19:06.518 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][91e72330-8fb7-404d-a67b-fa586579e1ac] received connection request\n2025-10-27 19:19:06.544 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][91e72330-8fb7-404d-a67b-fa586579e1ac] socks forwarding established\n2025-10-27 19:19:06.570 [info] [command][84c463b9-a1e5-40c3-9ded-5413d8a97fef] Process exited with code 0\n2025-10-27 19:19:06.571 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][91e72330-8fb7-404d-a67b-fa586579e1ac] socks connection closed\n2025-10-27 19:19:06.571 [info] [command][84c463b9-a1e5-40c3-9ded-5413d8a97fef] Socket close event received\n2025-10-27 19:20:06.571 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:20:06.575 [info] [command][db985382-81bb-4d5d-8cbd-885892f4e864] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""db985382-81bb-4d5d-8cbd-885892f4e864""}\n2025-10-27 19:20:06.576 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][798dbd04-c5b4-42fb-b9a8-c9d17f1c2c56] received connection request\n2025-10-27 19:20:06.602 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][798dbd04-c5b4-42fb-b9a8-c9d17f1c2c56] socks forwarding established\n2025-10-27 19:20:06.629 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][798dbd04-c5b4-42fb-b9a8-c9d17f1c2c56] socks connection closed\n2025-10-27 19:20:06.629 [info] [command][db985382-81bb-4d5d-8cbd-885892f4e864] Process exited with code 0\n2025-10-27 19:20:06.629 [info] [command][db985382-81bb-4d5d-8cbd-885892f4e864] Socket close event received\n2025-10-27 19:21:06.631 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:21:06.634 [info] [command][aa510105-a325-46a2-b65f-eea80b583495] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""aa510105-a325-46a2-b65f-eea80b583495""}\n2025-10-27 19:21:06.635 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][66b284ae-caf2-4309-8d78-ccb0da182f58] received connection request\n2025-10-27 19:21:06.663 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][66b284ae-caf2-4309-8d78-ccb0da182f58] socks forwarding established\n2025-10-27 19:21:06.688 [info] [command][aa510105-a325-46a2-b65f-eea80b583495] Process exited with code 0\n2025-10-27 19:21:06.689 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][66b284ae-caf2-4309-8d78-ccb0da182f58] socks connection closed\n2025-10-27 19:21:06.689 [info] [command][aa510105-a325-46a2-b65f-eea80b583495] Socket close event received\n2025-10-27 19:22:06.695 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:22:06.698 [info] [command][82cb6219-9c15-4d70-8fc4-2860d4902b80] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""82cb6219-9c15-4d70-8fc4-2860d4902b80""}\n2025-10-27 19:22:06.700 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d113b990-9b2a-4304-99a8-0295a3c9fa0b] received connection request\n2025-10-27 19:22:06.725 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d113b990-9b2a-4304-99a8-0295a3c9fa0b] socks forwarding established\n2025-10-27 19:22:06.752 [info] [command][82cb6219-9c15-4d70-8fc4-2860d4902b80] Process exited with code 0\n2025-10-27 19:22:06.752 [info] [command][82cb6219-9c15-4d70-8fc4-2860d4902b80] Socket close event received\n2025-10-27 19:22:06.753 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d113b990-9b2a-4304-99a8-0295a3c9fa0b] socks connection closed\n2025-10-27 19:23:06.753 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:23:06.755 [info] [command][d2c55703-0aea-4c50-bd51-e01ba0a09c2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""d2c55703-0aea-4c50-bd51-e01ba0a09c2e""}\n2025-10-27 19:23:06.756 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][60b6b9cb-6f41-4486-b744-c1275cb2c05b] received connection request\n2025-10-27 19:23:06.779 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][60b6b9cb-6f41-4486-b744-c1275cb2c05b] socks forwarding established\n2025-10-27 19:23:06.804 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][60b6b9cb-6f41-4486-b744-c1275cb2c05b] socks connection closed\n2025-10-27 19:23:06.804 [info] [command][d2c55703-0aea-4c50-bd51-e01ba0a09c2e] Process exited with code 0\n2025-10-27 19:23:06.804 [info] [command][d2c55703-0aea-4c50-bd51-e01ba0a09c2e] Socket close event received\n2025-10-27 19:24:06.807 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:24:06.808 [info] [command][2512df25-b2a0-48a5-bda5-0a4cafbeb02e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""2512df25-b2a0-48a5-bda5-0a4cafbeb02e""}\n2025-10-27 19:24:06.809 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][0e8bb2df-be82-4bfe-b973-5b10731a7074] received connection request\n2025-10-27 19:24:06.837 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0e8bb2df-be82-4bfe-b973-5b10731a7074] socks forwarding established\n2025-10-27 19:24:06.865 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][0e8bb2df-be82-4bfe-b973-5b10731a7074] socks connection closed\n2025-10-27 19:24:06.865 [info] [command][2512df25-b2a0-48a5-bda5-0a4cafbeb02e] Process exited with code 0\n2025-10-27 19:24:06.865 [info] [command][2512df25-b2a0-48a5-bda5-0a4cafbeb02e] Socket close event received\n2025-10-27 19:25:06.868 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:25:06.870 [info] [command][49c9fe29-cd94-4938-9da0-81c3663e5751] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""49c9fe29-cd94-4938-9da0-81c3663e5751""}\n2025-10-27 19:25:06.871 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][f28b1809-afb6-470a-a3d3-07908fad9f8a] received connection request\n2025-10-27 19:25:06.893 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f28b1809-afb6-470a-a3d3-07908fad9f8a] socks forwarding established\n2025-10-27 19:25:06.920 [info] [command][49c9fe29-cd94-4938-9da0-81c3663e5751] Process exited with code 0\n2025-10-27 19:25:06.920 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f28b1809-afb6-470a-a3d3-07908fad9f8a] socks connection closed\n2025-10-27 19:25:06.920 [info] [command][49c9fe29-cd94-4938-9da0-81c3663e5751] Socket close event received\n2025-10-27 19:26:06.924 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:26:06.927 [info] [command][ff26cccc-0586-4967-bf51-75a914fc4131] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ff26cccc-0586-4967-bf51-75a914fc4131""}\n2025-10-27 19:26:06.928 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][432fda24-343e-492d-a8e7-197b0e007285] received connection request\n2025-10-27 19:26:06.951 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][432fda24-343e-492d-a8e7-197b0e007285] socks forwarding established\n2025-10-27 19:26:06.977 [info] [command][ff26cccc-0586-4967-bf51-75a914fc4131] Process exited with code 0\n2025-10-27 19:26:06.977 [info] [command][ff26cccc-0586-4967-bf51-75a914fc4131] Socket close event received\n2025-10-27 19:26:06.977 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][432fda24-343e-492d-a8e7-197b0e007285] socks connection closed\n2025-10-27 19:27:06.982 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:27:06.986 [info] [command][9143539e-3e1f-4961-97ec-156672b323bc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""9143539e-3e1f-4961-97ec-156672b323bc""}\n2025-10-27 19:27:06.987 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][32913499-dda8-42a4-876a-8024ff5aa807] received connection request\n2025-10-27 19:27:07.011 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][32913499-dda8-42a4-876a-8024ff5aa807] socks forwarding established\n2025-10-27 19:27:07.036 [info] [command][9143539e-3e1f-4961-97ec-156672b323bc] Process exited with code 0\n2025-10-27 19:27:07.036 [info] [command][9143539e-3e1f-4961-97ec-156672b323bc] Socket close event received\n2025-10-27 19:27:07.037 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][32913499-dda8-42a4-876a-8024ff5aa807] socks connection closed\n2025-10-27 19:28:07.037 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:28:07.039 [info] [command][609058b3-f39e-4da4-b29c-e827d4e099e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""609058b3-f39e-4da4-b29c-e827d4e099e8""}\n2025-10-27 19:28:07.039 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][2a54633a-420e-41c7-9645-525a3ef7c8e1] received connection request\n2025-10-27 19:28:07.060 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2a54633a-420e-41c7-9645-525a3ef7c8e1] socks forwarding established\n2025-10-27 19:28:07.084 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][2a54633a-420e-41c7-9645-525a3ef7c8e1] socks connection closed\n2025-10-27 19:28:07.084 [info] [command][609058b3-f39e-4da4-b29c-e827d4e099e8] Process exited with code 0\n2025-10-27 19:28:07.084 [info] [command][609058b3-f39e-4da4-b29c-e827d4e099e8] Socket close event received\n2025-10-27 19:29:07.089 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:29:07.092 [info] [command][7ba8cd03-42b8-484e-996c-b3d2b3f1f4e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""7ba8cd03-42b8-484e-996c-b3d2b3f1f4e1""}\n2025-10-27 19:29:07.094 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][eda93260-1674-4c7d-912e-0978dc1f3e5e] received connection request\n2025-10-27 19:29:07.116 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][eda93260-1674-4c7d-912e-0978dc1f3e5e] socks forwarding established\n2025-10-27 19:29:07.142 [info] [command][7ba8cd03-42b8-484e-996c-b3d2b3f1f4e1] Process exited with code 0\n2025-10-27 19:29:07.143 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][eda93260-1674-4c7d-912e-0978dc1f3e5e] socks connection closed\n2025-10-27 19:29:07.143 [info] [command][7ba8cd03-42b8-484e-996c-b3d2b3f1f4e1] Socket close event received\n2025-10-27 19:30:07.148 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:30:07.151 [info] [command][befdeeb6-7611-4481-8b45-f45022f7a2a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""befdeeb6-7611-4481-8b45-f45022f7a2a5""}\n2025-10-27 19:30:07.152 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][7fcf2743-4b1c-495d-8422-ce93009e515d] received connection request\n2025-10-27 19:30:07.174 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7fcf2743-4b1c-495d-8422-ce93009e515d] socks forwarding established\n2025-10-27 19:30:07.199 [info] [command][befdeeb6-7611-4481-8b45-f45022f7a2a5] Process exited with code 0\n2025-10-27 19:30:07.199 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][7fcf2743-4b1c-495d-8422-ce93009e515d] socks connection closed\n2025-10-27 19:30:07.199 [info] [command][befdeeb6-7611-4481-8b45-f45022f7a2a5] Socket close event received\n2025-10-27 19:31:07.202 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:31:07.206 [info] [command][5f358ef0-bc45-4f27-b0e5-c745ad924bb3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5f358ef0-bc45-4f27-b0e5-c745ad924bb3""}\n2025-10-27 19:31:07.207 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][df62d0d8-0d21-4f64-a1d5-7fb719c7d80b] received connection request\n2025-10-27 19:31:07.230 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][df62d0d8-0d21-4f64-a1d5-7fb719c7d80b] socks forwarding established\n2025-10-27 19:31:07.256 [info] [command][5f358ef0-bc45-4f27-b0e5-c745ad924bb3] Process exited with code 0\n2025-10-27 19:31:07.257 [info] [command][5f358ef0-bc45-4f27-b0e5-c745ad924bb3] Socket close event received\n2025-10-27 19:31:07.257 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][df62d0d8-0d21-4f64-a1d5-7fb719c7d80b] socks connection closed\n2025-10-27 19:32:07.263 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:32:07.265 [info] [command][5265e440-23c6-4f72-b8ef-348f913998db] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5265e440-23c6-4f72-b8ef-348f913998db""}\n2025-10-27 19:32:07.266 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][a4c593da-8e3d-49e7-a24e-2f2eb479fe27] received connection request\n2025-10-27 19:32:07.289 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a4c593da-8e3d-49e7-a24e-2f2eb479fe27] socks forwarding established\n2025-10-27 19:32:07.313 [info] [command][5265e440-23c6-4f72-b8ef-348f913998db] Process exited with code 0\n2025-10-27 19:32:07.314 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][a4c593da-8e3d-49e7-a24e-2f2eb479fe27] socks connection closed\n2025-10-27 19:32:07.314 [info] [command][5265e440-23c6-4f72-b8ef-348f913998db] Socket close event received\n2025-10-27 19:33:07.318 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:33:07.321 [info] [command][b4892043-61b6-4789-98c6-25be5e89d4b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""b4892043-61b6-4789-98c6-25be5e89d4b3""}\n2025-10-27 19:33:07.323 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][622a4d75-d44b-4c76-bce2-857f53a8b55c] received connection request\n2025-10-27 19:33:07.349 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][622a4d75-d44b-4c76-bce2-857f53a8b55c] socks forwarding established\n2025-10-27 19:33:07.375 [info] [command][b4892043-61b6-4789-98c6-25be5e89d4b3] Process exited with code 0\n2025-10-27 19:33:07.375 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][622a4d75-d44b-4c76-bce2-857f53a8b55c] socks connection closed\n2025-10-27 19:33:07.376 [info] [command][b4892043-61b6-4789-98c6-25be5e89d4b3] Socket close event received\n2025-10-27 19:34:07.383 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:34:07.386 [info] [command][46fd4d4e-a29b-4e89-b4d1-448269c2d8c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""46fd4d4e-a29b-4e89-b4d1-448269c2d8c0""}\n2025-10-27 19:34:07.387 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][81fdaaee-1a13-4a3b-b015-4dcbc1030479] received connection request\n2025-10-27 19:34:07.409 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][81fdaaee-1a13-4a3b-b015-4dcbc1030479] socks forwarding established\n2025-10-27 19:34:07.434 [info] [command][46fd4d4e-a29b-4e89-b4d1-448269c2d8c0] Process exited with code 0\n2025-10-27 19:34:07.435 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][81fdaaee-1a13-4a3b-b015-4dcbc1030479] socks connection closed\n2025-10-27 19:34:07.435 [info] [command][46fd4d4e-a29b-4e89-b4d1-448269c2d8c0] Socket close event received\n2025-10-27 19:35:07.439 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:35:07.441 [info] [command][7a745e07-27ce-4e8d-a4dd-92fe89bea0f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""7a745e07-27ce-4e8d-a4dd-92fe89bea0f9""}\n2025-10-27 19:35:07.442 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][c4803816-4b61-469d-bb2f-798bb9a381e0] received connection request\n2025-10-27 19:35:07.464 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c4803816-4b61-469d-bb2f-798bb9a381e0] socks forwarding established\n2025-10-27 19:35:07.490 [info] [command][7a745e07-27ce-4e8d-a4dd-92fe89bea0f9] Process exited with code 0\n2025-10-27 19:35:07.491 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][c4803816-4b61-469d-bb2f-798bb9a381e0] socks connection closed\n2025-10-27 19:35:07.491 [info] [command][7a745e07-27ce-4e8d-a4dd-92fe89bea0f9] Socket close event received\n2025-10-27 19:36:07.501 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:36:07.504 [info] [command][79a98089-5640-455e-b0e0-2b56a85b5676] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""79a98089-5640-455e-b0e0-2b56a85b5676""}\n2025-10-27 19:36:07.505 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][db259a9f-4bba-47f2-8501-a8d1591329af] received connection request\n2025-10-27 19:36:07.527 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][db259a9f-4bba-47f2-8501-a8d1591329af] socks forwarding established\n2025-10-27 19:36:07.553 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][db259a9f-4bba-47f2-8501-a8d1591329af] socks connection closed\n2025-10-27 19:36:07.554 [info] [command][79a98089-5640-455e-b0e0-2b56a85b5676] Process exited with code 0\n2025-10-27 19:36:07.554 [info] [command][79a98089-5640-455e-b0e0-2b56a85b5676] Socket close event received\n2025-10-27 19:37:07.563 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:37:07.565 [info] [command][5a60c6ac-7651-4613-8343-6640666084bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5a60c6ac-7651-4613-8343-6640666084bb""}\n2025-10-27 19:37:07.565 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][f63437bc-ddc1-4d6d-b717-73754f2e89ea] received connection request\n2025-10-27 19:37:16.857 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f63437bc-ddc1-4d6d-b717-73754f2e89ea] socks forwarding established\n2025-10-27 19:37:16.921 [info] [command][5a60c6ac-7651-4613-8343-6640666084bb] Process exited with code 0\n2025-10-27 19:37:16.921 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][f63437bc-ddc1-4d6d-b717-73754f2e89ea] socks connection closed\n2025-10-27 19:37:16.921 [info] [command][5a60c6ac-7651-4613-8343-6640666084bb] Socket close event received\n2025-10-27 19:38:16.925 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:38:16.927 [info] [command][5d17b0c9-a6c4-4a2c-9574-bfbb99e9a45c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""5d17b0c9-a6c4-4a2c-9574-bfbb99e9a45c""}\n2025-10-27 19:38:16.928 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][8484ffa0-5510-4eaf-8e66-69b52d211f88] received connection request\n2025-10-27 19:38:16.952 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8484ffa0-5510-4eaf-8e66-69b52d211f88] socks forwarding established\n2025-10-27 19:38:16.977 [info] [command][5d17b0c9-a6c4-4a2c-9574-bfbb99e9a45c] Process exited with code 0\n2025-10-27 19:38:16.977 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8484ffa0-5510-4eaf-8e66-69b52d211f88] socks connection closed\n2025-10-27 19:38:16.978 [info] [command][5d17b0c9-a6c4-4a2c-9574-bfbb99e9a45c] Socket close event received\n2025-10-27 19:39:16.988 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:39:16.990 [info] [command][1ff102d0-1e9d-4752-bd70-7313f6815da5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""1ff102d0-1e9d-4752-bd70-7313f6815da5""}\n2025-10-27 19:39:16.991 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][bcf0a4f6-d511-47dc-862d-d25a6f0e79b1] received connection request\n2025-10-27 19:39:17.020 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bcf0a4f6-d511-47dc-862d-d25a6f0e79b1] socks forwarding established\n2025-10-27 19:39:17.046 [info] [command][1ff102d0-1e9d-4752-bd70-7313f6815da5] Process exited with code 0\n2025-10-27 19:39:17.046 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][bcf0a4f6-d511-47dc-862d-d25a6f0e79b1] socks connection closed\n2025-10-27 19:39:17.046 [info] [command][1ff102d0-1e9d-4752-bd70-7313f6815da5] Socket close event received\n2025-10-27 19:40:17.055 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:40:17.058 [info] [command][2e9f0b8d-5b9f-41cf-b4c6-73907049bbfb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""2e9f0b8d-5b9f-41cf-b4c6-73907049bbfb""}\n2025-10-27 19:40:17.058 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][8ef67b64-d826-45cf-8e6d-a3ed40bfb2c5] received connection request\n2025-10-27 19:40:17.085 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8ef67b64-d826-45cf-8e6d-a3ed40bfb2c5] socks forwarding established\n2025-10-27 19:40:17.115 [info] [command][2e9f0b8d-5b9f-41cf-b4c6-73907049bbfb] Process exited with code 0\n2025-10-27 19:40:17.115 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][8ef67b64-d826-45cf-8e6d-a3ed40bfb2c5] socks connection closed\n2025-10-27 19:40:17.115 [info] [command][2e9f0b8d-5b9f-41cf-b4c6-73907049bbfb] Socket close event received\n2025-10-27 19:41:17.121 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:41:17.124 [info] [command][64c45cff-dc58-4560-96a6-db6ea9e95253] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""64c45cff-dc58-4560-96a6-db6ea9e95253""}\n2025-10-27 19:41:17.126 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][b3f6ed0e-9627-4597-bc93-f45efd0717ad] received connection request\n2025-10-27 19:41:35.703 [info] (ssh_tunnel) stderr: Read from remote host login.haicore.berlin: No route to host\n\n2025-10-27 19:41:35.703 [info] (ssh_tunnel) stderr: client_loop: send disconnect: Broken pipe\n\n2025-10-27 19:41:35.713 [error] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][b3f6ed0e-9627-4597-bc93-f45efd0717ad] error while creating socks forwarding Socket closed\n2025-10-27 19:41:35.714 [info] [command][64c45cff-dc58-4560-96a6-db6ea9e95253] Socket end event received\n2025-10-27 19:41:35.715 [info] [command][64c45cff-dc58-4560-96a6-db6ea9e95253] Socket close event received\n2025-10-27 19:41:35.715 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:62829: Error: [command][64c45cff-dc58-4560-96a6-db6ea9e95253] Socket closed without exit code\n2025-10-27 19:41:35.715 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][fc6b5d7c-eeac-4743-beac-687e60941623] socks connection closed\n2025-10-27 19:41:35.715 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][57b3b60e-c0fd-43a0-8759-b6094281db57] socks connection closed\n2025-10-27 19:41:35.731 [info] Resolving ssh remote authority 'login.haicore.berlin' (Unparsed 'ssh-remote+7b22686f73744e616d65223a226c6f67696e2e686169636f72652e6265726c696e227d') (attempt #2)\n2025-10-27 19:41:35.731 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-10-27 19:41:35.739 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][c9b388a9-8737-4663-80a9-db1f48b6ce11] received connection request\n2025-10-27 19:41:35.739 [error] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][c9b388a9-8737-4663-80a9-db1f48b6ce11] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:62821\n2025-10-27 19:41:35.743 [error] Failed to connect to Cursor server at http://127.0.0.1:62828, attempt 1 of 3 fetch failed\n2025-10-27 19:41:36.751 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][d475fddc-8ca8-4e91-aa1c-a6d209e9a132] received connection request\n2025-10-27 19:41:36.752 [error] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][d475fddc-8ca8-4e91-aa1c-a6d209e9a132] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:62821\n2025-10-27 19:41:36.753 [error] Failed to connect to Cursor server at http://127.0.0.1:62828, attempt 2 of 3 fetch failed\n2025-10-27 19:41:37.766 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][05b84679-65dd-482f-827c-4170a1d0e1ea] received connection request\n2025-10-27 19:41:37.766 [error] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][05b84679-65dd-482f-827c-4170a1d0e1ea] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:62821\n2025-10-27 19:41:37.767 [error] Failed to connect to Cursor server at http://127.0.0.1:62828, attempt 3 of 3 fetch failed\n2025-10-27 19:41:37.767 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-10-27 19:41:37.767 [info] [forwarding][code] returning existing forwarding server listening on local port 62828\n2025-10-27 19:41:37.767 [info] [remote-ssh] codeListeningOn (remote=127.0.0.1:38175; local=127.0.0.1:62828) codeConnectionToken: 34a65717-7664-485d-8d7e-feb5ff746f08\n2025-10-27 19:41:37.767 [info] [forwarding][multiplex] returning existing forwarding server listening on local port 62829\n2025-10-27 19:41:37.767 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: 489663ed-4073-46c6-af01-954cd19d4c05\n2025-10-27 19:41:37.767 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:41:37.769 [info] [command][ee35507d-46c3-459e-93c4-2515266c3dfe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""ee35507d-46c3-459e-93c4-2515266c3dfe""}\n2025-10-27 19:41:37.769 [info] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:33545][d6866708-076f-409e-a19d-b0ebe7a0e73d] received connection request\n2025-10-27 19:41:37.769 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][340ae602-f2ab-44c3-83f3-e45ee4ea2c27] received connection request\n2025-10-27 19:41:37.769 [error] [forwarding][multiplex][127.0.0.1:62829 -> 127.0.0.1:62821 -> 127.0.0.1:33545][d6866708-076f-409e-a19d-b0ebe7a0e73d] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:62821\n2025-10-27 19:41:37.770 [error] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][340ae602-f2ab-44c3-83f3-e45ee4ea2c27] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:62821\n2025-10-27 19:41:37.770 [info] [command][ee35507d-46c3-459e-93c4-2515266c3dfe] Socket end event received\n2025-10-27 19:41:37.770 [info] [command][ee35507d-46c3-459e-93c4-2515266c3dfe] Socket close event received\n2025-10-27 19:41:37.770 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:62829: Error: [command][ee35507d-46c3-459e-93c4-2515266c3dfe] Socket closed without exit code\n2025-10-27 19:41:37.770 [error] Failed to connect to Cursor server at http://127.0.0.1:62828, attempt 1 of 3 fetch failed\n2025-10-27 19:41:38.775 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][33f2c214-8881-4f13-91e6-124efead5762] received connection request\n2025-10-27 19:41:38.775 [error] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][33f2c214-8881-4f13-91e6-124efead5762] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:62821\n2025-10-27 19:41:38.777 [error] Failed to connect to Cursor server at http://127.0.0.1:62828, attempt 2 of 3 fetch failed\n2025-10-27 19:41:39.792 [info] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:38175][5f14746d-5da8-429b-9e67-c9afd5f686cf] received connection request\n2025-10-27 19:41:39.793 [error] [forwarding][code][127.0.0.1:62828 -> 127.0.0.1:62821 -> 127.0.0.1:38175][5f14746d-5da8-429b-9e67-c9afd5f686cf] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:62821\n2025-10-27 19:41:39.794 [error] Failed to connect to Cursor server at http://127.0.0.1:62828, attempt 3 of 3 fetch failed\n2025-10-27 19:41:39.797 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-10-27 19:41:39.851 [info] Terminating existing SSH process\n2025-10-27 19:41:39.851 [info] Using configured platform linux for remote host login.haicore.berlin\n2025-10-27 19:41:39.852 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:41:39.855 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b4a16489-26f7-4f3e-a8c9-aac58c46d70b.sh"" | ssh -T -D 57730 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:39.855 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b4a16489-26f7-4f3e-a8c9-aac58c46d70b.sh"" | ssh -T -D 57730 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:39.856 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:41:39.856 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:41:39.869 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:41:39.869 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:41:39.869 [info] Retrying connection in 5 seconds...\n2025-10-27 19:41:44.878 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b4a16489-26f7-4f3e-a8c9-aac58c46d70b.sh\n2025-10-27 19:41:44.879 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:41:44.883 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5f28c377-e44f-4ee7-88f5-0ee891aca27c.sh"" | ssh -T -D 57731 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:44.883 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5f28c377-e44f-4ee7-88f5-0ee891aca27c.sh"" | ssh -T -D 57731 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:44.883 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:41:44.883 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:41:44.896 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:41:44.896 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:41:44.896 [info] Retrying connection in 5 seconds...\n2025-10-27 19:41:49.906 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5f28c377-e44f-4ee7-88f5-0ee891aca27c.sh\n2025-10-27 19:41:49.907 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:41:49.912 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a9475061-1e0d-4ab5-b204-388d0cecd126.sh"" | ssh -T -D 57732 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:49.912 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a9475061-1e0d-4ab5-b204-388d0cecd126.sh"" | ssh -T -D 57732 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:49.912 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:41:49.912 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:41:49.925 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:41:49.926 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:41:49.926 [info] Retrying connection in 5 seconds...\n2025-10-27 19:41:54.937 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a9475061-1e0d-4ab5-b204-388d0cecd126.sh\n2025-10-27 19:41:54.938 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:41:54.944 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d8cde9f0-8c3f-48f2-8036-13ccb13dae00.sh"" | ssh -T -D 57734 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:54.944 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d8cde9f0-8c3f-48f2-8036-13ccb13dae00.sh"" | ssh -T -D 57734 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:54.944 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:41:54.944 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:41:54.957 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:41:54.958 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:41:54.958 [info] Retrying connection in 5 seconds...\n2025-10-27 19:41:59.969 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d8cde9f0-8c3f-48f2-8036-13ccb13dae00.sh\n2025-10-27 19:41:59.970 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:41:59.975 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4352a153-6b8c-42ec-b05f-c1cf6fa176e5.sh"" | ssh -T -D 57735 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:59.976 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4352a153-6b8c-42ec-b05f-c1cf6fa176e5.sh"" | ssh -T -D 57735 login.haicore.berlin bash --login -c bash\n2025-10-27 19:41:59.976 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:41:59.976 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:41:59.997 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:41:59.998 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:41:59.998 [info] Retrying connection in 5 seconds...\n2025-10-27 19:42:05.008 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4352a153-6b8c-42ec-b05f-c1cf6fa176e5.sh\n2025-10-27 19:42:05.009 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:42:05.013 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_97886c99-fa73-42d6-be28-eaa9343bb70a.sh"" | ssh -T -D 57736 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:05.013 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_97886c99-fa73-42d6-be28-eaa9343bb70a.sh"" | ssh -T -D 57736 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:05.014 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:42:05.014 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:42:05.031 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:42:05.032 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:42:05.032 [info] Retrying connection in 5 seconds...\n2025-10-27 19:42:10.042 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_97886c99-fa73-42d6-be28-eaa9343bb70a.sh\n2025-10-27 19:42:10.043 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:42:10.049 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f39713fa-c920-4f0b-ab61-eff96f7e869d.sh"" | ssh -T -D 57737 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:10.049 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f39713fa-c920-4f0b-ab61-eff96f7e869d.sh"" | ssh -T -D 57737 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:10.049 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:42:10.049 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:42:10.066 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:42:10.066 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:42:10.066 [info] Retrying connection in 5 seconds...\n2025-10-27 19:42:15.073 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f39713fa-c920-4f0b-ab61-eff96f7e869d.sh\n2025-10-27 19:42:15.074 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:42:15.080 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3cabe157-bace-403e-87a1-adda5d422ab3.sh"" | ssh -T -D 57738 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:15.080 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3cabe157-bace-403e-87a1-adda5d422ab3.sh"" | ssh -T -D 57738 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:15.080 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:42:15.080 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:42:15.100 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:42:15.101 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:42:15.101 [info] Retrying connection in 5 seconds...\n2025-10-27 19:42:20.106 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3cabe157-bace-403e-87a1-adda5d422ab3.sh\n2025-10-27 19:42:20.107 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:42:20.112 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4217780f-148f-47cc-a892-b0163571d795.sh"" | ssh -T -D 57739 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:20.112 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4217780f-148f-47cc-a892-b0163571d795.sh"" | ssh -T -D 57739 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:20.112 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:42:20.112 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:42:20.136 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:42:20.137 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:42:20.137 [info] Retrying connection in 5 seconds...\n2025-10-27 19:42:25.142 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4217780f-148f-47cc-a892-b0163571d795.sh\n2025-10-27 19:42:25.144 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:42:25.150 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9ba5dbe7-6350-4a47-a34c-ad0721c2a018.sh"" | ssh -T -D 57740 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:25.150 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9ba5dbe7-6350-4a47-a34c-ad0721c2a018.sh"" | ssh -T -D 57740 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:25.150 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:42:25.150 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:42:25.168 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:42:25.169 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:42:25.169 [info] Retrying connection in 5 seconds...\n2025-10-27 19:42:30.175 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9ba5dbe7-6350-4a47-a34c-ad0721c2a018.sh\n2025-10-27 19:42:30.178 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:42:30.183 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4053e6be-e23f-4d6d-93b2-980b1777d144.sh"" | ssh -T -D 57743 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:30.183 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4053e6be-e23f-4d6d-93b2-980b1777d144.sh"" | ssh -T -D 57743 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:30.183 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:42:30.183 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:42:30.199 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:42:30.200 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:42:30.200 [info] Retrying connection in 5 seconds...\n2025-10-27 19:42:35.202 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4053e6be-e23f-4d6d-93b2-980b1777d144.sh\n2025-10-27 19:42:35.202 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:42:35.204 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5786cf3e-3b08-444d-b04e-04958002146f.sh"" | ssh -T -D 57746 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:35.204 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5786cf3e-3b08-444d-b04e-04958002146f.sh"" | ssh -T -D 57746 login.haicore.berlin bash --login -c bash\n2025-10-27 19:42:35.205 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:42:35.205 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:42:37.774 [info] [remote-ssh] Pinging remote server via 127.0.0.1:62829...\n2025-10-27 19:42:37.775 [info] [command][133bcb52-af89-4678-8dd2-efce5d3a4f3d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""489663ed-4073-46c6-af01-954cd19d4c05"",""id"":""133bcb52-af89-4678-8dd2-efce5d3a4f3d""}\n2025-10-27 19:42:37.775 [error] [forwarding][multiplex][127.0.0.1:62829 -> unknown}][a41b7be0-ba8e-4e2e-9520-48143d613f77] remote server not configured\n2025-10-27 19:42:37.776 [error] [command][133bcb52-af89-4678-8dd2-efce5d3a4f3d] Socket error: Error: read ECONNRESET\n2025-10-27 19:42:37.776 [info] [command][133bcb52-af89-4678-8dd2-efce5d3a4f3d] Socket close event received\n2025-10-27 19:42:37.776 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:62829: Error: [command][133bcb52-af89-4678-8dd2-efce5d3a4f3d] Socket closed without exit code\n2025-10-27 19:43:05.211 [error] Error installing server: Failed to install server within the timeout\n2025-10-27 19:43:05.211 [info] Retrying connection in 5 seconds...\n2025-10-27 19:43:07.070 [info] (ssh_tunnel) stdout: Configuring Cursor Server on Remote\nUsing TMP_DIR: /run/user/961800067\n\n2025-10-27 19:43:07.136 [info] (ssh_tunnel) stdout: Locking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 19:43:07.157 [info] (ssh_tunnel) stdout: Server script already installed in /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server\nChecking node executable\n\n2025-10-27 19:43:07.181 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-10-27 19:43:07.185 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-27 19:43:07.204 [info] (ssh_tunnel) stdout: Running multiplex server: \nCreating multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\nCreating directory for multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server\nWriting multiplex server script to /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-27 19:43:07.258 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js 18537a82-2c66-4d7b-90b4-32ff1f3c50ec 0\nMultiplex server started with PID 977314 and wrote pid to file /run/user/961800067/cursor-remote-multiplex.pid.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\nReading multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\nMultiplex server token file found\nReading multiplex server log file /run/user/961800067/cursor-remote-multiplex.log.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-27 19:43:07.677 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-10-27 19:43:07.715 [info] (ssh_tunnel) stdout: Code server script is not running\nCreating code server token file /run/user/961800067/cursor-remote-code.token.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 19:43:07.716 [info] (ssh_tunnel) stdout: Starting code server script /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/961800067/cursor-remote-code.token.c403edc4db82e26fa41a0903d75ac6d0 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/961800067/cursor-remote-code.log.c403edc4db82e26fa41a0903d75ac6d0 &\nCode server started with PID 977346 and wrote pid to file /run/user/961800067/cursor-remote-code.pid.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 19:43:07.720 [info] (ssh_tunnel) stdout: Code server log file is /run/user/961800067/cursor-remote-code.log.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 19:43:08.222 [info] (ssh_tunnel) stdout: fc2894b75f10139409ccc58d: start\nexitCode==0==\nnodeExecutable==/home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==44487==\nmultiplexConnectionToken==18537a82-2c66-4d7b-90b4-32ff1f3c50ec==\ncodeListeningOn==34469==\ncodeConnectionToken==e9880a90-59ed-439f-828f-b4e7b12d5fee==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\nfc2894b75f10139409ccc58d: end\nUnlocking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 19:43:08.276 [info] (ssh_tunnel) stdout: \n***********************************************************************\n\n2025-10-27 19:43:08.301 [info] (ssh_tunnel) stdout: * This terminal is used to establish and maintain the SSH connection. *\n* Closing this terminal will terminate the connection and disconnect *\n* Cursor from the remote server. *\n***********************************************************************\n\n2025-10-27 19:43:10.216 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5786cf3e-3b08-444d-b04e-04958002146f.sh\n2025-10-27 19:43:10.217 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qlqL4H/socket.sock\n2025-10-27 19:43:10.221 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_997d737c-90c9-4f08-bcf6-695c596e91ff.sh"" | ssh -T -D 58017 login.haicore.berlin bash --login -c bash\n2025-10-27 19:43:10.221 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_997d737c-90c9-4f08-bcf6-695c596e91ff.sh"" | ssh -T -D 58017 login.haicore.berlin bash --login -c bash\n2025-10-27 19:43:10.221 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:43:10.221 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:43:15.411 [info] Resolving ssh remote authority 'login.haicore.berlin' (Unparsed 'ssh-remote+7b22686f73744e616d65223a226c6f67696e2e686169636f72652e6265726c696e227d') (attempt #1)\n2025-10-27 19:43:15.418 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:43:15.418 [info] Using configured platform linux for remote host login.haicore.berlin\n2025-10-27 19:43:15.419 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:43:15.422 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9c3bec08-990f-4001-abc8-453d2a5ff49f.sh"" | ssh -T -D 58038 login.haicore.berlin bash --login -c bash\n2025-10-27 19:43:15.422 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9c3bec08-990f-4001-abc8-453d2a5ff49f.sh"" | ssh -T -D 58038 login.haicore.berlin bash --login -c bash\n2025-10-27 19:43:15.422 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:43:15.422 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:43:16.851 [info] (ssh_tunnel) stdout: Configuring Cursor Server on Remote\n\n2025-10-27 19:43:16.854 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/961800067\n\n2025-10-27 19:43:16.899 [info] (ssh_tunnel) stdout: Locking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 19:43:16.904 [info] (ssh_tunnel) stdout: Server script already installed in /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server\nChecking node executable\n\n2025-10-27 19:43:16.908 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-10-27 19:43:16.916 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-27 19:43:16.992 [info] (ssh_tunnel) stdout: Running multiplex server: 977314 /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js 18537a82-2c66-4d7b-90b4-32ff1f3c50ec 0\n\n2025-10-27 19:43:16.997 [info] (ssh_tunnel) stdout: Multiplex server script is already running /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js. Running processes are 977314 /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js 18537a82-2c66-4d7b-90b4-32ff1f3c50ec 0\nReading multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-27 19:43:17.002 [info] (ssh_tunnel) stdout: Multiplex server token file found\nReading multiplex server log file /run/user/961800067/cursor-remote-multiplex.log.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\nChecking for code servers\n\n2025-10-27 19:43:17.035 [info] (ssh_tunnel) stdout: Code server script is already running /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server. Running processes are 977346 sh /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/961800067/cursor-remote-code.token.c403edc4db82e26fa41a0903d75ac6d0 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\n\n2025-10-27 19:43:17.037 [info] (ssh_tunnel) stdout: Code server log file is /run/user/961800067/cursor-remote-code.log.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-27 19:43:17.090 [info] (ssh_tunnel) stdout: d2365ca418a1ae854f82768e: start\nexitCode==0==\nnodeExecutable==/home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==44487==\nmultiplexConnectionToken==18537a82-2c66-4d7b-90b4-32ff1f3c50ec==\ncodeListeningOn==34469==\ncodeConnectionToken==e9880a90-59ed-439f-828f-b4e7b12d5fee==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\nd2365ca418a1ae854f82768e: end\nUnlocking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n \n***********************************************************************\n* This terminal is used to establish and maintain the SSH connection. *\n* Closing this terminal will terminate the connection and disconnect *\n* Cursor from the remote server. *\n***********************************************************************\n\n2025-10-27 19:43:17.092 [info] Server install command exit code: 0\n2025-10-27 19:43:17.092 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9c3bec08-990f-4001-abc8-453d2a5ff49f.sh\n2025-10-27 19:43:17.094 [info] [forwarding][code] creating new forwarding server\n2025-10-27 19:43:17.094 [info] [forwarding][code] server listening on 127.0.0.1:58045\n2025-10-27 19:43:17.094 [info] [forwarding][code] Set up server\n2025-10-27 19:43:17.094 [info] [remote-ssh] codeListeningOn (remote=127.0.0.1:34469; local=127.0.0.1:58045) codeConnectionToken: e9880a90-59ed-439f-828f-b4e7b12d5fee\n2025-10-27 19:43:17.094 [info] [forwarding][multiplex] creating new forwarding server\n2025-10-27 19:43:17.094 [info] [forwarding][multiplex] server listening on 127.0.0.1:58046\n2025-10-27 19:43:17.094 [info] [forwarding][multiplex] Set up server\n2025-10-27 19:43:17.096 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: 18537a82-2c66-4d7b-90b4-32ff1f3c50ec\n2025-10-27 19:43:17.096 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:43:17.097 [info] [remote-ssh] Resolved exec server. Socks port: 58038\n2025-10-27 19:43:17.097 [info] Setting up 0 default forwarded ports\n2025-10-27 19:43:17.097 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":58045,""connectionToken"":""e9880a90-59ed-439f-828f-b4e7b12d5fee"",""extensionHostEnv"":{}}. Socks port: 58038\n2025-10-27 19:43:17.141 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][001cf6c7-5436-4ba7-b220-8c5287f8b789] received connection request\n2025-10-27 19:43:17.141 [info] [command][72db78b7-df50-4b1a-a376-ad794918d28b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""72db78b7-df50-4b1a-a376-ad794918d28b""}\n2025-10-27 19:43:17.212 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:34469][c754d353-783d-4eec-b023-103b77c6fa54] received connection request\n2025-10-27 19:43:17.284 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][001cf6c7-5436-4ba7-b220-8c5287f8b789] socks forwarding established\n2025-10-27 19:43:17.292 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:58038 -> 127.0.0.1:34469][c754d353-783d-4eec-b023-103b77c6fa54] socks forwarding established\n2025-10-27 19:43:17.372 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][001cf6c7-5436-4ba7-b220-8c5287f8b789] socks connection closed\n2025-10-27 19:43:17.373 [info] [command][72db78b7-df50-4b1a-a376-ad794918d28b] Process exited with code 0\n2025-10-27 19:43:17.373 [info] [command][72db78b7-df50-4b1a-a376-ad794918d28b] Socket close event received\n2025-10-27 19:43:17.392 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:34469][af05b228-3bc9-495e-bbd3-d4c5e709f74b] received connection request\n2025-10-27 19:43:17.472 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:58038 -> 127.0.0.1:34469][af05b228-3bc9-495e-bbd3-d4c5e709f74b] socks forwarding established\n2025-10-27 19:43:17.778 [info] Saved platform linux for remote host login.haicore.berlin\n2025-10-27 19:43:21.467 [info] [tunnel-forwarding][localhost:8888 -> 127.0.0.1:8888] server listening\n2025-10-27 19:43:21.467 [info] Cross binding to [::1]:8888. Originally bound to 127.0.0.1:8888\n2025-10-27 19:43:21.467 [info] [tunnel-forwarding][::1:8888 -> 127.0.0.1:8888] server listening\n2025-10-27 19:43:21.470 [info] [tunnel-forwarding][localhost:62884 -> localhost:6006] server listening\n2025-10-27 19:43:21.470 [info] Cross binding to [::1]:62884. Originally bound to 127.0.0.1:62884\n2025-10-27 19:43:21.470 [info] [tunnel-forwarding][::1:62884 -> localhost:6006] server listening\n2025-10-27 19:44:17.375 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:44:17.379 [info] [command][1b952f1f-c7f2-4559-873c-d29b87c4deae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1b952f1f-c7f2-4559-873c-d29b87c4deae""}\n2025-10-27 19:44:17.380 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][cf2b4b23-ce49-4465-a019-3840ebcfcfd7] received connection request\n2025-10-27 19:44:17.518 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][cf2b4b23-ce49-4465-a019-3840ebcfcfd7] socks forwarding established\n2025-10-27 19:44:17.604 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][cf2b4b23-ce49-4465-a019-3840ebcfcfd7] socks connection closed\n2025-10-27 19:44:17.604 [info] [command][1b952f1f-c7f2-4559-873c-d29b87c4deae] Process exited with code 0\n2025-10-27 19:44:17.604 [info] [command][1b952f1f-c7f2-4559-873c-d29b87c4deae] Socket close event received\n2025-10-27 19:44:18.927 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:34469][a8ab6aae-b35d-4bf8-9da5-8b9cc460d6f6] received connection request\n2025-10-27 19:44:19.024 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:58038 -> 127.0.0.1:34469][a8ab6aae-b35d-4bf8-9da5-8b9cc460d6f6] socks forwarding established\n2025-10-27 19:44:25.130 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:58038 -> 127.0.0.1:34469][a8ab6aae-b35d-4bf8-9da5-8b9cc460d6f6] socks connection closed\n2025-10-27 19:45:17.610 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:45:17.612 [info] [command][144d5fc3-8371-409d-86c3-f8697999acc0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""144d5fc3-8371-409d-86c3-f8697999acc0""}\n2025-10-27 19:45:17.612 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][c963a50a-f9bc-4da8-95c8-8772c32343ad] received connection request\n2025-10-27 19:45:17.683 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][c963a50a-f9bc-4da8-95c8-8772c32343ad] socks forwarding established\n2025-10-27 19:45:17.767 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][c963a50a-f9bc-4da8-95c8-8772c32343ad] socks connection closed\n2025-10-27 19:45:17.767 [info] [command][144d5fc3-8371-409d-86c3-f8697999acc0] Process exited with code 0\n2025-10-27 19:45:17.768 [info] [command][144d5fc3-8371-409d-86c3-f8697999acc0] Socket close event received\n2025-10-27 19:46:17.774 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:46:17.777 [info] [command][d7002d20-d2a5-4893-84b4-f27e9a985002] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d7002d20-d2a5-4893-84b4-f27e9a985002""}\n2025-10-27 19:46:17.778 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][3f93cc8d-c05f-46d2-8bb7-e21e896ad066] received connection request\n2025-10-27 19:46:17.859 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][3f93cc8d-c05f-46d2-8bb7-e21e896ad066] socks forwarding established\n2025-10-27 19:46:17.975 [info] [command][d7002d20-d2a5-4893-84b4-f27e9a985002] Process exited with code 0\n2025-10-27 19:46:17.976 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][3f93cc8d-c05f-46d2-8bb7-e21e896ad066] socks connection closed\n2025-10-27 19:46:17.976 [info] [command][d7002d20-d2a5-4893-84b4-f27e9a985002] Socket close event received\n2025-10-27 19:47:17.978 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:47:17.981 [info] [command][e64d0f25-a129-49bc-9d36-63d6413f4f41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e64d0f25-a129-49bc-9d36-63d6413f4f41""}\n2025-10-27 19:47:17.982 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][6e5f2783-ed4d-4411-8c9c-f452cfa3cf62] received connection request\n2025-10-27 19:47:18.084 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][6e5f2783-ed4d-4411-8c9c-f452cfa3cf62] socks forwarding established\n2025-10-27 19:47:18.190 [info] [command][e64d0f25-a129-49bc-9d36-63d6413f4f41] Process exited with code 0\n2025-10-27 19:47:18.191 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][6e5f2783-ed4d-4411-8c9c-f452cfa3cf62] socks connection closed\n2025-10-27 19:47:18.191 [info] [command][e64d0f25-a129-49bc-9d36-63d6413f4f41] Socket close event received\n2025-10-27 19:48:18.193 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:48:18.196 [info] [command][e47df831-fb99-4c02-acb7-e9ff8e29649b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e47df831-fb99-4c02-acb7-e9ff8e29649b""}\n2025-10-27 19:48:18.197 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][3488b6f2-46cf-4b3f-8650-6bdeb966792e] received connection request\n2025-10-27 19:48:18.285 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][3488b6f2-46cf-4b3f-8650-6bdeb966792e] socks forwarding established\n2025-10-27 19:48:18.376 [info] [command][e47df831-fb99-4c02-acb7-e9ff8e29649b] Process exited with code 0\n2025-10-27 19:48:18.376 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][3488b6f2-46cf-4b3f-8650-6bdeb966792e] socks connection closed\n2025-10-27 19:48:18.376 [info] [command][e47df831-fb99-4c02-acb7-e9ff8e29649b] Socket close event received\n2025-10-27 19:49:18.379 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:49:18.382 [info] [command][b123f803-45be-479b-b8a9-a9df45bfa6df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b123f803-45be-479b-b8a9-a9df45bfa6df""}\n2025-10-27 19:49:18.383 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][362b7185-9d22-4158-98be-674b3f1c2045] received connection request\n2025-10-27 19:49:18.493 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][362b7185-9d22-4158-98be-674b3f1c2045] socks forwarding established\n2025-10-27 19:49:18.570 [info] [command][b123f803-45be-479b-b8a9-a9df45bfa6df] Process exited with code 0\n2025-10-27 19:49:18.570 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][362b7185-9d22-4158-98be-674b3f1c2045] socks connection closed\n2025-10-27 19:49:18.570 [info] [command][b123f803-45be-479b-b8a9-a9df45bfa6df] Socket close event received\n2025-10-27 19:50:18.575 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:50:18.578 [info] [command][e32d808c-2931-49a8-86e9-b3d4bd4c7e4b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e32d808c-2931-49a8-86e9-b3d4bd4c7e4b""}\n2025-10-27 19:50:18.578 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][77b438ba-18af-4471-89f4-e225002e6f97] received connection request\n2025-10-27 19:50:18.677 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][77b438ba-18af-4471-89f4-e225002e6f97] socks forwarding established\n2025-10-27 19:50:18.813 [info] [command][e32d808c-2931-49a8-86e9-b3d4bd4c7e4b] Process exited with code 0\n2025-10-27 19:50:18.814 [info] [command][e32d808c-2931-49a8-86e9-b3d4bd4c7e4b] Socket close event received\n2025-10-27 19:50:18.815 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][77b438ba-18af-4471-89f4-e225002e6f97] socks connection closed\n2025-10-27 19:51:18.819 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:51:18.823 [info] [command][26915c7e-8c97-4029-af49-1021cd4105b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""26915c7e-8c97-4029-af49-1021cd4105b9""}\n2025-10-27 19:51:18.824 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][4e88fdd9-2151-4d87-bf89-81b41479e33e] received connection request\n2025-10-27 19:51:18.912 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][4e88fdd9-2151-4d87-bf89-81b41479e33e] socks forwarding established\n2025-10-27 19:51:19.010 [info] [command][26915c7e-8c97-4029-af49-1021cd4105b9] Process exited with code 0\n2025-10-27 19:51:19.010 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][4e88fdd9-2151-4d87-bf89-81b41479e33e] socks connection closed\n2025-10-27 19:51:19.010 [info] [command][26915c7e-8c97-4029-af49-1021cd4105b9] Socket close event received\n2025-10-27 19:52:19.012 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:52:19.014 [info] [command][3c3f932b-31fb-4778-82c7-5ae461b07ec3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3c3f932b-31fb-4778-82c7-5ae461b07ec3""}\n2025-10-27 19:52:19.015 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][b9a3615f-87b7-499c-9aec-18306eb3eb0e] received connection request\n2025-10-27 19:52:19.081 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][b9a3615f-87b7-499c-9aec-18306eb3eb0e] socks forwarding established\n2025-10-27 19:52:19.159 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][b9a3615f-87b7-499c-9aec-18306eb3eb0e] socks connection closed\n2025-10-27 19:52:19.159 [info] [command][3c3f932b-31fb-4778-82c7-5ae461b07ec3] Process exited with code 0\n2025-10-27 19:52:19.160 [info] [command][3c3f932b-31fb-4778-82c7-5ae461b07ec3] Socket close event received\n2025-10-27 19:53:19.162 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:53:19.166 [info] [command][47d7c5ff-1e84-4c12-976f-42033b72bf90] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""47d7c5ff-1e84-4c12-976f-42033b72bf90""}\n2025-10-27 19:53:19.167 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][d35c4ffb-0f4c-44df-8046-68b018a4633e] received connection request\n2025-10-27 19:53:19.265 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][d35c4ffb-0f4c-44df-8046-68b018a4633e] socks forwarding established\n2025-10-27 19:53:19.347 [info] [command][47d7c5ff-1e84-4c12-976f-42033b72bf90] Process exited with code 0\n2025-10-27 19:53:19.347 [info] [command][47d7c5ff-1e84-4c12-976f-42033b72bf90] Socket close event received\n2025-10-27 19:53:19.348 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][d35c4ffb-0f4c-44df-8046-68b018a4633e] socks connection closed\n2025-10-27 19:54:19.350 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:54:19.354 [info] [command][741ebc58-6026-43be-8288-3d59d0fdfc60] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""741ebc58-6026-43be-8288-3d59d0fdfc60""}\n2025-10-27 19:54:19.355 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][98605290-6658-4444-8619-a407af3b1491] received connection request\n2025-10-27 19:54:19.470 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][98605290-6658-4444-8619-a407af3b1491] socks forwarding established\n2025-10-27 19:54:19.565 [info] [command][741ebc58-6026-43be-8288-3d59d0fdfc60] Process exited with code 0\n2025-10-27 19:54:19.566 [info] [command][741ebc58-6026-43be-8288-3d59d0fdfc60] Socket close event received\n2025-10-27 19:54:19.566 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][98605290-6658-4444-8619-a407af3b1491] socks connection closed\n2025-10-27 19:55:19.566 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:55:19.570 [info] [command][bda1552c-0559-4bb3-942a-1b4dc6760403] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bda1552c-0559-4bb3-942a-1b4dc6760403""}\n2025-10-27 19:55:19.571 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][6814c52e-235f-4e93-8232-15e583eed4ec] received connection request\n2025-10-27 19:55:19.645 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][6814c52e-235f-4e93-8232-15e583eed4ec] socks forwarding established\n2025-10-27 19:55:19.730 [info] [command][bda1552c-0559-4bb3-942a-1b4dc6760403] Process exited with code 0\n2025-10-27 19:55:19.731 [info] [command][bda1552c-0559-4bb3-942a-1b4dc6760403] Socket close event received\n2025-10-27 19:55:19.737 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][6814c52e-235f-4e93-8232-15e583eed4ec] socks connection closed\n2025-10-27 19:56:19.737 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:56:19.740 [info] [command][c678c2e5-138b-4577-96e4-545073f7450c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c678c2e5-138b-4577-96e4-545073f7450c""}\n2025-10-27 19:56:19.740 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:44487][9f926726-f7c1-4cd5-b785-ebcd042bd0c4] received connection request\n2025-10-27 19:56:19.811 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][9f926726-f7c1-4cd5-b785-ebcd042bd0c4] socks forwarding established\n2025-10-27 19:56:19.905 [info] [command][c678c2e5-138b-4577-96e4-545073f7450c] Process exited with code 0\n2025-10-27 19:56:19.906 [info] [forwarding][multiplex][127.0.0.1:58046 -> 127.0.0.1:58038 -> 127.0.0.1:44487][9f926726-f7c1-4cd5-b785-ebcd042bd0c4] socks connection closed\n2025-10-27 19:56:19.906 [info] [command][c678c2e5-138b-4577-96e4-545073f7450c] Socket close event received\n2025-10-27 19:56:43.743 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:34469][80a6d9f6-6726-4859-9983-49240df8e341] received connection request\n2025-10-27 19:56:59.536 [info] Resolving ssh remote authority 'login.haicore.berlin' (Unparsed 'ssh-remote+7b22686f73744e616d65223a226c6f67696e2e686169636f72652e6265726c696e227d') (attempt #2)\n2025-10-27 19:56:59.536 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-10-27 19:56:59.539 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:34469][e42c6e7e-7b6c-43b7-8586-b25676cbe6ec] received connection request\n2025-10-27 19:57:09.547 [error] Failed to connect to Cursor server at http://127.0.0.1:58045, attempt 1 of 3 The operation was aborted due to timeout\n2025-10-27 19:57:09.548 [error] Unexpected error while checking if existing connection is still valid The operation was aborted due to timeout\n2025-10-27 19:57:09.549 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:34469][0aa02df4-79a0-4b29-be6a-58e741a689f7] received connection request\n2025-10-27 19:57:09.636 [info] Terminating existing SSH process\n2025-10-27 19:57:09.636 [info] Using configured platform linux for remote host login.haicore.berlin\n2025-10-27 19:57:09.636 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:09.637 [error] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:58038 -> 127.0.0.1:34469][80a6d9f6-6726-4859-9983-49240df8e341] error while creating socks forwarding Socket closed\n2025-10-27 19:57:09.637 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:58038 -> 127.0.0.1:34469][c754d353-783d-4eec-b023-103b77c6fa54] socks connection closed\n2025-10-27 19:57:09.637 [info] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:58038 -> 127.0.0.1:34469][af05b228-3bc9-495e-bbd3-d4c5e709f74b] socks connection closed\n2025-10-27 19:57:09.637 [error] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:58038 -> 127.0.0.1:34469][e42c6e7e-7b6c-43b7-8586-b25676cbe6ec] error while creating socks forwarding Socket closed\n2025-10-27 19:57:09.637 [error] [forwarding][code][127.0.0.1:58045 -> 127.0.0.1:58038 -> 127.0.0.1:34469][0aa02df4-79a0-4b29-be6a-58e741a689f7] error while creating socks forwarding Socket closed\n2025-10-27 19:57:09.641 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2794611f-f8cd-45d7-b2cc-ec8629749e99.sh"" | ssh -T -D 58711 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:09.641 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2794611f-f8cd-45d7-b2cc-ec8629749e99.sh"" | ssh -T -D 58711 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:09.641 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:09.641 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:09.651 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:09.651 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:09.651 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:14.654 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2794611f-f8cd-45d7-b2cc-ec8629749e99.sh\n2025-10-27 19:57:14.654 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:14.657 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_38163a0f-ae75-4997-8a79-f1bac7101f83.sh"" | ssh -T -D 58712 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:14.657 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_38163a0f-ae75-4997-8a79-f1bac7101f83.sh"" | ssh -T -D 58712 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:14.657 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:14.657 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:14.671 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:14.671 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:14.671 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:19.677 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_38163a0f-ae75-4997-8a79-f1bac7101f83.sh\n2025-10-27 19:57:19.678 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:19.682 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_cdb7a018-2844-415b-839c-adef8a9950e8.sh"" | ssh -T -D 58715 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:19.682 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_cdb7a018-2844-415b-839c-adef8a9950e8.sh"" | ssh -T -D 58715 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:19.682 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:19.682 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:19.697 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:19.697 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:19.697 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:19.911 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:57:19.912 [info] [command][78faf944-b1ed-433c-a517-f73b1b257ce5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""78faf944-b1ed-433c-a517-f73b1b257ce5""}\n2025-10-27 19:57:19.912 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cfc3fa7b-e2d1-4ed4-907b-73619985bf73] remote server not configured\n2025-10-27 19:57:19.913 [error] [command][78faf944-b1ed-433c-a517-f73b1b257ce5] Socket error: Error: read ECONNRESET\n2025-10-27 19:57:19.913 [info] [command][78faf944-b1ed-433c-a517-f73b1b257ce5] Socket close event received\n2025-10-27 19:57:19.913 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][78faf944-b1ed-433c-a517-f73b1b257ce5] Socket closed without exit code\n2025-10-27 19:57:24.698 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_cdb7a018-2844-415b-839c-adef8a9950e8.sh\n2025-10-27 19:57:24.698 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:24.701 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_213153ce-1816-4893-a431-1ed776227a9d.sh"" | ssh -T -D 58718 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:24.701 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_213153ce-1816-4893-a431-1ed776227a9d.sh"" | ssh -T -D 58718 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:24.701 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:24.701 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:24.718 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:24.719 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:24.719 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:29.720 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_213153ce-1816-4893-a431-1ed776227a9d.sh\n2025-10-27 19:57:29.721 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:29.726 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a45f530a-a086-4df2-948b-2ae281f64dd9.sh"" | ssh -T -D 58719 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:29.726 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a45f530a-a086-4df2-948b-2ae281f64dd9.sh"" | ssh -T -D 58719 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:29.726 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:29.726 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:29.745 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:29.745 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:29.745 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:34.745 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a45f530a-a086-4df2-948b-2ae281f64dd9.sh\n2025-10-27 19:57:34.746 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:34.749 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4a82969c-a6ab-4806-a303-067799ffd38e.sh"" | ssh -T -D 58721 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:34.749 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4a82969c-a6ab-4806-a303-067799ffd38e.sh"" | ssh -T -D 58721 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:34.750 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:34.750 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:34.764 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:34.764 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:34.764 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:39.769 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4a82969c-a6ab-4806-a303-067799ffd38e.sh\n2025-10-27 19:57:39.769 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:39.772 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d4176878-8f4e-40d4-b711-71591c7cf65f.sh"" | ssh -T -D 58724 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:39.773 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d4176878-8f4e-40d4-b711-71591c7cf65f.sh"" | ssh -T -D 58724 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:39.773 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:39.773 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:39.786 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:39.787 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:39.787 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:44.789 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d4176878-8f4e-40d4-b711-71591c7cf65f.sh\n2025-10-27 19:57:44.789 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:44.792 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_42bd036e-b12e-4a11-b369-3d7dfa57510c.sh"" | ssh -T -D 58726 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:44.793 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_42bd036e-b12e-4a11-b369-3d7dfa57510c.sh"" | ssh -T -D 58726 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:44.793 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:44.793 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:44.806 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:44.806 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:44.806 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:49.811 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_42bd036e-b12e-4a11-b369-3d7dfa57510c.sh\n2025-10-27 19:57:49.811 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:49.814 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e594c102-f14c-42a6-95e1-c2a27dc56581.sh"" | ssh -T -D 58728 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:49.814 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e594c102-f14c-42a6-95e1-c2a27dc56581.sh"" | ssh -T -D 58728 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:49.814 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:49.814 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:49.830 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:49.831 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:49.831 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:54.832 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e594c102-f14c-42a6-95e1-c2a27dc56581.sh\n2025-10-27 19:57:54.832 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:54.834 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_fc50a15a-1f27-4bd8-8cb4-e99460399bbb.sh"" | ssh -T -D 58731 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:54.834 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_fc50a15a-1f27-4bd8-8cb4-e99460399bbb.sh"" | ssh -T -D 58731 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:54.834 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:54.834 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:54.851 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:54.851 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:54.851 [info] Retrying connection in 5 seconds...\n2025-10-27 19:57:59.856 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_fc50a15a-1f27-4bd8-8cb4-e99460399bbb.sh\n2025-10-27 19:57:59.857 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:57:59.860 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2d8e64f2-fdc8-42de-aa12-560783dd657a.sh"" | ssh -T -D 58733 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:59.860 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2d8e64f2-fdc8-42de-aa12-560783dd657a.sh"" | ssh -T -D 58733 login.haicore.berlin bash --login -c bash\n2025-10-27 19:57:59.861 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:57:59.861 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:57:59.874 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:57:59.874 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:57:59.874 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:04.876 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2d8e64f2-fdc8-42de-aa12-560783dd657a.sh\n2025-10-27 19:58:04.876 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:04.880 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_135319eb-9b2b-4044-88fb-daf03b1ac575.sh"" | ssh -T -D 58735 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:04.880 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_135319eb-9b2b-4044-88fb-daf03b1ac575.sh"" | ssh -T -D 58735 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:04.880 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:04.880 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:04.896 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:04.897 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:04.897 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:09.900 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_135319eb-9b2b-4044-88fb-daf03b1ac575.sh\n2025-10-27 19:58:09.900 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:09.902 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e92cb475-2ce7-43c0-8db6-2abec543206c.sh"" | ssh -T -D 58738 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:09.902 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e92cb475-2ce7-43c0-8db6-2abec543206c.sh"" | ssh -T -D 58738 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:09.903 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:09.903 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:09.922 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:09.923 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:09.923 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:14.923 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e92cb475-2ce7-43c0-8db6-2abec543206c.sh\n2025-10-27 19:58:14.924 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:14.929 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1d421ec6-084d-48e5-b9f7-8d93d164d372.sh"" | ssh -T -D 58740 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:14.929 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1d421ec6-084d-48e5-b9f7-8d93d164d372.sh"" | ssh -T -D 58740 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:14.929 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:14.929 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:14.941 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:14.942 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:14.942 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:19.917 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:58:19.918 [info] [command][959d18cd-de26-4d7f-aa5d-33408986ebc6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""959d18cd-de26-4d7f-aa5d-33408986ebc6""}\n2025-10-27 19:58:19.918 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c316913d-d603-4aa5-88cb-320f6981eb36] remote server not configured\n2025-10-27 19:58:19.919 [error] [command][959d18cd-de26-4d7f-aa5d-33408986ebc6] Socket error: Error: read ECONNRESET\n2025-10-27 19:58:19.919 [info] [command][959d18cd-de26-4d7f-aa5d-33408986ebc6] Socket close event received\n2025-10-27 19:58:19.919 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][959d18cd-de26-4d7f-aa5d-33408986ebc6] Socket closed without exit code\n2025-10-27 19:58:19.943 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1d421ec6-084d-48e5-b9f7-8d93d164d372.sh\n2025-10-27 19:58:19.944 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:19.946 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1ba240c1-ff05-478a-9ef3-b4caf0f5e8b0.sh"" | ssh -T -D 58743 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:19.946 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1ba240c1-ff05-478a-9ef3-b4caf0f5e8b0.sh"" | ssh -T -D 58743 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:19.946 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:19.946 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:19.962 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:19.963 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:19.963 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:24.975 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1ba240c1-ff05-478a-9ef3-b4caf0f5e8b0.sh\n2025-10-27 19:58:24.977 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:24.980 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ea33bbe2-bb85-4376-a16b-50420d84dd79.sh"" | ssh -T -D 58745 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:24.980 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ea33bbe2-bb85-4376-a16b-50420d84dd79.sh"" | ssh -T -D 58745 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:24.980 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:24.980 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:25.000 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:25.001 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:25.001 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:30.010 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ea33bbe2-bb85-4376-a16b-50420d84dd79.sh\n2025-10-27 19:58:30.012 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:30.014 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_40ac0ab8-d74d-4e18-a02e-fd7dbb8da6a7.sh"" | ssh -T -D 58746 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:30.014 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_40ac0ab8-d74d-4e18-a02e-fd7dbb8da6a7.sh"" | ssh -T -D 58746 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:30.014 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:30.014 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:30.033 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:30.034 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:30.034 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:35.036 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_40ac0ab8-d74d-4e18-a02e-fd7dbb8da6a7.sh\n2025-10-27 19:58:35.037 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:35.038 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e757667c-2f6e-4e43-8e8e-f17c861bdab9.sh"" | ssh -T -D 58749 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:35.038 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e757667c-2f6e-4e43-8e8e-f17c861bdab9.sh"" | ssh -T -D 58749 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:35.038 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:35.038 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:35.055 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:35.055 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:35.055 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:40.056 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e757667c-2f6e-4e43-8e8e-f17c861bdab9.sh\n2025-10-27 19:58:40.057 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:40.063 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_13511ec1-4ca7-4166-b3a2-1a2104d6af40.sh"" | ssh -T -D 58750 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:40.063 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_13511ec1-4ca7-4166-b3a2-1a2104d6af40.sh"" | ssh -T -D 58750 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:40.063 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:40.063 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:40.076 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:40.078 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:40.078 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:45.089 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_13511ec1-4ca7-4166-b3a2-1a2104d6af40.sh\n2025-10-27 19:58:45.089 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:45.091 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e6432f11-80af-4a2e-ad0e-f8283383bf98.sh"" | ssh -T -D 58753 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:45.091 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e6432f11-80af-4a2e-ad0e-f8283383bf98.sh"" | ssh -T -D 58753 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:45.091 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:45.091 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:45.106 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:45.107 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:45.107 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:50.112 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e6432f11-80af-4a2e-ad0e-f8283383bf98.sh\n2025-10-27 19:58:50.113 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:50.117 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c96f1fb8-7832-4f72-951a-899a500e26ba.sh"" | ssh -T -D 58755 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:50.117 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c96f1fb8-7832-4f72-951a-899a500e26ba.sh"" | ssh -T -D 58755 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:50.117 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:50.117 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:50.137 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:50.138 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:50.138 [info] Retrying connection in 5 seconds...\n2025-10-27 19:58:55.138 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c96f1fb8-7832-4f72-951a-899a500e26ba.sh\n2025-10-27 19:58:55.140 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:58:55.144 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7f254fdd-d565-4e3c-8d39-64ad8619e9bd.sh"" | ssh -T -D 58757 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:55.144 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7f254fdd-d565-4e3c-8d39-64ad8619e9bd.sh"" | ssh -T -D 58757 login.haicore.berlin bash --login -c bash\n2025-10-27 19:58:55.144 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:58:55.144 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:58:55.160 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:58:55.161 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:58:55.161 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:00.171 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7f254fdd-d565-4e3c-8d39-64ad8619e9bd.sh\n2025-10-27 19:59:00.172 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:00.176 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_85c0aa7d-4496-4ff7-ae10-7ba6a35268a1.sh"" | ssh -T -D 58759 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:00.176 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_85c0aa7d-4496-4ff7-ae10-7ba6a35268a1.sh"" | ssh -T -D 58759 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:00.176 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:00.176 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:00.191 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:00.192 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:00.192 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:05.201 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_85c0aa7d-4496-4ff7-ae10-7ba6a35268a1.sh\n2025-10-27 19:59:05.202 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:05.206 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2c94adc8-98fa-426d-bd3f-b9196b6a33cd.sh"" | ssh -T -D 58762 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:05.206 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2c94adc8-98fa-426d-bd3f-b9196b6a33cd.sh"" | ssh -T -D 58762 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:05.206 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:05.206 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:05.228 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:05.228 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:05.228 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:10.230 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2c94adc8-98fa-426d-bd3f-b9196b6a33cd.sh\n2025-10-27 19:59:10.232 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:10.237 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_788c7f79-01e8-44c1-8a81-c194b576ee66.sh"" | ssh -T -D 58764 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:10.237 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_788c7f79-01e8-44c1-8a81-c194b576ee66.sh"" | ssh -T -D 58764 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:10.237 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:10.237 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:10.253 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:10.253 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:10.253 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:15.261 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_788c7f79-01e8-44c1-8a81-c194b576ee66.sh\n2025-10-27 19:59:15.262 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:15.266 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9aede848-e172-48c6-ae86-a4c8dbeade93.sh"" | ssh -T -D 58766 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:15.266 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9aede848-e172-48c6-ae86-a4c8dbeade93.sh"" | ssh -T -D 58766 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:15.266 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:15.266 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:15.283 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:15.284 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:15.284 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:19.930 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 19:59:19.931 [info] [command][038286d4-f2c5-4171-a268-3ee6e56efc31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""038286d4-f2c5-4171-a268-3ee6e56efc31""}\n2025-10-27 19:59:19.932 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][29443e97-9b93-4591-b97f-209c880e5590] remote server not configured\n2025-10-27 19:59:19.932 [error] [command][038286d4-f2c5-4171-a268-3ee6e56efc31] Socket error: Error: read ECONNRESET\n2025-10-27 19:59:19.932 [info] [command][038286d4-f2c5-4171-a268-3ee6e56efc31] Socket close event received\n2025-10-27 19:59:19.932 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][038286d4-f2c5-4171-a268-3ee6e56efc31] Socket closed without exit code\n2025-10-27 19:59:20.285 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9aede848-e172-48c6-ae86-a4c8dbeade93.sh\n2025-10-27 19:59:20.290 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:20.293 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7445a4f9-965c-46e9-bf32-2e3ab6d7c039.sh"" | ssh -T -D 58769 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:20.293 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7445a4f9-965c-46e9-bf32-2e3ab6d7c039.sh"" | ssh -T -D 58769 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:20.293 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:20.293 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:20.305 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:20.306 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:20.306 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:25.316 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7445a4f9-965c-46e9-bf32-2e3ab6d7c039.sh\n2025-10-27 19:59:25.317 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:25.322 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_697c46e0-c034-4b53-bbbb-86ee4e80f8c7.sh"" | ssh -T -D 58771 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:25.322 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_697c46e0-c034-4b53-bbbb-86ee4e80f8c7.sh"" | ssh -T -D 58771 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:25.323 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:25.323 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:25.337 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:25.337 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:25.337 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:30.348 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_697c46e0-c034-4b53-bbbb-86ee4e80f8c7.sh\n2025-10-27 19:59:30.349 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:30.353 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_98c76c26-b3c7-4439-a2b5-47f5cdd68249.sh"" | ssh -T -D 58774 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:30.353 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_98c76c26-b3c7-4439-a2b5-47f5cdd68249.sh"" | ssh -T -D 58774 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:30.354 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:30.354 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:30.374 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:30.375 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:30.375 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:35.385 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_98c76c26-b3c7-4439-a2b5-47f5cdd68249.sh\n2025-10-27 19:59:35.386 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:35.390 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f12b9576-e002-48d5-870b-84d51848c0ba.sh"" | ssh -T -D 58775 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:35.390 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f12b9576-e002-48d5-870b-84d51848c0ba.sh"" | ssh -T -D 58775 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:35.390 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:35.390 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:35.404 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:35.405 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:35.405 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:40.412 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f12b9576-e002-48d5-870b-84d51848c0ba.sh\n2025-10-27 19:59:40.412 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:40.414 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_900f1b9f-d9ca-46b4-8b29-a7d98b98c980.sh"" | ssh -T -D 58777 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:40.414 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_900f1b9f-d9ca-46b4-8b29-a7d98b98c980.sh"" | ssh -T -D 58777 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:40.414 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:40.414 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:40.425 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:40.425 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:40.425 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:45.436 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_900f1b9f-d9ca-46b4-8b29-a7d98b98c980.sh\n2025-10-27 19:59:45.436 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:45.438 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3e3e97eb-43db-40f4-b5e0-f0de9b7a2adc.sh"" | ssh -T -D 58780 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:45.438 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3e3e97eb-43db-40f4-b5e0-f0de9b7a2adc.sh"" | ssh -T -D 58780 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:45.438 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:45.438 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:45.448 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:45.449 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:45.449 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:50.459 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3e3e97eb-43db-40f4-b5e0-f0de9b7a2adc.sh\n2025-10-27 19:59:50.460 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:50.463 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b69f4118-28b5-46d7-bcc8-720675ca5ee3.sh"" | ssh -T -D 58782 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:50.463 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b69f4118-28b5-46d7-bcc8-720675ca5ee3.sh"" | ssh -T -D 58782 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:50.463 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:50.463 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:50.482 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:50.483 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:50.483 [info] Retrying connection in 5 seconds...\n2025-10-27 19:59:55.494 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b69f4118-28b5-46d7-bcc8-720675ca5ee3.sh\n2025-10-27 19:59:55.495 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 19:59:55.499 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_53a181ed-23b5-4701-8cf1-af583840d307.sh"" | ssh -T -D 58785 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:55.499 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_53a181ed-23b5-4701-8cf1-af583840d307.sh"" | ssh -T -D 58785 login.haicore.berlin bash --login -c bash\n2025-10-27 19:59:55.499 [info] Started installation script. Waiting for it to finish...\n2025-10-27 19:59:55.499 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 19:59:55.517 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 19:59:55.517 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 19:59:55.517 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:00.523 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_53a181ed-23b5-4701-8cf1-af583840d307.sh\n2025-10-27 20:00:00.524 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:00.529 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5a06c05a-a8d4-4301-bacf-c1024f638278.sh"" | ssh -T -D 58787 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:00.529 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5a06c05a-a8d4-4301-bacf-c1024f638278.sh"" | ssh -T -D 58787 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:00.529 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:00.529 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:00.550 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:00.551 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:00.551 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:05.553 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5a06c05a-a8d4-4301-bacf-c1024f638278.sh\n2025-10-27 20:00:05.554 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:05.558 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_73f25e2b-7ee4-4281-b570-62b95fc3015e.sh"" | ssh -T -D 58788 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:05.558 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_73f25e2b-7ee4-4281-b570-62b95fc3015e.sh"" | ssh -T -D 58788 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:05.558 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:05.558 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:05.581 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:05.582 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:05.582 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:10.591 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_73f25e2b-7ee4-4281-b570-62b95fc3015e.sh\n2025-10-27 20:00:10.593 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:10.599 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ca1bfa98-6c97-48f0-881d-493633f52154.sh"" | ssh -T -D 58792 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:10.599 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ca1bfa98-6c97-48f0-881d-493633f52154.sh"" | ssh -T -D 58792 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:10.599 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:10.599 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:10.617 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:10.618 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:10.618 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:15.623 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ca1bfa98-6c97-48f0-881d-493633f52154.sh\n2025-10-27 20:00:15.624 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:15.628 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_47ac10dd-7131-4b34-bea6-fe1e94c2bea9.sh"" | ssh -T -D 58794 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:15.628 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_47ac10dd-7131-4b34-bea6-fe1e94c2bea9.sh"" | ssh -T -D 58794 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:15.628 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:15.628 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:15.648 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:15.649 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:15.649 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:19.943 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:00:19.945 [info] [command][61bec4da-5997-413a-91fa-916eab633df7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""61bec4da-5997-413a-91fa-916eab633df7""}\n2025-10-27 20:00:19.946 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c862c8e9-5b06-4378-b48d-33de45b6d8db] remote server not configured\n2025-10-27 20:00:19.946 [error] [command][61bec4da-5997-413a-91fa-916eab633df7] Socket error: Error: read ECONNRESET\n2025-10-27 20:00:19.946 [info] [command][61bec4da-5997-413a-91fa-916eab633df7] Socket close event received\n2025-10-27 20:00:19.946 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][61bec4da-5997-413a-91fa-916eab633df7] Socket closed without exit code\n2025-10-27 20:00:20.651 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_47ac10dd-7131-4b34-bea6-fe1e94c2bea9.sh\n2025-10-27 20:00:20.652 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:20.656 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_271e8713-e198-49f7-a6d3-636bca2e2099.sh"" | ssh -T -D 58796 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:20.657 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_271e8713-e198-49f7-a6d3-636bca2e2099.sh"" | ssh -T -D 58796 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:20.657 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:20.657 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:20.681 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:20.681 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:20.681 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:25.690 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_271e8713-e198-49f7-a6d3-636bca2e2099.sh\n2025-10-27 20:00:25.691 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:25.696 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0471367d-409e-4010-9559-81031a8f0873.sh"" | ssh -T -D 58798 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:25.696 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0471367d-409e-4010-9559-81031a8f0873.sh"" | ssh -T -D 58798 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:25.696 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:25.696 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:25.715 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:25.715 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:25.715 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:30.726 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0471367d-409e-4010-9559-81031a8f0873.sh\n2025-10-27 20:00:30.727 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:30.731 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4d823f0e-9215-4b96-a6c2-e9d2f9ee2498.sh"" | ssh -T -D 58801 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:30.731 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4d823f0e-9215-4b96-a6c2-e9d2f9ee2498.sh"" | ssh -T -D 58801 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:30.731 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:30.731 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:30.743 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:30.744 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:30.744 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:35.754 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4d823f0e-9215-4b96-a6c2-e9d2f9ee2498.sh\n2025-10-27 20:00:35.755 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:35.759 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5fd2ff3f-6545-4626-9490-ac01945f61ac.sh"" | ssh -T -D 58803 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:35.759 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5fd2ff3f-6545-4626-9490-ac01945f61ac.sh"" | ssh -T -D 58803 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:35.759 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:35.759 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:35.774 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:35.774 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:35.774 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:40.780 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5fd2ff3f-6545-4626-9490-ac01945f61ac.sh\n2025-10-27 20:00:40.781 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:40.785 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_880ba8cf-7cc7-4936-b3e4-0a03bddd29aa.sh"" | ssh -T -D 58804 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:40.785 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_880ba8cf-7cc7-4936-b3e4-0a03bddd29aa.sh"" | ssh -T -D 58804 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:40.785 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:40.785 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:40.799 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:40.799 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:40.799 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:45.810 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_880ba8cf-7cc7-4936-b3e4-0a03bddd29aa.sh\n2025-10-27 20:00:45.811 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:45.817 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_55e85d39-c3b7-476b-9029-cec1b4423171.sh"" | ssh -T -D 58807 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:45.817 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_55e85d39-c3b7-476b-9029-cec1b4423171.sh"" | ssh -T -D 58807 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:45.817 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:45.817 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:45.837 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:45.838 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:45.838 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:50.844 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_55e85d39-c3b7-476b-9029-cec1b4423171.sh\n2025-10-27 20:00:50.845 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:50.850 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_91713ba0-fb5a-478b-b679-633ec08267ca.sh"" | ssh -T -D 58808 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:50.850 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_91713ba0-fb5a-478b-b679-633ec08267ca.sh"" | ssh -T -D 58808 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:50.850 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:50.850 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:50.866 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:50.867 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:50.867 [info] Retrying connection in 5 seconds...\n2025-10-27 20:00:55.877 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_91713ba0-fb5a-478b-b679-633ec08267ca.sh\n2025-10-27 20:00:55.878 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:00:55.883 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2afbfa41-1cc2-456a-8908-2bf7c150bdfa.sh"" | ssh -T -D 58812 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:55.883 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2afbfa41-1cc2-456a-8908-2bf7c150bdfa.sh"" | ssh -T -D 58812 login.haicore.berlin bash --login -c bash\n2025-10-27 20:00:55.883 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:00:55.883 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:00:55.896 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:00:55.897 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:00:55.897 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:00.907 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2afbfa41-1cc2-456a-8908-2bf7c150bdfa.sh\n2025-10-27 20:01:00.908 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:00.913 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68b09691-7b9c-4527-83c3-a61cf6128090.sh"" | ssh -T -D 58813 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:00.913 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68b09691-7b9c-4527-83c3-a61cf6128090.sh"" | ssh -T -D 58813 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:00.913 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:00.913 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:00.933 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:00.934 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:00.934 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:05.942 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68b09691-7b9c-4527-83c3-a61cf6128090.sh\n2025-10-27 20:01:05.943 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:05.947 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_83d980d7-5358-4105-87b5-28bb1254a7da.sh"" | ssh -T -D 58815 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:05.947 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_83d980d7-5358-4105-87b5-28bb1254a7da.sh"" | ssh -T -D 58815 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:05.947 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:05.947 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:05.962 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:05.962 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:05.962 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:10.969 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_83d980d7-5358-4105-87b5-28bb1254a7da.sh\n2025-10-27 20:01:10.971 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:10.975 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_48a135c6-cd55-4e35-9124-29164b810cb1.sh"" | ssh -T -D 58818 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:10.975 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_48a135c6-cd55-4e35-9124-29164b810cb1.sh"" | ssh -T -D 58818 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:10.975 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:10.975 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:10.988 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:10.988 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:10.988 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:15.998 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_48a135c6-cd55-4e35-9124-29164b810cb1.sh\n2025-10-27 20:01:15.998 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:16.001 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_707f6501-5114-48c1-a82a-ac0d7c288138.sh"" | ssh -T -D 58821 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:16.001 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_707f6501-5114-48c1-a82a-ac0d7c288138.sh"" | ssh -T -D 58821 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:16.001 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:16.001 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:16.010 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:16.011 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:16.011 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:19.950 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:01:19.951 [info] [command][16b3893f-a0e8-430e-a1e9-228c043994a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""16b3893f-a0e8-430e-a1e9-228c043994a7""}\n2025-10-27 20:01:19.951 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][47238c5e-34ca-4910-a1a1-00fd19128194] remote server not configured\n2025-10-27 20:01:19.952 [error] [command][16b3893f-a0e8-430e-a1e9-228c043994a7] Socket error: Error: read ECONNRESET\n2025-10-27 20:01:19.952 [info] [command][16b3893f-a0e8-430e-a1e9-228c043994a7] Socket close event received\n2025-10-27 20:01:19.952 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][16b3893f-a0e8-430e-a1e9-228c043994a7] Socket closed without exit code\n2025-10-27 20:01:21.021 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_707f6501-5114-48c1-a82a-ac0d7c288138.sh\n2025-10-27 20:01:21.021 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:21.024 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f984c683-c62d-47e2-9780-9027e13742df.sh"" | ssh -T -D 58824 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:21.024 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f984c683-c62d-47e2-9780-9027e13742df.sh"" | ssh -T -D 58824 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:21.024 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:21.024 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:21.038 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:21.039 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:21.039 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:26.045 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f984c683-c62d-47e2-9780-9027e13742df.sh\n2025-10-27 20:01:26.047 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:26.051 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_03bc5bab-287f-4781-b1bc-dd2008352967.sh"" | ssh -T -D 58825 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:26.051 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_03bc5bab-287f-4781-b1bc-dd2008352967.sh"" | ssh -T -D 58825 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:26.051 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:26.051 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:26.066 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:26.067 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:26.067 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:31.077 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_03bc5bab-287f-4781-b1bc-dd2008352967.sh\n2025-10-27 20:01:31.078 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:31.081 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_aa310cf8-43c3-476e-a641-145f6a2b3ea9.sh"" | ssh -T -D 58827 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:31.081 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_aa310cf8-43c3-476e-a641-145f6a2b3ea9.sh"" | ssh -T -D 58827 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:31.082 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:31.082 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:31.106 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:31.107 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:31.107 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:36.117 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_aa310cf8-43c3-476e-a641-145f6a2b3ea9.sh\n2025-10-27 20:01:36.118 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:36.122 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9cce3bf6-a1aa-4808-91d1-555c72c3e4c3.sh"" | ssh -T -D 58829 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:36.122 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9cce3bf6-a1aa-4808-91d1-555c72c3e4c3.sh"" | ssh -T -D 58829 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:36.122 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:36.122 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:36.137 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:36.138 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:36.138 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:41.148 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9cce3bf6-a1aa-4808-91d1-555c72c3e4c3.sh\n2025-10-27 20:01:41.149 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:41.154 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_63d30f96-c7c7-4f4e-9b8f-c7381722b7fe.sh"" | ssh -T -D 58831 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:41.154 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_63d30f96-c7c7-4f4e-9b8f-c7381722b7fe.sh"" | ssh -T -D 58831 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:41.154 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:41.154 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:41.175 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:41.176 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:41.176 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:46.184 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_63d30f96-c7c7-4f4e-9b8f-c7381722b7fe.sh\n2025-10-27 20:01:46.186 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:46.187 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44b08d53-f6af-4379-b9bb-ecd0c3540899.sh"" | ssh -T -D 58833 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:46.187 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44b08d53-f6af-4379-b9bb-ecd0c3540899.sh"" | ssh -T -D 58833 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:46.188 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:46.188 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:46.201 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:46.202 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:46.202 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:51.212 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44b08d53-f6af-4379-b9bb-ecd0c3540899.sh\n2025-10-27 20:01:51.213 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:51.218 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f810685e-0698-4ff0-8253-1cf54ec3f36d.sh"" | ssh -T -D 58836 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:51.218 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f810685e-0698-4ff0-8253-1cf54ec3f36d.sh"" | ssh -T -D 58836 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:51.218 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:51.218 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:51.236 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:51.237 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:51.237 [info] Retrying connection in 5 seconds...\n2025-10-27 20:01:56.245 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f810685e-0698-4ff0-8253-1cf54ec3f36d.sh\n2025-10-27 20:01:56.246 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:01:56.251 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0bab7139-d985-48f0-aeac-94cd6f637be4.sh"" | ssh -T -D 58839 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:56.252 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0bab7139-d985-48f0-aeac-94cd6f637be4.sh"" | ssh -T -D 58839 login.haicore.berlin bash --login -c bash\n2025-10-27 20:01:56.252 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:01:56.252 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:01:56.270 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:01:56.271 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:01:56.271 [info] Retrying connection in 5 seconds...\n2025-10-27 20:02:01.278 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0bab7139-d985-48f0-aeac-94cd6f637be4.sh\n2025-10-27 20:02:01.279 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:02:01.284 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2969e3a1-964a-4938-a282-5d926596aefe.sh"" | ssh -T -D 58840 login.haicore.berlin bash --login -c bash\n2025-10-27 20:02:01.284 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2969e3a1-964a-4938-a282-5d926596aefe.sh"" | ssh -T -D 58840 login.haicore.berlin bash --login -c bash\n2025-10-27 20:02:01.284 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:02:01.284 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:02:01.297 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:02:01.298 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:02:01.298 [info] Retrying connection in 5 seconds...\n2025-10-27 20:02:06.301 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2969e3a1-964a-4938-a282-5d926596aefe.sh\n2025-10-27 20:02:06.302 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:02:06.306 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0bc3ad11-7653-4ec5-a246-197b0816cefa.sh"" | ssh -T -D 58843 login.haicore.berlin bash --login -c bash\n2025-10-27 20:02:06.306 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0bc3ad11-7653-4ec5-a246-197b0816cefa.sh"" | ssh -T -D 58843 login.haicore.berlin bash --login -c bash\n2025-10-27 20:02:06.306 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:02:06.306 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:02:06.323 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:02:06.323 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:02:06.323 [info] Retrying connection in 5 seconds...\n2025-10-27 20:02:11.334 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0bc3ad11-7653-4ec5-a246-197b0816cefa.sh\n2025-10-27 20:02:11.335 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-VsNSLg/socket.sock\n2025-10-27 20:02:11.339 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_24b49448-2d20-49e5-a956-7eab45d769d9.sh"" | ssh -T -D 58845 login.haicore.berlin bash --login -c bash\n2025-10-27 20:02:11.339 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_24b49448-2d20-49e5-a956-7eab45d769d9.sh"" | ssh -T -D 58845 login.haicore.berlin bash --login -c bash\n2025-10-27 20:02:11.339 [info] Started installation script. Waiting for it to finish...\n2025-10-27 20:02:11.340 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-27 20:02:11.358 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-27 20:02:11.359 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:02:11.359 [error] Failed to connect after 61 attempts: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:02:11.359 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_24b49448-2d20-49e5-a956-7eab45d769d9.sh\n2025-10-27 20:02:11.360 [error] Error resolving SSH authority Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-27 20:02:19.962 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:02:19.964 [info] [command][91c3c8c7-23b6-4122-a2ea-dcabd479140e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""91c3c8c7-23b6-4122-a2ea-dcabd479140e""}\n2025-10-27 20:02:19.965 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dd48acc2-d754-4b24-949e-4a9539dd4e17] remote server not configured\n2025-10-27 20:02:19.965 [error] [command][91c3c8c7-23b6-4122-a2ea-dcabd479140e] Socket error: Error: read ECONNRESET\n2025-10-27 20:02:19.965 [info] [command][91c3c8c7-23b6-4122-a2ea-dcabd479140e] Socket close event received\n2025-10-27 20:02:19.965 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][91c3c8c7-23b6-4122-a2ea-dcabd479140e] Socket closed without exit code\n2025-10-27 20:03:19.976 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:03:19.978 [info] [command][0c3bb345-c1a4-4dbb-b030-559d27e95ea9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0c3bb345-c1a4-4dbb-b030-559d27e95ea9""}\n2025-10-27 20:03:19.979 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0df7934b-f9d9-479d-80c1-67dcee313229] remote server not configured\n2025-10-27 20:03:19.979 [error] [command][0c3bb345-c1a4-4dbb-b030-559d27e95ea9] Socket error: Error: read ECONNRESET\n2025-10-27 20:03:19.980 [info] [command][0c3bb345-c1a4-4dbb-b030-559d27e95ea9] Socket close event received\n2025-10-27 20:03:19.980 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0c3bb345-c1a4-4dbb-b030-559d27e95ea9] Socket closed without exit code\n2025-10-27 20:04:19.988 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:04:19.990 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][924808b9-60d2-4e8b-92cc-7507c9251351] remote server not configured\n2025-10-27 20:04:19.991 [info] [command][f83fa1fb-2081-4c67-be48-434cdf2331c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f83fa1fb-2081-4c67-be48-434cdf2331c7""}\n2025-10-27 20:04:19.992 [error] [command][f83fa1fb-2081-4c67-be48-434cdf2331c7] Socket error: Error: read ECONNRESET\n2025-10-27 20:04:19.992 [info] [command][f83fa1fb-2081-4c67-be48-434cdf2331c7] Socket close event received\n2025-10-27 20:04:19.992 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f83fa1fb-2081-4c67-be48-434cdf2331c7] Socket closed without exit code\n2025-10-27 20:05:20.003 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:05:20.004 [info] [command][5fedfcd1-e5c0-45db-adf1-25bac511ac26] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5fedfcd1-e5c0-45db-adf1-25bac511ac26""}\n2025-10-27 20:05:20.005 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9efe9ce7-6204-4707-9827-7fcf75cd1b4d] remote server not configured\n2025-10-27 20:05:20.006 [error] [command][5fedfcd1-e5c0-45db-adf1-25bac511ac26] Socket error: Error: read ECONNRESET\n2025-10-27 20:05:20.006 [info] [command][5fedfcd1-e5c0-45db-adf1-25bac511ac26] Socket close event received\n2025-10-27 20:05:20.006 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5fedfcd1-e5c0-45db-adf1-25bac511ac26] Socket closed without exit code\n2025-10-27 20:06:20.013 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:06:20.015 [info] [command][0d881a17-86a7-495d-a36b-75d06e4721d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0d881a17-86a7-495d-a36b-75d06e4721d4""}\n2025-10-27 20:06:20.015 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cd7751ca-7586-4b43-bf12-6c5b9219a261] remote server not configured\n2025-10-27 20:06:20.016 [error] [command][0d881a17-86a7-495d-a36b-75d06e4721d4] Socket error: Error: read ECONNRESET\n2025-10-27 20:06:20.016 [info] [command][0d881a17-86a7-495d-a36b-75d06e4721d4] Socket close event received\n2025-10-27 20:06:20.016 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0d881a17-86a7-495d-a36b-75d06e4721d4] Socket closed without exit code\n2025-10-27 20:07:20.021 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:07:20.024 [info] [command][9319bfc4-1926-457f-b51f-2fe745093755] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9319bfc4-1926-457f-b51f-2fe745093755""}\n2025-10-27 20:07:20.025 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][85142533-d4c7-4a8b-aa6f-4a29d73b23ba] remote server not configured\n2025-10-27 20:07:20.026 [error] [command][9319bfc4-1926-457f-b51f-2fe745093755] Socket error: Error: read ECONNRESET\n2025-10-27 20:07:20.026 [info] [command][9319bfc4-1926-457f-b51f-2fe745093755] Socket close event received\n2025-10-27 20:07:20.026 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9319bfc4-1926-457f-b51f-2fe745093755] Socket closed without exit code\n2025-10-27 20:08:20.037 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:08:20.038 [info] [command][28c6fa1a-dcc9-4a00-9277-3994eb6f2cd6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""28c6fa1a-dcc9-4a00-9277-3994eb6f2cd6""}\n2025-10-27 20:08:20.039 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0a08bb7d-bfca-4143-a886-0849f2d33d3f] remote server not configured\n2025-10-27 20:08:20.040 [error] [command][28c6fa1a-dcc9-4a00-9277-3994eb6f2cd6] Socket error: Error: read ECONNRESET\n2025-10-27 20:08:20.040 [info] [command][28c6fa1a-dcc9-4a00-9277-3994eb6f2cd6] Socket close event received\n2025-10-27 20:08:20.040 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][28c6fa1a-dcc9-4a00-9277-3994eb6f2cd6] Socket closed without exit code\n2025-10-27 20:09:20.051 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:09:20.053 [info] [command][691fbc78-7021-455c-bd94-2c52d737e61e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""691fbc78-7021-455c-bd94-2c52d737e61e""}\n2025-10-27 20:09:20.053 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1accffed-eef0-4191-bfe6-89b5c4cfdf6e] remote server not configured\n2025-10-27 20:09:20.054 [error] [command][691fbc78-7021-455c-bd94-2c52d737e61e] Socket error: Error: read ECONNRESET\n2025-10-27 20:09:20.054 [info] [command][691fbc78-7021-455c-bd94-2c52d737e61e] Socket close event received\n2025-10-27 20:09:20.054 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][691fbc78-7021-455c-bd94-2c52d737e61e] Socket closed without exit code\n2025-10-27 20:10:20.065 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:10:20.067 [info] [command][f599c75c-3fba-4e16-ace1-7a25093cc764] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f599c75c-3fba-4e16-ace1-7a25093cc764""}\n2025-10-27 20:10:20.068 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][96069f7d-85a8-4e57-a9d1-ebb11fc20c46] remote server not configured\n2025-10-27 20:10:20.068 [error] [command][f599c75c-3fba-4e16-ace1-7a25093cc764] Socket error: Error: read ECONNRESET\n2025-10-27 20:10:20.069 [info] [command][f599c75c-3fba-4e16-ace1-7a25093cc764] Socket close event received\n2025-10-27 20:10:20.069 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f599c75c-3fba-4e16-ace1-7a25093cc764] Socket closed without exit code\n2025-10-27 20:11:20.079 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:11:20.081 [info] [command][42ec571f-98e4-441d-a431-a2f2b7116fca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""42ec571f-98e4-441d-a431-a2f2b7116fca""}\n2025-10-27 20:11:20.082 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][67ed9099-c12a-41d6-99cb-59bc9a15ba02] remote server not configured\n2025-10-27 20:11:20.082 [error] [command][42ec571f-98e4-441d-a431-a2f2b7116fca] Socket error: Error: read ECONNRESET\n2025-10-27 20:11:20.083 [info] [command][42ec571f-98e4-441d-a431-a2f2b7116fca] Socket close event received\n2025-10-27 20:11:20.083 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][42ec571f-98e4-441d-a431-a2f2b7116fca] Socket closed without exit code\n2025-10-27 20:12:20.090 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:12:20.093 [info] [command][261d2e0d-ca84-4ea0-9f0f-f409c220ecb8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""261d2e0d-ca84-4ea0-9f0f-f409c220ecb8""}\n2025-10-27 20:12:20.094 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a13eaa19-d2b3-4636-863f-8c0ac7367571] remote server not configured\n2025-10-27 20:12:20.094 [error] [command][261d2e0d-ca84-4ea0-9f0f-f409c220ecb8] Socket error: Error: read ECONNRESET\n2025-10-27 20:12:20.094 [info] [command][261d2e0d-ca84-4ea0-9f0f-f409c220ecb8] Socket close event received\n2025-10-27 20:12:20.095 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][261d2e0d-ca84-4ea0-9f0f-f409c220ecb8] Socket closed without exit code\n2025-10-27 20:13:20.105 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:13:20.107 [info] [command][c59c15e5-4a02-423d-9c90-915bb43d31f1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c59c15e5-4a02-423d-9c90-915bb43d31f1""}\n2025-10-27 20:13:20.107 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][96a6cb6c-1780-42f9-8d96-43a6e8c8e09e] remote server not configured\n2025-10-27 20:13:20.108 [error] [command][c59c15e5-4a02-423d-9c90-915bb43d31f1] Socket error: Error: read ECONNRESET\n2025-10-27 20:13:20.108 [info] [command][c59c15e5-4a02-423d-9c90-915bb43d31f1] Socket close event received\n2025-10-27 20:13:20.108 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c59c15e5-4a02-423d-9c90-915bb43d31f1] Socket closed without exit code\n2025-10-27 20:14:20.110 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:14:20.113 [info] [command][372e5f9b-6092-46a7-bc91-de4c2c682366] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""372e5f9b-6092-46a7-bc91-de4c2c682366""}\n2025-10-27 20:14:20.114 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b3c9d6cc-f803-4874-ae3e-59d903a9cbf6] remote server not configured\n2025-10-27 20:14:20.114 [error] [command][372e5f9b-6092-46a7-bc91-de4c2c682366] Socket error: Error: read ECONNRESET\n2025-10-27 20:14:20.115 [info] [command][372e5f9b-6092-46a7-bc91-de4c2c682366] Socket close event received\n2025-10-27 20:14:20.115 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][372e5f9b-6092-46a7-bc91-de4c2c682366] Socket closed without exit code\n2025-10-27 20:15:20.123 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:15:20.124 [info] [command][bb49ceb4-99b9-4371-8a09-7d04c2b4fc13] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bb49ceb4-99b9-4371-8a09-7d04c2b4fc13""}\n2025-10-27 20:15:20.125 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][90d380f0-cd37-4baa-a5a0-08bbd77cffc2] remote server not configured\n2025-10-27 20:15:20.126 [error] [command][bb49ceb4-99b9-4371-8a09-7d04c2b4fc13] Socket error: Error: read ECONNRESET\n2025-10-27 20:15:20.126 [info] [command][bb49ceb4-99b9-4371-8a09-7d04c2b4fc13] Socket close event received\n2025-10-27 20:15:20.126 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bb49ceb4-99b9-4371-8a09-7d04c2b4fc13] Socket closed without exit code\n2025-10-27 20:16:20.136 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:16:20.138 [info] [command][2ca5f8a2-4d06-466a-bbf2-53e5e80febf0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2ca5f8a2-4d06-466a-bbf2-53e5e80febf0""}\n2025-10-27 20:16:20.138 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2d9c2c97-b53e-48fd-ade5-812630f374d8] remote server not configured\n2025-10-27 20:16:20.139 [error] [command][2ca5f8a2-4d06-466a-bbf2-53e5e80febf0] Socket error: Error: read ECONNRESET\n2025-10-27 20:16:20.139 [info] [command][2ca5f8a2-4d06-466a-bbf2-53e5e80febf0] Socket close event received\n2025-10-27 20:16:20.139 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2ca5f8a2-4d06-466a-bbf2-53e5e80febf0] Socket closed without exit code\n2025-10-27 20:17:20.149 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:17:20.152 [info] [command][bfeaa27f-41f7-4f26-8ddd-b3a46500f287] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bfeaa27f-41f7-4f26-8ddd-b3a46500f287""}\n2025-10-27 20:17:20.152 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b42667a1-1961-4292-89c0-b17dc680ae2a] remote server not configured\n2025-10-27 20:17:20.152 [error] [command][bfeaa27f-41f7-4f26-8ddd-b3a46500f287] Socket error: Error: read ECONNRESET\n2025-10-27 20:17:20.153 [info] [command][bfeaa27f-41f7-4f26-8ddd-b3a46500f287] Socket close event received\n2025-10-27 20:17:20.153 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bfeaa27f-41f7-4f26-8ddd-b3a46500f287] Socket closed without exit code\n2025-10-27 20:18:20.164 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:18:20.166 [info] [command][d3506a15-e51c-42bc-90a8-5fb7d9671f01] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d3506a15-e51c-42bc-90a8-5fb7d9671f01""}\n2025-10-27 20:18:20.166 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e8ce9670-af92-4460-b64a-8486fd310f02] remote server not configured\n2025-10-27 20:18:20.167 [error] [command][d3506a15-e51c-42bc-90a8-5fb7d9671f01] Socket error: Error: read ECONNRESET\n2025-10-27 20:18:20.167 [info] [command][d3506a15-e51c-42bc-90a8-5fb7d9671f01] Socket close event received\n2025-10-27 20:18:20.168 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d3506a15-e51c-42bc-90a8-5fb7d9671f01] Socket closed without exit code\n2025-10-27 20:19:20.179 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:19:20.180 [info] [command][677043f8-ba7d-4f5c-bc5e-3a88bb61a231] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""677043f8-ba7d-4f5c-bc5e-3a88bb61a231""}\n2025-10-27 20:19:20.181 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4f9deeea-554f-4bcd-baa5-4e2bf20d2b6b] remote server not configured\n2025-10-27 20:19:20.182 [error] [command][677043f8-ba7d-4f5c-bc5e-3a88bb61a231] Socket error: Error: read ECONNRESET\n2025-10-27 20:19:20.182 [info] [command][677043f8-ba7d-4f5c-bc5e-3a88bb61a231] Socket close event received\n2025-10-27 20:19:20.182 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][677043f8-ba7d-4f5c-bc5e-3a88bb61a231] Socket closed without exit code\n2025-10-27 20:20:20.112 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:20:20.115 [info] [command][07c07bf7-4249-4d04-bdc8-bd9138d80c21] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""07c07bf7-4249-4d04-bdc8-bd9138d80c21""}\n2025-10-27 20:20:20.116 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8555066e-9922-4404-80e7-fcb1daef901b] remote server not configured\n2025-10-27 20:20:20.116 [error] [command][07c07bf7-4249-4d04-bdc8-bd9138d80c21] Socket error: Error: read ECONNRESET\n2025-10-27 20:20:20.116 [info] [command][07c07bf7-4249-4d04-bdc8-bd9138d80c21] Socket close event received\n2025-10-27 20:20:20.117 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][07c07bf7-4249-4d04-bdc8-bd9138d80c21] Socket closed without exit code\n2025-10-27 20:21:20.126 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:21:20.128 [info] [command][b5550e37-c0be-4510-ba1d-82e3ec2f083a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b5550e37-c0be-4510-ba1d-82e3ec2f083a""}\n2025-10-27 20:21:20.129 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2dc1625c-0c29-476d-9403-c84bef67e4aa] remote server not configured\n2025-10-27 20:21:20.129 [error] [command][b5550e37-c0be-4510-ba1d-82e3ec2f083a] Socket error: Error: read ECONNRESET\n2025-10-27 20:21:20.130 [info] [command][b5550e37-c0be-4510-ba1d-82e3ec2f083a] Socket close event received\n2025-10-27 20:21:20.130 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b5550e37-c0be-4510-ba1d-82e3ec2f083a] Socket closed without exit code\n2025-10-27 20:22:20.139 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:22:20.142 [info] [command][a2fd3d73-0cf4-4d54-82fd-307d9b1d76e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a2fd3d73-0cf4-4d54-82fd-307d9b1d76e3""}\n2025-10-27 20:22:20.143 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][acbec0ac-1a67-44f4-8c43-733caeca46c5] remote server not configured\n2025-10-27 20:22:20.143 [error] [command][a2fd3d73-0cf4-4d54-82fd-307d9b1d76e3] Socket error: Error: read ECONNRESET\n2025-10-27 20:22:20.143 [info] [command][a2fd3d73-0cf4-4d54-82fd-307d9b1d76e3] Socket close event received\n2025-10-27 20:22:20.143 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a2fd3d73-0cf4-4d54-82fd-307d9b1d76e3] Socket closed without exit code\n2025-10-27 20:23:20.146 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:23:20.148 [info] [command][a17a5815-d97e-40b6-acff-28a0f1fe633f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a17a5815-d97e-40b6-acff-28a0f1fe633f""}\n2025-10-27 20:23:20.149 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][174bb5f6-2316-4d5a-b130-a9e5accef090] remote server not configured\n2025-10-27 20:23:20.149 [error] [command][a17a5815-d97e-40b6-acff-28a0f1fe633f] Socket error: Error: read ECONNRESET\n2025-10-27 20:23:20.150 [info] [command][a17a5815-d97e-40b6-acff-28a0f1fe633f] Socket close event received\n2025-10-27 20:23:20.150 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a17a5815-d97e-40b6-acff-28a0f1fe633f] Socket closed without exit code\n2025-10-27 20:24:20.159 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:24:20.163 [info] [command][c2f8df4f-5391-41b8-a644-c58c8d37339a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c2f8df4f-5391-41b8-a644-c58c8d37339a""}\n2025-10-27 20:24:20.164 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b086229a-a5c5-4bd6-9f8e-ab7f11e5bab0] remote server not configured\n2025-10-27 20:24:20.164 [error] [command][c2f8df4f-5391-41b8-a644-c58c8d37339a] Socket error: Error: read ECONNRESET\n2025-10-27 20:24:20.164 [info] [command][c2f8df4f-5391-41b8-a644-c58c8d37339a] Socket close event received\n2025-10-27 20:24:20.164 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c2f8df4f-5391-41b8-a644-c58c8d37339a] Socket closed without exit code\n2025-10-27 20:25:20.174 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:25:20.175 [info] [command][575d135d-2ced-408d-aba8-902a8cd7b988] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""575d135d-2ced-408d-aba8-902a8cd7b988""}\n2025-10-27 20:25:20.176 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f0eab554-15c4-4f35-a3af-d551121660d0] remote server not configured\n2025-10-27 20:25:20.177 [error] [command][575d135d-2ced-408d-aba8-902a8cd7b988] Socket error: Error: read ECONNRESET\n2025-10-27 20:25:20.177 [info] [command][575d135d-2ced-408d-aba8-902a8cd7b988] Socket close event received\n2025-10-27 20:25:20.178 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][575d135d-2ced-408d-aba8-902a8cd7b988] Socket closed without exit code\n2025-10-27 20:26:20.179 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:26:20.180 [info] [command][315dfaf8-1346-4c4a-a70d-91e957e8aa34] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""315dfaf8-1346-4c4a-a70d-91e957e8aa34""}\n2025-10-27 20:26:20.181 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a1345c2b-c9d1-4434-8841-9812b72fa94a] remote server not configured\n2025-10-27 20:26:20.182 [error] [command][315dfaf8-1346-4c4a-a70d-91e957e8aa34] Socket error: Error: read ECONNRESET\n2025-10-27 20:26:20.182 [info] [command][315dfaf8-1346-4c4a-a70d-91e957e8aa34] Socket close event received\n2025-10-27 20:26:20.182 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][315dfaf8-1346-4c4a-a70d-91e957e8aa34] Socket closed without exit code\n2025-10-27 20:27:20.192 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:27:20.194 [info] [command][5bf3eaf7-039e-4694-9fb5-0eb7c201cb23] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5bf3eaf7-039e-4694-9fb5-0eb7c201cb23""}\n2025-10-27 20:27:20.194 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][01b7711e-3055-43c7-a52d-923ac543727a] remote server not configured\n2025-10-27 20:27:20.195 [error] [command][5bf3eaf7-039e-4694-9fb5-0eb7c201cb23] Socket error: Error: read ECONNRESET\n2025-10-27 20:27:20.195 [info] [command][5bf3eaf7-039e-4694-9fb5-0eb7c201cb23] Socket close event received\n2025-10-27 20:27:20.195 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5bf3eaf7-039e-4694-9fb5-0eb7c201cb23] Socket closed without exit code\n2025-10-27 20:28:20.202 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:28:20.206 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e51b9d61-2988-4ccb-999c-53b313d6e65d] remote server not configured\n2025-10-27 20:28:20.206 [info] [command][6c7bb4e8-3ada-43b3-9500-a54aa3f7412b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6c7bb4e8-3ada-43b3-9500-a54aa3f7412b""}\n2025-10-27 20:28:20.207 [error] [command][6c7bb4e8-3ada-43b3-9500-a54aa3f7412b] Socket error: Error: read ECONNRESET\n2025-10-27 20:28:20.207 [info] [command][6c7bb4e8-3ada-43b3-9500-a54aa3f7412b] Socket close event received\n2025-10-27 20:28:20.208 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6c7bb4e8-3ada-43b3-9500-a54aa3f7412b] Socket closed without exit code\n2025-10-27 20:29:20.217 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:29:20.219 [info] [command][6470a87d-a555-48e6-b3ed-1c232d3700ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6470a87d-a555-48e6-b3ed-1c232d3700ea""}\n2025-10-27 20:29:20.220 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b0cd191c-e5c6-4692-8c45-9e6db93ffc3e] remote server not configured\n2025-10-27 20:29:20.220 [error] [command][6470a87d-a555-48e6-b3ed-1c232d3700ea] Socket error: Error: read ECONNRESET\n2025-10-27 20:29:20.221 [info] [command][6470a87d-a555-48e6-b3ed-1c232d3700ea] Socket close event received\n2025-10-27 20:29:20.221 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6470a87d-a555-48e6-b3ed-1c232d3700ea] Socket closed without exit code\n2025-10-27 20:30:20.224 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:30:20.226 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][64b1d539-a5ae-4a68-a69c-bdedc8ee40b5] remote server not configured\n2025-10-27 20:30:20.227 [info] [command][eb0cc03a-6302-4017-a52c-b09d6d57786b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""eb0cc03a-6302-4017-a52c-b09d6d57786b""}\n2025-10-27 20:30:20.227 [error] [command][eb0cc03a-6302-4017-a52c-b09d6d57786b] Socket error: Error: read ECONNRESET\n2025-10-27 20:30:20.228 [info] [command][eb0cc03a-6302-4017-a52c-b09d6d57786b] Socket close event received\n2025-10-27 20:30:20.228 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][eb0cc03a-6302-4017-a52c-b09d6d57786b] Socket closed without exit code\n2025-10-27 20:31:20.235 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:31:20.236 [info] [command][50634e26-9c6b-45ff-b098-609fc075c546] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""50634e26-9c6b-45ff-b098-609fc075c546""}\n2025-10-27 20:31:20.237 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8c50799c-50ea-4d4b-97b9-2f17b0fc0dba] remote server not configured\n2025-10-27 20:31:20.238 [error] [command][50634e26-9c6b-45ff-b098-609fc075c546] Socket error: Error: read ECONNRESET\n2025-10-27 20:31:20.238 [info] [command][50634e26-9c6b-45ff-b098-609fc075c546] Socket close event received\n2025-10-27 20:31:20.238 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][50634e26-9c6b-45ff-b098-609fc075c546] Socket closed without exit code\n2025-10-27 20:32:20.243 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:32:20.245 [info] [command][5ce8bfee-6b7d-438e-a06b-84b43349dd83] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5ce8bfee-6b7d-438e-a06b-84b43349dd83""}\n2025-10-27 20:32:20.245 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3b9764da-514d-4212-83b3-5684ec680155] remote server not configured\n2025-10-27 20:32:20.246 [error] [command][5ce8bfee-6b7d-438e-a06b-84b43349dd83] Socket error: Error: read ECONNRESET\n2025-10-27 20:32:20.246 [info] [command][5ce8bfee-6b7d-438e-a06b-84b43349dd83] Socket close event received\n2025-10-27 20:32:20.246 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5ce8bfee-6b7d-438e-a06b-84b43349dd83] Socket closed without exit code\n2025-10-27 20:33:20.255 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:33:20.257 [info] [command][72054079-0683-416f-8069-e099d5cdf4d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""72054079-0683-416f-8069-e099d5cdf4d6""}\n2025-10-27 20:33:20.258 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][00fa5b0b-740a-4038-abcf-455a1cb49382] remote server not configured\n2025-10-27 20:33:20.258 [error] [command][72054079-0683-416f-8069-e099d5cdf4d6] Socket error: Error: read ECONNRESET\n2025-10-27 20:33:20.259 [info] [command][72054079-0683-416f-8069-e099d5cdf4d6] Socket close event received\n2025-10-27 20:33:20.259 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][72054079-0683-416f-8069-e099d5cdf4d6] Socket closed without exit code\n2025-10-27 20:34:20.267 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:34:20.268 [info] [command][761dad05-ebbd-4e84-bbc6-5ef9c5cde207] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""761dad05-ebbd-4e84-bbc6-5ef9c5cde207""}\n2025-10-27 20:34:20.269 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cc7e8699-4a69-432b-9dc9-fb413d5fcb8f] remote server not configured\n2025-10-27 20:34:20.270 [error] [command][761dad05-ebbd-4e84-bbc6-5ef9c5cde207] Socket error: Error: read ECONNRESET\n2025-10-27 20:34:20.270 [info] [command][761dad05-ebbd-4e84-bbc6-5ef9c5cde207] Socket close event received\n2025-10-27 20:34:20.270 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][761dad05-ebbd-4e84-bbc6-5ef9c5cde207] Socket closed without exit code\n2025-10-27 20:35:20.280 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:35:20.282 [info] [command][6ebfa590-fb09-4da8-9cd9-fc7f55a5b858] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6ebfa590-fb09-4da8-9cd9-fc7f55a5b858""}\n2025-10-27 20:35:20.283 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][077a5204-2c95-4066-a914-b615b8e9f424] remote server not configured\n2025-10-27 20:35:20.283 [error] [command][6ebfa590-fb09-4da8-9cd9-fc7f55a5b858] Socket error: Error: read ECONNRESET\n2025-10-27 20:35:20.283 [info] [command][6ebfa590-fb09-4da8-9cd9-fc7f55a5b858] Socket close event received\n2025-10-27 20:35:20.284 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6ebfa590-fb09-4da8-9cd9-fc7f55a5b858] Socket closed without exit code\n2025-10-27 20:36:20.294 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:36:20.297 [info] [command][b69c8d2f-5325-466a-b15d-b1826370981c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b69c8d2f-5325-466a-b15d-b1826370981c""}\n2025-10-27 20:36:20.298 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1aca67de-6a48-43f9-a96f-600ae83babc6] remote server not configured\n2025-10-27 20:36:20.298 [error] [command][b69c8d2f-5325-466a-b15d-b1826370981c] Socket error: Error: read ECONNRESET\n2025-10-27 20:36:20.299 [info] [command][b69c8d2f-5325-466a-b15d-b1826370981c] Socket close event received\n2025-10-27 20:36:20.299 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b69c8d2f-5325-466a-b15d-b1826370981c] Socket closed without exit code\n2025-10-27 20:37:20.308 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:37:20.310 [info] [command][aa7db144-bc1d-41ce-a6a3-62f8c81c58f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""aa7db144-bc1d-41ce-a6a3-62f8c81c58f7""}\n2025-10-27 20:37:20.310 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][050c008c-7a76-4c25-b37c-086ec5f4db6d] remote server not configured\n2025-10-27 20:37:20.311 [error] [command][aa7db144-bc1d-41ce-a6a3-62f8c81c58f7] Socket error: Error: read ECONNRESET\n2025-10-27 20:37:20.311 [info] [command][aa7db144-bc1d-41ce-a6a3-62f8c81c58f7] Socket close event received\n2025-10-27 20:37:20.311 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][aa7db144-bc1d-41ce-a6a3-62f8c81c58f7] Socket closed without exit code\n2025-10-27 20:38:20.320 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:38:20.322 [info] [command][b8ac2e1d-c6f7-4064-a9c1-dfecf42a3bc3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b8ac2e1d-c6f7-4064-a9c1-dfecf42a3bc3""}\n2025-10-27 20:38:20.323 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][30b3c751-8946-4e78-9abc-58b918c6d392] remote server not configured\n2025-10-27 20:38:20.324 [error] [command][b8ac2e1d-c6f7-4064-a9c1-dfecf42a3bc3] Socket error: Error: read ECONNRESET\n2025-10-27 20:38:20.324 [info] [command][b8ac2e1d-c6f7-4064-a9c1-dfecf42a3bc3] Socket close event received\n2025-10-27 20:38:20.324 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b8ac2e1d-c6f7-4064-a9c1-dfecf42a3bc3] Socket closed without exit code\n2025-10-27 20:39:20.325 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:39:20.327 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0532d7cf-d219-40fc-9d9c-bf0ac964547c] remote server not configured\n2025-10-27 20:39:20.327 [info] [command][5f968ff8-60f4-4cfc-834f-adcb367e8823] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5f968ff8-60f4-4cfc-834f-adcb367e8823""}\n2025-10-27 20:39:20.328 [error] [command][5f968ff8-60f4-4cfc-834f-adcb367e8823] Socket error: Error: read ECONNRESET\n2025-10-27 20:39:20.328 [info] [command][5f968ff8-60f4-4cfc-834f-adcb367e8823] Socket close event received\n2025-10-27 20:39:20.329 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5f968ff8-60f4-4cfc-834f-adcb367e8823] Socket closed without exit code\n2025-10-27 20:40:20.339 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:40:20.340 [info] [command][71fcc85d-e5c0-42d9-9363-aebde4d8a800] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""71fcc85d-e5c0-42d9-9363-aebde4d8a800""}\n2025-10-27 20:40:20.341 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3abaed63-613c-461e-91ab-bd94c3eefc24] remote server not configured\n2025-10-27 20:40:20.342 [error] [command][71fcc85d-e5c0-42d9-9363-aebde4d8a800] Socket error: Error: read ECONNRESET\n2025-10-27 20:40:20.342 [info] [command][71fcc85d-e5c0-42d9-9363-aebde4d8a800] Socket close event received\n2025-10-27 20:40:20.342 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][71fcc85d-e5c0-42d9-9363-aebde4d8a800] Socket closed without exit code\n2025-10-27 20:41:20.342 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:41:20.344 [info] [command][3d7bfe9c-c8f7-4f2b-b577-d428975caa12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3d7bfe9c-c8f7-4f2b-b577-d428975caa12""}\n2025-10-27 20:41:20.344 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d609bf6b-6217-4448-a8bd-191a148ca7c0] remote server not configured\n2025-10-27 20:41:20.345 [error] [command][3d7bfe9c-c8f7-4f2b-b577-d428975caa12] Socket error: Error: read ECONNRESET\n2025-10-27 20:41:20.345 [info] [command][3d7bfe9c-c8f7-4f2b-b577-d428975caa12] Socket close event received\n2025-10-27 20:41:20.345 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3d7bfe9c-c8f7-4f2b-b577-d428975caa12] Socket closed without exit code\n2025-10-27 20:42:20.355 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:42:20.356 [info] [command][60d0ed1d-9ced-4ae2-8467-ff8d624035a1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""60d0ed1d-9ced-4ae2-8467-ff8d624035a1""}\n2025-10-27 20:42:20.357 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b37d2157-cc18-4a2b-b537-148fa98e8cdc] remote server not configured\n2025-10-27 20:42:20.357 [error] [command][60d0ed1d-9ced-4ae2-8467-ff8d624035a1] Socket error: Error: read ECONNRESET\n2025-10-27 20:42:20.358 [info] [command][60d0ed1d-9ced-4ae2-8467-ff8d624035a1] Socket close event received\n2025-10-27 20:42:20.358 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][60d0ed1d-9ced-4ae2-8467-ff8d624035a1] Socket closed without exit code\n2025-10-27 20:43:20.360 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:43:20.362 [info] [command][52892680-43b3-448f-ae58-65c6d1e78409] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""52892680-43b3-448f-ae58-65c6d1e78409""}\n2025-10-27 20:43:20.363 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d9790dc2-39d8-4539-90ca-2f543a1beddd] remote server not configured\n2025-10-27 20:43:20.363 [error] [command][52892680-43b3-448f-ae58-65c6d1e78409] Socket error: Error: read ECONNRESET\n2025-10-27 20:43:20.364 [info] [command][52892680-43b3-448f-ae58-65c6d1e78409] Socket close event received\n2025-10-27 20:43:20.364 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][52892680-43b3-448f-ae58-65c6d1e78409] Socket closed without exit code\n2025-10-27 20:44:20.374 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:44:20.375 [info] [command][7a073624-ad05-4fc6-b10b-efb2d1da1c0d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7a073624-ad05-4fc6-b10b-efb2d1da1c0d""}\n2025-10-27 20:44:20.376 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cdc7cff5-cee4-4175-ac44-cda05c211745] remote server not configured\n2025-10-27 20:44:20.376 [error] [command][7a073624-ad05-4fc6-b10b-efb2d1da1c0d] Socket error: Error: read ECONNRESET\n2025-10-27 20:44:20.376 [info] [command][7a073624-ad05-4fc6-b10b-efb2d1da1c0d] Socket close event received\n2025-10-27 20:44:20.377 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7a073624-ad05-4fc6-b10b-efb2d1da1c0d] Socket closed without exit code\n2025-10-27 20:45:20.387 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:45:20.388 [info] [command][263d9b6e-1ad8-4efb-9d59-0f9df50a2c61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""263d9b6e-1ad8-4efb-9d59-0f9df50a2c61""}\n2025-10-27 20:45:20.389 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][361a312a-ea86-4a6d-be51-43e87a97cd1f] remote server not configured\n2025-10-27 20:45:20.390 [error] [command][263d9b6e-1ad8-4efb-9d59-0f9df50a2c61] Socket error: Error: read ECONNRESET\n2025-10-27 20:45:20.390 [info] [command][263d9b6e-1ad8-4efb-9d59-0f9df50a2c61] Socket close event received\n2025-10-27 20:45:20.391 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][263d9b6e-1ad8-4efb-9d59-0f9df50a2c61] Socket closed without exit code\n2025-10-27 20:46:20.400 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:46:20.401 [info] [command][8953ce6c-a354-4d8d-b739-2dc55ff1c8ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8953ce6c-a354-4d8d-b739-2dc55ff1c8ba""}\n2025-10-27 20:46:20.402 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f1caa278-4803-4dd1-8106-1dd4ab352a19] remote server not configured\n2025-10-27 20:46:20.402 [error] [command][8953ce6c-a354-4d8d-b739-2dc55ff1c8ba] Socket error: Error: read ECONNRESET\n2025-10-27 20:46:20.402 [info] [command][8953ce6c-a354-4d8d-b739-2dc55ff1c8ba] Socket close event received\n2025-10-27 20:46:20.402 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8953ce6c-a354-4d8d-b739-2dc55ff1c8ba] Socket closed without exit code\n2025-10-27 20:47:20.411 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:47:20.412 [info] [command][ed0f3d56-9994-4216-965c-fd36276025c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ed0f3d56-9994-4216-965c-fd36276025c7""}\n2025-10-27 20:47:20.412 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6435fb5a-5987-430d-91b0-7477d56d932e] remote server not configured\n2025-10-27 20:47:20.412 [error] [command][ed0f3d56-9994-4216-965c-fd36276025c7] Socket error: Error: read ECONNRESET\n2025-10-27 20:47:20.412 [info] [command][ed0f3d56-9994-4216-965c-fd36276025c7] Socket close event received\n2025-10-27 20:47:20.412 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ed0f3d56-9994-4216-965c-fd36276025c7] Socket closed without exit code\n2025-10-27 20:48:20.422 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:48:20.424 [info] [command][166e9f3b-6c1f-4243-aa10-9d401242bb45] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""166e9f3b-6c1f-4243-aa10-9d401242bb45""}\n2025-10-27 20:48:20.424 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f2164fb5-c56a-4c77-b762-1fb15109d9ab] remote server not configured\n2025-10-27 20:48:20.425 [error] [command][166e9f3b-6c1f-4243-aa10-9d401242bb45] Socket error: Error: read ECONNRESET\n2025-10-27 20:48:20.425 [info] [command][166e9f3b-6c1f-4243-aa10-9d401242bb45] Socket close event received\n2025-10-27 20:48:20.425 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][166e9f3b-6c1f-4243-aa10-9d401242bb45] Socket closed without exit code\n2025-10-27 20:49:20.427 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:49:20.428 [info] [command][546e9775-b934-4c89-9629-04f4c6d190bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""546e9775-b934-4c89-9629-04f4c6d190bb""}\n2025-10-27 20:49:20.429 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9c82c734-f766-4540-a535-67525914b54c] remote server not configured\n2025-10-27 20:49:20.430 [error] [command][546e9775-b934-4c89-9629-04f4c6d190bb] Socket error: Error: read ECONNRESET\n2025-10-27 20:49:20.430 [info] [command][546e9775-b934-4c89-9629-04f4c6d190bb] Socket close event received\n2025-10-27 20:49:20.430 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][546e9775-b934-4c89-9629-04f4c6d190bb] Socket closed without exit code\n2025-10-27 20:50:20.440 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:50:20.441 [info] [command][81496a7c-15a3-43fe-8144-4174056c9b9c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""81496a7c-15a3-43fe-8144-4174056c9b9c""}\n2025-10-27 20:50:20.442 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][113f2f51-828a-4231-9916-52ee0d19f999] remote server not configured\n2025-10-27 20:50:20.442 [error] [command][81496a7c-15a3-43fe-8144-4174056c9b9c] Socket error: Error: read ECONNRESET\n2025-10-27 20:50:20.443 [info] [command][81496a7c-15a3-43fe-8144-4174056c9b9c] Socket close event received\n2025-10-27 20:50:20.443 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][81496a7c-15a3-43fe-8144-4174056c9b9c] Socket closed without exit code\n2025-10-27 20:51:20.443 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:51:20.445 [info] [command][f44ec87b-bf19-4c71-a11d-17ff2a57200f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f44ec87b-bf19-4c71-a11d-17ff2a57200f""}\n2025-10-27 20:51:20.446 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6d586c36-05ff-498f-b913-739c2b394163] remote server not configured\n2025-10-27 20:51:20.446 [error] [command][f44ec87b-bf19-4c71-a11d-17ff2a57200f] Socket error: Error: read ECONNRESET\n2025-10-27 20:51:20.446 [info] [command][f44ec87b-bf19-4c71-a11d-17ff2a57200f] Socket close event received\n2025-10-27 20:51:20.446 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f44ec87b-bf19-4c71-a11d-17ff2a57200f] Socket closed without exit code\n2025-10-27 20:52:20.451 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:52:20.452 [info] [command][a8e12247-e60b-445e-be2e-dabd0e73d367] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a8e12247-e60b-445e-be2e-dabd0e73d367""}\n2025-10-27 20:52:20.452 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][68a7766f-a01c-4f25-a610-f9ddbbeaddb6] remote server not configured\n2025-10-27 20:52:20.452 [error] [command][a8e12247-e60b-445e-be2e-dabd0e73d367] Socket error: Error: read ECONNRESET\n2025-10-27 20:52:20.452 [info] [command][a8e12247-e60b-445e-be2e-dabd0e73d367] Socket close event received\n2025-10-27 20:52:20.452 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a8e12247-e60b-445e-be2e-dabd0e73d367] Socket closed without exit code\n2025-10-27 20:53:20.462 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:53:20.463 [info] [command][efb36b04-5898-40c4-937d-03381db1420d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""efb36b04-5898-40c4-937d-03381db1420d""}\n2025-10-27 20:53:20.464 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cc03e0c6-4dff-415a-9934-5ef9334f1eb1] remote server not configured\n2025-10-27 20:53:20.465 [error] [command][efb36b04-5898-40c4-937d-03381db1420d] Socket error: Error: read ECONNRESET\n2025-10-27 20:53:20.465 [info] [command][efb36b04-5898-40c4-937d-03381db1420d] Socket close event received\n2025-10-27 20:53:20.465 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][efb36b04-5898-40c4-937d-03381db1420d] Socket closed without exit code\n2025-10-27 20:54:20.475 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:54:20.477 [info] [command][131dc87b-bd91-42d9-bcfe-b49b62cd508e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""131dc87b-bd91-42d9-bcfe-b49b62cd508e""}\n2025-10-27 20:54:20.478 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][51a69761-f8a7-44b9-a768-55d2f7fd08bc] remote server not configured\n2025-10-27 20:54:20.478 [error] [command][131dc87b-bd91-42d9-bcfe-b49b62cd508e] Socket error: Error: read ECONNRESET\n2025-10-27 20:54:20.479 [info] [command][131dc87b-bd91-42d9-bcfe-b49b62cd508e] Socket close event received\n2025-10-27 20:54:20.479 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][131dc87b-bd91-42d9-bcfe-b49b62cd508e] Socket closed without exit code\n2025-10-27 20:55:20.488 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:55:20.490 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6f935643-115e-4f02-82d6-8797ce342e2f] remote server not configured\n2025-10-27 20:55:20.490 [info] [command][2b30c15b-cbea-4cbe-a955-684eca325b9f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2b30c15b-cbea-4cbe-a955-684eca325b9f""}\n2025-10-27 20:55:20.491 [error] [command][2b30c15b-cbea-4cbe-a955-684eca325b9f] Socket error: Error: read ECONNRESET\n2025-10-27 20:55:20.491 [info] [command][2b30c15b-cbea-4cbe-a955-684eca325b9f] Socket close event received\n2025-10-27 20:55:20.491 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2b30c15b-cbea-4cbe-a955-684eca325b9f] Socket closed without exit code\n2025-10-27 20:56:20.492 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:56:20.494 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][82c2816f-e66d-49e4-a16c-89e76800d6da] remote server not configured\n2025-10-27 20:56:20.494 [info] [command][6a10f8f6-d1ca-4fea-900d-ea96b0c38c12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6a10f8f6-d1ca-4fea-900d-ea96b0c38c12""}\n2025-10-27 20:56:20.495 [error] [command][6a10f8f6-d1ca-4fea-900d-ea96b0c38c12] Socket error: Error: read ECONNRESET\n2025-10-27 20:56:20.496 [info] [command][6a10f8f6-d1ca-4fea-900d-ea96b0c38c12] Socket close event received\n2025-10-27 20:56:20.496 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6a10f8f6-d1ca-4fea-900d-ea96b0c38c12] Socket closed without exit code\n2025-10-27 20:57:20.497 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:57:20.498 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1cf4c9bf-2130-4cd5-902e-f3d212d16fd4] remote server not configured\n2025-10-27 20:57:20.499 [info] [command][6f35450a-412c-4bec-8d1c-a13cdc68558a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6f35450a-412c-4bec-8d1c-a13cdc68558a""}\n2025-10-27 20:57:20.500 [error] [command][6f35450a-412c-4bec-8d1c-a13cdc68558a] Socket error: Error: read ECONNRESET\n2025-10-27 20:57:20.500 [info] [command][6f35450a-412c-4bec-8d1c-a13cdc68558a] Socket close event received\n2025-10-27 20:57:20.500 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6f35450a-412c-4bec-8d1c-a13cdc68558a] Socket closed without exit code\n2025-10-27 20:58:20.509 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:58:20.510 [info] [command][17d3f9a1-5a39-4443-ad62-ec89c6e9426a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""17d3f9a1-5a39-4443-ad62-ec89c6e9426a""}\n2025-10-27 20:58:20.511 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][61ca86f8-ce5a-4e34-a9c9-f906271d4cc5] remote server not configured\n2025-10-27 20:58:20.512 [error] [command][17d3f9a1-5a39-4443-ad62-ec89c6e9426a] Socket error: Error: read ECONNRESET\n2025-10-27 20:58:20.512 [info] [command][17d3f9a1-5a39-4443-ad62-ec89c6e9426a] Socket close event received\n2025-10-27 20:58:20.513 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][17d3f9a1-5a39-4443-ad62-ec89c6e9426a] Socket closed without exit code\n2025-10-27 20:59:20.516 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 20:59:20.518 [info] [command][e967a99d-c699-4241-b4a6-a2361521dec7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e967a99d-c699-4241-b4a6-a2361521dec7""}\n2025-10-27 20:59:20.519 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2d4d7926-a3d8-4f3b-9b0b-924e2e9d0de8] remote server not configured\n2025-10-27 20:59:20.520 [error] [command][e967a99d-c699-4241-b4a6-a2361521dec7] Socket error: Error: read ECONNRESET\n2025-10-27 20:59:20.520 [info] [command][e967a99d-c699-4241-b4a6-a2361521dec7] Socket close event received\n2025-10-27 20:59:20.520 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e967a99d-c699-4241-b4a6-a2361521dec7] Socket closed without exit code\n2025-10-27 21:00:20.529 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:00:20.531 [info] [command][f8810ecc-998a-4a1f-93ba-e8bb4a799f79] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f8810ecc-998a-4a1f-93ba-e8bb4a799f79""}\n2025-10-27 21:00:20.532 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1fd55382-ca27-4675-ae60-e44e44f28218] remote server not configured\n2025-10-27 21:00:20.532 [error] [command][f8810ecc-998a-4a1f-93ba-e8bb4a799f79] Socket error: Error: read ECONNRESET\n2025-10-27 21:00:20.532 [info] [command][f8810ecc-998a-4a1f-93ba-e8bb4a799f79] Socket close event received\n2025-10-27 21:00:20.533 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f8810ecc-998a-4a1f-93ba-e8bb4a799f79] Socket closed without exit code\n2025-10-27 21:01:20.542 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:01:20.545 [info] [command][f4105614-efd5-4ad6-8f3b-f9db3a7ef342] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f4105614-efd5-4ad6-8f3b-f9db3a7ef342""}\n2025-10-27 21:01:20.546 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][91eec55b-a5d1-420b-9742-ba250545d993] remote server not configured\n2025-10-27 21:01:20.547 [error] [command][f4105614-efd5-4ad6-8f3b-f9db3a7ef342] Socket error: Error: read ECONNRESET\n2025-10-27 21:01:20.547 [info] [command][f4105614-efd5-4ad6-8f3b-f9db3a7ef342] Socket close event received\n2025-10-27 21:01:20.547 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f4105614-efd5-4ad6-8f3b-f9db3a7ef342] Socket closed without exit code\n2025-10-27 21:02:20.556 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:02:20.558 [info] [command][a30658cb-12a1-4ca8-a896-ec155663aade] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a30658cb-12a1-4ca8-a896-ec155663aade""}\n2025-10-27 21:02:20.558 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f16ef1aa-b2e9-4d61-ad5e-4d1ee91fdfc1] remote server not configured\n2025-10-27 21:02:20.559 [error] [command][a30658cb-12a1-4ca8-a896-ec155663aade] Socket error: Error: read ECONNRESET\n2025-10-27 21:02:20.559 [info] [command][a30658cb-12a1-4ca8-a896-ec155663aade] Socket close event received\n2025-10-27 21:02:20.559 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a30658cb-12a1-4ca8-a896-ec155663aade] Socket closed without exit code\n2025-10-27 21:03:20.558 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:03:20.560 [info] [command][f456f3e8-d467-4d9b-8917-d48c1bfafb16] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f456f3e8-d467-4d9b-8917-d48c1bfafb16""}\n2025-10-27 21:03:20.561 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][43e518d2-c56e-4ff5-921b-d368ca37438d] remote server not configured\n2025-10-27 21:03:20.561 [error] [command][f456f3e8-d467-4d9b-8917-d48c1bfafb16] Socket error: Error: read ECONNRESET\n2025-10-27 21:03:20.562 [info] [command][f456f3e8-d467-4d9b-8917-d48c1bfafb16] Socket close event received\n2025-10-27 21:03:20.562 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f456f3e8-d467-4d9b-8917-d48c1bfafb16] Socket closed without exit code\n2025-10-27 21:04:20.568 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:04:20.570 [info] [command][44490cb8-f533-42b4-94ef-deb38e1a6c99] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""44490cb8-f533-42b4-94ef-deb38e1a6c99""}\n2025-10-27 21:04:20.571 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9cedd5da-c2c6-41fe-a706-0d43da8807cf] remote server not configured\n2025-10-27 21:04:20.572 [error] [command][44490cb8-f533-42b4-94ef-deb38e1a6c99] Socket error: Error: read ECONNRESET\n2025-10-27 21:04:20.572 [info] [command][44490cb8-f533-42b4-94ef-deb38e1a6c99] Socket close event received\n2025-10-27 21:04:20.572 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][44490cb8-f533-42b4-94ef-deb38e1a6c99] Socket closed without exit code\n2025-10-27 21:05:20.582 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:05:20.583 [info] [command][73da6e19-2e7c-47aa-91fb-2063551fb117] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""73da6e19-2e7c-47aa-91fb-2063551fb117""}\n2025-10-27 21:05:20.584 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][743874f7-b43e-4a19-9b03-85cba7e2f098] remote server not configured\n2025-10-27 21:05:20.585 [error] [command][73da6e19-2e7c-47aa-91fb-2063551fb117] Socket error: Error: read ECONNRESET\n2025-10-27 21:05:20.585 [info] [command][73da6e19-2e7c-47aa-91fb-2063551fb117] Socket close event received\n2025-10-27 21:05:20.586 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][73da6e19-2e7c-47aa-91fb-2063551fb117] Socket closed without exit code\n2025-10-27 21:06:20.591 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:06:20.592 [info] [command][ebaab41c-bd09-4367-bba0-2ad51fd190f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ebaab41c-bd09-4367-bba0-2ad51fd190f8""}\n2025-10-27 21:06:20.593 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cd29df09-bf7d-4691-9acf-a365dadd91a5] remote server not configured\n2025-10-27 21:06:20.594 [error] [command][ebaab41c-bd09-4367-bba0-2ad51fd190f8] Socket error: Error: read ECONNRESET\n2025-10-27 21:06:20.594 [info] [command][ebaab41c-bd09-4367-bba0-2ad51fd190f8] Socket close event received\n2025-10-27 21:06:20.594 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ebaab41c-bd09-4367-bba0-2ad51fd190f8] Socket closed without exit code\n2025-10-27 21:07:20.604 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:07:20.605 [info] [command][70a8077b-64d6-42a1-8df4-de453b4caa04] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""70a8077b-64d6-42a1-8df4-de453b4caa04""}\n2025-10-27 21:07:20.606 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dfa06fe3-ea34-4e32-a6f9-018dc70cbb2b] remote server not configured\n2025-10-27 21:07:20.607 [error] [command][70a8077b-64d6-42a1-8df4-de453b4caa04] Socket error: Error: read ECONNRESET\n2025-10-27 21:07:20.607 [info] [command][70a8077b-64d6-42a1-8df4-de453b4caa04] Socket close event received\n2025-10-27 21:07:20.607 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][70a8077b-64d6-42a1-8df4-de453b4caa04] Socket closed without exit code\n2025-10-27 21:08:20.617 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:08:20.619 [info] [command][dbd5257f-938c-4103-a897-b1605a2faefb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dbd5257f-938c-4103-a897-b1605a2faefb""}\n2025-10-27 21:08:20.619 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6e91b3e6-79ca-4384-ad66-c36c1e6536cf] remote server not configured\n2025-10-27 21:08:20.620 [error] [command][dbd5257f-938c-4103-a897-b1605a2faefb] Socket error: Error: read ECONNRESET\n2025-10-27 21:08:20.620 [info] [command][dbd5257f-938c-4103-a897-b1605a2faefb] Socket close event received\n2025-10-27 21:08:20.620 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dbd5257f-938c-4103-a897-b1605a2faefb] Socket closed without exit code\n2025-10-27 21:09:20.622 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:09:20.624 [info] [command][c4a6093a-a726-406b-8180-67d46a65db42] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c4a6093a-a726-406b-8180-67d46a65db42""}\n2025-10-27 21:09:20.625 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9b4b4605-683e-4b2b-aff7-9bf206c7b3f1] remote server not configured\n2025-10-27 21:09:20.625 [error] [command][c4a6093a-a726-406b-8180-67d46a65db42] Socket error: Error: read ECONNRESET\n2025-10-27 21:09:20.625 [info] [command][c4a6093a-a726-406b-8180-67d46a65db42] Socket close event received\n2025-10-27 21:09:20.626 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c4a6093a-a726-406b-8180-67d46a65db42] Socket closed without exit code\n2025-10-27 21:10:20.625 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:10:20.628 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8fa79dd9-a454-4e05-9dd0-cf8680ef7ca2] remote server not configured\n2025-10-27 21:10:20.628 [info] [command][717288be-4c2f-4cc6-86ae-760365ff1cc4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""717288be-4c2f-4cc6-86ae-760365ff1cc4""}\n2025-10-27 21:10:20.629 [error] [command][717288be-4c2f-4cc6-86ae-760365ff1cc4] Socket error: Error: read ECONNRESET\n2025-10-27 21:10:20.629 [info] [command][717288be-4c2f-4cc6-86ae-760365ff1cc4] Socket close event received\n2025-10-27 21:10:20.629 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][717288be-4c2f-4cc6-86ae-760365ff1cc4] Socket closed without exit code\n2025-10-27 21:11:20.639 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:11:20.641 [info] [command][1a4572f9-3999-456c-91d5-13fabb3f19b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1a4572f9-3999-456c-91d5-13fabb3f19b8""}\n2025-10-27 21:11:20.642 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][34df443c-aa5d-4109-8f02-869b4df02c95] remote server not configured\n2025-10-27 21:11:20.642 [error] [command][1a4572f9-3999-456c-91d5-13fabb3f19b8] Socket error: Error: read ECONNRESET\n2025-10-27 21:11:20.643 [info] [command][1a4572f9-3999-456c-91d5-13fabb3f19b8] Socket close event received\n2025-10-27 21:11:20.643 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1a4572f9-3999-456c-91d5-13fabb3f19b8] Socket closed without exit code\n2025-10-27 21:12:20.652 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:12:20.653 [info] [command][982255d2-a55a-420c-ba64-7580e4ffaaac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""982255d2-a55a-420c-ba64-7580e4ffaaac""}\n2025-10-27 21:12:20.654 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][23368a26-7050-424f-a3c8-0578949d3d4b] remote server not configured\n2025-10-27 21:12:20.655 [error] [command][982255d2-a55a-420c-ba64-7580e4ffaaac] Socket error: Error: read ECONNRESET\n2025-10-27 21:12:20.655 [info] [command][982255d2-a55a-420c-ba64-7580e4ffaaac] Socket close event received\n2025-10-27 21:12:20.655 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][982255d2-a55a-420c-ba64-7580e4ffaaac] Socket closed without exit code\n2025-10-27 21:13:20.656 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:13:20.658 [info] [command][c1fc1e92-78a3-4b1f-97b8-f56cd3273302] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c1fc1e92-78a3-4b1f-97b8-f56cd3273302""}\n2025-10-27 21:13:20.659 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][451c5de1-1d85-4596-afba-ac4c71388437] remote server not configured\n2025-10-27 21:13:20.660 [error] [command][c1fc1e92-78a3-4b1f-97b8-f56cd3273302] Socket error: Error: read ECONNRESET\n2025-10-27 21:13:20.660 [info] [command][c1fc1e92-78a3-4b1f-97b8-f56cd3273302] Socket close event received\n2025-10-27 21:13:20.660 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c1fc1e92-78a3-4b1f-97b8-f56cd3273302] Socket closed without exit code\n2025-10-27 21:14:20.661 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:14:20.663 [info] [command][31cd5d08-4db1-444b-b4ce-a7c8eee34c56] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""31cd5d08-4db1-444b-b4ce-a7c8eee34c56""}\n2025-10-27 21:14:20.664 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][41fb8ae1-c213-4155-89db-2e378a630ec2] remote server not configured\n2025-10-27 21:14:20.664 [error] [command][31cd5d08-4db1-444b-b4ce-a7c8eee34c56] Socket error: Error: read ECONNRESET\n2025-10-27 21:14:20.665 [info] [command][31cd5d08-4db1-444b-b4ce-a7c8eee34c56] Socket close event received\n2025-10-27 21:14:20.665 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][31cd5d08-4db1-444b-b4ce-a7c8eee34c56] Socket closed without exit code\n2025-10-27 21:15:20.674 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:15:20.675 [info] [command][26c808f9-4a3a-4dae-8eb9-79b36288701e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""26c808f9-4a3a-4dae-8eb9-79b36288701e""}\n2025-10-27 21:15:20.676 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5eeff477-16a4-4584-8ba5-58c6af4c68fd] remote server not configured\n2025-10-27 21:15:20.677 [error] [command][26c808f9-4a3a-4dae-8eb9-79b36288701e] Socket error: Error: read ECONNRESET\n2025-10-27 21:15:20.677 [info] [command][26c808f9-4a3a-4dae-8eb9-79b36288701e] Socket close event received\n2025-10-27 21:15:20.677 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][26c808f9-4a3a-4dae-8eb9-79b36288701e] Socket closed without exit code\n2025-10-27 21:16:20.687 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:16:20.689 [info] [command][a7e63f5c-3c41-4807-9cb1-bc91f57ab361] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a7e63f5c-3c41-4807-9cb1-bc91f57ab361""}\n2025-10-27 21:16:20.690 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][84903147-ff91-4abd-8a74-1417f5c5d0fa] remote server not configured\n2025-10-27 21:16:20.691 [error] [command][a7e63f5c-3c41-4807-9cb1-bc91f57ab361] Socket error: Error: read ECONNRESET\n2025-10-27 21:16:20.691 [info] [command][a7e63f5c-3c41-4807-9cb1-bc91f57ab361] Socket close event received\n2025-10-27 21:16:20.691 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a7e63f5c-3c41-4807-9cb1-bc91f57ab361] Socket closed without exit code\n2025-10-27 21:17:20.702 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:17:20.704 [info] [command][c3112c7d-d3b7-47ab-804e-0386f800d28f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c3112c7d-d3b7-47ab-804e-0386f800d28f""}\n2025-10-27 21:17:20.705 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b45597ed-3bcc-4c9f-80cb-e271e65e9ef6] remote server not configured\n2025-10-27 21:17:20.706 [error] [command][c3112c7d-d3b7-47ab-804e-0386f800d28f] Socket error: Error: read ECONNRESET\n2025-10-27 21:17:20.706 [info] [command][c3112c7d-d3b7-47ab-804e-0386f800d28f] Socket close event received\n2025-10-27 21:17:20.706 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c3112c7d-d3b7-47ab-804e-0386f800d28f] Socket closed without exit code\n2025-10-27 21:18:20.716 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:18:20.718 [info] [command][17b7e452-9cf0-4d7d-bd92-325db3df0e2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""17b7e452-9cf0-4d7d-bd92-325db3df0e2b""}\n2025-10-27 21:18:20.719 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][87855539-a278-4862-aeec-4761f4192ba1] remote server not configured\n2025-10-27 21:18:20.719 [error] [command][17b7e452-9cf0-4d7d-bd92-325db3df0e2b] Socket error: Error: read ECONNRESET\n2025-10-27 21:18:20.719 [info] [command][17b7e452-9cf0-4d7d-bd92-325db3df0e2b] Socket close event received\n2025-10-27 21:18:20.720 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][17b7e452-9cf0-4d7d-bd92-325db3df0e2b] Socket closed without exit code\n2025-10-27 21:19:20.730 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:19:20.732 [info] [command][b1855d4c-32af-4c21-89bb-da2747e2570f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b1855d4c-32af-4c21-89bb-da2747e2570f""}\n2025-10-27 21:19:20.732 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][44f3bd3d-d6c4-4890-81e9-58b6e418f800] remote server not configured\n2025-10-27 21:19:20.733 [error] [command][b1855d4c-32af-4c21-89bb-da2747e2570f] Socket error: Error: read ECONNRESET\n2025-10-27 21:19:20.733 [info] [command][b1855d4c-32af-4c21-89bb-da2747e2570f] Socket close event received\n2025-10-27 21:19:20.733 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b1855d4c-32af-4c21-89bb-da2747e2570f] Socket closed without exit code\n2025-10-27 21:20:20.742 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:20:20.744 [info] [command][b7039d8f-c9e7-4ca4-9c71-50e074ac7fa4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b7039d8f-c9e7-4ca4-9c71-50e074ac7fa4""}\n2025-10-27 21:20:20.745 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c3986717-5c8c-4408-8b68-fe1a96a25294] remote server not configured\n2025-10-27 21:20:20.746 [error] [command][b7039d8f-c9e7-4ca4-9c71-50e074ac7fa4] Socket error: Error: read ECONNRESET\n2025-10-27 21:20:20.746 [info] [command][b7039d8f-c9e7-4ca4-9c71-50e074ac7fa4] Socket close event received\n2025-10-27 21:20:20.746 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b7039d8f-c9e7-4ca4-9c71-50e074ac7fa4] Socket closed without exit code\n2025-10-27 21:21:20.746 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:21:20.748 [info] [command][c4274fc9-ba2c-4ae4-96f9-c5f8be42fd46] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c4274fc9-ba2c-4ae4-96f9-c5f8be42fd46""}\n2025-10-27 21:21:20.749 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e3d6bebe-a602-4447-b157-853d1b421db3] remote server not configured\n2025-10-27 21:21:20.749 [error] [command][c4274fc9-ba2c-4ae4-96f9-c5f8be42fd46] Socket error: Error: read ECONNRESET\n2025-10-27 21:21:20.750 [info] [command][c4274fc9-ba2c-4ae4-96f9-c5f8be42fd46] Socket close event received\n2025-10-27 21:21:20.750 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c4274fc9-ba2c-4ae4-96f9-c5f8be42fd46] Socket closed without exit code\n2025-10-27 21:22:20.753 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:22:20.756 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5602e1c1-c100-4fa4-bf87-17882ac6700f] remote server not configured\n2025-10-27 21:22:20.757 [info] [command][0a7c1264-eb93-4ac8-a4b3-ac2f35615b12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0a7c1264-eb93-4ac8-a4b3-ac2f35615b12""}\n2025-10-27 21:22:20.757 [error] [command][0a7c1264-eb93-4ac8-a4b3-ac2f35615b12] Socket error: Error: read ECONNRESET\n2025-10-27 21:22:20.757 [info] [command][0a7c1264-eb93-4ac8-a4b3-ac2f35615b12] Socket close event received\n2025-10-27 21:22:20.758 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0a7c1264-eb93-4ac8-a4b3-ac2f35615b12] Socket closed without exit code\n2025-10-27 21:23:20.767 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:23:20.769 [info] [command][a3a3d560-f5bd-40fe-a779-43cfc2ab3b8e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a3a3d560-f5bd-40fe-a779-43cfc2ab3b8e""}\n2025-10-27 21:23:20.770 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f719e529-ad50-4a53-90f3-3be4c2cb869e] remote server not configured\n2025-10-27 21:23:20.771 [error] [command][a3a3d560-f5bd-40fe-a779-43cfc2ab3b8e] Socket error: Error: read ECONNRESET\n2025-10-27 21:23:20.772 [info] [command][a3a3d560-f5bd-40fe-a779-43cfc2ab3b8e] Socket close event received\n2025-10-27 21:23:20.772 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a3a3d560-f5bd-40fe-a779-43cfc2ab3b8e] Socket closed without exit code\n2025-10-27 21:24:20.881 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:24:20.883 [info] [command][34f6258b-91fb-4ffb-a640-bf9c5971ee66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""34f6258b-91fb-4ffb-a640-bf9c5971ee66""}\n2025-10-27 21:24:20.884 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5bdd15db-0a94-490b-a302-4fe7ca442945] remote server not configured\n2025-10-27 21:24:20.885 [error] [command][34f6258b-91fb-4ffb-a640-bf9c5971ee66] Socket error: Error: read ECONNRESET\n2025-10-27 21:24:20.885 [info] [command][34f6258b-91fb-4ffb-a640-bf9c5971ee66] Socket close event received\n2025-10-27 21:24:20.885 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][34f6258b-91fb-4ffb-a640-bf9c5971ee66] Socket closed without exit code\n2025-10-27 21:25:20.896 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:25:20.897 [info] [command][06c7ca8d-889c-4137-8445-43cc5804093b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""06c7ca8d-889c-4137-8445-43cc5804093b""}\n2025-10-27 21:25:20.898 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3e98eebe-298b-444f-acc1-22b1ba8ad5ec] remote server not configured\n2025-10-27 21:25:20.899 [error] [command][06c7ca8d-889c-4137-8445-43cc5804093b] Socket error: Error: read ECONNRESET\n2025-10-27 21:25:20.899 [info] [command][06c7ca8d-889c-4137-8445-43cc5804093b] Socket close event received\n2025-10-27 21:25:20.899 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][06c7ca8d-889c-4137-8445-43cc5804093b] Socket closed without exit code\n2025-10-27 21:26:20.911 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:26:20.913 [info] [command][695cd537-8bc6-4853-8d23-d4b18962cc7b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""695cd537-8bc6-4853-8d23-d4b18962cc7b""}\n2025-10-27 21:26:20.913 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7a36f01e-5210-444e-93d9-f4965b896872] remote server not configured\n2025-10-27 21:26:20.914 [error] [command][695cd537-8bc6-4853-8d23-d4b18962cc7b] Socket error: Error: read ECONNRESET\n2025-10-27 21:26:20.914 [info] [command][695cd537-8bc6-4853-8d23-d4b18962cc7b] Socket close event received\n2025-10-27 21:26:20.915 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][695cd537-8bc6-4853-8d23-d4b18962cc7b] Socket closed without exit code\n2025-10-27 21:27:20.920 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:27:20.922 [info] [command][f3352e33-49fb-4dcd-8940-16b84bc002cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f3352e33-49fb-4dcd-8940-16b84bc002cf""}\n2025-10-27 21:27:20.923 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c5cb42a8-dc70-43c6-826a-080a6cd70ef5] remote server not configured\n2025-10-27 21:27:20.923 [error] [command][f3352e33-49fb-4dcd-8940-16b84bc002cf] Socket error: Error: read ECONNRESET\n2025-10-27 21:27:20.923 [info] [command][f3352e33-49fb-4dcd-8940-16b84bc002cf] Socket close event received\n2025-10-27 21:27:20.923 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f3352e33-49fb-4dcd-8940-16b84bc002cf] Socket closed without exit code\n2025-10-27 21:28:20.931 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:28:20.933 [info] [command][4113f9f5-d914-4b18-875e-14622f381b10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4113f9f5-d914-4b18-875e-14622f381b10""}\n2025-10-27 21:28:20.934 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][88208e20-752c-4958-938e-76d5652a4a00] remote server not configured\n2025-10-27 21:28:20.935 [error] [command][4113f9f5-d914-4b18-875e-14622f381b10] Socket error: Error: read ECONNRESET\n2025-10-27 21:28:20.935 [info] [command][4113f9f5-d914-4b18-875e-14622f381b10] Socket close event received\n2025-10-27 21:28:20.935 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4113f9f5-d914-4b18-875e-14622f381b10] Socket closed without exit code\n2025-10-27 21:29:20.947 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:29:20.949 [info] [command][fca347c7-3ee9-4273-a9ef-ce0229a0f2b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fca347c7-3ee9-4273-a9ef-ce0229a0f2b7""}\n2025-10-27 21:29:20.949 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][61638d3b-ae0b-46c7-b68c-26c27e52b6f9] remote server not configured\n2025-10-27 21:29:20.950 [error] [command][fca347c7-3ee9-4273-a9ef-ce0229a0f2b7] Socket error: Error: read ECONNRESET\n2025-10-27 21:29:20.950 [info] [command][fca347c7-3ee9-4273-a9ef-ce0229a0f2b7] Socket close event received\n2025-10-27 21:29:20.951 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fca347c7-3ee9-4273-a9ef-ce0229a0f2b7] Socket closed without exit code\n2025-10-27 21:30:20.958 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:30:20.960 [info] [command][f57a0107-8543-4e19-9801-8efb37aad40c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f57a0107-8543-4e19-9801-8efb37aad40c""}\n2025-10-27 21:30:20.961 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][50ac6c67-09c4-412f-a9b8-156121ff9f51] remote server not configured\n2025-10-27 21:30:20.961 [error] [command][f57a0107-8543-4e19-9801-8efb37aad40c] Socket error: Error: read ECONNRESET\n2025-10-27 21:30:20.961 [info] [command][f57a0107-8543-4e19-9801-8efb37aad40c] Socket close event received\n2025-10-27 21:30:20.962 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f57a0107-8543-4e19-9801-8efb37aad40c] Socket closed without exit code\n2025-10-27 21:31:20.973 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:31:20.974 [info] [command][b2df81dd-2724-4439-8dcd-b4951bbf9e83] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b2df81dd-2724-4439-8dcd-b4951bbf9e83""}\n2025-10-27 21:31:20.975 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9c065aa3-e825-40df-b22f-d79f6bbab821] remote server not configured\n2025-10-27 21:31:20.976 [error] [command][b2df81dd-2724-4439-8dcd-b4951bbf9e83] Socket error: Error: read ECONNRESET\n2025-10-27 21:31:20.976 [info] [command][b2df81dd-2724-4439-8dcd-b4951bbf9e83] Socket close event received\n2025-10-27 21:31:20.976 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b2df81dd-2724-4439-8dcd-b4951bbf9e83] Socket closed without exit code\n2025-10-27 21:32:20.987 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:32:20.989 [info] [command][9401b061-57a7-4bda-ba4d-7352ae2bdbfe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9401b061-57a7-4bda-ba4d-7352ae2bdbfe""}\n2025-10-27 21:32:20.990 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4c127f36-3296-49d8-a5fc-b51b2c489c2b] remote server not configured\n2025-10-27 21:32:20.990 [error] [command][9401b061-57a7-4bda-ba4d-7352ae2bdbfe] Socket error: Error: read ECONNRESET\n2025-10-27 21:32:20.991 [info] [command][9401b061-57a7-4bda-ba4d-7352ae2bdbfe] Socket close event received\n2025-10-27 21:32:20.991 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9401b061-57a7-4bda-ba4d-7352ae2bdbfe] Socket closed without exit code\n2025-10-27 21:33:21.002 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:33:21.004 [info] [command][3a3b0717-c940-4341-bf71-6239ae6bd4d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3a3b0717-c940-4341-bf71-6239ae6bd4d0""}\n2025-10-27 21:33:21.005 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][177a4ce0-4d4a-4819-b757-224095230937] remote server not configured\n2025-10-27 21:33:21.005 [error] [command][3a3b0717-c940-4341-bf71-6239ae6bd4d0] Socket error: Error: read ECONNRESET\n2025-10-27 21:33:21.005 [info] [command][3a3b0717-c940-4341-bf71-6239ae6bd4d0] Socket close event received\n2025-10-27 21:33:21.006 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3a3b0717-c940-4341-bf71-6239ae6bd4d0] Socket closed without exit code\n2025-10-27 21:34:21.016 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:34:21.019 [info] [command][8d5c1e11-da61-467e-81f8-727efaaa8bf4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8d5c1e11-da61-467e-81f8-727efaaa8bf4""}\n2025-10-27 21:34:21.020 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2a3591c7-f3b1-4a0e-a641-aa55bc5428db] remote server not configured\n2025-10-27 21:34:21.020 [error] [command][8d5c1e11-da61-467e-81f8-727efaaa8bf4] Socket error: Error: read ECONNRESET\n2025-10-27 21:34:21.020 [info] [command][8d5c1e11-da61-467e-81f8-727efaaa8bf4] Socket close event received\n2025-10-27 21:34:21.021 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8d5c1e11-da61-467e-81f8-727efaaa8bf4] Socket closed without exit code\n2025-10-27 21:35:21.025 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:35:21.027 [info] [command][2dae621e-0ac7-4725-a8ae-b26865a4db2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2dae621e-0ac7-4725-a8ae-b26865a4db2e""}\n2025-10-27 21:35:21.027 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][46137431-f080-4a15-9e0c-f22e30283b67] remote server not configured\n2025-10-27 21:35:21.028 [error] [command][2dae621e-0ac7-4725-a8ae-b26865a4db2e] Socket error: Error: read ECONNRESET\n2025-10-27 21:35:21.028 [info] [command][2dae621e-0ac7-4725-a8ae-b26865a4db2e] Socket close event received\n2025-10-27 21:35:21.028 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2dae621e-0ac7-4725-a8ae-b26865a4db2e] Socket closed without exit code\n2025-10-27 21:36:21.039 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:36:21.041 [info] [command][843fb70a-a424-46e2-a8bc-dd95f13f74e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""843fb70a-a424-46e2-a8bc-dd95f13f74e6""}\n2025-10-27 21:36:21.041 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2a7bb346-331f-4582-8e1b-9a2c33c5516e] remote server not configured\n2025-10-27 21:36:21.042 [error] [command][843fb70a-a424-46e2-a8bc-dd95f13f74e6] Socket error: Error: read ECONNRESET\n2025-10-27 21:36:21.042 [info] [command][843fb70a-a424-46e2-a8bc-dd95f13f74e6] Socket close event received\n2025-10-27 21:36:21.042 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][843fb70a-a424-46e2-a8bc-dd95f13f74e6] Socket closed without exit code\n2025-10-27 21:37:21.052 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:37:21.054 [info] [command][f6c13147-e154-4c3e-a4a9-204b885d9f46] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f6c13147-e154-4c3e-a4a9-204b885d9f46""}\n2025-10-27 21:37:21.055 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0b89ba58-16d5-4e17-96c2-d74ffc556192] remote server not configured\n2025-10-27 21:37:21.055 [error] [command][f6c13147-e154-4c3e-a4a9-204b885d9f46] Socket error: Error: read ECONNRESET\n2025-10-27 21:37:21.055 [info] [command][f6c13147-e154-4c3e-a4a9-204b885d9f46] Socket close event received\n2025-10-27 21:37:21.055 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f6c13147-e154-4c3e-a4a9-204b885d9f46] Socket closed without exit code\n2025-10-27 21:38:21.066 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:38:21.068 [info] [command][a268b1ba-473b-47cb-b76a-95aa4b8bbfc2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a268b1ba-473b-47cb-b76a-95aa4b8bbfc2""}\n2025-10-27 21:38:21.069 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2d99e7b7-d31f-42b6-960f-30fa99d921d6] remote server not configured\n2025-10-27 21:38:21.069 [error] [command][a268b1ba-473b-47cb-b76a-95aa4b8bbfc2] Socket error: Error: read ECONNRESET\n2025-10-27 21:38:21.070 [info] [command][a268b1ba-473b-47cb-b76a-95aa4b8bbfc2] Socket close event received\n2025-10-27 21:38:21.070 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a268b1ba-473b-47cb-b76a-95aa4b8bbfc2] Socket closed without exit code\n2025-10-27 21:39:21.081 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:39:21.083 [info] [command][bc6be195-8e5d-462f-891a-04f80175aac6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bc6be195-8e5d-462f-891a-04f80175aac6""}\n2025-10-27 21:39:21.084 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9298e72b-0e68-4391-b07e-2f85bca0c26e] remote server not configured\n2025-10-27 21:39:21.084 [error] [command][bc6be195-8e5d-462f-891a-04f80175aac6] Socket error: Error: read ECONNRESET\n2025-10-27 21:39:21.084 [info] [command][bc6be195-8e5d-462f-891a-04f80175aac6] Socket close event received\n2025-10-27 21:39:21.084 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bc6be195-8e5d-462f-891a-04f80175aac6] Socket closed without exit code\n2025-10-27 21:40:21.095 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:40:21.097 [info] [command][c98a1ef7-2dd5-457d-b40d-e8bd299d8486] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c98a1ef7-2dd5-457d-b40d-e8bd299d8486""}\n2025-10-27 21:40:21.097 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4d5a4360-aabc-41f2-970e-2998827f020e] remote server not configured\n2025-10-27 21:40:21.098 [error] [command][c98a1ef7-2dd5-457d-b40d-e8bd299d8486] Socket error: Error: read ECONNRESET\n2025-10-27 21:40:21.098 [info] [command][c98a1ef7-2dd5-457d-b40d-e8bd299d8486] Socket close event received\n2025-10-27 21:40:21.098 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c98a1ef7-2dd5-457d-b40d-e8bd299d8486] Socket closed without exit code\n2025-10-27 21:41:21.109 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:41:21.111 [info] [command][fef2484d-b014-49dd-9716-1c5fadece860] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fef2484d-b014-49dd-9716-1c5fadece860""}\n2025-10-27 21:41:21.112 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cb09f38d-8f02-439c-a098-65088000d5f9] remote server not configured\n2025-10-27 21:41:21.113 [error] [command][fef2484d-b014-49dd-9716-1c5fadece860] Socket error: Error: read ECONNRESET\n2025-10-27 21:41:21.113 [info] [command][fef2484d-b014-49dd-9716-1c5fadece860] Socket close event received\n2025-10-27 21:41:21.113 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fef2484d-b014-49dd-9716-1c5fadece860] Socket closed without exit code\n2025-10-27 21:42:21.120 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:42:21.122 [info] [command][048d3820-720f-4705-b023-e609a711d740] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""048d3820-720f-4705-b023-e609a711d740""}\n2025-10-27 21:42:21.123 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5a508925-6324-44db-934f-3c1864f13777] remote server not configured\n2025-10-27 21:42:21.123 [error] [command][048d3820-720f-4705-b023-e609a711d740] Socket error: Error: read ECONNRESET\n2025-10-27 21:42:21.124 [info] [command][048d3820-720f-4705-b023-e609a711d740] Socket close event received\n2025-10-27 21:42:21.124 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][048d3820-720f-4705-b023-e609a711d740] Socket closed without exit code\n2025-10-27 21:43:21.129 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:43:21.130 [info] [command][ac53aee0-4c3f-4cfe-967f-356dc642bec5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ac53aee0-4c3f-4cfe-967f-356dc642bec5""}\n2025-10-27 21:43:21.131 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2377f7b3-dd83-467c-b3b9-d84df01a8457] remote server not configured\n2025-10-27 21:43:21.131 [error] [command][ac53aee0-4c3f-4cfe-967f-356dc642bec5] Socket error: Error: read ECONNRESET\n2025-10-27 21:43:21.131 [info] [command][ac53aee0-4c3f-4cfe-967f-356dc642bec5] Socket close event received\n2025-10-27 21:43:21.132 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ac53aee0-4c3f-4cfe-967f-356dc642bec5] Socket closed without exit code\n2025-10-27 21:44:21.143 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:44:21.144 [info] [command][95f1ec1e-0b8a-45d4-86d9-0cbd171fdcc8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""95f1ec1e-0b8a-45d4-86d9-0cbd171fdcc8""}\n2025-10-27 21:44:21.145 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][45539bf3-b7ae-43bd-9321-49ff224a4435] remote server not configured\n2025-10-27 21:44:21.146 [error] [command][95f1ec1e-0b8a-45d4-86d9-0cbd171fdcc8] Socket error: Error: read ECONNRESET\n2025-10-27 21:44:21.146 [info] [command][95f1ec1e-0b8a-45d4-86d9-0cbd171fdcc8] Socket close event received\n2025-10-27 21:44:21.146 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][95f1ec1e-0b8a-45d4-86d9-0cbd171fdcc8] Socket closed without exit code\n2025-10-27 21:45:21.152 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:45:21.154 [info] [command][a2b069cb-589c-4b63-bbac-01bbc8145b48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a2b069cb-589c-4b63-bbac-01bbc8145b48""}\n2025-10-27 21:45:21.155 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c23482ba-a9aa-46b8-98ff-bfe4d9d8c83f] remote server not configured\n2025-10-27 21:45:21.156 [error] [command][a2b069cb-589c-4b63-bbac-01bbc8145b48] Socket error: Error: read ECONNRESET\n2025-10-27 21:45:21.156 [info] [command][a2b069cb-589c-4b63-bbac-01bbc8145b48] Socket close event received\n2025-10-27 21:45:21.156 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a2b069cb-589c-4b63-bbac-01bbc8145b48] Socket closed without exit code\n2025-10-27 21:46:21.166 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:46:21.167 [info] [command][bddaaa1e-5047-4eaf-a49c-f851fac31ae3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bddaaa1e-5047-4eaf-a49c-f851fac31ae3""}\n2025-10-27 21:46:21.168 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1ed276de-5186-4fc1-ac78-bdfe6ce92eaf] remote server not configured\n2025-10-27 21:46:21.168 [error] [command][bddaaa1e-5047-4eaf-a49c-f851fac31ae3] Socket error: Error: read ECONNRESET\n2025-10-27 21:46:21.169 [info] [command][bddaaa1e-5047-4eaf-a49c-f851fac31ae3] Socket close event received\n2025-10-27 21:46:21.169 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bddaaa1e-5047-4eaf-a49c-f851fac31ae3] Socket closed without exit code\n2025-10-27 21:47:21.179 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:47:21.181 [info] [command][c871a4d4-92ca-4896-b82e-a1ea18cf67b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c871a4d4-92ca-4896-b82e-a1ea18cf67b5""}\n2025-10-27 21:47:21.183 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f9246cb4-5e5b-43b0-8bcb-0824dbb4f71e] remote server not configured\n2025-10-27 21:47:21.184 [error] [command][c871a4d4-92ca-4896-b82e-a1ea18cf67b5] Socket error: Error: read ECONNRESET\n2025-10-27 21:47:21.185 [info] [command][c871a4d4-92ca-4896-b82e-a1ea18cf67b5] Socket close event received\n2025-10-27 21:47:21.185 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c871a4d4-92ca-4896-b82e-a1ea18cf67b5] Socket closed without exit code\n2025-10-27 21:48:21.191 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:48:21.192 [info] [command][7f410665-db5b-4dbb-9e99-22cbcabcd3d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7f410665-db5b-4dbb-9e99-22cbcabcd3d1""}\n2025-10-27 21:48:21.193 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][96ab8ab2-5619-41d3-bd6c-48f4ca001154] remote server not configured\n2025-10-27 21:48:21.193 [error] [command][7f410665-db5b-4dbb-9e99-22cbcabcd3d1] Socket error: Error: read ECONNRESET\n2025-10-27 21:48:21.193 [info] [command][7f410665-db5b-4dbb-9e99-22cbcabcd3d1] Socket close event received\n2025-10-27 21:48:21.194 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7f410665-db5b-4dbb-9e99-22cbcabcd3d1] Socket closed without exit code\n2025-10-27 21:49:21.199 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:49:21.201 [info] [command][e2d870e3-0c42-4ac7-8842-89ce664221fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e2d870e3-0c42-4ac7-8842-89ce664221fe""}\n2025-10-27 21:49:21.202 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bd50055b-41f3-4a5a-82ad-f277a56a0829] remote server not configured\n2025-10-27 21:49:21.202 [error] [command][e2d870e3-0c42-4ac7-8842-89ce664221fe] Socket error: Error: read ECONNRESET\n2025-10-27 21:49:21.203 [info] [command][e2d870e3-0c42-4ac7-8842-89ce664221fe] Socket close event received\n2025-10-27 21:49:21.203 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e2d870e3-0c42-4ac7-8842-89ce664221fe] Socket closed without exit code\n2025-10-27 21:50:21.212 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:50:21.215 [info] [command][d9e56931-e7af-4cf5-8544-257743e8af2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d9e56931-e7af-4cf5-8544-257743e8af2a""}\n2025-10-27 21:50:21.215 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b8bdf80d-4ed3-4ca5-af15-5875cbeac30a] remote server not configured\n2025-10-27 21:50:21.216 [error] [command][d9e56931-e7af-4cf5-8544-257743e8af2a] Socket error: Error: read ECONNRESET\n2025-10-27 21:50:21.216 [info] [command][d9e56931-e7af-4cf5-8544-257743e8af2a] Socket close event received\n2025-10-27 21:50:21.216 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d9e56931-e7af-4cf5-8544-257743e8af2a] Socket closed without exit code\n2025-10-27 21:51:21.226 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:51:21.228 [info] [command][31273743-c33b-47bf-8df3-19683ba28eda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""31273743-c33b-47bf-8df3-19683ba28eda""}\n2025-10-27 21:51:21.229 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][17056a19-b666-49d7-bef0-d493279e14bc] remote server not configured\n2025-10-27 21:51:21.229 [error] [command][31273743-c33b-47bf-8df3-19683ba28eda] Socket error: Error: read ECONNRESET\n2025-10-27 21:51:21.229 [info] [command][31273743-c33b-47bf-8df3-19683ba28eda] Socket close event received\n2025-10-27 21:51:21.229 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][31273743-c33b-47bf-8df3-19683ba28eda] Socket closed without exit code\n2025-10-27 21:52:21.237 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:52:21.239 [info] [command][f21a6983-a4cc-45ef-9888-4056c2070071] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f21a6983-a4cc-45ef-9888-4056c2070071""}\n2025-10-27 21:52:21.239 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0dc1fc6a-1cb7-408b-a5dd-6c5d82857e76] remote server not configured\n2025-10-27 21:52:21.240 [error] [command][f21a6983-a4cc-45ef-9888-4056c2070071] Socket error: Error: read ECONNRESET\n2025-10-27 21:52:21.240 [info] [command][f21a6983-a4cc-45ef-9888-4056c2070071] Socket close event received\n2025-10-27 21:52:21.240 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f21a6983-a4cc-45ef-9888-4056c2070071] Socket closed without exit code\n2025-10-27 21:53:21.251 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:53:21.253 [info] [command][73d73be1-45a5-42f8-a030-a6eb85e674ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""73d73be1-45a5-42f8-a030-a6eb85e674ef""}\n2025-10-27 21:53:21.254 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][67bc7baf-2932-4f5d-938a-9f36919b0b63] remote server not configured\n2025-10-27 21:53:21.254 [error] [command][73d73be1-45a5-42f8-a030-a6eb85e674ef] Socket error: Error: read ECONNRESET\n2025-10-27 21:53:21.254 [info] [command][73d73be1-45a5-42f8-a030-a6eb85e674ef] Socket close event received\n2025-10-27 21:53:21.255 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][73d73be1-45a5-42f8-a030-a6eb85e674ef] Socket closed without exit code\n2025-10-27 21:54:21.260 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:54:21.262 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3cc6c2d5-b41e-4f4e-a831-16e28e6b1f83] remote server not configured\n2025-10-27 21:54:21.264 [info] [command][1308c403-93a9-411f-aff3-cbd78331b5ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1308c403-93a9-411f-aff3-cbd78331b5ff""}\n2025-10-27 21:54:21.264 [error] [command][1308c403-93a9-411f-aff3-cbd78331b5ff] Socket error: Error: read ECONNRESET\n2025-10-27 21:54:21.265 [info] [command][1308c403-93a9-411f-aff3-cbd78331b5ff] Socket close event received\n2025-10-27 21:54:21.265 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1308c403-93a9-411f-aff3-cbd78331b5ff] Socket closed without exit code\n2025-10-27 21:55:21.276 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:55:21.277 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][02549963-7ef8-4bdf-b99f-9e2d21d54575] remote server not configured\n2025-10-27 21:55:21.278 [info] [command][94435bdb-217a-47c9-afb7-7eb0480f5861] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""94435bdb-217a-47c9-afb7-7eb0480f5861""}\n2025-10-27 21:55:21.279 [error] [command][94435bdb-217a-47c9-afb7-7eb0480f5861] Socket error: Error: read ECONNRESET\n2025-10-27 21:55:21.279 [info] [command][94435bdb-217a-47c9-afb7-7eb0480f5861] Socket close event received\n2025-10-27 21:55:21.279 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][94435bdb-217a-47c9-afb7-7eb0480f5861] Socket closed without exit code\n2025-10-27 21:56:21.290 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:56:21.292 [info] [command][82128d72-9488-466e-894c-541fd40a48b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""82128d72-9488-466e-894c-541fd40a48b0""}\n2025-10-27 21:56:21.292 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1db26576-6763-4a22-853d-31b2d36b02a4] remote server not configured\n2025-10-27 21:56:21.293 [error] [command][82128d72-9488-466e-894c-541fd40a48b0] Socket error: Error: read ECONNRESET\n2025-10-27 21:56:21.293 [info] [command][82128d72-9488-466e-894c-541fd40a48b0] Socket close event received\n2025-10-27 21:56:21.293 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][82128d72-9488-466e-894c-541fd40a48b0] Socket closed without exit code\n2025-10-27 21:57:21.294 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:57:21.296 [info] [command][c528fa32-31f9-4256-80bf-e70400266298] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c528fa32-31f9-4256-80bf-e70400266298""}\n2025-10-27 21:57:21.297 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][21f0503e-246a-4c59-93b3-74a283a55933] remote server not configured\n2025-10-27 21:57:21.298 [error] [command][c528fa32-31f9-4256-80bf-e70400266298] Socket error: Error: read ECONNRESET\n2025-10-27 21:57:21.298 [info] [command][c528fa32-31f9-4256-80bf-e70400266298] Socket close event received\n2025-10-27 21:57:21.298 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c528fa32-31f9-4256-80bf-e70400266298] Socket closed without exit code\n2025-10-27 21:58:21.303 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:58:21.305 [info] [command][ebc58975-2671-47c5-8ed2-7de10e35ac6a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ebc58975-2671-47c5-8ed2-7de10e35ac6a""}\n2025-10-27 21:58:21.305 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][840b8bd2-0635-4f2e-8ef7-dea542b77a99] remote server not configured\n2025-10-27 21:58:21.306 [error] [command][ebc58975-2671-47c5-8ed2-7de10e35ac6a] Socket error: Error: read ECONNRESET\n2025-10-27 21:58:21.306 [info] [command][ebc58975-2671-47c5-8ed2-7de10e35ac6a] Socket close event received\n2025-10-27 21:58:21.306 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ebc58975-2671-47c5-8ed2-7de10e35ac6a] Socket closed without exit code\n2025-10-27 21:59:21.317 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 21:59:21.320 [info] [command][68cb9c63-dbf5-4d25-a021-67de122cf223] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""68cb9c63-dbf5-4d25-a021-67de122cf223""}\n2025-10-27 21:59:21.320 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2863fc02-5d7a-4017-9288-5a8a2210018d] remote server not configured\n2025-10-27 21:59:21.321 [error] [command][68cb9c63-dbf5-4d25-a021-67de122cf223] Socket error: Error: read ECONNRESET\n2025-10-27 21:59:21.321 [info] [command][68cb9c63-dbf5-4d25-a021-67de122cf223] Socket close event received\n2025-10-27 21:59:21.321 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][68cb9c63-dbf5-4d25-a021-67de122cf223] Socket closed without exit code\n2025-10-27 22:00:21.324 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:00:21.326 [info] [command][f948f404-f938-49cd-875d-5f008cb8ec48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f948f404-f938-49cd-875d-5f008cb8ec48""}\n2025-10-27 22:00:21.326 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][691cae15-cbaf-425b-8a7a-9860aaa1275c] remote server not configured\n2025-10-27 22:00:21.327 [error] [command][f948f404-f938-49cd-875d-5f008cb8ec48] Socket error: Error: read ECONNRESET\n2025-10-27 22:00:21.328 [info] [command][f948f404-f938-49cd-875d-5f008cb8ec48] Socket close event received\n2025-10-27 22:00:21.328 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f948f404-f938-49cd-875d-5f008cb8ec48] Socket closed without exit code\n2025-10-27 22:01:21.333 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:01:21.335 [info] [command][96899df7-56ca-41b6-9a68-869f3c170813] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""96899df7-56ca-41b6-9a68-869f3c170813""}\n2025-10-27 22:01:21.335 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5914bc1a-f239-4c46-8e75-c06baf60e9d8] remote server not configured\n2025-10-27 22:01:21.336 [error] [command][96899df7-56ca-41b6-9a68-869f3c170813] Socket error: Error: read ECONNRESET\n2025-10-27 22:01:21.336 [info] [command][96899df7-56ca-41b6-9a68-869f3c170813] Socket close event received\n2025-10-27 22:01:21.336 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][96899df7-56ca-41b6-9a68-869f3c170813] Socket closed without exit code\n2025-10-27 22:02:21.346 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:02:21.348 [info] [command][800a2074-a4b0-4e8f-9c0e-0cd1d43f2bb2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""800a2074-a4b0-4e8f-9c0e-0cd1d43f2bb2""}\n2025-10-27 22:02:21.348 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7b0b7cf7-6b3f-4ae9-952b-473270e07590] remote server not configured\n2025-10-27 22:02:21.349 [error] [command][800a2074-a4b0-4e8f-9c0e-0cd1d43f2bb2] Socket error: Error: read ECONNRESET\n2025-10-27 22:02:21.349 [info] [command][800a2074-a4b0-4e8f-9c0e-0cd1d43f2bb2] Socket close event received\n2025-10-27 22:02:21.349 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][800a2074-a4b0-4e8f-9c0e-0cd1d43f2bb2] Socket closed without exit code\n2025-10-27 22:03:21.360 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:03:21.362 [info] [command][1404e048-f232-4edf-a4ef-8cd5976d25e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1404e048-f232-4edf-a4ef-8cd5976d25e0""}\n2025-10-27 22:03:21.363 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0c1f5ff3-7053-4afd-88a4-d91c99ac1c48] remote server not configured\n2025-10-27 22:03:21.363 [error] [command][1404e048-f232-4edf-a4ef-8cd5976d25e0] Socket error: Error: read ECONNRESET\n2025-10-27 22:03:21.364 [info] [command][1404e048-f232-4edf-a4ef-8cd5976d25e0] Socket close event received\n2025-10-27 22:03:21.364 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1404e048-f232-4edf-a4ef-8cd5976d25e0] Socket closed without exit code\n2025-10-27 22:04:21.375 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:04:21.376 [info] [command][0f2328f4-0826-49d6-96a7-bdcb28bfd4df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0f2328f4-0826-49d6-96a7-bdcb28bfd4df""}\n2025-10-27 22:04:21.376 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3556ac01-e4e2-4f89-a8cb-71e0a58b9353] remote server not configured\n2025-10-27 22:04:21.377 [error] [command][0f2328f4-0826-49d6-96a7-bdcb28bfd4df] Socket error: Error: read ECONNRESET\n2025-10-27 22:04:21.377 [info] [command][0f2328f4-0826-49d6-96a7-bdcb28bfd4df] Socket close event received\n2025-10-27 22:04:21.377 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0f2328f4-0826-49d6-96a7-bdcb28bfd4df] Socket closed without exit code\n2025-10-27 22:05:21.388 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:05:21.389 [info] [command][ee10deb0-2974-4353-8661-0cffebfa0e41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ee10deb0-2974-4353-8661-0cffebfa0e41""}\n2025-10-27 22:05:21.390 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][74168bef-0b70-4a53-ac4f-7b30b2b229f8] remote server not configured\n2025-10-27 22:05:21.391 [error] [command][ee10deb0-2974-4353-8661-0cffebfa0e41] Socket error: Error: read ECONNRESET\n2025-10-27 22:05:21.391 [info] [command][ee10deb0-2974-4353-8661-0cffebfa0e41] Socket close event received\n2025-10-27 22:05:21.391 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ee10deb0-2974-4353-8661-0cffebfa0e41] Socket closed without exit code\n2025-10-27 22:06:21.402 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:06:21.404 [info] [command][48ddeaf1-2518-4c3b-b833-bbbb06bf9b73] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""48ddeaf1-2518-4c3b-b833-bbbb06bf9b73""}\n2025-10-27 22:06:21.405 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4b7beb60-76ee-4db0-a2b0-d5e881f6f9d1] remote server not configured\n2025-10-27 22:06:21.405 [error] [command][48ddeaf1-2518-4c3b-b833-bbbb06bf9b73] Socket error: Error: read ECONNRESET\n2025-10-27 22:06:21.406 [info] [command][48ddeaf1-2518-4c3b-b833-bbbb06bf9b73] Socket close event received\n2025-10-27 22:06:21.406 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][48ddeaf1-2518-4c3b-b833-bbbb06bf9b73] Socket closed without exit code\n2025-10-27 22:07:21.408 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:07:21.410 [info] [command][cddb4dcc-7834-42d6-887d-eba6bdb73d44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cddb4dcc-7834-42d6-887d-eba6bdb73d44""}\n2025-10-27 22:07:21.411 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][07ce269b-2393-437c-8965-78a298f427f9] remote server not configured\n2025-10-27 22:07:21.411 [error] [command][cddb4dcc-7834-42d6-887d-eba6bdb73d44] Socket error: Error: read ECONNRESET\n2025-10-27 22:07:21.411 [info] [command][cddb4dcc-7834-42d6-887d-eba6bdb73d44] Socket close event received\n2025-10-27 22:07:21.412 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cddb4dcc-7834-42d6-887d-eba6bdb73d44] Socket closed without exit code\n2025-10-27 22:08:21.414 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:08:21.417 [info] [command][beb7bf6e-1568-4ada-a2de-7b6c77ff12fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""beb7bf6e-1568-4ada-a2de-7b6c77ff12fd""}\n2025-10-27 22:08:21.417 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f03356f7-4466-4525-ac59-566bf517c0b9] remote server not configured\n2025-10-27 22:08:21.418 [error] [command][beb7bf6e-1568-4ada-a2de-7b6c77ff12fd] Socket error: Error: read ECONNRESET\n2025-10-27 22:08:21.418 [info] [command][beb7bf6e-1568-4ada-a2de-7b6c77ff12fd] Socket close event received\n2025-10-27 22:08:21.418 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][beb7bf6e-1568-4ada-a2de-7b6c77ff12fd] Socket closed without exit code\n2025-10-27 22:09:21.429 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:09:21.431 [info] [command][d80d5280-1150-4194-a448-7032a3f1a3f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d80d5280-1150-4194-a448-7032a3f1a3f0""}\n2025-10-27 22:09:21.431 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][33577dcf-95e9-480c-8b71-4f275cf9349e] remote server not configured\n2025-10-27 22:09:21.432 [error] [command][d80d5280-1150-4194-a448-7032a3f1a3f0] Socket error: Error: read ECONNRESET\n2025-10-27 22:09:21.432 [info] [command][d80d5280-1150-4194-a448-7032a3f1a3f0] Socket close event received\n2025-10-27 22:09:21.432 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d80d5280-1150-4194-a448-7032a3f1a3f0] Socket closed without exit code\n2025-10-27 22:10:21.443 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:10:21.446 [info] [command][c533bd6a-654d-4a35-8c66-41574a5e1d11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c533bd6a-654d-4a35-8c66-41574a5e1d11""}\n2025-10-27 22:10:21.447 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7b4eccc2-a693-4005-a533-24b7ef2b82bf] remote server not configured\n2025-10-27 22:10:21.447 [error] [command][c533bd6a-654d-4a35-8c66-41574a5e1d11] Socket error: Error: read ECONNRESET\n2025-10-27 22:10:21.447 [info] [command][c533bd6a-654d-4a35-8c66-41574a5e1d11] Socket close event received\n2025-10-27 22:10:21.447 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c533bd6a-654d-4a35-8c66-41574a5e1d11] Socket closed without exit code\n2025-10-27 22:11:21.459 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:11:21.461 [info] [command][625363e8-1d7d-434a-8fc4-adcdc42db557] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""625363e8-1d7d-434a-8fc4-adcdc42db557""}\n2025-10-27 22:11:21.461 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][50b90785-a08d-454b-95c2-94a16150292d] remote server not configured\n2025-10-27 22:11:21.462 [error] [command][625363e8-1d7d-434a-8fc4-adcdc42db557] Socket error: Error: read ECONNRESET\n2025-10-27 22:11:21.462 [info] [command][625363e8-1d7d-434a-8fc4-adcdc42db557] Socket close event received\n2025-10-27 22:11:21.463 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][625363e8-1d7d-434a-8fc4-adcdc42db557] Socket closed without exit code\n2025-10-27 22:12:21.467 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:12:21.468 [info] [command][003630b1-1dc5-4e7d-8ec4-9ac8ec6fcda1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""003630b1-1dc5-4e7d-8ec4-9ac8ec6fcda1""}\n2025-10-27 22:12:21.469 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4fba7ae5-7792-43b9-8b50-7a2f1b0f9267] remote server not configured\n2025-10-27 22:12:21.470 [error] [command][003630b1-1dc5-4e7d-8ec4-9ac8ec6fcda1] Socket error: Error: read ECONNRESET\n2025-10-27 22:12:21.470 [info] [command][003630b1-1dc5-4e7d-8ec4-9ac8ec6fcda1] Socket close event received\n2025-10-27 22:12:21.470 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][003630b1-1dc5-4e7d-8ec4-9ac8ec6fcda1] Socket closed without exit code\n2025-10-27 22:13:21.481 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:13:21.483 [info] [command][69d11f33-89ba-4246-a766-d7f4151810d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""69d11f33-89ba-4246-a766-d7f4151810d7""}\n2025-10-27 22:13:21.484 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d818c7cd-00c6-4a51-b768-e67a2ce31918] remote server not configured\n2025-10-27 22:13:21.484 [error] [command][69d11f33-89ba-4246-a766-d7f4151810d7] Socket error: Error: read ECONNRESET\n2025-10-27 22:13:21.485 [info] [command][69d11f33-89ba-4246-a766-d7f4151810d7] Socket close event received\n2025-10-27 22:13:21.485 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][69d11f33-89ba-4246-a766-d7f4151810d7] Socket closed without exit code\n2025-10-27 22:14:21.496 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:14:21.497 [info] [command][4f4b2ad8-49ec-4704-8795-01d09a5c2efb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4f4b2ad8-49ec-4704-8795-01d09a5c2efb""}\n2025-10-27 22:14:21.498 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][50490825-8158-448d-af6f-b9af1a4020a6] remote server not configured\n2025-10-27 22:14:21.499 [error] [command][4f4b2ad8-49ec-4704-8795-01d09a5c2efb] Socket error: Error: read ECONNRESET\n2025-10-27 22:14:21.499 [info] [command][4f4b2ad8-49ec-4704-8795-01d09a5c2efb] Socket close event received\n2025-10-27 22:14:21.499 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4f4b2ad8-49ec-4704-8795-01d09a5c2efb] Socket closed without exit code\n2025-10-27 22:15:21.510 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:15:21.511 [info] [command][66577207-daab-4852-a710-8deab73dcf85] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""66577207-daab-4852-a710-8deab73dcf85""}\n2025-10-27 22:15:21.512 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a411d6ff-f989-4caf-8117-62a45f11ef82] remote server not configured\n2025-10-27 22:15:21.513 [error] [command][66577207-daab-4852-a710-8deab73dcf85] Socket error: Error: read ECONNRESET\n2025-10-27 22:15:21.513 [info] [command][66577207-daab-4852-a710-8deab73dcf85] Socket close event received\n2025-10-27 22:15:21.513 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][66577207-daab-4852-a710-8deab73dcf85] Socket closed without exit code\n2025-10-27 22:16:21.523 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:16:21.524 [info] [command][e7d91845-e717-46f7-b36e-01d791d14eaf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e7d91845-e717-46f7-b36e-01d791d14eaf""}\n2025-10-27 22:16:21.524 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7ab5a096-f25c-4824-a6f7-d1990313e098] remote server not configured\n2025-10-27 22:16:21.524 [error] [command][e7d91845-e717-46f7-b36e-01d791d14eaf] Socket error: Error: read ECONNRESET\n2025-10-27 22:16:21.524 [info] [command][e7d91845-e717-46f7-b36e-01d791d14eaf] Socket close event received\n2025-10-27 22:16:21.525 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e7d91845-e717-46f7-b36e-01d791d14eaf] Socket closed without exit code\n2025-10-27 22:17:21.527 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:17:21.529 [info] [command][b14dc5a3-1333-407c-9f9b-cf3a9f74d2c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b14dc5a3-1333-407c-9f9b-cf3a9f74d2c6""}\n2025-10-27 22:17:21.530 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1f230d6f-5fae-41b0-9a96-38699a7fa62c] remote server not configured\n2025-10-27 22:17:21.531 [error] [command][b14dc5a3-1333-407c-9f9b-cf3a9f74d2c6] Socket error: Error: read ECONNRESET\n2025-10-27 22:17:21.531 [info] [command][b14dc5a3-1333-407c-9f9b-cf3a9f74d2c6] Socket close event received\n2025-10-27 22:17:21.531 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b14dc5a3-1333-407c-9f9b-cf3a9f74d2c6] Socket closed without exit code\n2025-10-27 22:18:21.542 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:18:21.544 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1fe37fc9-d999-4ad3-ace6-95c6f6486c08] remote server not configured\n2025-10-27 22:18:21.545 [info] [command][8693d5eb-06ab-4eda-bec8-f4c45601030c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8693d5eb-06ab-4eda-bec8-f4c45601030c""}\n2025-10-27 22:18:21.545 [error] [command][8693d5eb-06ab-4eda-bec8-f4c45601030c] Socket error: Error: read ECONNRESET\n2025-10-27 22:18:21.545 [info] [command][8693d5eb-06ab-4eda-bec8-f4c45601030c] Socket close event received\n2025-10-27 22:18:21.546 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8693d5eb-06ab-4eda-bec8-f4c45601030c] Socket closed without exit code\n2025-10-27 22:19:21.557 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:19:21.559 [info] [command][84cd7784-200e-47f0-8abf-d724373df008] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""84cd7784-200e-47f0-8abf-d724373df008""}\n2025-10-27 22:19:21.560 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8b1433ee-11e1-421c-b235-5ae88ddde7c8] remote server not configured\n2025-10-27 22:19:21.560 [error] [command][84cd7784-200e-47f0-8abf-d724373df008] Socket error: Error: read ECONNRESET\n2025-10-27 22:19:21.561 [info] [command][84cd7784-200e-47f0-8abf-d724373df008] Socket close event received\n2025-10-27 22:19:21.561 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][84cd7784-200e-47f0-8abf-d724373df008] Socket closed without exit code\n2025-10-27 22:20:21.565 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:20:21.567 [info] [command][d39b50a6-9631-41f7-b1d0-c05d4f707f7c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d39b50a6-9631-41f7-b1d0-c05d4f707f7c""}\n2025-10-27 22:20:21.568 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][16915a53-9349-4cad-93ee-07a208753a08] remote server not configured\n2025-10-27 22:20:21.569 [error] [command][d39b50a6-9631-41f7-b1d0-c05d4f707f7c] Socket error: Error: read ECONNRESET\n2025-10-27 22:20:21.569 [info] [command][d39b50a6-9631-41f7-b1d0-c05d4f707f7c] Socket close event received\n2025-10-27 22:20:21.569 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d39b50a6-9631-41f7-b1d0-c05d4f707f7c] Socket closed without exit code\n2025-10-27 22:21:21.580 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:21:21.583 [info] [command][fe5c6b8b-bb91-4468-af4d-429297787249] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fe5c6b8b-bb91-4468-af4d-429297787249""}\n2025-10-27 22:21:21.583 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c02e8c2f-84c1-4875-a54d-b4bd3fa4fca8] remote server not configured\n2025-10-27 22:21:21.584 [error] [command][fe5c6b8b-bb91-4468-af4d-429297787249] Socket error: Error: read ECONNRESET\n2025-10-27 22:21:21.584 [info] [command][fe5c6b8b-bb91-4468-af4d-429297787249] Socket close event received\n2025-10-27 22:21:21.584 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fe5c6b8b-bb91-4468-af4d-429297787249] Socket closed without exit code\n2025-10-27 22:22:21.594 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:22:21.596 [info] [command][bd6cb826-3145-42c3-b486-9a8f24888ad4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bd6cb826-3145-42c3-b486-9a8f24888ad4""}\n2025-10-27 22:22:21.597 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c843644b-5de5-48a3-9ed8-14da4480658e] remote server not configured\n2025-10-27 22:22:21.597 [error] [command][bd6cb826-3145-42c3-b486-9a8f24888ad4] Socket error: Error: read ECONNRESET\n2025-10-27 22:22:21.597 [info] [command][bd6cb826-3145-42c3-b486-9a8f24888ad4] Socket close event received\n2025-10-27 22:22:21.598 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bd6cb826-3145-42c3-b486-9a8f24888ad4] Socket closed without exit code\n2025-10-27 22:23:21.607 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:23:21.608 [info] [command][440ed2db-3694-4bf2-80c3-e9d4f9235a37] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""440ed2db-3694-4bf2-80c3-e9d4f9235a37""}\n2025-10-27 22:23:21.609 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bf90a5c7-5c88-422a-9c99-1768e903bcad] remote server not configured\n2025-10-27 22:23:21.610 [error] [command][440ed2db-3694-4bf2-80c3-e9d4f9235a37] Socket error: Error: read ECONNRESET\n2025-10-27 22:23:21.610 [info] [command][440ed2db-3694-4bf2-80c3-e9d4f9235a37] Socket close event received\n2025-10-27 22:23:21.610 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][440ed2db-3694-4bf2-80c3-e9d4f9235a37] Socket closed without exit code\n2025-10-27 22:24:21.621 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:24:21.623 [info] [command][afd2805d-a40e-4fbe-a904-9dc2f58f2c52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""afd2805d-a40e-4fbe-a904-9dc2f58f2c52""}\n2025-10-27 22:24:21.623 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4f376190-6075-42c1-ad99-1e91280064dd] remote server not configured\n2025-10-27 22:24:21.624 [error] [command][afd2805d-a40e-4fbe-a904-9dc2f58f2c52] Socket error: Error: read ECONNRESET\n2025-10-27 22:24:21.624 [info] [command][afd2805d-a40e-4fbe-a904-9dc2f58f2c52] Socket close event received\n2025-10-27 22:24:21.625 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][afd2805d-a40e-4fbe-a904-9dc2f58f2c52] Socket closed without exit code\n2025-10-27 22:25:21.631 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:25:21.633 [info] [command][19eea688-3a6b-411e-954d-15c3a1be035c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""19eea688-3a6b-411e-954d-15c3a1be035c""}\n2025-10-27 22:25:21.633 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d6d5905e-5588-42aa-8611-98075b93b6fd] remote server not configured\n2025-10-27 22:25:21.634 [error] [command][19eea688-3a6b-411e-954d-15c3a1be035c] Socket error: Error: read ECONNRESET\n2025-10-27 22:25:21.634 [info] [command][19eea688-3a6b-411e-954d-15c3a1be035c] Socket close event received\n2025-10-27 22:25:21.635 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][19eea688-3a6b-411e-954d-15c3a1be035c] Socket closed without exit code\n2025-10-27 22:26:21.645 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:26:21.647 [info] [command][1cce3104-d3ff-4296-b50c-3491c72c6392] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1cce3104-d3ff-4296-b50c-3491c72c6392""}\n2025-10-27 22:26:21.648 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8e3c43bd-9d8b-4f30-bdc0-cc576d3ca48d] remote server not configured\n2025-10-27 22:26:21.648 [error] [command][1cce3104-d3ff-4296-b50c-3491c72c6392] Socket error: Error: read ECONNRESET\n2025-10-27 22:26:21.648 [info] [command][1cce3104-d3ff-4296-b50c-3491c72c6392] Socket close event received\n2025-10-27 22:26:21.649 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1cce3104-d3ff-4296-b50c-3491c72c6392] Socket closed without exit code\n2025-10-27 22:27:21.660 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:27:21.661 [info] [command][2e92ad35-71d8-4516-aaca-f2d3cd305348] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2e92ad35-71d8-4516-aaca-f2d3cd305348""}\n2025-10-27 22:27:21.662 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][56daa63f-b011-4b96-bee3-3b2f283a074a] remote server not configured\n2025-10-27 22:27:21.663 [error] [command][2e92ad35-71d8-4516-aaca-f2d3cd305348] Socket error: Error: read ECONNRESET\n2025-10-27 22:27:21.663 [info] [command][2e92ad35-71d8-4516-aaca-f2d3cd305348] Socket close event received\n2025-10-27 22:27:21.663 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2e92ad35-71d8-4516-aaca-f2d3cd305348] Socket closed without exit code\n2025-10-27 22:28:21.673 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:28:21.675 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3a468a07-0cde-4e67-90f8-e59510c10ee2] remote server not configured\n2025-10-27 22:28:21.675 [info] [command][9efaf89d-d117-4e99-9448-888a81fc82f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9efaf89d-d117-4e99-9448-888a81fc82f7""}\n2025-10-27 22:28:21.676 [error] [command][9efaf89d-d117-4e99-9448-888a81fc82f7] Socket error: Error: read ECONNRESET\n2025-10-27 22:28:21.676 [info] [command][9efaf89d-d117-4e99-9448-888a81fc82f7] Socket close event received\n2025-10-27 22:28:21.676 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9efaf89d-d117-4e99-9448-888a81fc82f7] Socket closed without exit code\n2025-10-27 22:29:21.678 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:29:21.681 [info] [command][cf3b4cf6-779e-4e01-8d07-3f0deafb4081] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cf3b4cf6-779e-4e01-8d07-3f0deafb4081""}\n2025-10-27 22:29:21.682 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][101528f9-ec9e-4296-9bdf-4488d9a40154] remote server not configured\n2025-10-27 22:29:21.682 [error] [command][cf3b4cf6-779e-4e01-8d07-3f0deafb4081] Socket error: Error: read ECONNRESET\n2025-10-27 22:29:21.683 [info] [command][cf3b4cf6-779e-4e01-8d07-3f0deafb4081] Socket close event received\n2025-10-27 22:29:21.683 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cf3b4cf6-779e-4e01-8d07-3f0deafb4081] Socket closed without exit code\n2025-10-27 22:30:21.694 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:30:21.696 [info] [command][61ddcb1d-5bd3-4f71-9a56-256e863e7391] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""61ddcb1d-5bd3-4f71-9a56-256e863e7391""}\n2025-10-27 22:30:21.698 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][296add78-3ddc-44d9-84b0-ca5485f254d1] remote server not configured\n2025-10-27 22:30:21.698 [error] [command][61ddcb1d-5bd3-4f71-9a56-256e863e7391] Socket error: Error: read ECONNRESET\n2025-10-27 22:30:21.698 [info] [command][61ddcb1d-5bd3-4f71-9a56-256e863e7391] Socket close event received\n2025-10-27 22:30:21.698 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][61ddcb1d-5bd3-4f71-9a56-256e863e7391] Socket closed without exit code\n2025-10-27 22:31:21.701 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:31:21.703 [info] [command][88d85882-3176-48d3-b45f-40ae65d26ba7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""88d85882-3176-48d3-b45f-40ae65d26ba7""}\n2025-10-27 22:31:21.703 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0ce434cf-c491-4f71-96d2-1da5f5f2c803] remote server not configured\n2025-10-27 22:31:21.704 [error] [command][88d85882-3176-48d3-b45f-40ae65d26ba7] Socket error: Error: read ECONNRESET\n2025-10-27 22:31:21.704 [info] [command][88d85882-3176-48d3-b45f-40ae65d26ba7] Socket close event received\n2025-10-27 22:31:21.704 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][88d85882-3176-48d3-b45f-40ae65d26ba7] Socket closed without exit code\n2025-10-27 22:32:21.690 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:32:21.692 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ef31a44a-b2f0-4c48-a65a-abbbd647cbde] remote server not configured\n2025-10-27 22:32:21.693 [info] [command][e313d803-0710-4425-910c-57f0663a2176] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e313d803-0710-4425-910c-57f0663a2176""}\n2025-10-27 22:32:21.694 [error] [command][e313d803-0710-4425-910c-57f0663a2176] Socket error: Error: read ECONNRESET\n2025-10-27 22:32:21.694 [info] [command][e313d803-0710-4425-910c-57f0663a2176] Socket close event received\n2025-10-27 22:32:21.694 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e313d803-0710-4425-910c-57f0663a2176] Socket closed without exit code\n2025-10-27 22:33:21.701 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:33:21.702 [info] [command][ef3a470e-3ba9-4b2a-a72e-d8f25cb996ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ef3a470e-3ba9-4b2a-a72e-d8f25cb996ce""}\n2025-10-27 22:33:21.703 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][842f4f97-4962-4dfb-8a45-11e02a4eba90] remote server not configured\n2025-10-27 22:33:21.704 [error] [command][ef3a470e-3ba9-4b2a-a72e-d8f25cb996ce] Socket error: Error: read ECONNRESET\n2025-10-27 22:33:21.704 [info] [command][ef3a470e-3ba9-4b2a-a72e-d8f25cb996ce] Socket close event received\n2025-10-27 22:33:21.704 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ef3a470e-3ba9-4b2a-a72e-d8f25cb996ce] Socket closed without exit code\n2025-10-27 22:34:21.711 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:34:21.713 [info] [command][3805ab23-3571-4d0b-bee5-79c84fdfc3fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3805ab23-3571-4d0b-bee5-79c84fdfc3fd""}\n2025-10-27 22:34:21.713 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d69939f5-6d42-434e-832c-047f08fe8eac] remote server not configured\n2025-10-27 22:34:21.714 [error] [command][3805ab23-3571-4d0b-bee5-79c84fdfc3fd] Socket error: Error: read ECONNRESET\n2025-10-27 22:34:21.714 [info] [command][3805ab23-3571-4d0b-bee5-79c84fdfc3fd] Socket close event received\n2025-10-27 22:34:21.714 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3805ab23-3571-4d0b-bee5-79c84fdfc3fd] Socket closed without exit code\n2025-10-27 22:35:21.725 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:35:21.727 [info] [command][25b4ec90-64d4-471b-a59f-ffc57f2eed4b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""25b4ec90-64d4-471b-a59f-ffc57f2eed4b""}\n2025-10-27 22:35:21.728 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][667fa6ca-da89-47f8-8b2a-afdcef71a918] remote server not configured\n2025-10-27 22:35:21.729 [error] [command][25b4ec90-64d4-471b-a59f-ffc57f2eed4b] Socket error: Error: read ECONNRESET\n2025-10-27 22:35:21.729 [info] [command][25b4ec90-64d4-471b-a59f-ffc57f2eed4b] Socket close event received\n2025-10-27 22:35:21.729 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][25b4ec90-64d4-471b-a59f-ffc57f2eed4b] Socket closed without exit code\n2025-10-27 22:36:21.739 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:36:21.741 [info] [command][c237076a-e0b8-4d9e-81fe-32ef502aa5cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c237076a-e0b8-4d9e-81fe-32ef502aa5cd""}\n2025-10-27 22:36:21.742 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2e46c9f4-029f-438a-b63e-7cd9ebcf9d1f] remote server not configured\n2025-10-27 22:36:21.742 [error] [command][c237076a-e0b8-4d9e-81fe-32ef502aa5cd] Socket error: Error: read ECONNRESET\n2025-10-27 22:36:21.743 [info] [command][c237076a-e0b8-4d9e-81fe-32ef502aa5cd] Socket close event received\n2025-10-27 22:36:21.743 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c237076a-e0b8-4d9e-81fe-32ef502aa5cd] Socket closed without exit code\n2025-10-27 22:37:21.751 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:37:21.753 [info] [command][db0d9da1-150a-48f4-b3f9-a57b30dd423a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""db0d9da1-150a-48f4-b3f9-a57b30dd423a""}\n2025-10-27 22:37:21.754 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][67d6ca1a-3e42-455b-81f5-510f9ce85ceb] remote server not configured\n2025-10-27 22:37:21.754 [error] [command][db0d9da1-150a-48f4-b3f9-a57b30dd423a] Socket error: Error: read ECONNRESET\n2025-10-27 22:37:21.754 [info] [command][db0d9da1-150a-48f4-b3f9-a57b30dd423a] Socket close event received\n2025-10-27 22:37:21.755 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][db0d9da1-150a-48f4-b3f9-a57b30dd423a] Socket closed without exit code\n2025-10-27 22:38:21.755 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:38:21.757 [info] [command][17b16ffc-2391-42e2-b1be-11819f4b8b60] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""17b16ffc-2391-42e2-b1be-11819f4b8b60""}\n2025-10-27 22:38:21.758 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][774b3161-0b7f-4887-b0bb-fbe88626b031] remote server not configured\n2025-10-27 22:38:21.758 [error] [command][17b16ffc-2391-42e2-b1be-11819f4b8b60] Socket error: Error: read ECONNRESET\n2025-10-27 22:38:21.758 [info] [command][17b16ffc-2391-42e2-b1be-11819f4b8b60] Socket close event received\n2025-10-27 22:38:21.759 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][17b16ffc-2391-42e2-b1be-11819f4b8b60] Socket closed without exit code\n2025-10-27 22:39:21.763 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:39:21.765 [info] [command][b2c59f2a-9ca5-445c-b6d5-ff8b1a8712fc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b2c59f2a-9ca5-445c-b6d5-ff8b1a8712fc""}\n2025-10-27 22:39:21.766 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][21bbd3c6-6508-42e9-a9e1-6821259d3289] remote server not configured\n2025-10-27 22:39:21.767 [error] [command][b2c59f2a-9ca5-445c-b6d5-ff8b1a8712fc] Socket error: Error: read ECONNRESET\n2025-10-27 22:39:21.767 [info] [command][b2c59f2a-9ca5-445c-b6d5-ff8b1a8712fc] Socket close event received\n2025-10-27 22:39:21.767 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b2c59f2a-9ca5-445c-b6d5-ff8b1a8712fc] Socket closed without exit code\n2025-10-27 22:40:21.777 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:40:21.778 [info] [command][943d4c21-4942-42bc-9269-040b15bfe33e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""943d4c21-4942-42bc-9269-040b15bfe33e""}\n2025-10-27 22:40:21.779 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][afe76e16-487e-446f-a75a-b0aa058f9e93] remote server not configured\n2025-10-27 22:40:21.780 [error] [command][943d4c21-4942-42bc-9269-040b15bfe33e] Socket error: Error: read ECONNRESET\n2025-10-27 22:40:21.780 [info] [command][943d4c21-4942-42bc-9269-040b15bfe33e] Socket close event received\n2025-10-27 22:40:21.780 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][943d4c21-4942-42bc-9269-040b15bfe33e] Socket closed without exit code\n2025-10-27 22:41:21.791 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:41:21.793 [info] [command][8eb2885c-5694-4d66-9fc1-011aebde2a1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8eb2885c-5694-4d66-9fc1-011aebde2a1e""}\n2025-10-27 22:41:21.794 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][adfa477d-c554-4a39-a805-12c578128f43] remote server not configured\n2025-10-27 22:41:21.794 [error] [command][8eb2885c-5694-4d66-9fc1-011aebde2a1e] Socket error: Error: read ECONNRESET\n2025-10-27 22:41:21.795 [info] [command][8eb2885c-5694-4d66-9fc1-011aebde2a1e] Socket close event received\n2025-10-27 22:41:21.795 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8eb2885c-5694-4d66-9fc1-011aebde2a1e] Socket closed without exit code\n2025-10-27 22:42:21.806 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:42:21.808 [info] [command][48241c2b-4c86-486c-960f-f3ac250eb738] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""48241c2b-4c86-486c-960f-f3ac250eb738""}\n2025-10-27 22:42:21.808 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cf098983-fe44-490b-920b-973ec4b2512b] remote server not configured\n2025-10-27 22:42:21.809 [error] [command][48241c2b-4c86-486c-960f-f3ac250eb738] Socket error: Error: read ECONNRESET\n2025-10-27 22:42:21.809 [info] [command][48241c2b-4c86-486c-960f-f3ac250eb738] Socket close event received\n2025-10-27 22:42:21.809 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][48241c2b-4c86-486c-960f-f3ac250eb738] Socket closed without exit code\n2025-10-27 22:43:21.810 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:43:21.812 [info] [command][68b82906-f06a-496a-8983-3204ab28fcf5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""68b82906-f06a-496a-8983-3204ab28fcf5""}\n2025-10-27 22:43:21.812 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e36a1c22-6b75-4cbb-aa9c-a37a66679649] remote server not configured\n2025-10-27 22:43:21.813 [error] [command][68b82906-f06a-496a-8983-3204ab28fcf5] Socket error: Error: read ECONNRESET\n2025-10-27 22:43:21.813 [info] [command][68b82906-f06a-496a-8983-3204ab28fcf5] Socket close event received\n2025-10-27 22:43:21.813 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][68b82906-f06a-496a-8983-3204ab28fcf5] Socket closed without exit code\n2025-10-27 22:44:21.823 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:44:21.826 [info] [command][41d52996-5923-4d59-bc62-4a3ad5743342] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""41d52996-5923-4d59-bc62-4a3ad5743342""}\n2025-10-27 22:44:21.827 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][56576efb-462a-4353-8e65-00bbaa73665d] remote server not configured\n2025-10-27 22:44:21.827 [error] [command][41d52996-5923-4d59-bc62-4a3ad5743342] Socket error: Error: read ECONNRESET\n2025-10-27 22:44:21.827 [info] [command][41d52996-5923-4d59-bc62-4a3ad5743342] Socket close event received\n2025-10-27 22:44:21.827 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][41d52996-5923-4d59-bc62-4a3ad5743342] Socket closed without exit code\n2025-10-27 22:45:21.838 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:45:21.840 [info] [command][5cbcd679-fae0-4559-85ef-076b9ee60e4e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5cbcd679-fae0-4559-85ef-076b9ee60e4e""}\n2025-10-27 22:45:21.841 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f83fb31c-860e-4724-975b-76793f5c50ea] remote server not configured\n2025-10-27 22:45:21.842 [error] [command][5cbcd679-fae0-4559-85ef-076b9ee60e4e] Socket error: Error: read ECONNRESET\n2025-10-27 22:45:21.842 [info] [command][5cbcd679-fae0-4559-85ef-076b9ee60e4e] Socket close event received\n2025-10-27 22:45:21.842 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5cbcd679-fae0-4559-85ef-076b9ee60e4e] Socket closed without exit code\n2025-10-27 22:46:21.846 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:46:21.848 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][13b07d83-4665-4937-bec9-cec345b14f87] remote server not configured\n2025-10-27 22:46:21.849 [info] [command][82b1ed84-ee96-4212-9995-70d2e5f5c606] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""82b1ed84-ee96-4212-9995-70d2e5f5c606""}\n2025-10-27 22:46:21.849 [error] [command][82b1ed84-ee96-4212-9995-70d2e5f5c606] Socket error: Error: read ECONNRESET\n2025-10-27 22:46:21.850 [info] [command][82b1ed84-ee96-4212-9995-70d2e5f5c606] Socket close event received\n2025-10-27 22:46:21.850 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][82b1ed84-ee96-4212-9995-70d2e5f5c606] Socket closed without exit code\n2025-10-27 22:47:21.850 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:47:21.852 [info] [command][54499aff-b7a1-4562-80df-db7c017364bc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""54499aff-b7a1-4562-80df-db7c017364bc""}\n2025-10-27 22:47:21.853 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ab684d7e-0a22-45ad-8cca-955c51e5aea0] remote server not configured\n2025-10-27 22:47:21.853 [error] [command][54499aff-b7a1-4562-80df-db7c017364bc] Socket error: Error: read ECONNRESET\n2025-10-27 22:47:21.853 [info] [command][54499aff-b7a1-4562-80df-db7c017364bc] Socket close event received\n2025-10-27 22:47:21.854 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][54499aff-b7a1-4562-80df-db7c017364bc] Socket closed without exit code\n2025-10-27 22:48:21.864 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:48:21.866 [info] [command][8ee108c7-ad1d-4a1d-bc04-29e7728e731a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8ee108c7-ad1d-4a1d-bc04-29e7728e731a""}\n2025-10-27 22:48:21.867 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bc7999e4-252d-4d29-bfbb-e19a748a9738] remote server not configured\n2025-10-27 22:48:21.868 [error] [command][8ee108c7-ad1d-4a1d-bc04-29e7728e731a] Socket error: Error: read ECONNRESET\n2025-10-27 22:48:21.868 [info] [command][8ee108c7-ad1d-4a1d-bc04-29e7728e731a] Socket close event received\n2025-10-27 22:48:21.868 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8ee108c7-ad1d-4a1d-bc04-29e7728e731a] Socket closed without exit code\n2025-10-27 22:49:21.874 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:49:21.876 [info] [command][90dde640-5ff7-41ec-a119-36a0d520981b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""90dde640-5ff7-41ec-a119-36a0d520981b""}\n2025-10-27 22:49:21.876 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ff434b40-7698-47c9-a8ae-8d116fcefcf2] remote server not configured\n2025-10-27 22:49:21.877 [error] [command][90dde640-5ff7-41ec-a119-36a0d520981b] Socket error: Error: read ECONNRESET\n2025-10-27 22:49:21.877 [info] [command][90dde640-5ff7-41ec-a119-36a0d520981b] Socket close event received\n2025-10-27 22:49:21.878 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][90dde640-5ff7-41ec-a119-36a0d520981b] Socket closed without exit code\n2025-10-27 22:50:21.886 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:50:21.890 [info] [command][a183ab3b-74b0-4321-a556-c086b8eb1bd6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a183ab3b-74b0-4321-a556-c086b8eb1bd6""}\n2025-10-27 22:50:21.890 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][33511ccc-f0d5-4840-b85f-3aa92b6ee4b7] remote server not configured\n2025-10-27 22:50:21.891 [error] [command][a183ab3b-74b0-4321-a556-c086b8eb1bd6] Socket error: Error: read ECONNRESET\n2025-10-27 22:50:21.891 [info] [command][a183ab3b-74b0-4321-a556-c086b8eb1bd6] Socket close event received\n2025-10-27 22:50:21.891 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a183ab3b-74b0-4321-a556-c086b8eb1bd6] Socket closed without exit code\n2025-10-27 22:51:21.895 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:51:21.896 [info] [command][f75ba662-a771-4109-af71-8448fc4b4bd4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f75ba662-a771-4109-af71-8448fc4b4bd4""}\n2025-10-27 22:51:21.897 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5dc93a92-0693-4db7-a1d0-478814466493] remote server not configured\n2025-10-27 22:51:21.898 [error] [command][f75ba662-a771-4109-af71-8448fc4b4bd4] Socket error: Error: read ECONNRESET\n2025-10-27 22:51:21.898 [info] [command][f75ba662-a771-4109-af71-8448fc4b4bd4] Socket close event received\n2025-10-27 22:51:21.898 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f75ba662-a771-4109-af71-8448fc4b4bd4] Socket closed without exit code\n2025-10-27 22:52:21.905 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:52:21.907 [info] [command][3c1a5a79-0f97-4a4c-89da-b73a83c3a137] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3c1a5a79-0f97-4a4c-89da-b73a83c3a137""}\n2025-10-27 22:52:21.907 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ad3e9e80-43fa-4bb1-8358-f1db5e150167] remote server not configured\n2025-10-27 22:52:21.908 [error] [command][3c1a5a79-0f97-4a4c-89da-b73a83c3a137] Socket error: Error: read ECONNRESET\n2025-10-27 22:52:21.908 [info] [command][3c1a5a79-0f97-4a4c-89da-b73a83c3a137] Socket close event received\n2025-10-27 22:52:21.908 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3c1a5a79-0f97-4a4c-89da-b73a83c3a137] Socket closed without exit code\n2025-10-27 22:53:21.913 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:53:21.914 [info] [command][872bd838-e52f-47fc-9aa1-6063f4628685] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""872bd838-e52f-47fc-9aa1-6063f4628685""}\n2025-10-27 22:53:21.915 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][09a22cdc-1df4-49a6-8f1c-36e4ae38c166] remote server not configured\n2025-10-27 22:53:21.916 [error] [command][872bd838-e52f-47fc-9aa1-6063f4628685] Socket error: Error: read ECONNRESET\n2025-10-27 22:53:21.916 [info] [command][872bd838-e52f-47fc-9aa1-6063f4628685] Socket close event received\n2025-10-27 22:53:21.916 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][872bd838-e52f-47fc-9aa1-6063f4628685] Socket closed without exit code\n2025-10-27 22:54:21.923 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:54:21.925 [info] [command][a3001e17-a7c4-45b2-917b-7910da0ed956] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a3001e17-a7c4-45b2-917b-7910da0ed956""}\n2025-10-27 22:54:21.925 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][84369207-daeb-41ec-87de-304e15783173] remote server not configured\n2025-10-27 22:54:21.926 [error] [command][a3001e17-a7c4-45b2-917b-7910da0ed956] Socket error: Error: read ECONNRESET\n2025-10-27 22:54:21.926 [info] [command][a3001e17-a7c4-45b2-917b-7910da0ed956] Socket close event received\n2025-10-27 22:54:21.926 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a3001e17-a7c4-45b2-917b-7910da0ed956] Socket closed without exit code\n2025-10-27 22:55:21.937 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:55:21.939 [info] [command][fbb73325-a281-4662-b447-b571b3e9e1d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fbb73325-a281-4662-b447-b571b3e9e1d8""}\n2025-10-27 22:55:21.940 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0e55d2a9-8ed6-4b45-94be-676c8f6ad6a6] remote server not configured\n2025-10-27 22:55:21.941 [error] [command][fbb73325-a281-4662-b447-b571b3e9e1d8] Socket error: Error: read ECONNRESET\n2025-10-27 22:55:21.941 [info] [command][fbb73325-a281-4662-b447-b571b3e9e1d8] Socket close event received\n2025-10-27 22:55:21.941 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fbb73325-a281-4662-b447-b571b3e9e1d8] Socket closed without exit code\n2025-10-27 22:56:21.951 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:56:21.954 [info] [command][494fc192-6d3f-4f7b-b87c-54827b1c7cd2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""494fc192-6d3f-4f7b-b87c-54827b1c7cd2""}\n2025-10-27 22:56:21.955 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2e2eabd1-57b0-4d17-b893-e5a0c47ebb49] remote server not configured\n2025-10-27 22:56:21.955 [error] [command][494fc192-6d3f-4f7b-b87c-54827b1c7cd2] Socket error: Error: read ECONNRESET\n2025-10-27 22:56:21.955 [info] [command][494fc192-6d3f-4f7b-b87c-54827b1c7cd2] Socket close event received\n2025-10-27 22:56:21.956 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][494fc192-6d3f-4f7b-b87c-54827b1c7cd2] Socket closed without exit code\n2025-10-27 22:57:21.964 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:57:21.967 [info] [command][0b7687ea-235d-4907-8ee8-185a9138aec6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0b7687ea-235d-4907-8ee8-185a9138aec6""}\n2025-10-27 22:57:21.968 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f9d6162d-eb45-4226-87b8-599405f2b940] remote server not configured\n2025-10-27 22:57:21.969 [error] [command][0b7687ea-235d-4907-8ee8-185a9138aec6] Socket error: Error: read ECONNRESET\n2025-10-27 22:57:21.969 [info] [command][0b7687ea-235d-4907-8ee8-185a9138aec6] Socket close event received\n2025-10-27 22:57:21.969 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0b7687ea-235d-4907-8ee8-185a9138aec6] Socket closed without exit code\n2025-10-27 22:58:21.979 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:58:21.981 [info] [command][045cae0a-5036-420a-b851-33e16c32e50c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""045cae0a-5036-420a-b851-33e16c32e50c""}\n2025-10-27 22:58:21.981 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][74d1e136-a7c7-4ac4-b839-29926bca040a] remote server not configured\n2025-10-27 22:58:21.982 [error] [command][045cae0a-5036-420a-b851-33e16c32e50c] Socket error: Error: read ECONNRESET\n2025-10-27 22:58:21.982 [info] [command][045cae0a-5036-420a-b851-33e16c32e50c] Socket close event received\n2025-10-27 22:58:21.982 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][045cae0a-5036-420a-b851-33e16c32e50c] Socket closed without exit code\n2025-10-27 22:59:21.994 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 22:59:21.996 [info] [command][dcbe32dd-3997-4566-8494-376007b1205e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dcbe32dd-3997-4566-8494-376007b1205e""}\n2025-10-27 22:59:21.997 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][aa2112f2-92be-467d-9349-f2b3970ff986] remote server not configured\n2025-10-27 22:59:21.998 [error] [command][dcbe32dd-3997-4566-8494-376007b1205e] Socket error: Error: read ECONNRESET\n2025-10-27 22:59:21.998 [info] [command][dcbe32dd-3997-4566-8494-376007b1205e] Socket close event received\n2025-10-27 22:59:21.998 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dcbe32dd-3997-4566-8494-376007b1205e] Socket closed without exit code\n2025-10-27 23:00:21.999 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:00:22.002 [info] [command][1e8ab64d-6765-4526-9bae-06c63a7760e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1e8ab64d-6765-4526-9bae-06c63a7760e1""}\n2025-10-27 23:00:22.003 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][11d5dcbf-65f7-44e8-812c-092a0b3a43ee] remote server not configured\n2025-10-27 23:00:22.003 [error] [command][1e8ab64d-6765-4526-9bae-06c63a7760e1] Socket error: Error: read ECONNRESET\n2025-10-27 23:00:22.004 [info] [command][1e8ab64d-6765-4526-9bae-06c63a7760e1] Socket close event received\n2025-10-27 23:00:22.004 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1e8ab64d-6765-4526-9bae-06c63a7760e1] Socket closed without exit code\n2025-10-27 23:01:22.012 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:01:22.015 [info] [command][ae29c4ac-3bf0-4940-b7ad-9a8a1d96afd5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ae29c4ac-3bf0-4940-b7ad-9a8a1d96afd5""}\n2025-10-27 23:01:22.016 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][58b69cdf-5d44-482e-840a-3ce5d0d2791f] remote server not configured\n2025-10-27 23:01:22.016 [error] [command][ae29c4ac-3bf0-4940-b7ad-9a8a1d96afd5] Socket error: Error: read ECONNRESET\n2025-10-27 23:01:22.017 [info] [command][ae29c4ac-3bf0-4940-b7ad-9a8a1d96afd5] Socket close event received\n2025-10-27 23:01:22.017 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ae29c4ac-3bf0-4940-b7ad-9a8a1d96afd5] Socket closed without exit code\n2025-10-27 23:02:22.018 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:02:22.020 [info] [command][072bcc4b-1819-451f-8a2c-8dad663ce76a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""072bcc4b-1819-451f-8a2c-8dad663ce76a""}\n2025-10-27 23:02:22.021 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2eca6cb9-5ab8-4eb8-aa2c-fd1dbf5d2c58] remote server not configured\n2025-10-27 23:02:22.022 [error] [command][072bcc4b-1819-451f-8a2c-8dad663ce76a] Socket error: Error: read ECONNRESET\n2025-10-27 23:02:22.022 [info] [command][072bcc4b-1819-451f-8a2c-8dad663ce76a] Socket close event received\n2025-10-27 23:02:22.022 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][072bcc4b-1819-451f-8a2c-8dad663ce76a] Socket closed without exit code\n2025-10-27 23:03:22.032 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:03:22.034 [info] [command][590b7e56-2cbc-4745-becd-21c0cfc6d94b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""590b7e56-2cbc-4745-becd-21c0cfc6d94b""}\n2025-10-27 23:03:22.035 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9e76ab07-bb8b-4d57-aca5-242c3c5c63b3] remote server not configured\n2025-10-27 23:03:22.035 [error] [command][590b7e56-2cbc-4745-becd-21c0cfc6d94b] Socket error: Error: read ECONNRESET\n2025-10-27 23:03:22.035 [info] [command][590b7e56-2cbc-4745-becd-21c0cfc6d94b] Socket close event received\n2025-10-27 23:03:22.036 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][590b7e56-2cbc-4745-becd-21c0cfc6d94b] Socket closed without exit code\n2025-10-27 23:04:22.046 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:04:22.048 [info] [command][feaeacc8-eca7-43f1-ba9d-500146b2646d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""feaeacc8-eca7-43f1-ba9d-500146b2646d""}\n2025-10-27 23:04:22.049 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9e76524e-f773-45ca-987f-4eafec27e473] remote server not configured\n2025-10-27 23:04:22.049 [error] [command][feaeacc8-eca7-43f1-ba9d-500146b2646d] Socket error: Error: read ECONNRESET\n2025-10-27 23:04:22.049 [info] [command][feaeacc8-eca7-43f1-ba9d-500146b2646d] Socket close event received\n2025-10-27 23:04:22.050 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][feaeacc8-eca7-43f1-ba9d-500146b2646d] Socket closed without exit code\n2025-10-27 23:05:22.054 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:05:22.055 [info] [command][419c8ae7-3bc4-4122-a775-ca02c4595431] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""419c8ae7-3bc4-4122-a775-ca02c4595431""}\n2025-10-27 23:05:22.055 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][87697296-66bd-4116-94f8-40a1669ee488] remote server not configured\n2025-10-27 23:05:22.056 [error] [command][419c8ae7-3bc4-4122-a775-ca02c4595431] Socket error: Error: read ECONNRESET\n2025-10-27 23:05:22.056 [info] [command][419c8ae7-3bc4-4122-a775-ca02c4595431] Socket close event received\n2025-10-27 23:05:22.056 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][419c8ae7-3bc4-4122-a775-ca02c4595431] Socket closed without exit code\n2025-10-27 23:06:22.066 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:06:22.068 [info] [command][4e27df4a-6e1f-45a8-a155-45f3684ddae6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4e27df4a-6e1f-45a8-a155-45f3684ddae6""}\n2025-10-27 23:06:22.069 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a5918193-a10f-4d47-b4dc-1479ab74f700] remote server not configured\n2025-10-27 23:06:22.070 [error] [command][4e27df4a-6e1f-45a8-a155-45f3684ddae6] Socket error: Error: read ECONNRESET\n2025-10-27 23:06:22.070 [info] [command][4e27df4a-6e1f-45a8-a155-45f3684ddae6] Socket close event received\n2025-10-27 23:06:22.070 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4e27df4a-6e1f-45a8-a155-45f3684ddae6] Socket closed without exit code\n2025-10-27 23:07:22.081 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:07:22.084 [info] [command][fe5cf897-512b-489f-bb3b-7e04f4f3dd50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fe5cf897-512b-489f-bb3b-7e04f4f3dd50""}\n2025-10-27 23:07:22.084 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][99cb7b84-6e46-4673-a875-93008364e681] remote server not configured\n2025-10-27 23:07:22.085 [error] [command][fe5cf897-512b-489f-bb3b-7e04f4f3dd50] Socket error: Error: read ECONNRESET\n2025-10-27 23:07:22.085 [info] [command][fe5cf897-512b-489f-bb3b-7e04f4f3dd50] Socket close event received\n2025-10-27 23:07:22.085 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fe5cf897-512b-489f-bb3b-7e04f4f3dd50] Socket closed without exit code\n2025-10-27 23:08:22.096 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:08:22.098 [info] [command][474ae2aa-990a-4b1e-850a-e8bcc48b87e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""474ae2aa-990a-4b1e-850a-e8bcc48b87e5""}\n2025-10-27 23:08:22.098 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d4aac139-c83b-42ec-adbf-fef19982ad19] remote server not configured\n2025-10-27 23:08:22.099 [error] [command][474ae2aa-990a-4b1e-850a-e8bcc48b87e5] Socket error: Error: read ECONNRESET\n2025-10-27 23:08:22.099 [info] [command][474ae2aa-990a-4b1e-850a-e8bcc48b87e5] Socket close event received\n2025-10-27 23:08:22.100 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][474ae2aa-990a-4b1e-850a-e8bcc48b87e5] Socket closed without exit code\n2025-10-27 23:09:22.101 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:09:22.104 [info] [command][1b17050d-965c-4294-8a0e-1f11ee9f9161] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1b17050d-965c-4294-8a0e-1f11ee9f9161""}\n2025-10-27 23:09:22.105 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7414a593-23bf-4677-ab02-f2b68c452a74] remote server not configured\n2025-10-27 23:09:22.105 [error] [command][1b17050d-965c-4294-8a0e-1f11ee9f9161] Socket error: Error: read ECONNRESET\n2025-10-27 23:09:22.105 [info] [command][1b17050d-965c-4294-8a0e-1f11ee9f9161] Socket close event received\n2025-10-27 23:09:22.106 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1b17050d-965c-4294-8a0e-1f11ee9f9161] Socket closed without exit code\n2025-10-27 23:10:22.109 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:10:22.112 [info] [command][fda2e672-43a7-40c9-ab71-c787a1fb7502] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fda2e672-43a7-40c9-ab71-c787a1fb7502""}\n2025-10-27 23:10:22.113 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4950d8c8-af13-44f4-bfc4-fd5bc5a26e02] remote server not configured\n2025-10-27 23:10:22.113 [error] [command][fda2e672-43a7-40c9-ab71-c787a1fb7502] Socket error: Error: read ECONNRESET\n2025-10-27 23:10:22.113 [info] [command][fda2e672-43a7-40c9-ab71-c787a1fb7502] Socket close event received\n2025-10-27 23:10:22.114 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fda2e672-43a7-40c9-ab71-c787a1fb7502] Socket closed without exit code\n2025-10-27 23:11:22.124 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:11:22.126 [info] [command][45d26ded-3417-4b2b-b058-9ac5e7510928] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""45d26ded-3417-4b2b-b058-9ac5e7510928""}\n2025-10-27 23:11:22.126 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7629ca01-61ba-44bc-827a-ecec15675542] remote server not configured\n2025-10-27 23:11:22.127 [error] [command][45d26ded-3417-4b2b-b058-9ac5e7510928] Socket error: Error: read ECONNRESET\n2025-10-27 23:11:22.127 [info] [command][45d26ded-3417-4b2b-b058-9ac5e7510928] Socket close event received\n2025-10-27 23:11:22.127 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][45d26ded-3417-4b2b-b058-9ac5e7510928] Socket closed without exit code\n2025-10-27 23:12:22.138 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:12:22.140 [info] [command][cb3c1dfe-31f3-42aa-8d07-7f5170ab2fdc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cb3c1dfe-31f3-42aa-8d07-7f5170ab2fdc""}\n2025-10-27 23:12:22.141 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dba1c4fe-5213-43e7-af83-5064b85995fe] remote server not configured\n2025-10-27 23:12:22.142 [error] [command][cb3c1dfe-31f3-42aa-8d07-7f5170ab2fdc] Socket error: Error: read ECONNRESET\n2025-10-27 23:12:22.143 [info] [command][cb3c1dfe-31f3-42aa-8d07-7f5170ab2fdc] Socket close event received\n2025-10-27 23:12:22.143 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cb3c1dfe-31f3-42aa-8d07-7f5170ab2fdc] Socket closed without exit code\n2025-10-27 23:13:22.153 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:13:22.155 [info] [command][2b645272-508f-4a88-b240-190c57280df9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2b645272-508f-4a88-b240-190c57280df9""}\n2025-10-27 23:13:22.156 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][73a246c2-ef91-44e0-98c3-0ef9cbec30ee] remote server not configured\n2025-10-27 23:13:22.156 [error] [command][2b645272-508f-4a88-b240-190c57280df9] Socket error: Error: read ECONNRESET\n2025-10-27 23:13:22.156 [info] [command][2b645272-508f-4a88-b240-190c57280df9] Socket close event received\n2025-10-27 23:13:22.157 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2b645272-508f-4a88-b240-190c57280df9] Socket closed without exit code\n2025-10-27 23:14:22.167 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:14:22.170 [info] [command][11afe03c-b05b-4073-8be0-d1a7a0eca8a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""11afe03c-b05b-4073-8be0-d1a7a0eca8a6""}\n2025-10-27 23:14:22.171 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7186be45-bbb0-477c-be2a-be0df5f4edfc] remote server not configured\n2025-10-27 23:14:22.171 [error] [command][11afe03c-b05b-4073-8be0-d1a7a0eca8a6] Socket error: Error: read ECONNRESET\n2025-10-27 23:14:22.171 [info] [command][11afe03c-b05b-4073-8be0-d1a7a0eca8a6] Socket close event received\n2025-10-27 23:14:22.172 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][11afe03c-b05b-4073-8be0-d1a7a0eca8a6] Socket closed without exit code\n2025-10-27 23:15:22.179 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:15:22.181 [info] [command][00461653-a490-41c2-bf37-9c9ba2abcb9b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""00461653-a490-41c2-bf37-9c9ba2abcb9b""}\n2025-10-27 23:15:22.182 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3be9539e-f5f5-48f5-978e-32050185ebcb] remote server not configured\n2025-10-27 23:15:22.182 [error] [command][00461653-a490-41c2-bf37-9c9ba2abcb9b] Socket error: Error: read ECONNRESET\n2025-10-27 23:15:22.182 [info] [command][00461653-a490-41c2-bf37-9c9ba2abcb9b] Socket close event received\n2025-10-27 23:15:22.183 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][00461653-a490-41c2-bf37-9c9ba2abcb9b] Socket closed without exit code\n2025-10-27 23:16:22.193 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:16:22.195 [info] [command][7e74503a-8bda-4632-b327-f5f48687cff0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7e74503a-8bda-4632-b327-f5f48687cff0""}\n2025-10-27 23:16:22.196 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7f3718ae-a9fb-4564-8a25-252341d486eb] remote server not configured\n2025-10-27 23:16:22.196 [error] [command][7e74503a-8bda-4632-b327-f5f48687cff0] Socket error: Error: read ECONNRESET\n2025-10-27 23:16:22.197 [info] [command][7e74503a-8bda-4632-b327-f5f48687cff0] Socket close event received\n2025-10-27 23:16:22.197 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7e74503a-8bda-4632-b327-f5f48687cff0] Socket closed without exit code\n2025-10-27 23:17:22.197 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:17:22.199 [info] [command][eca77ba0-7921-4fea-9528-33e41bc08c3c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""eca77ba0-7921-4fea-9528-33e41bc08c3c""}\n2025-10-27 23:17:22.200 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][21476e33-2ae2-4859-97ad-5edff0ee8e99] remote server not configured\n2025-10-27 23:17:22.200 [error] [command][eca77ba0-7921-4fea-9528-33e41bc08c3c] Socket error: Error: read ECONNRESET\n2025-10-27 23:17:22.201 [info] [command][eca77ba0-7921-4fea-9528-33e41bc08c3c] Socket close event received\n2025-10-27 23:17:22.201 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][eca77ba0-7921-4fea-9528-33e41bc08c3c] Socket closed without exit code\n2025-10-27 23:18:22.212 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:18:22.214 [info] [command][4054ae81-6c8d-4b13-a4e6-e3b3ddcae190] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4054ae81-6c8d-4b13-a4e6-e3b3ddcae190""}\n2025-10-27 23:18:22.214 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d1fe4041-09da-49c3-bdd7-983c69b0b46e] remote server not configured\n2025-10-27 23:18:22.215 [error] [command][4054ae81-6c8d-4b13-a4e6-e3b3ddcae190] Socket error: Error: read ECONNRESET\n2025-10-27 23:18:22.215 [info] [command][4054ae81-6c8d-4b13-a4e6-e3b3ddcae190] Socket close event received\n2025-10-27 23:18:22.215 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4054ae81-6c8d-4b13-a4e6-e3b3ddcae190] Socket closed without exit code\n2025-10-27 23:19:22.218 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:19:22.220 [info] [command][a24a1958-2a17-4d02-8bf8-673d739af992] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a24a1958-2a17-4d02-8bf8-673d739af992""}\n2025-10-27 23:19:22.221 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b6778d6b-ef76-44d1-9d86-b3452ec722bd] remote server not configured\n2025-10-27 23:19:22.221 [error] [command][a24a1958-2a17-4d02-8bf8-673d739af992] Socket error: Error: read ECONNRESET\n2025-10-27 23:19:22.222 [info] [command][a24a1958-2a17-4d02-8bf8-673d739af992] Socket close event received\n2025-10-27 23:19:22.222 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a24a1958-2a17-4d02-8bf8-673d739af992] Socket closed without exit code\n2025-10-27 23:20:22.233 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:20:22.235 [info] [command][f5b0d535-f28c-4368-bbfc-222ebaa0a36a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f5b0d535-f28c-4368-bbfc-222ebaa0a36a""}\n2025-10-27 23:20:22.235 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2b7899e9-f560-42e5-ae6a-efa237e4ce2e] remote server not configured\n2025-10-27 23:20:22.237 [error] [command][f5b0d535-f28c-4368-bbfc-222ebaa0a36a] Socket error: Error: read ECONNRESET\n2025-10-27 23:20:22.237 [info] [command][f5b0d535-f28c-4368-bbfc-222ebaa0a36a] Socket close event received\n2025-10-27 23:20:22.237 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f5b0d535-f28c-4368-bbfc-222ebaa0a36a] Socket closed without exit code\n2025-10-27 23:21:22.239 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:21:22.241 [info] [command][c75f5d1b-465f-4f06-8901-beb8c794c06a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c75f5d1b-465f-4f06-8901-beb8c794c06a""}\n2025-10-27 23:21:22.241 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cdb27392-29a2-4ea2-b3d3-11a3c2c4a47c] remote server not configured\n2025-10-27 23:21:22.242 [error] [command][c75f5d1b-465f-4f06-8901-beb8c794c06a] Socket error: Error: read ECONNRESET\n2025-10-27 23:21:22.242 [info] [command][c75f5d1b-465f-4f06-8901-beb8c794c06a] Socket close event received\n2025-10-27 23:21:22.242 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c75f5d1b-465f-4f06-8901-beb8c794c06a] Socket closed without exit code\n2025-10-27 23:22:22.242 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:22:22.245 [info] [command][7148d94e-f08f-4448-88f1-5783ff1b3552] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7148d94e-f08f-4448-88f1-5783ff1b3552""}\n2025-10-27 23:22:22.245 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bebbb36c-384e-4420-be24-124ee5edd1cd] remote server not configured\n2025-10-27 23:22:22.246 [error] [command][7148d94e-f08f-4448-88f1-5783ff1b3552] Socket error: Error: read ECONNRESET\n2025-10-27 23:22:22.246 [info] [command][7148d94e-f08f-4448-88f1-5783ff1b3552] Socket close event received\n2025-10-27 23:22:22.246 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7148d94e-f08f-4448-88f1-5783ff1b3552] Socket closed without exit code\n2025-10-27 23:23:22.256 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:23:22.258 [info] [command][fa2cd13e-b97d-400a-8e99-da58ee1f4040] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fa2cd13e-b97d-400a-8e99-da58ee1f4040""}\n2025-10-27 23:23:22.259 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8124a37d-8ac6-4ab9-8443-c4beaa190d2f] remote server not configured\n2025-10-27 23:23:22.259 [error] [command][fa2cd13e-b97d-400a-8e99-da58ee1f4040] Socket error: Error: read ECONNRESET\n2025-10-27 23:23:22.260 [info] [command][fa2cd13e-b97d-400a-8e99-da58ee1f4040] Socket close event received\n2025-10-27 23:23:22.260 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fa2cd13e-b97d-400a-8e99-da58ee1f4040] Socket closed without exit code\n2025-10-27 23:24:22.270 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:24:22.273 [info] [command][b3b3dfb4-e8b7-4407-bbb6-da0f2719f7a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b3b3dfb4-e8b7-4407-bbb6-da0f2719f7a5""}\n2025-10-27 23:24:22.274 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7ed37873-5ae0-4b10-b10e-6e4ba5062c46] remote server not configured\n2025-10-27 23:24:22.274 [error] [command][b3b3dfb4-e8b7-4407-bbb6-da0f2719f7a5] Socket error: Error: read ECONNRESET\n2025-10-27 23:24:22.275 [info] [command][b3b3dfb4-e8b7-4407-bbb6-da0f2719f7a5] Socket close event received\n2025-10-27 23:24:22.275 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b3b3dfb4-e8b7-4407-bbb6-da0f2719f7a5] Socket closed without exit code\n2025-10-27 23:25:22.275 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:25:22.277 [info] [command][e618e17f-5922-4a70-9eac-5ce5d536fa2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e618e17f-5922-4a70-9eac-5ce5d536fa2e""}\n2025-10-27 23:25:22.278 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][df77e5db-9e0d-4a10-bf74-fb59c2c1673a] remote server not configured\n2025-10-27 23:25:22.278 [error] [command][e618e17f-5922-4a70-9eac-5ce5d536fa2e] Socket error: Error: read ECONNRESET\n2025-10-27 23:25:22.278 [info] [command][e618e17f-5922-4a70-9eac-5ce5d536fa2e] Socket close event received\n2025-10-27 23:25:22.279 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e618e17f-5922-4a70-9eac-5ce5d536fa2e] Socket closed without exit code\n2025-10-27 23:26:22.285 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:26:22.287 [info] [command][85c11816-013c-44f4-8d57-863545a7405f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""85c11816-013c-44f4-8d57-863545a7405f""}\n2025-10-27 23:26:22.288 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ab41dead-af50-4faf-9223-1ccfe0176479] remote server not configured\n2025-10-27 23:26:22.288 [error] [command][85c11816-013c-44f4-8d57-863545a7405f] Socket error: Error: read ECONNRESET\n2025-10-27 23:26:22.288 [info] [command][85c11816-013c-44f4-8d57-863545a7405f] Socket close event received\n2025-10-27 23:26:22.289 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][85c11816-013c-44f4-8d57-863545a7405f] Socket closed without exit code\n2025-10-27 23:27:22.299 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:27:22.301 [info] [command][b7dd51f5-ffcd-4113-8076-f36fdca9408b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b7dd51f5-ffcd-4113-8076-f36fdca9408b""}\n2025-10-27 23:27:22.301 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9774c13e-a855-475b-9a5f-5daed9872ff1] remote server not configured\n2025-10-27 23:27:22.302 [error] [command][b7dd51f5-ffcd-4113-8076-f36fdca9408b] Socket error: Error: read ECONNRESET\n2025-10-27 23:27:22.302 [info] [command][b7dd51f5-ffcd-4113-8076-f36fdca9408b] Socket close event received\n2025-10-27 23:27:22.302 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b7dd51f5-ffcd-4113-8076-f36fdca9408b] Socket closed without exit code\n2025-10-27 23:28:22.313 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:28:22.315 [info] [command][bbc78106-2ef2-4ad2-a64c-9f9fc2478b7e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bbc78106-2ef2-4ad2-a64c-9f9fc2478b7e""}\n2025-10-27 23:28:22.316 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][de2ce87f-9f7f-4f10-a627-4c2d8fdb92ad] remote server not configured\n2025-10-27 23:28:22.316 [error] [command][bbc78106-2ef2-4ad2-a64c-9f9fc2478b7e] Socket error: Error: read ECONNRESET\n2025-10-27 23:28:22.317 [info] [command][bbc78106-2ef2-4ad2-a64c-9f9fc2478b7e] Socket close event received\n2025-10-27 23:28:22.317 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bbc78106-2ef2-4ad2-a64c-9f9fc2478b7e] Socket closed without exit code\n2025-10-27 23:29:22.326 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:29:22.327 [info] [command][334ca23b-0e79-4c53-a900-effd53ff49bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""334ca23b-0e79-4c53-a900-effd53ff49bf""}\n2025-10-27 23:29:22.328 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c4179717-13fd-4ab9-9c1e-1e6296c3c1d7] remote server not configured\n2025-10-27 23:29:22.329 [error] [command][334ca23b-0e79-4c53-a900-effd53ff49bf] Socket error: Error: read ECONNRESET\n2025-10-27 23:29:22.329 [info] [command][334ca23b-0e79-4c53-a900-effd53ff49bf] Socket close event received\n2025-10-27 23:29:22.329 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][334ca23b-0e79-4c53-a900-effd53ff49bf] Socket closed without exit code\n2025-10-27 23:30:22.339 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:30:22.342 [info] [command][b624e95d-8431-4727-b121-09bf6af207f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b624e95d-8431-4727-b121-09bf6af207f3""}\n2025-10-27 23:30:22.342 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9a0443b0-33cf-48f7-a5e7-4e8ff8de390f] remote server not configured\n2025-10-27 23:30:22.343 [error] [command][b624e95d-8431-4727-b121-09bf6af207f3] Socket error: Error: read ECONNRESET\n2025-10-27 23:30:22.343 [info] [command][b624e95d-8431-4727-b121-09bf6af207f3] Socket close event received\n2025-10-27 23:30:22.343 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b624e95d-8431-4727-b121-09bf6af207f3] Socket closed without exit code\n2025-10-27 23:31:22.353 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:31:22.354 [info] [command][e69d30c6-0185-43e0-b39d-15232809a129] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e69d30c6-0185-43e0-b39d-15232809a129""}\n2025-10-27 23:31:22.354 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][89081f49-10d9-4348-8a1b-45485b591b65] remote server not configured\n2025-10-27 23:31:22.354 [error] [command][e69d30c6-0185-43e0-b39d-15232809a129] Socket error: Error: read ECONNRESET\n2025-10-27 23:31:22.354 [info] [command][e69d30c6-0185-43e0-b39d-15232809a129] Socket close event received\n2025-10-27 23:31:22.355 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e69d30c6-0185-43e0-b39d-15232809a129] Socket closed without exit code\n2025-10-27 23:32:22.364 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:32:22.366 [info] [command][1e0f021c-3f07-47db-8a59-c0a9d2a32d5a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1e0f021c-3f07-47db-8a59-c0a9d2a32d5a""}\n2025-10-27 23:32:22.367 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4a11ee16-27f1-4cdd-9512-89c5d22e4756] remote server not configured\n2025-10-27 23:32:22.368 [error] [command][1e0f021c-3f07-47db-8a59-c0a9d2a32d5a] Socket error: Error: read ECONNRESET\n2025-10-27 23:32:22.368 [info] [command][1e0f021c-3f07-47db-8a59-c0a9d2a32d5a] Socket close event received\n2025-10-27 23:32:22.368 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1e0f021c-3f07-47db-8a59-c0a9d2a32d5a] Socket closed without exit code\n2025-10-27 23:33:22.379 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:33:22.381 [info] [command][f94fea39-f764-49c8-bfe8-adc715fbac3b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f94fea39-f764-49c8-bfe8-adc715fbac3b""}\n2025-10-27 23:33:22.381 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][24806775-86af-44ff-8f0a-69b444bc09f2] remote server not configured\n2025-10-27 23:33:22.382 [error] [command][f94fea39-f764-49c8-bfe8-adc715fbac3b] Socket error: Error: read ECONNRESET\n2025-10-27 23:33:22.382 [info] [command][f94fea39-f764-49c8-bfe8-adc715fbac3b] Socket close event received\n2025-10-27 23:33:22.382 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f94fea39-f764-49c8-bfe8-adc715fbac3b] Socket closed without exit code\n2025-10-27 23:34:22.392 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:34:22.394 [info] [command][2bed38fb-2fe7-4ce5-bc1e-9c0838fdd81c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2bed38fb-2fe7-4ce5-bc1e-9c0838fdd81c""}\n2025-10-27 23:34:22.395 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c3278a36-0236-4c3f-9fe3-4e791a74f9b8] remote server not configured\n2025-10-27 23:34:22.396 [error] [command][2bed38fb-2fe7-4ce5-bc1e-9c0838fdd81c] Socket error: Error: read ECONNRESET\n2025-10-27 23:34:22.396 [info] [command][2bed38fb-2fe7-4ce5-bc1e-9c0838fdd81c] Socket close event received\n2025-10-27 23:34:22.396 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2bed38fb-2fe7-4ce5-bc1e-9c0838fdd81c] Socket closed without exit code\n2025-10-27 23:35:22.407 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:35:22.409 [info] [command][63d088d0-27f3-49f4-8f70-b6d8387ac38c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""63d088d0-27f3-49f4-8f70-b6d8387ac38c""}\n2025-10-27 23:35:22.409 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][32a6a300-612d-4347-945f-8af067360905] remote server not configured\n2025-10-27 23:35:22.410 [error] [command][63d088d0-27f3-49f4-8f70-b6d8387ac38c] Socket error: Error: read ECONNRESET\n2025-10-27 23:35:22.410 [info] [command][63d088d0-27f3-49f4-8f70-b6d8387ac38c] Socket close event received\n2025-10-27 23:35:22.411 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][63d088d0-27f3-49f4-8f70-b6d8387ac38c] Socket closed without exit code\n2025-10-27 23:36:22.420 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:36:22.422 [info] [command][d7272dfd-02f1-4584-9c68-8083c106978b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d7272dfd-02f1-4584-9c68-8083c106978b""}\n2025-10-27 23:36:22.422 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4fcb4194-3559-4c77-b7b2-050fbe543d45] remote server not configured\n2025-10-27 23:36:22.423 [error] [command][d7272dfd-02f1-4584-9c68-8083c106978b] Socket error: Error: read ECONNRESET\n2025-10-27 23:36:22.423 [info] [command][d7272dfd-02f1-4584-9c68-8083c106978b] Socket close event received\n2025-10-27 23:36:22.423 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d7272dfd-02f1-4584-9c68-8083c106978b] Socket closed without exit code\n2025-10-27 23:37:22.432 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:37:22.433 [info] [command][797acc21-6abf-436b-937b-c711bd129dee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""797acc21-6abf-436b-937b-c711bd129dee""}\n2025-10-27 23:37:22.434 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e50ae577-b9e6-4191-a2ac-afe3219de5f2] remote server not configured\n2025-10-27 23:37:22.435 [error] [command][797acc21-6abf-436b-937b-c711bd129dee] Socket error: Error: read ECONNRESET\n2025-10-27 23:37:22.435 [info] [command][797acc21-6abf-436b-937b-c711bd129dee] Socket close event received\n2025-10-27 23:37:22.435 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][797acc21-6abf-436b-937b-c711bd129dee] Socket closed without exit code\n2025-10-27 23:38:22.439 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:38:22.441 [info] [command][7d3ae16b-a7e3-41fe-a0b1-984e2549e14e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7d3ae16b-a7e3-41fe-a0b1-984e2549e14e""}\n2025-10-27 23:38:22.442 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d82096b4-4b30-4936-a3a9-02be1f58e581] remote server not configured\n2025-10-27 23:38:22.442 [error] [command][7d3ae16b-a7e3-41fe-a0b1-984e2549e14e] Socket error: Error: read ECONNRESET\n2025-10-27 23:38:22.443 [info] [command][7d3ae16b-a7e3-41fe-a0b1-984e2549e14e] Socket close event received\n2025-10-27 23:38:22.443 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7d3ae16b-a7e3-41fe-a0b1-984e2549e14e] Socket closed without exit code\n2025-10-27 23:39:22.449 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:39:22.451 [info] [command][cc7e01f8-28dd-404f-aa0f-bfefcf736fde] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cc7e01f8-28dd-404f-aa0f-bfefcf736fde""}\n2025-10-27 23:39:22.452 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][206760e2-e001-4b48-a730-17c0663edb00] remote server not configured\n2025-10-27 23:39:22.452 [error] [command][cc7e01f8-28dd-404f-aa0f-bfefcf736fde] Socket error: Error: read ECONNRESET\n2025-10-27 23:39:22.453 [info] [command][cc7e01f8-28dd-404f-aa0f-bfefcf736fde] Socket close event received\n2025-10-27 23:39:22.453 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cc7e01f8-28dd-404f-aa0f-bfefcf736fde] Socket closed without exit code\n2025-10-27 23:40:22.396 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:40:22.399 [info] [command][45007169-4112-42af-90c2-9adf334f1a9c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""45007169-4112-42af-90c2-9adf334f1a9c""}\n2025-10-27 23:40:22.400 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e3517d46-489e-4f9b-9781-c670de024bc3] remote server not configured\n2025-10-27 23:40:22.400 [error] [command][45007169-4112-42af-90c2-9adf334f1a9c] Socket error: Error: read ECONNRESET\n2025-10-27 23:40:22.400 [info] [command][45007169-4112-42af-90c2-9adf334f1a9c] Socket close event received\n2025-10-27 23:40:22.400 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][45007169-4112-42af-90c2-9adf334f1a9c] Socket closed without exit code\n2025-10-27 23:41:22.410 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:41:22.412 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9f3e6c67-7e3b-44da-8010-e3c628442e8d] remote server not configured\n2025-10-27 23:41:22.413 [info] [command][df776493-496e-4763-b677-d0d7c6888aa5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""df776493-496e-4763-b677-d0d7c6888aa5""}\n2025-10-27 23:41:22.414 [error] [command][df776493-496e-4763-b677-d0d7c6888aa5] Socket error: Error: read ECONNRESET\n2025-10-27 23:41:22.414 [info] [command][df776493-496e-4763-b677-d0d7c6888aa5] Socket close event received\n2025-10-27 23:41:22.414 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][df776493-496e-4763-b677-d0d7c6888aa5] Socket closed without exit code\n2025-10-27 23:42:22.418 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:42:22.420 [info] [command][6fda1762-9f9d-4934-aa71-0a9829e93c94] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6fda1762-9f9d-4934-aa71-0a9829e93c94""}\n2025-10-27 23:42:22.421 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b3c38838-8761-42bc-9c57-7773d1efe700] remote server not configured\n2025-10-27 23:42:22.421 [error] [command][6fda1762-9f9d-4934-aa71-0a9829e93c94] Socket error: Error: read ECONNRESET\n2025-10-27 23:42:22.422 [info] [command][6fda1762-9f9d-4934-aa71-0a9829e93c94] Socket close event received\n2025-10-27 23:42:22.422 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6fda1762-9f9d-4934-aa71-0a9829e93c94] Socket closed without exit code\n2025-10-27 23:43:22.431 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:43:22.433 [info] [command][5976b381-bd91-48a2-bd5a-02d44e0b461d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5976b381-bd91-48a2-bd5a-02d44e0b461d""}\n2025-10-27 23:43:22.433 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][76e47a55-1e36-4126-b582-24f17016058c] remote server not configured\n2025-10-27 23:43:22.434 [error] [command][5976b381-bd91-48a2-bd5a-02d44e0b461d] Socket error: Error: read ECONNRESET\n2025-10-27 23:43:22.434 [info] [command][5976b381-bd91-48a2-bd5a-02d44e0b461d] Socket close event received\n2025-10-27 23:43:22.434 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5976b381-bd91-48a2-bd5a-02d44e0b461d] Socket closed without exit code\n2025-10-27 23:44:22.444 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:44:22.446 [info] [command][a0cc579e-4944-413b-847e-52bef706d92d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a0cc579e-4944-413b-847e-52bef706d92d""}\n2025-10-27 23:44:22.447 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][aa790df9-5f7a-413e-a4fe-7aeaa6040c7e] remote server not configured\n2025-10-27 23:44:22.447 [error] [command][a0cc579e-4944-413b-847e-52bef706d92d] Socket error: Error: read ECONNRESET\n2025-10-27 23:44:22.448 [info] [command][a0cc579e-4944-413b-847e-52bef706d92d] Socket close event received\n2025-10-27 23:44:22.448 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a0cc579e-4944-413b-847e-52bef706d92d] Socket closed without exit code\n2025-10-27 23:45:22.447 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:45:22.449 [info] [command][6a50a8b6-da8e-472c-a468-5003820fe97a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6a50a8b6-da8e-472c-a468-5003820fe97a""}\n2025-10-27 23:45:22.450 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][174ff2ce-eb3d-4c44-bec5-f08bbf68cc7c] remote server not configured\n2025-10-27 23:45:22.451 [error] [command][6a50a8b6-da8e-472c-a468-5003820fe97a] Socket error: Error: read ECONNRESET\n2025-10-27 23:45:22.451 [info] [command][6a50a8b6-da8e-472c-a468-5003820fe97a] Socket close event received\n2025-10-27 23:45:22.451 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6a50a8b6-da8e-472c-a468-5003820fe97a] Socket closed without exit code\n2025-10-27 23:46:22.461 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:46:22.463 [info] [command][0e4e1043-59b3-4ac0-9874-28a425842daf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0e4e1043-59b3-4ac0-9874-28a425842daf""}\n2025-10-27 23:46:22.464 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0fde04f0-e4ce-4410-a441-7b3ba276fab4] remote server not configured\n2025-10-27 23:46:22.464 [error] [command][0e4e1043-59b3-4ac0-9874-28a425842daf] Socket error: Error: read ECONNRESET\n2025-10-27 23:46:22.464 [info] [command][0e4e1043-59b3-4ac0-9874-28a425842daf] Socket close event received\n2025-10-27 23:46:22.465 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0e4e1043-59b3-4ac0-9874-28a425842daf] Socket closed without exit code\n2025-10-27 23:47:22.474 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:47:22.476 [info] [command][39474792-40bb-4a80-a7b4-4e90390fbc2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""39474792-40bb-4a80-a7b4-4e90390fbc2f""}\n2025-10-27 23:47:22.476 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][486a3774-7df5-44b1-864b-bae2d0850d0f] remote server not configured\n2025-10-27 23:47:22.477 [error] [command][39474792-40bb-4a80-a7b4-4e90390fbc2f] Socket error: Error: read ECONNRESET\n2025-10-27 23:47:22.477 [info] [command][39474792-40bb-4a80-a7b4-4e90390fbc2f] Socket close event received\n2025-10-27 23:47:22.477 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][39474792-40bb-4a80-a7b4-4e90390fbc2f] Socket closed without exit code\n2025-10-27 23:48:22.483 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:48:22.484 [info] [command][8e52c9dc-17d7-4edc-97f8-80518670689f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8e52c9dc-17d7-4edc-97f8-80518670689f""}\n2025-10-27 23:48:22.485 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a7d5defd-d170-4c5e-840e-dd784f4c8a09] remote server not configured\n2025-10-27 23:48:22.486 [error] [command][8e52c9dc-17d7-4edc-97f8-80518670689f] Socket error: Error: read ECONNRESET\n2025-10-27 23:48:22.486 [info] [command][8e52c9dc-17d7-4edc-97f8-80518670689f] Socket close event received\n2025-10-27 23:48:22.486 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8e52c9dc-17d7-4edc-97f8-80518670689f] Socket closed without exit code\n2025-10-27 23:49:22.495 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:49:22.497 [info] [command][c7f0b1f0-c3c1-4b29-8536-083475cbd82e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c7f0b1f0-c3c1-4b29-8536-083475cbd82e""}\n2025-10-27 23:49:22.498 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][aaf5ac77-b1d0-4d37-9015-95046ccd8a18] remote server not configured\n2025-10-27 23:49:22.498 [error] [command][c7f0b1f0-c3c1-4b29-8536-083475cbd82e] Socket error: Error: read ECONNRESET\n2025-10-27 23:49:22.498 [info] [command][c7f0b1f0-c3c1-4b29-8536-083475cbd82e] Socket close event received\n2025-10-27 23:49:22.499 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c7f0b1f0-c3c1-4b29-8536-083475cbd82e] Socket closed without exit code\n2025-10-27 23:50:22.509 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:50:22.512 [info] [command][5f26328b-be5c-457c-9127-2a2e0a0667a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5f26328b-be5c-457c-9127-2a2e0a0667a3""}\n2025-10-27 23:50:22.513 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b920423a-6b29-427b-bf3f-c27ada8e2214] remote server not configured\n2025-10-27 23:50:22.513 [error] [command][5f26328b-be5c-457c-9127-2a2e0a0667a3] Socket error: Error: read ECONNRESET\n2025-10-27 23:50:22.513 [info] [command][5f26328b-be5c-457c-9127-2a2e0a0667a3] Socket close event received\n2025-10-27 23:50:22.514 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5f26328b-be5c-457c-9127-2a2e0a0667a3] Socket closed without exit code\n2025-10-27 23:51:22.517 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:51:22.520 [info] [command][a2a361aa-86d4-4fc3-ab9f-22d4618bb0d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a2a361aa-86d4-4fc3-ab9f-22d4618bb0d0""}\n2025-10-27 23:51:22.521 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][110e48de-de27-43ee-9554-72b1e2295d40] remote server not configured\n2025-10-27 23:51:22.522 [error] [command][a2a361aa-86d4-4fc3-ab9f-22d4618bb0d0] Socket error: Error: read ECONNRESET\n2025-10-27 23:51:22.522 [info] [command][a2a361aa-86d4-4fc3-ab9f-22d4618bb0d0] Socket close event received\n2025-10-27 23:51:22.522 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a2a361aa-86d4-4fc3-ab9f-22d4618bb0d0] Socket closed without exit code\n2025-10-27 23:52:22.528 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:52:22.531 [info] [command][77ce3491-6f3e-4b0d-a31d-3b143123ab0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""77ce3491-6f3e-4b0d-a31d-3b143123ab0a""}\n2025-10-27 23:52:22.531 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6d5b0bf6-5e78-44ca-badf-d3f39b3a8bf4] remote server not configured\n2025-10-27 23:52:22.532 [error] [command][77ce3491-6f3e-4b0d-a31d-3b143123ab0a] Socket error: Error: read ECONNRESET\n2025-10-27 23:52:22.532 [info] [command][77ce3491-6f3e-4b0d-a31d-3b143123ab0a] Socket close event received\n2025-10-27 23:52:22.532 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][77ce3491-6f3e-4b0d-a31d-3b143123ab0a] Socket closed without exit code\n2025-10-27 23:53:22.541 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:53:22.543 [info] [command][e1beea02-0579-4cd8-869d-c5a6e309782b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e1beea02-0579-4cd8-869d-c5a6e309782b""}\n2025-10-27 23:53:22.544 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][637ef070-b764-460b-be49-4e1804e6e942] remote server not configured\n2025-10-27 23:53:22.544 [error] [command][e1beea02-0579-4cd8-869d-c5a6e309782b] Socket error: Error: read ECONNRESET\n2025-10-27 23:53:22.545 [info] [command][e1beea02-0579-4cd8-869d-c5a6e309782b] Socket close event received\n2025-10-27 23:53:22.545 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e1beea02-0579-4cd8-869d-c5a6e309782b] Socket closed without exit code\n2025-10-27 23:54:22.554 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:54:22.556 [info] [command][a7ea96ea-d8e7-47ff-b797-409f7bbddf7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a7ea96ea-d8e7-47ff-b797-409f7bbddf7a""}\n2025-10-27 23:54:22.557 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9dbe13df-036a-41c3-b79b-c86a24eda0e6] remote server not configured\n2025-10-27 23:54:22.558 [error] [command][a7ea96ea-d8e7-47ff-b797-409f7bbddf7a] Socket error: Error: read ECONNRESET\n2025-10-27 23:54:22.558 [info] [command][a7ea96ea-d8e7-47ff-b797-409f7bbddf7a] Socket close event received\n2025-10-27 23:54:22.558 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a7ea96ea-d8e7-47ff-b797-409f7bbddf7a] Socket closed without exit code\n2025-10-27 23:55:22.567 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:55:22.569 [info] [command][0b37b4e3-4991-4fc1-8c09-5f859fc759d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0b37b4e3-4991-4fc1-8c09-5f859fc759d6""}\n2025-10-27 23:55:22.570 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1d18c45d-dc37-4ca5-a499-a84f0a31de15] remote server not configured\n2025-10-27 23:55:22.570 [error] [command][0b37b4e3-4991-4fc1-8c09-5f859fc759d6] Socket error: Error: read ECONNRESET\n2025-10-27 23:55:22.570 [info] [command][0b37b4e3-4991-4fc1-8c09-5f859fc759d6] Socket close event received\n2025-10-27 23:55:22.571 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0b37b4e3-4991-4fc1-8c09-5f859fc759d6] Socket closed without exit code\n2025-10-27 23:56:22.580 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:56:22.582 [info] [command][b978b2ec-05c9-4724-b852-1b97bb828da6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b978b2ec-05c9-4724-b852-1b97bb828da6""}\n2025-10-27 23:56:22.583 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4dd1ac7e-788e-44db-9862-047875dc930c] remote server not configured\n2025-10-27 23:56:22.584 [error] [command][b978b2ec-05c9-4724-b852-1b97bb828da6] Socket error: Error: read ECONNRESET\n2025-10-27 23:56:22.584 [info] [command][b978b2ec-05c9-4724-b852-1b97bb828da6] Socket close event received\n2025-10-27 23:56:22.584 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b978b2ec-05c9-4724-b852-1b97bb828da6] Socket closed without exit code\n2025-10-27 23:57:22.594 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:57:22.596 [info] [command][7065815f-13b6-4e7f-9430-102b7f8d0205] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7065815f-13b6-4e7f-9430-102b7f8d0205""}\n2025-10-27 23:57:22.597 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][54e60bb1-eab8-4785-ba76-12f4dfc51a4a] remote server not configured\n2025-10-27 23:57:22.597 [error] [command][7065815f-13b6-4e7f-9430-102b7f8d0205] Socket error: Error: read ECONNRESET\n2025-10-27 23:57:22.598 [info] [command][7065815f-13b6-4e7f-9430-102b7f8d0205] Socket close event received\n2025-10-27 23:57:22.598 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7065815f-13b6-4e7f-9430-102b7f8d0205] Socket closed without exit code\n2025-10-27 23:58:22.602 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:58:22.604 [info] [command][53499094-108d-40c2-b8f2-bd3d1c451908] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""53499094-108d-40c2-b8f2-bd3d1c451908""}\n2025-10-27 23:58:22.605 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][97830ed9-135b-44c2-b143-d49731d44543] remote server not configured\n2025-10-27 23:58:22.605 [error] [command][53499094-108d-40c2-b8f2-bd3d1c451908] Socket error: Error: read ECONNRESET\n2025-10-27 23:58:22.605 [info] [command][53499094-108d-40c2-b8f2-bd3d1c451908] Socket close event received\n2025-10-27 23:58:22.606 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][53499094-108d-40c2-b8f2-bd3d1c451908] Socket closed without exit code\n2025-10-27 23:59:22.606 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-27 23:59:22.608 [info] [command][e2186a2a-4166-493d-985b-b325d1e5d956] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e2186a2a-4166-493d-985b-b325d1e5d956""}\n2025-10-27 23:59:22.609 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4841e7d3-59d8-40b8-8934-a7ba1fd57cf8] remote server not configured\n2025-10-27 23:59:22.610 [error] [command][e2186a2a-4166-493d-985b-b325d1e5d956] Socket error: Error: read ECONNRESET\n2025-10-27 23:59:22.610 [info] [command][e2186a2a-4166-493d-985b-b325d1e5d956] Socket close event received\n2025-10-27 23:59:22.610 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e2186a2a-4166-493d-985b-b325d1e5d956] Socket closed without exit code\n2025-10-28 00:00:22.620 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:00:22.622 [info] [command][292f4684-f3f5-46c4-bd78-fca4950c9759] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""292f4684-f3f5-46c4-bd78-fca4950c9759""}\n2025-10-28 00:00:22.623 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][39bae54e-e895-4c20-9796-9bc4a1f5eaa1] remote server not configured\n2025-10-28 00:00:22.624 [error] [command][292f4684-f3f5-46c4-bd78-fca4950c9759] Socket error: Error: read ECONNRESET\n2025-10-28 00:00:22.624 [info] [command][292f4684-f3f5-46c4-bd78-fca4950c9759] Socket close event received\n2025-10-28 00:00:22.624 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][292f4684-f3f5-46c4-bd78-fca4950c9759] Socket closed without exit code\n2025-10-28 00:01:22.634 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:01:22.636 [info] [command][41b1bbbe-3080-4cb7-a166-430222a12006] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""41b1bbbe-3080-4cb7-a166-430222a12006""}\n2025-10-28 00:01:22.637 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bc98757a-7c30-4f43-ba21-5595d7309886] remote server not configured\n2025-10-28 00:01:22.637 [error] [command][41b1bbbe-3080-4cb7-a166-430222a12006] Socket error: Error: read ECONNRESET\n2025-10-28 00:01:22.638 [info] [command][41b1bbbe-3080-4cb7-a166-430222a12006] Socket close event received\n2025-10-28 00:01:22.638 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][41b1bbbe-3080-4cb7-a166-430222a12006] Socket closed without exit code\n2025-10-28 00:02:22.646 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:02:22.648 [info] [command][19f51a53-928d-4102-ab1d-3f3931cb9597] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""19f51a53-928d-4102-ab1d-3f3931cb9597""}\n2025-10-28 00:02:22.649 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d8f16da1-bdd7-4ee9-ade9-472a7cef4b3c] remote server not configured\n2025-10-28 00:02:22.650 [error] [command][19f51a53-928d-4102-ab1d-3f3931cb9597] Socket error: Error: read ECONNRESET\n2025-10-28 00:02:22.650 [info] [command][19f51a53-928d-4102-ab1d-3f3931cb9597] Socket close event received\n2025-10-28 00:02:22.650 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][19f51a53-928d-4102-ab1d-3f3931cb9597] Socket closed without exit code\n2025-10-28 00:03:22.655 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:03:22.657 [info] [command][a003d683-ce87-46ed-af45-6b1733b1645b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a003d683-ce87-46ed-af45-6b1733b1645b""}\n2025-10-28 00:03:22.658 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a049969f-c6ce-4ef9-b82f-be511ca36ddf] remote server not configured\n2025-10-28 00:03:22.658 [error] [command][a003d683-ce87-46ed-af45-6b1733b1645b] Socket error: Error: read ECONNRESET\n2025-10-28 00:03:22.658 [info] [command][a003d683-ce87-46ed-af45-6b1733b1645b] Socket close event received\n2025-10-28 00:03:22.659 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a003d683-ce87-46ed-af45-6b1733b1645b] Socket closed without exit code\n2025-10-28 00:04:22.669 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:04:22.670 [info] [command][81a0563b-20d3-401b-ba42-564b102bcbce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""81a0563b-20d3-401b-ba42-564b102bcbce""}\n2025-10-28 00:04:22.671 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b5166592-9bea-4f1b-bc95-e49e11578fbc] remote server not configured\n2025-10-28 00:04:22.672 [error] [command][81a0563b-20d3-401b-ba42-564b102bcbce] Socket error: Error: read ECONNRESET\n2025-10-28 00:04:22.672 [info] [command][81a0563b-20d3-401b-ba42-564b102bcbce] Socket close event received\n2025-10-28 00:04:22.672 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][81a0563b-20d3-401b-ba42-564b102bcbce] Socket closed without exit code\n2025-10-28 00:05:22.677 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:05:22.678 [info] [command][326a3bbf-507c-476f-ae59-07825c39a5bc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""326a3bbf-507c-476f-ae59-07825c39a5bc""}\n2025-10-28 00:05:22.679 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5dfff759-d082-46f4-a702-c8b4a608a006] remote server not configured\n2025-10-28 00:05:22.680 [error] [command][326a3bbf-507c-476f-ae59-07825c39a5bc] Socket error: Error: read ECONNRESET\n2025-10-28 00:05:22.680 [info] [command][326a3bbf-507c-476f-ae59-07825c39a5bc] Socket close event received\n2025-10-28 00:05:22.680 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][326a3bbf-507c-476f-ae59-07825c39a5bc] Socket closed without exit code\n2025-10-28 00:06:22.685 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:06:22.687 [info] [command][0486254f-d024-48b1-901e-c7e494def27b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0486254f-d024-48b1-901e-c7e494def27b""}\n2025-10-28 00:06:22.688 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0060cb33-4f31-400c-aeda-65600f449ef5] remote server not configured\n2025-10-28 00:06:22.688 [error] [command][0486254f-d024-48b1-901e-c7e494def27b] Socket error: Error: read ECONNRESET\n2025-10-28 00:06:22.689 [info] [command][0486254f-d024-48b1-901e-c7e494def27b] Socket close event received\n2025-10-28 00:06:22.689 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0486254f-d024-48b1-901e-c7e494def27b] Socket closed without exit code\n2025-10-28 00:07:22.699 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:07:22.700 [info] [command][6af0bf9c-43ed-423b-ae3d-c0ea8c92a53f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6af0bf9c-43ed-423b-ae3d-c0ea8c92a53f""}\n2025-10-28 00:07:22.701 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c2241858-dfd8-427d-aa70-5d145b52adc9] remote server not configured\n2025-10-28 00:07:22.702 [error] [command][6af0bf9c-43ed-423b-ae3d-c0ea8c92a53f] Socket error: Error: read ECONNRESET\n2025-10-28 00:07:22.702 [info] [command][6af0bf9c-43ed-423b-ae3d-c0ea8c92a53f] Socket close event received\n2025-10-28 00:07:22.702 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6af0bf9c-43ed-423b-ae3d-c0ea8c92a53f] Socket closed without exit code\n2025-10-28 00:08:22.712 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:08:22.714 [info] [command][d52a4a13-34c1-4f48-9541-16f29f761dd9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d52a4a13-34c1-4f48-9541-16f29f761dd9""}\n2025-10-28 00:08:22.714 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d7d25529-8ce0-4848-aa8d-dc89eefc458a] remote server not configured\n2025-10-28 00:08:22.715 [error] [command][d52a4a13-34c1-4f48-9541-16f29f761dd9] Socket error: Error: read ECONNRESET\n2025-10-28 00:08:22.715 [info] [command][d52a4a13-34c1-4f48-9541-16f29f761dd9] Socket close event received\n2025-10-28 00:08:22.716 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d52a4a13-34c1-4f48-9541-16f29f761dd9] Socket closed without exit code\n2025-10-28 00:09:22.725 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:09:22.727 [info] [command][e8b736b9-d94c-4eb3-a4ee-0ec9be8e704b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e8b736b9-d94c-4eb3-a4ee-0ec9be8e704b""}\n2025-10-28 00:09:22.727 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1c878acf-4881-40a4-a998-343ba7bf8992] remote server not configured\n2025-10-28 00:09:22.728 [error] [command][e8b736b9-d94c-4eb3-a4ee-0ec9be8e704b] Socket error: Error: read ECONNRESET\n2025-10-28 00:09:22.728 [info] [command][e8b736b9-d94c-4eb3-a4ee-0ec9be8e704b] Socket close event received\n2025-10-28 00:09:22.729 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e8b736b9-d94c-4eb3-a4ee-0ec9be8e704b] Socket closed without exit code\n2025-10-28 00:10:22.732 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:10:22.734 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b107b46f-075e-4a82-8fe6-2c05157d6601] remote server not configured\n2025-10-28 00:10:22.734 [info] [command][08fb2824-5edc-46f2-bd7d-dba6c4571a27] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""08fb2824-5edc-46f2-bd7d-dba6c4571a27""}\n2025-10-28 00:10:22.735 [error] [command][08fb2824-5edc-46f2-bd7d-dba6c4571a27] Socket error: Error: read ECONNRESET\n2025-10-28 00:10:22.735 [info] [command][08fb2824-5edc-46f2-bd7d-dba6c4571a27] Socket close event received\n2025-10-28 00:10:22.735 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][08fb2824-5edc-46f2-bd7d-dba6c4571a27] Socket closed without exit code\n2025-10-28 00:11:22.745 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:11:22.747 [info] [command][c51ee9b2-ccd6-4910-9afe-c874aabce74d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c51ee9b2-ccd6-4910-9afe-c874aabce74d""}\n2025-10-28 00:11:22.748 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][acd09bf7-7d49-49d9-9b08-641f0abfc4ea] remote server not configured\n2025-10-28 00:11:22.749 [error] [command][c51ee9b2-ccd6-4910-9afe-c874aabce74d] Socket error: Error: read ECONNRESET\n2025-10-28 00:11:22.749 [info] [command][c51ee9b2-ccd6-4910-9afe-c874aabce74d] Socket close event received\n2025-10-28 00:11:22.749 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c51ee9b2-ccd6-4910-9afe-c874aabce74d] Socket closed without exit code\n2025-10-28 00:12:22.753 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:12:22.755 [info] [command][1cd63765-00d7-41d6-abf0-2b03538f573e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1cd63765-00d7-41d6-abf0-2b03538f573e""}\n2025-10-28 00:12:22.756 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bd96592c-ddab-4d41-b9b7-dfdb9caaa78f] remote server not configured\n2025-10-28 00:12:22.756 [error] [command][1cd63765-00d7-41d6-abf0-2b03538f573e] Socket error: Error: read ECONNRESET\n2025-10-28 00:12:22.757 [info] [command][1cd63765-00d7-41d6-abf0-2b03538f573e] Socket close event received\n2025-10-28 00:12:22.757 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1cd63765-00d7-41d6-abf0-2b03538f573e] Socket closed without exit code\n2025-10-28 00:13:22.776 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:13:22.778 [info] [command][0029ae6f-fd98-4564-9812-f13843eb92f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0029ae6f-fd98-4564-9812-f13843eb92f9""}\n2025-10-28 00:13:22.778 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2b8497d2-11b2-417d-ac1c-eb0b6a2dc7f4] remote server not configured\n2025-10-28 00:13:22.778 [error] [command][0029ae6f-fd98-4564-9812-f13843eb92f9] Socket error: Error: read ECONNRESET\n2025-10-28 00:13:22.778 [info] [command][0029ae6f-fd98-4564-9812-f13843eb92f9] Socket close event received\n2025-10-28 00:13:22.778 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0029ae6f-fd98-4564-9812-f13843eb92f9] Socket closed without exit code\n2025-10-28 00:14:22.788 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:14:22.790 [info] [command][6f41f80e-e88b-458d-9b77-bf8b25bbda81] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6f41f80e-e88b-458d-9b77-bf8b25bbda81""}\n2025-10-28 00:14:22.791 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][abf1ca3b-6985-451a-b6cf-817d771088f0] remote server not configured\n2025-10-28 00:14:22.791 [error] [command][6f41f80e-e88b-458d-9b77-bf8b25bbda81] Socket error: Error: read ECONNRESET\n2025-10-28 00:14:22.792 [info] [command][6f41f80e-e88b-458d-9b77-bf8b25bbda81] Socket close event received\n2025-10-28 00:14:22.792 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6f41f80e-e88b-458d-9b77-bf8b25bbda81] Socket closed without exit code\n2025-10-28 00:15:22.800 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:15:22.802 [info] [command][52435f00-c32b-4e99-be91-9a327e9e7d43] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""52435f00-c32b-4e99-be91-9a327e9e7d43""}\n2025-10-28 00:15:22.802 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][67c35838-cf88-4b96-a16d-722079e03d3d] remote server not configured\n2025-10-28 00:15:22.803 [error] [command][52435f00-c32b-4e99-be91-9a327e9e7d43] Socket error: Error: read ECONNRESET\n2025-10-28 00:15:22.803 [info] [command][52435f00-c32b-4e99-be91-9a327e9e7d43] Socket close event received\n2025-10-28 00:15:22.803 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][52435f00-c32b-4e99-be91-9a327e9e7d43] Socket closed without exit code\n2025-10-28 00:16:22.805 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:16:22.806 [info] [command][6bdeb19e-fe67-47fc-9be4-8e7f71b14902] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6bdeb19e-fe67-47fc-9be4-8e7f71b14902""}\n2025-10-28 00:16:22.807 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][822e26bb-7390-414d-8882-27e98fbccb47] remote server not configured\n2025-10-28 00:16:22.808 [error] [command][6bdeb19e-fe67-47fc-9be4-8e7f71b14902] Socket error: Error: read ECONNRESET\n2025-10-28 00:16:22.808 [info] [command][6bdeb19e-fe67-47fc-9be4-8e7f71b14902] Socket close event received\n2025-10-28 00:16:22.808 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6bdeb19e-fe67-47fc-9be4-8e7f71b14902] Socket closed without exit code\n2025-10-28 00:17:22.818 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:17:22.820 [info] [command][fc0bad9e-3adc-48d0-a02a-0d9e254683b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fc0bad9e-3adc-48d0-a02a-0d9e254683b6""}\n2025-10-28 00:17:22.820 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a23bc8bb-e477-4670-930f-4a712718c496] remote server not configured\n2025-10-28 00:17:22.821 [error] [command][fc0bad9e-3adc-48d0-a02a-0d9e254683b6] Socket error: Error: read ECONNRESET\n2025-10-28 00:17:22.821 [info] [command][fc0bad9e-3adc-48d0-a02a-0d9e254683b6] Socket close event received\n2025-10-28 00:17:22.821 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fc0bad9e-3adc-48d0-a02a-0d9e254683b6] Socket closed without exit code\n2025-10-28 00:18:22.826 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:18:22.828 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][260d5e1e-97b4-4eaa-a3ad-45f5754f050d] remote server not configured\n2025-10-28 00:18:22.829 [info] [command][5215de8b-3931-4061-9b52-871364f84b4f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5215de8b-3931-4061-9b52-871364f84b4f""}\n2025-10-28 00:18:22.830 [error] [command][5215de8b-3931-4061-9b52-871364f84b4f] Socket error: Error: read ECONNRESET\n2025-10-28 00:18:22.830 [info] [command][5215de8b-3931-4061-9b52-871364f84b4f] Socket close event received\n2025-10-28 00:18:22.830 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5215de8b-3931-4061-9b52-871364f84b4f] Socket closed without exit code\n2025-10-28 00:19:22.830 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:19:22.832 [info] [command][7088f0da-2eb9-42ef-abbe-4fb8dd89a903] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7088f0da-2eb9-42ef-abbe-4fb8dd89a903""}\n2025-10-28 00:19:22.833 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a9962e38-9407-4a1e-8c21-6644f70d618e] remote server not configured\n2025-10-28 00:19:22.833 [error] [command][7088f0da-2eb9-42ef-abbe-4fb8dd89a903] Socket error: Error: read ECONNRESET\n2025-10-28 00:19:22.833 [info] [command][7088f0da-2eb9-42ef-abbe-4fb8dd89a903] Socket close event received\n2025-10-28 00:19:22.834 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7088f0da-2eb9-42ef-abbe-4fb8dd89a903] Socket closed without exit code\n2025-10-28 00:20:22.843 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:20:22.845 [info] [command][320a92eb-3d2e-4f32-ac45-55e0ccbbf39e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""320a92eb-3d2e-4f32-ac45-55e0ccbbf39e""}\n2025-10-28 00:20:22.845 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c7994f0b-1f93-48fd-b33c-7df5f3123e77] remote server not configured\n2025-10-28 00:20:22.846 [error] [command][320a92eb-3d2e-4f32-ac45-55e0ccbbf39e] Socket error: Error: read ECONNRESET\n2025-10-28 00:20:22.846 [info] [command][320a92eb-3d2e-4f32-ac45-55e0ccbbf39e] Socket close event received\n2025-10-28 00:20:22.847 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][320a92eb-3d2e-4f32-ac45-55e0ccbbf39e] Socket closed without exit code\n2025-10-28 00:21:22.857 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:21:22.859 [info] [command][cd7d3244-a171-4394-b952-e6974e81487e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cd7d3244-a171-4394-b952-e6974e81487e""}\n2025-10-28 00:21:22.860 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][95238d33-3795-4a62-9973-6a3efdfc5309] remote server not configured\n2025-10-28 00:21:22.861 [error] [command][cd7d3244-a171-4394-b952-e6974e81487e] Socket error: Error: read ECONNRESET\n2025-10-28 00:21:22.861 [info] [command][cd7d3244-a171-4394-b952-e6974e81487e] Socket close event received\n2025-10-28 00:21:22.861 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cd7d3244-a171-4394-b952-e6974e81487e] Socket closed without exit code\n2025-10-28 00:22:22.868 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:22:22.871 [info] [command][83a118a2-e072-445f-97e3-169e6f93ab45] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""83a118a2-e072-445f-97e3-169e6f93ab45""}\n2025-10-28 00:22:22.871 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1da167b1-2817-4516-a5e5-cc0764c3c62d] remote server not configured\n2025-10-28 00:22:22.872 [error] [command][83a118a2-e072-445f-97e3-169e6f93ab45] Socket error: Error: read ECONNRESET\n2025-10-28 00:22:22.872 [info] [command][83a118a2-e072-445f-97e3-169e6f93ab45] Socket close event received\n2025-10-28 00:22:22.872 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][83a118a2-e072-445f-97e3-169e6f93ab45] Socket closed without exit code\n2025-10-28 00:23:22.879 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:23:22.880 [info] [command][388c3ae2-b22d-4f8f-9f58-e1b7ceb2a805] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""388c3ae2-b22d-4f8f-9f58-e1b7ceb2a805""}\n2025-10-28 00:23:22.881 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7a304d67-8709-4856-94c8-9c7a52cc6305] remote server not configured\n2025-10-28 00:23:22.881 [error] [command][388c3ae2-b22d-4f8f-9f58-e1b7ceb2a805] Socket error: Error: read ECONNRESET\n2025-10-28 00:23:22.881 [info] [command][388c3ae2-b22d-4f8f-9f58-e1b7ceb2a805] Socket close event received\n2025-10-28 00:23:22.882 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][388c3ae2-b22d-4f8f-9f58-e1b7ceb2a805] Socket closed without exit code\n2025-10-28 00:24:22.891 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:24:22.893 [info] [command][93af5b5e-bd60-435e-891d-5ec662788002] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""93af5b5e-bd60-435e-891d-5ec662788002""}\n2025-10-28 00:24:22.894 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][97e4b4d1-a320-4ce0-b388-cf74794b0de5] remote server not configured\n2025-10-28 00:24:22.894 [error] [command][93af5b5e-bd60-435e-891d-5ec662788002] Socket error: Error: read ECONNRESET\n2025-10-28 00:24:22.894 [info] [command][93af5b5e-bd60-435e-891d-5ec662788002] Socket close event received\n2025-10-28 00:24:22.894 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][93af5b5e-bd60-435e-891d-5ec662788002] Socket closed without exit code\n2025-10-28 00:25:22.901 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:25:22.903 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][14720075-564a-40af-8774-e751756023c9] remote server not configured\n2025-10-28 00:25:22.904 [info] [command][676e6c18-058f-473b-b952-bd9fb7de31d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""676e6c18-058f-473b-b952-bd9fb7de31d6""}\n2025-10-28 00:25:22.904 [error] [command][676e6c18-058f-473b-b952-bd9fb7de31d6] Socket error: Error: read ECONNRESET\n2025-10-28 00:25:22.904 [info] [command][676e6c18-058f-473b-b952-bd9fb7de31d6] Socket close event received\n2025-10-28 00:25:22.905 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][676e6c18-058f-473b-b952-bd9fb7de31d6] Socket closed without exit code\n2025-10-28 00:26:22.914 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:26:22.916 [info] [command][5afc3956-8c4e-4f66-9847-fe9dd4c10689] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5afc3956-8c4e-4f66-9847-fe9dd4c10689""}\n2025-10-28 00:26:22.916 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4bc72bee-b5fa-456a-a45f-91671512c893] remote server not configured\n2025-10-28 00:26:22.917 [error] [command][5afc3956-8c4e-4f66-9847-fe9dd4c10689] Socket error: Error: read ECONNRESET\n2025-10-28 00:26:22.917 [info] [command][5afc3956-8c4e-4f66-9847-fe9dd4c10689] Socket close event received\n2025-10-28 00:26:22.917 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5afc3956-8c4e-4f66-9847-fe9dd4c10689] Socket closed without exit code\n2025-10-28 00:27:22.920 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:27:22.922 [info] [command][7399bf63-60fa-4a56-adf8-db3237fa90a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7399bf63-60fa-4a56-adf8-db3237fa90a5""}\n2025-10-28 00:27:22.922 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3fe0da70-ebf7-4d19-b764-537cbafb85c7] remote server not configured\n2025-10-28 00:27:22.923 [error] [command][7399bf63-60fa-4a56-adf8-db3237fa90a5] Socket error: Error: read ECONNRESET\n2025-10-28 00:27:22.923 [info] [command][7399bf63-60fa-4a56-adf8-db3237fa90a5] Socket close event received\n2025-10-28 00:27:22.924 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7399bf63-60fa-4a56-adf8-db3237fa90a5] Socket closed without exit code\n2025-10-28 00:28:22.924 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:28:22.926 [info] [command][f29ec33b-55e1-4caf-96b1-911118a4dc21] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f29ec33b-55e1-4caf-96b1-911118a4dc21""}\n2025-10-28 00:28:22.927 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][32c8dc5e-0997-41e4-b356-d8e76ebeb1b7] remote server not configured\n2025-10-28 00:28:22.927 [error] [command][f29ec33b-55e1-4caf-96b1-911118a4dc21] Socket error: Error: read ECONNRESET\n2025-10-28 00:28:22.928 [info] [command][f29ec33b-55e1-4caf-96b1-911118a4dc21] Socket close event received\n2025-10-28 00:28:22.928 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f29ec33b-55e1-4caf-96b1-911118a4dc21] Socket closed without exit code\n2025-10-28 00:29:22.938 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:29:22.939 [info] [command][cc65775e-14f9-49b0-992c-97765a2497d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cc65775e-14f9-49b0-992c-97765a2497d1""}\n2025-10-28 00:29:22.940 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4954e57b-9983-46e7-b09a-bf4a2b40fde3] remote server not configured\n2025-10-28 00:29:22.941 [error] [command][cc65775e-14f9-49b0-992c-97765a2497d1] Socket error: Error: read ECONNRESET\n2025-10-28 00:29:22.941 [info] [command][cc65775e-14f9-49b0-992c-97765a2497d1] Socket close event received\n2025-10-28 00:29:22.941 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cc65775e-14f9-49b0-992c-97765a2497d1] Socket closed without exit code\n2025-10-28 00:30:22.948 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:30:22.950 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][290b7788-451c-4198-a1fe-688903cca80b] remote server not configured\n2025-10-28 00:30:22.950 [info] [command][5fd4bd11-1ab7-47b8-97dc-3048490dedb3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5fd4bd11-1ab7-47b8-97dc-3048490dedb3""}\n2025-10-28 00:30:22.951 [error] [command][5fd4bd11-1ab7-47b8-97dc-3048490dedb3] Socket error: Error: read ECONNRESET\n2025-10-28 00:30:22.951 [info] [command][5fd4bd11-1ab7-47b8-97dc-3048490dedb3] Socket close event received\n2025-10-28 00:30:22.951 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5fd4bd11-1ab7-47b8-97dc-3048490dedb3] Socket closed without exit code\n2025-10-28 00:31:22.961 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:31:22.963 [info] [command][b8e4cf6b-ae59-4324-867c-e7b09e0e2331] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b8e4cf6b-ae59-4324-867c-e7b09e0e2331""}\n2025-10-28 00:31:22.963 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ef3cf299-f5ef-4912-a9d3-185f345eda86] remote server not configured\n2025-10-28 00:31:22.964 [error] [command][b8e4cf6b-ae59-4324-867c-e7b09e0e2331] Socket error: Error: read ECONNRESET\n2025-10-28 00:31:22.964 [info] [command][b8e4cf6b-ae59-4324-867c-e7b09e0e2331] Socket close event received\n2025-10-28 00:31:22.964 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b8e4cf6b-ae59-4324-867c-e7b09e0e2331] Socket closed without exit code\n2025-10-28 00:32:22.974 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:32:22.977 [info] [command][28c2ed5f-e35f-4ddd-a789-64e0dc6f9296] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""28c2ed5f-e35f-4ddd-a789-64e0dc6f9296""}\n2025-10-28 00:32:22.978 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f8907907-60af-470a-90b1-00709d3d9990] remote server not configured\n2025-10-28 00:32:22.978 [error] [command][28c2ed5f-e35f-4ddd-a789-64e0dc6f9296] Socket error: Error: read ECONNRESET\n2025-10-28 00:32:22.978 [info] [command][28c2ed5f-e35f-4ddd-a789-64e0dc6f9296] Socket close event received\n2025-10-28 00:32:22.979 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][28c2ed5f-e35f-4ddd-a789-64e0dc6f9296] Socket closed without exit code\n2025-10-28 00:33:23.042 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:33:23.045 [info] [command][8968ea5c-6c86-483b-8e01-be7fe9da3f32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8968ea5c-6c86-483b-8e01-be7fe9da3f32""}\n2025-10-28 00:33:23.046 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bc1912dc-3c34-467e-a344-a2fda294ac2e] remote server not configured\n2025-10-28 00:33:23.046 [error] [command][8968ea5c-6c86-483b-8e01-be7fe9da3f32] Socket error: Error: read ECONNRESET\n2025-10-28 00:33:23.047 [info] [command][8968ea5c-6c86-483b-8e01-be7fe9da3f32] Socket close event received\n2025-10-28 00:33:23.047 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8968ea5c-6c86-483b-8e01-be7fe9da3f32] Socket closed without exit code\n2025-10-28 00:34:23.058 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:34:23.061 [info] [command][3bad4aab-3ff8-4c2b-94fa-3ffe0ad3540a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3bad4aab-3ff8-4c2b-94fa-3ffe0ad3540a""}\n2025-10-28 00:34:23.062 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][23f5205f-a42a-40ba-b071-94c8b66ac23c] remote server not configured\n2025-10-28 00:34:23.062 [error] [command][3bad4aab-3ff8-4c2b-94fa-3ffe0ad3540a] Socket error: Error: read ECONNRESET\n2025-10-28 00:34:23.062 [info] [command][3bad4aab-3ff8-4c2b-94fa-3ffe0ad3540a] Socket close event received\n2025-10-28 00:34:23.062 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3bad4aab-3ff8-4c2b-94fa-3ffe0ad3540a] Socket closed without exit code\n2025-10-28 00:35:23.069 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:35:23.072 [info] [command][dbe60961-7e6b-4d0f-a639-f5406f100b71] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dbe60961-7e6b-4d0f-a639-f5406f100b71""}\n2025-10-28 00:35:23.073 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][680d5d09-07ff-45cc-95e2-dd9651ae5d61] remote server not configured\n2025-10-28 00:35:23.073 [error] [command][dbe60961-7e6b-4d0f-a639-f5406f100b71] Socket error: Error: read ECONNRESET\n2025-10-28 00:35:23.073 [info] [command][dbe60961-7e6b-4d0f-a639-f5406f100b71] Socket close event received\n2025-10-28 00:35:23.073 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dbe60961-7e6b-4d0f-a639-f5406f100b71] Socket closed without exit code\n2025-10-28 00:36:23.084 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:36:23.085 [info] [command][b91a1eac-aa35-4360-9ded-dd14a79a1523] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b91a1eac-aa35-4360-9ded-dd14a79a1523""}\n2025-10-28 00:36:23.086 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c6993a6a-aab4-477c-9283-8093cd5522b3] remote server not configured\n2025-10-28 00:36:23.087 [error] [command][b91a1eac-aa35-4360-9ded-dd14a79a1523] Socket error: Error: read ECONNRESET\n2025-10-28 00:36:23.087 [info] [command][b91a1eac-aa35-4360-9ded-dd14a79a1523] Socket close event received\n2025-10-28 00:36:23.088 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b91a1eac-aa35-4360-9ded-dd14a79a1523] Socket closed without exit code\n2025-10-28 00:37:23.088 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:37:23.090 [info] [command][828e3cca-d591-4d15-9c8b-036bec761bf0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""828e3cca-d591-4d15-9c8b-036bec761bf0""}\n2025-10-28 00:37:23.091 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][489b87ce-a291-4ebd-b7ea-fa053c80fa88] remote server not configured\n2025-10-28 00:37:23.091 [error] [command][828e3cca-d591-4d15-9c8b-036bec761bf0] Socket error: Error: read ECONNRESET\n2025-10-28 00:37:23.091 [info] [command][828e3cca-d591-4d15-9c8b-036bec761bf0] Socket close event received\n2025-10-28 00:37:23.092 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][828e3cca-d591-4d15-9c8b-036bec761bf0] Socket closed without exit code\n2025-10-28 00:38:23.092 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:38:23.095 [info] [command][662e22c8-4e16-4b50-b108-d6a70ef057a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""662e22c8-4e16-4b50-b108-d6a70ef057a6""}\n2025-10-28 00:38:23.095 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][08133447-15cf-4468-9f4d-04b74fba767f] remote server not configured\n2025-10-28 00:38:23.096 [error] [command][662e22c8-4e16-4b50-b108-d6a70ef057a6] Socket error: Error: read ECONNRESET\n2025-10-28 00:38:23.096 [info] [command][662e22c8-4e16-4b50-b108-d6a70ef057a6] Socket close event received\n2025-10-28 00:38:23.096 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][662e22c8-4e16-4b50-b108-d6a70ef057a6] Socket closed without exit code\n2025-10-28 00:39:23.102 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:39:23.103 [info] [command][b9183e58-97dc-40b9-aa9f-608f86bb1900] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b9183e58-97dc-40b9-aa9f-608f86bb1900""}\n2025-10-28 00:39:23.104 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1e9fdab3-a2f2-44b1-9079-0866eeb03cb8] remote server not configured\n2025-10-28 00:39:23.105 [error] [command][b9183e58-97dc-40b9-aa9f-608f86bb1900] Socket error: Error: read ECONNRESET\n2025-10-28 00:39:23.105 [info] [command][b9183e58-97dc-40b9-aa9f-608f86bb1900] Socket close event received\n2025-10-28 00:39:23.105 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b9183e58-97dc-40b9-aa9f-608f86bb1900] Socket closed without exit code\n2025-10-28 00:40:23.116 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:40:23.119 [info] [command][22b9fd70-ea44-476f-9683-83b96977cf26] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""22b9fd70-ea44-476f-9683-83b96977cf26""}\n2025-10-28 00:40:23.120 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a17e5238-71fd-47d5-859c-e08389c301ca] remote server not configured\n2025-10-28 00:40:23.120 [error] [command][22b9fd70-ea44-476f-9683-83b96977cf26] Socket error: Error: read ECONNRESET\n2025-10-28 00:40:23.120 [info] [command][22b9fd70-ea44-476f-9683-83b96977cf26] Socket close event received\n2025-10-28 00:40:23.121 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][22b9fd70-ea44-476f-9683-83b96977cf26] Socket closed without exit code\n2025-10-28 00:41:23.126 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:41:23.128 [info] [command][c7c12239-007b-45e0-90e0-1cea158acc82] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c7c12239-007b-45e0-90e0-1cea158acc82""}\n2025-10-28 00:41:23.129 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8e07c701-fa7a-4f93-8a20-7ebcd238cbb7] remote server not configured\n2025-10-28 00:41:23.130 [error] [command][c7c12239-007b-45e0-90e0-1cea158acc82] Socket error: Error: read ECONNRESET\n2025-10-28 00:41:23.130 [info] [command][c7c12239-007b-45e0-90e0-1cea158acc82] Socket close event received\n2025-10-28 00:41:23.130 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c7c12239-007b-45e0-90e0-1cea158acc82] Socket closed without exit code\n2025-10-28 00:42:23.135 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:42:23.137 [info] [command][1318aaf6-86b9-4562-962d-ed2b90009d13] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1318aaf6-86b9-4562-962d-ed2b90009d13""}\n2025-10-28 00:42:23.137 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8aeef70c-24ab-4392-bb8d-18a801d466e4] remote server not configured\n2025-10-28 00:42:23.138 [error] [command][1318aaf6-86b9-4562-962d-ed2b90009d13] Socket error: Error: read ECONNRESET\n2025-10-28 00:42:23.138 [info] [command][1318aaf6-86b9-4562-962d-ed2b90009d13] Socket close event received\n2025-10-28 00:42:23.138 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1318aaf6-86b9-4562-962d-ed2b90009d13] Socket closed without exit code\n2025-10-28 00:43:23.142 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:43:23.144 [info] [command][33f5c0db-87e9-476d-9655-f95b089bb5be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""33f5c0db-87e9-476d-9655-f95b089bb5be""}\n2025-10-28 00:43:23.144 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5964d2e4-c976-4d14-a0be-a28ed066b3e7] remote server not configured\n2025-10-28 00:43:23.145 [error] [command][33f5c0db-87e9-476d-9655-f95b089bb5be] Socket error: Error: read ECONNRESET\n2025-10-28 00:43:23.145 [info] [command][33f5c0db-87e9-476d-9655-f95b089bb5be] Socket close event received\n2025-10-28 00:43:23.145 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][33f5c0db-87e9-476d-9655-f95b089bb5be] Socket closed without exit code\n2025-10-28 00:44:23.150 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:44:23.154 [info] [command][e0641ea1-42a5-4d98-b171-5f7aaa74a176] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e0641ea1-42a5-4d98-b171-5f7aaa74a176""}\n2025-10-28 00:44:23.155 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9d1c088a-13fd-4403-a878-241ce1dc1989] remote server not configured\n2025-10-28 00:44:23.155 [error] [command][e0641ea1-42a5-4d98-b171-5f7aaa74a176] Socket error: Error: read ECONNRESET\n2025-10-28 00:44:23.155 [info] [command][e0641ea1-42a5-4d98-b171-5f7aaa74a176] Socket close event received\n2025-10-28 00:44:23.155 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e0641ea1-42a5-4d98-b171-5f7aaa74a176] Socket closed without exit code\n2025-10-28 00:45:23.167 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:45:23.169 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0255bfeb-ee1d-4710-b0cb-4362ac51573c] remote server not configured\n2025-10-28 00:45:23.170 [info] [command][40bc0835-38c3-48f6-847e-66635b7bb9b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""40bc0835-38c3-48f6-847e-66635b7bb9b4""}\n2025-10-28 00:45:23.170 [error] [command][40bc0835-38c3-48f6-847e-66635b7bb9b4] Socket error: Error: read ECONNRESET\n2025-10-28 00:45:23.170 [info] [command][40bc0835-38c3-48f6-847e-66635b7bb9b4] Socket close event received\n2025-10-28 00:45:23.170 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][40bc0835-38c3-48f6-847e-66635b7bb9b4] Socket closed without exit code\n2025-10-28 00:46:23.181 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:46:23.183 [info] [command][6a9824bc-abf6-4e57-b008-1c0db8084705] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6a9824bc-abf6-4e57-b008-1c0db8084705""}\n2025-10-28 00:46:23.183 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a3fd2273-73a6-4ee1-8237-3c18c4de60df] remote server not configured\n2025-10-28 00:46:23.184 [error] [command][6a9824bc-abf6-4e57-b008-1c0db8084705] Socket error: Error: read ECONNRESET\n2025-10-28 00:46:23.184 [info] [command][6a9824bc-abf6-4e57-b008-1c0db8084705] Socket close event received\n2025-10-28 00:46:23.184 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6a9824bc-abf6-4e57-b008-1c0db8084705] Socket closed without exit code\n2025-10-28 00:47:23.187 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:47:23.189 [info] [command][84f7417d-095b-4fc8-af5d-e5ef14448fb4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""84f7417d-095b-4fc8-af5d-e5ef14448fb4""}\n2025-10-28 00:47:23.190 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d3e51af7-135f-457f-b6f2-f94af78e227b] remote server not configured\n2025-10-28 00:47:23.191 [error] [command][84f7417d-095b-4fc8-af5d-e5ef14448fb4] Socket error: Error: read ECONNRESET\n2025-10-28 00:47:23.191 [info] [command][84f7417d-095b-4fc8-af5d-e5ef14448fb4] Socket close event received\n2025-10-28 00:47:23.191 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][84f7417d-095b-4fc8-af5d-e5ef14448fb4] Socket closed without exit code\n2025-10-28 00:48:23.191 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:48:23.193 [info] [command][0d8342de-f6c0-41d4-94a6-176ea2280649] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0d8342de-f6c0-41d4-94a6-176ea2280649""}\n2025-10-28 00:48:23.193 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f87b0805-40f3-45f9-bd35-fcd3d5539436] remote server not configured\n2025-10-28 00:48:23.194 [error] [command][0d8342de-f6c0-41d4-94a6-176ea2280649] Socket error: Error: read ECONNRESET\n2025-10-28 00:48:23.194 [info] [command][0d8342de-f6c0-41d4-94a6-176ea2280649] Socket close event received\n2025-10-28 00:48:23.194 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0d8342de-f6c0-41d4-94a6-176ea2280649] Socket closed without exit code\n2025-10-28 00:49:23.199 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:49:23.201 [info] [command][c2c3946d-5792-4d5d-9aff-3d76cd125c08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c2c3946d-5792-4d5d-9aff-3d76cd125c08""}\n2025-10-28 00:49:23.202 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][65c5d89f-4bff-4d06-9d10-344bf0d9956f] remote server not configured\n2025-10-28 00:49:23.202 [error] [command][c2c3946d-5792-4d5d-9aff-3d76cd125c08] Socket error: Error: read ECONNRESET\n2025-10-28 00:49:23.203 [info] [command][c2c3946d-5792-4d5d-9aff-3d76cd125c08] Socket close event received\n2025-10-28 00:49:23.203 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c2c3946d-5792-4d5d-9aff-3d76cd125c08] Socket closed without exit code\n2025-10-28 00:50:23.214 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:50:23.217 [info] [command][7ba87cf8-9e40-400c-bb26-860e1ae33fc2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7ba87cf8-9e40-400c-bb26-860e1ae33fc2""}\n2025-10-28 00:50:23.217 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][af3fee13-ab52-42ab-8bde-03895bae46e3] remote server not configured\n2025-10-28 00:50:23.218 [error] [command][7ba87cf8-9e40-400c-bb26-860e1ae33fc2] Socket error: Error: read ECONNRESET\n2025-10-28 00:50:23.218 [info] [command][7ba87cf8-9e40-400c-bb26-860e1ae33fc2] Socket close event received\n2025-10-28 00:50:23.218 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7ba87cf8-9e40-400c-bb26-860e1ae33fc2] Socket closed without exit code\n2025-10-28 00:51:23.221 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:51:23.223 [info] [command][98b98a3b-cc64-4cfe-9ec1-4c1ee0a3131f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""98b98a3b-cc64-4cfe-9ec1-4c1ee0a3131f""}\n2025-10-28 00:51:23.224 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9cfb6d5e-d188-4e9f-ad7a-f73bc22c87ea] remote server not configured\n2025-10-28 00:51:23.224 [error] [command][98b98a3b-cc64-4cfe-9ec1-4c1ee0a3131f] Socket error: Error: read ECONNRESET\n2025-10-28 00:51:23.225 [info] [command][98b98a3b-cc64-4cfe-9ec1-4c1ee0a3131f] Socket close event received\n2025-10-28 00:51:23.225 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][98b98a3b-cc64-4cfe-9ec1-4c1ee0a3131f] Socket closed without exit code\n2025-10-28 00:52:23.226 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:52:23.227 [info] [command][f1e853f6-49fb-49b0-b89c-64b207e20712] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f1e853f6-49fb-49b0-b89c-64b207e20712""}\n2025-10-28 00:52:23.227 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5ce1b448-9a31-43e0-99d6-6d96901528a9] remote server not configured\n2025-10-28 00:52:23.227 [error] [command][f1e853f6-49fb-49b0-b89c-64b207e20712] Socket error: Error: read ECONNRESET\n2025-10-28 00:52:23.227 [info] [command][f1e853f6-49fb-49b0-b89c-64b207e20712] Socket close event received\n2025-10-28 00:52:23.227 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f1e853f6-49fb-49b0-b89c-64b207e20712] Socket closed without exit code\n2025-10-28 00:53:23.230 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:53:23.232 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f63e21e6-f867-4463-b3a2-c9b512fae19d] remote server not configured\n2025-10-28 00:53:23.233 [info] [command][f9413dac-30d3-4c61-99a2-d29e73319bb8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f9413dac-30d3-4c61-99a2-d29e73319bb8""}\n2025-10-28 00:53:23.233 [error] [command][f9413dac-30d3-4c61-99a2-d29e73319bb8] Socket error: Error: read ECONNRESET\n2025-10-28 00:53:23.234 [info] [command][f9413dac-30d3-4c61-99a2-d29e73319bb8] Socket close event received\n2025-10-28 00:53:23.234 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f9413dac-30d3-4c61-99a2-d29e73319bb8] Socket closed without exit code\n2025-10-28 00:54:23.238 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:54:23.240 [info] [command][216a7e70-85b5-4db6-8389-f25f5bc86a1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""216a7e70-85b5-4db6-8389-f25f5bc86a1e""}\n2025-10-28 00:54:23.240 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4eb55781-f4d2-4e39-bb16-dbf02b54c0bf] remote server not configured\n2025-10-28 00:54:23.241 [error] [command][216a7e70-85b5-4db6-8389-f25f5bc86a1e] Socket error: Error: read ECONNRESET\n2025-10-28 00:54:23.241 [info] [command][216a7e70-85b5-4db6-8389-f25f5bc86a1e] Socket close event received\n2025-10-28 00:54:23.241 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][216a7e70-85b5-4db6-8389-f25f5bc86a1e] Socket closed without exit code\n2025-10-28 00:55:23.251 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:55:23.253 [info] [command][36959e68-b5e9-4163-a92e-d053753870c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""36959e68-b5e9-4163-a92e-d053753870c6""}\n2025-10-28 00:55:23.254 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5987b1eb-db58-47e5-9a59-fc683f9ee572] remote server not configured\n2025-10-28 00:55:23.254 [error] [command][36959e68-b5e9-4163-a92e-d053753870c6] Socket error: Error: read ECONNRESET\n2025-10-28 00:55:23.254 [info] [command][36959e68-b5e9-4163-a92e-d053753870c6] Socket close event received\n2025-10-28 00:55:23.255 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][36959e68-b5e9-4163-a92e-d053753870c6] Socket closed without exit code\n2025-10-28 00:56:23.264 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:56:23.265 [info] [command][3dbf75c4-0c1d-4296-a94c-ffc7b05f0c86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3dbf75c4-0c1d-4296-a94c-ffc7b05f0c86""}\n2025-10-28 00:56:23.266 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][180027ac-a6cd-4752-b0bc-503bfa19ad3b] remote server not configured\n2025-10-28 00:56:23.266 [error] [command][3dbf75c4-0c1d-4296-a94c-ffc7b05f0c86] Socket error: Error: read ECONNRESET\n2025-10-28 00:56:23.267 [info] [command][3dbf75c4-0c1d-4296-a94c-ffc7b05f0c86] Socket close event received\n2025-10-28 00:56:23.267 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3dbf75c4-0c1d-4296-a94c-ffc7b05f0c86] Socket closed without exit code\n2025-10-28 00:57:23.277 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:57:23.279 [info] [command][3092e02c-8bc1-442b-873a-d8569d89914d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3092e02c-8bc1-442b-873a-d8569d89914d""}\n2025-10-28 00:57:23.280 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][98a090f3-eb30-4206-81d4-8aea6d503513] remote server not configured\n2025-10-28 00:57:23.281 [error] [command][3092e02c-8bc1-442b-873a-d8569d89914d] Socket error: Error: read ECONNRESET\n2025-10-28 00:57:23.281 [info] [command][3092e02c-8bc1-442b-873a-d8569d89914d] Socket close event received\n2025-10-28 00:57:23.281 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3092e02c-8bc1-442b-873a-d8569d89914d] Socket closed without exit code\n2025-10-28 00:58:23.292 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:58:23.293 [info] [command][3e684319-bdbe-4b79-9790-27884ff63cb9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3e684319-bdbe-4b79-9790-27884ff63cb9""}\n2025-10-28 00:58:23.294 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fd2d4f96-b73e-4b79-a9b2-f9b50f7d0095] remote server not configured\n2025-10-28 00:58:23.294 [error] [command][3e684319-bdbe-4b79-9790-27884ff63cb9] Socket error: Error: read ECONNRESET\n2025-10-28 00:58:23.294 [info] [command][3e684319-bdbe-4b79-9790-27884ff63cb9] Socket close event received\n2025-10-28 00:58:23.295 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3e684319-bdbe-4b79-9790-27884ff63cb9] Socket closed without exit code\n2025-10-28 00:59:23.296 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 00:59:23.298 [info] [command][a5dceb21-f70c-4c93-8eff-4d2c8d58d0a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a5dceb21-f70c-4c93-8eff-4d2c8d58d0a3""}\n2025-10-28 00:59:23.299 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fe7cbed4-b94d-4021-8b3b-d9e3f744fa88] remote server not configured\n2025-10-28 00:59:23.299 [error] [command][a5dceb21-f70c-4c93-8eff-4d2c8d58d0a3] Socket error: Error: read ECONNRESET\n2025-10-28 00:59:23.300 [info] [command][a5dceb21-f70c-4c93-8eff-4d2c8d58d0a3] Socket close event received\n2025-10-28 00:59:23.300 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a5dceb21-f70c-4c93-8eff-4d2c8d58d0a3] Socket closed without exit code\n2025-10-28 01:00:23.308 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:00:23.311 [info] [command][7375d3de-aebc-4dce-81a1-31d9630928aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7375d3de-aebc-4dce-81a1-31d9630928aa""}\n2025-10-28 01:00:23.311 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0cd354d4-a03e-419f-8a51-0a879abde90d] remote server not configured\n2025-10-28 01:00:23.312 [error] [command][7375d3de-aebc-4dce-81a1-31d9630928aa] Socket error: Error: read ECONNRESET\n2025-10-28 01:00:23.312 [info] [command][7375d3de-aebc-4dce-81a1-31d9630928aa] Socket close event received\n2025-10-28 01:00:23.313 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7375d3de-aebc-4dce-81a1-31d9630928aa] Socket closed without exit code\n2025-10-28 01:01:23.323 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:01:23.325 [info] [command][e03c9c1a-b547-4c0e-a91f-1db4a564f8d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e03c9c1a-b547-4c0e-a91f-1db4a564f8d5""}\n2025-10-28 01:01:23.326 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bd80c10d-db44-4a70-8c7e-274132e91939] remote server not configured\n2025-10-28 01:01:23.326 [error] [command][e03c9c1a-b547-4c0e-a91f-1db4a564f8d5] Socket error: Error: read ECONNRESET\n2025-10-28 01:01:23.326 [info] [command][e03c9c1a-b547-4c0e-a91f-1db4a564f8d5] Socket close event received\n2025-10-28 01:01:23.327 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e03c9c1a-b547-4c0e-a91f-1db4a564f8d5] Socket closed without exit code\n2025-10-28 01:02:23.336 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:02:23.339 [info] [command][a6e3d402-7a52-4077-95bb-5285e61e7e92] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a6e3d402-7a52-4077-95bb-5285e61e7e92""}\n2025-10-28 01:02:23.339 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4b2191a8-65f9-4c25-befa-7e62d1d791b6] remote server not configured\n2025-10-28 01:02:23.340 [error] [command][a6e3d402-7a52-4077-95bb-5285e61e7e92] Socket error: Error: read ECONNRESET\n2025-10-28 01:02:23.340 [info] [command][a6e3d402-7a52-4077-95bb-5285e61e7e92] Socket close event received\n2025-10-28 01:02:23.340 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a6e3d402-7a52-4077-95bb-5285e61e7e92] Socket closed without exit code\n2025-10-28 01:03:23.350 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:03:23.352 [info] [command][a9636361-4900-4682-b82f-a79193ee1bc7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a9636361-4900-4682-b82f-a79193ee1bc7""}\n2025-10-28 01:03:23.353 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3a8a802e-641a-48c0-9599-627239a34d41] remote server not configured\n2025-10-28 01:03:23.353 [error] [command][a9636361-4900-4682-b82f-a79193ee1bc7] Socket error: Error: read ECONNRESET\n2025-10-28 01:03:23.353 [info] [command][a9636361-4900-4682-b82f-a79193ee1bc7] Socket close event received\n2025-10-28 01:03:23.354 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a9636361-4900-4682-b82f-a79193ee1bc7] Socket closed without exit code\n2025-10-28 01:04:23.355 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:04:23.357 [info] [command][ca93887c-6b7e-4ce9-93ed-fdb402a574da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ca93887c-6b7e-4ce9-93ed-fdb402a574da""}\n2025-10-28 01:04:23.358 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ee3dc15a-3067-4ff7-9956-76f9c0a9a6f5] remote server not configured\n2025-10-28 01:04:23.359 [error] [command][ca93887c-6b7e-4ce9-93ed-fdb402a574da] Socket error: Error: read ECONNRESET\n2025-10-28 01:04:23.359 [info] [command][ca93887c-6b7e-4ce9-93ed-fdb402a574da] Socket close event received\n2025-10-28 01:04:23.359 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ca93887c-6b7e-4ce9-93ed-fdb402a574da] Socket closed without exit code\n2025-10-28 01:05:23.369 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:05:23.372 [info] [command][e86b00ad-25a6-4b62-8c5f-64ddc23625ee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e86b00ad-25a6-4b62-8c5f-64ddc23625ee""}\n2025-10-28 01:05:23.373 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c5c74695-183b-4c74-8c91-88a039777c0e] remote server not configured\n2025-10-28 01:05:23.373 [error] [command][e86b00ad-25a6-4b62-8c5f-64ddc23625ee] Socket error: Error: read ECONNRESET\n2025-10-28 01:05:23.373 [info] [command][e86b00ad-25a6-4b62-8c5f-64ddc23625ee] Socket close event received\n2025-10-28 01:05:23.373 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e86b00ad-25a6-4b62-8c5f-64ddc23625ee] Socket closed without exit code\n2025-10-28 01:06:23.384 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:06:23.386 [info] [command][06f48b1d-0658-4cef-9d4e-81bca8e099fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""06f48b1d-0658-4cef-9d4e-81bca8e099fe""}\n2025-10-28 01:06:23.386 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][51a2b8c8-5574-4934-ac5f-4af476ebec76] remote server not configured\n2025-10-28 01:06:23.387 [error] [command][06f48b1d-0658-4cef-9d4e-81bca8e099fe] Socket error: Error: read ECONNRESET\n2025-10-28 01:06:23.387 [info] [command][06f48b1d-0658-4cef-9d4e-81bca8e099fe] Socket close event received\n2025-10-28 01:06:23.388 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][06f48b1d-0658-4cef-9d4e-81bca8e099fe] Socket closed without exit code\n2025-10-28 01:07:23.390 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:07:23.392 [info] [command][85f7c7b9-5339-477b-86a0-50f6a9bd08aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""85f7c7b9-5339-477b-86a0-50f6a9bd08aa""}\n2025-10-28 01:07:23.393 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][01cda41f-29fc-42d4-aab9-edfea9650114] remote server not configured\n2025-10-28 01:07:23.394 [error] [command][85f7c7b9-5339-477b-86a0-50f6a9bd08aa] Socket error: Error: read ECONNRESET\n2025-10-28 01:07:23.394 [info] [command][85f7c7b9-5339-477b-86a0-50f6a9bd08aa] Socket close event received\n2025-10-28 01:07:23.394 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][85f7c7b9-5339-477b-86a0-50f6a9bd08aa] Socket closed without exit code\n2025-10-28 01:08:23.397 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:08:23.399 [info] [command][0da28b75-063c-46b5-a5e8-010863068111] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0da28b75-063c-46b5-a5e8-010863068111""}\n2025-10-28 01:08:23.399 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b23a684a-b365-4caf-809a-87cf38993798] remote server not configured\n2025-10-28 01:08:23.400 [error] [command][0da28b75-063c-46b5-a5e8-010863068111] Socket error: Error: read ECONNRESET\n2025-10-28 01:08:23.400 [info] [command][0da28b75-063c-46b5-a5e8-010863068111] Socket close event received\n2025-10-28 01:08:23.400 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0da28b75-063c-46b5-a5e8-010863068111] Socket closed without exit code\n2025-10-28 01:09:23.410 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:09:23.412 [info] [command][e9c58285-0625-4531-a63e-c315e09bccb3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e9c58285-0625-4531-a63e-c315e09bccb3""}\n2025-10-28 01:09:23.413 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][870c1bb0-50fa-4b1f-af89-f3cfffe54dd7] remote server not configured\n2025-10-28 01:09:23.413 [error] [command][e9c58285-0625-4531-a63e-c315e09bccb3] Socket error: Error: read ECONNRESET\n2025-10-28 01:09:23.414 [info] [command][e9c58285-0625-4531-a63e-c315e09bccb3] Socket close event received\n2025-10-28 01:09:23.414 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e9c58285-0625-4531-a63e-c315e09bccb3] Socket closed without exit code\n2025-10-28 01:10:23.424 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:10:23.426 [info] [command][d4139b05-e1a7-4ae8-90b8-47fb04ed766e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d4139b05-e1a7-4ae8-90b8-47fb04ed766e""}\n2025-10-28 01:10:23.426 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f0395c30-6650-4081-a2a7-d1c26676e9b8] remote server not configured\n2025-10-28 01:10:23.427 [error] [command][d4139b05-e1a7-4ae8-90b8-47fb04ed766e] Socket error: Error: read ECONNRESET\n2025-10-28 01:10:23.427 [info] [command][d4139b05-e1a7-4ae8-90b8-47fb04ed766e] Socket close event received\n2025-10-28 01:10:23.427 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d4139b05-e1a7-4ae8-90b8-47fb04ed766e] Socket closed without exit code\n2025-10-28 01:11:23.431 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:11:23.433 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][770f652f-eeb4-4c78-af4f-8518bb94feff] remote server not configured\n2025-10-28 01:11:23.434 [info] [command][eea015e5-a431-41f0-970e-a44199444443] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""eea015e5-a431-41f0-970e-a44199444443""}\n2025-10-28 01:11:23.435 [error] [command][eea015e5-a431-41f0-970e-a44199444443] Socket error: Error: read ECONNRESET\n2025-10-28 01:11:23.435 [info] [command][eea015e5-a431-41f0-970e-a44199444443] Socket close event received\n2025-10-28 01:11:23.435 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][eea015e5-a431-41f0-970e-a44199444443] Socket closed without exit code\n2025-10-28 01:12:23.440 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:12:23.442 [info] [command][4d23c07c-7283-4827-8711-11859e6c49ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4d23c07c-7283-4827-8711-11859e6c49ef""}\n2025-10-28 01:12:23.443 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][771441e7-01bb-4687-81ea-06609cd14fc7] remote server not configured\n2025-10-28 01:12:23.443 [error] [command][4d23c07c-7283-4827-8711-11859e6c49ef] Socket error: Error: read ECONNRESET\n2025-10-28 01:12:23.443 [info] [command][4d23c07c-7283-4827-8711-11859e6c49ef] Socket close event received\n2025-10-28 01:12:23.444 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4d23c07c-7283-4827-8711-11859e6c49ef] Socket closed without exit code\n2025-10-28 01:13:23.454 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:13:23.455 [info] [command][08e81ab2-d31d-4f72-93fc-2ba4fc36a128] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""08e81ab2-d31d-4f72-93fc-2ba4fc36a128""}\n2025-10-28 01:13:23.456 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][104dc8b9-c0e8-43b1-809c-9e796cedcc91] remote server not configured\n2025-10-28 01:13:23.457 [error] [command][08e81ab2-d31d-4f72-93fc-2ba4fc36a128] Socket error: Error: read ECONNRESET\n2025-10-28 01:13:23.457 [info] [command][08e81ab2-d31d-4f72-93fc-2ba4fc36a128] Socket close event received\n2025-10-28 01:13:23.457 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][08e81ab2-d31d-4f72-93fc-2ba4fc36a128] Socket closed without exit code\n2025-10-28 01:14:23.467 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:14:23.469 [info] [command][8e93e19e-f663-4be0-a250-108cb474749a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8e93e19e-f663-4be0-a250-108cb474749a""}\n2025-10-28 01:14:23.470 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9d4f6073-b583-4c59-bbbf-0d69048febd4] remote server not configured\n2025-10-28 01:14:23.470 [error] [command][8e93e19e-f663-4be0-a250-108cb474749a] Socket error: Error: read ECONNRESET\n2025-10-28 01:14:23.470 [info] [command][8e93e19e-f663-4be0-a250-108cb474749a] Socket close event received\n2025-10-28 01:14:23.470 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8e93e19e-f663-4be0-a250-108cb474749a] Socket closed without exit code\n2025-10-28 01:15:23.473 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:15:23.475 [info] [command][f0a66c58-02c9-452c-bd74-2981701cb031] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f0a66c58-02c9-452c-bd74-2981701cb031""}\n2025-10-28 01:15:23.475 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][89a24629-c435-4e14-a010-342c5929e830] remote server not configured\n2025-10-28 01:15:23.476 [error] [command][f0a66c58-02c9-452c-bd74-2981701cb031] Socket error: Error: read ECONNRESET\n2025-10-28 01:15:23.476 [info] [command][f0a66c58-02c9-452c-bd74-2981701cb031] Socket close event received\n2025-10-28 01:15:23.476 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f0a66c58-02c9-452c-bd74-2981701cb031] Socket closed without exit code\n2025-10-28 01:16:23.487 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:16:23.489 [info] [command][31cfbc16-6be1-45f2-9e62-07be8859ae50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""31cfbc16-6be1-45f2-9e62-07be8859ae50""}\n2025-10-28 01:16:23.489 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][41a070dd-ba6d-466c-a44e-1ad618a5ac99] remote server not configured\n2025-10-28 01:16:23.490 [error] [command][31cfbc16-6be1-45f2-9e62-07be8859ae50] Socket error: Error: read ECONNRESET\n2025-10-28 01:16:23.490 [info] [command][31cfbc16-6be1-45f2-9e62-07be8859ae50] Socket close event received\n2025-10-28 01:16:23.491 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][31cfbc16-6be1-45f2-9e62-07be8859ae50] Socket closed without exit code\n2025-10-28 01:17:23.484 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:17:23.485 [info] [command][fd975f8c-e7d3-4f0c-bf18-c2a070ce4ddd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fd975f8c-e7d3-4f0c-bf18-c2a070ce4ddd""}\n2025-10-28 01:17:23.487 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][211bed51-d388-46a2-96e3-fb1ac185547b] remote server not configured\n2025-10-28 01:17:23.487 [error] [command][fd975f8c-e7d3-4f0c-bf18-c2a070ce4ddd] Socket error: Error: read ECONNRESET\n2025-10-28 01:17:23.488 [info] [command][fd975f8c-e7d3-4f0c-bf18-c2a070ce4ddd] Socket close event received\n2025-10-28 01:17:23.488 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fd975f8c-e7d3-4f0c-bf18-c2a070ce4ddd] Socket closed without exit code\n2025-10-28 01:18:23.482 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:18:23.483 [info] [command][7da876ab-4ed5-47c0-8af2-8d86cb319fb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7da876ab-4ed5-47c0-8af2-8d86cb319fb5""}\n2025-10-28 01:18:23.484 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][607fd465-3c36-4099-b78b-de9acaf452c9] remote server not configured\n2025-10-28 01:18:23.485 [error] [command][7da876ab-4ed5-47c0-8af2-8d86cb319fb5] Socket error: Error: read ECONNRESET\n2025-10-28 01:18:23.485 [info] [command][7da876ab-4ed5-47c0-8af2-8d86cb319fb5] Socket close event received\n2025-10-28 01:18:23.486 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7da876ab-4ed5-47c0-8af2-8d86cb319fb5] Socket closed without exit code\n2025-10-28 01:19:23.488 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:19:23.489 [info] [command][07211979-8b10-4035-82de-e5382335021b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""07211979-8b10-4035-82de-e5382335021b""}\n2025-10-28 01:19:23.490 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4d894619-78aa-448c-87ea-756c925af7d4] remote server not configured\n2025-10-28 01:19:23.490 [error] [command][07211979-8b10-4035-82de-e5382335021b] Socket error: Error: read ECONNRESET\n2025-10-28 01:19:23.490 [info] [command][07211979-8b10-4035-82de-e5382335021b] Socket close event received\n2025-10-28 01:19:23.491 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][07211979-8b10-4035-82de-e5382335021b] Socket closed without exit code\n2025-10-28 01:20:23.496 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:20:23.498 [info] [command][ba21a9aa-855b-417a-aeb5-ac142ef65ddb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ba21a9aa-855b-417a-aeb5-ac142ef65ddb""}\n2025-10-28 01:20:23.499 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8e9f2123-17d1-4155-8029-1540aa792d80] remote server not configured\n2025-10-28 01:20:23.499 [error] [command][ba21a9aa-855b-417a-aeb5-ac142ef65ddb] Socket error: Error: read ECONNRESET\n2025-10-28 01:20:23.500 [info] [command][ba21a9aa-855b-417a-aeb5-ac142ef65ddb] Socket close event received\n2025-10-28 01:20:23.500 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ba21a9aa-855b-417a-aeb5-ac142ef65ddb] Socket closed without exit code\n2025-10-28 01:21:23.508 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:21:23.509 [info] [command][d4db2c6b-7a60-4d21-bac8-9715d77b2aaf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d4db2c6b-7a60-4d21-bac8-9715d77b2aaf""}\n2025-10-28 01:21:23.510 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4e780212-e60e-4b95-bf33-320c1f0ab00a] remote server not configured\n2025-10-28 01:21:23.511 [error] [command][d4db2c6b-7a60-4d21-bac8-9715d77b2aaf] Socket error: Error: read ECONNRESET\n2025-10-28 01:21:23.511 [info] [command][d4db2c6b-7a60-4d21-bac8-9715d77b2aaf] Socket close event received\n2025-10-28 01:21:23.511 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d4db2c6b-7a60-4d21-bac8-9715d77b2aaf] Socket closed without exit code\n2025-10-28 01:22:23.521 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:22:23.524 [info] [command][1a033183-b2ac-4d02-bcd6-d255430d15d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1a033183-b2ac-4d02-bcd6-d255430d15d8""}\n2025-10-28 01:22:23.524 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2bde8299-c536-4bbd-a5d8-5e086103d728] remote server not configured\n2025-10-28 01:22:23.525 [error] [command][1a033183-b2ac-4d02-bcd6-d255430d15d8] Socket error: Error: read ECONNRESET\n2025-10-28 01:22:23.525 [info] [command][1a033183-b2ac-4d02-bcd6-d255430d15d8] Socket close event received\n2025-10-28 01:22:23.525 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1a033183-b2ac-4d02-bcd6-d255430d15d8] Socket closed without exit code\n2025-10-28 01:23:23.535 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:23:23.537 [info] [command][d40fa019-e8dd-49bf-b885-bf2edfb345e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d40fa019-e8dd-49bf-b885-bf2edfb345e5""}\n2025-10-28 01:23:23.538 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fe7a7d83-751c-45be-8450-427ead9a8aa0] remote server not configured\n2025-10-28 01:23:23.538 [error] [command][d40fa019-e8dd-49bf-b885-bf2edfb345e5] Socket error: Error: read ECONNRESET\n2025-10-28 01:23:23.538 [info] [command][d40fa019-e8dd-49bf-b885-bf2edfb345e5] Socket close event received\n2025-10-28 01:23:23.539 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d40fa019-e8dd-49bf-b885-bf2edfb345e5] Socket closed without exit code\n2025-10-28 01:24:23.543 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:24:23.544 [info] [command][b27377a0-ee71-4e8f-bac2-43c8e3ee98b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b27377a0-ee71-4e8f-bac2-43c8e3ee98b4""}\n2025-10-28 01:24:23.544 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fb95aca6-5837-4142-bc30-01e20254a048] remote server not configured\n2025-10-28 01:24:23.544 [error] [command][b27377a0-ee71-4e8f-bac2-43c8e3ee98b4] Socket error: Error: read ECONNRESET\n2025-10-28 01:24:23.545 [info] [command][b27377a0-ee71-4e8f-bac2-43c8e3ee98b4] Socket close event received\n2025-10-28 01:24:23.545 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b27377a0-ee71-4e8f-bac2-43c8e3ee98b4] Socket closed without exit code\n2025-10-28 01:25:23.554 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:25:23.556 [info] [command][4a7402bd-fb90-4a57-96f7-3c1e31b95ece] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4a7402bd-fb90-4a57-96f7-3c1e31b95ece""}\n2025-10-28 01:25:23.557 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a683e408-b1bc-4da5-876e-252474232138] remote server not configured\n2025-10-28 01:25:23.558 [error] [command][4a7402bd-fb90-4a57-96f7-3c1e31b95ece] Socket error: Error: read ECONNRESET\n2025-10-28 01:25:23.558 [info] [command][4a7402bd-fb90-4a57-96f7-3c1e31b95ece] Socket close event received\n2025-10-28 01:25:23.558 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4a7402bd-fb90-4a57-96f7-3c1e31b95ece] Socket closed without exit code\n2025-10-28 01:26:23.567 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:26:23.568 [info] [command][318c0bc9-00c1-4c1a-a1ba-23f58091c99e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""318c0bc9-00c1-4c1a-a1ba-23f58091c99e""}\n2025-10-28 01:26:23.569 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][14208c86-cb27-419e-b9f0-a97d46425506] remote server not configured\n2025-10-28 01:26:23.570 [error] [command][318c0bc9-00c1-4c1a-a1ba-23f58091c99e] Socket error: Error: read ECONNRESET\n2025-10-28 01:26:23.570 [info] [command][318c0bc9-00c1-4c1a-a1ba-23f58091c99e] Socket close event received\n2025-10-28 01:26:23.570 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][318c0bc9-00c1-4c1a-a1ba-23f58091c99e] Socket closed without exit code\n2025-10-28 01:27:23.580 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:27:23.582 [info] [command][5d124e89-7678-49ed-a30f-caa097730d57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5d124e89-7678-49ed-a30f-caa097730d57""}\n2025-10-28 01:27:23.583 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][433b0c49-e43e-4e48-85e7-19a31330ddfc] remote server not configured\n2025-10-28 01:27:23.583 [error] [command][5d124e89-7678-49ed-a30f-caa097730d57] Socket error: Error: read ECONNRESET\n2025-10-28 01:27:23.583 [info] [command][5d124e89-7678-49ed-a30f-caa097730d57] Socket close event received\n2025-10-28 01:27:23.584 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5d124e89-7678-49ed-a30f-caa097730d57] Socket closed without exit code\n2025-10-28 01:28:23.594 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:28:23.596 [info] [command][d87ed8e8-706a-4ddd-8192-27fe06a3c013] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d87ed8e8-706a-4ddd-8192-27fe06a3c013""}\n2025-10-28 01:28:23.596 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c4b610e7-f0b6-4576-9ce8-c82797cd2257] remote server not configured\n2025-10-28 01:28:23.597 [error] [command][d87ed8e8-706a-4ddd-8192-27fe06a3c013] Socket error: Error: read ECONNRESET\n2025-10-28 01:28:23.597 [info] [command][d87ed8e8-706a-4ddd-8192-27fe06a3c013] Socket close event received\n2025-10-28 01:28:23.597 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d87ed8e8-706a-4ddd-8192-27fe06a3c013] Socket closed without exit code\n2025-10-28 01:29:23.604 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:29:23.606 [info] [command][492f1a0a-e222-4944-8906-154fc4387305] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""492f1a0a-e222-4944-8906-154fc4387305""}\n2025-10-28 01:29:23.607 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][be398b70-d358-484e-bb53-20fc7101c7b8] remote server not configured\n2025-10-28 01:29:23.607 [error] [command][492f1a0a-e222-4944-8906-154fc4387305] Socket error: Error: read ECONNRESET\n2025-10-28 01:29:23.608 [info] [command][492f1a0a-e222-4944-8906-154fc4387305] Socket close event received\n2025-10-28 01:29:23.608 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][492f1a0a-e222-4944-8906-154fc4387305] Socket closed without exit code\n2025-10-28 01:30:23.617 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:30:23.619 [info] [command][7de517db-d740-4839-b2ca-a7e02dc576b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7de517db-d740-4839-b2ca-a7e02dc576b0""}\n2025-10-28 01:30:23.620 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][45dbbb84-9f78-40ec-bed2-c790b3ff9ac9] remote server not configured\n2025-10-28 01:30:23.621 [error] [command][7de517db-d740-4839-b2ca-a7e02dc576b0] Socket error: Error: read ECONNRESET\n2025-10-28 01:30:23.621 [info] [command][7de517db-d740-4839-b2ca-a7e02dc576b0] Socket close event received\n2025-10-28 01:30:23.621 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7de517db-d740-4839-b2ca-a7e02dc576b0] Socket closed without exit code\n2025-10-28 01:31:23.630 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:31:23.632 [info] [command][7e0d259e-929d-45a2-99fe-00d5c604b4f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7e0d259e-929d-45a2-99fe-00d5c604b4f7""}\n2025-10-28 01:31:23.633 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2a724743-2961-41fb-9b88-45b5eab927c3] remote server not configured\n2025-10-28 01:31:23.634 [error] [command][7e0d259e-929d-45a2-99fe-00d5c604b4f7] Socket error: Error: read ECONNRESET\n2025-10-28 01:31:23.634 [info] [command][7e0d259e-929d-45a2-99fe-00d5c604b4f7] Socket close event received\n2025-10-28 01:31:23.634 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7e0d259e-929d-45a2-99fe-00d5c604b4f7] Socket closed without exit code\n2025-10-28 01:32:23.644 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:32:23.647 [info] [command][7e1a853c-7492-45f0-8b43-3b5e9e0cf66c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7e1a853c-7492-45f0-8b43-3b5e9e0cf66c""}\n2025-10-28 01:32:23.647 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c4ba204f-31bc-4e74-907a-356ab0ce2f8a] remote server not configured\n2025-10-28 01:32:23.648 [error] [command][7e1a853c-7492-45f0-8b43-3b5e9e0cf66c] Socket error: Error: read ECONNRESET\n2025-10-28 01:32:23.648 [info] [command][7e1a853c-7492-45f0-8b43-3b5e9e0cf66c] Socket close event received\n2025-10-28 01:32:23.648 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7e1a853c-7492-45f0-8b43-3b5e9e0cf66c] Socket closed without exit code\n2025-10-28 01:33:23.651 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:33:23.652 [info] [command][f583683b-0a38-423a-8449-7cb7ecc55eed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f583683b-0a38-423a-8449-7cb7ecc55eed""}\n2025-10-28 01:33:23.653 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ce1024a1-52e8-4b4d-882b-2d997b1877f9] remote server not configured\n2025-10-28 01:33:23.653 [error] [command][f583683b-0a38-423a-8449-7cb7ecc55eed] Socket error: Error: read ECONNRESET\n2025-10-28 01:33:23.653 [info] [command][f583683b-0a38-423a-8449-7cb7ecc55eed] Socket close event received\n2025-10-28 01:33:23.654 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f583683b-0a38-423a-8449-7cb7ecc55eed] Socket closed without exit code\n2025-10-28 01:34:23.663 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:34:23.665 [info] [command][5c78d396-54d9-43c6-98ab-27bb5d432e03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5c78d396-54d9-43c6-98ab-27bb5d432e03""}\n2025-10-28 01:34:23.666 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a1e454ba-55e2-4a5c-b6c8-5b8dc86989e8] remote server not configured\n2025-10-28 01:34:23.667 [error] [command][5c78d396-54d9-43c6-98ab-27bb5d432e03] Socket error: Error: read ECONNRESET\n2025-10-28 01:34:23.667 [info] [command][5c78d396-54d9-43c6-98ab-27bb5d432e03] Socket close event received\n2025-10-28 01:34:23.667 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5c78d396-54d9-43c6-98ab-27bb5d432e03] Socket closed without exit code\n2025-10-28 01:35:23.678 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:35:23.679 [info] [command][d75a4073-3655-4601-a503-2c2b130b34b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d75a4073-3655-4601-a503-2c2b130b34b9""}\n2025-10-28 01:35:23.680 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][80b72e81-ef21-4278-afe7-8ecc613a13dc] remote server not configured\n2025-10-28 01:35:23.681 [error] [command][d75a4073-3655-4601-a503-2c2b130b34b9] Socket error: Error: read ECONNRESET\n2025-10-28 01:35:23.681 [info] [command][d75a4073-3655-4601-a503-2c2b130b34b9] Socket close event received\n2025-10-28 01:35:23.681 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d75a4073-3655-4601-a503-2c2b130b34b9] Socket closed without exit code\n2025-10-28 01:36:23.691 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:36:23.693 [info] [command][93a5365a-73ac-4ad7-bcfe-33b3c4e13acf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""93a5365a-73ac-4ad7-bcfe-33b3c4e13acf""}\n2025-10-28 01:36:23.694 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3fd8ca41-6c7f-4e98-bb16-6802e40aa37d] remote server not configured\n2025-10-28 01:36:23.694 [error] [command][93a5365a-73ac-4ad7-bcfe-33b3c4e13acf] Socket error: Error: read ECONNRESET\n2025-10-28 01:36:23.695 [info] [command][93a5365a-73ac-4ad7-bcfe-33b3c4e13acf] Socket close event received\n2025-10-28 01:36:23.695 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][93a5365a-73ac-4ad7-bcfe-33b3c4e13acf] Socket closed without exit code\n2025-10-28 01:37:23.701 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:37:23.701 [info] [command][3f170723-428b-4613-8ad1-ddb019930a03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3f170723-428b-4613-8ad1-ddb019930a03""}\n2025-10-28 01:37:23.702 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d5de1602-5e3d-48c5-acd1-a351eae5d243] remote server not configured\n2025-10-28 01:37:23.702 [error] [command][3f170723-428b-4613-8ad1-ddb019930a03] Socket error: Error: read ECONNRESET\n2025-10-28 01:37:23.702 [info] [command][3f170723-428b-4613-8ad1-ddb019930a03] Socket close event received\n2025-10-28 01:37:23.702 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3f170723-428b-4613-8ad1-ddb019930a03] Socket closed without exit code\n2025-10-28 01:38:23.712 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:38:23.713 [info] [command][2aae78e7-8aa9-4695-abac-e0300b779364] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2aae78e7-8aa9-4695-abac-e0300b779364""}\n2025-10-28 01:38:23.714 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0a189394-94ae-46b4-9cd9-91e9d68a73bf] remote server not configured\n2025-10-28 01:38:23.715 [error] [command][2aae78e7-8aa9-4695-abac-e0300b779364] Socket error: Error: read ECONNRESET\n2025-10-28 01:38:23.715 [info] [command][2aae78e7-8aa9-4695-abac-e0300b779364] Socket close event received\n2025-10-28 01:38:23.715 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2aae78e7-8aa9-4695-abac-e0300b779364] Socket closed without exit code\n2025-10-28 01:39:23.725 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:39:23.727 [info] [command][d1df9962-7297-47e4-a04f-22893234f24f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d1df9962-7297-47e4-a04f-22893234f24f""}\n2025-10-28 01:39:23.728 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d94fff76-5c65-42fc-bed5-ac1c2ba6f7bf] remote server not configured\n2025-10-28 01:39:23.728 [error] [command][d1df9962-7297-47e4-a04f-22893234f24f] Socket error: Error: read ECONNRESET\n2025-10-28 01:39:23.729 [info] [command][d1df9962-7297-47e4-a04f-22893234f24f] Socket close event received\n2025-10-28 01:39:23.729 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d1df9962-7297-47e4-a04f-22893234f24f] Socket closed without exit code\n2025-10-28 01:40:23.736 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:40:23.739 [info] [command][03163da0-5502-4e1a-9be6-9824818b61ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""03163da0-5502-4e1a-9be6-9824818b61ac""}\n2025-10-28 01:40:23.739 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7fdeff06-298d-4fcc-bd70-722307576fd8] remote server not configured\n2025-10-28 01:40:23.740 [error] [command][03163da0-5502-4e1a-9be6-9824818b61ac] Socket error: Error: read ECONNRESET\n2025-10-28 01:40:23.740 [info] [command][03163da0-5502-4e1a-9be6-9824818b61ac] Socket close event received\n2025-10-28 01:40:23.740 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][03163da0-5502-4e1a-9be6-9824818b61ac] Socket closed without exit code\n2025-10-28 01:41:23.750 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:41:23.752 [info] [command][e493f9df-7b6d-4a3d-b0f5-8898df41af5f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e493f9df-7b6d-4a3d-b0f5-8898df41af5f""}\n2025-10-28 01:41:23.752 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][12533f61-d88b-445c-9b20-c9ffdfb7787e] remote server not configured\n2025-10-28 01:41:23.753 [error] [command][e493f9df-7b6d-4a3d-b0f5-8898df41af5f] Socket error: Error: read ECONNRESET\n2025-10-28 01:41:23.753 [info] [command][e493f9df-7b6d-4a3d-b0f5-8898df41af5f] Socket close event received\n2025-10-28 01:41:23.753 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e493f9df-7b6d-4a3d-b0f5-8898df41af5f] Socket closed without exit code\n2025-10-28 01:42:23.762 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:42:23.764 [info] [command][af8fccec-a2f4-4695-af61-4c4af708f8ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""af8fccec-a2f4-4695-af61-4c4af708f8ac""}\n2025-10-28 01:42:23.765 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dc956efd-61e7-44d7-982b-ea0990383ff4] remote server not configured\n2025-10-28 01:42:23.766 [error] [command][af8fccec-a2f4-4695-af61-4c4af708f8ac] Socket error: Error: read ECONNRESET\n2025-10-28 01:42:23.766 [info] [command][af8fccec-a2f4-4695-af61-4c4af708f8ac] Socket close event received\n2025-10-28 01:42:23.766 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][af8fccec-a2f4-4695-af61-4c4af708f8ac] Socket closed without exit code\n2025-10-28 01:43:23.771 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:43:23.773 [info] [command][8d583701-8ff1-4064-87f1-5afd646f4809] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8d583701-8ff1-4064-87f1-5afd646f4809""}\n2025-10-28 01:43:23.774 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][56c85876-145a-4c96-85c0-f7d0354640b9] remote server not configured\n2025-10-28 01:43:23.775 [error] [command][8d583701-8ff1-4064-87f1-5afd646f4809] Socket error: Error: read ECONNRESET\n2025-10-28 01:43:23.775 [info] [command][8d583701-8ff1-4064-87f1-5afd646f4809] Socket close event received\n2025-10-28 01:43:23.775 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8d583701-8ff1-4064-87f1-5afd646f4809] Socket closed without exit code\n2025-10-28 01:44:23.783 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:44:23.785 [info] [command][39881a50-b0ee-4efe-b77d-5a89b667808b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""39881a50-b0ee-4efe-b77d-5a89b667808b""}\n2025-10-28 01:44:23.786 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bc20b697-4e15-447d-9101-f8dc500061ef] remote server not configured\n2025-10-28 01:44:23.787 [error] [command][39881a50-b0ee-4efe-b77d-5a89b667808b] Socket error: Error: read ECONNRESET\n2025-10-28 01:44:23.787 [info] [command][39881a50-b0ee-4efe-b77d-5a89b667808b] Socket close event received\n2025-10-28 01:44:23.787 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][39881a50-b0ee-4efe-b77d-5a89b667808b] Socket closed without exit code\n2025-10-28 01:45:23.796 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:45:23.798 [info] [command][66fa0763-7117-4030-b065-a1af1d5b0848] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""66fa0763-7117-4030-b065-a1af1d5b0848""}\n2025-10-28 01:45:23.799 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][eb242c8b-c129-4558-a2c6-36ada0df6888] remote server not configured\n2025-10-28 01:45:23.799 [error] [command][66fa0763-7117-4030-b065-a1af1d5b0848] Socket error: Error: read ECONNRESET\n2025-10-28 01:45:23.800 [info] [command][66fa0763-7117-4030-b065-a1af1d5b0848] Socket close event received\n2025-10-28 01:45:23.800 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][66fa0763-7117-4030-b065-a1af1d5b0848] Socket closed without exit code\n2025-10-28 01:46:23.810 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:46:23.812 [info] [command][a8c18f08-25be-47a7-997f-93d821a87a97] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a8c18f08-25be-47a7-997f-93d821a87a97""}\n2025-10-28 01:46:23.812 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a9dea7e3-8e32-413a-b85b-223c2a11e88f] remote server not configured\n2025-10-28 01:46:23.813 [error] [command][a8c18f08-25be-47a7-997f-93d821a87a97] Socket error: Error: read ECONNRESET\n2025-10-28 01:46:23.813 [info] [command][a8c18f08-25be-47a7-997f-93d821a87a97] Socket close event received\n2025-10-28 01:46:23.814 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a8c18f08-25be-47a7-997f-93d821a87a97] Socket closed without exit code\n2025-10-28 01:47:23.824 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:47:23.825 [info] [command][25522130-175e-4888-a0dd-90e73a047155] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""25522130-175e-4888-a0dd-90e73a047155""}\n2025-10-28 01:47:23.826 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][921a4829-35f7-48fe-b2be-c46ddbfd50fb] remote server not configured\n2025-10-28 01:47:23.827 [error] [command][25522130-175e-4888-a0dd-90e73a047155] Socket error: Error: read ECONNRESET\n2025-10-28 01:47:23.827 [info] [command][25522130-175e-4888-a0dd-90e73a047155] Socket close event received\n2025-10-28 01:47:23.827 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][25522130-175e-4888-a0dd-90e73a047155] Socket closed without exit code\n2025-10-28 01:48:23.836 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:48:23.838 [info] [command][35bf7ced-57c3-4c20-8679-161e4034f0ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""35bf7ced-57c3-4c20-8679-161e4034f0ae""}\n2025-10-28 01:48:23.839 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9155a3b0-c56d-4de0-a769-39685b5c4aeb] remote server not configured\n2025-10-28 01:48:23.839 [error] [command][35bf7ced-57c3-4c20-8679-161e4034f0ae] Socket error: Error: read ECONNRESET\n2025-10-28 01:48:23.840 [info] [command][35bf7ced-57c3-4c20-8679-161e4034f0ae] Socket close event received\n2025-10-28 01:48:23.840 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][35bf7ced-57c3-4c20-8679-161e4034f0ae] Socket closed without exit code\n2025-10-28 01:49:23.851 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:49:23.852 [info] [command][69f71e5c-006d-4f6b-8210-0c5d26f059f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""69f71e5c-006d-4f6b-8210-0c5d26f059f2""}\n2025-10-28 01:49:23.853 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8b34f46b-973c-46ac-b856-d2cfdf8bea6d] remote server not configured\n2025-10-28 01:49:23.854 [error] [command][69f71e5c-006d-4f6b-8210-0c5d26f059f2] Socket error: Error: read ECONNRESET\n2025-10-28 01:49:23.854 [info] [command][69f71e5c-006d-4f6b-8210-0c5d26f059f2] Socket close event received\n2025-10-28 01:49:23.854 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][69f71e5c-006d-4f6b-8210-0c5d26f059f2] Socket closed without exit code\n2025-10-28 01:50:23.865 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:50:23.867 [info] [command][0155a494-585c-4662-98cf-3fcacb9a1893] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0155a494-585c-4662-98cf-3fcacb9a1893""}\n2025-10-28 01:50:23.868 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fb85cacc-01da-4b44-872d-24e550526d62] remote server not configured\n2025-10-28 01:50:23.868 [error] [command][0155a494-585c-4662-98cf-3fcacb9a1893] Socket error: Error: read ECONNRESET\n2025-10-28 01:50:23.868 [info] [command][0155a494-585c-4662-98cf-3fcacb9a1893] Socket close event received\n2025-10-28 01:50:23.869 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0155a494-585c-4662-98cf-3fcacb9a1893] Socket closed without exit code\n2025-10-28 01:51:23.876 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:51:23.878 [info] [command][c4fa9627-5196-4327-960b-700f1a8a5c07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c4fa9627-5196-4327-960b-700f1a8a5c07""}\n2025-10-28 01:51:23.878 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][88ff213a-e6be-4602-bc67-fe4729167c52] remote server not configured\n2025-10-28 01:51:23.879 [error] [command][c4fa9627-5196-4327-960b-700f1a8a5c07] Socket error: Error: read ECONNRESET\n2025-10-28 01:51:23.879 [info] [command][c4fa9627-5196-4327-960b-700f1a8a5c07] Socket close event received\n2025-10-28 01:51:23.879 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c4fa9627-5196-4327-960b-700f1a8a5c07] Socket closed without exit code\n2025-10-28 01:52:23.886 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:52:23.887 [info] [command][c4a92ac7-58f9-4e4f-bef4-44462edbcd19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c4a92ac7-58f9-4e4f-bef4-44462edbcd19""}\n2025-10-28 01:52:23.888 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a294c0b5-8a5d-44cf-baff-e3690ce5df7f] remote server not configured\n2025-10-28 01:52:23.889 [error] [command][c4a92ac7-58f9-4e4f-bef4-44462edbcd19] Socket error: Error: read ECONNRESET\n2025-10-28 01:52:23.889 [info] [command][c4a92ac7-58f9-4e4f-bef4-44462edbcd19] Socket close event received\n2025-10-28 01:52:23.889 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c4a92ac7-58f9-4e4f-bef4-44462edbcd19] Socket closed without exit code\n2025-10-28 01:53:23.900 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:53:23.901 [info] [command][7a12b097-833f-4d60-abd7-4af876628806] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7a12b097-833f-4d60-abd7-4af876628806""}\n2025-10-28 01:53:23.902 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9415f3d5-c2ac-48a3-82ef-8f1581e01d85] remote server not configured\n2025-10-28 01:53:23.902 [error] [command][7a12b097-833f-4d60-abd7-4af876628806] Socket error: Error: read ECONNRESET\n2025-10-28 01:53:23.903 [info] [command][7a12b097-833f-4d60-abd7-4af876628806] Socket close event received\n2025-10-28 01:53:23.903 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7a12b097-833f-4d60-abd7-4af876628806] Socket closed without exit code\n2025-10-28 01:54:23.910 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:54:23.913 [info] [command][0fdd611a-927b-483a-a09a-a5879efc5225] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0fdd611a-927b-483a-a09a-a5879efc5225""}\n2025-10-28 01:54:23.914 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b7b9e5d7-8055-469b-ad7e-ff46753c24aa] remote server not configured\n2025-10-28 01:54:23.916 [error] [command][0fdd611a-927b-483a-a09a-a5879efc5225] Socket error: Error: read ECONNRESET\n2025-10-28 01:54:23.916 [info] [command][0fdd611a-927b-483a-a09a-a5879efc5225] Socket close event received\n2025-10-28 01:54:23.917 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0fdd611a-927b-483a-a09a-a5879efc5225] Socket closed without exit code\n2025-10-28 01:55:23.926 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:55:23.928 [info] [command][b1bd55fe-b444-4f28-a43f-769f707cda26] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b1bd55fe-b444-4f28-a43f-769f707cda26""}\n2025-10-28 01:55:23.929 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9978837f-523a-4391-ab69-7ab788beb794] remote server not configured\n2025-10-28 01:55:23.930 [error] [command][b1bd55fe-b444-4f28-a43f-769f707cda26] Socket error: Error: read ECONNRESET\n2025-10-28 01:55:23.930 [info] [command][b1bd55fe-b444-4f28-a43f-769f707cda26] Socket close event received\n2025-10-28 01:55:23.930 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b1bd55fe-b444-4f28-a43f-769f707cda26] Socket closed without exit code\n2025-10-28 01:56:23.940 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:56:23.942 [info] [command][31db7c16-e023-41f6-8a09-db651bef8d1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""31db7c16-e023-41f6-8a09-db651bef8d1a""}\n2025-10-28 01:56:23.942 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ba2e550f-b805-41bd-bc80-ab3fd287e618] remote server not configured\n2025-10-28 01:56:23.943 [error] [command][31db7c16-e023-41f6-8a09-db651bef8d1a] Socket error: Error: read ECONNRESET\n2025-10-28 01:56:23.943 [info] [command][31db7c16-e023-41f6-8a09-db651bef8d1a] Socket close event received\n2025-10-28 01:56:23.944 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][31db7c16-e023-41f6-8a09-db651bef8d1a] Socket closed without exit code\n2025-10-28 01:57:23.950 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:57:23.951 [info] [command][0ea248e1-a967-4041-a801-5d6cb77d0ab9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0ea248e1-a967-4041-a801-5d6cb77d0ab9""}\n2025-10-28 01:57:23.952 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7707184f-9d09-4ff7-bcba-fcd3bd3f9dfd] remote server not configured\n2025-10-28 01:57:23.953 [error] [command][0ea248e1-a967-4041-a801-5d6cb77d0ab9] Socket error: Error: read ECONNRESET\n2025-10-28 01:57:23.953 [info] [command][0ea248e1-a967-4041-a801-5d6cb77d0ab9] Socket close event received\n2025-10-28 01:57:23.953 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0ea248e1-a967-4041-a801-5d6cb77d0ab9] Socket closed without exit code\n2025-10-28 01:58:23.958 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:58:23.959 [info] [command][0a25efdb-ef1e-4b36-82e8-b65aa9c0da45] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0a25efdb-ef1e-4b36-82e8-b65aa9c0da45""}\n2025-10-28 01:58:23.960 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fe5c0fa5-1b65-4f3e-b710-a485199c5e97] remote server not configured\n2025-10-28 01:58:23.961 [error] [command][0a25efdb-ef1e-4b36-82e8-b65aa9c0da45] Socket error: Error: read ECONNRESET\n2025-10-28 01:58:23.961 [info] [command][0a25efdb-ef1e-4b36-82e8-b65aa9c0da45] Socket close event received\n2025-10-28 01:58:23.961 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0a25efdb-ef1e-4b36-82e8-b65aa9c0da45] Socket closed without exit code\n2025-10-28 01:59:23.971 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 01:59:23.973 [info] [command][1450d492-9941-49b6-85d6-3862d546acd0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1450d492-9941-49b6-85d6-3862d546acd0""}\n2025-10-28 01:59:23.974 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9f7dfd8d-8fd6-40b5-8f52-7b041d50ac60] remote server not configured\n2025-10-28 01:59:23.975 [error] [command][1450d492-9941-49b6-85d6-3862d546acd0] Socket error: Error: read ECONNRESET\n2025-10-28 01:59:23.975 [info] [command][1450d492-9941-49b6-85d6-3862d546acd0] Socket close event received\n2025-10-28 01:59:23.975 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1450d492-9941-49b6-85d6-3862d546acd0] Socket closed without exit code\n2025-10-28 02:00:23.976 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:00:23.977 [info] [command][bfa45ae2-56be-4e5d-b7d2-b54ca63b5f60] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bfa45ae2-56be-4e5d-b7d2-b54ca63b5f60""}\n2025-10-28 02:00:23.978 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cc933e52-b122-4fc9-b862-dbb57ef5455c] remote server not configured\n2025-10-28 02:00:23.978 [error] [command][bfa45ae2-56be-4e5d-b7d2-b54ca63b5f60] Socket error: Error: read ECONNRESET\n2025-10-28 02:00:23.978 [info] [command][bfa45ae2-56be-4e5d-b7d2-b54ca63b5f60] Socket close event received\n2025-10-28 02:00:23.978 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bfa45ae2-56be-4e5d-b7d2-b54ca63b5f60] Socket closed without exit code\n2025-10-28 02:01:23.989 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:01:23.991 [info] [command][4cec8f9b-e022-470c-8c81-530a3ac6cd89] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4cec8f9b-e022-470c-8c81-530a3ac6cd89""}\n2025-10-28 02:01:23.991 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ebea2056-6308-41a4-842c-bea54efde6b4] remote server not configured\n2025-10-28 02:01:23.992 [error] [command][4cec8f9b-e022-470c-8c81-530a3ac6cd89] Socket error: Error: read ECONNRESET\n2025-10-28 02:01:23.992 [info] [command][4cec8f9b-e022-470c-8c81-530a3ac6cd89] Socket close event received\n2025-10-28 02:01:23.992 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4cec8f9b-e022-470c-8c81-530a3ac6cd89] Socket closed without exit code\n2025-10-28 02:02:24.003 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:02:24.006 [info] [command][6cf79259-5b5e-4212-b07c-371f08d36d87] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6cf79259-5b5e-4212-b07c-371f08d36d87""}\n2025-10-28 02:02:24.007 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][66cf24c3-9301-46f2-8972-96da4290d2b6] remote server not configured\n2025-10-28 02:02:24.007 [error] [command][6cf79259-5b5e-4212-b07c-371f08d36d87] Socket error: Error: read ECONNRESET\n2025-10-28 02:02:24.007 [info] [command][6cf79259-5b5e-4212-b07c-371f08d36d87] Socket close event received\n2025-10-28 02:02:24.008 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6cf79259-5b5e-4212-b07c-371f08d36d87] Socket closed without exit code\n2025-10-28 02:03:24.009 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:03:24.012 [info] [command][d04b132e-2e78-493e-9779-c20d46a638be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d04b132e-2e78-493e-9779-c20d46a638be""}\n2025-10-28 02:03:24.013 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f50890da-042b-40f2-aa48-680ffc06079e] remote server not configured\n2025-10-28 02:03:24.013 [error] [command][d04b132e-2e78-493e-9779-c20d46a638be] Socket error: Error: read ECONNRESET\n2025-10-28 02:03:24.013 [info] [command][d04b132e-2e78-493e-9779-c20d46a638be] Socket close event received\n2025-10-28 02:03:24.014 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d04b132e-2e78-493e-9779-c20d46a638be] Socket closed without exit code\n2025-10-28 02:04:24.023 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:04:24.026 [info] [command][0e03d67b-e69a-43a9-9c0e-3d66cc1391ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0e03d67b-e69a-43a9-9c0e-3d66cc1391ff""}\n2025-10-28 02:04:24.027 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][401b4d67-831e-4361-bf7d-0e9539031386] remote server not configured\n2025-10-28 02:04:24.027 [error] [command][0e03d67b-e69a-43a9-9c0e-3d66cc1391ff] Socket error: Error: read ECONNRESET\n2025-10-28 02:04:24.027 [info] [command][0e03d67b-e69a-43a9-9c0e-3d66cc1391ff] Socket close event received\n2025-10-28 02:04:24.028 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0e03d67b-e69a-43a9-9c0e-3d66cc1391ff] Socket closed without exit code\n2025-10-28 02:05:24.038 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:05:24.040 [info] [command][e603d0f0-eae3-482b-9d45-957a3f913f2d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e603d0f0-eae3-482b-9d45-957a3f913f2d""}\n2025-10-28 02:05:24.041 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3b5e099d-e962-4ec0-b386-6dcd9486d50c] remote server not configured\n2025-10-28 02:05:24.041 [error] [command][e603d0f0-eae3-482b-9d45-957a3f913f2d] Socket error: Error: read ECONNRESET\n2025-10-28 02:05:24.042 [info] [command][e603d0f0-eae3-482b-9d45-957a3f913f2d] Socket close event received\n2025-10-28 02:05:24.042 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e603d0f0-eae3-482b-9d45-957a3f913f2d] Socket closed without exit code\n2025-10-28 02:06:24.051 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:06:24.053 [info] [command][e41acd8d-3a11-4fc3-9d0b-64e5684784b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e41acd8d-3a11-4fc3-9d0b-64e5684784b6""}\n2025-10-28 02:06:24.054 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7edb557f-4232-47a7-b784-81a04712c4f4] remote server not configured\n2025-10-28 02:06:24.054 [error] [command][e41acd8d-3a11-4fc3-9d0b-64e5684784b6] Socket error: Error: read ECONNRESET\n2025-10-28 02:06:24.055 [info] [command][e41acd8d-3a11-4fc3-9d0b-64e5684784b6] Socket close event received\n2025-10-28 02:06:24.055 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e41acd8d-3a11-4fc3-9d0b-64e5684784b6] Socket closed without exit code\n2025-10-28 02:07:24.057 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:07:24.058 [info] [command][7fdfac54-c5e1-4bc0-a47e-884d9da1c40f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7fdfac54-c5e1-4bc0-a47e-884d9da1c40f""}\n2025-10-28 02:07:24.059 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ac392166-8bef-4fe3-a99a-3bf5e4060484] remote server not configured\n2025-10-28 02:07:24.059 [error] [command][7fdfac54-c5e1-4bc0-a47e-884d9da1c40f] Socket error: Error: read ECONNRESET\n2025-10-28 02:07:24.060 [info] [command][7fdfac54-c5e1-4bc0-a47e-884d9da1c40f] Socket close event received\n2025-10-28 02:07:24.060 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7fdfac54-c5e1-4bc0-a47e-884d9da1c40f] Socket closed without exit code\n2025-10-28 02:08:24.063 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:08:24.065 [info] [command][5fdce867-af90-4026-9414-fd3ef4e975d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5fdce867-af90-4026-9414-fd3ef4e975d5""}\n2025-10-28 02:08:24.066 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f2d78b51-6a17-406d-9158-3a06941548a6] remote server not configured\n2025-10-28 02:08:24.066 [error] [command][5fdce867-af90-4026-9414-fd3ef4e975d5] Socket error: Error: read ECONNRESET\n2025-10-28 02:08:24.066 [info] [command][5fdce867-af90-4026-9414-fd3ef4e975d5] Socket close event received\n2025-10-28 02:08:24.067 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5fdce867-af90-4026-9414-fd3ef4e975d5] Socket closed without exit code\n2025-10-28 02:09:24.072 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:09:24.074 [info] [command][c8732095-0a97-49ff-b3b4-294ebbfe13cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c8732095-0a97-49ff-b3b4-294ebbfe13cb""}\n2025-10-28 02:09:24.075 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b1ee39ef-366c-4325-8591-4d2cf32da3be] remote server not configured\n2025-10-28 02:09:24.075 [error] [command][c8732095-0a97-49ff-b3b4-294ebbfe13cb] Socket error: Error: read ECONNRESET\n2025-10-28 02:09:24.076 [info] [command][c8732095-0a97-49ff-b3b4-294ebbfe13cb] Socket close event received\n2025-10-28 02:09:24.076 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c8732095-0a97-49ff-b3b4-294ebbfe13cb] Socket closed without exit code\n2025-10-28 02:10:24.076 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:10:24.079 [info] [command][fe49e301-ef51-48d0-8389-b40460d41393] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fe49e301-ef51-48d0-8389-b40460d41393""}\n2025-10-28 02:10:24.080 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][33f60e33-1310-43b6-ad7a-cf2dada14ac7] remote server not configured\n2025-10-28 02:10:24.080 [error] [command][fe49e301-ef51-48d0-8389-b40460d41393] Socket error: Error: read ECONNRESET\n2025-10-28 02:10:24.080 [info] [command][fe49e301-ef51-48d0-8389-b40460d41393] Socket close event received\n2025-10-28 02:10:24.081 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fe49e301-ef51-48d0-8389-b40460d41393] Socket closed without exit code\n2025-10-28 02:11:24.091 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:11:24.093 [info] [command][aa1a8ef4-f1fc-4e9a-aeaa-1d507ea249a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""aa1a8ef4-f1fc-4e9a-aeaa-1d507ea249a3""}\n2025-10-28 02:11:24.094 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c188d706-ab2e-47ef-b456-9a8361902658] remote server not configured\n2025-10-28 02:11:24.095 [error] [command][aa1a8ef4-f1fc-4e9a-aeaa-1d507ea249a3] Socket error: Error: read ECONNRESET\n2025-10-28 02:11:24.095 [info] [command][aa1a8ef4-f1fc-4e9a-aeaa-1d507ea249a3] Socket close event received\n2025-10-28 02:11:24.095 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][aa1a8ef4-f1fc-4e9a-aeaa-1d507ea249a3] Socket closed without exit code\n2025-10-28 02:12:24.095 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:12:24.097 [info] [command][6d3e218b-155d-4042-849b-af01b154b2d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6d3e218b-155d-4042-849b-af01b154b2d7""}\n2025-10-28 02:12:24.098 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a0fe549c-f19c-4f19-aa78-9fbf3435abbd] remote server not configured\n2025-10-28 02:12:24.099 [error] [command][6d3e218b-155d-4042-849b-af01b154b2d7] Socket error: Error: read ECONNRESET\n2025-10-28 02:12:24.099 [info] [command][6d3e218b-155d-4042-849b-af01b154b2d7] Socket close event received\n2025-10-28 02:12:24.099 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6d3e218b-155d-4042-849b-af01b154b2d7] Socket closed without exit code\n2025-10-28 02:13:24.109 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:13:24.113 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][40c761f6-a67e-406f-8b36-00c1bf43fefb] remote server not configured\n2025-10-28 02:13:24.113 [info] [command][0e519155-a036-461b-954f-8088e294e25f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0e519155-a036-461b-954f-8088e294e25f""}\n2025-10-28 02:13:24.114 [error] [command][0e519155-a036-461b-954f-8088e294e25f] Socket error: Error: read ECONNRESET\n2025-10-28 02:13:24.114 [info] [command][0e519155-a036-461b-954f-8088e294e25f] Socket close event received\n2025-10-28 02:13:24.114 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0e519155-a036-461b-954f-8088e294e25f] Socket closed without exit code\n2025-10-28 02:14:24.124 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:14:24.127 [info] [command][719b7a59-be53-45e6-885b-86ffa9150d45] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""719b7a59-be53-45e6-885b-86ffa9150d45""}\n2025-10-28 02:14:24.128 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][eb7f2864-c2f5-4176-8fcf-d48ae778c1a1] remote server not configured\n2025-10-28 02:14:24.128 [error] [command][719b7a59-be53-45e6-885b-86ffa9150d45] Socket error: Error: read ECONNRESET\n2025-10-28 02:14:24.128 [info] [command][719b7a59-be53-45e6-885b-86ffa9150d45] Socket close event received\n2025-10-28 02:14:24.129 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][719b7a59-be53-45e6-885b-86ffa9150d45] Socket closed without exit code\n2025-10-28 02:15:24.133 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:15:24.134 [info] [command][bfae6d45-2356-423e-8a10-05f090069a31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bfae6d45-2356-423e-8a10-05f090069a31""}\n2025-10-28 02:15:24.135 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][feb5b834-b6fb-45b7-9c7b-302399243f09] remote server not configured\n2025-10-28 02:15:24.135 [error] [command][bfae6d45-2356-423e-8a10-05f090069a31] Socket error: Error: read ECONNRESET\n2025-10-28 02:15:24.136 [info] [command][bfae6d45-2356-423e-8a10-05f090069a31] Socket close event received\n2025-10-28 02:15:24.136 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bfae6d45-2356-423e-8a10-05f090069a31] Socket closed without exit code\n2025-10-28 02:16:24.144 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:16:24.145 [info] [command][4ee69b45-6758-4604-93d6-23f5870152fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4ee69b45-6758-4604-93d6-23f5870152fe""}\n2025-10-28 02:16:24.146 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7f0dfde2-7e56-42b4-b058-34c72379e199] remote server not configured\n2025-10-28 02:16:24.147 [error] [command][4ee69b45-6758-4604-93d6-23f5870152fe] Socket error: Error: read ECONNRESET\n2025-10-28 02:16:24.147 [info] [command][4ee69b45-6758-4604-93d6-23f5870152fe] Socket close event received\n2025-10-28 02:16:24.147 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4ee69b45-6758-4604-93d6-23f5870152fe] Socket closed without exit code\n2025-10-28 02:17:24.158 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:17:24.159 [info] [command][2882e6e8-e7b3-4f97-81ee-04978bf68245] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2882e6e8-e7b3-4f97-81ee-04978bf68245""}\n2025-10-28 02:17:24.160 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c753da45-4cc2-4b1b-8562-8eab82c84a1e] remote server not configured\n2025-10-28 02:17:24.161 [error] [command][2882e6e8-e7b3-4f97-81ee-04978bf68245] Socket error: Error: read ECONNRESET\n2025-10-28 02:17:24.161 [info] [command][2882e6e8-e7b3-4f97-81ee-04978bf68245] Socket close event received\n2025-10-28 02:17:24.161 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2882e6e8-e7b3-4f97-81ee-04978bf68245] Socket closed without exit code\n2025-10-28 02:18:24.166 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:18:24.167 [info] [command][78bd1886-bb12-496c-8034-1e504c7e876c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""78bd1886-bb12-496c-8034-1e504c7e876c""}\n2025-10-28 02:18:24.168 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fb605eca-e966-4fdf-bdba-0f86d4e8964e] remote server not configured\n2025-10-28 02:18:24.169 [error] [command][78bd1886-bb12-496c-8034-1e504c7e876c] Socket error: Error: read ECONNRESET\n2025-10-28 02:18:24.169 [info] [command][78bd1886-bb12-496c-8034-1e504c7e876c] Socket close event received\n2025-10-28 02:18:24.169 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][78bd1886-bb12-496c-8034-1e504c7e876c] Socket closed without exit code\n2025-10-28 02:19:24.178 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:19:24.179 [info] [command][e5c4fdaf-a2fe-44a7-9b3a-7a988f0939ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e5c4fdaf-a2fe-44a7-9b3a-7a988f0939ab""}\n2025-10-28 02:19:24.180 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ff3a8ec7-4b5f-4111-8858-8d66913883d8] remote server not configured\n2025-10-28 02:19:24.181 [error] [command][e5c4fdaf-a2fe-44a7-9b3a-7a988f0939ab] Socket error: Error: read ECONNRESET\n2025-10-28 02:19:24.181 [info] [command][e5c4fdaf-a2fe-44a7-9b3a-7a988f0939ab] Socket close event received\n2025-10-28 02:19:24.181 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e5c4fdaf-a2fe-44a7-9b3a-7a988f0939ab] Socket closed without exit code\n2025-10-28 02:20:24.189 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:20:24.189 [info] [command][98115680-53d6-473f-ae8b-d36b5dd98090] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""98115680-53d6-473f-ae8b-d36b5dd98090""}\n2025-10-28 02:20:24.190 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][20733c38-8095-45a7-8a7c-f66ea813c3bd] remote server not configured\n2025-10-28 02:20:24.190 [error] [command][98115680-53d6-473f-ae8b-d36b5dd98090] Socket error: Error: read ECONNRESET\n2025-10-28 02:20:24.190 [info] [command][98115680-53d6-473f-ae8b-d36b5dd98090] Socket close event received\n2025-10-28 02:20:24.190 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][98115680-53d6-473f-ae8b-d36b5dd98090] Socket closed without exit code\n2025-10-28 02:21:24.200 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:21:24.202 [info] [command][8a8fd083-cfed-44ff-a077-42871225f3d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8a8fd083-cfed-44ff-a077-42871225f3d7""}\n2025-10-28 02:21:24.203 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5cdca849-99b4-4f5d-a25a-ef34e1a835d3] remote server not configured\n2025-10-28 02:21:24.204 [error] [command][8a8fd083-cfed-44ff-a077-42871225f3d7] Socket error: Error: read ECONNRESET\n2025-10-28 02:21:24.204 [info] [command][8a8fd083-cfed-44ff-a077-42871225f3d7] Socket close event received\n2025-10-28 02:21:24.204 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8a8fd083-cfed-44ff-a077-42871225f3d7] Socket closed without exit code\n2025-10-28 02:22:24.214 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:22:24.216 [info] [command][f1e9fd23-6399-4cbb-b2cd-458bec0f6b1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f1e9fd23-6399-4cbb-b2cd-458bec0f6b1a""}\n2025-10-28 02:22:24.217 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5d83c668-b1e3-4201-8e5d-e0a6a731a2ae] remote server not configured\n2025-10-28 02:22:24.217 [error] [command][f1e9fd23-6399-4cbb-b2cd-458bec0f6b1a] Socket error: Error: read ECONNRESET\n2025-10-28 02:22:24.217 [info] [command][f1e9fd23-6399-4cbb-b2cd-458bec0f6b1a] Socket close event received\n2025-10-28 02:22:24.218 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f1e9fd23-6399-4cbb-b2cd-458bec0f6b1a] Socket closed without exit code\n2025-10-28 02:23:24.228 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:23:24.230 [info] [command][56ac0b7f-c115-448b-9e30-a4a5acd8de39] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""56ac0b7f-c115-448b-9e30-a4a5acd8de39""}\n2025-10-28 02:23:24.231 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ff8ae827-2767-476e-97c8-e56f6a6776c9] remote server not configured\n2025-10-28 02:23:24.231 [error] [command][56ac0b7f-c115-448b-9e30-a4a5acd8de39] Socket error: Error: read ECONNRESET\n2025-10-28 02:23:24.231 [info] [command][56ac0b7f-c115-448b-9e30-a4a5acd8de39] Socket close event received\n2025-10-28 02:23:24.232 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][56ac0b7f-c115-448b-9e30-a4a5acd8de39] Socket closed without exit code\n2025-10-28 02:24:24.237 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:24:24.239 [info] [command][df29be0a-9257-47dc-b1b1-9688520f33df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""df29be0a-9257-47dc-b1b1-9688520f33df""}\n2025-10-28 02:24:24.240 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][068f810d-2191-40aa-85e4-7a7849b035f6] remote server not configured\n2025-10-28 02:24:24.240 [error] [command][df29be0a-9257-47dc-b1b1-9688520f33df] Socket error: Error: read ECONNRESET\n2025-10-28 02:24:24.240 [info] [command][df29be0a-9257-47dc-b1b1-9688520f33df] Socket close event received\n2025-10-28 02:24:24.241 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][df29be0a-9257-47dc-b1b1-9688520f33df] Socket closed without exit code\n2025-10-28 02:25:24.249 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:25:24.251 [info] [command][a997033d-65c4-427a-a8d2-c8060e63518c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a997033d-65c4-427a-a8d2-c8060e63518c""}\n2025-10-28 02:25:24.252 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][75643600-8958-45ee-bb15-6ad22cfeafce] remote server not configured\n2025-10-28 02:25:24.252 [error] [command][a997033d-65c4-427a-a8d2-c8060e63518c] Socket error: Error: read ECONNRESET\n2025-10-28 02:25:24.252 [info] [command][a997033d-65c4-427a-a8d2-c8060e63518c] Socket close event received\n2025-10-28 02:25:24.253 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a997033d-65c4-427a-a8d2-c8060e63518c] Socket closed without exit code\n2025-10-28 02:26:24.256 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:26:24.258 [info] [command][cb60dacd-f5c8-4239-a7d8-3b1717ec1fc4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cb60dacd-f5c8-4239-a7d8-3b1717ec1fc4""}\n2025-10-28 02:26:24.259 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e36cdde1-8647-40e5-965d-b6f258556fa6] remote server not configured\n2025-10-28 02:26:24.259 [error] [command][cb60dacd-f5c8-4239-a7d8-3b1717ec1fc4] Socket error: Error: read ECONNRESET\n2025-10-28 02:26:24.260 [info] [command][cb60dacd-f5c8-4239-a7d8-3b1717ec1fc4] Socket close event received\n2025-10-28 02:26:24.260 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cb60dacd-f5c8-4239-a7d8-3b1717ec1fc4] Socket closed without exit code\n2025-10-28 02:27:24.270 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:27:24.272 [info] [command][3444313d-a8ce-4fe3-80f3-17b4281cd5e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3444313d-a8ce-4fe3-80f3-17b4281cd5e7""}\n2025-10-28 02:27:24.273 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e76f9b3d-6369-4099-a91d-fd2fa47cae04] remote server not configured\n2025-10-28 02:27:24.273 [error] [command][3444313d-a8ce-4fe3-80f3-17b4281cd5e7] Socket error: Error: read ECONNRESET\n2025-10-28 02:27:24.274 [info] [command][3444313d-a8ce-4fe3-80f3-17b4281cd5e7] Socket close event received\n2025-10-28 02:27:24.274 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3444313d-a8ce-4fe3-80f3-17b4281cd5e7] Socket closed without exit code\n2025-10-28 02:28:24.274 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:28:24.276 [info] [command][2b13ad4c-43b4-483c-97c9-7cc7defc6d46] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2b13ad4c-43b4-483c-97c9-7cc7defc6d46""}\n2025-10-28 02:28:24.276 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][81817fc3-94a5-4aab-acd6-8e7097059c98] remote server not configured\n2025-10-28 02:28:24.277 [error] [command][2b13ad4c-43b4-483c-97c9-7cc7defc6d46] Socket error: Error: read ECONNRESET\n2025-10-28 02:28:24.277 [info] [command][2b13ad4c-43b4-483c-97c9-7cc7defc6d46] Socket close event received\n2025-10-28 02:28:24.277 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2b13ad4c-43b4-483c-97c9-7cc7defc6d46] Socket closed without exit code\n2025-10-28 02:29:24.354 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:29:24.356 [info] [command][67aaace7-9779-418c-80cd-4eabb60706eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""67aaace7-9779-418c-80cd-4eabb60706eb""}\n2025-10-28 02:29:24.357 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4ce2e5b7-d60b-4604-bd7b-f61261db6f50] remote server not configured\n2025-10-28 02:29:24.358 [error] [command][67aaace7-9779-418c-80cd-4eabb60706eb] Socket error: Error: read ECONNRESET\n2025-10-28 02:29:24.358 [info] [command][67aaace7-9779-418c-80cd-4eabb60706eb] Socket close event received\n2025-10-28 02:29:24.358 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][67aaace7-9779-418c-80cd-4eabb60706eb] Socket closed without exit code\n2025-10-28 02:30:24.369 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:30:24.372 [info] [command][d01ec361-736c-4418-a71b-9256ddc062a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d01ec361-736c-4418-a71b-9256ddc062a5""}\n2025-10-28 02:30:24.373 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][81bccd33-13d3-491d-a32f-c2579c01d63b] remote server not configured\n2025-10-28 02:30:24.373 [error] [command][d01ec361-736c-4418-a71b-9256ddc062a5] Socket error: Error: read ECONNRESET\n2025-10-28 02:30:24.374 [info] [command][d01ec361-736c-4418-a71b-9256ddc062a5] Socket close event received\n2025-10-28 02:30:24.374 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d01ec361-736c-4418-a71b-9256ddc062a5] Socket closed without exit code\n2025-10-28 02:31:24.385 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:31:24.387 [info] [command][29c9c2b5-5dba-4a60-9a11-c45499a77be1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""29c9c2b5-5dba-4a60-9a11-c45499a77be1""}\n2025-10-28 02:31:24.387 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a319d167-f804-43e6-9528-047f4385f55f] remote server not configured\n2025-10-28 02:31:24.388 [error] [command][29c9c2b5-5dba-4a60-9a11-c45499a77be1] Socket error: Error: read ECONNRESET\n2025-10-28 02:31:24.388 [info] [command][29c9c2b5-5dba-4a60-9a11-c45499a77be1] Socket close event received\n2025-10-28 02:31:24.388 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][29c9c2b5-5dba-4a60-9a11-c45499a77be1] Socket closed without exit code\n2025-10-28 02:32:24.395 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:32:24.398 [info] [command][82b290db-9f0a-4419-872e-5edabf41d694] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""82b290db-9f0a-4419-872e-5edabf41d694""}\n2025-10-28 02:32:24.398 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2dd5781a-dbd6-408d-ae3f-c779560596e0] remote server not configured\n2025-10-28 02:32:24.399 [error] [command][82b290db-9f0a-4419-872e-5edabf41d694] Socket error: Error: read ECONNRESET\n2025-10-28 02:32:24.399 [info] [command][82b290db-9f0a-4419-872e-5edabf41d694] Socket close event received\n2025-10-28 02:32:24.399 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][82b290db-9f0a-4419-872e-5edabf41d694] Socket closed without exit code\n2025-10-28 02:33:24.407 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:33:24.409 [info] [command][47b8f09c-1b79-4b71-9148-578714822102] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""47b8f09c-1b79-4b71-9148-578714822102""}\n2025-10-28 02:33:24.410 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][97a9f0bc-bcb5-40d4-85b9-bacc83f8444b] remote server not configured\n2025-10-28 02:33:24.411 [error] [command][47b8f09c-1b79-4b71-9148-578714822102] Socket error: Error: read ECONNRESET\n2025-10-28 02:33:24.411 [info] [command][47b8f09c-1b79-4b71-9148-578714822102] Socket close event received\n2025-10-28 02:33:24.411 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][47b8f09c-1b79-4b71-9148-578714822102] Socket closed without exit code\n2025-10-28 02:34:24.421 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:34:24.424 [info] [command][4eb8d46d-92e5-492e-9c9f-7c0588ab8703] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4eb8d46d-92e5-492e-9c9f-7c0588ab8703""}\n2025-10-28 02:34:24.425 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1895b686-cb5c-4b11-91f3-22a3548136ff] remote server not configured\n2025-10-28 02:34:24.425 [error] [command][4eb8d46d-92e5-492e-9c9f-7c0588ab8703] Socket error: Error: read ECONNRESET\n2025-10-28 02:34:24.425 [info] [command][4eb8d46d-92e5-492e-9c9f-7c0588ab8703] Socket close event received\n2025-10-28 02:34:24.425 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4eb8d46d-92e5-492e-9c9f-7c0588ab8703] Socket closed without exit code\n2025-10-28 02:35:24.432 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:35:24.434 [info] [command][dd6437a3-0d69-4d83-9d80-6bfa9e489e65] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dd6437a3-0d69-4d83-9d80-6bfa9e489e65""}\n2025-10-28 02:35:24.434 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2e75adef-0b73-4219-9141-8e0562dcbed0] remote server not configured\n2025-10-28 02:35:24.435 [error] [command][dd6437a3-0d69-4d83-9d80-6bfa9e489e65] Socket error: Error: read ECONNRESET\n2025-10-28 02:35:24.435 [info] [command][dd6437a3-0d69-4d83-9d80-6bfa9e489e65] Socket close event received\n2025-10-28 02:35:24.435 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dd6437a3-0d69-4d83-9d80-6bfa9e489e65] Socket closed without exit code\n2025-10-28 02:36:24.439 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:36:24.441 [info] [command][ccf0269f-d4ca-4b7a-881a-df81450d2d60] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ccf0269f-d4ca-4b7a-881a-df81450d2d60""}\n2025-10-28 02:36:24.441 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f3b700d0-5b83-467d-9f54-f74033b514af] remote server not configured\n2025-10-28 02:36:24.442 [error] [command][ccf0269f-d4ca-4b7a-881a-df81450d2d60] Socket error: Error: read ECONNRESET\n2025-10-28 02:36:24.442 [info] [command][ccf0269f-d4ca-4b7a-881a-df81450d2d60] Socket close event received\n2025-10-28 02:36:24.442 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ccf0269f-d4ca-4b7a-881a-df81450d2d60] Socket closed without exit code\n2025-10-28 02:37:24.447 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:37:24.449 [info] [command][a16a0fe5-c3d8-458a-a927-167e9ea1a0c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a16a0fe5-c3d8-458a-a927-167e9ea1a0c6""}\n2025-10-28 02:37:24.450 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f9f8205c-2e68-49d0-b1fb-e813e42b152f] remote server not configured\n2025-10-28 02:37:24.450 [error] [command][a16a0fe5-c3d8-458a-a927-167e9ea1a0c6] Socket error: Error: read ECONNRESET\n2025-10-28 02:37:24.450 [info] [command][a16a0fe5-c3d8-458a-a927-167e9ea1a0c6] Socket close event received\n2025-10-28 02:37:24.451 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a16a0fe5-c3d8-458a-a927-167e9ea1a0c6] Socket closed without exit code\n2025-10-28 02:38:24.462 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:38:24.464 [info] [command][d89e12c8-d414-4d1c-a508-96c23ab6b972] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d89e12c8-d414-4d1c-a508-96c23ab6b972""}\n2025-10-28 02:38:24.465 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][551544a5-a5f1-46de-9c68-4aa008bd916f] remote server not configured\n2025-10-28 02:38:24.466 [error] [command][d89e12c8-d414-4d1c-a508-96c23ab6b972] Socket error: Error: read ECONNRESET\n2025-10-28 02:38:24.466 [info] [command][d89e12c8-d414-4d1c-a508-96c23ab6b972] Socket close event received\n2025-10-28 02:38:24.466 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d89e12c8-d414-4d1c-a508-96c23ab6b972] Socket closed without exit code\n2025-10-28 02:39:24.469 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:39:24.471 [info] [command][4d88c296-ef72-4b14-98d2-8858f6f67128] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4d88c296-ef72-4b14-98d2-8858f6f67128""}\n2025-10-28 02:39:24.472 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][92b83bf7-4f46-482b-ab20-c67594e89548] remote server not configured\n2025-10-28 02:39:24.472 [error] [command][4d88c296-ef72-4b14-98d2-8858f6f67128] Socket error: Error: read ECONNRESET\n2025-10-28 02:39:24.473 [info] [command][4d88c296-ef72-4b14-98d2-8858f6f67128] Socket close event received\n2025-10-28 02:39:24.473 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4d88c296-ef72-4b14-98d2-8858f6f67128] Socket closed without exit code\n2025-10-28 02:40:24.484 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:40:24.486 [info] [command][399f305b-0bce-426a-b47d-e4a5db7b5c50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""399f305b-0bce-426a-b47d-e4a5db7b5c50""}\n2025-10-28 02:40:24.486 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ecd00893-5110-4690-9be5-fe9e85d44d8e] remote server not configured\n2025-10-28 02:40:24.487 [error] [command][399f305b-0bce-426a-b47d-e4a5db7b5c50] Socket error: Error: read ECONNRESET\n2025-10-28 02:40:24.487 [info] [command][399f305b-0bce-426a-b47d-e4a5db7b5c50] Socket close event received\n2025-10-28 02:40:24.487 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][399f305b-0bce-426a-b47d-e4a5db7b5c50] Socket closed without exit code\n2025-10-28 02:41:24.498 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:41:24.499 [info] [command][03c6ee8d-be3c-41fe-a4df-60a1ef9b3432] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""03c6ee8d-be3c-41fe-a4df-60a1ef9b3432""}\n2025-10-28 02:41:24.499 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][65c00548-6ec3-4f91-82af-b75af8c5cc75] remote server not configured\n2025-10-28 02:41:24.499 [error] [command][03c6ee8d-be3c-41fe-a4df-60a1ef9b3432] Socket error: Error: read ECONNRESET\n2025-10-28 02:41:24.500 [info] [command][03c6ee8d-be3c-41fe-a4df-60a1ef9b3432] Socket close event received\n2025-10-28 02:41:24.500 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][03c6ee8d-be3c-41fe-a4df-60a1ef9b3432] Socket closed without exit code\n2025-10-28 02:42:24.510 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:42:24.512 [info] [command][ec75dbba-3b82-4dd9-b29c-f61c53a94eab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ec75dbba-3b82-4dd9-b29c-f61c53a94eab""}\n2025-10-28 02:42:24.513 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4c6ccf53-7e83-4268-bc9d-16139240b39d] remote server not configured\n2025-10-28 02:42:24.513 [error] [command][ec75dbba-3b82-4dd9-b29c-f61c53a94eab] Socket error: Error: read ECONNRESET\n2025-10-28 02:42:24.514 [info] [command][ec75dbba-3b82-4dd9-b29c-f61c53a94eab] Socket close event received\n2025-10-28 02:42:24.514 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ec75dbba-3b82-4dd9-b29c-f61c53a94eab] Socket closed without exit code\n2025-10-28 02:43:24.520 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:43:24.522 [info] [command][2d110201-9e6d-445c-9778-02f9319d2c01] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2d110201-9e6d-445c-9778-02f9319d2c01""}\n2025-10-28 02:43:24.523 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e7f96339-3a9e-434f-9eca-4b99381712e3] remote server not configured\n2025-10-28 02:43:24.523 [error] [command][2d110201-9e6d-445c-9778-02f9319d2c01] Socket error: Error: read ECONNRESET\n2025-10-28 02:43:24.524 [info] [command][2d110201-9e6d-445c-9778-02f9319d2c01] Socket close event received\n2025-10-28 02:43:24.524 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2d110201-9e6d-445c-9778-02f9319d2c01] Socket closed without exit code\n2025-10-28 02:44:24.528 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:44:24.531 [info] [command][37507a67-577f-405b-ae7c-9a70387f5a5e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""37507a67-577f-405b-ae7c-9a70387f5a5e""}\n2025-10-28 02:44:24.532 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c6f89762-228e-4f95-86e1-36324524eee8] remote server not configured\n2025-10-28 02:44:24.532 [error] [command][37507a67-577f-405b-ae7c-9a70387f5a5e] Socket error: Error: read ECONNRESET\n2025-10-28 02:44:24.532 [info] [command][37507a67-577f-405b-ae7c-9a70387f5a5e] Socket close event received\n2025-10-28 02:44:24.533 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][37507a67-577f-405b-ae7c-9a70387f5a5e] Socket closed without exit code\n2025-10-28 02:45:24.544 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:45:24.545 [info] [command][1a51eddd-5dfe-421d-be19-3eddfec80d0b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1a51eddd-5dfe-421d-be19-3eddfec80d0b""}\n2025-10-28 02:45:24.546 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ba2ce044-635b-421c-86e5-3a6e6bed072d] remote server not configured\n2025-10-28 02:45:24.546 [error] [command][1a51eddd-5dfe-421d-be19-3eddfec80d0b] Socket error: Error: read ECONNRESET\n2025-10-28 02:45:24.546 [info] [command][1a51eddd-5dfe-421d-be19-3eddfec80d0b] Socket close event received\n2025-10-28 02:45:24.546 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1a51eddd-5dfe-421d-be19-3eddfec80d0b] Socket closed without exit code\n2025-10-28 02:46:24.557 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:46:24.558 [info] [command][30dbfad7-9ad6-4764-949d-e895ff9208fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""30dbfad7-9ad6-4764-949d-e895ff9208fa""}\n2025-10-28 02:46:24.559 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][65e67e41-686b-408f-9570-4946da9cff58] remote server not configured\n2025-10-28 02:46:24.560 [error] [command][30dbfad7-9ad6-4764-949d-e895ff9208fa] Socket error: Error: read ECONNRESET\n2025-10-28 02:46:24.560 [info] [command][30dbfad7-9ad6-4764-949d-e895ff9208fa] Socket close event received\n2025-10-28 02:46:24.560 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][30dbfad7-9ad6-4764-949d-e895ff9208fa] Socket closed without exit code\n2025-10-28 02:47:24.571 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:47:24.573 [info] [command][a241c9ea-6ab4-465e-9dfc-e9bd7656b32f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a241c9ea-6ab4-465e-9dfc-e9bd7656b32f""}\n2025-10-28 02:47:24.574 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][df9f0bc3-1a1e-427a-935e-b91a41a4d39e] remote server not configured\n2025-10-28 02:47:24.574 [error] [command][a241c9ea-6ab4-465e-9dfc-e9bd7656b32f] Socket error: Error: read ECONNRESET\n2025-10-28 02:47:24.574 [info] [command][a241c9ea-6ab4-465e-9dfc-e9bd7656b32f] Socket close event received\n2025-10-28 02:47:24.575 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a241c9ea-6ab4-465e-9dfc-e9bd7656b32f] Socket closed without exit code\n2025-10-28 02:48:24.587 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:48:24.588 [info] [command][bc5b5039-1649-43f4-b15d-ae1d0ff962bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bc5b5039-1649-43f4-b15d-ae1d0ff962bd""}\n2025-10-28 02:48:24.589 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c0536196-0de9-4ebc-8076-68ab88f85385] remote server not configured\n2025-10-28 02:48:24.589 [error] [command][bc5b5039-1649-43f4-b15d-ae1d0ff962bd] Socket error: Error: read ECONNRESET\n2025-10-28 02:48:24.590 [info] [command][bc5b5039-1649-43f4-b15d-ae1d0ff962bd] Socket close event received\n2025-10-28 02:48:24.590 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bc5b5039-1649-43f4-b15d-ae1d0ff962bd] Socket closed without exit code\n2025-10-28 02:49:24.601 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:49:24.603 [info] [command][9b101cab-95b9-49b2-ba43-04d3da5f5db7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9b101cab-95b9-49b2-ba43-04d3da5f5db7""}\n2025-10-28 02:49:24.604 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3090472c-c91b-443d-95c2-6a080ab58fc1] remote server not configured\n2025-10-28 02:49:24.604 [error] [command][9b101cab-95b9-49b2-ba43-04d3da5f5db7] Socket error: Error: read ECONNRESET\n2025-10-28 02:49:24.605 [info] [command][9b101cab-95b9-49b2-ba43-04d3da5f5db7] Socket close event received\n2025-10-28 02:49:24.605 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9b101cab-95b9-49b2-ba43-04d3da5f5db7] Socket closed without exit code\n2025-10-28 02:50:24.616 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:50:24.618 [info] [command][91c54184-41c0-4ae3-8e92-81610b9feaec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""91c54184-41c0-4ae3-8e92-81610b9feaec""}\n2025-10-28 02:50:24.618 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d80d0d9a-1838-41e9-8c1f-a66eae38c767] remote server not configured\n2025-10-28 02:50:24.619 [error] [command][91c54184-41c0-4ae3-8e92-81610b9feaec] Socket error: Error: read ECONNRESET\n2025-10-28 02:50:24.619 [info] [command][91c54184-41c0-4ae3-8e92-81610b9feaec] Socket close event received\n2025-10-28 02:50:24.620 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][91c54184-41c0-4ae3-8e92-81610b9feaec] Socket closed without exit code\n2025-10-28 02:51:24.631 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:51:24.633 [info] [command][c43669d2-3229-4461-bfc0-93e1d67571ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c43669d2-3229-4461-bfc0-93e1d67571ff""}\n2025-10-28 02:51:24.633 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6788fba3-5722-4ed5-9228-891ee144f380] remote server not configured\n2025-10-28 02:51:24.634 [error] [command][c43669d2-3229-4461-bfc0-93e1d67571ff] Socket error: Error: read ECONNRESET\n2025-10-28 02:51:24.634 [info] [command][c43669d2-3229-4461-bfc0-93e1d67571ff] Socket close event received\n2025-10-28 02:51:24.634 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c43669d2-3229-4461-bfc0-93e1d67571ff] Socket closed without exit code\n2025-10-28 02:52:24.645 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:52:24.647 [info] [command][827ece24-9870-4c4e-86a5-df08cc279084] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""827ece24-9870-4c4e-86a5-df08cc279084""}\n2025-10-28 02:52:24.648 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f1efa22c-78dc-459a-924c-f1efe70a0252] remote server not configured\n2025-10-28 02:52:24.648 [error] [command][827ece24-9870-4c4e-86a5-df08cc279084] Socket error: Error: read ECONNRESET\n2025-10-28 02:52:24.648 [info] [command][827ece24-9870-4c4e-86a5-df08cc279084] Socket close event received\n2025-10-28 02:52:24.649 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][827ece24-9870-4c4e-86a5-df08cc279084] Socket closed without exit code\n2025-10-28 02:53:24.650 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:53:24.651 [info] [command][6977b65b-b4b9-4ade-b3fc-d98e2bb8c170] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6977b65b-b4b9-4ade-b3fc-d98e2bb8c170""}\n2025-10-28 02:53:24.652 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][829229f1-9185-4d05-9274-16af6a6563ce] remote server not configured\n2025-10-28 02:53:24.653 [error] [command][6977b65b-b4b9-4ade-b3fc-d98e2bb8c170] Socket error: Error: read ECONNRESET\n2025-10-28 02:53:24.653 [info] [command][6977b65b-b4b9-4ade-b3fc-d98e2bb8c170] Socket close event received\n2025-10-28 02:53:24.653 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6977b65b-b4b9-4ade-b3fc-d98e2bb8c170] Socket closed without exit code\n2025-10-28 02:54:24.664 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:54:24.667 [info] [command][fededd0c-7a41-49d4-8936-785ee8494386] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fededd0c-7a41-49d4-8936-785ee8494386""}\n2025-10-28 02:54:24.668 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a1c29833-6a7e-41c3-abe1-89466edddd71] remote server not configured\n2025-10-28 02:54:24.668 [error] [command][fededd0c-7a41-49d4-8936-785ee8494386] Socket error: Error: read ECONNRESET\n2025-10-28 02:54:24.669 [info] [command][fededd0c-7a41-49d4-8936-785ee8494386] Socket close event received\n2025-10-28 02:54:24.669 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fededd0c-7a41-49d4-8936-785ee8494386] Socket closed without exit code\n2025-10-28 02:55:24.679 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:55:24.681 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][91ea3abb-11e6-4bc6-b896-de38b4fd7c56] remote server not configured\n2025-10-28 02:55:24.682 [info] [command][07e19146-c7e2-4d78-a7c6-f8ba62be73fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""07e19146-c7e2-4d78-a7c6-f8ba62be73fe""}\n2025-10-28 02:55:24.682 [error] [command][07e19146-c7e2-4d78-a7c6-f8ba62be73fe] Socket error: Error: read ECONNRESET\n2025-10-28 02:55:24.683 [info] [command][07e19146-c7e2-4d78-a7c6-f8ba62be73fe] Socket close event received\n2025-10-28 02:55:24.683 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][07e19146-c7e2-4d78-a7c6-f8ba62be73fe] Socket closed without exit code\n2025-10-28 02:56:24.691 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:56:24.692 [info] [command][c69a8914-7b0f-466a-bd04-7637dd238b46] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c69a8914-7b0f-466a-bd04-7637dd238b46""}\n2025-10-28 02:56:24.693 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fd39d731-d7cc-4d67-b229-b5a606112a1b] remote server not configured\n2025-10-28 02:56:24.693 [error] [command][c69a8914-7b0f-466a-bd04-7637dd238b46] Socket error: Error: read ECONNRESET\n2025-10-28 02:56:24.694 [info] [command][c69a8914-7b0f-466a-bd04-7637dd238b46] Socket close event received\n2025-10-28 02:56:24.694 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c69a8914-7b0f-466a-bd04-7637dd238b46] Socket closed without exit code\n2025-10-28 02:57:24.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:57:24.707 [info] [command][8294fe97-4605-4298-8789-e3a679225c02] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8294fe97-4605-4298-8789-e3a679225c02""}\n2025-10-28 02:57:24.707 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][129b8cb8-783e-4f0f-83fd-f8fae44e3b64] remote server not configured\n2025-10-28 02:57:24.708 [error] [command][8294fe97-4605-4298-8789-e3a679225c02] Socket error: Error: read ECONNRESET\n2025-10-28 02:57:24.708 [info] [command][8294fe97-4605-4298-8789-e3a679225c02] Socket close event received\n2025-10-28 02:57:24.709 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8294fe97-4605-4298-8789-e3a679225c02] Socket closed without exit code\n2025-10-28 02:58:24.720 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:58:24.722 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b58d81d0-bde6-4863-a75d-dcc34f58afbd] remote server not configured\n2025-10-28 02:58:24.723 [info] [command][018a1b25-dc1a-4a39-9792-f019600578e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""018a1b25-dc1a-4a39-9792-f019600578e1""}\n2025-10-28 02:58:24.723 [error] [command][018a1b25-dc1a-4a39-9792-f019600578e1] Socket error: Error: read ECONNRESET\n2025-10-28 02:58:24.724 [info] [command][018a1b25-dc1a-4a39-9792-f019600578e1] Socket close event received\n2025-10-28 02:58:24.724 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][018a1b25-dc1a-4a39-9792-f019600578e1] Socket closed without exit code\n2025-10-28 02:59:24.735 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 02:59:24.736 [info] [command][ff58ade6-5d6c-4b75-b5d9-130e78888b0f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ff58ade6-5d6c-4b75-b5d9-130e78888b0f""}\n2025-10-28 02:59:24.737 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][da9264c1-8b0a-47cf-9cfb-9b445141dc60] remote server not configured\n2025-10-28 02:59:24.738 [error] [command][ff58ade6-5d6c-4b75-b5d9-130e78888b0f] Socket error: Error: read ECONNRESET\n2025-10-28 02:59:24.738 [info] [command][ff58ade6-5d6c-4b75-b5d9-130e78888b0f] Socket close event received\n2025-10-28 02:59:24.738 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ff58ade6-5d6c-4b75-b5d9-130e78888b0f] Socket closed without exit code\n2025-10-28 03:00:24.749 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:00:24.751 [info] [command][c3164349-a639-4b62-999f-b72cb76f1ea1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c3164349-a639-4b62-999f-b72cb76f1ea1""}\n2025-10-28 03:00:24.751 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2c8653e8-0bdd-43ef-9a49-20e9b8614182] remote server not configured\n2025-10-28 03:00:24.752 [error] [command][c3164349-a639-4b62-999f-b72cb76f1ea1] Socket error: Error: read ECONNRESET\n2025-10-28 03:00:24.752 [info] [command][c3164349-a639-4b62-999f-b72cb76f1ea1] Socket close event received\n2025-10-28 03:00:24.752 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c3164349-a639-4b62-999f-b72cb76f1ea1] Socket closed without exit code\n2025-10-28 03:01:24.757 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:01:24.760 [info] [command][c3eda67b-ab8e-41dc-96b7-68cc69f4d586] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c3eda67b-ab8e-41dc-96b7-68cc69f4d586""}\n2025-10-28 03:01:24.761 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a387f383-2492-4198-94d3-76e38f5b9b50] remote server not configured\n2025-10-28 03:01:24.761 [error] [command][c3eda67b-ab8e-41dc-96b7-68cc69f4d586] Socket error: Error: read ECONNRESET\n2025-10-28 03:01:24.762 [info] [command][c3eda67b-ab8e-41dc-96b7-68cc69f4d586] Socket close event received\n2025-10-28 03:01:24.762 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c3eda67b-ab8e-41dc-96b7-68cc69f4d586] Socket closed without exit code\n2025-10-28 03:02:24.773 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:02:24.776 [info] [command][4a906301-443a-4435-9036-d210b819acb6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4a906301-443a-4435-9036-d210b819acb6""}\n2025-10-28 03:02:24.777 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2b1279dc-4a19-49f8-abd2-63cda9853c0a] remote server not configured\n2025-10-28 03:02:24.777 [error] [command][4a906301-443a-4435-9036-d210b819acb6] Socket error: Error: read ECONNRESET\n2025-10-28 03:02:24.777 [info] [command][4a906301-443a-4435-9036-d210b819acb6] Socket close event received\n2025-10-28 03:02:24.777 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4a906301-443a-4435-9036-d210b819acb6] Socket closed without exit code\n2025-10-28 03:03:24.784 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:03:24.786 [info] [command][80496c42-61b6-4ec2-9a98-4d4839139479] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""80496c42-61b6-4ec2-9a98-4d4839139479""}\n2025-10-28 03:03:24.787 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9083e70a-b441-4412-920c-cfdd99f7bfcc] remote server not configured\n2025-10-28 03:03:24.787 [error] [command][80496c42-61b6-4ec2-9a98-4d4839139479] Socket error: Error: read ECONNRESET\n2025-10-28 03:03:24.788 [info] [command][80496c42-61b6-4ec2-9a98-4d4839139479] Socket close event received\n2025-10-28 03:03:24.788 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][80496c42-61b6-4ec2-9a98-4d4839139479] Socket closed without exit code\n2025-10-28 03:04:24.799 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:04:24.801 [info] [command][d7e3c28e-c2ee-4f5e-819d-25319e740963] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d7e3c28e-c2ee-4f5e-819d-25319e740963""}\n2025-10-28 03:04:24.801 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cdad4c06-bb92-4278-bb2f-106037f1f45e] remote server not configured\n2025-10-28 03:04:24.802 [error] [command][d7e3c28e-c2ee-4f5e-819d-25319e740963] Socket error: Error: read ECONNRESET\n2025-10-28 03:04:24.802 [info] [command][d7e3c28e-c2ee-4f5e-819d-25319e740963] Socket close event received\n2025-10-28 03:04:24.802 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d7e3c28e-c2ee-4f5e-819d-25319e740963] Socket closed without exit code\n2025-10-28 03:05:24.813 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:05:24.815 [info] [command][983a710f-40cb-4108-8858-27b09ac15f85] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""983a710f-40cb-4108-8858-27b09ac15f85""}\n2025-10-28 03:05:24.816 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a42d8dea-f337-4a43-81df-74fa833b56ea] remote server not configured\n2025-10-28 03:05:24.817 [error] [command][983a710f-40cb-4108-8858-27b09ac15f85] Socket error: Error: read ECONNRESET\n2025-10-28 03:05:24.817 [info] [command][983a710f-40cb-4108-8858-27b09ac15f85] Socket close event received\n2025-10-28 03:05:24.817 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][983a710f-40cb-4108-8858-27b09ac15f85] Socket closed without exit code\n2025-10-28 03:06:24.825 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:06:24.827 [info] [command][54ade521-faff-482b-beed-dd13450f2383] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""54ade521-faff-482b-beed-dd13450f2383""}\n2025-10-28 03:06:24.827 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b59611eb-5f0c-455f-9ec4-b6f15f46a843] remote server not configured\n2025-10-28 03:06:24.828 [error] [command][54ade521-faff-482b-beed-dd13450f2383] Socket error: Error: read ECONNRESET\n2025-10-28 03:06:24.828 [info] [command][54ade521-faff-482b-beed-dd13450f2383] Socket close event received\n2025-10-28 03:06:24.828 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][54ade521-faff-482b-beed-dd13450f2383] Socket closed without exit code\n2025-10-28 03:07:24.833 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:07:24.835 [info] [command][3668cc94-d073-4e00-8e1f-7bcf950a3091] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3668cc94-d073-4e00-8e1f-7bcf950a3091""}\n2025-10-28 03:07:24.836 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7f3d5faf-dbc1-4c3b-9730-5e280973d012] remote server not configured\n2025-10-28 03:07:24.837 [error] [command][3668cc94-d073-4e00-8e1f-7bcf950a3091] Socket error: Error: read ECONNRESET\n2025-10-28 03:07:24.837 [info] [command][3668cc94-d073-4e00-8e1f-7bcf950a3091] Socket close event received\n2025-10-28 03:07:24.837 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3668cc94-d073-4e00-8e1f-7bcf950a3091] Socket closed without exit code\n2025-10-28 03:08:24.842 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:08:24.844 [info] [command][12cdf0bd-57be-4394-b385-6e392107f0b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""12cdf0bd-57be-4394-b385-6e392107f0b6""}\n2025-10-28 03:08:24.844 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][96e725d0-a670-495c-b6f6-4668794292bb] remote server not configured\n2025-10-28 03:08:24.845 [error] [command][12cdf0bd-57be-4394-b385-6e392107f0b6] Socket error: Error: read ECONNRESET\n2025-10-28 03:08:24.845 [info] [command][12cdf0bd-57be-4394-b385-6e392107f0b6] Socket close event received\n2025-10-28 03:08:24.845 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][12cdf0bd-57be-4394-b385-6e392107f0b6] Socket closed without exit code\n2025-10-28 03:09:24.851 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:09:24.853 [info] [command][37219e4c-9990-491d-b56c-2393b08fb84a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""37219e4c-9990-491d-b56c-2393b08fb84a""}\n2025-10-28 03:09:24.854 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][76dfaf6e-9ace-4c06-9acb-5ef2d46b0657] remote server not configured\n2025-10-28 03:09:24.854 [error] [command][37219e4c-9990-491d-b56c-2393b08fb84a] Socket error: Error: read ECONNRESET\n2025-10-28 03:09:24.855 [info] [command][37219e4c-9990-491d-b56c-2393b08fb84a] Socket close event received\n2025-10-28 03:09:24.855 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][37219e4c-9990-491d-b56c-2393b08fb84a] Socket closed without exit code\n2025-10-28 03:10:24.860 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:10:24.862 [info] [command][13c4148f-c1ed-4a21-baa7-c53fdd024ad4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""13c4148f-c1ed-4a21-baa7-c53fdd024ad4""}\n2025-10-28 03:10:24.862 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c6e2d015-d6dd-4984-9cb2-3f007690abc3] remote server not configured\n2025-10-28 03:10:24.863 [error] [command][13c4148f-c1ed-4a21-baa7-c53fdd024ad4] Socket error: Error: read ECONNRESET\n2025-10-28 03:10:24.863 [info] [command][13c4148f-c1ed-4a21-baa7-c53fdd024ad4] Socket close event received\n2025-10-28 03:10:24.863 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][13c4148f-c1ed-4a21-baa7-c53fdd024ad4] Socket closed without exit code\n2025-10-28 03:11:24.868 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:11:24.870 [info] [command][66f65248-069b-4e46-b94f-7a79ce83e09e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""66f65248-069b-4e46-b94f-7a79ce83e09e""}\n2025-10-28 03:11:24.871 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][439d9b4f-c2a7-4c79-8f5a-25974e219919] remote server not configured\n2025-10-28 03:11:24.871 [error] [command][66f65248-069b-4e46-b94f-7a79ce83e09e] Socket error: Error: read ECONNRESET\n2025-10-28 03:11:24.871 [info] [command][66f65248-069b-4e46-b94f-7a79ce83e09e] Socket close event received\n2025-10-28 03:11:24.872 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][66f65248-069b-4e46-b94f-7a79ce83e09e] Socket closed without exit code\n2025-10-28 03:12:24.883 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:12:24.885 [info] [command][c52c4df3-ef33-4af6-bda5-9b5360932622] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c52c4df3-ef33-4af6-bda5-9b5360932622""}\n2025-10-28 03:12:24.886 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][45e39992-8012-43f6-aa64-bdf79b078aa9] remote server not configured\n2025-10-28 03:12:24.887 [error] [command][c52c4df3-ef33-4af6-bda5-9b5360932622] Socket error: Error: read ECONNRESET\n2025-10-28 03:12:24.887 [info] [command][c52c4df3-ef33-4af6-bda5-9b5360932622] Socket close event received\n2025-10-28 03:12:24.887 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c52c4df3-ef33-4af6-bda5-9b5360932622] Socket closed without exit code\n2025-10-28 03:13:24.894 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:13:24.896 [info] [command][24fbdbe0-876f-4997-86e2-9c3f9bf7b95c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""24fbdbe0-876f-4997-86e2-9c3f9bf7b95c""}\n2025-10-28 03:13:24.897 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][92e2710a-829c-43ca-9a9e-696d28c0dd43] remote server not configured\n2025-10-28 03:13:24.897 [error] [command][24fbdbe0-876f-4997-86e2-9c3f9bf7b95c] Socket error: Error: read ECONNRESET\n2025-10-28 03:13:24.897 [info] [command][24fbdbe0-876f-4997-86e2-9c3f9bf7b95c] Socket close event received\n2025-10-28 03:13:24.898 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][24fbdbe0-876f-4997-86e2-9c3f9bf7b95c] Socket closed without exit code\n2025-10-28 03:14:24.909 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:14:24.911 [info] [command][776bf49e-74bc-43e7-8c35-7e49bceda983] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""776bf49e-74bc-43e7-8c35-7e49bceda983""}\n2025-10-28 03:14:24.911 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9c35ce71-2218-4494-90b2-2ccb15ae1d23] remote server not configured\n2025-10-28 03:14:24.912 [error] [command][776bf49e-74bc-43e7-8c35-7e49bceda983] Socket error: Error: read ECONNRESET\n2025-10-28 03:14:24.912 [info] [command][776bf49e-74bc-43e7-8c35-7e49bceda983] Socket close event received\n2025-10-28 03:14:24.913 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][776bf49e-74bc-43e7-8c35-7e49bceda983] Socket closed without exit code\n2025-10-28 03:15:24.924 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:15:24.925 [info] [command][5c09b6b0-ca76-4f44-b0af-4982b16db809] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5c09b6b0-ca76-4f44-b0af-4982b16db809""}\n2025-10-28 03:15:24.926 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0b14e96f-a7f2-43f6-8cd6-3fca3c568734] remote server not configured\n2025-10-28 03:15:24.927 [error] [command][5c09b6b0-ca76-4f44-b0af-4982b16db809] Socket error: Error: read ECONNRESET\n2025-10-28 03:15:24.927 [info] [command][5c09b6b0-ca76-4f44-b0af-4982b16db809] Socket close event received\n2025-10-28 03:15:24.927 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5c09b6b0-ca76-4f44-b0af-4982b16db809] Socket closed without exit code\n2025-10-28 03:16:24.931 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:16:24.933 [info] [command][dba00670-3714-4513-ab69-881a75a05cda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dba00670-3714-4513-ab69-881a75a05cda""}\n2025-10-28 03:16:24.934 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6e4e1bfb-d379-41d2-b38c-bb70be75f1c5] remote server not configured\n2025-10-28 03:16:24.935 [error] [command][dba00670-3714-4513-ab69-881a75a05cda] Socket error: Error: read ECONNRESET\n2025-10-28 03:16:24.935 [info] [command][dba00670-3714-4513-ab69-881a75a05cda] Socket close event received\n2025-10-28 03:16:24.935 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dba00670-3714-4513-ab69-881a75a05cda] Socket closed without exit code\n2025-10-28 03:17:24.943 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:17:24.945 [info] [command][8d3fb91d-3fae-441b-a704-aabf598ad914] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8d3fb91d-3fae-441b-a704-aabf598ad914""}\n2025-10-28 03:17:24.946 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fabde6b1-28bc-4abf-816e-c29b66caaf84] remote server not configured\n2025-10-28 03:17:24.946 [error] [command][8d3fb91d-3fae-441b-a704-aabf598ad914] Socket error: Error: read ECONNRESET\n2025-10-28 03:17:24.947 [info] [command][8d3fb91d-3fae-441b-a704-aabf598ad914] Socket close event received\n2025-10-28 03:17:24.947 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8d3fb91d-3fae-441b-a704-aabf598ad914] Socket closed without exit code\n2025-10-28 03:18:24.954 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:18:24.956 [info] [command][9ab2535c-489a-437c-a42b-61724e21e058] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9ab2535c-489a-437c-a42b-61724e21e058""}\n2025-10-28 03:18:24.957 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c8eefabc-c41b-4738-8ca2-343de15d8772] remote server not configured\n2025-10-28 03:18:24.957 [error] [command][9ab2535c-489a-437c-a42b-61724e21e058] Socket error: Error: read ECONNRESET\n2025-10-28 03:18:24.957 [info] [command][9ab2535c-489a-437c-a42b-61724e21e058] Socket close event received\n2025-10-28 03:18:24.957 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9ab2535c-489a-437c-a42b-61724e21e058] Socket closed without exit code\n2025-10-28 03:19:24.967 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:19:24.969 [info] [command][e525f326-fddc-4b11-a807-e83a83802a22] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e525f326-fddc-4b11-a807-e83a83802a22""}\n2025-10-28 03:19:24.969 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b194fc28-1b33-47c3-993f-a452b5f246eb] remote server not configured\n2025-10-28 03:19:24.970 [error] [command][e525f326-fddc-4b11-a807-e83a83802a22] Socket error: Error: read ECONNRESET\n2025-10-28 03:19:24.970 [info] [command][e525f326-fddc-4b11-a807-e83a83802a22] Socket close event received\n2025-10-28 03:19:24.970 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e525f326-fddc-4b11-a807-e83a83802a22] Socket closed without exit code\n2025-10-28 03:20:24.981 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:20:24.983 [info] [command][2c5b95db-96bc-4279-b4b7-5975798673b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2c5b95db-96bc-4279-b4b7-5975798673b8""}\n2025-10-28 03:20:24.983 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a8b94083-4dff-4827-85ca-f55793cb066b] remote server not configured\n2025-10-28 03:20:24.984 [error] [command][2c5b95db-96bc-4279-b4b7-5975798673b8] Socket error: Error: read ECONNRESET\n2025-10-28 03:20:24.984 [info] [command][2c5b95db-96bc-4279-b4b7-5975798673b8] Socket close event received\n2025-10-28 03:20:24.985 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2c5b95db-96bc-4279-b4b7-5975798673b8] Socket closed without exit code\n2025-10-28 03:21:24.995 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:21:24.997 [info] [command][46a88249-a9ba-4dda-ac94-edfccde5dc84] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""46a88249-a9ba-4dda-ac94-edfccde5dc84""}\n2025-10-28 03:21:24.998 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ed2adfa8-88fc-4b0c-abd7-d0e2d8f46a10] remote server not configured\n2025-10-28 03:21:24.998 [error] [command][46a88249-a9ba-4dda-ac94-edfccde5dc84] Socket error: Error: read ECONNRESET\n2025-10-28 03:21:24.999 [info] [command][46a88249-a9ba-4dda-ac94-edfccde5dc84] Socket close event received\n2025-10-28 03:21:24.999 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][46a88249-a9ba-4dda-ac94-edfccde5dc84] Socket closed without exit code\n2025-10-28 03:22:25.009 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:22:25.011 [info] [command][22d4b625-65b9-4582-a6fb-7eed6e762cfd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""22d4b625-65b9-4582-a6fb-7eed6e762cfd""}\n2025-10-28 03:22:25.012 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][551b2e5f-9057-4760-8cde-fc0f0c52d70c] remote server not configured\n2025-10-28 03:22:25.013 [error] [command][22d4b625-65b9-4582-a6fb-7eed6e762cfd] Socket error: Error: read ECONNRESET\n2025-10-28 03:22:25.013 [info] [command][22d4b625-65b9-4582-a6fb-7eed6e762cfd] Socket close event received\n2025-10-28 03:22:25.013 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][22d4b625-65b9-4582-a6fb-7eed6e762cfd] Socket closed without exit code\n2025-10-28 03:23:25.024 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:23:25.026 [info] [command][78994052-0257-4a3b-b70c-3805f869afa1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""78994052-0257-4a3b-b70c-3805f869afa1""}\n2025-10-28 03:23:25.027 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d9632c0f-774e-467f-8558-c87a3bca765b] remote server not configured\n2025-10-28 03:23:25.027 [error] [command][78994052-0257-4a3b-b70c-3805f869afa1] Socket error: Error: read ECONNRESET\n2025-10-28 03:23:25.028 [info] [command][78994052-0257-4a3b-b70c-3805f869afa1] Socket close event received\n2025-10-28 03:23:25.028 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][78994052-0257-4a3b-b70c-3805f869afa1] Socket closed without exit code\n2025-10-28 03:24:25.038 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:24:25.040 [info] [command][9b6edad0-577f-4289-b5a5-d065935fa5b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9b6edad0-577f-4289-b5a5-d065935fa5b3""}\n2025-10-28 03:24:25.041 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][af7ab099-9d17-472b-bf73-d538e107ea16] remote server not configured\n2025-10-28 03:24:25.041 [error] [command][9b6edad0-577f-4289-b5a5-d065935fa5b3] Socket error: Error: read ECONNRESET\n2025-10-28 03:24:25.042 [info] [command][9b6edad0-577f-4289-b5a5-d065935fa5b3] Socket close event received\n2025-10-28 03:24:25.042 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9b6edad0-577f-4289-b5a5-d065935fa5b3] Socket closed without exit code\n2025-10-28 03:25:25.045 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:25:25.047 [info] [command][5a52174b-26f4-414f-9d74-ddd972086c5f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5a52174b-26f4-414f-9d74-ddd972086c5f""}\n2025-10-28 03:25:25.048 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][daeb2aa7-cb67-47ee-aff0-9ff6087b17d4] remote server not configured\n2025-10-28 03:25:25.049 [error] [command][5a52174b-26f4-414f-9d74-ddd972086c5f] Socket error: Error: read ECONNRESET\n2025-10-28 03:25:25.049 [info] [command][5a52174b-26f4-414f-9d74-ddd972086c5f] Socket close event received\n2025-10-28 03:25:25.049 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5a52174b-26f4-414f-9d74-ddd972086c5f] Socket closed without exit code\n2025-10-28 03:26:25.051 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:26:25.053 [info] [command][c2e767ef-c6e8-40c4-a4c0-17eb28862624] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c2e767ef-c6e8-40c4-a4c0-17eb28862624""}\n2025-10-28 03:26:25.053 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f3d74730-dd38-4723-a0f7-25d5a84c9b24] remote server not configured\n2025-10-28 03:26:25.054 [error] [command][c2e767ef-c6e8-40c4-a4c0-17eb28862624] Socket error: Error: read ECONNRESET\n2025-10-28 03:26:25.054 [info] [command][c2e767ef-c6e8-40c4-a4c0-17eb28862624] Socket close event received\n2025-10-28 03:26:25.055 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c2e767ef-c6e8-40c4-a4c0-17eb28862624] Socket closed without exit code\n2025-10-28 03:27:25.058 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:27:25.059 [info] [command][4314a2d8-d34e-48cc-9573-7e97e2307aad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4314a2d8-d34e-48cc-9573-7e97e2307aad""}\n2025-10-28 03:27:25.060 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5937f529-e35a-4e73-a576-b4e2863f8625] remote server not configured\n2025-10-28 03:27:25.060 [error] [command][4314a2d8-d34e-48cc-9573-7e97e2307aad] Socket error: Error: read ECONNRESET\n2025-10-28 03:27:25.060 [info] [command][4314a2d8-d34e-48cc-9573-7e97e2307aad] Socket close event received\n2025-10-28 03:27:25.061 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4314a2d8-d34e-48cc-9573-7e97e2307aad] Socket closed without exit code\n2025-10-28 03:28:25.062 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:28:25.064 [info] [command][b7d44ed7-1b04-49d4-87e0-2d3bd0b1e798] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b7d44ed7-1b04-49d4-87e0-2d3bd0b1e798""}\n2025-10-28 03:28:25.064 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dd7a2839-3a7c-4716-a6f6-5655c208f1ba] remote server not configured\n2025-10-28 03:28:25.065 [error] [command][b7d44ed7-1b04-49d4-87e0-2d3bd0b1e798] Socket error: Error: read ECONNRESET\n2025-10-28 03:28:25.065 [info] [command][b7d44ed7-1b04-49d4-87e0-2d3bd0b1e798] Socket close event received\n2025-10-28 03:28:25.065 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b7d44ed7-1b04-49d4-87e0-2d3bd0b1e798] Socket closed without exit code\n2025-10-28 03:29:25.076 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:29:25.078 [info] [command][06359025-d0f1-455a-a554-7f8c695e4ed8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""06359025-d0f1-455a-a554-7f8c695e4ed8""}\n2025-10-28 03:29:25.078 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][451c7ecd-55da-4076-ac7a-14e5a30b87db] remote server not configured\n2025-10-28 03:29:25.079 [error] [command][06359025-d0f1-455a-a554-7f8c695e4ed8] Socket error: Error: read ECONNRESET\n2025-10-28 03:29:25.079 [info] [command][06359025-d0f1-455a-a554-7f8c695e4ed8] Socket close event received\n2025-10-28 03:29:25.079 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][06359025-d0f1-455a-a554-7f8c695e4ed8] Socket closed without exit code\n2025-10-28 03:30:25.085 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:30:25.087 [info] [command][4947227e-b908-4881-9785-f26f548f8b35] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4947227e-b908-4881-9785-f26f548f8b35""}\n2025-10-28 03:30:25.087 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][299ca7ce-2cae-406c-8035-874c2d881948] remote server not configured\n2025-10-28 03:30:25.088 [error] [command][4947227e-b908-4881-9785-f26f548f8b35] Socket error: Error: read ECONNRESET\n2025-10-28 03:30:25.089 [info] [command][4947227e-b908-4881-9785-f26f548f8b35] Socket close event received\n2025-10-28 03:30:25.089 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4947227e-b908-4881-9785-f26f548f8b35] Socket closed without exit code\n2025-10-28 03:31:25.101 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:31:25.102 [info] [command][6f086d21-ec28-4b23-bb51-b82ccbe90313] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6f086d21-ec28-4b23-bb51-b82ccbe90313""}\n2025-10-28 03:31:25.103 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][72f4695d-4622-405b-bf60-e8d0b3295885] remote server not configured\n2025-10-28 03:31:25.103 [error] [command][6f086d21-ec28-4b23-bb51-b82ccbe90313] Socket error: Error: read ECONNRESET\n2025-10-28 03:31:25.104 [info] [command][6f086d21-ec28-4b23-bb51-b82ccbe90313] Socket close event received\n2025-10-28 03:31:25.104 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6f086d21-ec28-4b23-bb51-b82ccbe90313] Socket closed without exit code\n2025-10-28 03:32:25.107 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:32:25.109 [info] [command][e6ba5241-3908-4e79-b5cb-6b483115e258] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e6ba5241-3908-4e79-b5cb-6b483115e258""}\n2025-10-28 03:32:25.110 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7ff7705a-3105-4232-bafd-3f78de17eab3] remote server not configured\n2025-10-28 03:32:25.110 [error] [command][e6ba5241-3908-4e79-b5cb-6b483115e258] Socket error: Error: read ECONNRESET\n2025-10-28 03:32:25.111 [info] [command][e6ba5241-3908-4e79-b5cb-6b483115e258] Socket close event received\n2025-10-28 03:32:25.111 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e6ba5241-3908-4e79-b5cb-6b483115e258] Socket closed without exit code\n2025-10-28 03:33:25.122 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:33:25.124 [info] [command][16c72ff2-721e-41f8-9d9a-4c0283ade612] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""16c72ff2-721e-41f8-9d9a-4c0283ade612""}\n2025-10-28 03:33:25.125 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b47bb835-eb7a-4bc4-bcfc-f9fe0442c8c4] remote server not configured\n2025-10-28 03:33:25.125 [error] [command][16c72ff2-721e-41f8-9d9a-4c0283ade612] Socket error: Error: read ECONNRESET\n2025-10-28 03:33:25.125 [info] [command][16c72ff2-721e-41f8-9d9a-4c0283ade612] Socket close event received\n2025-10-28 03:33:25.125 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][16c72ff2-721e-41f8-9d9a-4c0283ade612] Socket closed without exit code\n2025-10-28 03:34:25.132 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:34:25.134 [info] [command][eb62ab82-b029-40e3-941e-20d593415809] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""eb62ab82-b029-40e3-941e-20d593415809""}\n2025-10-28 03:34:25.134 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2cdf3cf5-a231-40dc-8749-f5b7e198a913] remote server not configured\n2025-10-28 03:34:25.135 [error] [command][eb62ab82-b029-40e3-941e-20d593415809] Socket error: Error: read ECONNRESET\n2025-10-28 03:34:25.136 [info] [command][eb62ab82-b029-40e3-941e-20d593415809] Socket close event received\n2025-10-28 03:34:25.136 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][eb62ab82-b029-40e3-941e-20d593415809] Socket closed without exit code\n2025-10-28 03:35:25.142 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:35:25.144 [info] [command][2773d974-3665-469f-9cf3-f4627a00928a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2773d974-3665-469f-9cf3-f4627a00928a""}\n2025-10-28 03:35:25.144 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a38b7f76-c6a1-4fca-b0a5-b8c595a20f82] remote server not configured\n2025-10-28 03:35:25.145 [error] [command][2773d974-3665-469f-9cf3-f4627a00928a] Socket error: Error: read ECONNRESET\n2025-10-28 03:35:25.145 [info] [command][2773d974-3665-469f-9cf3-f4627a00928a] Socket close event received\n2025-10-28 03:35:25.146 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2773d974-3665-469f-9cf3-f4627a00928a] Socket closed without exit code\n2025-10-28 03:36:25.156 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:36:25.159 [info] [command][5cd3943c-9acf-40f2-848e-e1d549d1001e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5cd3943c-9acf-40f2-848e-e1d549d1001e""}\n2025-10-28 03:36:25.160 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b13d6995-91b5-410b-a9bd-f9cecf54812b] remote server not configured\n2025-10-28 03:36:25.160 [error] [command][5cd3943c-9acf-40f2-848e-e1d549d1001e] Socket error: Error: read ECONNRESET\n2025-10-28 03:36:25.161 [info] [command][5cd3943c-9acf-40f2-848e-e1d549d1001e] Socket close event received\n2025-10-28 03:36:25.161 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5cd3943c-9acf-40f2-848e-e1d549d1001e] Socket closed without exit code\n2025-10-28 03:37:25.172 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:37:25.174 [info] [command][a17d57ec-9e57-47cd-8ccc-2feca43eecab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a17d57ec-9e57-47cd-8ccc-2feca43eecab""}\n2025-10-28 03:37:25.174 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c42f8de9-3893-4b09-975e-33b21088aa08] remote server not configured\n2025-10-28 03:37:25.175 [error] [command][a17d57ec-9e57-47cd-8ccc-2feca43eecab] Socket error: Error: read ECONNRESET\n2025-10-28 03:37:25.175 [info] [command][a17d57ec-9e57-47cd-8ccc-2feca43eecab] Socket close event received\n2025-10-28 03:37:25.175 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a17d57ec-9e57-47cd-8ccc-2feca43eecab] Socket closed without exit code\n2025-10-28 03:38:25.184 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:38:25.186 [info] [command][b1775976-9330-4857-9203-85251f48e670] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b1775976-9330-4857-9203-85251f48e670""}\n2025-10-28 03:38:25.187 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8c11f91e-8d6a-448b-8b84-a2d38e209240] remote server not configured\n2025-10-28 03:38:25.187 [error] [command][b1775976-9330-4857-9203-85251f48e670] Socket error: Error: read ECONNRESET\n2025-10-28 03:38:25.188 [info] [command][b1775976-9330-4857-9203-85251f48e670] Socket close event received\n2025-10-28 03:38:25.188 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b1775976-9330-4857-9203-85251f48e670] Socket closed without exit code\n2025-10-28 03:39:25.199 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:39:25.201 [info] [command][38fc89e5-0bc6-4b12-9618-afa61f95b2da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""38fc89e5-0bc6-4b12-9618-afa61f95b2da""}\n2025-10-28 03:39:25.202 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c8086326-68ef-4283-9e46-5371a1f48bec] remote server not configured\n2025-10-28 03:39:25.202 [error] [command][38fc89e5-0bc6-4b12-9618-afa61f95b2da] Socket error: Error: read ECONNRESET\n2025-10-28 03:39:25.203 [info] [command][38fc89e5-0bc6-4b12-9618-afa61f95b2da] Socket close event received\n2025-10-28 03:39:25.203 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][38fc89e5-0bc6-4b12-9618-afa61f95b2da] Socket closed without exit code\n2025-10-28 03:40:25.212 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:40:25.213 [info] [command][9305f134-a414-4da4-b3e2-e2c006afcfef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9305f134-a414-4da4-b3e2-e2c006afcfef""}\n2025-10-28 03:40:25.214 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][19ddcd59-2f36-4153-97d4-a1ff7fbc8f9e] remote server not configured\n2025-10-28 03:40:25.214 [error] [command][9305f134-a414-4da4-b3e2-e2c006afcfef] Socket error: Error: read ECONNRESET\n2025-10-28 03:40:25.214 [info] [command][9305f134-a414-4da4-b3e2-e2c006afcfef] Socket close event received\n2025-10-28 03:40:25.214 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9305f134-a414-4da4-b3e2-e2c006afcfef] Socket closed without exit code\n2025-10-28 03:41:25.218 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:41:25.219 [info] [command][475e433e-6fe4-4eb8-871b-6676f0bbf6c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""475e433e-6fe4-4eb8-871b-6676f0bbf6c2""}\n2025-10-28 03:41:25.219 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ef3a01da-e431-49fb-b50f-22beb23a9c18] remote server not configured\n2025-10-28 03:41:25.220 [error] [command][475e433e-6fe4-4eb8-871b-6676f0bbf6c2] Socket error: Error: read ECONNRESET\n2025-10-28 03:41:25.220 [info] [command][475e433e-6fe4-4eb8-871b-6676f0bbf6c2] Socket close event received\n2025-10-28 03:41:25.220 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][475e433e-6fe4-4eb8-871b-6676f0bbf6c2] Socket closed without exit code\n2025-10-28 03:42:25.221 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:42:25.223 [info] [command][42ce01ca-904b-4e17-af0e-c61555416324] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""42ce01ca-904b-4e17-af0e-c61555416324""}\n2025-10-28 03:42:25.223 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e756a513-f9e6-4972-9770-a5aa79cba980] remote server not configured\n2025-10-28 03:42:25.223 [error] [command][42ce01ca-904b-4e17-af0e-c61555416324] Socket error: Error: read ECONNRESET\n2025-10-28 03:42:25.223 [info] [command][42ce01ca-904b-4e17-af0e-c61555416324] Socket close event received\n2025-10-28 03:42:25.224 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][42ce01ca-904b-4e17-af0e-c61555416324] Socket closed without exit code\n2025-10-28 03:43:25.224 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:43:25.225 [info] [command][3dc3dd85-9adc-423f-8ec6-d2d07bb440ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3dc3dd85-9adc-423f-8ec6-d2d07bb440ac""}\n2025-10-28 03:43:25.225 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][21b60cde-e364-4eea-aa83-344967fc60b8] remote server not configured\n2025-10-28 03:43:25.226 [error] [command][3dc3dd85-9adc-423f-8ec6-d2d07bb440ac] Socket error: Error: read ECONNRESET\n2025-10-28 03:43:25.226 [info] [command][3dc3dd85-9adc-423f-8ec6-d2d07bb440ac] Socket close event received\n2025-10-28 03:43:25.226 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3dc3dd85-9adc-423f-8ec6-d2d07bb440ac] Socket closed without exit code\n2025-10-28 03:44:25.226 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:44:25.227 [info] [command][5de4f38b-11b4-4a54-b507-2d21deae0635] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5de4f38b-11b4-4a54-b507-2d21deae0635""}\n2025-10-28 03:44:25.227 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7f846b7d-dfbe-4a8a-99a8-0fb43de22426] remote server not configured\n2025-10-28 03:44:25.228 [error] [command][5de4f38b-11b4-4a54-b507-2d21deae0635] Socket error: Error: read ECONNRESET\n2025-10-28 03:44:25.228 [info] [command][5de4f38b-11b4-4a54-b507-2d21deae0635] Socket close event received\n2025-10-28 03:44:25.228 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5de4f38b-11b4-4a54-b507-2d21deae0635] Socket closed without exit code\n2025-10-28 03:45:25.231 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:45:25.232 [info] [command][7c60265d-ae58-433a-8ff2-a5412d09cbc8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7c60265d-ae58-433a-8ff2-a5412d09cbc8""}\n2025-10-28 03:45:25.232 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6ec2eeee-9f2c-4cf3-adee-3c6d12baa3e0] remote server not configured\n2025-10-28 03:45:25.233 [error] [command][7c60265d-ae58-433a-8ff2-a5412d09cbc8] Socket error: Error: read ECONNRESET\n2025-10-28 03:45:25.233 [info] [command][7c60265d-ae58-433a-8ff2-a5412d09cbc8] Socket close event received\n2025-10-28 03:45:25.233 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7c60265d-ae58-433a-8ff2-a5412d09cbc8] Socket closed without exit code\n2025-10-28 03:46:25.238 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:46:25.239 [info] [command][cbb62c88-ca3b-49e1-85b6-bf02665eaf5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cbb62c88-ca3b-49e1-85b6-bf02665eaf5b""}\n2025-10-28 03:46:25.240 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][de49df97-1b31-42d7-87e8-0607d2f498e8] remote server not configured\n2025-10-28 03:46:25.241 [error] [command][cbb62c88-ca3b-49e1-85b6-bf02665eaf5b] Socket error: Error: read ECONNRESET\n2025-10-28 03:46:25.241 [info] [command][cbb62c88-ca3b-49e1-85b6-bf02665eaf5b] Socket close event received\n2025-10-28 03:46:25.241 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cbb62c88-ca3b-49e1-85b6-bf02665eaf5b] Socket closed without exit code\n2025-10-28 03:47:25.252 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:47:25.254 [info] [command][2aeed594-0319-4257-b413-a26835e21550] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2aeed594-0319-4257-b413-a26835e21550""}\n2025-10-28 03:47:25.255 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9b2fd8d4-96c7-4684-b628-6b4963d5c2d8] remote server not configured\n2025-10-28 03:47:25.255 [error] [command][2aeed594-0319-4257-b413-a26835e21550] Socket error: Error: read ECONNRESET\n2025-10-28 03:47:25.256 [info] [command][2aeed594-0319-4257-b413-a26835e21550] Socket close event received\n2025-10-28 03:47:25.256 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2aeed594-0319-4257-b413-a26835e21550] Socket closed without exit code\n2025-10-28 03:48:25.158 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:48:25.160 [info] [command][2acae7cf-11ce-4116-87d4-dd92e2c542ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2acae7cf-11ce-4116-87d4-dd92e2c542ac""}\n2025-10-28 03:48:25.161 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5edabc4c-841d-443c-90b2-731a35ae5554] remote server not configured\n2025-10-28 03:48:25.161 [error] [command][2acae7cf-11ce-4116-87d4-dd92e2c542ac] Socket error: Error: read ECONNRESET\n2025-10-28 03:48:25.162 [info] [command][2acae7cf-11ce-4116-87d4-dd92e2c542ac] Socket close event received\n2025-10-28 03:48:25.162 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2acae7cf-11ce-4116-87d4-dd92e2c542ac] Socket closed without exit code\n2025-10-28 03:49:25.172 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:49:25.174 [info] [command][1aa631a9-956d-4de2-88f7-392650ee09d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1aa631a9-956d-4de2-88f7-392650ee09d5""}\n2025-10-28 03:49:25.175 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4affd019-3bf8-4ba0-8ae9-e0ca09ab7de9] remote server not configured\n2025-10-28 03:49:25.175 [error] [command][1aa631a9-956d-4de2-88f7-392650ee09d5] Socket error: Error: read ECONNRESET\n2025-10-28 03:49:25.175 [info] [command][1aa631a9-956d-4de2-88f7-392650ee09d5] Socket close event received\n2025-10-28 03:49:25.176 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1aa631a9-956d-4de2-88f7-392650ee09d5] Socket closed without exit code\n2025-10-28 03:50:25.185 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:50:25.188 [info] [command][06aa101f-fb8f-4eb7-9f71-92b491e0adba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""06aa101f-fb8f-4eb7-9f71-92b491e0adba""}\n2025-10-28 03:50:25.189 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3d6b2bad-af99-4bc4-b226-7424a33fdc1e] remote server not configured\n2025-10-28 03:50:25.189 [error] [command][06aa101f-fb8f-4eb7-9f71-92b491e0adba] Socket error: Error: read ECONNRESET\n2025-10-28 03:50:25.189 [info] [command][06aa101f-fb8f-4eb7-9f71-92b491e0adba] Socket close event received\n2025-10-28 03:50:25.190 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][06aa101f-fb8f-4eb7-9f71-92b491e0adba] Socket closed without exit code\n2025-10-28 03:51:25.199 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:51:25.201 [info] [command][e749a29d-5bbd-45a7-80b4-373d73a2be0d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e749a29d-5bbd-45a7-80b4-373d73a2be0d""}\n2025-10-28 03:51:25.201 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d11e7c20-5ff8-4477-b697-46a7b92ea23b] remote server not configured\n2025-10-28 03:51:25.202 [error] [command][e749a29d-5bbd-45a7-80b4-373d73a2be0d] Socket error: Error: read ECONNRESET\n2025-10-28 03:51:25.202 [info] [command][e749a29d-5bbd-45a7-80b4-373d73a2be0d] Socket close event received\n2025-10-28 03:51:25.202 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e749a29d-5bbd-45a7-80b4-373d73a2be0d] Socket closed without exit code\n2025-10-28 03:52:25.211 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:52:25.213 [info] [command][0cc7399b-677e-48a4-8ac6-06bad6e877f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0cc7399b-677e-48a4-8ac6-06bad6e877f5""}\n2025-10-28 03:52:25.214 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c798e929-8cfd-4ba0-82b5-0b4215a6796a] remote server not configured\n2025-10-28 03:52:25.215 [error] [command][0cc7399b-677e-48a4-8ac6-06bad6e877f5] Socket error: Error: read ECONNRESET\n2025-10-28 03:52:25.215 [info] [command][0cc7399b-677e-48a4-8ac6-06bad6e877f5] Socket close event received\n2025-10-28 03:52:25.215 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0cc7399b-677e-48a4-8ac6-06bad6e877f5] Socket closed without exit code\n2025-10-28 03:53:25.215 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:53:25.217 [info] [command][69e9e391-3e03-4808-bc42-56407bccccc7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""69e9e391-3e03-4808-bc42-56407bccccc7""}\n2025-10-28 03:53:25.218 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f48eb220-7244-49a0-8b0a-bcdad5e7c069] remote server not configured\n2025-10-28 03:53:25.218 [error] [command][69e9e391-3e03-4808-bc42-56407bccccc7] Socket error: Error: read ECONNRESET\n2025-10-28 03:53:25.218 [info] [command][69e9e391-3e03-4808-bc42-56407bccccc7] Socket close event received\n2025-10-28 03:53:25.219 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][69e9e391-3e03-4808-bc42-56407bccccc7] Socket closed without exit code\n2025-10-28 03:54:25.220 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:54:25.223 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][49214a40-266d-439d-b82b-a3d3e0326964] remote server not configured\n2025-10-28 03:54:25.224 [info] [command][3906342b-d0ba-4fbb-acc1-e50bc4e4655c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3906342b-d0ba-4fbb-acc1-e50bc4e4655c""}\n2025-10-28 03:54:25.225 [error] [command][3906342b-d0ba-4fbb-acc1-e50bc4e4655c] Socket error: Error: read ECONNRESET\n2025-10-28 03:54:25.225 [info] [command][3906342b-d0ba-4fbb-acc1-e50bc4e4655c] Socket close event received\n2025-10-28 03:54:25.225 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3906342b-d0ba-4fbb-acc1-e50bc4e4655c] Socket closed without exit code\n2025-10-28 03:55:25.232 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:55:25.234 [info] [command][b695545c-667a-4a3d-b215-6818eecee49d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b695545c-667a-4a3d-b215-6818eecee49d""}\n2025-10-28 03:55:25.235 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][93e00c65-cb64-4ecc-bdb5-1905d9af8663] remote server not configured\n2025-10-28 03:55:25.235 [error] [command][b695545c-667a-4a3d-b215-6818eecee49d] Socket error: Error: read ECONNRESET\n2025-10-28 03:55:25.236 [info] [command][b695545c-667a-4a3d-b215-6818eecee49d] Socket close event received\n2025-10-28 03:55:25.236 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b695545c-667a-4a3d-b215-6818eecee49d] Socket closed without exit code\n2025-10-28 03:56:25.245 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:56:25.248 [info] [command][667db539-4b5a-4015-9c6c-8f3fcb2b7ae0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""667db539-4b5a-4015-9c6c-8f3fcb2b7ae0""}\n2025-10-28 03:56:25.248 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bb883b30-f048-423f-abde-3343d004a153] remote server not configured\n2025-10-28 03:56:25.249 [error] [command][667db539-4b5a-4015-9c6c-8f3fcb2b7ae0] Socket error: Error: read ECONNRESET\n2025-10-28 03:56:25.249 [info] [command][667db539-4b5a-4015-9c6c-8f3fcb2b7ae0] Socket close event received\n2025-10-28 03:56:25.249 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][667db539-4b5a-4015-9c6c-8f3fcb2b7ae0] Socket closed without exit code\n2025-10-28 03:57:25.259 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:57:25.261 [info] [command][7975f478-f086-4757-ab89-bef119c188cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7975f478-f086-4757-ab89-bef119c188cb""}\n2025-10-28 03:57:25.262 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][43737ed7-a914-4ad7-a221-ac061aeade50] remote server not configured\n2025-10-28 03:57:25.262 [error] [command][7975f478-f086-4757-ab89-bef119c188cb] Socket error: Error: read ECONNRESET\n2025-10-28 03:57:25.263 [info] [command][7975f478-f086-4757-ab89-bef119c188cb] Socket close event received\n2025-10-28 03:57:25.263 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7975f478-f086-4757-ab89-bef119c188cb] Socket closed without exit code\n2025-10-28 03:58:25.267 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:58:25.270 [info] [command][6f84022c-9344-43e4-9ebd-ea651b06c062] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6f84022c-9344-43e4-9ebd-ea651b06c062""}\n2025-10-28 03:58:25.270 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][56364456-1eed-4cd7-8550-08be7241827a] remote server not configured\n2025-10-28 03:58:25.271 [error] [command][6f84022c-9344-43e4-9ebd-ea651b06c062] Socket error: Error: read ECONNRESET\n2025-10-28 03:58:25.271 [info] [command][6f84022c-9344-43e4-9ebd-ea651b06c062] Socket close event received\n2025-10-28 03:58:25.271 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6f84022c-9344-43e4-9ebd-ea651b06c062] Socket closed without exit code\n2025-10-28 03:59:25.281 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 03:59:25.284 [info] [command][4811be0b-e512-4feb-b61f-b810e089e333] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4811be0b-e512-4feb-b61f-b810e089e333""}\n2025-10-28 03:59:25.285 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7047ee49-9b83-4b91-9bd6-55c043307fed] remote server not configured\n2025-10-28 03:59:25.285 [error] [command][4811be0b-e512-4feb-b61f-b810e089e333] Socket error: Error: read ECONNRESET\n2025-10-28 03:59:25.285 [info] [command][4811be0b-e512-4feb-b61f-b810e089e333] Socket close event received\n2025-10-28 03:59:25.285 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4811be0b-e512-4feb-b61f-b810e089e333] Socket closed without exit code\n2025-10-28 04:00:25.287 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:00:25.290 [info] [command][65929509-eaa7-45ec-b316-b550f21465de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""65929509-eaa7-45ec-b316-b550f21465de""}\n2025-10-28 04:00:25.290 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][de3e30ea-3afc-4e6b-88c6-de8f5fd2540e] remote server not configured\n2025-10-28 04:00:25.291 [error] [command][65929509-eaa7-45ec-b316-b550f21465de] Socket error: Error: read ECONNRESET\n2025-10-28 04:00:25.291 [info] [command][65929509-eaa7-45ec-b316-b550f21465de] Socket close event received\n2025-10-28 04:00:25.292 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][65929509-eaa7-45ec-b316-b550f21465de] Socket closed without exit code\n2025-10-28 04:01:25.301 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:01:25.302 [info] [command][c8b173ef-b5aa-41cc-bd04-28a87f3517bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c8b173ef-b5aa-41cc-bd04-28a87f3517bb""}\n2025-10-28 04:01:25.303 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d1489cda-a593-4641-9e14-e4b7018b4e9f] remote server not configured\n2025-10-28 04:01:25.304 [error] [command][c8b173ef-b5aa-41cc-bd04-28a87f3517bb] Socket error: Error: read ECONNRESET\n2025-10-28 04:01:25.304 [info] [command][c8b173ef-b5aa-41cc-bd04-28a87f3517bb] Socket close event received\n2025-10-28 04:01:25.304 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c8b173ef-b5aa-41cc-bd04-28a87f3517bb] Socket closed without exit code\n2025-10-28 04:02:25.314 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:02:25.317 [info] [command][5589e3a8-65b6-4694-b82d-f3fad4e445bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5589e3a8-65b6-4694-b82d-f3fad4e445bd""}\n2025-10-28 04:02:25.318 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][df33b545-1e9c-4c79-9329-7aee14cbb7b9] remote server not configured\n2025-10-28 04:02:25.318 [error] [command][5589e3a8-65b6-4694-b82d-f3fad4e445bd] Socket error: Error: read ECONNRESET\n2025-10-28 04:02:25.318 [info] [command][5589e3a8-65b6-4694-b82d-f3fad4e445bd] Socket close event received\n2025-10-28 04:02:25.318 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5589e3a8-65b6-4694-b82d-f3fad4e445bd] Socket closed without exit code\n2025-10-28 04:03:25.325 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:03:25.326 [info] [command][63da66dd-ac43-4bc1-968d-df53606fb78e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""63da66dd-ac43-4bc1-968d-df53606fb78e""}\n2025-10-28 04:03:25.327 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2fda2a8c-78ec-4ecb-9e67-092bcee9efb5] remote server not configured\n2025-10-28 04:03:25.328 [error] [command][63da66dd-ac43-4bc1-968d-df53606fb78e] Socket error: Error: read ECONNRESET\n2025-10-28 04:03:25.328 [info] [command][63da66dd-ac43-4bc1-968d-df53606fb78e] Socket close event received\n2025-10-28 04:03:25.328 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][63da66dd-ac43-4bc1-968d-df53606fb78e] Socket closed without exit code\n2025-10-28 04:04:25.334 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:04:25.336 [info] [command][1cf5476a-5b6f-4b98-b17d-6cb4aa0bad52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1cf5476a-5b6f-4b98-b17d-6cb4aa0bad52""}\n2025-10-28 04:04:25.337 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6603733d-a994-4252-a119-397e785a6d00] remote server not configured\n2025-10-28 04:04:25.337 [error] [command][1cf5476a-5b6f-4b98-b17d-6cb4aa0bad52] Socket error: Error: read ECONNRESET\n2025-10-28 04:04:25.338 [info] [command][1cf5476a-5b6f-4b98-b17d-6cb4aa0bad52] Socket close event received\n2025-10-28 04:04:25.338 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1cf5476a-5b6f-4b98-b17d-6cb4aa0bad52] Socket closed without exit code\n2025-10-28 04:05:25.337 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:05:25.340 [info] [command][8fd60068-ff81-4cea-8486-be4aac85217c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8fd60068-ff81-4cea-8486-be4aac85217c""}\n2025-10-28 04:05:25.341 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ecf8e84f-d334-4bf0-80b6-951248140684] remote server not configured\n2025-10-28 04:05:25.342 [error] [command][8fd60068-ff81-4cea-8486-be4aac85217c] Socket error: Error: read ECONNRESET\n2025-10-28 04:05:25.342 [info] [command][8fd60068-ff81-4cea-8486-be4aac85217c] Socket close event received\n2025-10-28 04:05:25.342 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8fd60068-ff81-4cea-8486-be4aac85217c] Socket closed without exit code\n2025-10-28 04:06:25.352 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:06:25.354 [info] [command][42f5e610-e071-4169-bba2-40de791af770] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""42f5e610-e071-4169-bba2-40de791af770""}\n2025-10-28 04:06:25.354 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][90497a4d-5b23-4eb7-a033-a1464fd3eb88] remote server not configured\n2025-10-28 04:06:25.355 [error] [command][42f5e610-e071-4169-bba2-40de791af770] Socket error: Error: read ECONNRESET\n2025-10-28 04:06:25.355 [info] [command][42f5e610-e071-4169-bba2-40de791af770] Socket close event received\n2025-10-28 04:06:25.355 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][42f5e610-e071-4169-bba2-40de791af770] Socket closed without exit code\n2025-10-28 04:07:25.365 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:07:25.367 [info] [command][d710d37f-5728-4dce-9943-b20bd3ba0436] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d710d37f-5728-4dce-9943-b20bd3ba0436""}\n2025-10-28 04:07:25.368 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5b578be9-46b1-44c0-8b61-15d9b6bf72f5] remote server not configured\n2025-10-28 04:07:25.369 [error] [command][d710d37f-5728-4dce-9943-b20bd3ba0436] Socket error: Error: read ECONNRESET\n2025-10-28 04:07:25.369 [info] [command][d710d37f-5728-4dce-9943-b20bd3ba0436] Socket close event received\n2025-10-28 04:07:25.369 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d710d37f-5728-4dce-9943-b20bd3ba0436] Socket closed without exit code\n2025-10-28 04:08:25.378 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:08:25.380 [info] [command][0105a041-12e7-495d-b880-5cb4c6ed3e72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0105a041-12e7-495d-b880-5cb4c6ed3e72""}\n2025-10-28 04:08:25.380 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5c5b705f-fdd4-4ad3-90b4-7c9a371a2f50] remote server not configured\n2025-10-28 04:08:25.381 [error] [command][0105a041-12e7-495d-b880-5cb4c6ed3e72] Socket error: Error: read ECONNRESET\n2025-10-28 04:08:25.382 [info] [command][0105a041-12e7-495d-b880-5cb4c6ed3e72] Socket close event received\n2025-10-28 04:08:25.382 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0105a041-12e7-495d-b880-5cb4c6ed3e72] Socket closed without exit code\n2025-10-28 04:09:25.392 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:09:25.394 [info] [command][01656b9d-e5d0-428e-9cff-fce1cdaf05e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""01656b9d-e5d0-428e-9cff-fce1cdaf05e3""}\n2025-10-28 04:09:25.394 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d3539a3b-9eda-4127-a8e7-be58efeb63b9] remote server not configured\n2025-10-28 04:09:25.395 [error] [command][01656b9d-e5d0-428e-9cff-fce1cdaf05e3] Socket error: Error: read ECONNRESET\n2025-10-28 04:09:25.395 [info] [command][01656b9d-e5d0-428e-9cff-fce1cdaf05e3] Socket close event received\n2025-10-28 04:09:25.396 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][01656b9d-e5d0-428e-9cff-fce1cdaf05e3] Socket closed without exit code\n2025-10-28 04:10:25.398 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:10:25.399 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a26efce6-b000-4cb7-a906-dba927cc3b3d] remote server not configured\n2025-10-28 04:10:25.400 [info] [command][9ac43b5f-fa4e-4b6a-b6f9-28cc264871b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9ac43b5f-fa4e-4b6a-b6f9-28cc264871b0""}\n2025-10-28 04:10:25.400 [error] [command][9ac43b5f-fa4e-4b6a-b6f9-28cc264871b0] Socket error: Error: read ECONNRESET\n2025-10-28 04:10:25.401 [info] [command][9ac43b5f-fa4e-4b6a-b6f9-28cc264871b0] Socket close event received\n2025-10-28 04:10:25.401 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9ac43b5f-fa4e-4b6a-b6f9-28cc264871b0] Socket closed without exit code\n2025-10-28 04:11:25.404 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:11:25.405 [info] [command][f40518d9-6d83-4dea-83f0-17d346063e2d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f40518d9-6d83-4dea-83f0-17d346063e2d""}\n2025-10-28 04:11:25.406 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1683dbcf-e4d8-480a-b02e-8c87178a5146] remote server not configured\n2025-10-28 04:11:25.406 [error] [command][f40518d9-6d83-4dea-83f0-17d346063e2d] Socket error: Error: read ECONNRESET\n2025-10-28 04:11:25.407 [info] [command][f40518d9-6d83-4dea-83f0-17d346063e2d] Socket close event received\n2025-10-28 04:11:25.407 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f40518d9-6d83-4dea-83f0-17d346063e2d] Socket closed without exit code\n2025-10-28 04:12:25.417 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:12:25.420 [info] [command][1f9b4dc3-0c6b-4d15-8e66-e461846fcfda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1f9b4dc3-0c6b-4d15-8e66-e461846fcfda""}\n2025-10-28 04:12:25.420 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5393ac0e-bc4b-4554-986f-abdc27251f74] remote server not configured\n2025-10-28 04:12:25.421 [error] [command][1f9b4dc3-0c6b-4d15-8e66-e461846fcfda] Socket error: Error: read ECONNRESET\n2025-10-28 04:12:25.421 [info] [command][1f9b4dc3-0c6b-4d15-8e66-e461846fcfda] Socket close event received\n2025-10-28 04:12:25.421 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1f9b4dc3-0c6b-4d15-8e66-e461846fcfda] Socket closed without exit code\n2025-10-28 04:13:25.424 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:13:25.425 [info] [command][9108fc36-8094-424d-a8d4-a5558f6d9984] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9108fc36-8094-424d-a8d4-a5558f6d9984""}\n2025-10-28 04:13:25.426 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0c6f1084-9054-4801-90ce-0ca4cdd2706a] remote server not configured\n2025-10-28 04:13:25.426 [error] [command][9108fc36-8094-424d-a8d4-a5558f6d9984] Socket error: Error: read ECONNRESET\n2025-10-28 04:13:25.426 [info] [command][9108fc36-8094-424d-a8d4-a5558f6d9984] Socket close event received\n2025-10-28 04:13:25.427 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9108fc36-8094-424d-a8d4-a5558f6d9984] Socket closed without exit code\n2025-10-28 04:14:25.436 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:14:25.438 [info] [command][5b57b867-077c-46a2-9b21-5fa90a66da78] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5b57b867-077c-46a2-9b21-5fa90a66da78""}\n2025-10-28 04:14:25.439 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][29e7d879-32c6-4f05-94d3-fc03cf95045c] remote server not configured\n2025-10-28 04:14:25.439 [error] [command][5b57b867-077c-46a2-9b21-5fa90a66da78] Socket error: Error: read ECONNRESET\n2025-10-28 04:14:25.440 [info] [command][5b57b867-077c-46a2-9b21-5fa90a66da78] Socket close event received\n2025-10-28 04:14:25.440 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5b57b867-077c-46a2-9b21-5fa90a66da78] Socket closed without exit code\n2025-10-28 04:15:25.450 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:15:25.452 [info] [command][041dd9c0-488a-4028-9ad0-65c4c759bcf1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""041dd9c0-488a-4028-9ad0-65c4c759bcf1""}\n2025-10-28 04:15:25.452 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4a449b8e-a105-4ad1-87dd-b6262fa47830] remote server not configured\n2025-10-28 04:15:25.453 [error] [command][041dd9c0-488a-4028-9ad0-65c4c759bcf1] Socket error: Error: read ECONNRESET\n2025-10-28 04:15:25.453 [info] [command][041dd9c0-488a-4028-9ad0-65c4c759bcf1] Socket close event received\n2025-10-28 04:15:25.453 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][041dd9c0-488a-4028-9ad0-65c4c759bcf1] Socket closed without exit code\n2025-10-28 04:16:25.460 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:16:25.462 [info] [command][d6d4be7f-9a8d-40f8-829b-73a4e2f781a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d6d4be7f-9a8d-40f8-829b-73a4e2f781a0""}\n2025-10-28 04:16:25.463 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][70ee9c87-dd3d-49d9-9740-7410bf7a5c97] remote server not configured\n2025-10-28 04:16:25.463 [error] [command][d6d4be7f-9a8d-40f8-829b-73a4e2f781a0] Socket error: Error: read ECONNRESET\n2025-10-28 04:16:25.464 [info] [command][d6d4be7f-9a8d-40f8-829b-73a4e2f781a0] Socket close event received\n2025-10-28 04:16:25.464 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d6d4be7f-9a8d-40f8-829b-73a4e2f781a0] Socket closed without exit code\n2025-10-28 04:17:25.474 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:17:25.476 [info] [command][0f41fab9-bbba-44dd-b9ed-ee98c49e428e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0f41fab9-bbba-44dd-b9ed-ee98c49e428e""}\n2025-10-28 04:17:25.476 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6bba516a-7886-4b73-9b9c-3b1681c2b5a5] remote server not configured\n2025-10-28 04:17:25.477 [error] [command][0f41fab9-bbba-44dd-b9ed-ee98c49e428e] Socket error: Error: read ECONNRESET\n2025-10-28 04:17:25.477 [info] [command][0f41fab9-bbba-44dd-b9ed-ee98c49e428e] Socket close event received\n2025-10-28 04:17:25.478 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0f41fab9-bbba-44dd-b9ed-ee98c49e428e] Socket closed without exit code\n2025-10-28 04:18:25.485 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:18:25.487 [info] [command][7f647223-dc77-46ca-b53c-d22f4a3b7f05] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7f647223-dc77-46ca-b53c-d22f4a3b7f05""}\n2025-10-28 04:18:25.488 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f75932d1-8550-41c3-ae66-32f1a45b7959] remote server not configured\n2025-10-28 04:18:25.489 [error] [command][7f647223-dc77-46ca-b53c-d22f4a3b7f05] Socket error: Error: read ECONNRESET\n2025-10-28 04:18:25.489 [info] [command][7f647223-dc77-46ca-b53c-d22f4a3b7f05] Socket close event received\n2025-10-28 04:18:25.489 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7f647223-dc77-46ca-b53c-d22f4a3b7f05] Socket closed without exit code\n2025-10-28 04:19:25.495 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:19:25.497 [info] [command][3ecbf50e-8211-4746-b34b-2967eb308237] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3ecbf50e-8211-4746-b34b-2967eb308237""}\n2025-10-28 04:19:25.497 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][747d311f-5916-458b-91b5-a29128711e85] remote server not configured\n2025-10-28 04:19:25.498 [error] [command][3ecbf50e-8211-4746-b34b-2967eb308237] Socket error: Error: read ECONNRESET\n2025-10-28 04:19:25.498 [info] [command][3ecbf50e-8211-4746-b34b-2967eb308237] Socket close event received\n2025-10-28 04:19:25.498 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3ecbf50e-8211-4746-b34b-2967eb308237] Socket closed without exit code\n2025-10-28 04:20:25.502 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:20:25.505 [info] [command][345eff40-47b0-4917-938c-a1ef0a51f9f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""345eff40-47b0-4917-938c-a1ef0a51f9f4""}\n2025-10-28 04:20:25.506 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][51b87954-19c2-4850-8c8c-1d08fc0ee763] remote server not configured\n2025-10-28 04:20:25.506 [error] [command][345eff40-47b0-4917-938c-a1ef0a51f9f4] Socket error: Error: read ECONNRESET\n2025-10-28 04:20:25.506 [info] [command][345eff40-47b0-4917-938c-a1ef0a51f9f4] Socket close event received\n2025-10-28 04:20:25.507 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][345eff40-47b0-4917-938c-a1ef0a51f9f4] Socket closed without exit code\n2025-10-28 04:21:25.514 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:21:25.515 [info] [command][90bbbca9-ccd6-425e-9b76-aafe51717b31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""90bbbca9-ccd6-425e-9b76-aafe51717b31""}\n2025-10-28 04:21:25.516 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][664c26d9-7958-476d-82e7-b2dd00221e0b] remote server not configured\n2025-10-28 04:21:25.517 [error] [command][90bbbca9-ccd6-425e-9b76-aafe51717b31] Socket error: Error: read ECONNRESET\n2025-10-28 04:21:25.517 [info] [command][90bbbca9-ccd6-425e-9b76-aafe51717b31] Socket close event received\n2025-10-28 04:21:25.517 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][90bbbca9-ccd6-425e-9b76-aafe51717b31] Socket closed without exit code\n2025-10-28 04:22:25.526 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:22:25.529 [info] [command][84c4e6b2-405a-472b-8d28-1ba629fef448] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""84c4e6b2-405a-472b-8d28-1ba629fef448""}\n2025-10-28 04:22:25.530 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0047e860-71b8-4cb3-aa07-21c5c35d1d68] remote server not configured\n2025-10-28 04:22:25.530 [error] [command][84c4e6b2-405a-472b-8d28-1ba629fef448] Socket error: Error: read ECONNRESET\n2025-10-28 04:22:25.530 [info] [command][84c4e6b2-405a-472b-8d28-1ba629fef448] Socket close event received\n2025-10-28 04:22:25.530 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][84c4e6b2-405a-472b-8d28-1ba629fef448] Socket closed without exit code\n2025-10-28 04:23:25.530 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:23:25.532 [info] [command][aa123053-04c5-4cc4-b848-63e6ed9c5cc2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""aa123053-04c5-4cc4-b848-63e6ed9c5cc2""}\n2025-10-28 04:23:25.532 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][638ed7a3-721b-4cfe-9d38-ee0dd8634dd4] remote server not configured\n2025-10-28 04:23:25.533 [error] [command][aa123053-04c5-4cc4-b848-63e6ed9c5cc2] Socket error: Error: read ECONNRESET\n2025-10-28 04:23:25.533 [info] [command][aa123053-04c5-4cc4-b848-63e6ed9c5cc2] Socket close event received\n2025-10-28 04:23:25.533 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][aa123053-04c5-4cc4-b848-63e6ed9c5cc2] Socket closed without exit code\n2025-10-28 04:24:25.542 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:24:25.544 [info] [command][b701d272-d5d3-4821-b827-b00b8039ac87] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b701d272-d5d3-4821-b827-b00b8039ac87""}\n2025-10-28 04:24:25.545 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][647b10af-0697-475b-b03a-6c332af1e0bd] remote server not configured\n2025-10-28 04:24:25.545 [error] [command][b701d272-d5d3-4821-b827-b00b8039ac87] Socket error: Error: read ECONNRESET\n2025-10-28 04:24:25.546 [info] [command][b701d272-d5d3-4821-b827-b00b8039ac87] Socket close event received\n2025-10-28 04:24:25.546 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b701d272-d5d3-4821-b827-b00b8039ac87] Socket closed without exit code\n2025-10-28 04:25:25.556 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:25:25.557 [info] [command][62129cf7-a02a-428a-91de-78e7f882b5e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""62129cf7-a02a-428a-91de-78e7f882b5e7""}\n2025-10-28 04:25:25.558 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c940fb21-5611-4deb-b7dd-9aeefa0c02a5] remote server not configured\n2025-10-28 04:25:25.558 [error] [command][62129cf7-a02a-428a-91de-78e7f882b5e7] Socket error: Error: read ECONNRESET\n2025-10-28 04:25:25.559 [info] [command][62129cf7-a02a-428a-91de-78e7f882b5e7] Socket close event received\n2025-10-28 04:25:25.559 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][62129cf7-a02a-428a-91de-78e7f882b5e7] Socket closed without exit code\n2025-10-28 04:26:25.560 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:26:25.562 [info] [command][43682088-be7d-4061-868c-e1caee8792e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""43682088-be7d-4061-868c-e1caee8792e4""}\n2025-10-28 04:26:25.563 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e99813da-e587-4611-a4d8-bf25d0dd8653] remote server not configured\n2025-10-28 04:26:25.564 [error] [command][43682088-be7d-4061-868c-e1caee8792e4] Socket error: Error: read ECONNRESET\n2025-10-28 04:26:25.565 [info] [command][43682088-be7d-4061-868c-e1caee8792e4] Socket close event received\n2025-10-28 04:26:25.565 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][43682088-be7d-4061-868c-e1caee8792e4] Socket closed without exit code\n2025-10-28 04:27:25.564 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:27:25.566 [info] [command][5c6da672-c616-44b9-a734-90908454e96f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5c6da672-c616-44b9-a734-90908454e96f""}\n2025-10-28 04:27:25.567 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d571bec3-43a4-476b-badb-164a3150cd3d] remote server not configured\n2025-10-28 04:27:25.567 [error] [command][5c6da672-c616-44b9-a734-90908454e96f] Socket error: Error: read ECONNRESET\n2025-10-28 04:27:25.568 [info] [command][5c6da672-c616-44b9-a734-90908454e96f] Socket close event received\n2025-10-28 04:27:25.568 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5c6da672-c616-44b9-a734-90908454e96f] Socket closed without exit code\n2025-10-28 04:28:25.568 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:28:25.571 [info] [command][22800fbd-3dfa-4d3d-be35-12713c84d928] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""22800fbd-3dfa-4d3d-be35-12713c84d928""}\n2025-10-28 04:28:25.572 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8dd804c9-461e-4804-8821-3735fef793a3] remote server not configured\n2025-10-28 04:28:25.573 [error] [command][22800fbd-3dfa-4d3d-be35-12713c84d928] Socket error: Error: read ECONNRESET\n2025-10-28 04:28:25.573 [info] [command][22800fbd-3dfa-4d3d-be35-12713c84d928] Socket close event received\n2025-10-28 04:28:25.573 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][22800fbd-3dfa-4d3d-be35-12713c84d928] Socket closed without exit code\n2025-10-28 04:29:25.583 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:29:25.585 [info] [command][1aa3a1f9-c790-4ea8-9720-95727e9a94a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1aa3a1f9-c790-4ea8-9720-95727e9a94a5""}\n2025-10-28 04:29:25.585 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][433f2160-0014-4335-912d-e2fbc60b8224] remote server not configured\n2025-10-28 04:29:25.586 [error] [command][1aa3a1f9-c790-4ea8-9720-95727e9a94a5] Socket error: Error: read ECONNRESET\n2025-10-28 04:29:25.586 [info] [command][1aa3a1f9-c790-4ea8-9720-95727e9a94a5] Socket close event received\n2025-10-28 04:29:25.586 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1aa3a1f9-c790-4ea8-9720-95727e9a94a5] Socket closed without exit code\n2025-10-28 04:30:25.595 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:30:25.597 [info] [command][2249091c-b1e9-4f34-a35b-774d54800b1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2249091c-b1e9-4f34-a35b-774d54800b1e""}\n2025-10-28 04:30:25.597 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][20fbb4c7-085c-4227-ad61-db4311c26922] remote server not configured\n2025-10-28 04:30:25.598 [error] [command][2249091c-b1e9-4f34-a35b-774d54800b1e] Socket error: Error: read ECONNRESET\n2025-10-28 04:30:25.598 [info] [command][2249091c-b1e9-4f34-a35b-774d54800b1e] Socket close event received\n2025-10-28 04:30:25.598 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2249091c-b1e9-4f34-a35b-774d54800b1e] Socket closed without exit code\n2025-10-28 04:31:25.608 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:31:25.610 [info] [command][e2bfe431-28cc-4301-aeb2-9ca70a676387] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e2bfe431-28cc-4301-aeb2-9ca70a676387""}\n2025-10-28 04:31:25.611 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][339ee057-7b46-4acf-86fe-2d3d5640d81e] remote server not configured\n2025-10-28 04:31:25.612 [error] [command][e2bfe431-28cc-4301-aeb2-9ca70a676387] Socket error: Error: read ECONNRESET\n2025-10-28 04:31:25.612 [info] [command][e2bfe431-28cc-4301-aeb2-9ca70a676387] Socket close event received\n2025-10-28 04:31:25.612 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e2bfe431-28cc-4301-aeb2-9ca70a676387] Socket closed without exit code\n2025-10-28 04:32:25.622 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:32:25.625 [info] [command][85ca835d-973c-474a-bab4-d6ef0418aafc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""85ca835d-973c-474a-bab4-d6ef0418aafc""}\n2025-10-28 04:32:25.626 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5acbe0d3-7e77-4940-8a54-89bfe99b37ac] remote server not configured\n2025-10-28 04:32:25.626 [error] [command][85ca835d-973c-474a-bab4-d6ef0418aafc] Socket error: Error: read ECONNRESET\n2025-10-28 04:32:25.626 [info] [command][85ca835d-973c-474a-bab4-d6ef0418aafc] Socket close event received\n2025-10-28 04:32:25.626 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][85ca835d-973c-474a-bab4-d6ef0418aafc] Socket closed without exit code\n2025-10-28 04:33:25.633 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:33:25.635 [info] [command][412812dc-5563-4dfc-bbf1-2b67460ab54f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""412812dc-5563-4dfc-bbf1-2b67460ab54f""}\n2025-10-28 04:33:25.636 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][262dd9a5-6938-4818-b0c0-32eb1af065fc] remote server not configured\n2025-10-28 04:33:25.636 [error] [command][412812dc-5563-4dfc-bbf1-2b67460ab54f] Socket error: Error: read ECONNRESET\n2025-10-28 04:33:25.637 [info] [command][412812dc-5563-4dfc-bbf1-2b67460ab54f] Socket close event received\n2025-10-28 04:33:25.637 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][412812dc-5563-4dfc-bbf1-2b67460ab54f] Socket closed without exit code\n2025-10-28 04:34:25.647 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:34:25.648 [info] [command][34f67017-d1c1-4d6b-a5fa-31a9c7c41175] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""34f67017-d1c1-4d6b-a5fa-31a9c7c41175""}\n2025-10-28 04:34:25.649 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][08a9c2d4-3065-4a8e-878a-1c633a43ce74] remote server not configured\n2025-10-28 04:34:25.650 [error] [command][34f67017-d1c1-4d6b-a5fa-31a9c7c41175] Socket error: Error: read ECONNRESET\n2025-10-28 04:34:25.650 [info] [command][34f67017-d1c1-4d6b-a5fa-31a9c7c41175] Socket close event received\n2025-10-28 04:34:25.650 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][34f67017-d1c1-4d6b-a5fa-31a9c7c41175] Socket closed without exit code\n2025-10-28 04:35:25.660 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:35:25.663 [info] [command][bda4b100-f8f9-4d80-97db-7b07b80c58e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bda4b100-f8f9-4d80-97db-7b07b80c58e8""}\n2025-10-28 04:35:25.664 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4a27ee2e-efdf-40d8-97b9-fcadfc1e8556] remote server not configured\n2025-10-28 04:35:25.665 [error] [command][bda4b100-f8f9-4d80-97db-7b07b80c58e8] Socket error: Error: read ECONNRESET\n2025-10-28 04:35:25.665 [info] [command][bda4b100-f8f9-4d80-97db-7b07b80c58e8] Socket close event received\n2025-10-28 04:35:25.665 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bda4b100-f8f9-4d80-97db-7b07b80c58e8] Socket closed without exit code\n2025-10-28 04:36:25.673 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:36:25.675 [info] [command][0aa1a4f7-4b43-4e40-bf1b-7cec9c208df4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0aa1a4f7-4b43-4e40-bf1b-7cec9c208df4""}\n2025-10-28 04:36:25.676 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9c064c0b-b0d8-4d40-9dec-7202987f1b2e] remote server not configured\n2025-10-28 04:36:25.676 [error] [command][0aa1a4f7-4b43-4e40-bf1b-7cec9c208df4] Socket error: Error: read ECONNRESET\n2025-10-28 04:36:25.677 [info] [command][0aa1a4f7-4b43-4e40-bf1b-7cec9c208df4] Socket close event received\n2025-10-28 04:36:25.677 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0aa1a4f7-4b43-4e40-bf1b-7cec9c208df4] Socket closed without exit code\n2025-10-28 04:37:25.686 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:37:25.689 [info] [command][486eab8f-7569-4299-bd11-7acfc7caccbb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""486eab8f-7569-4299-bd11-7acfc7caccbb""}\n2025-10-28 04:37:25.690 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6b3967b6-93d0-449b-b7d2-5d8612e79087] remote server not configured\n2025-10-28 04:37:25.691 [error] [command][486eab8f-7569-4299-bd11-7acfc7caccbb] Socket error: Error: read ECONNRESET\n2025-10-28 04:37:25.691 [info] [command][486eab8f-7569-4299-bd11-7acfc7caccbb] Socket close event received\n2025-10-28 04:37:25.691 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][486eab8f-7569-4299-bd11-7acfc7caccbb] Socket closed without exit code\n2025-10-28 04:38:25.693 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:38:25.695 [info] [command][c5ba56ae-42d4-4eeb-aa85-971fa61fb2fc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c5ba56ae-42d4-4eeb-aa85-971fa61fb2fc""}\n2025-10-28 04:38:25.695 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4bba4082-ece1-42b1-83ad-14a1bbe7b563] remote server not configured\n2025-10-28 04:38:25.696 [error] [command][c5ba56ae-42d4-4eeb-aa85-971fa61fb2fc] Socket error: Error: read ECONNRESET\n2025-10-28 04:38:25.696 [info] [command][c5ba56ae-42d4-4eeb-aa85-971fa61fb2fc] Socket close event received\n2025-10-28 04:38:25.696 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c5ba56ae-42d4-4eeb-aa85-971fa61fb2fc] Socket closed without exit code\n2025-10-28 04:39:25.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:39:25.706 [info] [command][fab3910a-eabe-402d-92e7-30f280f66b98] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fab3910a-eabe-402d-92e7-30f280f66b98""}\n2025-10-28 04:39:25.707 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7ef07347-5752-48fa-87df-8178986b4d65] remote server not configured\n2025-10-28 04:39:25.707 [error] [command][fab3910a-eabe-402d-92e7-30f280f66b98] Socket error: Error: read ECONNRESET\n2025-10-28 04:39:25.708 [info] [command][fab3910a-eabe-402d-92e7-30f280f66b98] Socket close event received\n2025-10-28 04:39:25.708 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fab3910a-eabe-402d-92e7-30f280f66b98] Socket closed without exit code\n2025-10-28 04:40:25.718 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:40:25.720 [info] [command][f0b4fcd5-28d9-4d59-90a0-06a678221811] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f0b4fcd5-28d9-4d59-90a0-06a678221811""}\n2025-10-28 04:40:25.720 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][395186a8-93ee-4292-8672-20f45525e847] remote server not configured\n2025-10-28 04:40:25.721 [error] [command][f0b4fcd5-28d9-4d59-90a0-06a678221811] Socket error: Error: read ECONNRESET\n2025-10-28 04:40:25.721 [info] [command][f0b4fcd5-28d9-4d59-90a0-06a678221811] Socket close event received\n2025-10-28 04:40:25.721 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f0b4fcd5-28d9-4d59-90a0-06a678221811] Socket closed without exit code\n2025-10-28 04:41:25.731 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:41:25.733 [info] [command][1ffaab21-f6df-45bb-8a1c-5b9656540a07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1ffaab21-f6df-45bb-8a1c-5b9656540a07""}\n2025-10-28 04:41:25.733 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][50a80089-810a-4ff0-b61f-4a383ac90384] remote server not configured\n2025-10-28 04:41:25.734 [error] [command][1ffaab21-f6df-45bb-8a1c-5b9656540a07] Socket error: Error: read ECONNRESET\n2025-10-28 04:41:25.734 [info] [command][1ffaab21-f6df-45bb-8a1c-5b9656540a07] Socket close event received\n2025-10-28 04:41:25.735 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1ffaab21-f6df-45bb-8a1c-5b9656540a07] Socket closed without exit code\n2025-10-28 04:42:25.742 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:42:25.745 [info] [command][06fb6a6f-507d-4377-aa53-0180fa65ddb1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""06fb6a6f-507d-4377-aa53-0180fa65ddb1""}\n2025-10-28 04:42:25.745 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f3b9048f-6464-4823-b5fe-d583a14137a3] remote server not configured\n2025-10-28 04:42:25.746 [error] [command][06fb6a6f-507d-4377-aa53-0180fa65ddb1] Socket error: Error: read ECONNRESET\n2025-10-28 04:42:25.746 [info] [command][06fb6a6f-507d-4377-aa53-0180fa65ddb1] Socket close event received\n2025-10-28 04:42:25.747 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][06fb6a6f-507d-4377-aa53-0180fa65ddb1] Socket closed without exit code\n2025-10-28 04:43:25.753 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:43:25.755 [info] [command][36abf2a9-dc6d-4dde-8724-b06d9712cf5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""36abf2a9-dc6d-4dde-8724-b06d9712cf5b""}\n2025-10-28 04:43:25.756 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][36fbfa66-9996-40cb-b250-2b9d5b137e52] remote server not configured\n2025-10-28 04:43:25.756 [error] [command][36abf2a9-dc6d-4dde-8724-b06d9712cf5b] Socket error: Error: read ECONNRESET\n2025-10-28 04:43:25.756 [info] [command][36abf2a9-dc6d-4dde-8724-b06d9712cf5b] Socket close event received\n2025-10-28 04:43:25.756 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][36abf2a9-dc6d-4dde-8724-b06d9712cf5b] Socket closed without exit code\n2025-10-28 04:44:25.766 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:44:25.768 [info] [command][3b2e6f55-eace-4430-9852-936eecfd4621] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3b2e6f55-eace-4430-9852-936eecfd4621""}\n2025-10-28 04:44:25.769 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e81d2435-b89b-4335-8f00-cb0e131d7502] remote server not configured\n2025-10-28 04:44:25.770 [error] [command][3b2e6f55-eace-4430-9852-936eecfd4621] Socket error: Error: read ECONNRESET\n2025-10-28 04:44:25.770 [info] [command][3b2e6f55-eace-4430-9852-936eecfd4621] Socket close event received\n2025-10-28 04:44:25.770 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3b2e6f55-eace-4430-9852-936eecfd4621] Socket closed without exit code\n2025-10-28 04:45:25.776 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:45:25.778 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1fc8b1db-ff3f-429f-a51b-de9fef1c3ba7] remote server not configured\n2025-10-28 04:45:25.779 [info] [command][92a14bf3-b65b-4896-a6a9-287082aa63d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""92a14bf3-b65b-4896-a6a9-287082aa63d6""}\n2025-10-28 04:45:25.779 [error] [command][92a14bf3-b65b-4896-a6a9-287082aa63d6] Socket error: Error: read ECONNRESET\n2025-10-28 04:45:25.780 [info] [command][92a14bf3-b65b-4896-a6a9-287082aa63d6] Socket close event received\n2025-10-28 04:45:25.780 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][92a14bf3-b65b-4896-a6a9-287082aa63d6] Socket closed without exit code\n2025-10-28 04:46:25.789 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:46:25.792 [info] [command][c5092c19-81a3-4391-8490-3b88658d70ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c5092c19-81a3-4391-8490-3b88658d70ea""}\n2025-10-28 04:46:25.793 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cdfea843-679c-4c2b-96da-3249000424ed] remote server not configured\n2025-10-28 04:46:25.793 [error] [command][c5092c19-81a3-4391-8490-3b88658d70ea] Socket error: Error: read ECONNRESET\n2025-10-28 04:46:25.793 [info] [command][c5092c19-81a3-4391-8490-3b88658d70ea] Socket close event received\n2025-10-28 04:46:25.794 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c5092c19-81a3-4391-8490-3b88658d70ea] Socket closed without exit code\n2025-10-28 04:47:25.799 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:47:25.801 [info] [command][960af991-8323-46d9-81e9-633b83ae185b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""960af991-8323-46d9-81e9-633b83ae185b""}\n2025-10-28 04:47:25.802 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bee4709d-93ae-4e3b-8a03-22ee5f24b353] remote server not configured\n2025-10-28 04:47:25.802 [error] [command][960af991-8323-46d9-81e9-633b83ae185b] Socket error: Error: read ECONNRESET\n2025-10-28 04:47:25.803 [info] [command][960af991-8323-46d9-81e9-633b83ae185b] Socket close event received\n2025-10-28 04:47:25.803 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][960af991-8323-46d9-81e9-633b83ae185b] Socket closed without exit code\n2025-10-28 04:48:25.805 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:48:25.807 [info] [command][651a9aa0-4f5a-4104-9767-cb0de1b2599f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""651a9aa0-4f5a-4104-9767-cb0de1b2599f""}\n2025-10-28 04:48:25.808 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0432ce9b-64e2-4e91-994f-447ea1cb7823] remote server not configured\n2025-10-28 04:48:25.808 [error] [command][651a9aa0-4f5a-4104-9767-cb0de1b2599f] Socket error: Error: read ECONNRESET\n2025-10-28 04:48:25.809 [info] [command][651a9aa0-4f5a-4104-9767-cb0de1b2599f] Socket close event received\n2025-10-28 04:48:25.809 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][651a9aa0-4f5a-4104-9767-cb0de1b2599f] Socket closed without exit code\n2025-10-28 04:49:25.815 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:49:25.816 [info] [command][cc567aca-9a11-4c3d-b8a6-3e410456e13d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cc567aca-9a11-4c3d-b8a6-3e410456e13d""}\n2025-10-28 04:49:25.817 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ae05a18c-02c0-4976-a697-c786a9fe8cab] remote server not configured\n2025-10-28 04:49:25.817 [error] [command][cc567aca-9a11-4c3d-b8a6-3e410456e13d] Socket error: Error: read ECONNRESET\n2025-10-28 04:49:25.817 [info] [command][cc567aca-9a11-4c3d-b8a6-3e410456e13d] Socket close event received\n2025-10-28 04:49:25.817 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cc567aca-9a11-4c3d-b8a6-3e410456e13d] Socket closed without exit code\n2025-10-28 04:50:25.828 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:50:25.830 [info] [command][f23bdcab-c98e-4d3e-a193-9b68a6f8b6c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f23bdcab-c98e-4d3e-a193-9b68a6f8b6c4""}\n2025-10-28 04:50:25.831 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f1c0c80c-29e3-4f18-a893-87099fe93591] remote server not configured\n2025-10-28 04:50:25.832 [error] [command][f23bdcab-c98e-4d3e-a193-9b68a6f8b6c4] Socket error: Error: read ECONNRESET\n2025-10-28 04:50:25.832 [info] [command][f23bdcab-c98e-4d3e-a193-9b68a6f8b6c4] Socket close event received\n2025-10-28 04:50:25.832 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f23bdcab-c98e-4d3e-a193-9b68a6f8b6c4] Socket closed without exit code\n2025-10-28 04:51:25.841 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:51:25.842 [info] [command][6831b079-bd03-4355-93b3-5296737b239d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6831b079-bd03-4355-93b3-5296737b239d""}\n2025-10-28 04:51:25.843 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e2a62505-2816-4256-bb9a-6c223cbec7c5] remote server not configured\n2025-10-28 04:51:25.843 [error] [command][6831b079-bd03-4355-93b3-5296737b239d] Socket error: Error: read ECONNRESET\n2025-10-28 04:51:25.844 [info] [command][6831b079-bd03-4355-93b3-5296737b239d] Socket close event received\n2025-10-28 04:51:25.844 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6831b079-bd03-4355-93b3-5296737b239d] Socket closed without exit code\n2025-10-28 04:52:25.851 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:52:25.854 [info] [command][9fc455f8-9e39-424d-922f-95a08a3de69d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9fc455f8-9e39-424d-922f-95a08a3de69d""}\n2025-10-28 04:52:25.855 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][44d60f4a-ae2b-4adc-a6fd-d3e36e8e172f] remote server not configured\n2025-10-28 04:52:25.855 [error] [command][9fc455f8-9e39-424d-922f-95a08a3de69d] Socket error: Error: read ECONNRESET\n2025-10-28 04:52:25.855 [info] [command][9fc455f8-9e39-424d-922f-95a08a3de69d] Socket close event received\n2025-10-28 04:52:25.856 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9fc455f8-9e39-424d-922f-95a08a3de69d] Socket closed without exit code\n2025-10-28 04:53:25.859 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:53:25.861 [info] [command][16706939-6139-4e80-b30e-657de09ad5de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""16706939-6139-4e80-b30e-657de09ad5de""}\n2025-10-28 04:53:25.862 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a5459229-ac27-420d-b297-86e4bacc3179] remote server not configured\n2025-10-28 04:53:25.863 [error] [command][16706939-6139-4e80-b30e-657de09ad5de] Socket error: Error: read ECONNRESET\n2025-10-28 04:53:25.863 [info] [command][16706939-6139-4e80-b30e-657de09ad5de] Socket close event received\n2025-10-28 04:53:25.864 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][16706939-6139-4e80-b30e-657de09ad5de] Socket closed without exit code\n2025-10-28 04:54:25.872 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:54:25.874 [info] [command][06871507-5ade-45a9-bc14-c5f8fe1217c3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""06871507-5ade-45a9-bc14-c5f8fe1217c3""}\n2025-10-28 04:54:25.874 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][32c424cd-8015-4769-8e9a-2c70f61c7d98] remote server not configured\n2025-10-28 04:54:25.875 [error] [command][06871507-5ade-45a9-bc14-c5f8fe1217c3] Socket error: Error: read ECONNRESET\n2025-10-28 04:54:25.875 [info] [command][06871507-5ade-45a9-bc14-c5f8fe1217c3] Socket close event received\n2025-10-28 04:54:25.875 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][06871507-5ade-45a9-bc14-c5f8fe1217c3] Socket closed without exit code\n2025-10-28 04:55:25.885 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:55:25.887 [info] [command][c77a7fd7-b8aa-44d8-bd72-9beb0280ec18] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c77a7fd7-b8aa-44d8-bd72-9beb0280ec18""}\n2025-10-28 04:55:25.888 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6f510776-25ae-471b-97d5-cf9ef1ab491b] remote server not configured\n2025-10-28 04:55:25.888 [error] [command][c77a7fd7-b8aa-44d8-bd72-9beb0280ec18] Socket error: Error: read ECONNRESET\n2025-10-28 04:55:25.889 [info] [command][c77a7fd7-b8aa-44d8-bd72-9beb0280ec18] Socket close event received\n2025-10-28 04:55:25.889 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c77a7fd7-b8aa-44d8-bd72-9beb0280ec18] Socket closed without exit code\n2025-10-28 04:56:25.898 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:56:25.900 [info] [command][59061a48-0513-4872-a8c2-7e25912f3534] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""59061a48-0513-4872-a8c2-7e25912f3534""}\n2025-10-28 04:56:25.901 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0adb6bb9-71fc-4f87-bc3f-905bfa719c9d] remote server not configured\n2025-10-28 04:56:25.901 [error] [command][59061a48-0513-4872-a8c2-7e25912f3534] Socket error: Error: read ECONNRESET\n2025-10-28 04:56:25.902 [info] [command][59061a48-0513-4872-a8c2-7e25912f3534] Socket close event received\n2025-10-28 04:56:25.902 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][59061a48-0513-4872-a8c2-7e25912f3534] Socket closed without exit code\n2025-10-28 04:57:25.911 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:57:25.913 [info] [command][bcc9ff31-3923-4b74-a406-457ac1bf645e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bcc9ff31-3923-4b74-a406-457ac1bf645e""}\n2025-10-28 04:57:25.914 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e1ae89a5-01db-4749-93ce-6318e9a99a42] remote server not configured\n2025-10-28 04:57:25.914 [error] [command][bcc9ff31-3923-4b74-a406-457ac1bf645e] Socket error: Error: read ECONNRESET\n2025-10-28 04:57:25.914 [info] [command][bcc9ff31-3923-4b74-a406-457ac1bf645e] Socket close event received\n2025-10-28 04:57:25.915 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bcc9ff31-3923-4b74-a406-457ac1bf645e] Socket closed without exit code\n2025-10-28 04:58:25.986 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:58:25.989 [info] [command][35a97946-dfd1-4e3d-bcb7-14e46699e21f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""35a97946-dfd1-4e3d-bcb7-14e46699e21f""}\n2025-10-28 04:58:25.989 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0f24c814-00b3-41fd-aeb2-ff5655daf5b8] remote server not configured\n2025-10-28 04:58:25.990 [error] [command][35a97946-dfd1-4e3d-bcb7-14e46699e21f] Socket error: Error: read ECONNRESET\n2025-10-28 04:58:25.990 [info] [command][35a97946-dfd1-4e3d-bcb7-14e46699e21f] Socket close event received\n2025-10-28 04:58:25.990 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][35a97946-dfd1-4e3d-bcb7-14e46699e21f] Socket closed without exit code\n2025-10-28 04:59:26.000 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 04:59:26.002 [info] [command][c17b5cab-99fb-4466-9ddf-450c6b8506ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c17b5cab-99fb-4466-9ddf-450c6b8506ae""}\n2025-10-28 04:59:26.003 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][36da3752-e999-4b15-bba6-07edda06a24d] remote server not configured\n2025-10-28 04:59:26.003 [error] [command][c17b5cab-99fb-4466-9ddf-450c6b8506ae] Socket error: Error: read ECONNRESET\n2025-10-28 04:59:26.004 [info] [command][c17b5cab-99fb-4466-9ddf-450c6b8506ae] Socket close event received\n2025-10-28 04:59:26.004 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c17b5cab-99fb-4466-9ddf-450c6b8506ae] Socket closed without exit code\n2025-10-28 05:00:26.013 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:00:26.016 [info] [command][f5e4e5f1-25b0-44d5-af88-dd74ffe891c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f5e4e5f1-25b0-44d5-af88-dd74ffe891c2""}\n2025-10-28 05:00:26.017 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6b94bf7b-fe75-444d-b839-b1b0096d230f] remote server not configured\n2025-10-28 05:00:26.017 [error] [command][f5e4e5f1-25b0-44d5-af88-dd74ffe891c2] Socket error: Error: read ECONNRESET\n2025-10-28 05:00:26.018 [info] [command][f5e4e5f1-25b0-44d5-af88-dd74ffe891c2] Socket close event received\n2025-10-28 05:00:26.018 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f5e4e5f1-25b0-44d5-af88-dd74ffe891c2] Socket closed without exit code\n2025-10-28 05:01:26.027 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:01:26.029 [info] [command][5d2c174e-3de1-4569-92e0-e6b901062e61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5d2c174e-3de1-4569-92e0-e6b901062e61""}\n2025-10-28 05:01:26.030 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4d19c9be-9fdc-44a9-95ac-54063a603756] remote server not configured\n2025-10-28 05:01:26.030 [error] [command][5d2c174e-3de1-4569-92e0-e6b901062e61] Socket error: Error: read ECONNRESET\n2025-10-28 05:01:26.030 [info] [command][5d2c174e-3de1-4569-92e0-e6b901062e61] Socket close event received\n2025-10-28 05:01:26.031 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5d2c174e-3de1-4569-92e0-e6b901062e61] Socket closed without exit code\n2025-10-28 05:02:26.036 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:02:26.038 [info] [command][6b817f50-4b90-4b4b-8c90-e49c2bf4f1c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6b817f50-4b90-4b4b-8c90-e49c2bf4f1c1""}\n2025-10-28 05:02:26.038 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][27d5693a-3216-4fa5-a9ff-dc28afb9921d] remote server not configured\n2025-10-28 05:02:26.039 [error] [command][6b817f50-4b90-4b4b-8c90-e49c2bf4f1c1] Socket error: Error: read ECONNRESET\n2025-10-28 05:02:26.039 [info] [command][6b817f50-4b90-4b4b-8c90-e49c2bf4f1c1] Socket close event received\n2025-10-28 05:02:26.039 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6b817f50-4b90-4b4b-8c90-e49c2bf4f1c1] Socket closed without exit code\n2025-10-28 05:03:26.049 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:03:26.052 [info] [command][c470e6c0-6dc2-4ea0-b164-5c205ba2538a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c470e6c0-6dc2-4ea0-b164-5c205ba2538a""}\n2025-10-28 05:03:26.052 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d7886a6d-c3a4-4d14-aab1-fe99be86c41d] remote server not configured\n2025-10-28 05:03:26.053 [error] [command][c470e6c0-6dc2-4ea0-b164-5c205ba2538a] Socket error: Error: read ECONNRESET\n2025-10-28 05:03:26.053 [info] [command][c470e6c0-6dc2-4ea0-b164-5c205ba2538a] Socket close event received\n2025-10-28 05:03:26.053 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c470e6c0-6dc2-4ea0-b164-5c205ba2538a] Socket closed without exit code\n2025-10-28 05:04:26.055 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:04:26.057 [info] [command][80a28c5c-a1d5-48e5-975b-b2074bc38d13] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""80a28c5c-a1d5-48e5-975b-b2074bc38d13""}\n2025-10-28 05:04:26.057 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][50cfed3d-01ee-497a-9c1e-79337d065154] remote server not configured\n2025-10-28 05:04:26.058 [error] [command][80a28c5c-a1d5-48e5-975b-b2074bc38d13] Socket error: Error: read ECONNRESET\n2025-10-28 05:04:26.058 [info] [command][80a28c5c-a1d5-48e5-975b-b2074bc38d13] Socket close event received\n2025-10-28 05:04:26.058 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][80a28c5c-a1d5-48e5-975b-b2074bc38d13] Socket closed without exit code\n2025-10-28 05:05:26.068 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:05:26.069 [info] [command][52f300a3-8d78-470b-8732-824c61c98ba6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""52f300a3-8d78-470b-8732-824c61c98ba6""}\n2025-10-28 05:05:26.070 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][39837dcd-2a9e-4f80-b4d7-06fea3f8e7b5] remote server not configured\n2025-10-28 05:05:26.070 [error] [command][52f300a3-8d78-470b-8732-824c61c98ba6] Socket error: Error: read ECONNRESET\n2025-10-28 05:05:26.071 [info] [command][52f300a3-8d78-470b-8732-824c61c98ba6] Socket close event received\n2025-10-28 05:05:26.071 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][52f300a3-8d78-470b-8732-824c61c98ba6] Socket closed without exit code\n2025-10-28 05:06:26.073 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:06:26.075 [info] [command][5bb0efd3-02be-4542-bd97-1f75f64819ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5bb0efd3-02be-4542-bd97-1f75f64819ba""}\n2025-10-28 05:06:26.075 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f8edc7be-c893-4983-b680-4391e777bc38] remote server not configured\n2025-10-28 05:06:26.076 [error] [command][5bb0efd3-02be-4542-bd97-1f75f64819ba] Socket error: Error: read ECONNRESET\n2025-10-28 05:06:26.076 [info] [command][5bb0efd3-02be-4542-bd97-1f75f64819ba] Socket close event received\n2025-10-28 05:06:26.076 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5bb0efd3-02be-4542-bd97-1f75f64819ba] Socket closed without exit code\n2025-10-28 05:07:26.087 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:07:26.090 [info] [command][a066e50e-fc12-40ad-88e1-bf3c02e73668] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a066e50e-fc12-40ad-88e1-bf3c02e73668""}\n2025-10-28 05:07:26.091 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][339bdf3a-6c87-4b12-905a-f4ea9e6e6d08] remote server not configured\n2025-10-28 05:07:26.091 [error] [command][a066e50e-fc12-40ad-88e1-bf3c02e73668] Socket error: Error: read ECONNRESET\n2025-10-28 05:07:26.091 [info] [command][a066e50e-fc12-40ad-88e1-bf3c02e73668] Socket close event received\n2025-10-28 05:07:26.091 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a066e50e-fc12-40ad-88e1-bf3c02e73668] Socket closed without exit code\n2025-10-28 05:08:26.102 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:08:26.105 [info] [command][94955038-200d-45d0-a1ed-b18e743cda58] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""94955038-200d-45d0-a1ed-b18e743cda58""}\n2025-10-28 05:08:26.105 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][76a6a9da-5d7d-41ad-a3f2-6739fdd447e5] remote server not configured\n2025-10-28 05:08:26.106 [error] [command][94955038-200d-45d0-a1ed-b18e743cda58] Socket error: Error: read ECONNRESET\n2025-10-28 05:08:26.106 [info] [command][94955038-200d-45d0-a1ed-b18e743cda58] Socket close event received\n2025-10-28 05:08:26.106 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][94955038-200d-45d0-a1ed-b18e743cda58] Socket closed without exit code\n2025-10-28 05:09:26.114 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:09:26.115 [info] [command][614840ef-a48a-4398-b565-836886cb82e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""614840ef-a48a-4398-b565-836886cb82e6""}\n2025-10-28 05:09:26.116 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1a2a1155-5340-4e90-b82d-acd315e90b0b] remote server not configured\n2025-10-28 05:09:26.117 [error] [command][614840ef-a48a-4398-b565-836886cb82e6] Socket error: Error: read ECONNRESET\n2025-10-28 05:09:26.117 [info] [command][614840ef-a48a-4398-b565-836886cb82e6] Socket close event received\n2025-10-28 05:09:26.117 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][614840ef-a48a-4398-b565-836886cb82e6] Socket closed without exit code\n2025-10-28 05:10:26.127 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:10:26.130 [info] [command][1cf32bf9-8ab3-40c8-b496-86d35bf96927] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1cf32bf9-8ab3-40c8-b496-86d35bf96927""}\n2025-10-28 05:10:26.131 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f24968bd-0c99-4ed8-8e6f-f1cee703436a] remote server not configured\n2025-10-28 05:10:26.131 [error] [command][1cf32bf9-8ab3-40c8-b496-86d35bf96927] Socket error: Error: read ECONNRESET\n2025-10-28 05:10:26.131 [info] [command][1cf32bf9-8ab3-40c8-b496-86d35bf96927] Socket close event received\n2025-10-28 05:10:26.132 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1cf32bf9-8ab3-40c8-b496-86d35bf96927] Socket closed without exit code\n2025-10-28 05:11:26.135 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:11:26.138 [info] [command][482ad69f-326d-4e96-9d3b-2386b14ddefa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""482ad69f-326d-4e96-9d3b-2386b14ddefa""}\n2025-10-28 05:11:26.139 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cdaca7b7-77dd-4884-bc47-f4022fbac7e7] remote server not configured\n2025-10-28 05:11:26.139 [error] [command][482ad69f-326d-4e96-9d3b-2386b14ddefa] Socket error: Error: read ECONNRESET\n2025-10-28 05:11:26.139 [info] [command][482ad69f-326d-4e96-9d3b-2386b14ddefa] Socket close event received\n2025-10-28 05:11:26.140 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][482ad69f-326d-4e96-9d3b-2386b14ddefa] Socket closed without exit code\n2025-10-28 05:12:26.150 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:12:26.153 [info] [command][01cc5759-2154-4959-988e-e4478b52bb7e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""01cc5759-2154-4959-988e-e4478b52bb7e""}\n2025-10-28 05:12:26.154 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][608e29e0-6efe-4de8-850b-43136cf0645c] remote server not configured\n2025-10-28 05:12:26.155 [error] [command][01cc5759-2154-4959-988e-e4478b52bb7e] Socket error: Error: read ECONNRESET\n2025-10-28 05:12:26.155 [info] [command][01cc5759-2154-4959-988e-e4478b52bb7e] Socket close event received\n2025-10-28 05:12:26.155 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][01cc5759-2154-4959-988e-e4478b52bb7e] Socket closed without exit code\n2025-10-28 05:13:26.163 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:13:26.165 [info] [command][e61b6e70-f13b-4773-9335-d5d6d81389e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e61b6e70-f13b-4773-9335-d5d6d81389e4""}\n2025-10-28 05:13:26.166 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dc9666a1-ec67-45a0-ac66-a541a2cea27e] remote server not configured\n2025-10-28 05:13:26.167 [error] [command][e61b6e70-f13b-4773-9335-d5d6d81389e4] Socket error: Error: read ECONNRESET\n2025-10-28 05:13:26.167 [info] [command][e61b6e70-f13b-4773-9335-d5d6d81389e4] Socket close event received\n2025-10-28 05:13:26.167 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e61b6e70-f13b-4773-9335-d5d6d81389e4] Socket closed without exit code\n2025-10-28 05:14:26.168 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:14:26.169 [info] [command][a93ab96e-301f-4c4f-911d-d68fce049154] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a93ab96e-301f-4c4f-911d-d68fce049154""}\n2025-10-28 05:14:26.170 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f30dd557-6b44-4560-8909-624e037fd1ca] remote server not configured\n2025-10-28 05:14:26.170 [error] [command][a93ab96e-301f-4c4f-911d-d68fce049154] Socket error: Error: read ECONNRESET\n2025-10-28 05:14:26.171 [info] [command][a93ab96e-301f-4c4f-911d-d68fce049154] Socket close event received\n2025-10-28 05:14:26.171 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a93ab96e-301f-4c4f-911d-d68fce049154] Socket closed without exit code\n2025-10-28 05:15:26.171 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:15:26.174 [info] [command][4a25627d-2741-4b92-a23b-7a737e998a6d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4a25627d-2741-4b92-a23b-7a737e998a6d""}\n2025-10-28 05:15:26.174 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4b394bfe-3436-4f33-97d7-4ec7813d0a10] remote server not configured\n2025-10-28 05:15:26.175 [error] [command][4a25627d-2741-4b92-a23b-7a737e998a6d] Socket error: Error: read ECONNRESET\n2025-10-28 05:15:26.175 [info] [command][4a25627d-2741-4b92-a23b-7a737e998a6d] Socket close event received\n2025-10-28 05:15:26.175 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4a25627d-2741-4b92-a23b-7a737e998a6d] Socket closed without exit code\n2025-10-28 05:16:26.187 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:16:26.188 [info] [command][977788b8-cdd8-4f0a-bcfb-dbf2b414da12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""977788b8-cdd8-4f0a-bcfb-dbf2b414da12""}\n2025-10-28 05:16:26.189 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7f42d6df-34e7-4430-a721-2d6578e4a6b4] remote server not configured\n2025-10-28 05:16:26.190 [error] [command][977788b8-cdd8-4f0a-bcfb-dbf2b414da12] Socket error: Error: read ECONNRESET\n2025-10-28 05:16:26.190 [info] [command][977788b8-cdd8-4f0a-bcfb-dbf2b414da12] Socket close event received\n2025-10-28 05:16:26.190 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][977788b8-cdd8-4f0a-bcfb-dbf2b414da12] Socket closed without exit code\n2025-10-28 05:17:26.195 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:17:26.198 [info] [command][020afc3c-2d6d-417c-a7dd-849a5993d2fc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""020afc3c-2d6d-417c-a7dd-849a5993d2fc""}\n2025-10-28 05:17:26.198 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b23a465b-0494-49ad-8962-f99b1a74c6fc] remote server not configured\n2025-10-28 05:17:26.199 [error] [command][020afc3c-2d6d-417c-a7dd-849a5993d2fc] Socket error: Error: read ECONNRESET\n2025-10-28 05:17:26.199 [info] [command][020afc3c-2d6d-417c-a7dd-849a5993d2fc] Socket close event received\n2025-10-28 05:17:26.200 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][020afc3c-2d6d-417c-a7dd-849a5993d2fc] Socket closed without exit code\n2025-10-28 05:18:26.204 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:18:26.205 [info] [command][e7a8267a-2923-4b84-8bab-4044605002aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e7a8267a-2923-4b84-8bab-4044605002aa""}\n2025-10-28 05:18:26.206 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][348c084a-fded-45d3-a3bf-0ef1e08f5cda] remote server not configured\n2025-10-28 05:18:26.206 [error] [command][e7a8267a-2923-4b84-8bab-4044605002aa] Socket error: Error: read ECONNRESET\n2025-10-28 05:18:26.206 [info] [command][e7a8267a-2923-4b84-8bab-4044605002aa] Socket close event received\n2025-10-28 05:18:26.207 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e7a8267a-2923-4b84-8bab-4044605002aa] Socket closed without exit code\n2025-10-28 05:19:26.211 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:19:26.213 [info] [command][60e449ee-644a-4f76-97d3-835de4b9882d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""60e449ee-644a-4f76-97d3-835de4b9882d""}\n2025-10-28 05:19:26.213 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ea07c239-562a-4579-9f39-9e6f44313bc3] remote server not configured\n2025-10-28 05:19:26.214 [error] [command][60e449ee-644a-4f76-97d3-835de4b9882d] Socket error: Error: read ECONNRESET\n2025-10-28 05:19:26.214 [info] [command][60e449ee-644a-4f76-97d3-835de4b9882d] Socket close event received\n2025-10-28 05:19:26.214 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][60e449ee-644a-4f76-97d3-835de4b9882d] Socket closed without exit code\n2025-10-28 05:20:26.225 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:20:26.228 [info] [command][a36743b2-5a94-486d-9059-5b03fb9a55b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a36743b2-5a94-486d-9059-5b03fb9a55b9""}\n2025-10-28 05:20:26.228 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fc211220-2774-4f7c-a852-3cc020059694] remote server not configured\n2025-10-28 05:20:26.229 [error] [command][a36743b2-5a94-486d-9059-5b03fb9a55b9] Socket error: Error: read ECONNRESET\n2025-10-28 05:20:26.229 [info] [command][a36743b2-5a94-486d-9059-5b03fb9a55b9] Socket close event received\n2025-10-28 05:20:26.229 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a36743b2-5a94-486d-9059-5b03fb9a55b9] Socket closed without exit code\n2025-10-28 05:21:26.230 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:21:26.233 [info] [command][7843a0ce-efc3-4632-a6af-38838d32f287] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7843a0ce-efc3-4632-a6af-38838d32f287""}\n2025-10-28 05:21:26.234 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][134a9ad7-1250-43f6-9c47-8dd3d9826620] remote server not configured\n2025-10-28 05:21:26.234 [error] [command][7843a0ce-efc3-4632-a6af-38838d32f287] Socket error: Error: read ECONNRESET\n2025-10-28 05:21:26.234 [info] [command][7843a0ce-efc3-4632-a6af-38838d32f287] Socket close event received\n2025-10-28 05:21:26.234 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7843a0ce-efc3-4632-a6af-38838d32f287] Socket closed without exit code\n2025-10-28 05:22:26.240 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:22:26.243 [info] [command][849ffedd-590a-4f15-bfc5-61af428d9f5a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""849ffedd-590a-4f15-bfc5-61af428d9f5a""}\n2025-10-28 05:22:26.243 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3f953daf-0e12-427d-a628-e1b6ee6d0827] remote server not configured\n2025-10-28 05:22:26.244 [error] [command][849ffedd-590a-4f15-bfc5-61af428d9f5a] Socket error: Error: read ECONNRESET\n2025-10-28 05:22:26.244 [info] [command][849ffedd-590a-4f15-bfc5-61af428d9f5a] Socket close event received\n2025-10-28 05:22:26.244 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][849ffedd-590a-4f15-bfc5-61af428d9f5a] Socket closed without exit code\n2025-10-28 05:23:26.255 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:23:26.256 [info] [command][da2bfd3c-31d9-49f9-b6ce-ebd1fc5c2446] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""da2bfd3c-31d9-49f9-b6ce-ebd1fc5c2446""}\n2025-10-28 05:23:26.257 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7e074b41-67fd-4c8b-aa77-56dd48e409eb] remote server not configured\n2025-10-28 05:23:26.258 [error] [command][da2bfd3c-31d9-49f9-b6ce-ebd1fc5c2446] Socket error: Error: read ECONNRESET\n2025-10-28 05:23:26.258 [info] [command][da2bfd3c-31d9-49f9-b6ce-ebd1fc5c2446] Socket close event received\n2025-10-28 05:23:26.258 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][da2bfd3c-31d9-49f9-b6ce-ebd1fc5c2446] Socket closed without exit code\n2025-10-28 05:24:26.260 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:24:26.262 [info] [command][a6e0d467-de74-4b6e-bcec-eb583e0f87c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a6e0d467-de74-4b6e-bcec-eb583e0f87c0""}\n2025-10-28 05:24:26.262 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][250a1787-0bd0-438f-bb03-9adca2f320f7] remote server not configured\n2025-10-28 05:24:26.263 [error] [command][a6e0d467-de74-4b6e-bcec-eb583e0f87c0] Socket error: Error: read ECONNRESET\n2025-10-28 05:24:26.263 [info] [command][a6e0d467-de74-4b6e-bcec-eb583e0f87c0] Socket close event received\n2025-10-28 05:24:26.264 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a6e0d467-de74-4b6e-bcec-eb583e0f87c0] Socket closed without exit code\n2025-10-28 05:25:26.275 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:25:26.276 [info] [command][13a4a674-face-418b-a49d-3be503887e1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""13a4a674-face-418b-a49d-3be503887e1e""}\n2025-10-28 05:25:26.277 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9a598213-da25-47aa-b0c2-b54b767a2669] remote server not configured\n2025-10-28 05:25:26.278 [error] [command][13a4a674-face-418b-a49d-3be503887e1e] Socket error: Error: read ECONNRESET\n2025-10-28 05:25:26.278 [info] [command][13a4a674-face-418b-a49d-3be503887e1e] Socket close event received\n2025-10-28 05:25:26.278 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][13a4a674-face-418b-a49d-3be503887e1e] Socket closed without exit code\n2025-10-28 05:26:26.288 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:26:26.291 [info] [command][9ad368dc-4ef1-45e1-a5f5-2e8c637cbec6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9ad368dc-4ef1-45e1-a5f5-2e8c637cbec6""}\n2025-10-28 05:26:26.291 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][57381e42-fe52-4275-bfe1-b43fa408c105] remote server not configured\n2025-10-28 05:26:26.292 [error] [command][9ad368dc-4ef1-45e1-a5f5-2e8c637cbec6] Socket error: Error: read ECONNRESET\n2025-10-28 05:26:26.292 [info] [command][9ad368dc-4ef1-45e1-a5f5-2e8c637cbec6] Socket close event received\n2025-10-28 05:26:26.292 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9ad368dc-4ef1-45e1-a5f5-2e8c637cbec6] Socket closed without exit code\n2025-10-28 05:27:26.299 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:27:26.301 [info] [command][bf95601e-eb83-4f36-9815-063e410efbb9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bf95601e-eb83-4f36-9815-063e410efbb9""}\n2025-10-28 05:27:26.302 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][85009332-bb39-4b75-9c0c-e55dff9a0615] remote server not configured\n2025-10-28 05:27:26.303 [error] [command][bf95601e-eb83-4f36-9815-063e410efbb9] Socket error: Error: read ECONNRESET\n2025-10-28 05:27:26.303 [info] [command][bf95601e-eb83-4f36-9815-063e410efbb9] Socket close event received\n2025-10-28 05:27:26.303 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bf95601e-eb83-4f36-9815-063e410efbb9] Socket closed without exit code\n2025-10-28 05:28:26.313 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:28:26.315 [info] [command][76c959d1-f55a-46d3-9e01-8d4a2c142afa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""76c959d1-f55a-46d3-9e01-8d4a2c142afa""}\n2025-10-28 05:28:26.315 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][446fbf55-b969-4fa1-bafb-14c244724732] remote server not configured\n2025-10-28 05:28:26.316 [error] [command][76c959d1-f55a-46d3-9e01-8d4a2c142afa] Socket error: Error: read ECONNRESET\n2025-10-28 05:28:26.317 [info] [command][76c959d1-f55a-46d3-9e01-8d4a2c142afa] Socket close event received\n2025-10-28 05:28:26.317 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][76c959d1-f55a-46d3-9e01-8d4a2c142afa] Socket closed without exit code\n2025-10-28 05:29:26.327 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:29:26.329 [info] [command][334a97e2-4bd3-46ab-a8c8-d7e4ce3657f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""334a97e2-4bd3-46ab-a8c8-d7e4ce3657f2""}\n2025-10-28 05:29:26.329 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][208b74c7-ae6c-4086-aa56-b41c294c8fc7] remote server not configured\n2025-10-28 05:29:26.330 [error] [command][334a97e2-4bd3-46ab-a8c8-d7e4ce3657f2] Socket error: Error: read ECONNRESET\n2025-10-28 05:29:26.330 [info] [command][334a97e2-4bd3-46ab-a8c8-d7e4ce3657f2] Socket close event received\n2025-10-28 05:29:26.330 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][334a97e2-4bd3-46ab-a8c8-d7e4ce3657f2] Socket closed without exit code\n2025-10-28 05:30:26.334 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:30:26.337 [info] [command][f5cc1545-0b08-440f-9d4b-f722a71e5447] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f5cc1545-0b08-440f-9d4b-f722a71e5447""}\n2025-10-28 05:30:26.337 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][61d8b698-268e-48ac-883b-5d3b62857097] remote server not configured\n2025-10-28 05:30:26.338 [error] [command][f5cc1545-0b08-440f-9d4b-f722a71e5447] Socket error: Error: read ECONNRESET\n2025-10-28 05:30:26.338 [info] [command][f5cc1545-0b08-440f-9d4b-f722a71e5447] Socket close event received\n2025-10-28 05:30:26.338 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f5cc1545-0b08-440f-9d4b-f722a71e5447] Socket closed without exit code\n2025-10-28 05:31:26.349 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:31:26.351 [info] [command][77592e9e-8dd8-4f0a-85d7-4116386f6697] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""77592e9e-8dd8-4f0a-85d7-4116386f6697""}\n2025-10-28 05:31:26.352 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3b0f463c-ef34-4284-8c57-dfa57872a0b1] remote server not configured\n2025-10-28 05:31:26.353 [error] [command][77592e9e-8dd8-4f0a-85d7-4116386f6697] Socket error: Error: read ECONNRESET\n2025-10-28 05:31:26.353 [info] [command][77592e9e-8dd8-4f0a-85d7-4116386f6697] Socket close event received\n2025-10-28 05:31:26.353 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][77592e9e-8dd8-4f0a-85d7-4116386f6697] Socket closed without exit code\n2025-10-28 05:32:26.363 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:32:26.364 [info] [command][87f84b4f-b3a8-4bb5-85a0-f7db6b0eb71f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""87f84b4f-b3a8-4bb5-85a0-f7db6b0eb71f""}\n2025-10-28 05:32:26.365 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c6807963-109a-47c7-9309-90af42ae18e6] remote server not configured\n2025-10-28 05:32:26.366 [error] [command][87f84b4f-b3a8-4bb5-85a0-f7db6b0eb71f] Socket error: Error: read ECONNRESET\n2025-10-28 05:32:26.366 [info] [command][87f84b4f-b3a8-4bb5-85a0-f7db6b0eb71f] Socket close event received\n2025-10-28 05:32:26.366 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][87f84b4f-b3a8-4bb5-85a0-f7db6b0eb71f] Socket closed without exit code\n2025-10-28 05:33:26.377 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:33:26.379 [info] [command][19a4f6a6-daaa-4b26-9273-7abcb27f29f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""19a4f6a6-daaa-4b26-9273-7abcb27f29f0""}\n2025-10-28 05:33:26.379 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7bc7a9bd-d8c6-47f0-a85d-d31faa65025f] remote server not configured\n2025-10-28 05:33:26.380 [error] [command][19a4f6a6-daaa-4b26-9273-7abcb27f29f0] Socket error: Error: read ECONNRESET\n2025-10-28 05:33:26.380 [info] [command][19a4f6a6-daaa-4b26-9273-7abcb27f29f0] Socket close event received\n2025-10-28 05:33:26.381 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][19a4f6a6-daaa-4b26-9273-7abcb27f29f0] Socket closed without exit code\n2025-10-28 05:34:26.391 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:34:26.395 [info] [command][74302c14-1bed-4d39-a5f9-fe3a4a60303b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""74302c14-1bed-4d39-a5f9-fe3a4a60303b""}\n2025-10-28 05:34:26.395 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][028a8f29-a350-4492-baf0-86442a62a4cd] remote server not configured\n2025-10-28 05:34:26.396 [error] [command][74302c14-1bed-4d39-a5f9-fe3a4a60303b] Socket error: Error: read ECONNRESET\n2025-10-28 05:34:26.396 [info] [command][74302c14-1bed-4d39-a5f9-fe3a4a60303b] Socket close event received\n2025-10-28 05:34:26.396 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][74302c14-1bed-4d39-a5f9-fe3a4a60303b] Socket closed without exit code\n2025-10-28 05:35:26.400 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:35:26.401 [info] [command][f0c3b4ff-6e5a-4655-97ad-4d60f2405922] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f0c3b4ff-6e5a-4655-97ad-4d60f2405922""}\n2025-10-28 05:35:26.402 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b530e92b-5ef6-4a61-86dc-f1002be85196] remote server not configured\n2025-10-28 05:35:26.403 [error] [command][f0c3b4ff-6e5a-4655-97ad-4d60f2405922] Socket error: Error: read ECONNRESET\n2025-10-28 05:35:26.403 [info] [command][f0c3b4ff-6e5a-4655-97ad-4d60f2405922] Socket close event received\n2025-10-28 05:35:26.403 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f0c3b4ff-6e5a-4655-97ad-4d60f2405922] Socket closed without exit code\n2025-10-28 05:36:26.404 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:36:26.407 [info] [command][82b3e95b-9045-4df2-bdee-eed652c39f10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""82b3e95b-9045-4df2-bdee-eed652c39f10""}\n2025-10-28 05:36:26.407 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8246e6a2-0608-4dea-a3b4-ebc0322eabf8] remote server not configured\n2025-10-28 05:36:26.408 [error] [command][82b3e95b-9045-4df2-bdee-eed652c39f10] Socket error: Error: read ECONNRESET\n2025-10-28 05:36:26.408 [info] [command][82b3e95b-9045-4df2-bdee-eed652c39f10] Socket close event received\n2025-10-28 05:36:26.408 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][82b3e95b-9045-4df2-bdee-eed652c39f10] Socket closed without exit code\n2025-10-28 05:37:26.416 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:37:26.418 [info] [command][9f46f214-cdb7-412d-b334-ee9fda711d98] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9f46f214-cdb7-412d-b334-ee9fda711d98""}\n2025-10-28 05:37:26.418 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][eded0501-823a-457e-83b4-cf982319b41f] remote server not configured\n2025-10-28 05:37:26.419 [error] [command][9f46f214-cdb7-412d-b334-ee9fda711d98] Socket error: Error: read ECONNRESET\n2025-10-28 05:37:26.419 [info] [command][9f46f214-cdb7-412d-b334-ee9fda711d98] Socket close event received\n2025-10-28 05:37:26.420 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9f46f214-cdb7-412d-b334-ee9fda711d98] Socket closed without exit code\n2025-10-28 05:38:26.430 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:38:26.433 [info] [command][dc02940a-9077-4386-9df3-7d1979dc7313] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dc02940a-9077-4386-9df3-7d1979dc7313""}\n2025-10-28 05:38:26.434 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b3eaeb7a-cb89-4acd-8389-37bc375661fc] remote server not configured\n2025-10-28 05:38:26.434 [error] [command][dc02940a-9077-4386-9df3-7d1979dc7313] Socket error: Error: read ECONNRESET\n2025-10-28 05:38:26.434 [info] [command][dc02940a-9077-4386-9df3-7d1979dc7313] Socket close event received\n2025-10-28 05:38:26.435 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dc02940a-9077-4386-9df3-7d1979dc7313] Socket closed without exit code\n2025-10-28 05:39:26.443 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:39:26.445 [info] [command][42e18874-9526-4363-a399-69c531b92fdb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""42e18874-9526-4363-a399-69c531b92fdb""}\n2025-10-28 05:39:26.445 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][61afb48f-738d-4cac-b8da-8f72a5c60d3c] remote server not configured\n2025-10-28 05:39:26.446 [error] [command][42e18874-9526-4363-a399-69c531b92fdb] Socket error: Error: read ECONNRESET\n2025-10-28 05:39:26.446 [info] [command][42e18874-9526-4363-a399-69c531b92fdb] Socket close event received\n2025-10-28 05:39:26.447 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][42e18874-9526-4363-a399-69c531b92fdb] Socket closed without exit code\n2025-10-28 05:40:26.458 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:40:26.461 [info] [command][08294a0c-73d0-44e0-99d4-455b6664af61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""08294a0c-73d0-44e0-99d4-455b6664af61""}\n2025-10-28 05:40:26.461 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4ef7d2ec-992f-41b8-8631-a85aa23d22f8] remote server not configured\n2025-10-28 05:40:26.462 [error] [command][08294a0c-73d0-44e0-99d4-455b6664af61] Socket error: Error: read ECONNRESET\n2025-10-28 05:40:26.462 [info] [command][08294a0c-73d0-44e0-99d4-455b6664af61] Socket close event received\n2025-10-28 05:40:26.462 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][08294a0c-73d0-44e0-99d4-455b6664af61] Socket closed without exit code\n2025-10-28 05:41:26.465 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:41:26.467 [info] [command][ae9cbd58-fd52-4b8e-a1db-856be51fd1db] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ae9cbd58-fd52-4b8e-a1db-856be51fd1db""}\n2025-10-28 05:41:26.468 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b48e0d83-07b5-4537-8f4d-badd7f38195e] remote server not configured\n2025-10-28 05:41:26.468 [error] [command][ae9cbd58-fd52-4b8e-a1db-856be51fd1db] Socket error: Error: read ECONNRESET\n2025-10-28 05:41:26.468 [info] [command][ae9cbd58-fd52-4b8e-a1db-856be51fd1db] Socket close event received\n2025-10-28 05:41:26.469 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ae9cbd58-fd52-4b8e-a1db-856be51fd1db] Socket closed without exit code\n2025-10-28 05:42:26.475 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:42:26.477 [info] [command][4e06d0b8-0cb5-44d9-9eeb-d5ca98190ba2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4e06d0b8-0cb5-44d9-9eeb-d5ca98190ba2""}\n2025-10-28 05:42:26.478 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][769303ad-8125-4d28-9aeb-712c0d1161c1] remote server not configured\n2025-10-28 05:42:26.478 [error] [command][4e06d0b8-0cb5-44d9-9eeb-d5ca98190ba2] Socket error: Error: read ECONNRESET\n2025-10-28 05:42:26.478 [info] [command][4e06d0b8-0cb5-44d9-9eeb-d5ca98190ba2] Socket close event received\n2025-10-28 05:42:26.478 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4e06d0b8-0cb5-44d9-9eeb-d5ca98190ba2] Socket closed without exit code\n2025-10-28 05:43:26.489 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:43:26.491 [info] [command][d2045cd2-186e-4731-bc76-2bd9adad3765] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d2045cd2-186e-4731-bc76-2bd9adad3765""}\n2025-10-28 05:43:26.492 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7a593d64-a6d9-4717-9334-f1fb321239d5] remote server not configured\n2025-10-28 05:43:26.492 [error] [command][d2045cd2-186e-4731-bc76-2bd9adad3765] Socket error: Error: read ECONNRESET\n2025-10-28 05:43:26.493 [info] [command][d2045cd2-186e-4731-bc76-2bd9adad3765] Socket close event received\n2025-10-28 05:43:26.493 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d2045cd2-186e-4731-bc76-2bd9adad3765] Socket closed without exit code\n2025-10-28 05:44:26.503 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:44:26.504 [info] [command][674258d5-bb29-4dd0-803b-2fc0d672691b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""674258d5-bb29-4dd0-803b-2fc0d672691b""}\n2025-10-28 05:44:26.505 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e0c35165-f840-481c-ae16-e2998e0dbf9f] remote server not configured\n2025-10-28 05:44:26.505 [error] [command][674258d5-bb29-4dd0-803b-2fc0d672691b] Socket error: Error: read ECONNRESET\n2025-10-28 05:44:26.505 [info] [command][674258d5-bb29-4dd0-803b-2fc0d672691b] Socket close event received\n2025-10-28 05:44:26.506 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][674258d5-bb29-4dd0-803b-2fc0d672691b] Socket closed without exit code\n2025-10-28 05:45:26.516 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:45:26.518 [info] [command][eaa57f1b-f943-4dd2-9205-18fd83183baa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""eaa57f1b-f943-4dd2-9205-18fd83183baa""}\n2025-10-28 05:45:26.519 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][00038427-f6f9-4ee4-88a7-8ea9670d6171] remote server not configured\n2025-10-28 05:45:26.520 [error] [command][eaa57f1b-f943-4dd2-9205-18fd83183baa] Socket error: Error: read ECONNRESET\n2025-10-28 05:45:26.520 [info] [command][eaa57f1b-f943-4dd2-9205-18fd83183baa] Socket close event received\n2025-10-28 05:45:26.520 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][eaa57f1b-f943-4dd2-9205-18fd83183baa] Socket closed without exit code\n2025-10-28 05:46:26.523 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:46:26.525 [info] [command][136ac2c3-7a57-453c-943d-9eb8e3695047] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""136ac2c3-7a57-453c-943d-9eb8e3695047""}\n2025-10-28 05:46:26.525 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][88ab31dc-252c-4b89-8666-6c5cdd8723a0] remote server not configured\n2025-10-28 05:46:26.526 [error] [command][136ac2c3-7a57-453c-943d-9eb8e3695047] Socket error: Error: read ECONNRESET\n2025-10-28 05:46:26.526 [info] [command][136ac2c3-7a57-453c-943d-9eb8e3695047] Socket close event received\n2025-10-28 05:46:26.526 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][136ac2c3-7a57-453c-943d-9eb8e3695047] Socket closed without exit code\n2025-10-28 05:47:26.528 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:47:26.531 [info] [command][6b000f06-9f16-4ef5-9088-81d2e05598c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6b000f06-9f16-4ef5-9088-81d2e05598c2""}\n2025-10-28 05:47:26.532 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][15dccc9e-0579-44d1-8884-1320b5f465a9] remote server not configured\n2025-10-28 05:47:26.532 [error] [command][6b000f06-9f16-4ef5-9088-81d2e05598c2] Socket error: Error: read ECONNRESET\n2025-10-28 05:47:26.533 [info] [command][6b000f06-9f16-4ef5-9088-81d2e05598c2] Socket close event received\n2025-10-28 05:47:26.533 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6b000f06-9f16-4ef5-9088-81d2e05598c2] Socket closed without exit code\n2025-10-28 05:48:26.537 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:48:26.538 [info] [command][5561a87e-b4b9-44ed-8abf-27693bf9317f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5561a87e-b4b9-44ed-8abf-27693bf9317f""}\n2025-10-28 05:48:26.539 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][47957670-6564-42ec-9572-5a4ab6bee5c8] remote server not configured\n2025-10-28 05:48:26.539 [error] [command][5561a87e-b4b9-44ed-8abf-27693bf9317f] Socket error: Error: read ECONNRESET\n2025-10-28 05:48:26.540 [info] [command][5561a87e-b4b9-44ed-8abf-27693bf9317f] Socket close event received\n2025-10-28 05:48:26.540 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5561a87e-b4b9-44ed-8abf-27693bf9317f] Socket closed without exit code\n2025-10-28 05:49:26.547 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:49:26.548 [info] [command][351445ea-979a-41e7-8863-97d34a74e6a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""351445ea-979a-41e7-8863-97d34a74e6a3""}\n2025-10-28 05:49:26.549 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][285b1aeb-c688-4bd3-a008-05d89df31111] remote server not configured\n2025-10-28 05:49:26.550 [error] [command][351445ea-979a-41e7-8863-97d34a74e6a3] Socket error: Error: read ECONNRESET\n2025-10-28 05:49:26.550 [info] [command][351445ea-979a-41e7-8863-97d34a74e6a3] Socket close event received\n2025-10-28 05:49:26.550 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][351445ea-979a-41e7-8863-97d34a74e6a3] Socket closed without exit code\n2025-10-28 05:50:26.561 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:50:26.562 [info] [command][f6142bbb-1f87-46d5-ab93-8301280cd50c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f6142bbb-1f87-46d5-ab93-8301280cd50c""}\n2025-10-28 05:50:26.563 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][094688f8-0a61-4349-8ab2-968ca120d578] remote server not configured\n2025-10-28 05:50:26.564 [error] [command][f6142bbb-1f87-46d5-ab93-8301280cd50c] Socket error: Error: read ECONNRESET\n2025-10-28 05:50:26.564 [info] [command][f6142bbb-1f87-46d5-ab93-8301280cd50c] Socket close event received\n2025-10-28 05:50:26.564 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f6142bbb-1f87-46d5-ab93-8301280cd50c] Socket closed without exit code\n2025-10-28 05:51:26.569 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:51:26.570 [info] [command][6d3a1a65-ccde-42a2-b66c-df8119012627] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6d3a1a65-ccde-42a2-b66c-df8119012627""}\n2025-10-28 05:51:26.571 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6e358c03-d6d4-4c2a-b1bb-e9e0d584b683] remote server not configured\n2025-10-28 05:51:26.572 [error] [command][6d3a1a65-ccde-42a2-b66c-df8119012627] Socket error: Error: read ECONNRESET\n2025-10-28 05:51:26.572 [info] [command][6d3a1a65-ccde-42a2-b66c-df8119012627] Socket close event received\n2025-10-28 05:51:26.572 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6d3a1a65-ccde-42a2-b66c-df8119012627] Socket closed without exit code\n2025-10-28 05:52:26.578 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:52:26.584 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6ab71ebf-b1ff-4aac-90aa-6eeeabc8e397] remote server not configured\n2025-10-28 05:52:26.584 [info] [command][477c0452-dc2e-484e-bb57-2be25f29b345] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""477c0452-dc2e-484e-bb57-2be25f29b345""}\n2025-10-28 05:52:26.589 [error] [command][477c0452-dc2e-484e-bb57-2be25f29b345] Socket error: Error: read ECONNRESET\n2025-10-28 05:52:26.589 [info] [command][477c0452-dc2e-484e-bb57-2be25f29b345] Socket close event received\n2025-10-28 05:52:26.589 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][477c0452-dc2e-484e-bb57-2be25f29b345] Socket closed without exit code\n2025-10-28 05:53:26.590 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:53:26.591 [info] [command][1e3d4bee-0568-41fb-939e-1fd879a60863] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1e3d4bee-0568-41fb-939e-1fd879a60863""}\n2025-10-28 05:53:26.592 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][23bc5d17-1c29-46ac-858a-8ca00fb6846e] remote server not configured\n2025-10-28 05:53:26.593 [error] [command][1e3d4bee-0568-41fb-939e-1fd879a60863] Socket error: Error: read ECONNRESET\n2025-10-28 05:53:26.593 [info] [command][1e3d4bee-0568-41fb-939e-1fd879a60863] Socket close event received\n2025-10-28 05:53:26.593 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1e3d4bee-0568-41fb-939e-1fd879a60863] Socket closed without exit code\n2025-10-28 05:54:26.603 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:54:26.606 [info] [command][34e3b054-bd9f-4020-a442-a8d9eaac4eac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""34e3b054-bd9f-4020-a442-a8d9eaac4eac""}\n2025-10-28 05:54:26.606 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f5c2f5e5-d67b-4770-a753-8e3c5766de97] remote server not configured\n2025-10-28 05:54:26.606 [error] [command][34e3b054-bd9f-4020-a442-a8d9eaac4eac] Socket error: Error: read ECONNRESET\n2025-10-28 05:54:26.607 [info] [command][34e3b054-bd9f-4020-a442-a8d9eaac4eac] Socket close event received\n2025-10-28 05:54:26.607 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][34e3b054-bd9f-4020-a442-a8d9eaac4eac] Socket closed without exit code\n2025-10-28 05:55:26.611 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:55:26.613 [info] [command][1493dfd0-cc9b-4a53-9a20-05f43a2085e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1493dfd0-cc9b-4a53-9a20-05f43a2085e9""}\n2025-10-28 05:55:26.613 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][972d7224-7978-4ec6-a6df-042a373b8cd3] remote server not configured\n2025-10-28 05:55:26.614 [error] [command][1493dfd0-cc9b-4a53-9a20-05f43a2085e9] Socket error: Error: read ECONNRESET\n2025-10-28 05:55:26.614 [info] [command][1493dfd0-cc9b-4a53-9a20-05f43a2085e9] Socket close event received\n2025-10-28 05:55:26.614 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1493dfd0-cc9b-4a53-9a20-05f43a2085e9] Socket closed without exit code\n2025-10-28 05:56:26.621 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:56:26.623 [info] [command][a40c1cae-b964-433a-adbc-663ee2a68978] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a40c1cae-b964-433a-adbc-663ee2a68978""}\n2025-10-28 05:56:26.624 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a50396bd-184c-48dc-9780-d4b8df0deba9] remote server not configured\n2025-10-28 05:56:26.624 [error] [command][a40c1cae-b964-433a-adbc-663ee2a68978] Socket error: Error: read ECONNRESET\n2025-10-28 05:56:26.624 [info] [command][a40c1cae-b964-433a-adbc-663ee2a68978] Socket close event received\n2025-10-28 05:56:26.625 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a40c1cae-b964-433a-adbc-663ee2a68978] Socket closed without exit code\n2025-10-28 05:57:26.628 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:57:26.630 [info] [command][c815e009-7773-4167-baa5-7a313dbbe702] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c815e009-7773-4167-baa5-7a313dbbe702""}\n2025-10-28 05:57:26.630 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][55d341a7-dd17-4e12-aa7c-249a6257effd] remote server not configured\n2025-10-28 05:57:26.631 [error] [command][c815e009-7773-4167-baa5-7a313dbbe702] Socket error: Error: read ECONNRESET\n2025-10-28 05:57:26.631 [info] [command][c815e009-7773-4167-baa5-7a313dbbe702] Socket close event received\n2025-10-28 05:57:26.631 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c815e009-7773-4167-baa5-7a313dbbe702] Socket closed without exit code\n2025-10-28 05:58:26.642 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:58:26.644 [info] [command][14acefd7-6f0f-4cea-baad-906e689e2ae1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""14acefd7-6f0f-4cea-baad-906e689e2ae1""}\n2025-10-28 05:58:26.644 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][112def49-4184-4ecd-aa42-f19faee76786] remote server not configured\n2025-10-28 05:58:26.645 [error] [command][14acefd7-6f0f-4cea-baad-906e689e2ae1] Socket error: Error: read ECONNRESET\n2025-10-28 05:58:26.645 [info] [command][14acefd7-6f0f-4cea-baad-906e689e2ae1] Socket close event received\n2025-10-28 05:58:26.645 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][14acefd7-6f0f-4cea-baad-906e689e2ae1] Socket closed without exit code\n2025-10-28 05:59:26.650 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 05:59:26.652 [info] [command][6352dd49-1afe-4823-9d58-eb6067f6761f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6352dd49-1afe-4823-9d58-eb6067f6761f""}\n2025-10-28 05:59:26.652 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bda14753-9ceb-4248-a977-aa86543ea801] remote server not configured\n2025-10-28 05:59:26.653 [error] [command][6352dd49-1afe-4823-9d58-eb6067f6761f] Socket error: Error: read ECONNRESET\n2025-10-28 05:59:26.653 [info] [command][6352dd49-1afe-4823-9d58-eb6067f6761f] Socket close event received\n2025-10-28 05:59:26.653 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6352dd49-1afe-4823-9d58-eb6067f6761f] Socket closed without exit code\n2025-10-28 06:00:26.664 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:00:26.666 [info] [command][31c95fee-7e15-4f1b-9bd4-e7ffb9571603] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""31c95fee-7e15-4f1b-9bd4-e7ffb9571603""}\n2025-10-28 06:00:26.667 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][05263497-168f-4302-8fb5-00f21cfca882] remote server not configured\n2025-10-28 06:00:26.668 [error] [command][31c95fee-7e15-4f1b-9bd4-e7ffb9571603] Socket error: Error: read ECONNRESET\n2025-10-28 06:00:26.668 [info] [command][31c95fee-7e15-4f1b-9bd4-e7ffb9571603] Socket close event received\n2025-10-28 06:00:26.668 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][31c95fee-7e15-4f1b-9bd4-e7ffb9571603] Socket closed without exit code\n2025-10-28 06:01:26.677 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:01:26.679 [info] [command][1dadb603-dcd3-44c6-b7e2-2ea92abf9d85] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1dadb603-dcd3-44c6-b7e2-2ea92abf9d85""}\n2025-10-28 06:01:26.680 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a143247f-a42f-48e8-9ed9-9535ef926a57] remote server not configured\n2025-10-28 06:01:26.680 [error] [command][1dadb603-dcd3-44c6-b7e2-2ea92abf9d85] Socket error: Error: read ECONNRESET\n2025-10-28 06:01:26.681 [info] [command][1dadb603-dcd3-44c6-b7e2-2ea92abf9d85] Socket close event received\n2025-10-28 06:01:26.681 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1dadb603-dcd3-44c6-b7e2-2ea92abf9d85] Socket closed without exit code\n2025-10-28 06:02:26.691 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:02:26.693 [info] [command][41f67668-b7e0-4f9f-af6b-ae8db8b59e40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""41f67668-b7e0-4f9f-af6b-ae8db8b59e40""}\n2025-10-28 06:02:26.693 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a4060e07-e558-4f27-99bf-3929edf8f4e7] remote server not configured\n2025-10-28 06:02:26.693 [error] [command][41f67668-b7e0-4f9f-af6b-ae8db8b59e40] Socket error: Error: read ECONNRESET\n2025-10-28 06:02:26.693 [info] [command][41f67668-b7e0-4f9f-af6b-ae8db8b59e40] Socket close event received\n2025-10-28 06:02:26.693 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][41f67668-b7e0-4f9f-af6b-ae8db8b59e40] Socket closed without exit code\n2025-10-28 06:03:26.703 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:03:26.705 [info] [command][798dd83b-e7da-4a21-975f-41e88bfa252a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""798dd83b-e7da-4a21-975f-41e88bfa252a""}\n2025-10-28 06:03:26.706 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a173bd3f-28b4-42bb-8299-6cb5b8c3aa74] remote server not configured\n2025-10-28 06:03:26.707 [error] [command][798dd83b-e7da-4a21-975f-41e88bfa252a] Socket error: Error: read ECONNRESET\n2025-10-28 06:03:26.707 [info] [command][798dd83b-e7da-4a21-975f-41e88bfa252a] Socket close event received\n2025-10-28 06:03:26.707 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][798dd83b-e7da-4a21-975f-41e88bfa252a] Socket closed without exit code\n2025-10-28 06:04:26.717 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:04:26.720 [info] [command][05f1d5e7-dcfc-4280-8ab3-d77cb9d01e16] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""05f1d5e7-dcfc-4280-8ab3-d77cb9d01e16""}\n2025-10-28 06:04:26.721 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1f8757df-b4e6-4608-9786-004f90ccc104] remote server not configured\n2025-10-28 06:04:26.722 [error] [command][05f1d5e7-dcfc-4280-8ab3-d77cb9d01e16] Socket error: Error: read ECONNRESET\n2025-10-28 06:04:26.722 [info] [command][05f1d5e7-dcfc-4280-8ab3-d77cb9d01e16] Socket close event received\n2025-10-28 06:04:26.722 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][05f1d5e7-dcfc-4280-8ab3-d77cb9d01e16] Socket closed without exit code\n2025-10-28 06:05:26.731 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:05:26.733 [info] [command][7ab7930c-cc29-4c31-a111-03312d2daf53] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7ab7930c-cc29-4c31-a111-03312d2daf53""}\n2025-10-28 06:05:26.733 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1eeb5517-1892-4ccd-99f5-f62b193ff60f] remote server not configured\n2025-10-28 06:05:26.734 [error] [command][7ab7930c-cc29-4c31-a111-03312d2daf53] Socket error: Error: read ECONNRESET\n2025-10-28 06:05:26.734 [info] [command][7ab7930c-cc29-4c31-a111-03312d2daf53] Socket close event received\n2025-10-28 06:05:26.735 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7ab7930c-cc29-4c31-a111-03312d2daf53] Socket closed without exit code\n2025-10-28 06:06:26.744 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:06:26.746 [info] [command][8f900186-c798-45f6-a0aa-5bec3b77e0b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8f900186-c798-45f6-a0aa-5bec3b77e0b9""}\n2025-10-28 06:06:26.747 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3fd57fd2-6240-4848-93af-4b833e93b1a6] remote server not configured\n2025-10-28 06:06:26.747 [error] [command][8f900186-c798-45f6-a0aa-5bec3b77e0b9] Socket error: Error: read ECONNRESET\n2025-10-28 06:06:26.747 [info] [command][8f900186-c798-45f6-a0aa-5bec3b77e0b9] Socket close event received\n2025-10-28 06:06:26.747 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8f900186-c798-45f6-a0aa-5bec3b77e0b9] Socket closed without exit code\n2025-10-28 06:07:26.757 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:07:26.759 [info] [command][f9907079-d39b-45a7-9437-4d1faf4eb930] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f9907079-d39b-45a7-9437-4d1faf4eb930""}\n2025-10-28 06:07:26.759 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8f643836-a62b-406c-94ad-4224026eeedb] remote server not configured\n2025-10-28 06:07:26.760 [error] [command][f9907079-d39b-45a7-9437-4d1faf4eb930] Socket error: Error: read ECONNRESET\n2025-10-28 06:07:26.760 [info] [command][f9907079-d39b-45a7-9437-4d1faf4eb930] Socket close event received\n2025-10-28 06:07:26.760 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f9907079-d39b-45a7-9437-4d1faf4eb930] Socket closed without exit code\n2025-10-28 06:08:26.771 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:08:26.773 [info] [command][847c5d3d-7b25-4727-95c2-88bd43288f1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""847c5d3d-7b25-4727-95c2-88bd43288f1a""}\n2025-10-28 06:08:26.774 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][958e6fcc-a914-4825-ab01-1e8368c885f4] remote server not configured\n2025-10-28 06:08:26.774 [error] [command][847c5d3d-7b25-4727-95c2-88bd43288f1a] Socket error: Error: read ECONNRESET\n2025-10-28 06:08:26.775 [info] [command][847c5d3d-7b25-4727-95c2-88bd43288f1a] Socket close event received\n2025-10-28 06:08:26.775 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][847c5d3d-7b25-4727-95c2-88bd43288f1a] Socket closed without exit code\n2025-10-28 06:09:26.784 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:09:26.785 [info] [command][7ae09e90-0a86-4764-af47-3fb8bd46bc71] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7ae09e90-0a86-4764-af47-3fb8bd46bc71""}\n2025-10-28 06:09:26.786 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a1a9dff5-f3f5-4ec4-8758-6a4e15271406] remote server not configured\n2025-10-28 06:09:26.787 [error] [command][7ae09e90-0a86-4764-af47-3fb8bd46bc71] Socket error: Error: read ECONNRESET\n2025-10-28 06:09:26.787 [info] [command][7ae09e90-0a86-4764-af47-3fb8bd46bc71] Socket close event received\n2025-10-28 06:09:26.787 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7ae09e90-0a86-4764-af47-3fb8bd46bc71] Socket closed without exit code\n2025-10-28 06:10:26.797 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:10:26.800 [info] [command][d5a84935-cdc1-4a72-95be-479b20642dd9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d5a84935-cdc1-4a72-95be-479b20642dd9""}\n2025-10-28 06:10:26.801 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][02d769a7-0190-40d3-864d-17b55ca84f0a] remote server not configured\n2025-10-28 06:10:26.801 [error] [command][d5a84935-cdc1-4a72-95be-479b20642dd9] Socket error: Error: read ECONNRESET\n2025-10-28 06:10:26.802 [info] [command][d5a84935-cdc1-4a72-95be-479b20642dd9] Socket close event received\n2025-10-28 06:10:26.802 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d5a84935-cdc1-4a72-95be-479b20642dd9] Socket closed without exit code\n2025-10-28 06:11:26.811 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:11:26.813 [info] [command][c5a1e903-0c9e-4702-a58a-ec21714f0c99] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c5a1e903-0c9e-4702-a58a-ec21714f0c99""}\n2025-10-28 06:11:26.814 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0a53a6fd-9f8c-4162-98d2-7df4a06c2e38] remote server not configured\n2025-10-28 06:11:26.815 [error] [command][c5a1e903-0c9e-4702-a58a-ec21714f0c99] Socket error: Error: read ECONNRESET\n2025-10-28 06:11:26.815 [info] [command][c5a1e903-0c9e-4702-a58a-ec21714f0c99] Socket close event received\n2025-10-28 06:11:26.815 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c5a1e903-0c9e-4702-a58a-ec21714f0c99] Socket closed without exit code\n2025-10-28 06:12:26.826 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:12:26.829 [info] [command][63732f7e-5ae4-4379-bae2-b7c2206dee61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""63732f7e-5ae4-4379-bae2-b7c2206dee61""}\n2025-10-28 06:12:26.829 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][905b20a2-fb16-4199-98a1-42f541e20a83] remote server not configured\n2025-10-28 06:12:26.830 [error] [command][63732f7e-5ae4-4379-bae2-b7c2206dee61] Socket error: Error: read ECONNRESET\n2025-10-28 06:12:26.830 [info] [command][63732f7e-5ae4-4379-bae2-b7c2206dee61] Socket close event received\n2025-10-28 06:12:26.830 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][63732f7e-5ae4-4379-bae2-b7c2206dee61] Socket closed without exit code\n2025-10-28 06:13:26.840 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:13:26.842 [info] [command][c48dd926-966c-48cd-9bc8-1baaf23702f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c48dd926-966c-48cd-9bc8-1baaf23702f3""}\n2025-10-28 06:13:26.843 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][adf6d759-0df7-4e0f-889b-4a3c72212a29] remote server not configured\n2025-10-28 06:13:26.843 [error] [command][c48dd926-966c-48cd-9bc8-1baaf23702f3] Socket error: Error: read ECONNRESET\n2025-10-28 06:13:26.844 [info] [command][c48dd926-966c-48cd-9bc8-1baaf23702f3] Socket close event received\n2025-10-28 06:13:26.844 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c48dd926-966c-48cd-9bc8-1baaf23702f3] Socket closed without exit code\n2025-10-28 06:14:26.855 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:14:26.857 [info] [command][04b55778-2aad-48e8-8f76-783b7d220350] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""04b55778-2aad-48e8-8f76-783b7d220350""}\n2025-10-28 06:14:26.858 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2a5dda33-3b3e-4b5a-bd9c-2e7de3a134bb] remote server not configured\n2025-10-28 06:14:26.859 [error] [command][04b55778-2aad-48e8-8f76-783b7d220350] Socket error: Error: read ECONNRESET\n2025-10-28 06:14:26.859 [info] [command][04b55778-2aad-48e8-8f76-783b7d220350] Socket close event received\n2025-10-28 06:14:26.859 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][04b55778-2aad-48e8-8f76-783b7d220350] Socket closed without exit code\n2025-10-28 06:15:26.869 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:15:26.871 [info] [command][ab7d2028-0d56-4a55-98eb-40699d002189] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ab7d2028-0d56-4a55-98eb-40699d002189""}\n2025-10-28 06:15:26.872 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][34df2ac2-4b16-4ff0-a2f5-8ca05fff325d] remote server not configured\n2025-10-28 06:15:26.873 [error] [command][ab7d2028-0d56-4a55-98eb-40699d002189] Socket error: Error: read ECONNRESET\n2025-10-28 06:15:26.873 [info] [command][ab7d2028-0d56-4a55-98eb-40699d002189] Socket close event received\n2025-10-28 06:15:26.874 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ab7d2028-0d56-4a55-98eb-40699d002189] Socket closed without exit code\n2025-10-28 06:16:26.885 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:16:26.886 [info] [command][af917216-1959-4935-a83f-1018e9d8546d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""af917216-1959-4935-a83f-1018e9d8546d""}\n2025-10-28 06:16:26.887 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cdd976ae-69c3-45b4-9c7f-e5590ed1d7fc] remote server not configured\n2025-10-28 06:16:26.888 [error] [command][af917216-1959-4935-a83f-1018e9d8546d] Socket error: Error: read ECONNRESET\n2025-10-28 06:16:26.888 [info] [command][af917216-1959-4935-a83f-1018e9d8546d] Socket close event received\n2025-10-28 06:16:26.888 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][af917216-1959-4935-a83f-1018e9d8546d] Socket closed without exit code\n2025-10-28 06:17:26.899 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:17:26.900 [info] [command][eee4cf73-2e83-4cea-b7e5-4a8fc1ca3537] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""eee4cf73-2e83-4cea-b7e5-4a8fc1ca3537""}\n2025-10-28 06:17:26.901 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7cd00c9b-ce50-4622-b8b5-9b7c72bbc47d] remote server not configured\n2025-10-28 06:17:26.902 [error] [command][eee4cf73-2e83-4cea-b7e5-4a8fc1ca3537] Socket error: Error: read ECONNRESET\n2025-10-28 06:17:26.902 [info] [command][eee4cf73-2e83-4cea-b7e5-4a8fc1ca3537] Socket close event received\n2025-10-28 06:17:26.903 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][eee4cf73-2e83-4cea-b7e5-4a8fc1ca3537] Socket closed without exit code\n2025-10-28 06:18:26.923 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:18:26.925 [info] [command][bb77dda4-09ec-421c-9d9f-b9d31820d999] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bb77dda4-09ec-421c-9d9f-b9d31820d999""}\n2025-10-28 06:18:26.926 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0a0d588b-0ebe-4f2c-91d8-0eb2e3ad0fab] remote server not configured\n2025-10-28 06:18:26.926 [error] [command][bb77dda4-09ec-421c-9d9f-b9d31820d999] Socket error: Error: read ECONNRESET\n2025-10-28 06:18:26.927 [info] [command][bb77dda4-09ec-421c-9d9f-b9d31820d999] Socket close event received\n2025-10-28 06:18:26.927 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bb77dda4-09ec-421c-9d9f-b9d31820d999] Socket closed without exit code\n2025-10-28 06:19:26.939 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:19:26.941 [info] [command][84514d95-f1f5-421e-9729-94bfc22e3960] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""84514d95-f1f5-421e-9729-94bfc22e3960""}\n2025-10-28 06:19:26.942 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a4e0ecaf-d564-4618-a35b-d751c36b08b6] remote server not configured\n2025-10-28 06:19:26.943 [error] [command][84514d95-f1f5-421e-9729-94bfc22e3960] Socket error: Error: read ECONNRESET\n2025-10-28 06:19:26.943 [info] [command][84514d95-f1f5-421e-9729-94bfc22e3960] Socket close event received\n2025-10-28 06:19:26.943 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][84514d95-f1f5-421e-9729-94bfc22e3960] Socket closed without exit code\n2025-10-28 06:20:26.952 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:20:26.955 [info] [command][2a1f2e6f-f211-49dc-8650-5bfcaca73cfc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2a1f2e6f-f211-49dc-8650-5bfcaca73cfc""}\n2025-10-28 06:20:26.955 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fd9fed16-280a-4705-bf83-56c84980333b] remote server not configured\n2025-10-28 06:20:26.956 [error] [command][2a1f2e6f-f211-49dc-8650-5bfcaca73cfc] Socket error: Error: read ECONNRESET\n2025-10-28 06:20:26.956 [info] [command][2a1f2e6f-f211-49dc-8650-5bfcaca73cfc] Socket close event received\n2025-10-28 06:20:26.956 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2a1f2e6f-f211-49dc-8650-5bfcaca73cfc] Socket closed without exit code\n2025-10-28 06:21:26.963 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:21:26.965 [info] [command][6e9feeb8-2cc1-44b0-973d-a4ad42e5d0f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6e9feeb8-2cc1-44b0-973d-a4ad42e5d0f0""}\n2025-10-28 06:21:26.965 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3154b118-9b51-4e40-8a86-4bb1caa6072f] remote server not configured\n2025-10-28 06:21:26.966 [error] [command][6e9feeb8-2cc1-44b0-973d-a4ad42e5d0f0] Socket error: Error: read ECONNRESET\n2025-10-28 06:21:26.966 [info] [command][6e9feeb8-2cc1-44b0-973d-a4ad42e5d0f0] Socket close event received\n2025-10-28 06:21:26.966 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6e9feeb8-2cc1-44b0-973d-a4ad42e5d0f0] Socket closed without exit code\n2025-10-28 06:22:26.967 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:22:26.970 [info] [command][f89c2fd4-e284-45d5-a64b-258b9e6998b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f89c2fd4-e284-45d5-a64b-258b9e6998b3""}\n2025-10-28 06:22:26.971 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f0528147-1080-4050-a892-3ea8510d1c72] remote server not configured\n2025-10-28 06:22:26.972 [error] [command][f89c2fd4-e284-45d5-a64b-258b9e6998b3] Socket error: Error: read ECONNRESET\n2025-10-28 06:22:26.972 [info] [command][f89c2fd4-e284-45d5-a64b-258b9e6998b3] Socket close event received\n2025-10-28 06:22:26.972 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f89c2fd4-e284-45d5-a64b-258b9e6998b3] Socket closed without exit code\n2025-10-28 06:23:26.980 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:23:26.982 [info] [command][26a89acb-a9ce-4971-a09d-10ba680a1ad7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""26a89acb-a9ce-4971-a09d-10ba680a1ad7""}\n2025-10-28 06:23:26.983 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][17d933b5-5465-4807-a546-629c1fd63c14] remote server not configured\n2025-10-28 06:23:26.984 [error] [command][26a89acb-a9ce-4971-a09d-10ba680a1ad7] Socket error: Error: read ECONNRESET\n2025-10-28 06:23:26.984 [info] [command][26a89acb-a9ce-4971-a09d-10ba680a1ad7] Socket close event received\n2025-10-28 06:23:26.985 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][26a89acb-a9ce-4971-a09d-10ba680a1ad7] Socket closed without exit code\n2025-10-28 06:24:26.988 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:24:26.990 [info] [command][23e57336-741e-425a-a5d1-9538f5671fed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""23e57336-741e-425a-a5d1-9538f5671fed""}\n2025-10-28 06:24:26.991 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d91e3909-69a3-404c-ac8e-5a42c8b9188a] remote server not configured\n2025-10-28 06:24:26.991 [error] [command][23e57336-741e-425a-a5d1-9538f5671fed] Socket error: Error: read ECONNRESET\n2025-10-28 06:24:26.991 [info] [command][23e57336-741e-425a-a5d1-9538f5671fed] Socket close event received\n2025-10-28 06:24:26.991 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][23e57336-741e-425a-a5d1-9538f5671fed] Socket closed without exit code\n2025-10-28 06:25:26.998 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:25:27.000 [info] [command][ce27b71e-d58f-45be-8803-bf66b8406d01] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ce27b71e-d58f-45be-8803-bf66b8406d01""}\n2025-10-28 06:25:27.001 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c5c81650-d0ab-4adf-ae48-16205c4e9ce5] remote server not configured\n2025-10-28 06:25:27.001 [error] [command][ce27b71e-d58f-45be-8803-bf66b8406d01] Socket error: Error: read ECONNRESET\n2025-10-28 06:25:27.002 [info] [command][ce27b71e-d58f-45be-8803-bf66b8406d01] Socket close event received\n2025-10-28 06:25:27.002 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ce27b71e-d58f-45be-8803-bf66b8406d01] Socket closed without exit code\n2025-10-28 06:26:27.008 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:26:27.010 [info] [command][4ff8fee0-6bfa-482a-805e-b6b712ad8fff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4ff8fee0-6bfa-482a-805e-b6b712ad8fff""}\n2025-10-28 06:26:27.010 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7b566c6f-1aba-405f-83b8-4b1fae43713c] remote server not configured\n2025-10-28 06:26:27.011 [error] [command][4ff8fee0-6bfa-482a-805e-b6b712ad8fff] Socket error: Error: read ECONNRESET\n2025-10-28 06:26:27.011 [info] [command][4ff8fee0-6bfa-482a-805e-b6b712ad8fff] Socket close event received\n2025-10-28 06:26:27.011 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4ff8fee0-6bfa-482a-805e-b6b712ad8fff] Socket closed without exit code\n2025-10-28 06:27:27.022 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:27:27.023 [info] [command][e3d58546-1647-4a95-8e74-dd459654fa90] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e3d58546-1647-4a95-8e74-dd459654fa90""}\n2025-10-28 06:27:27.024 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][23534f37-606c-4895-a632-732d2f662b3e] remote server not configured\n2025-10-28 06:27:27.025 [error] [command][e3d58546-1647-4a95-8e74-dd459654fa90] Socket error: Error: read ECONNRESET\n2025-10-28 06:27:27.025 [info] [command][e3d58546-1647-4a95-8e74-dd459654fa90] Socket close event received\n2025-10-28 06:27:27.025 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e3d58546-1647-4a95-8e74-dd459654fa90] Socket closed without exit code\n2025-10-28 06:28:27.036 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:28:27.038 [info] [command][e2fba5d9-c254-4d9b-a6a0-6f9c4f362aea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e2fba5d9-c254-4d9b-a6a0-6f9c4f362aea""}\n2025-10-28 06:28:27.039 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ee902dd8-4135-48a2-b19b-29f3a6922171] remote server not configured\n2025-10-28 06:28:27.039 [error] [command][e2fba5d9-c254-4d9b-a6a0-6f9c4f362aea] Socket error: Error: read ECONNRESET\n2025-10-28 06:28:27.040 [info] [command][e2fba5d9-c254-4d9b-a6a0-6f9c4f362aea] Socket close event received\n2025-10-28 06:28:27.040 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e2fba5d9-c254-4d9b-a6a0-6f9c4f362aea] Socket closed without exit code\n2025-10-28 06:29:27.042 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:29:27.044 [info] [command][5fdbb4e4-9e6f-4ef9-a7f1-24c1aaff3e46] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5fdbb4e4-9e6f-4ef9-a7f1-24c1aaff3e46""}\n2025-10-28 06:29:27.045 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f6a81b27-161f-4824-bc49-8929dd3183ed] remote server not configured\n2025-10-28 06:29:27.045 [error] [command][5fdbb4e4-9e6f-4ef9-a7f1-24c1aaff3e46] Socket error: Error: read ECONNRESET\n2025-10-28 06:29:27.045 [info] [command][5fdbb4e4-9e6f-4ef9-a7f1-24c1aaff3e46] Socket close event received\n2025-10-28 06:29:27.046 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5fdbb4e4-9e6f-4ef9-a7f1-24c1aaff3e46] Socket closed without exit code\n2025-10-28 06:30:27.056 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:30:27.058 [info] [command][c086cd27-2d9b-4531-9017-4c9df49ae69a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c086cd27-2d9b-4531-9017-4c9df49ae69a""}\n2025-10-28 06:30:27.059 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b1856b1f-32fe-4ceb-9ee7-692560cb6f05] remote server not configured\n2025-10-28 06:30:27.059 [error] [command][c086cd27-2d9b-4531-9017-4c9df49ae69a] Socket error: Error: read ECONNRESET\n2025-10-28 06:30:27.059 [info] [command][c086cd27-2d9b-4531-9017-4c9df49ae69a] Socket close event received\n2025-10-28 06:30:27.060 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c086cd27-2d9b-4531-9017-4c9df49ae69a] Socket closed without exit code\n2025-10-28 06:31:27.066 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:31:27.067 [info] [command][af0d6db8-adef-4e9e-b583-f9876b410eef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""af0d6db8-adef-4e9e-b583-f9876b410eef""}\n2025-10-28 06:31:27.068 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e99936ec-466f-4677-a5ca-3fb4f5562c17] remote server not configured\n2025-10-28 06:31:27.069 [error] [command][af0d6db8-adef-4e9e-b583-f9876b410eef] Socket error: Error: read ECONNRESET\n2025-10-28 06:31:27.069 [info] [command][af0d6db8-adef-4e9e-b583-f9876b410eef] Socket close event received\n2025-10-28 06:31:27.070 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][af0d6db8-adef-4e9e-b583-f9876b410eef] Socket closed without exit code\n2025-10-28 06:32:27.080 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:32:27.083 [info] [command][138996af-1ab9-4bce-baf2-992b5508d083] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""138996af-1ab9-4bce-baf2-992b5508d083""}\n2025-10-28 06:32:27.083 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][aeb48fda-a06e-48c9-85c1-d9fb24ac9d63] remote server not configured\n2025-10-28 06:32:27.084 [error] [command][138996af-1ab9-4bce-baf2-992b5508d083] Socket error: Error: read ECONNRESET\n2025-10-28 06:32:27.084 [info] [command][138996af-1ab9-4bce-baf2-992b5508d083] Socket close event received\n2025-10-28 06:32:27.084 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][138996af-1ab9-4bce-baf2-992b5508d083] Socket closed without exit code\n2025-10-28 06:33:27.095 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:33:27.098 [info] [command][b4cb480c-eb08-4a07-9a3f-cbca6d12a13f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b4cb480c-eb08-4a07-9a3f-cbca6d12a13f""}\n2025-10-28 06:33:27.098 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][912f1585-ef58-4ec5-ae9b-e36b2186fe62] remote server not configured\n2025-10-28 06:33:27.099 [error] [command][b4cb480c-eb08-4a07-9a3f-cbca6d12a13f] Socket error: Error: read ECONNRESET\n2025-10-28 06:33:27.099 [info] [command][b4cb480c-eb08-4a07-9a3f-cbca6d12a13f] Socket close event received\n2025-10-28 06:33:27.099 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b4cb480c-eb08-4a07-9a3f-cbca6d12a13f] Socket closed without exit code\n2025-10-28 06:34:27.109 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:34:27.112 [info] [command][064feb46-ace7-48eb-a207-2edd11e1f740] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""064feb46-ace7-48eb-a207-2edd11e1f740""}\n2025-10-28 06:34:27.112 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2341849d-a147-4bee-b728-0d31956b2889] remote server not configured\n2025-10-28 06:34:27.112 [error] [command][064feb46-ace7-48eb-a207-2edd11e1f740] Socket error: Error: read ECONNRESET\n2025-10-28 06:34:27.113 [info] [command][064feb46-ace7-48eb-a207-2edd11e1f740] Socket close event received\n2025-10-28 06:34:27.113 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][064feb46-ace7-48eb-a207-2edd11e1f740] Socket closed without exit code\n2025-10-28 06:35:27.123 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:35:27.126 [info] [command][df8a1207-63d0-4993-b297-5c66ec89076c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""df8a1207-63d0-4993-b297-5c66ec89076c""}\n2025-10-28 06:35:27.126 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][eb3dae0c-d303-416d-9403-dd9d3ada5732] remote server not configured\n2025-10-28 06:35:27.127 [error] [command][df8a1207-63d0-4993-b297-5c66ec89076c] Socket error: Error: read ECONNRESET\n2025-10-28 06:35:27.127 [info] [command][df8a1207-63d0-4993-b297-5c66ec89076c] Socket close event received\n2025-10-28 06:35:27.127 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][df8a1207-63d0-4993-b297-5c66ec89076c] Socket closed without exit code\n2025-10-28 06:36:27.138 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:36:27.141 [info] [command][fde5a443-6279-4b65-8220-f6059bdb073d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fde5a443-6279-4b65-8220-f6059bdb073d""}\n2025-10-28 06:36:27.141 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cf29f59f-d2b9-4eda-b56b-4a37041ecc73] remote server not configured\n2025-10-28 06:36:27.142 [error] [command][fde5a443-6279-4b65-8220-f6059bdb073d] Socket error: Error: read ECONNRESET\n2025-10-28 06:36:27.142 [info] [command][fde5a443-6279-4b65-8220-f6059bdb073d] Socket close event received\n2025-10-28 06:36:27.142 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fde5a443-6279-4b65-8220-f6059bdb073d] Socket closed without exit code\n2025-10-28 06:37:27.153 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:37:27.156 [info] [command][619ad944-ae89-4758-ad32-478a93cc1382] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""619ad944-ae89-4758-ad32-478a93cc1382""}\n2025-10-28 06:37:27.156 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][628f792e-1f9e-47e3-b6b4-411217199b75] remote server not configured\n2025-10-28 06:37:27.157 [error] [command][619ad944-ae89-4758-ad32-478a93cc1382] Socket error: Error: read ECONNRESET\n2025-10-28 06:37:27.157 [info] [command][619ad944-ae89-4758-ad32-478a93cc1382] Socket close event received\n2025-10-28 06:37:27.157 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][619ad944-ae89-4758-ad32-478a93cc1382] Socket closed without exit code\n2025-10-28 06:38:27.158 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:38:27.160 [info] [command][c5b7f987-33b5-486f-afe7-764e68e18b47] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c5b7f987-33b5-486f-afe7-764e68e18b47""}\n2025-10-28 06:38:27.161 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][af3c49fc-b9d4-4500-9bd7-64679f7a6483] remote server not configured\n2025-10-28 06:38:27.161 [error] [command][c5b7f987-33b5-486f-afe7-764e68e18b47] Socket error: Error: read ECONNRESET\n2025-10-28 06:38:27.161 [info] [command][c5b7f987-33b5-486f-afe7-764e68e18b47] Socket close event received\n2025-10-28 06:38:27.162 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c5b7f987-33b5-486f-afe7-764e68e18b47] Socket closed without exit code\n2025-10-28 06:39:27.167 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:39:27.169 [info] [command][9fe94e3e-0b31-4653-9232-a94a1dd2e82f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9fe94e3e-0b31-4653-9232-a94a1dd2e82f""}\n2025-10-28 06:39:27.170 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0109ae94-1a8c-4519-8aba-649bc24ff385] remote server not configured\n2025-10-28 06:39:27.171 [error] [command][9fe94e3e-0b31-4653-9232-a94a1dd2e82f] Socket error: Error: read ECONNRESET\n2025-10-28 06:39:27.171 [info] [command][9fe94e3e-0b31-4653-9232-a94a1dd2e82f] Socket close event received\n2025-10-28 06:39:27.171 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9fe94e3e-0b31-4653-9232-a94a1dd2e82f] Socket closed without exit code\n2025-10-28 06:40:27.182 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:40:27.185 [info] [command][b6e507f7-be05-4f09-bc0c-b36ecc315152] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b6e507f7-be05-4f09-bc0c-b36ecc315152""}\n2025-10-28 06:40:27.185 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][20c217df-d57c-4e14-bb0c-ef3e0b6f5e0a] remote server not configured\n2025-10-28 06:40:27.186 [error] [command][b6e507f7-be05-4f09-bc0c-b36ecc315152] Socket error: Error: read ECONNRESET\n2025-10-28 06:40:27.186 [info] [command][b6e507f7-be05-4f09-bc0c-b36ecc315152] Socket close event received\n2025-10-28 06:40:27.186 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b6e507f7-be05-4f09-bc0c-b36ecc315152] Socket closed without exit code\n2025-10-28 06:41:27.196 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:41:27.198 [info] [command][46b1ac99-3108-4360-89f0-1ec88e5c0036] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""46b1ac99-3108-4360-89f0-1ec88e5c0036""}\n2025-10-28 06:41:27.199 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d8848e4d-11ae-41c6-97b4-cd0916fc6e52] remote server not configured\n2025-10-28 06:41:27.200 [error] [command][46b1ac99-3108-4360-89f0-1ec88e5c0036] Socket error: Error: read ECONNRESET\n2025-10-28 06:41:27.200 [info] [command][46b1ac99-3108-4360-89f0-1ec88e5c0036] Socket close event received\n2025-10-28 06:41:27.200 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][46b1ac99-3108-4360-89f0-1ec88e5c0036] Socket closed without exit code\n2025-10-28 06:42:27.209 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:42:27.212 [info] [command][06be18e7-58b1-4b57-b3e5-28374bf2b96a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""06be18e7-58b1-4b57-b3e5-28374bf2b96a""}\n2025-10-28 06:42:27.212 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][16581fda-fd87-491b-bff9-6c3e9ef1cc59] remote server not configured\n2025-10-28 06:42:27.213 [error] [command][06be18e7-58b1-4b57-b3e5-28374bf2b96a] Socket error: Error: read ECONNRESET\n2025-10-28 06:42:27.213 [info] [command][06be18e7-58b1-4b57-b3e5-28374bf2b96a] Socket close event received\n2025-10-28 06:42:27.213 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][06be18e7-58b1-4b57-b3e5-28374bf2b96a] Socket closed without exit code\n2025-10-28 06:43:27.220 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:43:27.221 [info] [command][5b781d8d-fb92-4524-8ea7-459e4d91d0a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5b781d8d-fb92-4524-8ea7-459e4d91d0a5""}\n2025-10-28 06:43:27.222 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][48f2cf7b-9cbc-4b50-aee5-7df412cf6b0b] remote server not configured\n2025-10-28 06:43:27.223 [error] [command][5b781d8d-fb92-4524-8ea7-459e4d91d0a5] Socket error: Error: read ECONNRESET\n2025-10-28 06:43:27.223 [info] [command][5b781d8d-fb92-4524-8ea7-459e4d91d0a5] Socket close event received\n2025-10-28 06:43:27.223 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5b781d8d-fb92-4524-8ea7-459e4d91d0a5] Socket closed without exit code\n2025-10-28 06:44:27.229 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:44:27.231 [info] [command][5d78dffa-8f81-46fd-ba73-aedd56892977] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5d78dffa-8f81-46fd-ba73-aedd56892977""}\n2025-10-28 06:44:27.231 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dd130fca-f807-4dd0-83a3-a73826a49aa0] remote server not configured\n2025-10-28 06:44:27.232 [error] [command][5d78dffa-8f81-46fd-ba73-aedd56892977] Socket error: Error: read ECONNRESET\n2025-10-28 06:44:27.232 [info] [command][5d78dffa-8f81-46fd-ba73-aedd56892977] Socket close event received\n2025-10-28 06:44:27.232 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5d78dffa-8f81-46fd-ba73-aedd56892977] Socket closed without exit code\n2025-10-28 06:45:27.241 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:45:27.242 [info] [command][fe9ee244-bd2c-4537-951e-06ceeba1a5d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fe9ee244-bd2c-4537-951e-06ceeba1a5d7""}\n2025-10-28 06:45:27.243 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b30595f4-5978-4f20-9ff5-38a62380c462] remote server not configured\n2025-10-28 06:45:27.244 [error] [command][fe9ee244-bd2c-4537-951e-06ceeba1a5d7] Socket error: Error: read ECONNRESET\n2025-10-28 06:45:27.244 [info] [command][fe9ee244-bd2c-4537-951e-06ceeba1a5d7] Socket close event received\n2025-10-28 06:45:27.244 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fe9ee244-bd2c-4537-951e-06ceeba1a5d7] Socket closed without exit code\n2025-10-28 06:46:27.252 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:46:27.255 [info] [command][0f035573-c0d4-4ac5-9dce-1cf8bc962938] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0f035573-c0d4-4ac5-9dce-1cf8bc962938""}\n2025-10-28 06:46:27.256 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3c2920c9-15c6-4bab-a970-a3c3c935a6bd] remote server not configured\n2025-10-28 06:46:27.257 [error] [command][0f035573-c0d4-4ac5-9dce-1cf8bc962938] Socket error: Error: read ECONNRESET\n2025-10-28 06:46:27.257 [info] [command][0f035573-c0d4-4ac5-9dce-1cf8bc962938] Socket close event received\n2025-10-28 06:46:27.257 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0f035573-c0d4-4ac5-9dce-1cf8bc962938] Socket closed without exit code\n2025-10-28 06:47:27.268 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:47:27.269 [info] [command][2079db23-b999-4123-9b76-add3d14e2aad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2079db23-b999-4123-9b76-add3d14e2aad""}\n2025-10-28 06:47:27.270 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ddae3bbf-2357-4995-809e-683209287273] remote server not configured\n2025-10-28 06:47:27.271 [error] [command][2079db23-b999-4123-9b76-add3d14e2aad] Socket error: Error: read ECONNRESET\n2025-10-28 06:47:27.271 [info] [command][2079db23-b999-4123-9b76-add3d14e2aad] Socket close event received\n2025-10-28 06:47:27.271 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2079db23-b999-4123-9b76-add3d14e2aad] Socket closed without exit code\n2025-10-28 06:48:27.282 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:48:27.284 [info] [command][ae101cfa-bff5-462f-bbfe-53342724e2bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ae101cfa-bff5-462f-bbfe-53342724e2bf""}\n2025-10-28 06:48:27.284 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4f5ea103-ab45-44ae-b1d9-95c6b4457a81] remote server not configured\n2025-10-28 06:48:27.285 [error] [command][ae101cfa-bff5-462f-bbfe-53342724e2bf] Socket error: Error: read ECONNRESET\n2025-10-28 06:48:27.285 [info] [command][ae101cfa-bff5-462f-bbfe-53342724e2bf] Socket close event received\n2025-10-28 06:48:27.285 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ae101cfa-bff5-462f-bbfe-53342724e2bf] Socket closed without exit code\n2025-10-28 06:49:27.293 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:49:27.295 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a4735c82-3e60-4192-84cc-2fe86376afd5] remote server not configured\n2025-10-28 06:49:27.296 [info] [command][941f1d55-b815-487f-bd1c-dbf5538776b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""941f1d55-b815-487f-bd1c-dbf5538776b3""}\n2025-10-28 06:49:27.296 [error] [command][941f1d55-b815-487f-bd1c-dbf5538776b3] Socket error: Error: read ECONNRESET\n2025-10-28 06:49:27.296 [info] [command][941f1d55-b815-487f-bd1c-dbf5538776b3] Socket close event received\n2025-10-28 06:49:27.296 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][941f1d55-b815-487f-bd1c-dbf5538776b3] Socket closed without exit code\n2025-10-28 06:50:27.307 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:50:27.310 [info] [command][072668cd-3b42-4b41-bcf0-620b42bfd9cc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""072668cd-3b42-4b41-bcf0-620b42bfd9cc""}\n2025-10-28 06:50:27.311 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][78cad16a-6131-4a9e-b0d6-2c4eb3631148] remote server not configured\n2025-10-28 06:50:27.311 [error] [command][072668cd-3b42-4b41-bcf0-620b42bfd9cc] Socket error: Error: read ECONNRESET\n2025-10-28 06:50:27.312 [info] [command][072668cd-3b42-4b41-bcf0-620b42bfd9cc] Socket close event received\n2025-10-28 06:50:27.312 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][072668cd-3b42-4b41-bcf0-620b42bfd9cc] Socket closed without exit code\n2025-10-28 06:51:27.322 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:51:27.323 [info] [command][1ab7e080-26cb-4c0f-8f92-f249d5d02686] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1ab7e080-26cb-4c0f-8f92-f249d5d02686""}\n2025-10-28 06:51:27.324 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6d0e1014-bc29-486e-b1a9-66d93e6f04d5] remote server not configured\n2025-10-28 06:51:27.325 [error] [command][1ab7e080-26cb-4c0f-8f92-f249d5d02686] Socket error: Error: read ECONNRESET\n2025-10-28 06:51:27.325 [info] [command][1ab7e080-26cb-4c0f-8f92-f249d5d02686] Socket close event received\n2025-10-28 06:51:27.325 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1ab7e080-26cb-4c0f-8f92-f249d5d02686] Socket closed without exit code\n2025-10-28 06:52:27.335 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:52:27.339 [info] [command][5bba086a-a8cc-4887-b0b2-2a922febd1e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5bba086a-a8cc-4887-b0b2-2a922febd1e9""}\n2025-10-28 06:52:27.339 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7c48580f-4775-427b-8afb-43539dfb87fc] remote server not configured\n2025-10-28 06:52:27.340 [error] [command][5bba086a-a8cc-4887-b0b2-2a922febd1e9] Socket error: Error: read ECONNRESET\n2025-10-28 06:52:27.340 [info] [command][5bba086a-a8cc-4887-b0b2-2a922febd1e9] Socket close event received\n2025-10-28 06:52:27.341 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5bba086a-a8cc-4887-b0b2-2a922febd1e9] Socket closed without exit code\n2025-10-28 06:53:27.349 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:53:27.351 [info] [command][bab126bb-eacd-4477-86ff-f4ef2c8a81b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bab126bb-eacd-4477-86ff-f4ef2c8a81b1""}\n2025-10-28 06:53:27.352 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2150ff6d-9185-4fdb-ba75-3b1d0a5cd3a6] remote server not configured\n2025-10-28 06:53:27.352 [error] [command][bab126bb-eacd-4477-86ff-f4ef2c8a81b1] Socket error: Error: read ECONNRESET\n2025-10-28 06:53:27.353 [info] [command][bab126bb-eacd-4477-86ff-f4ef2c8a81b1] Socket close event received\n2025-10-28 06:53:27.353 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bab126bb-eacd-4477-86ff-f4ef2c8a81b1] Socket closed without exit code\n2025-10-28 06:54:27.358 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:54:27.361 [info] [command][89447dc1-7fd2-459e-b5cf-b3eca5c1cd43] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""89447dc1-7fd2-459e-b5cf-b3eca5c1cd43""}\n2025-10-28 06:54:27.362 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e91904e0-98da-4650-ae79-5f3cdc6cae38] remote server not configured\n2025-10-28 06:54:27.362 [error] [command][89447dc1-7fd2-459e-b5cf-b3eca5c1cd43] Socket error: Error: read ECONNRESET\n2025-10-28 06:54:27.362 [info] [command][89447dc1-7fd2-459e-b5cf-b3eca5c1cd43] Socket close event received\n2025-10-28 06:54:27.363 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][89447dc1-7fd2-459e-b5cf-b3eca5c1cd43] Socket closed without exit code\n2025-10-28 06:55:27.368 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:55:27.371 [info] [command][9429a924-204f-4515-89f5-984c85ab9116] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9429a924-204f-4515-89f5-984c85ab9116""}\n2025-10-28 06:55:27.371 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][60549495-d44c-432d-80a1-07c534268797] remote server not configured\n2025-10-28 06:55:27.372 [error] [command][9429a924-204f-4515-89f5-984c85ab9116] Socket error: Error: read ECONNRESET\n2025-10-28 06:55:27.372 [info] [command][9429a924-204f-4515-89f5-984c85ab9116] Socket close event received\n2025-10-28 06:55:27.372 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9429a924-204f-4515-89f5-984c85ab9116] Socket closed without exit code\n2025-10-28 06:56:27.383 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:56:27.386 [info] [command][88a746de-01be-4cfc-b568-48e6a38f7f5f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""88a746de-01be-4cfc-b568-48e6a38f7f5f""}\n2025-10-28 06:56:27.387 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][29f23603-0f03-499c-840f-9c8d2e3cca10] remote server not configured\n2025-10-28 06:56:27.387 [error] [command][88a746de-01be-4cfc-b568-48e6a38f7f5f] Socket error: Error: read ECONNRESET\n2025-10-28 06:56:27.388 [info] [command][88a746de-01be-4cfc-b568-48e6a38f7f5f] Socket close event received\n2025-10-28 06:56:27.388 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][88a746de-01be-4cfc-b568-48e6a38f7f5f] Socket closed without exit code\n2025-10-28 06:57:27.394 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:57:27.397 [info] [command][ff53c790-51fa-4bef-92b0-973de4650873] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ff53c790-51fa-4bef-92b0-973de4650873""}\n2025-10-28 06:57:27.398 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c999b4d0-afc4-4707-8781-cfcb45471176] remote server not configured\n2025-10-28 06:57:27.398 [error] [command][ff53c790-51fa-4bef-92b0-973de4650873] Socket error: Error: read ECONNRESET\n2025-10-28 06:57:27.398 [info] [command][ff53c790-51fa-4bef-92b0-973de4650873] Socket close event received\n2025-10-28 06:57:27.398 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ff53c790-51fa-4bef-92b0-973de4650873] Socket closed without exit code\n2025-10-28 06:58:27.409 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:58:27.410 [info] [command][db093332-449d-4ae6-b298-c3e1ff7b8312] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""db093332-449d-4ae6-b298-c3e1ff7b8312""}\n2025-10-28 06:58:27.411 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][44fde1a2-af1d-4ff9-bb9b-04996f5559c7] remote server not configured\n2025-10-28 06:58:27.411 [error] [command][db093332-449d-4ae6-b298-c3e1ff7b8312] Socket error: Error: read ECONNRESET\n2025-10-28 06:58:27.412 [info] [command][db093332-449d-4ae6-b298-c3e1ff7b8312] Socket close event received\n2025-10-28 06:58:27.412 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][db093332-449d-4ae6-b298-c3e1ff7b8312] Socket closed without exit code\n2025-10-28 06:59:27.415 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 06:59:27.416 [info] [command][c7f6ca6d-cd09-47c5-b416-f39fdff7123c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c7f6ca6d-cd09-47c5-b416-f39fdff7123c""}\n2025-10-28 06:59:27.417 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2f2efd80-670d-4f48-beb9-a7c5dad8c4fb] remote server not configured\n2025-10-28 06:59:27.417 [error] [command][c7f6ca6d-cd09-47c5-b416-f39fdff7123c] Socket error: Error: read ECONNRESET\n2025-10-28 06:59:27.417 [info] [command][c7f6ca6d-cd09-47c5-b416-f39fdff7123c] Socket close event received\n2025-10-28 06:59:27.417 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c7f6ca6d-cd09-47c5-b416-f39fdff7123c] Socket closed without exit code\n2025-10-28 07:00:27.428 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:00:27.430 [info] [command][59e12aa1-21e8-4a54-88d3-7c370d5943e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""59e12aa1-21e8-4a54-88d3-7c370d5943e8""}\n2025-10-28 07:00:27.431 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ede66a99-38dc-4112-8b2a-334f1ffc23a2] remote server not configured\n2025-10-28 07:00:27.432 [error] [command][59e12aa1-21e8-4a54-88d3-7c370d5943e8] Socket error: Error: read ECONNRESET\n2025-10-28 07:00:27.432 [info] [command][59e12aa1-21e8-4a54-88d3-7c370d5943e8] Socket close event received\n2025-10-28 07:00:27.433 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][59e12aa1-21e8-4a54-88d3-7c370d5943e8] Socket closed without exit code\n2025-10-28 07:01:27.444 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:01:27.447 [info] [command][d0dba9bc-e7ed-4407-bb2d-03c445ed2b71] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d0dba9bc-e7ed-4407-bb2d-03c445ed2b71""}\n2025-10-28 07:01:27.447 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cd7c8e93-5fe1-4a7b-93e6-db5d3b340a87] remote server not configured\n2025-10-28 07:01:27.448 [error] [command][d0dba9bc-e7ed-4407-bb2d-03c445ed2b71] Socket error: Error: read ECONNRESET\n2025-10-28 07:01:27.448 [info] [command][d0dba9bc-e7ed-4407-bb2d-03c445ed2b71] Socket close event received\n2025-10-28 07:01:27.448 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d0dba9bc-e7ed-4407-bb2d-03c445ed2b71] Socket closed without exit code\n2025-10-28 07:02:27.459 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:02:27.462 [info] [command][7b8d5a19-86e4-4813-97ee-0d4a4ba7903c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7b8d5a19-86e4-4813-97ee-0d4a4ba7903c""}\n2025-10-28 07:02:27.463 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2cf5b2a4-75a6-4d78-9a4a-9eed355dd5eb] remote server not configured\n2025-10-28 07:02:27.463 [error] [command][7b8d5a19-86e4-4813-97ee-0d4a4ba7903c] Socket error: Error: read ECONNRESET\n2025-10-28 07:02:27.463 [info] [command][7b8d5a19-86e4-4813-97ee-0d4a4ba7903c] Socket close event received\n2025-10-28 07:02:27.464 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7b8d5a19-86e4-4813-97ee-0d4a4ba7903c] Socket closed without exit code\n2025-10-28 07:03:27.468 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:03:27.470 [info] [command][b3db7bde-6e08-4e53-b929-021a231fd84e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b3db7bde-6e08-4e53-b929-021a231fd84e""}\n2025-10-28 07:03:27.471 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c650e2ae-bcf8-44c7-8923-f44d9651f795] remote server not configured\n2025-10-28 07:03:27.472 [error] [command][b3db7bde-6e08-4e53-b929-021a231fd84e] Socket error: Error: read ECONNRESET\n2025-10-28 07:03:27.472 [info] [command][b3db7bde-6e08-4e53-b929-021a231fd84e] Socket close event received\n2025-10-28 07:03:27.472 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b3db7bde-6e08-4e53-b929-021a231fd84e] Socket closed without exit code\n2025-10-28 07:04:27.483 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:04:27.484 [info] [command][496df16e-4e13-46ca-9e92-5ebc2973b77d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""496df16e-4e13-46ca-9e92-5ebc2973b77d""}\n2025-10-28 07:04:27.485 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bd9b5529-6e38-4415-ab26-48f5b92672d2] remote server not configured\n2025-10-28 07:04:27.486 [error] [command][496df16e-4e13-46ca-9e92-5ebc2973b77d] Socket error: Error: read ECONNRESET\n2025-10-28 07:04:27.486 [info] [command][496df16e-4e13-46ca-9e92-5ebc2973b77d] Socket close event received\n2025-10-28 07:04:27.486 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][496df16e-4e13-46ca-9e92-5ebc2973b77d] Socket closed without exit code\n2025-10-28 07:05:27.497 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:05:27.498 [info] [command][f14bb479-7d0b-4469-965a-2a03074a24e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f14bb479-7d0b-4469-965a-2a03074a24e2""}\n2025-10-28 07:05:27.499 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][58c06519-d4e3-43a0-85a6-f60235afc4dd] remote server not configured\n2025-10-28 07:05:27.500 [error] [command][f14bb479-7d0b-4469-965a-2a03074a24e2] Socket error: Error: read ECONNRESET\n2025-10-28 07:05:27.500 [info] [command][f14bb479-7d0b-4469-965a-2a03074a24e2] Socket close event received\n2025-10-28 07:05:27.500 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f14bb479-7d0b-4469-965a-2a03074a24e2] Socket closed without exit code\n2025-10-28 07:06:27.511 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:06:27.513 [info] [command][303bcaa5-9d92-42b5-9167-01422bcd78d3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""303bcaa5-9d92-42b5-9167-01422bcd78d3""}\n2025-10-28 07:06:27.514 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][11925b5f-f6a0-4192-beac-5dbca2aab82c] remote server not configured\n2025-10-28 07:06:27.515 [error] [command][303bcaa5-9d92-42b5-9167-01422bcd78d3] Socket error: Error: read ECONNRESET\n2025-10-28 07:06:27.515 [info] [command][303bcaa5-9d92-42b5-9167-01422bcd78d3] Socket close event received\n2025-10-28 07:06:27.516 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][303bcaa5-9d92-42b5-9167-01422bcd78d3] Socket closed without exit code\n2025-10-28 07:07:27.520 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:07:27.523 [info] [command][e5f640b1-f497-438b-8967-0fadd3f1bd8d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e5f640b1-f497-438b-8967-0fadd3f1bd8d""}\n2025-10-28 07:07:27.524 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f0da9535-6cde-4202-a817-917341f7cff0] remote server not configured\n2025-10-28 07:07:27.524 [error] [command][e5f640b1-f497-438b-8967-0fadd3f1bd8d] Socket error: Error: read ECONNRESET\n2025-10-28 07:07:27.524 [info] [command][e5f640b1-f497-438b-8967-0fadd3f1bd8d] Socket close event received\n2025-10-28 07:07:27.525 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e5f640b1-f497-438b-8967-0fadd3f1bd8d] Socket closed without exit code\n2025-10-28 07:08:27.531 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:08:27.532 [info] [command][c59ab290-be62-4806-88ca-74cf27b37287] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c59ab290-be62-4806-88ca-74cf27b37287""}\n2025-10-28 07:08:27.533 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][887dc5d5-5797-41a5-8aee-1c33b0d44734] remote server not configured\n2025-10-28 07:08:27.533 [error] [command][c59ab290-be62-4806-88ca-74cf27b37287] Socket error: Error: read ECONNRESET\n2025-10-28 07:08:27.534 [info] [command][c59ab290-be62-4806-88ca-74cf27b37287] Socket close event received\n2025-10-28 07:08:27.534 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c59ab290-be62-4806-88ca-74cf27b37287] Socket closed without exit code\n2025-10-28 07:09:27.543 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:09:27.544 [info] [command][4834abf6-96f1-4bb1-a012-5e8b69cbe79a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4834abf6-96f1-4bb1-a012-5e8b69cbe79a""}\n2025-10-28 07:09:27.545 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9f0c309f-3848-4e92-a91c-bcba0a5463aa] remote server not configured\n2025-10-28 07:09:27.546 [error] [command][4834abf6-96f1-4bb1-a012-5e8b69cbe79a] Socket error: Error: read ECONNRESET\n2025-10-28 07:09:27.546 [info] [command][4834abf6-96f1-4bb1-a012-5e8b69cbe79a] Socket close event received\n2025-10-28 07:09:27.546 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4834abf6-96f1-4bb1-a012-5e8b69cbe79a] Socket closed without exit code\n2025-10-28 07:10:27.554 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:10:27.557 [info] [command][6449462e-4101-4263-9656-2116d2f21a85] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6449462e-4101-4263-9656-2116d2f21a85""}\n2025-10-28 07:10:27.558 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3ccbcd61-f517-4808-8c11-089e6a642e5e] remote server not configured\n2025-10-28 07:10:27.558 [error] [command][6449462e-4101-4263-9656-2116d2f21a85] Socket error: Error: read ECONNRESET\n2025-10-28 07:10:27.559 [info] [command][6449462e-4101-4263-9656-2116d2f21a85] Socket close event received\n2025-10-28 07:10:27.559 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6449462e-4101-4263-9656-2116d2f21a85] Socket closed without exit code\n2025-10-28 07:11:27.570 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:11:27.572 [info] [command][ece7a6ff-c3ce-4cf2-81d1-0bd5ef9fc88a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ece7a6ff-c3ce-4cf2-81d1-0bd5ef9fc88a""}\n2025-10-28 07:11:27.573 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][aaf52181-2d6e-40a2-9466-82834fb096ae] remote server not configured\n2025-10-28 07:11:27.574 [error] [command][ece7a6ff-c3ce-4cf2-81d1-0bd5ef9fc88a] Socket error: Error: read ECONNRESET\n2025-10-28 07:11:27.574 [info] [command][ece7a6ff-c3ce-4cf2-81d1-0bd5ef9fc88a] Socket close event received\n2025-10-28 07:11:27.574 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ece7a6ff-c3ce-4cf2-81d1-0bd5ef9fc88a] Socket closed without exit code\n2025-10-28 07:12:27.585 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:12:27.588 [info] [command][ec59e6f1-7677-4d4c-9738-f6606a573d95] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ec59e6f1-7677-4d4c-9738-f6606a573d95""}\n2025-10-28 07:12:27.589 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][97094ae5-7158-4b33-a8ac-251b31112fd8] remote server not configured\n2025-10-28 07:12:27.589 [error] [command][ec59e6f1-7677-4d4c-9738-f6606a573d95] Socket error: Error: read ECONNRESET\n2025-10-28 07:12:27.589 [info] [command][ec59e6f1-7677-4d4c-9738-f6606a573d95] Socket close event received\n2025-10-28 07:12:27.589 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ec59e6f1-7677-4d4c-9738-f6606a573d95] Socket closed without exit code\n2025-10-28 07:13:27.595 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:13:27.597 [info] [command][2a65ea4f-8496-4dcc-8d97-b6ee59530194] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2a65ea4f-8496-4dcc-8d97-b6ee59530194""}\n2025-10-28 07:13:27.598 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4311b159-3952-4f90-8ae3-28f6c01f5e85] remote server not configured\n2025-10-28 07:13:27.598 [error] [command][2a65ea4f-8496-4dcc-8d97-b6ee59530194] Socket error: Error: read ECONNRESET\n2025-10-28 07:13:27.598 [info] [command][2a65ea4f-8496-4dcc-8d97-b6ee59530194] Socket close event received\n2025-10-28 07:13:27.599 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2a65ea4f-8496-4dcc-8d97-b6ee59530194] Socket closed without exit code\n2025-10-28 07:14:27.608 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:14:27.611 [info] [command][38b1df0c-57a7-40a8-ae8e-63ab0937b3e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""38b1df0c-57a7-40a8-ae8e-63ab0937b3e1""}\n2025-10-28 07:14:27.612 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9b3202d7-ccc2-47ec-a115-adc297be9b04] remote server not configured\n2025-10-28 07:14:27.612 [error] [command][38b1df0c-57a7-40a8-ae8e-63ab0937b3e1] Socket error: Error: read ECONNRESET\n2025-10-28 07:14:27.613 [info] [command][38b1df0c-57a7-40a8-ae8e-63ab0937b3e1] Socket close event received\n2025-10-28 07:14:27.613 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][38b1df0c-57a7-40a8-ae8e-63ab0937b3e1] Socket closed without exit code\n2025-10-28 07:15:27.623 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:15:27.625 [info] [command][9dd8cfb6-58dc-47a3-be00-eb729bf8a80c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9dd8cfb6-58dc-47a3-be00-eb729bf8a80c""}\n2025-10-28 07:15:27.626 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ced26c00-6a09-4562-acaa-749bfc48cd7c] remote server not configured\n2025-10-28 07:15:27.626 [error] [command][9dd8cfb6-58dc-47a3-be00-eb729bf8a80c] Socket error: Error: read ECONNRESET\n2025-10-28 07:15:27.627 [info] [command][9dd8cfb6-58dc-47a3-be00-eb729bf8a80c] Socket close event received\n2025-10-28 07:15:27.627 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9dd8cfb6-58dc-47a3-be00-eb729bf8a80c] Socket closed without exit code\n2025-10-28 07:16:27.636 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:16:27.639 [info] [command][27ddd2c4-a295-436c-b289-19abefbd9d62] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""27ddd2c4-a295-436c-b289-19abefbd9d62""}\n2025-10-28 07:16:27.639 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][40181e9a-1db2-4019-b0f5-fdef8cbe9fc1] remote server not configured\n2025-10-28 07:16:27.640 [error] [command][27ddd2c4-a295-436c-b289-19abefbd9d62] Socket error: Error: read ECONNRESET\n2025-10-28 07:16:27.640 [info] [command][27ddd2c4-a295-436c-b289-19abefbd9d62] Socket close event received\n2025-10-28 07:16:27.641 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][27ddd2c4-a295-436c-b289-19abefbd9d62] Socket closed without exit code\n2025-10-28 07:17:27.652 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:17:27.653 [info] [command][1d4283e3-3aa8-4394-a10c-ff5296fe9fbb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1d4283e3-3aa8-4394-a10c-ff5296fe9fbb""}\n2025-10-28 07:17:27.654 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f1ffaf10-4895-4bea-a8c4-26010890bd96] remote server not configured\n2025-10-28 07:17:27.654 [error] [command][1d4283e3-3aa8-4394-a10c-ff5296fe9fbb] Socket error: Error: read ECONNRESET\n2025-10-28 07:17:27.654 [info] [command][1d4283e3-3aa8-4394-a10c-ff5296fe9fbb] Socket close event received\n2025-10-28 07:17:27.655 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1d4283e3-3aa8-4394-a10c-ff5296fe9fbb] Socket closed without exit code\n2025-10-28 07:18:27.665 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:18:27.666 [info] [command][2ca5277a-a619-4dcc-aab4-0fd0455c5d48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2ca5277a-a619-4dcc-aab4-0fd0455c5d48""}\n2025-10-28 07:18:27.667 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d70d46d6-3774-4767-b8b5-902f2723aa54] remote server not configured\n2025-10-28 07:18:27.668 [error] [command][2ca5277a-a619-4dcc-aab4-0fd0455c5d48] Socket error: Error: read ECONNRESET\n2025-10-28 07:18:27.669 [info] [command][2ca5277a-a619-4dcc-aab4-0fd0455c5d48] Socket close event received\n2025-10-28 07:18:27.672 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2ca5277a-a619-4dcc-aab4-0fd0455c5d48] Socket closed without exit code\n2025-10-28 07:19:27.678 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:19:27.681 [info] [command][96539bed-2e08-4b2c-a984-40903eecab05] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""96539bed-2e08-4b2c-a984-40903eecab05""}\n2025-10-28 07:19:27.681 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7e0f3ed3-b112-4b33-8767-40beef7e901e] remote server not configured\n2025-10-28 07:19:27.682 [error] [command][96539bed-2e08-4b2c-a984-40903eecab05] Socket error: Error: read ECONNRESET\n2025-10-28 07:19:27.682 [info] [command][96539bed-2e08-4b2c-a984-40903eecab05] Socket close event received\n2025-10-28 07:19:27.682 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][96539bed-2e08-4b2c-a984-40903eecab05] Socket closed without exit code\n2025-10-28 07:20:27.691 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:20:27.694 [info] [command][0f412531-18e6-4ea6-821d-0c415f91dfc8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0f412531-18e6-4ea6-821d-0c415f91dfc8""}\n2025-10-28 07:20:27.695 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][175027c9-760b-4bbb-81fc-fbf5837b2fc8] remote server not configured\n2025-10-28 07:20:27.695 [error] [command][0f412531-18e6-4ea6-821d-0c415f91dfc8] Socket error: Error: read ECONNRESET\n2025-10-28 07:20:27.695 [info] [command][0f412531-18e6-4ea6-821d-0c415f91dfc8] Socket close event received\n2025-10-28 07:20:27.696 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0f412531-18e6-4ea6-821d-0c415f91dfc8] Socket closed without exit code\n2025-10-28 07:21:27.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:21:27.707 [info] [command][26d1ae02-fe8a-4f73-9d1f-c8da73151341] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""26d1ae02-fe8a-4f73-9d1f-c8da73151341""}\n2025-10-28 07:21:27.708 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][05bc0973-bed7-4dce-a9c3-be907824db29] remote server not configured\n2025-10-28 07:21:27.708 [error] [command][26d1ae02-fe8a-4f73-9d1f-c8da73151341] Socket error: Error: read ECONNRESET\n2025-10-28 07:21:27.709 [info] [command][26d1ae02-fe8a-4f73-9d1f-c8da73151341] Socket close event received\n2025-10-28 07:21:27.709 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][26d1ae02-fe8a-4f73-9d1f-c8da73151341] Socket closed without exit code\n2025-10-28 07:22:27.720 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:22:27.723 [info] [command][df596df7-ea0c-4cb3-b94c-6fbfe0a7cd71] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""df596df7-ea0c-4cb3-b94c-6fbfe0a7cd71""}\n2025-10-28 07:22:27.723 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][20e8f169-9e23-4fa4-8e6c-257e8a860d77] remote server not configured\n2025-10-28 07:22:27.724 [error] [command][df596df7-ea0c-4cb3-b94c-6fbfe0a7cd71] Socket error: Error: read ECONNRESET\n2025-10-28 07:22:27.724 [info] [command][df596df7-ea0c-4cb3-b94c-6fbfe0a7cd71] Socket close event received\n2025-10-28 07:22:27.724 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][df596df7-ea0c-4cb3-b94c-6fbfe0a7cd71] Socket closed without exit code\n2025-10-28 07:23:27.734 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:23:27.736 [info] [command][58233ec8-a7fa-4d8e-a42e-f8aec4b53740] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""58233ec8-a7fa-4d8e-a42e-f8aec4b53740""}\n2025-10-28 07:23:27.736 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4a4be3ac-36d0-41f7-b253-6939f80a6b2c] remote server not configured\n2025-10-28 07:23:27.737 [error] [command][58233ec8-a7fa-4d8e-a42e-f8aec4b53740] Socket error: Error: read ECONNRESET\n2025-10-28 07:23:27.737 [info] [command][58233ec8-a7fa-4d8e-a42e-f8aec4b53740] Socket close event received\n2025-10-28 07:23:27.738 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][58233ec8-a7fa-4d8e-a42e-f8aec4b53740] Socket closed without exit code\n2025-10-28 07:24:27.749 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:24:27.752 [info] [command][1fd90466-3cf4-4dd5-9d43-7eb9b656287c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1fd90466-3cf4-4dd5-9d43-7eb9b656287c""}\n2025-10-28 07:24:27.753 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ac582371-47a5-4de8-bb99-1f81b19a26e4] remote server not configured\n2025-10-28 07:24:27.753 [error] [command][1fd90466-3cf4-4dd5-9d43-7eb9b656287c] Socket error: Error: read ECONNRESET\n2025-10-28 07:24:27.753 [info] [command][1fd90466-3cf4-4dd5-9d43-7eb9b656287c] Socket close event received\n2025-10-28 07:24:27.753 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1fd90466-3cf4-4dd5-9d43-7eb9b656287c] Socket closed without exit code\n2025-10-28 07:25:27.756 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:25:27.758 [info] [command][a326a631-9f9f-42b1-8730-f2eb75bf5878] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a326a631-9f9f-42b1-8730-f2eb75bf5878""}\n2025-10-28 07:25:27.758 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6b1a0f6d-0dab-428e-89d7-780324a4089e] remote server not configured\n2025-10-28 07:25:27.759 [error] [command][a326a631-9f9f-42b1-8730-f2eb75bf5878] Socket error: Error: read ECONNRESET\n2025-10-28 07:25:27.759 [info] [command][a326a631-9f9f-42b1-8730-f2eb75bf5878] Socket close event received\n2025-10-28 07:25:27.760 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a326a631-9f9f-42b1-8730-f2eb75bf5878] Socket closed without exit code\n2025-10-28 07:26:27.771 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:26:27.773 [info] [command][833db737-987c-4efc-8456-6f5bc077429c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""833db737-987c-4efc-8456-6f5bc077429c""}\n2025-10-28 07:26:27.773 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0875c873-ef84-497b-b458-3ca9174d825f] remote server not configured\n2025-10-28 07:26:27.774 [error] [command][833db737-987c-4efc-8456-6f5bc077429c] Socket error: Error: read ECONNRESET\n2025-10-28 07:26:27.774 [info] [command][833db737-987c-4efc-8456-6f5bc077429c] Socket close event received\n2025-10-28 07:26:27.775 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][833db737-987c-4efc-8456-6f5bc077429c] Socket closed without exit code\n2025-10-28 07:27:27.784 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:27:27.786 [info] [command][abfb8fcb-3c63-409f-b640-4ddd771fa958] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""abfb8fcb-3c63-409f-b640-4ddd771fa958""}\n2025-10-28 07:27:27.787 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8930a610-9068-4776-9cfd-a051a816e8bd] remote server not configured\n2025-10-28 07:27:27.787 [error] [command][abfb8fcb-3c63-409f-b640-4ddd771fa958] Socket error: Error: read ECONNRESET\n2025-10-28 07:27:27.787 [info] [command][abfb8fcb-3c63-409f-b640-4ddd771fa958] Socket close event received\n2025-10-28 07:27:27.788 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][abfb8fcb-3c63-409f-b640-4ddd771fa958] Socket closed without exit code\n2025-10-28 07:28:27.737 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:28:27.740 [info] [command][a38b220f-71b5-4ed2-bbe3-d30cd832838d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a38b220f-71b5-4ed2-bbe3-d30cd832838d""}\n2025-10-28 07:28:27.741 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3961376b-7235-49b7-bff6-1173b8df78be] remote server not configured\n2025-10-28 07:28:27.741 [error] [command][a38b220f-71b5-4ed2-bbe3-d30cd832838d] Socket error: Error: read ECONNRESET\n2025-10-28 07:28:27.741 [info] [command][a38b220f-71b5-4ed2-bbe3-d30cd832838d] Socket close event received\n2025-10-28 07:28:27.742 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a38b220f-71b5-4ed2-bbe3-d30cd832838d] Socket closed without exit code\n2025-10-28 07:29:27.752 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:29:27.753 [info] [command][f9e13f05-11cd-44da-b73d-1c8eab15ca96] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f9e13f05-11cd-44da-b73d-1c8eab15ca96""}\n2025-10-28 07:29:27.754 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ed997e0b-cad1-4686-80b9-cd1c7b722808] remote server not configured\n2025-10-28 07:29:27.755 [error] [command][f9e13f05-11cd-44da-b73d-1c8eab15ca96] Socket error: Error: read ECONNRESET\n2025-10-28 07:29:27.755 [info] [command][f9e13f05-11cd-44da-b73d-1c8eab15ca96] Socket close event received\n2025-10-28 07:29:27.755 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f9e13f05-11cd-44da-b73d-1c8eab15ca96] Socket closed without exit code\n2025-10-28 07:30:27.760 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:30:27.762 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2dca35f8-ec88-4b33-b0b4-6f69b01a1a56] remote server not configured\n2025-10-28 07:30:27.762 [info] [command][cf208d7b-53fc-4a2e-aa55-6aed3ef7ddec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cf208d7b-53fc-4a2e-aa55-6aed3ef7ddec""}\n2025-10-28 07:30:27.763 [error] [command][cf208d7b-53fc-4a2e-aa55-6aed3ef7ddec] Socket error: Error: read ECONNRESET\n2025-10-28 07:30:27.763 [info] [command][cf208d7b-53fc-4a2e-aa55-6aed3ef7ddec] Socket close event received\n2025-10-28 07:30:27.763 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cf208d7b-53fc-4a2e-aa55-6aed3ef7ddec] Socket closed without exit code\n2025-10-28 07:31:27.773 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:31:27.776 [info] [command][81100c88-86e0-44ec-bbf5-d4dfe6c4c76a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""81100c88-86e0-44ec-bbf5-d4dfe6c4c76a""}\n2025-10-28 07:31:27.777 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][47412add-c63f-4d17-9646-c0d46bea1ccb] remote server not configured\n2025-10-28 07:31:27.777 [error] [command][81100c88-86e0-44ec-bbf5-d4dfe6c4c76a] Socket error: Error: read ECONNRESET\n2025-10-28 07:31:27.778 [info] [command][81100c88-86e0-44ec-bbf5-d4dfe6c4c76a] Socket close event received\n2025-10-28 07:31:27.778 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][81100c88-86e0-44ec-bbf5-d4dfe6c4c76a] Socket closed without exit code\n2025-10-28 07:32:27.782 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:32:27.784 [info] [command][328976fe-e963-49df-9001-80d22b4d3b64] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""328976fe-e963-49df-9001-80d22b4d3b64""}\n2025-10-28 07:32:27.784 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][660edf57-98ee-45c9-9b56-39a8717c1c00] remote server not configured\n2025-10-28 07:32:27.785 [error] [command][328976fe-e963-49df-9001-80d22b4d3b64] Socket error: Error: read ECONNRESET\n2025-10-28 07:32:27.785 [info] [command][328976fe-e963-49df-9001-80d22b4d3b64] Socket close event received\n2025-10-28 07:32:27.785 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][328976fe-e963-49df-9001-80d22b4d3b64] Socket closed without exit code\n2025-10-28 07:33:27.794 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:33:27.795 [info] [command][2d8c6519-c1b8-4754-a5c7-b9742145a9ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2d8c6519-c1b8-4754-a5c7-b9742145a9ed""}\n2025-10-28 07:33:27.796 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0a339f92-d09f-43ff-a696-e4168ea8d68d] remote server not configured\n2025-10-28 07:33:27.797 [error] [command][2d8c6519-c1b8-4754-a5c7-b9742145a9ed] Socket error: Error: read ECONNRESET\n2025-10-28 07:33:27.797 [info] [command][2d8c6519-c1b8-4754-a5c7-b9742145a9ed] Socket close event received\n2025-10-28 07:33:27.797 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2d8c6519-c1b8-4754-a5c7-b9742145a9ed] Socket closed without exit code\n2025-10-28 07:34:27.804 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:34:27.806 [info] [command][0004bacb-ff39-4eca-93c4-62dd518d660b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0004bacb-ff39-4eca-93c4-62dd518d660b""}\n2025-10-28 07:34:27.807 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][09240434-9a40-41a8-b30c-574133f8ff38] remote server not configured\n2025-10-28 07:34:27.808 [error] [command][0004bacb-ff39-4eca-93c4-62dd518d660b] Socket error: Error: read ECONNRESET\n2025-10-28 07:34:27.808 [info] [command][0004bacb-ff39-4eca-93c4-62dd518d660b] Socket close event received\n2025-10-28 07:34:27.808 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0004bacb-ff39-4eca-93c4-62dd518d660b] Socket closed without exit code\n2025-10-28 07:35:27.817 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:35:27.820 [info] [command][6f90507c-40e6-4cd8-bb7a-b12e50825cf6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6f90507c-40e6-4cd8-bb7a-b12e50825cf6""}\n2025-10-28 07:35:27.820 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2c713d53-995c-41ff-b0d6-bc7f42589540] remote server not configured\n2025-10-28 07:35:27.821 [error] [command][6f90507c-40e6-4cd8-bb7a-b12e50825cf6] Socket error: Error: read ECONNRESET\n2025-10-28 07:35:27.821 [info] [command][6f90507c-40e6-4cd8-bb7a-b12e50825cf6] Socket close event received\n2025-10-28 07:35:27.822 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6f90507c-40e6-4cd8-bb7a-b12e50825cf6] Socket closed without exit code\n2025-10-28 07:36:27.832 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:36:27.833 [info] [command][8c8c10a8-6d4d-4958-a1af-c7d6dceb5572] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8c8c10a8-6d4d-4958-a1af-c7d6dceb5572""}\n2025-10-28 07:36:27.834 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][90c393d1-36f9-40d8-bbd4-1f784374f3c7] remote server not configured\n2025-10-28 07:36:27.834 [error] [command][8c8c10a8-6d4d-4958-a1af-c7d6dceb5572] Socket error: Error: read ECONNRESET\n2025-10-28 07:36:27.834 [info] [command][8c8c10a8-6d4d-4958-a1af-c7d6dceb5572] Socket close event received\n2025-10-28 07:36:27.835 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8c8c10a8-6d4d-4958-a1af-c7d6dceb5572] Socket closed without exit code\n2025-10-28 07:37:27.844 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:37:27.846 [info] [command][bb762393-08da-4d57-88b6-4e954422f0a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bb762393-08da-4d57-88b6-4e954422f0a2""}\n2025-10-28 07:37:27.846 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][51f18aa0-6d58-4fec-99e9-1d6ac70324bf] remote server not configured\n2025-10-28 07:37:27.847 [error] [command][bb762393-08da-4d57-88b6-4e954422f0a2] Socket error: Error: read ECONNRESET\n2025-10-28 07:37:27.847 [info] [command][bb762393-08da-4d57-88b6-4e954422f0a2] Socket close event received\n2025-10-28 07:37:27.847 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bb762393-08da-4d57-88b6-4e954422f0a2] Socket closed without exit code\n2025-10-28 07:38:27.847 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:38:27.849 [info] [command][66955037-6c2d-4731-87f2-a6c62206c6b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""66955037-6c2d-4731-87f2-a6c62206c6b7""}\n2025-10-28 07:38:27.849 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][50a4d1eb-b31c-421f-8ff5-ee3b015fc40a] remote server not configured\n2025-10-28 07:38:27.850 [error] [command][66955037-6c2d-4731-87f2-a6c62206c6b7] Socket error: Error: read ECONNRESET\n2025-10-28 07:38:27.850 [info] [command][66955037-6c2d-4731-87f2-a6c62206c6b7] Socket close event received\n2025-10-28 07:38:27.851 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][66955037-6c2d-4731-87f2-a6c62206c6b7] Socket closed without exit code\n2025-10-28 07:39:27.861 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:39:27.862 [info] [command][18389943-4ae1-45b4-9501-d234e82fc16a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""18389943-4ae1-45b4-9501-d234e82fc16a""}\n2025-10-28 07:39:27.863 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2d2cfc56-69ed-4977-be96-c42ebbbb0ee0] remote server not configured\n2025-10-28 07:39:27.864 [error] [command][18389943-4ae1-45b4-9501-d234e82fc16a] Socket error: Error: read ECONNRESET\n2025-10-28 07:39:27.864 [info] [command][18389943-4ae1-45b4-9501-d234e82fc16a] Socket close event received\n2025-10-28 07:39:27.864 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][18389943-4ae1-45b4-9501-d234e82fc16a] Socket closed without exit code\n2025-10-28 07:40:27.874 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:40:27.877 [info] [command][dc854e8f-6630-41c1-bb99-b1228bc516b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dc854e8f-6630-41c1-bb99-b1228bc516b9""}\n2025-10-28 07:40:27.878 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][12c13c3c-2114-4d92-bd51-ad340ba3e259] remote server not configured\n2025-10-28 07:40:27.878 [error] [command][dc854e8f-6630-41c1-bb99-b1228bc516b9] Socket error: Error: read ECONNRESET\n2025-10-28 07:40:27.878 [info] [command][dc854e8f-6630-41c1-bb99-b1228bc516b9] Socket close event received\n2025-10-28 07:40:27.878 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dc854e8f-6630-41c1-bb99-b1228bc516b9] Socket closed without exit code\n2025-10-28 07:41:27.880 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:41:27.883 [info] [command][efaf9292-44b1-4e39-b7f5-e65cb2a20f62] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""efaf9292-44b1-4e39-b7f5-e65cb2a20f62""}\n2025-10-28 07:41:27.883 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dddb5933-4c0a-4dd1-948e-71e1c250fc85] remote server not configured\n2025-10-28 07:41:27.884 [error] [command][efaf9292-44b1-4e39-b7f5-e65cb2a20f62] Socket error: Error: read ECONNRESET\n2025-10-28 07:41:27.884 [info] [command][efaf9292-44b1-4e39-b7f5-e65cb2a20f62] Socket close event received\n2025-10-28 07:41:27.885 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][efaf9292-44b1-4e39-b7f5-e65cb2a20f62] Socket closed without exit code\n2025-10-28 07:42:27.895 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:42:27.897 [info] [command][ab508cc7-2e09-400b-8191-217f9e62f2c5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ab508cc7-2e09-400b-8191-217f9e62f2c5""}\n2025-10-28 07:42:27.897 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bc490c58-787e-4fc0-97e7-c464d91b5f00] remote server not configured\n2025-10-28 07:42:27.898 [error] [command][ab508cc7-2e09-400b-8191-217f9e62f2c5] Socket error: Error: read ECONNRESET\n2025-10-28 07:42:27.898 [info] [command][ab508cc7-2e09-400b-8191-217f9e62f2c5] Socket close event received\n2025-10-28 07:42:27.898 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ab508cc7-2e09-400b-8191-217f9e62f2c5] Socket closed without exit code\n2025-10-28 07:43:27.908 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:43:27.910 [info] [command][5df6dd60-79d7-45e0-b3f1-766fcf57d9b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5df6dd60-79d7-45e0-b3f1-766fcf57d9b4""}\n2025-10-28 07:43:27.910 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ecc50aa2-6cdb-4e14-b120-7e0dc744757a] remote server not configured\n2025-10-28 07:43:27.911 [error] [command][5df6dd60-79d7-45e0-b3f1-766fcf57d9b4] Socket error: Error: read ECONNRESET\n2025-10-28 07:43:27.911 [info] [command][5df6dd60-79d7-45e0-b3f1-766fcf57d9b4] Socket close event received\n2025-10-28 07:43:27.912 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5df6dd60-79d7-45e0-b3f1-766fcf57d9b4] Socket closed without exit code\n2025-10-28 07:44:27.921 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:44:27.923 [info] [command][a2b70ba7-93bd-4b9e-9049-4dcd796a8c54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a2b70ba7-93bd-4b9e-9049-4dcd796a8c54""}\n2025-10-28 07:44:27.923 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2aed7e7c-ba86-4390-abd9-c5440aa9b5c6] remote server not configured\n2025-10-28 07:44:27.924 [error] [command][a2b70ba7-93bd-4b9e-9049-4dcd796a8c54] Socket error: Error: read ECONNRESET\n2025-10-28 07:44:27.924 [info] [command][a2b70ba7-93bd-4b9e-9049-4dcd796a8c54] Socket close event received\n2025-10-28 07:44:27.924 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a2b70ba7-93bd-4b9e-9049-4dcd796a8c54] Socket closed without exit code\n2025-10-28 07:45:27.934 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:45:27.935 [info] [command][6069294e-dabc-498f-b112-6696ccea323e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6069294e-dabc-498f-b112-6696ccea323e""}\n2025-10-28 07:45:27.936 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f06ef561-9caf-4791-8e27-f73220534f91] remote server not configured\n2025-10-28 07:45:27.937 [error] [command][6069294e-dabc-498f-b112-6696ccea323e] Socket error: Error: read ECONNRESET\n2025-10-28 07:45:27.937 [info] [command][6069294e-dabc-498f-b112-6696ccea323e] Socket close event received\n2025-10-28 07:45:27.937 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6069294e-dabc-498f-b112-6696ccea323e] Socket closed without exit code\n2025-10-28 07:46:27.947 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:46:27.948 [info] [command][6ea96e49-cd30-4a35-8ae7-f9c2e658aa71] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6ea96e49-cd30-4a35-8ae7-f9c2e658aa71""}\n2025-10-28 07:46:27.949 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d2b2c15d-78f2-4a92-9eee-836f2f9ac165] remote server not configured\n2025-10-28 07:46:27.949 [error] [command][6ea96e49-cd30-4a35-8ae7-f9c2e658aa71] Socket error: Error: read ECONNRESET\n2025-10-28 07:46:27.950 [info] [command][6ea96e49-cd30-4a35-8ae7-f9c2e658aa71] Socket close event received\n2025-10-28 07:46:27.950 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6ea96e49-cd30-4a35-8ae7-f9c2e658aa71] Socket closed without exit code\n2025-10-28 07:47:27.959 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:47:27.960 [info] [command][c96fd418-7d62-40fb-a2d5-e87a6163a5c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c96fd418-7d62-40fb-a2d5-e87a6163a5c6""}\n2025-10-28 07:47:27.961 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1470c2f8-a560-4a41-94e3-a649e6494c16] remote server not configured\n2025-10-28 07:47:27.961 [error] [command][c96fd418-7d62-40fb-a2d5-e87a6163a5c6] Socket error: Error: read ECONNRESET\n2025-10-28 07:47:27.962 [info] [command][c96fd418-7d62-40fb-a2d5-e87a6163a5c6] Socket close event received\n2025-10-28 07:47:27.962 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c96fd418-7d62-40fb-a2d5-e87a6163a5c6] Socket closed without exit code\n2025-10-28 07:48:27.972 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:48:27.973 [info] [command][8e6b1a7b-4529-44a5-aa21-b43d99bd56e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8e6b1a7b-4529-44a5-aa21-b43d99bd56e5""}\n2025-10-28 07:48:27.974 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cafbb59c-fb98-467b-a60e-86f1219652e7] remote server not configured\n2025-10-28 07:48:27.974 [error] [command][8e6b1a7b-4529-44a5-aa21-b43d99bd56e5] Socket error: Error: read ECONNRESET\n2025-10-28 07:48:27.975 [info] [command][8e6b1a7b-4529-44a5-aa21-b43d99bd56e5] Socket close event received\n2025-10-28 07:48:27.975 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8e6b1a7b-4529-44a5-aa21-b43d99bd56e5] Socket closed without exit code\n2025-10-28 07:49:27.982 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:49:27.985 [info] [command][1c23e01c-ef71-4085-ba59-297275d0d991] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1c23e01c-ef71-4085-ba59-297275d0d991""}\n2025-10-28 07:49:27.986 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][54940b2e-65aa-4148-8ba0-01471f748ab3] remote server not configured\n2025-10-28 07:49:27.986 [error] [command][1c23e01c-ef71-4085-ba59-297275d0d991] Socket error: Error: read ECONNRESET\n2025-10-28 07:49:27.987 [info] [command][1c23e01c-ef71-4085-ba59-297275d0d991] Socket close event received\n2025-10-28 07:49:27.987 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1c23e01c-ef71-4085-ba59-297275d0d991] Socket closed without exit code\n2025-10-28 07:50:27.996 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:50:27.998 [info] [command][9aa0fb92-d55f-4616-851d-fc79fc135ab8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9aa0fb92-d55f-4616-851d-fc79fc135ab8""}\n2025-10-28 07:50:27.998 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0eaa04c8-2274-4813-8dd2-864d2e1e4166] remote server not configured\n2025-10-28 07:50:27.999 [error] [command][9aa0fb92-d55f-4616-851d-fc79fc135ab8] Socket error: Error: read ECONNRESET\n2025-10-28 07:50:27.999 [info] [command][9aa0fb92-d55f-4616-851d-fc79fc135ab8] Socket close event received\n2025-10-28 07:50:27.999 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9aa0fb92-d55f-4616-851d-fc79fc135ab8] Socket closed without exit code\n2025-10-28 07:51:28.009 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:51:28.010 [info] [command][0764d372-278b-4565-92bc-9d809c62d056] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0764d372-278b-4565-92bc-9d809c62d056""}\n2025-10-28 07:51:28.010 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][49a1dfbd-ff36-4d4a-b62a-39a0ae10acbc] remote server not configured\n2025-10-28 07:51:28.011 [error] [command][0764d372-278b-4565-92bc-9d809c62d056] Socket error: Error: read ECONNRESET\n2025-10-28 07:51:28.011 [info] [command][0764d372-278b-4565-92bc-9d809c62d056] Socket close event received\n2025-10-28 07:51:28.011 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0764d372-278b-4565-92bc-9d809c62d056] Socket closed without exit code\n2025-10-28 07:52:28.021 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:52:28.022 [info] [command][2e68b0df-cefd-49bb-bc2e-76a3e3074c19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2e68b0df-cefd-49bb-bc2e-76a3e3074c19""}\n2025-10-28 07:52:28.022 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c97ea230-fe5f-42d7-b36e-b5374274f314] remote server not configured\n2025-10-28 07:52:28.023 [error] [command][2e68b0df-cefd-49bb-bc2e-76a3e3074c19] Socket error: Error: read ECONNRESET\n2025-10-28 07:52:28.023 [info] [command][2e68b0df-cefd-49bb-bc2e-76a3e3074c19] Socket close event received\n2025-10-28 07:52:28.023 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2e68b0df-cefd-49bb-bc2e-76a3e3074c19] Socket closed without exit code\n2025-10-28 07:53:28.030 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:53:28.032 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5c9b659b-8410-48f3-a8e5-1304d6720b8e] remote server not configured\n2025-10-28 07:53:28.032 [info] [command][564b1007-838c-4ba5-9726-da33ebe2a3d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""564b1007-838c-4ba5-9726-da33ebe2a3d8""}\n2025-10-28 07:53:28.033 [error] [command][564b1007-838c-4ba5-9726-da33ebe2a3d8] Socket error: Error: read ECONNRESET\n2025-10-28 07:53:28.033 [info] [command][564b1007-838c-4ba5-9726-da33ebe2a3d8] Socket close event received\n2025-10-28 07:53:28.033 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][564b1007-838c-4ba5-9726-da33ebe2a3d8] Socket closed without exit code\n2025-10-28 07:54:28.037 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:54:28.038 [info] [command][71fdcebd-00c9-453c-9979-c247a67ad735] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""71fdcebd-00c9-453c-9979-c247a67ad735""}\n2025-10-28 07:54:28.039 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d8265c38-dc8f-4667-93d0-192f841c4a9b] remote server not configured\n2025-10-28 07:54:28.039 [error] [command][71fdcebd-00c9-453c-9979-c247a67ad735] Socket error: Error: read ECONNRESET\n2025-10-28 07:54:28.039 [info] [command][71fdcebd-00c9-453c-9979-c247a67ad735] Socket close event received\n2025-10-28 07:54:28.039 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][71fdcebd-00c9-453c-9979-c247a67ad735] Socket closed without exit code\n2025-10-28 07:55:28.049 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:55:28.051 [info] [command][ec5f7357-1418-4e14-94f9-99af206f0444] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ec5f7357-1418-4e14-94f9-99af206f0444""}\n2025-10-28 07:55:28.051 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ee9bed0d-4e6c-4020-9e62-39398263a692] remote server not configured\n2025-10-28 07:55:28.051 [error] [command][ec5f7357-1418-4e14-94f9-99af206f0444] Socket error: Error: read ECONNRESET\n2025-10-28 07:55:28.052 [info] [command][ec5f7357-1418-4e14-94f9-99af206f0444] Socket close event received\n2025-10-28 07:55:28.052 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ec5f7357-1418-4e14-94f9-99af206f0444] Socket closed without exit code\n2025-10-28 07:56:28.059 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:56:28.061 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7c5e9987-ded1-4d16-ab05-64fd554a6f94] remote server not configured\n2025-10-28 07:56:28.061 [info] [command][1a6a3f76-2541-4e1a-aa12-efa5c6d43591] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1a6a3f76-2541-4e1a-aa12-efa5c6d43591""}\n2025-10-28 07:56:28.062 [error] [command][1a6a3f76-2541-4e1a-aa12-efa5c6d43591] Socket error: Error: read ECONNRESET\n2025-10-28 07:56:28.062 [info] [command][1a6a3f76-2541-4e1a-aa12-efa5c6d43591] Socket close event received\n2025-10-28 07:56:28.062 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1a6a3f76-2541-4e1a-aa12-efa5c6d43591] Socket closed without exit code\n2025-10-28 07:57:28.062 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:57:28.063 [info] [command][934817f7-8e13-4e07-925f-cf20693209e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""934817f7-8e13-4e07-925f-cf20693209e9""}\n2025-10-28 07:57:28.063 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ebfbc85e-1c98-42e9-8cb8-26ef840944a8] remote server not configured\n2025-10-28 07:57:28.063 [error] [command][934817f7-8e13-4e07-925f-cf20693209e9] Socket error: Error: read ECONNRESET\n2025-10-28 07:57:28.063 [info] [command][934817f7-8e13-4e07-925f-cf20693209e9] Socket close event received\n2025-10-28 07:57:28.063 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][934817f7-8e13-4e07-925f-cf20693209e9] Socket closed without exit code\n2025-10-28 07:58:28.074 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:58:28.075 [info] [command][ea7d6d42-4457-4715-9543-c1d79896b006] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ea7d6d42-4457-4715-9543-c1d79896b006""}\n2025-10-28 07:58:28.076 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][67d9bbb4-48ac-44d3-bcd1-3b708af89ec5] remote server not configured\n2025-10-28 07:58:28.076 [error] [command][ea7d6d42-4457-4715-9543-c1d79896b006] Socket error: Error: read ECONNRESET\n2025-10-28 07:58:28.076 [info] [command][ea7d6d42-4457-4715-9543-c1d79896b006] Socket close event received\n2025-10-28 07:58:28.076 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ea7d6d42-4457-4715-9543-c1d79896b006] Socket closed without exit code\n2025-10-28 07:59:28.078 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 07:59:28.079 [info] [command][7f234e6a-4ab1-4b3d-8965-ef5f490ef5d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7f234e6a-4ab1-4b3d-8965-ef5f490ef5d0""}\n2025-10-28 07:59:28.080 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1af9f457-f68b-4635-bac8-5dc4e41b01da] remote server not configured\n2025-10-28 07:59:28.080 [error] [command][7f234e6a-4ab1-4b3d-8965-ef5f490ef5d0] Socket error: Error: read ECONNRESET\n2025-10-28 07:59:28.080 [info] [command][7f234e6a-4ab1-4b3d-8965-ef5f490ef5d0] Socket close event received\n2025-10-28 07:59:28.081 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7f234e6a-4ab1-4b3d-8965-ef5f490ef5d0] Socket closed without exit code\n2025-10-28 08:00:28.081 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:00:28.084 [info] [command][dfa3c6ab-62cf-421b-a831-956d5f45320f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dfa3c6ab-62cf-421b-a831-956d5f45320f""}\n2025-10-28 08:00:28.084 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][25babfc4-28af-4b45-8fae-1ecdbf9b3a26] remote server not configured\n2025-10-28 08:00:28.085 [error] [command][dfa3c6ab-62cf-421b-a831-956d5f45320f] Socket error: Error: read ECONNRESET\n2025-10-28 08:00:28.085 [info] [command][dfa3c6ab-62cf-421b-a831-956d5f45320f] Socket close event received\n2025-10-28 08:00:28.085 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dfa3c6ab-62cf-421b-a831-956d5f45320f] Socket closed without exit code\n2025-10-28 08:01:28.095 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:01:28.097 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][478ff307-0340-41a5-aa6a-f37afe3ea370] remote server not configured\n2025-10-28 08:01:28.098 [info] [command][ceff965d-18d0-4427-8b27-4760648f80bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ceff965d-18d0-4427-8b27-4760648f80bb""}\n2025-10-28 08:01:28.098 [error] [command][ceff965d-18d0-4427-8b27-4760648f80bb] Socket error: Error: read ECONNRESET\n2025-10-28 08:01:28.099 [info] [command][ceff965d-18d0-4427-8b27-4760648f80bb] Socket close event received\n2025-10-28 08:01:28.099 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ceff965d-18d0-4427-8b27-4760648f80bb] Socket closed without exit code\n2025-10-28 08:02:28.109 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:02:28.110 [info] [command][40fca841-c3e6-47ba-8f40-5a211a20914b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""40fca841-c3e6-47ba-8f40-5a211a20914b""}\n2025-10-28 08:02:28.111 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d0596c11-9c73-45a9-9342-3c33172d1e0d] remote server not configured\n2025-10-28 08:02:28.111 [error] [command][40fca841-c3e6-47ba-8f40-5a211a20914b] Socket error: Error: read ECONNRESET\n2025-10-28 08:02:28.111 [info] [command][40fca841-c3e6-47ba-8f40-5a211a20914b] Socket close event received\n2025-10-28 08:02:28.111 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][40fca841-c3e6-47ba-8f40-5a211a20914b] Socket closed without exit code\n2025-10-28 08:03:28.116 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:03:28.117 [info] [command][399cbf92-e155-491b-8743-ad95a89b789a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""399cbf92-e155-491b-8743-ad95a89b789a""}\n2025-10-28 08:03:28.118 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6d5171b9-4b7e-46f0-b949-eea29fac2055] remote server not configured\n2025-10-28 08:03:28.119 [error] [command][399cbf92-e155-491b-8743-ad95a89b789a] Socket error: Error: read ECONNRESET\n2025-10-28 08:03:28.119 [info] [command][399cbf92-e155-491b-8743-ad95a89b789a] Socket close event received\n2025-10-28 08:03:28.119 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][399cbf92-e155-491b-8743-ad95a89b789a] Socket closed without exit code\n2025-10-28 08:04:28.127 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:04:28.130 [info] [command][c9a94484-165d-4c3e-8163-9390e306e9ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c9a94484-165d-4c3e-8163-9390e306e9ba""}\n2025-10-28 08:04:28.130 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b2683194-c014-4441-bfd5-8ceeeaaca0cd] remote server not configured\n2025-10-28 08:04:28.131 [error] [command][c9a94484-165d-4c3e-8163-9390e306e9ba] Socket error: Error: read ECONNRESET\n2025-10-28 08:04:28.131 [info] [command][c9a94484-165d-4c3e-8163-9390e306e9ba] Socket close event received\n2025-10-28 08:04:28.131 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c9a94484-165d-4c3e-8163-9390e306e9ba] Socket closed without exit code\n2025-10-28 08:05:28.133 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:05:28.135 [info] [command][61d957de-d1dc-429a-80cc-8e288365384d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""61d957de-d1dc-429a-80cc-8e288365384d""}\n2025-10-28 08:05:28.136 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][86d0ff17-4036-4237-9e67-bd6fbe965ee8] remote server not configured\n2025-10-28 08:05:28.136 [error] [command][61d957de-d1dc-429a-80cc-8e288365384d] Socket error: Error: read ECONNRESET\n2025-10-28 08:05:28.137 [info] [command][61d957de-d1dc-429a-80cc-8e288365384d] Socket close event received\n2025-10-28 08:05:28.137 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][61d957de-d1dc-429a-80cc-8e288365384d] Socket closed without exit code\n2025-10-28 08:06:28.142 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:06:28.144 [info] [command][c4670d9f-2ff0-412a-8139-998ce3c2a257] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c4670d9f-2ff0-412a-8139-998ce3c2a257""}\n2025-10-28 08:06:28.145 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][57f904c1-2274-492c-b468-39de65ee17a8] remote server not configured\n2025-10-28 08:06:28.145 [error] [command][c4670d9f-2ff0-412a-8139-998ce3c2a257] Socket error: Error: read ECONNRESET\n2025-10-28 08:06:28.146 [info] [command][c4670d9f-2ff0-412a-8139-998ce3c2a257] Socket close event received\n2025-10-28 08:06:28.146 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c4670d9f-2ff0-412a-8139-998ce3c2a257] Socket closed without exit code\n2025-10-28 08:07:28.155 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:07:28.157 [info] [command][59caa4b1-7bce-49e5-8982-e259dee403cc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""59caa4b1-7bce-49e5-8982-e259dee403cc""}\n2025-10-28 08:07:28.158 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][61f4ca3b-0aab-42e9-8037-b25980215775] remote server not configured\n2025-10-28 08:07:28.158 [error] [command][59caa4b1-7bce-49e5-8982-e259dee403cc] Socket error: Error: read ECONNRESET\n2025-10-28 08:07:28.159 [info] [command][59caa4b1-7bce-49e5-8982-e259dee403cc] Socket close event received\n2025-10-28 08:07:28.159 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][59caa4b1-7bce-49e5-8982-e259dee403cc] Socket closed without exit code\n2025-10-28 08:08:28.162 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:08:28.164 [info] [command][2518b363-9a7e-424c-b960-dbdf75a432df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2518b363-9a7e-424c-b960-dbdf75a432df""}\n2025-10-28 08:08:28.165 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][95a9e183-5887-4221-80f0-623c953fdb4a] remote server not configured\n2025-10-28 08:08:28.166 [error] [command][2518b363-9a7e-424c-b960-dbdf75a432df] Socket error: Error: read ECONNRESET\n2025-10-28 08:08:28.166 [info] [command][2518b363-9a7e-424c-b960-dbdf75a432df] Socket close event received\n2025-10-28 08:08:28.166 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2518b363-9a7e-424c-b960-dbdf75a432df] Socket closed without exit code\n2025-10-28 08:09:28.176 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:09:28.178 [info] [command][6b7002fd-14fc-454c-91d0-8189f3bfc89f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6b7002fd-14fc-454c-91d0-8189f3bfc89f""}\n2025-10-28 08:09:28.179 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b1c7b5b6-3f34-4a9a-93fb-7e462d8aa0dc] remote server not configured\n2025-10-28 08:09:28.180 [error] [command][6b7002fd-14fc-454c-91d0-8189f3bfc89f] Socket error: Error: read ECONNRESET\n2025-10-28 08:09:28.180 [info] [command][6b7002fd-14fc-454c-91d0-8189f3bfc89f] Socket close event received\n2025-10-28 08:09:28.180 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6b7002fd-14fc-454c-91d0-8189f3bfc89f] Socket closed without exit code\n2025-10-28 08:10:28.186 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:10:28.189 [info] [command][e87c0b50-6e41-4255-b7c3-87882347cd36] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e87c0b50-6e41-4255-b7c3-87882347cd36""}\n2025-10-28 08:10:28.189 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][992d7744-2b66-40e5-941c-d938fe43b3a3] remote server not configured\n2025-10-28 08:10:28.190 [error] [command][e87c0b50-6e41-4255-b7c3-87882347cd36] Socket error: Error: read ECONNRESET\n2025-10-28 08:10:28.190 [info] [command][e87c0b50-6e41-4255-b7c3-87882347cd36] Socket close event received\n2025-10-28 08:10:28.191 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e87c0b50-6e41-4255-b7c3-87882347cd36] Socket closed without exit code\n2025-10-28 08:11:28.201 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:11:28.203 [info] [command][5898c0dd-d186-4970-95d7-ab6ff74dd6c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5898c0dd-d186-4970-95d7-ab6ff74dd6c4""}\n2025-10-28 08:11:28.204 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][118627d5-7133-4ec6-b9fe-3e31f972d098] remote server not configured\n2025-10-28 08:11:28.205 [error] [command][5898c0dd-d186-4970-95d7-ab6ff74dd6c4] Socket error: Error: read ECONNRESET\n2025-10-28 08:11:28.205 [info] [command][5898c0dd-d186-4970-95d7-ab6ff74dd6c4] Socket close event received\n2025-10-28 08:11:28.205 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5898c0dd-d186-4970-95d7-ab6ff74dd6c4] Socket closed without exit code\n2025-10-28 08:12:28.215 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:12:28.216 [info] [command][a5741052-353a-4431-ba64-9d4a78c74117] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a5741052-353a-4431-ba64-9d4a78c74117""}\n2025-10-28 08:12:28.217 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fbb019ae-b2fd-4dbc-9a2f-682535a7e571] remote server not configured\n2025-10-28 08:12:28.218 [error] [command][a5741052-353a-4431-ba64-9d4a78c74117] Socket error: Error: read ECONNRESET\n2025-10-28 08:12:28.218 [info] [command][a5741052-353a-4431-ba64-9d4a78c74117] Socket close event received\n2025-10-28 08:12:28.218 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a5741052-353a-4431-ba64-9d4a78c74117] Socket closed without exit code\n2025-10-28 08:13:28.228 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:13:28.231 [info] [command][574a79d3-e387-425d-bc78-a745cf4b9fe5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""574a79d3-e387-425d-bc78-a745cf4b9fe5""}\n2025-10-28 08:13:28.232 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e90ad171-c569-4cce-8e70-091020ef37d2] remote server not configured\n2025-10-28 08:13:28.232 [error] [command][574a79d3-e387-425d-bc78-a745cf4b9fe5] Socket error: Error: read ECONNRESET\n2025-10-28 08:13:28.232 [info] [command][574a79d3-e387-425d-bc78-a745cf4b9fe5] Socket close event received\n2025-10-28 08:13:28.233 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][574a79d3-e387-425d-bc78-a745cf4b9fe5] Socket closed without exit code\n2025-10-28 08:14:28.233 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:14:28.235 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b2d4bfaf-ba4b-4e41-963b-589764fb9cfa] remote server not configured\n2025-10-28 08:14:28.236 [info] [command][50ebc7f1-918c-4d03-a32a-b74345a03dd6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""50ebc7f1-918c-4d03-a32a-b74345a03dd6""}\n2025-10-28 08:14:28.237 [error] [command][50ebc7f1-918c-4d03-a32a-b74345a03dd6] Socket error: Error: read ECONNRESET\n2025-10-28 08:14:28.237 [info] [command][50ebc7f1-918c-4d03-a32a-b74345a03dd6] Socket close event received\n2025-10-28 08:14:28.237 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][50ebc7f1-918c-4d03-a32a-b74345a03dd6] Socket closed without exit code\n2025-10-28 08:15:28.247 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:15:28.250 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f755e330-d764-40cc-8084-4bf8ad44b1c6] remote server not configured\n2025-10-28 08:15:28.250 [info] [command][49e52f23-6efb-4e35-8f9c-acbad66f829d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""49e52f23-6efb-4e35-8f9c-acbad66f829d""}\n2025-10-28 08:15:28.251 [error] [command][49e52f23-6efb-4e35-8f9c-acbad66f829d] Socket error: Error: read ECONNRESET\n2025-10-28 08:15:28.251 [info] [command][49e52f23-6efb-4e35-8f9c-acbad66f829d] Socket close event received\n2025-10-28 08:15:28.252 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][49e52f23-6efb-4e35-8f9c-acbad66f829d] Socket closed without exit code\n2025-10-28 08:16:28.262 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:16:28.264 [info] [command][2d2aee18-f5dc-4061-b285-428fb35afc28] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2d2aee18-f5dc-4061-b285-428fb35afc28""}\n2025-10-28 08:16:28.264 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][deeaa9df-14c8-423f-ba6a-98d2ffceaf2f] remote server not configured\n2025-10-28 08:16:28.265 [error] [command][2d2aee18-f5dc-4061-b285-428fb35afc28] Socket error: Error: read ECONNRESET\n2025-10-28 08:16:28.265 [info] [command][2d2aee18-f5dc-4061-b285-428fb35afc28] Socket close event received\n2025-10-28 08:16:28.265 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2d2aee18-f5dc-4061-b285-428fb35afc28] Socket closed without exit code\n2025-10-28 08:17:28.275 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:17:28.278 [info] [command][12e26c77-851a-4726-979c-263e38144951] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""12e26c77-851a-4726-979c-263e38144951""}\n2025-10-28 08:17:28.278 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][323de45e-3c01-4342-9795-4bc202783b65] remote server not configured\n2025-10-28 08:17:28.279 [error] [command][12e26c77-851a-4726-979c-263e38144951] Socket error: Error: read ECONNRESET\n2025-10-28 08:17:28.279 [info] [command][12e26c77-851a-4726-979c-263e38144951] Socket close event received\n2025-10-28 08:17:28.280 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][12e26c77-851a-4726-979c-263e38144951] Socket closed without exit code\n2025-10-28 08:18:28.288 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:18:28.290 [info] [command][236f199e-b525-4876-8e9d-5cc01d91e495] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""236f199e-b525-4876-8e9d-5cc01d91e495""}\n2025-10-28 08:18:28.291 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5566a456-6593-4925-8870-a6c08dfc0c7d] remote server not configured\n2025-10-28 08:18:28.292 [error] [command][236f199e-b525-4876-8e9d-5cc01d91e495] Socket error: Error: read ECONNRESET\n2025-10-28 08:18:28.292 [info] [command][236f199e-b525-4876-8e9d-5cc01d91e495] Socket close event received\n2025-10-28 08:18:28.292 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][236f199e-b525-4876-8e9d-5cc01d91e495] Socket closed without exit code\n2025-10-28 08:19:28.302 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:19:28.305 [info] [command][a55e48ae-ecd7-46ea-be83-d38510a891df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a55e48ae-ecd7-46ea-be83-d38510a891df""}\n2025-10-28 08:19:28.305 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8105a25c-7c5d-406e-baab-9bfd166a252c] remote server not configured\n2025-10-28 08:19:28.306 [error] [command][a55e48ae-ecd7-46ea-be83-d38510a891df] Socket error: Error: read ECONNRESET\n2025-10-28 08:19:28.306 [info] [command][a55e48ae-ecd7-46ea-be83-d38510a891df] Socket close event received\n2025-10-28 08:19:28.306 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a55e48ae-ecd7-46ea-be83-d38510a891df] Socket closed without exit code\n2025-10-28 08:20:28.310 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:20:28.313 [info] [command][95f5b693-a436-459a-b680-3f0ab9117c58] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""95f5b693-a436-459a-b680-3f0ab9117c58""}\n2025-10-28 08:20:28.313 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][94d6bc27-fc1e-4da5-8d25-9ca240c03d5d] remote server not configured\n2025-10-28 08:20:28.314 [error] [command][95f5b693-a436-459a-b680-3f0ab9117c58] Socket error: Error: read ECONNRESET\n2025-10-28 08:20:28.314 [info] [command][95f5b693-a436-459a-b680-3f0ab9117c58] Socket close event received\n2025-10-28 08:20:28.314 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][95f5b693-a436-459a-b680-3f0ab9117c58] Socket closed without exit code\n2025-10-28 08:21:28.321 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:21:28.323 [info] [command][55997341-7a92-4148-a67c-31f6d030259c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""55997341-7a92-4148-a67c-31f6d030259c""}\n2025-10-28 08:21:28.323 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9a263e87-dbf8-442a-888f-dfd18cd2e002] remote server not configured\n2025-10-28 08:21:28.324 [error] [command][55997341-7a92-4148-a67c-31f6d030259c] Socket error: Error: read ECONNRESET\n2025-10-28 08:21:28.324 [info] [command][55997341-7a92-4148-a67c-31f6d030259c] Socket close event received\n2025-10-28 08:21:28.324 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][55997341-7a92-4148-a67c-31f6d030259c] Socket closed without exit code\n2025-10-28 08:22:28.334 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:22:28.336 [info] [command][96d6573e-56ea-4060-bb2f-639e00453715] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""96d6573e-56ea-4060-bb2f-639e00453715""}\n2025-10-28 08:22:28.337 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][63da3e05-41ec-4e58-b29d-bed428a1b782] remote server not configured\n2025-10-28 08:22:28.337 [error] [command][96d6573e-56ea-4060-bb2f-639e00453715] Socket error: Error: read ECONNRESET\n2025-10-28 08:22:28.338 [info] [command][96d6573e-56ea-4060-bb2f-639e00453715] Socket close event received\n2025-10-28 08:22:28.338 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][96d6573e-56ea-4060-bb2f-639e00453715] Socket closed without exit code\n2025-10-28 08:23:28.341 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:23:28.343 [info] [command][849fb066-b712-45a0-b270-12670a81f7bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""849fb066-b712-45a0-b270-12670a81f7bd""}\n2025-10-28 08:23:28.343 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][47a65bd0-775f-435e-9a48-6943ec895954] remote server not configured\n2025-10-28 08:23:28.344 [error] [command][849fb066-b712-45a0-b270-12670a81f7bd] Socket error: Error: read ECONNRESET\n2025-10-28 08:23:28.345 [info] [command][849fb066-b712-45a0-b270-12670a81f7bd] Socket close event received\n2025-10-28 08:23:28.345 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][849fb066-b712-45a0-b270-12670a81f7bd] Socket closed without exit code\n2025-10-28 08:24:28.347 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:24:28.349 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6f3bc4d8-398a-4fe1-8e67-e4f4784a3d51] remote server not configured\n2025-10-28 08:24:28.350 [info] [command][e63b949d-5ff7-4696-b35b-792f69626ab1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e63b949d-5ff7-4696-b35b-792f69626ab1""}\n2025-10-28 08:24:28.351 [error] [command][e63b949d-5ff7-4696-b35b-792f69626ab1] Socket error: Error: read ECONNRESET\n2025-10-28 08:24:28.351 [info] [command][e63b949d-5ff7-4696-b35b-792f69626ab1] Socket close event received\n2025-10-28 08:24:28.351 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e63b949d-5ff7-4696-b35b-792f69626ab1] Socket closed without exit code\n2025-10-28 08:25:28.361 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:25:28.363 [info] [command][51e3f8dd-071c-4da5-954a-eb9102b19b03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""51e3f8dd-071c-4da5-954a-eb9102b19b03""}\n2025-10-28 08:25:28.363 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][528ec55a-7128-450f-9414-500a9b693dfd] remote server not configured\n2025-10-28 08:25:28.364 [error] [command][51e3f8dd-071c-4da5-954a-eb9102b19b03] Socket error: Error: read ECONNRESET\n2025-10-28 08:25:28.365 [info] [command][51e3f8dd-071c-4da5-954a-eb9102b19b03] Socket close event received\n2025-10-28 08:25:28.365 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][51e3f8dd-071c-4da5-954a-eb9102b19b03] Socket closed without exit code\n2025-10-28 08:26:28.375 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:26:28.376 [info] [command][263a79a1-a5f4-4ad3-8cb8-a02fc6be67e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""263a79a1-a5f4-4ad3-8cb8-a02fc6be67e4""}\n2025-10-28 08:26:28.377 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5eb64662-bbf6-4462-9f2a-614a9eb98307] remote server not configured\n2025-10-28 08:26:28.378 [error] [command][263a79a1-a5f4-4ad3-8cb8-a02fc6be67e4] Socket error: Error: read ECONNRESET\n2025-10-28 08:26:28.378 [info] [command][263a79a1-a5f4-4ad3-8cb8-a02fc6be67e4] Socket close event received\n2025-10-28 08:26:28.379 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][263a79a1-a5f4-4ad3-8cb8-a02fc6be67e4] Socket closed without exit code\n2025-10-28 08:27:28.387 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:27:28.389 [info] [command][2346977d-30c3-46e3-b4f5-b504ef8c4bad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2346977d-30c3-46e3-b4f5-b504ef8c4bad""}\n2025-10-28 08:27:28.390 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f9324319-127f-45d2-8780-166646da85d4] remote server not configured\n2025-10-28 08:27:28.391 [error] [command][2346977d-30c3-46e3-b4f5-b504ef8c4bad] Socket error: Error: read ECONNRESET\n2025-10-28 08:27:28.391 [info] [command][2346977d-30c3-46e3-b4f5-b504ef8c4bad] Socket close event received\n2025-10-28 08:27:28.391 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2346977d-30c3-46e3-b4f5-b504ef8c4bad] Socket closed without exit code\n2025-10-28 08:28:28.392 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:28:28.394 [info] [command][d0ea9f6c-bdc7-457c-8606-01760f19990b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d0ea9f6c-bdc7-457c-8606-01760f19990b""}\n2025-10-28 08:28:28.395 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a9e08401-1689-4f40-b8e5-cc4082e92f83] remote server not configured\n2025-10-28 08:28:28.396 [error] [command][d0ea9f6c-bdc7-457c-8606-01760f19990b] Socket error: Error: read ECONNRESET\n2025-10-28 08:28:28.396 [info] [command][d0ea9f6c-bdc7-457c-8606-01760f19990b] Socket close event received\n2025-10-28 08:28:28.396 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d0ea9f6c-bdc7-457c-8606-01760f19990b] Socket closed without exit code\n2025-10-28 08:29:28.406 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:29:28.408 [info] [command][3eedf0be-8602-4ac8-ae86-035e5fef3b1b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3eedf0be-8602-4ac8-ae86-035e5fef3b1b""}\n2025-10-28 08:29:28.408 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][24bf43b6-fb5b-424c-8a50-ef871d7d66da] remote server not configured\n2025-10-28 08:29:28.409 [error] [command][3eedf0be-8602-4ac8-ae86-035e5fef3b1b] Socket error: Error: read ECONNRESET\n2025-10-28 08:29:28.409 [info] [command][3eedf0be-8602-4ac8-ae86-035e5fef3b1b] Socket close event received\n2025-10-28 08:29:28.409 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3eedf0be-8602-4ac8-ae86-035e5fef3b1b] Socket closed without exit code\n2025-10-28 08:30:28.419 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:30:28.421 [info] [command][40111338-4b93-436a-896d-ce1954fe01a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""40111338-4b93-436a-896d-ce1954fe01a2""}\n2025-10-28 08:30:28.422 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d7690c31-8b90-4812-b746-2621ffd5869e] remote server not configured\n2025-10-28 08:30:28.422 [error] [command][40111338-4b93-436a-896d-ce1954fe01a2] Socket error: Error: read ECONNRESET\n2025-10-28 08:30:28.423 [info] [command][40111338-4b93-436a-896d-ce1954fe01a2] Socket close event received\n2025-10-28 08:30:28.423 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][40111338-4b93-436a-896d-ce1954fe01a2] Socket closed without exit code\n2025-10-28 08:31:28.425 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:31:28.427 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][53d67d38-6a89-4c55-950e-6bb5ab64b31e] remote server not configured\n2025-10-28 08:31:28.427 [info] [command][17a72fc4-67af-4fc6-b8eb-139149eb9a7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""17a72fc4-67af-4fc6-b8eb-139149eb9a7a""}\n2025-10-28 08:31:28.428 [error] [command][17a72fc4-67af-4fc6-b8eb-139149eb9a7a] Socket error: Error: read ECONNRESET\n2025-10-28 08:31:28.428 [info] [command][17a72fc4-67af-4fc6-b8eb-139149eb9a7a] Socket close event received\n2025-10-28 08:31:28.428 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][17a72fc4-67af-4fc6-b8eb-139149eb9a7a] Socket closed without exit code\n2025-10-28 08:32:28.434 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:32:28.436 [info] [command][f39dfb0b-ec91-49a6-99b0-955f5d9c5da7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f39dfb0b-ec91-49a6-99b0-955f5d9c5da7""}\n2025-10-28 08:32:28.436 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][638efb78-b695-45e6-865a-b1cc8fcf8b06] remote server not configured\n2025-10-28 08:32:28.437 [error] [command][f39dfb0b-ec91-49a6-99b0-955f5d9c5da7] Socket error: Error: read ECONNRESET\n2025-10-28 08:32:28.437 [info] [command][f39dfb0b-ec91-49a6-99b0-955f5d9c5da7] Socket close event received\n2025-10-28 08:32:28.437 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f39dfb0b-ec91-49a6-99b0-955f5d9c5da7] Socket closed without exit code\n2025-10-28 08:33:28.448 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:33:28.449 [info] [command][df1204d2-70b7-4bcc-8173-d696144ecce2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""df1204d2-70b7-4bcc-8173-d696144ecce2""}\n2025-10-28 08:33:28.450 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d174d288-3a3a-49e3-a9e2-016c7407dcaf] remote server not configured\n2025-10-28 08:33:28.450 [error] [command][df1204d2-70b7-4bcc-8173-d696144ecce2] Socket error: Error: read ECONNRESET\n2025-10-28 08:33:28.451 [info] [command][df1204d2-70b7-4bcc-8173-d696144ecce2] Socket close event received\n2025-10-28 08:33:28.451 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][df1204d2-70b7-4bcc-8173-d696144ecce2] Socket closed without exit code\n2025-10-28 08:34:28.461 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:34:28.463 [info] [command][35a0a066-6c4d-48ef-96db-df946ebdc08b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""35a0a066-6c4d-48ef-96db-df946ebdc08b""}\n2025-10-28 08:34:28.464 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2c03559b-b514-4c4a-84f1-9d1813153257] remote server not configured\n2025-10-28 08:34:28.464 [error] [command][35a0a066-6c4d-48ef-96db-df946ebdc08b] Socket error: Error: read ECONNRESET\n2025-10-28 08:34:28.465 [info] [command][35a0a066-6c4d-48ef-96db-df946ebdc08b] Socket close event received\n2025-10-28 08:34:28.465 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][35a0a066-6c4d-48ef-96db-df946ebdc08b] Socket closed without exit code\n2025-10-28 08:35:28.471 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:35:28.474 [info] [command][e7c7cc51-8a4d-4769-8c55-b0b65a727ccd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e7c7cc51-8a4d-4769-8c55-b0b65a727ccd""}\n2025-10-28 08:35:28.475 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c964a3ea-8c76-4a2f-b2a3-616fbbb8a261] remote server not configured\n2025-10-28 08:35:28.475 [error] [command][e7c7cc51-8a4d-4769-8c55-b0b65a727ccd] Socket error: Error: read ECONNRESET\n2025-10-28 08:35:28.476 [info] [command][e7c7cc51-8a4d-4769-8c55-b0b65a727ccd] Socket close event received\n2025-10-28 08:35:28.476 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e7c7cc51-8a4d-4769-8c55-b0b65a727ccd] Socket closed without exit code\n2025-10-28 08:36:28.482 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:36:28.484 [info] [command][523d8c9c-13f4-4253-b9e3-a817eacf1774] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""523d8c9c-13f4-4253-b9e3-a817eacf1774""}\n2025-10-28 08:36:28.485 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f5874269-694d-481e-8441-751eaa0179dc] remote server not configured\n2025-10-28 08:36:28.486 [error] [command][523d8c9c-13f4-4253-b9e3-a817eacf1774] Socket error: Error: read ECONNRESET\n2025-10-28 08:36:28.486 [info] [command][523d8c9c-13f4-4253-b9e3-a817eacf1774] Socket close event received\n2025-10-28 08:36:28.486 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][523d8c9c-13f4-4253-b9e3-a817eacf1774] Socket closed without exit code\n2025-10-28 08:37:28.496 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:37:28.499 [info] [command][a430bb0d-136a-4e23-947e-4429a68eb0f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a430bb0d-136a-4e23-947e-4429a68eb0f8""}\n2025-10-28 08:37:28.500 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a3d57fb3-c0ad-4fa1-ac2f-f2761dfd7ea6] remote server not configured\n2025-10-28 08:37:28.501 [error] [command][a430bb0d-136a-4e23-947e-4429a68eb0f8] Socket error: Error: read ECONNRESET\n2025-10-28 08:37:28.501 [info] [command][a430bb0d-136a-4e23-947e-4429a68eb0f8] Socket close event received\n2025-10-28 08:37:28.501 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a430bb0d-136a-4e23-947e-4429a68eb0f8] Socket closed without exit code\n2025-10-28 08:38:28.511 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:38:28.513 [info] [command][0c3943bc-8b71-415f-a986-8b76f1d097f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0c3943bc-8b71-415f-a986-8b76f1d097f6""}\n2025-10-28 08:38:28.513 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e0d96321-edc8-4635-ad90-c43f9443a9c7] remote server not configured\n2025-10-28 08:38:28.514 [error] [command][0c3943bc-8b71-415f-a986-8b76f1d097f6] Socket error: Error: read ECONNRESET\n2025-10-28 08:38:28.514 [info] [command][0c3943bc-8b71-415f-a986-8b76f1d097f6] Socket close event received\n2025-10-28 08:38:28.515 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0c3943bc-8b71-415f-a986-8b76f1d097f6] Socket closed without exit code\n2025-10-28 08:39:28.521 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:39:28.524 [info] [command][1edebfad-c35a-488c-b0df-a1a272740f54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1edebfad-c35a-488c-b0df-a1a272740f54""}\n2025-10-28 08:39:28.525 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bc57b96c-c101-411a-a86b-0546c4756d74] remote server not configured\n2025-10-28 08:39:28.525 [error] [command][1edebfad-c35a-488c-b0df-a1a272740f54] Socket error: Error: read ECONNRESET\n2025-10-28 08:39:28.525 [info] [command][1edebfad-c35a-488c-b0df-a1a272740f54] Socket close event received\n2025-10-28 08:39:28.525 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1edebfad-c35a-488c-b0df-a1a272740f54] Socket closed without exit code\n2025-10-28 08:40:28.527 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:40:28.529 [info] [command][ee4fff30-9ece-4630-9ea9-d764eced4e03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ee4fff30-9ece-4630-9ea9-d764eced4e03""}\n2025-10-28 08:40:28.530 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][55027128-3228-4729-bf5d-1238c20bd949] remote server not configured\n2025-10-28 08:40:28.530 [error] [command][ee4fff30-9ece-4630-9ea9-d764eced4e03] Socket error: Error: read ECONNRESET\n2025-10-28 08:40:28.531 [info] [command][ee4fff30-9ece-4630-9ea9-d764eced4e03] Socket close event received\n2025-10-28 08:40:28.531 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ee4fff30-9ece-4630-9ea9-d764eced4e03] Socket closed without exit code\n2025-10-28 08:41:28.541 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:41:28.543 [info] [command][075e08a1-89c0-4a53-bc42-ff7057464dd9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""075e08a1-89c0-4a53-bc42-ff7057464dd9""}\n2025-10-28 08:41:28.544 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a85e5fd0-ff72-49cb-885b-a10243e422f1] remote server not configured\n2025-10-28 08:41:28.544 [error] [command][075e08a1-89c0-4a53-bc42-ff7057464dd9] Socket error: Error: read ECONNRESET\n2025-10-28 08:41:28.544 [info] [command][075e08a1-89c0-4a53-bc42-ff7057464dd9] Socket close event received\n2025-10-28 08:41:28.545 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][075e08a1-89c0-4a53-bc42-ff7057464dd9] Socket closed without exit code\n2025-10-28 08:42:28.555 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:42:28.556 [info] [command][31ddc765-aae4-44d7-9202-4bdf131ac3cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""31ddc765-aae4-44d7-9202-4bdf131ac3cf""}\n2025-10-28 08:42:28.557 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e5354da5-da97-4251-97e8-4cd9a0ea3eb7] remote server not configured\n2025-10-28 08:42:28.558 [error] [command][31ddc765-aae4-44d7-9202-4bdf131ac3cf] Socket error: Error: read ECONNRESET\n2025-10-28 08:42:28.558 [info] [command][31ddc765-aae4-44d7-9202-4bdf131ac3cf] Socket close event received\n2025-10-28 08:42:28.558 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][31ddc765-aae4-44d7-9202-4bdf131ac3cf] Socket closed without exit code\n2025-10-28 08:43:28.567 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:43:28.569 [info] [command][fd742239-1555-4ff1-b34b-b222cc6b921e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fd742239-1555-4ff1-b34b-b222cc6b921e""}\n2025-10-28 08:43:28.569 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][794681ad-1701-4c40-b423-6c861a3475fa] remote server not configured\n2025-10-28 08:43:28.570 [error] [command][fd742239-1555-4ff1-b34b-b222cc6b921e] Socket error: Error: read ECONNRESET\n2025-10-28 08:43:28.570 [info] [command][fd742239-1555-4ff1-b34b-b222cc6b921e] Socket close event received\n2025-10-28 08:43:28.570 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fd742239-1555-4ff1-b34b-b222cc6b921e] Socket closed without exit code\n2025-10-28 08:44:28.576 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:44:28.578 [info] [command][d2755ad6-c87e-48b8-a4e9-543ebabf47b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d2755ad6-c87e-48b8-a4e9-543ebabf47b5""}\n2025-10-28 08:44:28.579 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][03dfb52e-58b3-4124-b115-221a30fdc736] remote server not configured\n2025-10-28 08:44:28.579 [error] [command][d2755ad6-c87e-48b8-a4e9-543ebabf47b5] Socket error: Error: read ECONNRESET\n2025-10-28 08:44:28.579 [info] [command][d2755ad6-c87e-48b8-a4e9-543ebabf47b5] Socket close event received\n2025-10-28 08:44:28.580 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d2755ad6-c87e-48b8-a4e9-543ebabf47b5] Socket closed without exit code\n2025-10-28 08:45:28.587 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:45:28.590 [info] [command][354bd457-f729-4939-8f89-594082bd0eb9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""354bd457-f729-4939-8f89-594082bd0eb9""}\n2025-10-28 08:45:28.591 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][82ba25a5-e3ea-499d-8e07-ab8d269bbe8b] remote server not configured\n2025-10-28 08:45:28.591 [error] [command][354bd457-f729-4939-8f89-594082bd0eb9] Socket error: Error: read ECONNRESET\n2025-10-28 08:45:28.592 [info] [command][354bd457-f729-4939-8f89-594082bd0eb9] Socket close event received\n2025-10-28 08:45:28.592 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][354bd457-f729-4939-8f89-594082bd0eb9] Socket closed without exit code\n2025-10-28 08:46:28.599 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:46:28.602 [info] [command][f46311a9-3400-43ca-ba4d-0dca73556427] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f46311a9-3400-43ca-ba4d-0dca73556427""}\n2025-10-28 08:46:28.603 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2c28dd07-3cbd-4a2c-ad8a-6333a7b60cee] remote server not configured\n2025-10-28 08:46:28.603 [error] [command][f46311a9-3400-43ca-ba4d-0dca73556427] Socket error: Error: read ECONNRESET\n2025-10-28 08:46:28.603 [info] [command][f46311a9-3400-43ca-ba4d-0dca73556427] Socket close event received\n2025-10-28 08:46:28.604 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f46311a9-3400-43ca-ba4d-0dca73556427] Socket closed without exit code\n2025-10-28 08:47:28.614 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:47:28.616 [info] [command][4f0dbe60-2e36-4fc1-ae09-8e296041bde3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4f0dbe60-2e36-4fc1-ae09-8e296041bde3""}\n2025-10-28 08:47:28.616 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][be8cb128-9b16-4bf4-9515-af4497b0eefb] remote server not configured\n2025-10-28 08:47:28.617 [error] [command][4f0dbe60-2e36-4fc1-ae09-8e296041bde3] Socket error: Error: read ECONNRESET\n2025-10-28 08:47:28.617 [info] [command][4f0dbe60-2e36-4fc1-ae09-8e296041bde3] Socket close event received\n2025-10-28 08:47:28.617 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4f0dbe60-2e36-4fc1-ae09-8e296041bde3] Socket closed without exit code\n2025-10-28 08:48:28.627 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:48:28.629 [info] [command][9bbaad23-5d77-4894-bf50-92ac2a65191b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9bbaad23-5d77-4894-bf50-92ac2a65191b""}\n2025-10-28 08:48:28.630 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f54c32b1-d73a-4e90-abf4-32d61160af28] remote server not configured\n2025-10-28 08:48:28.630 [error] [command][9bbaad23-5d77-4894-bf50-92ac2a65191b] Socket error: Error: read ECONNRESET\n2025-10-28 08:48:28.631 [info] [command][9bbaad23-5d77-4894-bf50-92ac2a65191b] Socket close event received\n2025-10-28 08:48:28.631 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9bbaad23-5d77-4894-bf50-92ac2a65191b] Socket closed without exit code\n2025-10-28 08:49:28.641 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:49:28.643 [info] [command][156dab93-94c1-460f-865b-a89ad4ccc368] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""156dab93-94c1-460f-865b-a89ad4ccc368""}\n2025-10-28 08:49:28.644 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f33a4c7d-4a44-4a94-ba7f-164cb9ef8fca] remote server not configured\n2025-10-28 08:49:28.644 [error] [command][156dab93-94c1-460f-865b-a89ad4ccc368] Socket error: Error: read ECONNRESET\n2025-10-28 08:49:28.644 [info] [command][156dab93-94c1-460f-865b-a89ad4ccc368] Socket close event received\n2025-10-28 08:49:28.645 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][156dab93-94c1-460f-865b-a89ad4ccc368] Socket closed without exit code\n2025-10-28 08:50:28.646 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:50:28.649 [info] [command][884ca944-bae9-4687-8b35-c8a037d02dbb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""884ca944-bae9-4687-8b35-c8a037d02dbb""}\n2025-10-28 08:50:28.649 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][00b612b1-8feb-4dbc-8f38-51e61f9054ba] remote server not configured\n2025-10-28 08:50:28.650 [error] [command][884ca944-bae9-4687-8b35-c8a037d02dbb] Socket error: Error: read ECONNRESET\n2025-10-28 08:50:28.650 [info] [command][884ca944-bae9-4687-8b35-c8a037d02dbb] Socket close event received\n2025-10-28 08:50:28.650 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][884ca944-bae9-4687-8b35-c8a037d02dbb] Socket closed without exit code\n2025-10-28 08:51:28.659 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:51:28.661 [info] [command][d631795c-82a4-45e7-8671-b5ea6760b2ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d631795c-82a4-45e7-8671-b5ea6760b2ba""}\n2025-10-28 08:51:28.662 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c5450465-bc77-4736-acb8-d96dd90ead2a] remote server not configured\n2025-10-28 08:51:28.662 [error] [command][d631795c-82a4-45e7-8671-b5ea6760b2ba] Socket error: Error: read ECONNRESET\n2025-10-28 08:51:28.662 [info] [command][d631795c-82a4-45e7-8671-b5ea6760b2ba] Socket close event received\n2025-10-28 08:51:28.663 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d631795c-82a4-45e7-8671-b5ea6760b2ba] Socket closed without exit code\n2025-10-28 08:52:28.671 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:52:28.673 [info] [command][5fbbf934-c076-4703-b4f3-8e20223ac8ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5fbbf934-c076-4703-b4f3-8e20223ac8ed""}\n2025-10-28 08:52:28.674 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][57076cf3-b9c0-4c6b-b9db-9cb6932aa4cb] remote server not configured\n2025-10-28 08:52:28.674 [error] [command][5fbbf934-c076-4703-b4f3-8e20223ac8ed] Socket error: Error: read ECONNRESET\n2025-10-28 08:52:28.674 [info] [command][5fbbf934-c076-4703-b4f3-8e20223ac8ed] Socket close event received\n2025-10-28 08:52:28.675 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5fbbf934-c076-4703-b4f3-8e20223ac8ed] Socket closed without exit code\n2025-10-28 08:53:28.680 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:53:28.683 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][35304d4e-ea57-4d2c-be15-dd869e6c37ae] remote server not configured\n2025-10-28 08:53:28.684 [info] [command][1ae940b8-86ce-4c08-9bf3-01ad2908112d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1ae940b8-86ce-4c08-9bf3-01ad2908112d""}\n2025-10-28 08:53:28.685 [error] [command][1ae940b8-86ce-4c08-9bf3-01ad2908112d] Socket error: Error: read ECONNRESET\n2025-10-28 08:53:28.685 [info] [command][1ae940b8-86ce-4c08-9bf3-01ad2908112d] Socket close event received\n2025-10-28 08:53:28.685 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1ae940b8-86ce-4c08-9bf3-01ad2908112d] Socket closed without exit code\n2025-10-28 08:54:28.695 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:54:28.697 [info] [command][4d56c821-fbc2-4498-9770-4cedf034181c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4d56c821-fbc2-4498-9770-4cedf034181c""}\n2025-10-28 08:54:28.698 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b0601c77-5a0a-4cca-9f83-760c569f8dc8] remote server not configured\n2025-10-28 08:54:28.699 [error] [command][4d56c821-fbc2-4498-9770-4cedf034181c] Socket error: Error: read ECONNRESET\n2025-10-28 08:54:28.699 [info] [command][4d56c821-fbc2-4498-9770-4cedf034181c] Socket close event received\n2025-10-28 08:54:28.700 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4d56c821-fbc2-4498-9770-4cedf034181c] Socket closed without exit code\n2025-10-28 08:55:28.701 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:55:28.704 [info] [command][12f02edf-557c-479e-8068-062296147676] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""12f02edf-557c-479e-8068-062296147676""}\n2025-10-28 08:55:28.704 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][16dc7580-fba3-4f42-9e24-74325c25442b] remote server not configured\n2025-10-28 08:55:28.705 [error] [command][12f02edf-557c-479e-8068-062296147676] Socket error: Error: read ECONNRESET\n2025-10-28 08:55:28.705 [info] [command][12f02edf-557c-479e-8068-062296147676] Socket close event received\n2025-10-28 08:55:28.705 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][12f02edf-557c-479e-8068-062296147676] Socket closed without exit code\n2025-10-28 08:56:28.715 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:56:28.717 [info] [command][4738d958-cb9d-48c7-a260-4537aa2544fb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4738d958-cb9d-48c7-a260-4537aa2544fb""}\n2025-10-28 08:56:28.717 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][85d7da3b-a58b-4bb5-9293-db4f012ea88c] remote server not configured\n2025-10-28 08:56:28.718 [error] [command][4738d958-cb9d-48c7-a260-4537aa2544fb] Socket error: Error: read ECONNRESET\n2025-10-28 08:56:28.718 [info] [command][4738d958-cb9d-48c7-a260-4537aa2544fb] Socket close event received\n2025-10-28 08:56:28.718 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4738d958-cb9d-48c7-a260-4537aa2544fb] Socket closed without exit code\n2025-10-28 08:57:28.728 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:57:28.730 [info] [command][2ecec917-ff27-4698-9a96-7e660639cd1b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2ecec917-ff27-4698-9a96-7e660639cd1b""}\n2025-10-28 08:57:28.731 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][03131d25-ecbb-434b-ad1a-76e2d0770382] remote server not configured\n2025-10-28 08:57:28.732 [error] [command][2ecec917-ff27-4698-9a96-7e660639cd1b] Socket error: Error: read ECONNRESET\n2025-10-28 08:57:28.732 [info] [command][2ecec917-ff27-4698-9a96-7e660639cd1b] Socket close event received\n2025-10-28 08:57:28.732 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2ecec917-ff27-4698-9a96-7e660639cd1b] Socket closed without exit code\n2025-10-28 08:58:28.740 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:58:28.741 [info] [command][4f32aee3-a3ce-4d95-a58b-cce5e6d0de5a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4f32aee3-a3ce-4d95-a58b-cce5e6d0de5a""}\n2025-10-28 08:58:28.742 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][94a647a4-97cc-4c25-b1d6-4b4aec665ba0] remote server not configured\n2025-10-28 08:58:28.742 [error] [command][4f32aee3-a3ce-4d95-a58b-cce5e6d0de5a] Socket error: Error: read ECONNRESET\n2025-10-28 08:58:28.743 [info] [command][4f32aee3-a3ce-4d95-a58b-cce5e6d0de5a] Socket close event received\n2025-10-28 08:58:28.743 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4f32aee3-a3ce-4d95-a58b-cce5e6d0de5a] Socket closed without exit code\n2025-10-28 08:59:28.753 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 08:59:28.756 [info] [command][0192dde4-2f38-46e5-bf1c-ccac898d8e4b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0192dde4-2f38-46e5-bf1c-ccac898d8e4b""}\n2025-10-28 08:59:28.756 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][08960ea7-2f22-4c89-900a-f9ae09eb4663] remote server not configured\n2025-10-28 08:59:28.757 [error] [command][0192dde4-2f38-46e5-bf1c-ccac898d8e4b] Socket error: Error: read ECONNRESET\n2025-10-28 08:59:28.757 [info] [command][0192dde4-2f38-46e5-bf1c-ccac898d8e4b] Socket close event received\n2025-10-28 08:59:28.757 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0192dde4-2f38-46e5-bf1c-ccac898d8e4b] Socket closed without exit code\n2025-10-28 09:00:28.767 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:00:28.770 [info] [command][c3d65322-0c76-4116-a689-ac76525ef6fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c3d65322-0c76-4116-a689-ac76525ef6fa""}\n2025-10-28 09:00:28.771 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][040770d4-1465-4365-afcd-f50d5d9f325a] remote server not configured\n2025-10-28 09:00:28.772 [error] [command][c3d65322-0c76-4116-a689-ac76525ef6fa] Socket error: Error: read ECONNRESET\n2025-10-28 09:00:28.772 [info] [command][c3d65322-0c76-4116-a689-ac76525ef6fa] Socket close event received\n2025-10-28 09:00:28.773 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c3d65322-0c76-4116-a689-ac76525ef6fa] Socket closed without exit code\n2025-10-28 09:01:28.782 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:01:28.784 [info] [command][4a29cafe-b3f1-462e-a5cb-1aafe2156c48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4a29cafe-b3f1-462e-a5cb-1aafe2156c48""}\n2025-10-28 09:01:28.785 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][738c53c8-5f7e-4cc7-bdd4-ed9ed818cdf2] remote server not configured\n2025-10-28 09:01:28.785 [error] [command][4a29cafe-b3f1-462e-a5cb-1aafe2156c48] Socket error: Error: read ECONNRESET\n2025-10-28 09:01:28.785 [info] [command][4a29cafe-b3f1-462e-a5cb-1aafe2156c48] Socket close event received\n2025-10-28 09:01:28.785 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4a29cafe-b3f1-462e-a5cb-1aafe2156c48] Socket closed without exit code\n2025-10-28 09:02:28.795 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:02:28.797 [info] [command][62fb3155-29ab-4e20-b49a-b0c803c9f9fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""62fb3155-29ab-4e20-b49a-b0c803c9f9fa""}\n2025-10-28 09:02:28.797 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][63b182aa-8639-42d3-a3c6-e06d53feabe0] remote server not configured\n2025-10-28 09:02:28.798 [error] [command][62fb3155-29ab-4e20-b49a-b0c803c9f9fa] Socket error: Error: read ECONNRESET\n2025-10-28 09:02:28.798 [info] [command][62fb3155-29ab-4e20-b49a-b0c803c9f9fa] Socket close event received\n2025-10-28 09:02:28.799 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][62fb3155-29ab-4e20-b49a-b0c803c9f9fa] Socket closed without exit code\n2025-10-28 09:03:28.809 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:03:28.811 [info] [command][d6695932-f646-4537-9efe-c6b65a49fd99] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d6695932-f646-4537-9efe-c6b65a49fd99""}\n2025-10-28 09:03:28.812 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][07a4326f-4324-49ec-9f02-ad61eb10dfc5] remote server not configured\n2025-10-28 09:03:28.812 [error] [command][d6695932-f646-4537-9efe-c6b65a49fd99] Socket error: Error: read ECONNRESET\n2025-10-28 09:03:28.812 [info] [command][d6695932-f646-4537-9efe-c6b65a49fd99] Socket close event received\n2025-10-28 09:03:28.813 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d6695932-f646-4537-9efe-c6b65a49fd99] Socket closed without exit code\n2025-10-28 09:04:28.823 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:04:28.825 [info] [command][6b657ee2-c870-4812-b8c0-3c5b1ec54323] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6b657ee2-c870-4812-b8c0-3c5b1ec54323""}\n2025-10-28 09:04:28.825 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3995272e-54f0-42d0-a65a-b0b3f5b0deff] remote server not configured\n2025-10-28 09:04:28.826 [error] [command][6b657ee2-c870-4812-b8c0-3c5b1ec54323] Socket error: Error: read ECONNRESET\n2025-10-28 09:04:28.827 [info] [command][6b657ee2-c870-4812-b8c0-3c5b1ec54323] Socket close event received\n2025-10-28 09:04:28.827 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6b657ee2-c870-4812-b8c0-3c5b1ec54323] Socket closed without exit code\n2025-10-28 09:05:28.837 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:05:28.840 [info] [command][370c3085-ecc3-4768-9e74-4521085dec09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""370c3085-ecc3-4768-9e74-4521085dec09""}\n2025-10-28 09:05:28.840 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ef85671d-e5f8-49cd-85f8-21fe7f0edcdc] remote server not configured\n2025-10-28 09:05:28.841 [error] [command][370c3085-ecc3-4768-9e74-4521085dec09] Socket error: Error: read ECONNRESET\n2025-10-28 09:05:28.841 [info] [command][370c3085-ecc3-4768-9e74-4521085dec09] Socket close event received\n2025-10-28 09:05:28.841 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][370c3085-ecc3-4768-9e74-4521085dec09] Socket closed without exit code\n2025-10-28 09:06:28.847 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:06:28.850 [info] [command][f3542f10-2c03-43ac-9d02-b5b39fb9982c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f3542f10-2c03-43ac-9d02-b5b39fb9982c""}\n2025-10-28 09:06:28.851 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ccbaf364-cf3f-42d6-a0e4-8710514d17cc] remote server not configured\n2025-10-28 09:06:28.851 [error] [command][f3542f10-2c03-43ac-9d02-b5b39fb9982c] Socket error: Error: read ECONNRESET\n2025-10-28 09:06:28.852 [info] [command][f3542f10-2c03-43ac-9d02-b5b39fb9982c] Socket close event received\n2025-10-28 09:06:28.852 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f3542f10-2c03-43ac-9d02-b5b39fb9982c] Socket closed without exit code\n2025-10-28 09:07:28.861 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:07:28.864 [info] [command][d4c5d45c-1c90-474e-b93e-ef21d5e05ac9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d4c5d45c-1c90-474e-b93e-ef21d5e05ac9""}\n2025-10-28 09:07:28.865 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f8fdc6c8-99bc-42d9-931f-0b138fce1b9a] remote server not configured\n2025-10-28 09:07:28.865 [error] [command][d4c5d45c-1c90-474e-b93e-ef21d5e05ac9] Socket error: Error: read ECONNRESET\n2025-10-28 09:07:28.865 [info] [command][d4c5d45c-1c90-474e-b93e-ef21d5e05ac9] Socket close event received\n2025-10-28 09:07:28.865 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d4c5d45c-1c90-474e-b93e-ef21d5e05ac9] Socket closed without exit code\n2025-10-28 09:08:28.876 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:08:28.878 [info] [command][5021a4bd-6d2c-4273-ba4a-5fdb076904ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5021a4bd-6d2c-4273-ba4a-5fdb076904ed""}\n2025-10-28 09:08:28.878 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a525aa61-1f22-40ab-b2d4-ad1182c15fee] remote server not configured\n2025-10-28 09:08:28.879 [error] [command][5021a4bd-6d2c-4273-ba4a-5fdb076904ed] Socket error: Error: read ECONNRESET\n2025-10-28 09:08:28.879 [info] [command][5021a4bd-6d2c-4273-ba4a-5fdb076904ed] Socket close event received\n2025-10-28 09:08:28.879 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5021a4bd-6d2c-4273-ba4a-5fdb076904ed] Socket closed without exit code\n2025-10-28 09:09:28.889 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:09:28.892 [info] [command][dec0a706-f7a6-4c11-8e14-6fe4e285f25a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dec0a706-f7a6-4c11-8e14-6fe4e285f25a""}\n2025-10-28 09:09:28.893 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c3048281-5285-4f1d-bb0f-339d994657fa] remote server not configured\n2025-10-28 09:09:28.893 [error] [command][dec0a706-f7a6-4c11-8e14-6fe4e285f25a] Socket error: Error: read ECONNRESET\n2025-10-28 09:09:28.893 [info] [command][dec0a706-f7a6-4c11-8e14-6fe4e285f25a] Socket close event received\n2025-10-28 09:09:28.894 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dec0a706-f7a6-4c11-8e14-6fe4e285f25a] Socket closed without exit code\n2025-10-28 09:10:28.904 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:10:28.907 [info] [command][f6072b52-576e-484e-9cf8-deabc86aa20f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f6072b52-576e-484e-9cf8-deabc86aa20f""}\n2025-10-28 09:10:28.907 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f332aa71-33ca-41c5-898f-b224ead9bb3e] remote server not configured\n2025-10-28 09:10:28.908 [error] [command][f6072b52-576e-484e-9cf8-deabc86aa20f] Socket error: Error: read ECONNRESET\n2025-10-28 09:10:28.908 [info] [command][f6072b52-576e-484e-9cf8-deabc86aa20f] Socket close event received\n2025-10-28 09:10:28.908 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f6072b52-576e-484e-9cf8-deabc86aa20f] Socket closed without exit code\n2025-10-28 09:11:28.909 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:11:28.912 [info] [command][5e098813-7897-4dc2-adc7-bcf92980e60e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5e098813-7897-4dc2-adc7-bcf92980e60e""}\n2025-10-28 09:11:28.912 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ff88c2c8-f9fd-41c6-b7f7-079ce34dda89] remote server not configured\n2025-10-28 09:11:28.913 [error] [command][5e098813-7897-4dc2-adc7-bcf92980e60e] Socket error: Error: read ECONNRESET\n2025-10-28 09:11:28.913 [info] [command][5e098813-7897-4dc2-adc7-bcf92980e60e] Socket close event received\n2025-10-28 09:11:28.913 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5e098813-7897-4dc2-adc7-bcf92980e60e] Socket closed without exit code\n2025-10-28 09:12:28.922 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:12:28.923 [info] [command][04bd2f7d-e586-4e6e-be5e-2f39d0354efb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""04bd2f7d-e586-4e6e-be5e-2f39d0354efb""}\n2025-10-28 09:12:28.924 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cbad8d8d-f681-4f75-b314-4846b4a2ec9f] remote server not configured\n2025-10-28 09:12:28.925 [error] [command][04bd2f7d-e586-4e6e-be5e-2f39d0354efb] Socket error: Error: read ECONNRESET\n2025-10-28 09:12:28.925 [info] [command][04bd2f7d-e586-4e6e-be5e-2f39d0354efb] Socket close event received\n2025-10-28 09:12:28.925 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][04bd2f7d-e586-4e6e-be5e-2f39d0354efb] Socket closed without exit code\n2025-10-28 09:13:28.927 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:13:28.928 [info] [command][5ced1a3a-fa23-4e8e-bcfa-9e763f647fc6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5ced1a3a-fa23-4e8e-bcfa-9e763f647fc6""}\n2025-10-28 09:13:28.929 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5c2e8c11-0948-4b05-8fad-e62e4dc0d64c] remote server not configured\n2025-10-28 09:13:28.930 [error] [command][5ced1a3a-fa23-4e8e-bcfa-9e763f647fc6] Socket error: Error: read ECONNRESET\n2025-10-28 09:13:28.930 [info] [command][5ced1a3a-fa23-4e8e-bcfa-9e763f647fc6] Socket close event received\n2025-10-28 09:13:28.930 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5ced1a3a-fa23-4e8e-bcfa-9e763f647fc6] Socket closed without exit code\n2025-10-28 09:14:28.940 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:14:28.941 [info] [command][5ff08d61-5c75-4769-a37c-99a0d8ff739c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5ff08d61-5c75-4769-a37c-99a0d8ff739c""}\n2025-10-28 09:14:28.942 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4f2bbc4c-0fad-4de1-bc66-63c69693ed53] remote server not configured\n2025-10-28 09:14:28.943 [error] [command][5ff08d61-5c75-4769-a37c-99a0d8ff739c] Socket error: Error: read ECONNRESET\n2025-10-28 09:14:28.943 [info] [command][5ff08d61-5c75-4769-a37c-99a0d8ff739c] Socket close event received\n2025-10-28 09:14:28.944 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5ff08d61-5c75-4769-a37c-99a0d8ff739c] Socket closed without exit code\n2025-10-28 09:15:28.952 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:15:28.954 [info] [command][ae8139eb-fab6-4f81-87f5-5af2b05ad8bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ae8139eb-fab6-4f81-87f5-5af2b05ad8bd""}\n2025-10-28 09:15:28.955 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][542a032f-409c-4fd5-ba6f-d8c6ee5be02f] remote server not configured\n2025-10-28 09:15:28.955 [error] [command][ae8139eb-fab6-4f81-87f5-5af2b05ad8bd] Socket error: Error: read ECONNRESET\n2025-10-28 09:15:28.956 [info] [command][ae8139eb-fab6-4f81-87f5-5af2b05ad8bd] Socket close event received\n2025-10-28 09:15:28.956 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ae8139eb-fab6-4f81-87f5-5af2b05ad8bd] Socket closed without exit code\n2025-10-28 09:16:28.966 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:16:28.969 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][60aaa9e3-5367-431c-a68f-92dbbb40762c] remote server not configured\n2025-10-28 09:16:28.970 [info] [command][b7a608d0-dd04-46f6-8500-0314793eab40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b7a608d0-dd04-46f6-8500-0314793eab40""}\n2025-10-28 09:16:28.970 [error] [command][b7a608d0-dd04-46f6-8500-0314793eab40] Socket error: Error: read ECONNRESET\n2025-10-28 09:16:28.970 [info] [command][b7a608d0-dd04-46f6-8500-0314793eab40] Socket close event received\n2025-10-28 09:16:28.970 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b7a608d0-dd04-46f6-8500-0314793eab40] Socket closed without exit code\n2025-10-28 09:17:28.977 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:17:28.979 [info] [command][ea4ebad1-156d-4c44-aef4-c6dcceaf65c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ea4ebad1-156d-4c44-aef4-c6dcceaf65c6""}\n2025-10-28 09:17:28.979 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][23212790-fad5-40e9-966c-fa9c0aec795e] remote server not configured\n2025-10-28 09:17:28.980 [error] [command][ea4ebad1-156d-4c44-aef4-c6dcceaf65c6] Socket error: Error: read ECONNRESET\n2025-10-28 09:17:28.980 [info] [command][ea4ebad1-156d-4c44-aef4-c6dcceaf65c6] Socket close event received\n2025-10-28 09:17:28.980 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ea4ebad1-156d-4c44-aef4-c6dcceaf65c6] Socket closed without exit code\n2025-10-28 09:18:28.988 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:18:28.989 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][248c6ad5-8320-4afb-b00a-f2b7c4a24002] remote server not configured\n2025-10-28 09:18:28.990 [info] [command][ae8cc125-6ec6-49d1-9891-da34d945cef0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ae8cc125-6ec6-49d1-9891-da34d945cef0""}\n2025-10-28 09:18:28.991 [error] [command][ae8cc125-6ec6-49d1-9891-da34d945cef0] Socket error: Error: read ECONNRESET\n2025-10-28 09:18:28.991 [info] [command][ae8cc125-6ec6-49d1-9891-da34d945cef0] Socket close event received\n2025-10-28 09:18:28.992 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ae8cc125-6ec6-49d1-9891-da34d945cef0] Socket closed without exit code\n2025-10-28 09:19:29.001 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:19:29.003 [info] [command][ad20788f-839e-492b-b97f-099b45c294ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ad20788f-839e-492b-b97f-099b45c294ae""}\n2025-10-28 09:19:29.004 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e07f61da-d8df-4c95-b468-9662f4fc92a4] remote server not configured\n2025-10-28 09:19:29.005 [error] [command][ad20788f-839e-492b-b97f-099b45c294ae] Socket error: Error: read ECONNRESET\n2025-10-28 09:19:29.005 [info] [command][ad20788f-839e-492b-b97f-099b45c294ae] Socket close event received\n2025-10-28 09:19:29.005 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ad20788f-839e-492b-b97f-099b45c294ae] Socket closed without exit code\n2025-10-28 09:20:29.008 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:20:29.011 [info] [command][ce618265-4ac5-4ace-823a-acf864f9b04a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ce618265-4ac5-4ace-823a-acf864f9b04a""}\n2025-10-28 09:20:29.011 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][242b1a98-7f13-401d-b7a6-d342882d3c4b] remote server not configured\n2025-10-28 09:20:29.012 [error] [command][ce618265-4ac5-4ace-823a-acf864f9b04a] Socket error: Error: read ECONNRESET\n2025-10-28 09:20:29.012 [info] [command][ce618265-4ac5-4ace-823a-acf864f9b04a] Socket close event received\n2025-10-28 09:20:29.012 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ce618265-4ac5-4ace-823a-acf864f9b04a] Socket closed without exit code\n2025-10-28 09:21:29.023 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:21:29.025 [info] [command][05efabad-c0ab-451a-94ad-1dec0d98f699] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""05efabad-c0ab-451a-94ad-1dec0d98f699""}\n2025-10-28 09:21:29.026 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][992a9034-aecf-4e46-970c-dd65fa53c03a] remote server not configured\n2025-10-28 09:21:29.027 [error] [command][05efabad-c0ab-451a-94ad-1dec0d98f699] Socket error: Error: read ECONNRESET\n2025-10-28 09:21:29.027 [info] [command][05efabad-c0ab-451a-94ad-1dec0d98f699] Socket close event received\n2025-10-28 09:21:29.027 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][05efabad-c0ab-451a-94ad-1dec0d98f699] Socket closed without exit code\n2025-10-28 09:22:29.037 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:22:29.040 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7eb083fe-7264-44df-9c37-0c65f18a9eba] remote server not configured\n2025-10-28 09:22:29.041 [info] [command][ed60a4d5-95c9-4804-8435-a47234fdb130] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ed60a4d5-95c9-4804-8435-a47234fdb130""}\n2025-10-28 09:22:29.042 [error] [command][ed60a4d5-95c9-4804-8435-a47234fdb130] Socket error: Error: read ECONNRESET\n2025-10-28 09:22:29.042 [info] [command][ed60a4d5-95c9-4804-8435-a47234fdb130] Socket close event received\n2025-10-28 09:22:29.042 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ed60a4d5-95c9-4804-8435-a47234fdb130] Socket closed without exit code\n2025-10-28 09:23:29.048 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:23:29.051 [info] [command][8da092dc-33b9-4207-a344-89547e434886] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8da092dc-33b9-4207-a344-89547e434886""}\n2025-10-28 09:23:29.052 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5f9510b8-ffb4-4a22-aeda-472775709415] remote server not configured\n2025-10-28 09:23:29.052 [error] [command][8da092dc-33b9-4207-a344-89547e434886] Socket error: Error: read ECONNRESET\n2025-10-28 09:23:29.052 [info] [command][8da092dc-33b9-4207-a344-89547e434886] Socket close event received\n2025-10-28 09:23:29.053 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8da092dc-33b9-4207-a344-89547e434886] Socket closed without exit code\n2025-10-28 09:24:29.060 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:24:29.062 [info] [command][f2df76f2-5df0-49f9-918f-f50cd1c71db2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f2df76f2-5df0-49f9-918f-f50cd1c71db2""}\n2025-10-28 09:24:29.063 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f8e0b947-88ac-470f-9e80-c68563ab769b] remote server not configured\n2025-10-28 09:24:29.063 [error] [command][f2df76f2-5df0-49f9-918f-f50cd1c71db2] Socket error: Error: read ECONNRESET\n2025-10-28 09:24:29.064 [info] [command][f2df76f2-5df0-49f9-918f-f50cd1c71db2] Socket close event received\n2025-10-28 09:24:29.064 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f2df76f2-5df0-49f9-918f-f50cd1c71db2] Socket closed without exit code\n2025-10-28 09:25:29.073 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:25:29.075 [info] [command][6678cce9-db56-4570-b1c9-0b1752ebb2e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6678cce9-db56-4570-b1c9-0b1752ebb2e9""}\n2025-10-28 09:25:29.076 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c41ee9a0-d8a0-4cce-8fb1-20422bcaa4da] remote server not configured\n2025-10-28 09:25:29.077 [error] [command][6678cce9-db56-4570-b1c9-0b1752ebb2e9] Socket error: Error: read ECONNRESET\n2025-10-28 09:25:29.077 [info] [command][6678cce9-db56-4570-b1c9-0b1752ebb2e9] Socket close event received\n2025-10-28 09:25:29.077 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6678cce9-db56-4570-b1c9-0b1752ebb2e9] Socket closed without exit code\n2025-10-28 09:26:29.086 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:26:29.088 [info] [command][6b798907-c411-4ea6-b605-96d411fb426a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6b798907-c411-4ea6-b605-96d411fb426a""}\n2025-10-28 09:26:29.089 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dda62674-ca43-4fda-b024-d135d390b393] remote server not configured\n2025-10-28 09:26:29.090 [error] [command][6b798907-c411-4ea6-b605-96d411fb426a] Socket error: Error: read ECONNRESET\n2025-10-28 09:26:29.090 [info] [command][6b798907-c411-4ea6-b605-96d411fb426a] Socket close event received\n2025-10-28 09:26:29.090 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6b798907-c411-4ea6-b605-96d411fb426a] Socket closed without exit code\n2025-10-28 09:27:29.090 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:27:29.092 [info] [command][987f026a-6e62-494c-93da-57f05ad4eb03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""987f026a-6e62-494c-93da-57f05ad4eb03""}\n2025-10-28 09:27:29.093 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7c216fbb-90a0-46e0-b7ec-880d18655002] remote server not configured\n2025-10-28 09:27:29.093 [error] [command][987f026a-6e62-494c-93da-57f05ad4eb03] Socket error: Error: read ECONNRESET\n2025-10-28 09:27:29.093 [info] [command][987f026a-6e62-494c-93da-57f05ad4eb03] Socket close event received\n2025-10-28 09:27:29.093 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][987f026a-6e62-494c-93da-57f05ad4eb03] Socket closed without exit code\n2025-10-28 09:28:29.096 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:28:29.097 [info] [command][a9055545-074a-4dc3-b294-764c5ab84efd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a9055545-074a-4dc3-b294-764c5ab84efd""}\n2025-10-28 09:28:29.098 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4887c87c-8d7c-4c2c-bd92-c5ca49f71069] remote server not configured\n2025-10-28 09:28:29.098 [error] [command][a9055545-074a-4dc3-b294-764c5ab84efd] Socket error: Error: read ECONNRESET\n2025-10-28 09:28:29.098 [info] [command][a9055545-074a-4dc3-b294-764c5ab84efd] Socket close event received\n2025-10-28 09:28:29.098 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a9055545-074a-4dc3-b294-764c5ab84efd] Socket closed without exit code\n2025-10-28 09:29:29.100 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:29:29.102 [info] [command][3335a2e0-3677-45a7-8104-0466b3044451] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3335a2e0-3677-45a7-8104-0466b3044451""}\n2025-10-28 09:29:29.103 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][91989d21-20f3-4dd0-a426-33f996f22882] remote server not configured\n2025-10-28 09:29:29.103 [error] [command][3335a2e0-3677-45a7-8104-0466b3044451] Socket error: Error: read ECONNRESET\n2025-10-28 09:29:29.104 [info] [command][3335a2e0-3677-45a7-8104-0466b3044451] Socket close event received\n2025-10-28 09:29:29.104 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3335a2e0-3677-45a7-8104-0466b3044451] Socket closed without exit code\n2025-10-28 09:30:29.107 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:30:29.109 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f8569181-cb53-44d4-a8f4-bc325b66c271] remote server not configured\n2025-10-28 09:30:29.110 [info] [command][bba5d05c-0e03-4052-8b11-c3dedb85a2e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bba5d05c-0e03-4052-8b11-c3dedb85a2e5""}\n2025-10-28 09:30:29.111 [error] [command][bba5d05c-0e03-4052-8b11-c3dedb85a2e5] Socket error: Error: read ECONNRESET\n2025-10-28 09:30:29.111 [info] [command][bba5d05c-0e03-4052-8b11-c3dedb85a2e5] Socket close event received\n2025-10-28 09:30:29.111 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bba5d05c-0e03-4052-8b11-c3dedb85a2e5] Socket closed without exit code\n2025-10-28 09:31:29.121 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:31:29.122 [info] [command][18dc691f-1d6c-4a97-ac23-d981dcbe9c48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""18dc691f-1d6c-4a97-ac23-d981dcbe9c48""}\n2025-10-28 09:31:29.123 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][38e7bfdc-8bdc-446f-800c-8df812bd8dfb] remote server not configured\n2025-10-28 09:31:29.124 [error] [command][18dc691f-1d6c-4a97-ac23-d981dcbe9c48] Socket error: Error: read ECONNRESET\n2025-10-28 09:31:29.124 [info] [command][18dc691f-1d6c-4a97-ac23-d981dcbe9c48] Socket close event received\n2025-10-28 09:31:29.125 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][18dc691f-1d6c-4a97-ac23-d981dcbe9c48] Socket closed without exit code\n2025-10-28 09:32:29.134 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:32:29.136 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b76aa539-ae39-4adb-b055-c7da8f1ee88a] remote server not configured\n2025-10-28 09:32:29.136 [info] [command][af37a7a0-9dc1-4f81-a22c-a2ae3cbb3540] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""af37a7a0-9dc1-4f81-a22c-a2ae3cbb3540""}\n2025-10-28 09:32:29.137 [error] [command][af37a7a0-9dc1-4f81-a22c-a2ae3cbb3540] Socket error: Error: read ECONNRESET\n2025-10-28 09:32:29.137 [info] [command][af37a7a0-9dc1-4f81-a22c-a2ae3cbb3540] Socket close event received\n2025-10-28 09:32:29.138 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][af37a7a0-9dc1-4f81-a22c-a2ae3cbb3540] Socket closed without exit code\n2025-10-28 09:33:29.147 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:33:29.150 [info] [command][80473b47-f065-4510-9cdc-90fd37c0ce30] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""80473b47-f065-4510-9cdc-90fd37c0ce30""}\n2025-10-28 09:33:29.150 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][afefb03f-99e2-425d-8889-b307d5b64935] remote server not configured\n2025-10-28 09:33:29.151 [error] [command][80473b47-f065-4510-9cdc-90fd37c0ce30] Socket error: Error: read ECONNRESET\n2025-10-28 09:33:29.151 [info] [command][80473b47-f065-4510-9cdc-90fd37c0ce30] Socket close event received\n2025-10-28 09:33:29.152 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][80473b47-f065-4510-9cdc-90fd37c0ce30] Socket closed without exit code\n2025-10-28 09:34:29.161 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:34:29.163 [info] [command][946c4d07-d47b-4e7f-9b4f-d1d7001fe6df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""946c4d07-d47b-4e7f-9b4f-d1d7001fe6df""}\n2025-10-28 09:34:29.164 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b4cbbf18-e5b5-44af-bf91-6bdfd96b73ea] remote server not configured\n2025-10-28 09:34:29.164 [error] [command][946c4d07-d47b-4e7f-9b4f-d1d7001fe6df] Socket error: Error: read ECONNRESET\n2025-10-28 09:34:29.165 [info] [command][946c4d07-d47b-4e7f-9b4f-d1d7001fe6df] Socket close event received\n2025-10-28 09:34:29.165 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][946c4d07-d47b-4e7f-9b4f-d1d7001fe6df] Socket closed without exit code\n2025-10-28 09:35:29.175 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:35:29.178 [info] [command][246f0270-3c75-4f43-ae4d-a579e620d083] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""246f0270-3c75-4f43-ae4d-a579e620d083""}\n2025-10-28 09:35:29.178 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][18181580-af27-4c44-b299-697b04e6c8f0] remote server not configured\n2025-10-28 09:35:29.179 [error] [command][246f0270-3c75-4f43-ae4d-a579e620d083] Socket error: Error: read ECONNRESET\n2025-10-28 09:35:29.179 [info] [command][246f0270-3c75-4f43-ae4d-a579e620d083] Socket close event received\n2025-10-28 09:35:29.179 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][246f0270-3c75-4f43-ae4d-a579e620d083] Socket closed without exit code\n2025-10-28 09:36:29.189 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:36:29.192 [info] [command][1ad4e4ac-503f-4c7d-9212-0d489995adaf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1ad4e4ac-503f-4c7d-9212-0d489995adaf""}\n2025-10-28 09:36:29.193 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a88b80c3-33ec-4a51-bef8-2ee3c0c804bb] remote server not configured\n2025-10-28 09:36:29.194 [error] [command][1ad4e4ac-503f-4c7d-9212-0d489995adaf] Socket error: Error: read ECONNRESET\n2025-10-28 09:36:29.194 [info] [command][1ad4e4ac-503f-4c7d-9212-0d489995adaf] Socket close event received\n2025-10-28 09:36:29.194 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1ad4e4ac-503f-4c7d-9212-0d489995adaf] Socket closed without exit code\n2025-10-28 09:37:29.204 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:37:29.207 [info] [command][f87cf25a-0c50-42d2-8a10-298b589ec440] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f87cf25a-0c50-42d2-8a10-298b589ec440""}\n2025-10-28 09:37:29.208 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][19571fa2-3c04-4a53-838f-4a48c59398bf] remote server not configured\n2025-10-28 09:37:29.208 [error] [command][f87cf25a-0c50-42d2-8a10-298b589ec440] Socket error: Error: read ECONNRESET\n2025-10-28 09:37:29.208 [info] [command][f87cf25a-0c50-42d2-8a10-298b589ec440] Socket close event received\n2025-10-28 09:37:29.209 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f87cf25a-0c50-42d2-8a10-298b589ec440] Socket closed without exit code\n2025-10-28 09:38:29.208 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:38:29.211 [info] [command][a5e818b6-976f-4c0c-9e76-7d175aeeb1ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a5e818b6-976f-4c0c-9e76-7d175aeeb1ae""}\n2025-10-28 09:38:29.212 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][30f82a16-57b8-4a3a-b04f-4406633dd93a] remote server not configured\n2025-10-28 09:38:29.212 [error] [command][a5e818b6-976f-4c0c-9e76-7d175aeeb1ae] Socket error: Error: read ECONNRESET\n2025-10-28 09:38:29.213 [info] [command][a5e818b6-976f-4c0c-9e76-7d175aeeb1ae] Socket close event received\n2025-10-28 09:38:29.213 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a5e818b6-976f-4c0c-9e76-7d175aeeb1ae] Socket closed without exit code\n2025-10-28 09:39:29.222 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:39:29.224 [info] [command][1ef57eac-ea8e-4950-89a4-daa148c5c30c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1ef57eac-ea8e-4950-89a4-daa148c5c30c""}\n2025-10-28 09:39:29.225 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b536891a-f553-4b49-b190-20394e14a135] remote server not configured\n2025-10-28 09:39:29.226 [error] [command][1ef57eac-ea8e-4950-89a4-daa148c5c30c] Socket error: Error: read ECONNRESET\n2025-10-28 09:39:29.226 [info] [command][1ef57eac-ea8e-4950-89a4-daa148c5c30c] Socket close event received\n2025-10-28 09:39:29.226 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1ef57eac-ea8e-4950-89a4-daa148c5c30c] Socket closed without exit code\n2025-10-28 09:40:29.232 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:40:29.235 [info] [command][61aac08d-32a4-48f0-a55a-5e6c91c3ca24] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""61aac08d-32a4-48f0-a55a-5e6c91c3ca24""}\n2025-10-28 09:40:29.235 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e3a54b06-107c-40e5-af90-6be88295a3f5] remote server not configured\n2025-10-28 09:40:29.236 [error] [command][61aac08d-32a4-48f0-a55a-5e6c91c3ca24] Socket error: Error: read ECONNRESET\n2025-10-28 09:40:29.236 [info] [command][61aac08d-32a4-48f0-a55a-5e6c91c3ca24] Socket close event received\n2025-10-28 09:40:29.237 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][61aac08d-32a4-48f0-a55a-5e6c91c3ca24] Socket closed without exit code\n2025-10-28 09:41:29.245 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:41:29.248 [info] [command][e3154b2e-5fca-4ca2-99e1-bd19a9e530a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e3154b2e-5fca-4ca2-99e1-bd19a9e530a3""}\n2025-10-28 09:41:29.249 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][943488a2-9c5e-4d02-b697-8dc6d44b9c7c] remote server not configured\n2025-10-28 09:41:29.249 [error] [command][e3154b2e-5fca-4ca2-99e1-bd19a9e530a3] Socket error: Error: read ECONNRESET\n2025-10-28 09:41:29.249 [info] [command][e3154b2e-5fca-4ca2-99e1-bd19a9e530a3] Socket close event received\n2025-10-28 09:41:29.250 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e3154b2e-5fca-4ca2-99e1-bd19a9e530a3] Socket closed without exit code\n2025-10-28 09:42:29.251 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:42:29.253 [info] [command][dc9eca0e-2920-4a94-a43a-e859df2bffd4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dc9eca0e-2920-4a94-a43a-e859df2bffd4""}\n2025-10-28 09:42:29.254 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1455e403-7e3d-4152-8e2f-84b261171bfc] remote server not configured\n2025-10-28 09:42:29.254 [error] [command][dc9eca0e-2920-4a94-a43a-e859df2bffd4] Socket error: Error: read ECONNRESET\n2025-10-28 09:42:29.254 [info] [command][dc9eca0e-2920-4a94-a43a-e859df2bffd4] Socket close event received\n2025-10-28 09:42:29.254 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dc9eca0e-2920-4a94-a43a-e859df2bffd4] Socket closed without exit code\n2025-10-28 09:43:29.385 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:43:29.386 [info] [command][809be945-eb71-4909-9b29-3e348f3d5bfd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""809be945-eb71-4909-9b29-3e348f3d5bfd""}\n2025-10-28 09:43:29.386 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2840652e-e56e-4625-b46f-49cd120f5f65] remote server not configured\n2025-10-28 09:43:29.387 [error] [command][809be945-eb71-4909-9b29-3e348f3d5bfd] Socket error: Error: read ECONNRESET\n2025-10-28 09:43:29.387 [info] [command][809be945-eb71-4909-9b29-3e348f3d5bfd] Socket close event received\n2025-10-28 09:43:29.387 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][809be945-eb71-4909-9b29-3e348f3d5bfd] Socket closed without exit code\n2025-10-28 09:44:29.391 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:44:29.392 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][2b833f66-285c-4f9a-8977-66c31db4ff87] remote server not configured\n2025-10-28 09:44:29.392 [info] [command][2b48082a-a7fe-47ec-8415-e9c5291798df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2b48082a-a7fe-47ec-8415-e9c5291798df""}\n2025-10-28 09:44:29.393 [error] [command][2b48082a-a7fe-47ec-8415-e9c5291798df] Socket error: Error: read ECONNRESET\n2025-10-28 09:44:29.393 [info] [command][2b48082a-a7fe-47ec-8415-e9c5291798df] Socket close event received\n2025-10-28 09:44:29.393 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2b48082a-a7fe-47ec-8415-e9c5291798df] Socket closed without exit code\n2025-10-28 09:45:29.398 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:45:29.399 [info] [command][88dfe9a2-1d8d-40db-a611-a1ddc662fa90] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""88dfe9a2-1d8d-40db-a611-a1ddc662fa90""}\n2025-10-28 09:45:29.399 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fc83c31f-8f04-45d9-98bb-4d9576b3ac51] remote server not configured\n2025-10-28 09:45:29.400 [error] [command][88dfe9a2-1d8d-40db-a611-a1ddc662fa90] Socket error: Error: read ECONNRESET\n2025-10-28 09:45:29.400 [info] [command][88dfe9a2-1d8d-40db-a611-a1ddc662fa90] Socket close event received\n2025-10-28 09:45:29.400 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][88dfe9a2-1d8d-40db-a611-a1ddc662fa90] Socket closed without exit code\n2025-10-28 09:46:29.405 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:46:29.406 [info] [command][10592602-14de-49d0-8820-92a8eb8f1d1c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""10592602-14de-49d0-8820-92a8eb8f1d1c""}\n2025-10-28 09:46:29.406 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][771df891-c5ff-4501-aed9-50e9cc8f93e5] remote server not configured\n2025-10-28 09:46:29.407 [error] [command][10592602-14de-49d0-8820-92a8eb8f1d1c] Socket error: Error: read ECONNRESET\n2025-10-28 09:46:29.407 [info] [command][10592602-14de-49d0-8820-92a8eb8f1d1c] Socket close event received\n2025-10-28 09:46:29.407 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][10592602-14de-49d0-8820-92a8eb8f1d1c] Socket closed without exit code\n2025-10-28 09:47:29.413 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:47:29.414 [info] [command][4da1abfd-cea6-42eb-925c-479a8271b1b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4da1abfd-cea6-42eb-925c-479a8271b1b5""}\n2025-10-28 09:47:29.414 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][162d959f-af2f-4415-9940-a670b01154e9] remote server not configured\n2025-10-28 09:47:29.415 [error] [command][4da1abfd-cea6-42eb-925c-479a8271b1b5] Socket error: Error: read ECONNRESET\n2025-10-28 09:47:29.415 [info] [command][4da1abfd-cea6-42eb-925c-479a8271b1b5] Socket close event received\n2025-10-28 09:47:29.415 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4da1abfd-cea6-42eb-925c-479a8271b1b5] Socket closed without exit code\n2025-10-28 09:48:29.417 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:48:29.421 [info] [command][4ea36237-a8b7-4cf1-b592-14621799fa8c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4ea36237-a8b7-4cf1-b592-14621799fa8c""}\n2025-10-28 09:48:29.421 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][62b57628-94ef-4f96-934c-322e7ac9d3bd] remote server not configured\n2025-10-28 09:48:29.422 [error] [command][4ea36237-a8b7-4cf1-b592-14621799fa8c] Socket error: Error: read ECONNRESET\n2025-10-28 09:48:29.422 [info] [command][4ea36237-a8b7-4cf1-b592-14621799fa8c] Socket close event received\n2025-10-28 09:48:29.422 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4ea36237-a8b7-4cf1-b592-14621799fa8c] Socket closed without exit code\n2025-10-28 09:49:29.423 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:49:29.425 [info] [command][b2899793-a1e9-417c-8184-fe74284de42a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b2899793-a1e9-417c-8184-fe74284de42a""}\n2025-10-28 09:49:29.426 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b2d201a4-cad4-4a61-bf36-5dae4a679b24] remote server not configured\n2025-10-28 09:49:29.427 [error] [command][b2899793-a1e9-417c-8184-fe74284de42a] Socket error: Error: read ECONNRESET\n2025-10-28 09:49:29.427 [info] [command][b2899793-a1e9-417c-8184-fe74284de42a] Socket close event received\n2025-10-28 09:49:29.427 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b2899793-a1e9-417c-8184-fe74284de42a] Socket closed without exit code\n2025-10-28 09:50:29.432 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:50:29.433 [info] [command][4d6f334e-654d-4d3b-942b-a64718a5363a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4d6f334e-654d-4d3b-942b-a64718a5363a""}\n2025-10-28 09:50:29.434 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][25d45793-48ac-41b6-bc36-e42cba1e2bce] remote server not configured\n2025-10-28 09:50:29.434 [error] [command][4d6f334e-654d-4d3b-942b-a64718a5363a] Socket error: Error: read ECONNRESET\n2025-10-28 09:50:29.434 [info] [command][4d6f334e-654d-4d3b-942b-a64718a5363a] Socket close event received\n2025-10-28 09:50:29.434 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4d6f334e-654d-4d3b-942b-a64718a5363a] Socket closed without exit code\n2025-10-28 09:51:29.440 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:51:29.442 [info] [command][affc49f4-d870-4cee-a9cf-8dd5f8481a49] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""affc49f4-d870-4cee-a9cf-8dd5f8481a49""}\n2025-10-28 09:51:29.443 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ae1384ab-dcb7-4d41-9c2f-dabcec6b623e] remote server not configured\n2025-10-28 09:51:29.443 [error] [command][affc49f4-d870-4cee-a9cf-8dd5f8481a49] Socket error: Error: read ECONNRESET\n2025-10-28 09:51:29.443 [info] [command][affc49f4-d870-4cee-a9cf-8dd5f8481a49] Socket close event received\n2025-10-28 09:51:29.444 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][affc49f4-d870-4cee-a9cf-8dd5f8481a49] Socket closed without exit code\n2025-10-28 09:52:29.445 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:52:29.447 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][03a6db30-92dc-472b-8091-c80605904113] remote server not configured\n2025-10-28 09:52:29.447 [info] [command][ebe967a9-a269-4385-821d-07414b6dea44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ebe967a9-a269-4385-821d-07414b6dea44""}\n2025-10-28 09:52:29.447 [error] [command][ebe967a9-a269-4385-821d-07414b6dea44] Socket error: Error: read ECONNRESET\n2025-10-28 09:52:29.447 [info] [command][ebe967a9-a269-4385-821d-07414b6dea44] Socket close event received\n2025-10-28 09:52:29.447 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ebe967a9-a269-4385-821d-07414b6dea44] Socket closed without exit code\n2025-10-28 09:53:29.453 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:53:29.455 [info] [command][d796e48f-31fa-4705-b306-f16fc757ace7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d796e48f-31fa-4705-b306-f16fc757ace7""}\n2025-10-28 09:53:29.455 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][730e9dcd-5dfc-44db-aa67-e59f3fe471bc] remote server not configured\n2025-10-28 09:53:29.456 [error] [command][d796e48f-31fa-4705-b306-f16fc757ace7] Socket error: Error: read ECONNRESET\n2025-10-28 09:53:29.456 [info] [command][d796e48f-31fa-4705-b306-f16fc757ace7] Socket close event received\n2025-10-28 09:53:29.456 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d796e48f-31fa-4705-b306-f16fc757ace7] Socket closed without exit code\n2025-10-28 09:54:29.457 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:54:29.458 [info] [command][2178973a-7374-4bb4-94f1-99a913ba8d37] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2178973a-7374-4bb4-94f1-99a913ba8d37""}\n2025-10-28 09:54:29.458 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][78f6f87f-7797-4e05-a8d1-41af835e59ea] remote server not configured\n2025-10-28 09:54:29.459 [error] [command][2178973a-7374-4bb4-94f1-99a913ba8d37] Socket error: Error: read ECONNRESET\n2025-10-28 09:54:29.459 [info] [command][2178973a-7374-4bb4-94f1-99a913ba8d37] Socket close event received\n2025-10-28 09:54:29.459 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2178973a-7374-4bb4-94f1-99a913ba8d37] Socket closed without exit code\n2025-10-28 09:55:29.461 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:55:29.463 [info] [command][3e3f5904-d282-4912-9e40-3b0c86cc64bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3e3f5904-d282-4912-9e40-3b0c86cc64bf""}\n2025-10-28 09:55:29.463 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cce684b0-5a24-47d3-835a-227d4249e153] remote server not configured\n2025-10-28 09:55:29.463 [error] [command][3e3f5904-d282-4912-9e40-3b0c86cc64bf] Socket error: Error: read ECONNRESET\n2025-10-28 09:55:29.463 [info] [command][3e3f5904-d282-4912-9e40-3b0c86cc64bf] Socket close event received\n2025-10-28 09:55:29.464 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3e3f5904-d282-4912-9e40-3b0c86cc64bf] Socket closed without exit code\n2025-10-28 09:56:29.468 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:56:29.471 [info] [command][4b3430fc-44d3-43fc-b956-8a9d413d1304] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4b3430fc-44d3-43fc-b956-8a9d413d1304""}\n2025-10-28 09:56:29.471 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][05bfb8cb-9a89-4af6-9e12-dd3467458564] remote server not configured\n2025-10-28 09:56:29.471 [error] [command][4b3430fc-44d3-43fc-b956-8a9d413d1304] Socket error: Error: read ECONNRESET\n2025-10-28 09:56:29.471 [info] [command][4b3430fc-44d3-43fc-b956-8a9d413d1304] Socket close event received\n2025-10-28 09:56:29.471 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4b3430fc-44d3-43fc-b956-8a9d413d1304] Socket closed without exit code\n2025-10-28 09:57:29.475 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:57:29.477 [info] [command][1f3da9b6-8e8e-433e-a393-43d89ca91b10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1f3da9b6-8e8e-433e-a393-43d89ca91b10""}\n2025-10-28 09:57:29.478 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ce3e867b-10cd-4f9c-bb1e-c268277f64f4] remote server not configured\n2025-10-28 09:57:29.478 [error] [command][1f3da9b6-8e8e-433e-a393-43d89ca91b10] Socket error: Error: read ECONNRESET\n2025-10-28 09:57:29.478 [info] [command][1f3da9b6-8e8e-433e-a393-43d89ca91b10] Socket close event received\n2025-10-28 09:57:29.478 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1f3da9b6-8e8e-433e-a393-43d89ca91b10] Socket closed without exit code\n2025-10-28 09:58:29.470 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:58:29.472 [info] [command][9c729efe-d3c5-4338-8b60-7c8217153083] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9c729efe-d3c5-4338-8b60-7c8217153083""}\n2025-10-28 09:58:29.473 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][622f28c5-db83-409b-a60c-c1c220f72923] remote server not configured\n2025-10-28 09:58:29.473 [error] [command][9c729efe-d3c5-4338-8b60-7c8217153083] Socket error: Error: read ECONNRESET\n2025-10-28 09:58:29.473 [info] [command][9c729efe-d3c5-4338-8b60-7c8217153083] Socket close event received\n2025-10-28 09:58:29.474 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9c729efe-d3c5-4338-8b60-7c8217153083] Socket closed without exit code\n2025-10-28 09:59:29.473 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 09:59:29.475 [info] [command][b4087b42-5d0d-455b-92f2-ff3902ea1b5c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b4087b42-5d0d-455b-92f2-ff3902ea1b5c""}\n2025-10-28 09:59:29.475 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5c3328b4-10cc-408e-8a3b-094bb86e259b] remote server not configured\n2025-10-28 09:59:29.476 [error] [command][b4087b42-5d0d-455b-92f2-ff3902ea1b5c] Socket error: Error: read ECONNRESET\n2025-10-28 09:59:29.476 [info] [command][b4087b42-5d0d-455b-92f2-ff3902ea1b5c] Socket close event received\n2025-10-28 09:59:29.476 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b4087b42-5d0d-455b-92f2-ff3902ea1b5c] Socket closed without exit code\n2025-10-28 10:00:29.480 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:00:29.482 [info] [command][883c66a0-deb3-4381-b89c-7a0de93312e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""883c66a0-deb3-4381-b89c-7a0de93312e8""}\n2025-10-28 10:00:29.482 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][60ca8f7e-8ad5-4f77-9254-68d9f7cf9452] remote server not configured\n2025-10-28 10:00:29.483 [error] [command][883c66a0-deb3-4381-b89c-7a0de93312e8] Socket error: Error: read ECONNRESET\n2025-10-28 10:00:29.483 [info] [command][883c66a0-deb3-4381-b89c-7a0de93312e8] Socket close event received\n2025-10-28 10:00:29.483 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][883c66a0-deb3-4381-b89c-7a0de93312e8] Socket closed without exit code\n2025-10-28 10:01:29.485 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:01:29.487 [info] [command][44e51517-0e34-485b-b402-f61c5f73d69c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""44e51517-0e34-485b-b402-f61c5f73d69c""}\n2025-10-28 10:01:29.487 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6ee4bf4c-2cb3-4fd1-b372-d45e8a7150a3] remote server not configured\n2025-10-28 10:01:29.488 [error] [command][44e51517-0e34-485b-b402-f61c5f73d69c] Socket error: Error: read ECONNRESET\n2025-10-28 10:01:29.489 [info] [command][44e51517-0e34-485b-b402-f61c5f73d69c] Socket close event received\n2025-10-28 10:01:29.489 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][44e51517-0e34-485b-b402-f61c5f73d69c] Socket closed without exit code\n2025-10-28 10:02:29.491 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:02:29.492 [info] [command][79f582b6-488b-41f7-95ee-637d09d7814e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""79f582b6-488b-41f7-95ee-637d09d7814e""}\n2025-10-28 10:02:29.493 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][cf3506ee-8dd6-4aa3-b5aa-6d83b1faccb0] remote server not configured\n2025-10-28 10:02:29.493 [error] [command][79f582b6-488b-41f7-95ee-637d09d7814e] Socket error: Error: read ECONNRESET\n2025-10-28 10:02:29.493 [info] [command][79f582b6-488b-41f7-95ee-637d09d7814e] Socket close event received\n2025-10-28 10:02:29.493 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][79f582b6-488b-41f7-95ee-637d09d7814e] Socket closed without exit code\n2025-10-28 10:03:29.494 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:03:29.497 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][bc0e7daf-c3f5-4004-a009-d32ebdbd3fbf] remote server not configured\n2025-10-28 10:03:29.498 [info] [command][b2c69606-50af-435d-9493-c6a4f139ce5e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b2c69606-50af-435d-9493-c6a4f139ce5e""}\n2025-10-28 10:03:29.499 [error] [command][b2c69606-50af-435d-9493-c6a4f139ce5e] Socket error: Error: read ECONNRESET\n2025-10-28 10:03:29.499 [info] [command][b2c69606-50af-435d-9493-c6a4f139ce5e] Socket close event received\n2025-10-28 10:03:29.499 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b2c69606-50af-435d-9493-c6a4f139ce5e] Socket closed without exit code\n2025-10-28 10:04:29.505 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:04:29.507 [info] [command][fd0c12f3-5405-4923-adca-9c56cda60cb4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""fd0c12f3-5405-4923-adca-9c56cda60cb4""}\n2025-10-28 10:04:29.507 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][af550842-e993-44c2-814d-30bc0a3ea477] remote server not configured\n2025-10-28 10:04:29.507 [error] [command][fd0c12f3-5405-4923-adca-9c56cda60cb4] Socket error: Error: read ECONNRESET\n2025-10-28 10:04:29.507 [info] [command][fd0c12f3-5405-4923-adca-9c56cda60cb4] Socket close event received\n2025-10-28 10:04:29.508 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][fd0c12f3-5405-4923-adca-9c56cda60cb4] Socket closed without exit code\n2025-10-28 10:05:29.515 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:05:29.517 [info] [command][81a58979-793e-450e-a5ab-4889321ecadf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""81a58979-793e-450e-a5ab-4889321ecadf""}\n2025-10-28 10:05:29.518 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][9ed2ab67-9a0b-4fe3-828b-9b1e9248e0da] remote server not configured\n2025-10-28 10:05:29.518 [error] [command][81a58979-793e-450e-a5ab-4889321ecadf] Socket error: Error: read ECONNRESET\n2025-10-28 10:05:29.519 [info] [command][81a58979-793e-450e-a5ab-4889321ecadf] Socket close event received\n2025-10-28 10:05:29.519 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][81a58979-793e-450e-a5ab-4889321ecadf] Socket closed without exit code\n2025-10-28 10:06:29.522 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:06:29.525 [info] [command][f8ce5e56-a056-4684-9f78-e8160d462661] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f8ce5e56-a056-4684-9f78-e8160d462661""}\n2025-10-28 10:06:29.525 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][679e1786-5040-44e7-8b61-0e733a5c2cd9] remote server not configured\n2025-10-28 10:06:29.525 [error] [command][f8ce5e56-a056-4684-9f78-e8160d462661] Socket error: Error: read ECONNRESET\n2025-10-28 10:06:29.525 [info] [command][f8ce5e56-a056-4684-9f78-e8160d462661] Socket close event received\n2025-10-28 10:06:29.525 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f8ce5e56-a056-4684-9f78-e8160d462661] Socket closed without exit code\n2025-10-28 10:07:29.530 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:07:29.532 [info] [command][a882d2f3-f7a8-4b9f-9aa8-dcdc2145d21f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a882d2f3-f7a8-4b9f-9aa8-dcdc2145d21f""}\n2025-10-28 10:07:29.532 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0a84603c-2530-4341-aa12-c6305b2f76b0] remote server not configured\n2025-10-28 10:07:29.532 [error] [command][a882d2f3-f7a8-4b9f-9aa8-dcdc2145d21f] Socket error: Error: read ECONNRESET\n2025-10-28 10:07:29.532 [info] [command][a882d2f3-f7a8-4b9f-9aa8-dcdc2145d21f] Socket close event received\n2025-10-28 10:07:29.533 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a882d2f3-f7a8-4b9f-9aa8-dcdc2145d21f] Socket closed without exit code\n2025-10-28 10:08:29.537 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:08:29.539 [info] [command][9a06ed09-5dd3-4158-a70a-1c1c3db11f8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9a06ed09-5dd3-4158-a70a-1c1c3db11f8f""}\n2025-10-28 10:08:29.539 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1391b9e3-e8a3-410b-84ff-fef9b9c92136] remote server not configured\n2025-10-28 10:08:29.539 [error] [command][9a06ed09-5dd3-4158-a70a-1c1c3db11f8f] Socket error: Error: read ECONNRESET\n2025-10-28 10:08:29.539 [info] [command][9a06ed09-5dd3-4158-a70a-1c1c3db11f8f] Socket close event received\n2025-10-28 10:08:29.539 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9a06ed09-5dd3-4158-a70a-1c1c3db11f8f] Socket closed without exit code\n2025-10-28 10:09:29.545 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:09:29.547 [info] [command][75a4d3b3-421e-4388-9f06-fafc14c550a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""75a4d3b3-421e-4388-9f06-fafc14c550a6""}\n2025-10-28 10:09:29.547 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fb00310c-3651-488e-9bd0-6417b10e7d21] remote server not configured\n2025-10-28 10:09:29.548 [error] [command][75a4d3b3-421e-4388-9f06-fafc14c550a6] Socket error: Error: read ECONNRESET\n2025-10-28 10:09:29.548 [info] [command][75a4d3b3-421e-4388-9f06-fafc14c550a6] Socket close event received\n2025-10-28 10:09:29.548 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][75a4d3b3-421e-4388-9f06-fafc14c550a6] Socket closed without exit code\n2025-10-28 10:10:29.549 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:10:29.550 [info] [command][71f4273a-10c6-4a8e-8664-50c8489b9a71] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""71f4273a-10c6-4a8e-8664-50c8489b9a71""}\n2025-10-28 10:10:29.551 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][db23eeda-3214-4dd9-b2f8-6f76c0e187f7] remote server not configured\n2025-10-28 10:10:29.551 [error] [command][71f4273a-10c6-4a8e-8664-50c8489b9a71] Socket error: Error: read ECONNRESET\n2025-10-28 10:10:29.551 [info] [command][71f4273a-10c6-4a8e-8664-50c8489b9a71] Socket close event received\n2025-10-28 10:10:29.551 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][71f4273a-10c6-4a8e-8664-50c8489b9a71] Socket closed without exit code\n2025-10-28 10:11:29.557 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:11:29.559 [info] [command][96f4a9a5-0945-4da4-9469-e7ebea5e7ebe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""96f4a9a5-0945-4da4-9469-e7ebea5e7ebe""}\n2025-10-28 10:11:29.559 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][258c66a8-fba5-4c35-8d4c-c16398ac2500] remote server not configured\n2025-10-28 10:11:29.559 [error] [command][96f4a9a5-0945-4da4-9469-e7ebea5e7ebe] Socket error: Error: read ECONNRESET\n2025-10-28 10:11:29.559 [info] [command][96f4a9a5-0945-4da4-9469-e7ebea5e7ebe] Socket close event received\n2025-10-28 10:11:29.560 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][96f4a9a5-0945-4da4-9469-e7ebea5e7ebe] Socket closed without exit code\n2025-10-28 10:12:29.562 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:12:29.565 [info] [command][b876e454-df6a-45c9-ab04-a9fe64b5dcbd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b876e454-df6a-45c9-ab04-a9fe64b5dcbd""}\n2025-10-28 10:12:29.565 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][fda80f0d-f529-488b-8aa6-ba0a96453ace] remote server not configured\n2025-10-28 10:12:29.566 [error] [command][b876e454-df6a-45c9-ab04-a9fe64b5dcbd] Socket error: Error: read ECONNRESET\n2025-10-28 10:12:29.566 [info] [command][b876e454-df6a-45c9-ab04-a9fe64b5dcbd] Socket close event received\n2025-10-28 10:12:29.566 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b876e454-df6a-45c9-ab04-a9fe64b5dcbd] Socket closed without exit code\n2025-10-28 10:13:29.571 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:13:29.573 [info] [command][c7178b64-8f94-4140-bebf-a270bd55de75] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c7178b64-8f94-4140-bebf-a270bd55de75""}\n2025-10-28 10:13:29.573 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ee58932a-c059-4c66-b321-a615c6359ffc] remote server not configured\n2025-10-28 10:13:29.573 [error] [command][c7178b64-8f94-4140-bebf-a270bd55de75] Socket error: Error: read ECONNRESET\n2025-10-28 10:13:29.573 [info] [command][c7178b64-8f94-4140-bebf-a270bd55de75] Socket close event received\n2025-10-28 10:13:29.573 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c7178b64-8f94-4140-bebf-a270bd55de75] Socket closed without exit code\n2025-10-28 10:14:29.575 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:14:29.577 [info] [command][f3dcbf5e-7959-4e49-a981-b814ad0b13eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f3dcbf5e-7959-4e49-a981-b814ad0b13eb""}\n2025-10-28 10:14:29.578 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][aa4bfe87-5272-45c6-822d-111c241b80d5] remote server not configured\n2025-10-28 10:14:29.578 [error] [command][f3dcbf5e-7959-4e49-a981-b814ad0b13eb] Socket error: Error: read ECONNRESET\n2025-10-28 10:14:29.578 [info] [command][f3dcbf5e-7959-4e49-a981-b814ad0b13eb] Socket close event received\n2025-10-28 10:14:29.578 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f3dcbf5e-7959-4e49-a981-b814ad0b13eb] Socket closed without exit code\n2025-10-28 10:15:29.582 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:15:29.584 [info] [command][62383cf7-82bd-416c-bed4-3a09777a642c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""62383cf7-82bd-416c-bed4-3a09777a642c""}\n2025-10-28 10:15:29.584 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3fcde183-6c90-4f1e-951e-37ce8b452956] remote server not configured\n2025-10-28 10:15:29.585 [error] [command][62383cf7-82bd-416c-bed4-3a09777a642c] Socket error: Error: read ECONNRESET\n2025-10-28 10:15:29.585 [info] [command][62383cf7-82bd-416c-bed4-3a09777a642c] Socket close event received\n2025-10-28 10:15:29.585 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][62383cf7-82bd-416c-bed4-3a09777a642c] Socket closed without exit code\n2025-10-28 10:16:29.591 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:16:29.593 [info] [command][9baf881d-0433-47ac-816e-9fd7285588a4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9baf881d-0433-47ac-816e-9fd7285588a4""}\n2025-10-28 10:16:29.593 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0992ca45-5c0d-4d63-9c5a-ca6cc6d0df88] remote server not configured\n2025-10-28 10:16:29.594 [error] [command][9baf881d-0433-47ac-816e-9fd7285588a4] Socket error: Error: read ECONNRESET\n2025-10-28 10:16:29.594 [info] [command][9baf881d-0433-47ac-816e-9fd7285588a4] Socket close event received\n2025-10-28 10:16:29.594 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9baf881d-0433-47ac-816e-9fd7285588a4] Socket closed without exit code\n2025-10-28 10:17:29.596 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:17:29.598 [info] [command][57f2f38a-0458-4f97-98b6-bec82a1ea437] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""57f2f38a-0458-4f97-98b6-bec82a1ea437""}\n2025-10-28 10:17:29.598 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7c3bed01-9297-49ab-ba6d-e0b977852ffa] remote server not configured\n2025-10-28 10:17:29.598 [error] [command][57f2f38a-0458-4f97-98b6-bec82a1ea437] Socket error: Error: read ECONNRESET\n2025-10-28 10:17:29.598 [info] [command][57f2f38a-0458-4f97-98b6-bec82a1ea437] Socket close event received\n2025-10-28 10:17:29.598 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][57f2f38a-0458-4f97-98b6-bec82a1ea437] Socket closed without exit code\n2025-10-28 10:18:29.604 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:18:29.605 [info] [command][c2b98d90-4891-488f-b6fa-e7ec7e646ccf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c2b98d90-4891-488f-b6fa-e7ec7e646ccf""}\n2025-10-28 10:18:29.605 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][14bc075a-9d6e-4e0c-b949-7e6a8c116470] remote server not configured\n2025-10-28 10:18:29.606 [error] [command][c2b98d90-4891-488f-b6fa-e7ec7e646ccf] Socket error: Error: read ECONNRESET\n2025-10-28 10:18:29.606 [info] [command][c2b98d90-4891-488f-b6fa-e7ec7e646ccf] Socket close event received\n2025-10-28 10:18:29.606 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c2b98d90-4891-488f-b6fa-e7ec7e646ccf] Socket closed without exit code\n2025-10-28 10:19:29.612 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:19:29.614 [info] [command][749adce7-1869-489d-945c-143a8f97425b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""749adce7-1869-489d-945c-143a8f97425b""}\n2025-10-28 10:19:29.614 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][45013857-8868-4177-965b-9bf6fc04ca81] remote server not configured\n2025-10-28 10:19:29.614 [error] [command][749adce7-1869-489d-945c-143a8f97425b] Socket error: Error: read ECONNRESET\n2025-10-28 10:19:29.614 [info] [command][749adce7-1869-489d-945c-143a8f97425b] Socket close event received\n2025-10-28 10:19:29.614 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][749adce7-1869-489d-945c-143a8f97425b] Socket closed without exit code\n2025-10-28 10:20:29.618 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:20:29.620 [info] [command][3685249f-c278-46a8-ac1b-a2f7d52281eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3685249f-c278-46a8-ac1b-a2f7d52281eb""}\n2025-10-28 10:20:29.620 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f2bb8e60-3077-4d0f-98cc-e842824ba8ea] remote server not configured\n2025-10-28 10:20:29.620 [error] [command][3685249f-c278-46a8-ac1b-a2f7d52281eb] Socket error: Error: read ECONNRESET\n2025-10-28 10:20:29.620 [info] [command][3685249f-c278-46a8-ac1b-a2f7d52281eb] Socket close event received\n2025-10-28 10:20:29.620 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3685249f-c278-46a8-ac1b-a2f7d52281eb] Socket closed without exit code\n2025-10-28 10:21:29.626 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:21:29.628 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][34b3e9fb-b6b2-4ea2-bf27-f2060904bab6] remote server not configured\n2025-10-28 10:21:29.628 [info] [command][f36f5364-6370-4ec5-a931-29d52b84c3d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f36f5364-6370-4ec5-a931-29d52b84c3d7""}\n2025-10-28 10:21:29.628 [error] [command][f36f5364-6370-4ec5-a931-29d52b84c3d7] Socket error: Error: read ECONNRESET\n2025-10-28 10:21:29.629 [info] [command][f36f5364-6370-4ec5-a931-29d52b84c3d7] Socket close event received\n2025-10-28 10:21:29.629 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f36f5364-6370-4ec5-a931-29d52b84c3d7] Socket closed without exit code\n2025-10-28 10:22:29.634 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:22:29.636 [info] [command][c2d0ee2d-b24b-41f8-a962-02f161bdb806] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c2d0ee2d-b24b-41f8-a962-02f161bdb806""}\n2025-10-28 10:22:29.637 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f395f03f-92de-43f4-ab5f-8ad87d0c0fda] remote server not configured\n2025-10-28 10:22:29.637 [error] [command][c2d0ee2d-b24b-41f8-a962-02f161bdb806] Socket error: Error: read ECONNRESET\n2025-10-28 10:22:29.637 [info] [command][c2d0ee2d-b24b-41f8-a962-02f161bdb806] Socket close event received\n2025-10-28 10:22:29.637 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c2d0ee2d-b24b-41f8-a962-02f161bdb806] Socket closed without exit code\n2025-10-28 10:23:29.643 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:23:29.645 [info] [command][872bfd99-1946-4567-8de6-6db21fa3a832] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""872bfd99-1946-4567-8de6-6db21fa3a832""}\n2025-10-28 10:23:29.646 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a2031b9b-9813-4b27-842e-8993a762102f] remote server not configured\n2025-10-28 10:23:29.646 [error] [command][872bfd99-1946-4567-8de6-6db21fa3a832] Socket error: Error: read ECONNRESET\n2025-10-28 10:23:29.646 [info] [command][872bfd99-1946-4567-8de6-6db21fa3a832] Socket close event received\n2025-10-28 10:23:29.646 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][872bfd99-1946-4567-8de6-6db21fa3a832] Socket closed without exit code\n2025-10-28 10:24:29.652 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:24:29.654 [info] [command][66863dd4-2924-464c-b37e-b848796facea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""66863dd4-2924-464c-b37e-b848796facea""}\n2025-10-28 10:24:29.654 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][22e6a9d7-226b-4985-93a7-7d3281959911] remote server not configured\n2025-10-28 10:24:29.655 [error] [command][66863dd4-2924-464c-b37e-b848796facea] Socket error: Error: read ECONNRESET\n2025-10-28 10:24:29.655 [info] [command][66863dd4-2924-464c-b37e-b848796facea] Socket close event received\n2025-10-28 10:24:29.655 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][66863dd4-2924-464c-b37e-b848796facea] Socket closed without exit code\n2025-10-28 10:25:29.656 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:25:29.658 [info] [command][901cf04c-5e23-4d8f-b992-2437df641458] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""901cf04c-5e23-4d8f-b992-2437df641458""}\n2025-10-28 10:25:29.658 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][8b56d018-5db1-4c12-a1fe-a7cd34d7532e] remote server not configured\n2025-10-28 10:25:29.659 [error] [command][901cf04c-5e23-4d8f-b992-2437df641458] Socket error: Error: read ECONNRESET\n2025-10-28 10:25:29.659 [info] [command][901cf04c-5e23-4d8f-b992-2437df641458] Socket close event received\n2025-10-28 10:25:29.659 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][901cf04c-5e23-4d8f-b992-2437df641458] Socket closed without exit code\n2025-10-28 10:26:29.665 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:26:29.667 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e05e5d17-6485-46c8-8edc-e21afa5a1984] remote server not configured\n2025-10-28 10:26:29.667 [info] [command][bde291bf-29fe-4f6c-8ffe-5a1dea00cf77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""bde291bf-29fe-4f6c-8ffe-5a1dea00cf77""}\n2025-10-28 10:26:29.668 [error] [command][bde291bf-29fe-4f6c-8ffe-5a1dea00cf77] Socket error: Error: read ECONNRESET\n2025-10-28 10:26:29.668 [info] [command][bde291bf-29fe-4f6c-8ffe-5a1dea00cf77] Socket close event received\n2025-10-28 10:26:29.668 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][bde291bf-29fe-4f6c-8ffe-5a1dea00cf77] Socket closed without exit code\n2025-10-28 10:27:29.674 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:27:29.676 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a989db7c-8eb6-4c11-a4d1-718b80e5f5a7] remote server not configured\n2025-10-28 10:27:29.677 [info] [command][a2be6705-ce18-4140-9d43-46e8de9cb48d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a2be6705-ce18-4140-9d43-46e8de9cb48d""}\n2025-10-28 10:27:29.677 [error] [command][a2be6705-ce18-4140-9d43-46e8de9cb48d] Socket error: Error: read ECONNRESET\n2025-10-28 10:27:29.677 [info] [command][a2be6705-ce18-4140-9d43-46e8de9cb48d] Socket close event received\n2025-10-28 10:27:29.677 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a2be6705-ce18-4140-9d43-46e8de9cb48d] Socket closed without exit code\n2025-10-28 10:28:29.683 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:28:29.685 [info] [command][3daa13bb-fe1a-436c-81e2-0bdfc8421ffe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3daa13bb-fe1a-436c-81e2-0bdfc8421ffe""}\n2025-10-28 10:28:29.685 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f0fec343-8d0f-4218-9772-e17518e05d9f] remote server not configured\n2025-10-28 10:28:29.685 [error] [command][3daa13bb-fe1a-436c-81e2-0bdfc8421ffe] Socket error: Error: read ECONNRESET\n2025-10-28 10:28:29.686 [info] [command][3daa13bb-fe1a-436c-81e2-0bdfc8421ffe] Socket close event received\n2025-10-28 10:28:29.686 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3daa13bb-fe1a-436c-81e2-0bdfc8421ffe] Socket closed without exit code\n2025-10-28 10:29:29.691 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:29:29.693 [info] [command][1ce80d28-2588-434c-aeba-ef903a890ab7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1ce80d28-2588-434c-aeba-ef903a890ab7""}\n2025-10-28 10:29:29.693 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][17806123-af46-462b-a9a8-52046b4c7d44] remote server not configured\n2025-10-28 10:29:29.694 [error] [command][1ce80d28-2588-434c-aeba-ef903a890ab7] Socket error: Error: read ECONNRESET\n2025-10-28 10:29:29.694 [info] [command][1ce80d28-2588-434c-aeba-ef903a890ab7] Socket close event received\n2025-10-28 10:29:29.694 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1ce80d28-2588-434c-aeba-ef903a890ab7] Socket closed without exit code\n2025-10-28 10:30:29.699 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:30:29.701 [info] [command][182aa3cb-940f-4696-9d0f-0345ebef3f7d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""182aa3cb-940f-4696-9d0f-0345ebef3f7d""}\n2025-10-28 10:30:29.702 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6855351f-8345-4748-ad7e-488a48edb877] remote server not configured\n2025-10-28 10:30:29.702 [error] [command][182aa3cb-940f-4696-9d0f-0345ebef3f7d] Socket error: Error: read ECONNRESET\n2025-10-28 10:30:29.702 [info] [command][182aa3cb-940f-4696-9d0f-0345ebef3f7d] Socket close event received\n2025-10-28 10:30:29.702 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][182aa3cb-940f-4696-9d0f-0345ebef3f7d] Socket closed without exit code\n2025-10-28 10:31:29.708 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:31:29.710 [info] [command][5a94d1f6-f561-4a2f-b874-ca76c7337c80] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5a94d1f6-f561-4a2f-b874-ca76c7337c80""}\n2025-10-28 10:31:29.710 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5828ceda-fcb3-409a-b0a7-1d6b7ebb6cbe] remote server not configured\n2025-10-28 10:31:29.710 [error] [command][5a94d1f6-f561-4a2f-b874-ca76c7337c80] Socket error: Error: read ECONNRESET\n2025-10-28 10:31:29.710 [info] [command][5a94d1f6-f561-4a2f-b874-ca76c7337c80] Socket close event received\n2025-10-28 10:31:29.710 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5a94d1f6-f561-4a2f-b874-ca76c7337c80] Socket closed without exit code\n2025-10-28 10:32:29.715 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:32:29.717 [info] [command][85eb7c33-ba6d-4a66-afd1-4b7c87973e3c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""85eb7c33-ba6d-4a66-afd1-4b7c87973e3c""}\n2025-10-28 10:32:29.717 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c979f011-f170-47b3-8e57-f7396bfe1aee] remote server not configured\n2025-10-28 10:32:29.717 [error] [command][85eb7c33-ba6d-4a66-afd1-4b7c87973e3c] Socket error: Error: read ECONNRESET\n2025-10-28 10:32:29.717 [info] [command][85eb7c33-ba6d-4a66-afd1-4b7c87973e3c] Socket close event received\n2025-10-28 10:32:29.718 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][85eb7c33-ba6d-4a66-afd1-4b7c87973e3c] Socket closed without exit code\n2025-10-28 10:33:29.725 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:33:29.727 [info] [command][6756e4ae-2287-49b1-b065-c199bf7c861a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""6756e4ae-2287-49b1-b065-c199bf7c861a""}\n2025-10-28 10:33:29.728 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][c33d7303-a809-4b29-a5d7-afb492ef3e1b] remote server not configured\n2025-10-28 10:33:29.728 [error] [command][6756e4ae-2287-49b1-b065-c199bf7c861a] Socket error: Error: read ECONNRESET\n2025-10-28 10:33:29.728 [info] [command][6756e4ae-2287-49b1-b065-c199bf7c861a] Socket close event received\n2025-10-28 10:33:29.728 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][6756e4ae-2287-49b1-b065-c199bf7c861a] Socket closed without exit code\n2025-10-28 10:34:29.733 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:34:29.735 [info] [command][f4b210ca-e70f-4229-88fd-c83f22154909] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f4b210ca-e70f-4229-88fd-c83f22154909""}\n2025-10-28 10:34:29.735 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ae63508b-154c-475f-9919-6369eae22832] remote server not configured\n2025-10-28 10:34:29.736 [error] [command][f4b210ca-e70f-4229-88fd-c83f22154909] Socket error: Error: read ECONNRESET\n2025-10-28 10:34:29.736 [info] [command][f4b210ca-e70f-4229-88fd-c83f22154909] Socket close event received\n2025-10-28 10:34:29.736 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f4b210ca-e70f-4229-88fd-c83f22154909] Socket closed without exit code\n2025-10-28 10:35:29.741 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:35:29.742 [info] [command][201a10b7-d1a9-4085-a430-f9739c3d82cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""201a10b7-d1a9-4085-a430-f9739c3d82cf""}\n2025-10-28 10:35:29.742 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6e991488-54ee-4a90-8a17-b587f5ed90bc] remote server not configured\n2025-10-28 10:35:29.742 [error] [command][201a10b7-d1a9-4085-a430-f9739c3d82cf] Socket error: Error: read ECONNRESET\n2025-10-28 10:35:29.743 [info] [command][201a10b7-d1a9-4085-a430-f9739c3d82cf] Socket close event received\n2025-10-28 10:35:29.743 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][201a10b7-d1a9-4085-a430-f9739c3d82cf] Socket closed without exit code\n2025-10-28 10:36:29.747 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:36:29.750 [info] [command][7d3eda33-36d9-4661-adfa-13659239c488] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7d3eda33-36d9-4661-adfa-13659239c488""}\n2025-10-28 10:36:29.750 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][20174f59-4709-4b6d-a058-01e74dbf8f44] remote server not configured\n2025-10-28 10:36:29.750 [error] [command][7d3eda33-36d9-4661-adfa-13659239c488] Socket error: Error: read ECONNRESET\n2025-10-28 10:36:29.750 [info] [command][7d3eda33-36d9-4661-adfa-13659239c488] Socket close event received\n2025-10-28 10:36:29.750 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7d3eda33-36d9-4661-adfa-13659239c488] Socket closed without exit code\n2025-10-28 10:37:29.756 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:37:29.758 [info] [command][1759e2f6-0034-401f-b2e7-04973dbf472b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1759e2f6-0034-401f-b2e7-04973dbf472b""}\n2025-10-28 10:37:29.758 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][6b3ed033-75f7-40b8-a970-28f965330dcb] remote server not configured\n2025-10-28 10:37:29.758 [error] [command][1759e2f6-0034-401f-b2e7-04973dbf472b] Socket error: Error: read ECONNRESET\n2025-10-28 10:37:29.758 [info] [command][1759e2f6-0034-401f-b2e7-04973dbf472b] Socket close event received\n2025-10-28 10:37:29.759 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1759e2f6-0034-401f-b2e7-04973dbf472b] Socket closed without exit code\n2025-10-28 10:38:29.764 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:38:29.766 [info] [command][e479c09e-c745-47cf-9451-c464ca81b7b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e479c09e-c745-47cf-9451-c464ca81b7b1""}\n2025-10-28 10:38:29.766 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b502b1e9-ca6f-44a8-bdb6-1e0b6b707101] remote server not configured\n2025-10-28 10:38:29.767 [error] [command][e479c09e-c745-47cf-9451-c464ca81b7b1] Socket error: Error: read ECONNRESET\n2025-10-28 10:38:29.767 [info] [command][e479c09e-c745-47cf-9451-c464ca81b7b1] Socket close event received\n2025-10-28 10:38:29.767 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e479c09e-c745-47cf-9451-c464ca81b7b1] Socket closed without exit code\n2025-10-28 10:39:29.772 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:39:29.774 [info] [command][3bb2342e-2148-4a8b-a719-992294d99b25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3bb2342e-2148-4a8b-a719-992294d99b25""}\n2025-10-28 10:39:29.774 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][519ab20d-1c3a-42dc-9586-242a3b6c4d4c] remote server not configured\n2025-10-28 10:39:29.774 [error] [command][3bb2342e-2148-4a8b-a719-992294d99b25] Socket error: Error: read ECONNRESET\n2025-10-28 10:39:29.774 [info] [command][3bb2342e-2148-4a8b-a719-992294d99b25] Socket close event received\n2025-10-28 10:39:29.774 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3bb2342e-2148-4a8b-a719-992294d99b25] Socket closed without exit code\n2025-10-28 10:40:29.782 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:40:29.784 [info] [command][5f70047c-8017-453c-a736-4112bbbc4f37] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5f70047c-8017-453c-a736-4112bbbc4f37""}\n2025-10-28 10:40:29.784 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b333f35a-5c13-43fd-ac64-a64a623157af] remote server not configured\n2025-10-28 10:40:29.784 [error] [command][5f70047c-8017-453c-a736-4112bbbc4f37] Socket error: Error: read ECONNRESET\n2025-10-28 10:40:29.784 [info] [command][5f70047c-8017-453c-a736-4112bbbc4f37] Socket close event received\n2025-10-28 10:40:29.784 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5f70047c-8017-453c-a736-4112bbbc4f37] Socket closed without exit code\n2025-10-28 10:41:29.788 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:41:29.790 [info] [command][f97b3f28-cb78-413c-bcd1-e1c8acd409ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f97b3f28-cb78-413c-bcd1-e1c8acd409ab""}\n2025-10-28 10:41:29.790 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][63298e8c-ccb5-4d97-af51-5939507e2d56] remote server not configured\n2025-10-28 10:41:29.791 [error] [command][f97b3f28-cb78-413c-bcd1-e1c8acd409ab] Socket error: Error: read ECONNRESET\n2025-10-28 10:41:29.791 [info] [command][f97b3f28-cb78-413c-bcd1-e1c8acd409ab] Socket close event received\n2025-10-28 10:41:29.791 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f97b3f28-cb78-413c-bcd1-e1c8acd409ab] Socket closed without exit code\n2025-10-28 10:42:29.798 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:42:29.800 [info] [command][5b3ece63-af96-4189-b8d9-cbb744e84bb0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5b3ece63-af96-4189-b8d9-cbb744e84bb0""}\n2025-10-28 10:42:29.800 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][737c4db0-2a1f-4c57-8487-92ba2b49f3db] remote server not configured\n2025-10-28 10:42:29.801 [error] [command][5b3ece63-af96-4189-b8d9-cbb744e84bb0] Socket error: Error: read ECONNRESET\n2025-10-28 10:42:29.801 [info] [command][5b3ece63-af96-4189-b8d9-cbb744e84bb0] Socket close event received\n2025-10-28 10:42:29.801 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5b3ece63-af96-4189-b8d9-cbb744e84bb0] Socket closed without exit code\n2025-10-28 10:43:29.803 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:43:29.805 [info] [command][1d8d1fec-8959-4ef8-b782-a161db3eae52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1d8d1fec-8959-4ef8-b782-a161db3eae52""}\n2025-10-28 10:43:29.806 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][719ea7bb-0f05-48b3-9d58-13f955142076] remote server not configured\n2025-10-28 10:43:29.806 [error] [command][1d8d1fec-8959-4ef8-b782-a161db3eae52] Socket error: Error: read ECONNRESET\n2025-10-28 10:43:29.806 [info] [command][1d8d1fec-8959-4ef8-b782-a161db3eae52] Socket close event received\n2025-10-28 10:43:29.806 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1d8d1fec-8959-4ef8-b782-a161db3eae52] Socket closed without exit code\n2025-10-28 10:44:29.814 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:44:29.815 [info] [command][5f0a8b1e-bb3e-4ee2-8de8-1ba8c855f96c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5f0a8b1e-bb3e-4ee2-8de8-1ba8c855f96c""}\n2025-10-28 10:44:29.815 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5aeea348-e748-4225-8e0a-ff91087ee25d] remote server not configured\n2025-10-28 10:44:29.815 [error] [command][5f0a8b1e-bb3e-4ee2-8de8-1ba8c855f96c] Socket error: Error: read ECONNRESET\n2025-10-28 10:44:29.815 [info] [command][5f0a8b1e-bb3e-4ee2-8de8-1ba8c855f96c] Socket close event received\n2025-10-28 10:44:29.815 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5f0a8b1e-bb3e-4ee2-8de8-1ba8c855f96c] Socket closed without exit code\n2025-10-28 10:45:29.818 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:45:29.820 [info] [command][59cc0f89-ab50-4552-b8b5-6be25d505ce4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""59cc0f89-ab50-4552-b8b5-6be25d505ce4""}\n2025-10-28 10:45:29.820 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][1041f2d8-f4dc-4897-91b4-f07220a2fd58] remote server not configured\n2025-10-28 10:45:29.821 [error] [command][59cc0f89-ab50-4552-b8b5-6be25d505ce4] Socket error: Error: read ECONNRESET\n2025-10-28 10:45:29.821 [info] [command][59cc0f89-ab50-4552-b8b5-6be25d505ce4] Socket close event received\n2025-10-28 10:45:29.821 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][59cc0f89-ab50-4552-b8b5-6be25d505ce4] Socket closed without exit code\n2025-10-28 10:46:29.821 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:46:29.822 [info] [command][8717a4d1-c92a-44cc-a937-fb6a88cc7ad0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""8717a4d1-c92a-44cc-a937-fb6a88cc7ad0""}\n2025-10-28 10:46:29.823 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e26c64b5-4d01-4950-b9e1-44a0fb9c8a9d] remote server not configured\n2025-10-28 10:46:29.823 [error] [command][8717a4d1-c92a-44cc-a937-fb6a88cc7ad0] Socket error: Error: read ECONNRESET\n2025-10-28 10:46:29.823 [info] [command][8717a4d1-c92a-44cc-a937-fb6a88cc7ad0] Socket close event received\n2025-10-28 10:46:29.823 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][8717a4d1-c92a-44cc-a937-fb6a88cc7ad0] Socket closed without exit code\n2025-10-28 10:47:29.825 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:47:29.827 [info] [command][b3e5c6d8-4d42-48a2-a0ee-81f74c20e146] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""b3e5c6d8-4d42-48a2-a0ee-81f74c20e146""}\n2025-10-28 10:47:29.828 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d0ab3c78-4b80-4f4c-aecb-9f591f04d247] remote server not configured\n2025-10-28 10:47:29.828 [error] [command][b3e5c6d8-4d42-48a2-a0ee-81f74c20e146] Socket error: Error: read ECONNRESET\n2025-10-28 10:47:29.828 [info] [command][b3e5c6d8-4d42-48a2-a0ee-81f74c20e146] Socket close event received\n2025-10-28 10:47:29.828 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][b3e5c6d8-4d42-48a2-a0ee-81f74c20e146] Socket closed without exit code\n2025-10-28 10:48:29.833 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:48:29.835 [info] [command][5e8aebc1-d3fb-4556-b4f2-ed76be7f2c2d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5e8aebc1-d3fb-4556-b4f2-ed76be7f2c2d""}\n2025-10-28 10:48:29.836 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dabc0ed6-9052-4dc8-8077-f9c211e35b51] remote server not configured\n2025-10-28 10:48:29.836 [error] [command][5e8aebc1-d3fb-4556-b4f2-ed76be7f2c2d] Socket error: Error: read ECONNRESET\n2025-10-28 10:48:29.836 [info] [command][5e8aebc1-d3fb-4556-b4f2-ed76be7f2c2d] Socket close event received\n2025-10-28 10:48:29.836 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5e8aebc1-d3fb-4556-b4f2-ed76be7f2c2d] Socket closed without exit code\n2025-10-28 10:49:29.841 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:49:29.843 [info] [command][1790bb9c-086c-4706-a670-a71f04d1000d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1790bb9c-086c-4706-a670-a71f04d1000d""}\n2025-10-28 10:49:29.843 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][978eef8c-3f00-460f-8266-487ba8898ba6] remote server not configured\n2025-10-28 10:49:29.843 [error] [command][1790bb9c-086c-4706-a670-a71f04d1000d] Socket error: Error: read ECONNRESET\n2025-10-28 10:49:29.843 [info] [command][1790bb9c-086c-4706-a670-a71f04d1000d] Socket close event received\n2025-10-28 10:49:29.843 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1790bb9c-086c-4706-a670-a71f04d1000d] Socket closed without exit code\n2025-10-28 10:50:29.849 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:50:29.852 [info] [command][9cc20f06-05ed-414e-9778-80f3d666cf56] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9cc20f06-05ed-414e-9778-80f3d666cf56""}\n2025-10-28 10:50:29.852 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ff9d1609-28d0-45ca-99d8-1c5ea4844664] remote server not configured\n2025-10-28 10:50:29.852 [error] [command][9cc20f06-05ed-414e-9778-80f3d666cf56] Socket error: Error: read ECONNRESET\n2025-10-28 10:50:29.852 [info] [command][9cc20f06-05ed-414e-9778-80f3d666cf56] Socket close event received\n2025-10-28 10:50:29.852 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9cc20f06-05ed-414e-9778-80f3d666cf56] Socket closed without exit code\n2025-10-28 10:51:29.857 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:51:29.859 [info] [command][13a2e58d-168c-440c-80c4-90a82d81c60a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""13a2e58d-168c-440c-80c4-90a82d81c60a""}\n2025-10-28 10:51:29.860 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][874aa453-dacd-4dee-acfe-4e7c6162cbc7] remote server not configured\n2025-10-28 10:51:29.860 [error] [command][13a2e58d-168c-440c-80c4-90a82d81c60a] Socket error: Error: read ECONNRESET\n2025-10-28 10:51:29.860 [info] [command][13a2e58d-168c-440c-80c4-90a82d81c60a] Socket close event received\n2025-10-28 10:51:29.860 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][13a2e58d-168c-440c-80c4-90a82d81c60a] Socket closed without exit code\n2025-10-28 10:52:29.866 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:52:29.869 [info] [command][1067f5ae-75f8-4431-bbfc-8b5881cd4271] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1067f5ae-75f8-4431-bbfc-8b5881cd4271""}\n2025-10-28 10:52:29.869 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f222f59d-488c-4b11-acfa-d6f58c036203] remote server not configured\n2025-10-28 10:52:29.869 [error] [command][1067f5ae-75f8-4431-bbfc-8b5881cd4271] Socket error: Error: read ECONNRESET\n2025-10-28 10:52:29.869 [info] [command][1067f5ae-75f8-4431-bbfc-8b5881cd4271] Socket close event received\n2025-10-28 10:52:29.869 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1067f5ae-75f8-4431-bbfc-8b5881cd4271] Socket closed without exit code\n2025-10-28 10:53:29.873 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:53:29.875 [info] [command][1a43bba0-544e-4ed2-abf4-c0f3941292b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""1a43bba0-544e-4ed2-abf4-c0f3941292b0""}\n2025-10-28 10:53:29.875 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][4ae91eba-51dd-4c00-8c3e-d9fb34f6e364] remote server not configured\n2025-10-28 10:53:29.876 [error] [command][1a43bba0-544e-4ed2-abf4-c0f3941292b0] Socket error: Error: read ECONNRESET\n2025-10-28 10:53:29.876 [info] [command][1a43bba0-544e-4ed2-abf4-c0f3941292b0] Socket close event received\n2025-10-28 10:53:29.876 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][1a43bba0-544e-4ed2-abf4-c0f3941292b0] Socket closed without exit code\n2025-10-28 10:54:29.881 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:54:29.884 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][64f9d068-44ae-49f0-91a8-9d420f791227] remote server not configured\n2025-10-28 10:54:29.884 [info] [command][dfa15ec0-f1a4-4ec9-88c0-0afbfdbcb5c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""dfa15ec0-f1a4-4ec9-88c0-0afbfdbcb5c0""}\n2025-10-28 10:54:29.885 [error] [command][dfa15ec0-f1a4-4ec9-88c0-0afbfdbcb5c0] Socket error: Error: read ECONNRESET\n2025-10-28 10:54:29.885 [info] [command][dfa15ec0-f1a4-4ec9-88c0-0afbfdbcb5c0] Socket close event received\n2025-10-28 10:54:29.885 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][dfa15ec0-f1a4-4ec9-88c0-0afbfdbcb5c0] Socket closed without exit code\n2025-10-28 10:55:29.889 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:55:29.890 [info] [command][26ba19f2-e059-4598-9a2c-1f088eececda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""26ba19f2-e059-4598-9a2c-1f088eececda""}\n2025-10-28 10:55:29.890 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][dbee97a2-2eeb-4c2e-92af-a4a0b9aa7f14] remote server not configured\n2025-10-28 10:55:29.890 [error] [command][26ba19f2-e059-4598-9a2c-1f088eececda] Socket error: Error: read ECONNRESET\n2025-10-28 10:55:29.891 [info] [command][26ba19f2-e059-4598-9a2c-1f088eececda] Socket close event received\n2025-10-28 10:55:29.891 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][26ba19f2-e059-4598-9a2c-1f088eececda] Socket closed without exit code\n2025-10-28 10:56:29.897 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:56:29.899 [info] [command][278db15b-f1ef-4821-aa9b-570a7de7f727] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""278db15b-f1ef-4821-aa9b-570a7de7f727""}\n2025-10-28 10:56:29.899 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0e78e76c-714b-4887-abe9-ab86d496c2a0] remote server not configured\n2025-10-28 10:56:29.899 [error] [command][278db15b-f1ef-4821-aa9b-570a7de7f727] Socket error: Error: read ECONNRESET\n2025-10-28 10:56:29.899 [info] [command][278db15b-f1ef-4821-aa9b-570a7de7f727] Socket close event received\n2025-10-28 10:56:29.899 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][278db15b-f1ef-4821-aa9b-570a7de7f727] Socket closed without exit code\n2025-10-28 10:57:29.904 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:57:29.905 [info] [command][965dcd5b-e5e4-45ea-b0b3-ef3e90ffe498] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""965dcd5b-e5e4-45ea-b0b3-ef3e90ffe498""}\n2025-10-28 10:57:29.905 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][773b0668-cb74-4abb-add7-f251935fa829] remote server not configured\n2025-10-28 10:57:29.905 [error] [command][965dcd5b-e5e4-45ea-b0b3-ef3e90ffe498] Socket error: Error: read ECONNRESET\n2025-10-28 10:57:29.905 [info] [command][965dcd5b-e5e4-45ea-b0b3-ef3e90ffe498] Socket close event received\n2025-10-28 10:57:29.905 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][965dcd5b-e5e4-45ea-b0b3-ef3e90ffe498] Socket closed without exit code\n2025-10-28 10:58:29.907 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:58:29.910 [info] [command][88a1d3ed-0441-45ab-b0c1-66fd7964ad3e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""88a1d3ed-0441-45ab-b0c1-66fd7964ad3e""}\n2025-10-28 10:58:29.910 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][29a39029-844d-4795-9974-fa0a398e3495] remote server not configured\n2025-10-28 10:58:29.910 [error] [command][88a1d3ed-0441-45ab-b0c1-66fd7964ad3e] Socket error: Error: read ECONNRESET\n2025-10-28 10:58:29.910 [info] [command][88a1d3ed-0441-45ab-b0c1-66fd7964ad3e] Socket close event received\n2025-10-28 10:58:29.910 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][88a1d3ed-0441-45ab-b0c1-66fd7964ad3e] Socket closed without exit code\n2025-10-28 10:59:29.915 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 10:59:29.917 [info] [command][2893862c-9a33-4ba0-ad2f-9893f93081ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2893862c-9a33-4ba0-ad2f-9893f93081ed""}\n2025-10-28 10:59:29.917 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][3bd15369-66c9-46d4-aded-7488d376f69e] remote server not configured\n2025-10-28 10:59:29.918 [error] [command][2893862c-9a33-4ba0-ad2f-9893f93081ed] Socket error: Error: read ECONNRESET\n2025-10-28 10:59:29.918 [info] [command][2893862c-9a33-4ba0-ad2f-9893f93081ed] Socket close event received\n2025-10-28 10:59:29.918 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2893862c-9a33-4ba0-ad2f-9893f93081ed] Socket closed without exit code\n2025-10-28 11:00:29.922 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:00:29.925 [info] [command][cc0b77f0-9bd6-4b86-a95f-71a803244f2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""cc0b77f0-9bd6-4b86-a95f-71a803244f2b""}\n2025-10-28 11:00:29.925 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0a474b8d-d488-4a03-9e7d-e8e1747ade75] remote server not configured\n2025-10-28 11:00:29.926 [error] [command][cc0b77f0-9bd6-4b86-a95f-71a803244f2b] Socket error: Error: read ECONNRESET\n2025-10-28 11:00:29.926 [info] [command][cc0b77f0-9bd6-4b86-a95f-71a803244f2b] Socket close event received\n2025-10-28 11:00:29.926 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][cc0b77f0-9bd6-4b86-a95f-71a803244f2b] Socket closed without exit code\n2025-10-28 11:01:29.928 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:01:29.930 [info] [command][9d710fb3-67c6-4708-a422-83f41fea17c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""9d710fb3-67c6-4708-a422-83f41fea17c8""}\n2025-10-28 11:01:29.930 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][353d1d62-8b67-47fa-949f-b13898d0cab4] remote server not configured\n2025-10-28 11:01:29.930 [error] [command][9d710fb3-67c6-4708-a422-83f41fea17c8] Socket error: Error: read ECONNRESET\n2025-10-28 11:01:29.930 [info] [command][9d710fb3-67c6-4708-a422-83f41fea17c8] Socket close event received\n2025-10-28 11:01:29.930 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][9d710fb3-67c6-4708-a422-83f41fea17c8] Socket closed without exit code\n2025-10-28 11:02:29.935 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:02:29.937 [info] [command][e6424b89-ccc3-4bba-bb7c-6d9e41e99879] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e6424b89-ccc3-4bba-bb7c-6d9e41e99879""}\n2025-10-28 11:02:29.937 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e5092377-5489-4c6b-ae13-b4ff263d260b] remote server not configured\n2025-10-28 11:02:29.937 [error] [command][e6424b89-ccc3-4bba-bb7c-6d9e41e99879] Socket error: Error: read ECONNRESET\n2025-10-28 11:02:29.937 [info] [command][e6424b89-ccc3-4bba-bb7c-6d9e41e99879] Socket close event received\n2025-10-28 11:02:29.937 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e6424b89-ccc3-4bba-bb7c-6d9e41e99879] Socket closed without exit code\n2025-10-28 11:03:29.940 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:03:29.943 [info] [command][c0724047-8123-40c5-9122-4a946d024c65] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c0724047-8123-40c5-9122-4a946d024c65""}\n2025-10-28 11:03:29.943 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][f7c6dfdf-7414-46d1-9a10-fc84892d43fa] remote server not configured\n2025-10-28 11:03:29.944 [error] [command][c0724047-8123-40c5-9122-4a946d024c65] Socket error: Error: read ECONNRESET\n2025-10-28 11:03:29.944 [info] [command][c0724047-8123-40c5-9122-4a946d024c65] Socket close event received\n2025-10-28 11:03:29.944 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c0724047-8123-40c5-9122-4a946d024c65] Socket closed without exit code\n2025-10-28 11:04:29.949 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:04:29.951 [info] [command][2d6a1673-fa80-45b3-83ed-44db56796aa1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""2d6a1673-fa80-45b3-83ed-44db56796aa1""}\n2025-10-28 11:04:29.952 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][a275a10a-99db-4671-b6cf-6580c182bdc1] remote server not configured\n2025-10-28 11:04:29.952 [error] [command][2d6a1673-fa80-45b3-83ed-44db56796aa1] Socket error: Error: read ECONNRESET\n2025-10-28 11:04:29.952 [info] [command][2d6a1673-fa80-45b3-83ed-44db56796aa1] Socket close event received\n2025-10-28 11:04:29.952 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][2d6a1673-fa80-45b3-83ed-44db56796aa1] Socket closed without exit code\n2025-10-28 11:05:29.956 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:05:29.959 [info] [command][0e9d1b6b-2124-490a-b0e3-3a2037d07fd8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""0e9d1b6b-2124-490a-b0e3-3a2037d07fd8""}\n2025-10-28 11:05:29.959 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][ec8fbcbd-9a37-4a5a-9061-5b4ecb950676] remote server not configured\n2025-10-28 11:05:29.959 [error] [command][0e9d1b6b-2124-490a-b0e3-3a2037d07fd8] Socket error: Error: read ECONNRESET\n2025-10-28 11:05:29.959 [info] [command][0e9d1b6b-2124-490a-b0e3-3a2037d07fd8] Socket close event received\n2025-10-28 11:05:29.959 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][0e9d1b6b-2124-490a-b0e3-3a2037d07fd8] Socket closed without exit code\n2025-10-28 11:06:29.962 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:06:29.963 [info] [command][4a2536f6-37b4-4c3a-b064-2d091591e85a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""4a2536f6-37b4-4c3a-b064-2d091591e85a""}\n2025-10-28 11:06:29.964 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][05bb04fe-b019-4dad-ac46-855a859d8ec0] remote server not configured\n2025-10-28 11:06:29.964 [error] [command][4a2536f6-37b4-4c3a-b064-2d091591e85a] Socket error: Error: read ECONNRESET\n2025-10-28 11:06:29.965 [info] [command][4a2536f6-37b4-4c3a-b064-2d091591e85a] Socket close event received\n2025-10-28 11:06:29.965 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][4a2536f6-37b4-4c3a-b064-2d091591e85a] Socket closed without exit code\n2025-10-28 11:07:29.966 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:07:29.968 [info] [command][e477ccf7-0de3-4d89-b113-3bea74903860] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e477ccf7-0de3-4d89-b113-3bea74903860""}\n2025-10-28 11:07:29.968 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][71ca0313-3a3a-4fd5-a760-e4dadd149ff6] remote server not configured\n2025-10-28 11:07:29.969 [error] [command][e477ccf7-0de3-4d89-b113-3bea74903860] Socket error: Error: read ECONNRESET\n2025-10-28 11:07:29.969 [info] [command][e477ccf7-0de3-4d89-b113-3bea74903860] Socket close event received\n2025-10-28 11:07:29.969 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e477ccf7-0de3-4d89-b113-3bea74903860] Socket closed without exit code\n2025-10-28 11:08:29.974 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:08:29.976 [info] [command][5f47646c-2fef-49fd-a2e0-45e9f5f4fed2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""5f47646c-2fef-49fd-a2e0-45e9f5f4fed2""}\n2025-10-28 11:08:29.976 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7bc1e80a-9366-4faa-805a-4fafe0f5a74e] remote server not configured\n2025-10-28 11:08:29.976 [error] [command][5f47646c-2fef-49fd-a2e0-45e9f5f4fed2] Socket error: Error: read ECONNRESET\n2025-10-28 11:08:29.976 [info] [command][5f47646c-2fef-49fd-a2e0-45e9f5f4fed2] Socket close event received\n2025-10-28 11:08:29.976 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][5f47646c-2fef-49fd-a2e0-45e9f5f4fed2] Socket closed without exit code\n2025-10-28 11:09:29.978 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:09:29.980 [info] [command][e44c0617-9f89-484d-9118-98ca89e44764] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""e44c0617-9f89-484d-9118-98ca89e44764""}\n2025-10-28 11:09:29.980 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][37bd5e09-0ee2-4774-b428-c3a16d4917b4] remote server not configured\n2025-10-28 11:09:29.980 [error] [command][e44c0617-9f89-484d-9118-98ca89e44764] Socket error: Error: read ECONNRESET\n2025-10-28 11:09:29.980 [info] [command][e44c0617-9f89-484d-9118-98ca89e44764] Socket close event received\n2025-10-28 11:09:29.980 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][e44c0617-9f89-484d-9118-98ca89e44764] Socket closed without exit code\n2025-10-28 11:10:29.983 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:10:29.984 [info] [command][7a382555-5087-4f53-a183-5025ffb60336] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""7a382555-5087-4f53-a183-5025ffb60336""}\n2025-10-28 11:10:29.985 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][5dfea674-28e8-4591-bef0-b015816e682f] remote server not configured\n2025-10-28 11:10:29.985 [error] [command][7a382555-5087-4f53-a183-5025ffb60336] Socket error: Error: read ECONNRESET\n2025-10-28 11:10:29.985 [info] [command][7a382555-5087-4f53-a183-5025ffb60336] Socket close event received\n2025-10-28 11:10:29.985 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][7a382555-5087-4f53-a183-5025ffb60336] Socket closed without exit code\n2025-10-28 11:11:29.986 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:11:29.987 [info] [command][3143ecd2-f9e3-4380-a794-7e4e599e9ef1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""3143ecd2-f9e3-4380-a794-7e4e599e9ef1""}\n2025-10-28 11:11:29.988 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][694dc7b3-541d-4001-98cb-fe4ca785d73b] remote server not configured\n2025-10-28 11:11:29.988 [error] [command][3143ecd2-f9e3-4380-a794-7e4e599e9ef1] Socket error: Error: read ECONNRESET\n2025-10-28 11:11:29.988 [info] [command][3143ecd2-f9e3-4380-a794-7e4e599e9ef1] Socket close event received\n2025-10-28 11:11:29.988 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][3143ecd2-f9e3-4380-a794-7e4e599e9ef1] Socket closed without exit code\n2025-10-28 11:12:29.992 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:12:29.994 [info] [command][d3ddaf92-4db3-46f3-90cd-a8438fe2f0f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""d3ddaf92-4db3-46f3-90cd-a8438fe2f0f2""}\n2025-10-28 11:12:29.994 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][19b33a9d-f2f7-4f1c-baa2-5c6e097db98a] remote server not configured\n2025-10-28 11:12:29.994 [error] [command][d3ddaf92-4db3-46f3-90cd-a8438fe2f0f2] Socket error: Error: read ECONNRESET\n2025-10-28 11:12:29.994 [info] [command][d3ddaf92-4db3-46f3-90cd-a8438fe2f0f2] Socket close event received\n2025-10-28 11:12:29.994 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][d3ddaf92-4db3-46f3-90cd-a8438fe2f0f2] Socket closed without exit code\n2025-10-28 11:13:29.998 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:13:29.999 [info] [command][ba35a2a5-5095-406a-a395-eb574c5e034f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""ba35a2a5-5095-406a-a395-eb574c5e034f""}\n2025-10-28 11:13:29.999 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][780a50a1-356f-4177-bec3-7b394b934b6a] remote server not configured\n2025-10-28 11:13:30.000 [error] [command][ba35a2a5-5095-406a-a395-eb574c5e034f] Socket error: Error: read ECONNRESET\n2025-10-28 11:13:30.000 [info] [command][ba35a2a5-5095-406a-a395-eb574c5e034f] Socket close event received\n2025-10-28 11:13:30.000 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][ba35a2a5-5095-406a-a395-eb574c5e034f] Socket closed without exit code\n2025-10-28 11:14:30.004 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:14:30.006 [info] [command][56250d60-26bc-4da3-93f0-989868ff721c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""56250d60-26bc-4da3-93f0-989868ff721c""}\n2025-10-28 11:14:30.006 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][40c70fc0-2777-468f-a990-4b1f2986f189] remote server not configured\n2025-10-28 11:14:30.007 [error] [command][56250d60-26bc-4da3-93f0-989868ff721c] Socket error: Error: read ECONNRESET\n2025-10-28 11:14:30.007 [info] [command][56250d60-26bc-4da3-93f0-989868ff721c] Socket close event received\n2025-10-28 11:14:30.007 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][56250d60-26bc-4da3-93f0-989868ff721c] Socket closed without exit code\n2025-10-28 11:15:30.011 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:15:30.013 [info] [command][621c3047-2c3a-49d8-b42e-7841cc1590ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""621c3047-2c3a-49d8-b42e-7841cc1590ca""}\n2025-10-28 11:15:30.013 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][0b88c779-74c0-410a-a800-8696ad62a274] remote server not configured\n2025-10-28 11:15:30.013 [error] [command][621c3047-2c3a-49d8-b42e-7841cc1590ca] Socket error: Error: read ECONNRESET\n2025-10-28 11:15:30.013 [info] [command][621c3047-2c3a-49d8-b42e-7841cc1590ca] Socket close event received\n2025-10-28 11:15:30.013 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][621c3047-2c3a-49d8-b42e-7841cc1590ca] Socket closed without exit code\n2025-10-28 11:16:30.016 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:16:30.018 [info] [command][eab63ddd-2d39-42e0-9a0c-c715c6b179c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""eab63ddd-2d39-42e0-9a0c-c715c6b179c1""}\n2025-10-28 11:16:30.018 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][d1608fd4-a0ed-4f02-af54-4f9f10fc2374] remote server not configured\n2025-10-28 11:16:30.018 [error] [command][eab63ddd-2d39-42e0-9a0c-c715c6b179c1] Socket error: Error: read ECONNRESET\n2025-10-28 11:16:30.018 [info] [command][eab63ddd-2d39-42e0-9a0c-c715c6b179c1] Socket close event received\n2025-10-28 11:16:30.018 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][eab63ddd-2d39-42e0-9a0c-c715c6b179c1] Socket closed without exit code\n2025-10-28 11:17:30.019 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:17:30.020 [info] [command][c87ac826-2599-4647-a6cc-da608f22193d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""c87ac826-2599-4647-a6cc-da608f22193d""}\n2025-10-28 11:17:30.021 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][24f97446-9979-4ac6-aa78-0311d77d645f] remote server not configured\n2025-10-28 11:17:30.021 [error] [command][c87ac826-2599-4647-a6cc-da608f22193d] Socket error: Error: read ECONNRESET\n2025-10-28 11:17:30.021 [info] [command][c87ac826-2599-4647-a6cc-da608f22193d] Socket close event received\n2025-10-28 11:17:30.021 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][c87ac826-2599-4647-a6cc-da608f22193d] Socket closed without exit code\n2025-10-28 11:18:30.021 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:18:30.023 [info] [command][856f4d1d-4cfa-45b2-8d8e-6352e0549293] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""856f4d1d-4cfa-45b2-8d8e-6352e0549293""}\n2025-10-28 11:18:30.024 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][e84a9691-7b2a-44fa-8e1a-b070842cd373] remote server not configured\n2025-10-28 11:18:30.024 [error] [command][856f4d1d-4cfa-45b2-8d8e-6352e0549293] Socket error: Error: read ECONNRESET\n2025-10-28 11:18:30.024 [info] [command][856f4d1d-4cfa-45b2-8d8e-6352e0549293] Socket close event received\n2025-10-28 11:18:30.024 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][856f4d1d-4cfa-45b2-8d8e-6352e0549293] Socket closed without exit code\n2025-10-28 11:19:30.015 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:19:30.017 [info] [command][896ee9ee-112b-4609-96f4-3581513f52ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""896ee9ee-112b-4609-96f4-3581513f52ce""}\n2025-10-28 11:19:30.017 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][b551b9aa-8b80-4b2d-8682-dd1a4420dd70] remote server not configured\n2025-10-28 11:19:30.017 [error] [command][896ee9ee-112b-4609-96f4-3581513f52ce] Socket error: Error: read ECONNRESET\n2025-10-28 11:19:30.017 [info] [command][896ee9ee-112b-4609-96f4-3581513f52ce] Socket close event received\n2025-10-28 11:19:30.017 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][896ee9ee-112b-4609-96f4-3581513f52ce] Socket closed without exit code\n2025-10-28 11:20:30.017 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:20:30.018 [info] [command][f5bfd2ee-4883-4d51-9f06-68314ee94014] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""f5bfd2ee-4883-4d51-9f06-68314ee94014""}\n2025-10-28 11:20:30.018 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][63465652-a117-4be1-b7dc-8a4c014182da] remote server not configured\n2025-10-28 11:20:30.018 [error] [command][f5bfd2ee-4883-4d51-9f06-68314ee94014] Socket error: Error: read ECONNRESET\n2025-10-28 11:20:30.018 [info] [command][f5bfd2ee-4883-4d51-9f06-68314ee94014] Socket close event received\n2025-10-28 11:20:30.018 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][f5bfd2ee-4883-4d51-9f06-68314ee94014] Socket closed without exit code\n2025-10-28 11:21:30.023 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:21:30.025 [info] [command][a1f9a96b-f57e-45fe-943c-b450e8f1751a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""a1f9a96b-f57e-45fe-943c-b450e8f1751a""}\n2025-10-28 11:21:30.025 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][7c126ba6-3afe-44a1-9d17-e268866171bb] remote server not configured\n2025-10-28 11:21:30.025 [error] [command][a1f9a96b-f57e-45fe-943c-b450e8f1751a] Socket error: Error: read ECONNRESET\n2025-10-28 11:21:30.025 [info] [command][a1f9a96b-f57e-45fe-943c-b450e8f1751a] Socket close event received\n2025-10-28 11:21:30.025 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][a1f9a96b-f57e-45fe-943c-b450e8f1751a] Socket closed without exit code\n2025-10-28 11:22:30.030 [info] [remote-ssh] Pinging remote server via 127.0.0.1:58046...\n2025-10-28 11:22:30.032 [info] [command][96756c1d-6406-4240-8dcf-6bf3f2daeb59] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""18537a82-2c66-4d7b-90b4-32ff1f3c50ec"",""id"":""96756c1d-6406-4240-8dcf-6bf3f2daeb59""}\n2025-10-28 11:22:30.032 [error] [forwarding][multiplex][127.0.0.1:58046 -> unknown}][80787b7d-3c62-43ea-8f1c-102d41fe14db] remote server not configured\n2025-10-28 11:22:30.032 [error] [command][96756c1d-6406-4240-8dcf-6bf3f2daeb59] Socket error: Error: read ECONNRESET\n2025-10-28 11:22:30.032 [info] [command][96756c1d-6406-4240-8dcf-6bf3f2daeb59] Socket close event received\n2025-10-28 11:22:30.032 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:58046: Error: [command][96756c1d-6406-4240-8dcf-6bf3f2daeb59] Socket closed without exit code\n2025-10-28 11:23:17.119 [info] Resolving ssh remote authority 'login.haicore.berlin' (Unparsed 'ssh-remote+7b22686f73744e616d65223a226c6f67696e2e686169636f72652e6265726c696e227d') (attempt #1)\n2025-10-28 11:23:17.128 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 11:23:17.212 [info] Using configured platform linux for remote host login.haicore.berlin\n2025-10-28 11:23:17.216 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 11:23:17.219 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c2dc8d1f-c018-4c2b-908c-98cbf0059f60.sh"" | ssh -T -D 56481 login.haicore.berlin bash --login -c bash\n2025-10-28 11:23:17.219 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c2dc8d1f-c018-4c2b-908c-98cbf0059f60.sh"" | ssh -T -D 56481 login.haicore.berlin bash --login -c bash\n2025-10-28 11:23:17.219 [info] Started installation script. Waiting for it to finish...\n2025-10-28 11:23:17.219 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 11:23:18.294 [info] (ssh_tunnel) stdout: Configuring Cursor Server on Remote\nUsing TMP_DIR: /run/user/961800067\n\n2025-10-28 11:23:18.323 [info] (ssh_tunnel) stdout: Locking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-28 11:23:18.349 [info] (ssh_tunnel) stdout: Server script already installed in /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server\nChecking node executable\nv20.18.2\nChecking for running multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-28 11:23:18.362 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-10-28 11:23:18.364 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-28 11:23:18.367 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server\n\n2025-10-28 11:23:18.373 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-28 11:23:18.381 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js bf11df0a-a510-4abc-87c9-121bfdb07854 0\n\n2025-10-28 11:23:18.382 [info] (ssh_tunnel) stdout: Multiplex server started with PID 3976327 and wrote pid to file /run/user/961800067/cursor-remote-multiplex.pid.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\nReading multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-28 11:23:18.382 [info] (ssh_tunnel) stdout: Multiplex server token file found\n\n2025-10-28 11:23:18.383 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/961800067/cursor-remote-multiplex.log.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-28 11:23:18.892 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-10-28 11:23:18.908 [info] (ssh_tunnel) stdout: Code server script is not running\nCreating code server token file /run/user/961800067/cursor-remote-code.token.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-28 11:23:18.931 [info] (ssh_tunnel) stdout: Starting code server script /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/961800067/cursor-remote-code.token.c403edc4db82e26fa41a0903d75ac6d0 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/961800067/cursor-remote-code.log.c403edc4db82e26fa41a0903d75ac6d0 &\n\n2025-10-28 11:23:18.932 [info] (ssh_tunnel) stdout: Code server started with PID 3976351 and wrote pid to file /run/user/961800067/cursor-remote-code.pid.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-28 11:23:18.934 [info] (ssh_tunnel) stdout: Code server log file is /run/user/961800067/cursor-remote-code.log.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-28 11:23:19.425 [info] (ssh_tunnel) stdout: 1d5408d68427af86d48bac37: start\nexitCode==0==\nnodeExecutable==/home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==34173==\nmultiplexConnectionToken==bf11df0a-a510-4abc-87c9-121bfdb07854==\ncodeListeningOn==42043==\ncodeConnectionToken==004b0eee-3dae-46af-95c4-7b3a9b69dfda==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n1d5408d68427af86d48bac37: end\n\n2025-10-28 11:23:19.425 [info] Server install command exit code: 0\n2025-10-28 11:23:19.425 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c2dc8d1f-c018-4c2b-908c-98cbf0059f60.sh\n2025-10-28 11:23:19.426 [info] [forwarding][code] creating new forwarding server\n2025-10-28 11:23:19.426 [info] [forwarding][code] server listening on 127.0.0.1:56486\n2025-10-28 11:23:19.426 [info] [forwarding][code] Set up server\n2025-10-28 11:23:19.426 [info] [remote-ssh] codeListeningOn (remote=127.0.0.1:42043; local=127.0.0.1:56486) codeConnectionToken: 004b0eee-3dae-46af-95c4-7b3a9b69dfda\n2025-10-28 11:23:19.426 [info] [forwarding][multiplex] creating new forwarding server\n2025-10-28 11:23:19.426 [info] [forwarding][multiplex] server listening on 127.0.0.1:56487\n2025-10-28 11:23:19.426 [info] [forwarding][multiplex] Set up server\n2025-10-28 11:23:19.427 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: bf11df0a-a510-4abc-87c9-121bfdb07854\n2025-10-28 11:23:19.427 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:23:19.428 [info] [remote-ssh] Resolved exec server. Socks port: 56481\n2025-10-28 11:23:19.428 [info] Setting up 0 default forwarded ports\n2025-10-28 11:23:19.428 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":56486,""connectionToken"":""004b0eee-3dae-46af-95c4-7b3a9b69dfda"",""extensionHostEnv"":{}}. Socks port: 56481\n2025-10-28 11:23:19.429 [info] [command][8a26f1ca-0727-40f1-9358-b1a8485f6535] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8a26f1ca-0727-40f1-9358-b1a8485f6535""}\n2025-10-28 11:23:19.429 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a494c086-de28-4687-b750-c49346cd56a2] received connection request\n2025-10-28 11:23:19.430 [info] (ssh_tunnel) stdout: Unlocking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-28 11:23:19.437 [info] (ssh_tunnel) stdout: \n\n2025-10-28 11:23:19.447 [info] (ssh_tunnel) stdout: ***********************************************************************\n* This terminal is used to establish and maintain the SSH connection. *\n* Closing this terminal will terminate the connection and disconnect *\n* Cursor from the remote server. *\n***********************************************************************\n\n2025-10-28 11:23:19.456 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a494c086-de28-4687-b750-c49346cd56a2] socks forwarding established\n2025-10-28 11:23:19.481 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][86a58ba8-6df2-467b-bed6-e550bcb5793c] received connection request\n2025-10-28 11:23:19.516 [info] [command][8a26f1ca-0727-40f1-9358-b1a8485f6535] Process exited with code 0\n2025-10-28 11:23:19.517 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a494c086-de28-4687-b750-c49346cd56a2] socks connection closed\n2025-10-28 11:23:19.517 [info] [command][8a26f1ca-0727-40f1-9358-b1a8485f6535] Socket close event received\n2025-10-28 11:23:19.542 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][86a58ba8-6df2-467b-bed6-e550bcb5793c] socks forwarding established\n2025-10-28 11:23:19.578 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][1ff594b3-c1db-4d4b-ab70-647829382274] received connection request\n2025-10-28 11:23:19.602 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][1ff594b3-c1db-4d4b-ab70-647829382274] socks forwarding established\n2025-10-28 11:23:19.753 [info] Saved platform linux for remote host login.haicore.berlin\n2025-10-28 11:23:22.644 [info] [tunnel-forwarding][localhost:8888 -> 127.0.0.1:8888] server listening\n2025-10-28 11:23:22.644 [info] Cross binding to [::1]:8888. Originally bound to 127.0.0.1:8888\n2025-10-28 11:23:22.644 [info] [tunnel-forwarding][::1:8888 -> 127.0.0.1:8888] server listening\n2025-10-28 11:23:22.645 [info] [tunnel-forwarding][localhost:62884 -> localhost:6006] server listening\n2025-10-28 11:23:22.645 [info] Cross binding to [::1]:62884. Originally bound to 127.0.0.1:62884\n2025-10-28 11:23:22.645 [info] [tunnel-forwarding][::1:62884 -> localhost:6006] server listening\n2025-10-28 11:23:42.287 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][b1462189-516e-4c83-bdd6-d89490bc3235] received connection request\n2025-10-28 11:23:42.318 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][b1462189-516e-4c83-bdd6-d89490bc3235] socks forwarding established\n2025-10-28 11:23:43.988 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][b1462189-516e-4c83-bdd6-d89490bc3235] socks connection closed\n2025-10-28 11:24:19.523 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:24:19.525 [info] [command][56573602-4612-4b24-b312-d324d53463ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""56573602-4612-4b24-b312-d324d53463ce""}\n2025-10-28 11:24:19.525 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a7582e8e-8396-4079-aaad-a1305fb7f440] received connection request\n2025-10-28 11:24:19.548 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a7582e8e-8396-4079-aaad-a1305fb7f440] socks forwarding established\n2025-10-28 11:24:19.575 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a7582e8e-8396-4079-aaad-a1305fb7f440] socks connection closed\n2025-10-28 11:24:19.575 [info] [command][56573602-4612-4b24-b312-d324d53463ce] Process exited with code 0\n2025-10-28 11:24:19.575 [info] [command][56573602-4612-4b24-b312-d324d53463ce] Socket close event received\n2025-10-28 11:25:19.576 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:25:19.578 [info] [command][3ac1bba8-1a45-42d3-9651-f5e8c23735a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3ac1bba8-1a45-42d3-9651-f5e8c23735a3""}\n2025-10-28 11:25:19.580 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][670903e3-84bd-4106-80b4-ddda9baec19f] received connection request\n2025-10-28 11:25:19.604 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][670903e3-84bd-4106-80b4-ddda9baec19f] socks forwarding established\n2025-10-28 11:25:19.629 [info] [command][3ac1bba8-1a45-42d3-9651-f5e8c23735a3] Process exited with code 0\n2025-10-28 11:25:19.630 [info] [command][3ac1bba8-1a45-42d3-9651-f5e8c23735a3] Socket close event received\n2025-10-28 11:25:19.630 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][670903e3-84bd-4106-80b4-ddda9baec19f] socks connection closed\n2025-10-28 11:26:19.635 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:26:19.636 [info] [command][22e49e54-911b-40b2-b61c-21fde6fafac4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""22e49e54-911b-40b2-b61c-21fde6fafac4""}\n2025-10-28 11:26:19.637 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1a3017f5-b1b3-4e5f-b0de-99ae741f885c] received connection request\n2025-10-28 11:26:19.660 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1a3017f5-b1b3-4e5f-b0de-99ae741f885c] socks forwarding established\n2025-10-28 11:26:19.689 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1a3017f5-b1b3-4e5f-b0de-99ae741f885c] socks connection closed\n2025-10-28 11:26:19.689 [info] [command][22e49e54-911b-40b2-b61c-21fde6fafac4] Process exited with code 0\n2025-10-28 11:26:19.689 [info] [command][22e49e54-911b-40b2-b61c-21fde6fafac4] Socket close event received\n2025-10-28 11:27:19.693 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:27:19.695 [info] [command][e4591cd1-3e37-4093-a806-ec14bbfb2967] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e4591cd1-3e37-4093-a806-ec14bbfb2967""}\n2025-10-28 11:27:19.696 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][616bddd8-d979-4b69-be0b-68a85986af2f] received connection request\n2025-10-28 11:27:19.718 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][616bddd8-d979-4b69-be0b-68a85986af2f] socks forwarding established\n2025-10-28 11:27:19.745 [info] [command][e4591cd1-3e37-4093-a806-ec14bbfb2967] Process exited with code 0\n2025-10-28 11:27:19.745 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][616bddd8-d979-4b69-be0b-68a85986af2f] socks connection closed\n2025-10-28 11:27:19.745 [info] [command][e4591cd1-3e37-4093-a806-ec14bbfb2967] Socket close event received\n2025-10-28 11:27:35.383 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][f4c8dac2-94a0-4acf-b0c6-3fdda7e4bbdd] received connection request\n2025-10-28 11:27:35.405 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][f4c8dac2-94a0-4acf-b0c6-3fdda7e4bbdd] socks forwarding established\n2025-10-28 11:27:39.072 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][f4c8dac2-94a0-4acf-b0c6-3fdda7e4bbdd] socks connection closed\n2025-10-28 11:28:19.751 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:28:19.752 [info] [command][4a5daf7f-af1c-4c55-89fc-b7cfa5e72ea6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4a5daf7f-af1c-4c55-89fc-b7cfa5e72ea6""}\n2025-10-28 11:28:19.753 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f16393fa-ba13-41d2-bf3f-2708b105b694] received connection request\n2025-10-28 11:28:19.776 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f16393fa-ba13-41d2-bf3f-2708b105b694] socks forwarding established\n2025-10-28 11:28:19.801 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f16393fa-ba13-41d2-bf3f-2708b105b694] socks connection closed\n2025-10-28 11:28:19.801 [info] [command][4a5daf7f-af1c-4c55-89fc-b7cfa5e72ea6] Process exited with code 0\n2025-10-28 11:28:19.801 [info] [command][4a5daf7f-af1c-4c55-89fc-b7cfa5e72ea6] Socket close event received\n2025-10-28 11:29:19.803 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:29:19.806 [info] [command][49ea94bc-219b-4cda-8d11-73fe16635824] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""49ea94bc-219b-4cda-8d11-73fe16635824""}\n2025-10-28 11:29:19.807 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][061d9e45-3e5a-41bb-9953-6576a9095392] received connection request\n2025-10-28 11:29:19.829 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][061d9e45-3e5a-41bb-9953-6576a9095392] socks forwarding established\n2025-10-28 11:29:19.855 [info] [command][49ea94bc-219b-4cda-8d11-73fe16635824] Process exited with code 0\n2025-10-28 11:29:19.856 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][061d9e45-3e5a-41bb-9953-6576a9095392] socks connection closed\n2025-10-28 11:29:19.856 [info] [command][49ea94bc-219b-4cda-8d11-73fe16635824] Socket close event received\n2025-10-28 11:30:19.860 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:30:19.862 [info] [command][7fec7edb-22ac-4fd2-9996-c90486c9b8ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7fec7edb-22ac-4fd2-9996-c90486c9b8ec""}\n2025-10-28 11:30:19.863 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1c11b8f2-b07e-4c7d-9ad9-1f83e1b82d20] received connection request\n2025-10-28 11:30:19.886 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1c11b8f2-b07e-4c7d-9ad9-1f83e1b82d20] socks forwarding established\n2025-10-28 11:30:19.915 [info] [command][7fec7edb-22ac-4fd2-9996-c90486c9b8ec] Process exited with code 0\n2025-10-28 11:30:19.915 [info] [command][7fec7edb-22ac-4fd2-9996-c90486c9b8ec] Socket close event received\n2025-10-28 11:30:19.915 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1c11b8f2-b07e-4c7d-9ad9-1f83e1b82d20] socks connection closed\n2025-10-28 11:31:19.921 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:31:19.922 [info] [command][7d0d89a4-ada3-4a50-bbe7-56c0335b7b7b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7d0d89a4-ada3-4a50-bbe7-56c0335b7b7b""}\n2025-10-28 11:31:19.923 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c684c9a1-52c4-4dcd-a4e9-3f6d1adb6293] received connection request\n2025-10-28 11:31:19.945 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c684c9a1-52c4-4dcd-a4e9-3f6d1adb6293] socks forwarding established\n2025-10-28 11:31:19.971 [info] [command][7d0d89a4-ada3-4a50-bbe7-56c0335b7b7b] Process exited with code 0\n2025-10-28 11:31:19.972 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c684c9a1-52c4-4dcd-a4e9-3f6d1adb6293] socks connection closed\n2025-10-28 11:31:19.972 [info] [command][7d0d89a4-ada3-4a50-bbe7-56c0335b7b7b] Socket close event received\n2025-10-28 11:32:19.977 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:32:19.980 [info] [command][a61cae7f-0c76-44cc-9cc5-404e4b14ee0e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a61cae7f-0c76-44cc-9cc5-404e4b14ee0e""}\n2025-10-28 11:32:19.980 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][642bfe54-e619-4643-95c3-a53079be264f] received connection request\n2025-10-28 11:32:20.003 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][642bfe54-e619-4643-95c3-a53079be264f] socks forwarding established\n2025-10-28 11:32:20.033 [info] [command][a61cae7f-0c76-44cc-9cc5-404e4b14ee0e] Process exited with code 0\n2025-10-28 11:32:20.034 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][642bfe54-e619-4643-95c3-a53079be264f] socks connection closed\n2025-10-28 11:32:20.034 [info] [command][a61cae7f-0c76-44cc-9cc5-404e4b14ee0e] Socket close event received\n2025-10-28 11:33:20.036 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:33:20.037 [info] [command][5351a3da-ad29-48a4-884f-c54e82081a55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5351a3da-ad29-48a4-884f-c54e82081a55""}\n2025-10-28 11:33:20.038 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c81b85c2-5d9c-4708-92a2-aef2bc0ef461] received connection request\n2025-10-28 11:33:20.061 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c81b85c2-5d9c-4708-92a2-aef2bc0ef461] socks forwarding established\n2025-10-28 11:33:20.086 [info] [command][5351a3da-ad29-48a4-884f-c54e82081a55] Process exited with code 0\n2025-10-28 11:33:20.086 [info] [command][5351a3da-ad29-48a4-884f-c54e82081a55] Socket close event received\n2025-10-28 11:33:20.087 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c81b85c2-5d9c-4708-92a2-aef2bc0ef461] socks connection closed\n2025-10-28 11:34:20.088 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:34:20.090 [info] [command][7fe566a1-28aa-4be7-8502-84fc648e315a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7fe566a1-28aa-4be7-8502-84fc648e315a""}\n2025-10-28 11:34:20.090 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8ebf01d3-9a09-451f-a0ce-ff72d8930b94] received connection request\n2025-10-28 11:34:20.118 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8ebf01d3-9a09-451f-a0ce-ff72d8930b94] socks forwarding established\n2025-10-28 11:34:20.146 [info] [command][7fe566a1-28aa-4be7-8502-84fc648e315a] Process exited with code 0\n2025-10-28 11:34:20.146 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8ebf01d3-9a09-451f-a0ce-ff72d8930b94] socks connection closed\n2025-10-28 11:34:20.147 [info] [command][7fe566a1-28aa-4be7-8502-84fc648e315a] Socket close event received\n2025-10-28 11:35:20.151 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:35:20.153 [info] [command][0efa7475-b036-40a1-af06-31a51f776f76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0efa7475-b036-40a1-af06-31a51f776f76""}\n2025-10-28 11:35:20.153 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][116eda25-b98c-4819-a02f-6cfd014e0ee6] received connection request\n2025-10-28 11:35:20.180 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][116eda25-b98c-4819-a02f-6cfd014e0ee6] socks forwarding established\n2025-10-28 11:35:20.205 [info] [command][0efa7475-b036-40a1-af06-31a51f776f76] Process exited with code 0\n2025-10-28 11:35:20.205 [info] [command][0efa7475-b036-40a1-af06-31a51f776f76] Socket close event received\n2025-10-28 11:35:20.206 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][116eda25-b98c-4819-a02f-6cfd014e0ee6] socks connection closed\n2025-10-28 11:36:20.210 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:36:20.212 [info] [command][3c97b24e-3e9b-450b-81e8-745f622c4178] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3c97b24e-3e9b-450b-81e8-745f622c4178""}\n2025-10-28 11:36:20.212 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cb74c9d7-24a3-433b-957d-8a84cf055408] received connection request\n2025-10-28 11:36:20.237 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cb74c9d7-24a3-433b-957d-8a84cf055408] socks forwarding established\n2025-10-28 11:36:20.331 [info] [command][3c97b24e-3e9b-450b-81e8-745f622c4178] Process exited with code 0\n2025-10-28 11:36:20.331 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cb74c9d7-24a3-433b-957d-8a84cf055408] socks connection closed\n2025-10-28 11:36:20.331 [info] [command][3c97b24e-3e9b-450b-81e8-745f622c4178] Socket close event received\n2025-10-28 11:37:20.333 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:37:20.334 [info] [command][63b1843a-322f-4cd3-b7c5-219f713b7756] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""63b1843a-322f-4cd3-b7c5-219f713b7756""}\n2025-10-28 11:37:20.335 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ddfc88e7-213b-4571-8f8b-0bb69df3e625] received connection request\n2025-10-28 11:37:20.357 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ddfc88e7-213b-4571-8f8b-0bb69df3e625] socks forwarding established\n2025-10-28 11:37:20.386 [info] [command][63b1843a-322f-4cd3-b7c5-219f713b7756] Process exited with code 0\n2025-10-28 11:37:20.386 [info] [command][63b1843a-322f-4cd3-b7c5-219f713b7756] Socket close event received\n2025-10-28 11:37:20.387 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ddfc88e7-213b-4571-8f8b-0bb69df3e625] socks connection closed\n2025-10-28 11:38:20.390 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:38:20.392 [info] [command][159e9136-3172-4c37-9cd4-4b7d92f4efe8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""159e9136-3172-4c37-9cd4-4b7d92f4efe8""}\n2025-10-28 11:38:20.393 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3b24153c-7152-46c4-9336-f6f0e37af4c9] received connection request\n2025-10-28 11:38:20.417 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3b24153c-7152-46c4-9336-f6f0e37af4c9] socks forwarding established\n2025-10-28 11:38:20.443 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3b24153c-7152-46c4-9336-f6f0e37af4c9] socks connection closed\n2025-10-28 11:38:20.443 [info] [command][159e9136-3172-4c37-9cd4-4b7d92f4efe8] Process exited with code 0\n2025-10-28 11:38:20.443 [info] [command][159e9136-3172-4c37-9cd4-4b7d92f4efe8] Socket close event received\n2025-10-28 11:39:20.447 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:39:20.450 [info] [command][6b648798-c727-4b46-9aec-6a5d72d72215] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6b648798-c727-4b46-9aec-6a5d72d72215""}\n2025-10-28 11:39:20.451 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][00d6d697-3b93-4457-bd0d-43557e14eea3] received connection request\n2025-10-28 11:39:20.483 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][00d6d697-3b93-4457-bd0d-43557e14eea3] socks forwarding established\n2025-10-28 11:39:20.510 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][00d6d697-3b93-4457-bd0d-43557e14eea3] socks connection closed\n2025-10-28 11:39:20.510 [info] [command][6b648798-c727-4b46-9aec-6a5d72d72215] Process exited with code 0\n2025-10-28 11:39:20.511 [info] [command][6b648798-c727-4b46-9aec-6a5d72d72215] Socket close event received\n2025-10-28 11:40:20.513 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:40:20.516 [info] [command][9ee8c735-3b4d-4602-bc5f-b4a294fb3c5e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9ee8c735-3b4d-4602-bc5f-b4a294fb3c5e""}\n2025-10-28 11:40:20.516 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ad79a7b2-e597-4dc1-b46c-cf92de724a3d] received connection request\n2025-10-28 11:40:20.539 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ad79a7b2-e597-4dc1-b46c-cf92de724a3d] socks forwarding established\n2025-10-28 11:40:20.575 [info] [command][9ee8c735-3b4d-4602-bc5f-b4a294fb3c5e] Process exited with code 0\n2025-10-28 11:40:20.576 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ad79a7b2-e597-4dc1-b46c-cf92de724a3d] socks connection closed\n2025-10-28 11:40:20.576 [info] [command][9ee8c735-3b4d-4602-bc5f-b4a294fb3c5e] Socket close event received\n2025-10-28 11:41:20.581 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:41:20.583 [info] [command][46b5df1b-b39b-4ae3-a63a-04e97f8781e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""46b5df1b-b39b-4ae3-a63a-04e97f8781e2""}\n2025-10-28 11:41:20.583 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5384a210-cd11-44a1-9fcc-6ab70f4b3220] received connection request\n2025-10-28 11:41:20.610 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5384a210-cd11-44a1-9fcc-6ab70f4b3220] socks forwarding established\n2025-10-28 11:41:20.635 [info] [command][46b5df1b-b39b-4ae3-a63a-04e97f8781e2] Process exited with code 0\n2025-10-28 11:41:20.636 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5384a210-cd11-44a1-9fcc-6ab70f4b3220] socks connection closed\n2025-10-28 11:41:20.636 [info] [command][46b5df1b-b39b-4ae3-a63a-04e97f8781e2] Socket close event received\n2025-10-28 11:42:20.641 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:42:20.642 [info] [command][60a7955f-234d-4e46-8be6-034e8fdb8d6a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""60a7955f-234d-4e46-8be6-034e8fdb8d6a""}\n2025-10-28 11:42:20.643 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1283acc2-e404-4989-afc9-f2d8962bf2ed] received connection request\n2025-10-28 11:42:20.666 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1283acc2-e404-4989-afc9-f2d8962bf2ed] socks forwarding established\n2025-10-28 11:42:20.692 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1283acc2-e404-4989-afc9-f2d8962bf2ed] socks connection closed\n2025-10-28 11:42:20.693 [info] [command][60a7955f-234d-4e46-8be6-034e8fdb8d6a] Process exited with code 0\n2025-10-28 11:42:20.693 [info] [command][60a7955f-234d-4e46-8be6-034e8fdb8d6a] Socket close event received\n2025-10-28 11:43:20.698 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:43:20.700 [info] [command][e6213243-1bfe-4b07-9045-174982703154] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e6213243-1bfe-4b07-9045-174982703154""}\n2025-10-28 11:43:20.700 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][826786b2-e733-4ee7-b659-1211738edceb] received connection request\n2025-10-28 11:43:20.724 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][826786b2-e733-4ee7-b659-1211738edceb] socks forwarding established\n2025-10-28 11:43:20.750 [info] [command][e6213243-1bfe-4b07-9045-174982703154] Process exited with code 0\n2025-10-28 11:43:20.750 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][826786b2-e733-4ee7-b659-1211738edceb] socks connection closed\n2025-10-28 11:43:20.750 [info] [command][e6213243-1bfe-4b07-9045-174982703154] Socket close event received\n2025-10-28 11:44:20.752 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:44:20.753 [info] [command][09713a5a-e39c-42d0-9e6e-04854254be89] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""09713a5a-e39c-42d0-9e6e-04854254be89""}\n2025-10-28 11:44:20.753 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][dc1f8938-c880-4b72-b528-d6d17f4ace5e] received connection request\n2025-10-28 11:44:20.776 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dc1f8938-c880-4b72-b528-d6d17f4ace5e] socks forwarding established\n2025-10-28 11:44:20.802 [info] [command][09713a5a-e39c-42d0-9e6e-04854254be89] Process exited with code 0\n2025-10-28 11:44:20.802 [info] [command][09713a5a-e39c-42d0-9e6e-04854254be89] Socket close event received\n2025-10-28 11:44:20.803 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dc1f8938-c880-4b72-b528-d6d17f4ace5e] socks connection closed\n2025-10-28 11:45:20.804 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:45:20.806 [info] [command][36551b3c-fc91-4b04-a3b9-34619fb588b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""36551b3c-fc91-4b04-a3b9-34619fb588b7""}\n2025-10-28 11:45:20.806 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d3dff77b-602a-488d-8576-b107ac2811f3] received connection request\n2025-10-28 11:45:20.829 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d3dff77b-602a-488d-8576-b107ac2811f3] socks forwarding established\n2025-10-28 11:45:20.854 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d3dff77b-602a-488d-8576-b107ac2811f3] socks connection closed\n2025-10-28 11:45:20.855 [info] [command][36551b3c-fc91-4b04-a3b9-34619fb588b7] Process exited with code 0\n2025-10-28 11:45:20.855 [info] [command][36551b3c-fc91-4b04-a3b9-34619fb588b7] Socket close event received\n2025-10-28 11:46:20.855 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:46:20.857 [info] [command][2cefdfdb-0840-48e5-b169-82d0464d39bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2cefdfdb-0840-48e5-b169-82d0464d39bf""}\n2025-10-28 11:46:20.857 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][094d2539-a981-4152-9d2e-69cd802eeaf8] received connection request\n2025-10-28 11:46:20.882 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][094d2539-a981-4152-9d2e-69cd802eeaf8] socks forwarding established\n2025-10-28 11:46:20.907 [info] [command][2cefdfdb-0840-48e5-b169-82d0464d39bf] Process exited with code 0\n2025-10-28 11:46:20.908 [info] [command][2cefdfdb-0840-48e5-b169-82d0464d39bf] Socket close event received\n2025-10-28 11:46:20.908 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][094d2539-a981-4152-9d2e-69cd802eeaf8] socks connection closed\n2025-10-28 11:47:20.909 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:47:20.911 [info] [command][9422e1ca-1ce8-46b6-8161-ba53d37b07cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9422e1ca-1ce8-46b6-8161-ba53d37b07cf""}\n2025-10-28 11:47:20.911 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1e4faab2-e813-4fb3-8502-7317021a0d0f] received connection request\n2025-10-28 11:47:20.938 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1e4faab2-e813-4fb3-8502-7317021a0d0f] socks forwarding established\n2025-10-28 11:47:20.965 [info] [command][9422e1ca-1ce8-46b6-8161-ba53d37b07cf] Process exited with code 0\n2025-10-28 11:47:20.965 [info] [command][9422e1ca-1ce8-46b6-8161-ba53d37b07cf] Socket close event received\n2025-10-28 11:47:20.966 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1e4faab2-e813-4fb3-8502-7317021a0d0f] socks connection closed\n2025-10-28 11:48:20.969 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:48:20.972 [info] [command][647d0e42-a655-4491-aaac-68e375ed22c5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""647d0e42-a655-4491-aaac-68e375ed22c5""}\n2025-10-28 11:48:20.972 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9657a6d6-1e3a-49f8-a60d-4670f838b1f0] received connection request\n2025-10-28 11:48:20.995 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9657a6d6-1e3a-49f8-a60d-4670f838b1f0] socks forwarding established\n2025-10-28 11:48:21.021 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9657a6d6-1e3a-49f8-a60d-4670f838b1f0] socks connection closed\n2025-10-28 11:48:21.021 [info] [command][647d0e42-a655-4491-aaac-68e375ed22c5] Process exited with code 0\n2025-10-28 11:48:21.021 [info] [command][647d0e42-a655-4491-aaac-68e375ed22c5] Socket close event received\n2025-10-28 11:49:21.023 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:49:21.024 [info] [command][e989a383-5769-4c4b-8e23-df0ea9632084] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e989a383-5769-4c4b-8e23-df0ea9632084""}\n2025-10-28 11:49:21.025 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][091dadca-e4ba-4e07-90a5-d05775d7eb78] received connection request\n2025-10-28 11:49:21.055 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][091dadca-e4ba-4e07-90a5-d05775d7eb78] socks forwarding established\n2025-10-28 11:49:21.085 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][091dadca-e4ba-4e07-90a5-d05775d7eb78] socks connection closed\n2025-10-28 11:49:21.085 [info] [command][e989a383-5769-4c4b-8e23-df0ea9632084] Process exited with code 0\n2025-10-28 11:49:21.085 [info] [command][e989a383-5769-4c4b-8e23-df0ea9632084] Socket close event received\n2025-10-28 11:50:21.087 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:50:21.089 [info] [command][d0a5c3bd-4470-46cc-be83-5b7a5f36e7cc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d0a5c3bd-4470-46cc-be83-5b7a5f36e7cc""}\n2025-10-28 11:50:21.089 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][13d30298-60c9-49a0-a81f-cb6baf9c7c4c] received connection request\n2025-10-28 11:50:21.112 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][13d30298-60c9-49a0-a81f-cb6baf9c7c4c] socks forwarding established\n2025-10-28 11:50:21.136 [info] [command][d0a5c3bd-4470-46cc-be83-5b7a5f36e7cc] Process exited with code 0\n2025-10-28 11:50:21.136 [info] [command][d0a5c3bd-4470-46cc-be83-5b7a5f36e7cc] Socket close event received\n2025-10-28 11:50:21.137 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][13d30298-60c9-49a0-a81f-cb6baf9c7c4c] socks connection closed\n2025-10-28 11:51:21.142 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:51:21.145 [info] [command][b08c99e2-ad76-4a39-8251-7b4b15dc6cd1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b08c99e2-ad76-4a39-8251-7b4b15dc6cd1""}\n2025-10-28 11:51:21.146 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][83b80b94-059e-485e-a73f-18bbffef6f84] received connection request\n2025-10-28 11:51:21.169 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][83b80b94-059e-485e-a73f-18bbffef6f84] socks forwarding established\n2025-10-28 11:51:21.205 [info] [command][b08c99e2-ad76-4a39-8251-7b4b15dc6cd1] Process exited with code 0\n2025-10-28 11:51:21.205 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][83b80b94-059e-485e-a73f-18bbffef6f84] socks connection closed\n2025-10-28 11:51:21.205 [info] [command][b08c99e2-ad76-4a39-8251-7b4b15dc6cd1] Socket close event received\n2025-10-28 11:52:21.209 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:52:21.211 [info] [command][d9757f4a-a4e4-4224-b007-4f5b9ad07b97] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d9757f4a-a4e4-4224-b007-4f5b9ad07b97""}\n2025-10-28 11:52:21.211 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1aafc725-ef15-4d5d-b18f-89265f43a66e] received connection request\n2025-10-28 11:52:21.249 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1aafc725-ef15-4d5d-b18f-89265f43a66e] socks forwarding established\n2025-10-28 11:52:21.276 [info] [command][d9757f4a-a4e4-4224-b007-4f5b9ad07b97] Process exited with code 0\n2025-10-28 11:52:21.276 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1aafc725-ef15-4d5d-b18f-89265f43a66e] socks connection closed\n2025-10-28 11:52:21.276 [info] [command][d9757f4a-a4e4-4224-b007-4f5b9ad07b97] Socket close event received\n2025-10-28 11:53:21.278 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:53:21.279 [info] [command][3500db4f-8777-4c7f-863b-64e30b541b6c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3500db4f-8777-4c7f-863b-64e30b541b6c""}\n2025-10-28 11:53:21.280 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][68183b9d-9973-4b16-b11b-f243e896a9d5] received connection request\n2025-10-28 11:53:21.304 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][68183b9d-9973-4b16-b11b-f243e896a9d5] socks forwarding established\n2025-10-28 11:53:21.329 [info] [command][3500db4f-8777-4c7f-863b-64e30b541b6c] Process exited with code 0\n2025-10-28 11:53:21.329 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][68183b9d-9973-4b16-b11b-f243e896a9d5] socks connection closed\n2025-10-28 11:53:21.329 [info] [command][3500db4f-8777-4c7f-863b-64e30b541b6c] Socket close event received\n2025-10-28 11:54:21.333 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:54:21.336 [info] [command][f7ebc36f-edf4-4c31-926c-4731a26eea5f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f7ebc36f-edf4-4c31-926c-4731a26eea5f""}\n2025-10-28 11:54:21.336 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0101354e-eb54-4c8e-9a35-58eefb18440e] received connection request\n2025-10-28 11:54:21.360 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0101354e-eb54-4c8e-9a35-58eefb18440e] socks forwarding established\n2025-10-28 11:54:21.387 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0101354e-eb54-4c8e-9a35-58eefb18440e] socks connection closed\n2025-10-28 11:54:21.387 [info] [command][f7ebc36f-edf4-4c31-926c-4731a26eea5f] Process exited with code 0\n2025-10-28 11:54:21.387 [info] [command][f7ebc36f-edf4-4c31-926c-4731a26eea5f] Socket close event received\n2025-10-28 11:55:21.392 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:55:21.395 [info] [command][54a1ad53-74bf-499a-8179-79c8a35bff11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""54a1ad53-74bf-499a-8179-79c8a35bff11""}\n2025-10-28 11:55:21.395 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][31e1f154-7c13-4d0f-93e0-bf32076b5a8b] received connection request\n2025-10-28 11:55:21.420 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][31e1f154-7c13-4d0f-93e0-bf32076b5a8b] socks forwarding established\n2025-10-28 11:55:21.445 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][31e1f154-7c13-4d0f-93e0-bf32076b5a8b] socks connection closed\n2025-10-28 11:55:21.445 [info] [command][54a1ad53-74bf-499a-8179-79c8a35bff11] Process exited with code 0\n2025-10-28 11:55:21.445 [info] [command][54a1ad53-74bf-499a-8179-79c8a35bff11] Socket close event received\n2025-10-28 11:56:21.451 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:56:21.453 [info] [command][0bb2c034-e8d8-42e0-adc9-999faff48a31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0bb2c034-e8d8-42e0-adc9-999faff48a31""}\n2025-10-28 11:56:21.453 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][94463157-ebf6-4512-b900-a7a7922abd7c] received connection request\n2025-10-28 11:56:21.476 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][94463157-ebf6-4512-b900-a7a7922abd7c] socks forwarding established\n2025-10-28 11:56:21.510 [info] [command][0bb2c034-e8d8-42e0-adc9-999faff48a31] Process exited with code 0\n2025-10-28 11:56:21.510 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][94463157-ebf6-4512-b900-a7a7922abd7c] socks connection closed\n2025-10-28 11:56:21.510 [info] [command][0bb2c034-e8d8-42e0-adc9-999faff48a31] Socket close event received\n2025-10-28 11:57:21.516 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:57:21.519 [info] [command][1954e373-6f25-48a2-81cc-cd45ac522ff6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1954e373-6f25-48a2-81cc-cd45ac522ff6""}\n2025-10-28 11:57:21.520 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][10022fb9-a7af-4bdd-8953-e245d72e8ced] received connection request\n2025-10-28 11:57:21.549 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][10022fb9-a7af-4bdd-8953-e245d72e8ced] socks forwarding established\n2025-10-28 11:57:21.580 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][10022fb9-a7af-4bdd-8953-e245d72e8ced] socks connection closed\n2025-10-28 11:57:21.581 [info] [command][1954e373-6f25-48a2-81cc-cd45ac522ff6] Process exited with code 0\n2025-10-28 11:57:21.581 [info] [command][1954e373-6f25-48a2-81cc-cd45ac522ff6] Socket close event received\n2025-10-28 11:58:21.582 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:58:21.585 [info] [command][b8859785-9cb0-4f06-b20c-2ba16e2e9582] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b8859785-9cb0-4f06-b20c-2ba16e2e9582""}\n2025-10-28 11:58:21.586 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][73f7cfbd-262f-4bd7-bb2a-3dff996c97e0] received connection request\n2025-10-28 11:58:21.616 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][73f7cfbd-262f-4bd7-bb2a-3dff996c97e0] socks forwarding established\n2025-10-28 11:58:21.643 [info] [command][b8859785-9cb0-4f06-b20c-2ba16e2e9582] Process exited with code 0\n2025-10-28 11:58:21.644 [info] [command][b8859785-9cb0-4f06-b20c-2ba16e2e9582] Socket close event received\n2025-10-28 11:58:21.644 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][73f7cfbd-262f-4bd7-bb2a-3dff996c97e0] socks connection closed\n2025-10-28 11:59:21.649 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 11:59:21.652 [info] [command][6b233332-747a-4d54-a431-e272be786974] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6b233332-747a-4d54-a431-e272be786974""}\n2025-10-28 11:59:21.653 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fd14b645-2c11-443c-8089-26c8804cd1c6] received connection request\n2025-10-28 11:59:21.685 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fd14b645-2c11-443c-8089-26c8804cd1c6] socks forwarding established\n2025-10-28 11:59:21.714 [info] [command][6b233332-747a-4d54-a431-e272be786974] Process exited with code 0\n2025-10-28 11:59:21.714 [info] [command][6b233332-747a-4d54-a431-e272be786974] Socket close event received\n2025-10-28 11:59:21.714 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fd14b645-2c11-443c-8089-26c8804cd1c6] socks connection closed\n2025-10-28 12:00:21.720 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:00:21.722 [info] [command][7647c8fb-5b97-45eb-b928-55e5905ffb29] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7647c8fb-5b97-45eb-b928-55e5905ffb29""}\n2025-10-28 12:00:21.723 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ee19cb93-b9b5-4fe3-8fdc-8c749ff802c8] received connection request\n2025-10-28 12:00:21.775 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ee19cb93-b9b5-4fe3-8fdc-8c749ff802c8] socks forwarding established\n2025-10-28 12:00:21.802 [info] [command][7647c8fb-5b97-45eb-b928-55e5905ffb29] Process exited with code 0\n2025-10-28 12:00:21.802 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ee19cb93-b9b5-4fe3-8fdc-8c749ff802c8] socks connection closed\n2025-10-28 12:00:21.802 [info] [command][7647c8fb-5b97-45eb-b928-55e5905ffb29] Socket close event received\n2025-10-28 12:01:21.807 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:01:21.812 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][05288830-b163-427b-b10c-bac0e05323ed] received connection request\n2025-10-28 12:01:21.812 [info] [command][a3fce7f9-59a4-421d-8137-2901bf8127f1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a3fce7f9-59a4-421d-8137-2901bf8127f1""}\n2025-10-28 12:01:21.846 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][05288830-b163-427b-b10c-bac0e05323ed] socks forwarding established\n2025-10-28 12:01:21.874 [info] [command][a3fce7f9-59a4-421d-8137-2901bf8127f1] Process exited with code 0\n2025-10-28 12:01:21.874 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][05288830-b163-427b-b10c-bac0e05323ed] socks connection closed\n2025-10-28 12:01:21.874 [info] [command][a3fce7f9-59a4-421d-8137-2901bf8127f1] Socket close event received\n2025-10-28 12:02:21.875 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:02:21.876 [info] [command][3867f332-15bf-496a-ad32-2ced3cc4ac58] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3867f332-15bf-496a-ad32-2ced3cc4ac58""}\n2025-10-28 12:02:21.877 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9c286fb9-6202-4d3d-a678-31701b84370a] received connection request\n2025-10-28 12:02:21.906 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9c286fb9-6202-4d3d-a678-31701b84370a] socks forwarding established\n2025-10-28 12:02:21.931 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9c286fb9-6202-4d3d-a678-31701b84370a] socks connection closed\n2025-10-28 12:02:21.931 [info] [command][3867f332-15bf-496a-ad32-2ced3cc4ac58] Process exited with code 0\n2025-10-28 12:02:21.931 [info] [command][3867f332-15bf-496a-ad32-2ced3cc4ac58] Socket close event received\n2025-10-28 12:03:21.933 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:03:21.936 [info] [command][41360163-6c3d-420c-b8c6-7a63587f2c74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""41360163-6c3d-420c-b8c6-7a63587f2c74""}\n2025-10-28 12:03:21.936 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][209c0763-5693-40fc-9135-748ebd68033e] received connection request\n2025-10-28 12:03:21.959 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][209c0763-5693-40fc-9135-748ebd68033e] socks forwarding established\n2025-10-28 12:03:21.990 [info] [command][41360163-6c3d-420c-b8c6-7a63587f2c74] Process exited with code 0\n2025-10-28 12:03:21.990 [info] [command][41360163-6c3d-420c-b8c6-7a63587f2c74] Socket close event received\n2025-10-28 12:03:21.990 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][209c0763-5693-40fc-9135-748ebd68033e] socks connection closed\n2025-10-28 12:04:21.991 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:04:21.993 [info] [command][c3b7cc5a-929e-4152-8db5-f707426e5f60] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c3b7cc5a-929e-4152-8db5-f707426e5f60""}\n2025-10-28 12:04:21.993 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3bee4fac-f58b-4e1b-8d78-95d95e348c27] received connection request\n2025-10-28 12:04:22.018 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3bee4fac-f58b-4e1b-8d78-95d95e348c27] socks forwarding established\n2025-10-28 12:04:22.048 [info] [command][c3b7cc5a-929e-4152-8db5-f707426e5f60] Process exited with code 0\n2025-10-28 12:04:22.048 [info] [command][c3b7cc5a-929e-4152-8db5-f707426e5f60] Socket close event received\n2025-10-28 12:04:22.060 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3bee4fac-f58b-4e1b-8d78-95d95e348c27] socks connection closed\n2025-10-28 12:05:22.053 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:05:22.055 [info] [command][a4cd8c65-00b6-4d7c-8fa0-90c65a39da6f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a4cd8c65-00b6-4d7c-8fa0-90c65a39da6f""}\n2025-10-28 12:05:22.056 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2cdbe5a1-7f5c-494e-a459-262d2456e8a9] received connection request\n2025-10-28 12:05:22.087 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2cdbe5a1-7f5c-494e-a459-262d2456e8a9] socks forwarding established\n2025-10-28 12:05:22.112 [info] [command][a4cd8c65-00b6-4d7c-8fa0-90c65a39da6f] Process exited with code 0\n2025-10-28 12:05:22.112 [info] [command][a4cd8c65-00b6-4d7c-8fa0-90c65a39da6f] Socket close event received\n2025-10-28 12:05:22.113 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2cdbe5a1-7f5c-494e-a459-262d2456e8a9] socks connection closed\n2025-10-28 12:06:22.113 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:06:22.115 [info] [command][6f5292d9-f99e-4bf4-af1e-84644e1823c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6f5292d9-f99e-4bf4-af1e-84644e1823c8""}\n2025-10-28 12:06:22.115 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f959248c-5c4c-4194-ad3e-83c3a5a61f92] received connection request\n2025-10-28 12:06:22.141 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f959248c-5c4c-4194-ad3e-83c3a5a61f92] socks forwarding established\n2025-10-28 12:06:22.167 [info] [command][6f5292d9-f99e-4bf4-af1e-84644e1823c8] Process exited with code 0\n2025-10-28 12:06:22.167 [info] [command][6f5292d9-f99e-4bf4-af1e-84644e1823c8] Socket close event received\n2025-10-28 12:06:22.167 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f959248c-5c4c-4194-ad3e-83c3a5a61f92] socks connection closed\n2025-10-28 12:07:22.177 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:07:22.179 [info] [command][0101966d-0380-48e0-ab0d-43a786f975e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0101966d-0380-48e0-ab0d-43a786f975e1""}\n2025-10-28 12:07:22.179 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][db93f662-28ed-430d-992c-63fc2e1eb913] received connection request\n2025-10-28 12:07:22.205 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][db93f662-28ed-430d-992c-63fc2e1eb913] socks forwarding established\n2025-10-28 12:07:22.231 [info] [command][0101966d-0380-48e0-ab0d-43a786f975e1] Process exited with code 0\n2025-10-28 12:07:22.232 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][db93f662-28ed-430d-992c-63fc2e1eb913] socks connection closed\n2025-10-28 12:07:22.232 [info] [command][0101966d-0380-48e0-ab0d-43a786f975e1] Socket close event received\n2025-10-28 12:08:22.238 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:08:22.242 [info] [command][f58a43f1-320c-45f3-80db-d5c0ceb4010e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f58a43f1-320c-45f3-80db-d5c0ceb4010e""}\n2025-10-28 12:08:22.242 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][298a2f61-e9fc-4d70-8c49-e75bfe55980c] received connection request\n2025-10-28 12:08:22.269 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][298a2f61-e9fc-4d70-8c49-e75bfe55980c] socks forwarding established\n2025-10-28 12:08:22.295 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][298a2f61-e9fc-4d70-8c49-e75bfe55980c] socks connection closed\n2025-10-28 12:08:22.295 [info] [command][f58a43f1-320c-45f3-80db-d5c0ceb4010e] Process exited with code 0\n2025-10-28 12:08:22.295 [info] [command][f58a43f1-320c-45f3-80db-d5c0ceb4010e] Socket close event received\n2025-10-28 12:09:22.296 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:09:22.300 [info] [command][abde1383-4915-4cd1-8274-211e42ed9752] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""abde1383-4915-4cd1-8274-211e42ed9752""}\n2025-10-28 12:09:22.300 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f23af8b4-8545-46a2-85a1-c2149fa5c59b] received connection request\n2025-10-28 12:09:22.330 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f23af8b4-8545-46a2-85a1-c2149fa5c59b] socks forwarding established\n2025-10-28 12:09:22.364 [info] [command][abde1383-4915-4cd1-8274-211e42ed9752] Process exited with code 0\n2025-10-28 12:09:22.364 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f23af8b4-8545-46a2-85a1-c2149fa5c59b] socks connection closed\n2025-10-28 12:09:22.364 [info] [command][abde1383-4915-4cd1-8274-211e42ed9752] Socket close event received\n2025-10-28 12:10:22.374 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:10:22.376 [info] [command][16ee5986-6aeb-40b2-85ec-f6b208bdc6bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""16ee5986-6aeb-40b2-85ec-f6b208bdc6bb""}\n2025-10-28 12:10:22.376 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ef0c1353-f214-4fe6-a2e9-c4739c1036ab] received connection request\n2025-10-28 12:10:22.400 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ef0c1353-f214-4fe6-a2e9-c4739c1036ab] socks forwarding established\n2025-10-28 12:10:22.435 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ef0c1353-f214-4fe6-a2e9-c4739c1036ab] socks connection closed\n2025-10-28 12:10:22.435 [info] [command][16ee5986-6aeb-40b2-85ec-f6b208bdc6bb] Process exited with code 0\n2025-10-28 12:10:22.435 [info] [command][16ee5986-6aeb-40b2-85ec-f6b208bdc6bb] Socket close event received\n2025-10-28 12:11:22.446 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:11:22.450 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0fba69bb-b226-42f0-b70b-5d2278211e51] received connection request\n2025-10-28 12:11:22.451 [info] [command][4dd4e16d-0e10-4554-8073-623fbdb2f7f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4dd4e16d-0e10-4554-8073-623fbdb2f7f4""}\n2025-10-28 12:11:22.482 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0fba69bb-b226-42f0-b70b-5d2278211e51] socks forwarding established\n2025-10-28 12:11:22.510 [info] [command][4dd4e16d-0e10-4554-8073-623fbdb2f7f4] Process exited with code 0\n2025-10-28 12:11:22.510 [info] [command][4dd4e16d-0e10-4554-8073-623fbdb2f7f4] Socket close event received\n2025-10-28 12:11:22.511 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0fba69bb-b226-42f0-b70b-5d2278211e51] socks connection closed\n2025-10-28 12:12:22.514 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:12:22.517 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][98aef0ea-6cef-424f-aac9-51afc5ef8b9f] received connection request\n2025-10-28 12:12:22.518 [info] [command][640a8656-c895-4c5c-9bd2-177822db277b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""640a8656-c895-4c5c-9bd2-177822db277b""}\n2025-10-28 12:12:22.542 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][98aef0ea-6cef-424f-aac9-51afc5ef8b9f] socks forwarding established\n2025-10-28 12:12:22.568 [info] [command][640a8656-c895-4c5c-9bd2-177822db277b] Process exited with code 0\n2025-10-28 12:12:22.568 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][98aef0ea-6cef-424f-aac9-51afc5ef8b9f] socks connection closed\n2025-10-28 12:12:22.568 [info] [command][640a8656-c895-4c5c-9bd2-177822db277b] Socket close event received\n2025-10-28 12:13:22.601 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:13:22.604 [info] [command][0b86b54c-c693-421c-9b61-85c90841a17f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0b86b54c-c693-421c-9b61-85c90841a17f""}\n2025-10-28 12:13:22.605 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][736bafa1-7ae6-4694-9d5a-90f3014bd960] received connection request\n2025-10-28 12:13:22.629 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][736bafa1-7ae6-4694-9d5a-90f3014bd960] socks forwarding established\n2025-10-28 12:13:22.656 [info] [command][0b86b54c-c693-421c-9b61-85c90841a17f] Process exited with code 0\n2025-10-28 12:13:22.656 [info] [command][0b86b54c-c693-421c-9b61-85c90841a17f] Socket close event received\n2025-10-28 12:13:22.657 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][736bafa1-7ae6-4694-9d5a-90f3014bd960] socks connection closed\n2025-10-28 12:14:22.662 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:14:22.665 [info] [command][5c581cd0-e6a9-48e7-8e69-df1a2ea2a634] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5c581cd0-e6a9-48e7-8e69-df1a2ea2a634""}\n2025-10-28 12:14:22.666 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][273b62b2-41f9-4cc1-97e8-00fdb964dd53] received connection request\n2025-10-28 12:14:22.696 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][273b62b2-41f9-4cc1-97e8-00fdb964dd53] socks forwarding established\n2025-10-28 12:14:22.728 [info] [command][5c581cd0-e6a9-48e7-8e69-df1a2ea2a634] Process exited with code 0\n2025-10-28 12:14:22.728 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][273b62b2-41f9-4cc1-97e8-00fdb964dd53] socks connection closed\n2025-10-28 12:14:22.728 [info] [command][5c581cd0-e6a9-48e7-8e69-df1a2ea2a634] Socket close event received\n2025-10-28 12:15:22.739 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:15:22.742 [info] [command][7fd01a53-4713-4fc3-a80d-9a6d31cb1eb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7fd01a53-4713-4fc3-a80d-9a6d31cb1eb5""}\n2025-10-28 12:15:22.743 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1856dbc1-bcaf-43fc-b0b2-c2c659aa9ce5] received connection request\n2025-10-28 12:15:22.771 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1856dbc1-bcaf-43fc-b0b2-c2c659aa9ce5] socks forwarding established\n2025-10-28 12:15:22.799 [info] [command][7fd01a53-4713-4fc3-a80d-9a6d31cb1eb5] Process exited with code 0\n2025-10-28 12:15:22.799 [info] [command][7fd01a53-4713-4fc3-a80d-9a6d31cb1eb5] Socket close event received\n2025-10-28 12:15:22.800 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1856dbc1-bcaf-43fc-b0b2-c2c659aa9ce5] socks connection closed\n2025-10-28 12:16:22.804 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:16:22.807 [info] [command][2c8bb866-fc81-4fe8-a9e1-d78e21c1d598] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2c8bb866-fc81-4fe8-a9e1-d78e21c1d598""}\n2025-10-28 12:16:22.808 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a313408d-c00d-4c1f-b6af-c1d2dbf8630b] received connection request\n2025-10-28 12:16:22.835 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a313408d-c00d-4c1f-b6af-c1d2dbf8630b] socks forwarding established\n2025-10-28 12:16:22.862 [info] [command][2c8bb866-fc81-4fe8-a9e1-d78e21c1d598] Process exited with code 0\n2025-10-28 12:16:22.862 [info] [command][2c8bb866-fc81-4fe8-a9e1-d78e21c1d598] Socket close event received\n2025-10-28 12:16:22.862 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a313408d-c00d-4c1f-b6af-c1d2dbf8630b] socks connection closed\n2025-10-28 12:17:22.873 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:17:22.876 [info] [command][64b84cd8-cf6b-4d90-9e78-4a19507a4f4d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""64b84cd8-cf6b-4d90-9e78-4a19507a4f4d""}\n2025-10-28 12:17:22.877 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7174ec01-5164-4ff1-a7ec-2033db8a3a59] received connection request\n2025-10-28 12:17:22.902 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7174ec01-5164-4ff1-a7ec-2033db8a3a59] socks forwarding established\n2025-10-28 12:17:22.936 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7174ec01-5164-4ff1-a7ec-2033db8a3a59] socks connection closed\n2025-10-28 12:17:22.936 [info] [command][64b84cd8-cf6b-4d90-9e78-4a19507a4f4d] Process exited with code 0\n2025-10-28 12:17:22.937 [info] [command][64b84cd8-cf6b-4d90-9e78-4a19507a4f4d] Socket close event received\n2025-10-28 12:18:22.946 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:18:22.949 [info] [command][2d5b7ca4-197d-4049-a3b5-886d729922a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2d5b7ca4-197d-4049-a3b5-886d729922a5""}\n2025-10-28 12:18:22.949 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3b6475b7-c447-4bf5-bacf-bb4c5fd7ca1d] received connection request\n2025-10-28 12:18:22.974 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3b6475b7-c447-4bf5-bacf-bb4c5fd7ca1d] socks forwarding established\n2025-10-28 12:18:23.004 [info] [command][2d5b7ca4-197d-4049-a3b5-886d729922a5] Process exited with code 0\n2025-10-28 12:18:23.005 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3b6475b7-c447-4bf5-bacf-bb4c5fd7ca1d] socks connection closed\n2025-10-28 12:18:23.005 [info] [command][2d5b7ca4-197d-4049-a3b5-886d729922a5] Socket close event received\n2025-10-28 12:19:23.007 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:19:23.009 [info] [command][17d478bf-ef82-476a-ba5d-6fae53fcf228] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""17d478bf-ef82-476a-ba5d-6fae53fcf228""}\n2025-10-28 12:19:23.010 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0fd7abb3-84c0-4023-9c7f-5b9cbf84fd18] received connection request\n2025-10-28 12:19:23.038 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0fd7abb3-84c0-4023-9c7f-5b9cbf84fd18] socks forwarding established\n2025-10-28 12:19:23.065 [info] [command][17d478bf-ef82-476a-ba5d-6fae53fcf228] Process exited with code 0\n2025-10-28 12:19:23.066 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0fd7abb3-84c0-4023-9c7f-5b9cbf84fd18] socks connection closed\n2025-10-28 12:19:23.066 [info] [command][17d478bf-ef82-476a-ba5d-6fae53fcf228] Socket close event received\n2025-10-28 12:20:23.070 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:20:23.074 [info] [command][4e561e29-9867-419e-a106-04801d1994ad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4e561e29-9867-419e-a106-04801d1994ad""}\n2025-10-28 12:20:23.075 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c6cdd27c-4540-4f7b-8a68-991754185b7d] received connection request\n2025-10-28 12:20:23.104 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c6cdd27c-4540-4f7b-8a68-991754185b7d] socks forwarding established\n2025-10-28 12:20:23.138 [info] [command][4e561e29-9867-419e-a106-04801d1994ad] Process exited with code 0\n2025-10-28 12:20:23.138 [info] [command][4e561e29-9867-419e-a106-04801d1994ad] Socket close event received\n2025-10-28 12:20:23.142 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c6cdd27c-4540-4f7b-8a68-991754185b7d] socks connection closed\n2025-10-28 12:21:23.148 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:21:23.149 [info] [command][e267c8bd-ed10-4c4a-b48c-3e532e8dc6a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e267c8bd-ed10-4c4a-b48c-3e532e8dc6a2""}\n2025-10-28 12:21:23.150 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8c9ccd1c-9c73-4f42-8a0e-e3ba9d2a438f] received connection request\n2025-10-28 12:21:23.174 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8c9ccd1c-9c73-4f42-8a0e-e3ba9d2a438f] socks forwarding established\n2025-10-28 12:21:23.201 [info] [command][e267c8bd-ed10-4c4a-b48c-3e532e8dc6a2] Process exited with code 0\n2025-10-28 12:21:23.202 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8c9ccd1c-9c73-4f42-8a0e-e3ba9d2a438f] socks connection closed\n2025-10-28 12:21:23.202 [info] [command][e267c8bd-ed10-4c4a-b48c-3e532e8dc6a2] Socket close event received\n2025-10-28 12:22:23.207 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:22:23.210 [info] [command][cf1d3a27-0038-428f-911c-c42b54e1ba04] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cf1d3a27-0038-428f-911c-c42b54e1ba04""}\n2025-10-28 12:22:23.210 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3ca4bc0c-42f2-41b6-9506-e0ce76f3eac1] received connection request\n2025-10-28 12:22:23.234 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3ca4bc0c-42f2-41b6-9506-e0ce76f3eac1] socks forwarding established\n2025-10-28 12:22:23.266 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3ca4bc0c-42f2-41b6-9506-e0ce76f3eac1] socks connection closed\n2025-10-28 12:22:23.266 [info] [command][cf1d3a27-0038-428f-911c-c42b54e1ba04] Process exited with code 0\n2025-10-28 12:22:23.266 [info] [command][cf1d3a27-0038-428f-911c-c42b54e1ba04] Socket close event received\n2025-10-28 12:23:23.271 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:23:23.273 [info] [command][92a55650-ec02-474f-923b-0a98530fa699] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""92a55650-ec02-474f-923b-0a98530fa699""}\n2025-10-28 12:23:23.274 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fd2ec4da-165b-4d05-9391-f9bf7bb5f120] received connection request\n2025-10-28 12:23:23.302 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fd2ec4da-165b-4d05-9391-f9bf7bb5f120] socks forwarding established\n2025-10-28 12:23:23.330 [info] [command][92a55650-ec02-474f-923b-0a98530fa699] Process exited with code 0\n2025-10-28 12:23:23.330 [info] [command][92a55650-ec02-474f-923b-0a98530fa699] Socket close event received\n2025-10-28 12:23:23.331 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fd2ec4da-165b-4d05-9391-f9bf7bb5f120] socks connection closed\n2025-10-28 12:24:23.342 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:24:23.345 [info] [command][ea28c17b-9c48-490c-af64-d5e0bbbdda2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ea28c17b-9c48-490c-af64-d5e0bbbdda2e""}\n2025-10-28 12:24:23.346 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b2655b51-3eef-4c95-8e3e-4ac830f1a3af] received connection request\n2025-10-28 12:24:23.372 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b2655b51-3eef-4c95-8e3e-4ac830f1a3af] socks forwarding established\n2025-10-28 12:24:23.408 [info] [command][ea28c17b-9c48-490c-af64-d5e0bbbdda2e] Process exited with code 0\n2025-10-28 12:24:23.408 [info] [command][ea28c17b-9c48-490c-af64-d5e0bbbdda2e] Socket close event received\n2025-10-28 12:24:23.409 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b2655b51-3eef-4c95-8e3e-4ac830f1a3af] socks connection closed\n2025-10-28 12:25:23.418 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:25:23.422 [info] [command][8c61361d-329f-4ab3-9fa7-987266bc31b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8c61361d-329f-4ab3-9fa7-987266bc31b6""}\n2025-10-28 12:25:23.422 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9ccc2291-8aa0-4a24-8c04-5aaf175d4cfa] received connection request\n2025-10-28 12:25:23.447 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9ccc2291-8aa0-4a24-8c04-5aaf175d4cfa] socks forwarding established\n2025-10-28 12:25:23.474 [info] [command][8c61361d-329f-4ab3-9fa7-987266bc31b6] Process exited with code 0\n2025-10-28 12:25:23.474 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9ccc2291-8aa0-4a24-8c04-5aaf175d4cfa] socks connection closed\n2025-10-28 12:25:23.474 [info] [command][8c61361d-329f-4ab3-9fa7-987266bc31b6] Socket close event received\n2025-10-28 12:26:23.485 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:26:23.487 [info] [command][b00267a9-eec9-44e4-adad-b49a7f48b734] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b00267a9-eec9-44e4-adad-b49a7f48b734""}\n2025-10-28 12:26:23.488 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2dcffd46-0043-428c-b545-68c733f089d2] received connection request\n2025-10-28 12:26:23.519 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2dcffd46-0043-428c-b545-68c733f089d2] socks forwarding established\n2025-10-28 12:26:23.547 [info] [command][b00267a9-eec9-44e4-adad-b49a7f48b734] Process exited with code 0\n2025-10-28 12:26:23.547 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2dcffd46-0043-428c-b545-68c733f089d2] socks connection closed\n2025-10-28 12:26:23.548 [info] [command][b00267a9-eec9-44e4-adad-b49a7f48b734] Socket close event received\n2025-10-28 12:27:23.558 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:27:23.561 [info] [command][92bd0e4c-ed02-4e0a-bf9b-dbee1a9bdeaf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""92bd0e4c-ed02-4e0a-bf9b-dbee1a9bdeaf""}\n2025-10-28 12:27:23.562 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][997b8adc-eb54-4269-9b55-9ba842373da4] received connection request\n2025-10-28 12:27:23.587 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][997b8adc-eb54-4269-9b55-9ba842373da4] socks forwarding established\n2025-10-28 12:27:23.614 [info] [command][92bd0e4c-ed02-4e0a-bf9b-dbee1a9bdeaf] Process exited with code 0\n2025-10-28 12:27:23.614 [info] [command][92bd0e4c-ed02-4e0a-bf9b-dbee1a9bdeaf] Socket close event received\n2025-10-28 12:27:23.615 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][997b8adc-eb54-4269-9b55-9ba842373da4] socks connection closed\n2025-10-28 12:28:23.623 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:28:23.626 [info] [command][26a674fb-7041-4260-ba15-1032abe4e175] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""26a674fb-7041-4260-ba15-1032abe4e175""}\n2025-10-28 12:28:23.627 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b9551c12-4642-4d5f-9c6c-952303aac5c0] received connection request\n2025-10-28 12:28:23.656 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b9551c12-4642-4d5f-9c6c-952303aac5c0] socks forwarding established\n2025-10-28 12:28:23.685 [info] [command][26a674fb-7041-4260-ba15-1032abe4e175] Process exited with code 0\n2025-10-28 12:28:23.685 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b9551c12-4642-4d5f-9c6c-952303aac5c0] socks connection closed\n2025-10-28 12:28:23.686 [info] [command][26a674fb-7041-4260-ba15-1032abe4e175] Socket close event received\n2025-10-28 12:29:23.686 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:29:23.688 [info] [command][f4eab167-7d40-4629-88ac-a956ca0362d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f4eab167-7d40-4629-88ac-a956ca0362d5""}\n2025-10-28 12:29:23.689 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][18459094-a76f-4943-9b39-01721d69f29d] received connection request\n2025-10-28 12:29:23.718 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][18459094-a76f-4943-9b39-01721d69f29d] socks forwarding established\n2025-10-28 12:29:23.746 [info] [command][f4eab167-7d40-4629-88ac-a956ca0362d5] Process exited with code 0\n2025-10-28 12:29:23.746 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][18459094-a76f-4943-9b39-01721d69f29d] socks connection closed\n2025-10-28 12:29:23.747 [info] [command][f4eab167-7d40-4629-88ac-a956ca0362d5] Socket close event received\n2025-10-28 12:30:23.757 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:30:23.757 [info] [command][81438f25-d36c-47c1-8081-4e360310e1e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""81438f25-d36c-47c1-8081-4e360310e1e6""}\n2025-10-28 12:30:23.758 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][beb76cdf-98d4-4353-9a28-f58b582df978] received connection request\n2025-10-28 12:30:23.781 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][beb76cdf-98d4-4353-9a28-f58b582df978] socks forwarding established\n2025-10-28 12:30:23.808 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][beb76cdf-98d4-4353-9a28-f58b582df978] socks connection closed\n2025-10-28 12:30:23.808 [info] [command][81438f25-d36c-47c1-8081-4e360310e1e6] Process exited with code 0\n2025-10-28 12:30:23.809 [info] [command][81438f25-d36c-47c1-8081-4e360310e1e6] Socket close event received\n2025-10-28 12:31:23.814 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:31:23.816 [info] [command][f1505448-04c3-438b-89d6-244b6ca2874e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f1505448-04c3-438b-89d6-244b6ca2874e""}\n2025-10-28 12:31:23.816 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][639ac06f-48b3-42f5-94d2-ffa999f8a4b9] received connection request\n2025-10-28 12:31:23.996 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][639ac06f-48b3-42f5-94d2-ffa999f8a4b9] socks forwarding established\n2025-10-28 12:31:24.024 [info] [command][f1505448-04c3-438b-89d6-244b6ca2874e] Process exited with code 0\n2025-10-28 12:31:24.025 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][639ac06f-48b3-42f5-94d2-ffa999f8a4b9] socks connection closed\n2025-10-28 12:31:24.025 [info] [command][f1505448-04c3-438b-89d6-244b6ca2874e] Socket close event received\n2025-10-28 12:32:24.028 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:32:24.029 [info] [command][0b3f950e-e696-4bb8-920d-a5fff3a84c8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0b3f950e-e696-4bb8-920d-a5fff3a84c8f""}\n2025-10-28 12:32:24.030 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c34ddb76-c048-4347-a28d-9adc692a5757] received connection request\n2025-10-28 12:32:24.069 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c34ddb76-c048-4347-a28d-9adc692a5757] socks forwarding established\n2025-10-28 12:32:24.103 [info] [command][0b3f950e-e696-4bb8-920d-a5fff3a84c8f] Process exited with code 0\n2025-10-28 12:32:24.103 [info] [command][0b3f950e-e696-4bb8-920d-a5fff3a84c8f] Socket close event received\n2025-10-28 12:32:24.110 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c34ddb76-c048-4347-a28d-9adc692a5757] socks connection closed\n2025-10-28 12:33:24.104 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:33:24.106 [info] [command][d8d5d7c0-76cd-4786-addc-2e05c29e288a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d8d5d7c0-76cd-4786-addc-2e05c29e288a""}\n2025-10-28 12:33:24.106 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b030dc1e-9b71-45da-a3f5-96bff989cfa9] received connection request\n2025-10-28 12:33:24.130 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b030dc1e-9b71-45da-a3f5-96bff989cfa9] socks forwarding established\n2025-10-28 12:33:24.157 [info] [command][d8d5d7c0-76cd-4786-addc-2e05c29e288a] Process exited with code 0\n2025-10-28 12:33:24.157 [info] [command][d8d5d7c0-76cd-4786-addc-2e05c29e288a] Socket close event received\n2025-10-28 12:33:24.158 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b030dc1e-9b71-45da-a3f5-96bff989cfa9] socks connection closed\n2025-10-28 12:34:24.167 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:34:24.170 [info] [command][0efa2d81-672c-440f-b381-3aef4a6c73a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0efa2d81-672c-440f-b381-3aef4a6c73a8""}\n2025-10-28 12:34:24.170 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7bbfcba4-82c0-4134-90f3-5e8d0f3c26d8] received connection request\n2025-10-28 12:34:24.195 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7bbfcba4-82c0-4134-90f3-5e8d0f3c26d8] socks forwarding established\n2025-10-28 12:34:24.221 [info] [command][0efa2d81-672c-440f-b381-3aef4a6c73a8] Process exited with code 0\n2025-10-28 12:34:24.221 [info] [command][0efa2d81-672c-440f-b381-3aef4a6c73a8] Socket close event received\n2025-10-28 12:34:24.222 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7bbfcba4-82c0-4134-90f3-5e8d0f3c26d8] socks connection closed\n2025-10-28 12:35:24.227 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:35:24.229 [info] [command][8fc8258b-47ff-481f-9276-1ebe653f205d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8fc8258b-47ff-481f-9276-1ebe653f205d""}\n2025-10-28 12:35:24.230 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][98fbab11-1066-4a1e-8ae7-3b0d6fffb4b0] received connection request\n2025-10-28 12:35:24.257 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][98fbab11-1066-4a1e-8ae7-3b0d6fffb4b0] socks forwarding established\n2025-10-28 12:35:24.285 [info] [command][8fc8258b-47ff-481f-9276-1ebe653f205d] Process exited with code 0\n2025-10-28 12:35:24.285 [info] [command][8fc8258b-47ff-481f-9276-1ebe653f205d] Socket close event received\n2025-10-28 12:35:24.286 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][98fbab11-1066-4a1e-8ae7-3b0d6fffb4b0] socks connection closed\n2025-10-28 12:36:24.294 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:36:24.296 [info] [command][bdefab68-ea61-47fd-b75f-d0fa8176b5ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bdefab68-ea61-47fd-b75f-d0fa8176b5ce""}\n2025-10-28 12:36:24.297 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][582e0532-2a96-45dc-8532-8851da8bcbac] received connection request\n2025-10-28 12:36:24.322 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][582e0532-2a96-45dc-8532-8851da8bcbac] socks forwarding established\n2025-10-28 12:36:24.351 [info] [command][bdefab68-ea61-47fd-b75f-d0fa8176b5ce] Process exited with code 0\n2025-10-28 12:36:24.351 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][582e0532-2a96-45dc-8532-8851da8bcbac] socks connection closed\n2025-10-28 12:36:24.351 [info] [command][bdefab68-ea61-47fd-b75f-d0fa8176b5ce] Socket close event received\n2025-10-28 12:37:24.362 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:37:24.365 [info] [command][89d4bdfc-b2ee-41c8-a623-418a9419ed6b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""89d4bdfc-b2ee-41c8-a623-418a9419ed6b""}\n2025-10-28 12:37:24.366 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c7033f9b-a79a-4873-9d6e-8d7ac521b8ab] received connection request\n2025-10-28 12:37:24.419 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c7033f9b-a79a-4873-9d6e-8d7ac521b8ab] socks forwarding established\n2025-10-28 12:37:24.450 [info] [command][89d4bdfc-b2ee-41c8-a623-418a9419ed6b] Process exited with code 0\n2025-10-28 12:37:24.450 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c7033f9b-a79a-4873-9d6e-8d7ac521b8ab] socks connection closed\n2025-10-28 12:37:24.451 [info] [command][89d4bdfc-b2ee-41c8-a623-418a9419ed6b] Socket close event received\n2025-10-28 12:38:24.457 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:38:24.460 [info] [command][409be995-8346-4a21-9b45-ae850a88a4b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""409be995-8346-4a21-9b45-ae850a88a4b6""}\n2025-10-28 12:38:24.461 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][13d4ec13-843f-48f3-abda-8cf545927d23] received connection request\n2025-10-28 12:38:24.486 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][13d4ec13-843f-48f3-abda-8cf545927d23] socks forwarding established\n2025-10-28 12:38:24.512 [info] [command][409be995-8346-4a21-9b45-ae850a88a4b6] Process exited with code 0\n2025-10-28 12:38:24.513 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][13d4ec13-843f-48f3-abda-8cf545927d23] socks connection closed\n2025-10-28 12:38:24.513 [info] [command][409be995-8346-4a21-9b45-ae850a88a4b6] Socket close event received\n2025-10-28 12:39:24.522 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:39:24.524 [info] [command][33d029b8-c866-4b29-9607-55d9c9abb2c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""33d029b8-c866-4b29-9607-55d9c9abb2c4""}\n2025-10-28 12:39:24.525 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6caf2c2c-4ef3-4f70-9e09-aad3a09611e2] received connection request\n2025-10-28 12:39:24.548 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6caf2c2c-4ef3-4f70-9e09-aad3a09611e2] socks forwarding established\n2025-10-28 12:39:24.576 [info] [command][33d029b8-c866-4b29-9607-55d9c9abb2c4] Process exited with code 0\n2025-10-28 12:39:24.576 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6caf2c2c-4ef3-4f70-9e09-aad3a09611e2] socks connection closed\n2025-10-28 12:39:24.576 [info] [command][33d029b8-c866-4b29-9607-55d9c9abb2c4] Socket close event received\n2025-10-28 12:40:24.580 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:40:24.583 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][10bdbfb6-a44c-4cf4-bdcf-f51ee3b7adab] received connection request\n2025-10-28 12:40:24.583 [info] [command][4892d5f8-6f1f-49cc-a12d-af3f10b6c062] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4892d5f8-6f1f-49cc-a12d-af3f10b6c062""}\n2025-10-28 12:40:24.608 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][10bdbfb6-a44c-4cf4-bdcf-f51ee3b7adab] socks forwarding established\n2025-10-28 12:40:24.635 [info] [command][4892d5f8-6f1f-49cc-a12d-af3f10b6c062] Process exited with code 0\n2025-10-28 12:40:24.635 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][10bdbfb6-a44c-4cf4-bdcf-f51ee3b7adab] socks connection closed\n2025-10-28 12:40:24.635 [info] [command][4892d5f8-6f1f-49cc-a12d-af3f10b6c062] Socket close event received\n2025-10-28 12:41:24.636 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:41:24.639 [info] [command][1025a7e9-cdc1-49c6-b18f-3788852881ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1025a7e9-cdc1-49c6-b18f-3788852881ea""}\n2025-10-28 12:41:24.640 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][02879d4e-2426-4b3f-b409-ef0c8fab3666] received connection request\n2025-10-28 12:41:24.666 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][02879d4e-2426-4b3f-b409-ef0c8fab3666] socks forwarding established\n2025-10-28 12:41:24.694 [info] [command][1025a7e9-cdc1-49c6-b18f-3788852881ea] Process exited with code 0\n2025-10-28 12:41:24.694 [info] [command][1025a7e9-cdc1-49c6-b18f-3788852881ea] Socket close event received\n2025-10-28 12:41:24.694 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][02879d4e-2426-4b3f-b409-ef0c8fab3666] socks connection closed\n2025-10-28 12:42:24.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:42:24.708 [info] [command][8f11b626-7a73-464b-8e21-1438270e3c09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8f11b626-7a73-464b-8e21-1438270e3c09""}\n2025-10-28 12:42:24.709 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ae67a50d-b5c2-4e97-8c48-116d2ac1e75b] received connection request\n2025-10-28 12:42:24.737 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ae67a50d-b5c2-4e97-8c48-116d2ac1e75b] socks forwarding established\n2025-10-28 12:42:24.764 [info] [command][8f11b626-7a73-464b-8e21-1438270e3c09] Process exited with code 0\n2025-10-28 12:42:24.764 [info] [command][8f11b626-7a73-464b-8e21-1438270e3c09] Socket close event received\n2025-10-28 12:42:24.765 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ae67a50d-b5c2-4e97-8c48-116d2ac1e75b] socks connection closed\n2025-10-28 12:43:24.766 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:43:24.769 [info] [command][7dbc081c-5dc6-4a6b-b532-7468fcfc4021] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7dbc081c-5dc6-4a6b-b532-7468fcfc4021""}\n2025-10-28 12:43:24.769 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][03fe4881-5e38-45b8-901e-36bbb5888c0e] received connection request\n2025-10-28 12:43:24.808 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][03fe4881-5e38-45b8-901e-36bbb5888c0e] socks forwarding established\n2025-10-28 12:43:24.836 [info] [command][7dbc081c-5dc6-4a6b-b532-7468fcfc4021] Process exited with code 0\n2025-10-28 12:43:24.836 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][03fe4881-5e38-45b8-901e-36bbb5888c0e] socks connection closed\n2025-10-28 12:43:24.836 [info] [command][7dbc081c-5dc6-4a6b-b532-7468fcfc4021] Socket close event received\n2025-10-28 12:44:24.847 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:44:24.851 [info] [command][be2b318e-6efd-45ff-9b32-25b8437ea3d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""be2b318e-6efd-45ff-9b32-25b8437ea3d1""}\n2025-10-28 12:44:24.852 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a084cbf6-09ff-4b8e-b90a-4644cf9e0158] received connection request\n2025-10-28 12:44:24.878 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a084cbf6-09ff-4b8e-b90a-4644cf9e0158] socks forwarding established\n2025-10-28 12:44:24.905 [info] [command][be2b318e-6efd-45ff-9b32-25b8437ea3d1] Process exited with code 0\n2025-10-28 12:44:24.905 [info] [command][be2b318e-6efd-45ff-9b32-25b8437ea3d1] Socket close event received\n2025-10-28 12:44:24.905 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a084cbf6-09ff-4b8e-b90a-4644cf9e0158] socks connection closed\n2025-10-28 12:45:24.909 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:45:24.912 [info] [command][d6d7adbd-4858-44e8-901a-9f73f43cc437] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d6d7adbd-4858-44e8-901a-9f73f43cc437""}\n2025-10-28 12:45:24.912 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6bbf56ba-bb97-4a48-b780-79cf3be48cf4] received connection request\n2025-10-28 12:45:24.938 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6bbf56ba-bb97-4a48-b780-79cf3be48cf4] socks forwarding established\n2025-10-28 12:45:24.968 [info] [command][d6d7adbd-4858-44e8-901a-9f73f43cc437] Process exited with code 0\n2025-10-28 12:45:24.968 [info] [command][d6d7adbd-4858-44e8-901a-9f73f43cc437] Socket close event received\n2025-10-28 12:45:24.969 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6bbf56ba-bb97-4a48-b780-79cf3be48cf4] socks connection closed\n2025-10-28 12:46:24.978 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:46:24.981 [info] [command][71f24c93-c36b-4624-84ee-f2b95c8b793d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""71f24c93-c36b-4624-84ee-f2b95c8b793d""}\n2025-10-28 12:46:24.982 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][33255e46-292c-404f-a9e1-21466fc902ec] received connection request\n2025-10-28 12:46:25.022 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][33255e46-292c-404f-a9e1-21466fc902ec] socks forwarding established\n2025-10-28 12:46:25.057 [info] [command][71f24c93-c36b-4624-84ee-f2b95c8b793d] Process exited with code 0\n2025-10-28 12:46:25.057 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][33255e46-292c-404f-a9e1-21466fc902ec] socks connection closed\n2025-10-28 12:46:25.057 [info] [command][71f24c93-c36b-4624-84ee-f2b95c8b793d] Socket close event received\n2025-10-28 12:47:25.062 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:47:25.065 [info] [command][ee6a81da-673f-415c-8773-b45147e37cac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ee6a81da-673f-415c-8773-b45147e37cac""}\n2025-10-28 12:47:25.066 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4042e619-d3f6-43c8-92d8-e907283d678e] received connection request\n2025-10-28 12:47:25.100 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4042e619-d3f6-43c8-92d8-e907283d678e] socks forwarding established\n2025-10-28 12:47:25.143 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4042e619-d3f6-43c8-92d8-e907283d678e] socks connection closed\n2025-10-28 12:47:25.143 [info] [command][ee6a81da-673f-415c-8773-b45147e37cac] Process exited with code 0\n2025-10-28 12:47:25.143 [info] [command][ee6a81da-673f-415c-8773-b45147e37cac] Socket close event received\n2025-10-28 12:48:25.154 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:48:25.157 [info] [command][49397e6a-9651-4937-9257-0ddf461143ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""49397e6a-9651-4937-9257-0ddf461143ec""}\n2025-10-28 12:48:25.158 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1ff5212b-e452-417b-b8d0-1a92a07e4768] received connection request\n2025-10-28 12:48:25.182 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1ff5212b-e452-417b-b8d0-1a92a07e4768] socks forwarding established\n2025-10-28 12:48:25.210 [info] [command][49397e6a-9651-4937-9257-0ddf461143ec] Process exited with code 0\n2025-10-28 12:48:25.210 [info] [command][49397e6a-9651-4937-9257-0ddf461143ec] Socket close event received\n2025-10-28 12:48:25.211 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1ff5212b-e452-417b-b8d0-1a92a07e4768] socks connection closed\n2025-10-28 12:49:25.219 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:49:25.222 [info] [command][38d40bb0-adc7-4c1e-8bbe-94fc59e1475b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""38d40bb0-adc7-4c1e-8bbe-94fc59e1475b""}\n2025-10-28 12:49:25.223 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2b7ec228-4900-45bd-9f53-851bcb3a3370] received connection request\n2025-10-28 12:49:25.247 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2b7ec228-4900-45bd-9f53-851bcb3a3370] socks forwarding established\n2025-10-28 12:49:25.274 [info] [command][38d40bb0-adc7-4c1e-8bbe-94fc59e1475b] Process exited with code 0\n2025-10-28 12:49:25.274 [info] [command][38d40bb0-adc7-4c1e-8bbe-94fc59e1475b] Socket close event received\n2025-10-28 12:49:25.274 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2b7ec228-4900-45bd-9f53-851bcb3a3370] socks connection closed\n2025-10-28 12:50:25.277 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:50:25.279 [info] [command][51050887-3785-402e-879c-b76dc21b4995] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""51050887-3785-402e-879c-b76dc21b4995""}\n2025-10-28 12:50:25.280 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0d3cf119-9855-4520-bb8d-dea6a2bc5dbe] received connection request\n2025-10-28 12:50:25.315 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0d3cf119-9855-4520-bb8d-dea6a2bc5dbe] socks forwarding established\n2025-10-28 12:50:25.341 [info] [command][51050887-3785-402e-879c-b76dc21b4995] Process exited with code 0\n2025-10-28 12:50:25.342 [info] [command][51050887-3785-402e-879c-b76dc21b4995] Socket close event received\n2025-10-28 12:50:25.342 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0d3cf119-9855-4520-bb8d-dea6a2bc5dbe] socks connection closed\n2025-10-28 12:51:25.312 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:51:25.315 [info] [command][15dfbbac-d0c3-4e39-ad0d-c55803b8d0f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""15dfbbac-d0c3-4e39-ad0d-c55803b8d0f7""}\n2025-10-28 12:51:25.316 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cca15030-0923-44e6-9425-6604e107d14c] received connection request\n2025-10-28 12:51:25.344 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cca15030-0923-44e6-9425-6604e107d14c] socks forwarding established\n2025-10-28 12:51:25.370 [info] [command][15dfbbac-d0c3-4e39-ad0d-c55803b8d0f7] Process exited with code 0\n2025-10-28 12:51:25.370 [info] [command][15dfbbac-d0c3-4e39-ad0d-c55803b8d0f7] Socket close event received\n2025-10-28 12:51:25.370 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cca15030-0923-44e6-9425-6604e107d14c] socks connection closed\n2025-10-28 12:52:25.369 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:52:25.371 [info] [command][90df91b1-85bf-4724-a1d5-d4c608dd176f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""90df91b1-85bf-4724-a1d5-d4c608dd176f""}\n2025-10-28 12:52:25.372 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5c09c5a4-c6f0-4c64-b48f-735ff02cb20b] received connection request\n2025-10-28 12:52:25.403 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5c09c5a4-c6f0-4c64-b48f-735ff02cb20b] socks forwarding established\n2025-10-28 12:52:25.437 [info] [command][90df91b1-85bf-4724-a1d5-d4c608dd176f] Process exited with code 0\n2025-10-28 12:52:25.437 [info] [command][90df91b1-85bf-4724-a1d5-d4c608dd176f] Socket close event received\n2025-10-28 12:52:25.438 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5c09c5a4-c6f0-4c64-b48f-735ff02cb20b] socks connection closed\n2025-10-28 12:53:25.438 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:53:25.441 [info] [command][7e4cdfdf-f197-444b-a389-b544dec0abd0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7e4cdfdf-f197-444b-a389-b544dec0abd0""}\n2025-10-28 12:53:25.442 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][45cff5f3-d2fe-4bd6-99b2-b1495553f576] received connection request\n2025-10-28 12:53:25.466 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][45cff5f3-d2fe-4bd6-99b2-b1495553f576] socks forwarding established\n2025-10-28 12:53:25.494 [info] [command][7e4cdfdf-f197-444b-a389-b544dec0abd0] Process exited with code 0\n2025-10-28 12:53:25.494 [info] [command][7e4cdfdf-f197-444b-a389-b544dec0abd0] Socket close event received\n2025-10-28 12:53:25.499 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][45cff5f3-d2fe-4bd6-99b2-b1495553f576] socks connection closed\n2025-10-28 12:54:25.500 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:54:25.503 [info] [command][5040ca07-5abf-452e-b2d1-4e18363d9107] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5040ca07-5abf-452e-b2d1-4e18363d9107""}\n2025-10-28 12:54:25.504 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][826fea1e-54fd-4e7c-8d05-f0238096fc0d] received connection request\n2025-10-28 12:54:25.533 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][826fea1e-54fd-4e7c-8d05-f0238096fc0d] socks forwarding established\n2025-10-28 12:54:25.559 [info] [command][5040ca07-5abf-452e-b2d1-4e18363d9107] Process exited with code 0\n2025-10-28 12:54:25.559 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][826fea1e-54fd-4e7c-8d05-f0238096fc0d] socks connection closed\n2025-10-28 12:54:25.559 [info] [command][5040ca07-5abf-452e-b2d1-4e18363d9107] Socket close event received\n2025-10-28 12:55:25.568 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:55:25.570 [info] [command][f4e8aa4f-8756-4dda-9a74-da9ed8858514] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f4e8aa4f-8756-4dda-9a74-da9ed8858514""}\n2025-10-28 12:55:25.570 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3f3d49a7-c9c3-4152-ba3c-b70bffa786b4] received connection request\n2025-10-28 12:55:25.643 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3f3d49a7-c9c3-4152-ba3c-b70bffa786b4] socks forwarding established\n2025-10-28 12:55:25.671 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3f3d49a7-c9c3-4152-ba3c-b70bffa786b4] socks connection closed\n2025-10-28 12:55:25.671 [info] [command][f4e8aa4f-8756-4dda-9a74-da9ed8858514] Process exited with code 0\n2025-10-28 12:55:25.671 [info] [command][f4e8aa4f-8756-4dda-9a74-da9ed8858514] Socket close event received\n2025-10-28 12:56:25.682 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:56:25.683 [info] [command][8eb7cb16-b46e-4810-97fb-0b5d0088ff7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8eb7cb16-b46e-4810-97fb-0b5d0088ff7a""}\n2025-10-28 12:56:25.684 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a81dd669-5f63-44e3-811d-e721772dd2cc] received connection request\n2025-10-28 12:56:25.708 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a81dd669-5f63-44e3-811d-e721772dd2cc] socks forwarding established\n2025-10-28 12:56:25.741 [info] [command][8eb7cb16-b46e-4810-97fb-0b5d0088ff7a] Process exited with code 0\n2025-10-28 12:56:25.741 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a81dd669-5f63-44e3-811d-e721772dd2cc] socks connection closed\n2025-10-28 12:56:25.741 [info] [command][8eb7cb16-b46e-4810-97fb-0b5d0088ff7a] Socket close event received\n2025-10-28 12:57:25.746 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:57:25.748 [info] [command][afe00273-9286-45ce-84a1-8ed6330068e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""afe00273-9286-45ce-84a1-8ed6330068e7""}\n2025-10-28 12:57:25.749 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][06e1e6c7-538c-4436-9f28-e07b5e96302c] received connection request\n2025-10-28 12:57:25.774 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][06e1e6c7-538c-4436-9f28-e07b5e96302c] socks forwarding established\n2025-10-28 12:57:25.800 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][06e1e6c7-538c-4436-9f28-e07b5e96302c] socks connection closed\n2025-10-28 12:57:25.801 [info] [command][afe00273-9286-45ce-84a1-8ed6330068e7] Process exited with code 0\n2025-10-28 12:57:25.801 [info] [command][afe00273-9286-45ce-84a1-8ed6330068e7] Socket close event received\n2025-10-28 12:58:25.804 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:58:25.805 [info] [command][5085d7c4-489a-43fd-abd0-6ed6586a2644] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5085d7c4-489a-43fd-abd0-6ed6586a2644""}\n2025-10-28 12:58:25.806 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7d05e4e9-60cb-425e-896b-45a7886fc4dd] received connection request\n2025-10-28 12:58:25.834 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7d05e4e9-60cb-425e-896b-45a7886fc4dd] socks forwarding established\n2025-10-28 12:58:25.878 [info] [command][5085d7c4-489a-43fd-abd0-6ed6586a2644] Process exited with code 0\n2025-10-28 12:58:25.878 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7d05e4e9-60cb-425e-896b-45a7886fc4dd] socks connection closed\n2025-10-28 12:58:25.878 [info] [command][5085d7c4-489a-43fd-abd0-6ed6586a2644] Socket close event received\n2025-10-28 12:59:25.885 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 12:59:25.887 [info] [command][6fdcef24-2bfe-42f8-ad89-5cc27da8dac9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6fdcef24-2bfe-42f8-ad89-5cc27da8dac9""}\n2025-10-28 12:59:25.889 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][12b046a6-0d2b-41cb-bd71-569da38effe5] received connection request\n2025-10-28 12:59:25.913 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][12b046a6-0d2b-41cb-bd71-569da38effe5] socks forwarding established\n2025-10-28 12:59:25.958 [info] [command][6fdcef24-2bfe-42f8-ad89-5cc27da8dac9] Process exited with code 0\n2025-10-28 12:59:25.958 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][12b046a6-0d2b-41cb-bd71-569da38effe5] socks connection closed\n2025-10-28 12:59:25.959 [info] [command][6fdcef24-2bfe-42f8-ad89-5cc27da8dac9] Socket close event received\n2025-10-28 13:00:25.969 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:00:25.971 [info] [command][7b617085-966c-476a-b944-ab13e11de076] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7b617085-966c-476a-b944-ab13e11de076""}\n2025-10-28 13:00:25.972 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][aa26a6cf-7cfe-4b24-a8a1-2efb3716605f] received connection request\n2025-10-28 13:00:25.999 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][aa26a6cf-7cfe-4b24-a8a1-2efb3716605f] socks forwarding established\n2025-10-28 13:00:26.025 [info] [command][7b617085-966c-476a-b944-ab13e11de076] Process exited with code 0\n2025-10-28 13:00:26.025 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][aa26a6cf-7cfe-4b24-a8a1-2efb3716605f] socks connection closed\n2025-10-28 13:00:26.025 [info] [command][7b617085-966c-476a-b944-ab13e11de076] Socket close event received\n2025-10-28 13:01:26.036 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:01:26.039 [info] [command][85bcdaac-1fb1-4a49-8bae-926e1f80d692] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""85bcdaac-1fb1-4a49-8bae-926e1f80d692""}\n2025-10-28 13:01:26.040 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5d19e23d-f644-424a-9965-aa37084eec2c] received connection request\n2025-10-28 13:01:26.072 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5d19e23d-f644-424a-9965-aa37084eec2c] socks forwarding established\n2025-10-28 13:01:26.100 [info] [command][85bcdaac-1fb1-4a49-8bae-926e1f80d692] Process exited with code 0\n2025-10-28 13:01:26.101 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5d19e23d-f644-424a-9965-aa37084eec2c] socks connection closed\n2025-10-28 13:01:26.101 [info] [command][85bcdaac-1fb1-4a49-8bae-926e1f80d692] Socket close event received\n2025-10-28 13:02:26.101 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:02:26.102 [info] [command][8fd75dee-3984-43a9-9bb4-22ca4cdc18d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8fd75dee-3984-43a9-9bb4-22ca4cdc18d6""}\n2025-10-28 13:02:26.103 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5488155b-6931-481e-81a5-24033c7d1091] received connection request\n2025-10-28 13:02:26.128 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5488155b-6931-481e-81a5-24033c7d1091] socks forwarding established\n2025-10-28 13:02:26.156 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5488155b-6931-481e-81a5-24033c7d1091] socks connection closed\n2025-10-28 13:02:26.156 [info] [command][8fd75dee-3984-43a9-9bb4-22ca4cdc18d6] Process exited with code 0\n2025-10-28 13:02:26.156 [info] [command][8fd75dee-3984-43a9-9bb4-22ca4cdc18d6] Socket close event received\n2025-10-28 13:03:26.166 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:03:26.168 [info] [command][b172d96a-0caa-48a9-bf46-df8f2ae8ff66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b172d96a-0caa-48a9-bf46-df8f2ae8ff66""}\n2025-10-28 13:03:26.168 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2c512944-3a68-42f7-b835-b2629ab7732e] received connection request\n2025-10-28 13:03:26.193 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2c512944-3a68-42f7-b835-b2629ab7732e] socks forwarding established\n2025-10-28 13:03:26.218 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2c512944-3a68-42f7-b835-b2629ab7732e] socks connection closed\n2025-10-28 13:03:26.218 [info] [command][b172d96a-0caa-48a9-bf46-df8f2ae8ff66] Process exited with code 0\n2025-10-28 13:03:26.218 [info] [command][b172d96a-0caa-48a9-bf46-df8f2ae8ff66] Socket close event received\n2025-10-28 13:04:26.219 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:04:26.221 [info] [command][0f456a02-98d3-411d-a62d-79933f1bc8d3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0f456a02-98d3-411d-a62d-79933f1bc8d3""}\n2025-10-28 13:04:26.222 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f5dfd74a-f047-4b22-accc-0eb8d1ee1d69] received connection request\n2025-10-28 13:04:26.247 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f5dfd74a-f047-4b22-accc-0eb8d1ee1d69] socks forwarding established\n2025-10-28 13:04:26.274 [info] [command][0f456a02-98d3-411d-a62d-79933f1bc8d3] Process exited with code 0\n2025-10-28 13:04:26.274 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f5dfd74a-f047-4b22-accc-0eb8d1ee1d69] socks connection closed\n2025-10-28 13:04:26.274 [info] [command][0f456a02-98d3-411d-a62d-79933f1bc8d3] Socket close event received\n2025-10-28 13:05:26.284 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:05:26.287 [info] [command][b0aa30d7-9ad2-401d-acf5-51733823db41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b0aa30d7-9ad2-401d-acf5-51733823db41""}\n2025-10-28 13:05:26.288 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8f07d924-3dda-4833-afa1-7787d58b475d] received connection request\n2025-10-28 13:05:26.317 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8f07d924-3dda-4833-afa1-7787d58b475d] socks forwarding established\n2025-10-28 13:05:26.346 [info] [command][b0aa30d7-9ad2-401d-acf5-51733823db41] Process exited with code 0\n2025-10-28 13:05:26.346 [info] [command][b0aa30d7-9ad2-401d-acf5-51733823db41] Socket close event received\n2025-10-28 13:05:26.347 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8f07d924-3dda-4833-afa1-7787d58b475d] socks connection closed\n2025-10-28 13:06:26.347 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:06:26.350 [info] [command][007c917a-4e62-4b40-8a7f-a4732674e54e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""007c917a-4e62-4b40-8a7f-a4732674e54e""}\n2025-10-28 13:06:26.350 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9913fc13-b711-4a16-8dfa-b6d7ce1a2dec] received connection request\n2025-10-28 13:06:26.374 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9913fc13-b711-4a16-8dfa-b6d7ce1a2dec] socks forwarding established\n2025-10-28 13:06:26.403 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9913fc13-b711-4a16-8dfa-b6d7ce1a2dec] socks connection closed\n2025-10-28 13:06:26.403 [info] [command][007c917a-4e62-4b40-8a7f-a4732674e54e] Process exited with code 0\n2025-10-28 13:06:26.403 [info] [command][007c917a-4e62-4b40-8a7f-a4732674e54e] Socket close event received\n2025-10-28 13:07:26.403 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:07:26.406 [info] [command][6bf21ee0-b2a9-4215-a0ee-4cfa8b66725a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6bf21ee0-b2a9-4215-a0ee-4cfa8b66725a""}\n2025-10-28 13:07:26.407 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][728010d8-b40e-4452-9885-1e0a8088a5ea] received connection request\n2025-10-28 13:07:26.441 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][728010d8-b40e-4452-9885-1e0a8088a5ea] socks forwarding established\n2025-10-28 13:07:26.470 [info] [command][6bf21ee0-b2a9-4215-a0ee-4cfa8b66725a] Process exited with code 0\n2025-10-28 13:07:26.470 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][728010d8-b40e-4452-9885-1e0a8088a5ea] socks connection closed\n2025-10-28 13:07:26.470 [info] [command][6bf21ee0-b2a9-4215-a0ee-4cfa8b66725a] Socket close event received\n2025-10-28 13:08:26.479 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:08:26.482 [info] [command][af7748f0-3511-4fb6-980a-6070fc8b3a2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""af7748f0-3511-4fb6-980a-6070fc8b3a2f""}\n2025-10-28 13:08:26.483 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a968268a-e836-4a24-b75a-70e54f1c2b43] received connection request\n2025-10-28 13:08:26.507 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a968268a-e836-4a24-b75a-70e54f1c2b43] socks forwarding established\n2025-10-28 13:08:26.537 [info] [command][af7748f0-3511-4fb6-980a-6070fc8b3a2f] Process exited with code 0\n2025-10-28 13:08:26.538 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a968268a-e836-4a24-b75a-70e54f1c2b43] socks connection closed\n2025-10-28 13:08:26.538 [info] [command][af7748f0-3511-4fb6-980a-6070fc8b3a2f] Socket close event received\n2025-10-28 13:09:26.540 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:09:26.543 [info] [command][bbe83775-cc06-48fa-b76c-2086cf681ae0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bbe83775-cc06-48fa-b76c-2086cf681ae0""}\n2025-10-28 13:09:26.544 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c5915ed6-d2f3-49ca-9703-36c3f366de37] received connection request\n2025-10-28 13:09:26.569 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c5915ed6-d2f3-49ca-9703-36c3f366de37] socks forwarding established\n2025-10-28 13:09:26.602 [info] [command][bbe83775-cc06-48fa-b76c-2086cf681ae0] Process exited with code 0\n2025-10-28 13:09:26.602 [info] [command][bbe83775-cc06-48fa-b76c-2086cf681ae0] Socket close event received\n2025-10-28 13:09:26.602 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c5915ed6-d2f3-49ca-9703-36c3f366de37] socks connection closed\n2025-10-28 13:10:26.611 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:10:26.615 [info] [command][aff217ee-0c93-4ee1-b921-d1ffff4662ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""aff217ee-0c93-4ee1-b921-d1ffff4662ef""}\n2025-10-28 13:10:26.615 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a1e36587-da89-4704-ac6f-3e4e67f8fdb8] received connection request\n2025-10-28 13:10:26.648 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a1e36587-da89-4704-ac6f-3e4e67f8fdb8] socks forwarding established\n2025-10-28 13:10:26.679 [info] [command][aff217ee-0c93-4ee1-b921-d1ffff4662ef] Process exited with code 0\n2025-10-28 13:10:26.679 [info] [command][aff217ee-0c93-4ee1-b921-d1ffff4662ef] Socket close event received\n2025-10-28 13:10:26.680 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a1e36587-da89-4704-ac6f-3e4e67f8fdb8] socks connection closed\n2025-10-28 13:11:26.684 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:11:26.687 [info] [command][216e9e6b-14a3-49fc-bcba-462bdfebaf82] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""216e9e6b-14a3-49fc-bcba-462bdfebaf82""}\n2025-10-28 13:11:26.689 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][28fc0984-3f2a-4c84-a2cd-05585fab5e77] received connection request\n2025-10-28 13:11:26.718 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][28fc0984-3f2a-4c84-a2cd-05585fab5e77] socks forwarding established\n2025-10-28 13:11:26.758 [info] [command][216e9e6b-14a3-49fc-bcba-462bdfebaf82] Process exited with code 0\n2025-10-28 13:11:26.759 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][28fc0984-3f2a-4c84-a2cd-05585fab5e77] socks connection closed\n2025-10-28 13:11:26.759 [info] [command][216e9e6b-14a3-49fc-bcba-462bdfebaf82] Socket close event received\n2025-10-28 13:12:26.768 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:12:26.771 [info] [command][4dc31b22-c985-4088-892f-8a5c237a8465] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4dc31b22-c985-4088-892f-8a5c237a8465""}\n2025-10-28 13:12:26.772 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4dbd99c3-fa78-4132-8b5e-f9a01b24f416] received connection request\n2025-10-28 13:12:26.802 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4dbd99c3-fa78-4132-8b5e-f9a01b24f416] socks forwarding established\n2025-10-28 13:12:26.828 [info] [command][4dc31b22-c985-4088-892f-8a5c237a8465] Process exited with code 0\n2025-10-28 13:12:26.829 [info] [command][4dc31b22-c985-4088-892f-8a5c237a8465] Socket close event received\n2025-10-28 13:12:26.829 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4dbd99c3-fa78-4132-8b5e-f9a01b24f416] socks connection closed\n2025-10-28 13:13:26.831 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:13:26.834 [info] [command][2148e3a3-5a9d-410e-91af-2a73cbe63724] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2148e3a3-5a9d-410e-91af-2a73cbe63724""}\n2025-10-28 13:13:26.835 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][56895e3f-7deb-4766-a7c4-a549ea230472] received connection request\n2025-10-28 13:13:26.866 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][56895e3f-7deb-4766-a7c4-a549ea230472] socks forwarding established\n2025-10-28 13:13:26.892 [info] [command][2148e3a3-5a9d-410e-91af-2a73cbe63724] Process exited with code 0\n2025-10-28 13:13:26.893 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][56895e3f-7deb-4766-a7c4-a549ea230472] socks connection closed\n2025-10-28 13:13:26.893 [info] [command][2148e3a3-5a9d-410e-91af-2a73cbe63724] Socket close event received\n2025-10-28 13:14:26.900 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:14:26.903 [info] [command][ab49a720-59c3-4676-b7c1-9e8275f58688] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ab49a720-59c3-4676-b7c1-9e8275f58688""}\n2025-10-28 13:14:26.904 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0a4131d5-6f75-412d-880a-c91081344a2c] received connection request\n2025-10-28 13:14:26.928 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0a4131d5-6f75-412d-880a-c91081344a2c] socks forwarding established\n2025-10-28 13:14:26.958 [info] [command][ab49a720-59c3-4676-b7c1-9e8275f58688] Process exited with code 0\n2025-10-28 13:14:26.958 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0a4131d5-6f75-412d-880a-c91081344a2c] socks connection closed\n2025-10-28 13:14:26.958 [info] [command][ab49a720-59c3-4676-b7c1-9e8275f58688] Socket close event received\n2025-10-28 13:15:26.967 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:15:26.969 [info] [command][18fe6e0f-4951-4d6d-b4f4-3f67eaed60ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""18fe6e0f-4951-4d6d-b4f4-3f67eaed60ec""}\n2025-10-28 13:15:26.970 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d0b46700-0537-46ad-bbb3-f83a62a733de] received connection request\n2025-10-28 13:15:27.005 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d0b46700-0537-46ad-bbb3-f83a62a733de] socks forwarding established\n2025-10-28 13:15:27.032 [info] [command][18fe6e0f-4951-4d6d-b4f4-3f67eaed60ec] Process exited with code 0\n2025-10-28 13:15:27.032 [info] [command][18fe6e0f-4951-4d6d-b4f4-3f67eaed60ec] Socket close event received\n2025-10-28 13:15:27.033 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d0b46700-0537-46ad-bbb3-f83a62a733de] socks connection closed\n2025-10-28 13:16:27.041 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:16:27.044 [info] [command][7c92ef13-151e-4ba8-916a-fa66bf2977a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7c92ef13-151e-4ba8-916a-fa66bf2977a8""}\n2025-10-28 13:16:27.045 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cbba7776-73b6-4a6a-9ebb-ba1fc8b4bb98] received connection request\n2025-10-28 13:16:27.070 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cbba7776-73b6-4a6a-9ebb-ba1fc8b4bb98] socks forwarding established\n2025-10-28 13:16:27.126 [info] [command][7c92ef13-151e-4ba8-916a-fa66bf2977a8] Process exited with code 0\n2025-10-28 13:16:27.126 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cbba7776-73b6-4a6a-9ebb-ba1fc8b4bb98] socks connection closed\n2025-10-28 13:16:27.127 [info] [command][7c92ef13-151e-4ba8-916a-fa66bf2977a8] Socket close event received\n2025-10-28 13:17:27.127 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:17:27.130 [info] [command][e8b5f9b8-7ed6-4a06-9fb0-cfdce535259e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e8b5f9b8-7ed6-4a06-9fb0-cfdce535259e""}\n2025-10-28 13:17:27.131 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][392e60ab-7028-4a1c-87d2-a8f8309f9168] received connection request\n2025-10-28 13:17:27.157 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][392e60ab-7028-4a1c-87d2-a8f8309f9168] socks forwarding established\n2025-10-28 13:17:27.186 [info] [command][e8b5f9b8-7ed6-4a06-9fb0-cfdce535259e] Process exited with code 0\n2025-10-28 13:17:27.187 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][392e60ab-7028-4a1c-87d2-a8f8309f9168] socks connection closed\n2025-10-28 13:17:27.187 [info] [command][e8b5f9b8-7ed6-4a06-9fb0-cfdce535259e] Socket close event received\n2025-10-28 13:18:27.189 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:18:27.190 [info] [command][04bb826b-b7e3-4d54-87ad-88dfcf9700b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""04bb826b-b7e3-4d54-87ad-88dfcf9700b7""}\n2025-10-28 13:18:27.191 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][dc858473-76a1-4841-8e1f-b8db8c4e3b39] received connection request\n2025-10-28 13:18:27.213 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dc858473-76a1-4841-8e1f-b8db8c4e3b39] socks forwarding established\n2025-10-28 13:18:27.240 [info] [command][04bb826b-b7e3-4d54-87ad-88dfcf9700b7] Process exited with code 0\n2025-10-28 13:18:27.240 [info] [command][04bb826b-b7e3-4d54-87ad-88dfcf9700b7] Socket close event received\n2025-10-28 13:18:27.241 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dc858473-76a1-4841-8e1f-b8db8c4e3b39] socks connection closed\n2025-10-28 13:19:27.239 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:19:27.242 [info] [command][3b37742e-d73b-4220-bb8a-4d4eac1f69b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3b37742e-d73b-4220-bb8a-4d4eac1f69b9""}\n2025-10-28 13:19:27.243 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][09a85d06-61f5-4d50-b05e-46f17a06930a] received connection request\n2025-10-28 13:19:27.266 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][09a85d06-61f5-4d50-b05e-46f17a06930a] socks forwarding established\n2025-10-28 13:19:27.292 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][09a85d06-61f5-4d50-b05e-46f17a06930a] socks connection closed\n2025-10-28 13:19:27.293 [info] [command][3b37742e-d73b-4220-bb8a-4d4eac1f69b9] Process exited with code 0\n2025-10-28 13:19:27.293 [info] [command][3b37742e-d73b-4220-bb8a-4d4eac1f69b9] Socket close event received\n2025-10-28 13:20:27.297 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:20:27.300 [info] [command][24d36b45-e661-4f42-9e52-139e8426ca01] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""24d36b45-e661-4f42-9e52-139e8426ca01""}\n2025-10-28 13:20:27.300 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9c35d872-61d9-489d-abcf-93ef9374e4dc] received connection request\n2025-10-28 13:20:27.329 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9c35d872-61d9-489d-abcf-93ef9374e4dc] socks forwarding established\n2025-10-28 13:20:27.357 [info] [command][24d36b45-e661-4f42-9e52-139e8426ca01] Process exited with code 0\n2025-10-28 13:20:27.357 [info] [command][24d36b45-e661-4f42-9e52-139e8426ca01] Socket close event received\n2025-10-28 13:20:27.357 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9c35d872-61d9-489d-abcf-93ef9374e4dc] socks connection closed\n2025-10-28 13:21:27.367 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:21:27.370 [info] [command][ef8c6490-523f-4f13-8daa-87d170f61f1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ef8c6490-523f-4f13-8daa-87d170f61f1a""}\n2025-10-28 13:21:27.370 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2d4eeaa3-094c-409a-81bc-73a9e5d38d5e] received connection request\n2025-10-28 13:21:27.398 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2d4eeaa3-094c-409a-81bc-73a9e5d38d5e] socks forwarding established\n2025-10-28 13:21:27.434 [info] [command][ef8c6490-523f-4f13-8daa-87d170f61f1a] Process exited with code 0\n2025-10-28 13:21:27.434 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2d4eeaa3-094c-409a-81bc-73a9e5d38d5e] socks connection closed\n2025-10-28 13:21:27.434 [info] [command][ef8c6490-523f-4f13-8daa-87d170f61f1a] Socket close event received\n2025-10-28 13:22:27.444 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:22:27.448 [info] [command][04ffc4f8-e82b-4eb7-b007-e2784fa8ad4f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""04ffc4f8-e82b-4eb7-b007-e2784fa8ad4f""}\n2025-10-28 13:22:27.449 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1a47266b-d93f-46e7-81cf-08e57c76e669] received connection request\n2025-10-28 13:22:27.478 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1a47266b-d93f-46e7-81cf-08e57c76e669] socks forwarding established\n2025-10-28 13:22:27.514 [info] [command][04ffc4f8-e82b-4eb7-b007-e2784fa8ad4f] Process exited with code 0\n2025-10-28 13:22:27.514 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1a47266b-d93f-46e7-81cf-08e57c76e669] socks connection closed\n2025-10-28 13:22:27.514 [info] [command][04ffc4f8-e82b-4eb7-b007-e2784fa8ad4f] Socket close event received\n2025-10-28 13:23:27.521 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:23:27.524 [info] [command][57af8055-f222-4f67-a329-558847ee83cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""57af8055-f222-4f67-a329-558847ee83cb""}\n2025-10-28 13:23:27.524 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a214d550-b4d6-4d6d-97eb-eb13157cb5b3] received connection request\n2025-10-28 13:23:27.553 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a214d550-b4d6-4d6d-97eb-eb13157cb5b3] socks forwarding established\n2025-10-28 13:23:27.580 [info] [command][57af8055-f222-4f67-a329-558847ee83cb] Process exited with code 0\n2025-10-28 13:23:27.581 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a214d550-b4d6-4d6d-97eb-eb13157cb5b3] socks connection closed\n2025-10-28 13:23:27.581 [info] [command][57af8055-f222-4f67-a329-558847ee83cb] Socket close event received\n2025-10-28 13:24:27.590 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:24:27.593 [info] [command][f350e868-ea97-4bcc-830a-28f44e7c6c40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f350e868-ea97-4bcc-830a-28f44e7c6c40""}\n2025-10-28 13:24:27.593 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3a8a8c4a-e58d-46ec-896b-4fd5ae233be4] received connection request\n2025-10-28 13:24:27.617 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3a8a8c4a-e58d-46ec-896b-4fd5ae233be4] socks forwarding established\n2025-10-28 13:24:27.655 [info] [command][f350e868-ea97-4bcc-830a-28f44e7c6c40] Process exited with code 0\n2025-10-28 13:24:27.655 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3a8a8c4a-e58d-46ec-896b-4fd5ae233be4] socks connection closed\n2025-10-28 13:24:27.655 [info] [command][f350e868-ea97-4bcc-830a-28f44e7c6c40] Socket close event received\n2025-10-28 13:25:27.664 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:25:27.667 [info] [command][23117fa8-01d8-4198-95fc-2ccbaefb86f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""23117fa8-01d8-4198-95fc-2ccbaefb86f9""}\n2025-10-28 13:25:27.668 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9b2ab95a-b4a3-4568-a6aa-4082a71daae0] received connection request\n2025-10-28 13:25:27.696 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9b2ab95a-b4a3-4568-a6aa-4082a71daae0] socks forwarding established\n2025-10-28 13:25:27.723 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9b2ab95a-b4a3-4568-a6aa-4082a71daae0] socks connection closed\n2025-10-28 13:25:27.723 [info] [command][23117fa8-01d8-4198-95fc-2ccbaefb86f9] Process exited with code 0\n2025-10-28 13:25:27.724 [info] [command][23117fa8-01d8-4198-95fc-2ccbaefb86f9] Socket close event received\n2025-10-28 13:26:27.730 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:26:27.732 [info] [command][31a08772-8979-45ca-a6ee-c562baa9e2e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""31a08772-8979-45ca-a6ee-c562baa9e2e4""}\n2025-10-28 13:26:27.733 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1c72bbd4-5ab0-49cd-b2cd-86c360b63de2] received connection request\n2025-10-28 13:26:27.763 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1c72bbd4-5ab0-49cd-b2cd-86c360b63de2] socks forwarding established\n2025-10-28 13:26:27.801 [info] [command][31a08772-8979-45ca-a6ee-c562baa9e2e4] Process exited with code 0\n2025-10-28 13:26:27.801 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1c72bbd4-5ab0-49cd-b2cd-86c360b63de2] socks connection closed\n2025-10-28 13:26:27.801 [info] [command][31a08772-8979-45ca-a6ee-c562baa9e2e4] Socket close event received\n2025-10-28 13:27:27.802 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:27:27.804 [info] [command][1ebe0cfe-06b3-4ea0-a9b5-f64644000aab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1ebe0cfe-06b3-4ea0-a9b5-f64644000aab""}\n2025-10-28 13:27:27.804 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][12d96098-2e42-4344-9e07-42e77e467e6c] received connection request\n2025-10-28 13:27:27.830 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][12d96098-2e42-4344-9e07-42e77e467e6c] socks forwarding established\n2025-10-28 13:27:27.856 [info] [command][1ebe0cfe-06b3-4ea0-a9b5-f64644000aab] Process exited with code 0\n2025-10-28 13:27:27.857 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][12d96098-2e42-4344-9e07-42e77e467e6c] socks connection closed\n2025-10-28 13:27:27.857 [info] [command][1ebe0cfe-06b3-4ea0-a9b5-f64644000aab] Socket close event received\n2025-10-28 13:28:27.859 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:28:27.861 [info] [command][a631a32f-5078-40f5-bc1f-e69bccec1e1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a631a32f-5078-40f5-bc1f-e69bccec1e1a""}\n2025-10-28 13:28:27.862 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b92d6914-f4b7-4e48-864b-bd5580fc5f3d] received connection request\n2025-10-28 13:28:27.914 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b92d6914-f4b7-4e48-864b-bd5580fc5f3d] socks forwarding established\n2025-10-28 13:28:27.946 [info] [command][a631a32f-5078-40f5-bc1f-e69bccec1e1a] Process exited with code 0\n2025-10-28 13:28:27.947 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b92d6914-f4b7-4e48-864b-bd5580fc5f3d] socks connection closed\n2025-10-28 13:28:27.947 [info] [command][a631a32f-5078-40f5-bc1f-e69bccec1e1a] Socket close event received\n2025-10-28 13:29:27.954 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:29:27.958 [info] [command][e05b468a-b266-4fe8-9e25-94168256d076] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e05b468a-b266-4fe8-9e25-94168256d076""}\n2025-10-28 13:29:27.959 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f3407190-e559-400d-baa9-805513b192a2] received connection request\n2025-10-28 13:29:27.999 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f3407190-e559-400d-baa9-805513b192a2] socks forwarding established\n2025-10-28 13:29:28.026 [info] [command][e05b468a-b266-4fe8-9e25-94168256d076] Process exited with code 0\n2025-10-28 13:29:28.026 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f3407190-e559-400d-baa9-805513b192a2] socks connection closed\n2025-10-28 13:29:28.027 [info] [command][e05b468a-b266-4fe8-9e25-94168256d076] Socket close event received\n2025-10-28 13:30:28.036 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:30:28.038 [info] [command][48f57efe-189a-42ca-b5ce-855ad799d980] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""48f57efe-189a-42ca-b5ce-855ad799d980""}\n2025-10-28 13:30:28.039 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9bf58540-1156-427b-9b36-5e4f95350d01] received connection request\n2025-10-28 13:30:28.062 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9bf58540-1156-427b-9b36-5e4f95350d01] socks forwarding established\n2025-10-28 13:30:28.089 [info] [command][48f57efe-189a-42ca-b5ce-855ad799d980] Process exited with code 0\n2025-10-28 13:30:28.089 [info] [command][48f57efe-189a-42ca-b5ce-855ad799d980] Socket close event received\n2025-10-28 13:30:28.089 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9bf58540-1156-427b-9b36-5e4f95350d01] socks connection closed\n2025-10-28 13:31:28.099 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:31:28.103 [info] [command][52dc2199-c071-4d91-8fc9-6f59583e0428] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""52dc2199-c071-4d91-8fc9-6f59583e0428""}\n2025-10-28 13:31:28.103 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][56db6df8-0d73-49e6-a960-cd887bb2e235] received connection request\n2025-10-28 13:31:28.147 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][56db6df8-0d73-49e6-a960-cd887bb2e235] socks forwarding established\n2025-10-28 13:31:28.174 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][56db6df8-0d73-49e6-a960-cd887bb2e235] socks connection closed\n2025-10-28 13:31:28.175 [info] [command][52dc2199-c071-4d91-8fc9-6f59583e0428] Process exited with code 0\n2025-10-28 13:31:28.175 [info] [command][52dc2199-c071-4d91-8fc9-6f59583e0428] Socket close event received\n2025-10-28 13:32:28.182 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:32:28.184 [info] [command][e1083358-555e-4443-a592-83eecdb21c98] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e1083358-555e-4443-a592-83eecdb21c98""}\n2025-10-28 13:32:28.184 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0bbc5ec4-3044-474a-a4ca-78faf47c1436] received connection request\n2025-10-28 13:32:28.210 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0bbc5ec4-3044-474a-a4ca-78faf47c1436] socks forwarding established\n2025-10-28 13:32:28.241 [info] [command][e1083358-555e-4443-a592-83eecdb21c98] Process exited with code 0\n2025-10-28 13:32:28.241 [info] [command][e1083358-555e-4443-a592-83eecdb21c98] Socket close event received\n2025-10-28 13:32:28.242 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0bbc5ec4-3044-474a-a4ca-78faf47c1436] socks connection closed\n2025-10-28 13:33:28.252 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:33:28.255 [info] [command][17914c77-07ec-40a1-90cc-22cbe5dee0b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""17914c77-07ec-40a1-90cc-22cbe5dee0b8""}\n2025-10-28 13:33:28.256 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c4d23c58-e2f8-4080-805e-83d6224adc89] received connection request\n2025-10-28 13:33:28.281 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c4d23c58-e2f8-4080-805e-83d6224adc89] socks forwarding established\n2025-10-28 13:33:28.310 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c4d23c58-e2f8-4080-805e-83d6224adc89] socks connection closed\n2025-10-28 13:33:28.310 [info] [command][17914c77-07ec-40a1-90cc-22cbe5dee0b8] Process exited with code 0\n2025-10-28 13:33:28.311 [info] [command][17914c77-07ec-40a1-90cc-22cbe5dee0b8] Socket close event received\n2025-10-28 13:34:28.312 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:34:28.318 [info] [command][8b5ca013-183f-4851-9b38-d4539ad352dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8b5ca013-183f-4851-9b38-d4539ad352dc""}\n2025-10-28 13:34:28.319 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][95d71cce-1b3d-4a91-abf2-f160f40aeb00] received connection request\n2025-10-28 13:34:28.346 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][95d71cce-1b3d-4a91-abf2-f160f40aeb00] socks forwarding established\n2025-10-28 13:34:28.373 [info] [command][8b5ca013-183f-4851-9b38-d4539ad352dc] Process exited with code 0\n2025-10-28 13:34:28.373 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][95d71cce-1b3d-4a91-abf2-f160f40aeb00] socks connection closed\n2025-10-28 13:34:28.373 [info] [command][8b5ca013-183f-4851-9b38-d4539ad352dc] Socket close event received\n2025-10-28 13:35:28.383 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:35:28.387 [info] [command][fe250fe1-6548-4a36-a325-5fd231ac9d50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fe250fe1-6548-4a36-a325-5fd231ac9d50""}\n2025-10-28 13:35:28.387 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][70132bad-086b-4fd6-acae-369765d7fbec] received connection request\n2025-10-28 13:35:28.414 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][70132bad-086b-4fd6-acae-369765d7fbec] socks forwarding established\n2025-10-28 13:35:28.472 [info] [command][fe250fe1-6548-4a36-a325-5fd231ac9d50] Process exited with code 0\n2025-10-28 13:35:28.473 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][70132bad-086b-4fd6-acae-369765d7fbec] socks connection closed\n2025-10-28 13:35:28.473 [info] [command][fe250fe1-6548-4a36-a325-5fd231ac9d50] Socket close event received\n2025-10-28 13:36:28.483 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:36:28.487 [info] [command][06df23eb-b76a-4d37-aa0a-d4143773df73] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""06df23eb-b76a-4d37-aa0a-d4143773df73""}\n2025-10-28 13:36:28.488 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8edabcd1-ab63-4028-8e34-ac9542ec0d79] received connection request\n2025-10-28 13:36:28.523 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8edabcd1-ab63-4028-8e34-ac9542ec0d79] socks forwarding established\n2025-10-28 13:36:28.559 [info] [command][06df23eb-b76a-4d37-aa0a-d4143773df73] Process exited with code 0\n2025-10-28 13:36:28.560 [info] [command][06df23eb-b76a-4d37-aa0a-d4143773df73] Socket close event received\n2025-10-28 13:36:28.568 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8edabcd1-ab63-4028-8e34-ac9542ec0d79] socks connection closed\n2025-10-28 13:37:28.593 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:37:28.596 [info] [command][b0bfff43-3cd4-4048-9544-1ec569039b33] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b0bfff43-3cd4-4048-9544-1ec569039b33""}\n2025-10-28 13:37:28.597 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][45250fbe-fabb-4195-87db-9068865de574] received connection request\n2025-10-28 13:37:28.623 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][45250fbe-fabb-4195-87db-9068865de574] socks forwarding established\n2025-10-28 13:37:28.660 [info] [command][b0bfff43-3cd4-4048-9544-1ec569039b33] Process exited with code 0\n2025-10-28 13:37:28.660 [info] [command][b0bfff43-3cd4-4048-9544-1ec569039b33] Socket close event received\n2025-10-28 13:37:28.661 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][45250fbe-fabb-4195-87db-9068865de574] socks connection closed\n2025-10-28 13:38:28.669 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:38:28.671 [info] [command][aea8daec-241a-4c34-902e-b768317175a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""aea8daec-241a-4c34-902e-b768317175a8""}\n2025-10-28 13:38:28.671 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7bb77f90-054a-444c-89ac-8d129788467e] received connection request\n2025-10-28 13:38:28.696 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7bb77f90-054a-444c-89ac-8d129788467e] socks forwarding established\n2025-10-28 13:38:28.722 [info] [command][aea8daec-241a-4c34-902e-b768317175a8] Process exited with code 0\n2025-10-28 13:38:28.722 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7bb77f90-054a-444c-89ac-8d129788467e] socks connection closed\n2025-10-28 13:38:28.722 [info] [command][aea8daec-241a-4c34-902e-b768317175a8] Socket close event received\n2025-10-28 13:39:28.726 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:39:28.728 [info] [command][4563e916-00b0-430a-b47a-0bbc25381a4d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4563e916-00b0-430a-b47a-0bbc25381a4d""}\n2025-10-28 13:39:28.729 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3696eff3-1985-439e-8c98-119f2105dda6] received connection request\n2025-10-28 13:39:28.759 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3696eff3-1985-439e-8c98-119f2105dda6] socks forwarding established\n2025-10-28 13:39:28.785 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3696eff3-1985-439e-8c98-119f2105dda6] socks connection closed\n2025-10-28 13:39:28.786 [info] [command][4563e916-00b0-430a-b47a-0bbc25381a4d] Process exited with code 0\n2025-10-28 13:39:28.786 [info] [command][4563e916-00b0-430a-b47a-0bbc25381a4d] Socket close event received\n2025-10-28 13:40:28.786 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:40:28.788 [info] [command][dcbd5a17-f5ca-4b2b-99a7-c469587a68de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dcbd5a17-f5ca-4b2b-99a7-c469587a68de""}\n2025-10-28 13:40:28.789 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][41f90b18-1811-48b1-b50d-a2bbfcea3a9c] received connection request\n2025-10-28 13:40:28.818 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][41f90b18-1811-48b1-b50d-a2bbfcea3a9c] socks forwarding established\n2025-10-28 13:40:28.851 [info] [command][dcbd5a17-f5ca-4b2b-99a7-c469587a68de] Process exited with code 0\n2025-10-28 13:40:28.851 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][41f90b18-1811-48b1-b50d-a2bbfcea3a9c] socks connection closed\n2025-10-28 13:40:28.851 [info] [command][dcbd5a17-f5ca-4b2b-99a7-c469587a68de] Socket close event received\n2025-10-28 13:41:28.853 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:41:28.856 [info] [command][d67a5a57-3abe-4e5e-9f4d-64deca0e7765] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d67a5a57-3abe-4e5e-9f4d-64deca0e7765""}\n2025-10-28 13:41:28.857 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a6fa1865-6234-4855-8148-e229a4d965bb] received connection request\n2025-10-28 13:41:28.883 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a6fa1865-6234-4855-8148-e229a4d965bb] socks forwarding established\n2025-10-28 13:41:28.913 [info] [command][d67a5a57-3abe-4e5e-9f4d-64deca0e7765] Process exited with code 0\n2025-10-28 13:41:28.913 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a6fa1865-6234-4855-8148-e229a4d965bb] socks connection closed\n2025-10-28 13:41:28.913 [info] [command][d67a5a57-3abe-4e5e-9f4d-64deca0e7765] Socket close event received\n2025-10-28 13:42:28.914 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:42:28.915 [info] [command][624b7d64-2be7-460c-b3ec-a8f6875c8615] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""624b7d64-2be7-460c-b3ec-a8f6875c8615""}\n2025-10-28 13:42:28.916 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][77003836-4bd1-4d09-8bd2-f590992dac15] received connection request\n2025-10-28 13:42:28.958 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][77003836-4bd1-4d09-8bd2-f590992dac15] socks forwarding established\n2025-10-28 13:42:29.070 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][77003836-4bd1-4d09-8bd2-f590992dac15] socks connection closed\n2025-10-28 13:42:29.070 [info] [command][624b7d64-2be7-460c-b3ec-a8f6875c8615] Process exited with code 0\n2025-10-28 13:42:29.070 [info] [command][624b7d64-2be7-460c-b3ec-a8f6875c8615] Socket close event received\n2025-10-28 13:43:29.073 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:43:29.075 [info] [command][e6a0b0bc-16bd-46c6-b544-d8e75bfd8eb3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e6a0b0bc-16bd-46c6-b544-d8e75bfd8eb3""}\n2025-10-28 13:43:29.075 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5a4f5b4a-095e-42f2-a8cd-c7650a43f1a3] received connection request\n2025-10-28 13:43:29.102 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5a4f5b4a-095e-42f2-a8cd-c7650a43f1a3] socks forwarding established\n2025-10-28 13:43:29.128 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5a4f5b4a-095e-42f2-a8cd-c7650a43f1a3] socks connection closed\n2025-10-28 13:43:29.128 [info] [command][e6a0b0bc-16bd-46c6-b544-d8e75bfd8eb3] Process exited with code 0\n2025-10-28 13:43:29.128 [info] [command][e6a0b0bc-16bd-46c6-b544-d8e75bfd8eb3] Socket close event received\n2025-10-28 13:44:29.131 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:44:29.134 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][194ff2ba-4f85-487a-b2cd-6e5c05069e9e] received connection request\n2025-10-28 13:44:29.134 [info] [command][bdd2f477-a99a-4c17-b762-e65331eaec12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bdd2f477-a99a-4c17-b762-e65331eaec12""}\n2025-10-28 13:44:29.164 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][194ff2ba-4f85-487a-b2cd-6e5c05069e9e] socks forwarding established\n2025-10-28 13:44:29.191 [info] [command][bdd2f477-a99a-4c17-b762-e65331eaec12] Process exited with code 0\n2025-10-28 13:44:29.191 [info] [command][bdd2f477-a99a-4c17-b762-e65331eaec12] Socket close event received\n2025-10-28 13:44:29.192 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][194ff2ba-4f85-487a-b2cd-6e5c05069e9e] socks connection closed\n2025-10-28 13:45:29.198 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:45:29.199 [info] [command][9e68c3eb-98e9-4e85-beec-0f2a0b4bfdd9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9e68c3eb-98e9-4e85-beec-0f2a0b4bfdd9""}\n2025-10-28 13:45:29.199 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][04e78136-9e25-428b-a802-e0c304e05e59] received connection request\n2025-10-28 13:45:29.227 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][04e78136-9e25-428b-a802-e0c304e05e59] socks forwarding established\n2025-10-28 13:45:29.258 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][04e78136-9e25-428b-a802-e0c304e05e59] socks connection closed\n2025-10-28 13:45:29.258 [info] [command][9e68c3eb-98e9-4e85-beec-0f2a0b4bfdd9] Process exited with code 0\n2025-10-28 13:45:29.258 [info] [command][9e68c3eb-98e9-4e85-beec-0f2a0b4bfdd9] Socket close event received\n2025-10-28 13:46:29.263 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:46:29.266 [info] [command][8e02e013-c5bb-43e7-a093-d5bf95c44a0d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8e02e013-c5bb-43e7-a093-d5bf95c44a0d""}\n2025-10-28 13:46:29.267 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1f43cda9-802c-4f09-bad3-0f39ebee8b0f] received connection request\n2025-10-28 13:46:29.299 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1f43cda9-802c-4f09-bad3-0f39ebee8b0f] socks forwarding established\n2025-10-28 13:46:29.330 [info] [command][8e02e013-c5bb-43e7-a093-d5bf95c44a0d] Process exited with code 0\n2025-10-28 13:46:29.330 [info] [command][8e02e013-c5bb-43e7-a093-d5bf95c44a0d] Socket close event received\n2025-10-28 13:46:29.330 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1f43cda9-802c-4f09-bad3-0f39ebee8b0f] socks connection closed\n2025-10-28 13:47:29.333 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:47:29.336 [info] [command][f109cdff-799b-4329-9d91-875879e013ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f109cdff-799b-4329-9d91-875879e013ed""}\n2025-10-28 13:47:29.336 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][eec12ed2-de92-4562-81cb-74a35a7cb094] received connection request\n2025-10-28 13:47:29.361 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][eec12ed2-de92-4562-81cb-74a35a7cb094] socks forwarding established\n2025-10-28 13:47:29.401 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][eec12ed2-de92-4562-81cb-74a35a7cb094] socks connection closed\n2025-10-28 13:47:29.401 [info] [command][f109cdff-799b-4329-9d91-875879e013ed] Process exited with code 0\n2025-10-28 13:47:29.401 [info] [command][f109cdff-799b-4329-9d91-875879e013ed] Socket close event received\n2025-10-28 13:48:29.407 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:48:29.409 [info] [command][43b0e2cc-840e-4dca-b844-2bc7a3a81437] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""43b0e2cc-840e-4dca-b844-2bc7a3a81437""}\n2025-10-28 13:48:29.410 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3fb32356-3a93-4abf-9ece-d963cb7f0d3a] received connection request\n2025-10-28 13:48:29.435 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3fb32356-3a93-4abf-9ece-d963cb7f0d3a] socks forwarding established\n2025-10-28 13:48:29.462 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3fb32356-3a93-4abf-9ece-d963cb7f0d3a] socks connection closed\n2025-10-28 13:48:29.462 [info] [command][43b0e2cc-840e-4dca-b844-2bc7a3a81437] Process exited with code 0\n2025-10-28 13:48:29.463 [info] [command][43b0e2cc-840e-4dca-b844-2bc7a3a81437] Socket close event received\n2025-10-28 13:49:29.466 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:49:29.468 [info] [command][23c96bfc-6844-4c7f-8a74-4d8e7f7b3dc2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""23c96bfc-6844-4c7f-8a74-4d8e7f7b3dc2""}\n2025-10-28 13:49:29.468 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4033b8f1-9880-4c3b-af69-b9912784164f] received connection request\n2025-10-28 13:49:29.551 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4033b8f1-9880-4c3b-af69-b9912784164f] socks forwarding established\n2025-10-28 13:49:29.613 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4033b8f1-9880-4c3b-af69-b9912784164f] socks connection closed\n2025-10-28 13:49:29.613 [info] [command][23c96bfc-6844-4c7f-8a74-4d8e7f7b3dc2] Process exited with code 0\n2025-10-28 13:49:29.613 [info] [command][23c96bfc-6844-4c7f-8a74-4d8e7f7b3dc2] Socket close event received\n2025-10-28 13:50:29.616 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:50:29.618 [info] [command][aa15c6a2-8455-4aa6-baab-591506af68c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""aa15c6a2-8455-4aa6-baab-591506af68c9""}\n2025-10-28 13:50:29.619 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0175a939-9cff-422d-8c78-83e85938f63b] received connection request\n2025-10-28 13:50:29.649 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0175a939-9cff-422d-8c78-83e85938f63b] socks forwarding established\n2025-10-28 13:50:29.678 [info] [command][aa15c6a2-8455-4aa6-baab-591506af68c9] Process exited with code 0\n2025-10-28 13:50:29.678 [info] [command][aa15c6a2-8455-4aa6-baab-591506af68c9] Socket close event received\n2025-10-28 13:50:29.679 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0175a939-9cff-422d-8c78-83e85938f63b] socks connection closed\n2025-10-28 13:51:29.688 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:51:29.690 [info] [command][cf84d82f-61ae-4086-bdea-a01d07714d6b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cf84d82f-61ae-4086-bdea-a01d07714d6b""}\n2025-10-28 13:51:29.690 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cacffa3d-d0a9-4808-b272-7ed87d11200d] received connection request\n2025-10-28 13:51:29.714 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cacffa3d-d0a9-4808-b272-7ed87d11200d] socks forwarding established\n2025-10-28 13:51:29.740 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cacffa3d-d0a9-4808-b272-7ed87d11200d] socks connection closed\n2025-10-28 13:51:29.741 [info] [command][cf84d82f-61ae-4086-bdea-a01d07714d6b] Process exited with code 0\n2025-10-28 13:51:29.741 [info] [command][cf84d82f-61ae-4086-bdea-a01d07714d6b] Socket close event received\n2025-10-28 13:52:29.752 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:52:29.753 [info] [command][d8d73bff-d290-4ac1-bd3a-e9f1133e0a34] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d8d73bff-d290-4ac1-bd3a-e9f1133e0a34""}\n2025-10-28 13:52:29.753 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2860c7c5-96a1-42b3-baac-2062349882ce] received connection request\n2025-10-28 13:52:29.787 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2860c7c5-96a1-42b3-baac-2062349882ce] socks forwarding established\n2025-10-28 13:52:29.817 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2860c7c5-96a1-42b3-baac-2062349882ce] socks connection closed\n2025-10-28 13:52:29.817 [info] [command][d8d73bff-d290-4ac1-bd3a-e9f1133e0a34] Process exited with code 0\n2025-10-28 13:52:29.817 [info] [command][d8d73bff-d290-4ac1-bd3a-e9f1133e0a34] Socket close event received\n2025-10-28 13:53:29.820 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:53:29.822 [info] [command][348a9464-b2a3-49bc-9056-bc9a929c3199] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""348a9464-b2a3-49bc-9056-bc9a929c3199""}\n2025-10-28 13:53:29.822 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7bc8a481-454e-4222-b971-a3f1e67e1c8c] received connection request\n2025-10-28 13:53:29.855 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7bc8a481-454e-4222-b971-a3f1e67e1c8c] socks forwarding established\n2025-10-28 13:53:29.883 [info] [command][348a9464-b2a3-49bc-9056-bc9a929c3199] Process exited with code 0\n2025-10-28 13:53:29.883 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7bc8a481-454e-4222-b971-a3f1e67e1c8c] socks connection closed\n2025-10-28 13:53:29.883 [info] [command][348a9464-b2a3-49bc-9056-bc9a929c3199] Socket close event received\n2025-10-28 13:54:29.890 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:54:29.892 [info] [command][49b91466-d513-4c2b-ada7-6a146ffdb57c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""49b91466-d513-4c2b-ada7-6a146ffdb57c""}\n2025-10-28 13:54:29.893 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9a15f53f-e7c0-42a5-a0f1-b27efe319658] received connection request\n2025-10-28 13:54:29.917 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9a15f53f-e7c0-42a5-a0f1-b27efe319658] socks forwarding established\n2025-10-28 13:54:29.943 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9a15f53f-e7c0-42a5-a0f1-b27efe319658] socks connection closed\n2025-10-28 13:54:29.944 [info] [command][49b91466-d513-4c2b-ada7-6a146ffdb57c] Process exited with code 0\n2025-10-28 13:54:29.944 [info] [command][49b91466-d513-4c2b-ada7-6a146ffdb57c] Socket close event received\n2025-10-28 13:55:29.953 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:55:29.955 [info] [command][d53a87fe-396d-4392-a1c7-d882e2963e33] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d53a87fe-396d-4392-a1c7-d882e2963e33""}\n2025-10-28 13:55:29.955 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][316a7c1d-e4ed-48da-9a5a-94b3de0cb16f] received connection request\n2025-10-28 13:55:29.990 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][316a7c1d-e4ed-48da-9a5a-94b3de0cb16f] socks forwarding established\n2025-10-28 13:55:30.045 [info] [command][d53a87fe-396d-4392-a1c7-d882e2963e33] Process exited with code 0\n2025-10-28 13:55:30.045 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][316a7c1d-e4ed-48da-9a5a-94b3de0cb16f] socks connection closed\n2025-10-28 13:55:30.046 [info] [command][d53a87fe-396d-4392-a1c7-d882e2963e33] Socket close event received\n2025-10-28 13:56:30.058 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:56:30.063 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ddd142ce-856e-4827-baba-2b16b7a1b0c8] received connection request\n2025-10-28 13:56:30.064 [info] [command][ee7148b2-3ec7-41fa-9400-c95b9cd202e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ee7148b2-3ec7-41fa-9400-c95b9cd202e9""}\n2025-10-28 13:56:30.099 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ddd142ce-856e-4827-baba-2b16b7a1b0c8] socks forwarding established\n2025-10-28 13:56:30.130 [info] [command][ee7148b2-3ec7-41fa-9400-c95b9cd202e9] Process exited with code 0\n2025-10-28 13:56:30.130 [info] [command][ee7148b2-3ec7-41fa-9400-c95b9cd202e9] Socket close event received\n2025-10-28 13:56:30.131 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ddd142ce-856e-4827-baba-2b16b7a1b0c8] socks connection closed\n2025-10-28 13:57:30.141 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:57:30.143 [info] [command][38da6ed4-bcfc-4eab-9c4c-053f64322f2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""38da6ed4-bcfc-4eab-9c4c-053f64322f2f""}\n2025-10-28 13:57:30.144 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][af8bf848-aa99-4f03-a22e-2b662124f7a4] received connection request\n2025-10-28 13:57:30.169 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][af8bf848-aa99-4f03-a22e-2b662124f7a4] socks forwarding established\n2025-10-28 13:57:30.200 [info] [command][38da6ed4-bcfc-4eab-9c4c-053f64322f2f] Process exited with code 0\n2025-10-28 13:57:30.201 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][af8bf848-aa99-4f03-a22e-2b662124f7a4] socks connection closed\n2025-10-28 13:57:30.201 [info] [command][38da6ed4-bcfc-4eab-9c4c-053f64322f2f] Socket close event received\n2025-10-28 13:58:30.212 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:58:30.214 [info] [command][00595ef7-3afc-4309-a1f1-d457604ecdfe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""00595ef7-3afc-4309-a1f1-d457604ecdfe""}\n2025-10-28 13:58:30.215 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9bb087ed-a688-4a72-b968-c338724ab01a] received connection request\n2025-10-28 13:58:30.240 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9bb087ed-a688-4a72-b968-c338724ab01a] socks forwarding established\n2025-10-28 13:58:30.281 [info] [command][00595ef7-3afc-4309-a1f1-d457604ecdfe] Process exited with code 0\n2025-10-28 13:58:30.282 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9bb087ed-a688-4a72-b968-c338724ab01a] socks connection closed\n2025-10-28 13:58:30.282 [info] [command][00595ef7-3afc-4309-a1f1-d457604ecdfe] Socket close event received\n2025-10-28 13:59:30.287 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 13:59:30.290 [info] [command][d314b17f-3eb4-4606-959f-4edc170fabae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d314b17f-3eb4-4606-959f-4edc170fabae""}\n2025-10-28 13:59:30.290 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c8a60e0c-eba9-47d0-b9c0-fbd3673b53af] received connection request\n2025-10-28 13:59:30.315 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c8a60e0c-eba9-47d0-b9c0-fbd3673b53af] socks forwarding established\n2025-10-28 13:59:30.342 [info] [command][d314b17f-3eb4-4606-959f-4edc170fabae] Process exited with code 0\n2025-10-28 13:59:30.342 [info] [command][d314b17f-3eb4-4606-959f-4edc170fabae] Socket close event received\n2025-10-28 13:59:30.343 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c8a60e0c-eba9-47d0-b9c0-fbd3673b53af] socks connection closed\n2025-10-28 14:00:30.352 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:00:30.355 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d4c982ba-234c-4517-807e-f7505508b89c] received connection request\n2025-10-28 14:00:30.356 [info] [command][0495484c-ff32-491a-9ce1-16d6b677549b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0495484c-ff32-491a-9ce1-16d6b677549b""}\n2025-10-28 14:00:30.379 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d4c982ba-234c-4517-807e-f7505508b89c] socks forwarding established\n2025-10-28 14:00:30.407 [info] [command][0495484c-ff32-491a-9ce1-16d6b677549b] Process exited with code 0\n2025-10-28 14:00:30.407 [info] [command][0495484c-ff32-491a-9ce1-16d6b677549b] Socket close event received\n2025-10-28 14:00:30.408 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d4c982ba-234c-4517-807e-f7505508b89c] socks connection closed\n2025-10-28 14:01:30.409 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:01:30.412 [info] [command][22e3d539-f7dc-4069-8628-fba216eddc9e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""22e3d539-f7dc-4069-8628-fba216eddc9e""}\n2025-10-28 14:01:30.413 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8ebba08e-1e2f-48c6-8d1a-47790bc224aa] received connection request\n2025-10-28 14:01:30.437 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8ebba08e-1e2f-48c6-8d1a-47790bc224aa] socks forwarding established\n2025-10-28 14:01:30.464 [info] [command][22e3d539-f7dc-4069-8628-fba216eddc9e] Process exited with code 0\n2025-10-28 14:01:30.465 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8ebba08e-1e2f-48c6-8d1a-47790bc224aa] socks connection closed\n2025-10-28 14:01:30.465 [info] [command][22e3d539-f7dc-4069-8628-fba216eddc9e] Socket close event received\n2025-10-28 14:02:30.475 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:02:30.478 [info] [command][9de95ed0-615d-4e31-b0d4-b2671f81e0f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9de95ed0-615d-4e31-b0d4-b2671f81e0f9""}\n2025-10-28 14:02:30.479 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ac1fadfd-691b-4971-b216-6def29585e3f] received connection request\n2025-10-28 14:02:30.503 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ac1fadfd-691b-4971-b216-6def29585e3f] socks forwarding established\n2025-10-28 14:02:30.537 [info] [command][9de95ed0-615d-4e31-b0d4-b2671f81e0f9] Process exited with code 0\n2025-10-28 14:02:30.537 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ac1fadfd-691b-4971-b216-6def29585e3f] socks connection closed\n2025-10-28 14:02:30.537 [info] [command][9de95ed0-615d-4e31-b0d4-b2671f81e0f9] Socket close event received\n2025-10-28 14:03:30.547 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:03:30.550 [info] [command][9d2a4b01-3e9c-449a-bc23-005a59b89b0c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9d2a4b01-3e9c-449a-bc23-005a59b89b0c""}\n2025-10-28 14:03:30.550 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ae668105-b395-4c7d-88dd-e18c163c3528] received connection request\n2025-10-28 14:03:30.577 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ae668105-b395-4c7d-88dd-e18c163c3528] socks forwarding established\n2025-10-28 14:03:30.603 [info] [command][9d2a4b01-3e9c-449a-bc23-005a59b89b0c] Process exited with code 0\n2025-10-28 14:03:30.603 [info] [command][9d2a4b01-3e9c-449a-bc23-005a59b89b0c] Socket close event received\n2025-10-28 14:03:30.604 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ae668105-b395-4c7d-88dd-e18c163c3528] socks connection closed\n2025-10-28 14:04:30.610 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:04:30.614 [info] [command][b473254c-fe81-4040-9e05-16cff17ce6a1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b473254c-fe81-4040-9e05-16cff17ce6a1""}\n2025-10-28 14:04:30.614 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][18df242b-2de9-4544-80d4-13cd2a3bd518] received connection request\n2025-10-28 14:04:30.650 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][18df242b-2de9-4544-80d4-13cd2a3bd518] socks forwarding established\n2025-10-28 14:04:30.679 [info] [command][b473254c-fe81-4040-9e05-16cff17ce6a1] Process exited with code 0\n2025-10-28 14:04:30.680 [info] [command][b473254c-fe81-4040-9e05-16cff17ce6a1] Socket close event received\n2025-10-28 14:04:30.680 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][18df242b-2de9-4544-80d4-13cd2a3bd518] socks connection closed\n2025-10-28 14:05:30.689 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:05:30.692 [info] [command][5796784b-e951-4c54-b84d-8e1691067b44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5796784b-e951-4c54-b84d-8e1691067b44""}\n2025-10-28 14:05:30.693 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][aea967c3-02e7-43ca-9fdf-e1e83f1d7017] received connection request\n2025-10-28 14:05:30.717 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][aea967c3-02e7-43ca-9fdf-e1e83f1d7017] socks forwarding established\n2025-10-28 14:05:30.749 [info] [command][5796784b-e951-4c54-b84d-8e1691067b44] Process exited with code 0\n2025-10-28 14:05:30.750 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][aea967c3-02e7-43ca-9fdf-e1e83f1d7017] socks connection closed\n2025-10-28 14:05:30.750 [info] [command][5796784b-e951-4c54-b84d-8e1691067b44] Socket close event received\n2025-10-28 14:06:30.752 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:06:30.755 [info] [command][5d3fc920-fed9-428f-a6f1-5aa48f0b86ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5d3fc920-fed9-428f-a6f1-5aa48f0b86ea""}\n2025-10-28 14:06:30.756 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b58b0e6f-5c26-4f65-94aa-b19393ee777d] received connection request\n2025-10-28 14:06:30.781 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b58b0e6f-5c26-4f65-94aa-b19393ee777d] socks forwarding established\n2025-10-28 14:06:30.808 [info] [command][5d3fc920-fed9-428f-a6f1-5aa48f0b86ea] Process exited with code 0\n2025-10-28 14:06:30.808 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b58b0e6f-5c26-4f65-94aa-b19393ee777d] socks connection closed\n2025-10-28 14:06:30.809 [info] [command][5d3fc920-fed9-428f-a6f1-5aa48f0b86ea] Socket close event received\n2025-10-28 14:07:30.820 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:07:30.824 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cf9d977d-820c-42b3-8c5d-c3ed03bea614] received connection request\n2025-10-28 14:07:30.824 [info] [command][e6652456-4325-4dd2-80f3-ef0f3c75f9c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e6652456-4325-4dd2-80f3-ef0f3c75f9c4""}\n2025-10-28 14:07:30.848 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf9d977d-820c-42b3-8c5d-c3ed03bea614] socks forwarding established\n2025-10-28 14:07:30.876 [info] [command][e6652456-4325-4dd2-80f3-ef0f3c75f9c4] Process exited with code 0\n2025-10-28 14:07:30.876 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf9d977d-820c-42b3-8c5d-c3ed03bea614] socks connection closed\n2025-10-28 14:07:30.876 [info] [command][e6652456-4325-4dd2-80f3-ef0f3c75f9c4] Socket close event received\n2025-10-28 14:08:30.878 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:08:30.880 [info] [command][0245fcca-411f-4281-acf8-b4173eea2b50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0245fcca-411f-4281-acf8-b4173eea2b50""}\n2025-10-28 14:08:30.881 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ae4de2d8-4665-480a-adae-4afba3524a72] received connection request\n2025-10-28 14:08:30.910 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ae4de2d8-4665-480a-adae-4afba3524a72] socks forwarding established\n2025-10-28 14:08:30.935 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ae4de2d8-4665-480a-adae-4afba3524a72] socks connection closed\n2025-10-28 14:08:30.935 [info] [command][0245fcca-411f-4281-acf8-b4173eea2b50] Process exited with code 0\n2025-10-28 14:08:30.935 [info] [command][0245fcca-411f-4281-acf8-b4173eea2b50] Socket close event received\n2025-10-28 14:09:30.940 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:09:30.942 [info] [command][5d160194-1520-4ed0-96a0-f7a7d3ac14f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5d160194-1520-4ed0-96a0-f7a7d3ac14f6""}\n2025-10-28 14:09:30.942 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d7f25f16-5358-446b-bf23-7a2b54f3c467] received connection request\n2025-10-28 14:09:30.965 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d7f25f16-5358-446b-bf23-7a2b54f3c467] socks forwarding established\n2025-10-28 14:09:30.991 [info] [command][5d160194-1520-4ed0-96a0-f7a7d3ac14f6] Process exited with code 0\n2025-10-28 14:09:30.992 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d7f25f16-5358-446b-bf23-7a2b54f3c467] socks connection closed\n2025-10-28 14:09:30.992 [info] [command][5d160194-1520-4ed0-96a0-f7a7d3ac14f6] Socket close event received\n2025-10-28 14:10:30.996 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:10:30.998 [info] [command][93013117-36b0-4b5d-9085-577c51c67f75] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""93013117-36b0-4b5d-9085-577c51c67f75""}\n2025-10-28 14:10:30.999 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a7fb025e-dc03-44bc-9bf3-fdcbad9f3c97] received connection request\n2025-10-28 14:10:31.030 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a7fb025e-dc03-44bc-9bf3-fdcbad9f3c97] socks forwarding established\n2025-10-28 14:10:31.056 [info] [command][93013117-36b0-4b5d-9085-577c51c67f75] Process exited with code 0\n2025-10-28 14:10:31.056 [info] [command][93013117-36b0-4b5d-9085-577c51c67f75] Socket close event received\n2025-10-28 14:10:31.057 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a7fb025e-dc03-44bc-9bf3-fdcbad9f3c97] socks connection closed\n2025-10-28 14:11:31.060 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:11:31.062 [info] [command][f9ba82a6-e4f9-4314-adba-15e2c7edecb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f9ba82a6-e4f9-4314-adba-15e2c7edecb5""}\n2025-10-28 14:11:31.062 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7dd2e5c2-c437-46a4-a776-165ba326f5a4] received connection request\n2025-10-28 14:11:31.088 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7dd2e5c2-c437-46a4-a776-165ba326f5a4] socks forwarding established\n2025-10-28 14:11:31.118 [info] [command][f9ba82a6-e4f9-4314-adba-15e2c7edecb5] Process exited with code 0\n2025-10-28 14:11:31.118 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7dd2e5c2-c437-46a4-a776-165ba326f5a4] socks connection closed\n2025-10-28 14:11:31.119 [info] [command][f9ba82a6-e4f9-4314-adba-15e2c7edecb5] Socket close event received\n2025-10-28 14:12:31.122 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:12:31.125 [info] [command][2afd9ca1-d13e-471c-b02e-9a26eb773714] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2afd9ca1-d13e-471c-b02e-9a26eb773714""}\n2025-10-28 14:12:31.125 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3750fd81-08fa-495c-b5a4-4fd0344d402c] received connection request\n2025-10-28 14:12:31.159 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3750fd81-08fa-495c-b5a4-4fd0344d402c] socks forwarding established\n2025-10-28 14:12:31.187 [info] [command][2afd9ca1-d13e-471c-b02e-9a26eb773714] Process exited with code 0\n2025-10-28 14:12:31.188 [info] [command][2afd9ca1-d13e-471c-b02e-9a26eb773714] Socket close event received\n2025-10-28 14:12:31.190 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3750fd81-08fa-495c-b5a4-4fd0344d402c] socks connection closed\n2025-10-28 14:13:31.191 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:13:31.194 [info] [command][07706f02-0732-47a7-b8f5-6adfce6bce97] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""07706f02-0732-47a7-b8f5-6adfce6bce97""}\n2025-10-28 14:13:31.195 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][23039b67-3b5f-4363-9a09-571d7e15bda2] received connection request\n2025-10-28 14:13:31.218 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][23039b67-3b5f-4363-9a09-571d7e15bda2] socks forwarding established\n2025-10-28 14:13:31.244 [info] [command][07706f02-0732-47a7-b8f5-6adfce6bce97] Process exited with code 0\n2025-10-28 14:13:31.244 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][23039b67-3b5f-4363-9a09-571d7e15bda2] socks connection closed\n2025-10-28 14:13:31.244 [info] [command][07706f02-0732-47a7-b8f5-6adfce6bce97] Socket close event received\n2025-10-28 14:14:31.250 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:14:31.252 [info] [command][44cb092f-2e76-4040-a557-53892171052b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""44cb092f-2e76-4040-a557-53892171052b""}\n2025-10-28 14:14:31.253 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a6746058-b0b9-4fc1-b9af-95e0c491072b] received connection request\n2025-10-28 14:14:31.277 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a6746058-b0b9-4fc1-b9af-95e0c491072b] socks forwarding established\n2025-10-28 14:14:31.303 [info] [command][44cb092f-2e76-4040-a557-53892171052b] Process exited with code 0\n2025-10-28 14:14:31.303 [info] [command][44cb092f-2e76-4040-a557-53892171052b] Socket close event received\n2025-10-28 14:14:31.304 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a6746058-b0b9-4fc1-b9af-95e0c491072b] socks connection closed\n2025-10-28 14:15:31.307 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:15:31.309 [info] [command][4bccf57e-2335-459f-baeb-8b4b95bf6be7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4bccf57e-2335-459f-baeb-8b4b95bf6be7""}\n2025-10-28 14:15:31.310 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6b367fed-79a2-4185-8755-69361505dfd7] received connection request\n2025-10-28 14:15:31.335 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6b367fed-79a2-4185-8755-69361505dfd7] socks forwarding established\n2025-10-28 14:15:31.361 [info] [command][4bccf57e-2335-459f-baeb-8b4b95bf6be7] Process exited with code 0\n2025-10-28 14:15:31.361 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6b367fed-79a2-4185-8755-69361505dfd7] socks connection closed\n2025-10-28 14:15:31.362 [info] [command][4bccf57e-2335-459f-baeb-8b4b95bf6be7] Socket close event received\n2025-10-28 14:16:29.905 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][a35d77f8-ef36-49c0-9810-00e764053fd0] received connection request\n2025-10-28 14:16:29.905 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][5b9259b0-8b2a-4e11-98a6-89f46a32e0d5] received connection request\n2025-10-28 14:16:29.961 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][a35d77f8-ef36-49c0-9810-00e764053fd0] socks forwarding established\n2025-10-28 14:16:29.961 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][5b9259b0-8b2a-4e11-98a6-89f46a32e0d5] socks forwarding established\n2025-10-28 14:16:31.363 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:16:31.364 [info] [command][80af376d-35bd-496e-960d-fabb6b102b4d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""80af376d-35bd-496e-960d-fabb6b102b4d""}\n2025-10-28 14:16:31.364 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f01adabe-b025-4fa9-956c-26f4a49e22be] received connection request\n2025-10-28 14:16:31.393 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f01adabe-b025-4fa9-956c-26f4a49e22be] socks forwarding established\n2025-10-28 14:16:31.418 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f01adabe-b025-4fa9-956c-26f4a49e22be] socks connection closed\n2025-10-28 14:16:31.418 [info] [command][80af376d-35bd-496e-960d-fabb6b102b4d] Process exited with code 0\n2025-10-28 14:16:31.418 [info] [command][80af376d-35bd-496e-960d-fabb6b102b4d] Socket close event received\n2025-10-28 14:16:35.990 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][a35d77f8-ef36-49c0-9810-00e764053fd0] socks connection closed\n2025-10-28 14:16:35.992 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][5b9259b0-8b2a-4e11-98a6-89f46a32e0d5] socks connection closed\n2025-10-28 14:17:31.426 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:17:31.428 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][65247219-806c-4e78-955d-d37f7fbeb3b4] received connection request\n2025-10-28 14:17:31.428 [info] [command][e839f237-3cb0-4e65-b21d-03f06fbcd9db] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e839f237-3cb0-4e65-b21d-03f06fbcd9db""}\n2025-10-28 14:17:31.475 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][65247219-806c-4e78-955d-d37f7fbeb3b4] socks forwarding established\n2025-10-28 14:17:31.509 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][65247219-806c-4e78-955d-d37f7fbeb3b4] socks connection closed\n2025-10-28 14:17:31.510 [info] [command][e839f237-3cb0-4e65-b21d-03f06fbcd9db] Process exited with code 0\n2025-10-28 14:17:31.510 [info] [command][e839f237-3cb0-4e65-b21d-03f06fbcd9db] Socket close event received\n2025-10-28 14:18:31.512 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:18:31.514 [info] [command][948c6b82-423e-4412-8a61-3bba6acb89e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""948c6b82-423e-4412-8a61-3bba6acb89e5""}\n2025-10-28 14:18:31.515 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4d3a31e6-1ce4-447c-aee3-2013f1950f08] received connection request\n2025-10-28 14:18:31.541 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4d3a31e6-1ce4-447c-aee3-2013f1950f08] socks forwarding established\n2025-10-28 14:18:31.577 [info] [command][948c6b82-423e-4412-8a61-3bba6acb89e5] Process exited with code 0\n2025-10-28 14:18:31.577 [info] [command][948c6b82-423e-4412-8a61-3bba6acb89e5] Socket close event received\n2025-10-28 14:18:31.579 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4d3a31e6-1ce4-447c-aee3-2013f1950f08] socks connection closed\n2025-10-28 14:19:31.583 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:19:31.585 [info] [command][2f37e4ab-10a7-400d-be8b-0ae91ea24a40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2f37e4ab-10a7-400d-be8b-0ae91ea24a40""}\n2025-10-28 14:19:31.586 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0081ccdd-0861-4f93-9971-597e758450ab] received connection request\n2025-10-28 14:19:31.609 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0081ccdd-0861-4f93-9971-597e758450ab] socks forwarding established\n2025-10-28 14:19:31.635 [info] [command][2f37e4ab-10a7-400d-be8b-0ae91ea24a40] Process exited with code 0\n2025-10-28 14:19:31.635 [info] [command][2f37e4ab-10a7-400d-be8b-0ae91ea24a40] Socket close event received\n2025-10-28 14:19:31.635 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0081ccdd-0861-4f93-9971-597e758450ab] socks connection closed\n2025-10-28 14:20:31.636 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:20:31.638 [info] [command][1eeefae3-66d7-469e-9a16-c4a763af3324] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1eeefae3-66d7-469e-9a16-c4a763af3324""}\n2025-10-28 14:20:31.639 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6ca02814-0cf3-46d3-ba51-38de24bccadb] received connection request\n2025-10-28 14:20:31.673 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6ca02814-0cf3-46d3-ba51-38de24bccadb] socks forwarding established\n2025-10-28 14:20:31.701 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6ca02814-0cf3-46d3-ba51-38de24bccadb] socks connection closed\n2025-10-28 14:20:31.701 [info] [command][1eeefae3-66d7-469e-9a16-c4a763af3324] Process exited with code 0\n2025-10-28 14:20:31.702 [info] [command][1eeefae3-66d7-469e-9a16-c4a763af3324] Socket close event received\n2025-10-28 14:21:31.707 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:21:31.710 [info] [command][08119e31-c48e-472d-9ecb-620c53b1c1cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""08119e31-c48e-472d-9ecb-620c53b1c1cb""}\n2025-10-28 14:21:31.711 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][55f20b73-f65d-4cc9-be54-23f4f3184300] received connection request\n2025-10-28 14:21:31.739 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][55f20b73-f65d-4cc9-be54-23f4f3184300] socks forwarding established\n2025-10-28 14:21:31.767 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][55f20b73-f65d-4cc9-be54-23f4f3184300] socks connection closed\n2025-10-28 14:21:31.768 [info] [command][08119e31-c48e-472d-9ecb-620c53b1c1cb] Process exited with code 0\n2025-10-28 14:21:31.768 [info] [command][08119e31-c48e-472d-9ecb-620c53b1c1cb] Socket close event received\n2025-10-28 14:22:31.774 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:22:31.777 [info] [command][d5244793-0c3f-4046-8481-731e1bca2aff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d5244793-0c3f-4046-8481-731e1bca2aff""}\n2025-10-28 14:22:31.778 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f257760a-796b-4b65-a89e-fae0bebc75cb] received connection request\n2025-10-28 14:22:31.803 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f257760a-796b-4b65-a89e-fae0bebc75cb] socks forwarding established\n2025-10-28 14:22:31.842 [info] [command][d5244793-0c3f-4046-8481-731e1bca2aff] Process exited with code 0\n2025-10-28 14:22:31.843 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f257760a-796b-4b65-a89e-fae0bebc75cb] socks connection closed\n2025-10-28 14:22:31.843 [info] [command][d5244793-0c3f-4046-8481-731e1bca2aff] Socket close event received\n2025-10-28 14:23:31.843 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:23:31.846 [info] [command][26f772c8-386e-49c8-90ad-2cf9f8f70eb1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""26f772c8-386e-49c8-90ad-2cf9f8f70eb1""}\n2025-10-28 14:23:31.846 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][26c84abe-be30-47a4-b142-eaf53e45b36c] received connection request\n2025-10-28 14:23:31.872 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][26c84abe-be30-47a4-b142-eaf53e45b36c] socks forwarding established\n2025-10-28 14:23:31.909 [info] [command][26f772c8-386e-49c8-90ad-2cf9f8f70eb1] Process exited with code 0\n2025-10-28 14:23:31.909 [info] [command][26f772c8-386e-49c8-90ad-2cf9f8f70eb1] Socket close event received\n2025-10-28 14:23:31.913 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][26c84abe-be30-47a4-b142-eaf53e45b36c] socks connection closed\n2025-10-28 14:24:31.915 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:24:31.917 [info] [command][45da0d2d-bf5e-4a94-80cb-53a5820c1355] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""45da0d2d-bf5e-4a94-80cb-53a5820c1355""}\n2025-10-28 14:24:31.918 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a086db2b-3b19-4f60-9977-e55bc6c11c3d] received connection request\n2025-10-28 14:24:31.950 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a086db2b-3b19-4f60-9977-e55bc6c11c3d] socks forwarding established\n2025-10-28 14:24:31.976 [info] [command][45da0d2d-bf5e-4a94-80cb-53a5820c1355] Process exited with code 0\n2025-10-28 14:24:31.976 [info] [command][45da0d2d-bf5e-4a94-80cb-53a5820c1355] Socket close event received\n2025-10-28 14:24:31.977 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a086db2b-3b19-4f60-9977-e55bc6c11c3d] socks connection closed\n2025-10-28 14:25:31.982 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:25:31.985 [info] [command][2a46f1d1-f4cb-484d-88ec-5a56e4b576ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2a46f1d1-f4cb-484d-88ec-5a56e4b576ed""}\n2025-10-28 14:25:31.986 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][56e024b2-71e2-4c3f-8a1e-80c893d79b42] received connection request\n2025-10-28 14:25:32.010 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][56e024b2-71e2-4c3f-8a1e-80c893d79b42] socks forwarding established\n2025-10-28 14:25:32.037 [info] [command][2a46f1d1-f4cb-484d-88ec-5a56e4b576ed] Process exited with code 0\n2025-10-28 14:25:32.037 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][56e024b2-71e2-4c3f-8a1e-80c893d79b42] socks connection closed\n2025-10-28 14:25:32.037 [info] [command][2a46f1d1-f4cb-484d-88ec-5a56e4b576ed] Socket close event received\n2025-10-28 14:26:32.029 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:26:32.031 [info] [command][b54af158-a3e8-4f9d-a3d0-d7741209466b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b54af158-a3e8-4f9d-a3d0-d7741209466b""}\n2025-10-28 14:26:32.032 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8e02afb6-eed8-4979-b184-62ecce2f71a3] received connection request\n2025-10-28 14:26:32.182 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8e02afb6-eed8-4979-b184-62ecce2f71a3] socks forwarding established\n2025-10-28 14:26:32.242 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8e02afb6-eed8-4979-b184-62ecce2f71a3] socks connection closed\n2025-10-28 14:26:32.242 [info] [command][b54af158-a3e8-4f9d-a3d0-d7741209466b] Process exited with code 0\n2025-10-28 14:26:32.243 [info] [command][b54af158-a3e8-4f9d-a3d0-d7741209466b] Socket close event received\n2025-10-28 14:27:32.240 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:27:32.243 [info] [command][4ba7e18e-fee0-4d3c-821b-b1de793d4440] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4ba7e18e-fee0-4d3c-821b-b1de793d4440""}\n2025-10-28 14:27:32.243 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0158b13a-4357-4302-b105-3fdff340938e] received connection request\n2025-10-28 14:27:32.284 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0158b13a-4357-4302-b105-3fdff340938e] socks forwarding established\n2025-10-28 14:27:32.314 [info] [command][4ba7e18e-fee0-4d3c-821b-b1de793d4440] Process exited with code 0\n2025-10-28 14:27:32.314 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0158b13a-4357-4302-b105-3fdff340938e] socks connection closed\n2025-10-28 14:27:32.314 [info] [command][4ba7e18e-fee0-4d3c-821b-b1de793d4440] Socket close event received\n2025-10-28 14:28:32.319 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:28:32.320 [info] [command][fa750877-3170-463f-9431-4d7deb678a8e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fa750877-3170-463f-9431-4d7deb678a8e""}\n2025-10-28 14:28:32.320 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][98e42a5f-4879-4852-be43-66df9dda9060] received connection request\n2025-10-28 14:28:32.355 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][98e42a5f-4879-4852-be43-66df9dda9060] socks forwarding established\n2025-10-28 14:28:32.382 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][98e42a5f-4879-4852-be43-66df9dda9060] socks connection closed\n2025-10-28 14:28:32.382 [info] [command][fa750877-3170-463f-9431-4d7deb678a8e] Process exited with code 0\n2025-10-28 14:28:32.382 [info] [command][fa750877-3170-463f-9431-4d7deb678a8e] Socket close event received\n2025-10-28 14:29:32.385 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:29:32.388 [info] [command][74f939bf-a29e-418d-918b-9055d25aa578] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""74f939bf-a29e-418d-918b-9055d25aa578""}\n2025-10-28 14:29:32.388 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1db66f2a-3cbb-424e-b4c6-1dbff965e9f8] received connection request\n2025-10-28 14:29:32.438 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1db66f2a-3cbb-424e-b4c6-1dbff965e9f8] socks forwarding established\n2025-10-28 14:29:32.505 [info] [command][74f939bf-a29e-418d-918b-9055d25aa578] Process exited with code 0\n2025-10-28 14:29:32.505 [info] [command][74f939bf-a29e-418d-918b-9055d25aa578] Socket close event received\n2025-10-28 14:29:32.505 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1db66f2a-3cbb-424e-b4c6-1dbff965e9f8] socks connection closed\n2025-10-28 14:30:32.510 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:30:32.512 [info] [command][7429dec6-7206-41db-b271-83ea7120bf1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7429dec6-7206-41db-b271-83ea7120bf1e""}\n2025-10-28 14:30:32.512 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][598c326d-4152-44b7-b49e-758772873ee7] received connection request\n2025-10-28 14:30:32.594 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][598c326d-4152-44b7-b49e-758772873ee7] socks forwarding established\n2025-10-28 14:30:32.667 [info] [command][7429dec6-7206-41db-b271-83ea7120bf1e] Process exited with code 0\n2025-10-28 14:30:32.668 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][598c326d-4152-44b7-b49e-758772873ee7] socks connection closed\n2025-10-28 14:30:32.668 [info] [command][7429dec6-7206-41db-b271-83ea7120bf1e] Socket close event received\n2025-10-28 14:31:32.667 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:31:32.670 [info] [command][38437919-eeb8-4ee6-a09c-cb8223f2b831] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""38437919-eeb8-4ee6-a09c-cb8223f2b831""}\n2025-10-28 14:31:32.671 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c42dc6ca-3cbe-422a-9be5-008a18ac49d3] received connection request\n2025-10-28 14:31:32.732 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c42dc6ca-3cbe-422a-9be5-008a18ac49d3] socks forwarding established\n2025-10-28 14:31:32.903 [info] [command][38437919-eeb8-4ee6-a09c-cb8223f2b831] Process exited with code 0\n2025-10-28 14:31:32.903 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c42dc6ca-3cbe-422a-9be5-008a18ac49d3] socks connection closed\n2025-10-28 14:31:32.904 [info] [command][38437919-eeb8-4ee6-a09c-cb8223f2b831] Socket close event received\n2025-10-28 14:32:32.910 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:32:32.912 [info] [command][5feac2b2-1702-4d55-b165-6c17cca0bb21] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5feac2b2-1702-4d55-b165-6c17cca0bb21""}\n2025-10-28 14:32:32.913 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f7bdc5a4-fa98-4be6-8200-a8870894ef8a] received connection request\n2025-10-28 14:32:32.943 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f7bdc5a4-fa98-4be6-8200-a8870894ef8a] socks forwarding established\n2025-10-28 14:32:33.000 [info] [command][5feac2b2-1702-4d55-b165-6c17cca0bb21] Process exited with code 0\n2025-10-28 14:32:33.001 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f7bdc5a4-fa98-4be6-8200-a8870894ef8a] socks connection closed\n2025-10-28 14:32:33.001 [info] [command][5feac2b2-1702-4d55-b165-6c17cca0bb21] Socket close event received\n2025-10-28 14:33:33.004 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:33:33.008 [info] [command][49ff9d3f-3f79-4e0e-a30f-72f6997ca5ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""49ff9d3f-3f79-4e0e-a30f-72f6997ca5ca""}\n2025-10-28 14:33:33.009 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][12080b61-37d6-4f9f-b891-a6a1aebef61f] received connection request\n2025-10-28 14:33:33.053 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][12080b61-37d6-4f9f-b891-a6a1aebef61f] socks forwarding established\n2025-10-28 14:33:33.093 [info] [command][49ff9d3f-3f79-4e0e-a30f-72f6997ca5ca] Process exited with code 0\n2025-10-28 14:33:33.094 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][12080b61-37d6-4f9f-b891-a6a1aebef61f] socks connection closed\n2025-10-28 14:33:33.095 [info] [command][49ff9d3f-3f79-4e0e-a30f-72f6997ca5ca] Socket close event received\n2025-10-28 14:34:33.098 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:34:33.101 [info] [command][a7c27ef4-78d8-430a-9a6b-d931e50f293f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a7c27ef4-78d8-430a-9a6b-d931e50f293f""}\n2025-10-28 14:34:33.102 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1eb2271a-b148-495e-9307-b1eb74882071] received connection request\n2025-10-28 14:34:33.183 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1eb2271a-b148-495e-9307-b1eb74882071] socks forwarding established\n2025-10-28 14:34:33.303 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1eb2271a-b148-495e-9307-b1eb74882071] socks connection closed\n2025-10-28 14:34:33.304 [info] [command][a7c27ef4-78d8-430a-9a6b-d931e50f293f] Process exited with code 0\n2025-10-28 14:34:33.304 [info] [command][a7c27ef4-78d8-430a-9a6b-d931e50f293f] Socket close event received\n2025-10-28 14:35:33.308 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:35:33.311 [info] [command][ac39417a-0c87-42b4-b316-13972c920bb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ac39417a-0c87-42b4-b316-13972c920bb5""}\n2025-10-28 14:35:33.311 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6c96040b-999f-438e-ae07-66ef23f97825] received connection request\n2025-10-28 14:35:33.340 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6c96040b-999f-438e-ae07-66ef23f97825] socks forwarding established\n2025-10-28 14:35:33.377 [info] [command][ac39417a-0c87-42b4-b316-13972c920bb5] Process exited with code 0\n2025-10-28 14:35:33.377 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6c96040b-999f-438e-ae07-66ef23f97825] socks connection closed\n2025-10-28 14:35:33.378 [info] [command][ac39417a-0c87-42b4-b316-13972c920bb5] Socket close event received\n2025-10-28 14:36:33.378 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:36:33.380 [info] [command][5f9cb05e-a894-48c6-8d95-084ad2b6db86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5f9cb05e-a894-48c6-8d95-084ad2b6db86""}\n2025-10-28 14:36:33.380 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6558296e-a940-49f8-b965-2b9967682ed9] received connection request\n2025-10-28 14:36:33.427 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6558296e-a940-49f8-b965-2b9967682ed9] socks forwarding established\n2025-10-28 14:36:33.455 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6558296e-a940-49f8-b965-2b9967682ed9] socks connection closed\n2025-10-28 14:36:33.455 [info] [command][5f9cb05e-a894-48c6-8d95-084ad2b6db86] Process exited with code 0\n2025-10-28 14:36:33.455 [info] [command][5f9cb05e-a894-48c6-8d95-084ad2b6db86] Socket close event received\n2025-10-28 14:37:33.458 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:37:33.461 [info] [command][a0c026ad-6452-464e-aaaf-756ad358aa82] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a0c026ad-6452-464e-aaaf-756ad358aa82""}\n2025-10-28 14:37:33.462 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][866b0944-bf2a-41bc-8a0c-9fe7209f2f71] received connection request\n2025-10-28 14:37:33.489 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][866b0944-bf2a-41bc-8a0c-9fe7209f2f71] socks forwarding established\n2025-10-28 14:37:33.536 [info] [command][a0c026ad-6452-464e-aaaf-756ad358aa82] Process exited with code 0\n2025-10-28 14:37:33.536 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][866b0944-bf2a-41bc-8a0c-9fe7209f2f71] socks connection closed\n2025-10-28 14:37:33.537 [info] [command][a0c026ad-6452-464e-aaaf-756ad358aa82] Socket close event received\n2025-10-28 14:38:33.538 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:38:33.542 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c7ab7b2e-69ff-4a8f-b402-5d7c9d662557] received connection request\n2025-10-28 14:38:33.542 [info] [command][a96d319a-83c0-460c-9a54-f9496bba1869] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a96d319a-83c0-460c-9a54-f9496bba1869""}\n2025-10-28 14:38:33.566 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c7ab7b2e-69ff-4a8f-b402-5d7c9d662557] socks forwarding established\n2025-10-28 14:38:33.596 [info] [command][a96d319a-83c0-460c-9a54-f9496bba1869] Process exited with code 0\n2025-10-28 14:38:33.596 [info] [command][a96d319a-83c0-460c-9a54-f9496bba1869] Socket close event received\n2025-10-28 14:38:33.597 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c7ab7b2e-69ff-4a8f-b402-5d7c9d662557] socks connection closed\n2025-10-28 14:39:33.596 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:39:33.599 [info] [command][93e2fe2f-fa6c-46ec-b312-2889b659f443] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""93e2fe2f-fa6c-46ec-b312-2889b659f443""}\n2025-10-28 14:39:33.599 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][67527633-0d4d-456f-8403-68e677c8456d] received connection request\n2025-10-28 14:39:33.657 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][67527633-0d4d-456f-8403-68e677c8456d] socks forwarding established\n2025-10-28 14:39:33.691 [info] [command][93e2fe2f-fa6c-46ec-b312-2889b659f443] Process exited with code 0\n2025-10-28 14:39:33.691 [info] [command][93e2fe2f-fa6c-46ec-b312-2889b659f443] Socket close event received\n2025-10-28 14:39:33.694 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][67527633-0d4d-456f-8403-68e677c8456d] socks connection closed\n2025-10-28 14:40:33.696 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:40:33.699 [info] [command][def9d954-fcf0-4159-b882-464c4f5874a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""def9d954-fcf0-4159-b882-464c4f5874a8""}\n2025-10-28 14:40:33.700 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][047d598c-16a9-44ee-968e-f69bcf6c9b5a] received connection request\n2025-10-28 14:40:33.734 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][047d598c-16a9-44ee-968e-f69bcf6c9b5a] socks forwarding established\n2025-10-28 14:40:33.775 [info] [command][def9d954-fcf0-4159-b882-464c4f5874a8] Process exited with code 0\n2025-10-28 14:40:33.776 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][047d598c-16a9-44ee-968e-f69bcf6c9b5a] socks connection closed\n2025-10-28 14:40:33.776 [info] [command][def9d954-fcf0-4159-b882-464c4f5874a8] Socket close event received\n2025-10-28 14:41:33.777 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:41:33.781 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7ab8f43f-a0b9-4389-b9e4-9914f000533e] received connection request\n2025-10-28 14:41:33.782 [info] [command][d2ddc11a-f64b-42d1-a88a-7b330f841348] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d2ddc11a-f64b-42d1-a88a-7b330f841348""}\n2025-10-28 14:41:33.814 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7ab8f43f-a0b9-4389-b9e4-9914f000533e] socks forwarding established\n2025-10-28 14:41:33.845 [info] [command][d2ddc11a-f64b-42d1-a88a-7b330f841348] Process exited with code 0\n2025-10-28 14:41:33.845 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7ab8f43f-a0b9-4389-b9e4-9914f000533e] socks connection closed\n2025-10-28 14:41:33.846 [info] [command][d2ddc11a-f64b-42d1-a88a-7b330f841348] Socket close event received\n2025-10-28 14:42:33.845 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:42:33.847 [info] [command][5867e86c-7b6e-4933-b0c9-6e2b9f4caee9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5867e86c-7b6e-4933-b0c9-6e2b9f4caee9""}\n2025-10-28 14:42:33.847 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a3358576-ccf2-4bad-8ba4-69685443e912] received connection request\n2025-10-28 14:42:33.876 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a3358576-ccf2-4bad-8ba4-69685443e912] socks forwarding established\n2025-10-28 14:42:33.904 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a3358576-ccf2-4bad-8ba4-69685443e912] socks connection closed\n2025-10-28 14:42:33.904 [info] [command][5867e86c-7b6e-4933-b0c9-6e2b9f4caee9] Process exited with code 0\n2025-10-28 14:42:33.904 [info] [command][5867e86c-7b6e-4933-b0c9-6e2b9f4caee9] Socket close event received\n2025-10-28 14:43:33.904 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:43:33.906 [info] [command][c586f3c0-eac3-4eb2-911b-28286ff78cbd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c586f3c0-eac3-4eb2-911b-28286ff78cbd""}\n2025-10-28 14:43:33.906 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d9531836-fb2b-4920-a9ed-a086945ee3c1] received connection request\n2025-10-28 14:43:33.931 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d9531836-fb2b-4920-a9ed-a086945ee3c1] socks forwarding established\n2025-10-28 14:43:33.959 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d9531836-fb2b-4920-a9ed-a086945ee3c1] socks connection closed\n2025-10-28 14:43:33.959 [info] [command][c586f3c0-eac3-4eb2-911b-28286ff78cbd] Process exited with code 0\n2025-10-28 14:43:33.959 [info] [command][c586f3c0-eac3-4eb2-911b-28286ff78cbd] Socket close event received\n2025-10-28 14:44:33.965 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:44:33.969 [info] [command][4c91a35a-c021-43e0-a79b-36b34b32bbc2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4c91a35a-c021-43e0-a79b-36b34b32bbc2""}\n2025-10-28 14:44:33.969 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e1a3fa06-057e-420f-8f68-36667ce0e2c9] received connection request\n2025-10-28 14:44:34.014 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e1a3fa06-057e-420f-8f68-36667ce0e2c9] socks forwarding established\n2025-10-28 14:44:34.041 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e1a3fa06-057e-420f-8f68-36667ce0e2c9] socks connection closed\n2025-10-28 14:44:34.041 [info] [command][4c91a35a-c021-43e0-a79b-36b34b32bbc2] Process exited with code 0\n2025-10-28 14:44:34.041 [info] [command][4c91a35a-c021-43e0-a79b-36b34b32bbc2] Socket close event received\n2025-10-28 14:45:34.043 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:45:34.046 [info] [command][56a507f1-661e-44af-9099-ea46750e291f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""56a507f1-661e-44af-9099-ea46750e291f""}\n2025-10-28 14:45:34.047 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3cfc83e1-056b-483a-a1bf-24d4f1591d80] received connection request\n2025-10-28 14:45:34.071 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3cfc83e1-056b-483a-a1bf-24d4f1591d80] socks forwarding established\n2025-10-28 14:45:34.110 [info] [command][56a507f1-661e-44af-9099-ea46750e291f] Process exited with code 0\n2025-10-28 14:45:34.112 [info] [command][56a507f1-661e-44af-9099-ea46750e291f] Socket close event received\n2025-10-28 14:45:34.113 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3cfc83e1-056b-483a-a1bf-24d4f1591d80] socks connection closed\n2025-10-28 14:46:34.113 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:46:34.116 [info] [command][0ca29dcd-d91c-4205-874a-2e982645b3fb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0ca29dcd-d91c-4205-874a-2e982645b3fb""}\n2025-10-28 14:46:34.116 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][42553459-8072-4797-b9c7-89c9c54b2dba] received connection request\n2025-10-28 14:46:34.142 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][42553459-8072-4797-b9c7-89c9c54b2dba] socks forwarding established\n2025-10-28 14:46:34.169 [info] [command][0ca29dcd-d91c-4205-874a-2e982645b3fb] Process exited with code 0\n2025-10-28 14:46:34.170 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][42553459-8072-4797-b9c7-89c9c54b2dba] socks connection closed\n2025-10-28 14:46:34.170 [info] [command][0ca29dcd-d91c-4205-874a-2e982645b3fb] Socket close event received\n2025-10-28 14:47:34.173 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:47:34.175 [info] [command][0efbffe5-784b-447c-8362-32a34b1476eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0efbffe5-784b-447c-8362-32a34b1476eb""}\n2025-10-28 14:47:34.177 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d87fc7ce-927f-4d3c-8ee6-e9f37993bc4d] received connection request\n2025-10-28 14:47:34.232 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d87fc7ce-927f-4d3c-8ee6-e9f37993bc4d] socks forwarding established\n2025-10-28 14:47:34.261 [info] [command][0efbffe5-784b-447c-8362-32a34b1476eb] Process exited with code 0\n2025-10-28 14:47:34.262 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d87fc7ce-927f-4d3c-8ee6-e9f37993bc4d] socks connection closed\n2025-10-28 14:47:34.262 [info] [command][0efbffe5-784b-447c-8362-32a34b1476eb] Socket close event received\n2025-10-28 14:48:34.267 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:48:34.271 [info] [command][3cf1d45f-e71e-4f1f-8bd0-714711e4e34f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3cf1d45f-e71e-4f1f-8bd0-714711e4e34f""}\n2025-10-28 14:48:34.272 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][664c32ff-2f8f-49c1-98d2-19fc7957eb3a] received connection request\n2025-10-28 14:48:34.297 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][664c32ff-2f8f-49c1-98d2-19fc7957eb3a] socks forwarding established\n2025-10-28 14:48:34.332 [info] [command][3cf1d45f-e71e-4f1f-8bd0-714711e4e34f] Process exited with code 0\n2025-10-28 14:48:34.332 [info] [command][3cf1d45f-e71e-4f1f-8bd0-714711e4e34f] Socket close event received\n2025-10-28 14:48:34.338 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][664c32ff-2f8f-49c1-98d2-19fc7957eb3a] socks connection closed\n2025-10-28 14:49:34.335 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:49:34.337 [info] [command][7be983ae-e996-4254-be65-b5ad618d4745] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7be983ae-e996-4254-be65-b5ad618d4745""}\n2025-10-28 14:49:34.337 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][acd0077f-8570-4227-9dff-bac83e5e3f14] received connection request\n2025-10-28 14:49:34.369 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][acd0077f-8570-4227-9dff-bac83e5e3f14] socks forwarding established\n2025-10-28 14:49:34.397 [info] [command][7be983ae-e996-4254-be65-b5ad618d4745] Process exited with code 0\n2025-10-28 14:49:34.397 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][acd0077f-8570-4227-9dff-bac83e5e3f14] socks connection closed\n2025-10-28 14:49:34.397 [info] [command][7be983ae-e996-4254-be65-b5ad618d4745] Socket close event received\n2025-10-28 14:50:34.402 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:50:34.403 [info] [command][b7b0b633-dc07-416a-8cc0-32c15621fdb7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b7b0b633-dc07-416a-8cc0-32c15621fdb7""}\n2025-10-28 14:50:34.403 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c5a6223b-433f-47aa-9464-9265b4152ade] received connection request\n2025-10-28 14:50:34.487 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c5a6223b-433f-47aa-9464-9265b4152ade] socks forwarding established\n2025-10-28 14:50:34.586 [info] [command][b7b0b633-dc07-416a-8cc0-32c15621fdb7] Process exited with code 0\n2025-10-28 14:50:34.586 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c5a6223b-433f-47aa-9464-9265b4152ade] socks connection closed\n2025-10-28 14:50:34.586 [info] [command][b7b0b633-dc07-416a-8cc0-32c15621fdb7] Socket close event received\n2025-10-28 14:51:34.588 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:51:34.589 [info] [command][00a3db3e-c07b-4a66-a07f-24b44ae172e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""00a3db3e-c07b-4a66-a07f-24b44ae172e6""}\n2025-10-28 14:51:34.590 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3abdaeb6-f047-4cf4-b699-4eaefec90b78] received connection request\n2025-10-28 14:51:34.653 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3abdaeb6-f047-4cf4-b699-4eaefec90b78] socks forwarding established\n2025-10-28 14:51:34.714 [info] [command][00a3db3e-c07b-4a66-a07f-24b44ae172e6] Process exited with code 0\n2025-10-28 14:51:34.714 [info] [command][00a3db3e-c07b-4a66-a07f-24b44ae172e6] Socket close event received\n2025-10-28 14:51:34.769 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3abdaeb6-f047-4cf4-b699-4eaefec90b78] socks connection closed\n2025-10-28 14:52:34.719 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:52:34.721 [info] [command][50b4d203-702d-4953-a78a-cbf64c831854] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""50b4d203-702d-4953-a78a-cbf64c831854""}\n2025-10-28 14:52:34.721 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][945862b2-8824-4608-bef8-34f7195d2e22] received connection request\n2025-10-28 14:52:34.802 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][945862b2-8824-4608-bef8-34f7195d2e22] socks forwarding established\n2025-10-28 14:52:34.877 [info] [command][50b4d203-702d-4953-a78a-cbf64c831854] Process exited with code 0\n2025-10-28 14:52:34.877 [info] [command][50b4d203-702d-4953-a78a-cbf64c831854] Socket close event received\n2025-10-28 14:52:34.886 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][945862b2-8824-4608-bef8-34f7195d2e22] socks connection closed\n2025-10-28 14:53:34.883 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:53:34.886 [info] [command][ae3c0588-4daf-475c-9c41-08fea8cbb292] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ae3c0588-4daf-475c-9c41-08fea8cbb292""}\n2025-10-28 14:53:34.886 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2387b93f-ecb9-4f7b-b6c6-b3d897e9db34] received connection request\n2025-10-28 14:53:34.919 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2387b93f-ecb9-4f7b-b6c6-b3d897e9db34] socks forwarding established\n2025-10-28 14:53:34.963 [info] [command][ae3c0588-4daf-475c-9c41-08fea8cbb292] Process exited with code 0\n2025-10-28 14:53:34.963 [info] [command][ae3c0588-4daf-475c-9c41-08fea8cbb292] Socket close event received\n2025-10-28 14:53:34.965 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2387b93f-ecb9-4f7b-b6c6-b3d897e9db34] socks connection closed\n2025-10-28 14:54:34.968 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:54:34.970 [info] [command][1fd16f38-3931-47ca-8e02-b3d4b4b99ffe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1fd16f38-3931-47ca-8e02-b3d4b4b99ffe""}\n2025-10-28 14:54:34.970 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5ecefa19-9ca3-4403-a5a6-9b7c56af2f6a] received connection request\n2025-10-28 14:54:35.001 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5ecefa19-9ca3-4403-a5a6-9b7c56af2f6a] socks forwarding established\n2025-10-28 14:54:35.033 [info] [command][1fd16f38-3931-47ca-8e02-b3d4b4b99ffe] Process exited with code 0\n2025-10-28 14:54:35.033 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5ecefa19-9ca3-4403-a5a6-9b7c56af2f6a] socks connection closed\n2025-10-28 14:54:35.033 [info] [command][1fd16f38-3931-47ca-8e02-b3d4b4b99ffe] Socket close event received\n2025-10-28 14:55:35.034 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:55:35.037 [info] [command][0022c53e-0be7-49aa-8ec6-397a981fc58c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0022c53e-0be7-49aa-8ec6-397a981fc58c""}\n2025-10-28 14:55:35.037 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cb9b637a-5123-40cd-b44a-1ff1262893ea] received connection request\n2025-10-28 14:55:35.087 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cb9b637a-5123-40cd-b44a-1ff1262893ea] socks forwarding established\n2025-10-28 14:55:35.112 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cb9b637a-5123-40cd-b44a-1ff1262893ea] socks connection closed\n2025-10-28 14:55:35.113 [info] [command][0022c53e-0be7-49aa-8ec6-397a981fc58c] Process exited with code 0\n2025-10-28 14:55:35.113 [info] [command][0022c53e-0be7-49aa-8ec6-397a981fc58c] Socket close event received\n2025-10-28 14:56:35.118 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:56:35.121 [info] [command][f16b4d54-7713-4d16-834f-cf52525cab92] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f16b4d54-7713-4d16-834f-cf52525cab92""}\n2025-10-28 14:56:35.121 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9b874265-1861-4663-baed-983b02819080] received connection request\n2025-10-28 14:56:35.146 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9b874265-1861-4663-baed-983b02819080] socks forwarding established\n2025-10-28 14:56:35.175 [info] [command][f16b4d54-7713-4d16-834f-cf52525cab92] Process exited with code 0\n2025-10-28 14:56:35.175 [info] [command][f16b4d54-7713-4d16-834f-cf52525cab92] Socket close event received\n2025-10-28 14:56:35.175 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9b874265-1861-4663-baed-983b02819080] socks connection closed\n2025-10-28 14:57:35.182 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:57:35.184 [info] [command][2c72b2c3-72d7-470a-aa09-d0382443e035] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2c72b2c3-72d7-470a-aa09-d0382443e035""}\n2025-10-28 14:57:35.185 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][58a238c4-fef5-42f4-9ccd-1723e7b09bec] received connection request\n2025-10-28 14:57:35.234 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][58a238c4-fef5-42f4-9ccd-1723e7b09bec] socks forwarding established\n2025-10-28 14:57:35.260 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][58a238c4-fef5-42f4-9ccd-1723e7b09bec] socks connection closed\n2025-10-28 14:57:35.261 [info] [command][2c72b2c3-72d7-470a-aa09-d0382443e035] Process exited with code 0\n2025-10-28 14:57:35.261 [info] [command][2c72b2c3-72d7-470a-aa09-d0382443e035] Socket close event received\n2025-10-28 14:58:35.267 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:58:35.270 [info] [command][7eb31583-4f5a-4a0c-a4be-7a2487ab4d8a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7eb31583-4f5a-4a0c-a4be-7a2487ab4d8a""}\n2025-10-28 14:58:35.270 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][00ae1d51-efad-4f93-827a-2a41e4ac9805] received connection request\n2025-10-28 14:58:35.432 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][00ae1d51-efad-4f93-827a-2a41e4ac9805] socks forwarding established\n2025-10-28 14:58:35.522 [info] [command][7eb31583-4f5a-4a0c-a4be-7a2487ab4d8a] Process exited with code 0\n2025-10-28 14:58:35.522 [info] [command][7eb31583-4f5a-4a0c-a4be-7a2487ab4d8a] Socket close event received\n2025-10-28 14:58:35.558 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][00ae1d51-efad-4f93-827a-2a41e4ac9805] socks connection closed\n2025-10-28 14:59:35.525 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 14:59:35.527 [info] [command][2d5980a3-7af8-45f2-8a76-724a289bc95e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2d5980a3-7af8-45f2-8a76-724a289bc95e""}\n2025-10-28 14:59:35.528 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][54bd4246-4539-4836-8261-ec82fdd07f22] received connection request\n2025-10-28 14:59:35.561 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][54bd4246-4539-4836-8261-ec82fdd07f22] socks forwarding established\n2025-10-28 14:59:35.594 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][54bd4246-4539-4836-8261-ec82fdd07f22] socks connection closed\n2025-10-28 14:59:35.594 [info] [command][2d5980a3-7af8-45f2-8a76-724a289bc95e] Process exited with code 0\n2025-10-28 14:59:35.594 [info] [command][2d5980a3-7af8-45f2-8a76-724a289bc95e] Socket close event received\n2025-10-28 15:00:35.599 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:00:35.602 [info] [command][7b8c9577-9e78-40f6-a865-a0833eafe016] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7b8c9577-9e78-40f6-a865-a0833eafe016""}\n2025-10-28 15:00:35.602 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2082a2c4-40e4-4f04-b31c-c4e189df099e] received connection request\n2025-10-28 15:00:35.644 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2082a2c4-40e4-4f04-b31c-c4e189df099e] socks forwarding established\n2025-10-28 15:00:35.683 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2082a2c4-40e4-4f04-b31c-c4e189df099e] socks connection closed\n2025-10-28 15:00:35.683 [info] [command][7b8c9577-9e78-40f6-a865-a0833eafe016] Process exited with code 0\n2025-10-28 15:00:35.683 [info] [command][7b8c9577-9e78-40f6-a865-a0833eafe016] Socket close event received\n2025-10-28 15:01:35.687 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:01:35.689 [info] [command][33ea86ec-891a-4b82-a5f2-9d22df10a0fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""33ea86ec-891a-4b82-a5f2-9d22df10a0fe""}\n2025-10-28 15:01:35.690 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ef09d44f-a81b-41f0-a94f-1027b7282458] received connection request\n2025-10-28 15:01:35.733 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ef09d44f-a81b-41f0-a94f-1027b7282458] socks forwarding established\n2025-10-28 15:01:35.774 [info] [command][33ea86ec-891a-4b82-a5f2-9d22df10a0fe] Process exited with code 0\n2025-10-28 15:01:35.774 [info] [command][33ea86ec-891a-4b82-a5f2-9d22df10a0fe] Socket close event received\n2025-10-28 15:01:35.774 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ef09d44f-a81b-41f0-a94f-1027b7282458] socks connection closed\n2025-10-28 15:02:35.780 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:02:35.782 [info] [command][9adc7c72-b750-45e6-87d3-decfaf743406] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9adc7c72-b750-45e6-87d3-decfaf743406""}\n2025-10-28 15:02:35.782 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][de9d7777-76b8-4237-a0f2-5ba574f8ec92] received connection request\n2025-10-28 15:02:35.815 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][de9d7777-76b8-4237-a0f2-5ba574f8ec92] socks forwarding established\n2025-10-28 15:02:35.877 [info] [command][9adc7c72-b750-45e6-87d3-decfaf743406] Process exited with code 0\n2025-10-28 15:02:35.877 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][de9d7777-76b8-4237-a0f2-5ba574f8ec92] socks connection closed\n2025-10-28 15:02:35.877 [info] [command][9adc7c72-b750-45e6-87d3-decfaf743406] Socket close event received\n2025-10-28 15:03:35.878 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:03:35.881 [info] [command][9fa0ce20-f6c1-45d0-8a2c-88c6db3dcf75] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9fa0ce20-f6c1-45d0-8a2c-88c6db3dcf75""}\n2025-10-28 15:03:35.881 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fb81dc1d-b049-4a2c-9db7-e8cdb50f3a13] received connection request\n2025-10-28 15:03:35.910 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fb81dc1d-b049-4a2c-9db7-e8cdb50f3a13] socks forwarding established\n2025-10-28 15:03:35.938 [info] [command][9fa0ce20-f6c1-45d0-8a2c-88c6db3dcf75] Process exited with code 0\n2025-10-28 15:03:35.938 [info] [command][9fa0ce20-f6c1-45d0-8a2c-88c6db3dcf75] Socket close event received\n2025-10-28 15:03:35.939 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fb81dc1d-b049-4a2c-9db7-e8cdb50f3a13] socks connection closed\n2025-10-28 15:04:35.940 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:04:35.942 [info] [command][d5830ca4-22fc-4044-9acc-2582c2e4b467] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d5830ca4-22fc-4044-9acc-2582c2e4b467""}\n2025-10-28 15:04:35.942 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4f2621ea-0da5-4f52-ad41-22be4cb3b564] received connection request\n2025-10-28 15:04:35.997 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4f2621ea-0da5-4f52-ad41-22be4cb3b564] socks forwarding established\n2025-10-28 15:04:36.031 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4f2621ea-0da5-4f52-ad41-22be4cb3b564] socks connection closed\n2025-10-28 15:04:36.031 [info] [command][d5830ca4-22fc-4044-9acc-2582c2e4b467] Process exited with code 0\n2025-10-28 15:04:36.031 [info] [command][d5830ca4-22fc-4044-9acc-2582c2e4b467] Socket close event received\n2025-10-28 15:05:36.033 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:05:36.035 [info] [command][777f012d-64d4-4b6d-8b41-9a33fa0e6e11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""777f012d-64d4-4b6d-8b41-9a33fa0e6e11""}\n2025-10-28 15:05:36.036 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fdc127a3-07d0-45e0-acd1-b3bffc8847a6] received connection request\n2025-10-28 15:05:36.071 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fdc127a3-07d0-45e0-acd1-b3bffc8847a6] socks forwarding established\n2025-10-28 15:05:36.097 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fdc127a3-07d0-45e0-acd1-b3bffc8847a6] socks connection closed\n2025-10-28 15:05:36.097 [info] [command][777f012d-64d4-4b6d-8b41-9a33fa0e6e11] Process exited with code 0\n2025-10-28 15:05:36.097 [info] [command][777f012d-64d4-4b6d-8b41-9a33fa0e6e11] Socket close event received\n2025-10-28 15:06:36.099 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:06:36.102 [info] [command][87b0a536-c622-4da6-8a72-e45233176673] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""87b0a536-c622-4da6-8a72-e45233176673""}\n2025-10-28 15:06:36.102 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1337b3de-2675-4a27-a55c-780054552ed7] received connection request\n2025-10-28 15:06:36.129 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1337b3de-2675-4a27-a55c-780054552ed7] socks forwarding established\n2025-10-28 15:06:36.155 [info] [command][87b0a536-c622-4da6-8a72-e45233176673] Process exited with code 0\n2025-10-28 15:06:36.155 [info] [command][87b0a536-c622-4da6-8a72-e45233176673] Socket close event received\n2025-10-28 15:06:36.156 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1337b3de-2675-4a27-a55c-780054552ed7] socks connection closed\n2025-10-28 15:07:36.161 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:07:36.164 [info] [command][1d26d2a8-8288-4980-8117-225bdd3989b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1d26d2a8-8288-4980-8117-225bdd3989b1""}\n2025-10-28 15:07:36.165 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e95f1943-baf3-4538-a183-90363b151579] received connection request\n2025-10-28 15:07:36.220 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e95f1943-baf3-4538-a183-90363b151579] socks forwarding established\n2025-10-28 15:07:36.248 [info] [command][1d26d2a8-8288-4980-8117-225bdd3989b1] Process exited with code 0\n2025-10-28 15:07:36.248 [info] [command][1d26d2a8-8288-4980-8117-225bdd3989b1] Socket close event received\n2025-10-28 15:07:36.248 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e95f1943-baf3-4538-a183-90363b151579] socks connection closed\n2025-10-28 15:08:36.253 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:08:36.255 [info] [command][dd69d92b-261b-4a2e-9858-176c47c33f53] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dd69d92b-261b-4a2e-9858-176c47c33f53""}\n2025-10-28 15:08:36.256 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][64b11321-ba0e-47aa-a589-d047ac3b2be8] received connection request\n2025-10-28 15:08:36.288 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][64b11321-ba0e-47aa-a589-d047ac3b2be8] socks forwarding established\n2025-10-28 15:08:36.324 [info] [command][dd69d92b-261b-4a2e-9858-176c47c33f53] Process exited with code 0\n2025-10-28 15:08:36.324 [info] [command][dd69d92b-261b-4a2e-9858-176c47c33f53] Socket close event received\n2025-10-28 15:08:36.335 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][64b11321-ba0e-47aa-a589-d047ac3b2be8] socks connection closed\n2025-10-28 15:09:36.330 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:09:36.331 [info] [command][8c6390c3-53d2-4cb9-a44b-13d06dd3a063] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8c6390c3-53d2-4cb9-a44b-13d06dd3a063""}\n2025-10-28 15:09:36.332 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c2ed2552-fcc0-499d-8ba8-4e6157051de6] received connection request\n2025-10-28 15:09:36.354 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c2ed2552-fcc0-499d-8ba8-4e6157051de6] socks forwarding established\n2025-10-28 15:09:36.380 [info] [command][8c6390c3-53d2-4cb9-a44b-13d06dd3a063] Process exited with code 0\n2025-10-28 15:09:36.380 [info] [command][8c6390c3-53d2-4cb9-a44b-13d06dd3a063] Socket close event received\n2025-10-28 15:09:36.380 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c2ed2552-fcc0-499d-8ba8-4e6157051de6] socks connection closed\n2025-10-28 15:10:36.384 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:10:36.386 [info] [command][51a0967c-327b-47ba-88a3-9f718111be42] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""51a0967c-327b-47ba-88a3-9f718111be42""}\n2025-10-28 15:10:36.386 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][31abfdab-d87f-47f5-adc2-d1af45073d21] received connection request\n2025-10-28 15:10:36.415 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][31abfdab-d87f-47f5-adc2-d1af45073d21] socks forwarding established\n2025-10-28 15:10:36.441 [info] [command][51a0967c-327b-47ba-88a3-9f718111be42] Process exited with code 0\n2025-10-28 15:10:36.441 [info] [command][51a0967c-327b-47ba-88a3-9f718111be42] Socket close event received\n2025-10-28 15:10:36.441 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][31abfdab-d87f-47f5-adc2-d1af45073d21] socks connection closed\n2025-10-28 15:11:36.447 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:11:36.448 [info] [command][b0a87877-9a2b-47ff-a8dc-6d2899dc6758] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b0a87877-9a2b-47ff-a8dc-6d2899dc6758""}\n2025-10-28 15:11:36.450 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3a113048-ed0c-47f7-8427-8fe4172eb70b] received connection request\n2025-10-28 15:11:36.475 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3a113048-ed0c-47f7-8427-8fe4172eb70b] socks forwarding established\n2025-10-28 15:11:36.504 [info] [command][b0a87877-9a2b-47ff-a8dc-6d2899dc6758] Process exited with code 0\n2025-10-28 15:11:36.504 [info] [command][b0a87877-9a2b-47ff-a8dc-6d2899dc6758] Socket close event received\n2025-10-28 15:11:36.504 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3a113048-ed0c-47f7-8427-8fe4172eb70b] socks connection closed\n2025-10-28 15:12:36.505 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:12:36.508 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][74542d81-3265-44f2-9f10-9b52b16b7869] received connection request\n2025-10-28 15:12:36.508 [info] [command][93587ab1-3b0f-4ae8-86ff-c10afd5205f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""93587ab1-3b0f-4ae8-86ff-c10afd5205f3""}\n2025-10-28 15:12:36.532 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][74542d81-3265-44f2-9f10-9b52b16b7869] socks forwarding established\n2025-10-28 15:12:36.558 [info] [command][93587ab1-3b0f-4ae8-86ff-c10afd5205f3] Process exited with code 0\n2025-10-28 15:12:36.558 [info] [command][93587ab1-3b0f-4ae8-86ff-c10afd5205f3] Socket close event received\n2025-10-28 15:12:36.559 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][74542d81-3265-44f2-9f10-9b52b16b7869] socks connection closed\n2025-10-28 15:13:36.561 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:13:36.564 [info] [command][74c21b9d-8f73-452f-baf8-52553e2067e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""74c21b9d-8f73-452f-baf8-52553e2067e3""}\n2025-10-28 15:13:36.564 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][423462aa-8d3c-443c-9452-15ae20d42936] received connection request\n2025-10-28 15:13:36.594 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][423462aa-8d3c-443c-9452-15ae20d42936] socks forwarding established\n2025-10-28 15:13:36.622 [info] [command][74c21b9d-8f73-452f-baf8-52553e2067e3] Process exited with code 0\n2025-10-28 15:13:36.622 [info] [command][74c21b9d-8f73-452f-baf8-52553e2067e3] Socket close event received\n2025-10-28 15:13:36.623 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][423462aa-8d3c-443c-9452-15ae20d42936] socks connection closed\n2025-10-28 15:14:36.627 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:14:36.629 [info] [command][d7ecfb4b-c63d-4945-874b-71bd654d366b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d7ecfb4b-c63d-4945-874b-71bd654d366b""}\n2025-10-28 15:14:36.629 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][eb8bb782-2fb3-4b93-9e54-1c97fc23dd3e] received connection request\n2025-10-28 15:14:36.671 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][eb8bb782-2fb3-4b93-9e54-1c97fc23dd3e] socks forwarding established\n2025-10-28 15:14:36.714 [info] [command][d7ecfb4b-c63d-4945-874b-71bd654d366b] Process exited with code 0\n2025-10-28 15:14:36.714 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][eb8bb782-2fb3-4b93-9e54-1c97fc23dd3e] socks connection closed\n2025-10-28 15:14:36.715 [info] [command][d7ecfb4b-c63d-4945-874b-71bd654d366b] Socket close event received\n2025-10-28 15:15:36.715 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:15:36.717 [info] [command][e3b3e709-00d5-4e77-a0e5-7304ff0b790f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e3b3e709-00d5-4e77-a0e5-7304ff0b790f""}\n2025-10-28 15:15:36.717 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][155cfd39-a6d5-413e-847f-ca3c13c473c0] received connection request\n2025-10-28 15:15:36.740 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][155cfd39-a6d5-413e-847f-ca3c13c473c0] socks forwarding established\n2025-10-28 15:15:36.769 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][155cfd39-a6d5-413e-847f-ca3c13c473c0] socks connection closed\n2025-10-28 15:15:36.769 [info] [command][e3b3e709-00d5-4e77-a0e5-7304ff0b790f] Process exited with code 0\n2025-10-28 15:15:36.769 [info] [command][e3b3e709-00d5-4e77-a0e5-7304ff0b790f] Socket close event received\n2025-10-28 15:16:36.772 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:16:36.775 [info] [command][361d0008-c857-42ce-a1a4-bd023e809146] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""361d0008-c857-42ce-a1a4-bd023e809146""}\n2025-10-28 15:16:36.776 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cf7cc1c1-269f-4c27-843e-05c98f67f24d] received connection request\n2025-10-28 15:16:36.907 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf7cc1c1-269f-4c27-843e-05c98f67f24d] socks forwarding established\n2025-10-28 15:16:36.981 [info] [command][361d0008-c857-42ce-a1a4-bd023e809146] Process exited with code 0\n2025-10-28 15:16:36.982 [info] [command][361d0008-c857-42ce-a1a4-bd023e809146] Socket close event received\n2025-10-28 15:16:37.069 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf7cc1c1-269f-4c27-843e-05c98f67f24d] socks connection closed\n2025-10-28 15:17:36.988 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:17:36.991 [info] [command][64118806-5b6f-4dd8-b6fb-2bf90e2ba5ad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""64118806-5b6f-4dd8-b6fb-2bf90e2ba5ad""}\n2025-10-28 15:17:36.992 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][077a5cde-6520-470f-a14c-bb41d5e7bc7e] received connection request\n2025-10-28 15:17:37.020 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][077a5cde-6520-470f-a14c-bb41d5e7bc7e] socks forwarding established\n2025-10-28 15:17:37.053 [info] [command][64118806-5b6f-4dd8-b6fb-2bf90e2ba5ad] Process exited with code 0\n2025-10-28 15:17:37.054 [info] [command][64118806-5b6f-4dd8-b6fb-2bf90e2ba5ad] Socket close event received\n2025-10-28 15:17:37.057 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][077a5cde-6520-470f-a14c-bb41d5e7bc7e] socks connection closed\n2025-10-28 15:18:37.057 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:18:37.058 [info] [command][f87ba493-8902-4221-9e85-6f5b25d8d707] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f87ba493-8902-4221-9e85-6f5b25d8d707""}\n2025-10-28 15:18:37.059 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][890faec4-8ce6-4700-85dd-fe0b88562c24] received connection request\n2025-10-28 15:18:37.110 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][890faec4-8ce6-4700-85dd-fe0b88562c24] socks forwarding established\n2025-10-28 15:18:37.148 [info] [command][f87ba493-8902-4221-9e85-6f5b25d8d707] Process exited with code 0\n2025-10-28 15:18:37.148 [info] [command][f87ba493-8902-4221-9e85-6f5b25d8d707] Socket close event received\n2025-10-28 15:18:37.150 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][890faec4-8ce6-4700-85dd-fe0b88562c24] socks connection closed\n2025-10-28 15:19:37.149 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:19:37.150 [info] [command][fe616d27-146e-4257-8075-d7e3ab971d7d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fe616d27-146e-4257-8075-d7e3ab971d7d""}\n2025-10-28 15:19:37.151 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4a313281-ef9c-4f81-994c-bb3faf522eb0] received connection request\n2025-10-28 15:19:37.177 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4a313281-ef9c-4f81-994c-bb3faf522eb0] socks forwarding established\n2025-10-28 15:19:37.223 [info] [command][fe616d27-146e-4257-8075-d7e3ab971d7d] Process exited with code 0\n2025-10-28 15:19:37.224 [info] [command][fe616d27-146e-4257-8075-d7e3ab971d7d] Socket close event received\n2025-10-28 15:19:37.231 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4a313281-ef9c-4f81-994c-bb3faf522eb0] socks connection closed\n2025-10-28 15:20:37.228 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:20:37.230 [info] [command][02b7b196-13c0-432b-8da4-aebd4fd78875] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""02b7b196-13c0-432b-8da4-aebd4fd78875""}\n2025-10-28 15:20:37.231 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d69763cd-182f-4b58-a358-eab150c34450] received connection request\n2025-10-28 15:20:37.255 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d69763cd-182f-4b58-a358-eab150c34450] socks forwarding established\n2025-10-28 15:20:37.288 [info] [command][02b7b196-13c0-432b-8da4-aebd4fd78875] Process exited with code 0\n2025-10-28 15:20:37.288 [info] [command][02b7b196-13c0-432b-8da4-aebd4fd78875] Socket close event received\n2025-10-28 15:20:37.289 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d69763cd-182f-4b58-a358-eab150c34450] socks connection closed\n2025-10-28 15:21:37.293 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:21:37.296 [info] [command][e5c4ee3f-14f9-4b42-9a86-aa40b2ab6c41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e5c4ee3f-14f9-4b42-9a86-aa40b2ab6c41""}\n2025-10-28 15:21:37.297 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1c8b8a35-2ace-40f4-a913-282b815acefc] received connection request\n2025-10-28 15:21:37.326 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1c8b8a35-2ace-40f4-a913-282b815acefc] socks forwarding established\n2025-10-28 15:21:37.353 [info] [command][e5c4ee3f-14f9-4b42-9a86-aa40b2ab6c41] Process exited with code 0\n2025-10-28 15:21:37.353 [info] [command][e5c4ee3f-14f9-4b42-9a86-aa40b2ab6c41] Socket close event received\n2025-10-28 15:21:37.354 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1c8b8a35-2ace-40f4-a913-282b815acefc] socks connection closed\n2025-10-28 15:22:37.359 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:22:37.361 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][032d319f-1386-4f76-ad75-7d798296f39d] received connection request\n2025-10-28 15:22:37.361 [info] [command][610ceb64-0494-426d-8b42-bfcd010674bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""610ceb64-0494-426d-8b42-bfcd010674bb""}\n2025-10-28 15:22:37.404 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][032d319f-1386-4f76-ad75-7d798296f39d] socks forwarding established\n2025-10-28 15:22:37.467 [info] [command][610ceb64-0494-426d-8b42-bfcd010674bb] Process exited with code 0\n2025-10-28 15:22:37.467 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][032d319f-1386-4f76-ad75-7d798296f39d] socks connection closed\n2025-10-28 15:22:37.467 [info] [command][610ceb64-0494-426d-8b42-bfcd010674bb] Socket close event received\n2025-10-28 15:23:37.470 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:23:37.472 [info] [command][8bd232ac-c55d-483d-9632-7f3bd2fa605d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8bd232ac-c55d-483d-9632-7f3bd2fa605d""}\n2025-10-28 15:23:37.473 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c1ccaaeb-15c5-4936-9515-ef0f77d0d4a0] received connection request\n2025-10-28 15:23:37.497 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c1ccaaeb-15c5-4936-9515-ef0f77d0d4a0] socks forwarding established\n2025-10-28 15:23:37.532 [info] [command][8bd232ac-c55d-483d-9632-7f3bd2fa605d] Process exited with code 0\n2025-10-28 15:23:37.533 [info] [command][8bd232ac-c55d-483d-9632-7f3bd2fa605d] Socket close event received\n2025-10-28 15:23:37.533 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c1ccaaeb-15c5-4936-9515-ef0f77d0d4a0] socks connection closed\n2025-10-28 15:24:37.535 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:24:37.537 [info] [command][56864c69-64b4-4fa1-9643-d616c1fbe31e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""56864c69-64b4-4fa1-9643-d616c1fbe31e""}\n2025-10-28 15:24:37.538 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][de138165-6ca8-45f9-b547-f6e3b53a99e5] received connection request\n2025-10-28 15:24:37.576 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][de138165-6ca8-45f9-b547-f6e3b53a99e5] socks forwarding established\n2025-10-28 15:24:37.652 [info] [command][56864c69-64b4-4fa1-9643-d616c1fbe31e] Process exited with code 0\n2025-10-28 15:24:37.653 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][de138165-6ca8-45f9-b547-f6e3b53a99e5] socks connection closed\n2025-10-28 15:24:37.653 [info] [command][56864c69-64b4-4fa1-9643-d616c1fbe31e] Socket close event received\n2025-10-28 15:25:37.658 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:25:37.662 [info] [command][635c443f-1b6f-4217-880d-da37b89c0594] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""635c443f-1b6f-4217-880d-da37b89c0594""}\n2025-10-28 15:25:37.663 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3cef210b-298b-4f14-a3c9-6a6c8c0c7385] received connection request\n2025-10-28 15:25:37.702 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3cef210b-298b-4f14-a3c9-6a6c8c0c7385] socks forwarding established\n2025-10-28 15:25:37.766 [info] [command][635c443f-1b6f-4217-880d-da37b89c0594] Process exited with code 0\n2025-10-28 15:25:37.766 [info] [command][635c443f-1b6f-4217-880d-da37b89c0594] Socket close event received\n2025-10-28 15:25:37.778 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3cef210b-298b-4f14-a3c9-6a6c8c0c7385] socks connection closed\n2025-10-28 15:26:37.769 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:26:37.771 [info] [command][841e7771-1893-4c6c-90fb-9f089a13d58f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""841e7771-1893-4c6c-90fb-9f089a13d58f""}\n2025-10-28 15:26:37.771 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][40273f71-7a25-4427-839d-a797dd5a8543] received connection request\n2025-10-28 15:26:37.799 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][40273f71-7a25-4427-839d-a797dd5a8543] socks forwarding established\n2025-10-28 15:26:37.831 [info] [command][841e7771-1893-4c6c-90fb-9f089a13d58f] Process exited with code 0\n2025-10-28 15:26:37.832 [info] [command][841e7771-1893-4c6c-90fb-9f089a13d58f] Socket close event received\n2025-10-28 15:26:37.833 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][40273f71-7a25-4427-839d-a797dd5a8543] socks connection closed\n2025-10-28 15:27:37.839 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:27:37.844 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7af30429-23a1-4e45-b01c-a961b4010558] received connection request\n2025-10-28 15:27:37.844 [info] [command][067d49a4-26f0-4eab-9bed-bd7bfafc618e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""067d49a4-26f0-4eab-9bed-bd7bfafc618e""}\n2025-10-28 15:27:37.877 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7af30429-23a1-4e45-b01c-a961b4010558] socks forwarding established\n2025-10-28 15:27:37.928 [info] [command][067d49a4-26f0-4eab-9bed-bd7bfafc618e] Process exited with code 0\n2025-10-28 15:27:37.928 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7af30429-23a1-4e45-b01c-a961b4010558] socks connection closed\n2025-10-28 15:27:37.928 [info] [command][067d49a4-26f0-4eab-9bed-bd7bfafc618e] Socket close event received\n2025-10-28 15:28:37.929 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:28:37.931 [info] [command][72582c7d-cfae-4b13-890c-dd8348da58fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""72582c7d-cfae-4b13-890c-dd8348da58fd""}\n2025-10-28 15:28:37.932 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1e71b51f-de96-447a-b002-a9546804d807] received connection request\n2025-10-28 15:28:38.001 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1e71b51f-de96-447a-b002-a9546804d807] socks forwarding established\n2025-10-28 15:28:38.054 [info] [command][72582c7d-cfae-4b13-890c-dd8348da58fd] Process exited with code 0\n2025-10-28 15:28:38.054 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1e71b51f-de96-447a-b002-a9546804d807] socks connection closed\n2025-10-28 15:28:38.054 [info] [command][72582c7d-cfae-4b13-890c-dd8348da58fd] Socket close event received\n2025-10-28 15:29:38.059 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:29:38.060 [info] [command][8fea3a01-4558-418a-8d57-feaccc61fa3e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8fea3a01-4558-418a-8d57-feaccc61fa3e""}\n2025-10-28 15:29:38.061 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][932f025b-52ab-4fa0-b164-03b317de8403] received connection request\n2025-10-28 15:29:38.093 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][932f025b-52ab-4fa0-b164-03b317de8403] socks forwarding established\n2025-10-28 15:29:38.127 [info] [command][8fea3a01-4558-418a-8d57-feaccc61fa3e] Process exited with code 0\n2025-10-28 15:29:38.127 [info] [command][8fea3a01-4558-418a-8d57-feaccc61fa3e] Socket close event received\n2025-10-28 15:29:38.127 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][932f025b-52ab-4fa0-b164-03b317de8403] socks connection closed\n2025-10-28 15:30:38.132 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:30:38.133 [info] [command][b6a6c3b3-b491-47f2-b56a-b07a341b7a57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b6a6c3b3-b491-47f2-b56a-b07a341b7a57""}\n2025-10-28 15:30:38.134 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2c3f0911-d42a-4416-97dc-d4ab64bc539d] received connection request\n2025-10-28 15:30:38.157 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2c3f0911-d42a-4416-97dc-d4ab64bc539d] socks forwarding established\n2025-10-28 15:30:38.199 [info] [command][b6a6c3b3-b491-47f2-b56a-b07a341b7a57] Process exited with code 0\n2025-10-28 15:30:38.199 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2c3f0911-d42a-4416-97dc-d4ab64bc539d] socks connection closed\n2025-10-28 15:30:38.199 [info] [command][b6a6c3b3-b491-47f2-b56a-b07a341b7a57] Socket close event received\n2025-10-28 15:31:38.199 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:31:38.201 [info] [command][acbf324d-73d4-404e-8d20-e26398971280] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""acbf324d-73d4-404e-8d20-e26398971280""}\n2025-10-28 15:31:38.202 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b491a2c4-8557-4738-b7e8-22e46aa0897a] received connection request\n2025-10-28 15:31:38.234 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b491a2c4-8557-4738-b7e8-22e46aa0897a] socks forwarding established\n2025-10-28 15:31:38.261 [info] [command][acbf324d-73d4-404e-8d20-e26398971280] Process exited with code 0\n2025-10-28 15:31:38.261 [info] [command][acbf324d-73d4-404e-8d20-e26398971280] Socket close event received\n2025-10-28 15:31:38.262 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b491a2c4-8557-4738-b7e8-22e46aa0897a] socks connection closed\n2025-10-28 15:32:38.265 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:32:38.268 [info] [command][822eb594-33fd-47a1-b667-8703a8434ef4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""822eb594-33fd-47a1-b667-8703a8434ef4""}\n2025-10-28 15:32:38.268 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b75d5bbd-3857-4c85-9a07-3b06adf2ee43] received connection request\n2025-10-28 15:32:38.326 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b75d5bbd-3857-4c85-9a07-3b06adf2ee43] socks forwarding established\n2025-10-28 15:32:38.360 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b75d5bbd-3857-4c85-9a07-3b06adf2ee43] socks connection closed\n2025-10-28 15:32:38.361 [info] [command][822eb594-33fd-47a1-b667-8703a8434ef4] Process exited with code 0\n2025-10-28 15:32:38.361 [info] [command][822eb594-33fd-47a1-b667-8703a8434ef4] Socket close event received\n2025-10-28 15:33:38.365 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:33:38.367 [info] [command][ff424cf5-d6e7-476e-abad-378c26473d0e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ff424cf5-d6e7-476e-abad-378c26473d0e""}\n2025-10-28 15:33:38.367 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ec42c724-3b3b-4d17-9b70-fd2e80abb531] received connection request\n2025-10-28 15:33:38.391 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ec42c724-3b3b-4d17-9b70-fd2e80abb531] socks forwarding established\n2025-10-28 15:33:38.434 [info] [command][ff424cf5-d6e7-476e-abad-378c26473d0e] Process exited with code 0\n2025-10-28 15:33:38.434 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ec42c724-3b3b-4d17-9b70-fd2e80abb531] socks connection closed\n2025-10-28 15:33:38.434 [info] [command][ff424cf5-d6e7-476e-abad-378c26473d0e] Socket close event received\n2025-10-28 15:34:38.439 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:34:38.441 [info] [command][dfde26ec-aa13-470a-9e54-35195b1013f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dfde26ec-aa13-470a-9e54-35195b1013f3""}\n2025-10-28 15:34:38.441 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3778c048-a509-4893-ad23-1d5241cae844] received connection request\n2025-10-28 15:34:38.475 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3778c048-a509-4893-ad23-1d5241cae844] socks forwarding established\n2025-10-28 15:34:38.501 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3778c048-a509-4893-ad23-1d5241cae844] socks connection closed\n2025-10-28 15:34:38.502 [info] [command][dfde26ec-aa13-470a-9e54-35195b1013f3] Process exited with code 0\n2025-10-28 15:34:38.502 [info] [command][dfde26ec-aa13-470a-9e54-35195b1013f3] Socket close event received\n2025-10-28 15:35:38.513 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:35:38.515 [info] [command][44378464-801a-48ce-ace1-31aeafe5f363] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""44378464-801a-48ce-ace1-31aeafe5f363""}\n2025-10-28 15:35:38.515 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8f9618a6-84e6-4d90-b675-71cd5d631b5b] received connection request\n2025-10-28 15:35:38.588 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8f9618a6-84e6-4d90-b675-71cd5d631b5b] socks forwarding established\n2025-10-28 15:35:38.706 [info] [command][44378464-801a-48ce-ace1-31aeafe5f363] Process exited with code 0\n2025-10-28 15:35:38.707 [info] [command][44378464-801a-48ce-ace1-31aeafe5f363] Socket close event received\n2025-10-28 15:35:38.767 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8f9618a6-84e6-4d90-b675-71cd5d631b5b] socks connection closed\n2025-10-28 15:36:38.713 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:36:38.716 [info] [command][2748057c-5584-4de8-a11c-a5b830b8509a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2748057c-5584-4de8-a11c-a5b830b8509a""}\n2025-10-28 15:36:38.716 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][dca02bb7-280b-4564-8db4-043b64e94e89] received connection request\n2025-10-28 15:36:38.793 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dca02bb7-280b-4564-8db4-043b64e94e89] socks forwarding established\n2025-10-28 15:36:38.840 [info] [command][2748057c-5584-4de8-a11c-a5b830b8509a] Process exited with code 0\n2025-10-28 15:36:38.840 [info] [command][2748057c-5584-4de8-a11c-a5b830b8509a] Socket close event received\n2025-10-28 15:36:38.865 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dca02bb7-280b-4564-8db4-043b64e94e89] socks connection closed\n2025-10-28 15:37:38.842 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:37:38.845 [info] [command][4d427969-652b-41cc-b187-99a5644c551f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4d427969-652b-41cc-b187-99a5644c551f""}\n2025-10-28 15:37:38.846 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fd93fd81-7ea1-4f29-add1-65bedbdeceaf] received connection request\n2025-10-28 15:37:38.879 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fd93fd81-7ea1-4f29-add1-65bedbdeceaf] socks forwarding established\n2025-10-28 15:37:38.906 [info] [command][4d427969-652b-41cc-b187-99a5644c551f] Process exited with code 0\n2025-10-28 15:37:38.907 [info] [command][4d427969-652b-41cc-b187-99a5644c551f] Socket close event received\n2025-10-28 15:37:38.907 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fd93fd81-7ea1-4f29-add1-65bedbdeceaf] socks connection closed\n2025-10-28 15:38:38.913 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:38:38.916 [info] [command][b26231ce-62cc-4397-9aef-36df07348608] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b26231ce-62cc-4397-9aef-36df07348608""}\n2025-10-28 15:38:38.916 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][02629db5-523b-4166-8082-821181fc24c3] received connection request\n2025-10-28 15:38:38.949 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][02629db5-523b-4166-8082-821181fc24c3] socks forwarding established\n2025-10-28 15:38:38.978 [info] [command][b26231ce-62cc-4397-9aef-36df07348608] Process exited with code 0\n2025-10-28 15:38:38.978 [info] [command][b26231ce-62cc-4397-9aef-36df07348608] Socket close event received\n2025-10-28 15:38:38.980 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][02629db5-523b-4166-8082-821181fc24c3] socks connection closed\n2025-10-28 15:39:38.980 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:39:38.981 [info] [command][97f48920-aace-49d0-92be-7af95af8dad6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""97f48920-aace-49d0-92be-7af95af8dad6""}\n2025-10-28 15:39:38.982 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3657b72b-b118-4715-bbda-9e7322f25473] received connection request\n2025-10-28 15:39:39.197 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3657b72b-b118-4715-bbda-9e7322f25473] socks forwarding established\n2025-10-28 15:39:39.472 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3657b72b-b118-4715-bbda-9e7322f25473] socks connection closed\n2025-10-28 15:39:39.473 [info] [command][97f48920-aace-49d0-92be-7af95af8dad6] Process exited with code 0\n2025-10-28 15:39:39.473 [info] [command][97f48920-aace-49d0-92be-7af95af8dad6] Socket close event received\n2025-10-28 15:40:39.477 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:40:39.478 [info] [command][862f3f21-ab92-488a-aeb1-e79963ceee86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""862f3f21-ab92-488a-aeb1-e79963ceee86""}\n2025-10-28 15:40:39.479 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][05a7f152-fd52-4e3b-a12e-d8c801f46663] received connection request\n2025-10-28 15:40:39.776 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][05a7f152-fd52-4e3b-a12e-d8c801f46663] socks forwarding established\n2025-10-28 15:40:39.884 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][05a7f152-fd52-4e3b-a12e-d8c801f46663] socks connection closed\n2025-10-28 15:40:39.884 [info] [command][862f3f21-ab92-488a-aeb1-e79963ceee86] Process exited with code 0\n2025-10-28 15:40:39.884 [info] [command][862f3f21-ab92-488a-aeb1-e79963ceee86] Socket close event received\n2025-10-28 15:41:39.887 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:41:39.889 [info] [command][79827cfd-391f-4b0e-be20-8edf9f77703d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""79827cfd-391f-4b0e-be20-8edf9f77703d""}\n2025-10-28 15:41:39.889 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f502c016-81d5-413b-a818-a97210e1d4fb] received connection request\n2025-10-28 15:41:40.080 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f502c016-81d5-413b-a818-a97210e1d4fb] socks forwarding established\n2025-10-28 15:41:40.182 [info] [command][79827cfd-391f-4b0e-be20-8edf9f77703d] Process exited with code 0\n2025-10-28 15:41:40.182 [info] [command][79827cfd-391f-4b0e-be20-8edf9f77703d] Socket close event received\n2025-10-28 15:41:40.225 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f502c016-81d5-413b-a818-a97210e1d4fb] socks connection closed\n2025-10-28 15:42:40.187 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:42:40.188 [info] [command][ba9ccc8c-a524-402d-8129-75f69686e685] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ba9ccc8c-a524-402d-8129-75f69686e685""}\n2025-10-28 15:42:40.189 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a51258ba-3f14-4419-9357-54ce2302b2f8] received connection request\n2025-10-28 15:42:40.277 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a51258ba-3f14-4419-9357-54ce2302b2f8] socks forwarding established\n2025-10-28 15:42:40.369 [info] [command][ba9ccc8c-a524-402d-8129-75f69686e685] Process exited with code 0\n2025-10-28 15:42:40.369 [info] [command][ba9ccc8c-a524-402d-8129-75f69686e685] Socket close event received\n2025-10-28 15:42:40.434 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a51258ba-3f14-4419-9357-54ce2302b2f8] socks connection closed\n2025-10-28 15:43:40.373 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:43:40.378 [info] [command][e806f427-ec79-4626-bf8c-753068df5f65] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e806f427-ec79-4626-bf8c-753068df5f65""}\n2025-10-28 15:43:40.379 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][16c71c9d-2aac-493b-8b44-6f0c9dd96aab] received connection request\n2025-10-28 15:43:40.549 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][16c71c9d-2aac-493b-8b44-6f0c9dd96aab] socks forwarding established\n2025-10-28 15:43:40.629 [info] [command][e806f427-ec79-4626-bf8c-753068df5f65] Process exited with code 0\n2025-10-28 15:43:40.630 [info] [command][e806f427-ec79-4626-bf8c-753068df5f65] Socket close event received\n2025-10-28 15:43:40.678 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][16c71c9d-2aac-493b-8b44-6f0c9dd96aab] socks connection closed\n2025-10-28 15:44:40.632 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:44:40.633 [info] [command][6cdff611-45b3-48a4-b88b-1463982e9d12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6cdff611-45b3-48a4-b88b-1463982e9d12""}\n2025-10-28 15:44:40.634 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][87c317a4-1acb-40cd-9616-cb36278c375b] received connection request\n2025-10-28 15:44:40.769 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][87c317a4-1acb-40cd-9616-cb36278c375b] socks forwarding established\n2025-10-28 15:44:40.863 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][87c317a4-1acb-40cd-9616-cb36278c375b] socks connection closed\n2025-10-28 15:44:40.863 [info] [command][6cdff611-45b3-48a4-b88b-1463982e9d12] Process exited with code 0\n2025-10-28 15:44:40.863 [info] [command][6cdff611-45b3-48a4-b88b-1463982e9d12] Socket close event received\n2025-10-28 15:45:40.869 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:45:40.871 [info] [command][2f3101e0-caa3-44f5-99e7-0335ca293d73] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2f3101e0-caa3-44f5-99e7-0335ca293d73""}\n2025-10-28 15:45:40.871 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][535048d5-9697-4c00-9f1e-70c36f05eb8e] received connection request\n2025-10-28 15:45:41.011 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][535048d5-9697-4c00-9f1e-70c36f05eb8e] socks forwarding established\n2025-10-28 15:45:41.211 [info] [command][2f3101e0-caa3-44f5-99e7-0335ca293d73] Process exited with code 0\n2025-10-28 15:45:41.212 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][535048d5-9697-4c00-9f1e-70c36f05eb8e] socks connection closed\n2025-10-28 15:45:41.212 [info] [command][2f3101e0-caa3-44f5-99e7-0335ca293d73] Socket close event received\n2025-10-28 15:46:41.219 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:46:41.222 [info] [command][58ad01f6-a222-4da3-9b5a-3ef7e5d4c4b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""58ad01f6-a222-4da3-9b5a-3ef7e5d4c4b3""}\n2025-10-28 15:46:41.222 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4839f634-64ef-4f0a-b363-4c27b12ae879] received connection request\n2025-10-28 15:46:41.346 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4839f634-64ef-4f0a-b363-4c27b12ae879] socks forwarding established\n2025-10-28 15:46:41.435 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4839f634-64ef-4f0a-b363-4c27b12ae879] socks connection closed\n2025-10-28 15:46:41.435 [info] [command][58ad01f6-a222-4da3-9b5a-3ef7e5d4c4b3] Process exited with code 0\n2025-10-28 15:46:41.435 [info] [command][58ad01f6-a222-4da3-9b5a-3ef7e5d4c4b3] Socket close event received\n2025-10-28 15:47:41.440 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:47:41.442 [info] [command][4bd1d4ee-646b-4d8a-babc-259b4b9974c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4bd1d4ee-646b-4d8a-babc-259b4b9974c6""}\n2025-10-28 15:47:41.442 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][00fd88d9-f23e-4c1e-802f-9e646a63b753] received connection request\n2025-10-28 15:47:41.614 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][00fd88d9-f23e-4c1e-802f-9e646a63b753] socks forwarding established\n2025-10-28 15:47:41.736 [info] [command][4bd1d4ee-646b-4d8a-babc-259b4b9974c6] Process exited with code 0\n2025-10-28 15:47:41.736 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][00fd88d9-f23e-4c1e-802f-9e646a63b753] socks connection closed\n2025-10-28 15:47:41.737 [info] [command][4bd1d4ee-646b-4d8a-babc-259b4b9974c6] Socket close event received\n2025-10-28 15:48:41.739 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:48:41.742 [info] [command][b573a09e-0517-47fe-9c74-03b1d0131eea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b573a09e-0517-47fe-9c74-03b1d0131eea""}\n2025-10-28 15:48:41.742 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b436bdde-b6bb-4f10-93e0-c456361cf079] received connection request\n2025-10-28 15:48:41.779 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b436bdde-b6bb-4f10-93e0-c456361cf079] socks forwarding established\n2025-10-28 15:48:41.819 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b436bdde-b6bb-4f10-93e0-c456361cf079] socks connection closed\n2025-10-28 15:48:41.819 [info] [command][b573a09e-0517-47fe-9c74-03b1d0131eea] Process exited with code 0\n2025-10-28 15:48:41.819 [info] [command][b573a09e-0517-47fe-9c74-03b1d0131eea] Socket close event received\n2025-10-28 15:49:41.826 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:49:41.828 [info] [command][9924768a-be2a-420e-bf7b-e316c352f83b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9924768a-be2a-420e-bf7b-e316c352f83b""}\n2025-10-28 15:49:41.828 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5f94e223-1958-4b3c-aa8e-67dc2e6ad96f] received connection request\n2025-10-28 15:49:41.880 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f94e223-1958-4b3c-aa8e-67dc2e6ad96f] socks forwarding established\n2025-10-28 15:49:41.927 [info] [command][9924768a-be2a-420e-bf7b-e316c352f83b] Process exited with code 0\n2025-10-28 15:49:41.927 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f94e223-1958-4b3c-aa8e-67dc2e6ad96f] socks connection closed\n2025-10-28 15:49:41.927 [info] [command][9924768a-be2a-420e-bf7b-e316c352f83b] Socket close event received\n2025-10-28 15:50:41.892 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:50:41.894 [info] [command][456dd477-3035-419c-b33e-92aace3a96ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""456dd477-3035-419c-b33e-92aace3a96ae""}\n2025-10-28 15:50:41.895 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][29713f7a-91b1-464d-b47a-d8fc5f8facf4] received connection request\n2025-10-28 15:50:41.958 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][29713f7a-91b1-464d-b47a-d8fc5f8facf4] socks forwarding established\n2025-10-28 15:50:41.997 [info] [command][456dd477-3035-419c-b33e-92aace3a96ae] Process exited with code 0\n2025-10-28 15:50:41.997 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][29713f7a-91b1-464d-b47a-d8fc5f8facf4] socks connection closed\n2025-10-28 15:50:41.997 [info] [command][456dd477-3035-419c-b33e-92aace3a96ae] Socket close event received\n2025-10-28 15:51:41.999 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:51:42.001 [info] [command][b4b1e4aa-0af2-4245-a525-fe2300a44f85] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b4b1e4aa-0af2-4245-a525-fe2300a44f85""}\n2025-10-28 15:51:42.002 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][66d35fbf-962d-47b9-a927-43bc2ca1f54c] received connection request\n2025-10-28 15:51:42.027 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][66d35fbf-962d-47b9-a927-43bc2ca1f54c] socks forwarding established\n2025-10-28 15:51:42.064 [info] [command][b4b1e4aa-0af2-4245-a525-fe2300a44f85] Process exited with code 0\n2025-10-28 15:51:42.064 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][66d35fbf-962d-47b9-a927-43bc2ca1f54c] socks connection closed\n2025-10-28 15:51:42.065 [info] [command][b4b1e4aa-0af2-4245-a525-fe2300a44f85] Socket close event received\n2025-10-28 15:52:42.069 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:52:42.071 [info] [command][b872142b-be05-4d3c-9b50-e5390fd6e4b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b872142b-be05-4d3c-9b50-e5390fd6e4b4""}\n2025-10-28 15:52:42.071 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7b1ac10a-a922-40ed-a553-51e45e1adbf6] received connection request\n2025-10-28 15:52:42.108 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7b1ac10a-a922-40ed-a553-51e45e1adbf6] socks forwarding established\n2025-10-28 15:52:42.140 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7b1ac10a-a922-40ed-a553-51e45e1adbf6] socks connection closed\n2025-10-28 15:52:42.141 [info] [command][b872142b-be05-4d3c-9b50-e5390fd6e4b4] Process exited with code 0\n2025-10-28 15:52:42.147 [info] [command][b872142b-be05-4d3c-9b50-e5390fd6e4b4] Socket close event received\n2025-10-28 15:53:42.148 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:53:42.149 [info] [command][ba23b0ec-fb2f-49e9-8194-ad6f1cce3596] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ba23b0ec-fb2f-49e9-8194-ad6f1cce3596""}\n2025-10-28 15:53:42.149 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][20c5bd08-6930-43cf-ad02-0768813d221a] received connection request\n2025-10-28 15:53:42.181 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][20c5bd08-6930-43cf-ad02-0768813d221a] socks forwarding established\n2025-10-28 15:53:42.244 [info] [command][ba23b0ec-fb2f-49e9-8194-ad6f1cce3596] Process exited with code 0\n2025-10-28 15:53:42.244 [info] [command][ba23b0ec-fb2f-49e9-8194-ad6f1cce3596] Socket close event received\n2025-10-28 15:53:42.259 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][20c5bd08-6930-43cf-ad02-0768813d221a] socks connection closed\n2025-10-28 15:54:42.249 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:54:42.251 [info] [command][7cf16b43-fe10-4e9d-9c7b-83a69b7e6f9f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7cf16b43-fe10-4e9d-9c7b-83a69b7e6f9f""}\n2025-10-28 15:54:42.251 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6b956917-259e-4751-a0c4-6b5272c15c5e] received connection request\n2025-10-28 15:54:42.285 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6b956917-259e-4751-a0c4-6b5272c15c5e] socks forwarding established\n2025-10-28 15:54:42.320 [info] [command][7cf16b43-fe10-4e9d-9c7b-83a69b7e6f9f] Process exited with code 0\n2025-10-28 15:54:42.320 [info] [command][7cf16b43-fe10-4e9d-9c7b-83a69b7e6f9f] Socket close event received\n2025-10-28 15:54:42.324 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6b956917-259e-4751-a0c4-6b5272c15c5e] socks connection closed\n2025-10-28 15:55:42.324 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:55:42.326 [info] [command][492f16f1-7488-4020-8d96-aaf912145d17] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""492f16f1-7488-4020-8d96-aaf912145d17""}\n2025-10-28 15:55:42.326 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][552b3316-b9e0-4b60-81d4-50bc0b84ccee] received connection request\n2025-10-28 15:55:42.354 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][552b3316-b9e0-4b60-81d4-50bc0b84ccee] socks forwarding established\n2025-10-28 15:55:42.381 [info] [command][492f16f1-7488-4020-8d96-aaf912145d17] Process exited with code 0\n2025-10-28 15:55:42.382 [info] [command][492f16f1-7488-4020-8d96-aaf912145d17] Socket close event received\n2025-10-28 15:55:42.382 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][552b3316-b9e0-4b60-81d4-50bc0b84ccee] socks connection closed\n2025-10-28 15:56:42.387 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:56:42.388 [info] [command][0f4c8591-0d8e-4c88-9ef4-6eb47448f24c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0f4c8591-0d8e-4c88-9ef4-6eb47448f24c""}\n2025-10-28 15:56:42.389 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0031124b-037e-44b5-8e36-74070eebada7] received connection request\n2025-10-28 15:56:42.485 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0031124b-037e-44b5-8e36-74070eebada7] socks forwarding established\n2025-10-28 15:56:42.537 [info] [command][0f4c8591-0d8e-4c88-9ef4-6eb47448f24c] Process exited with code 0\n2025-10-28 15:56:42.538 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0031124b-037e-44b5-8e36-74070eebada7] socks connection closed\n2025-10-28 15:56:42.539 [info] [command][0f4c8591-0d8e-4c88-9ef4-6eb47448f24c] Socket close event received\n2025-10-28 15:57:42.543 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:57:42.545 [info] [command][d0f769e9-85d4-4e69-8e33-b2e9e2b3020a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d0f769e9-85d4-4e69-8e33-b2e9e2b3020a""}\n2025-10-28 15:57:42.545 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ce0e3599-3e1e-4923-b288-21861addc52d] received connection request\n2025-10-28 15:57:42.573 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ce0e3599-3e1e-4923-b288-21861addc52d] socks forwarding established\n2025-10-28 15:57:42.602 [info] [command][d0f769e9-85d4-4e69-8e33-b2e9e2b3020a] Process exited with code 0\n2025-10-28 15:57:42.602 [info] [command][d0f769e9-85d4-4e69-8e33-b2e9e2b3020a] Socket close event received\n2025-10-28 15:57:42.603 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ce0e3599-3e1e-4923-b288-21861addc52d] socks connection closed\n2025-10-28 15:58:42.608 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:58:42.611 [info] [command][4b53f543-9d0b-4327-a5b2-296802aafc7c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4b53f543-9d0b-4327-a5b2-296802aafc7c""}\n2025-10-28 15:58:42.611 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2c69efd3-2b06-4bb5-83d4-204f004a9191] received connection request\n2025-10-28 15:58:42.687 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2c69efd3-2b06-4bb5-83d4-204f004a9191] socks forwarding established\n2025-10-28 15:58:42.727 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2c69efd3-2b06-4bb5-83d4-204f004a9191] socks connection closed\n2025-10-28 15:58:42.728 [info] [command][4b53f543-9d0b-4327-a5b2-296802aafc7c] Process exited with code 0\n2025-10-28 15:58:42.728 [info] [command][4b53f543-9d0b-4327-a5b2-296802aafc7c] Socket close event received\n2025-10-28 15:59:42.732 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 15:59:42.734 [info] [command][40f75987-9d78-4ad5-85e0-982dd96ce5f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""40f75987-9d78-4ad5-85e0-982dd96ce5f8""}\n2025-10-28 15:59:42.734 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][116e9cf9-c1c9-4a36-a0a5-99a7cb961dcf] received connection request\n2025-10-28 15:59:42.758 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][116e9cf9-c1c9-4a36-a0a5-99a7cb961dcf] socks forwarding established\n2025-10-28 15:59:42.784 [info] [command][40f75987-9d78-4ad5-85e0-982dd96ce5f8] Process exited with code 0\n2025-10-28 15:59:42.784 [info] [command][40f75987-9d78-4ad5-85e0-982dd96ce5f8] Socket close event received\n2025-10-28 15:59:42.784 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][116e9cf9-c1c9-4a36-a0a5-99a7cb961dcf] socks connection closed\n2025-10-28 16:00:42.785 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:00:42.788 [info] [command][f42a7ea6-b0da-4f7e-9460-36de5fea967d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f42a7ea6-b0da-4f7e-9460-36de5fea967d""}\n2025-10-28 16:00:42.788 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][dc398136-f87e-4490-942b-473e1e4ac257] received connection request\n2025-10-28 16:00:42.829 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dc398136-f87e-4490-942b-473e1e4ac257] socks forwarding established\n2025-10-28 16:00:42.863 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dc398136-f87e-4490-942b-473e1e4ac257] socks connection closed\n2025-10-28 16:00:42.863 [info] [command][f42a7ea6-b0da-4f7e-9460-36de5fea967d] Process exited with code 0\n2025-10-28 16:00:42.863 [info] [command][f42a7ea6-b0da-4f7e-9460-36de5fea967d] Socket close event received\n2025-10-28 16:01:42.865 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:01:42.867 [info] [command][50f4e135-a5f2-4699-ae5f-35fec34d5e5c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""50f4e135-a5f2-4699-ae5f-35fec34d5e5c""}\n2025-10-28 16:01:42.867 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][56a82113-10d4-4ab3-9ec1-84bf90165f84] received connection request\n2025-10-28 16:01:42.909 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][56a82113-10d4-4ab3-9ec1-84bf90165f84] socks forwarding established\n2025-10-28 16:01:42.948 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][56a82113-10d4-4ab3-9ec1-84bf90165f84] socks connection closed\n2025-10-28 16:01:42.948 [info] [command][50f4e135-a5f2-4699-ae5f-35fec34d5e5c] Process exited with code 0\n2025-10-28 16:01:42.948 [info] [command][50f4e135-a5f2-4699-ae5f-35fec34d5e5c] Socket close event received\n2025-10-28 16:02:42.949 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:02:42.951 [info] [command][6f50cde6-93df-48b6-abf8-ebae845aa35f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6f50cde6-93df-48b6-abf8-ebae845aa35f""}\n2025-10-28 16:02:42.952 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][18e41a79-04de-4317-82a2-e18147f2f7dc] received connection request\n2025-10-28 16:02:42.977 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][18e41a79-04de-4317-82a2-e18147f2f7dc] socks forwarding established\n2025-10-28 16:02:43.003 [info] [command][6f50cde6-93df-48b6-abf8-ebae845aa35f] Process exited with code 0\n2025-10-28 16:02:43.004 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][18e41a79-04de-4317-82a2-e18147f2f7dc] socks connection closed\n2025-10-28 16:02:43.004 [info] [command][6f50cde6-93df-48b6-abf8-ebae845aa35f] Socket close event received\n2025-10-28 16:03:43.010 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:03:43.012 [info] [command][bace39d5-568f-4106-bbf8-fda5df726849] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bace39d5-568f-4106-bbf8-fda5df726849""}\n2025-10-28 16:03:43.012 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5ca73c1c-92c9-4d60-b195-6633febaf616] received connection request\n2025-10-28 16:03:43.048 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5ca73c1c-92c9-4d60-b195-6633febaf616] socks forwarding established\n2025-10-28 16:03:43.085 [info] [command][bace39d5-568f-4106-bbf8-fda5df726849] Process exited with code 0\n2025-10-28 16:03:43.085 [info] [command][bace39d5-568f-4106-bbf8-fda5df726849] Socket close event received\n2025-10-28 16:03:43.085 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5ca73c1c-92c9-4d60-b195-6633febaf616] socks connection closed\n2025-10-28 16:04:43.089 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:04:43.093 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][75df388d-a8e8-4fba-ae73-13cba3715717] received connection request\n2025-10-28 16:04:43.093 [info] [command][92b1f0b5-9234-4e63-975d-7ec9dcb8c194] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""92b1f0b5-9234-4e63-975d-7ec9dcb8c194""}\n2025-10-28 16:04:43.134 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][75df388d-a8e8-4fba-ae73-13cba3715717] socks forwarding established\n2025-10-28 16:04:43.196 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][75df388d-a8e8-4fba-ae73-13cba3715717] socks connection closed\n2025-10-28 16:04:43.196 [info] [command][92b1f0b5-9234-4e63-975d-7ec9dcb8c194] Process exited with code 0\n2025-10-28 16:04:43.196 [info] [command][92b1f0b5-9234-4e63-975d-7ec9dcb8c194] Socket close event received\n2025-10-28 16:05:43.200 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:05:43.202 [info] [command][460391b6-8a4b-44c7-ad95-74c32f4de707] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""460391b6-8a4b-44c7-ad95-74c32f4de707""}\n2025-10-28 16:05:43.203 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2b37e222-7c55-4d80-85bc-1da3175c5c9d] received connection request\n2025-10-28 16:05:43.225 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2b37e222-7c55-4d80-85bc-1da3175c5c9d] socks forwarding established\n2025-10-28 16:05:43.252 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2b37e222-7c55-4d80-85bc-1da3175c5c9d] socks connection closed\n2025-10-28 16:05:43.252 [info] [command][460391b6-8a4b-44c7-ad95-74c32f4de707] Process exited with code 0\n2025-10-28 16:05:43.252 [info] [command][460391b6-8a4b-44c7-ad95-74c32f4de707] Socket close event received\n2025-10-28 16:06:43.255 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:06:43.257 [info] [command][20234a6c-f5ed-4b89-a11f-428f847dedcc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""20234a6c-f5ed-4b89-a11f-428f847dedcc""}\n2025-10-28 16:06:43.258 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7d7f7b47-ed37-4c79-acd8-256099a35189] received connection request\n2025-10-28 16:06:43.282 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7d7f7b47-ed37-4c79-acd8-256099a35189] socks forwarding established\n2025-10-28 16:06:43.310 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7d7f7b47-ed37-4c79-acd8-256099a35189] socks connection closed\n2025-10-28 16:06:43.310 [info] [command][20234a6c-f5ed-4b89-a11f-428f847dedcc] Process exited with code 0\n2025-10-28 16:06:43.310 [info] [command][20234a6c-f5ed-4b89-a11f-428f847dedcc] Socket close event received\n2025-10-28 16:07:43.313 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:07:43.316 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2ac38555-f19a-449e-819c-3272f3463c27] received connection request\n2025-10-28 16:07:43.316 [info] [command][29f5ae85-4f07-490c-bd4b-205922c39e14] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""29f5ae85-4f07-490c-bd4b-205922c39e14""}\n2025-10-28 16:07:43.341 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2ac38555-f19a-449e-819c-3272f3463c27] socks forwarding established\n2025-10-28 16:07:43.368 [info] [command][29f5ae85-4f07-490c-bd4b-205922c39e14] Process exited with code 0\n2025-10-28 16:07:43.368 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2ac38555-f19a-449e-819c-3272f3463c27] socks connection closed\n2025-10-28 16:07:43.368 [info] [command][29f5ae85-4f07-490c-bd4b-205922c39e14] Socket close event received\n2025-10-28 16:08:43.372 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:08:43.374 [info] [command][ad0ff82a-4cb9-435f-8d25-38a304fd9e56] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ad0ff82a-4cb9-435f-8d25-38a304fd9e56""}\n2025-10-28 16:08:43.375 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][93d5fdc2-fb9f-45bb-bc0c-c722d1eab5e8] received connection request\n2025-10-28 16:08:43.411 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][93d5fdc2-fb9f-45bb-bc0c-c722d1eab5e8] socks forwarding established\n2025-10-28 16:08:43.445 [info] [command][ad0ff82a-4cb9-435f-8d25-38a304fd9e56] Process exited with code 0\n2025-10-28 16:08:43.445 [info] [command][ad0ff82a-4cb9-435f-8d25-38a304fd9e56] Socket close event received\n2025-10-28 16:08:43.446 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][93d5fdc2-fb9f-45bb-bc0c-c722d1eab5e8] socks connection closed\n2025-10-28 16:09:43.448 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:09:43.451 [info] [command][00026fe6-60bb-4cd8-bbc0-0a50ee422d14] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""00026fe6-60bb-4cd8-bbc0-0a50ee422d14""}\n2025-10-28 16:09:43.452 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4dbda9be-5e0a-4961-b776-6f7381e99e7a] received connection request\n2025-10-28 16:09:43.486 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4dbda9be-5e0a-4961-b776-6f7381e99e7a] socks forwarding established\n2025-10-28 16:09:43.512 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4dbda9be-5e0a-4961-b776-6f7381e99e7a] socks connection closed\n2025-10-28 16:09:43.513 [info] [command][00026fe6-60bb-4cd8-bbc0-0a50ee422d14] Process exited with code 0\n2025-10-28 16:09:43.513 [info] [command][00026fe6-60bb-4cd8-bbc0-0a50ee422d14] Socket close event received\n2025-10-28 16:10:43.515 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:10:43.517 [info] [command][a7d7b8ca-7739-4e11-9760-c1efc32d941b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a7d7b8ca-7739-4e11-9760-c1efc32d941b""}\n2025-10-28 16:10:43.517 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7e34bc28-6ce6-4ade-a98c-e9e368a1ca37] received connection request\n2025-10-28 16:10:43.539 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7e34bc28-6ce6-4ade-a98c-e9e368a1ca37] socks forwarding established\n2025-10-28 16:10:43.570 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7e34bc28-6ce6-4ade-a98c-e9e368a1ca37] socks connection closed\n2025-10-28 16:10:43.570 [info] [command][a7d7b8ca-7739-4e11-9760-c1efc32d941b] Process exited with code 0\n2025-10-28 16:10:43.570 [info] [command][a7d7b8ca-7739-4e11-9760-c1efc32d941b] Socket close event received\n2025-10-28 16:11:43.572 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:11:43.573 [info] [command][2d77582f-204d-43f4-a3e8-0a809fcb2d4e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2d77582f-204d-43f4-a3e8-0a809fcb2d4e""}\n2025-10-28 16:11:43.573 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c5a8a430-6cea-45ac-999b-5c34fba050b4] received connection request\n2025-10-28 16:11:43.596 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c5a8a430-6cea-45ac-999b-5c34fba050b4] socks forwarding established\n2025-10-28 16:11:43.624 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c5a8a430-6cea-45ac-999b-5c34fba050b4] socks connection closed\n2025-10-28 16:11:43.624 [info] [command][2d77582f-204d-43f4-a3e8-0a809fcb2d4e] Process exited with code 0\n2025-10-28 16:11:43.624 [info] [command][2d77582f-204d-43f4-a3e8-0a809fcb2d4e] Socket close event received\n2025-10-28 16:12:43.628 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:12:43.630 [info] [command][30825ec6-4779-4f78-9bee-af6cb482ed9b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""30825ec6-4779-4f78-9bee-af6cb482ed9b""}\n2025-10-28 16:12:43.631 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0191a800-02b9-4a20-a1e9-b5565f4aa01c] received connection request\n2025-10-28 16:12:43.667 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0191a800-02b9-4a20-a1e9-b5565f4aa01c] socks forwarding established\n2025-10-28 16:12:43.705 [info] [command][30825ec6-4779-4f78-9bee-af6cb482ed9b] Process exited with code 0\n2025-10-28 16:12:43.705 [info] [command][30825ec6-4779-4f78-9bee-af6cb482ed9b] Socket close event received\n2025-10-28 16:12:43.706 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0191a800-02b9-4a20-a1e9-b5565f4aa01c] socks connection closed\n2025-10-28 16:13:43.709 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:13:43.710 [info] [command][0acdd49e-b11a-45c7-abb0-80ccae122715] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0acdd49e-b11a-45c7-abb0-80ccae122715""}\n2025-10-28 16:13:43.711 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][27a7f612-bc40-4059-a680-d64994572518] received connection request\n2025-10-28 16:13:43.735 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][27a7f612-bc40-4059-a680-d64994572518] socks forwarding established\n2025-10-28 16:13:43.778 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][27a7f612-bc40-4059-a680-d64994572518] socks connection closed\n2025-10-28 16:13:43.778 [info] [command][0acdd49e-b11a-45c7-abb0-80ccae122715] Process exited with code 0\n2025-10-28 16:13:43.778 [info] [command][0acdd49e-b11a-45c7-abb0-80ccae122715] Socket close event received\n2025-10-28 16:14:43.778 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:14:43.780 [info] [command][10803069-5409-4972-ba04-17852ddabe2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""10803069-5409-4972-ba04-17852ddabe2e""}\n2025-10-28 16:14:43.780 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2a37cdea-858d-495b-a382-a4605607ed21] received connection request\n2025-10-28 16:14:43.803 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2a37cdea-858d-495b-a382-a4605607ed21] socks forwarding established\n2025-10-28 16:14:43.828 [info] [command][10803069-5409-4972-ba04-17852ddabe2e] Process exited with code 0\n2025-10-28 16:14:43.828 [info] [command][10803069-5409-4972-ba04-17852ddabe2e] Socket close event received\n2025-10-28 16:14:43.829 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2a37cdea-858d-495b-a382-a4605607ed21] socks connection closed\n2025-10-28 16:15:43.832 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:15:43.835 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][bfb2d2d9-5f2f-462c-9a50-56c7032e05dc] received connection request\n2025-10-28 16:15:43.836 [info] [command][328285bc-a40d-4584-a6ed-5225ef8e5551] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""328285bc-a40d-4584-a6ed-5225ef8e5551""}\n2025-10-28 16:15:43.861 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bfb2d2d9-5f2f-462c-9a50-56c7032e05dc] socks forwarding established\n2025-10-28 16:15:43.899 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bfb2d2d9-5f2f-462c-9a50-56c7032e05dc] socks connection closed\n2025-10-28 16:15:43.900 [info] [command][328285bc-a40d-4584-a6ed-5225ef8e5551] Process exited with code 0\n2025-10-28 16:15:43.900 [info] [command][328285bc-a40d-4584-a6ed-5225ef8e5551] Socket close event received\n2025-10-28 16:16:43.905 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:16:43.909 [info] [command][e6967297-154e-4d4e-858d-8c9fba9c6007] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e6967297-154e-4d4e-858d-8c9fba9c6007""}\n2025-10-28 16:16:43.910 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a9cef60f-f30c-426d-a211-5edfe3564c18] received connection request\n2025-10-28 16:16:43.933 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a9cef60f-f30c-426d-a211-5edfe3564c18] socks forwarding established\n2025-10-28 16:16:43.961 [info] [command][e6967297-154e-4d4e-858d-8c9fba9c6007] Process exited with code 0\n2025-10-28 16:16:43.961 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a9cef60f-f30c-426d-a211-5edfe3564c18] socks connection closed\n2025-10-28 16:16:43.965 [info] [command][e6967297-154e-4d4e-858d-8c9fba9c6007] Socket close event received\n2025-10-28 16:17:43.961 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:17:43.962 [info] [command][bcaeb6eb-835a-4c84-b3e2-3840cf50a143] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bcaeb6eb-835a-4c84-b3e2-3840cf50a143""}\n2025-10-28 16:17:43.963 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5e626107-4c8b-4a30-a95e-13432fb8a8ee] received connection request\n2025-10-28 16:17:43.998 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5e626107-4c8b-4a30-a95e-13432fb8a8ee] socks forwarding established\n2025-10-28 16:17:44.024 [info] [command][bcaeb6eb-835a-4c84-b3e2-3840cf50a143] Process exited with code 0\n2025-10-28 16:17:44.024 [info] [command][bcaeb6eb-835a-4c84-b3e2-3840cf50a143] Socket close event received\n2025-10-28 16:17:44.024 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5e626107-4c8b-4a30-a95e-13432fb8a8ee] socks connection closed\n2025-10-28 16:18:44.029 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:18:44.031 [info] [command][b4a9415e-cc24-4309-9594-166003830d65] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b4a9415e-cc24-4309-9594-166003830d65""}\n2025-10-28 16:18:44.032 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f9b58e9e-d9a0-4f21-851f-315186283fdd] received connection request\n2025-10-28 16:18:44.056 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f9b58e9e-d9a0-4f21-851f-315186283fdd] socks forwarding established\n2025-10-28 16:18:44.089 [info] [command][b4a9415e-cc24-4309-9594-166003830d65] Process exited with code 0\n2025-10-28 16:18:44.089 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f9b58e9e-d9a0-4f21-851f-315186283fdd] socks connection closed\n2025-10-28 16:18:44.089 [info] [command][b4a9415e-cc24-4309-9594-166003830d65] Socket close event received\n2025-10-28 16:19:44.093 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:19:44.095 [info] [command][cfa1209e-dd97-4455-86ec-682cfb966364] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cfa1209e-dd97-4455-86ec-682cfb966364""}\n2025-10-28 16:19:44.096 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][dc8d5fec-3890-48bb-b250-1975ffd8e08d] received connection request\n2025-10-28 16:19:44.129 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dc8d5fec-3890-48bb-b250-1975ffd8e08d] socks forwarding established\n2025-10-28 16:19:44.178 [info] [command][cfa1209e-dd97-4455-86ec-682cfb966364] Process exited with code 0\n2025-10-28 16:19:44.179 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dc8d5fec-3890-48bb-b250-1975ffd8e08d] socks connection closed\n2025-10-28 16:19:44.179 [info] [command][cfa1209e-dd97-4455-86ec-682cfb966364] Socket close event received\n2025-10-28 16:20:44.183 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:20:44.184 [info] [command][b3ec26dd-5fee-45c0-89c3-f7cd5aca2fe3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b3ec26dd-5fee-45c0-89c3-f7cd5aca2fe3""}\n2025-10-28 16:20:44.184 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][82cc35a0-796c-47c9-b85c-ddce2085b859] received connection request\n2025-10-28 16:20:44.208 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][82cc35a0-796c-47c9-b85c-ddce2085b859] socks forwarding established\n2025-10-28 16:20:44.237 [info] [command][b3ec26dd-5fee-45c0-89c3-f7cd5aca2fe3] Process exited with code 0\n2025-10-28 16:20:44.238 [info] [command][b3ec26dd-5fee-45c0-89c3-f7cd5aca2fe3] Socket close event received\n2025-10-28 16:20:44.238 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][82cc35a0-796c-47c9-b85c-ddce2085b859] socks connection closed\n2025-10-28 16:21:44.244 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:21:44.245 [info] [command][c98c133d-27a7-4a92-9def-4984526374e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c98c133d-27a7-4a92-9def-4984526374e7""}\n2025-10-28 16:21:44.245 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ee0e2293-1d33-4db7-8375-ee475efee815] received connection request\n2025-10-28 16:21:44.268 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ee0e2293-1d33-4db7-8375-ee475efee815] socks forwarding established\n2025-10-28 16:21:44.303 [info] [command][c98c133d-27a7-4a92-9def-4984526374e7] Process exited with code 0\n2025-10-28 16:21:44.303 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ee0e2293-1d33-4db7-8375-ee475efee815] socks connection closed\n2025-10-28 16:21:44.303 [info] [command][c98c133d-27a7-4a92-9def-4984526374e7] Socket close event received\n2025-10-28 16:22:44.309 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:22:44.311 [info] [command][29f32f25-214d-4687-928f-87b7f0a04e10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""29f32f25-214d-4687-928f-87b7f0a04e10""}\n2025-10-28 16:22:44.312 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cf0e900f-6c86-4b97-a5e2-aba1be8f22b2] received connection request\n2025-10-28 16:22:44.340 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf0e900f-6c86-4b97-a5e2-aba1be8f22b2] socks forwarding established\n2025-10-28 16:22:44.369 [info] [command][29f32f25-214d-4687-928f-87b7f0a04e10] Process exited with code 0\n2025-10-28 16:22:44.369 [info] [command][29f32f25-214d-4687-928f-87b7f0a04e10] Socket close event received\n2025-10-28 16:22:44.370 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf0e900f-6c86-4b97-a5e2-aba1be8f22b2] socks connection closed\n2025-10-28 16:23:44.374 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:23:44.376 [info] [command][6c22c8ef-4059-4f1d-b789-e73810566b3a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6c22c8ef-4059-4f1d-b789-e73810566b3a""}\n2025-10-28 16:23:44.377 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d50a3ea6-aaca-4506-93a3-0ead240aca95] received connection request\n2025-10-28 16:23:44.400 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d50a3ea6-aaca-4506-93a3-0ead240aca95] socks forwarding established\n2025-10-28 16:23:44.426 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d50a3ea6-aaca-4506-93a3-0ead240aca95] socks connection closed\n2025-10-28 16:23:44.426 [info] [command][6c22c8ef-4059-4f1d-b789-e73810566b3a] Process exited with code 0\n2025-10-28 16:23:44.426 [info] [command][6c22c8ef-4059-4f1d-b789-e73810566b3a] Socket close event received\n2025-10-28 16:24:44.431 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:24:44.433 [info] [command][8d176719-c5ea-420d-ab54-327eeecfaee8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8d176719-c5ea-420d-ab54-327eeecfaee8""}\n2025-10-28 16:24:44.434 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][909d4d56-e86c-45dd-a3e9-cf47511905c6] received connection request\n2025-10-28 16:24:44.459 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][909d4d56-e86c-45dd-a3e9-cf47511905c6] socks forwarding established\n2025-10-28 16:24:44.486 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][909d4d56-e86c-45dd-a3e9-cf47511905c6] socks connection closed\n2025-10-28 16:24:44.486 [info] [command][8d176719-c5ea-420d-ab54-327eeecfaee8] Process exited with code 0\n2025-10-28 16:24:44.486 [info] [command][8d176719-c5ea-420d-ab54-327eeecfaee8] Socket close event received\n2025-10-28 16:25:44.486 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:25:44.489 [info] [command][08763712-a09e-401c-8c9e-45f3906c7c1b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""08763712-a09e-401c-8c9e-45f3906c7c1b""}\n2025-10-28 16:25:44.489 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][07945308-68e1-49ae-95c2-51fb3201a381] received connection request\n2025-10-28 16:25:44.514 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][07945308-68e1-49ae-95c2-51fb3201a381] socks forwarding established\n2025-10-28 16:25:44.558 [info] [command][08763712-a09e-401c-8c9e-45f3906c7c1b] Process exited with code 0\n2025-10-28 16:25:44.558 [info] [command][08763712-a09e-401c-8c9e-45f3906c7c1b] Socket close event received\n2025-10-28 16:25:44.561 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][07945308-68e1-49ae-95c2-51fb3201a381] socks connection closed\n2025-10-28 16:26:44.563 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:26:44.565 [info] [command][2a1a145b-fc7a-4a74-bbe6-88d3bf92b04f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2a1a145b-fc7a-4a74-bbe6-88d3bf92b04f""}\n2025-10-28 16:26:44.566 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][746650c5-1e68-49c5-9ec0-df4bbc702c42] received connection request\n2025-10-28 16:26:44.588 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][746650c5-1e68-49c5-9ec0-df4bbc702c42] socks forwarding established\n2025-10-28 16:26:44.613 [info] [command][2a1a145b-fc7a-4a74-bbe6-88d3bf92b04f] Process exited with code 0\n2025-10-28 16:26:44.613 [info] [command][2a1a145b-fc7a-4a74-bbe6-88d3bf92b04f] Socket close event received\n2025-10-28 16:26:44.613 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][746650c5-1e68-49c5-9ec0-df4bbc702c42] socks connection closed\n2025-10-28 16:27:44.618 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:27:44.620 [info] [command][7176b62b-ff6c-4434-aee4-acbf6ce8ffd4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7176b62b-ff6c-4434-aee4-acbf6ce8ffd4""}\n2025-10-28 16:27:44.621 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][681dfa8a-7f08-418d-97b4-7ec26458023b] received connection request\n2025-10-28 16:27:44.644 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][681dfa8a-7f08-418d-97b4-7ec26458023b] socks forwarding established\n2025-10-28 16:27:44.669 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][681dfa8a-7f08-418d-97b4-7ec26458023b] socks connection closed\n2025-10-28 16:27:44.670 [info] [command][7176b62b-ff6c-4434-aee4-acbf6ce8ffd4] Process exited with code 0\n2025-10-28 16:27:44.670 [info] [command][7176b62b-ff6c-4434-aee4-acbf6ce8ffd4] Socket close event received\n2025-10-28 16:28:44.671 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:28:44.673 [info] [command][6f5b30d3-8278-4155-804c-194f549c5269] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6f5b30d3-8278-4155-804c-194f549c5269""}\n2025-10-28 16:28:44.673 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fa1d2f44-97a9-4e25-b863-a6952fcff6ea] received connection request\n2025-10-28 16:28:44.728 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fa1d2f44-97a9-4e25-b863-a6952fcff6ea] socks forwarding established\n2025-10-28 16:28:44.769 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fa1d2f44-97a9-4e25-b863-a6952fcff6ea] socks connection closed\n2025-10-28 16:28:44.769 [info] [command][6f5b30d3-8278-4155-804c-194f549c5269] Process exited with code 0\n2025-10-28 16:28:44.769 [info] [command][6f5b30d3-8278-4155-804c-194f549c5269] Socket close event received\n2025-10-28 16:29:44.778 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:29:44.779 [info] [command][11505042-2cb1-46db-8d5d-87730fc15d76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""11505042-2cb1-46db-8d5d-87730fc15d76""}\n2025-10-28 16:29:44.779 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6030f14d-ad35-4dbb-a85a-a0e718872484] received connection request\n2025-10-28 16:29:44.804 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6030f14d-ad35-4dbb-a85a-a0e718872484] socks forwarding established\n2025-10-28 16:29:44.832 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6030f14d-ad35-4dbb-a85a-a0e718872484] socks connection closed\n2025-10-28 16:29:44.833 [info] [command][11505042-2cb1-46db-8d5d-87730fc15d76] Process exited with code 0\n2025-10-28 16:29:44.833 [info] [command][11505042-2cb1-46db-8d5d-87730fc15d76] Socket close event received\n2025-10-28 16:30:44.837 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:30:44.839 [info] [command][eb9ddc23-e9a3-428f-8d46-dd719b45333d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eb9ddc23-e9a3-428f-8d46-dd719b45333d""}\n2025-10-28 16:30:44.839 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7e92f11c-0ead-4b41-ba8d-0bf44f8d7fc2] received connection request\n2025-10-28 16:30:44.862 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7e92f11c-0ead-4b41-ba8d-0bf44f8d7fc2] socks forwarding established\n2025-10-28 16:30:44.891 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7e92f11c-0ead-4b41-ba8d-0bf44f8d7fc2] socks connection closed\n2025-10-28 16:30:44.891 [info] [command][eb9ddc23-e9a3-428f-8d46-dd719b45333d] Process exited with code 0\n2025-10-28 16:30:44.891 [info] [command][eb9ddc23-e9a3-428f-8d46-dd719b45333d] Socket close event received\n2025-10-28 16:31:44.897 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:31:44.899 [info] [command][1bb290c2-9c3c-4e4d-a996-a4b866c6f2e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1bb290c2-9c3c-4e4d-a996-a4b866c6f2e2""}\n2025-10-28 16:31:44.900 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][afc3de16-8b38-4bbd-989b-98a773f0162e] received connection request\n2025-10-28 16:31:44.933 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][afc3de16-8b38-4bbd-989b-98a773f0162e] socks forwarding established\n2025-10-28 16:31:44.967 [info] [command][1bb290c2-9c3c-4e4d-a996-a4b866c6f2e2] Process exited with code 0\n2025-10-28 16:31:44.967 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][afc3de16-8b38-4bbd-989b-98a773f0162e] socks connection closed\n2025-10-28 16:31:44.967 [info] [command][1bb290c2-9c3c-4e4d-a996-a4b866c6f2e2] Socket close event received\n2025-10-28 16:32:44.975 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:32:44.978 [info] [command][aa5c8805-939e-483d-a0b6-29a6bf5303b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""aa5c8805-939e-483d-a0b6-29a6bf5303b6""}\n2025-10-28 16:32:44.978 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cb3fbeb0-71cd-42cb-8375-278514acc2a1] received connection request\n2025-10-28 16:32:45.001 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cb3fbeb0-71cd-42cb-8375-278514acc2a1] socks forwarding established\n2025-10-28 16:32:45.027 [info] [command][aa5c8805-939e-483d-a0b6-29a6bf5303b6] Process exited with code 0\n2025-10-28 16:32:45.027 [info] [command][aa5c8805-939e-483d-a0b6-29a6bf5303b6] Socket close event received\n2025-10-28 16:32:45.028 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cb3fbeb0-71cd-42cb-8375-278514acc2a1] socks connection closed\n2025-10-28 16:33:45.030 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:33:45.032 [info] [command][95fe135e-671a-40af-bfe8-59f7ef770b47] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""95fe135e-671a-40af-bfe8-59f7ef770b47""}\n2025-10-28 16:33:45.032 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][93b73416-756b-46b8-8d5f-3a8574320f5c] received connection request\n2025-10-28 16:33:45.070 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][93b73416-756b-46b8-8d5f-3a8574320f5c] socks forwarding established\n2025-10-28 16:33:45.109 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][93b73416-756b-46b8-8d5f-3a8574320f5c] socks connection closed\n2025-10-28 16:33:45.109 [info] [command][95fe135e-671a-40af-bfe8-59f7ef770b47] Process exited with code 0\n2025-10-28 16:33:45.109 [info] [command][95fe135e-671a-40af-bfe8-59f7ef770b47] Socket close event received\n2025-10-28 16:34:45.119 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:34:45.122 [info] [command][7c977d01-a944-4efd-9946-0827e1794dcf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7c977d01-a944-4efd-9946-0827e1794dcf""}\n2025-10-28 16:34:45.123 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1695ca02-d9f8-4f4c-b919-3d2d7c23c291] received connection request\n2025-10-28 16:34:45.150 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1695ca02-d9f8-4f4c-b919-3d2d7c23c291] socks forwarding established\n2025-10-28 16:34:45.177 [info] [command][7c977d01-a944-4efd-9946-0827e1794dcf] Process exited with code 0\n2025-10-28 16:34:45.177 [info] [command][7c977d01-a944-4efd-9946-0827e1794dcf] Socket close event received\n2025-10-28 16:34:45.178 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1695ca02-d9f8-4f4c-b919-3d2d7c23c291] socks connection closed\n2025-10-28 16:35:45.186 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:35:45.188 [info] [command][f311d8ff-55ea-4c04-be07-d936150ca9c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f311d8ff-55ea-4c04-be07-d936150ca9c8""}\n2025-10-28 16:35:45.188 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][53c439fb-325e-457b-ac12-060260694e56] received connection request\n2025-10-28 16:35:45.210 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][53c439fb-325e-457b-ac12-060260694e56] socks forwarding established\n2025-10-28 16:35:45.238 [info] [command][f311d8ff-55ea-4c04-be07-d936150ca9c8] Process exited with code 0\n2025-10-28 16:35:45.238 [info] [command][f311d8ff-55ea-4c04-be07-d936150ca9c8] Socket close event received\n2025-10-28 16:35:45.243 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][53c439fb-325e-457b-ac12-060260694e56] socks connection closed\n2025-10-28 16:36:45.246 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:36:45.249 [info] [command][abec88c8-d9e2-433c-8e89-35b509356c1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""abec88c8-d9e2-433c-8e89-35b509356c1e""}\n2025-10-28 16:36:45.250 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d2dc6576-3bd1-441f-8cff-08d972a03429] received connection request\n2025-10-28 16:36:45.275 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d2dc6576-3bd1-441f-8cff-08d972a03429] socks forwarding established\n2025-10-28 16:36:45.301 [info] [command][abec88c8-d9e2-433c-8e89-35b509356c1e] Process exited with code 0\n2025-10-28 16:36:45.301 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d2dc6576-3bd1-441f-8cff-08d972a03429] socks connection closed\n2025-10-28 16:36:45.301 [info] [command][abec88c8-d9e2-433c-8e89-35b509356c1e] Socket close event received\n2025-10-28 16:37:45.310 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:37:45.313 [info] [command][0a70d946-a2ca-47d1-87b4-31becaf3a598] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0a70d946-a2ca-47d1-87b4-31becaf3a598""}\n2025-10-28 16:37:45.314 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][15fb0ed0-3ed9-426b-a2f4-7e5d1938aac7] received connection request\n2025-10-28 16:37:45.338 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][15fb0ed0-3ed9-426b-a2f4-7e5d1938aac7] socks forwarding established\n2025-10-28 16:37:45.363 [info] [command][0a70d946-a2ca-47d1-87b4-31becaf3a598] Process exited with code 0\n2025-10-28 16:37:45.363 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][15fb0ed0-3ed9-426b-a2f4-7e5d1938aac7] socks connection closed\n2025-10-28 16:37:45.363 [info] [command][0a70d946-a2ca-47d1-87b4-31becaf3a598] Socket close event received\n2025-10-28 16:38:45.373 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:38:45.374 [info] [command][2c7ce91f-536d-4296-8293-f59df9b1d748] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2c7ce91f-536d-4296-8293-f59df9b1d748""}\n2025-10-28 16:38:45.374 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a06ad692-216c-4ca7-9427-f9ee3aa058b3] received connection request\n2025-10-28 16:38:45.396 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a06ad692-216c-4ca7-9427-f9ee3aa058b3] socks forwarding established\n2025-10-28 16:38:45.422 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a06ad692-216c-4ca7-9427-f9ee3aa058b3] socks connection closed\n2025-10-28 16:38:45.422 [info] [command][2c7ce91f-536d-4296-8293-f59df9b1d748] Process exited with code 0\n2025-10-28 16:38:45.422 [info] [command][2c7ce91f-536d-4296-8293-f59df9b1d748] Socket close event received\n2025-10-28 16:39:45.428 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:39:45.431 [info] [command][152156db-4d82-47e1-9a3b-99c71f8e1ae0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""152156db-4d82-47e1-9a3b-99c71f8e1ae0""}\n2025-10-28 16:39:45.431 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][424f6e59-cfb3-4d83-ab04-d3b75385e020] received connection request\n2025-10-28 16:39:45.479 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][424f6e59-cfb3-4d83-ab04-d3b75385e020] socks forwarding established\n2025-10-28 16:39:45.508 [info] [command][152156db-4d82-47e1-9a3b-99c71f8e1ae0] Process exited with code 0\n2025-10-28 16:39:45.508 [info] [command][152156db-4d82-47e1-9a3b-99c71f8e1ae0] Socket close event received\n2025-10-28 16:39:45.508 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][424f6e59-cfb3-4d83-ab04-d3b75385e020] socks connection closed\n2025-10-28 16:40:45.514 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:40:45.517 [info] [command][7a946c68-67c8-4ecb-806f-76ec9c766a36] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7a946c68-67c8-4ecb-806f-76ec9c766a36""}\n2025-10-28 16:40:45.518 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d435b544-beb1-45cd-8d1a-f4e863e5196d] received connection request\n2025-10-28 16:40:45.542 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d435b544-beb1-45cd-8d1a-f4e863e5196d] socks forwarding established\n2025-10-28 16:40:45.568 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d435b544-beb1-45cd-8d1a-f4e863e5196d] socks connection closed\n2025-10-28 16:40:45.569 [info] [command][7a946c68-67c8-4ecb-806f-76ec9c766a36] Process exited with code 0\n2025-10-28 16:40:45.569 [info] [command][7a946c68-67c8-4ecb-806f-76ec9c766a36] Socket close event received\n2025-10-28 16:41:45.575 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:41:45.578 [info] [command][53bed62c-8f1b-4692-bc89-251cdb09e129] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""53bed62c-8f1b-4692-bc89-251cdb09e129""}\n2025-10-28 16:41:45.579 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c2f10ab0-d7e8-4a80-aa51-622bbee953d4] received connection request\n2025-10-28 16:41:45.609 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c2f10ab0-d7e8-4a80-aa51-622bbee953d4] socks forwarding established\n2025-10-28 16:41:45.639 [info] [command][53bed62c-8f1b-4692-bc89-251cdb09e129] Process exited with code 0\n2025-10-28 16:41:45.639 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c2f10ab0-d7e8-4a80-aa51-622bbee953d4] socks connection closed\n2025-10-28 16:41:45.639 [info] [command][53bed62c-8f1b-4692-bc89-251cdb09e129] Socket close event received\n2025-10-28 16:42:45.639 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:42:45.641 [info] [command][075b3dd5-bde8-4de6-8f47-0d747dca3cee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""075b3dd5-bde8-4de6-8f47-0d747dca3cee""}\n2025-10-28 16:42:45.641 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ceb1db85-0530-4ca8-b847-64cd0d4caf9c] received connection request\n2025-10-28 16:42:45.666 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ceb1db85-0530-4ca8-b847-64cd0d4caf9c] socks forwarding established\n2025-10-28 16:42:45.692 [info] [command][075b3dd5-bde8-4de6-8f47-0d747dca3cee] Process exited with code 0\n2025-10-28 16:42:45.693 [info] [command][075b3dd5-bde8-4de6-8f47-0d747dca3cee] Socket close event received\n2025-10-28 16:42:45.694 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ceb1db85-0530-4ca8-b847-64cd0d4caf9c] socks connection closed\n2025-10-28 16:43:45.694 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:43:45.695 [info] [command][ecc11102-8873-4ce2-8a8d-ee5e5578443e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ecc11102-8873-4ce2-8a8d-ee5e5578443e""}\n2025-10-28 16:43:45.696 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][45498b2c-f9df-4645-af91-c6108e5eb709] received connection request\n2025-10-28 16:43:45.726 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][45498b2c-f9df-4645-af91-c6108e5eb709] socks forwarding established\n2025-10-28 16:43:45.752 [info] [command][ecc11102-8873-4ce2-8a8d-ee5e5578443e] Process exited with code 0\n2025-10-28 16:43:45.752 [info] [command][ecc11102-8873-4ce2-8a8d-ee5e5578443e] Socket close event received\n2025-10-28 16:43:45.753 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][45498b2c-f9df-4645-af91-c6108e5eb709] socks connection closed\n2025-10-28 16:44:45.760 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:44:45.762 [info] [command][ee8f1b3f-9825-4d8b-abb0-fde3608f9acc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ee8f1b3f-9825-4d8b-abb0-fde3608f9acc""}\n2025-10-28 16:44:45.763 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4d79f341-6330-491a-99e3-25a52ac92705] received connection request\n2025-10-28 16:44:45.787 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4d79f341-6330-491a-99e3-25a52ac92705] socks forwarding established\n2025-10-28 16:44:45.814 [info] [command][ee8f1b3f-9825-4d8b-abb0-fde3608f9acc] Process exited with code 0\n2025-10-28 16:44:45.815 [info] [command][ee8f1b3f-9825-4d8b-abb0-fde3608f9acc] Socket close event received\n2025-10-28 16:44:45.815 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4d79f341-6330-491a-99e3-25a52ac92705] socks connection closed\n2025-10-28 16:45:45.824 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:45:45.827 [info] [command][89afbf44-611b-420a-9800-798c3d7315b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""89afbf44-611b-420a-9800-798c3d7315b5""}\n2025-10-28 16:45:45.828 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ede1cf75-9823-4d19-a865-21bdf300c592] received connection request\n2025-10-28 16:45:45.853 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ede1cf75-9823-4d19-a865-21bdf300c592] socks forwarding established\n2025-10-28 16:45:45.879 [info] [command][89afbf44-611b-420a-9800-798c3d7315b5] Process exited with code 0\n2025-10-28 16:45:45.880 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ede1cf75-9823-4d19-a865-21bdf300c592] socks connection closed\n2025-10-28 16:45:45.880 [info] [command][89afbf44-611b-420a-9800-798c3d7315b5] Socket close event received\n2025-10-28 16:46:45.887 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:46:45.889 [info] [command][61531b9e-6c03-4186-afbf-1cd6b5472e09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""61531b9e-6c03-4186-afbf-1cd6b5472e09""}\n2025-10-28 16:46:45.890 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][348e8bc0-3255-4b54-a5a1-e71d0e97b634] received connection request\n2025-10-28 16:46:45.913 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][348e8bc0-3255-4b54-a5a1-e71d0e97b634] socks forwarding established\n2025-10-28 16:46:45.939 [info] [command][61531b9e-6c03-4186-afbf-1cd6b5472e09] Process exited with code 0\n2025-10-28 16:46:45.939 [info] [command][61531b9e-6c03-4186-afbf-1cd6b5472e09] Socket close event received\n2025-10-28 16:46:45.939 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][348e8bc0-3255-4b54-a5a1-e71d0e97b634] socks connection closed\n2025-10-28 16:47:45.944 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:47:45.947 [info] [command][4c0c653c-a7a7-459c-bd4d-9f1d799bf64a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4c0c653c-a7a7-459c-bd4d-9f1d799bf64a""}\n2025-10-28 16:47:45.947 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8bbc7dc8-7192-4e6f-925d-1669c316d89e] received connection request\n2025-10-28 16:47:45.974 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8bbc7dc8-7192-4e6f-925d-1669c316d89e] socks forwarding established\n2025-10-28 16:47:46.002 [info] [command][4c0c653c-a7a7-459c-bd4d-9f1d799bf64a] Process exited with code 0\n2025-10-28 16:47:46.002 [info] [command][4c0c653c-a7a7-459c-bd4d-9f1d799bf64a] Socket close event received\n2025-10-28 16:47:46.003 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8bbc7dc8-7192-4e6f-925d-1669c316d89e] socks connection closed\n2025-10-28 16:48:46.012 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:48:46.016 [info] [command][7a80426f-6b76-4ef7-963a-b0700eac1abf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7a80426f-6b76-4ef7-963a-b0700eac1abf""}\n2025-10-28 16:48:46.017 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d8518eb1-7051-4ea6-9661-d2af50e16b48] received connection request\n2025-10-28 16:48:46.045 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d8518eb1-7051-4ea6-9661-d2af50e16b48] socks forwarding established\n2025-10-28 16:48:46.070 [info] [command][7a80426f-6b76-4ef7-963a-b0700eac1abf] Process exited with code 0\n2025-10-28 16:48:46.071 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d8518eb1-7051-4ea6-9661-d2af50e16b48] socks connection closed\n2025-10-28 16:48:46.071 [info] [command][7a80426f-6b76-4ef7-963a-b0700eac1abf] Socket close event received\n2025-10-28 16:49:46.080 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:49:46.082 [info] [command][0ab9ec4b-9bc3-4dea-af5e-63c3942d0cd2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0ab9ec4b-9bc3-4dea-af5e-63c3942d0cd2""}\n2025-10-28 16:49:46.083 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][60f198a7-98af-4fdc-a136-8b0660802cd4] received connection request\n2025-10-28 16:49:46.108 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][60f198a7-98af-4fdc-a136-8b0660802cd4] socks forwarding established\n2025-10-28 16:49:46.136 [info] [command][0ab9ec4b-9bc3-4dea-af5e-63c3942d0cd2] Process exited with code 0\n2025-10-28 16:49:46.136 [info] [command][0ab9ec4b-9bc3-4dea-af5e-63c3942d0cd2] Socket close event received\n2025-10-28 16:49:46.137 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][60f198a7-98af-4fdc-a136-8b0660802cd4] socks connection closed\n2025-10-28 16:50:46.146 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:50:46.150 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1796cfbe-a8d7-41d5-a664-4daf1957978c] received connection request\n2025-10-28 16:50:46.151 [info] [command][e27b39dd-f948-400a-b13f-ffb3f37b4a69] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e27b39dd-f948-400a-b13f-ffb3f37b4a69""}\n2025-10-28 16:50:46.198 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1796cfbe-a8d7-41d5-a664-4daf1957978c] socks forwarding established\n2025-10-28 16:50:46.226 [info] [command][e27b39dd-f948-400a-b13f-ffb3f37b4a69] Process exited with code 0\n2025-10-28 16:50:46.227 [info] [command][e27b39dd-f948-400a-b13f-ffb3f37b4a69] Socket close event received\n2025-10-28 16:50:46.227 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1796cfbe-a8d7-41d5-a664-4daf1957978c] socks connection closed\n2025-10-28 16:51:46.229 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:51:46.231 [info] [command][50609640-6d04-4e69-b436-079d40d7afa9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""50609640-6d04-4e69-b436-079d40d7afa9""}\n2025-10-28 16:51:46.231 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d796adc5-aa3c-4ec7-a7b4-61fe060c000d] received connection request\n2025-10-28 16:51:46.543 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d796adc5-aa3c-4ec7-a7b4-61fe060c000d] socks forwarding established\n2025-10-28 16:51:46.846 [info] [command][50609640-6d04-4e69-b436-079d40d7afa9] Process exited with code 0\n2025-10-28 16:51:46.846 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d796adc5-aa3c-4ec7-a7b4-61fe060c000d] socks connection closed\n2025-10-28 16:51:46.847 [info] [command][50609640-6d04-4e69-b436-079d40d7afa9] Socket close event received\n2025-10-28 16:52:46.848 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:52:46.852 [info] [command][e6f56a93-c15d-4af7-8068-6b821cbf8ae0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e6f56a93-c15d-4af7-8068-6b821cbf8ae0""}\n2025-10-28 16:52:46.852 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a52ddcf6-0ebc-4de0-9803-7b876b2da206] received connection request\n2025-10-28 16:52:46.878 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a52ddcf6-0ebc-4de0-9803-7b876b2da206] socks forwarding established\n2025-10-28 16:52:46.904 [info] [command][e6f56a93-c15d-4af7-8068-6b821cbf8ae0] Process exited with code 0\n2025-10-28 16:52:46.904 [info] [command][e6f56a93-c15d-4af7-8068-6b821cbf8ae0] Socket close event received\n2025-10-28 16:52:46.905 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a52ddcf6-0ebc-4de0-9803-7b876b2da206] socks connection closed\n2025-10-28 16:53:46.906 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:53:46.909 [info] [command][904348f3-98dc-4a79-b05c-250d01ff5e31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""904348f3-98dc-4a79-b05c-250d01ff5e31""}\n2025-10-28 16:53:46.910 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7f3b2e74-2a15-434d-9951-d94b758a2891] received connection request\n2025-10-28 16:53:46.939 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7f3b2e74-2a15-434d-9951-d94b758a2891] socks forwarding established\n2025-10-28 16:53:46.965 [info] [command][904348f3-98dc-4a79-b05c-250d01ff5e31] Process exited with code 0\n2025-10-28 16:53:46.966 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7f3b2e74-2a15-434d-9951-d94b758a2891] socks connection closed\n2025-10-28 16:53:46.966 [info] [command][904348f3-98dc-4a79-b05c-250d01ff5e31] Socket close event received\n2025-10-28 16:54:46.975 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:54:46.978 [info] [command][d96b14f4-559c-4a19-acbc-c3da1178b3cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d96b14f4-559c-4a19-acbc-c3da1178b3cf""}\n2025-10-28 16:54:46.979 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][630b8e2d-b559-4741-b019-b9804f945117] received connection request\n2025-10-28 16:54:47.011 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][630b8e2d-b559-4741-b019-b9804f945117] socks forwarding established\n2025-10-28 16:54:47.048 [info] [command][d96b14f4-559c-4a19-acbc-c3da1178b3cf] Process exited with code 0\n2025-10-28 16:54:47.048 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][630b8e2d-b559-4741-b019-b9804f945117] socks connection closed\n2025-10-28 16:54:47.048 [info] [command][d96b14f4-559c-4a19-acbc-c3da1178b3cf] Socket close event received\n2025-10-28 16:55:47.056 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:55:47.059 [info] [command][8f882e72-11db-45a9-a1d9-b2f19cf40f40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8f882e72-11db-45a9-a1d9-b2f19cf40f40""}\n2025-10-28 16:55:47.060 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][54bd7148-5f47-4716-ae46-0d745e70d93c] received connection request\n2025-10-28 16:55:47.085 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][54bd7148-5f47-4716-ae46-0d745e70d93c] socks forwarding established\n2025-10-28 16:55:47.114 [info] [command][8f882e72-11db-45a9-a1d9-b2f19cf40f40] Process exited with code 0\n2025-10-28 16:55:47.114 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][54bd7148-5f47-4716-ae46-0d745e70d93c] socks connection closed\n2025-10-28 16:55:47.114 [info] [command][8f882e72-11db-45a9-a1d9-b2f19cf40f40] Socket close event received\n2025-10-28 16:56:47.119 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:56:47.122 [info] [command][f206e441-0968-420a-9fcc-241bca9f7188] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f206e441-0968-420a-9fcc-241bca9f7188""}\n2025-10-28 16:56:47.123 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c4c2a480-b869-498d-ada1-96787d02733a] received connection request\n2025-10-28 16:56:47.146 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c4c2a480-b869-498d-ada1-96787d02733a] socks forwarding established\n2025-10-28 16:56:47.176 [info] [command][f206e441-0968-420a-9fcc-241bca9f7188] Process exited with code 0\n2025-10-28 16:56:47.176 [info] [command][f206e441-0968-420a-9fcc-241bca9f7188] Socket close event received\n2025-10-28 16:56:47.177 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c4c2a480-b869-498d-ada1-96787d02733a] socks connection closed\n2025-10-28 16:57:47.180 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:57:47.182 [info] [command][0a22578e-dbd8-40f8-9b93-ba8e32855c3c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0a22578e-dbd8-40f8-9b93-ba8e32855c3c""}\n2025-10-28 16:57:47.183 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cf9bc269-9be7-4d01-a46e-e819d83fb72d] received connection request\n2025-10-28 16:57:47.207 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf9bc269-9be7-4d01-a46e-e819d83fb72d] socks forwarding established\n2025-10-28 16:57:47.233 [info] [command][0a22578e-dbd8-40f8-9b93-ba8e32855c3c] Process exited with code 0\n2025-10-28 16:57:47.233 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf9bc269-9be7-4d01-a46e-e819d83fb72d] socks connection closed\n2025-10-28 16:57:47.234 [info] [command][0a22578e-dbd8-40f8-9b93-ba8e32855c3c] Socket close event received\n2025-10-28 16:58:47.238 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:58:47.241 [info] [command][38f20a84-7517-4c3f-ab18-41a661da1732] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""38f20a84-7517-4c3f-ab18-41a661da1732""}\n2025-10-28 16:58:47.241 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][120e4216-ea92-4c5b-b804-9b916e0bf5ab] received connection request\n2025-10-28 16:58:47.277 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][120e4216-ea92-4c5b-b804-9b916e0bf5ab] socks forwarding established\n2025-10-28 16:58:47.305 [info] [command][38f20a84-7517-4c3f-ab18-41a661da1732] Process exited with code 0\n2025-10-28 16:58:47.305 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][120e4216-ea92-4c5b-b804-9b916e0bf5ab] socks connection closed\n2025-10-28 16:58:47.305 [info] [command][38f20a84-7517-4c3f-ab18-41a661da1732] Socket close event received\n2025-10-28 16:59:47.309 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 16:59:47.311 [info] [command][2171b967-15fb-4b06-b485-f15554cce07a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2171b967-15fb-4b06-b485-f15554cce07a""}\n2025-10-28 16:59:47.312 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][43ce24e3-3cb3-434e-a420-977e74bcb493] received connection request\n2025-10-28 16:59:47.335 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][43ce24e3-3cb3-434e-a420-977e74bcb493] socks forwarding established\n2025-10-28 16:59:47.361 [info] [command][2171b967-15fb-4b06-b485-f15554cce07a] Process exited with code 0\n2025-10-28 16:59:47.361 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][43ce24e3-3cb3-434e-a420-977e74bcb493] socks connection closed\n2025-10-28 16:59:47.361 [info] [command][2171b967-15fb-4b06-b485-f15554cce07a] Socket close event received\n2025-10-28 17:00:47.363 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:00:47.364 [info] [command][51010ae9-8c7d-4b9a-adc1-9b5b25eedc6e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""51010ae9-8c7d-4b9a-adc1-9b5b25eedc6e""}\n2025-10-28 17:00:47.364 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][16e66472-f82d-40d1-bbbb-d30e893a2621] received connection request\n2025-10-28 17:00:47.388 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][16e66472-f82d-40d1-bbbb-d30e893a2621] socks forwarding established\n2025-10-28 17:00:47.414 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][16e66472-f82d-40d1-bbbb-d30e893a2621] socks connection closed\n2025-10-28 17:00:47.414 [info] [command][51010ae9-8c7d-4b9a-adc1-9b5b25eedc6e] Process exited with code 0\n2025-10-28 17:00:47.414 [info] [command][51010ae9-8c7d-4b9a-adc1-9b5b25eedc6e] Socket close event received\n2025-10-28 17:01:47.419 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:01:47.420 [info] [command][395da342-81b7-46cc-9a62-7b56459e1fc3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""395da342-81b7-46cc-9a62-7b56459e1fc3""}\n2025-10-28 17:01:47.421 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fb8c7bc4-e192-49e4-bfcd-e0245479be72] received connection request\n2025-10-28 17:01:47.443 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fb8c7bc4-e192-49e4-bfcd-e0245479be72] socks forwarding established\n2025-10-28 17:01:47.470 [info] [command][395da342-81b7-46cc-9a62-7b56459e1fc3] Process exited with code 0\n2025-10-28 17:01:47.470 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fb8c7bc4-e192-49e4-bfcd-e0245479be72] socks connection closed\n2025-10-28 17:01:47.470 [info] [command][395da342-81b7-46cc-9a62-7b56459e1fc3] Socket close event received\n2025-10-28 17:02:47.474 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:02:47.476 [info] [command][64bf1661-89e1-404f-88d2-26e4c94a148c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""64bf1661-89e1-404f-88d2-26e4c94a148c""}\n2025-10-28 17:02:47.477 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a0f43374-ce0e-4133-9e59-c79f61b25837] received connection request\n2025-10-28 17:02:47.502 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a0f43374-ce0e-4133-9e59-c79f61b25837] socks forwarding established\n2025-10-28 17:02:47.528 [info] [command][64bf1661-89e1-404f-88d2-26e4c94a148c] Process exited with code 0\n2025-10-28 17:02:47.528 [info] [command][64bf1661-89e1-404f-88d2-26e4c94a148c] Socket close event received\n2025-10-28 17:02:47.530 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a0f43374-ce0e-4133-9e59-c79f61b25837] socks connection closed\n2025-10-28 17:03:47.533 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:03:47.535 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1786143f-139b-4bde-a197-ba2abebf4fdd] received connection request\n2025-10-28 17:03:47.535 [info] [command][b1185bae-7d2b-435b-8ef7-d46b0fd2b586] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b1185bae-7d2b-435b-8ef7-d46b0fd2b586""}\n2025-10-28 17:03:47.556 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1786143f-139b-4bde-a197-ba2abebf4fdd] socks forwarding established\n2025-10-28 17:03:47.582 [info] [command][b1185bae-7d2b-435b-8ef7-d46b0fd2b586] Process exited with code 0\n2025-10-28 17:03:47.582 [info] [command][b1185bae-7d2b-435b-8ef7-d46b0fd2b586] Socket close event received\n2025-10-28 17:03:47.582 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1786143f-139b-4bde-a197-ba2abebf4fdd] socks connection closed\n2025-10-28 17:04:47.587 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:04:47.589 [info] [command][f3444a67-304c-4943-a8e7-4b2f770f1b57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f3444a67-304c-4943-a8e7-4b2f770f1b57""}\n2025-10-28 17:04:47.590 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b1510f89-0417-4739-a18e-5e9b36ae1b6a] received connection request\n2025-10-28 17:04:47.613 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b1510f89-0417-4739-a18e-5e9b36ae1b6a] socks forwarding established\n2025-10-28 17:04:47.640 [info] [command][f3444a67-304c-4943-a8e7-4b2f770f1b57] Process exited with code 0\n2025-10-28 17:04:47.640 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b1510f89-0417-4739-a18e-5e9b36ae1b6a] socks connection closed\n2025-10-28 17:04:47.640 [info] [command][f3444a67-304c-4943-a8e7-4b2f770f1b57] Socket close event received\n2025-10-28 17:05:47.686 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:05:47.688 [info] [command][94eadd7b-33ba-475e-ab7a-5df1ac22f058] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""94eadd7b-33ba-475e-ab7a-5df1ac22f058""}\n2025-10-28 17:05:47.689 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e4edb9d5-8e9c-4388-bd8f-5032c9abcfaf] received connection request\n2025-10-28 17:05:47.712 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e4edb9d5-8e9c-4388-bd8f-5032c9abcfaf] socks forwarding established\n2025-10-28 17:05:47.744 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e4edb9d5-8e9c-4388-bd8f-5032c9abcfaf] socks connection closed\n2025-10-28 17:05:47.744 [info] [command][94eadd7b-33ba-475e-ab7a-5df1ac22f058] Process exited with code 0\n2025-10-28 17:05:47.744 [info] [command][94eadd7b-33ba-475e-ab7a-5df1ac22f058] Socket close event received\n2025-10-28 17:06:47.761 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:06:47.763 [info] [command][521790f4-23be-42dc-8cd0-d8121b5e8aea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""521790f4-23be-42dc-8cd0-d8121b5e8aea""}\n2025-10-28 17:06:47.764 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][38a28d9b-e3c4-4e02-ab9e-8bc3615b5406] received connection request\n2025-10-28 17:06:47.791 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][38a28d9b-e3c4-4e02-ab9e-8bc3615b5406] socks forwarding established\n2025-10-28 17:06:47.819 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][38a28d9b-e3c4-4e02-ab9e-8bc3615b5406] socks connection closed\n2025-10-28 17:06:47.819 [info] [command][521790f4-23be-42dc-8cd0-d8121b5e8aea] Process exited with code 0\n2025-10-28 17:06:47.819 [info] [command][521790f4-23be-42dc-8cd0-d8121b5e8aea] Socket close event received\n2025-10-28 17:07:47.821 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:07:47.824 [info] [command][777cfdf6-d286-4df9-bb3f-cdadb641d563] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""777cfdf6-d286-4df9-bb3f-cdadb641d563""}\n2025-10-28 17:07:47.824 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7396406c-1dda-4b87-a581-6559bf7a5dc6] received connection request\n2025-10-28 17:07:47.848 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7396406c-1dda-4b87-a581-6559bf7a5dc6] socks forwarding established\n2025-10-28 17:07:47.875 [info] [command][777cfdf6-d286-4df9-bb3f-cdadb641d563] Process exited with code 0\n2025-10-28 17:07:47.875 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7396406c-1dda-4b87-a581-6559bf7a5dc6] socks connection closed\n2025-10-28 17:07:47.875 [info] [command][777cfdf6-d286-4df9-bb3f-cdadb641d563] Socket close event received\n2025-10-28 17:08:47.879 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:08:47.882 [info] [command][48fc7fdd-d281-40b8-9ad1-2a5395ee75c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""48fc7fdd-d281-40b8-9ad1-2a5395ee75c4""}\n2025-10-28 17:08:47.882 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e9219b8e-e150-427a-8166-636405a58a87] received connection request\n2025-10-28 17:08:47.907 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e9219b8e-e150-427a-8166-636405a58a87] socks forwarding established\n2025-10-28 17:08:47.960 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e9219b8e-e150-427a-8166-636405a58a87] socks connection closed\n2025-10-28 17:08:47.960 [info] [command][48fc7fdd-d281-40b8-9ad1-2a5395ee75c4] Process exited with code 0\n2025-10-28 17:08:47.960 [info] [command][48fc7fdd-d281-40b8-9ad1-2a5395ee75c4] Socket close event received\n2025-10-28 17:09:47.962 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:09:47.964 [info] [command][7a20f9d2-d854-4583-9a68-61f20d316951] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7a20f9d2-d854-4583-9a68-61f20d316951""}\n2025-10-28 17:09:47.964 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d06bc70d-9010-4831-939a-058e7168d8db] received connection request\n2025-10-28 17:09:47.994 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d06bc70d-9010-4831-939a-058e7168d8db] socks forwarding established\n2025-10-28 17:09:48.021 [info] [command][7a20f9d2-d854-4583-9a68-61f20d316951] Process exited with code 0\n2025-10-28 17:09:48.022 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d06bc70d-9010-4831-939a-058e7168d8db] socks connection closed\n2025-10-28 17:09:48.022 [info] [command][7a20f9d2-d854-4583-9a68-61f20d316951] Socket close event received\n2025-10-28 17:10:48.027 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:10:48.029 [info] [command][f345884e-e130-4570-8dda-8eb72df09017] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f345884e-e130-4570-8dda-8eb72df09017""}\n2025-10-28 17:10:48.030 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c879edc6-a2e2-47ec-aafb-9ed4fd5cd9f3] received connection request\n2025-10-28 17:10:48.053 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c879edc6-a2e2-47ec-aafb-9ed4fd5cd9f3] socks forwarding established\n2025-10-28 17:10:48.077 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c879edc6-a2e2-47ec-aafb-9ed4fd5cd9f3] socks connection closed\n2025-10-28 17:10:48.077 [info] [command][f345884e-e130-4570-8dda-8eb72df09017] Process exited with code 0\n2025-10-28 17:10:48.077 [info] [command][f345884e-e130-4570-8dda-8eb72df09017] Socket close event received\n2025-10-28 17:11:48.079 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:11:48.081 [info] [command][0ef7325c-3ecc-4d54-b795-8de094c0e98a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0ef7325c-3ecc-4d54-b795-8de094c0e98a""}\n2025-10-28 17:11:48.081 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1b008cb0-72ed-44c0-bad4-423a23d6bee4] received connection request\n2025-10-28 17:11:48.110 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1b008cb0-72ed-44c0-bad4-423a23d6bee4] socks forwarding established\n2025-10-28 17:11:48.135 [info] [command][0ef7325c-3ecc-4d54-b795-8de094c0e98a] Process exited with code 0\n2025-10-28 17:11:48.135 [info] [command][0ef7325c-3ecc-4d54-b795-8de094c0e98a] Socket close event received\n2025-10-28 17:11:48.136 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1b008cb0-72ed-44c0-bad4-423a23d6bee4] socks connection closed\n2025-10-28 17:12:48.137 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:12:48.140 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e0102b1e-a915-4fd9-b20b-41f6ff321e64] received connection request\n2025-10-28 17:12:48.140 [info] [command][eddbf37c-27ab-4e07-be6e-acd3511e9266] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eddbf37c-27ab-4e07-be6e-acd3511e9266""}\n2025-10-28 17:12:48.167 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e0102b1e-a915-4fd9-b20b-41f6ff321e64] socks forwarding established\n2025-10-28 17:12:48.192 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e0102b1e-a915-4fd9-b20b-41f6ff321e64] socks connection closed\n2025-10-28 17:12:48.192 [info] [command][eddbf37c-27ab-4e07-be6e-acd3511e9266] Process exited with code 0\n2025-10-28 17:12:48.192 [info] [command][eddbf37c-27ab-4e07-be6e-acd3511e9266] Socket close event received\n2025-10-28 17:13:48.195 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:13:48.198 [info] [command][a3ccc506-de6b-4f09-be59-e94bf62f04c3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a3ccc506-de6b-4f09-be59-e94bf62f04c3""}\n2025-10-28 17:13:48.198 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b6f2114a-a6d4-48b4-9bc6-b6c6c8db5ede] received connection request\n2025-10-28 17:13:48.220 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b6f2114a-a6d4-48b4-9bc6-b6c6c8db5ede] socks forwarding established\n2025-10-28 17:13:48.246 [info] [command][a3ccc506-de6b-4f09-be59-e94bf62f04c3] Process exited with code 0\n2025-10-28 17:13:48.246 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b6f2114a-a6d4-48b4-9bc6-b6c6c8db5ede] socks connection closed\n2025-10-28 17:13:48.246 [info] [command][a3ccc506-de6b-4f09-be59-e94bf62f04c3] Socket close event received\n2025-10-28 17:14:48.251 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:14:48.253 [info] [command][d268e702-cc51-475f-9133-7a1d7f4f9c66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d268e702-cc51-475f-9133-7a1d7f4f9c66""}\n2025-10-28 17:14:48.254 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2770e3d5-369d-481e-93b8-9f004abab266] received connection request\n2025-10-28 17:14:48.277 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2770e3d5-369d-481e-93b8-9f004abab266] socks forwarding established\n2025-10-28 17:14:48.304 [info] [command][d268e702-cc51-475f-9133-7a1d7f4f9c66] Process exited with code 0\n2025-10-28 17:14:48.305 [info] [command][d268e702-cc51-475f-9133-7a1d7f4f9c66] Socket close event received\n2025-10-28 17:14:48.305 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2770e3d5-369d-481e-93b8-9f004abab266] socks connection closed\n2025-10-28 17:15:48.310 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:15:48.313 [info] [command][a4d8a188-6fdc-4bbb-89f0-68fcf46bb874] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a4d8a188-6fdc-4bbb-89f0-68fcf46bb874""}\n2025-10-28 17:15:48.313 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cc637fa7-6bbe-4702-ba70-832ac71f3b8b] received connection request\n2025-10-28 17:15:48.335 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cc637fa7-6bbe-4702-ba70-832ac71f3b8b] socks forwarding established\n2025-10-28 17:15:48.361 [info] [command][a4d8a188-6fdc-4bbb-89f0-68fcf46bb874] Process exited with code 0\n2025-10-28 17:15:48.361 [info] [command][a4d8a188-6fdc-4bbb-89f0-68fcf46bb874] Socket close event received\n2025-10-28 17:15:48.361 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cc637fa7-6bbe-4702-ba70-832ac71f3b8b] socks connection closed\n2025-10-28 17:16:48.362 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:16:48.365 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a501a81f-e65b-461d-821b-e9d2510c086c] received connection request\n2025-10-28 17:16:48.365 [info] [command][499a515d-51ff-4e98-bc01-1a06892cb192] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""499a515d-51ff-4e98-bc01-1a06892cb192""}\n2025-10-28 17:16:48.389 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a501a81f-e65b-461d-821b-e9d2510c086c] socks forwarding established\n2025-10-28 17:16:48.414 [info] [command][499a515d-51ff-4e98-bc01-1a06892cb192] Process exited with code 0\n2025-10-28 17:16:48.414 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a501a81f-e65b-461d-821b-e9d2510c086c] socks connection closed\n2025-10-28 17:16:48.415 [info] [command][499a515d-51ff-4e98-bc01-1a06892cb192] Socket close event received\n2025-10-28 17:17:48.421 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:17:48.423 [info] [command][b8a3394f-9885-4815-b122-e76edc9ffb2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b8a3394f-9885-4815-b122-e76edc9ffb2e""}\n2025-10-28 17:17:48.424 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6ff85437-d4c3-42fc-a3a3-c6c9c2328172] received connection request\n2025-10-28 17:17:48.529 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6ff85437-d4c3-42fc-a3a3-c6c9c2328172] socks forwarding established\n2025-10-28 17:17:48.556 [info] [command][b8a3394f-9885-4815-b122-e76edc9ffb2e] Process exited with code 0\n2025-10-28 17:17:48.556 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6ff85437-d4c3-42fc-a3a3-c6c9c2328172] socks connection closed\n2025-10-28 17:17:48.556 [info] [command][b8a3394f-9885-4815-b122-e76edc9ffb2e] Socket close event received\n2025-10-28 17:18:48.562 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:18:48.564 [info] [command][8fa5b298-312b-4c6e-9160-1256bab11601] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8fa5b298-312b-4c6e-9160-1256bab11601""}\n2025-10-28 17:18:48.565 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d6ae773a-dd37-4784-9708-cb92269aa979] received connection request\n2025-10-28 17:18:48.590 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d6ae773a-dd37-4784-9708-cb92269aa979] socks forwarding established\n2025-10-28 17:18:48.616 [info] [command][8fa5b298-312b-4c6e-9160-1256bab11601] Process exited with code 0\n2025-10-28 17:18:48.616 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d6ae773a-dd37-4784-9708-cb92269aa979] socks connection closed\n2025-10-28 17:18:48.616 [info] [command][8fa5b298-312b-4c6e-9160-1256bab11601] Socket close event received\n2025-10-28 17:19:48.620 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:19:48.623 [info] [command][f3f7cb68-7adb-4471-92bd-d35923444d4f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f3f7cb68-7adb-4471-92bd-d35923444d4f""}\n2025-10-28 17:19:48.624 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][076ba0b3-5eab-45fe-9c7d-8f555b6fd5a4] received connection request\n2025-10-28 17:19:48.662 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][076ba0b3-5eab-45fe-9c7d-8f555b6fd5a4] socks forwarding established\n2025-10-28 17:19:48.688 [info] [command][f3f7cb68-7adb-4471-92bd-d35923444d4f] Process exited with code 0\n2025-10-28 17:19:48.689 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][076ba0b3-5eab-45fe-9c7d-8f555b6fd5a4] socks connection closed\n2025-10-28 17:19:48.689 [info] [command][f3f7cb68-7adb-4471-92bd-d35923444d4f] Socket close event received\n2025-10-28 17:20:48.695 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:20:48.698 [info] [command][3fa2c392-898b-4bd4-9fdd-2ff433272722] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3fa2c392-898b-4bd4-9fdd-2ff433272722""}\n2025-10-28 17:20:48.698 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][62727b50-6366-4a9c-b439-5675d35423f7] received connection request\n2025-10-28 17:20:48.723 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][62727b50-6366-4a9c-b439-5675d35423f7] socks forwarding established\n2025-10-28 17:20:48.748 [info] [command][3fa2c392-898b-4bd4-9fdd-2ff433272722] Process exited with code 0\n2025-10-28 17:20:48.748 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][62727b50-6366-4a9c-b439-5675d35423f7] socks connection closed\n2025-10-28 17:20:48.748 [info] [command][3fa2c392-898b-4bd4-9fdd-2ff433272722] Socket close event received\n2025-10-28 17:21:48.752 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:21:48.755 [info] [command][e8cde5c5-5bc3-40d1-9af3-a3446dd94deb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e8cde5c5-5bc3-40d1-9af3-a3446dd94deb""}\n2025-10-28 17:21:48.756 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][23a49bf5-ca87-408a-b3af-51d8b0bdb2ec] received connection request\n2025-10-28 17:21:48.783 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][23a49bf5-ca87-408a-b3af-51d8b0bdb2ec] socks forwarding established\n2025-10-28 17:21:48.809 [info] [command][e8cde5c5-5bc3-40d1-9af3-a3446dd94deb] Process exited with code 0\n2025-10-28 17:21:48.809 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][23a49bf5-ca87-408a-b3af-51d8b0bdb2ec] socks connection closed\n2025-10-28 17:21:48.809 [info] [command][e8cde5c5-5bc3-40d1-9af3-a3446dd94deb] Socket close event received\n2025-10-28 17:22:48.811 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:22:48.814 [info] [command][a87ad360-2b56-4d9f-85f4-ad74d942f97e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a87ad360-2b56-4d9f-85f4-ad74d942f97e""}\n2025-10-28 17:22:48.814 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a0ac9f2c-5b80-4235-8dc2-e2696e00b5f4] received connection request\n2025-10-28 17:22:48.838 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a0ac9f2c-5b80-4235-8dc2-e2696e00b5f4] socks forwarding established\n2025-10-28 17:22:48.863 [info] [command][a87ad360-2b56-4d9f-85f4-ad74d942f97e] Process exited with code 0\n2025-10-28 17:22:48.864 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a0ac9f2c-5b80-4235-8dc2-e2696e00b5f4] socks connection closed\n2025-10-28 17:22:48.864 [info] [command][a87ad360-2b56-4d9f-85f4-ad74d942f97e] Socket close event received\n2025-10-28 17:23:48.869 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:23:48.871 [info] [command][204150ee-939e-4402-9ab3-d9cdc88b3a9c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""204150ee-939e-4402-9ab3-d9cdc88b3a9c""}\n2025-10-28 17:23:48.872 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d590099f-e9f3-49e6-ae07-3b18dde7cfcc] received connection request\n2025-10-28 17:23:48.899 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d590099f-e9f3-49e6-ae07-3b18dde7cfcc] socks forwarding established\n2025-10-28 17:23:48.924 [info] [command][204150ee-939e-4402-9ab3-d9cdc88b3a9c] Process exited with code 0\n2025-10-28 17:23:48.925 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d590099f-e9f3-49e6-ae07-3b18dde7cfcc] socks connection closed\n2025-10-28 17:23:48.925 [info] [command][204150ee-939e-4402-9ab3-d9cdc88b3a9c] Socket close event received\n2025-10-28 17:24:48.927 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:24:48.930 [info] [command][b8c6e279-f25b-4d98-8fab-ef55247e9d81] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b8c6e279-f25b-4d98-8fab-ef55247e9d81""}\n2025-10-28 17:24:48.930 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][856a2576-dbc8-44a9-ae82-6ab14f28a5bf] received connection request\n2025-10-28 17:24:48.954 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][856a2576-dbc8-44a9-ae82-6ab14f28a5bf] socks forwarding established\n2025-10-28 17:24:48.978 [info] [command][b8c6e279-f25b-4d98-8fab-ef55247e9d81] Process exited with code 0\n2025-10-28 17:24:48.979 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][856a2576-dbc8-44a9-ae82-6ab14f28a5bf] socks connection closed\n2025-10-28 17:24:48.979 [info] [command][b8c6e279-f25b-4d98-8fab-ef55247e9d81] Socket close event received\n2025-10-28 17:25:48.981 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:25:48.983 [info] [command][f6ae0e4e-09f5-47b1-9351-4d5d76ca6585] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f6ae0e4e-09f5-47b1-9351-4d5d76ca6585""}\n2025-10-28 17:25:48.983 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ebde9ceb-535d-4fae-a437-da12c1be0668] received connection request\n2025-10-28 17:25:49.006 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ebde9ceb-535d-4fae-a437-da12c1be0668] socks forwarding established\n2025-10-28 17:25:49.033 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ebde9ceb-535d-4fae-a437-da12c1be0668] socks connection closed\n2025-10-28 17:25:49.033 [info] [command][f6ae0e4e-09f5-47b1-9351-4d5d76ca6585] Process exited with code 0\n2025-10-28 17:25:49.033 [info] [command][f6ae0e4e-09f5-47b1-9351-4d5d76ca6585] Socket close event received\n2025-10-28 17:26:49.037 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:26:49.039 [info] [command][54e12d7f-9afb-4070-8922-df6720e8ab1f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""54e12d7f-9afb-4070-8922-df6720e8ab1f""}\n2025-10-28 17:26:49.039 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][aee740d1-5ac0-45cf-96e9-0fa48815f9b5] received connection request\n2025-10-28 17:26:49.064 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][aee740d1-5ac0-45cf-96e9-0fa48815f9b5] socks forwarding established\n2025-10-28 17:26:49.088 [info] [command][54e12d7f-9afb-4070-8922-df6720e8ab1f] Process exited with code 0\n2025-10-28 17:26:49.089 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][aee740d1-5ac0-45cf-96e9-0fa48815f9b5] socks connection closed\n2025-10-28 17:26:49.089 [info] [command][54e12d7f-9afb-4070-8922-df6720e8ab1f] Socket close event received\n2025-10-28 17:27:49.093 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:27:49.096 [info] [command][52a2bcad-0d82-46a1-ada0-06e2064bffcb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""52a2bcad-0d82-46a1-ada0-06e2064bffcb""}\n2025-10-28 17:27:49.096 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fca0e7f6-447a-458b-8523-b94a4a5de118] received connection request\n2025-10-28 17:27:49.119 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fca0e7f6-447a-458b-8523-b94a4a5de118] socks forwarding established\n2025-10-28 17:27:49.143 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fca0e7f6-447a-458b-8523-b94a4a5de118] socks connection closed\n2025-10-28 17:27:49.143 [info] [command][52a2bcad-0d82-46a1-ada0-06e2064bffcb] Process exited with code 0\n2025-10-28 17:27:49.143 [info] [command][52a2bcad-0d82-46a1-ada0-06e2064bffcb] Socket close event received\n2025-10-28 17:28:49.143 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:28:49.145 [info] [command][2690d6a9-50a4-477e-8a89-2947946b0b49] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2690d6a9-50a4-477e-8a89-2947946b0b49""}\n2025-10-28 17:28:49.145 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2628e58a-cad0-4fbc-96da-b6e279733b8e] received connection request\n2025-10-28 17:28:49.169 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2628e58a-cad0-4fbc-96da-b6e279733b8e] socks forwarding established\n2025-10-28 17:28:49.194 [info] [command][2690d6a9-50a4-477e-8a89-2947946b0b49] Process exited with code 0\n2025-10-28 17:28:49.194 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2628e58a-cad0-4fbc-96da-b6e279733b8e] socks connection closed\n2025-10-28 17:28:49.194 [info] [command][2690d6a9-50a4-477e-8a89-2947946b0b49] Socket close event received\n2025-10-28 17:29:49.195 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:29:49.196 [info] [command][71c64710-8a2f-4843-89e3-347eba432dc5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""71c64710-8a2f-4843-89e3-347eba432dc5""}\n2025-10-28 17:29:49.196 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ceecfeb1-98b6-4955-b5b5-d1dfe4b0571c] received connection request\n2025-10-28 17:29:49.220 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ceecfeb1-98b6-4955-b5b5-d1dfe4b0571c] socks forwarding established\n2025-10-28 17:29:49.246 [info] [command][71c64710-8a2f-4843-89e3-347eba432dc5] Process exited with code 0\n2025-10-28 17:29:49.246 [info] [command][71c64710-8a2f-4843-89e3-347eba432dc5] Socket close event received\n2025-10-28 17:29:49.246 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ceecfeb1-98b6-4955-b5b5-d1dfe4b0571c] socks connection closed\n2025-10-28 17:30:49.248 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:30:49.249 [info] [command][d2429d7d-ebc0-4d17-a9fb-da54a46ceb64] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d2429d7d-ebc0-4d17-a9fb-da54a46ceb64""}\n2025-10-28 17:30:49.250 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8696d95e-cc02-411c-9386-8a70570ac701] received connection request\n2025-10-28 17:30:49.272 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8696d95e-cc02-411c-9386-8a70570ac701] socks forwarding established\n2025-10-28 17:30:49.296 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8696d95e-cc02-411c-9386-8a70570ac701] socks connection closed\n2025-10-28 17:30:49.297 [info] [command][d2429d7d-ebc0-4d17-a9fb-da54a46ceb64] Process exited with code 0\n2025-10-28 17:30:49.297 [info] [command][d2429d7d-ebc0-4d17-a9fb-da54a46ceb64] Socket close event received\n2025-10-28 17:31:49.299 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:31:49.302 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][150eeb13-4297-425d-87ec-80724db61b6d] received connection request\n2025-10-28 17:31:49.303 [info] [command][b582cdff-0ec1-447d-bd98-cdc8bce5664f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b582cdff-0ec1-447d-bd98-cdc8bce5664f""}\n2025-10-28 17:31:49.327 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][150eeb13-4297-425d-87ec-80724db61b6d] socks forwarding established\n2025-10-28 17:31:49.352 [info] [command][b582cdff-0ec1-447d-bd98-cdc8bce5664f] Process exited with code 0\n2025-10-28 17:31:49.352 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][150eeb13-4297-425d-87ec-80724db61b6d] socks connection closed\n2025-10-28 17:31:49.352 [info] [command][b582cdff-0ec1-447d-bd98-cdc8bce5664f] Socket close event received\n2025-10-28 17:32:49.357 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:32:49.359 [info] [command][c9607771-d45c-48b8-b00d-c3e689aa8e87] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c9607771-d45c-48b8-b00d-c3e689aa8e87""}\n2025-10-28 17:32:49.359 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fea210f5-4945-43f2-987e-2289cae9191c] received connection request\n2025-10-28 17:32:49.394 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fea210f5-4945-43f2-987e-2289cae9191c] socks forwarding established\n2025-10-28 17:32:49.422 [info] [command][c9607771-d45c-48b8-b00d-c3e689aa8e87] Process exited with code 0\n2025-10-28 17:32:49.423 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fea210f5-4945-43f2-987e-2289cae9191c] socks connection closed\n2025-10-28 17:32:49.423 [info] [command][c9607771-d45c-48b8-b00d-c3e689aa8e87] Socket close event received\n2025-10-28 17:33:49.429 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:33:49.441 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1b442671-16a8-46e4-99db-e955a63e186d] received connection request\n2025-10-28 17:33:49.441 [info] [command][9dda9f51-4b17-41e7-987c-4ed6d1b8f31f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9dda9f51-4b17-41e7-987c-4ed6d1b8f31f""}\n2025-10-28 17:33:49.517 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1b442671-16a8-46e4-99db-e955a63e186d] socks forwarding established\n2025-10-28 17:33:49.552 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1b442671-16a8-46e4-99db-e955a63e186d] socks connection closed\n2025-10-28 17:33:49.552 [info] [command][9dda9f51-4b17-41e7-987c-4ed6d1b8f31f] Process exited with code 0\n2025-10-28 17:33:49.552 [info] [command][9dda9f51-4b17-41e7-987c-4ed6d1b8f31f] Socket close event received\n2025-10-28 17:34:49.553 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:34:49.556 [info] [command][1e706d6b-49d4-4946-8b48-6958fcaa3ebe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1e706d6b-49d4-4946-8b48-6958fcaa3ebe""}\n2025-10-28 17:34:49.556 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e317daef-3a4d-441b-a623-3aa6f2472d37] received connection request\n2025-10-28 17:34:49.577 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e317daef-3a4d-441b-a623-3aa6f2472d37] socks forwarding established\n2025-10-28 17:34:49.603 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e317daef-3a4d-441b-a623-3aa6f2472d37] socks connection closed\n2025-10-28 17:34:49.604 [info] [command][1e706d6b-49d4-4946-8b48-6958fcaa3ebe] Process exited with code 0\n2025-10-28 17:34:49.604 [info] [command][1e706d6b-49d4-4946-8b48-6958fcaa3ebe] Socket close event received\n2025-10-28 17:35:49.606 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:35:49.608 [info] [command][53ab1c2c-54da-4358-b661-6aa9b6348552] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""53ab1c2c-54da-4358-b661-6aa9b6348552""}\n2025-10-28 17:35:49.608 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b7ec094e-02a7-4715-8bf1-f699021f28cd] received connection request\n2025-10-28 17:35:49.631 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b7ec094e-02a7-4715-8bf1-f699021f28cd] socks forwarding established\n2025-10-28 17:35:49.663 [info] [command][53ab1c2c-54da-4358-b661-6aa9b6348552] Process exited with code 0\n2025-10-28 17:35:49.663 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b7ec094e-02a7-4715-8bf1-f699021f28cd] socks connection closed\n2025-10-28 17:35:49.663 [info] [command][53ab1c2c-54da-4358-b661-6aa9b6348552] Socket close event received\n2025-10-28 17:36:49.676 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:36:49.678 [info] [command][bd9e677c-1140-48f4-a878-ab275b53890b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bd9e677c-1140-48f4-a878-ab275b53890b""}\n2025-10-28 17:36:49.679 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7089982f-d12c-46a8-a17a-8a06d1a26e41] received connection request\n2025-10-28 17:36:49.707 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7089982f-d12c-46a8-a17a-8a06d1a26e41] socks forwarding established\n2025-10-28 17:36:49.734 [info] [command][bd9e677c-1140-48f4-a878-ab275b53890b] Process exited with code 0\n2025-10-28 17:36:49.734 [info] [command][bd9e677c-1140-48f4-a878-ab275b53890b] Socket close event received\n2025-10-28 17:36:49.734 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7089982f-d12c-46a8-a17a-8a06d1a26e41] socks connection closed\n2025-10-28 17:37:49.736 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:37:49.738 [info] [command][a1b254c8-692c-4fbb-8193-1e150e0bbef3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a1b254c8-692c-4fbb-8193-1e150e0bbef3""}\n2025-10-28 17:37:49.739 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fc167083-f668-4f37-a2d2-3a3410d96a5e] received connection request\n2025-10-28 17:37:49.761 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fc167083-f668-4f37-a2d2-3a3410d96a5e] socks forwarding established\n2025-10-28 17:37:49.787 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fc167083-f668-4f37-a2d2-3a3410d96a5e] socks connection closed\n2025-10-28 17:37:49.787 [info] [command][a1b254c8-692c-4fbb-8193-1e150e0bbef3] Process exited with code 0\n2025-10-28 17:37:49.787 [info] [command][a1b254c8-692c-4fbb-8193-1e150e0bbef3] Socket close event received\n2025-10-28 17:38:49.794 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:38:49.796 [info] [command][925063f0-84df-46ca-95f5-a8fe05feca6b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""925063f0-84df-46ca-95f5-a8fe05feca6b""}\n2025-10-28 17:38:49.797 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][de4b84e7-cb0d-4936-b4c7-15c08ad0bedb] received connection request\n2025-10-28 17:38:49.830 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][de4b84e7-cb0d-4936-b4c7-15c08ad0bedb] socks forwarding established\n2025-10-28 17:38:49.857 [info] [command][925063f0-84df-46ca-95f5-a8fe05feca6b] Process exited with code 0\n2025-10-28 17:38:49.857 [info] [command][925063f0-84df-46ca-95f5-a8fe05feca6b] Socket close event received\n2025-10-28 17:38:49.857 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][de4b84e7-cb0d-4936-b4c7-15c08ad0bedb] socks connection closed\n2025-10-28 17:39:49.862 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:39:49.863 [info] [command][592fe0b4-abf3-48a3-bc3d-1ef19267c399] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""592fe0b4-abf3-48a3-bc3d-1ef19267c399""}\n2025-10-28 17:39:49.864 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8545b45f-234a-4761-acea-1568431e8771] received connection request\n2025-10-28 17:39:49.893 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8545b45f-234a-4761-acea-1568431e8771] socks forwarding established\n2025-10-28 17:39:49.920 [info] [command][592fe0b4-abf3-48a3-bc3d-1ef19267c399] Process exited with code 0\n2025-10-28 17:39:49.920 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8545b45f-234a-4761-acea-1568431e8771] socks connection closed\n2025-10-28 17:39:49.920 [info] [command][592fe0b4-abf3-48a3-bc3d-1ef19267c399] Socket close event received\n2025-10-28 17:40:49.925 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:40:49.927 [info] [command][3e7f539d-94cc-4aea-8052-c44db3c729e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3e7f539d-94cc-4aea-8052-c44db3c729e6""}\n2025-10-28 17:40:49.927 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0f84557d-0cf5-487e-9441-88d7a9490122] received connection request\n2025-10-28 17:40:49.951 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0f84557d-0cf5-487e-9441-88d7a9490122] socks forwarding established\n2025-10-28 17:40:49.977 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0f84557d-0cf5-487e-9441-88d7a9490122] socks connection closed\n2025-10-28 17:40:49.977 [info] [command][3e7f539d-94cc-4aea-8052-c44db3c729e6] Process exited with code 0\n2025-10-28 17:40:49.977 [info] [command][3e7f539d-94cc-4aea-8052-c44db3c729e6] Socket close event received\n2025-10-28 17:41:49.983 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:41:49.985 [info] [command][de0414b7-d8cd-4779-8281-83104e152f81] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""de0414b7-d8cd-4779-8281-83104e152f81""}\n2025-10-28 17:41:49.986 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cf3b2031-495f-41b6-a890-ab735f85555b] received connection request\n2025-10-28 17:41:50.008 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf3b2031-495f-41b6-a890-ab735f85555b] socks forwarding established\n2025-10-28 17:41:50.035 [info] [command][de0414b7-d8cd-4779-8281-83104e152f81] Process exited with code 0\n2025-10-28 17:41:50.036 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf3b2031-495f-41b6-a890-ab735f85555b] socks connection closed\n2025-10-28 17:41:50.036 [info] [command][de0414b7-d8cd-4779-8281-83104e152f81] Socket close event received\n2025-10-28 17:42:50.041 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:42:50.047 [info] [command][64ecef5c-0ca0-488d-b6dd-6045eca27de2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""64ecef5c-0ca0-488d-b6dd-6045eca27de2""}\n2025-10-28 17:42:50.048 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][43e6d37c-c97e-41d6-a8b8-07e199a63921] received connection request\n2025-10-28 17:42:50.145 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][43e6d37c-c97e-41d6-a8b8-07e199a63921] socks forwarding established\n2025-10-28 17:42:50.171 [info] [command][64ecef5c-0ca0-488d-b6dd-6045eca27de2] Process exited with code 0\n2025-10-28 17:42:50.171 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][43e6d37c-c97e-41d6-a8b8-07e199a63921] socks connection closed\n2025-10-28 17:42:50.171 [info] [command][64ecef5c-0ca0-488d-b6dd-6045eca27de2] Socket close event received\n2025-10-28 17:43:50.175 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:43:50.178 [info] [command][1cf8f7d8-6c37-40ec-9774-3b6ba1649989] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1cf8f7d8-6c37-40ec-9774-3b6ba1649989""}\n2025-10-28 17:43:50.179 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fbb1f9d3-faaf-4e95-bd1f-557c798edf13] received connection request\n2025-10-28 17:43:50.203 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fbb1f9d3-faaf-4e95-bd1f-557c798edf13] socks forwarding established\n2025-10-28 17:43:50.235 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fbb1f9d3-faaf-4e95-bd1f-557c798edf13] socks connection closed\n2025-10-28 17:43:50.235 [info] [command][1cf8f7d8-6c37-40ec-9774-3b6ba1649989] Process exited with code 0\n2025-10-28 17:43:50.235 [info] [command][1cf8f7d8-6c37-40ec-9774-3b6ba1649989] Socket close event received\n2025-10-28 17:44:50.242 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:44:50.244 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][842da60b-1b61-49c7-8ec2-4d9faf52fdeb] received connection request\n2025-10-28 17:44:50.245 [info] [command][74bc6d2c-b490-4004-ba67-91c3510c880d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""74bc6d2c-b490-4004-ba67-91c3510c880d""}\n2025-10-28 17:44:50.284 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][842da60b-1b61-49c7-8ec2-4d9faf52fdeb] socks forwarding established\n2025-10-28 17:44:50.311 [info] [command][74bc6d2c-b490-4004-ba67-91c3510c880d] Process exited with code 0\n2025-10-28 17:44:50.311 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][842da60b-1b61-49c7-8ec2-4d9faf52fdeb] socks connection closed\n2025-10-28 17:44:50.311 [info] [command][74bc6d2c-b490-4004-ba67-91c3510c880d] Socket close event received\n2025-10-28 17:45:50.317 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:45:50.319 [info] [command][29b3501b-4f16-478d-81f0-625486edb9cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""29b3501b-4f16-478d-81f0-625486edb9cb""}\n2025-10-28 17:45:50.320 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8a8659d4-8b3e-48ca-9422-0586a73486b4] received connection request\n2025-10-28 17:45:50.343 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8a8659d4-8b3e-48ca-9422-0586a73486b4] socks forwarding established\n2025-10-28 17:45:50.368 [info] [command][29b3501b-4f16-478d-81f0-625486edb9cb] Process exited with code 0\n2025-10-28 17:45:50.369 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8a8659d4-8b3e-48ca-9422-0586a73486b4] socks connection closed\n2025-10-28 17:45:50.369 [info] [command][29b3501b-4f16-478d-81f0-625486edb9cb] Socket close event received\n2025-10-28 17:46:50.369 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:46:50.372 [info] [command][271b5225-7d00-4083-8993-ff976e8506a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""271b5225-7d00-4083-8993-ff976e8506a6""}\n2025-10-28 17:46:50.372 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c7b7ea22-c482-41f1-8228-3ac7b533f910] received connection request\n2025-10-28 17:46:50.397 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c7b7ea22-c482-41f1-8228-3ac7b533f910] socks forwarding established\n2025-10-28 17:46:50.423 [info] [command][271b5225-7d00-4083-8993-ff976e8506a6] Process exited with code 0\n2025-10-28 17:46:50.423 [info] [command][271b5225-7d00-4083-8993-ff976e8506a6] Socket close event received\n2025-10-28 17:46:50.423 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c7b7ea22-c482-41f1-8228-3ac7b533f910] socks connection closed\n2025-10-28 17:47:50.428 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:47:50.429 [info] [command][4051b0e8-bcb6-4e1b-b36b-0af7b23a66e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4051b0e8-bcb6-4e1b-b36b-0af7b23a66e8""}\n2025-10-28 17:47:50.431 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2efe9b7d-ac92-4714-8602-68e6a12e0535] received connection request\n2025-10-28 17:47:50.454 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2efe9b7d-ac92-4714-8602-68e6a12e0535] socks forwarding established\n2025-10-28 17:47:50.479 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2efe9b7d-ac92-4714-8602-68e6a12e0535] socks connection closed\n2025-10-28 17:47:50.479 [info] [command][4051b0e8-bcb6-4e1b-b36b-0af7b23a66e8] Process exited with code 0\n2025-10-28 17:47:50.480 [info] [command][4051b0e8-bcb6-4e1b-b36b-0af7b23a66e8] Socket close event received\n2025-10-28 17:48:50.481 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:48:50.484 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e32599e0-8d8c-4269-b9a7-a1d71dc4084e] received connection request\n2025-10-28 17:48:50.485 [info] [command][c1701a37-2ce2-4d94-9250-e27f8e66f4b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c1701a37-2ce2-4d94-9250-e27f8e66f4b4""}\n2025-10-28 17:48:50.510 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e32599e0-8d8c-4269-b9a7-a1d71dc4084e] socks forwarding established\n2025-10-28 17:48:50.547 [info] [command][c1701a37-2ce2-4d94-9250-e27f8e66f4b4] Process exited with code 0\n2025-10-28 17:48:50.547 [info] [command][c1701a37-2ce2-4d94-9250-e27f8e66f4b4] Socket close event received\n2025-10-28 17:48:50.548 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e32599e0-8d8c-4269-b9a7-a1d71dc4084e] socks connection closed\n2025-10-28 17:49:50.553 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:49:50.555 [info] [command][420f5669-28dd-452a-9fe6-9976b6a0b92f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""420f5669-28dd-452a-9fe6-9976b6a0b92f""}\n2025-10-28 17:49:50.555 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][11172011-8297-4ac5-b1b7-388d67006fa9] received connection request\n2025-10-28 17:49:50.579 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][11172011-8297-4ac5-b1b7-388d67006fa9] socks forwarding established\n2025-10-28 17:49:50.607 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][11172011-8297-4ac5-b1b7-388d67006fa9] socks connection closed\n2025-10-28 17:49:50.607 [info] [command][420f5669-28dd-452a-9fe6-9976b6a0b92f] Process exited with code 0\n2025-10-28 17:49:50.607 [info] [command][420f5669-28dd-452a-9fe6-9976b6a0b92f] Socket close event received\n2025-10-28 17:50:50.610 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:50:50.612 [info] [command][4643dcb4-9006-4a6b-a350-6e1c1f6e7069] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4643dcb4-9006-4a6b-a350-6e1c1f6e7069""}\n2025-10-28 17:50:50.613 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][667026f2-17fa-4670-83c5-e2523c84d827] received connection request\n2025-10-28 17:50:50.635 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][667026f2-17fa-4670-83c5-e2523c84d827] socks forwarding established\n2025-10-28 17:50:50.665 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][667026f2-17fa-4670-83c5-e2523c84d827] socks connection closed\n2025-10-28 17:50:50.665 [info] [command][4643dcb4-9006-4a6b-a350-6e1c1f6e7069] Process exited with code 0\n2025-10-28 17:50:50.665 [info] [command][4643dcb4-9006-4a6b-a350-6e1c1f6e7069] Socket close event received\n2025-10-28 17:51:50.668 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:51:50.669 [info] [command][3b2d9036-e7b6-49d7-9348-e2cb0d3bed31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3b2d9036-e7b6-49d7-9348-e2cb0d3bed31""}\n2025-10-28 17:51:50.669 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][163c28a4-35d0-4806-a1c7-d7f2b5012e03] received connection request\n2025-10-28 17:51:50.691 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][163c28a4-35d0-4806-a1c7-d7f2b5012e03] socks forwarding established\n2025-10-28 17:51:50.719 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][163c28a4-35d0-4806-a1c7-d7f2b5012e03] socks connection closed\n2025-10-28 17:51:50.719 [info] [command][3b2d9036-e7b6-49d7-9348-e2cb0d3bed31] Process exited with code 0\n2025-10-28 17:51:50.719 [info] [command][3b2d9036-e7b6-49d7-9348-e2cb0d3bed31] Socket close event received\n2025-10-28 17:52:50.721 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:52:50.722 [info] [command][d4be33de-088b-4141-81f7-e520eaf8ddd2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d4be33de-088b-4141-81f7-e520eaf8ddd2""}\n2025-10-28 17:52:50.722 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2cac691c-5f17-4ec0-afdf-40222acd1a9d] received connection request\n2025-10-28 17:52:50.744 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2cac691c-5f17-4ec0-afdf-40222acd1a9d] socks forwarding established\n2025-10-28 17:52:50.769 [info] [command][d4be33de-088b-4141-81f7-e520eaf8ddd2] Process exited with code 0\n2025-10-28 17:52:50.769 [info] [command][d4be33de-088b-4141-81f7-e520eaf8ddd2] Socket close event received\n2025-10-28 17:52:50.769 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2cac691c-5f17-4ec0-afdf-40222acd1a9d] socks connection closed\n2025-10-28 17:53:50.774 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:53:50.775 [info] [command][cb5a7a62-f57b-4233-bfaa-893fbf80a1a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cb5a7a62-f57b-4233-bfaa-893fbf80a1a0""}\n2025-10-28 17:53:50.776 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][518e385b-9884-4162-a33c-8fe153b115fb] received connection request\n2025-10-28 17:53:50.810 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][518e385b-9884-4162-a33c-8fe153b115fb] socks forwarding established\n2025-10-28 17:53:50.835 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][518e385b-9884-4162-a33c-8fe153b115fb] socks connection closed\n2025-10-28 17:53:50.835 [info] [command][cb5a7a62-f57b-4233-bfaa-893fbf80a1a0] Process exited with code 0\n2025-10-28 17:53:50.835 [info] [command][cb5a7a62-f57b-4233-bfaa-893fbf80a1a0] Socket close event received\n2025-10-28 17:54:50.841 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:54:50.843 [info] [command][32a4ba42-8287-4494-9d72-07f19160fce4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""32a4ba42-8287-4494-9d72-07f19160fce4""}\n2025-10-28 17:54:50.843 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][aba920ee-eab4-4bd3-acd2-87c2f8d61ede] received connection request\n2025-10-28 17:54:50.865 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][aba920ee-eab4-4bd3-acd2-87c2f8d61ede] socks forwarding established\n2025-10-28 17:54:50.890 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][aba920ee-eab4-4bd3-acd2-87c2f8d61ede] socks connection closed\n2025-10-28 17:54:50.890 [info] [command][32a4ba42-8287-4494-9d72-07f19160fce4] Process exited with code 0\n2025-10-28 17:54:50.890 [info] [command][32a4ba42-8287-4494-9d72-07f19160fce4] Socket close event received\n2025-10-28 17:55:50.895 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:55:50.899 [info] [command][38ded99b-e6ad-4d6c-b37a-3b1b30cb4d3c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""38ded99b-e6ad-4d6c-b37a-3b1b30cb4d3c""}\n2025-10-28 17:55:50.900 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7b7276f8-dde9-439c-9664-f61efa4070bb] received connection request\n2025-10-28 17:55:50.927 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7b7276f8-dde9-439c-9664-f61efa4070bb] socks forwarding established\n2025-10-28 17:55:50.961 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7b7276f8-dde9-439c-9664-f61efa4070bb] socks connection closed\n2025-10-28 17:55:50.961 [info] [command][38ded99b-e6ad-4d6c-b37a-3b1b30cb4d3c] Process exited with code 0\n2025-10-28 17:55:50.961 [info] [command][38ded99b-e6ad-4d6c-b37a-3b1b30cb4d3c] Socket close event received\n2025-10-28 17:56:50.965 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:56:50.967 [info] [command][7feb5cb7-3d98-4f10-a96a-a915c94a03d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7feb5cb7-3d98-4f10-a96a-a915c94a03d0""}\n2025-10-28 17:56:50.967 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][67699137-75cb-4217-a826-0b2db9e1bb0c] received connection request\n2025-10-28 17:56:50.996 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][67699137-75cb-4217-a826-0b2db9e1bb0c] socks forwarding established\n2025-10-28 17:56:51.028 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][67699137-75cb-4217-a826-0b2db9e1bb0c] socks connection closed\n2025-10-28 17:56:51.029 [info] [command][7feb5cb7-3d98-4f10-a96a-a915c94a03d0] Process exited with code 0\n2025-10-28 17:56:51.029 [info] [command][7feb5cb7-3d98-4f10-a96a-a915c94a03d0] Socket close event received\n2025-10-28 17:57:51.035 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:57:51.038 [info] [command][589e2d53-4b58-4c65-8157-ed670a0ffc41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""589e2d53-4b58-4c65-8157-ed670a0ffc41""}\n2025-10-28 17:57:51.038 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f22beac6-2b75-4bc5-8c15-74c46e081913] received connection request\n2025-10-28 17:57:51.064 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f22beac6-2b75-4bc5-8c15-74c46e081913] socks forwarding established\n2025-10-28 17:57:51.090 [info] [command][589e2d53-4b58-4c65-8157-ed670a0ffc41] Process exited with code 0\n2025-10-28 17:57:51.090 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f22beac6-2b75-4bc5-8c15-74c46e081913] socks connection closed\n2025-10-28 17:57:51.090 [info] [command][589e2d53-4b58-4c65-8157-ed670a0ffc41] Socket close event received\n2025-10-28 17:58:51.094 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:58:51.097 [info] [command][19d2000b-3b5e-423c-8221-ce56f33a7179] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""19d2000b-3b5e-423c-8221-ce56f33a7179""}\n2025-10-28 17:58:51.098 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2d97ff89-802e-4e35-a2ff-64ca5d081f91] received connection request\n2025-10-28 17:58:51.121 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2d97ff89-802e-4e35-a2ff-64ca5d081f91] socks forwarding established\n2025-10-28 17:58:51.146 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2d97ff89-802e-4e35-a2ff-64ca5d081f91] socks connection closed\n2025-10-28 17:58:51.146 [info] [command][19d2000b-3b5e-423c-8221-ce56f33a7179] Process exited with code 0\n2025-10-28 17:58:51.147 [info] [command][19d2000b-3b5e-423c-8221-ce56f33a7179] Socket close event received\n2025-10-28 17:59:51.153 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 17:59:51.158 [info] [command][7ea5eae8-b7cc-467c-8d0b-b0285ed128ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7ea5eae8-b7cc-467c-8d0b-b0285ed128ca""}\n2025-10-28 17:59:51.159 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0e41d717-5074-46b5-86a2-9ebca3df7b3f] received connection request\n2025-10-28 17:59:51.183 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0e41d717-5074-46b5-86a2-9ebca3df7b3f] socks forwarding established\n2025-10-28 17:59:51.211 [info] [command][7ea5eae8-b7cc-467c-8d0b-b0285ed128ca] Process exited with code 0\n2025-10-28 17:59:51.211 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0e41d717-5074-46b5-86a2-9ebca3df7b3f] socks connection closed\n2025-10-28 17:59:51.211 [info] [command][7ea5eae8-b7cc-467c-8d0b-b0285ed128ca] Socket close event received\n2025-10-28 18:00:51.212 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:00:51.215 [info] [command][255ca326-4b64-491e-be74-8764ca687637] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""255ca326-4b64-491e-be74-8764ca687637""}\n2025-10-28 18:00:51.216 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1a54ddda-933a-40fd-94e5-9fca0d08522f] received connection request\n2025-10-28 18:00:51.239 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1a54ddda-933a-40fd-94e5-9fca0d08522f] socks forwarding established\n2025-10-28 18:00:51.266 [info] [command][255ca326-4b64-491e-be74-8764ca687637] Process exited with code 0\n2025-10-28 18:00:51.267 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1a54ddda-933a-40fd-94e5-9fca0d08522f] socks connection closed\n2025-10-28 18:00:51.267 [info] [command][255ca326-4b64-491e-be74-8764ca687637] Socket close event received\n2025-10-28 18:01:51.269 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:01:51.271 [info] [command][f1efa4ce-023a-4780-af51-f716d6f4c6f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f1efa4ce-023a-4780-af51-f716d6f4c6f2""}\n2025-10-28 18:01:51.272 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5f4a030f-aeed-475c-9dad-87b43f9a6cd2] received connection request\n2025-10-28 18:01:51.296 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f4a030f-aeed-475c-9dad-87b43f9a6cd2] socks forwarding established\n2025-10-28 18:01:51.321 [info] [command][f1efa4ce-023a-4780-af51-f716d6f4c6f2] Process exited with code 0\n2025-10-28 18:01:51.321 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f4a030f-aeed-475c-9dad-87b43f9a6cd2] socks connection closed\n2025-10-28 18:01:51.322 [info] [command][f1efa4ce-023a-4780-af51-f716d6f4c6f2] Socket close event received\n2025-10-28 18:02:51.323 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:02:51.325 [info] [command][55c72c77-a268-44a0-b386-eda560be4683] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""55c72c77-a268-44a0-b386-eda560be4683""}\n2025-10-28 18:02:51.326 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][01d77f80-b0ae-4bbc-b029-f916e5f21077] received connection request\n2025-10-28 18:02:51.354 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][01d77f80-b0ae-4bbc-b029-f916e5f21077] socks forwarding established\n2025-10-28 18:02:51.379 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][01d77f80-b0ae-4bbc-b029-f916e5f21077] socks connection closed\n2025-10-28 18:02:51.379 [info] [command][55c72c77-a268-44a0-b386-eda560be4683] Process exited with code 0\n2025-10-28 18:02:51.379 [info] [command][55c72c77-a268-44a0-b386-eda560be4683] Socket close event received\n2025-10-28 18:03:51.385 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:03:51.387 [info] [command][e4d2eb2b-d300-4007-b633-54ca9501befe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e4d2eb2b-d300-4007-b633-54ca9501befe""}\n2025-10-28 18:03:51.387 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fff0aab6-ee30-4352-9c2b-8f4ab6f77ecc] received connection request\n2025-10-28 18:03:51.411 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fff0aab6-ee30-4352-9c2b-8f4ab6f77ecc] socks forwarding established\n2025-10-28 18:03:51.438 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fff0aab6-ee30-4352-9c2b-8f4ab6f77ecc] socks connection closed\n2025-10-28 18:03:51.439 [info] [command][e4d2eb2b-d300-4007-b633-54ca9501befe] Process exited with code 0\n2025-10-28 18:03:51.439 [info] [command][e4d2eb2b-d300-4007-b633-54ca9501befe] Socket close event received\n2025-10-28 18:04:51.444 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:04:51.446 [info] [command][eead53cd-2aa5-4547-8d13-28d76db29f5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eead53cd-2aa5-4547-8d13-28d76db29f5b""}\n2025-10-28 18:04:51.447 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6cbdce9b-b236-4871-aa4a-88b0f3770cf7] received connection request\n2025-10-28 18:04:51.486 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6cbdce9b-b236-4871-aa4a-88b0f3770cf7] socks forwarding established\n2025-10-28 18:04:51.520 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6cbdce9b-b236-4871-aa4a-88b0f3770cf7] socks connection closed\n2025-10-28 18:04:51.520 [info] [command][eead53cd-2aa5-4547-8d13-28d76db29f5b] Process exited with code 0\n2025-10-28 18:04:51.520 [info] [command][eead53cd-2aa5-4547-8d13-28d76db29f5b] Socket close event received\n2025-10-28 18:05:51.525 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:05:51.527 [info] [command][693f01e4-aed4-478e-b61d-da8cb3f63a32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""693f01e4-aed4-478e-b61d-da8cb3f63a32""}\n2025-10-28 18:05:51.528 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3c20671e-2d9a-41f1-8969-c093a0822405] received connection request\n2025-10-28 18:05:51.552 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3c20671e-2d9a-41f1-8969-c093a0822405] socks forwarding established\n2025-10-28 18:05:51.576 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3c20671e-2d9a-41f1-8969-c093a0822405] socks connection closed\n2025-10-28 18:05:51.577 [info] [command][693f01e4-aed4-478e-b61d-da8cb3f63a32] Process exited with code 0\n2025-10-28 18:05:51.577 [info] [command][693f01e4-aed4-478e-b61d-da8cb3f63a32] Socket close event received\n2025-10-28 18:06:51.581 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:06:51.583 [info] [command][ae8986e8-7cf4-4403-8655-ef21cab0e7af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ae8986e8-7cf4-4403-8655-ef21cab0e7af""}\n2025-10-28 18:06:51.584 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6987342c-259b-435d-91e3-c5dc1c734a02] received connection request\n2025-10-28 18:06:51.606 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6987342c-259b-435d-91e3-c5dc1c734a02] socks forwarding established\n2025-10-28 18:06:51.642 [info] [command][ae8986e8-7cf4-4403-8655-ef21cab0e7af] Process exited with code 0\n2025-10-28 18:06:51.642 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6987342c-259b-435d-91e3-c5dc1c734a02] socks connection closed\n2025-10-28 18:06:51.642 [info] [command][ae8986e8-7cf4-4403-8655-ef21cab0e7af] Socket close event received\n2025-10-28 18:07:51.647 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:07:51.650 [info] [command][03bb14ae-0caa-4245-b169-929ed8924d6f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""03bb14ae-0caa-4245-b169-929ed8924d6f""}\n2025-10-28 18:07:51.651 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d0aade67-2a46-4f8b-b586-f975c8347dbc] received connection request\n2025-10-28 18:07:51.674 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d0aade67-2a46-4f8b-b586-f975c8347dbc] socks forwarding established\n2025-10-28 18:07:51.700 [info] [command][03bb14ae-0caa-4245-b169-929ed8924d6f] Process exited with code 0\n2025-10-28 18:07:51.700 [info] [command][03bb14ae-0caa-4245-b169-929ed8924d6f] Socket close event received\n2025-10-28 18:07:51.700 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d0aade67-2a46-4f8b-b586-f975c8347dbc] socks connection closed\n2025-10-28 18:08:51.704 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:08:51.706 [info] [command][f299c772-f1e3-4a4f-9c62-2980e80ba73e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f299c772-f1e3-4a4f-9c62-2980e80ba73e""}\n2025-10-28 18:08:51.706 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6a6a04d1-90c2-491c-8573-40fc82df29fd] received connection request\n2025-10-28 18:08:51.729 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6a6a04d1-90c2-491c-8573-40fc82df29fd] socks forwarding established\n2025-10-28 18:08:51.756 [info] [command][f299c772-f1e3-4a4f-9c62-2980e80ba73e] Process exited with code 0\n2025-10-28 18:08:51.756 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6a6a04d1-90c2-491c-8573-40fc82df29fd] socks connection closed\n2025-10-28 18:08:51.756 [info] [command][f299c772-f1e3-4a4f-9c62-2980e80ba73e] Socket close event received\n2025-10-28 18:09:51.761 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:09:51.763 [info] [command][44e9e501-f6f0-4c09-bcbc-c9545fc43a0d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""44e9e501-f6f0-4c09-bcbc-c9545fc43a0d""}\n2025-10-28 18:09:51.764 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5e4052ed-b7a3-4a08-8628-fe334ad80bfe] received connection request\n2025-10-28 18:09:51.787 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5e4052ed-b7a3-4a08-8628-fe334ad80bfe] socks forwarding established\n2025-10-28 18:09:51.811 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5e4052ed-b7a3-4a08-8628-fe334ad80bfe] socks connection closed\n2025-10-28 18:09:51.812 [info] [command][44e9e501-f6f0-4c09-bcbc-c9545fc43a0d] Process exited with code 0\n2025-10-28 18:09:51.812 [info] [command][44e9e501-f6f0-4c09-bcbc-c9545fc43a0d] Socket close event received\n2025-10-28 18:10:51.814 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:10:51.816 [info] [command][63735534-3dd2-4f90-ad06-465a764182b2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""63735534-3dd2-4f90-ad06-465a764182b2""}\n2025-10-28 18:10:51.816 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][bb03ca4b-37af-4836-afd4-c36b8b87ab29] received connection request\n2025-10-28 18:10:51.840 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bb03ca4b-37af-4836-afd4-c36b8b87ab29] socks forwarding established\n2025-10-28 18:10:51.865 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bb03ca4b-37af-4836-afd4-c36b8b87ab29] socks connection closed\n2025-10-28 18:10:51.865 [info] [command][63735534-3dd2-4f90-ad06-465a764182b2] Process exited with code 0\n2025-10-28 18:10:51.865 [info] [command][63735534-3dd2-4f90-ad06-465a764182b2] Socket close event received\n2025-10-28 18:11:51.865 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:11:51.867 [info] [command][bce113c4-fd62-4d9f-9b99-ae7e4d50e9ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bce113c4-fd62-4d9f-9b99-ae7e4d50e9ca""}\n2025-10-28 18:11:51.868 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][36414cca-b0d0-459d-a515-b6f0b15d8906] received connection request\n2025-10-28 18:11:51.903 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][36414cca-b0d0-459d-a515-b6f0b15d8906] socks forwarding established\n2025-10-28 18:11:51.931 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][36414cca-b0d0-459d-a515-b6f0b15d8906] socks connection closed\n2025-10-28 18:11:51.931 [info] [command][bce113c4-fd62-4d9f-9b99-ae7e4d50e9ca] Process exited with code 0\n2025-10-28 18:11:51.931 [info] [command][bce113c4-fd62-4d9f-9b99-ae7e4d50e9ca] Socket close event received\n2025-10-28 18:12:51.976 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:12:51.978 [info] [command][02043ecc-0a8c-4597-bb36-550958cc7089] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""02043ecc-0a8c-4597-bb36-550958cc7089""}\n2025-10-28 18:12:51.979 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][dac70cdb-9fec-40e5-b8e8-ee0ad2f5a978] received connection request\n2025-10-28 18:12:52.013 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dac70cdb-9fec-40e5-b8e8-ee0ad2f5a978] socks forwarding established\n2025-10-28 18:12:52.054 [info] [command][02043ecc-0a8c-4597-bb36-550958cc7089] Process exited with code 0\n2025-10-28 18:12:52.055 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][dac70cdb-9fec-40e5-b8e8-ee0ad2f5a978] socks connection closed\n2025-10-28 18:12:52.055 [info] [command][02043ecc-0a8c-4597-bb36-550958cc7089] Socket close event received\n2025-10-28 18:13:52.064 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:13:52.066 [info] [command][3475865a-6e10-4a3f-a82c-5db5c9d5e614] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3475865a-6e10-4a3f-a82c-5db5c9d5e614""}\n2025-10-28 18:13:52.067 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e2dcd847-d839-46ed-afa4-b316e7f98a30] received connection request\n2025-10-28 18:13:52.091 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e2dcd847-d839-46ed-afa4-b316e7f98a30] socks forwarding established\n2025-10-28 18:13:52.116 [info] [command][3475865a-6e10-4a3f-a82c-5db5c9d5e614] Process exited with code 0\n2025-10-28 18:13:52.116 [info] [command][3475865a-6e10-4a3f-a82c-5db5c9d5e614] Socket close event received\n2025-10-28 18:13:52.116 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e2dcd847-d839-46ed-afa4-b316e7f98a30] socks connection closed\n2025-10-28 18:14:52.122 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:14:52.125 [info] [command][31d60274-432f-4851-894b-02e2ef95b9f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""31d60274-432f-4851-894b-02e2ef95b9f7""}\n2025-10-28 18:14:52.125 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9df3c2d8-e30e-4395-bf2d-09ce8de8a782] received connection request\n2025-10-28 18:14:52.148 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9df3c2d8-e30e-4395-bf2d-09ce8de8a782] socks forwarding established\n2025-10-28 18:14:52.173 [info] [command][31d60274-432f-4851-894b-02e2ef95b9f7] Process exited with code 0\n2025-10-28 18:14:52.173 [info] [command][31d60274-432f-4851-894b-02e2ef95b9f7] Socket close event received\n2025-10-28 18:14:52.174 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9df3c2d8-e30e-4395-bf2d-09ce8de8a782] socks connection closed\n2025-10-28 18:15:52.180 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:15:52.182 [info] [command][03a56932-95b9-4b73-8553-994e7bbcee41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""03a56932-95b9-4b73-8553-994e7bbcee41""}\n2025-10-28 18:15:52.183 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9078c95d-39df-4e34-8a75-52571e626031] received connection request\n2025-10-28 18:15:52.205 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9078c95d-39df-4e34-8a75-52571e626031] socks forwarding established\n2025-10-28 18:15:52.233 [info] [command][03a56932-95b9-4b73-8553-994e7bbcee41] Process exited with code 0\n2025-10-28 18:15:52.233 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9078c95d-39df-4e34-8a75-52571e626031] socks connection closed\n2025-10-28 18:15:52.234 [info] [command][03a56932-95b9-4b73-8553-994e7bbcee41] Socket close event received\n2025-10-28 18:16:52.235 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:16:52.237 [info] [command][17715dce-13f2-4246-bafa-908b747e23e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""17715dce-13f2-4246-bafa-908b747e23e0""}\n2025-10-28 18:16:52.238 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5214d211-e720-4d98-b911-f5225b095f52] received connection request\n2025-10-28 18:16:52.264 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5214d211-e720-4d98-b911-f5225b095f52] socks forwarding established\n2025-10-28 18:16:52.292 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5214d211-e720-4d98-b911-f5225b095f52] socks connection closed\n2025-10-28 18:16:52.293 [info] [command][17715dce-13f2-4246-bafa-908b747e23e0] Process exited with code 0\n2025-10-28 18:16:52.293 [info] [command][17715dce-13f2-4246-bafa-908b747e23e0] Socket close event received\n2025-10-28 18:17:52.299 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:17:52.302 [info] [command][48efbb7b-0d11-4192-912d-b96913ccec29] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""48efbb7b-0d11-4192-912d-b96913ccec29""}\n2025-10-28 18:17:52.302 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a0cb398d-4aad-432d-9497-6cbc1360f843] received connection request\n2025-10-28 18:17:52.337 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a0cb398d-4aad-432d-9497-6cbc1360f843] socks forwarding established\n2025-10-28 18:17:52.378 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a0cb398d-4aad-432d-9497-6cbc1360f843] socks connection closed\n2025-10-28 18:17:52.378 [info] [command][48efbb7b-0d11-4192-912d-b96913ccec29] Process exited with code 0\n2025-10-28 18:17:52.379 [info] [command][48efbb7b-0d11-4192-912d-b96913ccec29] Socket close event received\n2025-10-28 18:18:52.385 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:18:52.388 [info] [command][037cd3b4-3a54-4fcc-a29a-12d9e7b524a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""037cd3b4-3a54-4fcc-a29a-12d9e7b524a5""}\n2025-10-28 18:18:52.388 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f7fd51f8-a757-4ad5-a97d-3249bfe0026d] received connection request\n2025-10-28 18:18:52.411 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f7fd51f8-a757-4ad5-a97d-3249bfe0026d] socks forwarding established\n2025-10-28 18:18:52.440 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f7fd51f8-a757-4ad5-a97d-3249bfe0026d] socks connection closed\n2025-10-28 18:18:52.440 [info] [command][037cd3b4-3a54-4fcc-a29a-12d9e7b524a5] Process exited with code 0\n2025-10-28 18:18:52.440 [info] [command][037cd3b4-3a54-4fcc-a29a-12d9e7b524a5] Socket close event received\n2025-10-28 18:19:52.447 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:19:52.450 [info] [command][7d0a3e19-6225-4371-af38-9766270e20b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7d0a3e19-6225-4371-af38-9766270e20b5""}\n2025-10-28 18:19:52.451 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ae00b34b-17a2-40bb-805e-c07bed9901d6] received connection request\n2025-10-28 18:19:52.475 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ae00b34b-17a2-40bb-805e-c07bed9901d6] socks forwarding established\n2025-10-28 18:19:52.500 [info] [command][7d0a3e19-6225-4371-af38-9766270e20b5] Process exited with code 0\n2025-10-28 18:19:52.500 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ae00b34b-17a2-40bb-805e-c07bed9901d6] socks connection closed\n2025-10-28 18:19:52.500 [info] [command][7d0a3e19-6225-4371-af38-9766270e20b5] Socket close event received\n2025-10-28 18:20:52.507 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:20:52.511 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cf24a54a-3532-4983-bfc4-e2be732c5f6f] received connection request\n2025-10-28 18:20:52.511 [info] [command][9f8715e3-30ef-4431-b9fd-4518244d87ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9f8715e3-30ef-4431-b9fd-4518244d87ed""}\n2025-10-28 18:20:52.554 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf24a54a-3532-4983-bfc4-e2be732c5f6f] socks forwarding established\n2025-10-28 18:20:52.589 [info] [command][9f8715e3-30ef-4431-b9fd-4518244d87ed] Process exited with code 0\n2025-10-28 18:20:52.589 [info] [command][9f8715e3-30ef-4431-b9fd-4518244d87ed] Socket close event received\n2025-10-28 18:20:52.590 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cf24a54a-3532-4983-bfc4-e2be732c5f6f] socks connection closed\n2025-10-28 18:21:52.595 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:21:52.598 [info] [command][f9c2b99a-80c6-4154-843d-17004cf23c6c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f9c2b99a-80c6-4154-843d-17004cf23c6c""}\n2025-10-28 18:21:52.598 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a7302e1d-4e00-4703-aaff-067a64d9e63e] received connection request\n2025-10-28 18:21:52.621 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a7302e1d-4e00-4703-aaff-067a64d9e63e] socks forwarding established\n2025-10-28 18:21:52.646 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a7302e1d-4e00-4703-aaff-067a64d9e63e] socks connection closed\n2025-10-28 18:21:52.647 [info] [command][f9c2b99a-80c6-4154-843d-17004cf23c6c] Process exited with code 0\n2025-10-28 18:21:52.647 [info] [command][f9c2b99a-80c6-4154-843d-17004cf23c6c] Socket close event received\n2025-10-28 18:22:52.650 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:22:52.651 [info] [command][0e3801de-ea0c-4e6f-b9aa-efa386251c1f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0e3801de-ea0c-4e6f-b9aa-efa386251c1f""}\n2025-10-28 18:22:52.652 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1718741b-ca62-4e83-be00-b6a6684b0f83] received connection request\n2025-10-28 18:22:52.673 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1718741b-ca62-4e83-be00-b6a6684b0f83] socks forwarding established\n2025-10-28 18:22:52.699 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1718741b-ca62-4e83-be00-b6a6684b0f83] socks connection closed\n2025-10-28 18:22:52.699 [info] [command][0e3801de-ea0c-4e6f-b9aa-efa386251c1f] Process exited with code 0\n2025-10-28 18:22:52.699 [info] [command][0e3801de-ea0c-4e6f-b9aa-efa386251c1f] Socket close event received\n2025-10-28 18:23:52.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:23:52.706 [info] [command][6ac8fe24-1cd3-4cdc-88d2-712973b5c5e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6ac8fe24-1cd3-4cdc-88d2-712973b5c5e1""}\n2025-10-28 18:23:52.706 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][bbaeff91-6c6e-4239-95d9-96ddd254da36] received connection request\n2025-10-28 18:23:52.727 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bbaeff91-6c6e-4239-95d9-96ddd254da36] socks forwarding established\n2025-10-28 18:23:52.755 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bbaeff91-6c6e-4239-95d9-96ddd254da36] socks connection closed\n2025-10-28 18:23:52.756 [info] [command][6ac8fe24-1cd3-4cdc-88d2-712973b5c5e1] Process exited with code 0\n2025-10-28 18:23:52.756 [info] [command][6ac8fe24-1cd3-4cdc-88d2-712973b5c5e1] Socket close event received\n2025-10-28 18:24:52.756 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:24:52.758 [info] [command][edcb2500-cb5b-4a06-a7b9-1fda6f328ecb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""edcb2500-cb5b-4a06-a7b9-1fda6f328ecb""}\n2025-10-28 18:24:52.758 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a87b7f99-5a7c-4697-8aab-df738060942d] received connection request\n2025-10-28 18:24:52.790 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a87b7f99-5a7c-4697-8aab-df738060942d] socks forwarding established\n2025-10-28 18:24:52.911 [info] [command][edcb2500-cb5b-4a06-a7b9-1fda6f328ecb] Process exited with code 0\n2025-10-28 18:24:52.911 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a87b7f99-5a7c-4697-8aab-df738060942d] socks connection closed\n2025-10-28 18:24:52.911 [info] [command][edcb2500-cb5b-4a06-a7b9-1fda6f328ecb] Socket close event received\n2025-10-28 18:25:52.917 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:25:52.919 [info] [command][8e82c328-3d5f-4e10-a1a4-e319754fc109] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8e82c328-3d5f-4e10-a1a4-e319754fc109""}\n2025-10-28 18:25:52.920 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][24ac9ceb-da2b-48f6-8be3-40230e62e9bf] received connection request\n2025-10-28 18:25:52.943 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][24ac9ceb-da2b-48f6-8be3-40230e62e9bf] socks forwarding established\n2025-10-28 18:25:52.971 [info] [command][8e82c328-3d5f-4e10-a1a4-e319754fc109] Process exited with code 0\n2025-10-28 18:25:52.971 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][24ac9ceb-da2b-48f6-8be3-40230e62e9bf] socks connection closed\n2025-10-28 18:25:52.971 [info] [command][8e82c328-3d5f-4e10-a1a4-e319754fc109] Socket close event received\n2025-10-28 18:26:52.977 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:26:52.979 [info] [command][43b9acb1-9660-4fe7-9605-8106e3392f2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""43b9acb1-9660-4fe7-9605-8106e3392f2b""}\n2025-10-28 18:26:52.980 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][241f32e1-4c4d-4244-adfa-23d5aa551031] received connection request\n2025-10-28 18:26:53.008 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][241f32e1-4c4d-4244-adfa-23d5aa551031] socks forwarding established\n2025-10-28 18:26:53.034 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][241f32e1-4c4d-4244-adfa-23d5aa551031] socks connection closed\n2025-10-28 18:26:53.034 [info] [command][43b9acb1-9660-4fe7-9605-8106e3392f2b] Process exited with code 0\n2025-10-28 18:26:53.034 [info] [command][43b9acb1-9660-4fe7-9605-8106e3392f2b] Socket close event received\n2025-10-28 18:27:53.040 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:27:53.043 [info] [command][b9d82615-cb3f-46f9-b292-38db7237062b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b9d82615-cb3f-46f9-b292-38db7237062b""}\n2025-10-28 18:27:53.044 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2ed05eef-bbdc-4382-9ad6-f90cf9ced4ba] received connection request\n2025-10-28 18:27:53.068 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2ed05eef-bbdc-4382-9ad6-f90cf9ced4ba] socks forwarding established\n2025-10-28 18:27:53.102 [info] [command][b9d82615-cb3f-46f9-b292-38db7237062b] Process exited with code 0\n2025-10-28 18:27:53.103 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2ed05eef-bbdc-4382-9ad6-f90cf9ced4ba] socks connection closed\n2025-10-28 18:27:53.103 [info] [command][b9d82615-cb3f-46f9-b292-38db7237062b] Socket close event received\n2025-10-28 18:28:53.108 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:28:53.110 [info] [command][b6b71c3f-9795-4108-ba6a-69d6314de45b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b6b71c3f-9795-4108-ba6a-69d6314de45b""}\n2025-10-28 18:28:53.110 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e8d645a2-fe01-4476-90e9-80c4f906381a] received connection request\n2025-10-28 18:28:53.136 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e8d645a2-fe01-4476-90e9-80c4f906381a] socks forwarding established\n2025-10-28 18:28:53.167 [info] [command][b6b71c3f-9795-4108-ba6a-69d6314de45b] Process exited with code 0\n2025-10-28 18:28:53.167 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e8d645a2-fe01-4476-90e9-80c4f906381a] socks connection closed\n2025-10-28 18:28:53.167 [info] [command][b6b71c3f-9795-4108-ba6a-69d6314de45b] Socket close event received\n2025-10-28 18:29:53.168 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:29:53.171 [info] [command][6d81e826-f2c9-490a-a02a-b141c39bb362] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6d81e826-f2c9-490a-a02a-b141c39bb362""}\n2025-10-28 18:29:53.171 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3913d054-01bb-458a-9a64-94c0fcf966c3] received connection request\n2025-10-28 18:29:53.201 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3913d054-01bb-458a-9a64-94c0fcf966c3] socks forwarding established\n2025-10-28 18:29:53.228 [info] [command][6d81e826-f2c9-490a-a02a-b141c39bb362] Process exited with code 0\n2025-10-28 18:29:53.229 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3913d054-01bb-458a-9a64-94c0fcf966c3] socks connection closed\n2025-10-28 18:29:53.229 [info] [command][6d81e826-f2c9-490a-a02a-b141c39bb362] Socket close event received\n2025-10-28 18:30:53.235 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:30:53.237 [info] [command][66dfd5ad-345a-4d49-8e5c-ab6fab29e24d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""66dfd5ad-345a-4d49-8e5c-ab6fab29e24d""}\n2025-10-28 18:30:53.238 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fff49bfe-0c37-47c5-ba7d-746d26e70f49] received connection request\n2025-10-28 18:30:53.260 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fff49bfe-0c37-47c5-ba7d-746d26e70f49] socks forwarding established\n2025-10-28 18:30:53.286 [info] [command][66dfd5ad-345a-4d49-8e5c-ab6fab29e24d] Process exited with code 0\n2025-10-28 18:30:53.286 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fff49bfe-0c37-47c5-ba7d-746d26e70f49] socks connection closed\n2025-10-28 18:30:53.287 [info] [command][66dfd5ad-345a-4d49-8e5c-ab6fab29e24d] Socket close event received\n2025-10-28 18:31:53.287 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:31:53.289 [info] [command][6dacd39a-09f0-4fad-a895-5e5db1421d74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6dacd39a-09f0-4fad-a895-5e5db1421d74""}\n2025-10-28 18:31:53.289 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][82b99470-a801-4f8f-8a5a-ddf748799552] received connection request\n2025-10-28 18:31:53.311 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][82b99470-a801-4f8f-8a5a-ddf748799552] socks forwarding established\n2025-10-28 18:31:53.337 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][82b99470-a801-4f8f-8a5a-ddf748799552] socks connection closed\n2025-10-28 18:31:53.337 [info] [command][6dacd39a-09f0-4fad-a895-5e5db1421d74] Process exited with code 0\n2025-10-28 18:31:53.337 [info] [command][6dacd39a-09f0-4fad-a895-5e5db1421d74] Socket close event received\n2025-10-28 18:32:53.343 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:32:53.347 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c55f3855-1dea-4276-ac42-d9bd1c2f78ef] received connection request\n2025-10-28 18:32:53.347 [info] [command][fa13c2a5-1a1b-4b9c-978e-0867a290fbe3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fa13c2a5-1a1b-4b9c-978e-0867a290fbe3""}\n2025-10-28 18:32:53.373 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c55f3855-1dea-4276-ac42-d9bd1c2f78ef] socks forwarding established\n2025-10-28 18:32:53.398 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c55f3855-1dea-4276-ac42-d9bd1c2f78ef] socks connection closed\n2025-10-28 18:32:53.398 [info] [command][fa13c2a5-1a1b-4b9c-978e-0867a290fbe3] Process exited with code 0\n2025-10-28 18:32:53.398 [info] [command][fa13c2a5-1a1b-4b9c-978e-0867a290fbe3] Socket close event received\n2025-10-28 18:33:53.405 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:33:53.406 [info] [command][a1f6abae-7f53-4a89-8603-d55e037b54b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a1f6abae-7f53-4a89-8603-d55e037b54b0""}\n2025-10-28 18:33:53.407 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ba574a44-8e52-43ea-835f-2402a49ec592] received connection request\n2025-10-28 18:33:53.431 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ba574a44-8e52-43ea-835f-2402a49ec592] socks forwarding established\n2025-10-28 18:33:53.460 [info] [command][a1f6abae-7f53-4a89-8603-d55e037b54b0] Process exited with code 0\n2025-10-28 18:33:53.460 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ba574a44-8e52-43ea-835f-2402a49ec592] socks connection closed\n2025-10-28 18:33:53.460 [info] [command][a1f6abae-7f53-4a89-8603-d55e037b54b0] Socket close event received\n2025-10-28 18:34:53.466 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:34:53.468 [info] [command][e822c24c-dc73-4dc0-9ea7-8f2474d610bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e822c24c-dc73-4dc0-9ea7-8f2474d610bd""}\n2025-10-28 18:34:53.469 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4bc79b0e-c3fe-47d3-868b-45e79e36d2b5] received connection request\n2025-10-28 18:34:53.492 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4bc79b0e-c3fe-47d3-868b-45e79e36d2b5] socks forwarding established\n2025-10-28 18:34:53.519 [info] [command][e822c24c-dc73-4dc0-9ea7-8f2474d610bd] Process exited with code 0\n2025-10-28 18:34:53.520 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4bc79b0e-c3fe-47d3-868b-45e79e36d2b5] socks connection closed\n2025-10-28 18:34:53.520 [info] [command][e822c24c-dc73-4dc0-9ea7-8f2474d610bd] Socket close event received\n2025-10-28 18:35:53.521 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:35:53.522 [info] [command][8098447f-1b06-4f85-8345-0138c9446852] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8098447f-1b06-4f85-8345-0138c9446852""}\n2025-10-28 18:35:53.523 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3c540803-705b-4a4d-952c-5600a2d58789] received connection request\n2025-10-28 18:35:53.546 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3c540803-705b-4a4d-952c-5600a2d58789] socks forwarding established\n2025-10-28 18:35:53.573 [info] [command][8098447f-1b06-4f85-8345-0138c9446852] Process exited with code 0\n2025-10-28 18:35:53.573 [info] [command][8098447f-1b06-4f85-8345-0138c9446852] Socket close event received\n2025-10-28 18:35:53.574 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3c540803-705b-4a4d-952c-5600a2d58789] socks connection closed\n2025-10-28 18:36:53.580 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:36:53.582 [info] [command][03fd3203-740c-4e34-992e-9c3f206ed249] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""03fd3203-740c-4e34-992e-9c3f206ed249""}\n2025-10-28 18:36:53.582 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][833e0f48-2acb-4df1-bc3a-23103eaefb7d] received connection request\n2025-10-28 18:36:53.606 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][833e0f48-2acb-4df1-bc3a-23103eaefb7d] socks forwarding established\n2025-10-28 18:36:53.634 [info] [command][03fd3203-740c-4e34-992e-9c3f206ed249] Process exited with code 0\n2025-10-28 18:36:53.634 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][833e0f48-2acb-4df1-bc3a-23103eaefb7d] socks connection closed\n2025-10-28 18:36:53.634 [info] [command][03fd3203-740c-4e34-992e-9c3f206ed249] Socket close event received\n2025-10-28 18:37:53.641 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:37:53.643 [info] [command][daef8b15-5f16-47f4-b2b8-23cd3cdb34f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""daef8b15-5f16-47f4-b2b8-23cd3cdb34f8""}\n2025-10-28 18:37:53.645 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][15779801-4c45-42e7-8b24-182e662c3472] received connection request\n2025-10-28 18:37:53.671 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][15779801-4c45-42e7-8b24-182e662c3472] socks forwarding established\n2025-10-28 18:37:53.697 [info] [command][daef8b15-5f16-47f4-b2b8-23cd3cdb34f8] Process exited with code 0\n2025-10-28 18:37:53.697 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][15779801-4c45-42e7-8b24-182e662c3472] socks connection closed\n2025-10-28 18:37:53.697 [info] [command][daef8b15-5f16-47f4-b2b8-23cd3cdb34f8] Socket close event received\n2025-10-28 18:38:53.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:38:53.708 [info] [command][2583486b-d974-448a-8585-add458a26fd0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2583486b-d974-448a-8585-add458a26fd0""}\n2025-10-28 18:38:53.708 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][42c91df1-f072-48e2-a7a1-f4354e27b120] received connection request\n2025-10-28 18:38:53.732 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][42c91df1-f072-48e2-a7a1-f4354e27b120] socks forwarding established\n2025-10-28 18:38:53.756 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][42c91df1-f072-48e2-a7a1-f4354e27b120] socks connection closed\n2025-10-28 18:38:53.757 [info] [command][2583486b-d974-448a-8585-add458a26fd0] Process exited with code 0\n2025-10-28 18:38:53.757 [info] [command][2583486b-d974-448a-8585-add458a26fd0] Socket close event received\n2025-10-28 18:39:53.778 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:39:53.783 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d2e792a5-c0e0-4e39-b99c-9d86bdd6b4b5] received connection request\n2025-10-28 18:39:53.783 [info] [command][4ea2f84b-2b0c-4aef-96fb-0c965e744b56] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4ea2f84b-2b0c-4aef-96fb-0c965e744b56""}\n2025-10-28 18:39:53.808 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d2e792a5-c0e0-4e39-b99c-9d86bdd6b4b5] socks forwarding established\n2025-10-28 18:39:53.867 [info] [command][4ea2f84b-2b0c-4aef-96fb-0c965e744b56] Process exited with code 0\n2025-10-28 18:39:53.867 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d2e792a5-c0e0-4e39-b99c-9d86bdd6b4b5] socks connection closed\n2025-10-28 18:39:53.867 [info] [command][4ea2f84b-2b0c-4aef-96fb-0c965e744b56] Socket close event received\n2025-10-28 18:40:53.878 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:40:53.880 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4862e370-5a7c-4d3c-8c99-9d9ff22e6fd7] received connection request\n2025-10-28 18:40:53.880 [info] [command][2d64be69-09ee-40a7-86fd-3de73afeab98] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2d64be69-09ee-40a7-86fd-3de73afeab98""}\n2025-10-28 18:40:53.904 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4862e370-5a7c-4d3c-8c99-9d9ff22e6fd7] socks forwarding established\n2025-10-28 18:40:53.930 [info] [command][2d64be69-09ee-40a7-86fd-3de73afeab98] Process exited with code 0\n2025-10-28 18:40:53.931 [info] [command][2d64be69-09ee-40a7-86fd-3de73afeab98] Socket close event received\n2025-10-28 18:40:53.931 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4862e370-5a7c-4d3c-8c99-9d9ff22e6fd7] socks connection closed\n2025-10-28 18:41:53.939 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:41:53.945 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][53c2dfed-8ed8-4b3f-8f6f-cc42a996b957] received connection request\n2025-10-28 18:41:53.945 [info] [command][cfa8823b-7ae5-4e02-997a-2d38a46393a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cfa8823b-7ae5-4e02-997a-2d38a46393a3""}\n2025-10-28 18:41:54.026 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][53c2dfed-8ed8-4b3f-8f6f-cc42a996b957] socks forwarding established\n2025-10-28 18:41:54.053 [info] [command][cfa8823b-7ae5-4e02-997a-2d38a46393a3] Process exited with code 0\n2025-10-28 18:41:54.053 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][53c2dfed-8ed8-4b3f-8f6f-cc42a996b957] socks connection closed\n2025-10-28 18:41:54.053 [info] [command][cfa8823b-7ae5-4e02-997a-2d38a46393a3] Socket close event received\n2025-10-28 18:42:54.047 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:42:54.051 [info] [command][23a8f738-40da-4190-94eb-724d2e9bfe1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""23a8f738-40da-4190-94eb-724d2e9bfe1e""}\n2025-10-28 18:42:54.052 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d1744c6e-3418-462a-b714-07628b4f63f4] received connection request\n2025-10-28 18:42:54.082 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d1744c6e-3418-462a-b714-07628b4f63f4] socks forwarding established\n2025-10-28 18:42:54.108 [info] [command][23a8f738-40da-4190-94eb-724d2e9bfe1e] Process exited with code 0\n2025-10-28 18:42:54.108 [info] [command][23a8f738-40da-4190-94eb-724d2e9bfe1e] Socket close event received\n2025-10-28 18:42:54.109 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d1744c6e-3418-462a-b714-07628b4f63f4] socks connection closed\n2025-10-28 18:43:54.098 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:43:54.100 [info] [command][cbaa0a2c-f596-4b16-a3f3-b7d4b8a118bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cbaa0a2c-f596-4b16-a3f3-b7d4b8a118bf""}\n2025-10-28 18:43:54.100 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][24788766-c62e-42d9-83b8-51d812259f74] received connection request\n2025-10-28 18:43:54.124 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][24788766-c62e-42d9-83b8-51d812259f74] socks forwarding established\n2025-10-28 18:43:54.148 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][24788766-c62e-42d9-83b8-51d812259f74] socks connection closed\n2025-10-28 18:43:54.149 [info] [command][cbaa0a2c-f596-4b16-a3f3-b7d4b8a118bf] Process exited with code 0\n2025-10-28 18:43:54.149 [info] [command][cbaa0a2c-f596-4b16-a3f3-b7d4b8a118bf] Socket close event received\n2025-10-28 18:44:54.154 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:44:54.157 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2c60c02b-a151-4f4a-a062-56039b4cfbba] received connection request\n2025-10-28 18:44:54.157 [info] [command][33503aa3-c54a-4afb-960a-188fec401625] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""33503aa3-c54a-4afb-960a-188fec401625""}\n2025-10-28 18:44:54.182 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2c60c02b-a151-4f4a-a062-56039b4cfbba] socks forwarding established\n2025-10-28 18:44:54.219 [info] [command][33503aa3-c54a-4afb-960a-188fec401625] Process exited with code 0\n2025-10-28 18:44:54.219 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2c60c02b-a151-4f4a-a062-56039b4cfbba] socks connection closed\n2025-10-28 18:44:54.220 [info] [command][33503aa3-c54a-4afb-960a-188fec401625] Socket close event received\n2025-10-28 18:45:54.225 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:45:54.227 [info] [command][72f09808-21b3-4191-9b16-16bfcf2ecf1b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""72f09808-21b3-4191-9b16-16bfcf2ecf1b""}\n2025-10-28 18:45:54.227 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f73087c7-5994-47a3-b3f3-82cc9a86b3ec] received connection request\n2025-10-28 18:45:54.253 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f73087c7-5994-47a3-b3f3-82cc9a86b3ec] socks forwarding established\n2025-10-28 18:45:54.278 [info] [command][72f09808-21b3-4191-9b16-16bfcf2ecf1b] Process exited with code 0\n2025-10-28 18:45:54.278 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f73087c7-5994-47a3-b3f3-82cc9a86b3ec] socks connection closed\n2025-10-28 18:45:54.278 [info] [command][72f09808-21b3-4191-9b16-16bfcf2ecf1b] Socket close event received\n2025-10-28 18:46:54.280 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:46:54.282 [info] [command][682dbe8d-02a4-4438-9a4c-0bbe09002f89] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""682dbe8d-02a4-4438-9a4c-0bbe09002f89""}\n2025-10-28 18:46:54.282 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][490a4aa8-594b-47c2-9c7c-d2ed34127d98] received connection request\n2025-10-28 18:46:54.306 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][490a4aa8-594b-47c2-9c7c-d2ed34127d98] socks forwarding established\n2025-10-28 18:46:54.332 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][490a4aa8-594b-47c2-9c7c-d2ed34127d98] socks connection closed\n2025-10-28 18:46:54.332 [info] [command][682dbe8d-02a4-4438-9a4c-0bbe09002f89] Process exited with code 0\n2025-10-28 18:46:54.332 [info] [command][682dbe8d-02a4-4438-9a4c-0bbe09002f89] Socket close event received\n2025-10-28 18:47:54.335 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:47:54.338 [info] [command][c8d92b5d-615c-4406-96c9-12ac2015bf60] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c8d92b5d-615c-4406-96c9-12ac2015bf60""}\n2025-10-28 18:47:54.339 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1032d73b-9281-413a-8f68-1cb31c8421fa] received connection request\n2025-10-28 18:47:54.362 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1032d73b-9281-413a-8f68-1cb31c8421fa] socks forwarding established\n2025-10-28 18:47:54.387 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1032d73b-9281-413a-8f68-1cb31c8421fa] socks connection closed\n2025-10-28 18:47:54.387 [info] [command][c8d92b5d-615c-4406-96c9-12ac2015bf60] Process exited with code 0\n2025-10-28 18:47:54.387 [info] [command][c8d92b5d-615c-4406-96c9-12ac2015bf60] Socket close event received\n2025-10-28 18:48:54.391 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:48:54.393 [info] [command][6fc1a073-1b7f-476e-8bb1-6cc446519227] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6fc1a073-1b7f-476e-8bb1-6cc446519227""}\n2025-10-28 18:48:54.393 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5fd8d167-457c-419a-8879-66014a0fc86e] received connection request\n2025-10-28 18:48:54.417 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5fd8d167-457c-419a-8879-66014a0fc86e] socks forwarding established\n2025-10-28 18:48:54.442 [info] [command][6fc1a073-1b7f-476e-8bb1-6cc446519227] Process exited with code 0\n2025-10-28 18:48:54.442 [info] [command][6fc1a073-1b7f-476e-8bb1-6cc446519227] Socket close event received\n2025-10-28 18:48:54.442 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5fd8d167-457c-419a-8879-66014a0fc86e] socks connection closed\n2025-10-28 18:49:54.444 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:49:54.445 [info] [command][6871a614-6e38-4765-85f7-7ee457e83165] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6871a614-6e38-4765-85f7-7ee457e83165""}\n2025-10-28 18:49:54.446 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8fae3b1b-7528-46bb-859a-59c5784c6f0e] received connection request\n2025-10-28 18:49:54.469 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8fae3b1b-7528-46bb-859a-59c5784c6f0e] socks forwarding established\n2025-10-28 18:49:54.495 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8fae3b1b-7528-46bb-859a-59c5784c6f0e] socks connection closed\n2025-10-28 18:49:54.495 [info] [command][6871a614-6e38-4765-85f7-7ee457e83165] Process exited with code 0\n2025-10-28 18:49:54.495 [info] [command][6871a614-6e38-4765-85f7-7ee457e83165] Socket close event received\n2025-10-28 18:50:54.501 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:50:54.503 [info] [command][0aca9417-9a80-40c8-8e27-35a1f15933aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0aca9417-9a80-40c8-8e27-35a1f15933aa""}\n2025-10-28 18:50:54.503 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5259d674-a7e2-4824-a0e3-b84084e1cb1e] received connection request\n2025-10-28 18:50:54.527 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5259d674-a7e2-4824-a0e3-b84084e1cb1e] socks forwarding established\n2025-10-28 18:50:54.552 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5259d674-a7e2-4824-a0e3-b84084e1cb1e] socks connection closed\n2025-10-28 18:50:54.552 [info] [command][0aca9417-9a80-40c8-8e27-35a1f15933aa] Process exited with code 0\n2025-10-28 18:50:54.552 [info] [command][0aca9417-9a80-40c8-8e27-35a1f15933aa] Socket close event received\n2025-10-28 18:51:54.555 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:51:54.558 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][490203e8-fa99-4f97-ad12-43578f62a72a] received connection request\n2025-10-28 18:51:54.558 [info] [command][7a46eac7-cc61-453e-abc2-7cb9f142278c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7a46eac7-cc61-453e-abc2-7cb9f142278c""}\n2025-10-28 18:51:54.582 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][490203e8-fa99-4f97-ad12-43578f62a72a] socks forwarding established\n2025-10-28 18:51:54.614 [info] [command][7a46eac7-cc61-453e-abc2-7cb9f142278c] Process exited with code 0\n2025-10-28 18:51:54.615 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][490203e8-fa99-4f97-ad12-43578f62a72a] socks connection closed\n2025-10-28 18:51:54.615 [info] [command][7a46eac7-cc61-453e-abc2-7cb9f142278c] Socket close event received\n2025-10-28 18:52:54.618 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:52:54.621 [info] [command][2f960aed-af72-42d0-a9b1-b0acd4ae5214] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2f960aed-af72-42d0-a9b1-b0acd4ae5214""}\n2025-10-28 18:52:54.621 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][10a9c1d1-218a-48b4-bdb7-4f3a5f4380bc] received connection request\n2025-10-28 18:52:54.647 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][10a9c1d1-218a-48b4-bdb7-4f3a5f4380bc] socks forwarding established\n2025-10-28 18:52:54.672 [info] [command][2f960aed-af72-42d0-a9b1-b0acd4ae5214] Process exited with code 0\n2025-10-28 18:52:54.672 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][10a9c1d1-218a-48b4-bdb7-4f3a5f4380bc] socks connection closed\n2025-10-28 18:52:54.673 [info] [command][2f960aed-af72-42d0-a9b1-b0acd4ae5214] Socket close event received\n2025-10-28 18:53:54.675 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:53:54.677 [info] [command][bd9d919c-d160-4821-ac48-cd2d15db813f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bd9d919c-d160-4821-ac48-cd2d15db813f""}\n2025-10-28 18:53:54.677 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f5244de2-b7f9-4b05-ad89-6ef123b95195] received connection request\n2025-10-28 18:53:54.700 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f5244de2-b7f9-4b05-ad89-6ef123b95195] socks forwarding established\n2025-10-28 18:53:54.727 [info] [command][bd9d919c-d160-4821-ac48-cd2d15db813f] Process exited with code 0\n2025-10-28 18:53:54.728 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f5244de2-b7f9-4b05-ad89-6ef123b95195] socks connection closed\n2025-10-28 18:53:54.728 [info] [command][bd9d919c-d160-4821-ac48-cd2d15db813f] Socket close event received\n2025-10-28 18:54:54.733 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:54:54.734 [info] [command][982580ac-9f1c-4708-8410-3eedf1ba2c5f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""982580ac-9f1c-4708-8410-3eedf1ba2c5f""}\n2025-10-28 18:54:54.735 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][03253dc3-b7c6-4329-9946-35dff0487870] received connection request\n2025-10-28 18:54:54.757 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][03253dc3-b7c6-4329-9946-35dff0487870] socks forwarding established\n2025-10-28 18:54:54.783 [info] [command][982580ac-9f1c-4708-8410-3eedf1ba2c5f] Process exited with code 0\n2025-10-28 18:54:54.783 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][03253dc3-b7c6-4329-9946-35dff0487870] socks connection closed\n2025-10-28 18:54:54.783 [info] [command][982580ac-9f1c-4708-8410-3eedf1ba2c5f] Socket close event received\n2025-10-28 18:55:54.786 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:55:54.788 [info] [command][b4ab0ab9-a2db-4a84-87eb-5fa39a183e8e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b4ab0ab9-a2db-4a84-87eb-5fa39a183e8e""}\n2025-10-28 18:55:54.790 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6bfad2bf-8815-4da5-93ca-4dc264f81951] received connection request\n2025-10-28 18:55:54.812 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6bfad2bf-8815-4da5-93ca-4dc264f81951] socks forwarding established\n2025-10-28 18:55:54.841 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6bfad2bf-8815-4da5-93ca-4dc264f81951] socks connection closed\n2025-10-28 18:55:54.842 [info] [command][b4ab0ab9-a2db-4a84-87eb-5fa39a183e8e] Process exited with code 0\n2025-10-28 18:55:54.842 [info] [command][b4ab0ab9-a2db-4a84-87eb-5fa39a183e8e] Socket close event received\n2025-10-28 18:56:54.848 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:56:54.850 [info] [command][87fd2b3c-2d2c-48a4-aa24-cbbd3e0cce06] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""87fd2b3c-2d2c-48a4-aa24-cbbd3e0cce06""}\n2025-10-28 18:56:54.851 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][90bd2a16-7739-499a-8a87-7dff193e295b] received connection request\n2025-10-28 18:56:54.874 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][90bd2a16-7739-499a-8a87-7dff193e295b] socks forwarding established\n2025-10-28 18:56:54.900 [info] [command][87fd2b3c-2d2c-48a4-aa24-cbbd3e0cce06] Process exited with code 0\n2025-10-28 18:56:54.900 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][90bd2a16-7739-499a-8a87-7dff193e295b] socks connection closed\n2025-10-28 18:56:54.900 [info] [command][87fd2b3c-2d2c-48a4-aa24-cbbd3e0cce06] Socket close event received\n2025-10-28 18:57:54.906 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:57:54.909 [info] [command][f872559a-ffc6-4f00-978a-77f6b2e474d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f872559a-ffc6-4f00-978a-77f6b2e474d0""}\n2025-10-28 18:57:54.909 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9458abad-3943-4481-a892-c5d9f3a1b16d] received connection request\n2025-10-28 18:57:54.933 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9458abad-3943-4481-a892-c5d9f3a1b16d] socks forwarding established\n2025-10-28 18:57:54.960 [info] [command][f872559a-ffc6-4f00-978a-77f6b2e474d0] Process exited with code 0\n2025-10-28 18:57:54.960 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9458abad-3943-4481-a892-c5d9f3a1b16d] socks connection closed\n2025-10-28 18:57:54.960 [info] [command][f872559a-ffc6-4f00-978a-77f6b2e474d0] Socket close event received\n2025-10-28 18:58:54.964 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:58:54.967 [info] [command][467119af-26cc-4120-92fe-e369612bd473] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""467119af-26cc-4120-92fe-e369612bd473""}\n2025-10-28 18:58:54.968 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5f2d3f48-ba34-4e8f-943a-833701a6be51] received connection request\n2025-10-28 18:58:54.991 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f2d3f48-ba34-4e8f-943a-833701a6be51] socks forwarding established\n2025-10-28 18:58:55.017 [info] [command][467119af-26cc-4120-92fe-e369612bd473] Process exited with code 0\n2025-10-28 18:58:55.017 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f2d3f48-ba34-4e8f-943a-833701a6be51] socks connection closed\n2025-10-28 18:58:55.018 [info] [command][467119af-26cc-4120-92fe-e369612bd473] Socket close event received\n2025-10-28 18:59:55.023 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 18:59:55.025 [info] [command][65e1cdec-78e6-461b-b5f6-be1fca16a540] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""65e1cdec-78e6-461b-b5f6-be1fca16a540""}\n2025-10-28 18:59:55.026 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5b5201ff-061b-46aa-a450-57c2cd6d5aff] received connection request\n2025-10-28 18:59:55.053 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5b5201ff-061b-46aa-a450-57c2cd6d5aff] socks forwarding established\n2025-10-28 18:59:55.082 [info] [command][65e1cdec-78e6-461b-b5f6-be1fca16a540] Process exited with code 0\n2025-10-28 18:59:55.082 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5b5201ff-061b-46aa-a450-57c2cd6d5aff] socks connection closed\n2025-10-28 18:59:55.083 [info] [command][65e1cdec-78e6-461b-b5f6-be1fca16a540] Socket close event received\n2025-10-28 19:00:55.089 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:00:55.092 [info] [command][77999107-3c0f-43c9-8843-5e603ef01605] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""77999107-3c0f-43c9-8843-5e603ef01605""}\n2025-10-28 19:00:55.092 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][e3703c2d-3d80-41bb-9de8-3706d86870cf] received connection request\n2025-10-28 19:00:55.116 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e3703c2d-3d80-41bb-9de8-3706d86870cf] socks forwarding established\n2025-10-28 19:00:55.140 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][e3703c2d-3d80-41bb-9de8-3706d86870cf] socks connection closed\n2025-10-28 19:00:55.141 [info] [command][77999107-3c0f-43c9-8843-5e603ef01605] Process exited with code 0\n2025-10-28 19:00:55.141 [info] [command][77999107-3c0f-43c9-8843-5e603ef01605] Socket close event received\n2025-10-28 19:01:55.148 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:01:55.150 [info] [command][58329ae3-f045-4d93-82e6-a20426a0d163] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""58329ae3-f045-4d93-82e6-a20426a0d163""}\n2025-10-28 19:01:55.150 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][71986455-8c08-47a5-b22e-d5c67e0dadd3] received connection request\n2025-10-28 19:01:55.176 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][71986455-8c08-47a5-b22e-d5c67e0dadd3] socks forwarding established\n2025-10-28 19:01:55.200 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][71986455-8c08-47a5-b22e-d5c67e0dadd3] socks connection closed\n2025-10-28 19:01:55.200 [info] [command][58329ae3-f045-4d93-82e6-a20426a0d163] Process exited with code 0\n2025-10-28 19:01:55.200 [info] [command][58329ae3-f045-4d93-82e6-a20426a0d163] Socket close event received\n2025-10-28 19:02:55.206 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:02:55.208 [info] [command][746bf4c0-0ec2-4039-9e30-9d87f424fbfd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""746bf4c0-0ec2-4039-9e30-9d87f424fbfd""}\n2025-10-28 19:02:55.208 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][89026856-381f-4e88-b63e-6493eb78d70b] received connection request\n2025-10-28 19:02:55.234 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][89026856-381f-4e88-b63e-6493eb78d70b] socks forwarding established\n2025-10-28 19:02:55.258 [info] [command][746bf4c0-0ec2-4039-9e30-9d87f424fbfd] Process exited with code 0\n2025-10-28 19:02:55.258 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][89026856-381f-4e88-b63e-6493eb78d70b] socks connection closed\n2025-10-28 19:02:55.258 [info] [command][746bf4c0-0ec2-4039-9e30-9d87f424fbfd] Socket close event received\n2025-10-28 19:03:55.263 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:03:55.265 [info] [command][6a0f2d4a-62af-477e-8539-5a3d59ab4154] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6a0f2d4a-62af-477e-8539-5a3d59ab4154""}\n2025-10-28 19:03:55.265 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][16dc2ef6-7722-4f15-b1f2-b3391c92664a] received connection request\n2025-10-28 19:03:55.289 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][16dc2ef6-7722-4f15-b1f2-b3391c92664a] socks forwarding established\n2025-10-28 19:03:55.317 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][16dc2ef6-7722-4f15-b1f2-b3391c92664a] socks connection closed\n2025-10-28 19:03:55.317 [info] [command][6a0f2d4a-62af-477e-8539-5a3d59ab4154] Process exited with code 0\n2025-10-28 19:03:55.317 [info] [command][6a0f2d4a-62af-477e-8539-5a3d59ab4154] Socket close event received\n2025-10-28 19:04:55.322 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:04:55.326 [info] [command][0ea92f5b-e509-4597-a346-370660fc82ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0ea92f5b-e509-4597-a346-370660fc82ae""}\n2025-10-28 19:04:55.326 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8dd9ac4f-3b0d-46d2-bb92-df13c8eff717] received connection request\n2025-10-28 19:04:55.349 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8dd9ac4f-3b0d-46d2-bb92-df13c8eff717] socks forwarding established\n2025-10-28 19:04:55.374 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8dd9ac4f-3b0d-46d2-bb92-df13c8eff717] socks connection closed\n2025-10-28 19:04:55.374 [info] [command][0ea92f5b-e509-4597-a346-370660fc82ae] Process exited with code 0\n2025-10-28 19:04:55.374 [info] [command][0ea92f5b-e509-4597-a346-370660fc82ae] Socket close event received\n2025-10-28 19:05:55.380 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:05:55.382 [info] [command][4971302f-8698-4b5f-b29e-a8bdb2523fb0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4971302f-8698-4b5f-b29e-a8bdb2523fb0""}\n2025-10-28 19:05:55.382 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][143b1b3b-d81f-41f6-a24a-5add27e4063f] received connection request\n2025-10-28 19:05:55.405 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][143b1b3b-d81f-41f6-a24a-5add27e4063f] socks forwarding established\n2025-10-28 19:05:55.430 [info] [command][4971302f-8698-4b5f-b29e-a8bdb2523fb0] Process exited with code 0\n2025-10-28 19:05:55.430 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][143b1b3b-d81f-41f6-a24a-5add27e4063f] socks connection closed\n2025-10-28 19:05:55.430 [info] [command][4971302f-8698-4b5f-b29e-a8bdb2523fb0] Socket close event received\n2025-10-28 19:06:55.430 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:06:55.432 [info] [command][831eb4fb-fc49-4854-889b-00aed4737b5c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""831eb4fb-fc49-4854-889b-00aed4737b5c""}\n2025-10-28 19:06:55.432 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][659d0bb2-1de1-4db5-bfc8-92d3945aedd5] received connection request\n2025-10-28 19:06:55.456 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][659d0bb2-1de1-4db5-bfc8-92d3945aedd5] socks forwarding established\n2025-10-28 19:06:55.486 [info] [command][831eb4fb-fc49-4854-889b-00aed4737b5c] Process exited with code 0\n2025-10-28 19:06:55.487 [info] [command][831eb4fb-fc49-4854-889b-00aed4737b5c] Socket close event received\n2025-10-28 19:06:55.487 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][659d0bb2-1de1-4db5-bfc8-92d3945aedd5] socks connection closed\n2025-10-28 19:07:55.493 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:07:55.495 [info] [command][80ac974d-6600-4d35-b84c-630b4b718b16] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""80ac974d-6600-4d35-b84c-630b4b718b16""}\n2025-10-28 19:07:55.496 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][192734eb-8f0c-4b0f-b14a-59ff21ab429f] received connection request\n2025-10-28 19:07:55.519 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][192734eb-8f0c-4b0f-b14a-59ff21ab429f] socks forwarding established\n2025-10-28 19:07:55.543 [info] [command][80ac974d-6600-4d35-b84c-630b4b718b16] Process exited with code 0\n2025-10-28 19:07:55.544 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][192734eb-8f0c-4b0f-b14a-59ff21ab429f] socks connection closed\n2025-10-28 19:07:55.544 [info] [command][80ac974d-6600-4d35-b84c-630b4b718b16] Socket close event received\n2025-10-28 19:08:55.548 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:08:55.551 [info] [command][8387a728-9d0b-412f-8e53-1e241019b6e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8387a728-9d0b-412f-8e53-1e241019b6e7""}\n2025-10-28 19:08:55.551 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cb6f640d-dda1-4e66-8579-3dcd732eecd0] received connection request\n2025-10-28 19:08:55.574 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cb6f640d-dda1-4e66-8579-3dcd732eecd0] socks forwarding established\n2025-10-28 19:08:55.599 [info] [command][8387a728-9d0b-412f-8e53-1e241019b6e7] Process exited with code 0\n2025-10-28 19:08:55.599 [info] [command][8387a728-9d0b-412f-8e53-1e241019b6e7] Socket close event received\n2025-10-28 19:08:55.599 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cb6f640d-dda1-4e66-8579-3dcd732eecd0] socks connection closed\n2025-10-28 19:09:55.601 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:09:55.604 [info] [command][8be141db-1481-49d0-89a7-ed089f9e3de8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8be141db-1481-49d0-89a7-ed089f9e3de8""}\n2025-10-28 19:09:55.604 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][20704483-2da4-40e4-a453-4a57527e6e2a] received connection request\n2025-10-28 19:09:55.631 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][20704483-2da4-40e4-a453-4a57527e6e2a] socks forwarding established\n2025-10-28 19:09:55.659 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][20704483-2da4-40e4-a453-4a57527e6e2a] socks connection closed\n2025-10-28 19:09:55.659 [info] [command][8be141db-1481-49d0-89a7-ed089f9e3de8] Process exited with code 0\n2025-10-28 19:09:55.659 [info] [command][8be141db-1481-49d0-89a7-ed089f9e3de8] Socket close event received\n2025-10-28 19:10:55.665 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:10:55.668 [info] [command][96423bb9-8e80-4d23-94d9-0effa67cc695] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""96423bb9-8e80-4d23-94d9-0effa67cc695""}\n2025-10-28 19:10:55.668 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5f422880-892f-47a4-92d8-c6715fd82aee] received connection request\n2025-10-28 19:10:55.691 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f422880-892f-47a4-92d8-c6715fd82aee] socks forwarding established\n2025-10-28 19:10:55.716 [info] [command][96423bb9-8e80-4d23-94d9-0effa67cc695] Process exited with code 0\n2025-10-28 19:10:55.716 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f422880-892f-47a4-92d8-c6715fd82aee] socks connection closed\n2025-10-28 19:10:55.716 [info] [command][96423bb9-8e80-4d23-94d9-0effa67cc695] Socket close event received\n2025-10-28 19:11:55.722 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:11:55.725 [info] [command][757abdbd-8bbe-4b14-b9a9-cef718b98515] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""757abdbd-8bbe-4b14-b9a9-cef718b98515""}\n2025-10-28 19:11:55.726 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][390f5e6f-260f-4786-982d-6ac10117acbb] received connection request\n2025-10-28 19:11:55.748 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][390f5e6f-260f-4786-982d-6ac10117acbb] socks forwarding established\n2025-10-28 19:11:55.774 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][390f5e6f-260f-4786-982d-6ac10117acbb] socks connection closed\n2025-10-28 19:11:55.775 [info] [command][757abdbd-8bbe-4b14-b9a9-cef718b98515] Process exited with code 0\n2025-10-28 19:11:55.775 [info] [command][757abdbd-8bbe-4b14-b9a9-cef718b98515] Socket close event received\n2025-10-28 19:12:55.781 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:12:55.784 [info] [command][8378d839-f41e-4f07-b9fd-7b4434ec6f75] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8378d839-f41e-4f07-b9fd-7b4434ec6f75""}\n2025-10-28 19:12:55.784 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b369db4c-2054-460a-b630-194d51462b9b] received connection request\n2025-10-28 19:12:55.807 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b369db4c-2054-460a-b630-194d51462b9b] socks forwarding established\n2025-10-28 19:12:55.832 [info] [command][8378d839-f41e-4f07-b9fd-7b4434ec6f75] Process exited with code 0\n2025-10-28 19:12:55.832 [info] [command][8378d839-f41e-4f07-b9fd-7b4434ec6f75] Socket close event received\n2025-10-28 19:12:55.833 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b369db4c-2054-460a-b630-194d51462b9b] socks connection closed\n2025-10-28 19:13:55.840 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:13:55.842 [info] [command][96fba8a4-3dd7-486c-9a63-97cc820452d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""96fba8a4-3dd7-486c-9a63-97cc820452d4""}\n2025-10-28 19:13:55.842 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][273da648-2145-47f9-989c-5cd2cc96d439] received connection request\n2025-10-28 19:13:55.865 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][273da648-2145-47f9-989c-5cd2cc96d439] socks forwarding established\n2025-10-28 19:13:55.893 [info] [command][96fba8a4-3dd7-486c-9a63-97cc820452d4] Process exited with code 0\n2025-10-28 19:13:55.894 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][273da648-2145-47f9-989c-5cd2cc96d439] socks connection closed\n2025-10-28 19:13:55.894 [info] [command][96fba8a4-3dd7-486c-9a63-97cc820452d4] Socket close event received\n2025-10-28 19:14:55.898 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:14:55.900 [info] [command][961c170e-c3db-4500-8de9-fe3b8fd43cfb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""961c170e-c3db-4500-8de9-fe3b8fd43cfb""}\n2025-10-28 19:14:55.900 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][eae04f3d-c38a-440c-9f22-df86a2f96107] received connection request\n2025-10-28 19:14:55.922 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][eae04f3d-c38a-440c-9f22-df86a2f96107] socks forwarding established\n2025-10-28 19:14:55.947 [info] [command][961c170e-c3db-4500-8de9-fe3b8fd43cfb] Process exited with code 0\n2025-10-28 19:14:55.947 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][eae04f3d-c38a-440c-9f22-df86a2f96107] socks connection closed\n2025-10-28 19:14:55.947 [info] [command][961c170e-c3db-4500-8de9-fe3b8fd43cfb] Socket close event received\n2025-10-28 19:15:55.951 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:15:55.953 [info] [command][326970b5-7cdd-4c0a-a4c1-50c0446bb4ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""326970b5-7cdd-4c0a-a4c1-50c0446bb4ef""}\n2025-10-28 19:15:55.953 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5fc11d0b-e87e-4380-9fc5-202cae7eb0d9] received connection request\n2025-10-28 19:15:55.976 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5fc11d0b-e87e-4380-9fc5-202cae7eb0d9] socks forwarding established\n2025-10-28 19:15:56.006 [info] [command][326970b5-7cdd-4c0a-a4c1-50c0446bb4ef] Process exited with code 0\n2025-10-28 19:15:56.006 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5fc11d0b-e87e-4380-9fc5-202cae7eb0d9] socks connection closed\n2025-10-28 19:15:56.006 [info] [command][326970b5-7cdd-4c0a-a4c1-50c0446bb4ef] Socket close event received\n2025-10-28 19:16:56.011 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:16:56.013 [info] [command][27babe54-e346-4822-a07c-bdfce4f6b2ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""27babe54-e346-4822-a07c-bdfce4f6b2ae""}\n2025-10-28 19:16:56.014 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][db757290-0d94-488f-8fb0-064560e8fe4f] received connection request\n2025-10-28 19:16:56.037 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][db757290-0d94-488f-8fb0-064560e8fe4f] socks forwarding established\n2025-10-28 19:16:56.062 [info] [command][27babe54-e346-4822-a07c-bdfce4f6b2ae] Process exited with code 0\n2025-10-28 19:16:56.062 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][db757290-0d94-488f-8fb0-064560e8fe4f] socks connection closed\n2025-10-28 19:16:56.062 [info] [command][27babe54-e346-4822-a07c-bdfce4f6b2ae] Socket close event received\n2025-10-28 19:17:56.065 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:17:56.068 [info] [command][502714f5-674b-4cbe-99d5-f479f147eda1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""502714f5-674b-4cbe-99d5-f479f147eda1""}\n2025-10-28 19:17:56.068 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2dc4dd36-6ef8-4bc8-911a-8b9b7015f79c] received connection request\n2025-10-28 19:17:56.092 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2dc4dd36-6ef8-4bc8-911a-8b9b7015f79c] socks forwarding established\n2025-10-28 19:17:56.117 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2dc4dd36-6ef8-4bc8-911a-8b9b7015f79c] socks connection closed\n2025-10-28 19:17:56.118 [info] [command][502714f5-674b-4cbe-99d5-f479f147eda1] Process exited with code 0\n2025-10-28 19:17:56.118 [info] [command][502714f5-674b-4cbe-99d5-f479f147eda1] Socket close event received\n2025-10-28 19:18:56.119 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:18:56.125 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][207d193b-6b05-4a75-8c88-92887131a64e] received connection request\n2025-10-28 19:18:56.126 [info] [command][ad146784-289c-4155-802c-a2caab09b281] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ad146784-289c-4155-802c-a2caab09b281""}\n2025-10-28 19:18:56.148 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][207d193b-6b05-4a75-8c88-92887131a64e] socks forwarding established\n2025-10-28 19:18:56.175 [info] [command][ad146784-289c-4155-802c-a2caab09b281] Process exited with code 0\n2025-10-28 19:18:56.175 [info] [command][ad146784-289c-4155-802c-a2caab09b281] Socket close event received\n2025-10-28 19:18:56.175 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][207d193b-6b05-4a75-8c88-92887131a64e] socks connection closed\n2025-10-28 19:19:56.182 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:19:56.184 [info] [command][67b6b35c-2c14-4734-9d93-4b515154e0e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""67b6b35c-2c14-4734-9d93-4b515154e0e6""}\n2025-10-28 19:19:56.184 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][95b43bcb-7520-48b5-b301-7818c3d63355] received connection request\n2025-10-28 19:19:56.207 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][95b43bcb-7520-48b5-b301-7818c3d63355] socks forwarding established\n2025-10-28 19:19:56.233 [info] [command][67b6b35c-2c14-4734-9d93-4b515154e0e6] Process exited with code 0\n2025-10-28 19:19:56.234 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][95b43bcb-7520-48b5-b301-7818c3d63355] socks connection closed\n2025-10-28 19:19:56.234 [info] [command][67b6b35c-2c14-4734-9d93-4b515154e0e6] Socket close event received\n2025-10-28 19:20:56.238 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:20:56.240 [info] [command][5c0fab6b-a13e-4d62-8d1e-a321b1f673b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5c0fab6b-a13e-4d62-8d1e-a321b1f673b4""}\n2025-10-28 19:20:56.240 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][509dec07-56aa-4fc3-9f8b-140705a8cc73] received connection request\n2025-10-28 19:20:56.262 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][509dec07-56aa-4fc3-9f8b-140705a8cc73] socks forwarding established\n2025-10-28 19:20:56.287 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][509dec07-56aa-4fc3-9f8b-140705a8cc73] socks connection closed\n2025-10-28 19:20:56.287 [info] [command][5c0fab6b-a13e-4d62-8d1e-a321b1f673b4] Process exited with code 0\n2025-10-28 19:20:56.287 [info] [command][5c0fab6b-a13e-4d62-8d1e-a321b1f673b4] Socket close event received\n2025-10-28 19:21:56.289 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:21:56.291 [info] [command][4175d7b6-6ecf-4ed4-b726-3ce3b1e48d42] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4175d7b6-6ecf-4ed4-b726-3ce3b1e48d42""}\n2025-10-28 19:21:56.292 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7abd196b-3c15-4545-9f69-196894b87766] received connection request\n2025-10-28 19:21:56.324 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7abd196b-3c15-4545-9f69-196894b87766] socks forwarding established\n2025-10-28 19:21:56.366 [info] [command][4175d7b6-6ecf-4ed4-b726-3ce3b1e48d42] Process exited with code 0\n2025-10-28 19:21:56.366 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7abd196b-3c15-4545-9f69-196894b87766] socks connection closed\n2025-10-28 19:21:56.366 [info] [command][4175d7b6-6ecf-4ed4-b726-3ce3b1e48d42] Socket close event received\n2025-10-28 19:22:56.374 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:22:56.376 [info] [command][365612b5-2cac-46a0-944e-39b8b26482e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""365612b5-2cac-46a0-944e-39b8b26482e1""}\n2025-10-28 19:22:56.376 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c96d1343-6c64-4d43-a621-4bdde9894696] received connection request\n2025-10-28 19:22:56.399 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c96d1343-6c64-4d43-a621-4bdde9894696] socks forwarding established\n2025-10-28 19:22:56.425 [info] [command][365612b5-2cac-46a0-944e-39b8b26482e1] Process exited with code 0\n2025-10-28 19:22:56.425 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c96d1343-6c64-4d43-a621-4bdde9894696] socks connection closed\n2025-10-28 19:22:56.425 [info] [command][365612b5-2cac-46a0-944e-39b8b26482e1] Socket close event received\n2025-10-28 19:23:56.431 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:23:56.433 [info] [command][d6a020cb-be2f-4b9b-a34e-3e86b465e2d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d6a020cb-be2f-4b9b-a34e-3e86b465e2d2""}\n2025-10-28 19:23:56.433 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][208669f1-6a00-4573-a72f-f66b7bb79a51] received connection request\n2025-10-28 19:23:56.455 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][208669f1-6a00-4573-a72f-f66b7bb79a51] socks forwarding established\n2025-10-28 19:23:56.481 [info] [command][d6a020cb-be2f-4b9b-a34e-3e86b465e2d2] Process exited with code 0\n2025-10-28 19:23:56.481 [info] [command][d6a020cb-be2f-4b9b-a34e-3e86b465e2d2] Socket close event received\n2025-10-28 19:23:56.482 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][208669f1-6a00-4573-a72f-f66b7bb79a51] socks connection closed\n2025-10-28 19:24:56.487 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:24:56.489 [info] [command][c23867f4-b81d-4bc0-ac33-1c23598eed15] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c23867f4-b81d-4bc0-ac33-1c23598eed15""}\n2025-10-28 19:24:56.490 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][080a11d8-f6d0-4e51-9f5c-71fc2c698c6d] received connection request\n2025-10-28 19:24:56.512 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][080a11d8-f6d0-4e51-9f5c-71fc2c698c6d] socks forwarding established\n2025-10-28 19:24:56.537 [info] [command][c23867f4-b81d-4bc0-ac33-1c23598eed15] Process exited with code 0\n2025-10-28 19:24:56.538 [info] [command][c23867f4-b81d-4bc0-ac33-1c23598eed15] Socket close event received\n2025-10-28 19:24:56.539 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][080a11d8-f6d0-4e51-9f5c-71fc2c698c6d] socks connection closed\n2025-10-28 19:25:56.540 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:25:56.543 [info] [command][61a46b3d-6ceb-4716-a951-50421c04e27a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""61a46b3d-6ceb-4716-a951-50421c04e27a""}\n2025-10-28 19:25:56.543 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][814ff971-bb61-4eaf-a4dc-8c134d2c164c] received connection request\n2025-10-28 19:25:56.575 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][814ff971-bb61-4eaf-a4dc-8c134d2c164c] socks forwarding established\n2025-10-28 19:25:56.600 [info] [command][61a46b3d-6ceb-4716-a951-50421c04e27a] Process exited with code 0\n2025-10-28 19:25:56.600 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][814ff971-bb61-4eaf-a4dc-8c134d2c164c] socks connection closed\n2025-10-28 19:25:56.600 [info] [command][61a46b3d-6ceb-4716-a951-50421c04e27a] Socket close event received\n2025-10-28 19:26:56.606 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:26:56.609 [info] [command][34df7944-5f0a-40a5-99d1-f444c306ca57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""34df7944-5f0a-40a5-99d1-f444c306ca57""}\n2025-10-28 19:26:56.609 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d6eb51b9-370f-4452-b9ac-9fb191709dee] received connection request\n2025-10-28 19:26:56.632 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d6eb51b9-370f-4452-b9ac-9fb191709dee] socks forwarding established\n2025-10-28 19:26:56.658 [info] [command][34df7944-5f0a-40a5-99d1-f444c306ca57] Process exited with code 0\n2025-10-28 19:26:56.659 [info] [command][34df7944-5f0a-40a5-99d1-f444c306ca57] Socket close event received\n2025-10-28 19:26:56.659 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d6eb51b9-370f-4452-b9ac-9fb191709dee] socks connection closed\n2025-10-28 19:27:56.661 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:27:56.663 [info] [command][f0fd33d6-c3aa-4546-aa98-6914489a6a6a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f0fd33d6-c3aa-4546-aa98-6914489a6a6a""}\n2025-10-28 19:27:56.664 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b769676d-a579-46c1-820a-0fea68cb49f3] received connection request\n2025-10-28 19:27:56.691 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b769676d-a579-46c1-820a-0fea68cb49f3] socks forwarding established\n2025-10-28 19:27:56.716 [info] [command][f0fd33d6-c3aa-4546-aa98-6914489a6a6a] Process exited with code 0\n2025-10-28 19:27:56.717 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b769676d-a579-46c1-820a-0fea68cb49f3] socks connection closed\n2025-10-28 19:27:56.717 [info] [command][f0fd33d6-c3aa-4546-aa98-6914489a6a6a] Socket close event received\n2025-10-28 19:28:56.723 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:28:56.725 [info] [command][51e9d815-1497-442c-a8cf-bf20be32b058] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""51e9d815-1497-442c-a8cf-bf20be32b058""}\n2025-10-28 19:28:56.726 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5fcfed33-8e75-443e-a270-857117f899a2] received connection request\n2025-10-28 19:28:56.747 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5fcfed33-8e75-443e-a270-857117f899a2] socks forwarding established\n2025-10-28 19:28:56.773 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5fcfed33-8e75-443e-a270-857117f899a2] socks connection closed\n2025-10-28 19:28:56.773 [info] [command][51e9d815-1497-442c-a8cf-bf20be32b058] Process exited with code 0\n2025-10-28 19:28:56.773 [info] [command][51e9d815-1497-442c-a8cf-bf20be32b058] Socket close event received\n2025-10-28 19:29:56.779 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:29:56.780 [info] [command][0bdb5f52-4d1a-460d-bc39-59833c6f08bc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0bdb5f52-4d1a-460d-bc39-59833c6f08bc""}\n2025-10-28 19:29:56.781 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][cdbac528-1a3e-409c-b2f5-9f0c4b9109b6] received connection request\n2025-10-28 19:29:56.804 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cdbac528-1a3e-409c-b2f5-9f0c4b9109b6] socks forwarding established\n2025-10-28 19:29:56.831 [info] [command][0bdb5f52-4d1a-460d-bc39-59833c6f08bc] Process exited with code 0\n2025-10-28 19:29:56.832 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][cdbac528-1a3e-409c-b2f5-9f0c4b9109b6] socks connection closed\n2025-10-28 19:29:56.832 [info] [command][0bdb5f52-4d1a-460d-bc39-59833c6f08bc] Socket close event received\n2025-10-28 19:30:56.838 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:30:56.840 [info] [command][57772d99-ab8e-42f1-9136-3b71a6187df3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""57772d99-ab8e-42f1-9136-3b71a6187df3""}\n2025-10-28 19:30:56.841 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5c65eb40-b30f-4c78-94a3-83a7d0e3f880] received connection request\n2025-10-28 19:30:56.867 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5c65eb40-b30f-4c78-94a3-83a7d0e3f880] socks forwarding established\n2025-10-28 19:30:56.891 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5c65eb40-b30f-4c78-94a3-83a7d0e3f880] socks connection closed\n2025-10-28 19:30:56.892 [info] [command][57772d99-ab8e-42f1-9136-3b71a6187df3] Process exited with code 0\n2025-10-28 19:30:56.892 [info] [command][57772d99-ab8e-42f1-9136-3b71a6187df3] Socket close event received\n2025-10-28 19:31:56.895 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:31:56.898 [info] [command][e2586638-25b4-4140-bdbe-d6e07bbdc2ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e2586638-25b4-4140-bdbe-d6e07bbdc2ec""}\n2025-10-28 19:31:56.898 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][63b7897c-e910-42d3-8e8d-05dc9aff7198] received connection request\n2025-10-28 19:31:56.925 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][63b7897c-e910-42d3-8e8d-05dc9aff7198] socks forwarding established\n2025-10-28 19:31:56.950 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][63b7897c-e910-42d3-8e8d-05dc9aff7198] socks connection closed\n2025-10-28 19:31:56.950 [info] [command][e2586638-25b4-4140-bdbe-d6e07bbdc2ec] Process exited with code 0\n2025-10-28 19:31:56.950 [info] [command][e2586638-25b4-4140-bdbe-d6e07bbdc2ec] Socket close event received\n2025-10-28 19:32:56.955 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:32:56.958 [info] [command][a610ad52-556c-4312-909a-8dd29844c7d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a610ad52-556c-4312-909a-8dd29844c7d2""}\n2025-10-28 19:32:56.959 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a904b985-a930-4b2f-a620-c2ed63f23c01] received connection request\n2025-10-28 19:32:56.984 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a904b985-a930-4b2f-a620-c2ed63f23c01] socks forwarding established\n2025-10-28 19:32:57.009 [info] [command][a610ad52-556c-4312-909a-8dd29844c7d2] Process exited with code 0\n2025-10-28 19:32:57.009 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a904b985-a930-4b2f-a620-c2ed63f23c01] socks connection closed\n2025-10-28 19:32:57.009 [info] [command][a610ad52-556c-4312-909a-8dd29844c7d2] Socket close event received\n2025-10-28 19:33:57.015 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:33:57.018 [info] [command][67c1639b-11a5-4505-a0ff-654e5154476c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""67c1639b-11a5-4505-a0ff-654e5154476c""}\n2025-10-28 19:33:57.018 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fcf3a323-04f1-4be1-8c0e-c69ca69f278f] received connection request\n2025-10-28 19:33:57.047 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fcf3a323-04f1-4be1-8c0e-c69ca69f278f] socks forwarding established\n2025-10-28 19:33:57.072 [info] [command][67c1639b-11a5-4505-a0ff-654e5154476c] Process exited with code 0\n2025-10-28 19:33:57.073 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fcf3a323-04f1-4be1-8c0e-c69ca69f278f] socks connection closed\n2025-10-28 19:33:57.073 [info] [command][67c1639b-11a5-4505-a0ff-654e5154476c] Socket close event received\n2025-10-28 19:34:57.079 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:34:57.081 [info] [command][8c977f95-eb50-4204-8638-8b9b8ec3528a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8c977f95-eb50-4204-8638-8b9b8ec3528a""}\n2025-10-28 19:34:57.081 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7aa06fe0-f21d-4216-bf1a-b7e7335cd637] received connection request\n2025-10-28 19:34:57.103 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7aa06fe0-f21d-4216-bf1a-b7e7335cd637] socks forwarding established\n2025-10-28 19:34:57.129 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7aa06fe0-f21d-4216-bf1a-b7e7335cd637] socks connection closed\n2025-10-28 19:34:57.129 [info] [command][8c977f95-eb50-4204-8638-8b9b8ec3528a] Process exited with code 0\n2025-10-28 19:34:57.129 [info] [command][8c977f95-eb50-4204-8638-8b9b8ec3528a] Socket close event received\n2025-10-28 19:35:57.136 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:35:57.138 [info] [command][c771e1da-9689-4595-afb6-06b318230c61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c771e1da-9689-4595-afb6-06b318230c61""}\n2025-10-28 19:35:57.138 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4a365583-388b-48a1-8b5d-9481afd58c30] received connection request\n2025-10-28 19:35:57.160 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4a365583-388b-48a1-8b5d-9481afd58c30] socks forwarding established\n2025-10-28 19:35:57.185 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4a365583-388b-48a1-8b5d-9481afd58c30] socks connection closed\n2025-10-28 19:35:57.185 [info] [command][c771e1da-9689-4595-afb6-06b318230c61] Process exited with code 0\n2025-10-28 19:35:57.185 [info] [command][c771e1da-9689-4595-afb6-06b318230c61] Socket close event received\n2025-10-28 19:36:57.188 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:36:57.191 [info] [command][9a8029ea-b508-4df2-adc2-6c49ff0bcd5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9a8029ea-b508-4df2-adc2-6c49ff0bcd5b""}\n2025-10-28 19:36:57.192 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9ae98168-c2c7-4106-a36b-205fd1910a51] received connection request\n2025-10-28 19:36:57.223 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9ae98168-c2c7-4106-a36b-205fd1910a51] socks forwarding established\n2025-10-28 19:36:57.249 [info] [command][9a8029ea-b508-4df2-adc2-6c49ff0bcd5b] Process exited with code 0\n2025-10-28 19:36:57.250 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9ae98168-c2c7-4106-a36b-205fd1910a51] socks connection closed\n2025-10-28 19:36:57.250 [info] [command][9a8029ea-b508-4df2-adc2-6c49ff0bcd5b] Socket close event received\n2025-10-28 19:37:57.255 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:37:57.258 [info] [command][55bb302f-266f-482c-bf59-83142d5d2424] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""55bb302f-266f-482c-bf59-83142d5d2424""}\n2025-10-28 19:37:57.259 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][a3883019-2bbe-4e00-a65b-e6fb536a50ed] received connection request\n2025-10-28 19:37:57.283 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a3883019-2bbe-4e00-a65b-e6fb536a50ed] socks forwarding established\n2025-10-28 19:37:57.309 [info] [command][55bb302f-266f-482c-bf59-83142d5d2424] Process exited with code 0\n2025-10-28 19:37:57.309 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][a3883019-2bbe-4e00-a65b-e6fb536a50ed] socks connection closed\n2025-10-28 19:37:57.309 [info] [command][55bb302f-266f-482c-bf59-83142d5d2424] Socket close event received\n2025-10-28 19:38:54.868 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][e5500b59-dfad-4d03-a42f-0c4b436ad8a2] received connection request\n2025-10-28 19:38:54.892 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][e5500b59-dfad-4d03-a42f-0c4b436ad8a2] socks forwarding established\n2025-10-28 19:38:57.312 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:38:57.313 [info] [command][35b0cfba-7552-4f58-a18f-d36a834de332] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""35b0cfba-7552-4f58-a18f-d36a834de332""}\n2025-10-28 19:38:57.315 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9a88ba17-6f4d-4522-938b-8cd3c93dbc8c] received connection request\n2025-10-28 19:38:57.337 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9a88ba17-6f4d-4522-938b-8cd3c93dbc8c] socks forwarding established\n2025-10-28 19:38:57.363 [info] [command][35b0cfba-7552-4f58-a18f-d36a834de332] Process exited with code 0\n2025-10-28 19:38:57.363 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9a88ba17-6f4d-4522-938b-8cd3c93dbc8c] socks connection closed\n2025-10-28 19:38:57.363 [info] [command][35b0cfba-7552-4f58-a18f-d36a834de332] Socket close event received\n2025-10-28 19:39:00.925 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][e5500b59-dfad-4d03-a42f-0c4b436ad8a2] socks connection closed\n2025-10-28 19:39:57.365 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:39:57.367 [info] [command][502c818c-3c1e-4028-bd55-56453c771628] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""502c818c-3c1e-4028-bd55-56453c771628""}\n2025-10-28 19:39:57.367 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f16bb3b9-4cba-4443-9b19-1f9737c4abf9] received connection request\n2025-10-28 19:39:57.392 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f16bb3b9-4cba-4443-9b19-1f9737c4abf9] socks forwarding established\n2025-10-28 19:39:57.416 [info] [command][502c818c-3c1e-4028-bd55-56453c771628] Process exited with code 0\n2025-10-28 19:39:57.416 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f16bb3b9-4cba-4443-9b19-1f9737c4abf9] socks connection closed\n2025-10-28 19:39:57.416 [info] [command][502c818c-3c1e-4028-bd55-56453c771628] Socket close event received\n2025-10-28 19:40:57.422 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:40:57.424 [info] [command][53d32e3c-38e5-41a6-bc68-d479557375a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""53d32e3c-38e5-41a6-bc68-d479557375a3""}\n2025-10-28 19:40:57.425 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][faaa938e-b477-4a1e-aa21-6fd7a8cbd974] received connection request\n2025-10-28 19:40:57.447 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][faaa938e-b477-4a1e-aa21-6fd7a8cbd974] socks forwarding established\n2025-10-28 19:40:57.472 [info] [command][53d32e3c-38e5-41a6-bc68-d479557375a3] Process exited with code 0\n2025-10-28 19:40:57.472 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][faaa938e-b477-4a1e-aa21-6fd7a8cbd974] socks connection closed\n2025-10-28 19:40:57.472 [info] [command][53d32e3c-38e5-41a6-bc68-d479557375a3] Socket close event received\n2025-10-28 19:41:57.477 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:41:57.483 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][2d79ef93-ca66-4237-b668-c9c2e988f233] received connection request\n2025-10-28 19:41:57.484 [info] [command][e00c0ba2-db79-4b9c-9042-273ad4dc33de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e00c0ba2-db79-4b9c-9042-273ad4dc33de""}\n2025-10-28 19:41:57.508 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2d79ef93-ca66-4237-b668-c9c2e988f233] socks forwarding established\n2025-10-28 19:41:57.533 [info] [command][e00c0ba2-db79-4b9c-9042-273ad4dc33de] Process exited with code 0\n2025-10-28 19:41:57.534 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][2d79ef93-ca66-4237-b668-c9c2e988f233] socks connection closed\n2025-10-28 19:41:57.534 [info] [command][e00c0ba2-db79-4b9c-9042-273ad4dc33de] Socket close event received\n2025-10-28 19:42:57.534 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:42:57.536 [info] [command][8810a889-cac3-4538-9845-b1ece4ae0a90] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8810a889-cac3-4538-9845-b1ece4ae0a90""}\n2025-10-28 19:42:57.537 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b1855037-1a0b-4184-b28d-4d9aef666231] received connection request\n2025-10-28 19:42:57.558 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b1855037-1a0b-4184-b28d-4d9aef666231] socks forwarding established\n2025-10-28 19:42:57.584 [info] [command][8810a889-cac3-4538-9845-b1ece4ae0a90] Process exited with code 0\n2025-10-28 19:42:57.584 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b1855037-1a0b-4184-b28d-4d9aef666231] socks connection closed\n2025-10-28 19:42:57.584 [info] [command][8810a889-cac3-4538-9845-b1ece4ae0a90] Socket close event received\n2025-10-28 19:43:57.590 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:43:57.592 [info] [command][1881c853-381a-43e8-bce4-4b52da29e794] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1881c853-381a-43e8-bce4-4b52da29e794""}\n2025-10-28 19:43:57.593 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5b372e3c-f47c-4625-9514-93b1e2947020] received connection request\n2025-10-28 19:43:57.618 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5b372e3c-f47c-4625-9514-93b1e2947020] socks forwarding established\n2025-10-28 19:43:57.643 [info] [command][1881c853-381a-43e8-bce4-4b52da29e794] Process exited with code 0\n2025-10-28 19:43:57.643 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5b372e3c-f47c-4625-9514-93b1e2947020] socks connection closed\n2025-10-28 19:43:57.643 [info] [command][1881c853-381a-43e8-bce4-4b52da29e794] Socket close event received\n2025-10-28 19:44:57.648 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:44:57.651 [info] [command][19797c1f-a8ca-4153-89e6-590cc05ba75b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""19797c1f-a8ca-4153-89e6-590cc05ba75b""}\n2025-10-28 19:44:57.651 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9a3432e3-5b92-4aad-ae74-0b9b53a646fe] received connection request\n2025-10-28 19:44:57.675 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9a3432e3-5b92-4aad-ae74-0b9b53a646fe] socks forwarding established\n2025-10-28 19:44:57.700 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9a3432e3-5b92-4aad-ae74-0b9b53a646fe] socks connection closed\n2025-10-28 19:44:57.700 [info] [command][19797c1f-a8ca-4153-89e6-590cc05ba75b] Process exited with code 0\n2025-10-28 19:44:57.700 [info] [command][19797c1f-a8ca-4153-89e6-590cc05ba75b] Socket close event received\n2025-10-28 19:45:57.702 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:45:57.706 [info] [command][e9e38e0b-6a5c-4da0-830e-acfdaaf0bfcf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e9e38e0b-6a5c-4da0-830e-acfdaaf0bfcf""}\n2025-10-28 19:45:57.707 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][0cf5d02c-a269-4fd1-ba06-21a0c6be74ba] received connection request\n2025-10-28 19:45:57.729 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0cf5d02c-a269-4fd1-ba06-21a0c6be74ba] socks forwarding established\n2025-10-28 19:45:57.759 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][0cf5d02c-a269-4fd1-ba06-21a0c6be74ba] socks connection closed\n2025-10-28 19:45:57.759 [info] [command][e9e38e0b-6a5c-4da0-830e-acfdaaf0bfcf] Process exited with code 0\n2025-10-28 19:45:57.759 [info] [command][e9e38e0b-6a5c-4da0-830e-acfdaaf0bfcf] Socket close event received\n2025-10-28 19:46:57.765 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:46:57.767 [info] [command][4d38f448-e447-4e80-ae8c-67d21113c2e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4d38f448-e447-4e80-ae8c-67d21113c2e2""}\n2025-10-28 19:46:57.767 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][18729dc6-3a0c-4f75-8f65-f1906b503b38] received connection request\n2025-10-28 19:46:57.791 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][18729dc6-3a0c-4f75-8f65-f1906b503b38] socks forwarding established\n2025-10-28 19:46:57.816 [info] [command][4d38f448-e447-4e80-ae8c-67d21113c2e2] Process exited with code 0\n2025-10-28 19:46:57.816 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][18729dc6-3a0c-4f75-8f65-f1906b503b38] socks connection closed\n2025-10-28 19:46:57.816 [info] [command][4d38f448-e447-4e80-ae8c-67d21113c2e2] Socket close event received\n2025-10-28 19:47:57.819 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:47:57.821 [info] [command][9c8876d2-7254-497a-bb3e-94c1e7e9d7b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9c8876d2-7254-497a-bb3e-94c1e7e9d7b7""}\n2025-10-28 19:47:57.821 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][10a36a6b-a9fc-4478-b207-d34051cdd2d0] received connection request\n2025-10-28 19:47:57.844 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][10a36a6b-a9fc-4478-b207-d34051cdd2d0] socks forwarding established\n2025-10-28 19:47:57.871 [info] [command][9c8876d2-7254-497a-bb3e-94c1e7e9d7b7] Process exited with code 0\n2025-10-28 19:47:57.871 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][10a36a6b-a9fc-4478-b207-d34051cdd2d0] socks connection closed\n2025-10-28 19:47:57.871 [info] [command][9c8876d2-7254-497a-bb3e-94c1e7e9d7b7] Socket close event received\n2025-10-28 19:48:57.877 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:48:57.879 [info] [command][7648422e-42af-403a-974b-d09a428c41fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7648422e-42af-403a-974b-d09a428c41fa""}\n2025-10-28 19:48:57.880 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1b3704b2-ad4c-4571-8fea-3a328ccf0afd] received connection request\n2025-10-28 19:48:57.902 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1b3704b2-ad4c-4571-8fea-3a328ccf0afd] socks forwarding established\n2025-10-28 19:48:57.928 [info] [command][7648422e-42af-403a-974b-d09a428c41fa] Process exited with code 0\n2025-10-28 19:48:57.928 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1b3704b2-ad4c-4571-8fea-3a328ccf0afd] socks connection closed\n2025-10-28 19:48:57.928 [info] [command][7648422e-42af-403a-974b-d09a428c41fa] Socket close event received\n2025-10-28 19:49:57.933 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:49:57.936 [info] [command][08ac0bac-2e40-4b8e-b3ab-27f0cfdb0337] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""08ac0bac-2e40-4b8e-b3ab-27f0cfdb0337""}\n2025-10-28 19:49:57.936 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][82ba3d21-504c-440c-8675-15864ead94ac] received connection request\n2025-10-28 19:49:57.959 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][82ba3d21-504c-440c-8675-15864ead94ac] socks forwarding established\n2025-10-28 19:49:57.984 [info] [command][08ac0bac-2e40-4b8e-b3ab-27f0cfdb0337] Process exited with code 0\n2025-10-28 19:49:57.984 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][82ba3d21-504c-440c-8675-15864ead94ac] socks connection closed\n2025-10-28 19:49:57.984 [info] [command][08ac0bac-2e40-4b8e-b3ab-27f0cfdb0337] Socket close event received\n2025-10-28 19:50:57.987 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:50:57.991 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d1c5c926-731a-4d37-9bfa-1acf411315e4] received connection request\n2025-10-28 19:50:57.991 [info] [command][c7d5f354-0568-44db-9554-60a37b259add] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c7d5f354-0568-44db-9554-60a37b259add""}\n2025-10-28 19:50:58.014 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d1c5c926-731a-4d37-9bfa-1acf411315e4] socks forwarding established\n2025-10-28 19:50:58.040 [info] [command][c7d5f354-0568-44db-9554-60a37b259add] Process exited with code 0\n2025-10-28 19:50:58.040 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d1c5c926-731a-4d37-9bfa-1acf411315e4] socks connection closed\n2025-10-28 19:50:58.040 [info] [command][c7d5f354-0568-44db-9554-60a37b259add] Socket close event received\n2025-10-28 19:51:58.045 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:51:58.049 [info] [command][e1e4a0e8-e331-4ecf-8cfe-aa798d0007f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e1e4a0e8-e331-4ecf-8cfe-aa798d0007f7""}\n2025-10-28 19:51:58.049 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][7dc7f8cb-10dc-48ba-9935-2fa63d715ef7] received connection request\n2025-10-28 19:51:58.075 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7dc7f8cb-10dc-48ba-9935-2fa63d715ef7] socks forwarding established\n2025-10-28 19:51:58.100 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][7dc7f8cb-10dc-48ba-9935-2fa63d715ef7] socks connection closed\n2025-10-28 19:51:58.100 [info] [command][e1e4a0e8-e331-4ecf-8cfe-aa798d0007f7] Process exited with code 0\n2025-10-28 19:51:58.100 [info] [command][e1e4a0e8-e331-4ecf-8cfe-aa798d0007f7] Socket close event received\n2025-10-28 19:52:58.104 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:52:58.107 [info] [command][6e97d294-7d56-4bb1-9c4b-d7f38150eaed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6e97d294-7d56-4bb1-9c4b-d7f38150eaed""}\n2025-10-28 19:52:58.107 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][70492736-e6f8-4c66-b383-ba79d07dae77] received connection request\n2025-10-28 19:52:58.132 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][70492736-e6f8-4c66-b383-ba79d07dae77] socks forwarding established\n2025-10-28 19:52:58.157 [info] [command][6e97d294-7d56-4bb1-9c4b-d7f38150eaed] Process exited with code 0\n2025-10-28 19:52:58.157 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][70492736-e6f8-4c66-b383-ba79d07dae77] socks connection closed\n2025-10-28 19:52:58.157 [info] [command][6e97d294-7d56-4bb1-9c4b-d7f38150eaed] Socket close event received\n2025-10-28 19:53:58.157 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:53:58.159 [info] [command][cb366490-0d48-424a-bb4c-93226dde6bb4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cb366490-0d48-424a-bb4c-93226dde6bb4""}\n2025-10-28 19:53:58.159 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][4051b244-41ba-4509-97a8-b41c48475cbd] received connection request\n2025-10-28 19:53:58.181 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4051b244-41ba-4509-97a8-b41c48475cbd] socks forwarding established\n2025-10-28 19:53:58.207 [info] [command][cb366490-0d48-424a-bb4c-93226dde6bb4] Process exited with code 0\n2025-10-28 19:53:58.207 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][4051b244-41ba-4509-97a8-b41c48475cbd] socks connection closed\n2025-10-28 19:53:58.207 [info] [command][cb366490-0d48-424a-bb4c-93226dde6bb4] Socket close event received\n2025-10-28 19:54:58.212 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:54:58.213 [info] [command][d7f86929-c6ec-470b-85fe-a1615ac9ef4e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d7f86929-c6ec-470b-85fe-a1615ac9ef4e""}\n2025-10-28 19:54:58.213 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][bb42e4f8-1d7d-45c3-bb79-058a4bb7fd84] received connection request\n2025-10-28 19:54:58.236 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bb42e4f8-1d7d-45c3-bb79-058a4bb7fd84] socks forwarding established\n2025-10-28 19:54:58.261 [info] [command][d7f86929-c6ec-470b-85fe-a1615ac9ef4e] Process exited with code 0\n2025-10-28 19:54:58.262 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bb42e4f8-1d7d-45c3-bb79-058a4bb7fd84] socks connection closed\n2025-10-28 19:54:58.262 [info] [command][d7f86929-c6ec-470b-85fe-a1615ac9ef4e] Socket close event received\n2025-10-28 19:55:58.268 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:55:58.270 [info] [command][a976f896-a550-4255-977c-4c234a00421e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a976f896-a550-4255-977c-4c234a00421e""}\n2025-10-28 19:55:58.270 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5eafa639-1cf4-4485-ae1a-6e96c616e1bf] received connection request\n2025-10-28 19:55:58.297 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5eafa639-1cf4-4485-ae1a-6e96c616e1bf] socks forwarding established\n2025-10-28 19:55:58.322 [info] [command][a976f896-a550-4255-977c-4c234a00421e] Process exited with code 0\n2025-10-28 19:55:58.322 [info] [command][a976f896-a550-4255-977c-4c234a00421e] Socket close event received\n2025-10-28 19:55:58.323 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5eafa639-1cf4-4485-ae1a-6e96c616e1bf] socks connection closed\n2025-10-28 19:56:58.324 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:56:58.326 [info] [command][5e1dafa0-7a7e-4e8a-a2e2-f2320bc0bb7f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5e1dafa0-7a7e-4e8a-a2e2-f2320bc0bb7f""}\n2025-10-28 19:56:58.327 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][66715d34-cd6c-4b0d-ad9d-581757aed979] received connection request\n2025-10-28 19:56:58.349 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][66715d34-cd6c-4b0d-ad9d-581757aed979] socks forwarding established\n2025-10-28 19:56:58.374 [info] [command][5e1dafa0-7a7e-4e8a-a2e2-f2320bc0bb7f] Process exited with code 0\n2025-10-28 19:56:58.374 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][66715d34-cd6c-4b0d-ad9d-581757aed979] socks connection closed\n2025-10-28 19:56:58.375 [info] [command][5e1dafa0-7a7e-4e8a-a2e2-f2320bc0bb7f] Socket close event received\n2025-10-28 19:57:58.379 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:57:58.381 [info] [command][e0bc8e5f-0c96-4a31-b008-8b71851c83e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e0bc8e5f-0c96-4a31-b008-8b71851c83e9""}\n2025-10-28 19:57:58.382 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][01dbb4b0-0478-45b5-97f2-55bbda16fc65] received connection request\n2025-10-28 19:57:58.403 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][01dbb4b0-0478-45b5-97f2-55bbda16fc65] socks forwarding established\n2025-10-28 19:57:58.428 [info] [command][e0bc8e5f-0c96-4a31-b008-8b71851c83e9] Process exited with code 0\n2025-10-28 19:57:58.428 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][01dbb4b0-0478-45b5-97f2-55bbda16fc65] socks connection closed\n2025-10-28 19:57:58.428 [info] [command][e0bc8e5f-0c96-4a31-b008-8b71851c83e9] Socket close event received\n2025-10-28 19:58:58.433 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:58:58.435 [info] [command][97a181f4-e55c-49e6-9d4d-89b46529a7ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""97a181f4-e55c-49e6-9d4d-89b46529a7ca""}\n2025-10-28 19:58:58.435 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][008f4235-0464-43a1-af30-89a845ebc79d] received connection request\n2025-10-28 19:58:58.461 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][008f4235-0464-43a1-af30-89a845ebc79d] socks forwarding established\n2025-10-28 19:58:58.486 [info] [command][97a181f4-e55c-49e6-9d4d-89b46529a7ca] Process exited with code 0\n2025-10-28 19:58:58.487 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][008f4235-0464-43a1-af30-89a845ebc79d] socks connection closed\n2025-10-28 19:58:58.487 [info] [command][97a181f4-e55c-49e6-9d4d-89b46529a7ca] Socket close event received\n2025-10-28 19:59:58.489 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 19:59:58.491 [info] [command][7daf5b5a-5b4a-4e9d-a9f6-8b664516f5fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7daf5b5a-5b4a-4e9d-a9f6-8b664516f5fd""}\n2025-10-28 19:59:58.491 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3c23e5e1-19a1-4326-a438-d5067d5c867f] received connection request\n2025-10-28 19:59:58.515 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3c23e5e1-19a1-4326-a438-d5067d5c867f] socks forwarding established\n2025-10-28 19:59:58.542 [info] [command][7daf5b5a-5b4a-4e9d-a9f6-8b664516f5fd] Process exited with code 0\n2025-10-28 19:59:58.542 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3c23e5e1-19a1-4326-a438-d5067d5c867f] socks connection closed\n2025-10-28 19:59:58.542 [info] [command][7daf5b5a-5b4a-4e9d-a9f6-8b664516f5fd] Socket close event received\n2025-10-28 20:00:58.547 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:00:58.550 [info] [command][7550e65a-0a71-45d3-81df-077d8d960cda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7550e65a-0a71-45d3-81df-077d8d960cda""}\n2025-10-28 20:00:58.550 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][c83331f8-36d6-45ce-a1e5-2e22d586d1b8] received connection request\n2025-10-28 20:00:58.577 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c83331f8-36d6-45ce-a1e5-2e22d586d1b8] socks forwarding established\n2025-10-28 20:00:58.604 [info] [command][7550e65a-0a71-45d3-81df-077d8d960cda] Process exited with code 0\n2025-10-28 20:00:58.604 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][c83331f8-36d6-45ce-a1e5-2e22d586d1b8] socks connection closed\n2025-10-28 20:00:58.604 [info] [command][7550e65a-0a71-45d3-81df-077d8d960cda] Socket close event received\n2025-10-28 20:01:58.607 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:01:58.609 [info] [command][10e457cf-4310-4291-91c3-1e98b4b77565] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""10e457cf-4310-4291-91c3-1e98b4b77565""}\n2025-10-28 20:01:58.610 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b768a1c4-6f04-47df-9bb7-983b02ea12cf] received connection request\n2025-10-28 20:01:58.633 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b768a1c4-6f04-47df-9bb7-983b02ea12cf] socks forwarding established\n2025-10-28 20:01:58.658 [info] [command][10e457cf-4310-4291-91c3-1e98b4b77565] Process exited with code 0\n2025-10-28 20:01:58.659 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b768a1c4-6f04-47df-9bb7-983b02ea12cf] socks connection closed\n2025-10-28 20:01:58.659 [info] [command][10e457cf-4310-4291-91c3-1e98b4b77565] Socket close event received\n2025-10-28 20:02:58.663 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:02:58.665 [info] [command][3f204f5d-e48a-49b1-a0dc-08633584cb68] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3f204f5d-e48a-49b1-a0dc-08633584cb68""}\n2025-10-28 20:02:58.665 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][1b745993-bd83-4062-b6c2-9bf312964515] received connection request\n2025-10-28 20:02:58.690 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1b745993-bd83-4062-b6c2-9bf312964515] socks forwarding established\n2025-10-28 20:02:58.716 [info] [command][3f204f5d-e48a-49b1-a0dc-08633584cb68] Process exited with code 0\n2025-10-28 20:02:58.716 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][1b745993-bd83-4062-b6c2-9bf312964515] socks connection closed\n2025-10-28 20:02:58.716 [info] [command][3f204f5d-e48a-49b1-a0dc-08633584cb68] Socket close event received\n2025-10-28 20:03:58.723 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:03:58.725 [info] [command][2626af47-bb73-429b-91b8-b27d271fcf61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2626af47-bb73-429b-91b8-b27d271fcf61""}\n2025-10-28 20:03:58.726 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][be9ea846-6bfd-4296-8c2b-a983697b2e7f] received connection request\n2025-10-28 20:03:58.748 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][be9ea846-6bfd-4296-8c2b-a983697b2e7f] socks forwarding established\n2025-10-28 20:03:58.774 [info] [command][2626af47-bb73-429b-91b8-b27d271fcf61] Process exited with code 0\n2025-10-28 20:03:58.774 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][be9ea846-6bfd-4296-8c2b-a983697b2e7f] socks connection closed\n2025-10-28 20:03:58.774 [info] [command][2626af47-bb73-429b-91b8-b27d271fcf61] Socket close event received\n2025-10-28 20:04:58.776 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:04:58.779 [info] [command][f9b6d635-e76a-4241-830f-ab313d0aad88] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f9b6d635-e76a-4241-830f-ab313d0aad88""}\n2025-10-28 20:04:58.780 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9abbf597-93ba-4dcf-962b-3e287c171262] received connection request\n2025-10-28 20:04:58.807 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9abbf597-93ba-4dcf-962b-3e287c171262] socks forwarding established\n2025-10-28 20:04:58.833 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9abbf597-93ba-4dcf-962b-3e287c171262] socks connection closed\n2025-10-28 20:04:58.833 [info] [command][f9b6d635-e76a-4241-830f-ab313d0aad88] Process exited with code 0\n2025-10-28 20:04:58.833 [info] [command][f9b6d635-e76a-4241-830f-ab313d0aad88] Socket close event received\n2025-10-28 20:05:58.839 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:05:58.841 [info] [command][dff79880-3202-4684-b3b3-ac44303dbf32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dff79880-3202-4684-b3b3-ac44303dbf32""}\n2025-10-28 20:05:58.841 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3a756967-d126-4a52-9178-662fa172e325] received connection request\n2025-10-28 20:05:58.862 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3a756967-d126-4a52-9178-662fa172e325] socks forwarding established\n2025-10-28 20:05:58.887 [info] [command][dff79880-3202-4684-b3b3-ac44303dbf32] Process exited with code 0\n2025-10-28 20:05:58.887 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3a756967-d126-4a52-9178-662fa172e325] socks connection closed\n2025-10-28 20:05:58.888 [info] [command][dff79880-3202-4684-b3b3-ac44303dbf32] Socket close event received\n2025-10-28 20:06:58.893 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:06:58.895 [info] [command][3c210b2c-e6ff-45a2-8fcd-53df864220c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3c210b2c-e6ff-45a2-8fcd-53df864220c6""}\n2025-10-28 20:06:58.897 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b5eda664-42e3-4cb8-bf76-e39f3720f957] received connection request\n2025-10-28 20:06:58.920 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b5eda664-42e3-4cb8-bf76-e39f3720f957] socks forwarding established\n2025-10-28 20:06:58.944 [info] [command][3c210b2c-e6ff-45a2-8fcd-53df864220c6] Process exited with code 0\n2025-10-28 20:06:58.945 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b5eda664-42e3-4cb8-bf76-e39f3720f957] socks connection closed\n2025-10-28 20:06:58.945 [info] [command][3c210b2c-e6ff-45a2-8fcd-53df864220c6] Socket close event received\n2025-10-28 20:07:58.950 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:07:58.951 [info] [command][6599ca50-c4c9-492f-b9dd-e275481e2008] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6599ca50-c4c9-492f-b9dd-e275481e2008""}\n2025-10-28 20:07:58.952 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][bd322248-3a31-4def-9905-dd0526c480cf] received connection request\n2025-10-28 20:07:58.976 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bd322248-3a31-4def-9905-dd0526c480cf] socks forwarding established\n2025-10-28 20:07:59.000 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][bd322248-3a31-4def-9905-dd0526c480cf] socks connection closed\n2025-10-28 20:07:59.001 [info] [command][6599ca50-c4c9-492f-b9dd-e275481e2008] Process exited with code 0\n2025-10-28 20:07:59.001 [info] [command][6599ca50-c4c9-492f-b9dd-e275481e2008] Socket close event received\n2025-10-28 20:08:59.006 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:08:59.007 [info] [command][b7d70b4a-e3a5-4aa8-94e0-749aa4d1a5cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b7d70b4a-e3a5-4aa8-94e0-749aa4d1a5cb""}\n2025-10-28 20:08:59.008 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][456598a8-618a-4f70-8a72-e68f207cd6fe] received connection request\n2025-10-28 20:08:59.039 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][456598a8-618a-4f70-8a72-e68f207cd6fe] socks forwarding established\n2025-10-28 20:08:59.067 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][456598a8-618a-4f70-8a72-e68f207cd6fe] socks connection closed\n2025-10-28 20:08:59.067 [info] [command][b7d70b4a-e3a5-4aa8-94e0-749aa4d1a5cb] Process exited with code 0\n2025-10-28 20:08:59.067 [info] [command][b7d70b4a-e3a5-4aa8-94e0-749aa4d1a5cb] Socket close event received\n2025-10-28 20:09:59.068 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:09:59.070 [info] [command][1c3484b7-cc63-40e5-9ce1-c56a24bf811d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1c3484b7-cc63-40e5-9ce1-c56a24bf811d""}\n2025-10-28 20:09:59.070 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][36e269d4-5fbb-49c1-a4d9-59b05149fe8b] received connection request\n2025-10-28 20:09:59.095 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][36e269d4-5fbb-49c1-a4d9-59b05149fe8b] socks forwarding established\n2025-10-28 20:09:59.124 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][36e269d4-5fbb-49c1-a4d9-59b05149fe8b] socks connection closed\n2025-10-28 20:09:59.124 [info] [command][1c3484b7-cc63-40e5-9ce1-c56a24bf811d] Process exited with code 0\n2025-10-28 20:09:59.124 [info] [command][1c3484b7-cc63-40e5-9ce1-c56a24bf811d] Socket close event received\n2025-10-28 20:10:59.128 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:10:59.130 [info] [command][c3cf4f0f-c6b3-4120-8e56-0d6b89c0cbc9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c3cf4f0f-c6b3-4120-8e56-0d6b89c0cbc9""}\n2025-10-28 20:10:59.131 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6b59e8bf-7722-40cd-bd39-a0610a34ad27] received connection request\n2025-10-28 20:10:59.155 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6b59e8bf-7722-40cd-bd39-a0610a34ad27] socks forwarding established\n2025-10-28 20:10:59.184 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6b59e8bf-7722-40cd-bd39-a0610a34ad27] socks connection closed\n2025-10-28 20:10:59.184 [info] [command][c3cf4f0f-c6b3-4120-8e56-0d6b89c0cbc9] Process exited with code 0\n2025-10-28 20:10:59.184 [info] [command][c3cf4f0f-c6b3-4120-8e56-0d6b89c0cbc9] Socket close event received\n2025-10-28 20:11:59.187 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:11:59.190 [info] [command][f647b5e3-0b44-4d7e-8575-3d3d0b4f52f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f647b5e3-0b44-4d7e-8575-3d3d0b4f52f0""}\n2025-10-28 20:11:59.190 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][34a853d5-93fd-41f4-8f00-87577773b549] received connection request\n2025-10-28 20:11:59.214 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][34a853d5-93fd-41f4-8f00-87577773b549] socks forwarding established\n2025-10-28 20:11:59.239 [info] [command][f647b5e3-0b44-4d7e-8575-3d3d0b4f52f0] Process exited with code 0\n2025-10-28 20:11:59.239 [info] [command][f647b5e3-0b44-4d7e-8575-3d3d0b4f52f0] Socket close event received\n2025-10-28 20:11:59.240 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][34a853d5-93fd-41f4-8f00-87577773b549] socks connection closed\n2025-10-28 20:12:59.242 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:12:59.243 [info] [command][c85b534c-12f5-4c24-bec3-6ad13084985c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c85b534c-12f5-4c24-bec3-6ad13084985c""}\n2025-10-28 20:12:59.244 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][29c4f5a6-b978-4a5e-aa52-0dc09da8b711] received connection request\n2025-10-28 20:12:59.266 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][29c4f5a6-b978-4a5e-aa52-0dc09da8b711] socks forwarding established\n2025-10-28 20:12:59.292 [info] [command][c85b534c-12f5-4c24-bec3-6ad13084985c] Process exited with code 0\n2025-10-28 20:12:59.292 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][29c4f5a6-b978-4a5e-aa52-0dc09da8b711] socks connection closed\n2025-10-28 20:12:59.292 [info] [command][c85b534c-12f5-4c24-bec3-6ad13084985c] Socket close event received\n2025-10-28 20:13:59.295 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:13:59.299 [info] [command][2385ba06-d1cc-424d-8226-5122c737ea2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2385ba06-d1cc-424d-8226-5122c737ea2f""}\n2025-10-28 20:13:59.300 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fea196fa-0cc7-4ff2-a445-299a7df54ee0] received connection request\n2025-10-28 20:13:59.323 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fea196fa-0cc7-4ff2-a445-299a7df54ee0] socks forwarding established\n2025-10-28 20:13:59.348 [info] [command][2385ba06-d1cc-424d-8226-5122c737ea2f] Process exited with code 0\n2025-10-28 20:13:59.348 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fea196fa-0cc7-4ff2-a445-299a7df54ee0] socks connection closed\n2025-10-28 20:13:59.348 [info] [command][2385ba06-d1cc-424d-8226-5122c737ea2f] Socket close event received\n2025-10-28 20:14:59.353 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:14:59.354 [info] [command][0c33639e-a090-4a1c-80bd-f3b5340e37b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0c33639e-a090-4a1c-80bd-f3b5340e37b3""}\n2025-10-28 20:14:59.355 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][9ec56621-78de-45a9-9032-7a94cc18b384] received connection request\n2025-10-28 20:14:59.378 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9ec56621-78de-45a9-9032-7a94cc18b384] socks forwarding established\n2025-10-28 20:14:59.404 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][9ec56621-78de-45a9-9032-7a94cc18b384] socks connection closed\n2025-10-28 20:14:59.404 [info] [command][0c33639e-a090-4a1c-80bd-f3b5340e37b3] Process exited with code 0\n2025-10-28 20:14:59.405 [info] [command][0c33639e-a090-4a1c-80bd-f3b5340e37b3] Socket close event received\n2025-10-28 20:15:59.410 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:15:59.412 [info] [command][7c08d8a0-e37b-42b7-8ec0-787944624f0e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7c08d8a0-e37b-42b7-8ec0-787944624f0e""}\n2025-10-28 20:15:59.413 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d953ec86-50ba-4a0a-9dbd-b0687bd60ec5] received connection request\n2025-10-28 20:15:59.437 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d953ec86-50ba-4a0a-9dbd-b0687bd60ec5] socks forwarding established\n2025-10-28 20:15:59.464 [info] [command][7c08d8a0-e37b-42b7-8ec0-787944624f0e] Process exited with code 0\n2025-10-28 20:15:59.464 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d953ec86-50ba-4a0a-9dbd-b0687bd60ec5] socks connection closed\n2025-10-28 20:15:59.464 [info] [command][7c08d8a0-e37b-42b7-8ec0-787944624f0e] Socket close event received\n2025-10-28 20:16:59.470 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:16:59.472 [info] [command][62f52bcf-2451-42cf-a759-669a378d5122] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""62f52bcf-2451-42cf-a759-669a378d5122""}\n2025-10-28 20:16:59.473 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][d305fb2a-77eb-48ed-a5b0-4f9c818a8d5b] received connection request\n2025-10-28 20:16:59.495 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d305fb2a-77eb-48ed-a5b0-4f9c818a8d5b] socks forwarding established\n2025-10-28 20:16:59.522 [info] [command][62f52bcf-2451-42cf-a759-669a378d5122] Process exited with code 0\n2025-10-28 20:16:59.523 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][d305fb2a-77eb-48ed-a5b0-4f9c818a8d5b] socks connection closed\n2025-10-28 20:16:59.523 [info] [command][62f52bcf-2451-42cf-a759-669a378d5122] Socket close event received\n2025-10-28 20:17:59.527 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:17:59.530 [info] [command][547c4168-25f2-4b07-bfdf-ec9d7d6f7cf0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""547c4168-25f2-4b07-bfdf-ec9d7d6f7cf0""}\n2025-10-28 20:17:59.531 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][06b64d14-706b-473d-93ef-135b0f7dcd71] received connection request\n2025-10-28 20:17:59.553 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][06b64d14-706b-473d-93ef-135b0f7dcd71] socks forwarding established\n2025-10-28 20:17:59.580 [info] [command][547c4168-25f2-4b07-bfdf-ec9d7d6f7cf0] Process exited with code 0\n2025-10-28 20:17:59.580 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][06b64d14-706b-473d-93ef-135b0f7dcd71] socks connection closed\n2025-10-28 20:17:59.580 [info] [command][547c4168-25f2-4b07-bfdf-ec9d7d6f7cf0] Socket close event received\n2025-10-28 20:18:59.585 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:18:59.590 [info] [command][7b202df9-354a-4159-bc3d-28c2b57c74af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7b202df9-354a-4159-bc3d-28c2b57c74af""}\n2025-10-28 20:18:59.590 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8fafe4b9-e5f1-4cfd-bdda-252cc6e6df42] received connection request\n2025-10-28 20:18:59.614 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8fafe4b9-e5f1-4cfd-bdda-252cc6e6df42] socks forwarding established\n2025-10-28 20:18:59.640 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8fafe4b9-e5f1-4cfd-bdda-252cc6e6df42] socks connection closed\n2025-10-28 20:18:59.640 [info] [command][7b202df9-354a-4159-bc3d-28c2b57c74af] Process exited with code 0\n2025-10-28 20:18:59.640 [info] [command][7b202df9-354a-4159-bc3d-28c2b57c74af] Socket close event received\n2025-10-28 20:19:59.646 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:19:59.649 [info] [command][fa32ba2c-40ec-4eb8-8e1f-d78b15547221] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fa32ba2c-40ec-4eb8-8e1f-d78b15547221""}\n2025-10-28 20:19:59.650 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][72658bfb-3fa3-4b38-a60d-75ef16194f05] received connection request\n2025-10-28 20:19:59.673 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][72658bfb-3fa3-4b38-a60d-75ef16194f05] socks forwarding established\n2025-10-28 20:19:59.699 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][72658bfb-3fa3-4b38-a60d-75ef16194f05] socks connection closed\n2025-10-28 20:19:59.699 [info] [command][fa32ba2c-40ec-4eb8-8e1f-d78b15547221] Process exited with code 0\n2025-10-28 20:19:59.699 [info] [command][fa32ba2c-40ec-4eb8-8e1f-d78b15547221] Socket close event received\n2025-10-28 20:20:59.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:20:59.706 [info] [command][eda63817-5a5b-45ca-805c-36b192bd453e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eda63817-5a5b-45ca-805c-36b192bd453e""}\n2025-10-28 20:20:59.706 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][fb88fe06-69a7-4849-889e-69ea9ea0bf23] received connection request\n2025-10-28 20:20:59.729 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fb88fe06-69a7-4849-889e-69ea9ea0bf23] socks forwarding established\n2025-10-28 20:20:59.812 [info] [command][eda63817-5a5b-45ca-805c-36b192bd453e] Process exited with code 0\n2025-10-28 20:20:59.813 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][fb88fe06-69a7-4849-889e-69ea9ea0bf23] socks connection closed\n2025-10-28 20:20:59.813 [info] [command][eda63817-5a5b-45ca-805c-36b192bd453e] Socket close event received\n2025-10-28 20:21:59.814 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:21:59.817 [info] [command][2ae2c9bc-30a9-4eed-afd8-d3d4b26886a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2ae2c9bc-30a9-4eed-afd8-d3d4b26886a0""}\n2025-10-28 20:21:59.818 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][413746bc-dccd-48d6-85e0-fd2c7e91e880] received connection request\n2025-10-28 20:21:59.841 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][413746bc-dccd-48d6-85e0-fd2c7e91e880] socks forwarding established\n2025-10-28 20:21:59.869 [info] [command][2ae2c9bc-30a9-4eed-afd8-d3d4b26886a0] Process exited with code 0\n2025-10-28 20:21:59.869 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][413746bc-dccd-48d6-85e0-fd2c7e91e880] socks connection closed\n2025-10-28 20:21:59.869 [info] [command][2ae2c9bc-30a9-4eed-afd8-d3d4b26886a0] Socket close event received\n2025-10-28 20:22:59.874 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:22:59.876 [info] [command][88dc6e43-a197-4a10-9961-be84833a3eb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""88dc6e43-a197-4a10-9961-be84833a3eb5""}\n2025-10-28 20:22:59.877 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][6cac3bd7-e3d0-4933-a579-8a8415863682] received connection request\n2025-10-28 20:22:59.900 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6cac3bd7-e3d0-4933-a579-8a8415863682] socks forwarding established\n2025-10-28 20:22:59.926 [info] [command][88dc6e43-a197-4a10-9961-be84833a3eb5] Process exited with code 0\n2025-10-28 20:22:59.926 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][6cac3bd7-e3d0-4933-a579-8a8415863682] socks connection closed\n2025-10-28 20:22:59.927 [info] [command][88dc6e43-a197-4a10-9961-be84833a3eb5] Socket close event received\n2025-10-28 20:23:59.937 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:23:59.940 [info] [command][bc98f848-633c-4080-b35f-192516c5cb62] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bc98f848-633c-4080-b35f-192516c5cb62""}\n2025-10-28 20:23:59.941 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f6b4cb64-7590-4352-9f6b-bbf5a41be445] received connection request\n2025-10-28 20:23:59.964 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f6b4cb64-7590-4352-9f6b-bbf5a41be445] socks forwarding established\n2025-10-28 20:23:59.989 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f6b4cb64-7590-4352-9f6b-bbf5a41be445] socks connection closed\n2025-10-28 20:23:59.990 [info] [command][bc98f848-633c-4080-b35f-192516c5cb62] Process exited with code 0\n2025-10-28 20:23:59.990 [info] [command][bc98f848-633c-4080-b35f-192516c5cb62] Socket close event received\n2025-10-28 20:25:00.000 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:25:00.001 [info] [command][b6741af8-b6c3-4baf-b0c6-5bd97def7a24] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b6741af8-b6c3-4baf-b0c6-5bd97def7a24""}\n2025-10-28 20:25:00.001 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][b0c2f8fd-42b5-4d63-98d9-b63c62451dfd] received connection request\n2025-10-28 20:25:00.026 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b0c2f8fd-42b5-4d63-98d9-b63c62451dfd] socks forwarding established\n2025-10-28 20:25:00.050 [info] [command][b6741af8-b6c3-4baf-b0c6-5bd97def7a24] Process exited with code 0\n2025-10-28 20:25:00.050 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][b0c2f8fd-42b5-4d63-98d9-b63c62451dfd] socks connection closed\n2025-10-28 20:25:00.050 [info] [command][b6741af8-b6c3-4baf-b0c6-5bd97def7a24] Socket close event received\n2025-10-28 20:26:00.054 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:26:00.056 [info] [command][c453761c-750d-4356-9a4a-89bb7d94846f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c453761c-750d-4356-9a4a-89bb7d94846f""}\n2025-10-28 20:26:00.056 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][3735e79e-9be8-4300-bbd5-72a343abb8ac] received connection request\n2025-10-28 20:26:00.079 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3735e79e-9be8-4300-bbd5-72a343abb8ac] socks forwarding established\n2025-10-28 20:26:00.105 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][3735e79e-9be8-4300-bbd5-72a343abb8ac] socks connection closed\n2025-10-28 20:26:00.105 [info] [command][c453761c-750d-4356-9a4a-89bb7d94846f] Process exited with code 0\n2025-10-28 20:26:00.105 [info] [command][c453761c-750d-4356-9a4a-89bb7d94846f] Socket close event received\n2025-10-28 20:27:00.107 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:27:00.111 [info] [command][d2301274-d575-40bb-88a8-20f8c34108ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d2301274-d575-40bb-88a8-20f8c34108ec""}\n2025-10-28 20:27:00.111 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][5f5f5ea4-5474-4d4b-a4e1-0ef30687be9d] received connection request\n2025-10-28 20:27:00.136 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f5f5ea4-5474-4d4b-a4e1-0ef30687be9d] socks forwarding established\n2025-10-28 20:27:00.164 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][5f5f5ea4-5474-4d4b-a4e1-0ef30687be9d] socks connection closed\n2025-10-28 20:27:00.165 [info] [command][d2301274-d575-40bb-88a8-20f8c34108ec] Process exited with code 0\n2025-10-28 20:27:00.165 [info] [command][d2301274-d575-40bb-88a8-20f8c34108ec] Socket close event received\n2025-10-28 20:28:00.175 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:28:00.178 [info] [command][1ec757a6-5711-43d4-90d4-15bcadfa9906] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1ec757a6-5711-43d4-90d4-15bcadfa9906""}\n2025-10-28 20:28:00.179 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][f320d54e-8f06-436b-96f8-747274a01865] received connection request\n2025-10-28 20:28:00.281 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f320d54e-8f06-436b-96f8-747274a01865] socks forwarding established\n2025-10-28 20:28:00.436 [info] [command][1ec757a6-5711-43d4-90d4-15bcadfa9906] Process exited with code 0\n2025-10-28 20:28:00.436 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][f320d54e-8f06-436b-96f8-747274a01865] socks connection closed\n2025-10-28 20:28:00.436 [info] [command][1ec757a6-5711-43d4-90d4-15bcadfa9906] Socket close event received\n2025-10-28 20:29:00.441 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:29:00.443 [info] [command][00135087-63f2-42ec-98ee-07038a0b6266] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""00135087-63f2-42ec-98ee-07038a0b6266""}\n2025-10-28 20:29:00.444 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][99af03e5-4d63-4f46-b405-85ac1b09271c] received connection request\n2025-10-28 20:29:00.469 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][99af03e5-4d63-4f46-b405-85ac1b09271c] socks forwarding established\n2025-10-28 20:29:00.496 [info] [command][00135087-63f2-42ec-98ee-07038a0b6266] Process exited with code 0\n2025-10-28 20:29:00.496 [info] [command][00135087-63f2-42ec-98ee-07038a0b6266] Socket close event received\n2025-10-28 20:29:00.515 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][99af03e5-4d63-4f46-b405-85ac1b09271c] socks connection closed\n2025-10-28 20:30:00.504 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:30:00.506 [info] [command][d2ffb1a9-254b-4531-a762-dd45e12583c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d2ffb1a9-254b-4531-a762-dd45e12583c1""}\n2025-10-28 20:30:00.507 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][35e40cde-f089-4d93-9bca-91f7f61f17a8] received connection request\n2025-10-28 20:30:00.540 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][35e40cde-f089-4d93-9bca-91f7f61f17a8] socks forwarding established\n2025-10-28 20:30:00.568 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][35e40cde-f089-4d93-9bca-91f7f61f17a8] socks connection closed\n2025-10-28 20:30:00.568 [info] [command][d2ffb1a9-254b-4531-a762-dd45e12583c1] Process exited with code 0\n2025-10-28 20:30:00.568 [info] [command][d2ffb1a9-254b-4531-a762-dd45e12583c1] Socket close event received\n2025-10-28 20:31:00.580 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:31:00.582 [info] [command][4e369f18-c6b5-4ace-b5bf-77021a4a82eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4e369f18-c6b5-4ace-b5bf-77021a4a82eb""}\n2025-10-28 20:31:00.583 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][89eec75e-c9ba-47df-b900-bad1677d6fa3] received connection request\n2025-10-28 20:31:00.607 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][89eec75e-c9ba-47df-b900-bad1677d6fa3] socks forwarding established\n2025-10-28 20:31:00.632 [info] [command][4e369f18-c6b5-4ace-b5bf-77021a4a82eb] Process exited with code 0\n2025-10-28 20:31:00.632 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][89eec75e-c9ba-47df-b900-bad1677d6fa3] socks connection closed\n2025-10-28 20:31:00.632 [info] [command][4e369f18-c6b5-4ace-b5bf-77021a4a82eb] Socket close event received\n2025-10-28 20:32:00.634 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:32:00.636 [info] [command][c778e19f-9536-44c8-9fec-d68bbf3975b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c778e19f-9536-44c8-9fec-d68bbf3975b8""}\n2025-10-28 20:32:00.637 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][8f86fcb5-9f53-491f-8b26-194a019b2e40] received connection request\n2025-10-28 20:32:30.659 [error] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][8f86fcb5-9f53-491f-8b26-194a019b2e40] error while creating socks forwarding Proxy connection timed out\n2025-10-28 20:32:30.660 [info] [command][c778e19f-9536-44c8-9fec-d68bbf3975b8] Socket end event received\n2025-10-28 20:32:30.660 [info] [command][c778e19f-9536-44c8-9fec-d68bbf3975b8] Socket close event received\n2025-10-28 20:32:30.661 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c778e19f-9536-44c8-9fec-d68bbf3975b8] Socket closed without exit code\n2025-10-28 20:32:44.645 [info] (ssh_tunnel) stderr: Read from remote host login.haicore.berlin: Operation timed out\n\n2025-10-28 20:32:44.646 [info] (ssh_tunnel) stderr: client_loop: send disconnect: Broken pipe\n\n2025-10-28 20:32:44.650 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][86a58ba8-6df2-467b-bed6-e550bcb5793c] socks connection closed\n2025-10-28 20:32:44.651 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][1ff594b3-c1db-4d4b-ab70-647829382274] socks connection closed\n2025-10-28 20:32:44.661 [info] Resolving ssh remote authority 'login.haicore.berlin' (Unparsed 'ssh-remote+7b22686f73744e616d65223a226c6f67696e2e686169636f72652e6265726c696e227d') (attempt #2)\n2025-10-28 20:32:44.661 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-10-28 20:32:44.664 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][50f39bf7-7c32-4c9a-acf2-7b6385d388f2] received connection request\n2025-10-28 20:32:44.665 [error] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][50f39bf7-7c32-4c9a-acf2-7b6385d388f2] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:56481\n2025-10-28 20:32:44.668 [error] Failed to connect to Cursor server at http://127.0.0.1:56486, attempt 1 of 3 fetch failed\n2025-10-28 20:32:45.677 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][5e423bd4-8396-4825-8741-08b0c837568f] received connection request\n2025-10-28 20:32:45.678 [error] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][5e423bd4-8396-4825-8741-08b0c837568f] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:56481\n2025-10-28 20:32:45.679 [error] Failed to connect to Cursor server at http://127.0.0.1:56486, attempt 2 of 3 fetch failed\n2025-10-28 20:32:46.688 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][5aac5336-6e13-408b-bada-7f81a5bbc605] received connection request\n2025-10-28 20:32:46.688 [error] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][5aac5336-6e13-408b-bada-7f81a5bbc605] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:56481\n2025-10-28 20:32:46.689 [error] Failed to connect to Cursor server at http://127.0.0.1:56486, attempt 3 of 3 fetch failed\n2025-10-28 20:32:46.689 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-10-28 20:32:46.689 [info] [forwarding][code] returning existing forwarding server listening on local port 56486\n2025-10-28 20:32:46.689 [info] [remote-ssh] codeListeningOn (remote=127.0.0.1:42043; local=127.0.0.1:56486) codeConnectionToken: 004b0eee-3dae-46af-95c4-7b3a9b69dfda\n2025-10-28 20:32:46.689 [info] [forwarding][multiplex] returning existing forwarding server listening on local port 56487\n2025-10-28 20:32:46.689 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: bf11df0a-a510-4abc-87c9-121bfdb07854\n2025-10-28 20:32:46.689 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:32:46.691 [info] [command][fe4ea0ca-40d0-49e5-af22-0382eb31319e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fe4ea0ca-40d0-49e5-af22-0382eb31319e""}\n2025-10-28 20:32:46.691 [info] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:34173][ac0fa7ce-aab0-4e8b-a6f7-8cb65c70e2dc] received connection request\n2025-10-28 20:32:46.691 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][00c1bec8-c4b0-42e8-8c6b-4f83c715ae89] received connection request\n2025-10-28 20:32:46.692 [error] [forwarding][multiplex][127.0.0.1:56487 -> 127.0.0.1:56481 -> 127.0.0.1:34173][ac0fa7ce-aab0-4e8b-a6f7-8cb65c70e2dc] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:56481\n2025-10-28 20:32:46.692 [error] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][00c1bec8-c4b0-42e8-8c6b-4f83c715ae89] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:56481\n2025-10-28 20:32:46.692 [info] [command][fe4ea0ca-40d0-49e5-af22-0382eb31319e] Socket end event received\n2025-10-28 20:32:46.692 [info] [command][fe4ea0ca-40d0-49e5-af22-0382eb31319e] Socket close event received\n2025-10-28 20:32:46.692 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fe4ea0ca-40d0-49e5-af22-0382eb31319e] Socket closed without exit code\n2025-10-28 20:32:46.692 [error] Failed to connect to Cursor server at http://127.0.0.1:56486, attempt 1 of 3 fetch failed\n2025-10-28 20:32:47.703 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][52730959-d1e0-48a2-8719-04b7ffb16c18] received connection request\n2025-10-28 20:32:47.704 [error] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][52730959-d1e0-48a2-8719-04b7ffb16c18] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:56481\n2025-10-28 20:32:47.704 [error] Failed to connect to Cursor server at http://127.0.0.1:56486, attempt 2 of 3 fetch failed\n2025-10-28 20:32:48.716 [info] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:42043][8b77c95b-6943-4894-9996-abcaad48e593] received connection request\n2025-10-28 20:32:48.717 [error] [forwarding][code][127.0.0.1:56486 -> 127.0.0.1:56481 -> 127.0.0.1:42043][8b77c95b-6943-4894-9996-abcaad48e593] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:56481\n2025-10-28 20:32:48.717 [error] Failed to connect to Cursor server at http://127.0.0.1:56486, attempt 3 of 3 fetch failed\n2025-10-28 20:32:48.721 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-10-28 20:32:48.778 [info] Terminating existing SSH process\n2025-10-28 20:32:48.778 [info] Using configured platform linux for remote host login.haicore.berlin\n2025-10-28 20:32:48.779 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:32:48.782 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c77c7a75-8621-4d45-92d1-13283ea0edd1.sh"" | ssh -T -D 62548 login.haicore.berlin bash --login -c bash\n2025-10-28 20:32:48.782 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c77c7a75-8621-4d45-92d1-13283ea0edd1.sh"" | ssh -T -D 62548 login.haicore.berlin bash --login -c bash\n2025-10-28 20:32:48.782 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:32:48.782 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:32:48.795 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:32:48.796 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:32:48.796 [info] Retrying connection in 5 seconds...\n2025-10-28 20:32:53.806 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c77c7a75-8621-4d45-92d1-13283ea0edd1.sh\n2025-10-28 20:32:53.807 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:32:53.812 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_47f1ccd9-ff0a-4016-be87-23847f3cc4df.sh"" | ssh -T -D 62549 login.haicore.berlin bash --login -c bash\n2025-10-28 20:32:53.812 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_47f1ccd9-ff0a-4016-be87-23847f3cc4df.sh"" | ssh -T -D 62549 login.haicore.berlin bash --login -c bash\n2025-10-28 20:32:53.812 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:32:53.812 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:32:53.830 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:32:53.831 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:32:53.831 [info] Retrying connection in 5 seconds...\n2025-10-28 20:32:58.841 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_47f1ccd9-ff0a-4016-be87-23847f3cc4df.sh\n2025-10-28 20:32:58.842 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:32:58.849 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_da90b50c-e84b-4efd-b171-fd797757ffa8.sh"" | ssh -T -D 62550 login.haicore.berlin bash --login -c bash\n2025-10-28 20:32:58.849 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_da90b50c-e84b-4efd-b171-fd797757ffa8.sh"" | ssh -T -D 62550 login.haicore.berlin bash --login -c bash\n2025-10-28 20:32:58.849 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:32:58.849 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:32:58.871 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:32:58.872 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:32:58.872 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:03.877 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_da90b50c-e84b-4efd-b171-fd797757ffa8.sh\n2025-10-28 20:33:03.879 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:03.883 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a444727c-7a44-43f3-867b-6547644dfdca.sh"" | ssh -T -D 62551 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:03.883 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a444727c-7a44-43f3-867b-6547644dfdca.sh"" | ssh -T -D 62551 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:03.883 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:03.883 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:03.900 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:03.901 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:03.901 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:08.901 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a444727c-7a44-43f3-867b-6547644dfdca.sh\n2025-10-28 20:33:08.902 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:08.909 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ded8da2d-45dc-4dae-9d4c-c39e4607eb82.sh"" | ssh -T -D 62553 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:08.909 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ded8da2d-45dc-4dae-9d4c-c39e4607eb82.sh"" | ssh -T -D 62553 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:08.909 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:08.909 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:08.930 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:08.931 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:08.931 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:13.941 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ded8da2d-45dc-4dae-9d4c-c39e4607eb82.sh\n2025-10-28 20:33:13.943 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:13.948 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9cbeffb1-3357-44da-9163-1594388c7dab.sh"" | ssh -T -D 62554 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:13.948 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9cbeffb1-3357-44da-9163-1594388c7dab.sh"" | ssh -T -D 62554 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:13.949 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:13.949 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:13.968 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:13.969 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:13.969 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:18.969 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9cbeffb1-3357-44da-9163-1594388c7dab.sh\n2025-10-28 20:33:18.970 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:18.975 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_087b45a5-9be1-438e-a74c-95a986bcc1b9.sh"" | ssh -T -D 62555 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:18.975 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_087b45a5-9be1-438e-a74c-95a986bcc1b9.sh"" | ssh -T -D 62555 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:18.975 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:18.975 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:18.989 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:18.990 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:18.990 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:24.001 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_087b45a5-9be1-438e-a74c-95a986bcc1b9.sh\n2025-10-28 20:33:24.002 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:24.007 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d9f01b64-6030-418d-8bfe-ab673b576a82.sh"" | ssh -T -D 62556 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:24.007 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d9f01b64-6030-418d-8bfe-ab673b576a82.sh"" | ssh -T -D 62556 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:24.007 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:24.007 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:24.028 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:24.028 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:24.029 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:29.030 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d9f01b64-6030-418d-8bfe-ab673b576a82.sh\n2025-10-28 20:33:29.031 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:29.036 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e4d71f48-4541-4131-8460-e9d6ae635d0b.sh"" | ssh -T -D 62558 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:29.036 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e4d71f48-4541-4131-8460-e9d6ae635d0b.sh"" | ssh -T -D 62558 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:29.036 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:29.036 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:29.055 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:29.056 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:29.056 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:34.063 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e4d71f48-4541-4131-8460-e9d6ae635d0b.sh\n2025-10-28 20:33:34.064 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:34.069 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_949ac434-e75d-4aab-af5e-2d5b040e0ec9.sh"" | ssh -T -D 62559 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:34.069 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_949ac434-e75d-4aab-af5e-2d5b040e0ec9.sh"" | ssh -T -D 62559 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:34.069 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:34.069 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:34.086 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:34.086 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:34.086 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:39.092 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_949ac434-e75d-4aab-af5e-2d5b040e0ec9.sh\n2025-10-28 20:33:39.093 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:39.098 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1589d231-0461-462b-8ea7-9de103fd2882.sh"" | ssh -T -D 62560 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:39.098 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1589d231-0461-462b-8ea7-9de103fd2882.sh"" | ssh -T -D 62560 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:39.098 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:39.098 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:39.116 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:39.117 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:39.117 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:44.117 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1589d231-0461-462b-8ea7-9de103fd2882.sh\n2025-10-28 20:33:44.118 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:44.125 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_73aa1ac7-a0b6-4eba-9408-d92d3b3daea9.sh"" | ssh -T -D 62561 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:44.125 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_73aa1ac7-a0b6-4eba-9408-d92d3b3daea9.sh"" | ssh -T -D 62561 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:44.125 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:44.125 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:44.147 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:44.148 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:44.148 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:46.704 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:33:46.705 [info] [command][e7998a57-1e2f-4993-bbc7-1ce3f87291cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e7998a57-1e2f-4993-bbc7-1ce3f87291cb""}\n2025-10-28 20:33:46.705 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][eef0062a-bff8-44c2-b175-638e89dd0229] remote server not configured\n2025-10-28 20:33:46.706 [error] [command][e7998a57-1e2f-4993-bbc7-1ce3f87291cb] Socket error: Error: read ECONNRESET\n2025-10-28 20:33:46.706 [info] [command][e7998a57-1e2f-4993-bbc7-1ce3f87291cb] Socket close event received\n2025-10-28 20:33:46.706 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e7998a57-1e2f-4993-bbc7-1ce3f87291cb] Socket closed without exit code\n2025-10-28 20:33:49.158 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_73aa1ac7-a0b6-4eba-9408-d92d3b3daea9.sh\n2025-10-28 20:33:49.159 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:49.163 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b53986a1-9934-4c8c-bff4-a529d10e95a9.sh"" | ssh -T -D 62563 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:49.163 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b53986a1-9934-4c8c-bff4-a529d10e95a9.sh"" | ssh -T -D 62563 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:49.163 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:49.163 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:49.181 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:49.182 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:49.182 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:54.192 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b53986a1-9934-4c8c-bff4-a529d10e95a9.sh\n2025-10-28 20:33:54.193 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:54.197 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e0a416b6-272e-411e-b924-d932cb8b02e1.sh"" | ssh -T -D 62564 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:54.197 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e0a416b6-272e-411e-b924-d932cb8b02e1.sh"" | ssh -T -D 62564 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:54.197 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:54.197 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:54.210 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:54.211 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:54.211 [info] Retrying connection in 5 seconds...\n2025-10-28 20:33:59.221 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e0a416b6-272e-411e-b924-d932cb8b02e1.sh\n2025-10-28 20:33:59.222 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:33:59.226 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a35b1b4d-d729-4a29-a440-80fdc002ec2d.sh"" | ssh -T -D 62565 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:59.226 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a35b1b4d-d729-4a29-a440-80fdc002ec2d.sh"" | ssh -T -D 62565 login.haicore.berlin bash --login -c bash\n2025-10-28 20:33:59.226 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:33:59.226 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:33:59.241 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:33:59.242 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:33:59.242 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:04.247 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a35b1b4d-d729-4a29-a440-80fdc002ec2d.sh\n2025-10-28 20:34:04.248 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:04.249 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c5cbddb3-038c-46ff-a590-d33dfcaecc9d.sh"" | ssh -T -D 62566 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:04.249 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c5cbddb3-038c-46ff-a590-d33dfcaecc9d.sh"" | ssh -T -D 62566 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:04.249 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:04.249 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:04.255 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:04.255 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:04.255 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:09.266 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c5cbddb3-038c-46ff-a590-d33dfcaecc9d.sh\n2025-10-28 20:34:09.267 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:09.272 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_be9ae56e-3c4e-4766-af68-da62525a72ac.sh"" | ssh -T -D 62568 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:09.272 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_be9ae56e-3c4e-4766-af68-da62525a72ac.sh"" | ssh -T -D 62568 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:09.272 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:09.272 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:09.294 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:09.295 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:09.295 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:14.304 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_be9ae56e-3c4e-4766-af68-da62525a72ac.sh\n2025-10-28 20:34:14.306 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:14.309 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6b509954-5ebb-4c1e-b4ec-bbffb8310c2f.sh"" | ssh -T -D 62569 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:14.309 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6b509954-5ebb-4c1e-b4ec-bbffb8310c2f.sh"" | ssh -T -D 62569 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:14.309 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:14.309 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:14.325 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:14.326 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:14.326 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:19.337 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6b509954-5ebb-4c1e-b4ec-bbffb8310c2f.sh\n2025-10-28 20:34:19.338 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:19.343 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4997ff9b-c5aa-4ed3-a798-97cf36b2d9da.sh"" | ssh -T -D 62570 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:19.343 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4997ff9b-c5aa-4ed3-a798-97cf36b2d9da.sh"" | ssh -T -D 62570 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:19.343 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:19.343 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:19.361 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:19.361 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:19.361 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:24.363 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4997ff9b-c5aa-4ed3-a798-97cf36b2d9da.sh\n2025-10-28 20:34:24.364 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:24.369 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6777ea91-94f7-416e-86e5-0f420f70e679.sh"" | ssh -T -D 62571 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:24.369 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6777ea91-94f7-416e-86e5-0f420f70e679.sh"" | ssh -T -D 62571 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:24.369 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:24.369 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:24.391 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:24.391 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:24.391 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:29.402 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6777ea91-94f7-416e-86e5-0f420f70e679.sh\n2025-10-28 20:34:29.403 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:29.406 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a7e3eec5-8a06-4df3-9fa8-7609c54dee43.sh"" | ssh -T -D 62573 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:29.406 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a7e3eec5-8a06-4df3-9fa8-7609c54dee43.sh"" | ssh -T -D 62573 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:29.406 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:29.406 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:29.428 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:29.429 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:29.429 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:34.439 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a7e3eec5-8a06-4df3-9fa8-7609c54dee43.sh\n2025-10-28 20:34:34.440 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:34.445 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c6b5c95b-757b-4bce-9fa6-084ddab5a3b5.sh"" | ssh -T -D 62574 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:34.445 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c6b5c95b-757b-4bce-9fa6-084ddab5a3b5.sh"" | ssh -T -D 62574 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:34.445 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:34.445 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:34.467 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:34.467 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:34.467 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:39.471 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c6b5c95b-757b-4bce-9fa6-084ddab5a3b5.sh\n2025-10-28 20:34:39.472 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:39.476 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0b76d273-00b3-4ecb-b4a4-69274ab71e51.sh"" | ssh -T -D 62575 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:39.476 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0b76d273-00b3-4ecb-b4a4-69274ab71e51.sh"" | ssh -T -D 62575 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:39.476 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:39.476 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:39.496 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:39.496 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:39.496 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:44.505 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0b76d273-00b3-4ecb-b4a4-69274ab71e51.sh\n2025-10-28 20:34:44.506 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:44.510 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_22c85b00-b321-424e-b3a2-18c1a72ce623.sh"" | ssh -T -D 62576 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:44.510 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_22c85b00-b321-424e-b3a2-18c1a72ce623.sh"" | ssh -T -D 62576 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:44.510 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:44.510 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:44.528 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:44.529 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:44.529 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:46.712 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:34:46.714 [info] [command][06314ad2-50f9-45c4-8ff4-aea463ae2721] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""06314ad2-50f9-45c4-8ff4-aea463ae2721""}\n2025-10-28 20:34:46.714 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][102e40a4-d881-40bd-bf1f-3ab0870f6fdb] remote server not configured\n2025-10-28 20:34:46.714 [error] [command][06314ad2-50f9-45c4-8ff4-aea463ae2721] Socket error: Error: read ECONNRESET\n2025-10-28 20:34:46.714 [info] [command][06314ad2-50f9-45c4-8ff4-aea463ae2721] Socket close event received\n2025-10-28 20:34:46.715 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][06314ad2-50f9-45c4-8ff4-aea463ae2721] Socket closed without exit code\n2025-10-28 20:34:49.539 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_22c85b00-b321-424e-b3a2-18c1a72ce623.sh\n2025-10-28 20:34:49.540 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:49.544 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_edbac7f5-4f67-4365-99c2-c856f5d94f57.sh"" | ssh -T -D 62578 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:49.544 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_edbac7f5-4f67-4365-99c2-c856f5d94f57.sh"" | ssh -T -D 62578 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:49.544 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:49.544 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:49.566 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:49.567 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:49.567 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:54.574 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_edbac7f5-4f67-4365-99c2-c856f5d94f57.sh\n2025-10-28 20:34:54.575 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:54.579 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_177c4f5e-0cc6-4371-bf6a-b0eda6b18d68.sh"" | ssh -T -D 62579 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:54.579 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_177c4f5e-0cc6-4371-bf6a-b0eda6b18d68.sh"" | ssh -T -D 62579 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:54.579 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:54.579 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:54.598 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:54.599 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:54.599 [info] Retrying connection in 5 seconds...\n2025-10-28 20:34:59.609 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_177c4f5e-0cc6-4371-bf6a-b0eda6b18d68.sh\n2025-10-28 20:34:59.610 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:34:59.614 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a5d3bad5-4dc9-487c-933c-b03da362abf6.sh"" | ssh -T -D 62580 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:59.614 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a5d3bad5-4dc9-487c-933c-b03da362abf6.sh"" | ssh -T -D 62580 login.haicore.berlin bash --login -c bash\n2025-10-28 20:34:59.614 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:34:59.614 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:34:59.627 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:34:59.628 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:34:59.628 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:04.638 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a5d3bad5-4dc9-487c-933c-b03da362abf6.sh\n2025-10-28 20:35:04.639 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:04.644 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e512b465-2972-4f05-9d9e-41eec41a8c58.sh"" | ssh -T -D 62581 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:04.644 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e512b465-2972-4f05-9d9e-41eec41a8c58.sh"" | ssh -T -D 62581 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:04.644 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:04.644 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:04.662 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:04.663 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:04.663 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:09.672 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e512b465-2972-4f05-9d9e-41eec41a8c58.sh\n2025-10-28 20:35:09.674 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:09.678 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9557908a-997f-42c2-a416-f0ae9bd6123e.sh"" | ssh -T -D 62583 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:09.678 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9557908a-997f-42c2-a416-f0ae9bd6123e.sh"" | ssh -T -D 62583 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:09.678 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:09.678 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:09.699 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:09.700 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:09.700 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:14.711 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9557908a-997f-42c2-a416-f0ae9bd6123e.sh\n2025-10-28 20:35:14.712 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:14.716 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68e95af6-8596-4c47-8187-50d09b1c2d60.sh"" | ssh -T -D 62584 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:14.716 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68e95af6-8596-4c47-8187-50d09b1c2d60.sh"" | ssh -T -D 62584 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:14.716 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:14.716 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:14.734 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:14.735 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:14.735 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:19.746 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68e95af6-8596-4c47-8187-50d09b1c2d60.sh\n2025-10-28 20:35:19.746 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:19.750 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4060bcf9-5a4f-4f5e-8dd5-ddf0a8c695cf.sh"" | ssh -T -D 62585 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:19.750 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4060bcf9-5a4f-4f5e-8dd5-ddf0a8c695cf.sh"" | ssh -T -D 62585 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:19.750 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:19.750 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:19.770 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:19.770 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:19.770 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:24.782 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4060bcf9-5a4f-4f5e-8dd5-ddf0a8c695cf.sh\n2025-10-28 20:35:24.783 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:24.787 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f36330c9-2ee3-4fe2-b51f-c943675fb3a6.sh"" | ssh -T -D 62586 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:24.787 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f36330c9-2ee3-4fe2-b51f-c943675fb3a6.sh"" | ssh -T -D 62586 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:24.787 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:24.787 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:24.808 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:24.809 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:24.809 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:29.821 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f36330c9-2ee3-4fe2-b51f-c943675fb3a6.sh\n2025-10-28 20:35:29.822 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:29.826 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4be638fb-2ca3-49f6-a615-b57f9fbbc708.sh"" | ssh -T -D 62588 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:29.826 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4be638fb-2ca3-49f6-a615-b57f9fbbc708.sh"" | ssh -T -D 62588 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:29.827 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:29.827 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:29.846 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:29.847 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:29.847 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:34.857 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4be638fb-2ca3-49f6-a615-b57f9fbbc708.sh\n2025-10-28 20:35:34.859 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:34.864 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e8583646-d3fd-4908-8cca-754f2bfc9d5b.sh"" | ssh -T -D 62589 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:34.864 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e8583646-d3fd-4908-8cca-754f2bfc9d5b.sh"" | ssh -T -D 62589 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:34.864 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:34.864 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:34.886 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:34.886 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:34.886 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:39.888 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e8583646-d3fd-4908-8cca-754f2bfc9d5b.sh\n2025-10-28 20:35:39.889 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:39.892 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a7b2b3d8-387e-4de0-b4a1-9e9a94ef4a7c.sh"" | ssh -T -D 62590 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:39.892 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a7b2b3d8-387e-4de0-b4a1-9e9a94ef4a7c.sh"" | ssh -T -D 62590 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:39.893 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:39.893 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:39.913 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:39.914 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:39.914 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:44.921 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a7b2b3d8-387e-4de0-b4a1-9e9a94ef4a7c.sh\n2025-10-28 20:35:44.923 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:44.927 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3a24286d-73e4-4f43-a5fb-292dcac67e03.sh"" | ssh -T -D 62591 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:44.927 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3a24286d-73e4-4f43-a5fb-292dcac67e03.sh"" | ssh -T -D 62591 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:44.927 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:44.927 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:44.949 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:44.949 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:44.949 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:46.725 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:35:46.727 [info] [command][0df10489-7de9-416b-811b-9c5b95cdd83e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0df10489-7de9-416b-811b-9c5b95cdd83e""}\n2025-10-28 20:35:46.728 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][280b7a4f-409e-4b66-b803-f25263fad7dd] remote server not configured\n2025-10-28 20:35:46.728 [error] [command][0df10489-7de9-416b-811b-9c5b95cdd83e] Socket error: Error: read ECONNRESET\n2025-10-28 20:35:46.728 [info] [command][0df10489-7de9-416b-811b-9c5b95cdd83e] Socket close event received\n2025-10-28 20:35:46.728 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0df10489-7de9-416b-811b-9c5b95cdd83e] Socket closed without exit code\n2025-10-28 20:35:49.959 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3a24286d-73e4-4f43-a5fb-292dcac67e03.sh\n2025-10-28 20:35:49.960 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:49.965 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6c4fb1b4-a486-4bbc-9ee3-abdbcdb63477.sh"" | ssh -T -D 62593 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:49.965 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6c4fb1b4-a486-4bbc-9ee3-abdbcdb63477.sh"" | ssh -T -D 62593 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:49.966 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:49.966 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:49.988 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:49.989 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:49.989 [info] Retrying connection in 5 seconds...\n2025-10-28 20:35:54.994 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6c4fb1b4-a486-4bbc-9ee3-abdbcdb63477.sh\n2025-10-28 20:35:54.995 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:35:55.001 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5628bbb3-f7cb-48ae-8823-fa965637ccf5.sh"" | ssh -T -D 62594 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:55.001 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5628bbb3-f7cb-48ae-8823-fa965637ccf5.sh"" | ssh -T -D 62594 login.haicore.berlin bash --login -c bash\n2025-10-28 20:35:55.001 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:35:55.001 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:35:55.020 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:35:55.021 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:35:55.021 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:00.023 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5628bbb3-f7cb-48ae-8823-fa965637ccf5.sh\n2025-10-28 20:36:00.024 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:00.028 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_90e4b014-921c-433e-8b23-79d7b16f01c5.sh"" | ssh -T -D 62595 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:00.028 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_90e4b014-921c-433e-8b23-79d7b16f01c5.sh"" | ssh -T -D 62595 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:00.029 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:00.029 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:00.048 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:00.049 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:00.049 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:05.059 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_90e4b014-921c-433e-8b23-79d7b16f01c5.sh\n2025-10-28 20:36:05.061 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:05.065 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2c28b383-ce49-4a5a-9cb4-81223b7c1862.sh"" | ssh -T -D 62596 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:05.065 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2c28b383-ce49-4a5a-9cb4-81223b7c1862.sh"" | ssh -T -D 62596 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:05.065 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:05.065 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:05.086 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:05.087 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:05.087 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:10.093 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2c28b383-ce49-4a5a-9cb4-81223b7c1862.sh\n2025-10-28 20:36:10.094 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:10.100 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_00868a4f-8d5a-41d8-89e6-83c1f018bc5b.sh"" | ssh -T -D 62598 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:10.100 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_00868a4f-8d5a-41d8-89e6-83c1f018bc5b.sh"" | ssh -T -D 62598 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:10.100 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:10.100 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:10.119 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:10.120 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:10.120 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:15.124 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_00868a4f-8d5a-41d8-89e6-83c1f018bc5b.sh\n2025-10-28 20:36:15.126 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:15.130 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_033d4479-0893-4b29-b6dd-6ac7eebe0521.sh"" | ssh -T -D 62599 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:15.130 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_033d4479-0893-4b29-b6dd-6ac7eebe0521.sh"" | ssh -T -D 62599 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:15.130 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:15.130 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:15.145 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:15.146 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:15.146 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:20.156 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_033d4479-0893-4b29-b6dd-6ac7eebe0521.sh\n2025-10-28 20:36:20.157 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:20.163 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1ebba33d-edcd-423a-a2bd-4fc9bb227359.sh"" | ssh -T -D 62600 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:20.163 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1ebba33d-edcd-423a-a2bd-4fc9bb227359.sh"" | ssh -T -D 62600 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:20.163 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:20.163 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:20.181 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:20.182 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:20.182 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:25.185 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1ebba33d-edcd-423a-a2bd-4fc9bb227359.sh\n2025-10-28 20:36:25.186 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:25.190 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b4e8e1d1-9c63-4f8f-8de0-d0393d384f57.sh"" | ssh -T -D 62601 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:25.190 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b4e8e1d1-9c63-4f8f-8de0-d0393d384f57.sh"" | ssh -T -D 62601 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:25.190 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:25.190 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:25.212 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:25.213 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:25.213 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:30.222 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b4e8e1d1-9c63-4f8f-8de0-d0393d384f57.sh\n2025-10-28 20:36:30.224 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:30.229 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5cb52ebc-9f46-4443-90eb-ab55d1f302a0.sh"" | ssh -T -D 62603 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:30.229 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5cb52ebc-9f46-4443-90eb-ab55d1f302a0.sh"" | ssh -T -D 62603 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:30.229 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:30.229 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:30.248 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:30.249 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:30.249 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:35.259 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5cb52ebc-9f46-4443-90eb-ab55d1f302a0.sh\n2025-10-28 20:36:35.261 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:35.264 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4c2afb8f-5d5a-4cd5-8daf-4ade3e68a602.sh"" | ssh -T -D 62604 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:35.264 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4c2afb8f-5d5a-4cd5-8daf-4ade3e68a602.sh"" | ssh -T -D 62604 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:35.265 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:35.265 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:35.278 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:35.279 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:35.279 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:40.290 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4c2afb8f-5d5a-4cd5-8daf-4ade3e68a602.sh\n2025-10-28 20:36:40.291 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:40.295 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_148d73f5-6474-4f39-96b8-2fe8a8bbe32d.sh"" | ssh -T -D 62605 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:40.295 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_148d73f5-6474-4f39-96b8-2fe8a8bbe32d.sh"" | ssh -T -D 62605 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:40.295 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:40.295 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:40.315 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:40.316 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:40.316 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:45.327 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_148d73f5-6474-4f39-96b8-2fe8a8bbe32d.sh\n2025-10-28 20:36:45.328 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:45.332 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_76a11097-4b17-45ca-8202-13c6e77b0437.sh"" | ssh -T -D 62606 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:45.332 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_76a11097-4b17-45ca-8202-13c6e77b0437.sh"" | ssh -T -D 62606 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:45.332 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:45.332 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:45.351 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:45.351 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:45.351 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:46.739 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:36:46.741 [info] [command][16ff9102-4a7a-432b-9173-d6e707b6334c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""16ff9102-4a7a-432b-9173-d6e707b6334c""}\n2025-10-28 20:36:46.742 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0963f8d4-c355-4532-87a5-176bd1e19646] remote server not configured\n2025-10-28 20:36:46.742 [error] [command][16ff9102-4a7a-432b-9173-d6e707b6334c] Socket error: Error: read ECONNRESET\n2025-10-28 20:36:46.742 [info] [command][16ff9102-4a7a-432b-9173-d6e707b6334c] Socket close event received\n2025-10-28 20:36:46.742 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][16ff9102-4a7a-432b-9173-d6e707b6334c] Socket closed without exit code\n2025-10-28 20:36:50.362 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_76a11097-4b17-45ca-8202-13c6e77b0437.sh\n2025-10-28 20:36:50.363 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:50.367 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e3c18af3-a278-4f39-8bbf-25cd0eb532ec.sh"" | ssh -T -D 62608 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:50.367 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e3c18af3-a278-4f39-8bbf-25cd0eb532ec.sh"" | ssh -T -D 62608 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:50.367 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:50.368 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:50.388 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:50.389 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:50.389 [info] Retrying connection in 5 seconds...\n2025-10-28 20:36:55.399 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e3c18af3-a278-4f39-8bbf-25cd0eb532ec.sh\n2025-10-28 20:36:55.400 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:36:55.405 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_cef9103d-6151-4dfb-9567-70b03194a0d2.sh"" | ssh -T -D 62609 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:55.405 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_cef9103d-6151-4dfb-9567-70b03194a0d2.sh"" | ssh -T -D 62609 login.haicore.berlin bash --login -c bash\n2025-10-28 20:36:55.405 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:36:55.405 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:36:55.425 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:36:55.426 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:36:55.426 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:00.436 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_cef9103d-6151-4dfb-9567-70b03194a0d2.sh\n2025-10-28 20:37:00.438 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:00.442 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ab781a0c-4ad8-46ab-990f-30ef1a73f1e8.sh"" | ssh -T -D 62610 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:00.442 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ab781a0c-4ad8-46ab-990f-30ef1a73f1e8.sh"" | ssh -T -D 62610 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:00.442 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:00.442 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:00.461 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:00.462 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:00.462 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:05.472 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ab781a0c-4ad8-46ab-990f-30ef1a73f1e8.sh\n2025-10-28 20:37:05.473 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:05.477 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f71c91b3-5e88-4f12-8508-eaaf8dcf8906.sh"" | ssh -T -D 62611 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:05.477 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f71c91b3-5e88-4f12-8508-eaaf8dcf8906.sh"" | ssh -T -D 62611 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:05.477 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:05.477 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:05.499 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:05.499 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:05.499 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:10.510 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f71c91b3-5e88-4f12-8508-eaaf8dcf8906.sh\n2025-10-28 20:37:10.511 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:10.516 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9d961523-2af7-44f9-9052-6322bc642ad9.sh"" | ssh -T -D 62613 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:10.516 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9d961523-2af7-44f9-9052-6322bc642ad9.sh"" | ssh -T -D 62613 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:10.516 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:10.516 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:10.532 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:10.533 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:10.533 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:15.544 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9d961523-2af7-44f9-9052-6322bc642ad9.sh\n2025-10-28 20:37:15.545 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:15.551 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_28b4fcc9-fe26-4f97-b353-e730adb760bb.sh"" | ssh -T -D 62614 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:15.551 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_28b4fcc9-fe26-4f97-b353-e730adb760bb.sh"" | ssh -T -D 62614 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:15.551 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:15.551 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:15.572 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:15.573 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:15.573 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:20.583 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_28b4fcc9-fe26-4f97-b353-e730adb760bb.sh\n2025-10-28 20:37:20.585 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:20.590 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4ef9a73d-9f27-4b1b-9596-e66524349288.sh"" | ssh -T -D 62615 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:20.590 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4ef9a73d-9f27-4b1b-9596-e66524349288.sh"" | ssh -T -D 62615 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:20.590 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:20.590 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:20.610 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:20.611 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:20.611 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:25.615 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4ef9a73d-9f27-4b1b-9596-e66524349288.sh\n2025-10-28 20:37:25.616 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:25.621 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_549b954a-4dbd-4271-8e99-f4ac972b9392.sh"" | ssh -T -D 62617 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:25.621 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_549b954a-4dbd-4271-8e99-f4ac972b9392.sh"" | ssh -T -D 62617 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:25.621 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:25.621 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:25.645 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:25.645 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:25.645 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:30.648 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_549b954a-4dbd-4271-8e99-f4ac972b9392.sh\n2025-10-28 20:37:30.649 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:30.653 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_21b4eed2-ee85-49c7-834a-eaf802618987.sh"" | ssh -T -D 62618 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:30.653 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_21b4eed2-ee85-49c7-834a-eaf802618987.sh"" | ssh -T -D 62618 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:30.653 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:30.653 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:30.672 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:30.673 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:30.673 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:35.682 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_21b4eed2-ee85-49c7-834a-eaf802618987.sh\n2025-10-28 20:37:35.683 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:35.688 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c75cd984-13d4-4091-b497-64b82d69d26c.sh"" | ssh -T -D 62619 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:35.688 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c75cd984-13d4-4091-b497-64b82d69d26c.sh"" | ssh -T -D 62619 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:35.689 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:35.689 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:35.707 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:35.708 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:35.708 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:40.714 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c75cd984-13d4-4091-b497-64b82d69d26c.sh\n2025-10-28 20:37:40.715 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:40.720 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_bb413cb2-8fec-41c8-9561-a083ebf915b2.sh"" | ssh -T -D 62620 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:40.721 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_bb413cb2-8fec-41c8-9561-a083ebf915b2.sh"" | ssh -T -D 62620 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:40.721 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:40.721 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:40.736 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:40.737 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:40.737 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:45.748 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_bb413cb2-8fec-41c8-9561-a083ebf915b2.sh\n2025-10-28 20:37:45.749 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:45.754 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_431bb0c9-bd99-477b-be4b-8704f14c59fe.sh"" | ssh -T -D 62621 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:45.754 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_431bb0c9-bd99-477b-be4b-8704f14c59fe.sh"" | ssh -T -D 62621 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:45.754 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:45.754 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:45.776 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:45.777 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:45.777 [info] Retrying connection in 5 seconds...\n2025-10-28 20:37:46.752 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:37:46.753 [info] [command][6c412f8b-02cf-4d45-8361-640cc92b27bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6c412f8b-02cf-4d45-8361-640cc92b27bf""}\n2025-10-28 20:37:46.753 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3157dd16-262d-4ffd-80c3-487a71bf3395] remote server not configured\n2025-10-28 20:37:46.754 [error] [command][6c412f8b-02cf-4d45-8361-640cc92b27bf] Socket error: Error: read ECONNRESET\n2025-10-28 20:37:46.754 [info] [command][6c412f8b-02cf-4d45-8361-640cc92b27bf] Socket close event received\n2025-10-28 20:37:46.754 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6c412f8b-02cf-4d45-8361-640cc92b27bf] Socket closed without exit code\n2025-10-28 20:37:50.784 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_431bb0c9-bd99-477b-be4b-8704f14c59fe.sh\n2025-10-28 20:37:50.785 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-FMWjGy/socket.sock\n2025-10-28 20:37:50.790 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_89757788-bf78-462b-b10b-56f76b164bc7.sh"" | ssh -T -D 62623 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:50.790 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_89757788-bf78-462b-b10b-56f76b164bc7.sh"" | ssh -T -D 62623 login.haicore.berlin bash --login -c bash\n2025-10-28 20:37:50.790 [info] Started installation script. Waiting for it to finish...\n2025-10-28 20:37:50.790 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-28 20:37:50.809 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-28 20:37:50.810 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:50.810 [error] Failed to connect after 61 attempts: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:37:50.810 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_89757788-bf78-462b-b10b-56f76b164bc7.sh\n2025-10-28 20:37:50.811 [error] Error resolving SSH authority Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-28 20:38:46.765 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:38:46.767 [info] [command][36c42930-b236-41ce-a633-84a52c0a27c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""36c42930-b236-41ce-a633-84a52c0a27c7""}\n2025-10-28 20:38:46.768 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f88655bd-a0ea-4c3d-b382-f861a51dcb7b] remote server not configured\n2025-10-28 20:38:46.768 [error] [command][36c42930-b236-41ce-a633-84a52c0a27c7] Socket error: Error: read ECONNRESET\n2025-10-28 20:38:46.770 [info] [command][36c42930-b236-41ce-a633-84a52c0a27c7] Socket close event received\n2025-10-28 20:38:46.771 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][36c42930-b236-41ce-a633-84a52c0a27c7] Socket closed without exit code\n2025-10-28 20:39:46.771 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:39:46.773 [info] [command][d8049652-4530-45b7-9b3d-bab09c312742] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d8049652-4530-45b7-9b3d-bab09c312742""}\n2025-10-28 20:39:46.774 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5a47b727-767f-4e32-b5d8-992d1a1ee568] remote server not configured\n2025-10-28 20:39:46.774 [error] [command][d8049652-4530-45b7-9b3d-bab09c312742] Socket error: Error: read ECONNRESET\n2025-10-28 20:39:46.774 [info] [command][d8049652-4530-45b7-9b3d-bab09c312742] Socket close event received\n2025-10-28 20:39:46.775 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d8049652-4530-45b7-9b3d-bab09c312742] Socket closed without exit code\n2025-10-28 20:40:46.784 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:40:46.786 [info] [command][c8b0a790-6464-4f52-86e7-19c961ccd680] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c8b0a790-6464-4f52-86e7-19c961ccd680""}\n2025-10-28 20:40:46.787 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][306c2e3e-e1df-4e85-9d66-c67b84ade513] remote server not configured\n2025-10-28 20:40:46.788 [error] [command][c8b0a790-6464-4f52-86e7-19c961ccd680] Socket error: Error: read ECONNRESET\n2025-10-28 20:40:46.788 [info] [command][c8b0a790-6464-4f52-86e7-19c961ccd680] Socket close event received\n2025-10-28 20:40:46.788 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c8b0a790-6464-4f52-86e7-19c961ccd680] Socket closed without exit code\n2025-10-28 20:41:46.797 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:41:46.799 [info] [command][941d5290-23fd-403c-88a8-1b78d1f1ea55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""941d5290-23fd-403c-88a8-1b78d1f1ea55""}\n2025-10-28 20:41:46.800 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fd23e8dd-7366-463d-b523-449489989146] remote server not configured\n2025-10-28 20:41:46.801 [error] [command][941d5290-23fd-403c-88a8-1b78d1f1ea55] Socket error: Error: read ECONNRESET\n2025-10-28 20:41:46.801 [info] [command][941d5290-23fd-403c-88a8-1b78d1f1ea55] Socket close event received\n2025-10-28 20:41:46.801 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][941d5290-23fd-403c-88a8-1b78d1f1ea55] Socket closed without exit code\n2025-10-28 20:42:46.811 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:42:46.814 [info] [command][7fd36fff-6e3d-42b3-8eda-35b87629bd09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7fd36fff-6e3d-42b3-8eda-35b87629bd09""}\n2025-10-28 20:42:46.814 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6ecfc77b-30d6-4f69-8e46-2e24e1391c84] remote server not configured\n2025-10-28 20:42:46.816 [error] [command][7fd36fff-6e3d-42b3-8eda-35b87629bd09] Socket error: Error: read ECONNRESET\n2025-10-28 20:42:46.816 [info] [command][7fd36fff-6e3d-42b3-8eda-35b87629bd09] Socket close event received\n2025-10-28 20:42:46.816 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7fd36fff-6e3d-42b3-8eda-35b87629bd09] Socket closed without exit code\n2025-10-28 20:43:46.825 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:43:46.827 [info] [command][3bfc7ae5-ee27-431f-b8f7-24ae01811b39] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3bfc7ae5-ee27-431f-b8f7-24ae01811b39""}\n2025-10-28 20:43:46.827 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dcb772b1-e176-4c32-a7d2-a8eda96b2812] remote server not configured\n2025-10-28 20:43:46.828 [error] [command][3bfc7ae5-ee27-431f-b8f7-24ae01811b39] Socket error: Error: read ECONNRESET\n2025-10-28 20:43:46.828 [info] [command][3bfc7ae5-ee27-431f-b8f7-24ae01811b39] Socket close event received\n2025-10-28 20:43:46.828 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3bfc7ae5-ee27-431f-b8f7-24ae01811b39] Socket closed without exit code\n2025-10-28 20:44:46.839 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:44:46.841 [info] [command][dc22774e-0bb9-4c16-ab60-4e1387c52076] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dc22774e-0bb9-4c16-ab60-4e1387c52076""}\n2025-10-28 20:44:46.841 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d5825e12-dbfd-4a70-abfc-05faf0716d2d] remote server not configured\n2025-10-28 20:44:46.842 [error] [command][dc22774e-0bb9-4c16-ab60-4e1387c52076] Socket error: Error: read ECONNRESET\n2025-10-28 20:44:46.842 [info] [command][dc22774e-0bb9-4c16-ab60-4e1387c52076] Socket close event received\n2025-10-28 20:44:46.842 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][dc22774e-0bb9-4c16-ab60-4e1387c52076] Socket closed without exit code\n2025-10-28 20:45:46.849 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:45:46.852 [info] [command][4c8b6352-4933-4f2d-b7d7-9377b49d1803] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4c8b6352-4933-4f2d-b7d7-9377b49d1803""}\n2025-10-28 20:45:46.853 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][bb1d012c-3ebb-401e-8c79-00e5d0bc0125] remote server not configured\n2025-10-28 20:45:46.853 [error] [command][4c8b6352-4933-4f2d-b7d7-9377b49d1803] Socket error: Error: read ECONNRESET\n2025-10-28 20:45:46.854 [info] [command][4c8b6352-4933-4f2d-b7d7-9377b49d1803] Socket close event received\n2025-10-28 20:45:46.854 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4c8b6352-4933-4f2d-b7d7-9377b49d1803] Socket closed without exit code\n2025-10-28 20:46:46.865 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:46:46.867 [info] [command][301f7e19-346b-465b-af4b-5a11a5a92de0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""301f7e19-346b-465b-af4b-5a11a5a92de0""}\n2025-10-28 20:46:46.868 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fbdc2463-4f71-4ac7-bd38-31a3e5c316e8] remote server not configured\n2025-10-28 20:46:46.868 [error] [command][301f7e19-346b-465b-af4b-5a11a5a92de0] Socket error: Error: read ECONNRESET\n2025-10-28 20:46:46.869 [info] [command][301f7e19-346b-465b-af4b-5a11a5a92de0] Socket close event received\n2025-10-28 20:46:46.869 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][301f7e19-346b-465b-af4b-5a11a5a92de0] Socket closed without exit code\n2025-10-28 20:47:46.879 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:47:46.881 [info] [command][bcd2fa35-db0c-495a-baac-5e52c64df0e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bcd2fa35-db0c-495a-baac-5e52c64df0e7""}\n2025-10-28 20:47:46.882 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a7851a14-8dbb-48f1-98ab-0cead54df2a8] remote server not configured\n2025-10-28 20:47:46.882 [error] [command][bcd2fa35-db0c-495a-baac-5e52c64df0e7] Socket error: Error: read ECONNRESET\n2025-10-28 20:47:46.882 [info] [command][bcd2fa35-db0c-495a-baac-5e52c64df0e7] Socket close event received\n2025-10-28 20:47:46.883 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][bcd2fa35-db0c-495a-baac-5e52c64df0e7] Socket closed without exit code\n2025-10-28 20:48:46.891 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:48:46.894 [info] [command][eb1a33cd-e210-4bb3-a1cc-9de5d2fe6843] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eb1a33cd-e210-4bb3-a1cc-9de5d2fe6843""}\n2025-10-28 20:48:46.895 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d71662fa-5e37-461a-a6a6-96b541134d54] remote server not configured\n2025-10-28 20:48:46.896 [error] [command][eb1a33cd-e210-4bb3-a1cc-9de5d2fe6843] Socket error: Error: read ECONNRESET\n2025-10-28 20:48:46.896 [info] [command][eb1a33cd-e210-4bb3-a1cc-9de5d2fe6843] Socket close event received\n2025-10-28 20:48:46.896 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][eb1a33cd-e210-4bb3-a1cc-9de5d2fe6843] Socket closed without exit code\n2025-10-28 20:49:46.907 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:49:46.909 [info] [command][673ddf45-caf0-4fe8-8e7c-d4b47bc91ff1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""673ddf45-caf0-4fe8-8e7c-d4b47bc91ff1""}\n2025-10-28 20:49:46.910 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][17e69930-f565-4db2-bf51-8972d5f80c5f] remote server not configured\n2025-10-28 20:49:46.911 [error] [command][673ddf45-caf0-4fe8-8e7c-d4b47bc91ff1] Socket error: Error: read ECONNRESET\n2025-10-28 20:49:46.911 [info] [command][673ddf45-caf0-4fe8-8e7c-d4b47bc91ff1] Socket close event received\n2025-10-28 20:49:46.912 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][673ddf45-caf0-4fe8-8e7c-d4b47bc91ff1] Socket closed without exit code\n2025-10-28 20:50:46.915 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:50:46.917 [info] [command][791c961f-4aa3-4152-933c-a74f1c41247b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""791c961f-4aa3-4152-933c-a74f1c41247b""}\n2025-10-28 20:50:46.918 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d997a706-1059-4536-ac6a-8d4f11d33015] remote server not configured\n2025-10-28 20:50:46.918 [error] [command][791c961f-4aa3-4152-933c-a74f1c41247b] Socket error: Error: read ECONNRESET\n2025-10-28 20:50:46.918 [info] [command][791c961f-4aa3-4152-933c-a74f1c41247b] Socket close event received\n2025-10-28 20:50:46.918 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][791c961f-4aa3-4152-933c-a74f1c41247b] Socket closed without exit code\n2025-10-28 20:51:46.929 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:51:46.931 [info] [command][e1cfe050-b3bd-4d36-8de6-fbf9d0a54307] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e1cfe050-b3bd-4d36-8de6-fbf9d0a54307""}\n2025-10-28 20:51:46.932 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e9f07e6a-dc67-4c57-a2cb-d417d35b811d] remote server not configured\n2025-10-28 20:51:46.932 [error] [command][e1cfe050-b3bd-4d36-8de6-fbf9d0a54307] Socket error: Error: read ECONNRESET\n2025-10-28 20:51:46.933 [info] [command][e1cfe050-b3bd-4d36-8de6-fbf9d0a54307] Socket close event received\n2025-10-28 20:51:46.933 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e1cfe050-b3bd-4d36-8de6-fbf9d0a54307] Socket closed without exit code\n2025-10-28 20:52:46.944 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:52:46.946 [info] [command][7fb98c5c-ae14-4978-b720-3a160e5838d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7fb98c5c-ae14-4978-b720-3a160e5838d6""}\n2025-10-28 20:52:46.947 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f17b8879-97bc-4539-98f5-09d56be43921] remote server not configured\n2025-10-28 20:52:46.947 [error] [command][7fb98c5c-ae14-4978-b720-3a160e5838d6] Socket error: Error: read ECONNRESET\n2025-10-28 20:52:46.948 [info] [command][7fb98c5c-ae14-4978-b720-3a160e5838d6] Socket close event received\n2025-10-28 20:52:46.948 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7fb98c5c-ae14-4978-b720-3a160e5838d6] Socket closed without exit code\n2025-10-28 20:53:46.958 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:53:46.960 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][562d3d02-cd27-47bb-b6ff-eb0df30ee495] remote server not configured\n2025-10-28 20:53:46.961 [info] [command][55398992-4072-4ccd-86bb-e0d16287bd27] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""55398992-4072-4ccd-86bb-e0d16287bd27""}\n2025-10-28 20:53:46.961 [error] [command][55398992-4072-4ccd-86bb-e0d16287bd27] Socket error: Error: read ECONNRESET\n2025-10-28 20:53:46.961 [info] [command][55398992-4072-4ccd-86bb-e0d16287bd27] Socket close event received\n2025-10-28 20:53:46.962 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][55398992-4072-4ccd-86bb-e0d16287bd27] Socket closed without exit code\n2025-10-28 20:54:46.968 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:54:46.971 [info] [command][fed6a7df-f6a4-40d7-ac65-6997ccc28e1f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fed6a7df-f6a4-40d7-ac65-6997ccc28e1f""}\n2025-10-28 20:54:46.971 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4ae645d8-7b01-462a-93d2-d573fdf495bb] remote server not configured\n2025-10-28 20:54:46.972 [error] [command][fed6a7df-f6a4-40d7-ac65-6997ccc28e1f] Socket error: Error: read ECONNRESET\n2025-10-28 20:54:46.972 [info] [command][fed6a7df-f6a4-40d7-ac65-6997ccc28e1f] Socket close event received\n2025-10-28 20:54:46.973 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fed6a7df-f6a4-40d7-ac65-6997ccc28e1f] Socket closed without exit code\n2025-10-28 20:55:46.983 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:55:46.985 [info] [command][7d853b57-f150-4b52-8339-64ca1f838157] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7d853b57-f150-4b52-8339-64ca1f838157""}\n2025-10-28 20:55:46.986 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dc4afb0d-23b8-44b0-96cf-9cbb2d7f6096] remote server not configured\n2025-10-28 20:55:46.986 [error] [command][7d853b57-f150-4b52-8339-64ca1f838157] Socket error: Error: read ECONNRESET\n2025-10-28 20:55:46.986 [info] [command][7d853b57-f150-4b52-8339-64ca1f838157] Socket close event received\n2025-10-28 20:55:46.987 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7d853b57-f150-4b52-8339-64ca1f838157] Socket closed without exit code\n2025-10-28 20:56:46.994 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:56:46.996 [info] [command][eb858ae7-a105-4981-9918-73925baf29bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eb858ae7-a105-4981-9918-73925baf29bd""}\n2025-10-28 20:56:46.997 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][13a6086f-442f-4fc7-a1ea-6b013814821c] remote server not configured\n2025-10-28 20:56:46.998 [error] [command][eb858ae7-a105-4981-9918-73925baf29bd] Socket error: Error: read ECONNRESET\n2025-10-28 20:56:46.998 [info] [command][eb858ae7-a105-4981-9918-73925baf29bd] Socket close event received\n2025-10-28 20:56:46.998 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][eb858ae7-a105-4981-9918-73925baf29bd] Socket closed without exit code\n2025-10-28 20:57:47.009 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:57:47.011 [info] [command][2cee1032-180f-4487-97e4-7ef620d2e889] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2cee1032-180f-4487-97e4-7ef620d2e889""}\n2025-10-28 20:57:47.012 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][abcb1273-3de5-494f-a6e9-9a5344d0e409] remote server not configured\n2025-10-28 20:57:47.012 [error] [command][2cee1032-180f-4487-97e4-7ef620d2e889] Socket error: Error: read ECONNRESET\n2025-10-28 20:57:47.013 [info] [command][2cee1032-180f-4487-97e4-7ef620d2e889] Socket close event received\n2025-10-28 20:57:47.013 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2cee1032-180f-4487-97e4-7ef620d2e889] Socket closed without exit code\n2025-10-28 20:58:47.024 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:58:47.026 [info] [command][13110b15-52d2-4e6c-868f-abed29f4112c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""13110b15-52d2-4e6c-868f-abed29f4112c""}\n2025-10-28 20:58:47.027 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][53fb32bb-e8d7-4c77-8bc8-bfab02b1b939] remote server not configured\n2025-10-28 20:58:47.028 [error] [command][13110b15-52d2-4e6c-868f-abed29f4112c] Socket error: Error: read ECONNRESET\n2025-10-28 20:58:47.028 [info] [command][13110b15-52d2-4e6c-868f-abed29f4112c] Socket close event received\n2025-10-28 20:58:47.028 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][13110b15-52d2-4e6c-868f-abed29f4112c] Socket closed without exit code\n2025-10-28 20:59:47.037 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 20:59:47.039 [info] [command][6315a415-17e1-4a9a-ab16-6ef0634710a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6315a415-17e1-4a9a-ab16-6ef0634710a6""}\n2025-10-28 20:59:47.039 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cc3e79bb-21e0-40e8-a9ba-38a118d4b57d] remote server not configured\n2025-10-28 20:59:47.040 [error] [command][6315a415-17e1-4a9a-ab16-6ef0634710a6] Socket error: Error: read ECONNRESET\n2025-10-28 20:59:47.040 [info] [command][6315a415-17e1-4a9a-ab16-6ef0634710a6] Socket close event received\n2025-10-28 20:59:47.040 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6315a415-17e1-4a9a-ab16-6ef0634710a6] Socket closed without exit code\n2025-10-28 21:00:47.051 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:00:47.053 [info] [command][aeaebbda-8c15-46b4-8a38-07397dd0e7a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""aeaebbda-8c15-46b4-8a38-07397dd0e7a7""}\n2025-10-28 21:00:47.054 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a9da7d5f-738d-4a52-adec-3562def7ab89] remote server not configured\n2025-10-28 21:00:47.054 [error] [command][aeaebbda-8c15-46b4-8a38-07397dd0e7a7] Socket error: Error: read ECONNRESET\n2025-10-28 21:00:47.054 [info] [command][aeaebbda-8c15-46b4-8a38-07397dd0e7a7] Socket close event received\n2025-10-28 21:00:47.055 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][aeaebbda-8c15-46b4-8a38-07397dd0e7a7] Socket closed without exit code\n2025-10-28 21:01:47.065 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:01:47.067 [info] [command][773f3a99-a9dc-4fe0-aaf5-5e15a2f21123] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""773f3a99-a9dc-4fe0-aaf5-5e15a2f21123""}\n2025-10-28 21:01:47.068 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f9e2eab2-e7a5-43be-b2f4-3787e807a2bb] remote server not configured\n2025-10-28 21:01:47.068 [error] [command][773f3a99-a9dc-4fe0-aaf5-5e15a2f21123] Socket error: Error: read ECONNRESET\n2025-10-28 21:01:47.069 [info] [command][773f3a99-a9dc-4fe0-aaf5-5e15a2f21123] Socket close event received\n2025-10-28 21:01:47.069 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][773f3a99-a9dc-4fe0-aaf5-5e15a2f21123] Socket closed without exit code\n2025-10-28 21:02:47.080 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:02:47.082 [info] [command][5667e462-c8c6-4632-98cd-2a53bf1b063d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5667e462-c8c6-4632-98cd-2a53bf1b063d""}\n2025-10-28 21:02:47.082 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c18fb71a-0e67-44df-a203-7b3ccf3656d8] remote server not configured\n2025-10-28 21:02:47.083 [error] [command][5667e462-c8c6-4632-98cd-2a53bf1b063d] Socket error: Error: read ECONNRESET\n2025-10-28 21:02:47.083 [info] [command][5667e462-c8c6-4632-98cd-2a53bf1b063d] Socket close event received\n2025-10-28 21:02:47.084 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5667e462-c8c6-4632-98cd-2a53bf1b063d] Socket closed without exit code\n2025-10-28 21:03:47.089 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:03:47.091 [info] [command][24f88ef7-e380-4fe9-a7c6-d9bb8f2d4e4c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""24f88ef7-e380-4fe9-a7c6-d9bb8f2d4e4c""}\n2025-10-28 21:03:47.092 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][23ee4f2d-293c-41e6-af27-421b3aed52a0] remote server not configured\n2025-10-28 21:03:47.092 [error] [command][24f88ef7-e380-4fe9-a7c6-d9bb8f2d4e4c] Socket error: Error: read ECONNRESET\n2025-10-28 21:03:47.092 [info] [command][24f88ef7-e380-4fe9-a7c6-d9bb8f2d4e4c] Socket close event received\n2025-10-28 21:03:47.093 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][24f88ef7-e380-4fe9-a7c6-d9bb8f2d4e4c] Socket closed without exit code\n2025-10-28 21:04:47.101 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:04:47.103 [info] [command][c9b72df4-f268-40ab-80c6-78f89b4f930e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c9b72df4-f268-40ab-80c6-78f89b4f930e""}\n2025-10-28 21:04:47.103 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][54849ae7-bca7-4daf-860e-19a275f94d93] remote server not configured\n2025-10-28 21:04:47.104 [error] [command][c9b72df4-f268-40ab-80c6-78f89b4f930e] Socket error: Error: read ECONNRESET\n2025-10-28 21:04:47.104 [info] [command][c9b72df4-f268-40ab-80c6-78f89b4f930e] Socket close event received\n2025-10-28 21:04:47.104 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c9b72df4-f268-40ab-80c6-78f89b4f930e] Socket closed without exit code\n2025-10-28 21:05:47.115 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:05:47.117 [info] [command][4651014e-7c23-4d56-876e-2bfd8902c4fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4651014e-7c23-4d56-876e-2bfd8902c4fe""}\n2025-10-28 21:05:47.118 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dc532ec3-76be-46ed-9e5c-98d6aa41609e] remote server not configured\n2025-10-28 21:05:47.119 [error] [command][4651014e-7c23-4d56-876e-2bfd8902c4fe] Socket error: Error: read ECONNRESET\n2025-10-28 21:05:47.120 [info] [command][4651014e-7c23-4d56-876e-2bfd8902c4fe] Socket close event received\n2025-10-28 21:05:47.120 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4651014e-7c23-4d56-876e-2bfd8902c4fe] Socket closed without exit code\n2025-10-28 21:06:47.128 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:06:47.130 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][369cea38-7ee4-4ca5-93e2-5f3e67670315] remote server not configured\n2025-10-28 21:06:47.130 [info] [command][3f0cb73b-9726-4891-ad11-5742ac62f6cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3f0cb73b-9726-4891-ad11-5742ac62f6cb""}\n2025-10-28 21:06:47.131 [error] [command][3f0cb73b-9726-4891-ad11-5742ac62f6cb] Socket error: Error: read ECONNRESET\n2025-10-28 21:06:47.131 [info] [command][3f0cb73b-9726-4891-ad11-5742ac62f6cb] Socket close event received\n2025-10-28 21:06:47.131 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3f0cb73b-9726-4891-ad11-5742ac62f6cb] Socket closed without exit code\n2025-10-28 21:07:47.124 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:07:47.127 [info] [command][02e58fd5-b234-4cb7-82cd-0276a98de7de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""02e58fd5-b234-4cb7-82cd-0276a98de7de""}\n2025-10-28 21:07:47.128 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][30ff5c6c-69e5-4e8c-abc8-7659cdf9bf1a] remote server not configured\n2025-10-28 21:07:47.129 [error] [command][02e58fd5-b234-4cb7-82cd-0276a98de7de] Socket error: Error: read ECONNRESET\n2025-10-28 21:07:47.129 [info] [command][02e58fd5-b234-4cb7-82cd-0276a98de7de] Socket close event received\n2025-10-28 21:07:47.129 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][02e58fd5-b234-4cb7-82cd-0276a98de7de] Socket closed without exit code\n2025-10-28 21:08:47.134 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:08:47.137 [info] [command][cf09f44c-25a5-411a-af0e-ea1f619f7f05] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cf09f44c-25a5-411a-af0e-ea1f619f7f05""}\n2025-10-28 21:08:47.137 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2818f91e-34aa-4f30-bdee-2c490a465cfa] remote server not configured\n2025-10-28 21:08:47.138 [error] [command][cf09f44c-25a5-411a-af0e-ea1f619f7f05] Socket error: Error: read ECONNRESET\n2025-10-28 21:08:47.139 [info] [command][cf09f44c-25a5-411a-af0e-ea1f619f7f05] Socket close event received\n2025-10-28 21:08:47.139 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cf09f44c-25a5-411a-af0e-ea1f619f7f05] Socket closed without exit code\n2025-10-28 21:09:47.149 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:09:47.151 [info] [command][644825d4-4e21-481f-81a4-3f0f2bf0cddb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""644825d4-4e21-481f-81a4-3f0f2bf0cddb""}\n2025-10-28 21:09:47.152 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d49618de-f4ef-493d-b37e-0173ec645a01] remote server not configured\n2025-10-28 21:09:47.153 [error] [command][644825d4-4e21-481f-81a4-3f0f2bf0cddb] Socket error: Error: read ECONNRESET\n2025-10-28 21:09:47.153 [info] [command][644825d4-4e21-481f-81a4-3f0f2bf0cddb] Socket close event received\n2025-10-28 21:09:47.153 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][644825d4-4e21-481f-81a4-3f0f2bf0cddb] Socket closed without exit code\n2025-10-28 21:10:47.158 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:10:47.161 [info] [command][4169cf14-e256-4be4-859e-52577c6d5ae9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4169cf14-e256-4be4-859e-52577c6d5ae9""}\n2025-10-28 21:10:47.162 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5f54b0ee-ff91-460b-b778-3296422cd66f] remote server not configured\n2025-10-28 21:10:47.162 [error] [command][4169cf14-e256-4be4-859e-52577c6d5ae9] Socket error: Error: read ECONNRESET\n2025-10-28 21:10:47.163 [info] [command][4169cf14-e256-4be4-859e-52577c6d5ae9] Socket close event received\n2025-10-28 21:10:47.163 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4169cf14-e256-4be4-859e-52577c6d5ae9] Socket closed without exit code\n2025-10-28 21:11:47.174 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:11:47.177 [info] [command][5f6d43aa-6bcb-4739-98b4-8c3bd53e696a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5f6d43aa-6bcb-4739-98b4-8c3bd53e696a""}\n2025-10-28 21:11:47.177 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8d26f11f-6b91-4210-b0b5-46217da90502] remote server not configured\n2025-10-28 21:11:47.178 [error] [command][5f6d43aa-6bcb-4739-98b4-8c3bd53e696a] Socket error: Error: read ECONNRESET\n2025-10-28 21:11:47.178 [info] [command][5f6d43aa-6bcb-4739-98b4-8c3bd53e696a] Socket close event received\n2025-10-28 21:11:47.179 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5f6d43aa-6bcb-4739-98b4-8c3bd53e696a] Socket closed without exit code\n2025-10-28 21:12:47.189 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:12:47.191 [info] [command][020dd97a-78ae-4c49-9620-db86a89d73a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""020dd97a-78ae-4c49-9620-db86a89d73a0""}\n2025-10-28 21:12:47.191 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][afcdf260-c2a3-4b9f-b1a0-7905871d91fd] remote server not configured\n2025-10-28 21:12:47.192 [error] [command][020dd97a-78ae-4c49-9620-db86a89d73a0] Socket error: Error: read ECONNRESET\n2025-10-28 21:12:47.193 [info] [command][020dd97a-78ae-4c49-9620-db86a89d73a0] Socket close event received\n2025-10-28 21:12:47.193 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][020dd97a-78ae-4c49-9620-db86a89d73a0] Socket closed without exit code\n2025-10-28 21:13:47.203 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:13:47.205 [info] [command][3a07607b-a158-423e-a5c0-453e8dd01508] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3a07607b-a158-423e-a5c0-453e8dd01508""}\n2025-10-28 21:13:47.206 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][94b5776c-11de-43c2-9518-11a5c7e0a669] remote server not configured\n2025-10-28 21:13:47.206 [error] [command][3a07607b-a158-423e-a5c0-453e8dd01508] Socket error: Error: read ECONNRESET\n2025-10-28 21:13:47.207 [info] [command][3a07607b-a158-423e-a5c0-453e8dd01508] Socket close event received\n2025-10-28 21:13:47.207 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3a07607b-a158-423e-a5c0-453e8dd01508] Socket closed without exit code\n2025-10-28 21:14:47.211 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:14:47.213 [info] [command][281a26d3-5ec9-45bf-ae08-481eb3e37339] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""281a26d3-5ec9-45bf-ae08-481eb3e37339""}\n2025-10-28 21:14:47.213 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4482da49-0a49-4329-a54f-c713676ba81e] remote server not configured\n2025-10-28 21:14:47.214 [error] [command][281a26d3-5ec9-45bf-ae08-481eb3e37339] Socket error: Error: read ECONNRESET\n2025-10-28 21:14:47.214 [info] [command][281a26d3-5ec9-45bf-ae08-481eb3e37339] Socket close event received\n2025-10-28 21:14:47.215 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][281a26d3-5ec9-45bf-ae08-481eb3e37339] Socket closed without exit code\n2025-10-28 21:15:47.223 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:15:47.225 [info] [command][725bce61-9283-4e7d-9507-9fad6f28b23f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""725bce61-9283-4e7d-9507-9fad6f28b23f""}\n2025-10-28 21:15:47.225 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f405d3a4-f9ba-4dd8-99a4-056665ce5cd2] remote server not configured\n2025-10-28 21:15:47.226 [error] [command][725bce61-9283-4e7d-9507-9fad6f28b23f] Socket error: Error: read ECONNRESET\n2025-10-28 21:15:47.226 [info] [command][725bce61-9283-4e7d-9507-9fad6f28b23f] Socket close event received\n2025-10-28 21:15:47.226 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][725bce61-9283-4e7d-9507-9fad6f28b23f] Socket closed without exit code\n2025-10-28 21:16:47.237 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:16:47.238 [info] [command][7f64f0fd-2159-49f0-89f3-6464d5a3d6f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7f64f0fd-2159-49f0-89f3-6464d5a3d6f8""}\n2025-10-28 21:16:47.239 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d97dd4f6-b9cb-45a7-8e46-c8e9718bf4ed] remote server not configured\n2025-10-28 21:16:47.240 [error] [command][7f64f0fd-2159-49f0-89f3-6464d5a3d6f8] Socket error: Error: read ECONNRESET\n2025-10-28 21:16:47.240 [info] [command][7f64f0fd-2159-49f0-89f3-6464d5a3d6f8] Socket close event received\n2025-10-28 21:16:47.240 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7f64f0fd-2159-49f0-89f3-6464d5a3d6f8] Socket closed without exit code\n2025-10-28 21:17:47.251 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:17:47.253 [info] [command][d7a6c86b-af71-4b42-a68f-66d6fe538ba8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d7a6c86b-af71-4b42-a68f-66d6fe538ba8""}\n2025-10-28 21:17:47.253 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f25c900e-bdea-4868-abff-67acaa6ef074] remote server not configured\n2025-10-28 21:17:47.254 [error] [command][d7a6c86b-af71-4b42-a68f-66d6fe538ba8] Socket error: Error: read ECONNRESET\n2025-10-28 21:17:47.254 [info] [command][d7a6c86b-af71-4b42-a68f-66d6fe538ba8] Socket close event received\n2025-10-28 21:17:47.254 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d7a6c86b-af71-4b42-a68f-66d6fe538ba8] Socket closed without exit code\n2025-10-28 21:18:47.265 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:18:47.266 [info] [command][7580d76c-85b8-4aa4-8eb3-2914e4dee47f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7580d76c-85b8-4aa4-8eb3-2914e4dee47f""}\n2025-10-28 21:18:47.267 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d74017bd-3395-4430-8938-63a68518f02e] remote server not configured\n2025-10-28 21:18:47.268 [error] [command][7580d76c-85b8-4aa4-8eb3-2914e4dee47f] Socket error: Error: read ECONNRESET\n2025-10-28 21:18:47.268 [info] [command][7580d76c-85b8-4aa4-8eb3-2914e4dee47f] Socket close event received\n2025-10-28 21:18:47.268 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7580d76c-85b8-4aa4-8eb3-2914e4dee47f] Socket closed without exit code\n2025-10-28 21:19:47.278 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:19:47.281 [info] [command][0d9d45a2-09c2-433d-b3d2-c1e5438a44dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0d9d45a2-09c2-433d-b3d2-c1e5438a44dc""}\n2025-10-28 21:19:47.282 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][419a59ef-0687-4895-8649-3c4792f3f7f7] remote server not configured\n2025-10-28 21:19:47.282 [error] [command][0d9d45a2-09c2-433d-b3d2-c1e5438a44dc] Socket error: Error: read ECONNRESET\n2025-10-28 21:19:47.283 [info] [command][0d9d45a2-09c2-433d-b3d2-c1e5438a44dc] Socket close event received\n2025-10-28 21:19:47.283 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0d9d45a2-09c2-433d-b3d2-c1e5438a44dc] Socket closed without exit code\n2025-10-28 21:20:47.294 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:20:47.297 [info] [command][538168ea-b064-45a9-9d99-b557bb673190] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""538168ea-b064-45a9-9d99-b557bb673190""}\n2025-10-28 21:20:47.298 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a50c5c66-70e4-484f-b14c-7677bcdf2174] remote server not configured\n2025-10-28 21:20:47.298 [error] [command][538168ea-b064-45a9-9d99-b557bb673190] Socket error: Error: read ECONNRESET\n2025-10-28 21:20:47.298 [info] [command][538168ea-b064-45a9-9d99-b557bb673190] Socket close event received\n2025-10-28 21:20:47.299 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][538168ea-b064-45a9-9d99-b557bb673190] Socket closed without exit code\n2025-10-28 21:21:47.307 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:21:47.309 [info] [command][29a5ac68-fbbc-46cd-8319-1eb6796760fc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""29a5ac68-fbbc-46cd-8319-1eb6796760fc""}\n2025-10-28 21:21:47.310 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cbe8aea2-2e3c-4585-bd95-61160f3df764] remote server not configured\n2025-10-28 21:21:47.311 [error] [command][29a5ac68-fbbc-46cd-8319-1eb6796760fc] Socket error: Error: read ECONNRESET\n2025-10-28 21:21:47.311 [info] [command][29a5ac68-fbbc-46cd-8319-1eb6796760fc] Socket close event received\n2025-10-28 21:21:47.312 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][29a5ac68-fbbc-46cd-8319-1eb6796760fc] Socket closed without exit code\n2025-10-28 21:22:47.319 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:22:47.322 [info] [command][6f699d57-daa6-4e43-84fd-a0099e2cc414] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6f699d57-daa6-4e43-84fd-a0099e2cc414""}\n2025-10-28 21:22:47.323 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d34b9701-af9d-472e-a1bb-5d40bea49488] remote server not configured\n2025-10-28 21:22:47.324 [error] [command][6f699d57-daa6-4e43-84fd-a0099e2cc414] Socket error: Error: read ECONNRESET\n2025-10-28 21:22:47.324 [info] [command][6f699d57-daa6-4e43-84fd-a0099e2cc414] Socket close event received\n2025-10-28 21:22:47.325 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6f699d57-daa6-4e43-84fd-a0099e2cc414] Socket closed without exit code\n2025-10-28 21:23:47.326 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:23:47.329 [info] [command][26f194f4-7275-4906-a1df-ac725ec4bdc4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""26f194f4-7275-4906-a1df-ac725ec4bdc4""}\n2025-10-28 21:23:47.330 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][38761be7-c693-4f49-9baf-1513e5867696] remote server not configured\n2025-10-28 21:23:47.330 [error] [command][26f194f4-7275-4906-a1df-ac725ec4bdc4] Socket error: Error: read ECONNRESET\n2025-10-28 21:23:47.330 [info] [command][26f194f4-7275-4906-a1df-ac725ec4bdc4] Socket close event received\n2025-10-28 21:23:47.331 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][26f194f4-7275-4906-a1df-ac725ec4bdc4] Socket closed without exit code\n2025-10-28 21:24:47.336 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:24:47.337 [info] [command][7e586638-edd1-4157-be01-3f2600d4ce72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7e586638-edd1-4157-be01-3f2600d4ce72""}\n2025-10-28 21:24:47.338 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a185b8eb-9509-4c1e-8f70-cdcb18299b7a] remote server not configured\n2025-10-28 21:24:47.339 [error] [command][7e586638-edd1-4157-be01-3f2600d4ce72] Socket error: Error: read ECONNRESET\n2025-10-28 21:24:47.339 [info] [command][7e586638-edd1-4157-be01-3f2600d4ce72] Socket close event received\n2025-10-28 21:24:47.340 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7e586638-edd1-4157-be01-3f2600d4ce72] Socket closed without exit code\n2025-10-28 21:25:47.348 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:25:47.349 [info] [command][256858f4-0cb5-4b35-acdf-cc7605c1cd2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""256858f4-0cb5-4b35-acdf-cc7605c1cd2a""}\n2025-10-28 21:25:47.350 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][620f3273-13d3-4bdb-8313-2312827cb32d] remote server not configured\n2025-10-28 21:25:47.350 [error] [command][256858f4-0cb5-4b35-acdf-cc7605c1cd2a] Socket error: Error: read ECONNRESET\n2025-10-28 21:25:47.351 [info] [command][256858f4-0cb5-4b35-acdf-cc7605c1cd2a] Socket close event received\n2025-10-28 21:25:47.351 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][256858f4-0cb5-4b35-acdf-cc7605c1cd2a] Socket closed without exit code\n2025-10-28 21:26:47.352 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:26:47.354 [info] [command][90fac6ce-2c58-4ca6-813b-282a5fa365ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""90fac6ce-2c58-4ca6-813b-282a5fa365ae""}\n2025-10-28 21:26:47.354 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d7a2c617-2dde-4a8f-ba14-972062deb6a2] remote server not configured\n2025-10-28 21:26:47.355 [error] [command][90fac6ce-2c58-4ca6-813b-282a5fa365ae] Socket error: Error: read ECONNRESET\n2025-10-28 21:26:47.355 [info] [command][90fac6ce-2c58-4ca6-813b-282a5fa365ae] Socket close event received\n2025-10-28 21:26:47.355 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][90fac6ce-2c58-4ca6-813b-282a5fa365ae] Socket closed without exit code\n2025-10-28 21:27:47.366 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:27:47.367 [info] [command][68b0bc48-04ea-49d4-892b-d946d40a8d2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""68b0bc48-04ea-49d4-892b-d946d40a8d2b""}\n2025-10-28 21:27:47.368 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][28da3df6-6125-4c4c-a6e9-9f929adce586] remote server not configured\n2025-10-28 21:27:47.369 [error] [command][68b0bc48-04ea-49d4-892b-d946d40a8d2b] Socket error: Error: read ECONNRESET\n2025-10-28 21:27:47.369 [info] [command][68b0bc48-04ea-49d4-892b-d946d40a8d2b] Socket close event received\n2025-10-28 21:27:47.369 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][68b0bc48-04ea-49d4-892b-d946d40a8d2b] Socket closed without exit code\n2025-10-28 21:28:47.373 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:28:47.376 [info] [command][c522b801-db0e-4b69-8bf5-ed78fd603ee1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c522b801-db0e-4b69-8bf5-ed78fd603ee1""}\n2025-10-28 21:28:47.377 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7da8889e-40af-4301-9bdd-daab444423d8] remote server not configured\n2025-10-28 21:28:47.377 [error] [command][c522b801-db0e-4b69-8bf5-ed78fd603ee1] Socket error: Error: read ECONNRESET\n2025-10-28 21:28:47.377 [info] [command][c522b801-db0e-4b69-8bf5-ed78fd603ee1] Socket close event received\n2025-10-28 21:28:47.378 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c522b801-db0e-4b69-8bf5-ed78fd603ee1] Socket closed without exit code\n2025-10-28 21:29:47.388 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:29:47.389 [info] [command][622a1475-5ec9-4558-acd0-27bbb0a1e303] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""622a1475-5ec9-4558-acd0-27bbb0a1e303""}\n2025-10-28 21:29:47.390 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0b78e40e-a21b-4d89-9b6b-55814653e67d] remote server not configured\n2025-10-28 21:29:47.390 [error] [command][622a1475-5ec9-4558-acd0-27bbb0a1e303] Socket error: Error: read ECONNRESET\n2025-10-28 21:29:47.391 [info] [command][622a1475-5ec9-4558-acd0-27bbb0a1e303] Socket close event received\n2025-10-28 21:29:47.391 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][622a1475-5ec9-4558-acd0-27bbb0a1e303] Socket closed without exit code\n2025-10-28 21:30:47.397 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:30:47.399 [info] [command][fea5da6a-dac3-4b57-9a09-73fb67b6960d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fea5da6a-dac3-4b57-9a09-73fb67b6960d""}\n2025-10-28 21:30:47.400 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1a3047b7-1ed1-4fc1-a2f8-428a4b70dbf2] remote server not configured\n2025-10-28 21:30:47.400 [error] [command][fea5da6a-dac3-4b57-9a09-73fb67b6960d] Socket error: Error: read ECONNRESET\n2025-10-28 21:30:47.401 [info] [command][fea5da6a-dac3-4b57-9a09-73fb67b6960d] Socket close event received\n2025-10-28 21:30:47.401 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fea5da6a-dac3-4b57-9a09-73fb67b6960d] Socket closed without exit code\n2025-10-28 21:31:47.406 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:31:47.409 [info] [command][dd111d9d-8c26-44e6-ba7a-bec2e73f41cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dd111d9d-8c26-44e6-ba7a-bec2e73f41cb""}\n2025-10-28 21:31:47.410 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cb37f024-e276-4cf5-9f74-2a93f5196623] remote server not configured\n2025-10-28 21:31:47.410 [error] [command][dd111d9d-8c26-44e6-ba7a-bec2e73f41cb] Socket error: Error: read ECONNRESET\n2025-10-28 21:31:47.410 [info] [command][dd111d9d-8c26-44e6-ba7a-bec2e73f41cb] Socket close event received\n2025-10-28 21:31:47.410 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][dd111d9d-8c26-44e6-ba7a-bec2e73f41cb] Socket closed without exit code\n2025-10-28 21:32:47.421 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:32:47.423 [info] [command][c81c598b-8c64-4d7c-a030-7dd65460d856] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c81c598b-8c64-4d7c-a030-7dd65460d856""}\n2025-10-28 21:32:47.423 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][392c9fa6-baa6-48ea-9382-eff219353b57] remote server not configured\n2025-10-28 21:32:47.424 [error] [command][c81c598b-8c64-4d7c-a030-7dd65460d856] Socket error: Error: read ECONNRESET\n2025-10-28 21:32:47.424 [info] [command][c81c598b-8c64-4d7c-a030-7dd65460d856] Socket close event received\n2025-10-28 21:32:47.424 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c81c598b-8c64-4d7c-a030-7dd65460d856] Socket closed without exit code\n2025-10-28 21:33:47.429 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:33:47.431 [info] [command][ece5c686-0885-4d02-a219-3fdac3a56f90] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ece5c686-0885-4d02-a219-3fdac3a56f90""}\n2025-10-28 21:33:47.432 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d2e5d6a1-2d44-4837-a0c1-0b9a3a2e6185] remote server not configured\n2025-10-28 21:33:47.432 [error] [command][ece5c686-0885-4d02-a219-3fdac3a56f90] Socket error: Error: read ECONNRESET\n2025-10-28 21:33:47.433 [info] [command][ece5c686-0885-4d02-a219-3fdac3a56f90] Socket close event received\n2025-10-28 21:33:47.433 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ece5c686-0885-4d02-a219-3fdac3a56f90] Socket closed without exit code\n2025-10-28 21:34:47.443 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:34:47.446 [info] [command][addd7ee5-1076-445e-b2fa-90d25c4e099c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""addd7ee5-1076-445e-b2fa-90d25c4e099c""}\n2025-10-28 21:34:47.447 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][258163ee-7b4b-4e37-b465-a1accc889c8e] remote server not configured\n2025-10-28 21:34:47.447 [error] [command][addd7ee5-1076-445e-b2fa-90d25c4e099c] Socket error: Error: read ECONNRESET\n2025-10-28 21:34:47.448 [info] [command][addd7ee5-1076-445e-b2fa-90d25c4e099c] Socket close event received\n2025-10-28 21:34:47.448 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][addd7ee5-1076-445e-b2fa-90d25c4e099c] Socket closed without exit code\n2025-10-28 21:35:47.455 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:35:47.457 [info] [command][29527518-1402-42ab-a9ea-308e6a1a40c3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""29527518-1402-42ab-a9ea-308e6a1a40c3""}\n2025-10-28 21:35:47.458 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0ab26885-5804-40cb-991c-35d4a4b9abeb] remote server not configured\n2025-10-28 21:35:47.458 [error] [command][29527518-1402-42ab-a9ea-308e6a1a40c3] Socket error: Error: read ECONNRESET\n2025-10-28 21:35:47.459 [info] [command][29527518-1402-42ab-a9ea-308e6a1a40c3] Socket close event received\n2025-10-28 21:35:47.459 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][29527518-1402-42ab-a9ea-308e6a1a40c3] Socket closed without exit code\n2025-10-28 21:36:47.461 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:36:47.463 [info] [command][f2f7c58d-08b4-4863-afd9-03b8810573e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f2f7c58d-08b4-4863-afd9-03b8810573e2""}\n2025-10-28 21:36:47.464 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0f981c1e-dc78-4118-a189-c03de73a41e5] remote server not configured\n2025-10-28 21:36:47.464 [error] [command][f2f7c58d-08b4-4863-afd9-03b8810573e2] Socket error: Error: read ECONNRESET\n2025-10-28 21:36:47.465 [info] [command][f2f7c58d-08b4-4863-afd9-03b8810573e2] Socket close event received\n2025-10-28 21:36:47.465 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f2f7c58d-08b4-4863-afd9-03b8810573e2] Socket closed without exit code\n2025-10-28 21:37:47.474 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:37:47.475 [info] [command][2f269911-fb87-4d1f-869e-01254d823a30] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2f269911-fb87-4d1f-869e-01254d823a30""}\n2025-10-28 21:37:47.476 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][868fca83-d61b-40aa-9b95-ce6c1cb476b8] remote server not configured\n2025-10-28 21:37:47.476 [error] [command][2f269911-fb87-4d1f-869e-01254d823a30] Socket error: Error: read ECONNRESET\n2025-10-28 21:37:47.477 [info] [command][2f269911-fb87-4d1f-869e-01254d823a30] Socket close event received\n2025-10-28 21:37:47.477 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2f269911-fb87-4d1f-869e-01254d823a30] Socket closed without exit code\n2025-10-28 21:38:47.488 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:38:47.491 [info] [command][94712488-d4c4-4262-8067-7b2437f3f2a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""94712488-d4c4-4262-8067-7b2437f3f2a6""}\n2025-10-28 21:38:47.491 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][726fb5c7-fa44-40c0-928f-da076af27c54] remote server not configured\n2025-10-28 21:38:47.492 [error] [command][94712488-d4c4-4262-8067-7b2437f3f2a6] Socket error: Error: read ECONNRESET\n2025-10-28 21:38:47.492 [info] [command][94712488-d4c4-4262-8067-7b2437f3f2a6] Socket close event received\n2025-10-28 21:38:47.492 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][94712488-d4c4-4262-8067-7b2437f3f2a6] Socket closed without exit code\n2025-10-28 21:39:47.503 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:39:47.505 [info] [command][dd468a75-caba-4644-b075-cc5c82ae25ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dd468a75-caba-4644-b075-cc5c82ae25ae""}\n2025-10-28 21:39:47.505 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][40a970b6-dc5a-4720-b761-a131958a8bf4] remote server not configured\n2025-10-28 21:39:47.506 [error] [command][dd468a75-caba-4644-b075-cc5c82ae25ae] Socket error: Error: read ECONNRESET\n2025-10-28 21:39:47.506 [info] [command][dd468a75-caba-4644-b075-cc5c82ae25ae] Socket close event received\n2025-10-28 21:39:47.507 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][dd468a75-caba-4644-b075-cc5c82ae25ae] Socket closed without exit code\n2025-10-28 21:40:47.508 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:40:47.510 [info] [command][fbda56b1-7aa7-405c-8128-aaf2a1045a85] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fbda56b1-7aa7-405c-8128-aaf2a1045a85""}\n2025-10-28 21:40:47.511 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][514ac8da-313c-44ee-9a0e-01b80e756a36] remote server not configured\n2025-10-28 21:40:47.511 [error] [command][fbda56b1-7aa7-405c-8128-aaf2a1045a85] Socket error: Error: read ECONNRESET\n2025-10-28 21:40:47.511 [info] [command][fbda56b1-7aa7-405c-8128-aaf2a1045a85] Socket close event received\n2025-10-28 21:40:47.511 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fbda56b1-7aa7-405c-8128-aaf2a1045a85] Socket closed without exit code\n2025-10-28 21:41:47.518 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:41:47.520 [info] [command][d33a4895-7e9b-4a42-a2e2-7374675e5d22] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d33a4895-7e9b-4a42-a2e2-7374675e5d22""}\n2025-10-28 21:41:47.521 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a7dc0d9a-8027-4ffb-8d12-4113e4ce9621] remote server not configured\n2025-10-28 21:41:47.522 [error] [command][d33a4895-7e9b-4a42-a2e2-7374675e5d22] Socket error: Error: read ECONNRESET\n2025-10-28 21:41:47.522 [info] [command][d33a4895-7e9b-4a42-a2e2-7374675e5d22] Socket close event received\n2025-10-28 21:41:47.522 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d33a4895-7e9b-4a42-a2e2-7374675e5d22] Socket closed without exit code\n2025-10-28 21:42:47.533 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:42:47.535 [info] [command][89bedcf3-c42f-429f-9fd7-af49462b8ed4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""89bedcf3-c42f-429f-9fd7-af49462b8ed4""}\n2025-10-28 21:42:47.536 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][24c3e8de-633d-4f9a-83c7-7bd43aba8682] remote server not configured\n2025-10-28 21:42:47.537 [error] [command][89bedcf3-c42f-429f-9fd7-af49462b8ed4] Socket error: Error: read ECONNRESET\n2025-10-28 21:42:47.537 [info] [command][89bedcf3-c42f-429f-9fd7-af49462b8ed4] Socket close event received\n2025-10-28 21:42:47.537 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][89bedcf3-c42f-429f-9fd7-af49462b8ed4] Socket closed without exit code\n2025-10-28 21:43:47.547 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:43:47.551 [info] [command][6f8e762c-e5ab-4c0f-9b12-81ffcb83c7cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6f8e762c-e5ab-4c0f-9b12-81ffcb83c7cf""}\n2025-10-28 21:43:47.552 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9269c532-a640-4fe1-8fa4-c14a3d4c6a71] remote server not configured\n2025-10-28 21:43:47.552 [error] [command][6f8e762c-e5ab-4c0f-9b12-81ffcb83c7cf] Socket error: Error: read ECONNRESET\n2025-10-28 21:43:47.552 [info] [command][6f8e762c-e5ab-4c0f-9b12-81ffcb83c7cf] Socket close event received\n2025-10-28 21:43:47.553 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6f8e762c-e5ab-4c0f-9b12-81ffcb83c7cf] Socket closed without exit code\n2025-10-28 21:44:47.560 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:44:47.562 [info] [command][a7c524a8-3839-4a94-9ee6-ee79d7058a79] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a7c524a8-3839-4a94-9ee6-ee79d7058a79""}\n2025-10-28 21:44:47.563 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][de1b5aa2-d3fe-419b-8b9e-6581dc6d6aea] remote server not configured\n2025-10-28 21:44:47.563 [error] [command][a7c524a8-3839-4a94-9ee6-ee79d7058a79] Socket error: Error: read ECONNRESET\n2025-10-28 21:44:47.563 [info] [command][a7c524a8-3839-4a94-9ee6-ee79d7058a79] Socket close event received\n2025-10-28 21:44:47.563 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a7c524a8-3839-4a94-9ee6-ee79d7058a79] Socket closed without exit code\n2025-10-28 21:45:47.573 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:45:47.578 [info] [command][8e987d12-9426-4d14-ab93-50eff9b5a956] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8e987d12-9426-4d14-ab93-50eff9b5a956""}\n2025-10-28 21:45:47.578 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e584a651-a150-4b66-bfae-6b5b5b27aaf6] remote server not configured\n2025-10-28 21:45:47.591 [error] [command][8e987d12-9426-4d14-ab93-50eff9b5a956] Socket error: Error: read ECONNRESET\n2025-10-28 21:45:47.591 [info] [command][8e987d12-9426-4d14-ab93-50eff9b5a956] Socket close event received\n2025-10-28 21:45:47.592 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8e987d12-9426-4d14-ab93-50eff9b5a956] Socket closed without exit code\n2025-10-28 21:46:47.594 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:46:47.605 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2dd9b248-110e-4182-a9f5-9944ea7d8ad1] remote server not configured\n2025-10-28 21:46:47.606 [info] [command][e677d19a-c959-4ca6-9b17-8791b2e76559] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e677d19a-c959-4ca6-9b17-8791b2e76559""}\n2025-10-28 21:46:47.626 [error] [command][e677d19a-c959-4ca6-9b17-8791b2e76559] Socket error: Error: read ECONNRESET\n2025-10-28 21:46:47.626 [info] [command][e677d19a-c959-4ca6-9b17-8791b2e76559] Socket close event received\n2025-10-28 21:46:47.626 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e677d19a-c959-4ca6-9b17-8791b2e76559] Socket closed without exit code\n2025-10-28 21:47:47.626 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:47:47.633 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][777f30c8-60a9-4fe8-a18a-e16827c27fa8] remote server not configured\n2025-10-28 21:47:47.634 [info] [command][dd1b4e99-7df9-40a2-a641-9d0495d87589] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dd1b4e99-7df9-40a2-a641-9d0495d87589""}\n2025-10-28 21:47:47.644 [error] [command][dd1b4e99-7df9-40a2-a641-9d0495d87589] Socket error: Error: read ECONNRESET\n2025-10-28 21:47:47.645 [info] [command][dd1b4e99-7df9-40a2-a641-9d0495d87589] Socket close event received\n2025-10-28 21:47:47.645 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][dd1b4e99-7df9-40a2-a641-9d0495d87589] Socket closed without exit code\n2025-10-28 21:48:47.647 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:48:47.650 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ad34584b-0c55-485d-aa76-371f56601bc7] remote server not configured\n2025-10-28 21:48:47.650 [info] [command][099cdf75-ed8a-4723-a390-11bb040b34d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""099cdf75-ed8a-4723-a390-11bb040b34d7""}\n2025-10-28 21:48:47.651 [error] [command][099cdf75-ed8a-4723-a390-11bb040b34d7] Socket error: Error: read ECONNRESET\n2025-10-28 21:48:47.651 [info] [command][099cdf75-ed8a-4723-a390-11bb040b34d7] Socket close event received\n2025-10-28 21:48:47.651 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][099cdf75-ed8a-4723-a390-11bb040b34d7] Socket closed without exit code\n2025-10-28 21:49:47.653 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:49:47.656 [info] [command][2202d503-25ec-494f-a24b-b60886446290] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2202d503-25ec-494f-a24b-b60886446290""}\n2025-10-28 21:49:47.657 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e6f6f0ab-44ee-4e0f-bc21-29fdbcc0af59] remote server not configured\n2025-10-28 21:49:47.657 [error] [command][2202d503-25ec-494f-a24b-b60886446290] Socket error: Error: read ECONNRESET\n2025-10-28 21:49:47.657 [info] [command][2202d503-25ec-494f-a24b-b60886446290] Socket close event received\n2025-10-28 21:49:47.657 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2202d503-25ec-494f-a24b-b60886446290] Socket closed without exit code\n2025-10-28 21:50:47.667 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:50:47.669 [info] [command][a36c667f-48fd-4177-b781-88ea08f94c10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a36c667f-48fd-4177-b781-88ea08f94c10""}\n2025-10-28 21:50:47.670 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][62cc54fd-c4c3-4c7e-857a-719ca02dea4b] remote server not configured\n2025-10-28 21:50:47.671 [error] [command][a36c667f-48fd-4177-b781-88ea08f94c10] Socket error: Error: read ECONNRESET\n2025-10-28 21:50:47.671 [info] [command][a36c667f-48fd-4177-b781-88ea08f94c10] Socket close event received\n2025-10-28 21:50:47.672 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a36c667f-48fd-4177-b781-88ea08f94c10] Socket closed without exit code\n2025-10-28 21:51:47.682 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:51:47.684 [info] [command][9588dc92-7180-4bb1-874e-d95811599545] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9588dc92-7180-4bb1-874e-d95811599545""}\n2025-10-28 21:51:47.684 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][76192406-39f7-4e76-8a64-e1e9a06c5b81] remote server not configured\n2025-10-28 21:51:47.685 [error] [command][9588dc92-7180-4bb1-874e-d95811599545] Socket error: Error: read ECONNRESET\n2025-10-28 21:51:47.686 [info] [command][9588dc92-7180-4bb1-874e-d95811599545] Socket close event received\n2025-10-28 21:51:47.686 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9588dc92-7180-4bb1-874e-d95811599545] Socket closed without exit code\n2025-10-28 21:52:47.687 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:52:47.690 [info] [command][008b67d5-c346-4f58-92e1-952e1c2f07e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""008b67d5-c346-4f58-92e1-952e1c2f07e2""}\n2025-10-28 21:52:47.691 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][90f65ffc-1041-46fa-b3d6-70979dfe1cc6] remote server not configured\n2025-10-28 21:52:47.691 [error] [command][008b67d5-c346-4f58-92e1-952e1c2f07e2] Socket error: Error: read ECONNRESET\n2025-10-28 21:52:47.692 [info] [command][008b67d5-c346-4f58-92e1-952e1c2f07e2] Socket close event received\n2025-10-28 21:52:47.692 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][008b67d5-c346-4f58-92e1-952e1c2f07e2] Socket closed without exit code\n2025-10-28 21:53:47.695 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:53:47.698 [info] [command][23d16e43-5959-4109-b4c3-ee091fad8998] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""23d16e43-5959-4109-b4c3-ee091fad8998""}\n2025-10-28 21:53:47.699 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][76ff025e-a640-4653-a78a-3607543f4a3d] remote server not configured\n2025-10-28 21:53:47.699 [error] [command][23d16e43-5959-4109-b4c3-ee091fad8998] Socket error: Error: read ECONNRESET\n2025-10-28 21:53:47.700 [info] [command][23d16e43-5959-4109-b4c3-ee091fad8998] Socket close event received\n2025-10-28 21:53:47.700 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][23d16e43-5959-4109-b4c3-ee091fad8998] Socket closed without exit code\n2025-10-28 21:54:47.710 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:54:47.712 [info] [command][693ba520-5296-42c2-98dd-1eab483abe4c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""693ba520-5296-42c2-98dd-1eab483abe4c""}\n2025-10-28 21:54:47.713 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8f35adeb-08e8-4afe-acd4-88a60def592b] remote server not configured\n2025-10-28 21:54:47.713 [error] [command][693ba520-5296-42c2-98dd-1eab483abe4c] Socket error: Error: read ECONNRESET\n2025-10-28 21:54:47.713 [info] [command][693ba520-5296-42c2-98dd-1eab483abe4c] Socket close event received\n2025-10-28 21:54:47.713 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][693ba520-5296-42c2-98dd-1eab483abe4c] Socket closed without exit code\n2025-10-28 21:55:47.723 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:55:47.725 [info] [command][95874a25-1955-4dd6-bf3e-bbf559ffebfd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""95874a25-1955-4dd6-bf3e-bbf559ffebfd""}\n2025-10-28 21:55:47.726 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][63cc177b-bea6-4d7d-8dfe-d73168d25fd8] remote server not configured\n2025-10-28 21:55:47.727 [error] [command][95874a25-1955-4dd6-bf3e-bbf559ffebfd] Socket error: Error: read ECONNRESET\n2025-10-28 21:55:47.727 [info] [command][95874a25-1955-4dd6-bf3e-bbf559ffebfd] Socket close event received\n2025-10-28 21:55:47.727 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][95874a25-1955-4dd6-bf3e-bbf559ffebfd] Socket closed without exit code\n2025-10-28 21:56:47.733 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:56:47.735 [info] [command][03f032a5-42a6-44ab-8323-60f63760b1d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""03f032a5-42a6-44ab-8323-60f63760b1d0""}\n2025-10-28 21:56:47.736 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dcacf539-3b7e-46b0-89a3-ccbe5f08d708] remote server not configured\n2025-10-28 21:56:47.736 [error] [command][03f032a5-42a6-44ab-8323-60f63760b1d0] Socket error: Error: read ECONNRESET\n2025-10-28 21:56:47.737 [info] [command][03f032a5-42a6-44ab-8323-60f63760b1d0] Socket close event received\n2025-10-28 21:56:47.737 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][03f032a5-42a6-44ab-8323-60f63760b1d0] Socket closed without exit code\n2025-10-28 21:57:47.747 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:57:47.750 [info] [command][0e17c417-d621-4aa9-84bb-bb4f9058892e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0e17c417-d621-4aa9-84bb-bb4f9058892e""}\n2025-10-28 21:57:47.751 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][12a9eb5b-5d1b-4789-95c7-93ed4b5d6855] remote server not configured\n2025-10-28 21:57:47.751 [error] [command][0e17c417-d621-4aa9-84bb-bb4f9058892e] Socket error: Error: read ECONNRESET\n2025-10-28 21:57:47.751 [info] [command][0e17c417-d621-4aa9-84bb-bb4f9058892e] Socket close event received\n2025-10-28 21:57:47.752 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0e17c417-d621-4aa9-84bb-bb4f9058892e] Socket closed without exit code\n2025-10-28 21:58:47.763 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:58:47.765 [info] [command][b7e2721c-9742-4d44-8c87-192b543d3dd3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b7e2721c-9742-4d44-8c87-192b543d3dd3""}\n2025-10-28 21:58:47.766 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a2bea34a-529f-4a53-a786-009c1de7534e] remote server not configured\n2025-10-28 21:58:47.766 [error] [command][b7e2721c-9742-4d44-8c87-192b543d3dd3] Socket error: Error: read ECONNRESET\n2025-10-28 21:58:47.767 [info] [command][b7e2721c-9742-4d44-8c87-192b543d3dd3] Socket close event received\n2025-10-28 21:58:47.767 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b7e2721c-9742-4d44-8c87-192b543d3dd3] Socket closed without exit code\n2025-10-28 21:59:47.778 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 21:59:47.779 [info] [command][84c9b0ac-a615-41b1-ba83-393a23bb4abc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""84c9b0ac-a615-41b1-ba83-393a23bb4abc""}\n2025-10-28 21:59:47.780 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][61c79462-1ccf-4030-bf11-f55bf11695f5] remote server not configured\n2025-10-28 21:59:47.780 [error] [command][84c9b0ac-a615-41b1-ba83-393a23bb4abc] Socket error: Error: read ECONNRESET\n2025-10-28 21:59:47.781 [info] [command][84c9b0ac-a615-41b1-ba83-393a23bb4abc] Socket close event received\n2025-10-28 21:59:47.781 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][84c9b0ac-a615-41b1-ba83-393a23bb4abc] Socket closed without exit code\n2025-10-28 22:00:47.787 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:00:47.788 [info] [command][3f49df6d-e4c0-43f7-9802-6e7736a15565] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3f49df6d-e4c0-43f7-9802-6e7736a15565""}\n2025-10-28 22:00:47.789 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a3b325a4-2e24-4844-acf4-39890158266e] remote server not configured\n2025-10-28 22:00:47.790 [error] [command][3f49df6d-e4c0-43f7-9802-6e7736a15565] Socket error: Error: read ECONNRESET\n2025-10-28 22:00:47.790 [info] [command][3f49df6d-e4c0-43f7-9802-6e7736a15565] Socket close event received\n2025-10-28 22:00:47.790 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3f49df6d-e4c0-43f7-9802-6e7736a15565] Socket closed without exit code\n2025-10-28 22:01:47.792 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:01:47.794 [info] [command][4d57a808-c27a-4a1a-ab49-2984453d9191] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4d57a808-c27a-4a1a-ab49-2984453d9191""}\n2025-10-28 22:01:47.795 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][00604bd8-27ec-4ec4-b9ae-070833fefa67] remote server not configured\n2025-10-28 22:01:47.796 [error] [command][4d57a808-c27a-4a1a-ab49-2984453d9191] Socket error: Error: read ECONNRESET\n2025-10-28 22:01:47.796 [info] [command][4d57a808-c27a-4a1a-ab49-2984453d9191] Socket close event received\n2025-10-28 22:01:47.796 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4d57a808-c27a-4a1a-ab49-2984453d9191] Socket closed without exit code\n2025-10-28 22:02:47.803 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:02:47.805 [info] [command][c765d58e-8462-4179-b919-2481d5bf48f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c765d58e-8462-4179-b919-2481d5bf48f4""}\n2025-10-28 22:02:47.805 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9e73960a-e2dc-4923-82d9-85a0c3779b17] remote server not configured\n2025-10-28 22:02:47.806 [error] [command][c765d58e-8462-4179-b919-2481d5bf48f4] Socket error: Error: read ECONNRESET\n2025-10-28 22:02:47.806 [info] [command][c765d58e-8462-4179-b919-2481d5bf48f4] Socket close event received\n2025-10-28 22:02:47.807 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c765d58e-8462-4179-b919-2481d5bf48f4] Socket closed without exit code\n2025-10-28 22:03:47.818 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:03:47.820 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6812138a-5492-4825-ac8c-58b3b57a781b] remote server not configured\n2025-10-28 22:03:47.820 [info] [command][17b64fd2-9cd6-4c46-b70a-bdaa614f7f2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""17b64fd2-9cd6-4c46-b70a-bdaa614f7f2a""}\n2025-10-28 22:03:47.821 [error] [command][17b64fd2-9cd6-4c46-b70a-bdaa614f7f2a] Socket error: Error: read ECONNRESET\n2025-10-28 22:03:47.821 [info] [command][17b64fd2-9cd6-4c46-b70a-bdaa614f7f2a] Socket close event received\n2025-10-28 22:03:47.822 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][17b64fd2-9cd6-4c46-b70a-bdaa614f7f2a] Socket closed without exit code\n2025-10-28 22:04:47.832 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:04:47.834 [info] [command][c8711af2-3d47-429a-bc06-13f4c4bed6f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c8711af2-3d47-429a-bc06-13f4c4bed6f9""}\n2025-10-28 22:04:47.835 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cf5a2b20-1a79-47ad-aa96-756018f5f55e] remote server not configured\n2025-10-28 22:04:47.836 [error] [command][c8711af2-3d47-429a-bc06-13f4c4bed6f9] Socket error: Error: read ECONNRESET\n2025-10-28 22:04:47.836 [info] [command][c8711af2-3d47-429a-bc06-13f4c4bed6f9] Socket close event received\n2025-10-28 22:04:47.836 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c8711af2-3d47-429a-bc06-13f4c4bed6f9] Socket closed without exit code\n2025-10-28 22:05:47.846 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:05:47.849 [info] [command][2b332299-5e3b-407c-8e1a-b34d5202d2f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2b332299-5e3b-407c-8e1a-b34d5202d2f3""}\n2025-10-28 22:05:47.850 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e86a9143-0ab2-4142-b45f-c70c7d301ca2] remote server not configured\n2025-10-28 22:05:47.850 [error] [command][2b332299-5e3b-407c-8e1a-b34d5202d2f3] Socket error: Error: read ECONNRESET\n2025-10-28 22:05:47.851 [info] [command][2b332299-5e3b-407c-8e1a-b34d5202d2f3] Socket close event received\n2025-10-28 22:05:47.851 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2b332299-5e3b-407c-8e1a-b34d5202d2f3] Socket closed without exit code\n2025-10-28 22:06:47.860 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:06:47.861 [info] [command][662d5462-8538-4f20-ad1e-436d11088052] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""662d5462-8538-4f20-ad1e-436d11088052""}\n2025-10-28 22:06:47.862 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e114709c-b28f-437d-b976-0d579ab569df] remote server not configured\n2025-10-28 22:06:47.862 [error] [command][662d5462-8538-4f20-ad1e-436d11088052] Socket error: Error: read ECONNRESET\n2025-10-28 22:06:47.863 [info] [command][662d5462-8538-4f20-ad1e-436d11088052] Socket close event received\n2025-10-28 22:06:47.863 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][662d5462-8538-4f20-ad1e-436d11088052] Socket closed without exit code\n2025-10-28 22:07:47.874 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:07:47.875 [info] [command][142ce39c-7fe6-4187-9bb8-8d6d99ee6103] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""142ce39c-7fe6-4187-9bb8-8d6d99ee6103""}\n2025-10-28 22:07:47.876 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f2c62c1f-583e-4af2-93ef-bb691a2a0d76] remote server not configured\n2025-10-28 22:07:47.877 [error] [command][142ce39c-7fe6-4187-9bb8-8d6d99ee6103] Socket error: Error: read ECONNRESET\n2025-10-28 22:07:47.877 [info] [command][142ce39c-7fe6-4187-9bb8-8d6d99ee6103] Socket close event received\n2025-10-28 22:07:47.878 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][142ce39c-7fe6-4187-9bb8-8d6d99ee6103] Socket closed without exit code\n2025-10-28 22:08:47.888 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:08:47.891 [info] [command][088badba-ceea-4a35-8609-0257c7341504] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""088badba-ceea-4a35-8609-0257c7341504""}\n2025-10-28 22:08:47.891 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b58fa8cf-a220-42d9-bab7-7d306b090b38] remote server not configured\n2025-10-28 22:08:47.892 [error] [command][088badba-ceea-4a35-8609-0257c7341504] Socket error: Error: read ECONNRESET\n2025-10-28 22:08:47.892 [info] [command][088badba-ceea-4a35-8609-0257c7341504] Socket close event received\n2025-10-28 22:08:47.892 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][088badba-ceea-4a35-8609-0257c7341504] Socket closed without exit code\n2025-10-28 22:09:47.903 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:09:47.906 [info] [command][285fec91-17c5-4f42-a281-18f8aebbae1f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""285fec91-17c5-4f42-a281-18f8aebbae1f""}\n2025-10-28 22:09:47.906 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2c4053b8-648c-4243-afb0-a27b9142e7cb] remote server not configured\n2025-10-28 22:09:47.907 [error] [command][285fec91-17c5-4f42-a281-18f8aebbae1f] Socket error: Error: read ECONNRESET\n2025-10-28 22:09:47.907 [info] [command][285fec91-17c5-4f42-a281-18f8aebbae1f] Socket close event received\n2025-10-28 22:09:47.907 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][285fec91-17c5-4f42-a281-18f8aebbae1f] Socket closed without exit code\n2025-10-28 22:10:47.845 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:10:47.847 [info] [command][d6f54129-55db-4397-b530-c189d1b6f10e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d6f54129-55db-4397-b530-c189d1b6f10e""}\n2025-10-28 22:10:47.848 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e10948b9-1dca-484b-b32c-557d65a14f81] remote server not configured\n2025-10-28 22:10:47.849 [error] [command][d6f54129-55db-4397-b530-c189d1b6f10e] Socket error: Error: read ECONNRESET\n2025-10-28 22:10:47.849 [info] [command][d6f54129-55db-4397-b530-c189d1b6f10e] Socket close event received\n2025-10-28 22:10:47.849 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d6f54129-55db-4397-b530-c189d1b6f10e] Socket closed without exit code\n2025-10-28 22:11:47.850 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:11:47.852 [info] [command][5dad50ee-c927-4747-af83-044c68ce02b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5dad50ee-c927-4747-af83-044c68ce02b1""}\n2025-10-28 22:11:47.852 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b263f104-4960-4a13-bbfd-44116c7548e7] remote server not configured\n2025-10-28 22:11:47.853 [error] [command][5dad50ee-c927-4747-af83-044c68ce02b1] Socket error: Error: read ECONNRESET\n2025-10-28 22:11:47.853 [info] [command][5dad50ee-c927-4747-af83-044c68ce02b1] Socket close event received\n2025-10-28 22:11:47.853 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5dad50ee-c927-4747-af83-044c68ce02b1] Socket closed without exit code\n2025-10-28 22:12:47.854 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:12:47.856 [info] [command][3b778475-6ca4-45be-9d68-913b49b68568] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3b778475-6ca4-45be-9d68-913b49b68568""}\n2025-10-28 22:12:47.857 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][327971ac-4ef0-4ef6-b2c2-5a79a1546f29] remote server not configured\n2025-10-28 22:12:47.857 [error] [command][3b778475-6ca4-45be-9d68-913b49b68568] Socket error: Error: read ECONNRESET\n2025-10-28 22:12:47.858 [info] [command][3b778475-6ca4-45be-9d68-913b49b68568] Socket close event received\n2025-10-28 22:12:47.858 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3b778475-6ca4-45be-9d68-913b49b68568] Socket closed without exit code\n2025-10-28 22:13:47.865 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:13:47.868 [info] [command][5a7c83d7-9875-4b68-aa64-40482c02475c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5a7c83d7-9875-4b68-aa64-40482c02475c""}\n2025-10-28 22:13:47.869 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5ecc47b3-4dbd-45f4-b3b3-87e3f17a6ea3] remote server not configured\n2025-10-28 22:13:47.869 [error] [command][5a7c83d7-9875-4b68-aa64-40482c02475c] Socket error: Error: read ECONNRESET\n2025-10-28 22:13:47.870 [info] [command][5a7c83d7-9875-4b68-aa64-40482c02475c] Socket close event received\n2025-10-28 22:13:47.870 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5a7c83d7-9875-4b68-aa64-40482c02475c] Socket closed without exit code\n2025-10-28 22:14:47.880 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:14:47.882 [info] [command][3978208f-9cd5-4cf8-9832-4f04d11675c3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3978208f-9cd5-4cf8-9832-4f04d11675c3""}\n2025-10-28 22:14:47.883 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][502a3093-2d0c-4595-a8da-ea530094853a] remote server not configured\n2025-10-28 22:14:47.883 [error] [command][3978208f-9cd5-4cf8-9832-4f04d11675c3] Socket error: Error: read ECONNRESET\n2025-10-28 22:14:47.883 [info] [command][3978208f-9cd5-4cf8-9832-4f04d11675c3] Socket close event received\n2025-10-28 22:14:47.883 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3978208f-9cd5-4cf8-9832-4f04d11675c3] Socket closed without exit code\n2025-10-28 22:15:47.884 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:15:47.886 [info] [command][e6d3ca9f-113a-42f8-8634-54279ccc502d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e6d3ca9f-113a-42f8-8634-54279ccc502d""}\n2025-10-28 22:15:47.886 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0876ccc7-517d-491c-b3c9-aa96cfe02fad] remote server not configured\n2025-10-28 22:15:47.887 [error] [command][e6d3ca9f-113a-42f8-8634-54279ccc502d] Socket error: Error: read ECONNRESET\n2025-10-28 22:15:47.887 [info] [command][e6d3ca9f-113a-42f8-8634-54279ccc502d] Socket close event received\n2025-10-28 22:15:47.888 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e6d3ca9f-113a-42f8-8634-54279ccc502d] Socket closed without exit code\n2025-10-28 22:16:47.891 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:16:47.894 [info] [command][8386cd85-782a-43ae-b120-347bdce1bbce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8386cd85-782a-43ae-b120-347bdce1bbce""}\n2025-10-28 22:16:47.895 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fed85447-1901-4fa3-b21f-c1659dde5692] remote server not configured\n2025-10-28 22:16:47.895 [error] [command][8386cd85-782a-43ae-b120-347bdce1bbce] Socket error: Error: read ECONNRESET\n2025-10-28 22:16:47.895 [info] [command][8386cd85-782a-43ae-b120-347bdce1bbce] Socket close event received\n2025-10-28 22:16:47.895 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8386cd85-782a-43ae-b120-347bdce1bbce] Socket closed without exit code\n2025-10-28 22:17:47.905 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:17:47.907 [info] [command][894f6416-15f4-4f98-ad39-6cdcfabf8e0e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""894f6416-15f4-4f98-ad39-6cdcfabf8e0e""}\n2025-10-28 22:17:47.908 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ea823200-502f-4403-b1c5-6fbd9ecbe669] remote server not configured\n2025-10-28 22:17:47.908 [error] [command][894f6416-15f4-4f98-ad39-6cdcfabf8e0e] Socket error: Error: read ECONNRESET\n2025-10-28 22:17:47.909 [info] [command][894f6416-15f4-4f98-ad39-6cdcfabf8e0e] Socket close event received\n2025-10-28 22:17:47.909 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][894f6416-15f4-4f98-ad39-6cdcfabf8e0e] Socket closed without exit code\n2025-10-28 22:18:47.917 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:18:47.920 [info] [command][269dc570-c4bc-49cd-a217-b448da90252e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""269dc570-c4bc-49cd-a217-b448da90252e""}\n2025-10-28 22:18:47.920 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][295b03b1-09a9-4f08-b015-fd64d098a72c] remote server not configured\n2025-10-28 22:18:47.921 [error] [command][269dc570-c4bc-49cd-a217-b448da90252e] Socket error: Error: read ECONNRESET\n2025-10-28 22:18:47.921 [info] [command][269dc570-c4bc-49cd-a217-b448da90252e] Socket close event received\n2025-10-28 22:18:47.922 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][269dc570-c4bc-49cd-a217-b448da90252e] Socket closed without exit code\n2025-10-28 22:19:47.932 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:19:47.935 [info] [command][0b0ac315-9049-4a15-a6f2-7c25b40eff65] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0b0ac315-9049-4a15-a6f2-7c25b40eff65""}\n2025-10-28 22:19:47.935 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e8fff51b-78de-4000-bef5-79047ba51e94] remote server not configured\n2025-10-28 22:19:47.936 [error] [command][0b0ac315-9049-4a15-a6f2-7c25b40eff65] Socket error: Error: read ECONNRESET\n2025-10-28 22:19:47.936 [info] [command][0b0ac315-9049-4a15-a6f2-7c25b40eff65] Socket close event received\n2025-10-28 22:19:47.936 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0b0ac315-9049-4a15-a6f2-7c25b40eff65] Socket closed without exit code\n2025-10-28 22:20:47.941 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:20:47.943 [info] [command][26379af5-6b76-47a5-ab34-36d9fd04c6f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""26379af5-6b76-47a5-ab34-36d9fd04c6f0""}\n2025-10-28 22:20:47.943 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2b88cd18-17ee-468f-b64e-b3a5201f5a60] remote server not configured\n2025-10-28 22:20:47.944 [error] [command][26379af5-6b76-47a5-ab34-36d9fd04c6f0] Socket error: Error: read ECONNRESET\n2025-10-28 22:20:47.944 [info] [command][26379af5-6b76-47a5-ab34-36d9fd04c6f0] Socket close event received\n2025-10-28 22:20:47.944 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][26379af5-6b76-47a5-ab34-36d9fd04c6f0] Socket closed without exit code\n2025-10-28 22:21:47.954 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:21:47.956 [info] [command][c26ba473-c985-4bd3-8fd5-4764609943f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c26ba473-c985-4bd3-8fd5-4764609943f8""}\n2025-10-28 22:21:47.957 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ae2fbb53-2600-4f7f-99ba-5b25b77e3299] remote server not configured\n2025-10-28 22:21:47.957 [error] [command][c26ba473-c985-4bd3-8fd5-4764609943f8] Socket error: Error: read ECONNRESET\n2025-10-28 22:21:47.957 [info] [command][c26ba473-c985-4bd3-8fd5-4764609943f8] Socket close event received\n2025-10-28 22:21:47.958 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c26ba473-c985-4bd3-8fd5-4764609943f8] Socket closed without exit code\n2025-10-28 22:22:47.959 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:22:47.962 [info] [command][6907d77f-1a71-4d1a-89ea-5276da441a78] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6907d77f-1a71-4d1a-89ea-5276da441a78""}\n2025-10-28 22:22:47.962 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][33145629-eaa3-4072-8dc4-0fa573387823] remote server not configured\n2025-10-28 22:22:47.963 [error] [command][6907d77f-1a71-4d1a-89ea-5276da441a78] Socket error: Error: read ECONNRESET\n2025-10-28 22:22:47.963 [info] [command][6907d77f-1a71-4d1a-89ea-5276da441a78] Socket close event received\n2025-10-28 22:22:47.964 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6907d77f-1a71-4d1a-89ea-5276da441a78] Socket closed without exit code\n2025-10-28 22:23:47.973 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:23:47.975 [info] [command][c21ef864-e6be-402e-ad74-f0af57315748] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c21ef864-e6be-402e-ad74-f0af57315748""}\n2025-10-28 22:23:47.976 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][be598276-e4d7-4d21-87e5-2d01b3e6172c] remote server not configured\n2025-10-28 22:23:47.977 [error] [command][c21ef864-e6be-402e-ad74-f0af57315748] Socket error: Error: read ECONNRESET\n2025-10-28 22:23:47.977 [info] [command][c21ef864-e6be-402e-ad74-f0af57315748] Socket close event received\n2025-10-28 22:23:47.977 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c21ef864-e6be-402e-ad74-f0af57315748] Socket closed without exit code\n2025-10-28 22:24:47.982 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:24:47.987 [info] [command][1334a542-46f9-46cb-942c-1f79bf7288f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1334a542-46f9-46cb-942c-1f79bf7288f5""}\n2025-10-28 22:24:47.987 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][71bcfeb6-bef6-4f16-a7e2-d47b3f29bf06] remote server not configured\n2025-10-28 22:24:47.987 [error] [command][1334a542-46f9-46cb-942c-1f79bf7288f5] Socket error: Error: read ECONNRESET\n2025-10-28 22:24:47.987 [info] [command][1334a542-46f9-46cb-942c-1f79bf7288f5] Socket close event received\n2025-10-28 22:24:47.987 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1334a542-46f9-46cb-942c-1f79bf7288f5] Socket closed without exit code\n2025-10-28 22:25:47.992 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:25:47.995 [info] [command][a97085c8-7085-4052-9dfc-fbeef1d63d73] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a97085c8-7085-4052-9dfc-fbeef1d63d73""}\n2025-10-28 22:25:47.996 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][867f2e10-9213-4b8e-9e93-89ab3ee2fde7] remote server not configured\n2025-10-28 22:25:47.996 [error] [command][a97085c8-7085-4052-9dfc-fbeef1d63d73] Socket error: Error: read ECONNRESET\n2025-10-28 22:25:47.997 [info] [command][a97085c8-7085-4052-9dfc-fbeef1d63d73] Socket close event received\n2025-10-28 22:25:47.997 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a97085c8-7085-4052-9dfc-fbeef1d63d73] Socket closed without exit code\n2025-10-28 22:26:47.999 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:26:48.000 [info] [command][094b8826-046a-43a9-86cd-03ae1391ef50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""094b8826-046a-43a9-86cd-03ae1391ef50""}\n2025-10-28 22:26:48.001 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3487eb04-ec11-4198-bf8a-a466069bd980] remote server not configured\n2025-10-28 22:26:48.002 [error] [command][094b8826-046a-43a9-86cd-03ae1391ef50] Socket error: Error: read ECONNRESET\n2025-10-28 22:26:48.002 [info] [command][094b8826-046a-43a9-86cd-03ae1391ef50] Socket close event received\n2025-10-28 22:26:48.003 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][094b8826-046a-43a9-86cd-03ae1391ef50] Socket closed without exit code\n2025-10-28 22:27:48.003 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:27:48.005 [info] [command][f771507d-157e-4494-959e-a3a79ee29b55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f771507d-157e-4494-959e-a3a79ee29b55""}\n2025-10-28 22:27:48.006 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c2953c8b-793a-40ca-8a51-f5fa3e691132] remote server not configured\n2025-10-28 22:27:48.007 [error] [command][f771507d-157e-4494-959e-a3a79ee29b55] Socket error: Error: read ECONNRESET\n2025-10-28 22:27:48.007 [info] [command][f771507d-157e-4494-959e-a3a79ee29b55] Socket close event received\n2025-10-28 22:27:48.007 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f771507d-157e-4494-959e-a3a79ee29b55] Socket closed without exit code\n2025-10-28 22:28:48.017 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:28:48.019 [info] [command][b333cc24-dfeb-4cc6-8dc6-756bf635e096] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b333cc24-dfeb-4cc6-8dc6-756bf635e096""}\n2025-10-28 22:28:48.020 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c191b3ac-09cc-4a1c-80fc-dc9b769cc88e] remote server not configured\n2025-10-28 22:28:48.021 [error] [command][b333cc24-dfeb-4cc6-8dc6-756bf635e096] Socket error: Error: read ECONNRESET\n2025-10-28 22:28:48.021 [info] [command][b333cc24-dfeb-4cc6-8dc6-756bf635e096] Socket close event received\n2025-10-28 22:28:48.021 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b333cc24-dfeb-4cc6-8dc6-756bf635e096] Socket closed without exit code\n2025-10-28 22:29:48.024 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:29:48.027 [info] [command][bebf48ff-be2a-4df6-8f18-7e1573e03f49] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bebf48ff-be2a-4df6-8f18-7e1573e03f49""}\n2025-10-28 22:29:48.027 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1381ac8d-c36b-4da6-b54c-5d44dc88e5bd] remote server not configured\n2025-10-28 22:29:48.028 [error] [command][bebf48ff-be2a-4df6-8f18-7e1573e03f49] Socket error: Error: read ECONNRESET\n2025-10-28 22:29:48.028 [info] [command][bebf48ff-be2a-4df6-8f18-7e1573e03f49] Socket close event received\n2025-10-28 22:29:48.029 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][bebf48ff-be2a-4df6-8f18-7e1573e03f49] Socket closed without exit code\n2025-10-28 22:30:48.039 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:30:48.042 [info] [command][86982305-5c54-49e1-847f-5dcb47a932b2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""86982305-5c54-49e1-847f-5dcb47a932b2""}\n2025-10-28 22:30:48.043 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fea87767-017c-4785-a8e7-b295e6a6eabf] remote server not configured\n2025-10-28 22:30:48.043 [error] [command][86982305-5c54-49e1-847f-5dcb47a932b2] Socket error: Error: read ECONNRESET\n2025-10-28 22:30:48.043 [info] [command][86982305-5c54-49e1-847f-5dcb47a932b2] Socket close event received\n2025-10-28 22:30:48.044 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][86982305-5c54-49e1-847f-5dcb47a932b2] Socket closed without exit code\n2025-10-28 22:31:48.054 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:31:48.056 [info] [command][ce97eb2e-7612-4700-8450-84f2613226dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ce97eb2e-7612-4700-8450-84f2613226dc""}\n2025-10-28 22:31:48.056 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2b06e56e-f3d4-49c3-8cb5-52863dc86872] remote server not configured\n2025-10-28 22:31:48.057 [error] [command][ce97eb2e-7612-4700-8450-84f2613226dc] Socket error: Error: read ECONNRESET\n2025-10-28 22:31:48.057 [info] [command][ce97eb2e-7612-4700-8450-84f2613226dc] Socket close event received\n2025-10-28 22:31:48.058 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ce97eb2e-7612-4700-8450-84f2613226dc] Socket closed without exit code\n2025-10-28 22:32:48.061 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:32:48.063 [info] [command][4a75c7d3-9f6c-40a5-a627-581066eb25b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4a75c7d3-9f6c-40a5-a627-581066eb25b8""}\n2025-10-28 22:32:48.064 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1bc6f623-a47b-4660-a667-540f17dddd69] remote server not configured\n2025-10-28 22:32:48.064 [error] [command][4a75c7d3-9f6c-40a5-a627-581066eb25b8] Socket error: Error: read ECONNRESET\n2025-10-28 22:32:48.065 [info] [command][4a75c7d3-9f6c-40a5-a627-581066eb25b8] Socket close event received\n2025-10-28 22:32:48.065 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4a75c7d3-9f6c-40a5-a627-581066eb25b8] Socket closed without exit code\n2025-10-28 22:33:48.073 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:33:48.076 [info] [command][70edcb6a-ca0e-49f5-961c-344502050412] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""70edcb6a-ca0e-49f5-961c-344502050412""}\n2025-10-28 22:33:48.077 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6b91759a-ef43-44fe-aa5a-dc843d5401a2] remote server not configured\n2025-10-28 22:33:48.078 [error] [command][70edcb6a-ca0e-49f5-961c-344502050412] Socket error: Error: read ECONNRESET\n2025-10-28 22:33:48.078 [info] [command][70edcb6a-ca0e-49f5-961c-344502050412] Socket close event received\n2025-10-28 22:33:48.078 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][70edcb6a-ca0e-49f5-961c-344502050412] Socket closed without exit code\n2025-10-28 22:34:48.088 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:34:48.090 [info] [command][b4c43403-32ec-4fbd-9c13-338d472b4bbf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b4c43403-32ec-4fbd-9c13-338d472b4bbf""}\n2025-10-28 22:34:48.090 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9d0ce5bb-7f3b-4beb-918d-447546c60f3e] remote server not configured\n2025-10-28 22:34:48.091 [error] [command][b4c43403-32ec-4fbd-9c13-338d472b4bbf] Socket error: Error: read ECONNRESET\n2025-10-28 22:34:48.091 [info] [command][b4c43403-32ec-4fbd-9c13-338d472b4bbf] Socket close event received\n2025-10-28 22:34:48.092 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b4c43403-32ec-4fbd-9c13-338d472b4bbf] Socket closed without exit code\n2025-10-28 22:35:48.100 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:35:48.102 [info] [command][1d64f6a2-3348-4434-bc82-1bd37c159ce0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1d64f6a2-3348-4434-bc82-1bd37c159ce0""}\n2025-10-28 22:35:48.103 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][329f381f-62dc-4125-b05b-d3e6a72c39a3] remote server not configured\n2025-10-28 22:35:48.103 [error] [command][1d64f6a2-3348-4434-bc82-1bd37c159ce0] Socket error: Error: read ECONNRESET\n2025-10-28 22:35:48.103 [info] [command][1d64f6a2-3348-4434-bc82-1bd37c159ce0] Socket close event received\n2025-10-28 22:35:48.104 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1d64f6a2-3348-4434-bc82-1bd37c159ce0] Socket closed without exit code\n2025-10-28 22:36:48.113 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:36:48.115 [info] [command][ddfbcbc1-26a1-45a0-8b68-ee64f9d149c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ddfbcbc1-26a1-45a0-8b68-ee64f9d149c8""}\n2025-10-28 22:36:48.115 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e3c33420-762b-47a5-90b9-c59ff0b93b81] remote server not configured\n2025-10-28 22:36:48.116 [error] [command][ddfbcbc1-26a1-45a0-8b68-ee64f9d149c8] Socket error: Error: read ECONNRESET\n2025-10-28 22:36:48.116 [info] [command][ddfbcbc1-26a1-45a0-8b68-ee64f9d149c8] Socket close event received\n2025-10-28 22:36:48.116 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ddfbcbc1-26a1-45a0-8b68-ee64f9d149c8] Socket closed without exit code\n2025-10-28 22:37:48.125 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:37:48.127 [info] [command][6cd86d48-e261-4d0c-8d4e-3f614e7e9eee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6cd86d48-e261-4d0c-8d4e-3f614e7e9eee""}\n2025-10-28 22:37:48.128 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2b241b33-9408-493b-83c1-53e7f1474d29] remote server not configured\n2025-10-28 22:37:48.129 [error] [command][6cd86d48-e261-4d0c-8d4e-3f614e7e9eee] Socket error: Error: read ECONNRESET\n2025-10-28 22:37:48.129 [info] [command][6cd86d48-e261-4d0c-8d4e-3f614e7e9eee] Socket close event received\n2025-10-28 22:37:48.130 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6cd86d48-e261-4d0c-8d4e-3f614e7e9eee] Socket closed without exit code\n2025-10-28 22:38:48.140 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:38:48.141 [info] [command][79781dc0-755c-48d0-820e-d7e1bd49837b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""79781dc0-755c-48d0-820e-d7e1bd49837b""}\n2025-10-28 22:38:48.142 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fe4f79b7-a231-458c-b2e9-849d789f11d5] remote server not configured\n2025-10-28 22:38:48.143 [error] [command][79781dc0-755c-48d0-820e-d7e1bd49837b] Socket error: Error: read ECONNRESET\n2025-10-28 22:38:48.143 [info] [command][79781dc0-755c-48d0-820e-d7e1bd49837b] Socket close event received\n2025-10-28 22:38:48.143 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][79781dc0-755c-48d0-820e-d7e1bd49837b] Socket closed without exit code\n2025-10-28 22:39:48.153 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:39:48.155 [info] [command][71886026-ebb1-4272-bb05-604ab443a538] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""71886026-ebb1-4272-bb05-604ab443a538""}\n2025-10-28 22:39:48.156 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4d4bb754-ce77-4c58-a521-9c1c8f41d258] remote server not configured\n2025-10-28 22:39:48.156 [error] [command][71886026-ebb1-4272-bb05-604ab443a538] Socket error: Error: read ECONNRESET\n2025-10-28 22:39:48.156 [info] [command][71886026-ebb1-4272-bb05-604ab443a538] Socket close event received\n2025-10-28 22:39:48.156 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][71886026-ebb1-4272-bb05-604ab443a538] Socket closed without exit code\n2025-10-28 22:40:48.165 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:40:48.168 [info] [command][f65c7c3e-a7da-43df-a2f6-5864f19de325] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f65c7c3e-a7da-43df-a2f6-5864f19de325""}\n2025-10-28 22:40:48.169 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3e9037af-b8c6-444a-8d07-70dde01f70a9] remote server not configured\n2025-10-28 22:40:48.169 [error] [command][f65c7c3e-a7da-43df-a2f6-5864f19de325] Socket error: Error: read ECONNRESET\n2025-10-28 22:40:48.169 [info] [command][f65c7c3e-a7da-43df-a2f6-5864f19de325] Socket close event received\n2025-10-28 22:40:48.169 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f65c7c3e-a7da-43df-a2f6-5864f19de325] Socket closed without exit code\n2025-10-28 22:41:48.172 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:41:48.175 [info] [command][831b5039-b6a2-46ec-9a97-f6cf7823bce6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""831b5039-b6a2-46ec-9a97-f6cf7823bce6""}\n2025-10-28 22:41:48.175 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5a2e59f5-aff8-48dc-8c79-da87d3604bbf] remote server not configured\n2025-10-28 22:41:48.176 [error] [command][831b5039-b6a2-46ec-9a97-f6cf7823bce6] Socket error: Error: read ECONNRESET\n2025-10-28 22:41:48.176 [info] [command][831b5039-b6a2-46ec-9a97-f6cf7823bce6] Socket close event received\n2025-10-28 22:41:48.177 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][831b5039-b6a2-46ec-9a97-f6cf7823bce6] Socket closed without exit code\n2025-10-28 22:42:48.186 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:42:48.188 [info] [command][288af3cc-e549-4f92-9554-769e71a0492f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""288af3cc-e549-4f92-9554-769e71a0492f""}\n2025-10-28 22:42:48.189 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b87dbb2e-403d-4bbe-bb8a-d08d2f760e65] remote server not configured\n2025-10-28 22:42:48.189 [error] [command][288af3cc-e549-4f92-9554-769e71a0492f] Socket error: Error: read ECONNRESET\n2025-10-28 22:42:48.189 [info] [command][288af3cc-e549-4f92-9554-769e71a0492f] Socket close event received\n2025-10-28 22:42:48.190 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][288af3cc-e549-4f92-9554-769e71a0492f] Socket closed without exit code\n2025-10-28 22:43:48.199 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:43:48.202 [info] [command][11bfc80b-aec7-41cd-a3ff-eaaa2ac2e23b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""11bfc80b-aec7-41cd-a3ff-eaaa2ac2e23b""}\n2025-10-28 22:43:48.202 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][48e95a5b-213c-4656-9912-8a03d8579d24] remote server not configured\n2025-10-28 22:43:48.203 [error] [command][11bfc80b-aec7-41cd-a3ff-eaaa2ac2e23b] Socket error: Error: read ECONNRESET\n2025-10-28 22:43:48.203 [info] [command][11bfc80b-aec7-41cd-a3ff-eaaa2ac2e23b] Socket close event received\n2025-10-28 22:43:48.204 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][11bfc80b-aec7-41cd-a3ff-eaaa2ac2e23b] Socket closed without exit code\n2025-10-28 22:44:48.213 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:44:48.215 [info] [command][c24833ed-8607-457f-930a-12e41b525504] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c24833ed-8607-457f-930a-12e41b525504""}\n2025-10-28 22:44:48.215 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][49f8bdb9-bf48-4957-8fca-8f7fd5934529] remote server not configured\n2025-10-28 22:44:48.216 [error] [command][c24833ed-8607-457f-930a-12e41b525504] Socket error: Error: read ECONNRESET\n2025-10-28 22:44:48.216 [info] [command][c24833ed-8607-457f-930a-12e41b525504] Socket close event received\n2025-10-28 22:44:48.216 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c24833ed-8607-457f-930a-12e41b525504] Socket closed without exit code\n2025-10-28 22:45:48.220 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:45:48.223 [info] [command][8dae7352-10ff-4c16-bbb8-ac4bd47f4d32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8dae7352-10ff-4c16-bbb8-ac4bd47f4d32""}\n2025-10-28 22:45:48.223 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][eea6b8aa-4c3c-4b82-bf43-69d5d9132e1e] remote server not configured\n2025-10-28 22:45:48.224 [error] [command][8dae7352-10ff-4c16-bbb8-ac4bd47f4d32] Socket error: Error: read ECONNRESET\n2025-10-28 22:45:48.224 [info] [command][8dae7352-10ff-4c16-bbb8-ac4bd47f4d32] Socket close event received\n2025-10-28 22:45:48.224 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8dae7352-10ff-4c16-bbb8-ac4bd47f4d32] Socket closed without exit code\n2025-10-28 22:46:48.234 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:46:48.236 [info] [command][36dd3655-1512-4901-959f-b9aecda7cc10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""36dd3655-1512-4901-959f-b9aecda7cc10""}\n2025-10-28 22:46:48.236 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9727c2c4-e972-42ec-81b5-3b0c8bc6013f] remote server not configured\n2025-10-28 22:46:48.237 [error] [command][36dd3655-1512-4901-959f-b9aecda7cc10] Socket error: Error: read ECONNRESET\n2025-10-28 22:46:48.238 [info] [command][36dd3655-1512-4901-959f-b9aecda7cc10] Socket close event received\n2025-10-28 22:46:48.238 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][36dd3655-1512-4901-959f-b9aecda7cc10] Socket closed without exit code\n2025-10-28 22:47:48.237 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:47:48.241 [info] [command][cc5bc82f-492c-4c5c-b81e-fbebd7371808] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cc5bc82f-492c-4c5c-b81e-fbebd7371808""}\n2025-10-28 22:47:48.241 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f25464be-7622-4186-9fc1-a25c549db68b] remote server not configured\n2025-10-28 22:47:48.242 [error] [command][cc5bc82f-492c-4c5c-b81e-fbebd7371808] Socket error: Error: read ECONNRESET\n2025-10-28 22:47:48.242 [info] [command][cc5bc82f-492c-4c5c-b81e-fbebd7371808] Socket close event received\n2025-10-28 22:47:48.242 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cc5bc82f-492c-4c5c-b81e-fbebd7371808] Socket closed without exit code\n2025-10-28 22:48:48.246 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:48:48.248 [info] [command][0e0f7f39-3017-4843-8d16-af6958c54541] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0e0f7f39-3017-4843-8d16-af6958c54541""}\n2025-10-28 22:48:48.248 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9ca141a9-eebe-4e50-a01b-bb3e0f75d146] remote server not configured\n2025-10-28 22:48:48.249 [error] [command][0e0f7f39-3017-4843-8d16-af6958c54541] Socket error: Error: read ECONNRESET\n2025-10-28 22:48:48.249 [info] [command][0e0f7f39-3017-4843-8d16-af6958c54541] Socket close event received\n2025-10-28 22:48:48.250 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0e0f7f39-3017-4843-8d16-af6958c54541] Socket closed without exit code\n2025-10-28 22:49:48.260 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:49:48.262 [info] [command][41600b79-2fa9-4828-85de-257a96251b41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""41600b79-2fa9-4828-85de-257a96251b41""}\n2025-10-28 22:49:48.263 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][97bb7eb9-cce3-451c-9a90-487467faae62] remote server not configured\n2025-10-28 22:49:48.264 [error] [command][41600b79-2fa9-4828-85de-257a96251b41] Socket error: Error: read ECONNRESET\n2025-10-28 22:49:48.264 [info] [command][41600b79-2fa9-4828-85de-257a96251b41] Socket close event received\n2025-10-28 22:49:48.264 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][41600b79-2fa9-4828-85de-257a96251b41] Socket closed without exit code\n2025-10-28 22:50:48.266 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:50:48.267 [info] [command][39859219-a6dd-453c-9f38-f4314d127a9e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""39859219-a6dd-453c-9f38-f4314d127a9e""}\n2025-10-28 22:50:48.268 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4df8fe5b-2617-467f-b055-d66065a06bb9] remote server not configured\n2025-10-28 22:50:48.269 [error] [command][39859219-a6dd-453c-9f38-f4314d127a9e] Socket error: Error: read ECONNRESET\n2025-10-28 22:50:48.269 [info] [command][39859219-a6dd-453c-9f38-f4314d127a9e] Socket close event received\n2025-10-28 22:50:48.269 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][39859219-a6dd-453c-9f38-f4314d127a9e] Socket closed without exit code\n2025-10-28 22:51:48.271 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:51:48.273 [info] [command][fbfafb3b-34bb-47ca-902d-8c7ee6060c9d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fbfafb3b-34bb-47ca-902d-8c7ee6060c9d""}\n2025-10-28 22:51:48.274 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][aaac1a89-b3dd-4f16-9828-636aa8384cdc] remote server not configured\n2025-10-28 22:51:48.274 [error] [command][fbfafb3b-34bb-47ca-902d-8c7ee6060c9d] Socket error: Error: read ECONNRESET\n2025-10-28 22:51:48.274 [info] [command][fbfafb3b-34bb-47ca-902d-8c7ee6060c9d] Socket close event received\n2025-10-28 22:51:48.275 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fbfafb3b-34bb-47ca-902d-8c7ee6060c9d] Socket closed without exit code\n2025-10-28 22:52:48.279 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:52:48.280 [info] [command][c2c4aa74-7bfb-495b-8892-9eee27833447] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c2c4aa74-7bfb-495b-8892-9eee27833447""}\n2025-10-28 22:52:48.281 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][711090ca-0079-49f7-84d5-adcbf6078ffc] remote server not configured\n2025-10-28 22:52:48.282 [error] [command][c2c4aa74-7bfb-495b-8892-9eee27833447] Socket error: Error: read ECONNRESET\n2025-10-28 22:52:48.282 [info] [command][c2c4aa74-7bfb-495b-8892-9eee27833447] Socket close event received\n2025-10-28 22:52:48.282 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c2c4aa74-7bfb-495b-8892-9eee27833447] Socket closed without exit code\n2025-10-28 22:53:48.292 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:53:48.294 [info] [command][70418611-b085-4f43-bae1-07db1c3fc4e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""70418611-b085-4f43-bae1-07db1c3fc4e2""}\n2025-10-28 22:53:48.295 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2c75acba-34ab-41cc-820e-9a1277c8c220] remote server not configured\n2025-10-28 22:53:48.296 [error] [command][70418611-b085-4f43-bae1-07db1c3fc4e2] Socket error: Error: read ECONNRESET\n2025-10-28 22:53:48.296 [info] [command][70418611-b085-4f43-bae1-07db1c3fc4e2] Socket close event received\n2025-10-28 22:53:48.296 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][70418611-b085-4f43-bae1-07db1c3fc4e2] Socket closed without exit code\n2025-10-28 22:54:48.306 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:54:48.308 [info] [command][8171168a-5d1f-4ec6-94d2-dd80660c854b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8171168a-5d1f-4ec6-94d2-dd80660c854b""}\n2025-10-28 22:54:48.309 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c346785c-5881-4435-9d74-2e8f89d3a6e5] remote server not configured\n2025-10-28 22:54:48.310 [error] [command][8171168a-5d1f-4ec6-94d2-dd80660c854b] Socket error: Error: read ECONNRESET\n2025-10-28 22:54:48.310 [info] [command][8171168a-5d1f-4ec6-94d2-dd80660c854b] Socket close event received\n2025-10-28 22:54:48.310 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8171168a-5d1f-4ec6-94d2-dd80660c854b] Socket closed without exit code\n2025-10-28 22:55:48.311 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:55:48.314 [info] [command][8a8ff16b-d81d-49cd-ae02-2dda14203a1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8a8ff16b-d81d-49cd-ae02-2dda14203a1a""}\n2025-10-28 22:55:48.315 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dd29d7f7-f56b-493d-a9db-95b235c44a9c] remote server not configured\n2025-10-28 22:55:48.315 [error] [command][8a8ff16b-d81d-49cd-ae02-2dda14203a1a] Socket error: Error: read ECONNRESET\n2025-10-28 22:55:48.316 [info] [command][8a8ff16b-d81d-49cd-ae02-2dda14203a1a] Socket close event received\n2025-10-28 22:55:48.316 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8a8ff16b-d81d-49cd-ae02-2dda14203a1a] Socket closed without exit code\n2025-10-28 22:56:48.326 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:56:48.328 [info] [command][b9063a31-71f4-4ddd-995a-89710c44c9b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b9063a31-71f4-4ddd-995a-89710c44c9b5""}\n2025-10-28 22:56:48.329 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6accbc26-803a-4b56-b43e-f316b65ff424] remote server not configured\n2025-10-28 22:56:48.330 [error] [command][b9063a31-71f4-4ddd-995a-89710c44c9b5] Socket error: Error: read ECONNRESET\n2025-10-28 22:56:48.330 [info] [command][b9063a31-71f4-4ddd-995a-89710c44c9b5] Socket close event received\n2025-10-28 22:56:48.330 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b9063a31-71f4-4ddd-995a-89710c44c9b5] Socket closed without exit code\n2025-10-28 22:57:48.340 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:57:48.342 [info] [command][b19cffba-c41c-4c6c-a1fa-0e8d21350972] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b19cffba-c41c-4c6c-a1fa-0e8d21350972""}\n2025-10-28 22:57:48.342 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][206241ca-5afc-4682-8920-94d41a590e5d] remote server not configured\n2025-10-28 22:57:48.343 [error] [command][b19cffba-c41c-4c6c-a1fa-0e8d21350972] Socket error: Error: read ECONNRESET\n2025-10-28 22:57:48.343 [info] [command][b19cffba-c41c-4c6c-a1fa-0e8d21350972] Socket close event received\n2025-10-28 22:57:48.343 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b19cffba-c41c-4c6c-a1fa-0e8d21350972] Socket closed without exit code\n2025-10-28 22:58:48.352 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:58:48.355 [info] [command][c137443a-edfa-4083-b0e0-fa8cdcdbe7d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c137443a-edfa-4083-b0e0-fa8cdcdbe7d1""}\n2025-10-28 22:58:48.355 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][41dcb2b5-357e-4550-9000-71310bf5c6bd] remote server not configured\n2025-10-28 22:58:48.356 [error] [command][c137443a-edfa-4083-b0e0-fa8cdcdbe7d1] Socket error: Error: read ECONNRESET\n2025-10-28 22:58:48.356 [info] [command][c137443a-edfa-4083-b0e0-fa8cdcdbe7d1] Socket close event received\n2025-10-28 22:58:48.356 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c137443a-edfa-4083-b0e0-fa8cdcdbe7d1] Socket closed without exit code\n2025-10-28 22:59:48.364 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 22:59:48.366 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3810dff5-7894-4462-89a3-883ab00d8daf] remote server not configured\n2025-10-28 22:59:48.366 [info] [command][9d4e3520-ce2a-486d-91e0-eef7ca4ffd7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9d4e3520-ce2a-486d-91e0-eef7ca4ffd7a""}\n2025-10-28 22:59:48.367 [error] [command][9d4e3520-ce2a-486d-91e0-eef7ca4ffd7a] Socket error: Error: read ECONNRESET\n2025-10-28 22:59:48.368 [info] [command][9d4e3520-ce2a-486d-91e0-eef7ca4ffd7a] Socket close event received\n2025-10-28 22:59:48.368 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9d4e3520-ce2a-486d-91e0-eef7ca4ffd7a] Socket closed without exit code\n2025-10-28 23:00:48.377 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:00:48.380 [info] [command][b9e37756-211b-4363-abbf-f570a3f6abcb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b9e37756-211b-4363-abbf-f570a3f6abcb""}\n2025-10-28 23:00:48.381 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][424e74ea-8d7f-476f-9391-d3fca7d4b7ab] remote server not configured\n2025-10-28 23:00:48.381 [error] [command][b9e37756-211b-4363-abbf-f570a3f6abcb] Socket error: Error: read ECONNRESET\n2025-10-28 23:00:48.382 [info] [command][b9e37756-211b-4363-abbf-f570a3f6abcb] Socket close event received\n2025-10-28 23:00:48.382 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b9e37756-211b-4363-abbf-f570a3f6abcb] Socket closed without exit code\n2025-10-28 23:01:48.393 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:01:48.394 [info] [command][d8483a67-4465-4efe-baef-19bf40f18d4f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d8483a67-4465-4efe-baef-19bf40f18d4f""}\n2025-10-28 23:01:48.395 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e1de7539-bfbe-452b-9dea-79d307ecf8ca] remote server not configured\n2025-10-28 23:01:48.396 [error] [command][d8483a67-4465-4efe-baef-19bf40f18d4f] Socket error: Error: read ECONNRESET\n2025-10-28 23:01:48.396 [info] [command][d8483a67-4465-4efe-baef-19bf40f18d4f] Socket close event received\n2025-10-28 23:01:48.396 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d8483a67-4465-4efe-baef-19bf40f18d4f] Socket closed without exit code\n2025-10-28 23:02:48.406 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:02:48.407 [info] [command][f71d58da-25d7-4290-8ad6-62505d96141c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f71d58da-25d7-4290-8ad6-62505d96141c""}\n2025-10-28 23:02:48.408 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8df22e83-6647-4890-b166-627194b3040b] remote server not configured\n2025-10-28 23:02:48.408 [error] [command][f71d58da-25d7-4290-8ad6-62505d96141c] Socket error: Error: read ECONNRESET\n2025-10-28 23:02:48.408 [info] [command][f71d58da-25d7-4290-8ad6-62505d96141c] Socket close event received\n2025-10-28 23:02:48.408 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f71d58da-25d7-4290-8ad6-62505d96141c] Socket closed without exit code\n2025-10-28 23:03:48.419 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:03:48.421 [info] [command][66f74da1-0998-4672-8385-fda5d4e47b52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""66f74da1-0998-4672-8385-fda5d4e47b52""}\n2025-10-28 23:03:48.421 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7fa507ec-0a13-404b-8298-ecd225773bb4] remote server not configured\n2025-10-28 23:03:48.421 [error] [command][66f74da1-0998-4672-8385-fda5d4e47b52] Socket error: Error: read ECONNRESET\n2025-10-28 23:03:48.422 [info] [command][66f74da1-0998-4672-8385-fda5d4e47b52] Socket close event received\n2025-10-28 23:03:48.422 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][66f74da1-0998-4672-8385-fda5d4e47b52] Socket closed without exit code\n2025-10-28 23:04:48.431 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:04:48.434 [info] [command][177163ea-709a-4159-a3b5-cd9df1697ab3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""177163ea-709a-4159-a3b5-cd9df1697ab3""}\n2025-10-28 23:04:48.434 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2f002b1d-0f72-486f-a815-d6e1a64d3729] remote server not configured\n2025-10-28 23:04:48.434 [error] [command][177163ea-709a-4159-a3b5-cd9df1697ab3] Socket error: Error: read ECONNRESET\n2025-10-28 23:04:48.435 [info] [command][177163ea-709a-4159-a3b5-cd9df1697ab3] Socket close event received\n2025-10-28 23:04:48.435 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][177163ea-709a-4159-a3b5-cd9df1697ab3] Socket closed without exit code\n2025-10-28 23:05:48.445 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:05:48.446 [info] [command][df5c023a-c313-46f2-ab22-b012befcbf8b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""df5c023a-c313-46f2-ab22-b012befcbf8b""}\n2025-10-28 23:05:48.447 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1d4b94cc-282d-40b3-82b8-ba36669aef18] remote server not configured\n2025-10-28 23:05:48.448 [error] [command][df5c023a-c313-46f2-ab22-b012befcbf8b] Socket error: Error: read ECONNRESET\n2025-10-28 23:05:48.448 [info] [command][df5c023a-c313-46f2-ab22-b012befcbf8b] Socket close event received\n2025-10-28 23:05:48.448 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][df5c023a-c313-46f2-ab22-b012befcbf8b] Socket closed without exit code\n2025-10-28 23:06:48.457 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:06:48.460 [info] [command][7906386e-3785-433c-8c1c-91a5af86e422] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7906386e-3785-433c-8c1c-91a5af86e422""}\n2025-10-28 23:06:48.460 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f4671226-dab6-4efa-a816-59659a57891a] remote server not configured\n2025-10-28 23:06:48.461 [error] [command][7906386e-3785-433c-8c1c-91a5af86e422] Socket error: Error: read ECONNRESET\n2025-10-28 23:06:48.461 [info] [command][7906386e-3785-433c-8c1c-91a5af86e422] Socket close event received\n2025-10-28 23:06:48.461 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7906386e-3785-433c-8c1c-91a5af86e422] Socket closed without exit code\n2025-10-28 23:07:48.471 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:07:48.474 [info] [command][f9cead8a-2bd8-4e67-a3d7-d5e845ec1ad0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f9cead8a-2bd8-4e67-a3d7-d5e845ec1ad0""}\n2025-10-28 23:07:48.475 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][09f34ee3-7908-4bd7-be2d-b3e131da524f] remote server not configured\n2025-10-28 23:07:48.475 [error] [command][f9cead8a-2bd8-4e67-a3d7-d5e845ec1ad0] Socket error: Error: read ECONNRESET\n2025-10-28 23:07:48.476 [info] [command][f9cead8a-2bd8-4e67-a3d7-d5e845ec1ad0] Socket close event received\n2025-10-28 23:07:48.476 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f9cead8a-2bd8-4e67-a3d7-d5e845ec1ad0] Socket closed without exit code\n2025-10-28 23:08:48.478 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:08:48.480 [info] [command][74b935fb-d0fd-4017-811f-c4f80932ebab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""74b935fb-d0fd-4017-811f-c4f80932ebab""}\n2025-10-28 23:08:48.481 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9080e7a6-2541-4d14-a213-05848a68da6c] remote server not configured\n2025-10-28 23:08:48.482 [error] [command][74b935fb-d0fd-4017-811f-c4f80932ebab] Socket error: Error: read ECONNRESET\n2025-10-28 23:08:48.482 [info] [command][74b935fb-d0fd-4017-811f-c4f80932ebab] Socket close event received\n2025-10-28 23:08:48.482 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][74b935fb-d0fd-4017-811f-c4f80932ebab] Socket closed without exit code\n2025-10-28 23:09:48.491 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:09:48.493 [info] [command][f3d7999f-de86-4154-83dc-c5ed79378dc4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f3d7999f-de86-4154-83dc-c5ed79378dc4""}\n2025-10-28 23:09:48.494 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][036339f1-bd53-478c-9081-dac0ce16b9f7] remote server not configured\n2025-10-28 23:09:48.494 [error] [command][f3d7999f-de86-4154-83dc-c5ed79378dc4] Socket error: Error: read ECONNRESET\n2025-10-28 23:09:48.495 [info] [command][f3d7999f-de86-4154-83dc-c5ed79378dc4] Socket close event received\n2025-10-28 23:09:48.495 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f3d7999f-de86-4154-83dc-c5ed79378dc4] Socket closed without exit code\n2025-10-28 23:10:48.505 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:10:48.508 [info] [command][0160921e-6006-48c5-bc69-aa4941464182] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0160921e-6006-48c5-bc69-aa4941464182""}\n2025-10-28 23:10:48.509 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2cc37b9b-f620-47ca-a759-3cf6b6c8e561] remote server not configured\n2025-10-28 23:10:48.509 [error] [command][0160921e-6006-48c5-bc69-aa4941464182] Socket error: Error: read ECONNRESET\n2025-10-28 23:10:48.509 [info] [command][0160921e-6006-48c5-bc69-aa4941464182] Socket close event received\n2025-10-28 23:10:48.509 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0160921e-6006-48c5-bc69-aa4941464182] Socket closed without exit code\n2025-10-28 23:11:48.513 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:11:48.515 [info] [command][39778e57-998d-4a1e-bf96-ae1323398c09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""39778e57-998d-4a1e-bf96-ae1323398c09""}\n2025-10-28 23:11:48.515 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fe6d3fb8-e59f-4a86-8204-0bdc71cce73c] remote server not configured\n2025-10-28 23:11:48.516 [error] [command][39778e57-998d-4a1e-bf96-ae1323398c09] Socket error: Error: read ECONNRESET\n2025-10-28 23:11:48.516 [info] [command][39778e57-998d-4a1e-bf96-ae1323398c09] Socket close event received\n2025-10-28 23:11:48.516 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][39778e57-998d-4a1e-bf96-ae1323398c09] Socket closed without exit code\n2025-10-28 23:12:48.526 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:12:48.529 [info] [command][191872ad-ec68-42eb-a467-b0e2513d929e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""191872ad-ec68-42eb-a467-b0e2513d929e""}\n2025-10-28 23:12:48.530 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0792bfcf-ada8-4a7a-a84f-e65e071fa50c] remote server not configured\n2025-10-28 23:12:48.530 [error] [command][191872ad-ec68-42eb-a467-b0e2513d929e] Socket error: Error: read ECONNRESET\n2025-10-28 23:12:48.530 [info] [command][191872ad-ec68-42eb-a467-b0e2513d929e] Socket close event received\n2025-10-28 23:12:48.531 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][191872ad-ec68-42eb-a467-b0e2513d929e] Socket closed without exit code\n2025-10-28 23:13:48.540 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:13:48.542 [info] [command][b92abb79-bce4-48bd-8dfc-3d537f30bab8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b92abb79-bce4-48bd-8dfc-3d537f30bab8""}\n2025-10-28 23:13:48.543 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6a5476b7-6c55-4c39-8988-c15aead02220] remote server not configured\n2025-10-28 23:13:48.543 [error] [command][b92abb79-bce4-48bd-8dfc-3d537f30bab8] Socket error: Error: read ECONNRESET\n2025-10-28 23:13:48.544 [info] [command][b92abb79-bce4-48bd-8dfc-3d537f30bab8] Socket close event received\n2025-10-28 23:13:48.544 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b92abb79-bce4-48bd-8dfc-3d537f30bab8] Socket closed without exit code\n2025-10-28 23:14:48.550 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:14:48.551 [info] [command][8d504f52-94e5-45f1-ab44-7bde0f5b70e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8d504f52-94e5-45f1-ab44-7bde0f5b70e1""}\n2025-10-28 23:14:48.551 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][081cf7db-2414-49f9-98a4-f348493907d6] remote server not configured\n2025-10-28 23:14:48.551 [error] [command][8d504f52-94e5-45f1-ab44-7bde0f5b70e1] Socket error: Error: read ECONNRESET\n2025-10-28 23:14:48.551 [info] [command][8d504f52-94e5-45f1-ab44-7bde0f5b70e1] Socket close event received\n2025-10-28 23:14:48.552 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8d504f52-94e5-45f1-ab44-7bde0f5b70e1] Socket closed without exit code\n2025-10-28 23:15:48.649 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:15:48.651 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][44b30840-32c2-455b-8aed-a634b449cb9f] remote server not configured\n2025-10-28 23:15:48.652 [info] [command][287c6f4d-d1e3-48f7-af25-ee1cbaf330a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""287c6f4d-d1e3-48f7-af25-ee1cbaf330a5""}\n2025-10-28 23:15:48.652 [error] [command][287c6f4d-d1e3-48f7-af25-ee1cbaf330a5] Socket error: Error: read ECONNRESET\n2025-10-28 23:15:48.653 [info] [command][287c6f4d-d1e3-48f7-af25-ee1cbaf330a5] Socket close event received\n2025-10-28 23:15:48.653 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][287c6f4d-d1e3-48f7-af25-ee1cbaf330a5] Socket closed without exit code\n2025-10-28 23:16:48.662 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:16:48.665 [info] [command][305a3373-8517-4142-8458-3590b70d78f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""305a3373-8517-4142-8458-3590b70d78f3""}\n2025-10-28 23:16:48.666 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c430aa87-0e89-4c84-8117-dab281d0b062] remote server not configured\n2025-10-28 23:16:48.666 [error] [command][305a3373-8517-4142-8458-3590b70d78f3] Socket error: Error: read ECONNRESET\n2025-10-28 23:16:48.667 [info] [command][305a3373-8517-4142-8458-3590b70d78f3] Socket close event received\n2025-10-28 23:16:48.667 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][305a3373-8517-4142-8458-3590b70d78f3] Socket closed without exit code\n2025-10-28 23:17:48.678 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:17:48.681 [info] [command][a78c5780-bf7a-4349-b03e-495b911d1e03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a78c5780-bf7a-4349-b03e-495b911d1e03""}\n2025-10-28 23:17:48.682 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][41609cfc-2490-496e-8fb5-9d5642ed3c87] remote server not configured\n2025-10-28 23:17:48.682 [error] [command][a78c5780-bf7a-4349-b03e-495b911d1e03] Socket error: Error: read ECONNRESET\n2025-10-28 23:17:48.683 [info] [command][a78c5780-bf7a-4349-b03e-495b911d1e03] Socket close event received\n2025-10-28 23:17:48.683 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a78c5780-bf7a-4349-b03e-495b911d1e03] Socket closed without exit code\n2025-10-28 23:18:48.694 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:18:48.696 [info] [command][35bd2fd9-8efe-4e7d-adbf-74a5b4d7fc98] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""35bd2fd9-8efe-4e7d-adbf-74a5b4d7fc98""}\n2025-10-28 23:18:48.697 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d78156c1-cc22-4171-8589-10e6aee5b39e] remote server not configured\n2025-10-28 23:18:48.697 [error] [command][35bd2fd9-8efe-4e7d-adbf-74a5b4d7fc98] Socket error: Error: read ECONNRESET\n2025-10-28 23:18:48.697 [info] [command][35bd2fd9-8efe-4e7d-adbf-74a5b4d7fc98] Socket close event received\n2025-10-28 23:18:48.698 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][35bd2fd9-8efe-4e7d-adbf-74a5b4d7fc98] Socket closed without exit code\n2025-10-28 23:19:48.703 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:19:48.708 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b0a3d301-c395-4807-96e0-64fd0324d10b] remote server not configured\n2025-10-28 23:19:48.708 [info] [command][a39560d5-7ebb-489a-bef7-cb0323439d25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a39560d5-7ebb-489a-bef7-cb0323439d25""}\n2025-10-28 23:19:48.708 [error] [command][a39560d5-7ebb-489a-bef7-cb0323439d25] Socket error: Error: read ECONNRESET\n2025-10-28 23:19:48.708 [info] [command][a39560d5-7ebb-489a-bef7-cb0323439d25] Socket close event received\n2025-10-28 23:19:48.709 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a39560d5-7ebb-489a-bef7-cb0323439d25] Socket closed without exit code\n2025-10-28 23:20:48.719 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:20:48.721 [info] [command][f5b91dcb-c58d-4711-981c-8110a6a67039] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f5b91dcb-c58d-4711-981c-8110a6a67039""}\n2025-10-28 23:20:48.721 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a53cc5e9-270b-476a-b0f0-41ac9cb46c4d] remote server not configured\n2025-10-28 23:20:48.722 [error] [command][f5b91dcb-c58d-4711-981c-8110a6a67039] Socket error: Error: read ECONNRESET\n2025-10-28 23:20:48.722 [info] [command][f5b91dcb-c58d-4711-981c-8110a6a67039] Socket close event received\n2025-10-28 23:20:48.723 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f5b91dcb-c58d-4711-981c-8110a6a67039] Socket closed without exit code\n2025-10-28 23:21:48.729 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:21:48.731 [info] [command][622d2a36-c4e4-46e7-bba7-c947fca47c11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""622d2a36-c4e4-46e7-bba7-c947fca47c11""}\n2025-10-28 23:21:48.733 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7e3ee838-fc2a-4612-a743-aad092b21a14] remote server not configured\n2025-10-28 23:21:48.733 [error] [command][622d2a36-c4e4-46e7-bba7-c947fca47c11] Socket error: Error: read ECONNRESET\n2025-10-28 23:21:48.734 [info] [command][622d2a36-c4e4-46e7-bba7-c947fca47c11] Socket close event received\n2025-10-28 23:21:48.734 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][622d2a36-c4e4-46e7-bba7-c947fca47c11] Socket closed without exit code\n2025-10-28 23:22:48.743 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:22:48.746 [info] [command][04c61391-6c4f-45ad-8701-8ebf5f6f832d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""04c61391-6c4f-45ad-8701-8ebf5f6f832d""}\n2025-10-28 23:22:48.747 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7531cd61-d416-4412-a731-7d98cf7f3541] remote server not configured\n2025-10-28 23:22:48.747 [error] [command][04c61391-6c4f-45ad-8701-8ebf5f6f832d] Socket error: Error: read ECONNRESET\n2025-10-28 23:22:48.747 [info] [command][04c61391-6c4f-45ad-8701-8ebf5f6f832d] Socket close event received\n2025-10-28 23:22:48.747 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][04c61391-6c4f-45ad-8701-8ebf5f6f832d] Socket closed without exit code\n2025-10-28 23:23:48.752 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:23:48.755 [info] [command][495d2234-fa2a-47af-97ca-7146f36037e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""495d2234-fa2a-47af-97ca-7146f36037e3""}\n2025-10-28 23:23:48.755 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ca63ef9c-5cda-45c4-a401-63e480a01762] remote server not configured\n2025-10-28 23:23:48.756 [error] [command][495d2234-fa2a-47af-97ca-7146f36037e3] Socket error: Error: read ECONNRESET\n2025-10-28 23:23:48.756 [info] [command][495d2234-fa2a-47af-97ca-7146f36037e3] Socket close event received\n2025-10-28 23:23:48.756 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][495d2234-fa2a-47af-97ca-7146f36037e3] Socket closed without exit code\n2025-10-28 23:24:48.767 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:24:48.769 [info] [command][e879ddc0-1f6d-486e-80c7-6c2c159a5a79] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e879ddc0-1f6d-486e-80c7-6c2c159a5a79""}\n2025-10-28 23:24:48.770 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6bd91b72-0b85-4ce2-ba62-1a080a4d0f7b] remote server not configured\n2025-10-28 23:24:48.770 [error] [command][e879ddc0-1f6d-486e-80c7-6c2c159a5a79] Socket error: Error: read ECONNRESET\n2025-10-28 23:24:48.771 [info] [command][e879ddc0-1f6d-486e-80c7-6c2c159a5a79] Socket close event received\n2025-10-28 23:24:48.771 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e879ddc0-1f6d-486e-80c7-6c2c159a5a79] Socket closed without exit code\n2025-10-28 23:25:48.782 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:25:48.784 [info] [command][7e7d1658-03e5-4aa0-b7b9-f9b58b9dbbec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7e7d1658-03e5-4aa0-b7b9-f9b58b9dbbec""}\n2025-10-28 23:25:48.784 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3ca97862-4e3f-4081-a1d3-134ade8f337f] remote server not configured\n2025-10-28 23:25:48.785 [error] [command][7e7d1658-03e5-4aa0-b7b9-f9b58b9dbbec] Socket error: Error: read ECONNRESET\n2025-10-28 23:25:48.785 [info] [command][7e7d1658-03e5-4aa0-b7b9-f9b58b9dbbec] Socket close event received\n2025-10-28 23:25:48.786 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7e7d1658-03e5-4aa0-b7b9-f9b58b9dbbec] Socket closed without exit code\n2025-10-28 23:26:48.797 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:26:48.800 [info] [command][c2beef07-e1b5-4d6d-ac88-973f99a54451] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c2beef07-e1b5-4d6d-ac88-973f99a54451""}\n2025-10-28 23:26:48.800 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][59bb7a72-01c7-41f1-a62e-575cca783eed] remote server not configured\n2025-10-28 23:26:48.801 [error] [command][c2beef07-e1b5-4d6d-ac88-973f99a54451] Socket error: Error: read ECONNRESET\n2025-10-28 23:26:48.801 [info] [command][c2beef07-e1b5-4d6d-ac88-973f99a54451] Socket close event received\n2025-10-28 23:26:48.801 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c2beef07-e1b5-4d6d-ac88-973f99a54451] Socket closed without exit code\n2025-10-28 23:27:48.812 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:27:48.813 [info] [command][ca9f39f6-1806-43a1-8882-c73ea08a5fff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ca9f39f6-1806-43a1-8882-c73ea08a5fff""}\n2025-10-28 23:27:48.813 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ac96c226-fbfb-4bc6-9358-e773b39213d6] remote server not configured\n2025-10-28 23:27:48.814 [error] [command][ca9f39f6-1806-43a1-8882-c73ea08a5fff] Socket error: Error: read ECONNRESET\n2025-10-28 23:27:48.814 [info] [command][ca9f39f6-1806-43a1-8882-c73ea08a5fff] Socket close event received\n2025-10-28 23:27:48.814 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ca9f39f6-1806-43a1-8882-c73ea08a5fff] Socket closed without exit code\n2025-10-28 23:28:48.821 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:28:48.824 [info] [command][5deb2d39-fe69-4e7b-9f77-dd7205a67f34] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5deb2d39-fe69-4e7b-9f77-dd7205a67f34""}\n2025-10-28 23:28:48.824 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fc2c5293-74e2-4160-85e3-d327e9c176ef] remote server not configured\n2025-10-28 23:28:48.825 [error] [command][5deb2d39-fe69-4e7b-9f77-dd7205a67f34] Socket error: Error: read ECONNRESET\n2025-10-28 23:28:48.825 [info] [command][5deb2d39-fe69-4e7b-9f77-dd7205a67f34] Socket close event received\n2025-10-28 23:28:48.825 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5deb2d39-fe69-4e7b-9f77-dd7205a67f34] Socket closed without exit code\n2025-10-28 23:29:48.837 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:29:48.837 [info] [command][0a322b20-4d6e-4d5e-ab15-98402bd3dd9c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0a322b20-4d6e-4d5e-ab15-98402bd3dd9c""}\n2025-10-28 23:29:48.837 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5f03d673-b652-4e49-a81d-b257087a9c93] remote server not configured\n2025-10-28 23:29:48.838 [error] [command][0a322b20-4d6e-4d5e-ab15-98402bd3dd9c] Socket error: Error: read ECONNRESET\n2025-10-28 23:29:48.838 [info] [command][0a322b20-4d6e-4d5e-ab15-98402bd3dd9c] Socket close event received\n2025-10-28 23:29:48.838 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0a322b20-4d6e-4d5e-ab15-98402bd3dd9c] Socket closed without exit code\n2025-10-28 23:30:48.843 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:30:48.845 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][534db455-1325-4594-999e-7ec1be343e67] remote server not configured\n2025-10-28 23:30:48.845 [info] [command][2f98ce2f-0711-4c4e-9c2a-c0d6b6d2a20e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2f98ce2f-0711-4c4e-9c2a-c0d6b6d2a20e""}\n2025-10-28 23:30:48.846 [error] [command][2f98ce2f-0711-4c4e-9c2a-c0d6b6d2a20e] Socket error: Error: read ECONNRESET\n2025-10-28 23:30:48.846 [info] [command][2f98ce2f-0711-4c4e-9c2a-c0d6b6d2a20e] Socket close event received\n2025-10-28 23:30:48.846 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2f98ce2f-0711-4c4e-9c2a-c0d6b6d2a20e] Socket closed without exit code\n2025-10-28 23:31:48.858 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:31:48.859 [info] [command][1ca2592c-9107-4f00-9f23-a468e9b8f0be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1ca2592c-9107-4f00-9f23-a468e9b8f0be""}\n2025-10-28 23:31:48.860 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1c827fb2-d215-45a5-9513-28cbea2dcacc] remote server not configured\n2025-10-28 23:31:48.860 [error] [command][1ca2592c-9107-4f00-9f23-a468e9b8f0be] Socket error: Error: read ECONNRESET\n2025-10-28 23:31:48.861 [info] [command][1ca2592c-9107-4f00-9f23-a468e9b8f0be] Socket close event received\n2025-10-28 23:31:48.861 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1ca2592c-9107-4f00-9f23-a468e9b8f0be] Socket closed without exit code\n2025-10-28 23:32:48.864 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:32:48.867 [info] [command][cd18ff57-7ee3-4200-a9be-ec6a67a6770a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cd18ff57-7ee3-4200-a9be-ec6a67a6770a""}\n2025-10-28 23:32:48.867 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][bdef5af5-2612-4fc6-b334-cd73411f4d07] remote server not configured\n2025-10-28 23:32:48.868 [error] [command][cd18ff57-7ee3-4200-a9be-ec6a67a6770a] Socket error: Error: read ECONNRESET\n2025-10-28 23:32:48.868 [info] [command][cd18ff57-7ee3-4200-a9be-ec6a67a6770a] Socket close event received\n2025-10-28 23:32:48.868 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cd18ff57-7ee3-4200-a9be-ec6a67a6770a] Socket closed without exit code\n2025-10-28 23:33:48.874 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:33:48.877 [info] [command][c52497fc-ae41-4d00-802a-d1e6f706b19a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c52497fc-ae41-4d00-802a-d1e6f706b19a""}\n2025-10-28 23:33:48.878 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][54395f41-cd77-4ec7-bfa9-c3a55c40b359] remote server not configured\n2025-10-28 23:33:48.879 [error] [command][c52497fc-ae41-4d00-802a-d1e6f706b19a] Socket error: Error: read ECONNRESET\n2025-10-28 23:33:48.879 [info] [command][c52497fc-ae41-4d00-802a-d1e6f706b19a] Socket close event received\n2025-10-28 23:33:48.879 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c52497fc-ae41-4d00-802a-d1e6f706b19a] Socket closed without exit code\n2025-10-28 23:34:48.890 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:34:48.892 [info] [command][e5b26328-8098-408c-b6a6-9b5fe3b5ea72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e5b26328-8098-408c-b6a6-9b5fe3b5ea72""}\n2025-10-28 23:34:48.892 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0d1bf72e-0f0f-433c-ac56-ed1a46de5efe] remote server not configured\n2025-10-28 23:34:48.893 [error] [command][e5b26328-8098-408c-b6a6-9b5fe3b5ea72] Socket error: Error: read ECONNRESET\n2025-10-28 23:34:48.893 [info] [command][e5b26328-8098-408c-b6a6-9b5fe3b5ea72] Socket close event received\n2025-10-28 23:34:48.893 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e5b26328-8098-408c-b6a6-9b5fe3b5ea72] Socket closed without exit code\n2025-10-28 23:35:48.904 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:35:48.906 [info] [command][07602725-9213-428b-9281-1b1a3035f58f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""07602725-9213-428b-9281-1b1a3035f58f""}\n2025-10-28 23:35:48.906 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][909ab8cb-f12a-45ec-8659-5dabb004de32] remote server not configured\n2025-10-28 23:35:48.907 [error] [command][07602725-9213-428b-9281-1b1a3035f58f] Socket error: Error: read ECONNRESET\n2025-10-28 23:35:48.907 [info] [command][07602725-9213-428b-9281-1b1a3035f58f] Socket close event received\n2025-10-28 23:35:48.908 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][07602725-9213-428b-9281-1b1a3035f58f] Socket closed without exit code\n2025-10-28 23:36:48.909 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:36:48.911 [info] [command][6cd9c623-f09e-4f1a-942b-f35187d043e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6cd9c623-f09e-4f1a-942b-f35187d043e2""}\n2025-10-28 23:36:48.912 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2ae525e3-2baf-423d-8648-6058dd0e957d] remote server not configured\n2025-10-28 23:36:48.912 [error] [command][6cd9c623-f09e-4f1a-942b-f35187d043e2] Socket error: Error: read ECONNRESET\n2025-10-28 23:36:48.912 [info] [command][6cd9c623-f09e-4f1a-942b-f35187d043e2] Socket close event received\n2025-10-28 23:36:48.913 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6cd9c623-f09e-4f1a-942b-f35187d043e2] Socket closed without exit code\n2025-10-28 23:37:48.923 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:37:48.925 [info] [command][aba7c04d-ed73-4320-84be-6cadadc23f23] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""aba7c04d-ed73-4320-84be-6cadadc23f23""}\n2025-10-28 23:37:48.926 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][408b4415-9271-4c5e-91d9-e868ea984202] remote server not configured\n2025-10-28 23:37:48.927 [error] [command][aba7c04d-ed73-4320-84be-6cadadc23f23] Socket error: Error: read ECONNRESET\n2025-10-28 23:37:48.927 [info] [command][aba7c04d-ed73-4320-84be-6cadadc23f23] Socket close event received\n2025-10-28 23:37:48.927 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][aba7c04d-ed73-4320-84be-6cadadc23f23] Socket closed without exit code\n2025-10-28 23:38:48.938 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:38:48.940 [info] [command][de21961b-3c9a-4e20-b3f0-25ef7e51af2d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""de21961b-3c9a-4e20-b3f0-25ef7e51af2d""}\n2025-10-28 23:38:48.941 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3655c98b-4f41-4f3f-afe7-05eae75c3404] remote server not configured\n2025-10-28 23:38:48.941 [error] [command][de21961b-3c9a-4e20-b3f0-25ef7e51af2d] Socket error: Error: read ECONNRESET\n2025-10-28 23:38:48.942 [info] [command][de21961b-3c9a-4e20-b3f0-25ef7e51af2d] Socket close event received\n2025-10-28 23:38:48.942 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][de21961b-3c9a-4e20-b3f0-25ef7e51af2d] Socket closed without exit code\n2025-10-28 23:39:48.953 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:39:48.955 [info] [command][6bb9f2c9-789d-4e95-803a-2b40a3755bce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6bb9f2c9-789d-4e95-803a-2b40a3755bce""}\n2025-10-28 23:39:48.956 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][78f13279-8dd4-4068-a91d-d9bd0d292af4] remote server not configured\n2025-10-28 23:39:48.957 [error] [command][6bb9f2c9-789d-4e95-803a-2b40a3755bce] Socket error: Error: read ECONNRESET\n2025-10-28 23:39:48.957 [info] [command][6bb9f2c9-789d-4e95-803a-2b40a3755bce] Socket close event received\n2025-10-28 23:39:48.957 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6bb9f2c9-789d-4e95-803a-2b40a3755bce] Socket closed without exit code\n2025-10-28 23:40:48.968 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:40:48.970 [info] [command][5790aa52-68f9-4df4-b92d-0db7ee0392e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5790aa52-68f9-4df4-b92d-0db7ee0392e4""}\n2025-10-28 23:40:48.970 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b1d85796-15cb-441a-9966-3f30dd9cb7cf] remote server not configured\n2025-10-28 23:40:48.970 [error] [command][5790aa52-68f9-4df4-b92d-0db7ee0392e4] Socket error: Error: read ECONNRESET\n2025-10-28 23:40:48.970 [info] [command][5790aa52-68f9-4df4-b92d-0db7ee0392e4] Socket close event received\n2025-10-28 23:40:48.970 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5790aa52-68f9-4df4-b92d-0db7ee0392e4] Socket closed without exit code\n2025-10-28 23:41:48.982 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:41:48.983 [info] [command][d477dffb-6845-4140-8ed1-270c776ac5a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d477dffb-6845-4140-8ed1-270c776ac5a7""}\n2025-10-28 23:41:48.983 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5be52089-7b85-4c2d-bc55-9a961d43385b] remote server not configured\n2025-10-28 23:41:48.983 [error] [command][d477dffb-6845-4140-8ed1-270c776ac5a7] Socket error: Error: read ECONNRESET\n2025-10-28 23:41:48.983 [info] [command][d477dffb-6845-4140-8ed1-270c776ac5a7] Socket close event received\n2025-10-28 23:41:48.983 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d477dffb-6845-4140-8ed1-270c776ac5a7] Socket closed without exit code\n2025-10-28 23:42:48.994 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:42:48.995 [info] [command][7745bcb9-c502-4cb7-8732-3674f9832169] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7745bcb9-c502-4cb7-8732-3674f9832169""}\n2025-10-28 23:42:48.995 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a4b4e444-6011-4090-b990-375fe05db539] remote server not configured\n2025-10-28 23:42:48.996 [error] [command][7745bcb9-c502-4cb7-8732-3674f9832169] Socket error: Error: read ECONNRESET\n2025-10-28 23:42:48.996 [info] [command][7745bcb9-c502-4cb7-8732-3674f9832169] Socket close event received\n2025-10-28 23:42:48.996 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7745bcb9-c502-4cb7-8732-3674f9832169] Socket closed without exit code\n2025-10-28 23:43:49.008 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:43:49.011 [info] [command][e58a382d-1bb8-4c3d-afc5-d0adedb62340] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e58a382d-1bb8-4c3d-afc5-d0adedb62340""}\n2025-10-28 23:43:49.012 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][98f5d627-42cb-4563-a5b8-4d43ef6b5fe7] remote server not configured\n2025-10-28 23:43:49.012 [error] [command][e58a382d-1bb8-4c3d-afc5-d0adedb62340] Socket error: Error: read ECONNRESET\n2025-10-28 23:43:49.013 [info] [command][e58a382d-1bb8-4c3d-afc5-d0adedb62340] Socket close event received\n2025-10-28 23:43:49.013 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e58a382d-1bb8-4c3d-afc5-d0adedb62340] Socket closed without exit code\n2025-10-28 23:44:49.018 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:44:49.021 [info] [command][d3d8ce65-a700-44ce-ab16-d07e46d28bc2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d3d8ce65-a700-44ce-ab16-d07e46d28bc2""}\n2025-10-28 23:44:49.022 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][83d4dea9-ae05-46b3-9c42-75964d5479ff] remote server not configured\n2025-10-28 23:44:49.023 [error] [command][d3d8ce65-a700-44ce-ab16-d07e46d28bc2] Socket error: Error: read ECONNRESET\n2025-10-28 23:44:49.023 [info] [command][d3d8ce65-a700-44ce-ab16-d07e46d28bc2] Socket close event received\n2025-10-28 23:44:49.023 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d3d8ce65-a700-44ce-ab16-d07e46d28bc2] Socket closed without exit code\n2025-10-28 23:45:49.034 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:45:49.036 [info] [command][6f010adf-299f-48a1-818c-aa97d9dd9797] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6f010adf-299f-48a1-818c-aa97d9dd9797""}\n2025-10-28 23:45:49.037 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][000d0133-b211-415d-aed4-7cc2dad30cda] remote server not configured\n2025-10-28 23:45:49.037 [error] [command][6f010adf-299f-48a1-818c-aa97d9dd9797] Socket error: Error: read ECONNRESET\n2025-10-28 23:45:49.038 [info] [command][6f010adf-299f-48a1-818c-aa97d9dd9797] Socket close event received\n2025-10-28 23:45:49.038 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6f010adf-299f-48a1-818c-aa97d9dd9797] Socket closed without exit code\n2025-10-28 23:46:49.041 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:46:49.042 [info] [command][022c348a-0b48-45d8-901a-137c679848f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""022c348a-0b48-45d8-901a-137c679848f2""}\n2025-10-28 23:46:49.043 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3ba6e809-932d-4f51-a81c-8193ab8ca581] remote server not configured\n2025-10-28 23:46:49.043 [error] [command][022c348a-0b48-45d8-901a-137c679848f2] Socket error: Error: read ECONNRESET\n2025-10-28 23:46:49.044 [info] [command][022c348a-0b48-45d8-901a-137c679848f2] Socket close event received\n2025-10-28 23:46:49.044 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][022c348a-0b48-45d8-901a-137c679848f2] Socket closed without exit code\n2025-10-28 23:47:49.055 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:47:49.057 [info] [command][86aeb047-ec3b-47b5-9b31-170583f51309] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""86aeb047-ec3b-47b5-9b31-170583f51309""}\n2025-10-28 23:47:49.058 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fb5bb9cc-acf8-464a-8080-ba9e08ba0f85] remote server not configured\n2025-10-28 23:47:49.058 [error] [command][86aeb047-ec3b-47b5-9b31-170583f51309] Socket error: Error: read ECONNRESET\n2025-10-28 23:47:49.058 [info] [command][86aeb047-ec3b-47b5-9b31-170583f51309] Socket close event received\n2025-10-28 23:47:49.059 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][86aeb047-ec3b-47b5-9b31-170583f51309] Socket closed without exit code\n2025-10-28 23:48:49.061 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:48:49.064 [info] [command][ee4522ba-b38b-4336-bcf4-a11a4e2ca6c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ee4522ba-b38b-4336-bcf4-a11a4e2ca6c2""}\n2025-10-28 23:48:49.064 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][65ddad68-56f9-4f11-ad61-1e67f1c13b79] remote server not configured\n2025-10-28 23:48:49.065 [error] [command][ee4522ba-b38b-4336-bcf4-a11a4e2ca6c2] Socket error: Error: read ECONNRESET\n2025-10-28 23:48:49.065 [info] [command][ee4522ba-b38b-4336-bcf4-a11a4e2ca6c2] Socket close event received\n2025-10-28 23:48:49.065 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ee4522ba-b38b-4336-bcf4-a11a4e2ca6c2] Socket closed without exit code\n2025-10-28 23:49:49.086 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:49:49.089 [info] [command][6b717cbc-7cab-43ff-9387-bcfc129bfb11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6b717cbc-7cab-43ff-9387-bcfc129bfb11""}\n2025-10-28 23:49:49.089 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a915a110-f80d-464f-a761-5fd17e4fc4d4] remote server not configured\n2025-10-28 23:49:49.090 [error] [command][6b717cbc-7cab-43ff-9387-bcfc129bfb11] Socket error: Error: read ECONNRESET\n2025-10-28 23:49:49.091 [info] [command][6b717cbc-7cab-43ff-9387-bcfc129bfb11] Socket close event received\n2025-10-28 23:49:49.091 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6b717cbc-7cab-43ff-9387-bcfc129bfb11] Socket closed without exit code\n2025-10-28 23:50:49.100 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:50:49.103 [info] [command][a02bd307-163c-4149-b7e5-d42cd8e5f901] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a02bd307-163c-4149-b7e5-d42cd8e5f901""}\n2025-10-28 23:50:49.104 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5f54da8a-29b8-48bd-addb-b757e6b62907] remote server not configured\n2025-10-28 23:50:49.104 [error] [command][a02bd307-163c-4149-b7e5-d42cd8e5f901] Socket error: Error: read ECONNRESET\n2025-10-28 23:50:49.104 [info] [command][a02bd307-163c-4149-b7e5-d42cd8e5f901] Socket close event received\n2025-10-28 23:50:49.105 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a02bd307-163c-4149-b7e5-d42cd8e5f901] Socket closed without exit code\n2025-10-28 23:51:49.109 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:51:49.111 [info] [command][cbd69b6b-4eea-4dec-a7fb-0836e933c24f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cbd69b6b-4eea-4dec-a7fb-0836e933c24f""}\n2025-10-28 23:51:49.112 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][28025fd5-c095-4d07-b58e-fa01604e7b1f] remote server not configured\n2025-10-28 23:51:49.112 [error] [command][cbd69b6b-4eea-4dec-a7fb-0836e933c24f] Socket error: Error: read ECONNRESET\n2025-10-28 23:51:49.113 [info] [command][cbd69b6b-4eea-4dec-a7fb-0836e933c24f] Socket close event received\n2025-10-28 23:51:49.113 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cbd69b6b-4eea-4dec-a7fb-0836e933c24f] Socket closed without exit code\n2025-10-28 23:52:49.115 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:52:49.117 [info] [command][8517c0d6-26ca-40f3-ac92-af6fb513681b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8517c0d6-26ca-40f3-ac92-af6fb513681b""}\n2025-10-28 23:52:49.118 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5320de4b-5094-4de6-a6e6-d4a635c8f066] remote server not configured\n2025-10-28 23:52:49.118 [error] [command][8517c0d6-26ca-40f3-ac92-af6fb513681b] Socket error: Error: read ECONNRESET\n2025-10-28 23:52:49.119 [info] [command][8517c0d6-26ca-40f3-ac92-af6fb513681b] Socket close event received\n2025-10-28 23:52:49.119 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8517c0d6-26ca-40f3-ac92-af6fb513681b] Socket closed without exit code\n2025-10-28 23:53:49.130 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:53:49.132 [info] [command][0678f8bb-a51f-4bd7-bd23-5dabbd651560] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0678f8bb-a51f-4bd7-bd23-5dabbd651560""}\n2025-10-28 23:53:49.133 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2f93d554-2e83-470a-99cc-6a891fe96c2c] remote server not configured\n2025-10-28 23:53:49.133 [error] [command][0678f8bb-a51f-4bd7-bd23-5dabbd651560] Socket error: Error: read ECONNRESET\n2025-10-28 23:53:49.134 [info] [command][0678f8bb-a51f-4bd7-bd23-5dabbd651560] Socket close event received\n2025-10-28 23:53:49.134 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0678f8bb-a51f-4bd7-bd23-5dabbd651560] Socket closed without exit code\n2025-10-28 23:54:49.137 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:54:49.139 [info] [command][4a6338ac-d36f-4fd0-84ea-58bc1d2112c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4a6338ac-d36f-4fd0-84ea-58bc1d2112c2""}\n2025-10-28 23:54:49.139 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ec891d71-6d13-4698-a45e-3b83a68dc6b9] remote server not configured\n2025-10-28 23:54:49.140 [error] [command][4a6338ac-d36f-4fd0-84ea-58bc1d2112c2] Socket error: Error: read ECONNRESET\n2025-10-28 23:54:49.140 [info] [command][4a6338ac-d36f-4fd0-84ea-58bc1d2112c2] Socket close event received\n2025-10-28 23:54:49.140 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4a6338ac-d36f-4fd0-84ea-58bc1d2112c2] Socket closed without exit code\n2025-10-28 23:55:49.148 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:55:49.151 [info] [command][a1c961ea-c1b5-4b7e-aa50-05bcdfc34973] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a1c961ea-c1b5-4b7e-aa50-05bcdfc34973""}\n2025-10-28 23:55:49.151 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][afb0ef74-213b-4346-b519-12452035682c] remote server not configured\n2025-10-28 23:55:49.152 [error] [command][a1c961ea-c1b5-4b7e-aa50-05bcdfc34973] Socket error: Error: read ECONNRESET\n2025-10-28 23:55:49.152 [info] [command][a1c961ea-c1b5-4b7e-aa50-05bcdfc34973] Socket close event received\n2025-10-28 23:55:49.152 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a1c961ea-c1b5-4b7e-aa50-05bcdfc34973] Socket closed without exit code\n2025-10-28 23:56:49.163 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:56:49.165 [info] [command][eab5c824-b0ed-4931-8027-4de2eeb55c70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eab5c824-b0ed-4931-8027-4de2eeb55c70""}\n2025-10-28 23:56:49.165 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d56e2db3-9715-46b2-b827-a209f4ad480e] remote server not configured\n2025-10-28 23:56:49.166 [error] [command][eab5c824-b0ed-4931-8027-4de2eeb55c70] Socket error: Error: read ECONNRESET\n2025-10-28 23:56:49.166 [info] [command][eab5c824-b0ed-4931-8027-4de2eeb55c70] Socket close event received\n2025-10-28 23:56:49.167 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][eab5c824-b0ed-4931-8027-4de2eeb55c70] Socket closed without exit code\n2025-10-28 23:57:49.174 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:57:49.176 [info] [command][95f48a92-ea9d-40fa-a270-66232b559611] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""95f48a92-ea9d-40fa-a270-66232b559611""}\n2025-10-28 23:57:49.177 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d036885a-be48-4b7d-ae58-306acf2d43c7] remote server not configured\n2025-10-28 23:57:49.177 [error] [command][95f48a92-ea9d-40fa-a270-66232b559611] Socket error: Error: read ECONNRESET\n2025-10-28 23:57:49.177 [info] [command][95f48a92-ea9d-40fa-a270-66232b559611] Socket close event received\n2025-10-28 23:57:49.178 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][95f48a92-ea9d-40fa-a270-66232b559611] Socket closed without exit code\n2025-10-28 23:58:49.188 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:58:49.190 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][30a5ff8b-bc22-4be8-8d33-663c4fdb0556] remote server not configured\n2025-10-28 23:58:49.191 [info] [command][fdf42a8a-6590-42ca-97ce-147203650401] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fdf42a8a-6590-42ca-97ce-147203650401""}\n2025-10-28 23:58:49.192 [error] [command][fdf42a8a-6590-42ca-97ce-147203650401] Socket error: Error: read ECONNRESET\n2025-10-28 23:58:49.192 [info] [command][fdf42a8a-6590-42ca-97ce-147203650401] Socket close event received\n2025-10-28 23:58:49.192 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fdf42a8a-6590-42ca-97ce-147203650401] Socket closed without exit code\n2025-10-28 23:59:49.196 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-28 23:59:49.198 [info] [command][9067e766-8a4b-4f68-b58c-9718990eba78] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9067e766-8a4b-4f68-b58c-9718990eba78""}\n2025-10-28 23:59:49.199 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2e9be188-a783-4d3f-aac8-03cf19820c6d] remote server not configured\n2025-10-28 23:59:49.199 [error] [command][9067e766-8a4b-4f68-b58c-9718990eba78] Socket error: Error: read ECONNRESET\n2025-10-28 23:59:49.200 [info] [command][9067e766-8a4b-4f68-b58c-9718990eba78] Socket close event received\n2025-10-28 23:59:49.200 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9067e766-8a4b-4f68-b58c-9718990eba78] Socket closed without exit code\n2025-10-29 00:00:49.210 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:00:49.214 [info] [command][2fa1e14b-19d0-4575-8f3e-a55ef89694c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2fa1e14b-19d0-4575-8f3e-a55ef89694c9""}\n2025-10-29 00:00:49.214 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0a853011-0c0d-4542-87c6-d6060c49bd50] remote server not configured\n2025-10-29 00:00:49.216 [error] [command][2fa1e14b-19d0-4575-8f3e-a55ef89694c9] Socket error: Error: read ECONNRESET\n2025-10-29 00:00:49.216 [info] [command][2fa1e14b-19d0-4575-8f3e-a55ef89694c9] Socket close event received\n2025-10-29 00:00:49.216 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2fa1e14b-19d0-4575-8f3e-a55ef89694c9] Socket closed without exit code\n2025-10-29 00:01:49.227 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:01:49.229 [info] [command][da96120e-dec6-4436-9803-e4202c908b9f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""da96120e-dec6-4436-9803-e4202c908b9f""}\n2025-10-29 00:01:49.230 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4b2ec6e7-50a9-4ad5-8b23-d75bc00e83b2] remote server not configured\n2025-10-29 00:01:49.231 [error] [command][da96120e-dec6-4436-9803-e4202c908b9f] Socket error: Error: read ECONNRESET\n2025-10-29 00:01:49.231 [info] [command][da96120e-dec6-4436-9803-e4202c908b9f] Socket close event received\n2025-10-29 00:01:49.231 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][da96120e-dec6-4436-9803-e4202c908b9f] Socket closed without exit code\n2025-10-29 00:02:49.242 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:02:49.243 [info] [command][a95112d1-8c7f-42bd-b8e2-d1ee0d576e50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a95112d1-8c7f-42bd-b8e2-d1ee0d576e50""}\n2025-10-29 00:02:49.245 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ba5684a4-e21e-4dfc-9243-80069e668f38] remote server not configured\n2025-10-29 00:02:49.245 [error] [command][a95112d1-8c7f-42bd-b8e2-d1ee0d576e50] Socket error: Error: read ECONNRESET\n2025-10-29 00:02:49.245 [info] [command][a95112d1-8c7f-42bd-b8e2-d1ee0d576e50] Socket close event received\n2025-10-29 00:02:49.246 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a95112d1-8c7f-42bd-b8e2-d1ee0d576e50] Socket closed without exit code\n2025-10-29 00:03:49.256 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:03:49.259 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][76078b9d-2007-4e80-9926-271c091cfdf8] remote server not configured\n2025-10-29 00:03:49.260 [info] [command][011edbc4-1067-4a6d-a1e1-3e579955d73f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""011edbc4-1067-4a6d-a1e1-3e579955d73f""}\n2025-10-29 00:03:49.260 [error] [command][011edbc4-1067-4a6d-a1e1-3e579955d73f] Socket error: Error: read ECONNRESET\n2025-10-29 00:03:49.261 [info] [command][011edbc4-1067-4a6d-a1e1-3e579955d73f] Socket close event received\n2025-10-29 00:03:49.261 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][011edbc4-1067-4a6d-a1e1-3e579955d73f] Socket closed without exit code\n2025-10-29 00:04:49.271 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:04:49.273 [info] [command][2937ae18-980a-4d0a-9967-7bb1a1fb759c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2937ae18-980a-4d0a-9967-7bb1a1fb759c""}\n2025-10-29 00:04:49.273 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][db0d9b7b-6207-4167-9ac9-709033511c71] remote server not configured\n2025-10-29 00:04:49.274 [error] [command][2937ae18-980a-4d0a-9967-7bb1a1fb759c] Socket error: Error: read ECONNRESET\n2025-10-29 00:04:49.274 [info] [command][2937ae18-980a-4d0a-9967-7bb1a1fb759c] Socket close event received\n2025-10-29 00:04:49.274 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2937ae18-980a-4d0a-9967-7bb1a1fb759c] Socket closed without exit code\n2025-10-29 00:05:49.285 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:05:49.286 [info] [command][55ff4248-fac1-4271-9214-f7996f0e021e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""55ff4248-fac1-4271-9214-f7996f0e021e""}\n2025-10-29 00:05:49.286 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5eacb67e-e394-4d9c-9060-b51252af51dd] remote server not configured\n2025-10-29 00:05:49.286 [error] [command][55ff4248-fac1-4271-9214-f7996f0e021e] Socket error: Error: read ECONNRESET\n2025-10-29 00:05:49.286 [info] [command][55ff4248-fac1-4271-9214-f7996f0e021e] Socket close event received\n2025-10-29 00:05:49.286 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][55ff4248-fac1-4271-9214-f7996f0e021e] Socket closed without exit code\n2025-10-29 00:06:49.297 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:06:49.299 [info] [command][06cbbdba-f6e4-41ec-bd47-1857d09fa188] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""06cbbdba-f6e4-41ec-bd47-1857d09fa188""}\n2025-10-29 00:06:49.300 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c40e23e1-c61a-4d99-a0e4-251d31a5b2f9] remote server not configured\n2025-10-29 00:06:49.300 [error] [command][06cbbdba-f6e4-41ec-bd47-1857d09fa188] Socket error: Error: read ECONNRESET\n2025-10-29 00:06:49.300 [info] [command][06cbbdba-f6e4-41ec-bd47-1857d09fa188] Socket close event received\n2025-10-29 00:06:49.301 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][06cbbdba-f6e4-41ec-bd47-1857d09fa188] Socket closed without exit code\n2025-10-29 00:07:49.312 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:07:49.314 [info] [command][e7322cb5-c87f-42b4-bbb4-c2cbb0444fa7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e7322cb5-c87f-42b4-bbb4-c2cbb0444fa7""}\n2025-10-29 00:07:49.314 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2819da47-eca8-438f-b1a0-17ceaa188fcf] remote server not configured\n2025-10-29 00:07:49.315 [error] [command][e7322cb5-c87f-42b4-bbb4-c2cbb0444fa7] Socket error: Error: read ECONNRESET\n2025-10-29 00:07:49.315 [info] [command][e7322cb5-c87f-42b4-bbb4-c2cbb0444fa7] Socket close event received\n2025-10-29 00:07:49.315 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e7322cb5-c87f-42b4-bbb4-c2cbb0444fa7] Socket closed without exit code\n2025-10-29 00:08:49.326 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:08:49.329 [info] [command][ed21b736-80ff-47d2-bd99-e0c46cf8e27e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ed21b736-80ff-47d2-bd99-e0c46cf8e27e""}\n2025-10-29 00:08:49.329 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][14f68640-99fd-4bb7-9c42-f8ea587c9c3b] remote server not configured\n2025-10-29 00:08:49.330 [error] [command][ed21b736-80ff-47d2-bd99-e0c46cf8e27e] Socket error: Error: read ECONNRESET\n2025-10-29 00:08:49.330 [info] [command][ed21b736-80ff-47d2-bd99-e0c46cf8e27e] Socket close event received\n2025-10-29 00:08:49.330 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ed21b736-80ff-47d2-bd99-e0c46cf8e27e] Socket closed without exit code\n2025-10-29 00:09:49.339 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:09:49.341 [info] [command][569d0fd6-37c3-4559-827c-502c34aff1df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""569d0fd6-37c3-4559-827c-502c34aff1df""}\n2025-10-29 00:09:49.342 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e54af92b-ea7b-4688-9931-99ab603a967e] remote server not configured\n2025-10-29 00:09:49.342 [error] [command][569d0fd6-37c3-4559-827c-502c34aff1df] Socket error: Error: read ECONNRESET\n2025-10-29 00:09:49.342 [info] [command][569d0fd6-37c3-4559-827c-502c34aff1df] Socket close event received\n2025-10-29 00:09:49.343 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][569d0fd6-37c3-4559-827c-502c34aff1df] Socket closed without exit code\n2025-10-29 00:10:49.347 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:10:49.350 [info] [command][ab6be604-de4d-4cea-ab10-3f4687ccde0d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ab6be604-de4d-4cea-ab10-3f4687ccde0d""}\n2025-10-29 00:10:49.351 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][50461cc1-3ca0-4dc5-90a1-59bc75b0fb73] remote server not configured\n2025-10-29 00:10:49.352 [error] [command][ab6be604-de4d-4cea-ab10-3f4687ccde0d] Socket error: Error: read ECONNRESET\n2025-10-29 00:10:49.352 [info] [command][ab6be604-de4d-4cea-ab10-3f4687ccde0d] Socket close event received\n2025-10-29 00:10:49.352 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ab6be604-de4d-4cea-ab10-3f4687ccde0d] Socket closed without exit code\n2025-10-29 00:11:49.357 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:11:49.360 [info] [command][2e684bbf-2fb9-4878-8403-63bef0f33bd7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2e684bbf-2fb9-4878-8403-63bef0f33bd7""}\n2025-10-29 00:11:49.360 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][119111dc-411b-458b-b69f-6c3d410744a8] remote server not configured\n2025-10-29 00:11:49.361 [error] [command][2e684bbf-2fb9-4878-8403-63bef0f33bd7] Socket error: Error: read ECONNRESET\n2025-10-29 00:11:49.361 [info] [command][2e684bbf-2fb9-4878-8403-63bef0f33bd7] Socket close event received\n2025-10-29 00:11:49.361 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2e684bbf-2fb9-4878-8403-63bef0f33bd7] Socket closed without exit code\n2025-10-29 00:12:49.372 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:12:49.375 [info] [command][13a054af-df36-416f-95d8-52dbac0a0dba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""13a054af-df36-416f-95d8-52dbac0a0dba""}\n2025-10-29 00:12:49.376 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][640f4177-d92a-43e8-a3d2-08ff8fc50086] remote server not configured\n2025-10-29 00:12:49.377 [error] [command][13a054af-df36-416f-95d8-52dbac0a0dba] Socket error: Error: read ECONNRESET\n2025-10-29 00:12:49.377 [info] [command][13a054af-df36-416f-95d8-52dbac0a0dba] Socket close event received\n2025-10-29 00:12:49.377 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][13a054af-df36-416f-95d8-52dbac0a0dba] Socket closed without exit code\n2025-10-29 00:13:49.382 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:13:49.385 [info] [command][ba309f61-5c41-479f-b554-8a66c36829ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ba309f61-5c41-479f-b554-8a66c36829ec""}\n2025-10-29 00:13:49.385 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][67a60b6b-215d-4136-a669-8502d76f9497] remote server not configured\n2025-10-29 00:13:49.386 [error] [command][ba309f61-5c41-479f-b554-8a66c36829ec] Socket error: Error: read ECONNRESET\n2025-10-29 00:13:49.386 [info] [command][ba309f61-5c41-479f-b554-8a66c36829ec] Socket close event received\n2025-10-29 00:13:49.387 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ba309f61-5c41-479f-b554-8a66c36829ec] Socket closed without exit code\n2025-10-29 00:14:49.391 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:14:49.392 [info] [command][764f1c9b-8aed-4217-b7ac-177f72d66b55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""764f1c9b-8aed-4217-b7ac-177f72d66b55""}\n2025-10-29 00:14:49.393 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][86448196-0489-49f1-acd4-f2db10a118bc] remote server not configured\n2025-10-29 00:14:49.393 [error] [command][764f1c9b-8aed-4217-b7ac-177f72d66b55] Socket error: Error: read ECONNRESET\n2025-10-29 00:14:49.394 [info] [command][764f1c9b-8aed-4217-b7ac-177f72d66b55] Socket close event received\n2025-10-29 00:14:49.394 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][764f1c9b-8aed-4217-b7ac-177f72d66b55] Socket closed without exit code\n2025-10-29 00:15:49.402 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:15:49.403 [info] [command][6d3bec36-99e3-430c-b160-735e2d82769d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6d3bec36-99e3-430c-b160-735e2d82769d""}\n2025-10-29 00:15:49.404 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d6e3b82e-3a88-4351-84ee-49f1f2ca2245] remote server not configured\n2025-10-29 00:15:49.405 [error] [command][6d3bec36-99e3-430c-b160-735e2d82769d] Socket error: Error: read ECONNRESET\n2025-10-29 00:15:49.405 [info] [command][6d3bec36-99e3-430c-b160-735e2d82769d] Socket close event received\n2025-10-29 00:15:49.405 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6d3bec36-99e3-430c-b160-735e2d82769d] Socket closed without exit code\n2025-10-29 00:16:49.406 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:16:49.407 [info] [command][f1abae52-f965-4079-952e-b5fb3ed3d000] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f1abae52-f965-4079-952e-b5fb3ed3d000""}\n2025-10-29 00:16:49.408 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][89a256d1-a90a-4957-ab36-714e9d858332] remote server not configured\n2025-10-29 00:16:49.409 [error] [command][f1abae52-f965-4079-952e-b5fb3ed3d000] Socket error: Error: read ECONNRESET\n2025-10-29 00:16:49.409 [info] [command][f1abae52-f965-4079-952e-b5fb3ed3d000] Socket close event received\n2025-10-29 00:16:49.409 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f1abae52-f965-4079-952e-b5fb3ed3d000] Socket closed without exit code\n2025-10-29 00:17:49.413 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:17:49.414 [info] [command][87a3699c-7fec-4c8f-964c-ebbdbfbd380a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""87a3699c-7fec-4c8f-964c-ebbdbfbd380a""}\n2025-10-29 00:17:49.415 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cdc8a2b9-b696-4b8b-a494-542e06a4cb40] remote server not configured\n2025-10-29 00:17:49.416 [error] [command][87a3699c-7fec-4c8f-964c-ebbdbfbd380a] Socket error: Error: read ECONNRESET\n2025-10-29 00:17:49.416 [info] [command][87a3699c-7fec-4c8f-964c-ebbdbfbd380a] Socket close event received\n2025-10-29 00:17:49.416 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][87a3699c-7fec-4c8f-964c-ebbdbfbd380a] Socket closed without exit code\n2025-10-29 00:18:49.421 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:18:49.424 [info] [command][cb191c42-c782-47ae-8029-da17ee118a69] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cb191c42-c782-47ae-8029-da17ee118a69""}\n2025-10-29 00:18:49.425 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6363a607-a337-4275-919e-b4a5454063a4] remote server not configured\n2025-10-29 00:18:49.426 [error] [command][cb191c42-c782-47ae-8029-da17ee118a69] Socket error: Error: read ECONNRESET\n2025-10-29 00:18:49.426 [info] [command][cb191c42-c782-47ae-8029-da17ee118a69] Socket close event received\n2025-10-29 00:18:49.427 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cb191c42-c782-47ae-8029-da17ee118a69] Socket closed without exit code\n2025-10-29 00:19:49.411 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:19:49.412 [info] [command][8577e945-18c4-4337-b415-23ec06990ece] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8577e945-18c4-4337-b415-23ec06990ece""}\n2025-10-29 00:19:49.413 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ffc43bb0-7ca2-4e8e-87fc-db1c77b776c2] remote server not configured\n2025-10-29 00:19:49.414 [error] [command][8577e945-18c4-4337-b415-23ec06990ece] Socket error: Error: read ECONNRESET\n2025-10-29 00:19:49.414 [info] [command][8577e945-18c4-4337-b415-23ec06990ece] Socket close event received\n2025-10-29 00:19:49.415 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8577e945-18c4-4337-b415-23ec06990ece] Socket closed without exit code\n2025-10-29 00:20:49.425 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:20:49.428 [info] [command][d563f5de-2373-4d7d-8a10-5c6a5ff54507] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d563f5de-2373-4d7d-8a10-5c6a5ff54507""}\n2025-10-29 00:20:49.429 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][de87fa2a-4ebb-43d2-8d3f-3b355570a690] remote server not configured\n2025-10-29 00:20:49.429 [error] [command][d563f5de-2373-4d7d-8a10-5c6a5ff54507] Socket error: Error: read ECONNRESET\n2025-10-29 00:20:49.430 [info] [command][d563f5de-2373-4d7d-8a10-5c6a5ff54507] Socket close event received\n2025-10-29 00:20:49.430 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d563f5de-2373-4d7d-8a10-5c6a5ff54507] Socket closed without exit code\n2025-10-29 00:21:49.435 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:21:49.437 [info] [command][0b085bc7-12d5-460f-9de8-8d65006d2364] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0b085bc7-12d5-460f-9de8-8d65006d2364""}\n2025-10-29 00:21:49.437 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9f41476f-f5c0-46c1-8aa9-b48a204ebf28] remote server not configured\n2025-10-29 00:21:49.438 [error] [command][0b085bc7-12d5-460f-9de8-8d65006d2364] Socket error: Error: read ECONNRESET\n2025-10-29 00:21:49.438 [info] [command][0b085bc7-12d5-460f-9de8-8d65006d2364] Socket close event received\n2025-10-29 00:21:49.438 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0b085bc7-12d5-460f-9de8-8d65006d2364] Socket closed without exit code\n2025-10-29 00:22:49.449 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:22:49.452 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8a420aad-fec3-4525-ab0e-4493e50d718d] remote server not configured\n2025-10-29 00:22:49.452 [info] [command][eaf2b345-0b07-4605-991c-9214a8ee0340] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eaf2b345-0b07-4605-991c-9214a8ee0340""}\n2025-10-29 00:22:49.453 [error] [command][eaf2b345-0b07-4605-991c-9214a8ee0340] Socket error: Error: read ECONNRESET\n2025-10-29 00:22:49.453 [info] [command][eaf2b345-0b07-4605-991c-9214a8ee0340] Socket close event received\n2025-10-29 00:22:49.453 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][eaf2b345-0b07-4605-991c-9214a8ee0340] Socket closed without exit code\n2025-10-29 00:23:49.464 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:23:49.466 [info] [command][eb624b0e-8c29-498c-81b0-35b918824de5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eb624b0e-8c29-498c-81b0-35b918824de5""}\n2025-10-29 00:23:49.466 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a48940a0-93f5-4399-bab6-7e3b20e4b7d4] remote server not configured\n2025-10-29 00:23:49.467 [error] [command][eb624b0e-8c29-498c-81b0-35b918824de5] Socket error: Error: read ECONNRESET\n2025-10-29 00:23:49.467 [info] [command][eb624b0e-8c29-498c-81b0-35b918824de5] Socket close event received\n2025-10-29 00:23:49.467 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][eb624b0e-8c29-498c-81b0-35b918824de5] Socket closed without exit code\n2025-10-29 00:24:49.471 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:24:49.473 [info] [command][d34a19c3-8813-483c-b8fd-41a2abe89c6b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d34a19c3-8813-483c-b8fd-41a2abe89c6b""}\n2025-10-29 00:24:49.474 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9f380b75-d861-48f6-8d13-65d5022a8d47] remote server not configured\n2025-10-29 00:24:49.474 [error] [command][d34a19c3-8813-483c-b8fd-41a2abe89c6b] Socket error: Error: read ECONNRESET\n2025-10-29 00:24:49.474 [info] [command][d34a19c3-8813-483c-b8fd-41a2abe89c6b] Socket close event received\n2025-10-29 00:24:49.474 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d34a19c3-8813-483c-b8fd-41a2abe89c6b] Socket closed without exit code\n2025-10-29 00:25:49.485 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:25:49.487 [info] [command][cef96964-f8ce-4045-a688-9b0207892734] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cef96964-f8ce-4045-a688-9b0207892734""}\n2025-10-29 00:25:49.487 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][33f1fd78-cbb4-4310-b4cc-d6e94cf8dcb6] remote server not configured\n2025-10-29 00:25:49.488 [error] [command][cef96964-f8ce-4045-a688-9b0207892734] Socket error: Error: read ECONNRESET\n2025-10-29 00:25:49.488 [info] [command][cef96964-f8ce-4045-a688-9b0207892734] Socket close event received\n2025-10-29 00:25:49.489 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cef96964-f8ce-4045-a688-9b0207892734] Socket closed without exit code\n2025-10-29 00:26:49.492 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:26:49.493 [info] [command][143b435c-8a75-4823-92cc-05bd830d2992] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""143b435c-8a75-4823-92cc-05bd830d2992""}\n2025-10-29 00:26:49.494 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][aaff3f20-5a95-48c5-a073-136755afdeeb] remote server not configured\n2025-10-29 00:26:49.495 [error] [command][143b435c-8a75-4823-92cc-05bd830d2992] Socket error: Error: read ECONNRESET\n2025-10-29 00:26:49.495 [info] [command][143b435c-8a75-4823-92cc-05bd830d2992] Socket close event received\n2025-10-29 00:26:49.495 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][143b435c-8a75-4823-92cc-05bd830d2992] Socket closed without exit code\n2025-10-29 00:27:49.506 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:27:49.509 [info] [command][dd0f0b0c-3806-4c40-949a-bcafe8cb3009] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dd0f0b0c-3806-4c40-949a-bcafe8cb3009""}\n2025-10-29 00:27:49.509 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][81d29e85-b092-40d7-a9a6-f7e04de34712] remote server not configured\n2025-10-29 00:27:49.510 [error] [command][dd0f0b0c-3806-4c40-949a-bcafe8cb3009] Socket error: Error: read ECONNRESET\n2025-10-29 00:27:49.510 [info] [command][dd0f0b0c-3806-4c40-949a-bcafe8cb3009] Socket close event received\n2025-10-29 00:27:49.510 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][dd0f0b0c-3806-4c40-949a-bcafe8cb3009] Socket closed without exit code\n2025-10-29 00:28:49.519 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:28:49.521 [info] [command][a4c4f693-143b-4ef5-8fb8-9425aea114e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a4c4f693-143b-4ef5-8fb8-9425aea114e4""}\n2025-10-29 00:28:49.522 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][57663cc9-6fc0-4f57-a0ab-a689cb567986] remote server not configured\n2025-10-29 00:28:49.523 [error] [command][a4c4f693-143b-4ef5-8fb8-9425aea114e4] Socket error: Error: read ECONNRESET\n2025-10-29 00:28:49.523 [info] [command][a4c4f693-143b-4ef5-8fb8-9425aea114e4] Socket close event received\n2025-10-29 00:28:49.523 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a4c4f693-143b-4ef5-8fb8-9425aea114e4] Socket closed without exit code\n2025-10-29 00:29:49.534 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:29:49.537 [info] [command][adf79f45-d532-432b-ba01-770a478d909a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""adf79f45-d532-432b-ba01-770a478d909a""}\n2025-10-29 00:29:49.537 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cafca802-e1e0-4340-b91e-3bbd4a204107] remote server not configured\n2025-10-29 00:29:49.538 [error] [command][adf79f45-d532-432b-ba01-770a478d909a] Socket error: Error: read ECONNRESET\n2025-10-29 00:29:49.538 [info] [command][adf79f45-d532-432b-ba01-770a478d909a] Socket close event received\n2025-10-29 00:29:49.539 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][adf79f45-d532-432b-ba01-770a478d909a] Socket closed without exit code\n2025-10-29 00:30:49.549 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:30:49.551 [info] [command][d10db3fc-7df2-45bc-8291-6334f8ab0efa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d10db3fc-7df2-45bc-8291-6334f8ab0efa""}\n2025-10-29 00:30:49.552 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b4a694e3-d076-469c-a72c-7b7042e263d9] remote server not configured\n2025-10-29 00:30:49.553 [error] [command][d10db3fc-7df2-45bc-8291-6334f8ab0efa] Socket error: Error: read ECONNRESET\n2025-10-29 00:30:49.553 [info] [command][d10db3fc-7df2-45bc-8291-6334f8ab0efa] Socket close event received\n2025-10-29 00:30:49.553 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d10db3fc-7df2-45bc-8291-6334f8ab0efa] Socket closed without exit code\n2025-10-29 00:31:49.564 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:31:49.566 [info] [command][b1615009-28d6-4f11-a2a8-3e3bb220c57a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b1615009-28d6-4f11-a2a8-3e3bb220c57a""}\n2025-10-29 00:31:49.567 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fb252755-68f4-4099-bf75-1905f1759dd4] remote server not configured\n2025-10-29 00:31:49.567 [error] [command][b1615009-28d6-4f11-a2a8-3e3bb220c57a] Socket error: Error: read ECONNRESET\n2025-10-29 00:31:49.568 [info] [command][b1615009-28d6-4f11-a2a8-3e3bb220c57a] Socket close event received\n2025-10-29 00:31:49.568 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b1615009-28d6-4f11-a2a8-3e3bb220c57a] Socket closed without exit code\n2025-10-29 00:32:49.576 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:32:49.579 [info] [command][26490d49-d922-4436-b40c-d57850540f19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""26490d49-d922-4436-b40c-d57850540f19""}\n2025-10-29 00:32:49.579 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3a5df545-67a3-4d73-a433-10224c2e6d83] remote server not configured\n2025-10-29 00:32:49.580 [error] [command][26490d49-d922-4436-b40c-d57850540f19] Socket error: Error: read ECONNRESET\n2025-10-29 00:32:49.580 [info] [command][26490d49-d922-4436-b40c-d57850540f19] Socket close event received\n2025-10-29 00:32:49.581 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][26490d49-d922-4436-b40c-d57850540f19] Socket closed without exit code\n2025-10-29 00:33:49.583 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:33:49.584 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0872d6f2-bddd-4108-ad86-07c8c79d734c] remote server not configured\n2025-10-29 00:33:49.585 [info] [command][6f3dbc7f-2287-463a-8b3b-a601d59c82e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6f3dbc7f-2287-463a-8b3b-a601d59c82e1""}\n2025-10-29 00:33:49.585 [error] [command][6f3dbc7f-2287-463a-8b3b-a601d59c82e1] Socket error: Error: read ECONNRESET\n2025-10-29 00:33:49.585 [info] [command][6f3dbc7f-2287-463a-8b3b-a601d59c82e1] Socket close event received\n2025-10-29 00:33:49.585 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6f3dbc7f-2287-463a-8b3b-a601d59c82e1] Socket closed without exit code\n2025-10-29 00:34:49.596 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:34:49.598 [info] [command][6ba84315-a2e4-46fa-a130-0c5747739881] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6ba84315-a2e4-46fa-a130-0c5747739881""}\n2025-10-29 00:34:49.599 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][530c52e0-5f43-4143-98e4-a5d5d136dbe3] remote server not configured\n2025-10-29 00:34:49.600 [error] [command][6ba84315-a2e4-46fa-a130-0c5747739881] Socket error: Error: read ECONNRESET\n2025-10-29 00:34:49.600 [info] [command][6ba84315-a2e4-46fa-a130-0c5747739881] Socket close event received\n2025-10-29 00:34:49.600 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6ba84315-a2e4-46fa-a130-0c5747739881] Socket closed without exit code\n2025-10-29 00:35:49.611 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:35:49.614 [info] [command][4f6d90c4-9f89-45ef-a95d-7c9d94a010e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4f6d90c4-9f89-45ef-a95d-7c9d94a010e8""}\n2025-10-29 00:35:49.615 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cd10c9b8-733d-4102-b63e-ecd594ab95cb] remote server not configured\n2025-10-29 00:35:49.615 [error] [command][4f6d90c4-9f89-45ef-a95d-7c9d94a010e8] Socket error: Error: read ECONNRESET\n2025-10-29 00:35:49.615 [info] [command][4f6d90c4-9f89-45ef-a95d-7c9d94a010e8] Socket close event received\n2025-10-29 00:35:49.615 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4f6d90c4-9f89-45ef-a95d-7c9d94a010e8] Socket closed without exit code\n2025-10-29 00:36:49.626 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:36:49.628 [info] [command][032c1dfe-1d76-40ab-a702-8fea69bd391c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""032c1dfe-1d76-40ab-a702-8fea69bd391c""}\n2025-10-29 00:36:49.629 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][95e0bb18-733e-40f4-bd8a-6a22484bd1ba] remote server not configured\n2025-10-29 00:36:49.629 [error] [command][032c1dfe-1d76-40ab-a702-8fea69bd391c] Socket error: Error: read ECONNRESET\n2025-10-29 00:36:49.630 [info] [command][032c1dfe-1d76-40ab-a702-8fea69bd391c] Socket close event received\n2025-10-29 00:36:49.630 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][032c1dfe-1d76-40ab-a702-8fea69bd391c] Socket closed without exit code\n2025-10-29 00:37:49.638 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:37:49.640 [info] [command][1e9aca79-29d7-44b7-85b9-bbe2cee50180] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1e9aca79-29d7-44b7-85b9-bbe2cee50180""}\n2025-10-29 00:37:49.641 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][36c89565-ccc6-41ae-ac1a-d5ec9a8a00ff] remote server not configured\n2025-10-29 00:37:49.641 [error] [command][1e9aca79-29d7-44b7-85b9-bbe2cee50180] Socket error: Error: read ECONNRESET\n2025-10-29 00:37:49.642 [info] [command][1e9aca79-29d7-44b7-85b9-bbe2cee50180] Socket close event received\n2025-10-29 00:37:49.642 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1e9aca79-29d7-44b7-85b9-bbe2cee50180] Socket closed without exit code\n2025-10-29 00:38:49.653 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:38:49.656 [info] [command][78fc6101-0ffa-4590-8eff-0fe641f6e6ee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""78fc6101-0ffa-4590-8eff-0fe641f6e6ee""}\n2025-10-29 00:38:49.656 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f0997706-35c9-4de7-8a8d-27641e61e3d7] remote server not configured\n2025-10-29 00:38:49.657 [error] [command][78fc6101-0ffa-4590-8eff-0fe641f6e6ee] Socket error: Error: read ECONNRESET\n2025-10-29 00:38:49.657 [info] [command][78fc6101-0ffa-4590-8eff-0fe641f6e6ee] Socket close event received\n2025-10-29 00:38:49.657 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][78fc6101-0ffa-4590-8eff-0fe641f6e6ee] Socket closed without exit code\n2025-10-29 00:39:49.663 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:39:49.665 [info] [command][0d6b7d03-343e-4270-b1b4-a848bd605f8b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0d6b7d03-343e-4270-b1b4-a848bd605f8b""}\n2025-10-29 00:39:49.665 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][585eafee-1878-4e6b-9531-8f454fc5d4ea] remote server not configured\n2025-10-29 00:39:49.666 [error] [command][0d6b7d03-343e-4270-b1b4-a848bd605f8b] Socket error: Error: read ECONNRESET\n2025-10-29 00:39:49.666 [info] [command][0d6b7d03-343e-4270-b1b4-a848bd605f8b] Socket close event received\n2025-10-29 00:39:49.667 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0d6b7d03-343e-4270-b1b4-a848bd605f8b] Socket closed without exit code\n2025-10-29 00:40:49.670 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:40:49.673 [info] [command][5f9995e3-1d2a-4c87-83bd-733efb2fd74c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5f9995e3-1d2a-4c87-83bd-733efb2fd74c""}\n2025-10-29 00:40:49.674 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b806bb56-e36b-42da-aade-31abfe85efcb] remote server not configured\n2025-10-29 00:40:49.674 [error] [command][5f9995e3-1d2a-4c87-83bd-733efb2fd74c] Socket error: Error: read ECONNRESET\n2025-10-29 00:40:49.675 [info] [command][5f9995e3-1d2a-4c87-83bd-733efb2fd74c] Socket close event received\n2025-10-29 00:40:49.675 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5f9995e3-1d2a-4c87-83bd-733efb2fd74c] Socket closed without exit code\n2025-10-29 00:41:49.686 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:41:49.687 [info] [command][d23cd538-e850-48c2-b6c3-b69daf5630ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d23cd538-e850-48c2-b6c3-b69daf5630ab""}\n2025-10-29 00:41:49.688 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ebb18e09-04da-42e2-8d76-0c20bd5a879e] remote server not configured\n2025-10-29 00:41:49.689 [error] [command][d23cd538-e850-48c2-b6c3-b69daf5630ab] Socket error: Error: read ECONNRESET\n2025-10-29 00:41:49.689 [info] [command][d23cd538-e850-48c2-b6c3-b69daf5630ab] Socket close event received\n2025-10-29 00:41:49.689 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d23cd538-e850-48c2-b6c3-b69daf5630ab] Socket closed without exit code\n2025-10-29 00:42:49.699 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:42:49.702 [info] [command][af572359-7278-492e-a50c-ce03255f1b61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""af572359-7278-492e-a50c-ce03255f1b61""}\n2025-10-29 00:42:49.702 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][54bbeac5-1885-4279-a7e0-8e18d8957225] remote server not configured\n2025-10-29 00:42:49.703 [error] [command][af572359-7278-492e-a50c-ce03255f1b61] Socket error: Error: read ECONNRESET\n2025-10-29 00:42:49.703 [info] [command][af572359-7278-492e-a50c-ce03255f1b61] Socket close event received\n2025-10-29 00:42:49.703 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][af572359-7278-492e-a50c-ce03255f1b61] Socket closed without exit code\n2025-10-29 00:43:49.714 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:43:49.716 [info] [command][ea5a75c1-a583-43b5-8e7a-fa2eaffcb6b2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ea5a75c1-a583-43b5-8e7a-fa2eaffcb6b2""}\n2025-10-29 00:43:49.716 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d4ff34a3-7159-4045-8026-a6bfcefee956] remote server not configured\n2025-10-29 00:43:49.717 [error] [command][ea5a75c1-a583-43b5-8e7a-fa2eaffcb6b2] Socket error: Error: read ECONNRESET\n2025-10-29 00:43:49.717 [info] [command][ea5a75c1-a583-43b5-8e7a-fa2eaffcb6b2] Socket close event received\n2025-10-29 00:43:49.717 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ea5a75c1-a583-43b5-8e7a-fa2eaffcb6b2] Socket closed without exit code\n2025-10-29 00:44:49.718 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:44:49.720 [info] [command][ab6cae45-8f54-4756-9e41-7efc941611c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ab6cae45-8f54-4756-9e41-7efc941611c0""}\n2025-10-29 00:44:49.720 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7a6ab98b-5e76-4b64-8d33-30612c01b4f1] remote server not configured\n2025-10-29 00:44:49.721 [error] [command][ab6cae45-8f54-4756-9e41-7efc941611c0] Socket error: Error: read ECONNRESET\n2025-10-29 00:44:49.721 [info] [command][ab6cae45-8f54-4756-9e41-7efc941611c0] Socket close event received\n2025-10-29 00:44:49.721 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ab6cae45-8f54-4756-9e41-7efc941611c0] Socket closed without exit code\n2025-10-29 00:45:49.732 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:45:49.734 [info] [command][9d3f6d20-368e-490a-a1a0-70bee5582315] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9d3f6d20-368e-490a-a1a0-70bee5582315""}\n2025-10-29 00:45:49.734 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c2a7ab99-c25e-40cc-8764-4fd2347d84f6] remote server not configured\n2025-10-29 00:45:49.735 [error] [command][9d3f6d20-368e-490a-a1a0-70bee5582315] Socket error: Error: read ECONNRESET\n2025-10-29 00:45:49.735 [info] [command][9d3f6d20-368e-490a-a1a0-70bee5582315] Socket close event received\n2025-10-29 00:45:49.736 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9d3f6d20-368e-490a-a1a0-70bee5582315] Socket closed without exit code\n2025-10-29 00:46:49.746 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:46:49.748 [info] [command][e1bb9540-ee79-4b4f-b108-4db6b35a77e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e1bb9540-ee79-4b4f-b108-4db6b35a77e5""}\n2025-10-29 00:46:49.749 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fc61ea10-db54-427d-992c-08ffc641e194] remote server not configured\n2025-10-29 00:46:49.750 [error] [command][e1bb9540-ee79-4b4f-b108-4db6b35a77e5] Socket error: Error: read ECONNRESET\n2025-10-29 00:46:49.750 [info] [command][e1bb9540-ee79-4b4f-b108-4db6b35a77e5] Socket close event received\n2025-10-29 00:46:49.750 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e1bb9540-ee79-4b4f-b108-4db6b35a77e5] Socket closed without exit code\n2025-10-29 00:47:49.757 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:47:49.759 [info] [command][0ec891e7-a17a-4126-9b5d-47eaea0f2d8b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0ec891e7-a17a-4126-9b5d-47eaea0f2d8b""}\n2025-10-29 00:47:49.760 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f4d64c60-5330-44bb-9b72-80a904c0862f] remote server not configured\n2025-10-29 00:47:49.761 [error] [command][0ec891e7-a17a-4126-9b5d-47eaea0f2d8b] Socket error: Error: read ECONNRESET\n2025-10-29 00:47:49.761 [info] [command][0ec891e7-a17a-4126-9b5d-47eaea0f2d8b] Socket close event received\n2025-10-29 00:47:49.761 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0ec891e7-a17a-4126-9b5d-47eaea0f2d8b] Socket closed without exit code\n2025-10-29 00:48:49.772 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:48:49.773 [info] [command][97e4acdf-3b0a-4c3b-8913-d696cfa1c276] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""97e4acdf-3b0a-4c3b-8913-d696cfa1c276""}\n2025-10-29 00:48:49.774 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f06c7cb1-baa0-431c-a7b9-b8710c1d1130] remote server not configured\n2025-10-29 00:48:49.775 [error] [command][97e4acdf-3b0a-4c3b-8913-d696cfa1c276] Socket error: Error: read ECONNRESET\n2025-10-29 00:48:49.775 [info] [command][97e4acdf-3b0a-4c3b-8913-d696cfa1c276] Socket close event received\n2025-10-29 00:48:49.775 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][97e4acdf-3b0a-4c3b-8913-d696cfa1c276] Socket closed without exit code\n2025-10-29 00:49:49.776 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:49:49.779 [info] [command][b2e15ce3-beb3-4b3e-b44e-64c36d17b856] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b2e15ce3-beb3-4b3e-b44e-64c36d17b856""}\n2025-10-29 00:49:49.780 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][195b4ec9-f4e6-4ea7-9b4d-c970f579fbee] remote server not configured\n2025-10-29 00:49:49.780 [error] [command][b2e15ce3-beb3-4b3e-b44e-64c36d17b856] Socket error: Error: read ECONNRESET\n2025-10-29 00:49:49.780 [info] [command][b2e15ce3-beb3-4b3e-b44e-64c36d17b856] Socket close event received\n2025-10-29 00:49:49.781 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b2e15ce3-beb3-4b3e-b44e-64c36d17b856] Socket closed without exit code\n2025-10-29 00:50:49.791 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:50:49.794 [info] [command][44f29885-9c4c-46b2-8e1e-1c56280e52c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""44f29885-9c4c-46b2-8e1e-1c56280e52c8""}\n2025-10-29 00:50:49.795 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][aa9284e5-a78c-445f-8e1f-a780506104c1] remote server not configured\n2025-10-29 00:50:49.795 [error] [command][44f29885-9c4c-46b2-8e1e-1c56280e52c8] Socket error: Error: read ECONNRESET\n2025-10-29 00:50:49.795 [info] [command][44f29885-9c4c-46b2-8e1e-1c56280e52c8] Socket close event received\n2025-10-29 00:50:49.796 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][44f29885-9c4c-46b2-8e1e-1c56280e52c8] Socket closed without exit code\n2025-10-29 00:51:49.801 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:51:49.804 [info] [command][96e48090-628f-46db-92e3-795de649bae4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""96e48090-628f-46db-92e3-795de649bae4""}\n2025-10-29 00:51:49.804 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b871eaf8-bb18-430d-bbce-de8d8dccc497] remote server not configured\n2025-10-29 00:51:49.805 [error] [command][96e48090-628f-46db-92e3-795de649bae4] Socket error: Error: read ECONNRESET\n2025-10-29 00:51:49.805 [info] [command][96e48090-628f-46db-92e3-795de649bae4] Socket close event received\n2025-10-29 00:51:49.805 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][96e48090-628f-46db-92e3-795de649bae4] Socket closed without exit code\n2025-10-29 00:52:49.816 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:52:49.819 [info] [command][d0873c89-4eca-4160-9cd2-fbfc76115575] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d0873c89-4eca-4160-9cd2-fbfc76115575""}\n2025-10-29 00:52:49.820 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d6af083b-2f63-4f41-8b61-8a87d426abdc] remote server not configured\n2025-10-29 00:52:49.820 [error] [command][d0873c89-4eca-4160-9cd2-fbfc76115575] Socket error: Error: read ECONNRESET\n2025-10-29 00:52:49.820 [info] [command][d0873c89-4eca-4160-9cd2-fbfc76115575] Socket close event received\n2025-10-29 00:52:49.821 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d0873c89-4eca-4160-9cd2-fbfc76115575] Socket closed without exit code\n2025-10-29 00:53:49.826 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:53:49.827 [info] [command][fb9f0a5e-5137-4c4a-89f7-082c3eb565ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fb9f0a5e-5137-4c4a-89f7-082c3eb565ed""}\n2025-10-29 00:53:49.828 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][09c55348-f435-4d98-9a76-8860451525dc] remote server not configured\n2025-10-29 00:53:49.829 [error] [command][fb9f0a5e-5137-4c4a-89f7-082c3eb565ed] Socket error: Error: read ECONNRESET\n2025-10-29 00:53:49.829 [info] [command][fb9f0a5e-5137-4c4a-89f7-082c3eb565ed] Socket close event received\n2025-10-29 00:53:49.829 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fb9f0a5e-5137-4c4a-89f7-082c3eb565ed] Socket closed without exit code\n2025-10-29 00:54:49.840 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:54:49.843 [info] [command][5b9a7ec3-00b7-4535-9ea9-6c5346b8de44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5b9a7ec3-00b7-4535-9ea9-6c5346b8de44""}\n2025-10-29 00:54:49.843 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d001d6b5-5e55-4061-add7-b37be82f1546] remote server not configured\n2025-10-29 00:54:49.844 [error] [command][5b9a7ec3-00b7-4535-9ea9-6c5346b8de44] Socket error: Error: read ECONNRESET\n2025-10-29 00:54:49.844 [info] [command][5b9a7ec3-00b7-4535-9ea9-6c5346b8de44] Socket close event received\n2025-10-29 00:54:49.844 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5b9a7ec3-00b7-4535-9ea9-6c5346b8de44] Socket closed without exit code\n2025-10-29 00:55:49.851 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:55:49.853 [info] [command][00fcd2da-1259-496b-b85c-77c97fd4fd7b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""00fcd2da-1259-496b-b85c-77c97fd4fd7b""}\n2025-10-29 00:55:49.854 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7d4a4bbc-1074-4a66-8d25-fe1f53edf6fb] remote server not configured\n2025-10-29 00:55:49.855 [error] [command][00fcd2da-1259-496b-b85c-77c97fd4fd7b] Socket error: Error: read ECONNRESET\n2025-10-29 00:55:49.855 [info] [command][00fcd2da-1259-496b-b85c-77c97fd4fd7b] Socket close event received\n2025-10-29 00:55:49.855 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][00fcd2da-1259-496b-b85c-77c97fd4fd7b] Socket closed without exit code\n2025-10-29 00:56:49.866 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:56:49.868 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fac932ec-b2aa-432d-818c-fa73420f7797] remote server not configured\n2025-10-29 00:56:49.869 [info] [command][02c9ae67-6643-4f36-8c71-1060d5e16490] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""02c9ae67-6643-4f36-8c71-1060d5e16490""}\n2025-10-29 00:56:49.869 [error] [command][02c9ae67-6643-4f36-8c71-1060d5e16490] Socket error: Error: read ECONNRESET\n2025-10-29 00:56:49.869 [info] [command][02c9ae67-6643-4f36-8c71-1060d5e16490] Socket close event received\n2025-10-29 00:56:49.870 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][02c9ae67-6643-4f36-8c71-1060d5e16490] Socket closed without exit code\n2025-10-29 00:57:49.880 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:57:49.883 [info] [command][61644a01-173e-436c-859e-f2c9a11da6e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""61644a01-173e-436c-859e-f2c9a11da6e8""}\n2025-10-29 00:57:49.883 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][173ed6a9-01b1-4588-9944-116a2aa059be] remote server not configured\n2025-10-29 00:57:49.884 [error] [command][61644a01-173e-436c-859e-f2c9a11da6e8] Socket error: Error: read ECONNRESET\n2025-10-29 00:57:49.884 [info] [command][61644a01-173e-436c-859e-f2c9a11da6e8] Socket close event received\n2025-10-29 00:57:49.884 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][61644a01-173e-436c-859e-f2c9a11da6e8] Socket closed without exit code\n2025-10-29 00:58:49.894 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:58:49.897 [info] [command][deef72da-0df8-4995-bd3b-8d68e3c13384] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""deef72da-0df8-4995-bd3b-8d68e3c13384""}\n2025-10-29 00:58:49.899 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][84065da5-92d7-4529-8bd8-165bb5322918] remote server not configured\n2025-10-29 00:58:49.899 [error] [command][deef72da-0df8-4995-bd3b-8d68e3c13384] Socket error: Error: read ECONNRESET\n2025-10-29 00:58:49.899 [info] [command][deef72da-0df8-4995-bd3b-8d68e3c13384] Socket close event received\n2025-10-29 00:58:49.900 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][deef72da-0df8-4995-bd3b-8d68e3c13384] Socket closed without exit code\n2025-10-29 00:59:49.905 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 00:59:49.907 [info] [command][16409f14-4e52-493f-bd6c-1aaf960e5bd4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""16409f14-4e52-493f-bd6c-1aaf960e5bd4""}\n2025-10-29 00:59:49.908 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][444a2566-e7cc-4847-b63f-b77413b2b1be] remote server not configured\n2025-10-29 00:59:49.908 [error] [command][16409f14-4e52-493f-bd6c-1aaf960e5bd4] Socket error: Error: read ECONNRESET\n2025-10-29 00:59:49.909 [info] [command][16409f14-4e52-493f-bd6c-1aaf960e5bd4] Socket close event received\n2025-10-29 00:59:49.909 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][16409f14-4e52-493f-bd6c-1aaf960e5bd4] Socket closed without exit code\n2025-10-29 01:00:49.918 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:00:49.921 [info] [command][cd87226f-b553-4f84-8076-85cfdf2708bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cd87226f-b553-4f84-8076-85cfdf2708bd""}\n2025-10-29 01:00:49.922 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][df442b50-f09d-4456-8a9a-50badbc716e8] remote server not configured\n2025-10-29 01:00:49.922 [error] [command][cd87226f-b553-4f84-8076-85cfdf2708bd] Socket error: Error: read ECONNRESET\n2025-10-29 01:00:49.923 [info] [command][cd87226f-b553-4f84-8076-85cfdf2708bd] Socket close event received\n2025-10-29 01:00:49.923 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cd87226f-b553-4f84-8076-85cfdf2708bd] Socket closed without exit code\n2025-10-29 01:01:49.926 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:01:49.929 [info] [command][f2299525-edc0-48fb-b302-86e6115b394f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f2299525-edc0-48fb-b302-86e6115b394f""}\n2025-10-29 01:01:49.930 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6a49d1cf-45f2-4499-9b6e-a6abd13e7c10] remote server not configured\n2025-10-29 01:01:49.931 [error] [command][f2299525-edc0-48fb-b302-86e6115b394f] Socket error: Error: read ECONNRESET\n2025-10-29 01:01:49.931 [info] [command][f2299525-edc0-48fb-b302-86e6115b394f] Socket close event received\n2025-10-29 01:01:49.931 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f2299525-edc0-48fb-b302-86e6115b394f] Socket closed without exit code\n2025-10-29 01:02:49.939 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:02:49.941 [info] [command][e32806af-0d02-4236-a373-ad0e09866efe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e32806af-0d02-4236-a373-ad0e09866efe""}\n2025-10-29 01:02:49.942 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b9002a4d-d741-4fe0-a43c-b9b79a34aa71] remote server not configured\n2025-10-29 01:02:49.943 [error] [command][e32806af-0d02-4236-a373-ad0e09866efe] Socket error: Error: read ECONNRESET\n2025-10-29 01:02:49.943 [info] [command][e32806af-0d02-4236-a373-ad0e09866efe] Socket close event received\n2025-10-29 01:02:49.943 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e32806af-0d02-4236-a373-ad0e09866efe] Socket closed without exit code\n2025-10-29 01:03:49.948 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:03:49.951 [info] [command][4174e222-9d9f-4f32-8f13-f001f1c346b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4174e222-9d9f-4f32-8f13-f001f1c346b1""}\n2025-10-29 01:03:49.951 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][af36f30b-cec1-4120-8fc9-723fca642ccb] remote server not configured\n2025-10-29 01:03:49.952 [error] [command][4174e222-9d9f-4f32-8f13-f001f1c346b1] Socket error: Error: read ECONNRESET\n2025-10-29 01:03:49.952 [info] [command][4174e222-9d9f-4f32-8f13-f001f1c346b1] Socket close event received\n2025-10-29 01:03:49.952 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4174e222-9d9f-4f32-8f13-f001f1c346b1] Socket closed without exit code\n2025-10-29 01:04:49.963 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:04:49.965 [info] [command][a5605cd4-69b5-4baa-88b8-abb34071f90e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a5605cd4-69b5-4baa-88b8-abb34071f90e""}\n2025-10-29 01:04:49.966 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8f13abd1-f0c8-4c84-b873-c4008cb42176] remote server not configured\n2025-10-29 01:04:49.967 [error] [command][a5605cd4-69b5-4baa-88b8-abb34071f90e] Socket error: Error: read ECONNRESET\n2025-10-29 01:04:49.967 [info] [command][a5605cd4-69b5-4baa-88b8-abb34071f90e] Socket close event received\n2025-10-29 01:04:49.967 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a5605cd4-69b5-4baa-88b8-abb34071f90e] Socket closed without exit code\n2025-10-29 01:05:49.970 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:05:49.973 [info] [command][b5780db1-b4d2-4711-b246-8022f23d96ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b5780db1-b4d2-4711-b246-8022f23d96ce""}\n2025-10-29 01:05:49.974 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][62a34ccb-366f-42a7-80d5-6324ee028496] remote server not configured\n2025-10-29 01:05:49.974 [error] [command][b5780db1-b4d2-4711-b246-8022f23d96ce] Socket error: Error: read ECONNRESET\n2025-10-29 01:05:49.974 [info] [command][b5780db1-b4d2-4711-b246-8022f23d96ce] Socket close event received\n2025-10-29 01:05:49.975 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b5780db1-b4d2-4711-b246-8022f23d96ce] Socket closed without exit code\n2025-10-29 01:06:49.985 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:06:49.988 [info] [command][173d4a90-8560-42ce-88b8-af66f4939060] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""173d4a90-8560-42ce-88b8-af66f4939060""}\n2025-10-29 01:06:49.989 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][636b615b-f737-4b59-bac8-402a8cb5d1ed] remote server not configured\n2025-10-29 01:06:49.989 [error] [command][173d4a90-8560-42ce-88b8-af66f4939060] Socket error: Error: read ECONNRESET\n2025-10-29 01:06:49.989 [info] [command][173d4a90-8560-42ce-88b8-af66f4939060] Socket close event received\n2025-10-29 01:06:49.989 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][173d4a90-8560-42ce-88b8-af66f4939060] Socket closed without exit code\n2025-10-29 01:07:49.997 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:07:49.999 [info] [command][16ba35f3-c4ad-4ed8-aacb-aaa24e31692f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""16ba35f3-c4ad-4ed8-aacb-aaa24e31692f""}\n2025-10-29 01:07:50.000 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a48d8c33-3968-497f-aa82-a68b54ccac39] remote server not configured\n2025-10-29 01:07:50.001 [error] [command][16ba35f3-c4ad-4ed8-aacb-aaa24e31692f] Socket error: Error: read ECONNRESET\n2025-10-29 01:07:50.001 [info] [command][16ba35f3-c4ad-4ed8-aacb-aaa24e31692f] Socket close event received\n2025-10-29 01:07:50.001 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][16ba35f3-c4ad-4ed8-aacb-aaa24e31692f] Socket closed without exit code\n2025-10-29 01:08:50.013 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:08:50.015 [info] [command][e193df9a-7b06-4377-9fd8-17c7d1b5c7ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e193df9a-7b06-4377-9fd8-17c7d1b5c7ea""}\n2025-10-29 01:08:50.016 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][74d0d13d-5305-4a85-9d50-ece8f92dcf8b] remote server not configured\n2025-10-29 01:08:50.016 [error] [command][e193df9a-7b06-4377-9fd8-17c7d1b5c7ea] Socket error: Error: read ECONNRESET\n2025-10-29 01:08:50.017 [info] [command][e193df9a-7b06-4377-9fd8-17c7d1b5c7ea] Socket close event received\n2025-10-29 01:08:50.017 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e193df9a-7b06-4377-9fd8-17c7d1b5c7ea] Socket closed without exit code\n2025-10-29 01:09:50.019 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:09:50.021 [info] [command][0ae53e20-3eec-4eff-aade-9fa586117f86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0ae53e20-3eec-4eff-aade-9fa586117f86""}\n2025-10-29 01:09:50.022 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][280a73fa-6215-46e3-b18b-1ec69d5d6033] remote server not configured\n2025-10-29 01:09:50.022 [error] [command][0ae53e20-3eec-4eff-aade-9fa586117f86] Socket error: Error: read ECONNRESET\n2025-10-29 01:09:50.023 [info] [command][0ae53e20-3eec-4eff-aade-9fa586117f86] Socket close event received\n2025-10-29 01:09:50.023 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0ae53e20-3eec-4eff-aade-9fa586117f86] Socket closed without exit code\n2025-10-29 01:10:50.033 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:10:50.036 [info] [command][d4c569ff-5262-4361-9f59-311587d23c44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d4c569ff-5262-4361-9f59-311587d23c44""}\n2025-10-29 01:10:50.037 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][23a27770-2c5a-409b-afaf-67bb96267d6b] remote server not configured\n2025-10-29 01:10:50.037 [error] [command][d4c569ff-5262-4361-9f59-311587d23c44] Socket error: Error: read ECONNRESET\n2025-10-29 01:10:50.038 [info] [command][d4c569ff-5262-4361-9f59-311587d23c44] Socket close event received\n2025-10-29 01:10:50.038 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d4c569ff-5262-4361-9f59-311587d23c44] Socket closed without exit code\n2025-10-29 01:11:50.048 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:11:50.050 [info] [command][40254273-4ba0-489d-b6d4-7ac06dd60a8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""40254273-4ba0-489d-b6d4-7ac06dd60a8f""}\n2025-10-29 01:11:50.051 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6439827e-b440-478a-8bb7-c651bf29430c] remote server not configured\n2025-10-29 01:11:50.052 [error] [command][40254273-4ba0-489d-b6d4-7ac06dd60a8f] Socket error: Error: read ECONNRESET\n2025-10-29 01:11:50.052 [info] [command][40254273-4ba0-489d-b6d4-7ac06dd60a8f] Socket close event received\n2025-10-29 01:11:50.052 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][40254273-4ba0-489d-b6d4-7ac06dd60a8f] Socket closed without exit code\n2025-10-29 01:12:50.062 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:12:50.064 [info] [command][65ac0797-2eb2-4f20-abe4-85984c572036] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""65ac0797-2eb2-4f20-abe4-85984c572036""}\n2025-10-29 01:12:50.065 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][988eec3d-2ed8-406d-abb9-15f1b1574831] remote server not configured\n2025-10-29 01:12:50.066 [error] [command][65ac0797-2eb2-4f20-abe4-85984c572036] Socket error: Error: read ECONNRESET\n2025-10-29 01:12:50.067 [info] [command][65ac0797-2eb2-4f20-abe4-85984c572036] Socket close event received\n2025-10-29 01:12:50.067 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][65ac0797-2eb2-4f20-abe4-85984c572036] Socket closed without exit code\n2025-10-29 01:13:50.072 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:13:50.075 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3e57214f-8667-4cdd-82f2-ce781e649995] remote server not configured\n2025-10-29 01:13:50.076 [info] [command][1a93cae7-ede8-4dd9-8b74-eab82a235123] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1a93cae7-ede8-4dd9-8b74-eab82a235123""}\n2025-10-29 01:13:50.076 [error] [command][1a93cae7-ede8-4dd9-8b74-eab82a235123] Socket error: Error: read ECONNRESET\n2025-10-29 01:13:50.077 [info] [command][1a93cae7-ede8-4dd9-8b74-eab82a235123] Socket close event received\n2025-10-29 01:13:50.077 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1a93cae7-ede8-4dd9-8b74-eab82a235123] Socket closed without exit code\n2025-10-29 01:14:50.087 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:14:50.089 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fbf594a1-2ffa-4e20-85d6-8550a359a99a] remote server not configured\n2025-10-29 01:14:50.090 [info] [command][3da2981a-09eb-45f6-875f-2b11e90a6b32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3da2981a-09eb-45f6-875f-2b11e90a6b32""}\n2025-10-29 01:14:50.091 [error] [command][3da2981a-09eb-45f6-875f-2b11e90a6b32] Socket error: Error: read ECONNRESET\n2025-10-29 01:14:50.091 [info] [command][3da2981a-09eb-45f6-875f-2b11e90a6b32] Socket close event received\n2025-10-29 01:14:50.091 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3da2981a-09eb-45f6-875f-2b11e90a6b32] Socket closed without exit code\n2025-10-29 01:15:50.094 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:15:50.096 [info] [command][f69a2ad0-6b5e-4a8b-ad29-5781409f4955] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f69a2ad0-6b5e-4a8b-ad29-5781409f4955""}\n2025-10-29 01:15:50.096 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8b50aad6-3653-4866-a535-92cff6438b37] remote server not configured\n2025-10-29 01:15:50.097 [error] [command][f69a2ad0-6b5e-4a8b-ad29-5781409f4955] Socket error: Error: read ECONNRESET\n2025-10-29 01:15:50.097 [info] [command][f69a2ad0-6b5e-4a8b-ad29-5781409f4955] Socket close event received\n2025-10-29 01:15:50.097 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f69a2ad0-6b5e-4a8b-ad29-5781409f4955] Socket closed without exit code\n2025-10-29 01:16:50.107 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:16:50.109 [info] [command][77432002-5b2d-4194-82b3-bde8ac44bbe2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""77432002-5b2d-4194-82b3-bde8ac44bbe2""}\n2025-10-29 01:16:50.110 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c1edd719-1bf9-40d7-a0a5-2ef079fbe490] remote server not configured\n2025-10-29 01:16:50.111 [error] [command][77432002-5b2d-4194-82b3-bde8ac44bbe2] Socket error: Error: read ECONNRESET\n2025-10-29 01:16:50.111 [info] [command][77432002-5b2d-4194-82b3-bde8ac44bbe2] Socket close event received\n2025-10-29 01:16:50.111 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][77432002-5b2d-4194-82b3-bde8ac44bbe2] Socket closed without exit code\n2025-10-29 01:17:50.121 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:17:50.124 [info] [command][74e5256d-815d-4c1c-a3ff-6543e4e794b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""74e5256d-815d-4c1c-a3ff-6543e4e794b9""}\n2025-10-29 01:17:50.125 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][feac1b89-7395-4c94-9003-4bec729eef29] remote server not configured\n2025-10-29 01:17:50.126 [error] [command][74e5256d-815d-4c1c-a3ff-6543e4e794b9] Socket error: Error: read ECONNRESET\n2025-10-29 01:17:50.126 [info] [command][74e5256d-815d-4c1c-a3ff-6543e4e794b9] Socket close event received\n2025-10-29 01:17:50.126 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][74e5256d-815d-4c1c-a3ff-6543e4e794b9] Socket closed without exit code\n2025-10-29 01:18:50.137 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:18:50.139 [info] [command][015d29b3-a34b-47b6-88ed-6008d0c90449] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""015d29b3-a34b-47b6-88ed-6008d0c90449""}\n2025-10-29 01:18:50.140 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][73d5b7a7-0b8a-4552-a438-d3791761cdc0] remote server not configured\n2025-10-29 01:18:50.141 [error] [command][015d29b3-a34b-47b6-88ed-6008d0c90449] Socket error: Error: read ECONNRESET\n2025-10-29 01:18:50.142 [info] [command][015d29b3-a34b-47b6-88ed-6008d0c90449] Socket close event received\n2025-10-29 01:18:50.142 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][015d29b3-a34b-47b6-88ed-6008d0c90449] Socket closed without exit code\n2025-10-29 01:19:50.152 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:19:50.155 [info] [command][345f5d51-26e1-4773-a188-9e6110a70de2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""345f5d51-26e1-4773-a188-9e6110a70de2""}\n2025-10-29 01:19:50.156 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3ec617aa-081c-4c9e-bb52-0ba1c12e2522] remote server not configured\n2025-10-29 01:19:50.157 [error] [command][345f5d51-26e1-4773-a188-9e6110a70de2] Socket error: Error: read ECONNRESET\n2025-10-29 01:19:50.157 [info] [command][345f5d51-26e1-4773-a188-9e6110a70de2] Socket close event received\n2025-10-29 01:19:50.157 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][345f5d51-26e1-4773-a188-9e6110a70de2] Socket closed without exit code\n2025-10-29 01:20:50.164 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:20:50.166 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][98d8bb98-a0d8-40f3-8fb9-027d74f17b28] remote server not configured\n2025-10-29 01:20:50.167 [info] [command][7ba2bd86-fdc3-4052-8ed6-aeb0a1af0a44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7ba2bd86-fdc3-4052-8ed6-aeb0a1af0a44""}\n2025-10-29 01:20:50.168 [error] [command][7ba2bd86-fdc3-4052-8ed6-aeb0a1af0a44] Socket error: Error: read ECONNRESET\n2025-10-29 01:20:50.168 [info] [command][7ba2bd86-fdc3-4052-8ed6-aeb0a1af0a44] Socket close event received\n2025-10-29 01:20:50.168 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7ba2bd86-fdc3-4052-8ed6-aeb0a1af0a44] Socket closed without exit code\n2025-10-29 01:21:50.177 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:21:50.179 [info] [command][5a1e2dfa-24ac-4dd9-8ee8-3c389ba0b348] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5a1e2dfa-24ac-4dd9-8ee8-3c389ba0b348""}\n2025-10-29 01:21:50.180 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][44b764db-1c69-4c09-81b7-8788c39d4706] remote server not configured\n2025-10-29 01:21:50.181 [error] [command][5a1e2dfa-24ac-4dd9-8ee8-3c389ba0b348] Socket error: Error: read ECONNRESET\n2025-10-29 01:21:50.181 [info] [command][5a1e2dfa-24ac-4dd9-8ee8-3c389ba0b348] Socket close event received\n2025-10-29 01:21:50.181 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5a1e2dfa-24ac-4dd9-8ee8-3c389ba0b348] Socket closed without exit code\n2025-10-29 01:22:50.192 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:22:50.194 [info] [command][28913305-1c32-420f-a1d9-e50b7521694e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""28913305-1c32-420f-a1d9-e50b7521694e""}\n2025-10-29 01:22:50.195 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][43bb43e3-d820-421f-b938-ce06a0adc5f3] remote server not configured\n2025-10-29 01:22:50.196 [error] [command][28913305-1c32-420f-a1d9-e50b7521694e] Socket error: Error: read ECONNRESET\n2025-10-29 01:22:50.196 [info] [command][28913305-1c32-420f-a1d9-e50b7521694e] Socket close event received\n2025-10-29 01:22:50.196 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][28913305-1c32-420f-a1d9-e50b7521694e] Socket closed without exit code\n2025-10-29 01:23:50.207 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:23:50.209 [info] [command][4be7924b-e898-40c5-9eea-7bc1b1cade82] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4be7924b-e898-40c5-9eea-7bc1b1cade82""}\n2025-10-29 01:23:50.210 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3323f056-ea87-4bd5-90cf-1a2de9bd4285] remote server not configured\n2025-10-29 01:23:50.210 [error] [command][4be7924b-e898-40c5-9eea-7bc1b1cade82] Socket error: Error: read ECONNRESET\n2025-10-29 01:23:50.211 [info] [command][4be7924b-e898-40c5-9eea-7bc1b1cade82] Socket close event received\n2025-10-29 01:23:50.211 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4be7924b-e898-40c5-9eea-7bc1b1cade82] Socket closed without exit code\n2025-10-29 01:24:50.222 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:24:50.224 [info] [command][700e7bf4-19cb-44d3-8698-53ad3371e0cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""700e7bf4-19cb-44d3-8698-53ad3371e0cb""}\n2025-10-29 01:24:50.225 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a4b2567c-0644-4ea5-879f-0483fbf119bc] remote server not configured\n2025-10-29 01:24:50.225 [error] [command][700e7bf4-19cb-44d3-8698-53ad3371e0cb] Socket error: Error: read ECONNRESET\n2025-10-29 01:24:50.226 [info] [command][700e7bf4-19cb-44d3-8698-53ad3371e0cb] Socket close event received\n2025-10-29 01:24:50.226 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][700e7bf4-19cb-44d3-8698-53ad3371e0cb] Socket closed without exit code\n2025-10-29 01:25:50.230 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:25:50.233 [info] [command][358bdca5-3b79-4a63-9297-0359c4bda6e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""358bdca5-3b79-4a63-9297-0359c4bda6e4""}\n2025-10-29 01:25:50.233 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1072d810-8bb8-4962-8671-03207978e4d7] remote server not configured\n2025-10-29 01:25:50.234 [error] [command][358bdca5-3b79-4a63-9297-0359c4bda6e4] Socket error: Error: read ECONNRESET\n2025-10-29 01:25:50.234 [info] [command][358bdca5-3b79-4a63-9297-0359c4bda6e4] Socket close event received\n2025-10-29 01:25:50.235 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][358bdca5-3b79-4a63-9297-0359c4bda6e4] Socket closed without exit code\n2025-10-29 01:26:50.244 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:26:50.246 [info] [command][00af79c5-ce54-4c98-9408-ef27a64eff68] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""00af79c5-ce54-4c98-9408-ef27a64eff68""}\n2025-10-29 01:26:50.247 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d3892192-af2d-4594-8ca0-1c0459c1e591] remote server not configured\n2025-10-29 01:26:50.247 [error] [command][00af79c5-ce54-4c98-9408-ef27a64eff68] Socket error: Error: read ECONNRESET\n2025-10-29 01:26:50.247 [info] [command][00af79c5-ce54-4c98-9408-ef27a64eff68] Socket close event received\n2025-10-29 01:26:50.247 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][00af79c5-ce54-4c98-9408-ef27a64eff68] Socket closed without exit code\n2025-10-29 01:27:50.258 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:27:50.260 [info] [command][f780dcf8-89d1-4b85-9940-b760353949af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f780dcf8-89d1-4b85-9940-b760353949af""}\n2025-10-29 01:27:50.261 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][376f72de-32fd-40dc-a59e-dc9fbd476714] remote server not configured\n2025-10-29 01:27:50.262 [error] [command][f780dcf8-89d1-4b85-9940-b760353949af] Socket error: Error: read ECONNRESET\n2025-10-29 01:27:50.262 [info] [command][f780dcf8-89d1-4b85-9940-b760353949af] Socket close event received\n2025-10-29 01:27:50.262 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f780dcf8-89d1-4b85-9940-b760353949af] Socket closed without exit code\n2025-10-29 01:28:50.273 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:28:50.275 [info] [command][b73c2f77-64e8-4850-a754-8a1ddba23093] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b73c2f77-64e8-4850-a754-8a1ddba23093""}\n2025-10-29 01:28:50.276 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][313c48b8-b216-4d31-8e1e-ad43432e795c] remote server not configured\n2025-10-29 01:28:50.276 [error] [command][b73c2f77-64e8-4850-a754-8a1ddba23093] Socket error: Error: read ECONNRESET\n2025-10-29 01:28:50.276 [info] [command][b73c2f77-64e8-4850-a754-8a1ddba23093] Socket close event received\n2025-10-29 01:28:50.277 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b73c2f77-64e8-4850-a754-8a1ddba23093] Socket closed without exit code\n2025-10-29 01:29:50.277 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:29:50.279 [info] [command][20cf7973-4f14-4222-8111-4e41b3947e6e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""20cf7973-4f14-4222-8111-4e41b3947e6e""}\n2025-10-29 01:29:50.280 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2d002cf6-c7fc-4aa0-805f-3455933220b6] remote server not configured\n2025-10-29 01:29:50.280 [error] [command][20cf7973-4f14-4222-8111-4e41b3947e6e] Socket error: Error: read ECONNRESET\n2025-10-29 01:29:50.281 [info] [command][20cf7973-4f14-4222-8111-4e41b3947e6e] Socket close event received\n2025-10-29 01:29:50.281 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][20cf7973-4f14-4222-8111-4e41b3947e6e] Socket closed without exit code\n2025-10-29 01:30:50.285 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:30:50.288 [info] [command][d59d4345-b1a9-4ac2-845e-b07ff9f2a1a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d59d4345-b1a9-4ac2-845e-b07ff9f2a1a6""}\n2025-10-29 01:30:50.288 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][bf039ee2-dcf6-411f-9c67-e7a95c2733c8] remote server not configured\n2025-10-29 01:30:50.289 [error] [command][d59d4345-b1a9-4ac2-845e-b07ff9f2a1a6] Socket error: Error: read ECONNRESET\n2025-10-29 01:30:50.289 [info] [command][d59d4345-b1a9-4ac2-845e-b07ff9f2a1a6] Socket close event received\n2025-10-29 01:30:50.289 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d59d4345-b1a9-4ac2-845e-b07ff9f2a1a6] Socket closed without exit code\n2025-10-29 01:31:50.300 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:31:50.302 [info] [command][779a4fa8-7c62-4722-9ad5-4344a4692b19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""779a4fa8-7c62-4722-9ad5-4344a4692b19""}\n2025-10-29 01:31:50.302 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][417ef9e2-a1ad-4b82-89b0-f4cb73dda682] remote server not configured\n2025-10-29 01:31:50.303 [error] [command][779a4fa8-7c62-4722-9ad5-4344a4692b19] Socket error: Error: read ECONNRESET\n2025-10-29 01:31:50.303 [info] [command][779a4fa8-7c62-4722-9ad5-4344a4692b19] Socket close event received\n2025-10-29 01:31:50.304 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][779a4fa8-7c62-4722-9ad5-4344a4692b19] Socket closed without exit code\n2025-10-29 01:32:50.312 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:32:50.315 [info] [command][ffba7cdf-97e9-4c78-99bc-7fdf0d579a1b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ffba7cdf-97e9-4c78-99bc-7fdf0d579a1b""}\n2025-10-29 01:32:50.316 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][60112505-6a06-4fc9-b0b5-fb817560f5f6] remote server not configured\n2025-10-29 01:32:50.316 [error] [command][ffba7cdf-97e9-4c78-99bc-7fdf0d579a1b] Socket error: Error: read ECONNRESET\n2025-10-29 01:32:50.317 [info] [command][ffba7cdf-97e9-4c78-99bc-7fdf0d579a1b] Socket close event received\n2025-10-29 01:32:50.317 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ffba7cdf-97e9-4c78-99bc-7fdf0d579a1b] Socket closed without exit code\n2025-10-29 01:33:50.327 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:33:50.330 [info] [command][d648ac05-2901-4ff1-b85c-fb9be80c1eb3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d648ac05-2901-4ff1-b85c-fb9be80c1eb3""}\n2025-10-29 01:33:50.331 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][03968c61-9304-4028-8cb9-e59f89465d19] remote server not configured\n2025-10-29 01:33:50.331 [error] [command][d648ac05-2901-4ff1-b85c-fb9be80c1eb3] Socket error: Error: read ECONNRESET\n2025-10-29 01:33:50.332 [info] [command][d648ac05-2901-4ff1-b85c-fb9be80c1eb3] Socket close event received\n2025-10-29 01:33:50.332 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d648ac05-2901-4ff1-b85c-fb9be80c1eb3] Socket closed without exit code\n2025-10-29 01:34:50.340 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:34:50.342 [info] [command][79b4b928-ff0a-4648-b56f-8c9b0cb8d49b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""79b4b928-ff0a-4648-b56f-8c9b0cb8d49b""}\n2025-10-29 01:34:50.343 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4a885dfd-8e2b-4576-85a1-21742d86507b] remote server not configured\n2025-10-29 01:34:50.343 [error] [command][79b4b928-ff0a-4648-b56f-8c9b0cb8d49b] Socket error: Error: read ECONNRESET\n2025-10-29 01:34:50.344 [info] [command][79b4b928-ff0a-4648-b56f-8c9b0cb8d49b] Socket close event received\n2025-10-29 01:34:50.344 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][79b4b928-ff0a-4648-b56f-8c9b0cb8d49b] Socket closed without exit code\n2025-10-29 01:35:50.354 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:35:50.357 [info] [command][0476308f-1555-4978-98f6-5f98ef546819] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0476308f-1555-4978-98f6-5f98ef546819""}\n2025-10-29 01:35:50.357 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][95406287-86b0-49c8-95d2-315e4243c36b] remote server not configured\n2025-10-29 01:35:50.357 [error] [command][0476308f-1555-4978-98f6-5f98ef546819] Socket error: Error: read ECONNRESET\n2025-10-29 01:35:50.357 [info] [command][0476308f-1555-4978-98f6-5f98ef546819] Socket close event received\n2025-10-29 01:35:50.358 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0476308f-1555-4978-98f6-5f98ef546819] Socket closed without exit code\n2025-10-29 01:36:50.366 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:36:50.369 [info] [command][1cc0a0e4-edbb-4a9f-9981-779d09ec8792] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1cc0a0e4-edbb-4a9f-9981-779d09ec8792""}\n2025-10-29 01:36:50.370 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][13cbdaed-e2d2-40e3-8c13-4a13726e30b1] remote server not configured\n2025-10-29 01:36:50.370 [error] [command][1cc0a0e4-edbb-4a9f-9981-779d09ec8792] Socket error: Error: read ECONNRESET\n2025-10-29 01:36:50.370 [info] [command][1cc0a0e4-edbb-4a9f-9981-779d09ec8792] Socket close event received\n2025-10-29 01:36:50.371 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1cc0a0e4-edbb-4a9f-9981-779d09ec8792] Socket closed without exit code\n2025-10-29 01:37:50.381 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:37:50.384 [info] [command][0460ece6-16cd-4268-b9e0-84b432c52fbd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0460ece6-16cd-4268-b9e0-84b432c52fbd""}\n2025-10-29 01:37:50.385 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][25678a9e-9ff6-4715-b30e-c7327e8d862a] remote server not configured\n2025-10-29 01:37:50.386 [error] [command][0460ece6-16cd-4268-b9e0-84b432c52fbd] Socket error: Error: read ECONNRESET\n2025-10-29 01:37:50.386 [info] [command][0460ece6-16cd-4268-b9e0-84b432c52fbd] Socket close event received\n2025-10-29 01:37:50.386 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0460ece6-16cd-4268-b9e0-84b432c52fbd] Socket closed without exit code\n2025-10-29 01:38:50.389 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:38:50.392 [info] [command][cfe054a3-0d58-400b-bc47-e8f443bea87c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cfe054a3-0d58-400b-bc47-e8f443bea87c""}\n2025-10-29 01:38:50.392 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8deaca7b-64f2-4874-8668-acfc4a4d9153] remote server not configured\n2025-10-29 01:38:50.393 [error] [command][cfe054a3-0d58-400b-bc47-e8f443bea87c] Socket error: Error: read ECONNRESET\n2025-10-29 01:38:50.393 [info] [command][cfe054a3-0d58-400b-bc47-e8f443bea87c] Socket close event received\n2025-10-29 01:38:50.393 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cfe054a3-0d58-400b-bc47-e8f443bea87c] Socket closed without exit code\n2025-10-29 01:39:50.402 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:39:50.405 [info] [command][6b1cc32d-5e59-47fd-9b4f-c0aab9806173] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6b1cc32d-5e59-47fd-9b4f-c0aab9806173""}\n2025-10-29 01:39:50.405 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f291fb72-1e54-4eca-9485-47c25c5a5c0d] remote server not configured\n2025-10-29 01:39:50.406 [error] [command][6b1cc32d-5e59-47fd-9b4f-c0aab9806173] Socket error: Error: read ECONNRESET\n2025-10-29 01:39:50.406 [info] [command][6b1cc32d-5e59-47fd-9b4f-c0aab9806173] Socket close event received\n2025-10-29 01:39:50.406 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6b1cc32d-5e59-47fd-9b4f-c0aab9806173] Socket closed without exit code\n2025-10-29 01:40:50.417 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:40:50.419 [info] [command][90165254-4a39-4d5f-9bcf-d0a6d4aca976] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""90165254-4a39-4d5f-9bcf-d0a6d4aca976""}\n2025-10-29 01:40:50.419 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7ec654e2-d3cc-451a-be14-9ccd71a8392b] remote server not configured\n2025-10-29 01:40:50.419 [error] [command][90165254-4a39-4d5f-9bcf-d0a6d4aca976] Socket error: Error: read ECONNRESET\n2025-10-29 01:40:50.419 [info] [command][90165254-4a39-4d5f-9bcf-d0a6d4aca976] Socket close event received\n2025-10-29 01:40:50.419 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][90165254-4a39-4d5f-9bcf-d0a6d4aca976] Socket closed without exit code\n2025-10-29 01:41:50.431 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:41:50.433 [info] [command][db7c33ad-0e13-4f25-bc68-69dda325196c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""db7c33ad-0e13-4f25-bc68-69dda325196c""}\n2025-10-29 01:41:50.433 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b3727940-48b8-45e9-af04-c7c1addfa76d] remote server not configured\n2025-10-29 01:41:50.434 [error] [command][db7c33ad-0e13-4f25-bc68-69dda325196c] Socket error: Error: read ECONNRESET\n2025-10-29 01:41:50.434 [info] [command][db7c33ad-0e13-4f25-bc68-69dda325196c] Socket close event received\n2025-10-29 01:41:50.434 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][db7c33ad-0e13-4f25-bc68-69dda325196c] Socket closed without exit code\n2025-10-29 01:42:50.442 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:42:50.444 [info] [command][978b812e-7494-4ce5-a050-e9c246c740c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""978b812e-7494-4ce5-a050-e9c246c740c4""}\n2025-10-29 01:42:50.445 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][888f1b29-c820-4db6-a52a-dd0578c8c649] remote server not configured\n2025-10-29 01:42:50.445 [error] [command][978b812e-7494-4ce5-a050-e9c246c740c4] Socket error: Error: read ECONNRESET\n2025-10-29 01:42:50.446 [info] [command][978b812e-7494-4ce5-a050-e9c246c740c4] Socket close event received\n2025-10-29 01:42:50.446 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][978b812e-7494-4ce5-a050-e9c246c740c4] Socket closed without exit code\n2025-10-29 01:43:50.451 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:43:50.454 [info] [command][7a3e2a02-0fef-4a05-843c-30a8aad358e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7a3e2a02-0fef-4a05-843c-30a8aad358e3""}\n2025-10-29 01:43:50.455 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ba77c3a4-8a19-4595-9d29-92cf7af5da98] remote server not configured\n2025-10-29 01:43:50.455 [error] [command][7a3e2a02-0fef-4a05-843c-30a8aad358e3] Socket error: Error: read ECONNRESET\n2025-10-29 01:43:50.455 [info] [command][7a3e2a02-0fef-4a05-843c-30a8aad358e3] Socket close event received\n2025-10-29 01:43:50.455 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7a3e2a02-0fef-4a05-843c-30a8aad358e3] Socket closed without exit code\n2025-10-29 01:44:50.458 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:44:50.461 [info] [command][2eb4a574-57d4-4fa9-9ab9-c8d62654b527] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2eb4a574-57d4-4fa9-9ab9-c8d62654b527""}\n2025-10-29 01:44:50.462 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][40aafaa0-feed-44b9-8597-bc5007fb9ad9] remote server not configured\n2025-10-29 01:44:50.462 [error] [command][2eb4a574-57d4-4fa9-9ab9-c8d62654b527] Socket error: Error: read ECONNRESET\n2025-10-29 01:44:50.462 [info] [command][2eb4a574-57d4-4fa9-9ab9-c8d62654b527] Socket close event received\n2025-10-29 01:44:50.463 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2eb4a574-57d4-4fa9-9ab9-c8d62654b527] Socket closed without exit code\n2025-10-29 01:45:50.464 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:45:50.467 [info] [command][4cffc092-430f-42ea-bab1-c0a7fa58857e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4cffc092-430f-42ea-bab1-c0a7fa58857e""}\n2025-10-29 01:45:50.467 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][699aa549-e81b-4886-adc2-2c3ed9512d61] remote server not configured\n2025-10-29 01:45:50.467 [error] [command][4cffc092-430f-42ea-bab1-c0a7fa58857e] Socket error: Error: read ECONNRESET\n2025-10-29 01:45:50.468 [info] [command][4cffc092-430f-42ea-bab1-c0a7fa58857e] Socket close event received\n2025-10-29 01:45:50.468 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4cffc092-430f-42ea-bab1-c0a7fa58857e] Socket closed without exit code\n2025-10-29 01:46:50.470 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:46:50.472 [info] [command][9e9e7a86-76a7-461b-8a0d-92516202b83e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9e9e7a86-76a7-461b-8a0d-92516202b83e""}\n2025-10-29 01:46:50.473 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][43f7e354-f3bf-47b4-bb32-f994da593a32] remote server not configured\n2025-10-29 01:46:50.473 [error] [command][9e9e7a86-76a7-461b-8a0d-92516202b83e] Socket error: Error: read ECONNRESET\n2025-10-29 01:46:50.473 [info] [command][9e9e7a86-76a7-461b-8a0d-92516202b83e] Socket close event received\n2025-10-29 01:46:50.473 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9e9e7a86-76a7-461b-8a0d-92516202b83e] Socket closed without exit code\n2025-10-29 01:47:50.484 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:47:50.487 [info] [command][44e18ac2-84d8-4643-9b22-de9b4ea4a686] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""44e18ac2-84d8-4643-9b22-de9b4ea4a686""}\n2025-10-29 01:47:50.488 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][18b129f5-49d6-4670-8f20-a1803ae506c6] remote server not configured\n2025-10-29 01:47:50.488 [error] [command][44e18ac2-84d8-4643-9b22-de9b4ea4a686] Socket error: Error: read ECONNRESET\n2025-10-29 01:47:50.488 [info] [command][44e18ac2-84d8-4643-9b22-de9b4ea4a686] Socket close event received\n2025-10-29 01:47:50.489 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][44e18ac2-84d8-4643-9b22-de9b4ea4a686] Socket closed without exit code\n2025-10-29 01:48:50.499 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:48:50.502 [info] [command][f0d96991-9244-473a-95f9-c6df9f05f7e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f0d96991-9244-473a-95f9-c6df9f05f7e6""}\n2025-10-29 01:48:50.503 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b077daf4-941a-41e4-966f-d809e9f3da3d] remote server not configured\n2025-10-29 01:48:50.503 [error] [command][f0d96991-9244-473a-95f9-c6df9f05f7e6] Socket error: Error: read ECONNRESET\n2025-10-29 01:48:50.503 [info] [command][f0d96991-9244-473a-95f9-c6df9f05f7e6] Socket close event received\n2025-10-29 01:48:50.503 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f0d96991-9244-473a-95f9-c6df9f05f7e6] Socket closed without exit code\n2025-10-29 01:49:50.511 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:49:50.513 [info] [command][6b58696e-4f30-47ee-bf90-56e13c465ceb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6b58696e-4f30-47ee-bf90-56e13c465ceb""}\n2025-10-29 01:49:50.514 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f58a8b3e-e8ae-4285-98db-22ec6b09aaab] remote server not configured\n2025-10-29 01:49:50.514 [error] [command][6b58696e-4f30-47ee-bf90-56e13c465ceb] Socket error: Error: read ECONNRESET\n2025-10-29 01:49:50.515 [info] [command][6b58696e-4f30-47ee-bf90-56e13c465ceb] Socket close event received\n2025-10-29 01:49:50.515 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6b58696e-4f30-47ee-bf90-56e13c465ceb] Socket closed without exit code\n2025-10-29 01:50:50.522 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:50:50.524 [info] [command][492b68de-fea5-403f-9422-d23f73f32c6e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""492b68de-fea5-403f-9422-d23f73f32c6e""}\n2025-10-29 01:50:50.525 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1c150c91-1ce8-4eb1-b439-56b3467448da] remote server not configured\n2025-10-29 01:50:50.525 [error] [command][492b68de-fea5-403f-9422-d23f73f32c6e] Socket error: Error: read ECONNRESET\n2025-10-29 01:50:50.526 [info] [command][492b68de-fea5-403f-9422-d23f73f32c6e] Socket close event received\n2025-10-29 01:50:50.526 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][492b68de-fea5-403f-9422-d23f73f32c6e] Socket closed without exit code\n2025-10-29 01:51:50.537 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:51:50.539 [info] [command][a361aab0-fe86-40e2-a314-fefb6f4e2070] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a361aab0-fe86-40e2-a314-fefb6f4e2070""}\n2025-10-29 01:51:50.540 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2485644b-38b4-41a2-9eca-fdd1b60e2400] remote server not configured\n2025-10-29 01:51:50.541 [error] [command][a361aab0-fe86-40e2-a314-fefb6f4e2070] Socket error: Error: read ECONNRESET\n2025-10-29 01:51:50.541 [info] [command][a361aab0-fe86-40e2-a314-fefb6f4e2070] Socket close event received\n2025-10-29 01:51:50.541 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a361aab0-fe86-40e2-a314-fefb6f4e2070] Socket closed without exit code\n2025-10-29 01:52:50.552 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:52:50.555 [info] [command][073c0a30-ac4f-4f9c-880e-812bd92886e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""073c0a30-ac4f-4f9c-880e-812bd92886e7""}\n2025-10-29 01:52:50.556 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2408dd5b-3d00-4588-b0d6-88e81eb65206] remote server not configured\n2025-10-29 01:52:50.556 [error] [command][073c0a30-ac4f-4f9c-880e-812bd92886e7] Socket error: Error: read ECONNRESET\n2025-10-29 01:52:50.556 [info] [command][073c0a30-ac4f-4f9c-880e-812bd92886e7] Socket close event received\n2025-10-29 01:52:50.556 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][073c0a30-ac4f-4f9c-880e-812bd92886e7] Socket closed without exit code\n2025-10-29 01:53:50.567 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:53:50.569 [info] [command][aa4d2280-c8c2-47cd-a86f-01e7dfbdcff4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""aa4d2280-c8c2-47cd-a86f-01e7dfbdcff4""}\n2025-10-29 01:53:50.570 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][83b82aa0-d025-4f55-9257-391eac6dd6c2] remote server not configured\n2025-10-29 01:53:50.571 [error] [command][aa4d2280-c8c2-47cd-a86f-01e7dfbdcff4] Socket error: Error: read ECONNRESET\n2025-10-29 01:53:50.571 [info] [command][aa4d2280-c8c2-47cd-a86f-01e7dfbdcff4] Socket close event received\n2025-10-29 01:53:50.571 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][aa4d2280-c8c2-47cd-a86f-01e7dfbdcff4] Socket closed without exit code\n2025-10-29 01:54:50.582 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:54:50.583 [info] [command][6237c150-4127-402f-97e9-fc07c193cd54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6237c150-4127-402f-97e9-fc07c193cd54""}\n2025-10-29 01:54:50.584 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][356b654e-58b0-4526-828f-b471445c02d1] remote server not configured\n2025-10-29 01:54:50.585 [error] [command][6237c150-4127-402f-97e9-fc07c193cd54] Socket error: Error: read ECONNRESET\n2025-10-29 01:54:50.585 [info] [command][6237c150-4127-402f-97e9-fc07c193cd54] Socket close event received\n2025-10-29 01:54:50.586 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6237c150-4127-402f-97e9-fc07c193cd54] Socket closed without exit code\n2025-10-29 01:55:50.596 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:55:50.599 [info] [command][60528bf2-abaf-4bd5-b058-386f27ed9886] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""60528bf2-abaf-4bd5-b058-386f27ed9886""}\n2025-10-29 01:55:50.599 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][88d3f125-6ea4-4566-84c1-798551e84e12] remote server not configured\n2025-10-29 01:55:50.600 [error] [command][60528bf2-abaf-4bd5-b058-386f27ed9886] Socket error: Error: read ECONNRESET\n2025-10-29 01:55:50.600 [info] [command][60528bf2-abaf-4bd5-b058-386f27ed9886] Socket close event received\n2025-10-29 01:55:50.600 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][60528bf2-abaf-4bd5-b058-386f27ed9886] Socket closed without exit code\n2025-10-29 01:56:50.602 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:56:50.605 [info] [command][eb952910-a7fb-4032-9eb6-f503c2ed64fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eb952910-a7fb-4032-9eb6-f503c2ed64fa""}\n2025-10-29 01:56:50.605 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e1ed155c-25a5-426d-bb98-3703d34f6b8d] remote server not configured\n2025-10-29 01:56:50.606 [error] [command][eb952910-a7fb-4032-9eb6-f503c2ed64fa] Socket error: Error: read ECONNRESET\n2025-10-29 01:56:50.606 [info] [command][eb952910-a7fb-4032-9eb6-f503c2ed64fa] Socket close event received\n2025-10-29 01:56:50.606 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][eb952910-a7fb-4032-9eb6-f503c2ed64fa] Socket closed without exit code\n2025-10-29 01:57:50.609 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:57:50.610 [info] [command][c2a4aec8-4742-4116-ac1b-7c6c4515eb5c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c2a4aec8-4742-4116-ac1b-7c6c4515eb5c""}\n2025-10-29 01:57:50.611 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][89044d74-4e51-4008-b685-a7ae029584e7] remote server not configured\n2025-10-29 01:57:50.611 [error] [command][c2a4aec8-4742-4116-ac1b-7c6c4515eb5c] Socket error: Error: read ECONNRESET\n2025-10-29 01:57:50.611 [info] [command][c2a4aec8-4742-4116-ac1b-7c6c4515eb5c] Socket close event received\n2025-10-29 01:57:50.612 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c2a4aec8-4742-4116-ac1b-7c6c4515eb5c] Socket closed without exit code\n2025-10-29 01:58:50.622 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:58:50.624 [info] [command][aaef9db9-e9b7-4105-8cae-08239bfd8b47] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""aaef9db9-e9b7-4105-8cae-08239bfd8b47""}\n2025-10-29 01:58:50.625 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f2a9fe1f-a0dc-4136-aeb4-f114eb233f2b] remote server not configured\n2025-10-29 01:58:50.626 [error] [command][aaef9db9-e9b7-4105-8cae-08239bfd8b47] Socket error: Error: read ECONNRESET\n2025-10-29 01:58:50.626 [info] [command][aaef9db9-e9b7-4105-8cae-08239bfd8b47] Socket close event received\n2025-10-29 01:58:50.626 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][aaef9db9-e9b7-4105-8cae-08239bfd8b47] Socket closed without exit code\n2025-10-29 01:59:50.633 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 01:59:50.635 [info] [command][91f3399d-9cd9-42f1-98f2-dc97e81859f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""91f3399d-9cd9-42f1-98f2-dc97e81859f9""}\n2025-10-29 01:59:50.636 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e0b0780c-1a99-4777-b287-e6aed2edeed9] remote server not configured\n2025-10-29 01:59:50.636 [error] [command][91f3399d-9cd9-42f1-98f2-dc97e81859f9] Socket error: Error: read ECONNRESET\n2025-10-29 01:59:50.637 [info] [command][91f3399d-9cd9-42f1-98f2-dc97e81859f9] Socket close event received\n2025-10-29 01:59:50.637 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][91f3399d-9cd9-42f1-98f2-dc97e81859f9] Socket closed without exit code\n2025-10-29 02:00:50.635 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:00:50.638 [info] [command][890a3fef-55ed-4cfa-9845-619415fe0fae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""890a3fef-55ed-4cfa-9845-619415fe0fae""}\n2025-10-29 02:00:50.638 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][602854b7-dd19-4ce1-9f0f-9954e79fb523] remote server not configured\n2025-10-29 02:00:50.639 [error] [command][890a3fef-55ed-4cfa-9845-619415fe0fae] Socket error: Error: read ECONNRESET\n2025-10-29 02:00:50.639 [info] [command][890a3fef-55ed-4cfa-9845-619415fe0fae] Socket close event received\n2025-10-29 02:00:50.639 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][890a3fef-55ed-4cfa-9845-619415fe0fae] Socket closed without exit code\n2025-10-29 02:01:50.621 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:01:50.622 [info] [command][e3fa3851-a59b-4607-a398-ecd6113af423] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e3fa3851-a59b-4607-a398-ecd6113af423""}\n2025-10-29 02:01:50.623 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][47d49e5b-406c-4859-811b-b946a458a94f] remote server not configured\n2025-10-29 02:01:50.624 [error] [command][e3fa3851-a59b-4607-a398-ecd6113af423] Socket error: Error: read ECONNRESET\n2025-10-29 02:01:50.624 [info] [command][e3fa3851-a59b-4607-a398-ecd6113af423] Socket close event received\n2025-10-29 02:01:50.625 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e3fa3851-a59b-4607-a398-ecd6113af423] Socket closed without exit code\n2025-10-29 02:02:50.635 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:02:50.638 [info] [command][93c3cd69-d071-41cb-9af3-946483996ae7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""93c3cd69-d071-41cb-9af3-946483996ae7""}\n2025-10-29 02:02:50.638 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][34f067b3-55bb-4dea-bfc9-9cee5cb638f7] remote server not configured\n2025-10-29 02:02:50.639 [error] [command][93c3cd69-d071-41cb-9af3-946483996ae7] Socket error: Error: read ECONNRESET\n2025-10-29 02:02:50.639 [info] [command][93c3cd69-d071-41cb-9af3-946483996ae7] Socket close event received\n2025-10-29 02:02:50.640 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][93c3cd69-d071-41cb-9af3-946483996ae7] Socket closed without exit code\n2025-10-29 02:03:50.650 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:03:50.654 [info] [command][0be20a37-cf01-4a53-b827-2344bc38689c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0be20a37-cf01-4a53-b827-2344bc38689c""}\n2025-10-29 02:03:50.654 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a4dd3850-38d8-4cd6-a001-77940e3dff08] remote server not configured\n2025-10-29 02:03:50.655 [error] [command][0be20a37-cf01-4a53-b827-2344bc38689c] Socket error: Error: read ECONNRESET\n2025-10-29 02:03:50.655 [info] [command][0be20a37-cf01-4a53-b827-2344bc38689c] Socket close event received\n2025-10-29 02:03:50.656 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0be20a37-cf01-4a53-b827-2344bc38689c] Socket closed without exit code\n2025-10-29 02:04:50.666 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:04:50.669 [info] [command][db25900f-a72a-45f7-82d9-9bb0a9604fe3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""db25900f-a72a-45f7-82d9-9bb0a9604fe3""}\n2025-10-29 02:04:50.669 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6f4a5aed-51b0-4ed1-b355-728c68a2c4a1] remote server not configured\n2025-10-29 02:04:50.670 [error] [command][db25900f-a72a-45f7-82d9-9bb0a9604fe3] Socket error: Error: read ECONNRESET\n2025-10-29 02:04:50.670 [info] [command][db25900f-a72a-45f7-82d9-9bb0a9604fe3] Socket close event received\n2025-10-29 02:04:50.670 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][db25900f-a72a-45f7-82d9-9bb0a9604fe3] Socket closed without exit code\n2025-10-29 02:05:50.680 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:05:50.682 [info] [command][b5e7f295-54ca-42bf-b654-7c7b40612b30] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b5e7f295-54ca-42bf-b654-7c7b40612b30""}\n2025-10-29 02:05:50.683 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3206b2cb-155c-4077-9595-03fec766631c] remote server not configured\n2025-10-29 02:05:50.683 [error] [command][b5e7f295-54ca-42bf-b654-7c7b40612b30] Socket error: Error: read ECONNRESET\n2025-10-29 02:05:50.683 [info] [command][b5e7f295-54ca-42bf-b654-7c7b40612b30] Socket close event received\n2025-10-29 02:05:50.684 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b5e7f295-54ca-42bf-b654-7c7b40612b30] Socket closed without exit code\n2025-10-29 02:06:50.695 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:06:50.697 [info] [command][6481cf90-eda6-41cb-9d8c-c2c7e97e0cc1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6481cf90-eda6-41cb-9d8c-c2c7e97e0cc1""}\n2025-10-29 02:06:50.698 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][850d3884-2010-4ba0-875e-393c20ada811] remote server not configured\n2025-10-29 02:06:50.699 [error] [command][6481cf90-eda6-41cb-9d8c-c2c7e97e0cc1] Socket error: Error: read ECONNRESET\n2025-10-29 02:06:50.699 [info] [command][6481cf90-eda6-41cb-9d8c-c2c7e97e0cc1] Socket close event received\n2025-10-29 02:06:50.699 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6481cf90-eda6-41cb-9d8c-c2c7e97e0cc1] Socket closed without exit code\n2025-10-29 02:07:50.710 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:07:50.712 [info] [command][6a7eddf6-00c7-44cb-a71e-8c4656ef4a00] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6a7eddf6-00c7-44cb-a71e-8c4656ef4a00""}\n2025-10-29 02:07:50.713 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2bd318ed-6332-45a0-a08c-5a09cacf2a90] remote server not configured\n2025-10-29 02:07:50.714 [error] [command][6a7eddf6-00c7-44cb-a71e-8c4656ef4a00] Socket error: Error: read ECONNRESET\n2025-10-29 02:07:50.714 [info] [command][6a7eddf6-00c7-44cb-a71e-8c4656ef4a00] Socket close event received\n2025-10-29 02:07:50.714 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6a7eddf6-00c7-44cb-a71e-8c4656ef4a00] Socket closed without exit code\n2025-10-29 02:08:50.716 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:08:50.718 [info] [command][f83dc367-8718-4024-b7ed-78b51a0d9ac8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f83dc367-8718-4024-b7ed-78b51a0d9ac8""}\n2025-10-29 02:08:50.719 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d786c96c-8f8b-43a1-919d-3f822c8ba3a5] remote server not configured\n2025-10-29 02:08:50.719 [error] [command][f83dc367-8718-4024-b7ed-78b51a0d9ac8] Socket error: Error: read ECONNRESET\n2025-10-29 02:08:50.719 [info] [command][f83dc367-8718-4024-b7ed-78b51a0d9ac8] Socket close event received\n2025-10-29 02:08:50.719 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f83dc367-8718-4024-b7ed-78b51a0d9ac8] Socket closed without exit code\n2025-10-29 02:09:50.730 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:09:50.732 [info] [command][b3f8b1d9-4ea3-459b-8348-1ffbde8b0447] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b3f8b1d9-4ea3-459b-8348-1ffbde8b0447""}\n2025-10-29 02:09:50.733 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f3b37634-4f85-4005-a960-20abe1b7292c] remote server not configured\n2025-10-29 02:09:50.734 [error] [command][b3f8b1d9-4ea3-459b-8348-1ffbde8b0447] Socket error: Error: read ECONNRESET\n2025-10-29 02:09:50.735 [info] [command][b3f8b1d9-4ea3-459b-8348-1ffbde8b0447] Socket close event received\n2025-10-29 02:09:50.735 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b3f8b1d9-4ea3-459b-8348-1ffbde8b0447] Socket closed without exit code\n2025-10-29 02:10:50.745 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:10:50.748 [info] [command][00860090-aa1f-4653-b856-ae7e26cc4170] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""00860090-aa1f-4653-b856-ae7e26cc4170""}\n2025-10-29 02:10:50.748 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][14c6a5cf-78b8-4b99-a8f2-75548c87f691] remote server not configured\n2025-10-29 02:10:50.749 [error] [command][00860090-aa1f-4653-b856-ae7e26cc4170] Socket error: Error: read ECONNRESET\n2025-10-29 02:10:50.749 [info] [command][00860090-aa1f-4653-b856-ae7e26cc4170] Socket close event received\n2025-10-29 02:10:50.749 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][00860090-aa1f-4653-b856-ae7e26cc4170] Socket closed without exit code\n2025-10-29 02:11:50.760 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:11:50.763 [info] [command][50e9d62c-c749-40cc-adc3-9c4df4e86248] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""50e9d62c-c749-40cc-adc3-9c4df4e86248""}\n2025-10-29 02:11:50.763 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c56d6664-ce00-435b-8384-c26da06fdc6e] remote server not configured\n2025-10-29 02:11:50.764 [error] [command][50e9d62c-c749-40cc-adc3-9c4df4e86248] Socket error: Error: read ECONNRESET\n2025-10-29 02:11:50.764 [info] [command][50e9d62c-c749-40cc-adc3-9c4df4e86248] Socket close event received\n2025-10-29 02:11:50.764 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][50e9d62c-c749-40cc-adc3-9c4df4e86248] Socket closed without exit code\n2025-10-29 02:12:50.773 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:12:50.774 [info] [command][7d663201-5988-4585-932b-51fc776c4013] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7d663201-5988-4585-932b-51fc776c4013""}\n2025-10-29 02:12:50.775 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dee521f8-b267-472e-9e98-ca6a7ba1b997] remote server not configured\n2025-10-29 02:12:50.775 [error] [command][7d663201-5988-4585-932b-51fc776c4013] Socket error: Error: read ECONNRESET\n2025-10-29 02:12:50.775 [info] [command][7d663201-5988-4585-932b-51fc776c4013] Socket close event received\n2025-10-29 02:12:50.776 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7d663201-5988-4585-932b-51fc776c4013] Socket closed without exit code\n2025-10-29 02:13:50.786 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:13:50.788 [info] [command][57ea3aa5-cbae-4441-9f7e-a68578bc2b80] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""57ea3aa5-cbae-4441-9f7e-a68578bc2b80""}\n2025-10-29 02:13:50.789 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b8e59fb6-2dc1-4546-bd13-75df0d10f66a] remote server not configured\n2025-10-29 02:13:50.789 [error] [command][57ea3aa5-cbae-4441-9f7e-a68578bc2b80] Socket error: Error: read ECONNRESET\n2025-10-29 02:13:50.789 [info] [command][57ea3aa5-cbae-4441-9f7e-a68578bc2b80] Socket close event received\n2025-10-29 02:13:50.790 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][57ea3aa5-cbae-4441-9f7e-a68578bc2b80] Socket closed without exit code\n2025-10-29 02:14:50.800 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:14:50.802 [info] [command][2b6be3fa-5145-43c2-9d7a-8d4349deffe8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2b6be3fa-5145-43c2-9d7a-8d4349deffe8""}\n2025-10-29 02:14:50.802 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][02b64728-0103-47fc-b81b-7ee7ca857b7c] remote server not configured\n2025-10-29 02:14:50.803 [error] [command][2b6be3fa-5145-43c2-9d7a-8d4349deffe8] Socket error: Error: read ECONNRESET\n2025-10-29 02:14:50.803 [info] [command][2b6be3fa-5145-43c2-9d7a-8d4349deffe8] Socket close event received\n2025-10-29 02:14:50.803 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2b6be3fa-5145-43c2-9d7a-8d4349deffe8] Socket closed without exit code\n2025-10-29 02:15:50.813 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:15:50.816 [info] [command][ac31e309-a73a-4257-918d-1135b8226ebd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ac31e309-a73a-4257-918d-1135b8226ebd""}\n2025-10-29 02:15:50.817 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e048c0b6-87f6-406d-b8c0-e5c32748ef3f] remote server not configured\n2025-10-29 02:15:50.818 [error] [command][ac31e309-a73a-4257-918d-1135b8226ebd] Socket error: Error: read ECONNRESET\n2025-10-29 02:15:50.818 [info] [command][ac31e309-a73a-4257-918d-1135b8226ebd] Socket close event received\n2025-10-29 02:15:50.818 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ac31e309-a73a-4257-918d-1135b8226ebd] Socket closed without exit code\n2025-10-29 02:16:50.829 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:16:50.831 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e420e3fd-59f3-4e40-8542-5f25ab390339] remote server not configured\n2025-10-29 02:16:50.831 [info] [command][7adab607-fb0e-46f4-aafb-5da5ec0c00ad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7adab607-fb0e-46f4-aafb-5da5ec0c00ad""}\n2025-10-29 02:16:50.832 [error] [command][7adab607-fb0e-46f4-aafb-5da5ec0c00ad] Socket error: Error: read ECONNRESET\n2025-10-29 02:16:50.832 [info] [command][7adab607-fb0e-46f4-aafb-5da5ec0c00ad] Socket close event received\n2025-10-29 02:16:50.832 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7adab607-fb0e-46f4-aafb-5da5ec0c00ad] Socket closed without exit code\n2025-10-29 02:17:50.832 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:17:50.835 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0beb9902-9864-4dea-91dd-4d2fd19088ac] remote server not configured\n2025-10-29 02:17:50.836 [info] [command][26571c06-a5b0-4594-9a82-e9ea0cd6fc08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""26571c06-a5b0-4594-9a82-e9ea0cd6fc08""}\n2025-10-29 02:17:50.837 [error] [command][26571c06-a5b0-4594-9a82-e9ea0cd6fc08] Socket error: Error: read ECONNRESET\n2025-10-29 02:17:50.837 [info] [command][26571c06-a5b0-4594-9a82-e9ea0cd6fc08] Socket close event received\n2025-10-29 02:17:50.838 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][26571c06-a5b0-4594-9a82-e9ea0cd6fc08] Socket closed without exit code\n2025-10-29 02:18:50.848 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:18:50.851 [info] [command][0f8bac79-2d5c-4fe3-9e63-9b4e12cfca86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0f8bac79-2d5c-4fe3-9e63-9b4e12cfca86""}\n2025-10-29 02:18:50.851 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d3411d0d-5c75-4cda-9bcf-957f4296e753] remote server not configured\n2025-10-29 02:18:50.852 [error] [command][0f8bac79-2d5c-4fe3-9e63-9b4e12cfca86] Socket error: Error: read ECONNRESET\n2025-10-29 02:18:50.852 [info] [command][0f8bac79-2d5c-4fe3-9e63-9b4e12cfca86] Socket close event received\n2025-10-29 02:18:50.852 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0f8bac79-2d5c-4fe3-9e63-9b4e12cfca86] Socket closed without exit code\n2025-10-29 02:19:50.863 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:19:50.866 [info] [command][0df6909c-d822-48fd-aa04-e36a4e9b3bed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0df6909c-d822-48fd-aa04-e36a4e9b3bed""}\n2025-10-29 02:19:50.866 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d123b984-1a06-41eb-af82-cbfa720cc47c] remote server not configured\n2025-10-29 02:19:50.867 [error] [command][0df6909c-d822-48fd-aa04-e36a4e9b3bed] Socket error: Error: read ECONNRESET\n2025-10-29 02:19:50.867 [info] [command][0df6909c-d822-48fd-aa04-e36a4e9b3bed] Socket close event received\n2025-10-29 02:19:50.868 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0df6909c-d822-48fd-aa04-e36a4e9b3bed] Socket closed without exit code\n2025-10-29 02:20:50.878 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:20:50.879 [info] [command][e33428ff-9124-4a38-b5e3-b755193a2a34] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e33428ff-9124-4a38-b5e3-b755193a2a34""}\n2025-10-29 02:20:50.880 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ae2af0dd-07d2-4dc3-a906-4d2154a5a5b1] remote server not configured\n2025-10-29 02:20:50.880 [error] [command][e33428ff-9124-4a38-b5e3-b755193a2a34] Socket error: Error: read ECONNRESET\n2025-10-29 02:20:50.881 [info] [command][e33428ff-9124-4a38-b5e3-b755193a2a34] Socket close event received\n2025-10-29 02:20:50.881 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e33428ff-9124-4a38-b5e3-b755193a2a34] Socket closed without exit code\n2025-10-29 02:21:50.891 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:21:50.893 [info] [command][263660d0-df66-42dc-9da9-34c6818da0f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""263660d0-df66-42dc-9da9-34c6818da0f4""}\n2025-10-29 02:21:50.894 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4b370f28-76fc-4e11-977a-e227121dc956] remote server not configured\n2025-10-29 02:21:50.894 [error] [command][263660d0-df66-42dc-9da9-34c6818da0f4] Socket error: Error: read ECONNRESET\n2025-10-29 02:21:50.895 [info] [command][263660d0-df66-42dc-9da9-34c6818da0f4] Socket close event received\n2025-10-29 02:21:50.895 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][263660d0-df66-42dc-9da9-34c6818da0f4] Socket closed without exit code\n2025-10-29 02:22:50.898 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:22:50.901 [info] [command][763e1df9-733a-4bf8-9a47-47e831550e51] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""763e1df9-733a-4bf8-9a47-47e831550e51""}\n2025-10-29 02:22:50.902 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a22a8a4e-6ce1-45f6-9d3e-120548a1adab] remote server not configured\n2025-10-29 02:22:50.902 [error] [command][763e1df9-733a-4bf8-9a47-47e831550e51] Socket error: Error: read ECONNRESET\n2025-10-29 02:22:50.903 [info] [command][763e1df9-733a-4bf8-9a47-47e831550e51] Socket close event received\n2025-10-29 02:22:50.903 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][763e1df9-733a-4bf8-9a47-47e831550e51] Socket closed without exit code\n2025-10-29 02:23:50.908 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:23:50.911 [info] [command][d89e52e5-460e-439d-b84e-a5ab96e7f67c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d89e52e5-460e-439d-b84e-a5ab96e7f67c""}\n2025-10-29 02:23:50.912 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f66343c2-5757-4afd-b983-0abf9b207294] remote server not configured\n2025-10-29 02:23:50.912 [error] [command][d89e52e5-460e-439d-b84e-a5ab96e7f67c] Socket error: Error: read ECONNRESET\n2025-10-29 02:23:50.912 [info] [command][d89e52e5-460e-439d-b84e-a5ab96e7f67c] Socket close event received\n2025-10-29 02:23:50.913 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d89e52e5-460e-439d-b84e-a5ab96e7f67c] Socket closed without exit code\n2025-10-29 02:24:50.923 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:24:50.925 [info] [command][d951a6f9-ed34-4ad7-85a5-1dfa9fd8c1de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d951a6f9-ed34-4ad7-85a5-1dfa9fd8c1de""}\n2025-10-29 02:24:50.926 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][13874e7f-2cb9-4025-b1fc-b4af5bbb4030] remote server not configured\n2025-10-29 02:24:50.927 [error] [command][d951a6f9-ed34-4ad7-85a5-1dfa9fd8c1de] Socket error: Error: read ECONNRESET\n2025-10-29 02:24:50.927 [info] [command][d951a6f9-ed34-4ad7-85a5-1dfa9fd8c1de] Socket close event received\n2025-10-29 02:24:50.927 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d951a6f9-ed34-4ad7-85a5-1dfa9fd8c1de] Socket closed without exit code\n2025-10-29 02:25:50.931 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:25:50.934 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cd023ffb-c899-4863-b05c-217446c74724] remote server not configured\n2025-10-29 02:25:50.934 [info] [command][84b3976c-7c94-4e90-a71c-6c4ddcae8499] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""84b3976c-7c94-4e90-a71c-6c4ddcae8499""}\n2025-10-29 02:25:50.935 [error] [command][84b3976c-7c94-4e90-a71c-6c4ddcae8499] Socket error: Error: read ECONNRESET\n2025-10-29 02:25:50.936 [info] [command][84b3976c-7c94-4e90-a71c-6c4ddcae8499] Socket close event received\n2025-10-29 02:25:50.936 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][84b3976c-7c94-4e90-a71c-6c4ddcae8499] Socket closed without exit code\n2025-10-29 02:26:50.946 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:26:50.948 [info] [command][41f8c393-84b7-43e9-be95-9e5fdc357d92] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""41f8c393-84b7-43e9-be95-9e5fdc357d92""}\n2025-10-29 02:26:50.948 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][872d2412-61be-40ea-a517-a5d480c0aed5] remote server not configured\n2025-10-29 02:26:50.949 [error] [command][41f8c393-84b7-43e9-be95-9e5fdc357d92] Socket error: Error: read ECONNRESET\n2025-10-29 02:26:50.949 [info] [command][41f8c393-84b7-43e9-be95-9e5fdc357d92] Socket close event received\n2025-10-29 02:26:50.949 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][41f8c393-84b7-43e9-be95-9e5fdc357d92] Socket closed without exit code\n2025-10-29 02:27:50.960 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:27:50.962 [info] [command][bfb120d9-0e97-4f86-8e09-9ccfe7488480] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bfb120d9-0e97-4f86-8e09-9ccfe7488480""}\n2025-10-29 02:27:50.963 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][943341c3-3647-4b91-9317-1bac947e9a28] remote server not configured\n2025-10-29 02:27:50.963 [error] [command][bfb120d9-0e97-4f86-8e09-9ccfe7488480] Socket error: Error: read ECONNRESET\n2025-10-29 02:27:50.964 [info] [command][bfb120d9-0e97-4f86-8e09-9ccfe7488480] Socket close event received\n2025-10-29 02:27:50.964 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][bfb120d9-0e97-4f86-8e09-9ccfe7488480] Socket closed without exit code\n2025-10-29 02:28:50.966 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:28:50.968 [info] [command][c582471b-f4ba-4195-925c-f49dcb5b0a12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c582471b-f4ba-4195-925c-f49dcb5b0a12""}\n2025-10-29 02:28:50.969 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1696ded3-b752-4969-9934-ddb8b384e283] remote server not configured\n2025-10-29 02:28:50.970 [error] [command][c582471b-f4ba-4195-925c-f49dcb5b0a12] Socket error: Error: read ECONNRESET\n2025-10-29 02:28:50.970 [info] [command][c582471b-f4ba-4195-925c-f49dcb5b0a12] Socket close event received\n2025-10-29 02:28:50.970 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c582471b-f4ba-4195-925c-f49dcb5b0a12] Socket closed without exit code\n2025-10-29 02:29:50.976 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:29:50.979 [info] [command][6f456f87-c935-4624-b44d-1f99c9598a1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6f456f87-c935-4624-b44d-1f99c9598a1a""}\n2025-10-29 02:29:50.980 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ce27db49-bdcb-4a65-b31d-53e5fb8641aa] remote server not configured\n2025-10-29 02:29:50.980 [error] [command][6f456f87-c935-4624-b44d-1f99c9598a1a] Socket error: Error: read ECONNRESET\n2025-10-29 02:29:50.981 [info] [command][6f456f87-c935-4624-b44d-1f99c9598a1a] Socket close event received\n2025-10-29 02:29:50.981 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6f456f87-c935-4624-b44d-1f99c9598a1a] Socket closed without exit code\n2025-10-29 02:30:50.991 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:30:50.994 [info] [command][7f42a2d7-d8b2-4257-ae6f-3682c52df448] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7f42a2d7-d8b2-4257-ae6f-3682c52df448""}\n2025-10-29 02:30:50.994 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][58eaf8bd-c99c-4771-b148-576c1ec52aa6] remote server not configured\n2025-10-29 02:30:50.995 [error] [command][7f42a2d7-d8b2-4257-ae6f-3682c52df448] Socket error: Error: read ECONNRESET\n2025-10-29 02:30:50.995 [info] [command][7f42a2d7-d8b2-4257-ae6f-3682c52df448] Socket close event received\n2025-10-29 02:30:50.995 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7f42a2d7-d8b2-4257-ae6f-3682c52df448] Socket closed without exit code\n2025-10-29 02:31:51.006 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:31:51.007 [info] [command][ec951118-42cb-4dcc-9d12-357eaf4eaa51] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ec951118-42cb-4dcc-9d12-357eaf4eaa51""}\n2025-10-29 02:31:51.008 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0652f12f-280a-4b19-84ae-9cd51b52319d] remote server not configured\n2025-10-29 02:31:51.009 [error] [command][ec951118-42cb-4dcc-9d12-357eaf4eaa51] Socket error: Error: read ECONNRESET\n2025-10-29 02:31:51.009 [info] [command][ec951118-42cb-4dcc-9d12-357eaf4eaa51] Socket close event received\n2025-10-29 02:31:51.009 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ec951118-42cb-4dcc-9d12-357eaf4eaa51] Socket closed without exit code\n2025-10-29 02:32:51.017 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:32:51.020 [info] [command][fe69c8f8-a2aa-4f02-b4bd-aaf554277190] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fe69c8f8-a2aa-4f02-b4bd-aaf554277190""}\n2025-10-29 02:32:51.020 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][26c13594-428f-46cf-b84e-74eaba5955e9] remote server not configured\n2025-10-29 02:32:51.021 [error] [command][fe69c8f8-a2aa-4f02-b4bd-aaf554277190] Socket error: Error: read ECONNRESET\n2025-10-29 02:32:51.021 [info] [command][fe69c8f8-a2aa-4f02-b4bd-aaf554277190] Socket close event received\n2025-10-29 02:32:51.022 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fe69c8f8-a2aa-4f02-b4bd-aaf554277190] Socket closed without exit code\n2025-10-29 02:33:51.029 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:33:51.032 [info] [command][93ab2ef5-2f6f-4daf-9480-70dcc06a2b02] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""93ab2ef5-2f6f-4daf-9480-70dcc06a2b02""}\n2025-10-29 02:33:51.032 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5e522c70-eeda-4da2-a472-aef192ba2273] remote server not configured\n2025-10-29 02:33:51.033 [error] [command][93ab2ef5-2f6f-4daf-9480-70dcc06a2b02] Socket error: Error: read ECONNRESET\n2025-10-29 02:33:51.033 [info] [command][93ab2ef5-2f6f-4daf-9480-70dcc06a2b02] Socket close event received\n2025-10-29 02:33:51.033 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][93ab2ef5-2f6f-4daf-9480-70dcc06a2b02] Socket closed without exit code\n2025-10-29 02:34:51.038 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:34:51.040 [info] [command][3723a50e-ede5-4115-af66-9cea2326ca2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3723a50e-ede5-4115-af66-9cea2326ca2e""}\n2025-10-29 02:34:51.041 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][377718d7-87e1-4092-8253-02c5ff7053bf] remote server not configured\n2025-10-29 02:34:51.042 [error] [command][3723a50e-ede5-4115-af66-9cea2326ca2e] Socket error: Error: read ECONNRESET\n2025-10-29 02:34:51.042 [info] [command][3723a50e-ede5-4115-af66-9cea2326ca2e] Socket close event received\n2025-10-29 02:34:51.042 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3723a50e-ede5-4115-af66-9cea2326ca2e] Socket closed without exit code\n2025-10-29 02:35:51.050 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:35:51.053 [info] [command][382e3b5e-fb2c-443c-9d29-33fe122b9641] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""382e3b5e-fb2c-443c-9d29-33fe122b9641""}\n2025-10-29 02:35:51.053 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2adbd792-d4b3-4c9d-bcc7-f65014e07ed6] remote server not configured\n2025-10-29 02:35:51.054 [error] [command][382e3b5e-fb2c-443c-9d29-33fe122b9641] Socket error: Error: read ECONNRESET\n2025-10-29 02:35:51.054 [info] [command][382e3b5e-fb2c-443c-9d29-33fe122b9641] Socket close event received\n2025-10-29 02:35:51.054 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][382e3b5e-fb2c-443c-9d29-33fe122b9641] Socket closed without exit code\n2025-10-29 02:36:51.065 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:36:51.067 [info] [command][744d9d2d-7637-4e32-81c6-86e56edc9cae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""744d9d2d-7637-4e32-81c6-86e56edc9cae""}\n2025-10-29 02:36:51.067 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f0b6a4ea-8dad-414a-8d41-95dfe5bf157b] remote server not configured\n2025-10-29 02:36:51.068 [error] [command][744d9d2d-7637-4e32-81c6-86e56edc9cae] Socket error: Error: read ECONNRESET\n2025-10-29 02:36:51.068 [info] [command][744d9d2d-7637-4e32-81c6-86e56edc9cae] Socket close event received\n2025-10-29 02:36:51.069 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][744d9d2d-7637-4e32-81c6-86e56edc9cae] Socket closed without exit code\n2025-10-29 02:37:51.072 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:37:51.075 [info] [command][357ba78d-e966-4263-b7f1-4bdbb116a618] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""357ba78d-e966-4263-b7f1-4bdbb116a618""}\n2025-10-29 02:37:51.076 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f2e58316-31b4-4d05-85a8-d12cc1f0006f] remote server not configured\n2025-10-29 02:37:51.077 [error] [command][357ba78d-e966-4263-b7f1-4bdbb116a618] Socket error: Error: read ECONNRESET\n2025-10-29 02:37:51.077 [info] [command][357ba78d-e966-4263-b7f1-4bdbb116a618] Socket close event received\n2025-10-29 02:37:51.078 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][357ba78d-e966-4263-b7f1-4bdbb116a618] Socket closed without exit code\n2025-10-29 02:38:51.083 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:38:51.085 [info] [command][5bd4fac3-3841-4be4-a577-242472553323] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5bd4fac3-3841-4be4-a577-242472553323""}\n2025-10-29 02:38:51.086 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ee29f7f7-d5ab-4e88-81f2-46a35caf6c66] remote server not configured\n2025-10-29 02:38:51.086 [error] [command][5bd4fac3-3841-4be4-a577-242472553323] Socket error: Error: read ECONNRESET\n2025-10-29 02:38:51.087 [info] [command][5bd4fac3-3841-4be4-a577-242472553323] Socket close event received\n2025-10-29 02:38:51.087 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5bd4fac3-3841-4be4-a577-242472553323] Socket closed without exit code\n2025-10-29 02:39:51.095 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:39:51.098 [info] [command][27b05652-6bdf-4856-bcf8-614484413352] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""27b05652-6bdf-4856-bcf8-614484413352""}\n2025-10-29 02:39:51.099 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][58898ff6-9680-4442-b80b-b22f377cba59] remote server not configured\n2025-10-29 02:39:51.100 [error] [command][27b05652-6bdf-4856-bcf8-614484413352] Socket error: Error: read ECONNRESET\n2025-10-29 02:39:51.101 [info] [command][27b05652-6bdf-4856-bcf8-614484413352] Socket close event received\n2025-10-29 02:39:51.101 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][27b05652-6bdf-4856-bcf8-614484413352] Socket closed without exit code\n2025-10-29 02:40:51.112 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:40:51.114 [info] [command][5f47add8-9870-4b8f-b41c-7b4a1f34c5f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5f47add8-9870-4b8f-b41c-7b4a1f34c5f9""}\n2025-10-29 02:40:51.115 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7893401b-971e-4a4c-95cb-912e9f0121d8] remote server not configured\n2025-10-29 02:40:51.116 [error] [command][5f47add8-9870-4b8f-b41c-7b4a1f34c5f9] Socket error: Error: read ECONNRESET\n2025-10-29 02:40:51.116 [info] [command][5f47add8-9870-4b8f-b41c-7b4a1f34c5f9] Socket close event received\n2025-10-29 02:40:51.116 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5f47add8-9870-4b8f-b41c-7b4a1f34c5f9] Socket closed without exit code\n2025-10-29 02:41:51.118 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:41:51.120 [info] [command][5b92f2cd-4b9f-4851-84d1-24c97de31cc4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5b92f2cd-4b9f-4851-84d1-24c97de31cc4""}\n2025-10-29 02:41:51.121 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0f21ac66-99d4-4556-9171-55dc96a29c75] remote server not configured\n2025-10-29 02:41:51.122 [error] [command][5b92f2cd-4b9f-4851-84d1-24c97de31cc4] Socket error: Error: read ECONNRESET\n2025-10-29 02:41:51.122 [info] [command][5b92f2cd-4b9f-4851-84d1-24c97de31cc4] Socket close event received\n2025-10-29 02:41:51.122 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5b92f2cd-4b9f-4851-84d1-24c97de31cc4] Socket closed without exit code\n2025-10-29 02:42:51.133 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:42:51.135 [info] [command][d5d921b3-3d2b-4932-ad28-016f9a824569] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d5d921b3-3d2b-4932-ad28-016f9a824569""}\n2025-10-29 02:42:51.135 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5b558be8-945f-41d0-927b-2a8b834673ea] remote server not configured\n2025-10-29 02:42:51.135 [error] [command][d5d921b3-3d2b-4932-ad28-016f9a824569] Socket error: Error: read ECONNRESET\n2025-10-29 02:42:51.136 [info] [command][d5d921b3-3d2b-4932-ad28-016f9a824569] Socket close event received\n2025-10-29 02:42:51.136 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d5d921b3-3d2b-4932-ad28-016f9a824569] Socket closed without exit code\n2025-10-29 02:43:51.137 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:43:51.140 [info] [command][cd839617-9059-4271-96c4-ba5439efc08a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cd839617-9059-4271-96c4-ba5439efc08a""}\n2025-10-29 02:43:51.140 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4ebf1061-6301-4c6f-9ce2-81c72950b73d] remote server not configured\n2025-10-29 02:43:51.141 [error] [command][cd839617-9059-4271-96c4-ba5439efc08a] Socket error: Error: read ECONNRESET\n2025-10-29 02:43:51.141 [info] [command][cd839617-9059-4271-96c4-ba5439efc08a] Socket close event received\n2025-10-29 02:43:51.142 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cd839617-9059-4271-96c4-ba5439efc08a] Socket closed without exit code\n2025-10-29 02:44:51.152 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:44:51.155 [info] [command][eef26e62-f9df-4d4e-ad4d-ee5a18ca71a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""eef26e62-f9df-4d4e-ad4d-ee5a18ca71a2""}\n2025-10-29 02:44:51.155 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d946663c-6e32-4e97-be1f-23cf15f4a8f2] remote server not configured\n2025-10-29 02:44:51.156 [error] [command][eef26e62-f9df-4d4e-ad4d-ee5a18ca71a2] Socket error: Error: read ECONNRESET\n2025-10-29 02:44:51.156 [info] [command][eef26e62-f9df-4d4e-ad4d-ee5a18ca71a2] Socket close event received\n2025-10-29 02:44:51.157 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][eef26e62-f9df-4d4e-ad4d-ee5a18ca71a2] Socket closed without exit code\n2025-10-29 02:45:51.160 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:45:51.163 [info] [command][9ea82360-6919-49af-8385-ab00767172a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9ea82360-6919-49af-8385-ab00767172a0""}\n2025-10-29 02:45:51.164 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][015dade1-b6d4-4bf4-a660-d68a2d4b8b31] remote server not configured\n2025-10-29 02:45:51.165 [error] [command][9ea82360-6919-49af-8385-ab00767172a0] Socket error: Error: read ECONNRESET\n2025-10-29 02:45:51.165 [info] [command][9ea82360-6919-49af-8385-ab00767172a0] Socket close event received\n2025-10-29 02:45:51.166 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9ea82360-6919-49af-8385-ab00767172a0] Socket closed without exit code\n2025-10-29 02:46:51.165 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:46:51.168 [info] [command][23256dfb-63cd-43d1-afcd-ba2734941d98] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""23256dfb-63cd-43d1-afcd-ba2734941d98""}\n2025-10-29 02:46:51.169 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][60c9de42-bb9b-4f49-bad2-173e36072b66] remote server not configured\n2025-10-29 02:46:51.169 [error] [command][23256dfb-63cd-43d1-afcd-ba2734941d98] Socket error: Error: read ECONNRESET\n2025-10-29 02:46:51.170 [info] [command][23256dfb-63cd-43d1-afcd-ba2734941d98] Socket close event received\n2025-10-29 02:46:51.170 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][23256dfb-63cd-43d1-afcd-ba2734941d98] Socket closed without exit code\n2025-10-29 02:47:51.178 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:47:51.181 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][87c7b951-7a8d-45ad-bbe7-d1ca32bf4683] remote server not configured\n2025-10-29 02:47:51.182 [info] [command][7f875604-f39f-42c4-bbcb-2164c88324b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7f875604-f39f-42c4-bbcb-2164c88324b9""}\n2025-10-29 02:47:51.183 [error] [command][7f875604-f39f-42c4-bbcb-2164c88324b9] Socket error: Error: read ECONNRESET\n2025-10-29 02:47:51.183 [info] [command][7f875604-f39f-42c4-bbcb-2164c88324b9] Socket close event received\n2025-10-29 02:47:51.183 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7f875604-f39f-42c4-bbcb-2164c88324b9] Socket closed without exit code\n2025-10-29 02:48:51.193 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:48:51.196 [info] [command][02e12033-408f-4e69-a124-4e6e246c2941] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""02e12033-408f-4e69-a124-4e6e246c2941""}\n2025-10-29 02:48:51.197 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][85373819-2c9a-4eb0-9f57-99846500f151] remote server not configured\n2025-10-29 02:48:51.198 [error] [command][02e12033-408f-4e69-a124-4e6e246c2941] Socket error: Error: read ECONNRESET\n2025-10-29 02:48:51.198 [info] [command][02e12033-408f-4e69-a124-4e6e246c2941] Socket close event received\n2025-10-29 02:48:51.198 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][02e12033-408f-4e69-a124-4e6e246c2941] Socket closed without exit code\n2025-10-29 02:49:51.201 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:49:51.204 [info] [command][94938e13-1f07-4764-8fe7-e819c76b3bb0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""94938e13-1f07-4764-8fe7-e819c76b3bb0""}\n2025-10-29 02:49:51.204 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0f7c1ed8-0263-46bf-9881-589d9eb5c2b8] remote server not configured\n2025-10-29 02:49:51.205 [error] [command][94938e13-1f07-4764-8fe7-e819c76b3bb0] Socket error: Error: read ECONNRESET\n2025-10-29 02:49:51.205 [info] [command][94938e13-1f07-4764-8fe7-e819c76b3bb0] Socket close event received\n2025-10-29 02:49:51.205 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][94938e13-1f07-4764-8fe7-e819c76b3bb0] Socket closed without exit code\n2025-10-29 02:50:51.210 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:50:51.213 [info] [command][0fe9a574-16e3-4f43-aa11-e1d93ef6b435] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0fe9a574-16e3-4f43-aa11-e1d93ef6b435""}\n2025-10-29 02:50:51.213 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8d3273a7-3484-407c-b3a4-e65d54d0c3af] remote server not configured\n2025-10-29 02:50:51.214 [error] [command][0fe9a574-16e3-4f43-aa11-e1d93ef6b435] Socket error: Error: read ECONNRESET\n2025-10-29 02:50:51.214 [info] [command][0fe9a574-16e3-4f43-aa11-e1d93ef6b435] Socket close event received\n2025-10-29 02:50:51.214 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0fe9a574-16e3-4f43-aa11-e1d93ef6b435] Socket closed without exit code\n2025-10-29 02:51:51.216 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:51:51.219 [info] [command][881c66a3-d2bd-4208-8468-8e699c736748] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""881c66a3-d2bd-4208-8468-8e699c736748""}\n2025-10-29 02:51:51.219 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][def651db-ec0d-42b2-b56c-5d874db862b2] remote server not configured\n2025-10-29 02:51:51.220 [error] [command][881c66a3-d2bd-4208-8468-8e699c736748] Socket error: Error: read ECONNRESET\n2025-10-29 02:51:51.220 [info] [command][881c66a3-d2bd-4208-8468-8e699c736748] Socket close event received\n2025-10-29 02:51:51.220 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][881c66a3-d2bd-4208-8468-8e699c736748] Socket closed without exit code\n2025-10-29 02:52:51.230 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:52:51.233 [info] [command][2b72d182-16b3-498b-8c82-bd8ac3d43a64] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2b72d182-16b3-498b-8c82-bd8ac3d43a64""}\n2025-10-29 02:52:51.233 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1b8d8ee4-f484-4004-9078-8e924bf0fc98] remote server not configured\n2025-10-29 02:52:51.234 [error] [command][2b72d182-16b3-498b-8c82-bd8ac3d43a64] Socket error: Error: read ECONNRESET\n2025-10-29 02:52:51.234 [info] [command][2b72d182-16b3-498b-8c82-bd8ac3d43a64] Socket close event received\n2025-10-29 02:52:51.234 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2b72d182-16b3-498b-8c82-bd8ac3d43a64] Socket closed without exit code\n2025-10-29 02:53:51.236 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:53:51.238 [info] [command][cf4b8940-0dec-417d-9873-8a466bbf84e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cf4b8940-0dec-417d-9873-8a466bbf84e7""}\n2025-10-29 02:53:51.239 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ba5f33ff-521d-45e2-935f-1f3a4435f2a0] remote server not configured\n2025-10-29 02:53:51.239 [error] [command][cf4b8940-0dec-417d-9873-8a466bbf84e7] Socket error: Error: read ECONNRESET\n2025-10-29 02:53:51.240 [info] [command][cf4b8940-0dec-417d-9873-8a466bbf84e7] Socket close event received\n2025-10-29 02:53:51.240 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cf4b8940-0dec-417d-9873-8a466bbf84e7] Socket closed without exit code\n2025-10-29 02:54:51.251 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:54:51.254 [info] [command][67c4b8d8-b5be-4dbf-8281-4c84f7cda253] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""67c4b8d8-b5be-4dbf-8281-4c84f7cda253""}\n2025-10-29 02:54:51.254 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1636d4d3-cd9e-4339-9674-87b1b716ede3] remote server not configured\n2025-10-29 02:54:51.255 [error] [command][67c4b8d8-b5be-4dbf-8281-4c84f7cda253] Socket error: Error: read ECONNRESET\n2025-10-29 02:54:51.255 [info] [command][67c4b8d8-b5be-4dbf-8281-4c84f7cda253] Socket close event received\n2025-10-29 02:54:51.255 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][67c4b8d8-b5be-4dbf-8281-4c84f7cda253] Socket closed without exit code\n2025-10-29 02:55:51.266 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:55:51.267 [info] [command][b91d8a38-75d4-41ea-aa3b-b1e952d2daf4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b91d8a38-75d4-41ea-aa3b-b1e952d2daf4""}\n2025-10-29 02:55:51.268 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3c7d1f99-4d5a-48cb-8a12-ecdb6a79a215] remote server not configured\n2025-10-29 02:55:51.269 [error] [command][b91d8a38-75d4-41ea-aa3b-b1e952d2daf4] Socket error: Error: read ECONNRESET\n2025-10-29 02:55:51.269 [info] [command][b91d8a38-75d4-41ea-aa3b-b1e952d2daf4] Socket close event received\n2025-10-29 02:55:51.269 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b91d8a38-75d4-41ea-aa3b-b1e952d2daf4] Socket closed without exit code\n2025-10-29 02:56:51.274 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:56:51.276 [info] [command][fc917d55-13fb-4eb7-b5d8-3b535828e34e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fc917d55-13fb-4eb7-b5d8-3b535828e34e""}\n2025-10-29 02:56:51.277 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][873fcb6a-2818-44a1-aa9c-37397db03623] remote server not configured\n2025-10-29 02:56:51.278 [error] [command][fc917d55-13fb-4eb7-b5d8-3b535828e34e] Socket error: Error: read ECONNRESET\n2025-10-29 02:56:51.278 [info] [command][fc917d55-13fb-4eb7-b5d8-3b535828e34e] Socket close event received\n2025-10-29 02:56:51.278 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fc917d55-13fb-4eb7-b5d8-3b535828e34e] Socket closed without exit code\n2025-10-29 02:57:51.289 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:57:51.291 [info] [command][e32e4ef6-9492-4d65-9d8f-1672d10394ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e32e4ef6-9492-4d65-9d8f-1672d10394ce""}\n2025-10-29 02:57:51.292 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ade7420f-a89a-431f-9713-b7d803f44499] remote server not configured\n2025-10-29 02:57:51.293 [error] [command][e32e4ef6-9492-4d65-9d8f-1672d10394ce] Socket error: Error: read ECONNRESET\n2025-10-29 02:57:51.293 [info] [command][e32e4ef6-9492-4d65-9d8f-1672d10394ce] Socket close event received\n2025-10-29 02:57:51.294 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e32e4ef6-9492-4d65-9d8f-1672d10394ce] Socket closed without exit code\n2025-10-29 02:58:51.294 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:58:51.296 [info] [command][54210294-2636-45d3-aeaa-7c89251b34da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""54210294-2636-45d3-aeaa-7c89251b34da""}\n2025-10-29 02:58:51.296 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1e947912-2bc1-453e-8f21-a7784d776307] remote server not configured\n2025-10-29 02:58:51.296 [error] [command][54210294-2636-45d3-aeaa-7c89251b34da] Socket error: Error: read ECONNRESET\n2025-10-29 02:58:51.296 [info] [command][54210294-2636-45d3-aeaa-7c89251b34da] Socket close event received\n2025-10-29 02:58:51.296 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][54210294-2636-45d3-aeaa-7c89251b34da] Socket closed without exit code\n2025-10-29 02:59:51.298 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 02:59:51.299 [info] [command][f64b4ac0-f0c9-4ed4-9a4e-0a04e0dd7f17] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f64b4ac0-f0c9-4ed4-9a4e-0a04e0dd7f17""}\n2025-10-29 02:59:51.300 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e2397270-c3b7-46ca-bfe1-7e5e2daab3c8] remote server not configured\n2025-10-29 02:59:51.300 [error] [command][f64b4ac0-f0c9-4ed4-9a4e-0a04e0dd7f17] Socket error: Error: read ECONNRESET\n2025-10-29 02:59:51.301 [info] [command][f64b4ac0-f0c9-4ed4-9a4e-0a04e0dd7f17] Socket close event received\n2025-10-29 02:59:51.301 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f64b4ac0-f0c9-4ed4-9a4e-0a04e0dd7f17] Socket closed without exit code\n2025-10-29 03:00:51.311 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:00:51.313 [info] [command][6b3bea81-32fd-4b62-986d-e77c379ab981] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6b3bea81-32fd-4b62-986d-e77c379ab981""}\n2025-10-29 03:00:51.314 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][66471e66-50f1-4db9-9e51-f0f60be62d1d] remote server not configured\n2025-10-29 03:00:51.314 [error] [command][6b3bea81-32fd-4b62-986d-e77c379ab981] Socket error: Error: read ECONNRESET\n2025-10-29 03:00:51.315 [info] [command][6b3bea81-32fd-4b62-986d-e77c379ab981] Socket close event received\n2025-10-29 03:00:51.315 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6b3bea81-32fd-4b62-986d-e77c379ab981] Socket closed without exit code\n2025-10-29 03:01:51.318 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:01:51.321 [info] [command][b58f7dae-ce5b-45e0-bb9a-f55ff7ddb35d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b58f7dae-ce5b-45e0-bb9a-f55ff7ddb35d""}\n2025-10-29 03:01:51.321 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c2df32cb-fb08-4f83-9d5d-3abd8391c522] remote server not configured\n2025-10-29 03:01:51.322 [error] [command][b58f7dae-ce5b-45e0-bb9a-f55ff7ddb35d] Socket error: Error: read ECONNRESET\n2025-10-29 03:01:51.322 [info] [command][b58f7dae-ce5b-45e0-bb9a-f55ff7ddb35d] Socket close event received\n2025-10-29 03:01:51.322 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b58f7dae-ce5b-45e0-bb9a-f55ff7ddb35d] Socket closed without exit code\n2025-10-29 03:02:51.333 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:02:51.335 [info] [command][312d43bf-a25b-4262-9550-a46db7cc7d05] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""312d43bf-a25b-4262-9550-a46db7cc7d05""}\n2025-10-29 03:02:51.336 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][15ca1c4e-5765-40da-8f68-a3bcf62de160] remote server not configured\n2025-10-29 03:02:51.337 [error] [command][312d43bf-a25b-4262-9550-a46db7cc7d05] Socket error: Error: read ECONNRESET\n2025-10-29 03:02:51.337 [info] [command][312d43bf-a25b-4262-9550-a46db7cc7d05] Socket close event received\n2025-10-29 03:02:51.337 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][312d43bf-a25b-4262-9550-a46db7cc7d05] Socket closed without exit code\n2025-10-29 03:03:51.347 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:03:51.350 [info] [command][20be79df-4252-4d91-ae5d-0124de1ae919] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""20be79df-4252-4d91-ae5d-0124de1ae919""}\n2025-10-29 03:03:51.350 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5daaf189-dbee-40e1-b7e5-3d273bc584fa] remote server not configured\n2025-10-29 03:03:51.351 [error] [command][20be79df-4252-4d91-ae5d-0124de1ae919] Socket error: Error: read ECONNRESET\n2025-10-29 03:03:51.351 [info] [command][20be79df-4252-4d91-ae5d-0124de1ae919] Socket close event received\n2025-10-29 03:03:51.351 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][20be79df-4252-4d91-ae5d-0124de1ae919] Socket closed without exit code\n2025-10-29 03:04:51.351 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:04:51.353 [info] [command][6bfb978c-ad1e-4c03-b8d1-c0a6bb2dc3d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6bfb978c-ad1e-4c03-b8d1-c0a6bb2dc3d5""}\n2025-10-29 03:04:51.353 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1cf196be-6bc0-4207-a547-2b8bc8e53a19] remote server not configured\n2025-10-29 03:04:51.353 [error] [command][6bfb978c-ad1e-4c03-b8d1-c0a6bb2dc3d5] Socket error: Error: read ECONNRESET\n2025-10-29 03:04:51.353 [info] [command][6bfb978c-ad1e-4c03-b8d1-c0a6bb2dc3d5] Socket close event received\n2025-10-29 03:04:51.353 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6bfb978c-ad1e-4c03-b8d1-c0a6bb2dc3d5] Socket closed without exit code\n2025-10-29 03:05:51.363 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:05:51.364 [info] [command][98822f4b-7379-4c7e-acc3-5f1b6f3a0d2d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""98822f4b-7379-4c7e-acc3-5f1b6f3a0d2d""}\n2025-10-29 03:05:51.364 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2265255a-b587-4df2-90a0-a142d7a43735] remote server not configured\n2025-10-29 03:05:51.364 [error] [command][98822f4b-7379-4c7e-acc3-5f1b6f3a0d2d] Socket error: Error: read ECONNRESET\n2025-10-29 03:05:51.365 [info] [command][98822f4b-7379-4c7e-acc3-5f1b6f3a0d2d] Socket close event received\n2025-10-29 03:05:51.365 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][98822f4b-7379-4c7e-acc3-5f1b6f3a0d2d] Socket closed without exit code\n2025-10-29 03:06:51.374 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:06:51.377 [info] [command][c92c9119-d171-4e88-b989-79916f22e6c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c92c9119-d171-4e88-b989-79916f22e6c1""}\n2025-10-29 03:06:51.378 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b7f37329-df83-46cc-998f-9d7e789337c0] remote server not configured\n2025-10-29 03:06:51.379 [error] [command][c92c9119-d171-4e88-b989-79916f22e6c1] Socket error: Error: read ECONNRESET\n2025-10-29 03:06:51.379 [info] [command][c92c9119-d171-4e88-b989-79916f22e6c1] Socket close event received\n2025-10-29 03:06:51.379 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c92c9119-d171-4e88-b989-79916f22e6c1] Socket closed without exit code\n2025-10-29 03:07:51.383 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:07:51.386 [info] [command][554298a5-c637-4fdf-86d6-3c7f14c0a0cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""554298a5-c637-4fdf-86d6-3c7f14c0a0cb""}\n2025-10-29 03:07:51.387 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f17b4a04-b3a3-4b32-a838-843fb04993c7] remote server not configured\n2025-10-29 03:07:51.387 [error] [command][554298a5-c637-4fdf-86d6-3c7f14c0a0cb] Socket error: Error: read ECONNRESET\n2025-10-29 03:07:51.388 [info] [command][554298a5-c637-4fdf-86d6-3c7f14c0a0cb] Socket close event received\n2025-10-29 03:07:51.388 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][554298a5-c637-4fdf-86d6-3c7f14c0a0cb] Socket closed without exit code\n2025-10-29 03:08:51.396 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:08:51.400 [info] [command][0eaa8147-a564-4ff5-b77f-44d37b479796] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0eaa8147-a564-4ff5-b77f-44d37b479796""}\n2025-10-29 03:08:51.401 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cbbb1e29-ba6b-4fdd-a0ff-2d3d1fbfd77f] remote server not configured\n2025-10-29 03:08:51.402 [error] [command][0eaa8147-a564-4ff5-b77f-44d37b479796] Socket error: Error: read ECONNRESET\n2025-10-29 03:08:51.402 [info] [command][0eaa8147-a564-4ff5-b77f-44d37b479796] Socket close event received\n2025-10-29 03:08:51.402 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0eaa8147-a564-4ff5-b77f-44d37b479796] Socket closed without exit code\n2025-10-29 03:09:51.412 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:09:51.415 [info] [command][2f37800a-f2c2-4e92-a348-572cdf6685df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2f37800a-f2c2-4e92-a348-572cdf6685df""}\n2025-10-29 03:09:51.415 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2f5fa495-d5d3-48a2-8a56-298f49536f41] remote server not configured\n2025-10-29 03:09:51.416 [error] [command][2f37800a-f2c2-4e92-a348-572cdf6685df] Socket error: Error: read ECONNRESET\n2025-10-29 03:09:51.416 [info] [command][2f37800a-f2c2-4e92-a348-572cdf6685df] Socket close event received\n2025-10-29 03:09:51.416 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2f37800a-f2c2-4e92-a348-572cdf6685df] Socket closed without exit code\n2025-10-29 03:10:51.423 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:10:51.426 [info] [command][0dd91a4a-d6e1-4e4e-9342-bd3c71e90c77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0dd91a4a-d6e1-4e4e-9342-bd3c71e90c77""}\n2025-10-29 03:10:51.427 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1c5a6931-fc3c-4e95-a76e-8b1e24c11327] remote server not configured\n2025-10-29 03:10:51.427 [error] [command][0dd91a4a-d6e1-4e4e-9342-bd3c71e90c77] Socket error: Error: read ECONNRESET\n2025-10-29 03:10:51.427 [info] [command][0dd91a4a-d6e1-4e4e-9342-bd3c71e90c77] Socket close event received\n2025-10-29 03:10:51.428 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0dd91a4a-d6e1-4e4e-9342-bd3c71e90c77] Socket closed without exit code\n2025-10-29 03:11:51.438 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:11:51.441 [info] [command][5b7032fc-968c-4e58-8608-3b98febe8253] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5b7032fc-968c-4e58-8608-3b98febe8253""}\n2025-10-29 03:11:51.441 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b709764e-1768-4326-a167-d4ad2e71860b] remote server not configured\n2025-10-29 03:11:51.442 [error] [command][5b7032fc-968c-4e58-8608-3b98febe8253] Socket error: Error: read ECONNRESET\n2025-10-29 03:11:51.442 [info] [command][5b7032fc-968c-4e58-8608-3b98febe8253] Socket close event received\n2025-10-29 03:11:51.442 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5b7032fc-968c-4e58-8608-3b98febe8253] Socket closed without exit code\n2025-10-29 03:12:51.452 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:12:51.455 [info] [command][618a7b35-f44c-4155-bf3e-3b982926714a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""618a7b35-f44c-4155-bf3e-3b982926714a""}\n2025-10-29 03:12:51.456 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c700df97-6af8-4624-b7d4-608afaf663de] remote server not configured\n2025-10-29 03:12:51.456 [error] [command][618a7b35-f44c-4155-bf3e-3b982926714a] Socket error: Error: read ECONNRESET\n2025-10-29 03:12:51.457 [info] [command][618a7b35-f44c-4155-bf3e-3b982926714a] Socket close event received\n2025-10-29 03:12:51.457 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][618a7b35-f44c-4155-bf3e-3b982926714a] Socket closed without exit code\n2025-10-29 03:13:51.461 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:13:51.464 [info] [command][4a46f739-c688-44f6-a64e-8e9c7fda95fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4a46f739-c688-44f6-a64e-8e9c7fda95fe""}\n2025-10-29 03:13:51.465 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5aeb2a4e-5f7f-42bb-9770-aa5654459ffe] remote server not configured\n2025-10-29 03:13:51.465 [error] [command][4a46f739-c688-44f6-a64e-8e9c7fda95fe] Socket error: Error: read ECONNRESET\n2025-10-29 03:13:51.465 [info] [command][4a46f739-c688-44f6-a64e-8e9c7fda95fe] Socket close event received\n2025-10-29 03:13:51.466 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4a46f739-c688-44f6-a64e-8e9c7fda95fe] Socket closed without exit code\n2025-10-29 03:14:51.476 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:14:51.479 [info] [command][16af534e-db60-4d82-9d2e-f68f9a3e9e52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""16af534e-db60-4d82-9d2e-f68f9a3e9e52""}\n2025-10-29 03:14:51.480 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5184bd70-bec9-4f01-ab09-005acd788a48] remote server not configured\n2025-10-29 03:14:51.481 [error] [command][16af534e-db60-4d82-9d2e-f68f9a3e9e52] Socket error: Error: read ECONNRESET\n2025-10-29 03:14:51.481 [info] [command][16af534e-db60-4d82-9d2e-f68f9a3e9e52] Socket close event received\n2025-10-29 03:14:51.482 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][16af534e-db60-4d82-9d2e-f68f9a3e9e52] Socket closed without exit code\n2025-10-29 03:15:51.493 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:15:51.495 [info] [command][3cc620d0-08f5-4745-9633-8dab44ba7e7c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3cc620d0-08f5-4745-9633-8dab44ba7e7c""}\n2025-10-29 03:15:51.496 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][330044ad-e975-4562-9a9b-5de80445a610] remote server not configured\n2025-10-29 03:15:51.497 [error] [command][3cc620d0-08f5-4745-9633-8dab44ba7e7c] Socket error: Error: read ECONNRESET\n2025-10-29 03:15:51.497 [info] [command][3cc620d0-08f5-4745-9633-8dab44ba7e7c] Socket close event received\n2025-10-29 03:15:51.497 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3cc620d0-08f5-4745-9633-8dab44ba7e7c] Socket closed without exit code\n2025-10-29 03:16:51.506 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:16:51.508 [info] [command][69b9c636-4ee5-4753-9947-9692501719e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""69b9c636-4ee5-4753-9947-9692501719e8""}\n2025-10-29 03:16:51.509 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e74c1b8b-1dcc-4c7d-81fd-f3737fa20eb9] remote server not configured\n2025-10-29 03:16:51.510 [error] [command][69b9c636-4ee5-4753-9947-9692501719e8] Socket error: Error: read ECONNRESET\n2025-10-29 03:16:51.510 [info] [command][69b9c636-4ee5-4753-9947-9692501719e8] Socket close event received\n2025-10-29 03:16:51.510 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][69b9c636-4ee5-4753-9947-9692501719e8] Socket closed without exit code\n2025-10-29 03:17:51.519 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:17:51.520 [info] [command][3d9b86e8-64ab-4fa4-a61d-fd0ea706a681] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3d9b86e8-64ab-4fa4-a61d-fd0ea706a681""}\n2025-10-29 03:17:51.520 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][41b302cd-33e4-412d-be37-eaabb973e17b] remote server not configured\n2025-10-29 03:17:51.521 [error] [command][3d9b86e8-64ab-4fa4-a61d-fd0ea706a681] Socket error: Error: read ECONNRESET\n2025-10-29 03:17:51.521 [info] [command][3d9b86e8-64ab-4fa4-a61d-fd0ea706a681] Socket close event received\n2025-10-29 03:17:51.521 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3d9b86e8-64ab-4fa4-a61d-fd0ea706a681] Socket closed without exit code\n2025-10-29 03:18:51.524 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:18:51.526 [info] [command][06d7ab0d-efd1-40e8-b1c1-2e4e63c2f0ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""06d7ab0d-efd1-40e8-b1c1-2e4e63c2f0ab""}\n2025-10-29 03:18:51.526 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d46a11bc-eb4c-4ce0-bcee-9908fc5360ca] remote server not configured\n2025-10-29 03:18:51.527 [error] [command][06d7ab0d-efd1-40e8-b1c1-2e4e63c2f0ab] Socket error: Error: read ECONNRESET\n2025-10-29 03:18:51.527 [info] [command][06d7ab0d-efd1-40e8-b1c1-2e4e63c2f0ab] Socket close event received\n2025-10-29 03:18:51.527 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][06d7ab0d-efd1-40e8-b1c1-2e4e63c2f0ab] Socket closed without exit code\n2025-10-29 03:19:51.538 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:19:51.540 [info] [command][f4662474-3d8d-48f7-ad88-601cb993f714] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f4662474-3d8d-48f7-ad88-601cb993f714""}\n2025-10-29 03:19:51.541 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][49cf51e6-bd99-4684-b0ee-dc57234b4358] remote server not configured\n2025-10-29 03:19:51.541 [error] [command][f4662474-3d8d-48f7-ad88-601cb993f714] Socket error: Error: read ECONNRESET\n2025-10-29 03:19:51.542 [info] [command][f4662474-3d8d-48f7-ad88-601cb993f714] Socket close event received\n2025-10-29 03:19:51.542 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f4662474-3d8d-48f7-ad88-601cb993f714] Socket closed without exit code\n2025-10-29 03:20:51.551 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:20:51.553 [info] [command][0a65a0ed-320e-4753-9f8f-ff426ae4ff2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0a65a0ed-320e-4753-9f8f-ff426ae4ff2f""}\n2025-10-29 03:20:51.554 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][83e26931-d9d7-42f7-aec8-3d78eb4218bf] remote server not configured\n2025-10-29 03:20:51.555 [error] [command][0a65a0ed-320e-4753-9f8f-ff426ae4ff2f] Socket error: Error: read ECONNRESET\n2025-10-29 03:20:51.555 [info] [command][0a65a0ed-320e-4753-9f8f-ff426ae4ff2f] Socket close event received\n2025-10-29 03:20:51.556 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0a65a0ed-320e-4753-9f8f-ff426ae4ff2f] Socket closed without exit code\n2025-10-29 03:21:51.565 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:21:51.568 [info] [command][bd1918e5-7859-45eb-b4f0-e979dadd55ad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bd1918e5-7859-45eb-b4f0-e979dadd55ad""}\n2025-10-29 03:21:51.568 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][145bcaf2-a910-4af3-90c7-8c6a0145d1f1] remote server not configured\n2025-10-29 03:21:51.569 [error] [command][bd1918e5-7859-45eb-b4f0-e979dadd55ad] Socket error: Error: read ECONNRESET\n2025-10-29 03:21:51.569 [info] [command][bd1918e5-7859-45eb-b4f0-e979dadd55ad] Socket close event received\n2025-10-29 03:21:51.569 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][bd1918e5-7859-45eb-b4f0-e979dadd55ad] Socket closed without exit code\n2025-10-29 03:22:51.572 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:22:51.574 [info] [command][39c4bbee-0035-419f-b118-28c9f882d716] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""39c4bbee-0035-419f-b118-28c9f882d716""}\n2025-10-29 03:22:51.575 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][02d0490d-46cb-41e2-95d2-e00e07118d16] remote server not configured\n2025-10-29 03:22:51.575 [error] [command][39c4bbee-0035-419f-b118-28c9f882d716] Socket error: Error: read ECONNRESET\n2025-10-29 03:22:51.576 [info] [command][39c4bbee-0035-419f-b118-28c9f882d716] Socket close event received\n2025-10-29 03:22:51.576 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][39c4bbee-0035-419f-b118-28c9f882d716] Socket closed without exit code\n2025-10-29 03:23:51.578 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:23:51.580 [info] [command][4337187f-90b2-46df-81e2-cbf671aee861] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4337187f-90b2-46df-81e2-cbf671aee861""}\n2025-10-29 03:23:51.581 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][06cbbc8e-d940-4514-9a89-6d5ec676be97] remote server not configured\n2025-10-29 03:23:51.581 [error] [command][4337187f-90b2-46df-81e2-cbf671aee861] Socket error: Error: read ECONNRESET\n2025-10-29 03:23:51.582 [info] [command][4337187f-90b2-46df-81e2-cbf671aee861] Socket close event received\n2025-10-29 03:23:51.582 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4337187f-90b2-46df-81e2-cbf671aee861] Socket closed without exit code\n2025-10-29 03:24:51.591 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:24:51.594 [info] [command][1161317c-fcbc-45d2-8e6e-f29c15cefeae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1161317c-fcbc-45d2-8e6e-f29c15cefeae""}\n2025-10-29 03:24:51.594 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][eba645e1-0369-44ad-b3cf-fbe7b3fd9257] remote server not configured\n2025-10-29 03:24:51.595 [error] [command][1161317c-fcbc-45d2-8e6e-f29c15cefeae] Socket error: Error: read ECONNRESET\n2025-10-29 03:24:51.595 [info] [command][1161317c-fcbc-45d2-8e6e-f29c15cefeae] Socket close event received\n2025-10-29 03:24:51.596 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1161317c-fcbc-45d2-8e6e-f29c15cefeae] Socket closed without exit code\n2025-10-29 03:25:51.603 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:25:51.605 [info] [command][4b056955-dafe-4c04-9e74-82eb4cf8b447] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4b056955-dafe-4c04-9e74-82eb4cf8b447""}\n2025-10-29 03:25:51.606 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][89aaf911-0f48-4930-8644-0a1b24a3f371] remote server not configured\n2025-10-29 03:25:51.606 [error] [command][4b056955-dafe-4c04-9e74-82eb4cf8b447] Socket error: Error: read ECONNRESET\n2025-10-29 03:25:51.607 [info] [command][4b056955-dafe-4c04-9e74-82eb4cf8b447] Socket close event received\n2025-10-29 03:25:51.607 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4b056955-dafe-4c04-9e74-82eb4cf8b447] Socket closed without exit code\n2025-10-29 03:26:51.617 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:26:51.619 [info] [command][2ff5c207-d1b5-43b0-bcd9-67d0f7264b6c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2ff5c207-d1b5-43b0-bcd9-67d0f7264b6c""}\n2025-10-29 03:26:51.620 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3ed1301b-c0d6-433b-ab70-f67c90b0f463] remote server not configured\n2025-10-29 03:26:51.620 [error] [command][2ff5c207-d1b5-43b0-bcd9-67d0f7264b6c] Socket error: Error: read ECONNRESET\n2025-10-29 03:26:51.620 [info] [command][2ff5c207-d1b5-43b0-bcd9-67d0f7264b6c] Socket close event received\n2025-10-29 03:26:51.621 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2ff5c207-d1b5-43b0-bcd9-67d0f7264b6c] Socket closed without exit code\n2025-10-29 03:27:51.628 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:27:51.631 [info] [command][da2be98e-c894-4d7e-ac1a-25d09136fa11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""da2be98e-c894-4d7e-ac1a-25d09136fa11""}\n2025-10-29 03:27:51.632 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a408f240-a622-4c15-b422-a8702d01b25f] remote server not configured\n2025-10-29 03:27:51.632 [error] [command][da2be98e-c894-4d7e-ac1a-25d09136fa11] Socket error: Error: read ECONNRESET\n2025-10-29 03:27:51.633 [info] [command][da2be98e-c894-4d7e-ac1a-25d09136fa11] Socket close event received\n2025-10-29 03:27:51.633 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][da2be98e-c894-4d7e-ac1a-25d09136fa11] Socket closed without exit code\n2025-10-29 03:28:51.643 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:28:51.646 [info] [command][065ff894-b114-4f39-8b10-a6eb60a7b915] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""065ff894-b114-4f39-8b10-a6eb60a7b915""}\n2025-10-29 03:28:51.646 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][35e1aeec-7f77-4ed1-8722-9fc25416af3d] remote server not configured\n2025-10-29 03:28:51.647 [error] [command][065ff894-b114-4f39-8b10-a6eb60a7b915] Socket error: Error: read ECONNRESET\n2025-10-29 03:28:51.647 [info] [command][065ff894-b114-4f39-8b10-a6eb60a7b915] Socket close event received\n2025-10-29 03:28:51.648 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][065ff894-b114-4f39-8b10-a6eb60a7b915] Socket closed without exit code\n2025-10-29 03:29:51.658 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:29:51.661 [info] [command][81a9b981-62f1-428d-9a72-594852ad1c94] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""81a9b981-62f1-428d-9a72-594852ad1c94""}\n2025-10-29 03:29:51.661 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1d55171f-f028-4919-8817-afea96a1f38f] remote server not configured\n2025-10-29 03:29:51.662 [error] [command][81a9b981-62f1-428d-9a72-594852ad1c94] Socket error: Error: read ECONNRESET\n2025-10-29 03:29:51.662 [info] [command][81a9b981-62f1-428d-9a72-594852ad1c94] Socket close event received\n2025-10-29 03:29:51.662 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][81a9b981-62f1-428d-9a72-594852ad1c94] Socket closed without exit code\n2025-10-29 03:30:51.669 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:30:51.673 [info] [command][2d073f3b-df09-4357-b7f1-e5d36b7773dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2d073f3b-df09-4357-b7f1-e5d36b7773dc""}\n2025-10-29 03:30:51.673 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8c631d6b-8a4f-4376-a931-12913614562d] remote server not configured\n2025-10-29 03:30:51.674 [error] [command][2d073f3b-df09-4357-b7f1-e5d36b7773dc] Socket error: Error: read ECONNRESET\n2025-10-29 03:30:51.674 [info] [command][2d073f3b-df09-4357-b7f1-e5d36b7773dc] Socket close event received\n2025-10-29 03:30:51.675 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2d073f3b-df09-4357-b7f1-e5d36b7773dc] Socket closed without exit code\n2025-10-29 03:31:51.684 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:31:51.687 [info] [command][08c68f51-c266-4ca4-9023-40ece1a682ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""08c68f51-c266-4ca4-9023-40ece1a682ec""}\n2025-10-29 03:31:51.687 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][08c6ce98-e3b7-4aa7-8c17-1f7e9fb747f1] remote server not configured\n2025-10-29 03:31:51.688 [error] [command][08c68f51-c266-4ca4-9023-40ece1a682ec] Socket error: Error: read ECONNRESET\n2025-10-29 03:31:51.688 [info] [command][08c68f51-c266-4ca4-9023-40ece1a682ec] Socket close event received\n2025-10-29 03:31:51.688 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][08c68f51-c266-4ca4-9023-40ece1a682ec] Socket closed without exit code\n2025-10-29 03:32:51.694 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:32:51.696 [info] [command][ccbb0a97-a23a-4c4b-8066-a59d77e57432] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ccbb0a97-a23a-4c4b-8066-a59d77e57432""}\n2025-10-29 03:32:51.697 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5c277056-60c2-4b41-b1da-f4f16061905f] remote server not configured\n2025-10-29 03:32:51.697 [error] [command][ccbb0a97-a23a-4c4b-8066-a59d77e57432] Socket error: Error: read ECONNRESET\n2025-10-29 03:32:51.698 [info] [command][ccbb0a97-a23a-4c4b-8066-a59d77e57432] Socket close event received\n2025-10-29 03:32:51.698 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ccbb0a97-a23a-4c4b-8066-a59d77e57432] Socket closed without exit code\n2025-10-29 03:33:51.709 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:33:51.712 [info] [command][cc72a669-21c3-460c-bef8-38b5479fbec4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cc72a669-21c3-460c-bef8-38b5479fbec4""}\n2025-10-29 03:33:51.713 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][750ebf12-be38-4090-9d06-f431a7497a17] remote server not configured\n2025-10-29 03:33:51.713 [error] [command][cc72a669-21c3-460c-bef8-38b5479fbec4] Socket error: Error: read ECONNRESET\n2025-10-29 03:33:51.714 [info] [command][cc72a669-21c3-460c-bef8-38b5479fbec4] Socket close event received\n2025-10-29 03:33:51.714 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cc72a669-21c3-460c-bef8-38b5479fbec4] Socket closed without exit code\n2025-10-29 03:34:51.721 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:34:51.723 [info] [command][8bdc4b0b-7a33-4da6-a88c-f783fe2a9657] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8bdc4b0b-7a33-4da6-a88c-f783fe2a9657""}\n2025-10-29 03:34:51.724 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2c715281-bf48-4b30-b9f7-dbbc589ba3d6] remote server not configured\n2025-10-29 03:34:51.724 [error] [command][8bdc4b0b-7a33-4da6-a88c-f783fe2a9657] Socket error: Error: read ECONNRESET\n2025-10-29 03:34:51.724 [info] [command][8bdc4b0b-7a33-4da6-a88c-f783fe2a9657] Socket close event received\n2025-10-29 03:34:51.725 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8bdc4b0b-7a33-4da6-a88c-f783fe2a9657] Socket closed without exit code\n2025-10-29 03:35:51.735 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:35:51.738 [info] [command][94ca5a4b-709a-4d75-9b54-ae9088cb4830] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""94ca5a4b-709a-4d75-9b54-ae9088cb4830""}\n2025-10-29 03:35:51.739 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][236ad70d-1c85-4f28-bcdc-54ed871fc85b] remote server not configured\n2025-10-29 03:35:51.739 [error] [command][94ca5a4b-709a-4d75-9b54-ae9088cb4830] Socket error: Error: read ECONNRESET\n2025-10-29 03:35:51.739 [info] [command][94ca5a4b-709a-4d75-9b54-ae9088cb4830] Socket close event received\n2025-10-29 03:35:51.740 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][94ca5a4b-709a-4d75-9b54-ae9088cb4830] Socket closed without exit code\n2025-10-29 03:36:51.749 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:36:51.751 [info] [command][b8d3d7c0-b02e-4f9f-89a4-1a11f5316e5a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b8d3d7c0-b02e-4f9f-89a4-1a11f5316e5a""}\n2025-10-29 03:36:51.752 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][47c0bc28-8b17-4bf2-b006-769384649d5f] remote server not configured\n2025-10-29 03:36:51.752 [error] [command][b8d3d7c0-b02e-4f9f-89a4-1a11f5316e5a] Socket error: Error: read ECONNRESET\n2025-10-29 03:36:51.753 [info] [command][b8d3d7c0-b02e-4f9f-89a4-1a11f5316e5a] Socket close event received\n2025-10-29 03:36:51.753 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b8d3d7c0-b02e-4f9f-89a4-1a11f5316e5a] Socket closed without exit code\n2025-10-29 03:37:51.763 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:37:51.765 [info] [command][843a797c-5e14-4e3f-9c8c-8874084f6dec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""843a797c-5e14-4e3f-9c8c-8874084f6dec""}\n2025-10-29 03:37:51.766 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][506c21d5-a8c4-48c2-b86f-86ed7b9d3376] remote server not configured\n2025-10-29 03:37:51.766 [error] [command][843a797c-5e14-4e3f-9c8c-8874084f6dec] Socket error: Error: read ECONNRESET\n2025-10-29 03:37:51.766 [info] [command][843a797c-5e14-4e3f-9c8c-8874084f6dec] Socket close event received\n2025-10-29 03:37:51.766 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][843a797c-5e14-4e3f-9c8c-8874084f6dec] Socket closed without exit code\n2025-10-29 03:38:51.776 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:38:51.780 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][df033ed0-329d-4135-bc55-9156d65644fc] remote server not configured\n2025-10-29 03:38:51.780 [info] [command][2928fce2-24e7-460c-ac7d-cec16ab30e7b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2928fce2-24e7-460c-ac7d-cec16ab30e7b""}\n2025-10-29 03:38:51.781 [error] [command][2928fce2-24e7-460c-ac7d-cec16ab30e7b] Socket error: Error: read ECONNRESET\n2025-10-29 03:38:51.781 [info] [command][2928fce2-24e7-460c-ac7d-cec16ab30e7b] Socket close event received\n2025-10-29 03:38:51.781 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2928fce2-24e7-460c-ac7d-cec16ab30e7b] Socket closed without exit code\n2025-10-29 03:39:51.788 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:39:51.791 [info] [command][2bede7b5-71a7-42e2-a58a-94607aff980d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2bede7b5-71a7-42e2-a58a-94607aff980d""}\n2025-10-29 03:39:51.792 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a21d7676-c443-4419-a558-a639cb53a547] remote server not configured\n2025-10-29 03:39:51.793 [error] [command][2bede7b5-71a7-42e2-a58a-94607aff980d] Socket error: Error: read ECONNRESET\n2025-10-29 03:39:51.793 [info] [command][2bede7b5-71a7-42e2-a58a-94607aff980d] Socket close event received\n2025-10-29 03:39:51.793 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2bede7b5-71a7-42e2-a58a-94607aff980d] Socket closed without exit code\n2025-10-29 03:40:51.799 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:40:51.802 [info] [command][76061f71-4b23-4c14-bcf4-f1181224c203] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""76061f71-4b23-4c14-bcf4-f1181224c203""}\n2025-10-29 03:40:51.803 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fa071b54-d767-4b44-bc55-2b7fe1b99566] remote server not configured\n2025-10-29 03:40:51.803 [error] [command][76061f71-4b23-4c14-bcf4-f1181224c203] Socket error: Error: read ECONNRESET\n2025-10-29 03:40:51.803 [info] [command][76061f71-4b23-4c14-bcf4-f1181224c203] Socket close event received\n2025-10-29 03:40:51.804 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][76061f71-4b23-4c14-bcf4-f1181224c203] Socket closed without exit code\n2025-10-29 03:41:51.810 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:41:51.813 [info] [command][f64c5202-f4de-4fc2-9169-a9f64c36807d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f64c5202-f4de-4fc2-9169-a9f64c36807d""}\n2025-10-29 03:41:51.813 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4dddfd3d-e965-48b3-bd9b-d9a3959f9a84] remote server not configured\n2025-10-29 03:41:51.814 [error] [command][f64c5202-f4de-4fc2-9169-a9f64c36807d] Socket error: Error: read ECONNRESET\n2025-10-29 03:41:51.814 [info] [command][f64c5202-f4de-4fc2-9169-a9f64c36807d] Socket close event received\n2025-10-29 03:41:51.814 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f64c5202-f4de-4fc2-9169-a9f64c36807d] Socket closed without exit code\n2025-10-29 03:42:51.824 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:42:51.827 [info] [command][10d02cb4-ffaf-4dd1-8e18-3a83026f7878] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""10d02cb4-ffaf-4dd1-8e18-3a83026f7878""}\n2025-10-29 03:42:51.828 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4ae571bb-694f-495e-addf-0b86af9e1fdf] remote server not configured\n2025-10-29 03:42:51.828 [error] [command][10d02cb4-ffaf-4dd1-8e18-3a83026f7878] Socket error: Error: read ECONNRESET\n2025-10-29 03:42:51.829 [info] [command][10d02cb4-ffaf-4dd1-8e18-3a83026f7878] Socket close event received\n2025-10-29 03:42:51.829 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][10d02cb4-ffaf-4dd1-8e18-3a83026f7878] Socket closed without exit code\n2025-10-29 03:43:51.835 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:43:51.839 [info] [command][16e7e715-2b6a-4960-93ef-0148185c9f65] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""16e7e715-2b6a-4960-93ef-0148185c9f65""}\n2025-10-29 03:43:51.839 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6cc5f1fe-9f83-458d-80f4-d1c43a7453dd] remote server not configured\n2025-10-29 03:43:51.840 [error] [command][16e7e715-2b6a-4960-93ef-0148185c9f65] Socket error: Error: read ECONNRESET\n2025-10-29 03:43:51.840 [info] [command][16e7e715-2b6a-4960-93ef-0148185c9f65] Socket close event received\n2025-10-29 03:43:51.840 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][16e7e715-2b6a-4960-93ef-0148185c9f65] Socket closed without exit code\n2025-10-29 03:44:51.850 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:44:51.851 [info] [command][be725f46-b0a4-43fe-854c-ce7532c91846] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""be725f46-b0a4-43fe-854c-ce7532c91846""}\n2025-10-29 03:44:51.852 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][81e2c728-1739-4822-a685-131082c63e14] remote server not configured\n2025-10-29 03:44:51.853 [error] [command][be725f46-b0a4-43fe-854c-ce7532c91846] Socket error: Error: read ECONNRESET\n2025-10-29 03:44:51.853 [info] [command][be725f46-b0a4-43fe-854c-ce7532c91846] Socket close event received\n2025-10-29 03:44:51.853 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][be725f46-b0a4-43fe-854c-ce7532c91846] Socket closed without exit code\n2025-10-29 03:45:51.864 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:45:51.865 [info] [command][d9657e8c-8b85-402f-923f-73802e2b798c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d9657e8c-8b85-402f-923f-73802e2b798c""}\n2025-10-29 03:45:51.866 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0498fdc8-f6db-4529-8717-3eab3e2ff2af] remote server not configured\n2025-10-29 03:45:51.867 [error] [command][d9657e8c-8b85-402f-923f-73802e2b798c] Socket error: Error: read ECONNRESET\n2025-10-29 03:45:51.867 [info] [command][d9657e8c-8b85-402f-923f-73802e2b798c] Socket close event received\n2025-10-29 03:45:51.867 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d9657e8c-8b85-402f-923f-73802e2b798c] Socket closed without exit code\n2025-10-29 03:46:51.878 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:46:51.881 [info] [command][3c702ffe-f090-4e36-bc37-3e83048f156f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3c702ffe-f090-4e36-bc37-3e83048f156f""}\n2025-10-29 03:46:51.882 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f222c239-1ef8-4a06-a358-8ed49c1207ef] remote server not configured\n2025-10-29 03:46:51.882 [error] [command][3c702ffe-f090-4e36-bc37-3e83048f156f] Socket error: Error: read ECONNRESET\n2025-10-29 03:46:51.883 [info] [command][3c702ffe-f090-4e36-bc37-3e83048f156f] Socket close event received\n2025-10-29 03:46:51.883 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3c702ffe-f090-4e36-bc37-3e83048f156f] Socket closed without exit code\n2025-10-29 03:47:51.894 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:47:51.897 [info] [command][b54e08f9-cbaf-4a1f-99d4-4ac644904b0d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b54e08f9-cbaf-4a1f-99d4-4ac644904b0d""}\n2025-10-29 03:47:51.897 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][aea91feb-8af6-4e3f-ab65-7f15f93b8369] remote server not configured\n2025-10-29 03:47:51.898 [error] [command][b54e08f9-cbaf-4a1f-99d4-4ac644904b0d] Socket error: Error: read ECONNRESET\n2025-10-29 03:47:51.898 [info] [command][b54e08f9-cbaf-4a1f-99d4-4ac644904b0d] Socket close event received\n2025-10-29 03:47:51.898 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b54e08f9-cbaf-4a1f-99d4-4ac644904b0d] Socket closed without exit code\n2025-10-29 03:48:51.909 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:48:51.911 [info] [command][b4a88b79-caf6-4de0-aabe-fa4818ac1b9a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b4a88b79-caf6-4de0-aabe-fa4818ac1b9a""}\n2025-10-29 03:48:51.912 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ad5f674e-78d1-4ed4-b758-db7c323ba290] remote server not configured\n2025-10-29 03:48:51.913 [error] [command][b4a88b79-caf6-4de0-aabe-fa4818ac1b9a] Socket error: Error: read ECONNRESET\n2025-10-29 03:48:51.913 [info] [command][b4a88b79-caf6-4de0-aabe-fa4818ac1b9a] Socket close event received\n2025-10-29 03:48:51.913 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b4a88b79-caf6-4de0-aabe-fa4818ac1b9a] Socket closed without exit code\n2025-10-29 03:49:51.924 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:49:51.927 [info] [command][f9c82f88-e256-450c-866a-1cf5d253bf33] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f9c82f88-e256-450c-866a-1cf5d253bf33""}\n2025-10-29 03:49:51.928 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a554dfde-8384-4d5c-9d5e-e8cac0c415d6] remote server not configured\n2025-10-29 03:49:51.928 [error] [command][f9c82f88-e256-450c-866a-1cf5d253bf33] Socket error: Error: read ECONNRESET\n2025-10-29 03:49:51.928 [info] [command][f9c82f88-e256-450c-866a-1cf5d253bf33] Socket close event received\n2025-10-29 03:49:51.928 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f9c82f88-e256-450c-866a-1cf5d253bf33] Socket closed without exit code\n2025-10-29 03:50:51.929 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:50:51.932 [info] [command][e18b3890-94c3-479f-90ee-e96da1950c1c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e18b3890-94c3-479f-90ee-e96da1950c1c""}\n2025-10-29 03:50:51.933 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][58c15726-7ce9-49d7-99fc-978dcc1f1681] remote server not configured\n2025-10-29 03:50:51.933 [error] [command][e18b3890-94c3-479f-90ee-e96da1950c1c] Socket error: Error: read ECONNRESET\n2025-10-29 03:50:51.934 [info] [command][e18b3890-94c3-479f-90ee-e96da1950c1c] Socket close event received\n2025-10-29 03:50:51.934 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e18b3890-94c3-479f-90ee-e96da1950c1c] Socket closed without exit code\n2025-10-29 03:51:51.945 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:51:51.947 [info] [command][9e42653d-c029-49e5-b486-5e128b9a0e38] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9e42653d-c029-49e5-b486-5e128b9a0e38""}\n2025-10-29 03:51:51.948 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][53d0d75a-88ed-40de-bcd9-f3c605b4c1d2] remote server not configured\n2025-10-29 03:51:51.948 [error] [command][9e42653d-c029-49e5-b486-5e128b9a0e38] Socket error: Error: read ECONNRESET\n2025-10-29 03:51:51.949 [info] [command][9e42653d-c029-49e5-b486-5e128b9a0e38] Socket close event received\n2025-10-29 03:51:51.949 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9e42653d-c029-49e5-b486-5e128b9a0e38] Socket closed without exit code\n2025-10-29 03:52:51.955 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:52:51.958 [info] [command][4af98c74-08b3-4632-96ec-1e9d1e10f8d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4af98c74-08b3-4632-96ec-1e9d1e10f8d0""}\n2025-10-29 03:52:51.958 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e675a46b-724c-4956-82ff-d1b9b8c6f150] remote server not configured\n2025-10-29 03:52:51.959 [error] [command][4af98c74-08b3-4632-96ec-1e9d1e10f8d0] Socket error: Error: read ECONNRESET\n2025-10-29 03:52:51.959 [info] [command][4af98c74-08b3-4632-96ec-1e9d1e10f8d0] Socket close event received\n2025-10-29 03:52:51.959 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4af98c74-08b3-4632-96ec-1e9d1e10f8d0] Socket closed without exit code\n2025-10-29 03:53:51.969 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:53:51.972 [info] [command][3b51c0eb-367b-4ecf-9bec-055f8e8c9410] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3b51c0eb-367b-4ecf-9bec-055f8e8c9410""}\n2025-10-29 03:53:51.973 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e4aa97f4-1ee0-46ba-b7ca-d38cd5602a6d] remote server not configured\n2025-10-29 03:53:51.973 [error] [command][3b51c0eb-367b-4ecf-9bec-055f8e8c9410] Socket error: Error: read ECONNRESET\n2025-10-29 03:53:51.973 [info] [command][3b51c0eb-367b-4ecf-9bec-055f8e8c9410] Socket close event received\n2025-10-29 03:53:51.974 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3b51c0eb-367b-4ecf-9bec-055f8e8c9410] Socket closed without exit code\n2025-10-29 03:54:51.985 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:54:51.988 [info] [command][f4bc5b01-d0ce-43af-bd95-00d3b42fa2dd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f4bc5b01-d0ce-43af-bd95-00d3b42fa2dd""}\n2025-10-29 03:54:51.988 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][add968ff-e356-4ee1-82e2-146aeb237182] remote server not configured\n2025-10-29 03:54:51.989 [error] [command][f4bc5b01-d0ce-43af-bd95-00d3b42fa2dd] Socket error: Error: read ECONNRESET\n2025-10-29 03:54:51.990 [info] [command][f4bc5b01-d0ce-43af-bd95-00d3b42fa2dd] Socket close event received\n2025-10-29 03:54:51.990 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f4bc5b01-d0ce-43af-bd95-00d3b42fa2dd] Socket closed without exit code\n2025-10-29 03:55:52.001 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:55:52.004 [info] [command][a8c199c0-e887-4157-bab4-1aaf02ec1315] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a8c199c0-e887-4157-bab4-1aaf02ec1315""}\n2025-10-29 03:55:52.005 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c4f81762-0062-4f60-8449-a5d7e101e5d0] remote server not configured\n2025-10-29 03:55:52.005 [error] [command][a8c199c0-e887-4157-bab4-1aaf02ec1315] Socket error: Error: read ECONNRESET\n2025-10-29 03:55:52.005 [info] [command][a8c199c0-e887-4157-bab4-1aaf02ec1315] Socket close event received\n2025-10-29 03:55:52.006 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a8c199c0-e887-4157-bab4-1aaf02ec1315] Socket closed without exit code\n2025-10-29 03:56:52.016 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:56:52.018 [info] [command][824c23fe-1e22-4b64-a6ca-3a0e7194c0be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""824c23fe-1e22-4b64-a6ca-3a0e7194c0be""}\n2025-10-29 03:56:52.018 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][689280e0-0946-4aa1-bcc8-c73a51287ba0] remote server not configured\n2025-10-29 03:56:52.019 [error] [command][824c23fe-1e22-4b64-a6ca-3a0e7194c0be] Socket error: Error: read ECONNRESET\n2025-10-29 03:56:52.019 [info] [command][824c23fe-1e22-4b64-a6ca-3a0e7194c0be] Socket close event received\n2025-10-29 03:56:52.019 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][824c23fe-1e22-4b64-a6ca-3a0e7194c0be] Socket closed without exit code\n2025-10-29 03:57:52.023 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:57:52.025 [info] [command][28868e0c-cf93-4add-aff5-1d56079e15bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""28868e0c-cf93-4add-aff5-1d56079e15bf""}\n2025-10-29 03:57:52.026 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][30956bc5-afc8-4e09-a140-75f3908b1de7] remote server not configured\n2025-10-29 03:57:52.027 [error] [command][28868e0c-cf93-4add-aff5-1d56079e15bf] Socket error: Error: read ECONNRESET\n2025-10-29 03:57:52.027 [info] [command][28868e0c-cf93-4add-aff5-1d56079e15bf] Socket close event received\n2025-10-29 03:57:52.027 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][28868e0c-cf93-4add-aff5-1d56079e15bf] Socket closed without exit code\n2025-10-29 03:58:52.038 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:58:52.041 [info] [command][f758d40c-4944-49b2-929f-4e5e279c23ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f758d40c-4944-49b2-929f-4e5e279c23ab""}\n2025-10-29 03:58:52.042 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9213492a-b67c-460b-9bb5-9b5319b3dcee] remote server not configured\n2025-10-29 03:58:52.043 [error] [command][f758d40c-4944-49b2-929f-4e5e279c23ab] Socket error: Error: read ECONNRESET\n2025-10-29 03:58:52.043 [info] [command][f758d40c-4944-49b2-929f-4e5e279c23ab] Socket close event received\n2025-10-29 03:58:52.043 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f758d40c-4944-49b2-929f-4e5e279c23ab] Socket closed without exit code\n2025-10-29 03:59:52.048 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 03:59:52.051 [info] [command][50db29ec-4d94-4f60-a2f1-e6a40ecadad9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""50db29ec-4d94-4f60-a2f1-e6a40ecadad9""}\n2025-10-29 03:59:52.052 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fbc7c3f0-e22c-46cc-a7db-adadf8513b10] remote server not configured\n2025-10-29 03:59:52.052 [error] [command][50db29ec-4d94-4f60-a2f1-e6a40ecadad9] Socket error: Error: read ECONNRESET\n2025-10-29 03:59:52.053 [info] [command][50db29ec-4d94-4f60-a2f1-e6a40ecadad9] Socket close event received\n2025-10-29 03:59:52.053 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][50db29ec-4d94-4f60-a2f1-e6a40ecadad9] Socket closed without exit code\n2025-10-29 04:00:52.059 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:00:52.061 [info] [command][4d62bfed-09ed-4cf4-82d8-ea265121309c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4d62bfed-09ed-4cf4-82d8-ea265121309c""}\n2025-10-29 04:00:52.062 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1c7a1c3f-d177-4347-9230-ee1a16ca2cec] remote server not configured\n2025-10-29 04:00:52.062 [error] [command][4d62bfed-09ed-4cf4-82d8-ea265121309c] Socket error: Error: read ECONNRESET\n2025-10-29 04:00:52.063 [info] [command][4d62bfed-09ed-4cf4-82d8-ea265121309c] Socket close event received\n2025-10-29 04:00:52.063 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4d62bfed-09ed-4cf4-82d8-ea265121309c] Socket closed without exit code\n2025-10-29 04:01:52.068 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:01:52.071 [info] [command][2c6d2757-1608-4937-af2b-94713c480480] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2c6d2757-1608-4937-af2b-94713c480480""}\n2025-10-29 04:01:52.072 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9f5d4a15-af3e-4e98-9b1b-94e73da9bd45] remote server not configured\n2025-10-29 04:01:52.072 [error] [command][2c6d2757-1608-4937-af2b-94713c480480] Socket error: Error: read ECONNRESET\n2025-10-29 04:01:52.073 [info] [command][2c6d2757-1608-4937-af2b-94713c480480] Socket close event received\n2025-10-29 04:01:52.073 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2c6d2757-1608-4937-af2b-94713c480480] Socket closed without exit code\n2025-10-29 04:02:52.084 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:02:52.086 [info] [command][ccbd7870-9313-4b27-8442-3233e4f639d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ccbd7870-9313-4b27-8442-3233e4f639d4""}\n2025-10-29 04:02:52.086 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0b061485-1360-41cc-aaab-e1ee3ec0d96c] remote server not configured\n2025-10-29 04:02:52.087 [error] [command][ccbd7870-9313-4b27-8442-3233e4f639d4] Socket error: Error: read ECONNRESET\n2025-10-29 04:02:52.087 [info] [command][ccbd7870-9313-4b27-8442-3233e4f639d4] Socket close event received\n2025-10-29 04:02:52.087 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ccbd7870-9313-4b27-8442-3233e4f639d4] Socket closed without exit code\n2025-10-29 04:03:52.089 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:03:52.091 [info] [command][ee354437-da8b-4a20-8a46-909c2b41baf5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ee354437-da8b-4a20-8a46-909c2b41baf5""}\n2025-10-29 04:03:52.092 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][10cc8d09-a1e2-404d-94ec-78cf71676c6e] remote server not configured\n2025-10-29 04:03:52.093 [error] [command][ee354437-da8b-4a20-8a46-909c2b41baf5] Socket error: Error: read ECONNRESET\n2025-10-29 04:03:52.093 [info] [command][ee354437-da8b-4a20-8a46-909c2b41baf5] Socket close event received\n2025-10-29 04:03:52.093 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ee354437-da8b-4a20-8a46-909c2b41baf5] Socket closed without exit code\n2025-10-29 04:04:52.103 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:04:52.106 [info] [command][6e4fec60-cbf0-4b2a-a6d7-5c6f9fe3de7b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6e4fec60-cbf0-4b2a-a6d7-5c6f9fe3de7b""}\n2025-10-29 04:04:52.107 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3e72de71-fae2-4020-81de-fea234e5bc35] remote server not configured\n2025-10-29 04:04:52.107 [error] [command][6e4fec60-cbf0-4b2a-a6d7-5c6f9fe3de7b] Socket error: Error: read ECONNRESET\n2025-10-29 04:04:52.107 [info] [command][6e4fec60-cbf0-4b2a-a6d7-5c6f9fe3de7b] Socket close event received\n2025-10-29 04:04:52.108 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6e4fec60-cbf0-4b2a-a6d7-5c6f9fe3de7b] Socket closed without exit code\n2025-10-29 04:05:52.113 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:05:52.116 [info] [command][d90f333e-9329-4e36-a2f1-6d1e32236372] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d90f333e-9329-4e36-a2f1-6d1e32236372""}\n2025-10-29 04:05:52.117 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dbfbecb8-dfbb-4cfe-90c3-436b28172aad] remote server not configured\n2025-10-29 04:05:52.117 [error] [command][d90f333e-9329-4e36-a2f1-6d1e32236372] Socket error: Error: read ECONNRESET\n2025-10-29 04:05:52.117 [info] [command][d90f333e-9329-4e36-a2f1-6d1e32236372] Socket close event received\n2025-10-29 04:05:52.118 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d90f333e-9329-4e36-a2f1-6d1e32236372] Socket closed without exit code\n2025-10-29 04:06:52.125 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:06:52.128 [info] [command][b299e465-3bc2-4245-9ddc-55cc11a12f07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b299e465-3bc2-4245-9ddc-55cc11a12f07""}\n2025-10-29 04:06:52.129 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][22a599ee-d7d7-4821-b11a-584387bfd9b8] remote server not configured\n2025-10-29 04:06:52.129 [error] [command][b299e465-3bc2-4245-9ddc-55cc11a12f07] Socket error: Error: read ECONNRESET\n2025-10-29 04:06:52.130 [info] [command][b299e465-3bc2-4245-9ddc-55cc11a12f07] Socket close event received\n2025-10-29 04:06:52.130 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b299e465-3bc2-4245-9ddc-55cc11a12f07] Socket closed without exit code\n2025-10-29 04:07:52.140 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:07:52.143 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][bff2e43e-caf0-4343-9951-300984411b03] remote server not configured\n2025-10-29 04:07:52.144 [info] [command][89f4a297-11e8-4223-9861-cdca94eeeeac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""89f4a297-11e8-4223-9861-cdca94eeeeac""}\n2025-10-29 04:07:52.145 [error] [command][89f4a297-11e8-4223-9861-cdca94eeeeac] Socket error: Error: read ECONNRESET\n2025-10-29 04:07:52.145 [info] [command][89f4a297-11e8-4223-9861-cdca94eeeeac] Socket close event received\n2025-10-29 04:07:52.145 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][89f4a297-11e8-4223-9861-cdca94eeeeac] Socket closed without exit code\n2025-10-29 04:08:52.156 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:08:52.158 [info] [command][b048d7a0-db20-4957-b047-954aee1eec7e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b048d7a0-db20-4957-b047-954aee1eec7e""}\n2025-10-29 04:08:52.159 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4a649616-c79f-4d23-b75d-74ed5126ac6f] remote server not configured\n2025-10-29 04:08:52.159 [error] [command][b048d7a0-db20-4957-b047-954aee1eec7e] Socket error: Error: read ECONNRESET\n2025-10-29 04:08:52.159 [info] [command][b048d7a0-db20-4957-b047-954aee1eec7e] Socket close event received\n2025-10-29 04:08:52.160 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b048d7a0-db20-4957-b047-954aee1eec7e] Socket closed without exit code\n2025-10-29 04:09:52.170 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:09:52.172 [info] [command][4ae188dd-2c18-441e-aef7-6be024d20003] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4ae188dd-2c18-441e-aef7-6be024d20003""}\n2025-10-29 04:09:52.173 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7a451831-bc94-4509-80ea-1cc9a959cc57] remote server not configured\n2025-10-29 04:09:52.173 [error] [command][4ae188dd-2c18-441e-aef7-6be024d20003] Socket error: Error: read ECONNRESET\n2025-10-29 04:09:52.174 [info] [command][4ae188dd-2c18-441e-aef7-6be024d20003] Socket close event received\n2025-10-29 04:09:52.174 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4ae188dd-2c18-441e-aef7-6be024d20003] Socket closed without exit code\n2025-10-29 04:10:52.182 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:10:52.186 [info] [command][6cbb7fdd-e7fb-49e0-abc4-506af0593d38] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6cbb7fdd-e7fb-49e0-abc4-506af0593d38""}\n2025-10-29 04:10:52.186 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0edc67f4-3528-438f-b779-9453282b9921] remote server not configured\n2025-10-29 04:10:52.187 [error] [command][6cbb7fdd-e7fb-49e0-abc4-506af0593d38] Socket error: Error: read ECONNRESET\n2025-10-29 04:10:52.187 [info] [command][6cbb7fdd-e7fb-49e0-abc4-506af0593d38] Socket close event received\n2025-10-29 04:10:52.187 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6cbb7fdd-e7fb-49e0-abc4-506af0593d38] Socket closed without exit code\n2025-10-29 04:11:52.198 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:11:52.199 [info] [command][7c4403f2-3650-43b7-aaae-0fbbbff97155] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7c4403f2-3650-43b7-aaae-0fbbbff97155""}\n2025-10-29 04:11:52.200 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][810ae639-e1dd-447e-b17a-db71f62c9983] remote server not configured\n2025-10-29 04:11:52.200 [error] [command][7c4403f2-3650-43b7-aaae-0fbbbff97155] Socket error: Error: read ECONNRESET\n2025-10-29 04:11:52.200 [info] [command][7c4403f2-3650-43b7-aaae-0fbbbff97155] Socket close event received\n2025-10-29 04:11:52.200 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7c4403f2-3650-43b7-aaae-0fbbbff97155] Socket closed without exit code\n2025-10-29 04:12:52.211 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:12:52.214 [info] [command][9e2d2889-01a0-43fb-87c0-2247d91925f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9e2d2889-01a0-43fb-87c0-2247d91925f4""}\n2025-10-29 04:12:52.215 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9e133580-51a9-4d28-8b94-7572f093007f] remote server not configured\n2025-10-29 04:12:52.216 [error] [command][9e2d2889-01a0-43fb-87c0-2247d91925f4] Socket error: Error: read ECONNRESET\n2025-10-29 04:12:52.216 [info] [command][9e2d2889-01a0-43fb-87c0-2247d91925f4] Socket close event received\n2025-10-29 04:12:52.216 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9e2d2889-01a0-43fb-87c0-2247d91925f4] Socket closed without exit code\n2025-10-29 04:13:52.227 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:13:52.230 [info] [command][0ee5b916-f863-4631-888e-506f74a0dcc7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0ee5b916-f863-4631-888e-506f74a0dcc7""}\n2025-10-29 04:13:52.231 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][df75f1f1-dad7-40f5-8382-51946e176658] remote server not configured\n2025-10-29 04:13:52.231 [error] [command][0ee5b916-f863-4631-888e-506f74a0dcc7] Socket error: Error: read ECONNRESET\n2025-10-29 04:13:52.231 [info] [command][0ee5b916-f863-4631-888e-506f74a0dcc7] Socket close event received\n2025-10-29 04:13:52.232 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0ee5b916-f863-4631-888e-506f74a0dcc7] Socket closed without exit code\n2025-10-29 04:14:52.242 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:14:52.245 [info] [command][5c6fd298-f87a-426f-9663-0994b30933da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5c6fd298-f87a-426f-9663-0994b30933da""}\n2025-10-29 04:14:52.246 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4d2909d5-7f31-4680-a452-63e531f35ace] remote server not configured\n2025-10-29 04:14:52.246 [error] [command][5c6fd298-f87a-426f-9663-0994b30933da] Socket error: Error: read ECONNRESET\n2025-10-29 04:14:52.247 [info] [command][5c6fd298-f87a-426f-9663-0994b30933da] Socket close event received\n2025-10-29 04:14:52.247 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5c6fd298-f87a-426f-9663-0994b30933da] Socket closed without exit code\n2025-10-29 04:15:52.258 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:15:52.260 [info] [command][4cef0466-0489-468d-9d63-a4a55bc9f4b2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4cef0466-0489-468d-9d63-a4a55bc9f4b2""}\n2025-10-29 04:15:52.261 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2a4ba620-5b30-4057-a18a-518fdb6c5a52] remote server not configured\n2025-10-29 04:15:52.262 [error] [command][4cef0466-0489-468d-9d63-a4a55bc9f4b2] Socket error: Error: read ECONNRESET\n2025-10-29 04:15:52.262 [info] [command][4cef0466-0489-468d-9d63-a4a55bc9f4b2] Socket close event received\n2025-10-29 04:15:52.263 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4cef0466-0489-468d-9d63-a4a55bc9f4b2] Socket closed without exit code\n2025-10-29 04:16:52.267 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:16:52.268 [info] [command][e5d30f98-578e-42d8-bb1f-de614e876710] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e5d30f98-578e-42d8-bb1f-de614e876710""}\n2025-10-29 04:16:52.269 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f72bfe72-1047-4173-b03f-09bc4c4a7961] remote server not configured\n2025-10-29 04:16:52.270 [error] [command][e5d30f98-578e-42d8-bb1f-de614e876710] Socket error: Error: read ECONNRESET\n2025-10-29 04:16:52.270 [info] [command][e5d30f98-578e-42d8-bb1f-de614e876710] Socket close event received\n2025-10-29 04:16:52.270 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e5d30f98-578e-42d8-bb1f-de614e876710] Socket closed without exit code\n2025-10-29 04:17:52.277 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:17:52.280 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][534e5619-4dab-4c9c-9c12-8a5f2dcb6aeb] remote server not configured\n2025-10-29 04:17:52.281 [info] [command][5b7ae900-35b2-443f-9e59-ddbbdac87e55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5b7ae900-35b2-443f-9e59-ddbbdac87e55""}\n2025-10-29 04:17:52.281 [error] [command][5b7ae900-35b2-443f-9e59-ddbbdac87e55] Socket error: Error: read ECONNRESET\n2025-10-29 04:17:52.282 [info] [command][5b7ae900-35b2-443f-9e59-ddbbdac87e55] Socket close event received\n2025-10-29 04:17:52.282 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5b7ae900-35b2-443f-9e59-ddbbdac87e55] Socket closed without exit code\n2025-10-29 04:18:52.283 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:18:52.286 [info] [command][d96810e3-c9d6-48b6-b10e-578c7e4049ad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d96810e3-c9d6-48b6-b10e-578c7e4049ad""}\n2025-10-29 04:18:52.286 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d50d153b-1833-4df2-888b-d5c10e724e6c] remote server not configured\n2025-10-29 04:18:52.287 [error] [command][d96810e3-c9d6-48b6-b10e-578c7e4049ad] Socket error: Error: read ECONNRESET\n2025-10-29 04:18:52.287 [info] [command][d96810e3-c9d6-48b6-b10e-578c7e4049ad] Socket close event received\n2025-10-29 04:18:52.288 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d96810e3-c9d6-48b6-b10e-578c7e4049ad] Socket closed without exit code\n2025-10-29 04:19:52.290 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:19:52.293 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7593b406-9727-423d-89c8-9e0233fa06bd] remote server not configured\n2025-10-29 04:19:52.294 [info] [command][2ccd659b-62c4-4051-95c1-4031d7da342c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2ccd659b-62c4-4051-95c1-4031d7da342c""}\n2025-10-29 04:19:52.295 [error] [command][2ccd659b-62c4-4051-95c1-4031d7da342c] Socket error: Error: read ECONNRESET\n2025-10-29 04:19:52.295 [info] [command][2ccd659b-62c4-4051-95c1-4031d7da342c] Socket close event received\n2025-10-29 04:19:52.295 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2ccd659b-62c4-4051-95c1-4031d7da342c] Socket closed without exit code\n2025-10-29 04:20:52.300 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:20:52.303 [info] [command][a29dffb7-3ac3-4103-a952-efd7c0072828] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a29dffb7-3ac3-4103-a952-efd7c0072828""}\n2025-10-29 04:20:52.303 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5b516986-cf7f-4e58-96f6-fa151aceb668] remote server not configured\n2025-10-29 04:20:52.304 [error] [command][a29dffb7-3ac3-4103-a952-efd7c0072828] Socket error: Error: read ECONNRESET\n2025-10-29 04:20:52.304 [info] [command][a29dffb7-3ac3-4103-a952-efd7c0072828] Socket close event received\n2025-10-29 04:20:52.305 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a29dffb7-3ac3-4103-a952-efd7c0072828] Socket closed without exit code\n2025-10-29 04:21:52.310 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:21:52.312 [info] [command][5f1e352a-5875-4902-ba7f-0d1fdc679e00] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5f1e352a-5875-4902-ba7f-0d1fdc679e00""}\n2025-10-29 04:21:52.313 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d2dd34df-062b-4507-9fbe-efafcd571aef] remote server not configured\n2025-10-29 04:21:52.314 [error] [command][5f1e352a-5875-4902-ba7f-0d1fdc679e00] Socket error: Error: read ECONNRESET\n2025-10-29 04:21:52.315 [info] [command][5f1e352a-5875-4902-ba7f-0d1fdc679e00] Socket close event received\n2025-10-29 04:21:52.315 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5f1e352a-5875-4902-ba7f-0d1fdc679e00] Socket closed without exit code\n2025-10-29 04:22:52.325 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:22:52.327 [info] [command][30fcb821-124a-4b05-b2e6-c205722f51f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""30fcb821-124a-4b05-b2e6-c205722f51f4""}\n2025-10-29 04:22:52.327 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9458ed6a-9849-47e5-ac97-e15807e558b1] remote server not configured\n2025-10-29 04:22:52.328 [error] [command][30fcb821-124a-4b05-b2e6-c205722f51f4] Socket error: Error: read ECONNRESET\n2025-10-29 04:22:52.328 [info] [command][30fcb821-124a-4b05-b2e6-c205722f51f4] Socket close event received\n2025-10-29 04:22:52.328 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][30fcb821-124a-4b05-b2e6-c205722f51f4] Socket closed without exit code\n2025-10-29 04:23:52.338 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:23:52.341 [info] [command][b443d5db-b42c-4328-bfeb-6e254d75e2cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b443d5db-b42c-4328-bfeb-6e254d75e2cb""}\n2025-10-29 04:23:52.342 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a6e1c90b-f9b3-4120-80ae-20fe3ffb9ba1] remote server not configured\n2025-10-29 04:23:52.342 [error] [command][b443d5db-b42c-4328-bfeb-6e254d75e2cb] Socket error: Error: read ECONNRESET\n2025-10-29 04:23:52.343 [info] [command][b443d5db-b42c-4328-bfeb-6e254d75e2cb] Socket close event received\n2025-10-29 04:23:52.343 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b443d5db-b42c-4328-bfeb-6e254d75e2cb] Socket closed without exit code\n2025-10-29 04:24:52.344 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:24:52.348 [info] [command][7983bb1f-d178-41a1-a41b-6859d25db409] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7983bb1f-d178-41a1-a41b-6859d25db409""}\n2025-10-29 04:24:52.349 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f7ee3983-b5cc-4d60-8ab0-54befc38c608] remote server not configured\n2025-10-29 04:24:52.350 [error] [command][7983bb1f-d178-41a1-a41b-6859d25db409] Socket error: Error: read ECONNRESET\n2025-10-29 04:24:52.350 [info] [command][7983bb1f-d178-41a1-a41b-6859d25db409] Socket close event received\n2025-10-29 04:24:52.350 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7983bb1f-d178-41a1-a41b-6859d25db409] Socket closed without exit code\n2025-10-29 04:25:52.353 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:25:52.356 [info] [command][89645723-f536-40d0-b6e4-61198e737005] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""89645723-f536-40d0-b6e4-61198e737005""}\n2025-10-29 04:25:52.357 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b4766fa4-4579-4aac-b50f-c66ff6685753] remote server not configured\n2025-10-29 04:25:52.357 [error] [command][89645723-f536-40d0-b6e4-61198e737005] Socket error: Error: read ECONNRESET\n2025-10-29 04:25:52.357 [info] [command][89645723-f536-40d0-b6e4-61198e737005] Socket close event received\n2025-10-29 04:25:52.358 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][89645723-f536-40d0-b6e4-61198e737005] Socket closed without exit code\n2025-10-29 04:26:52.368 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:26:52.371 [info] [command][e84c41b1-cd87-4eca-b946-503f62cfc7da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e84c41b1-cd87-4eca-b946-503f62cfc7da""}\n2025-10-29 04:26:52.372 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4787a6e8-0645-4f13-994c-f7bb261caa88] remote server not configured\n2025-10-29 04:26:52.372 [error] [command][e84c41b1-cd87-4eca-b946-503f62cfc7da] Socket error: Error: read ECONNRESET\n2025-10-29 04:26:52.372 [info] [command][e84c41b1-cd87-4eca-b946-503f62cfc7da] Socket close event received\n2025-10-29 04:26:52.372 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e84c41b1-cd87-4eca-b946-503f62cfc7da] Socket closed without exit code\n2025-10-29 04:27:52.378 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:27:52.380 [info] [command][0b4c28d5-2624-4d68-982a-6619925668d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0b4c28d5-2624-4d68-982a-6619925668d6""}\n2025-10-29 04:27:52.381 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7b052513-205a-4984-a718-72ced6edc9eb] remote server not configured\n2025-10-29 04:27:52.382 [error] [command][0b4c28d5-2624-4d68-982a-6619925668d6] Socket error: Error: read ECONNRESET\n2025-10-29 04:27:52.382 [info] [command][0b4c28d5-2624-4d68-982a-6619925668d6] Socket close event received\n2025-10-29 04:27:52.383 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0b4c28d5-2624-4d68-982a-6619925668d6] Socket closed without exit code\n2025-10-29 04:28:52.388 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:28:52.391 [info] [command][55df222d-916e-4a11-93e5-ddb3a3bdbd9d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""55df222d-916e-4a11-93e5-ddb3a3bdbd9d""}\n2025-10-29 04:28:52.392 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7501b47a-c856-4ee2-b182-924588b436a1] remote server not configured\n2025-10-29 04:28:52.392 [error] [command][55df222d-916e-4a11-93e5-ddb3a3bdbd9d] Socket error: Error: read ECONNRESET\n2025-10-29 04:28:52.393 [info] [command][55df222d-916e-4a11-93e5-ddb3a3bdbd9d] Socket close event received\n2025-10-29 04:28:52.393 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][55df222d-916e-4a11-93e5-ddb3a3bdbd9d] Socket closed without exit code\n2025-10-29 04:29:52.403 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:29:52.406 [info] [command][a99ad2c1-e131-434d-a0c2-be271afc6470] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a99ad2c1-e131-434d-a0c2-be271afc6470""}\n2025-10-29 04:29:52.406 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][65732ea1-8323-41c9-99ee-56dbb926eb22] remote server not configured\n2025-10-29 04:29:52.407 [error] [command][a99ad2c1-e131-434d-a0c2-be271afc6470] Socket error: Error: read ECONNRESET\n2025-10-29 04:29:52.407 [info] [command][a99ad2c1-e131-434d-a0c2-be271afc6470] Socket close event received\n2025-10-29 04:29:52.407 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a99ad2c1-e131-434d-a0c2-be271afc6470] Socket closed without exit code\n2025-10-29 04:30:52.415 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:30:52.419 [info] [command][38e475a0-3ac4-4ba7-b6e6-1132a63d7c4c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""38e475a0-3ac4-4ba7-b6e6-1132a63d7c4c""}\n2025-10-29 04:30:52.420 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][af52886b-afee-4704-8269-4d41defe218a] remote server not configured\n2025-10-29 04:30:52.421 [error] [command][38e475a0-3ac4-4ba7-b6e6-1132a63d7c4c] Socket error: Error: read ECONNRESET\n2025-10-29 04:30:52.421 [info] [command][38e475a0-3ac4-4ba7-b6e6-1132a63d7c4c] Socket close event received\n2025-10-29 04:30:52.421 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][38e475a0-3ac4-4ba7-b6e6-1132a63d7c4c] Socket closed without exit code\n2025-10-29 04:31:52.432 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:31:52.434 [info] [command][3d2e8d08-511a-4a9b-b26c-781ece5ceb61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3d2e8d08-511a-4a9b-b26c-781ece5ceb61""}\n2025-10-29 04:31:52.435 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5b3611a6-acca-49b7-8902-ff87f5f2558d] remote server not configured\n2025-10-29 04:31:52.436 [error] [command][3d2e8d08-511a-4a9b-b26c-781ece5ceb61] Socket error: Error: read ECONNRESET\n2025-10-29 04:31:52.436 [info] [command][3d2e8d08-511a-4a9b-b26c-781ece5ceb61] Socket close event received\n2025-10-29 04:31:52.437 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3d2e8d08-511a-4a9b-b26c-781ece5ceb61] Socket closed without exit code\n2025-10-29 04:32:52.441 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:32:52.443 [info] [command][ddfd7075-22ff-4978-ab7c-1f1a40873c50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ddfd7075-22ff-4978-ab7c-1f1a40873c50""}\n2025-10-29 04:32:52.444 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a460f8f5-e9eb-4ec1-9ed0-458b35aab9aa] remote server not configured\n2025-10-29 04:32:52.445 [error] [command][ddfd7075-22ff-4978-ab7c-1f1a40873c50] Socket error: Error: read ECONNRESET\n2025-10-29 04:32:52.446 [info] [command][ddfd7075-22ff-4978-ab7c-1f1a40873c50] Socket close event received\n2025-10-29 04:32:52.446 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ddfd7075-22ff-4978-ab7c-1f1a40873c50] Socket closed without exit code\n2025-10-29 04:33:52.456 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:33:52.458 [info] [command][ad436ef3-d1f4-4866-bc41-cab0ca58254b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ad436ef3-d1f4-4866-bc41-cab0ca58254b""}\n2025-10-29 04:33:52.459 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][976f14cb-c0be-4d14-a2ec-68d406fa50e1] remote server not configured\n2025-10-29 04:33:52.459 [error] [command][ad436ef3-d1f4-4866-bc41-cab0ca58254b] Socket error: Error: read ECONNRESET\n2025-10-29 04:33:52.460 [info] [command][ad436ef3-d1f4-4866-bc41-cab0ca58254b] Socket close event received\n2025-10-29 04:33:52.460 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ad436ef3-d1f4-4866-bc41-cab0ca58254b] Socket closed without exit code\n2025-10-29 04:34:52.462 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:34:52.466 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][967dd7e3-be5f-4756-b4ac-05794e4b7740] remote server not configured\n2025-10-29 04:34:52.467 [info] [command][6a8f42c0-3f7d-4aa8-8854-a138d11e2ffa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6a8f42c0-3f7d-4aa8-8854-a138d11e2ffa""}\n2025-10-29 04:34:52.468 [error] [command][6a8f42c0-3f7d-4aa8-8854-a138d11e2ffa] Socket error: Error: read ECONNRESET\n2025-10-29 04:34:52.468 [info] [command][6a8f42c0-3f7d-4aa8-8854-a138d11e2ffa] Socket close event received\n2025-10-29 04:34:52.469 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6a8f42c0-3f7d-4aa8-8854-a138d11e2ffa] Socket closed without exit code\n2025-10-29 04:35:52.479 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:35:52.483 [info] [command][bb603b02-f6bb-4638-b14d-3f2c99797cfa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bb603b02-f6bb-4638-b14d-3f2c99797cfa""}\n2025-10-29 04:35:52.484 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][42feef9f-237f-47f4-aefd-23bc5088a1d4] remote server not configured\n2025-10-29 04:35:52.484 [error] [command][bb603b02-f6bb-4638-b14d-3f2c99797cfa] Socket error: Error: read ECONNRESET\n2025-10-29 04:35:52.485 [info] [command][bb603b02-f6bb-4638-b14d-3f2c99797cfa] Socket close event received\n2025-10-29 04:35:52.485 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][bb603b02-f6bb-4638-b14d-3f2c99797cfa] Socket closed without exit code\n2025-10-29 04:36:52.488 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:36:52.491 [info] [command][44f2c549-1b21-4d7a-af65-40ed14879782] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""44f2c549-1b21-4d7a-af65-40ed14879782""}\n2025-10-29 04:36:52.492 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ccc953ea-7815-4062-9112-2a2842294534] remote server not configured\n2025-10-29 04:36:52.493 [error] [command][44f2c549-1b21-4d7a-af65-40ed14879782] Socket error: Error: read ECONNRESET\n2025-10-29 04:36:52.493 [info] [command][44f2c549-1b21-4d7a-af65-40ed14879782] Socket close event received\n2025-10-29 04:36:52.493 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][44f2c549-1b21-4d7a-af65-40ed14879782] Socket closed without exit code\n2025-10-29 04:37:52.501 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:37:52.504 [info] [command][3a74a936-6725-421f-9430-ad53331e5484] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3a74a936-6725-421f-9430-ad53331e5484""}\n2025-10-29 04:37:52.504 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c0aa3275-ba3d-4b88-8e89-8979c97b3c2b] remote server not configured\n2025-10-29 04:37:52.505 [error] [command][3a74a936-6725-421f-9430-ad53331e5484] Socket error: Error: read ECONNRESET\n2025-10-29 04:37:52.505 [info] [command][3a74a936-6725-421f-9430-ad53331e5484] Socket close event received\n2025-10-29 04:37:52.505 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3a74a936-6725-421f-9430-ad53331e5484] Socket closed without exit code\n2025-10-29 04:38:52.514 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:38:52.517 [info] [command][43edf5a3-4be3-41f0-8756-55718fd26b55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""43edf5a3-4be3-41f0-8756-55718fd26b55""}\n2025-10-29 04:38:52.518 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8c470ec1-12cd-4a10-b50e-f8ff027cdd76] remote server not configured\n2025-10-29 04:38:52.518 [error] [command][43edf5a3-4be3-41f0-8756-55718fd26b55] Socket error: Error: read ECONNRESET\n2025-10-29 04:38:52.519 [info] [command][43edf5a3-4be3-41f0-8756-55718fd26b55] Socket close event received\n2025-10-29 04:38:52.519 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][43edf5a3-4be3-41f0-8756-55718fd26b55] Socket closed without exit code\n2025-10-29 04:39:52.529 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:39:52.532 [info] [command][a27a538a-c1ca-455d-8d69-915b0ebc2e3d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a27a538a-c1ca-455d-8d69-915b0ebc2e3d""}\n2025-10-29 04:39:52.533 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][17fa4866-98c5-420f-a040-beb9c128ff8a] remote server not configured\n2025-10-29 04:39:52.533 [error] [command][a27a538a-c1ca-455d-8d69-915b0ebc2e3d] Socket error: Error: read ECONNRESET\n2025-10-29 04:39:52.533 [info] [command][a27a538a-c1ca-455d-8d69-915b0ebc2e3d] Socket close event received\n2025-10-29 04:39:52.534 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a27a538a-c1ca-455d-8d69-915b0ebc2e3d] Socket closed without exit code\n2025-10-29 04:40:52.544 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:40:52.547 [info] [command][72f90376-2396-40e5-8a6e-d88324cf7d58] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""72f90376-2396-40e5-8a6e-d88324cf7d58""}\n2025-10-29 04:40:52.548 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0222c7c8-810a-45e4-8895-a21fc69e26d0] remote server not configured\n2025-10-29 04:40:52.551 [error] [command][72f90376-2396-40e5-8a6e-d88324cf7d58] Socket error: Error: read ECONNRESET\n2025-10-29 04:40:52.551 [info] [command][72f90376-2396-40e5-8a6e-d88324cf7d58] Socket close event received\n2025-10-29 04:40:52.552 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][72f90376-2396-40e5-8a6e-d88324cf7d58] Socket closed without exit code\n2025-10-29 04:41:52.561 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:41:52.564 [info] [command][546c9e61-004e-4525-9232-a3f88b9b2807] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""546c9e61-004e-4525-9232-a3f88b9b2807""}\n2025-10-29 04:41:52.565 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][756b8ea7-bc11-40d1-9978-1c1a48558422] remote server not configured\n2025-10-29 04:41:52.565 [error] [command][546c9e61-004e-4525-9232-a3f88b9b2807] Socket error: Error: read ECONNRESET\n2025-10-29 04:41:52.565 [info] [command][546c9e61-004e-4525-9232-a3f88b9b2807] Socket close event received\n2025-10-29 04:41:52.566 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][546c9e61-004e-4525-9232-a3f88b9b2807] Socket closed without exit code\n2025-10-29 04:42:52.575 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:42:52.578 [info] [command][568c4a79-d058-4b4b-b653-4feda1b832d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""568c4a79-d058-4b4b-b653-4feda1b832d8""}\n2025-10-29 04:42:52.579 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ffc673d8-1498-470e-a4e5-bffd88f7f3a7] remote server not configured\n2025-10-29 04:42:52.579 [error] [command][568c4a79-d058-4b4b-b653-4feda1b832d8] Socket error: Error: read ECONNRESET\n2025-10-29 04:42:52.580 [info] [command][568c4a79-d058-4b4b-b653-4feda1b832d8] Socket close event received\n2025-10-29 04:42:52.580 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][568c4a79-d058-4b4b-b653-4feda1b832d8] Socket closed without exit code\n2025-10-29 04:43:52.583 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:43:52.586 [info] [command][bf95e9b5-7ed0-47ca-962c-d656df1bbb7b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bf95e9b5-7ed0-47ca-962c-d656df1bbb7b""}\n2025-10-29 04:43:52.587 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dde3ee71-529f-4670-95f1-e50449a44a8e] remote server not configured\n2025-10-29 04:43:52.587 [error] [command][bf95e9b5-7ed0-47ca-962c-d656df1bbb7b] Socket error: Error: read ECONNRESET\n2025-10-29 04:43:52.587 [info] [command][bf95e9b5-7ed0-47ca-962c-d656df1bbb7b] Socket close event received\n2025-10-29 04:43:52.587 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][bf95e9b5-7ed0-47ca-962c-d656df1bbb7b] Socket closed without exit code\n2025-10-29 04:44:52.541 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:44:52.543 [info] [command][679e2ad7-90ba-4403-83c4-88a35403c820] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""679e2ad7-90ba-4403-83c4-88a35403c820""}\n2025-10-29 04:44:52.544 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3bfbcd87-e94b-4e3b-836e-0f7b65256a6d] remote server not configured\n2025-10-29 04:44:52.544 [error] [command][679e2ad7-90ba-4403-83c4-88a35403c820] Socket error: Error: read ECONNRESET\n2025-10-29 04:44:52.545 [info] [command][679e2ad7-90ba-4403-83c4-88a35403c820] Socket close event received\n2025-10-29 04:44:52.545 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][679e2ad7-90ba-4403-83c4-88a35403c820] Socket closed without exit code\n2025-10-29 04:45:52.554 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:45:52.557 [info] [command][3c90b929-128f-4592-9ea2-f5812586bee3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3c90b929-128f-4592-9ea2-f5812586bee3""}\n2025-10-29 04:45:52.557 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f378980c-448c-4453-9b62-fcbfb70ec5d0] remote server not configured\n2025-10-29 04:45:52.558 [error] [command][3c90b929-128f-4592-9ea2-f5812586bee3] Socket error: Error: read ECONNRESET\n2025-10-29 04:45:52.558 [info] [command][3c90b929-128f-4592-9ea2-f5812586bee3] Socket close event received\n2025-10-29 04:45:52.558 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3c90b929-128f-4592-9ea2-f5812586bee3] Socket closed without exit code\n2025-10-29 04:46:52.564 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:46:52.567 [info] [command][2226b86a-29d1-4ab3-aa28-f80ebf21ebc7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2226b86a-29d1-4ab3-aa28-f80ebf21ebc7""}\n2025-10-29 04:46:52.567 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][93d8feaa-596f-4427-b612-515d6f44ad3c] remote server not configured\n2025-10-29 04:46:52.568 [error] [command][2226b86a-29d1-4ab3-aa28-f80ebf21ebc7] Socket error: Error: read ECONNRESET\n2025-10-29 04:46:52.568 [info] [command][2226b86a-29d1-4ab3-aa28-f80ebf21ebc7] Socket close event received\n2025-10-29 04:46:52.568 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2226b86a-29d1-4ab3-aa28-f80ebf21ebc7] Socket closed without exit code\n2025-10-29 04:47:52.578 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:47:52.581 [info] [command][18f1ddd2-71de-4adc-8cc9-8e4e8a5d2b40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""18f1ddd2-71de-4adc-8cc9-8e4e8a5d2b40""}\n2025-10-29 04:47:52.581 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cebe0f5e-c8e7-4a93-8c97-af363eea469e] remote server not configured\n2025-10-29 04:47:52.582 [error] [command][18f1ddd2-71de-4adc-8cc9-8e4e8a5d2b40] Socket error: Error: read ECONNRESET\n2025-10-29 04:47:52.582 [info] [command][18f1ddd2-71de-4adc-8cc9-8e4e8a5d2b40] Socket close event received\n2025-10-29 04:47:52.582 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][18f1ddd2-71de-4adc-8cc9-8e4e8a5d2b40] Socket closed without exit code\n2025-10-29 04:48:52.584 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:48:52.586 [info] [command][783a34ad-f99d-441d-b253-bf2ea41b73a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""783a34ad-f99d-441d-b253-bf2ea41b73a6""}\n2025-10-29 04:48:52.586 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][026ce1d2-4844-444a-8a98-d7d2a4e9b480] remote server not configured\n2025-10-29 04:48:52.587 [error] [command][783a34ad-f99d-441d-b253-bf2ea41b73a6] Socket error: Error: read ECONNRESET\n2025-10-29 04:48:52.587 [info] [command][783a34ad-f99d-441d-b253-bf2ea41b73a6] Socket close event received\n2025-10-29 04:48:52.587 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][783a34ad-f99d-441d-b253-bf2ea41b73a6] Socket closed without exit code\n2025-10-29 04:49:52.589 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:49:52.592 [info] [command][bf0d0574-15d8-42f1-b890-1b8e6a46695f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bf0d0574-15d8-42f1-b890-1b8e6a46695f""}\n2025-10-29 04:49:52.593 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][91d8bf75-c274-49a7-8199-376a408feb18] remote server not configured\n2025-10-29 04:49:52.593 [error] [command][bf0d0574-15d8-42f1-b890-1b8e6a46695f] Socket error: Error: read ECONNRESET\n2025-10-29 04:49:52.593 [info] [command][bf0d0574-15d8-42f1-b890-1b8e6a46695f] Socket close event received\n2025-10-29 04:49:52.594 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][bf0d0574-15d8-42f1-b890-1b8e6a46695f] Socket closed without exit code\n2025-10-29 04:50:52.595 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:50:52.597 [info] [command][3a9c2e50-5c83-4d35-b57e-431618430c4c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3a9c2e50-5c83-4d35-b57e-431618430c4c""}\n2025-10-29 04:50:52.598 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6e053c6b-8525-4ed8-bb62-4cb18067dad0] remote server not configured\n2025-10-29 04:50:52.598 [error] [command][3a9c2e50-5c83-4d35-b57e-431618430c4c] Socket error: Error: read ECONNRESET\n2025-10-29 04:50:52.598 [info] [command][3a9c2e50-5c83-4d35-b57e-431618430c4c] Socket close event received\n2025-10-29 04:50:52.599 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3a9c2e50-5c83-4d35-b57e-431618430c4c] Socket closed without exit code\n2025-10-29 04:51:52.608 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:51:52.610 [info] [command][65d2c1c8-0236-4915-9852-a8204372170c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""65d2c1c8-0236-4915-9852-a8204372170c""}\n2025-10-29 04:51:52.611 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][637016f2-f40e-41f6-b7cb-573b8796fa92] remote server not configured\n2025-10-29 04:51:52.611 [error] [command][65d2c1c8-0236-4915-9852-a8204372170c] Socket error: Error: read ECONNRESET\n2025-10-29 04:51:52.611 [info] [command][65d2c1c8-0236-4915-9852-a8204372170c] Socket close event received\n2025-10-29 04:51:52.612 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][65d2c1c8-0236-4915-9852-a8204372170c] Socket closed without exit code\n2025-10-29 04:52:52.621 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:52:52.624 [info] [command][44ff86bb-7d5c-40ce-82d4-5999328bcfa4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""44ff86bb-7d5c-40ce-82d4-5999328bcfa4""}\n2025-10-29 04:52:52.625 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1b309c6d-8b03-4e92-890d-313c1cc1e976] remote server not configured\n2025-10-29 04:52:52.625 [error] [command][44ff86bb-7d5c-40ce-82d4-5999328bcfa4] Socket error: Error: read ECONNRESET\n2025-10-29 04:52:52.625 [info] [command][44ff86bb-7d5c-40ce-82d4-5999328bcfa4] Socket close event received\n2025-10-29 04:52:52.626 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][44ff86bb-7d5c-40ce-82d4-5999328bcfa4] Socket closed without exit code\n2025-10-29 04:53:52.635 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:53:52.638 [info] [command][c4785f60-b748-4f7a-913d-d8681f140df2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c4785f60-b748-4f7a-913d-d8681f140df2""}\n2025-10-29 04:53:52.639 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a2b4a7e8-6ef4-4cea-8135-7badc9370ff1] remote server not configured\n2025-10-29 04:53:52.639 [error] [command][c4785f60-b748-4f7a-913d-d8681f140df2] Socket error: Error: read ECONNRESET\n2025-10-29 04:53:52.640 [info] [command][c4785f60-b748-4f7a-913d-d8681f140df2] Socket close event received\n2025-10-29 04:53:52.640 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c4785f60-b748-4f7a-913d-d8681f140df2] Socket closed without exit code\n2025-10-29 04:54:52.650 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:54:52.652 [info] [command][b8c5a996-c012-4610-b94a-2188a0b8804b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b8c5a996-c012-4610-b94a-2188a0b8804b""}\n2025-10-29 04:54:52.653 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8800f020-bce6-4b77-9dad-9a1021313800] remote server not configured\n2025-10-29 04:54:52.654 [error] [command][b8c5a996-c012-4610-b94a-2188a0b8804b] Socket error: Error: read ECONNRESET\n2025-10-29 04:54:52.654 [info] [command][b8c5a996-c012-4610-b94a-2188a0b8804b] Socket close event received\n2025-10-29 04:54:52.654 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b8c5a996-c012-4610-b94a-2188a0b8804b] Socket closed without exit code\n2025-10-29 04:55:52.664 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:55:52.666 [info] [command][b84c2160-b1c0-4a88-a5eb-72904beacb10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b84c2160-b1c0-4a88-a5eb-72904beacb10""}\n2025-10-29 04:55:52.667 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][40e0e1c3-987c-4fe8-bbe3-f32b2631c60e] remote server not configured\n2025-10-29 04:55:52.668 [error] [command][b84c2160-b1c0-4a88-a5eb-72904beacb10] Socket error: Error: read ECONNRESET\n2025-10-29 04:55:52.668 [info] [command][b84c2160-b1c0-4a88-a5eb-72904beacb10] Socket close event received\n2025-10-29 04:55:52.669 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b84c2160-b1c0-4a88-a5eb-72904beacb10] Socket closed without exit code\n2025-10-29 04:56:52.670 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:56:52.673 [info] [command][af4ff2d6-b006-4794-8473-58216bb8ee2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""af4ff2d6-b006-4794-8473-58216bb8ee2b""}\n2025-10-29 04:56:52.674 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][78014f28-e6e7-4f23-a966-886c92d7b397] remote server not configured\n2025-10-29 04:56:52.675 [error] [command][af4ff2d6-b006-4794-8473-58216bb8ee2b] Socket error: Error: read ECONNRESET\n2025-10-29 04:56:52.675 [info] [command][af4ff2d6-b006-4794-8473-58216bb8ee2b] Socket close event received\n2025-10-29 04:56:52.675 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][af4ff2d6-b006-4794-8473-58216bb8ee2b] Socket closed without exit code\n2025-10-29 04:57:52.685 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:57:52.688 [info] [command][a72394d3-0271-437f-9329-d6b3e67b150f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a72394d3-0271-437f-9329-d6b3e67b150f""}\n2025-10-29 04:57:52.688 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a6ff00ac-4fde-486b-a9fa-bb8f939a270e] remote server not configured\n2025-10-29 04:57:52.689 [error] [command][a72394d3-0271-437f-9329-d6b3e67b150f] Socket error: Error: read ECONNRESET\n2025-10-29 04:57:52.689 [info] [command][a72394d3-0271-437f-9329-d6b3e67b150f] Socket close event received\n2025-10-29 04:57:52.689 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a72394d3-0271-437f-9329-d6b3e67b150f] Socket closed without exit code\n2025-10-29 04:58:52.691 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:58:52.693 [info] [command][5eae5546-1321-4dc6-aaf6-61cd446f5958] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5eae5546-1321-4dc6-aaf6-61cd446f5958""}\n2025-10-29 04:58:52.693 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ce844f46-c864-4c81-b84b-2407d0cd6076] remote server not configured\n2025-10-29 04:58:52.694 [error] [command][5eae5546-1321-4dc6-aaf6-61cd446f5958] Socket error: Error: read ECONNRESET\n2025-10-29 04:58:52.694 [info] [command][5eae5546-1321-4dc6-aaf6-61cd446f5958] Socket close event received\n2025-10-29 04:58:52.695 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5eae5546-1321-4dc6-aaf6-61cd446f5958] Socket closed without exit code\n2025-10-29 04:59:52.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 04:59:52.707 [info] [command][feae43cf-56a6-40c4-a584-0e139ed0310b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""feae43cf-56a6-40c4-a584-0e139ed0310b""}\n2025-10-29 04:59:52.707 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][90c110f5-77e2-4395-8f56-58ca2eecba6e] remote server not configured\n2025-10-29 04:59:52.708 [error] [command][feae43cf-56a6-40c4-a584-0e139ed0310b] Socket error: Error: read ECONNRESET\n2025-10-29 04:59:52.708 [info] [command][feae43cf-56a6-40c4-a584-0e139ed0310b] Socket close event received\n2025-10-29 04:59:52.708 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][feae43cf-56a6-40c4-a584-0e139ed0310b] Socket closed without exit code\n2025-10-29 05:00:52.718 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:00:52.720 [info] [command][cfbd7dd7-5dfe-4ef6-84c4-ab62110decb3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cfbd7dd7-5dfe-4ef6-84c4-ab62110decb3""}\n2025-10-29 05:00:52.721 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cf591ba7-2fc9-4cfe-841f-7e2feb84f46c] remote server not configured\n2025-10-29 05:00:52.722 [error] [command][cfbd7dd7-5dfe-4ef6-84c4-ab62110decb3] Socket error: Error: read ECONNRESET\n2025-10-29 05:00:52.722 [info] [command][cfbd7dd7-5dfe-4ef6-84c4-ab62110decb3] Socket close event received\n2025-10-29 05:00:52.722 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cfbd7dd7-5dfe-4ef6-84c4-ab62110decb3] Socket closed without exit code\n2025-10-29 05:01:52.731 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:01:52.734 [info] [command][3445c3c3-c6a1-44ec-b3a3-0d4d6854c1eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3445c3c3-c6a1-44ec-b3a3-0d4d6854c1eb""}\n2025-10-29 05:01:52.734 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1b533e4a-def7-4657-a47d-9df0eb5149ed] remote server not configured\n2025-10-29 05:01:52.735 [error] [command][3445c3c3-c6a1-44ec-b3a3-0d4d6854c1eb] Socket error: Error: read ECONNRESET\n2025-10-29 05:01:52.735 [info] [command][3445c3c3-c6a1-44ec-b3a3-0d4d6854c1eb] Socket close event received\n2025-10-29 05:01:52.735 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3445c3c3-c6a1-44ec-b3a3-0d4d6854c1eb] Socket closed without exit code\n2025-10-29 05:02:52.736 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:02:52.738 [info] [command][3d841807-be96-4384-a7f2-b0ca8a996355] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3d841807-be96-4384-a7f2-b0ca8a996355""}\n2025-10-29 05:02:52.739 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7d5beb2d-0133-491a-ae96-fd1c88ce5565] remote server not configured\n2025-10-29 05:02:52.740 [error] [command][3d841807-be96-4384-a7f2-b0ca8a996355] Socket error: Error: read ECONNRESET\n2025-10-29 05:02:52.740 [info] [command][3d841807-be96-4384-a7f2-b0ca8a996355] Socket close event received\n2025-10-29 05:02:52.741 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3d841807-be96-4384-a7f2-b0ca8a996355] Socket closed without exit code\n2025-10-29 05:03:52.750 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:03:52.754 [info] [command][b0a929b4-2f71-4d87-9071-ef993ea09576] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b0a929b4-2f71-4d87-9071-ef993ea09576""}\n2025-10-29 05:03:52.754 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b623b603-4e2c-4acb-b12b-c26566a8417d] remote server not configured\n2025-10-29 05:03:52.755 [error] [command][b0a929b4-2f71-4d87-9071-ef993ea09576] Socket error: Error: read ECONNRESET\n2025-10-29 05:03:52.755 [info] [command][b0a929b4-2f71-4d87-9071-ef993ea09576] Socket close event received\n2025-10-29 05:03:52.756 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b0a929b4-2f71-4d87-9071-ef993ea09576] Socket closed without exit code\n2025-10-29 05:04:52.766 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:04:52.769 [info] [command][bd6dd0b1-83e1-4e89-8260-99963e5d28aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bd6dd0b1-83e1-4e89-8260-99963e5d28aa""}\n2025-10-29 05:04:52.769 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][22b5b7e0-a240-4cb0-9c72-c0cb80e1de0e] remote server not configured\n2025-10-29 05:04:52.770 [error] [command][bd6dd0b1-83e1-4e89-8260-99963e5d28aa] Socket error: Error: read ECONNRESET\n2025-10-29 05:04:52.770 [info] [command][bd6dd0b1-83e1-4e89-8260-99963e5d28aa] Socket close event received\n2025-10-29 05:04:52.771 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][bd6dd0b1-83e1-4e89-8260-99963e5d28aa] Socket closed without exit code\n2025-10-29 05:05:52.780 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:05:52.783 [info] [command][795328a1-0204-4026-b288-ab063db7624f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""795328a1-0204-4026-b288-ab063db7624f""}\n2025-10-29 05:05:52.784 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ef5f1d14-44bf-4a40-9727-c30c0d9ba06c] remote server not configured\n2025-10-29 05:05:52.785 [error] [command][795328a1-0204-4026-b288-ab063db7624f] Socket error: Error: read ECONNRESET\n2025-10-29 05:05:52.785 [info] [command][795328a1-0204-4026-b288-ab063db7624f] Socket close event received\n2025-10-29 05:05:52.785 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][795328a1-0204-4026-b288-ab063db7624f] Socket closed without exit code\n2025-10-29 05:06:52.795 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:06:52.798 [info] [command][ca315a26-b8a8-418e-a9b9-4e771e31dffa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ca315a26-b8a8-418e-a9b9-4e771e31dffa""}\n2025-10-29 05:06:52.799 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][95883bcf-e0e4-49d4-b49f-c69190ede6d0] remote server not configured\n2025-10-29 05:06:52.799 [error] [command][ca315a26-b8a8-418e-a9b9-4e771e31dffa] Socket error: Error: read ECONNRESET\n2025-10-29 05:06:52.799 [info] [command][ca315a26-b8a8-418e-a9b9-4e771e31dffa] Socket close event received\n2025-10-29 05:06:52.800 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ca315a26-b8a8-418e-a9b9-4e771e31dffa] Socket closed without exit code\n2025-10-29 05:07:52.810 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:07:52.813 [info] [command][bf8edcba-ee64-4c45-953b-913661e4632d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""bf8edcba-ee64-4c45-953b-913661e4632d""}\n2025-10-29 05:07:52.814 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ed191b55-a285-4339-96f7-d7e5ebe7c97e] remote server not configured\n2025-10-29 05:07:52.819 [error] [command][bf8edcba-ee64-4c45-953b-913661e4632d] Socket error: Error: read ECONNRESET\n2025-10-29 05:07:52.821 [info] [command][bf8edcba-ee64-4c45-953b-913661e4632d] Socket close event received\n2025-10-29 05:07:52.821 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][bf8edcba-ee64-4c45-953b-913661e4632d] Socket closed without exit code\n2025-10-29 05:08:52.823 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:08:52.826 [info] [command][0f9b4d19-3dc8-46b5-85e2-f700a19b0955] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0f9b4d19-3dc8-46b5-85e2-f700a19b0955""}\n2025-10-29 05:08:52.827 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3524c531-c2eb-40cd-af14-735f11edaf17] remote server not configured\n2025-10-29 05:08:52.828 [error] [command][0f9b4d19-3dc8-46b5-85e2-f700a19b0955] Socket error: Error: read ECONNRESET\n2025-10-29 05:08:52.828 [info] [command][0f9b4d19-3dc8-46b5-85e2-f700a19b0955] Socket close event received\n2025-10-29 05:08:52.828 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0f9b4d19-3dc8-46b5-85e2-f700a19b0955] Socket closed without exit code\n2025-10-29 05:09:52.838 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:09:52.841 [info] [command][13795b47-24bd-477e-a2cc-4e946861b2b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""13795b47-24bd-477e-a2cc-4e946861b2b4""}\n2025-10-29 05:09:52.841 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][739b4787-35f3-4439-9699-5ef5f4bc9dda] remote server not configured\n2025-10-29 05:09:52.842 [error] [command][13795b47-24bd-477e-a2cc-4e946861b2b4] Socket error: Error: read ECONNRESET\n2025-10-29 05:09:52.842 [info] [command][13795b47-24bd-477e-a2cc-4e946861b2b4] Socket close event received\n2025-10-29 05:09:52.843 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][13795b47-24bd-477e-a2cc-4e946861b2b4] Socket closed without exit code\n2025-10-29 05:10:52.852 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:10:52.856 [info] [command][72b2e1c8-dc73-4092-b0bd-696f37acf996] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""72b2e1c8-dc73-4092-b0bd-696f37acf996""}\n2025-10-29 05:10:52.856 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fb932dba-434d-4dde-a013-5ffeaa61406e] remote server not configured\n2025-10-29 05:10:52.857 [error] [command][72b2e1c8-dc73-4092-b0bd-696f37acf996] Socket error: Error: read ECONNRESET\n2025-10-29 05:10:52.857 [info] [command][72b2e1c8-dc73-4092-b0bd-696f37acf996] Socket close event received\n2025-10-29 05:10:52.858 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][72b2e1c8-dc73-4092-b0bd-696f37acf996] Socket closed without exit code\n2025-10-29 05:11:52.864 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:11:52.867 [info] [command][1afb95ee-60af-40b8-9f1f-a69817239da7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1afb95ee-60af-40b8-9f1f-a69817239da7""}\n2025-10-29 05:11:52.868 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3e482566-4215-4299-ba69-42265251e770] remote server not configured\n2025-10-29 05:11:52.869 [error] [command][1afb95ee-60af-40b8-9f1f-a69817239da7] Socket error: Error: read ECONNRESET\n2025-10-29 05:11:52.869 [info] [command][1afb95ee-60af-40b8-9f1f-a69817239da7] Socket close event received\n2025-10-29 05:11:52.869 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1afb95ee-60af-40b8-9f1f-a69817239da7] Socket closed without exit code\n2025-10-29 05:12:52.876 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:12:52.879 [info] [command][89b38c70-7d9b-43a6-ad1f-ce2f6d1f0792] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""89b38c70-7d9b-43a6-ad1f-ce2f6d1f0792""}\n2025-10-29 05:12:52.880 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7257a901-66a8-49c1-bf39-b8ebae4fd3c8] remote server not configured\n2025-10-29 05:12:52.881 [error] [command][89b38c70-7d9b-43a6-ad1f-ce2f6d1f0792] Socket error: Error: read ECONNRESET\n2025-10-29 05:12:52.881 [info] [command][89b38c70-7d9b-43a6-ad1f-ce2f6d1f0792] Socket close event received\n2025-10-29 05:12:52.881 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][89b38c70-7d9b-43a6-ad1f-ce2f6d1f0792] Socket closed without exit code\n2025-10-29 05:13:52.890 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:13:52.893 [info] [command][3e70eead-a719-40ab-8a82-44a11fc4407d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3e70eead-a719-40ab-8a82-44a11fc4407d""}\n2025-10-29 05:13:52.894 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][74c28338-7478-4cb5-97c0-edd9d62973b8] remote server not configured\n2025-10-29 05:13:52.895 [error] [command][3e70eead-a719-40ab-8a82-44a11fc4407d] Socket error: Error: read ECONNRESET\n2025-10-29 05:13:52.895 [info] [command][3e70eead-a719-40ab-8a82-44a11fc4407d] Socket close event received\n2025-10-29 05:13:52.895 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3e70eead-a719-40ab-8a82-44a11fc4407d] Socket closed without exit code\n2025-10-29 05:14:52.899 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:14:52.902 [info] [command][39b37be5-28d8-4dfe-956c-dec1cac58f25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""39b37be5-28d8-4dfe-956c-dec1cac58f25""}\n2025-10-29 05:14:52.903 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0cac94ca-354a-4742-8a0e-68ec6c94196e] remote server not configured\n2025-10-29 05:14:52.904 [error] [command][39b37be5-28d8-4dfe-956c-dec1cac58f25] Socket error: Error: read ECONNRESET\n2025-10-29 05:14:52.904 [info] [command][39b37be5-28d8-4dfe-956c-dec1cac58f25] Socket close event received\n2025-10-29 05:14:52.905 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][39b37be5-28d8-4dfe-956c-dec1cac58f25] Socket closed without exit code\n2025-10-29 05:15:52.914 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:15:52.916 [info] [command][18457c83-5a9f-4fe5-952c-ca5e7f6b20c5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""18457c83-5a9f-4fe5-952c-ca5e7f6b20c5""}\n2025-10-29 05:15:52.917 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d3d38acf-12e2-4ffd-a571-2cea4eed3eae] remote server not configured\n2025-10-29 05:15:52.918 [error] [command][18457c83-5a9f-4fe5-952c-ca5e7f6b20c5] Socket error: Error: read ECONNRESET\n2025-10-29 05:15:52.918 [info] [command][18457c83-5a9f-4fe5-952c-ca5e7f6b20c5] Socket close event received\n2025-10-29 05:15:52.919 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][18457c83-5a9f-4fe5-952c-ca5e7f6b20c5] Socket closed without exit code\n2025-10-29 05:16:52.929 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:16:52.931 [info] [command][0c8b791b-baea-4583-b93b-b9d34ea38599] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0c8b791b-baea-4583-b93b-b9d34ea38599""}\n2025-10-29 05:16:52.932 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1225ce5c-7430-4f47-9c95-dce1052d80bf] remote server not configured\n2025-10-29 05:16:52.934 [error] [command][0c8b791b-baea-4583-b93b-b9d34ea38599] Socket error: Error: read ECONNRESET\n2025-10-29 05:16:52.935 [info] [command][0c8b791b-baea-4583-b93b-b9d34ea38599] Socket close event received\n2025-10-29 05:16:52.937 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0c8b791b-baea-4583-b93b-b9d34ea38599] Socket closed without exit code\n2025-10-29 05:17:52.946 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:17:52.949 [info] [command][82a88238-087b-4e8d-aa55-716334f5959b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""82a88238-087b-4e8d-aa55-716334f5959b""}\n2025-10-29 05:17:52.950 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fc71e20b-88d3-46f8-b31d-e3e918c7d73e] remote server not configured\n2025-10-29 05:17:52.951 [error] [command][82a88238-087b-4e8d-aa55-716334f5959b] Socket error: Error: read ECONNRESET\n2025-10-29 05:17:52.951 [info] [command][82a88238-087b-4e8d-aa55-716334f5959b] Socket close event received\n2025-10-29 05:17:52.952 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][82a88238-087b-4e8d-aa55-716334f5959b] Socket closed without exit code\n2025-10-29 05:18:52.954 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:18:52.957 [info] [command][ebbb726e-8eaa-4fcd-9b00-22a2de7b9ff8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ebbb726e-8eaa-4fcd-9b00-22a2de7b9ff8""}\n2025-10-29 05:18:52.958 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b581b813-55db-4c03-887f-2767806adf0a] remote server not configured\n2025-10-29 05:18:52.958 [error] [command][ebbb726e-8eaa-4fcd-9b00-22a2de7b9ff8] Socket error: Error: read ECONNRESET\n2025-10-29 05:18:52.959 [info] [command][ebbb726e-8eaa-4fcd-9b00-22a2de7b9ff8] Socket close event received\n2025-10-29 05:18:52.959 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ebbb726e-8eaa-4fcd-9b00-22a2de7b9ff8] Socket closed without exit code\n2025-10-29 05:19:52.963 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:19:52.967 [info] [command][0e92639d-799a-4f47-8e47-907c5b39e788] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0e92639d-799a-4f47-8e47-907c5b39e788""}\n2025-10-29 05:19:52.968 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4024a376-ab89-41b9-bd64-1c7339e79871] remote server not configured\n2025-10-29 05:19:52.969 [error] [command][0e92639d-799a-4f47-8e47-907c5b39e788] Socket error: Error: read ECONNRESET\n2025-10-29 05:19:52.969 [info] [command][0e92639d-799a-4f47-8e47-907c5b39e788] Socket close event received\n2025-10-29 05:19:52.969 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0e92639d-799a-4f47-8e47-907c5b39e788] Socket closed without exit code\n2025-10-29 05:20:52.979 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:20:52.982 [info] [command][0c20d2cb-7cbc-4c06-9cc5-fa4852701057] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0c20d2cb-7cbc-4c06-9cc5-fa4852701057""}\n2025-10-29 05:20:52.983 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ae7b6d3b-c593-4b4f-b8e5-b758fa69ebc0] remote server not configured\n2025-10-29 05:20:52.984 [error] [command][0c20d2cb-7cbc-4c06-9cc5-fa4852701057] Socket error: Error: read ECONNRESET\n2025-10-29 05:20:52.984 [info] [command][0c20d2cb-7cbc-4c06-9cc5-fa4852701057] Socket close event received\n2025-10-29 05:20:52.984 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0c20d2cb-7cbc-4c06-9cc5-fa4852701057] Socket closed without exit code\n2025-10-29 05:21:52.994 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:21:52.997 [info] [command][c872b916-4df7-41e8-84a8-652c54cc7585] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c872b916-4df7-41e8-84a8-652c54cc7585""}\n2025-10-29 05:21:52.998 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f9a6d520-457e-42c9-ba97-b5f63ce78562] remote server not configured\n2025-10-29 05:21:52.998 [error] [command][c872b916-4df7-41e8-84a8-652c54cc7585] Socket error: Error: read ECONNRESET\n2025-10-29 05:21:52.999 [info] [command][c872b916-4df7-41e8-84a8-652c54cc7585] Socket close event received\n2025-10-29 05:21:52.999 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c872b916-4df7-41e8-84a8-652c54cc7585] Socket closed without exit code\n2025-10-29 05:22:53.009 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:22:53.011 [info] [command][dc5d927c-b2d3-482c-bfbd-9261c95ac35a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""dc5d927c-b2d3-482c-bfbd-9261c95ac35a""}\n2025-10-29 05:22:53.012 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][686c5c56-586e-4c12-8484-6c5afe8904b7] remote server not configured\n2025-10-29 05:22:53.013 [error] [command][dc5d927c-b2d3-482c-bfbd-9261c95ac35a] Socket error: Error: read ECONNRESET\n2025-10-29 05:22:53.013 [info] [command][dc5d927c-b2d3-482c-bfbd-9261c95ac35a] Socket close event received\n2025-10-29 05:22:53.013 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][dc5d927c-b2d3-482c-bfbd-9261c95ac35a] Socket closed without exit code\n2025-10-29 05:23:53.016 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:23:53.018 [info] [command][be4540a0-b417-4d1b-bb9a-fc3be9874523] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""be4540a0-b417-4d1b-bb9a-fc3be9874523""}\n2025-10-29 05:23:53.019 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8c40f048-f87e-4638-843c-9286149262da] remote server not configured\n2025-10-29 05:23:53.020 [error] [command][be4540a0-b417-4d1b-bb9a-fc3be9874523] Socket error: Error: read ECONNRESET\n2025-10-29 05:23:53.020 [info] [command][be4540a0-b417-4d1b-bb9a-fc3be9874523] Socket close event received\n2025-10-29 05:23:53.020 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][be4540a0-b417-4d1b-bb9a-fc3be9874523] Socket closed without exit code\n2025-10-29 05:24:53.027 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:24:53.030 [info] [command][f4c3dde6-b339-445a-881c-9bd1ce1d5b0e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f4c3dde6-b339-445a-881c-9bd1ce1d5b0e""}\n2025-10-29 05:24:53.031 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b81811af-4a95-4919-aa1e-1feab19b50f2] remote server not configured\n2025-10-29 05:24:53.032 [error] [command][f4c3dde6-b339-445a-881c-9bd1ce1d5b0e] Socket error: Error: read ECONNRESET\n2025-10-29 05:24:53.033 [info] [command][f4c3dde6-b339-445a-881c-9bd1ce1d5b0e] Socket close event received\n2025-10-29 05:24:53.034 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f4c3dde6-b339-445a-881c-9bd1ce1d5b0e] Socket closed without exit code\n2025-10-29 05:25:53.044 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:25:53.047 [info] [command][8f7fe56f-1bf1-46e8-8794-441c97c7503b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8f7fe56f-1bf1-46e8-8794-441c97c7503b""}\n2025-10-29 05:25:53.047 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6c5a5d57-ef00-4935-8fc4-2de44b45034c] remote server not configured\n2025-10-29 05:25:53.049 [error] [command][8f7fe56f-1bf1-46e8-8794-441c97c7503b] Socket error: Error: read ECONNRESET\n2025-10-29 05:25:53.049 [info] [command][8f7fe56f-1bf1-46e8-8794-441c97c7503b] Socket close event received\n2025-10-29 05:25:53.050 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8f7fe56f-1bf1-46e8-8794-441c97c7503b] Socket closed without exit code\n2025-10-29 05:26:53.059 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:26:53.062 [info] [command][005b80a0-1d28-4e12-ad3e-70282b379498] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""005b80a0-1d28-4e12-ad3e-70282b379498""}\n2025-10-29 05:26:53.063 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][13b7c74d-01e3-4082-ab40-e085789d94ef] remote server not configured\n2025-10-29 05:26:53.064 [error] [command][005b80a0-1d28-4e12-ad3e-70282b379498] Socket error: Error: read ECONNRESET\n2025-10-29 05:26:53.064 [info] [command][005b80a0-1d28-4e12-ad3e-70282b379498] Socket close event received\n2025-10-29 05:26:53.064 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][005b80a0-1d28-4e12-ad3e-70282b379498] Socket closed without exit code\n2025-10-29 05:27:53.074 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:27:53.077 [info] [command][5f1c4bf9-e4fa-4544-a8d5-fb499561c54b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5f1c4bf9-e4fa-4544-a8d5-fb499561c54b""}\n2025-10-29 05:27:53.078 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4a280cb8-3516-409f-ae38-a491398e2c93] remote server not configured\n2025-10-29 05:27:53.078 [error] [command][5f1c4bf9-e4fa-4544-a8d5-fb499561c54b] Socket error: Error: read ECONNRESET\n2025-10-29 05:27:53.078 [info] [command][5f1c4bf9-e4fa-4544-a8d5-fb499561c54b] Socket close event received\n2025-10-29 05:27:53.078 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5f1c4bf9-e4fa-4544-a8d5-fb499561c54b] Socket closed without exit code\n2025-10-29 05:28:53.087 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:28:53.089 [info] [command][4e9b6420-6d16-4781-b82f-15670bb90cba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4e9b6420-6d16-4781-b82f-15670bb90cba""}\n2025-10-29 05:28:53.089 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cab02285-3b92-416a-a156-d151dfbdbd8b] remote server not configured\n2025-10-29 05:28:53.090 [error] [command][4e9b6420-6d16-4781-b82f-15670bb90cba] Socket error: Error: read ECONNRESET\n2025-10-29 05:28:53.090 [info] [command][4e9b6420-6d16-4781-b82f-15670bb90cba] Socket close event received\n2025-10-29 05:28:53.090 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4e9b6420-6d16-4781-b82f-15670bb90cba] Socket closed without exit code\n2025-10-29 05:29:53.100 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:29:53.103 [info] [command][6c4a5a0b-9564-4cd7-ad6d-dbf52837b952] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6c4a5a0b-9564-4cd7-ad6d-dbf52837b952""}\n2025-10-29 05:29:53.104 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][66a92d0b-5ce8-41af-bb78-09fa8d153e62] remote server not configured\n2025-10-29 05:29:53.104 [error] [command][6c4a5a0b-9564-4cd7-ad6d-dbf52837b952] Socket error: Error: read ECONNRESET\n2025-10-29 05:29:53.104 [info] [command][6c4a5a0b-9564-4cd7-ad6d-dbf52837b952] Socket close event received\n2025-10-29 05:29:53.105 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6c4a5a0b-9564-4cd7-ad6d-dbf52837b952] Socket closed without exit code\n2025-10-29 05:30:53.111 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:30:53.113 [info] [command][c814b985-9c4a-4b2c-aa41-2fc00aba1ca4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c814b985-9c4a-4b2c-aa41-2fc00aba1ca4""}\n2025-10-29 05:30:53.113 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d999e977-8126-4f22-8ddb-9a81c616ad73] remote server not configured\n2025-10-29 05:30:53.114 [error] [command][c814b985-9c4a-4b2c-aa41-2fc00aba1ca4] Socket error: Error: read ECONNRESET\n2025-10-29 05:30:53.115 [info] [command][c814b985-9c4a-4b2c-aa41-2fc00aba1ca4] Socket close event received\n2025-10-29 05:30:53.115 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c814b985-9c4a-4b2c-aa41-2fc00aba1ca4] Socket closed without exit code\n2025-10-29 05:31:53.123 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:31:53.126 [info] [command][9fa4df6a-9918-4555-b790-757e3351d4ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9fa4df6a-9918-4555-b790-757e3351d4ea""}\n2025-10-29 05:31:53.126 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][19ae5cbf-fa9c-49bc-9f83-b9a8a55b2003] remote server not configured\n2025-10-29 05:31:53.127 [error] [command][9fa4df6a-9918-4555-b790-757e3351d4ea] Socket error: Error: read ECONNRESET\n2025-10-29 05:31:53.127 [info] [command][9fa4df6a-9918-4555-b790-757e3351d4ea] Socket close event received\n2025-10-29 05:31:53.128 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9fa4df6a-9918-4555-b790-757e3351d4ea] Socket closed without exit code\n2025-10-29 05:32:53.132 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:32:53.135 [info] [command][661cc033-4251-4b8f-ab05-ec2d7514245c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""661cc033-4251-4b8f-ab05-ec2d7514245c""}\n2025-10-29 05:32:53.136 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][57a422f3-ecf7-450e-a4d4-3bae01e9317b] remote server not configured\n2025-10-29 05:32:53.136 [error] [command][661cc033-4251-4b8f-ab05-ec2d7514245c] Socket error: Error: read ECONNRESET\n2025-10-29 05:32:53.137 [info] [command][661cc033-4251-4b8f-ab05-ec2d7514245c] Socket close event received\n2025-10-29 05:32:53.137 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][661cc033-4251-4b8f-ab05-ec2d7514245c] Socket closed without exit code\n2025-10-29 05:33:53.147 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:33:53.150 [info] [command][ea4fdd69-057a-4b8e-a6be-b25f3ee1fcd9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ea4fdd69-057a-4b8e-a6be-b25f3ee1fcd9""}\n2025-10-29 05:33:53.151 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][07b17b74-d886-45bb-8d2a-e10d1d8cbd42] remote server not configured\n2025-10-29 05:33:53.151 [error] [command][ea4fdd69-057a-4b8e-a6be-b25f3ee1fcd9] Socket error: Error: read ECONNRESET\n2025-10-29 05:33:53.151 [info] [command][ea4fdd69-057a-4b8e-a6be-b25f3ee1fcd9] Socket close event received\n2025-10-29 05:33:53.152 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ea4fdd69-057a-4b8e-a6be-b25f3ee1fcd9] Socket closed without exit code\n2025-10-29 05:34:53.153 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:34:53.156 [info] [command][71fc99dd-387d-4d6d-8884-973f9bac3164] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""71fc99dd-387d-4d6d-8884-973f9bac3164""}\n2025-10-29 05:34:53.157 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6077bea6-f638-486e-ad56-435f05664498] remote server not configured\n2025-10-29 05:34:53.157 [error] [command][71fc99dd-387d-4d6d-8884-973f9bac3164] Socket error: Error: read ECONNRESET\n2025-10-29 05:34:53.158 [info] [command][71fc99dd-387d-4d6d-8884-973f9bac3164] Socket close event received\n2025-10-29 05:34:53.158 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][71fc99dd-387d-4d6d-8884-973f9bac3164] Socket closed without exit code\n2025-10-29 05:35:53.159 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:35:53.162 [info] [command][1bd12ba7-1d1a-4b5b-988d-fd988c63e64d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1bd12ba7-1d1a-4b5b-988d-fd988c63e64d""}\n2025-10-29 05:35:53.163 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8382d919-0177-4677-84c6-18028c519a19] remote server not configured\n2025-10-29 05:35:53.163 [error] [command][1bd12ba7-1d1a-4b5b-988d-fd988c63e64d] Socket error: Error: read ECONNRESET\n2025-10-29 05:35:53.163 [info] [command][1bd12ba7-1d1a-4b5b-988d-fd988c63e64d] Socket close event received\n2025-10-29 05:35:53.164 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1bd12ba7-1d1a-4b5b-988d-fd988c63e64d] Socket closed without exit code\n2025-10-29 05:36:53.166 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:36:53.169 [info] [command][888379af-5141-48be-9a3a-4d5fe9667c1d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""888379af-5141-48be-9a3a-4d5fe9667c1d""}\n2025-10-29 05:36:53.170 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][72025fa6-ae6c-44ab-8b33-b03b2f7d2bc3] remote server not configured\n2025-10-29 05:36:53.170 [error] [command][888379af-5141-48be-9a3a-4d5fe9667c1d] Socket error: Error: read ECONNRESET\n2025-10-29 05:36:53.171 [info] [command][888379af-5141-48be-9a3a-4d5fe9667c1d] Socket close event received\n2025-10-29 05:36:53.171 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][888379af-5141-48be-9a3a-4d5fe9667c1d] Socket closed without exit code\n2025-10-29 05:37:53.181 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:37:53.184 [info] [command][fbb6156a-0ee6-4b69-b726-d1d1ff9e6ebd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fbb6156a-0ee6-4b69-b726-d1d1ff9e6ebd""}\n2025-10-29 05:37:53.185 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c28c1781-99a6-420d-ab31-7927d5328fe2] remote server not configured\n2025-10-29 05:37:53.185 [error] [command][fbb6156a-0ee6-4b69-b726-d1d1ff9e6ebd] Socket error: Error: read ECONNRESET\n2025-10-29 05:37:53.185 [info] [command][fbb6156a-0ee6-4b69-b726-d1d1ff9e6ebd] Socket close event received\n2025-10-29 05:37:53.186 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fbb6156a-0ee6-4b69-b726-d1d1ff9e6ebd] Socket closed without exit code\n2025-10-29 05:38:53.187 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:38:53.190 [info] [command][98fab98a-25d0-4a20-abca-310cd75f381c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""98fab98a-25d0-4a20-abca-310cd75f381c""}\n2025-10-29 05:38:53.191 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e6dc5d93-1a69-401e-b09f-52bd89f4ccf6] remote server not configured\n2025-10-29 05:38:53.192 [error] [command][98fab98a-25d0-4a20-abca-310cd75f381c] Socket error: Error: read ECONNRESET\n2025-10-29 05:38:53.192 [info] [command][98fab98a-25d0-4a20-abca-310cd75f381c] Socket close event received\n2025-10-29 05:38:53.192 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][98fab98a-25d0-4a20-abca-310cd75f381c] Socket closed without exit code\n2025-10-29 05:39:53.202 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:39:53.205 [info] [command][0ee8ea9e-ecc6-4042-a799-2b6573eec0d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0ee8ea9e-ecc6-4042-a799-2b6573eec0d5""}\n2025-10-29 05:39:53.206 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4b44a456-4edc-44b6-bcf4-7c2a1dd205bc] remote server not configured\n2025-10-29 05:39:53.207 [error] [command][0ee8ea9e-ecc6-4042-a799-2b6573eec0d5] Socket error: Error: read ECONNRESET\n2025-10-29 05:39:53.207 [info] [command][0ee8ea9e-ecc6-4042-a799-2b6573eec0d5] Socket close event received\n2025-10-29 05:39:53.207 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0ee8ea9e-ecc6-4042-a799-2b6573eec0d5] Socket closed without exit code\n2025-10-29 05:40:53.212 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:40:53.215 [info] [command][48c478dd-7131-4aeb-98f0-3bde84a5c2d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""48c478dd-7131-4aeb-98f0-3bde84a5c2d8""}\n2025-10-29 05:40:53.215 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][068d8503-a8a9-4931-b385-04d58044a0d4] remote server not configured\n2025-10-29 05:40:53.216 [error] [command][48c478dd-7131-4aeb-98f0-3bde84a5c2d8] Socket error: Error: read ECONNRESET\n2025-10-29 05:40:53.216 [info] [command][48c478dd-7131-4aeb-98f0-3bde84a5c2d8] Socket close event received\n2025-10-29 05:40:53.217 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][48c478dd-7131-4aeb-98f0-3bde84a5c2d8] Socket closed without exit code\n2025-10-29 05:41:53.225 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:41:53.229 [info] [command][310b214c-0343-4881-bfd1-93dd5f921290] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""310b214c-0343-4881-bfd1-93dd5f921290""}\n2025-10-29 05:41:53.229 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6f7cbc41-bbdb-413d-aab5-19dcf16d7015] remote server not configured\n2025-10-29 05:41:53.230 [error] [command][310b214c-0343-4881-bfd1-93dd5f921290] Socket error: Error: read ECONNRESET\n2025-10-29 05:41:53.230 [info] [command][310b214c-0343-4881-bfd1-93dd5f921290] Socket close event received\n2025-10-29 05:41:53.230 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][310b214c-0343-4881-bfd1-93dd5f921290] Socket closed without exit code\n2025-10-29 05:42:53.235 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:42:53.238 [info] [command][f16edf24-4654-4c19-8afb-2661d7af7cad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f16edf24-4654-4c19-8afb-2661d7af7cad""}\n2025-10-29 05:42:53.239 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f0f95030-e887-4d83-bae9-d12a6dfaa0d8] remote server not configured\n2025-10-29 05:42:53.240 [error] [command][f16edf24-4654-4c19-8afb-2661d7af7cad] Socket error: Error: read ECONNRESET\n2025-10-29 05:42:53.240 [info] [command][f16edf24-4654-4c19-8afb-2661d7af7cad] Socket close event received\n2025-10-29 05:42:53.240 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f16edf24-4654-4c19-8afb-2661d7af7cad] Socket closed without exit code\n2025-10-29 05:43:53.245 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:43:53.247 [info] [command][b7aafd5d-dbdb-4ae1-a290-2847ce7f8a7d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b7aafd5d-dbdb-4ae1-a290-2847ce7f8a7d""}\n2025-10-29 05:43:53.248 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][78b186fb-ee51-4196-982a-78ccda70bc4d] remote server not configured\n2025-10-29 05:43:53.248 [error] [command][b7aafd5d-dbdb-4ae1-a290-2847ce7f8a7d] Socket error: Error: read ECONNRESET\n2025-10-29 05:43:53.248 [info] [command][b7aafd5d-dbdb-4ae1-a290-2847ce7f8a7d] Socket close event received\n2025-10-29 05:43:53.249 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b7aafd5d-dbdb-4ae1-a290-2847ce7f8a7d] Socket closed without exit code\n2025-10-29 05:44:53.254 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:44:53.257 [info] [command][63dbdcea-a6c4-4bb1-a7ef-63c2eb5fbcd8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""63dbdcea-a6c4-4bb1-a7ef-63c2eb5fbcd8""}\n2025-10-29 05:44:53.258 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][21f4ffff-a6f3-4b6f-8e81-ea5596f5759d] remote server not configured\n2025-10-29 05:44:53.259 [error] [command][63dbdcea-a6c4-4bb1-a7ef-63c2eb5fbcd8] Socket error: Error: read ECONNRESET\n2025-10-29 05:44:53.259 [info] [command][63dbdcea-a6c4-4bb1-a7ef-63c2eb5fbcd8] Socket close event received\n2025-10-29 05:44:53.259 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][63dbdcea-a6c4-4bb1-a7ef-63c2eb5fbcd8] Socket closed without exit code\n2025-10-29 05:45:53.267 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:45:53.269 [info] [command][95044c34-8f62-4ec3-9603-24a17574123f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""95044c34-8f62-4ec3-9603-24a17574123f""}\n2025-10-29 05:45:53.270 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][533a7ac6-1c54-4c32-b405-adee4facbb98] remote server not configured\n2025-10-29 05:45:53.270 [error] [command][95044c34-8f62-4ec3-9603-24a17574123f] Socket error: Error: read ECONNRESET\n2025-10-29 05:45:53.271 [info] [command][95044c34-8f62-4ec3-9603-24a17574123f] Socket close event received\n2025-10-29 05:45:53.271 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][95044c34-8f62-4ec3-9603-24a17574123f] Socket closed without exit code\n2025-10-29 05:46:53.281 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:46:53.284 [info] [command][55163916-e223-4439-b85d-56f1b95032c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""55163916-e223-4439-b85d-56f1b95032c4""}\n2025-10-29 05:46:53.284 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][41ae6d6c-c4a9-45d0-b4f4-1c00705d9ed3] remote server not configured\n2025-10-29 05:46:53.285 [error] [command][55163916-e223-4439-b85d-56f1b95032c4] Socket error: Error: read ECONNRESET\n2025-10-29 05:46:53.285 [info] [command][55163916-e223-4439-b85d-56f1b95032c4] Socket close event received\n2025-10-29 05:46:53.286 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][55163916-e223-4439-b85d-56f1b95032c4] Socket closed without exit code\n2025-10-29 05:47:53.295 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:47:53.296 [info] [command][e7137b70-7e88-47a1-b069-8e46e5bcfe31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e7137b70-7e88-47a1-b069-8e46e5bcfe31""}\n2025-10-29 05:47:53.297 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b770017e-4f92-4c85-93ca-4535ccd42b20] remote server not configured\n2025-10-29 05:47:53.298 [error] [command][e7137b70-7e88-47a1-b069-8e46e5bcfe31] Socket error: Error: read ECONNRESET\n2025-10-29 05:47:53.298 [info] [command][e7137b70-7e88-47a1-b069-8e46e5bcfe31] Socket close event received\n2025-10-29 05:47:53.298 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e7137b70-7e88-47a1-b069-8e46e5bcfe31] Socket closed without exit code\n2025-10-29 05:48:53.307 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:48:53.309 [info] [command][cd3c26fb-b8ca-4ea5-b21b-b84bf20d6848] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cd3c26fb-b8ca-4ea5-b21b-b84bf20d6848""}\n2025-10-29 05:48:53.309 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a3729cf8-0781-436c-8261-62d0dbecc405] remote server not configured\n2025-10-29 05:48:53.310 [error] [command][cd3c26fb-b8ca-4ea5-b21b-b84bf20d6848] Socket error: Error: read ECONNRESET\n2025-10-29 05:48:53.311 [info] [command][cd3c26fb-b8ca-4ea5-b21b-b84bf20d6848] Socket close event received\n2025-10-29 05:48:53.311 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cd3c26fb-b8ca-4ea5-b21b-b84bf20d6848] Socket closed without exit code\n2025-10-29 05:49:53.320 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:49:53.323 [info] [command][ffa53e8f-59f3-4693-a2b4-23de479d58f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ffa53e8f-59f3-4693-a2b4-23de479d58f8""}\n2025-10-29 05:49:53.324 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f5912aeb-a0e5-44ae-b51c-6375394c769e] remote server not configured\n2025-10-29 05:49:53.324 [error] [command][ffa53e8f-59f3-4693-a2b4-23de479d58f8] Socket error: Error: read ECONNRESET\n2025-10-29 05:49:53.325 [info] [command][ffa53e8f-59f3-4693-a2b4-23de479d58f8] Socket close event received\n2025-10-29 05:49:53.325 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ffa53e8f-59f3-4693-a2b4-23de479d58f8] Socket closed without exit code\n2025-10-29 05:50:53.327 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:50:53.330 [info] [command][fd6e8869-a722-4b3a-8e87-b0cc1a0203ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fd6e8869-a722-4b3a-8e87-b0cc1a0203ab""}\n2025-10-29 05:50:53.331 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d66b0c88-e4ab-4c97-807d-de05cff42623] remote server not configured\n2025-10-29 05:50:53.332 [error] [command][fd6e8869-a722-4b3a-8e87-b0cc1a0203ab] Socket error: Error: read ECONNRESET\n2025-10-29 05:50:53.332 [info] [command][fd6e8869-a722-4b3a-8e87-b0cc1a0203ab] Socket close event received\n2025-10-29 05:50:53.332 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fd6e8869-a722-4b3a-8e87-b0cc1a0203ab] Socket closed without exit code\n2025-10-29 05:51:53.339 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:51:53.341 [info] [command][3870f9ad-e356-4460-a8fb-dc55f6b1e963] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3870f9ad-e356-4460-a8fb-dc55f6b1e963""}\n2025-10-29 05:51:53.342 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][27c50205-e51b-40ea-bcf8-7cd7eb451b71] remote server not configured\n2025-10-29 05:51:53.342 [error] [command][3870f9ad-e356-4460-a8fb-dc55f6b1e963] Socket error: Error: read ECONNRESET\n2025-10-29 05:51:53.342 [info] [command][3870f9ad-e356-4460-a8fb-dc55f6b1e963] Socket close event received\n2025-10-29 05:51:53.343 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3870f9ad-e356-4460-a8fb-dc55f6b1e963] Socket closed without exit code\n2025-10-29 05:52:53.352 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:52:53.354 [info] [command][8ca0f017-3a57-42f0-91cb-1bb291e5b7b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8ca0f017-3a57-42f0-91cb-1bb291e5b7b4""}\n2025-10-29 05:52:53.355 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e5392703-be1d-4aa9-8497-18217792e6d7] remote server not configured\n2025-10-29 05:52:53.355 [error] [command][8ca0f017-3a57-42f0-91cb-1bb291e5b7b4] Socket error: Error: read ECONNRESET\n2025-10-29 05:52:53.355 [info] [command][8ca0f017-3a57-42f0-91cb-1bb291e5b7b4] Socket close event received\n2025-10-29 05:52:53.355 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8ca0f017-3a57-42f0-91cb-1bb291e5b7b4] Socket closed without exit code\n2025-10-29 05:53:53.361 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:53:53.365 [info] [command][801667c8-ce33-4573-9525-1953a5e03d09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""801667c8-ce33-4573-9525-1953a5e03d09""}\n2025-10-29 05:53:53.365 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][daf16c5c-413c-4b00-a865-d776c22d9b8c] remote server not configured\n2025-10-29 05:53:53.366 [error] [command][801667c8-ce33-4573-9525-1953a5e03d09] Socket error: Error: read ECONNRESET\n2025-10-29 05:53:53.366 [info] [command][801667c8-ce33-4573-9525-1953a5e03d09] Socket close event received\n2025-10-29 05:53:53.366 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][801667c8-ce33-4573-9525-1953a5e03d09] Socket closed without exit code\n2025-10-29 05:54:53.374 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:54:53.377 [info] [command][ce9c6bfd-4a57-4b36-bba4-d84882338185] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ce9c6bfd-4a57-4b36-bba4-d84882338185""}\n2025-10-29 05:54:53.378 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1cdbe3be-0800-4ef1-9c66-84fe65c75f28] remote server not configured\n2025-10-29 05:54:53.378 [error] [command][ce9c6bfd-4a57-4b36-bba4-d84882338185] Socket error: Error: read ECONNRESET\n2025-10-29 05:54:53.379 [info] [command][ce9c6bfd-4a57-4b36-bba4-d84882338185] Socket close event received\n2025-10-29 05:54:53.379 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ce9c6bfd-4a57-4b36-bba4-d84882338185] Socket closed without exit code\n2025-10-29 05:55:53.389 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:55:53.392 [info] [command][0a390c96-cc4d-45a1-bf24-83f7bafdde00] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0a390c96-cc4d-45a1-bf24-83f7bafdde00""}\n2025-10-29 05:55:53.392 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][faf7d2c5-27d6-4ed2-961f-efcb715ed8af] remote server not configured\n2025-10-29 05:55:53.393 [error] [command][0a390c96-cc4d-45a1-bf24-83f7bafdde00] Socket error: Error: read ECONNRESET\n2025-10-29 05:55:53.393 [info] [command][0a390c96-cc4d-45a1-bf24-83f7bafdde00] Socket close event received\n2025-10-29 05:55:53.393 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0a390c96-cc4d-45a1-bf24-83f7bafdde00] Socket closed without exit code\n2025-10-29 05:56:53.403 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:56:53.407 [info] [command][b83bdfeb-e9bc-4d20-bd87-5d25336a948a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b83bdfeb-e9bc-4d20-bd87-5d25336a948a""}\n2025-10-29 05:56:53.407 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][8a7fb686-0211-4bff-ba89-c3ef2f457c55] remote server not configured\n2025-10-29 05:56:53.408 [error] [command][b83bdfeb-e9bc-4d20-bd87-5d25336a948a] Socket error: Error: read ECONNRESET\n2025-10-29 05:56:53.408 [info] [command][b83bdfeb-e9bc-4d20-bd87-5d25336a948a] Socket close event received\n2025-10-29 05:56:53.408 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b83bdfeb-e9bc-4d20-bd87-5d25336a948a] Socket closed without exit code\n2025-10-29 05:57:53.456 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:57:53.459 [info] [command][5a366e67-e427-49d7-bc73-6e58ff589572] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5a366e67-e427-49d7-bc73-6e58ff589572""}\n2025-10-29 05:57:53.459 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][40bdafb8-d797-4e0c-ad7f-d05ad30f030a] remote server not configured\n2025-10-29 05:57:53.460 [error] [command][5a366e67-e427-49d7-bc73-6e58ff589572] Socket error: Error: read ECONNRESET\n2025-10-29 05:57:53.460 [info] [command][5a366e67-e427-49d7-bc73-6e58ff589572] Socket close event received\n2025-10-29 05:57:53.460 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5a366e67-e427-49d7-bc73-6e58ff589572] Socket closed without exit code\n2025-10-29 05:58:53.473 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:58:53.475 [info] [command][b63a934c-152d-421a-bb8d-7f98c07dac26] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b63a934c-152d-421a-bb8d-7f98c07dac26""}\n2025-10-29 05:58:53.475 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][33baaed8-0d0f-4abe-8cd7-375dfd1c0730] remote server not configured\n2025-10-29 05:58:53.476 [error] [command][b63a934c-152d-421a-bb8d-7f98c07dac26] Socket error: Error: read ECONNRESET\n2025-10-29 05:58:53.476 [info] [command][b63a934c-152d-421a-bb8d-7f98c07dac26] Socket close event received\n2025-10-29 05:58:53.476 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b63a934c-152d-421a-bb8d-7f98c07dac26] Socket closed without exit code\n2025-10-29 05:59:53.487 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 05:59:53.488 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][aa3c3ae8-dee5-45a1-a7d8-32daa6e3cf08] remote server not configured\n2025-10-29 05:59:53.488 [info] [command][99b6ffbd-a5bf-4f47-b7ee-8f57e1d9eb66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""99b6ffbd-a5bf-4f47-b7ee-8f57e1d9eb66""}\n2025-10-29 05:59:53.489 [error] [command][99b6ffbd-a5bf-4f47-b7ee-8f57e1d9eb66] Socket error: Error: read ECONNRESET\n2025-10-29 05:59:53.489 [info] [command][99b6ffbd-a5bf-4f47-b7ee-8f57e1d9eb66] Socket close event received\n2025-10-29 05:59:53.489 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][99b6ffbd-a5bf-4f47-b7ee-8f57e1d9eb66] Socket closed without exit code\n2025-10-29 06:00:53.495 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:00:53.497 [info] [command][ac55e5e3-2801-4d6a-b108-e2ad97f6df2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ac55e5e3-2801-4d6a-b108-e2ad97f6df2b""}\n2025-10-29 06:00:53.498 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d11580f0-0187-4443-ae1a-bcbcd0332334] remote server not configured\n2025-10-29 06:00:53.499 [error] [command][ac55e5e3-2801-4d6a-b108-e2ad97f6df2b] Socket error: Error: read ECONNRESET\n2025-10-29 06:00:53.499 [info] [command][ac55e5e3-2801-4d6a-b108-e2ad97f6df2b] Socket close event received\n2025-10-29 06:00:53.499 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ac55e5e3-2801-4d6a-b108-e2ad97f6df2b] Socket closed without exit code\n2025-10-29 06:01:53.509 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:01:53.512 [info] [command][a3c0eb9d-ac9f-4cf1-bfe6-c04718b91f1f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a3c0eb9d-ac9f-4cf1-bfe6-c04718b91f1f""}\n2025-10-29 06:01:53.513 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0015a826-bd64-4d6f-bacb-9d5a9bd8532d] remote server not configured\n2025-10-29 06:01:53.513 [error] [command][a3c0eb9d-ac9f-4cf1-bfe6-c04718b91f1f] Socket error: Error: read ECONNRESET\n2025-10-29 06:01:53.513 [info] [command][a3c0eb9d-ac9f-4cf1-bfe6-c04718b91f1f] Socket close event received\n2025-10-29 06:01:53.514 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a3c0eb9d-ac9f-4cf1-bfe6-c04718b91f1f] Socket closed without exit code\n2025-10-29 06:02:53.525 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:02:53.528 [info] [command][29d4a810-1b28-4c98-8915-03cf45b75918] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""29d4a810-1b28-4c98-8915-03cf45b75918""}\n2025-10-29 06:02:53.529 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dfa20f8f-84e4-4a67-94c1-5a8c683c6c8e] remote server not configured\n2025-10-29 06:02:53.530 [error] [command][29d4a810-1b28-4c98-8915-03cf45b75918] Socket error: Error: read ECONNRESET\n2025-10-29 06:02:53.531 [info] [command][29d4a810-1b28-4c98-8915-03cf45b75918] Socket close event received\n2025-10-29 06:02:53.532 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][29d4a810-1b28-4c98-8915-03cf45b75918] Socket closed without exit code\n2025-10-29 06:03:53.541 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:03:53.543 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f7072e44-27c0-42f3-a792-aa4ea919e25b] remote server not configured\n2025-10-29 06:03:53.543 [info] [command][42f004ad-f36f-423e-843f-17677e60d6d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""42f004ad-f36f-423e-843f-17677e60d6d1""}\n2025-10-29 06:03:53.544 [error] [command][42f004ad-f36f-423e-843f-17677e60d6d1] Socket error: Error: read ECONNRESET\n2025-10-29 06:03:53.544 [info] [command][42f004ad-f36f-423e-843f-17677e60d6d1] Socket close event received\n2025-10-29 06:03:53.545 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][42f004ad-f36f-423e-843f-17677e60d6d1] Socket closed without exit code\n2025-10-29 06:04:53.545 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:04:53.548 [info] [command][abbdcf8d-1476-44c0-aaaa-5082271fb626] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""abbdcf8d-1476-44c0-aaaa-5082271fb626""}\n2025-10-29 06:04:53.548 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][258a69c5-e64e-4010-80e4-00c441dc28da] remote server not configured\n2025-10-29 06:04:53.549 [error] [command][abbdcf8d-1476-44c0-aaaa-5082271fb626] Socket error: Error: read ECONNRESET\n2025-10-29 06:04:53.549 [info] [command][abbdcf8d-1476-44c0-aaaa-5082271fb626] Socket close event received\n2025-10-29 06:04:53.550 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][abbdcf8d-1476-44c0-aaaa-5082271fb626] Socket closed without exit code\n2025-10-29 06:05:53.558 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:05:53.560 [info] [command][58793509-d8d3-4de7-982d-261b30b6edea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""58793509-d8d3-4de7-982d-261b30b6edea""}\n2025-10-29 06:05:53.561 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d89773c1-e373-4f66-876a-971227207e23] remote server not configured\n2025-10-29 06:05:53.561 [error] [command][58793509-d8d3-4de7-982d-261b30b6edea] Socket error: Error: read ECONNRESET\n2025-10-29 06:05:53.561 [info] [command][58793509-d8d3-4de7-982d-261b30b6edea] Socket close event received\n2025-10-29 06:05:53.562 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][58793509-d8d3-4de7-982d-261b30b6edea] Socket closed without exit code\n2025-10-29 06:06:53.563 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:06:53.566 [info] [command][4ec102da-b664-4b86-85b7-867fa2519825] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4ec102da-b664-4b86-85b7-867fa2519825""}\n2025-10-29 06:06:53.567 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][00e96bb4-d695-4d4f-940d-55755792028c] remote server not configured\n2025-10-29 06:06:53.568 [error] [command][4ec102da-b664-4b86-85b7-867fa2519825] Socket error: Error: read ECONNRESET\n2025-10-29 06:06:53.568 [info] [command][4ec102da-b664-4b86-85b7-867fa2519825] Socket close event received\n2025-10-29 06:06:53.568 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4ec102da-b664-4b86-85b7-867fa2519825] Socket closed without exit code\n2025-10-29 06:07:53.578 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:07:53.581 [info] [command][191254a3-0730-4c53-a975-f43b7f744617] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""191254a3-0730-4c53-a975-f43b7f744617""}\n2025-10-29 06:07:53.581 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][57738809-6ec0-4c76-9e66-3dc0e6d31bda] remote server not configured\n2025-10-29 06:07:53.582 [error] [command][191254a3-0730-4c53-a975-f43b7f744617] Socket error: Error: read ECONNRESET\n2025-10-29 06:07:53.582 [info] [command][191254a3-0730-4c53-a975-f43b7f744617] Socket close event received\n2025-10-29 06:07:53.582 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][191254a3-0730-4c53-a975-f43b7f744617] Socket closed without exit code\n2025-10-29 06:08:53.592 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:08:53.594 [info] [command][73624eca-97bb-4f3d-8ddf-ae321a75d668] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""73624eca-97bb-4f3d-8ddf-ae321a75d668""}\n2025-10-29 06:08:53.594 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][de9a32b8-0d6a-4388-819f-aa5cc6fa3fec] remote server not configured\n2025-10-29 06:08:53.594 [error] [command][73624eca-97bb-4f3d-8ddf-ae321a75d668] Socket error: Error: read ECONNRESET\n2025-10-29 06:08:53.595 [info] [command][73624eca-97bb-4f3d-8ddf-ae321a75d668] Socket close event received\n2025-10-29 06:08:53.595 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][73624eca-97bb-4f3d-8ddf-ae321a75d668] Socket closed without exit code\n2025-10-29 06:09:53.605 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:09:53.607 [info] [command][6a80e836-9413-46de-8c20-05c5675fc029] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6a80e836-9413-46de-8c20-05c5675fc029""}\n2025-10-29 06:09:53.608 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][83bf25ba-c05f-412e-a0cd-ac5147ef835c] remote server not configured\n2025-10-29 06:09:53.608 [error] [command][6a80e836-9413-46de-8c20-05c5675fc029] Socket error: Error: read ECONNRESET\n2025-10-29 06:09:53.608 [info] [command][6a80e836-9413-46de-8c20-05c5675fc029] Socket close event received\n2025-10-29 06:09:53.609 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6a80e836-9413-46de-8c20-05c5675fc029] Socket closed without exit code\n2025-10-29 06:10:53.619 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:10:53.622 [info] [command][d6153279-de1e-4800-b55a-f53e68176af5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d6153279-de1e-4800-b55a-f53e68176af5""}\n2025-10-29 06:10:53.622 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6df8f037-e356-4c5e-81d2-29a3bd35fc64] remote server not configured\n2025-10-29 06:10:53.623 [error] [command][d6153279-de1e-4800-b55a-f53e68176af5] Socket error: Error: read ECONNRESET\n2025-10-29 06:10:53.624 [info] [command][d6153279-de1e-4800-b55a-f53e68176af5] Socket close event received\n2025-10-29 06:10:53.624 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d6153279-de1e-4800-b55a-f53e68176af5] Socket closed without exit code\n2025-10-29 06:11:53.635 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:11:53.637 [info] [command][404414f4-0e9c-4e01-8950-8b9f37eedce4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""404414f4-0e9c-4e01-8950-8b9f37eedce4""}\n2025-10-29 06:11:53.638 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1f0b102b-1b17-47c4-90ed-9e2dc175f9c3] remote server not configured\n2025-10-29 06:11:53.638 [error] [command][404414f4-0e9c-4e01-8950-8b9f37eedce4] Socket error: Error: read ECONNRESET\n2025-10-29 06:11:53.639 [info] [command][404414f4-0e9c-4e01-8950-8b9f37eedce4] Socket close event received\n2025-10-29 06:11:53.639 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][404414f4-0e9c-4e01-8950-8b9f37eedce4] Socket closed without exit code\n2025-10-29 06:12:53.646 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:12:53.649 [info] [command][1cd97ede-a3cd-4771-8e0e-95e1a258fec9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1cd97ede-a3cd-4771-8e0e-95e1a258fec9""}\n2025-10-29 06:12:53.650 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ade2c231-9191-4257-b7a5-8926bec0dfac] remote server not configured\n2025-10-29 06:12:53.651 [error] [command][1cd97ede-a3cd-4771-8e0e-95e1a258fec9] Socket error: Error: read ECONNRESET\n2025-10-29 06:12:53.651 [info] [command][1cd97ede-a3cd-4771-8e0e-95e1a258fec9] Socket close event received\n2025-10-29 06:12:53.652 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1cd97ede-a3cd-4771-8e0e-95e1a258fec9] Socket closed without exit code\n2025-10-29 06:13:53.657 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:13:53.660 [info] [command][ad278424-cc22-4e9d-ba4c-12575909acd8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ad278424-cc22-4e9d-ba4c-12575909acd8""}\n2025-10-29 06:13:53.660 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][81394080-233f-4ad6-b982-0ac93bfee462] remote server not configured\n2025-10-29 06:13:53.661 [error] [command][ad278424-cc22-4e9d-ba4c-12575909acd8] Socket error: Error: read ECONNRESET\n2025-10-29 06:13:53.661 [info] [command][ad278424-cc22-4e9d-ba4c-12575909acd8] Socket close event received\n2025-10-29 06:13:53.661 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ad278424-cc22-4e9d-ba4c-12575909acd8] Socket closed without exit code\n2025-10-29 06:14:53.662 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:14:53.666 [info] [command][5d162b2d-cdaa-4667-a5c9-b6a5e4c61bab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5d162b2d-cdaa-4667-a5c9-b6a5e4c61bab""}\n2025-10-29 06:14:53.666 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ff95ae3c-2808-4cd2-9c9e-960e10406565] remote server not configured\n2025-10-29 06:14:53.667 [error] [command][5d162b2d-cdaa-4667-a5c9-b6a5e4c61bab] Socket error: Error: read ECONNRESET\n2025-10-29 06:14:53.668 [info] [command][5d162b2d-cdaa-4667-a5c9-b6a5e4c61bab] Socket close event received\n2025-10-29 06:14:53.668 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5d162b2d-cdaa-4667-a5c9-b6a5e4c61bab] Socket closed without exit code\n2025-10-29 06:15:53.678 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:15:53.681 [info] [command][2dcd3629-9dc8-4340-b21a-d501e313fefd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2dcd3629-9dc8-4340-b21a-d501e313fefd""}\n2025-10-29 06:15:53.682 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f1ee77a4-d887-485d-a907-e56aa190720d] remote server not configured\n2025-10-29 06:15:53.682 [error] [command][2dcd3629-9dc8-4340-b21a-d501e313fefd] Socket error: Error: read ECONNRESET\n2025-10-29 06:15:53.682 [info] [command][2dcd3629-9dc8-4340-b21a-d501e313fefd] Socket close event received\n2025-10-29 06:15:53.682 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2dcd3629-9dc8-4340-b21a-d501e313fefd] Socket closed without exit code\n2025-10-29 06:16:53.688 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:16:53.691 [info] [command][5ed824be-de4f-4396-adc5-129408041d76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5ed824be-de4f-4396-adc5-129408041d76""}\n2025-10-29 06:16:53.692 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][723f3e8a-c546-4e49-8d4d-844782a3305a] remote server not configured\n2025-10-29 06:16:53.693 [error] [command][5ed824be-de4f-4396-adc5-129408041d76] Socket error: Error: read ECONNRESET\n2025-10-29 06:16:53.693 [info] [command][5ed824be-de4f-4396-adc5-129408041d76] Socket close event received\n2025-10-29 06:16:53.693 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5ed824be-de4f-4396-adc5-129408041d76] Socket closed without exit code\n2025-10-29 06:17:53.699 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:17:53.701 [info] [command][2c9ca75d-24a8-440b-9ff1-f4353e0abf61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2c9ca75d-24a8-440b-9ff1-f4353e0abf61""}\n2025-10-29 06:17:53.702 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5f41df71-d6c8-4d46-bae0-b954d07d6c72] remote server not configured\n2025-10-29 06:17:53.702 [error] [command][2c9ca75d-24a8-440b-9ff1-f4353e0abf61] Socket error: Error: read ECONNRESET\n2025-10-29 06:17:53.703 [info] [command][2c9ca75d-24a8-440b-9ff1-f4353e0abf61] Socket close event received\n2025-10-29 06:17:53.703 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2c9ca75d-24a8-440b-9ff1-f4353e0abf61] Socket closed without exit code\n2025-10-29 06:18:53.705 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:18:53.709 [info] [command][84825cfe-4a42-4763-a6aa-15598690f16a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""84825cfe-4a42-4763-a6aa-15598690f16a""}\n2025-10-29 06:18:53.710 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a209fb81-3521-4365-995d-ed76a2b95deb] remote server not configured\n2025-10-29 06:18:53.711 [error] [command][84825cfe-4a42-4763-a6aa-15598690f16a] Socket error: Error: read ECONNRESET\n2025-10-29 06:18:53.711 [info] [command][84825cfe-4a42-4763-a6aa-15598690f16a] Socket close event received\n2025-10-29 06:18:53.711 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][84825cfe-4a42-4763-a6aa-15598690f16a] Socket closed without exit code\n2025-10-29 06:19:53.715 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:19:53.718 [info] [command][d588e688-292c-447d-aa97-7f857d979557] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d588e688-292c-447d-aa97-7f857d979557""}\n2025-10-29 06:19:53.718 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][07aa85d5-ad08-4099-be66-bbe819c94311] remote server not configured\n2025-10-29 06:19:53.719 [error] [command][d588e688-292c-447d-aa97-7f857d979557] Socket error: Error: read ECONNRESET\n2025-10-29 06:19:53.719 [info] [command][d588e688-292c-447d-aa97-7f857d979557] Socket close event received\n2025-10-29 06:19:53.719 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d588e688-292c-447d-aa97-7f857d979557] Socket closed without exit code\n2025-10-29 06:20:53.725 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:20:53.728 [info] [command][d9f54316-d676-41bf-91ba-5dfe2748b1cc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d9f54316-d676-41bf-91ba-5dfe2748b1cc""}\n2025-10-29 06:20:53.729 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][78854a1d-c138-4759-a3fa-12f34d4b6434] remote server not configured\n2025-10-29 06:20:53.730 [error] [command][d9f54316-d676-41bf-91ba-5dfe2748b1cc] Socket error: Error: read ECONNRESET\n2025-10-29 06:20:53.730 [info] [command][d9f54316-d676-41bf-91ba-5dfe2748b1cc] Socket close event received\n2025-10-29 06:20:53.733 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d9f54316-d676-41bf-91ba-5dfe2748b1cc] Socket closed without exit code\n2025-10-29 06:21:53.734 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:21:53.738 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][42653d7b-67cf-447c-8a33-1e3b536a454f] remote server not configured\n2025-10-29 06:21:53.739 [info] [command][64c215dd-5bd7-4427-aea3-c009004d6965] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""64c215dd-5bd7-4427-aea3-c009004d6965""}\n2025-10-29 06:21:53.740 [error] [command][64c215dd-5bd7-4427-aea3-c009004d6965] Socket error: Error: read ECONNRESET\n2025-10-29 06:21:53.740 [info] [command][64c215dd-5bd7-4427-aea3-c009004d6965] Socket close event received\n2025-10-29 06:21:53.740 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][64c215dd-5bd7-4427-aea3-c009004d6965] Socket closed without exit code\n2025-10-29 06:22:53.751 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:22:53.753 [info] [command][cdff988c-64e6-4c02-99f4-fa154ae53e09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""cdff988c-64e6-4c02-99f4-fa154ae53e09""}\n2025-10-29 06:22:53.754 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][1c9fa6da-d7e1-4077-8900-749eed0659d0] remote server not configured\n2025-10-29 06:22:53.755 [error] [command][cdff988c-64e6-4c02-99f4-fa154ae53e09] Socket error: Error: read ECONNRESET\n2025-10-29 06:22:53.755 [info] [command][cdff988c-64e6-4c02-99f4-fa154ae53e09] Socket close event received\n2025-10-29 06:22:53.755 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][cdff988c-64e6-4c02-99f4-fa154ae53e09] Socket closed without exit code\n2025-10-29 06:23:53.755 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:23:53.758 [info] [command][ed79196a-da99-4018-9dc6-7d54d0bc26fc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ed79196a-da99-4018-9dc6-7d54d0bc26fc""}\n2025-10-29 06:23:53.759 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][df7396a5-616a-41d3-9bf4-abec83d4e615] remote server not configured\n2025-10-29 06:23:53.759 [error] [command][ed79196a-da99-4018-9dc6-7d54d0bc26fc] Socket error: Error: read ECONNRESET\n2025-10-29 06:23:53.760 [info] [command][ed79196a-da99-4018-9dc6-7d54d0bc26fc] Socket close event received\n2025-10-29 06:23:53.760 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ed79196a-da99-4018-9dc6-7d54d0bc26fc] Socket closed without exit code\n2025-10-29 06:24:53.763 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:24:53.766 [info] [command][ef8d5af4-012b-4cd0-911e-b447d3a7f05e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ef8d5af4-012b-4cd0-911e-b447d3a7f05e""}\n2025-10-29 06:24:53.766 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3a2a009f-3cfe-4cba-8595-5d1867e29709] remote server not configured\n2025-10-29 06:24:53.767 [error] [command][ef8d5af4-012b-4cd0-911e-b447d3a7f05e] Socket error: Error: read ECONNRESET\n2025-10-29 06:24:53.767 [info] [command][ef8d5af4-012b-4cd0-911e-b447d3a7f05e] Socket close event received\n2025-10-29 06:24:53.767 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ef8d5af4-012b-4cd0-911e-b447d3a7f05e] Socket closed without exit code\n2025-10-29 06:25:53.777 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:25:53.780 [info] [command][901cd187-cff1-48ca-8f23-d2e5473ac4c3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""901cd187-cff1-48ca-8f23-d2e5473ac4c3""}\n2025-10-29 06:25:53.781 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0ead1da9-5647-4a2c-9c95-aa7f49bac4d0] remote server not configured\n2025-10-29 06:25:53.781 [error] [command][901cd187-cff1-48ca-8f23-d2e5473ac4c3] Socket error: Error: read ECONNRESET\n2025-10-29 06:25:53.782 [info] [command][901cd187-cff1-48ca-8f23-d2e5473ac4c3] Socket close event received\n2025-10-29 06:25:53.782 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][901cd187-cff1-48ca-8f23-d2e5473ac4c3] Socket closed without exit code\n2025-10-29 06:26:53.783 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:26:53.786 [info] [command][a48b79ad-761c-42a0-96f7-4e9a16f7916a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a48b79ad-761c-42a0-96f7-4e9a16f7916a""}\n2025-10-29 06:26:53.787 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][dd42ac5e-7a1d-4d97-aef9-00a778241185] remote server not configured\n2025-10-29 06:26:53.787 [error] [command][a48b79ad-761c-42a0-96f7-4e9a16f7916a] Socket error: Error: read ECONNRESET\n2025-10-29 06:26:53.788 [info] [command][a48b79ad-761c-42a0-96f7-4e9a16f7916a] Socket close event received\n2025-10-29 06:26:53.788 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a48b79ad-761c-42a0-96f7-4e9a16f7916a] Socket closed without exit code\n2025-10-29 06:27:53.798 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:27:53.801 [info] [command][73c05f52-2179-48ae-819b-20be72573d91] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""73c05f52-2179-48ae-819b-20be72573d91""}\n2025-10-29 06:27:53.801 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][790c7c02-30e1-4ba5-906e-3bcf68406e4b] remote server not configured\n2025-10-29 06:27:53.802 [error] [command][73c05f52-2179-48ae-819b-20be72573d91] Socket error: Error: read ECONNRESET\n2025-10-29 06:27:53.802 [info] [command][73c05f52-2179-48ae-819b-20be72573d91] Socket close event received\n2025-10-29 06:27:53.802 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][73c05f52-2179-48ae-819b-20be72573d91] Socket closed without exit code\n2025-10-29 06:28:53.804 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:28:53.807 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][60b26258-cfe9-4fb3-a366-2cc6491013cf] remote server not configured\n2025-10-29 06:28:53.808 [info] [command][b6037308-6878-4034-80fb-bdf1c1c075b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b6037308-6878-4034-80fb-bdf1c1c075b8""}\n2025-10-29 06:28:53.808 [error] [command][b6037308-6878-4034-80fb-bdf1c1c075b8] Socket error: Error: read ECONNRESET\n2025-10-29 06:28:53.808 [info] [command][b6037308-6878-4034-80fb-bdf1c1c075b8] Socket close event received\n2025-10-29 06:28:53.809 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b6037308-6878-4034-80fb-bdf1c1c075b8] Socket closed without exit code\n2025-10-29 06:29:53.811 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:29:53.813 [info] [command][ed16fc1e-32f7-4d00-8b33-28a8d129ef9b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ed16fc1e-32f7-4d00-8b33-28a8d129ef9b""}\n2025-10-29 06:29:53.814 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][decd4cf9-fb70-45be-be1a-5ce10e699213] remote server not configured\n2025-10-29 06:29:53.814 [error] [command][ed16fc1e-32f7-4d00-8b33-28a8d129ef9b] Socket error: Error: read ECONNRESET\n2025-10-29 06:29:53.815 [info] [command][ed16fc1e-32f7-4d00-8b33-28a8d129ef9b] Socket close event received\n2025-10-29 06:29:53.815 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ed16fc1e-32f7-4d00-8b33-28a8d129ef9b] Socket closed without exit code\n2025-10-29 06:30:53.816 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:30:53.819 [info] [command][30168ebf-4e31-4fbe-bffe-152fff684721] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""30168ebf-4e31-4fbe-bffe-152fff684721""}\n2025-10-29 06:30:53.819 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][53401ebb-52a1-4da0-bd4c-eea361faa3ce] remote server not configured\n2025-10-29 06:30:53.820 [error] [command][30168ebf-4e31-4fbe-bffe-152fff684721] Socket error: Error: read ECONNRESET\n2025-10-29 06:30:53.820 [info] [command][30168ebf-4e31-4fbe-bffe-152fff684721] Socket close event received\n2025-10-29 06:30:53.821 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][30168ebf-4e31-4fbe-bffe-152fff684721] Socket closed without exit code\n2025-10-29 06:31:53.830 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:31:53.833 [info] [command][92629024-c217-4560-bc8f-ed1065d9b555] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""92629024-c217-4560-bc8f-ed1065d9b555""}\n2025-10-29 06:31:53.834 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][abd28edd-6fbb-4000-b2b9-678b990b49ed] remote server not configured\n2025-10-29 06:31:53.834 [error] [command][92629024-c217-4560-bc8f-ed1065d9b555] Socket error: Error: read ECONNRESET\n2025-10-29 06:31:53.834 [info] [command][92629024-c217-4560-bc8f-ed1065d9b555] Socket close event received\n2025-10-29 06:31:53.835 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][92629024-c217-4560-bc8f-ed1065d9b555] Socket closed without exit code\n2025-10-29 06:32:53.836 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:32:53.838 [info] [command][01059a7a-715e-427c-a9e2-eede19ed5fd4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""01059a7a-715e-427c-a9e2-eede19ed5fd4""}\n2025-10-29 06:32:53.838 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5971eff6-6366-4935-b6ab-d6b7f928eee1] remote server not configured\n2025-10-29 06:32:53.839 [error] [command][01059a7a-715e-427c-a9e2-eede19ed5fd4] Socket error: Error: read ECONNRESET\n2025-10-29 06:32:53.839 [info] [command][01059a7a-715e-427c-a9e2-eede19ed5fd4] Socket close event received\n2025-10-29 06:32:53.839 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][01059a7a-715e-427c-a9e2-eede19ed5fd4] Socket closed without exit code\n2025-10-29 06:33:53.850 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:33:53.853 [info] [command][4e12ca93-2b3b-41c8-b285-215d7025d228] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4e12ca93-2b3b-41c8-b285-215d7025d228""}\n2025-10-29 06:33:53.853 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][42398e0b-552b-4138-903f-e2edeea14622] remote server not configured\n2025-10-29 06:33:53.854 [error] [command][4e12ca93-2b3b-41c8-b285-215d7025d228] Socket error: Error: read ECONNRESET\n2025-10-29 06:33:53.854 [info] [command][4e12ca93-2b3b-41c8-b285-215d7025d228] Socket close event received\n2025-10-29 06:33:53.854 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4e12ca93-2b3b-41c8-b285-215d7025d228] Socket closed without exit code\n2025-10-29 06:34:53.858 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:34:53.861 [info] [command][b5f2ca30-2729-4126-bea3-51ae6b15ed23] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b5f2ca30-2729-4126-bea3-51ae6b15ed23""}\n2025-10-29 06:34:53.862 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][aca56863-c057-4f94-b496-b7f71b11abfa] remote server not configured\n2025-10-29 06:34:53.862 [error] [command][b5f2ca30-2729-4126-bea3-51ae6b15ed23] Socket error: Error: read ECONNRESET\n2025-10-29 06:34:53.863 [info] [command][b5f2ca30-2729-4126-bea3-51ae6b15ed23] Socket close event received\n2025-10-29 06:34:53.863 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b5f2ca30-2729-4126-bea3-51ae6b15ed23] Socket closed without exit code\n2025-10-29 06:35:53.872 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:35:53.875 [info] [command][3341735e-ef9e-4923-b278-8adff25c5005] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3341735e-ef9e-4923-b278-8adff25c5005""}\n2025-10-29 06:35:53.876 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2430ce64-aeb5-46fa-b22f-6fdc237277b0] remote server not configured\n2025-10-29 06:35:53.877 [error] [command][3341735e-ef9e-4923-b278-8adff25c5005] Socket error: Error: read ECONNRESET\n2025-10-29 06:35:53.877 [info] [command][3341735e-ef9e-4923-b278-8adff25c5005] Socket close event received\n2025-10-29 06:35:53.877 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3341735e-ef9e-4923-b278-8adff25c5005] Socket closed without exit code\n2025-10-29 06:36:53.887 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:36:53.889 [info] [command][e58b1873-a64d-497c-8486-9c95c7bfd49c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e58b1873-a64d-497c-8486-9c95c7bfd49c""}\n2025-10-29 06:36:53.890 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f5b75c6f-5594-4243-ade1-ec8966ef4543] remote server not configured\n2025-10-29 06:36:53.890 [error] [command][e58b1873-a64d-497c-8486-9c95c7bfd49c] Socket error: Error: read ECONNRESET\n2025-10-29 06:36:53.891 [info] [command][e58b1873-a64d-497c-8486-9c95c7bfd49c] Socket close event received\n2025-10-29 06:36:53.891 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e58b1873-a64d-497c-8486-9c95c7bfd49c] Socket closed without exit code\n2025-10-29 06:37:53.898 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:37:53.900 [info] [command][63a9b137-3adf-4533-a26d-000a99cf64a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""63a9b137-3adf-4533-a26d-000a99cf64a5""}\n2025-10-29 06:37:53.901 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][26bc3868-f61b-4f4f-9fd8-2cb1fc55c7d8] remote server not configured\n2025-10-29 06:37:53.901 [error] [command][63a9b137-3adf-4533-a26d-000a99cf64a5] Socket error: Error: read ECONNRESET\n2025-10-29 06:37:53.902 [info] [command][63a9b137-3adf-4533-a26d-000a99cf64a5] Socket close event received\n2025-10-29 06:37:53.902 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][63a9b137-3adf-4533-a26d-000a99cf64a5] Socket closed without exit code\n2025-10-29 06:38:53.911 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:38:53.914 [info] [command][393a24fc-7b13-4d6d-9373-6d7ab9d5a8bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""393a24fc-7b13-4d6d-9373-6d7ab9d5a8bd""}\n2025-10-29 06:38:53.915 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][adf3a1ca-a4fe-4424-8314-01c3b2cd6006] remote server not configured\n2025-10-29 06:38:53.915 [error] [command][393a24fc-7b13-4d6d-9373-6d7ab9d5a8bd] Socket error: Error: read ECONNRESET\n2025-10-29 06:38:53.916 [info] [command][393a24fc-7b13-4d6d-9373-6d7ab9d5a8bd] Socket close event received\n2025-10-29 06:38:53.916 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][393a24fc-7b13-4d6d-9373-6d7ab9d5a8bd] Socket closed without exit code\n2025-10-29 06:39:53.917 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:39:53.919 [info] [command][69d9c415-8322-425e-9f4a-8e47320a6f62] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""69d9c415-8322-425e-9f4a-8e47320a6f62""}\n2025-10-29 06:39:53.920 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c583f417-6927-44a0-9688-2e73fef04866] remote server not configured\n2025-10-29 06:39:53.920 [error] [command][69d9c415-8322-425e-9f4a-8e47320a6f62] Socket error: Error: read ECONNRESET\n2025-10-29 06:39:53.921 [info] [command][69d9c415-8322-425e-9f4a-8e47320a6f62] Socket close event received\n2025-10-29 06:39:53.921 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][69d9c415-8322-425e-9f4a-8e47320a6f62] Socket closed without exit code\n2025-10-29 06:40:53.931 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:40:53.933 [info] [command][1bae6d77-74c2-448f-aba6-2b87408384ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1bae6d77-74c2-448f-aba6-2b87408384ba""}\n2025-10-29 06:40:53.933 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][834d281d-e54f-4c8b-8972-e473db3f9efb] remote server not configured\n2025-10-29 06:40:53.934 [error] [command][1bae6d77-74c2-448f-aba6-2b87408384ba] Socket error: Error: read ECONNRESET\n2025-10-29 06:40:53.934 [info] [command][1bae6d77-74c2-448f-aba6-2b87408384ba] Socket close event received\n2025-10-29 06:40:53.935 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1bae6d77-74c2-448f-aba6-2b87408384ba] Socket closed without exit code\n2025-10-29 06:41:53.938 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:41:53.941 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][52eeeb77-f362-4080-b8bd-5db27faefac7] remote server not configured\n2025-10-29 06:41:53.941 [info] [command][378fb591-1210-4d1c-8d16-f14cd2f33dd0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""378fb591-1210-4d1c-8d16-f14cd2f33dd0""}\n2025-10-29 06:41:53.942 [error] [command][378fb591-1210-4d1c-8d16-f14cd2f33dd0] Socket error: Error: read ECONNRESET\n2025-10-29 06:41:53.942 [info] [command][378fb591-1210-4d1c-8d16-f14cd2f33dd0] Socket close event received\n2025-10-29 06:41:53.942 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][378fb591-1210-4d1c-8d16-f14cd2f33dd0] Socket closed without exit code\n2025-10-29 06:42:53.947 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:42:53.949 [info] [command][1e7c64ba-0b0f-4aa7-a314-8fb8757d7693] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1e7c64ba-0b0f-4aa7-a314-8fb8757d7693""}\n2025-10-29 06:42:53.949 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5f7a5bdf-e926-4053-bd3b-8295edaef57f] remote server not configured\n2025-10-29 06:42:53.950 [error] [command][1e7c64ba-0b0f-4aa7-a314-8fb8757d7693] Socket error: Error: read ECONNRESET\n2025-10-29 06:42:53.950 [info] [command][1e7c64ba-0b0f-4aa7-a314-8fb8757d7693] Socket close event received\n2025-10-29 06:42:53.951 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1e7c64ba-0b0f-4aa7-a314-8fb8757d7693] Socket closed without exit code\n2025-10-29 06:43:53.960 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:43:53.963 [info] [command][e5a325b3-e6b6-4d3e-912d-56eed02db657] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e5a325b3-e6b6-4d3e-912d-56eed02db657""}\n2025-10-29 06:43:53.963 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7746257e-50af-458d-a06e-629c03cdd03f] remote server not configured\n2025-10-29 06:43:53.964 [error] [command][e5a325b3-e6b6-4d3e-912d-56eed02db657] Socket error: Error: read ECONNRESET\n2025-10-29 06:43:53.964 [info] [command][e5a325b3-e6b6-4d3e-912d-56eed02db657] Socket close event received\n2025-10-29 06:43:53.964 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e5a325b3-e6b6-4d3e-912d-56eed02db657] Socket closed without exit code\n2025-10-29 06:44:53.975 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:44:53.978 [info] [command][0b0f2b50-0253-44c6-b565-6ac73a002941] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0b0f2b50-0253-44c6-b565-6ac73a002941""}\n2025-10-29 06:44:53.979 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][20032f89-6b24-4bd0-87d1-fa81ba0bf606] remote server not configured\n2025-10-29 06:44:53.980 [error] [command][0b0f2b50-0253-44c6-b565-6ac73a002941] Socket error: Error: read ECONNRESET\n2025-10-29 06:44:53.981 [info] [command][0b0f2b50-0253-44c6-b565-6ac73a002941] Socket close event received\n2025-10-29 06:44:53.981 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0b0f2b50-0253-44c6-b565-6ac73a002941] Socket closed without exit code\n2025-10-29 06:45:53.982 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:45:53.984 [info] [command][c0c4ca19-bf54-4277-bc8c-c9f56c1aff0d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c0c4ca19-bf54-4277-bc8c-c9f56c1aff0d""}\n2025-10-29 06:45:53.985 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][277dbed1-fc50-4bc6-a8ef-f80e4a1f6f9e] remote server not configured\n2025-10-29 06:45:53.986 [error] [command][c0c4ca19-bf54-4277-bc8c-c9f56c1aff0d] Socket error: Error: read ECONNRESET\n2025-10-29 06:45:53.986 [info] [command][c0c4ca19-bf54-4277-bc8c-c9f56c1aff0d] Socket close event received\n2025-10-29 06:45:53.986 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c0c4ca19-bf54-4277-bc8c-c9f56c1aff0d] Socket closed without exit code\n2025-10-29 06:46:53.987 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:46:53.990 [info] [command][762ad8ec-444e-4644-86bc-23d5c8c87b19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""762ad8ec-444e-4644-86bc-23d5c8c87b19""}\n2025-10-29 06:46:53.991 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f3401fd0-2a42-4ea4-990e-7c7fc13e3e5b] remote server not configured\n2025-10-29 06:46:53.993 [error] [command][762ad8ec-444e-4644-86bc-23d5c8c87b19] Socket error: Error: read ECONNRESET\n2025-10-29 06:46:53.993 [info] [command][762ad8ec-444e-4644-86bc-23d5c8c87b19] Socket close event received\n2025-10-29 06:46:53.993 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][762ad8ec-444e-4644-86bc-23d5c8c87b19] Socket closed without exit code\n2025-10-29 06:47:53.995 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:47:53.999 [info] [command][22a1d7ba-b365-4fc4-9fd6-d16fb00ef48f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""22a1d7ba-b365-4fc4-9fd6-d16fb00ef48f""}\n2025-10-29 06:47:54.000 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][3aa98d93-e55f-46d5-a590-7e6ec4abf76e] remote server not configured\n2025-10-29 06:47:54.001 [error] [command][22a1d7ba-b365-4fc4-9fd6-d16fb00ef48f] Socket error: Error: read ECONNRESET\n2025-10-29 06:47:54.001 [info] [command][22a1d7ba-b365-4fc4-9fd6-d16fb00ef48f] Socket close event received\n2025-10-29 06:47:54.001 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][22a1d7ba-b365-4fc4-9fd6-d16fb00ef48f] Socket closed without exit code\n2025-10-29 06:48:54.011 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:48:54.013 [info] [command][ffaeffdf-5bf2-49a7-a913-340ea3ae0799] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ffaeffdf-5bf2-49a7-a913-340ea3ae0799""}\n2025-10-29 06:48:54.014 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b48e905b-5055-4f68-8d1d-94481897a423] remote server not configured\n2025-10-29 06:48:54.015 [error] [command][ffaeffdf-5bf2-49a7-a913-340ea3ae0799] Socket error: Error: read ECONNRESET\n2025-10-29 06:48:54.015 [info] [command][ffaeffdf-5bf2-49a7-a913-340ea3ae0799] Socket close event received\n2025-10-29 06:48:54.015 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ffaeffdf-5bf2-49a7-a913-340ea3ae0799] Socket closed without exit code\n2025-10-29 06:49:54.025 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:49:54.027 [info] [command][174f1c36-dc89-45a3-93dd-58bc94b4cea7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""174f1c36-dc89-45a3-93dd-58bc94b4cea7""}\n2025-10-29 06:49:54.028 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9d9bd744-3c19-430b-960c-44986df344a2] remote server not configured\n2025-10-29 06:49:54.029 [error] [command][174f1c36-dc89-45a3-93dd-58bc94b4cea7] Socket error: Error: read ECONNRESET\n2025-10-29 06:49:54.029 [info] [command][174f1c36-dc89-45a3-93dd-58bc94b4cea7] Socket close event received\n2025-10-29 06:49:54.030 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][174f1c36-dc89-45a3-93dd-58bc94b4cea7] Socket closed without exit code\n2025-10-29 06:50:54.032 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:50:54.034 [info] [command][3e2dd1d0-1675-4e9c-886a-f03992b17996] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3e2dd1d0-1675-4e9c-886a-f03992b17996""}\n2025-10-29 06:50:54.035 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][37ad3505-ff3c-4548-9f92-037a6723879e] remote server not configured\n2025-10-29 06:50:54.036 [error] [command][3e2dd1d0-1675-4e9c-886a-f03992b17996] Socket error: Error: read ECONNRESET\n2025-10-29 06:50:54.036 [info] [command][3e2dd1d0-1675-4e9c-886a-f03992b17996] Socket close event received\n2025-10-29 06:50:54.037 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3e2dd1d0-1675-4e9c-886a-f03992b17996] Socket closed without exit code\n2025-10-29 06:51:54.046 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:51:54.047 [info] [command][65d332db-b03a-45b9-a13b-f9da7c1ad380] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""65d332db-b03a-45b9-a13b-f9da7c1ad380""}\n2025-10-29 06:51:54.047 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9d247964-87db-4931-9340-c3904b0ef8fc] remote server not configured\n2025-10-29 06:51:54.048 [error] [command][65d332db-b03a-45b9-a13b-f9da7c1ad380] Socket error: Error: read ECONNRESET\n2025-10-29 06:51:54.048 [info] [command][65d332db-b03a-45b9-a13b-f9da7c1ad380] Socket close event received\n2025-10-29 06:51:54.048 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][65d332db-b03a-45b9-a13b-f9da7c1ad380] Socket closed without exit code\n2025-10-29 06:52:54.050 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:52:54.052 [info] [command][136414b5-ab39-44af-93f9-06795d2d9879] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""136414b5-ab39-44af-93f9-06795d2d9879""}\n2025-10-29 06:52:54.053 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][49447371-5d2f-425f-bf59-716c4fdd0c6f] remote server not configured\n2025-10-29 06:52:54.053 [error] [command][136414b5-ab39-44af-93f9-06795d2d9879] Socket error: Error: read ECONNRESET\n2025-10-29 06:52:54.053 [info] [command][136414b5-ab39-44af-93f9-06795d2d9879] Socket close event received\n2025-10-29 06:52:54.054 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][136414b5-ab39-44af-93f9-06795d2d9879] Socket closed without exit code\n2025-10-29 06:53:54.063 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:53:54.066 [info] [command][f640a372-3dfd-4453-8332-b65c907b4748] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f640a372-3dfd-4453-8332-b65c907b4748""}\n2025-10-29 06:53:54.066 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7e56a978-3ecb-4b8b-ab42-4b4aa9f2785e] remote server not configured\n2025-10-29 06:53:54.067 [error] [command][f640a372-3dfd-4453-8332-b65c907b4748] Socket error: Error: read ECONNRESET\n2025-10-29 06:53:54.067 [info] [command][f640a372-3dfd-4453-8332-b65c907b4748] Socket close event received\n2025-10-29 06:53:54.067 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f640a372-3dfd-4453-8332-b65c907b4748] Socket closed without exit code\n2025-10-29 06:54:54.078 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:54:54.081 [info] [command][2cf84b73-4729-45e0-bbf0-e8ff5149a3a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2cf84b73-4729-45e0-bbf0-e8ff5149a3a6""}\n2025-10-29 06:54:54.082 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][5f1c63ba-5e7c-4354-bb1f-21828ee57410] remote server not configured\n2025-10-29 06:54:54.083 [error] [command][2cf84b73-4729-45e0-bbf0-e8ff5149a3a6] Socket error: Error: read ECONNRESET\n2025-10-29 06:54:54.083 [info] [command][2cf84b73-4729-45e0-bbf0-e8ff5149a3a6] Socket close event received\n2025-10-29 06:54:54.084 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2cf84b73-4729-45e0-bbf0-e8ff5149a3a6] Socket closed without exit code\n2025-10-29 06:55:54.086 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:55:54.089 [info] [command][53f5ba61-1084-4092-8e07-b14566e84ccb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""53f5ba61-1084-4092-8e07-b14566e84ccb""}\n2025-10-29 06:55:54.090 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6607de88-1d31-44b5-b8e3-9fb7901425f2] remote server not configured\n2025-10-29 06:55:54.090 [error] [command][53f5ba61-1084-4092-8e07-b14566e84ccb] Socket error: Error: read ECONNRESET\n2025-10-29 06:55:54.090 [info] [command][53f5ba61-1084-4092-8e07-b14566e84ccb] Socket close event received\n2025-10-29 06:55:54.091 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][53f5ba61-1084-4092-8e07-b14566e84ccb] Socket closed without exit code\n2025-10-29 06:56:54.100 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:56:54.103 [info] [command][b6ccbfd7-6112-4afa-9632-918a05c812b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""b6ccbfd7-6112-4afa-9632-918a05c812b6""}\n2025-10-29 06:56:54.104 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e559cfd1-01ad-434e-bbf1-a2f39cddede9] remote server not configured\n2025-10-29 06:56:54.104 [error] [command][b6ccbfd7-6112-4afa-9632-918a05c812b6] Socket error: Error: read ECONNRESET\n2025-10-29 06:56:54.105 [info] [command][b6ccbfd7-6112-4afa-9632-918a05c812b6] Socket close event received\n2025-10-29 06:56:54.105 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][b6ccbfd7-6112-4afa-9632-918a05c812b6] Socket closed without exit code\n2025-10-29 06:57:54.121 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:57:54.123 [info] [command][e051da7b-3d7f-46e0-88be-343e9430daca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e051da7b-3d7f-46e0-88be-343e9430daca""}\n2025-10-29 06:57:54.124 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6f13ed27-56cf-40ea-ba81-e3db9166f933] remote server not configured\n2025-10-29 06:57:54.124 [error] [command][e051da7b-3d7f-46e0-88be-343e9430daca] Socket error: Error: read ECONNRESET\n2025-10-29 06:57:54.124 [info] [command][e051da7b-3d7f-46e0-88be-343e9430daca] Socket close event received\n2025-10-29 06:57:54.125 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e051da7b-3d7f-46e0-88be-343e9430daca] Socket closed without exit code\n2025-10-29 06:58:54.135 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:58:54.137 [info] [command][00370fd3-a493-41b9-a62d-0bde0e06c344] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""00370fd3-a493-41b9-a62d-0bde0e06c344""}\n2025-10-29 06:58:54.138 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c73a18ea-caa9-461e-9044-51ecea3b2a9c] remote server not configured\n2025-10-29 06:58:54.139 [error] [command][00370fd3-a493-41b9-a62d-0bde0e06c344] Socket error: Error: read ECONNRESET\n2025-10-29 06:58:54.139 [info] [command][00370fd3-a493-41b9-a62d-0bde0e06c344] Socket close event received\n2025-10-29 06:58:54.140 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][00370fd3-a493-41b9-a62d-0bde0e06c344] Socket closed without exit code\n2025-10-29 06:59:54.150 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 06:59:54.153 [info] [command][902b3add-1f53-426f-820a-7ae1f093290e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""902b3add-1f53-426f-820a-7ae1f093290e""}\n2025-10-29 06:59:54.153 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a54874e1-83e5-4e9c-9e21-30f6c7a900af] remote server not configured\n2025-10-29 06:59:54.154 [error] [command][902b3add-1f53-426f-820a-7ae1f093290e] Socket error: Error: read ECONNRESET\n2025-10-29 06:59:54.154 [info] [command][902b3add-1f53-426f-820a-7ae1f093290e] Socket close event received\n2025-10-29 06:59:54.155 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][902b3add-1f53-426f-820a-7ae1f093290e] Socket closed without exit code\n2025-10-29 07:00:54.165 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:00:54.168 [info] [command][656c1610-c090-418d-bfaa-0d1ef675e1e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""656c1610-c090-418d-bfaa-0d1ef675e1e1""}\n2025-10-29 07:00:54.169 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a40b5a8b-b035-4a66-bf34-caf2a037acae] remote server not configured\n2025-10-29 07:00:54.169 [error] [command][656c1610-c090-418d-bfaa-0d1ef675e1e1] Socket error: Error: read ECONNRESET\n2025-10-29 07:00:54.170 [info] [command][656c1610-c090-418d-bfaa-0d1ef675e1e1] Socket close event received\n2025-10-29 07:00:54.170 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][656c1610-c090-418d-bfaa-0d1ef675e1e1] Socket closed without exit code\n2025-10-29 07:01:54.174 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:01:54.177 [info] [command][7b096336-a5fe-4c51-98a4-b78ad57059a4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7b096336-a5fe-4c51-98a4-b78ad57059a4""}\n2025-10-29 07:01:54.178 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][de86e9cf-4612-4d88-b7cf-3cccb416df7a] remote server not configured\n2025-10-29 07:01:54.178 [error] [command][7b096336-a5fe-4c51-98a4-b78ad57059a4] Socket error: Error: read ECONNRESET\n2025-10-29 07:01:54.178 [info] [command][7b096336-a5fe-4c51-98a4-b78ad57059a4] Socket close event received\n2025-10-29 07:01:54.179 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7b096336-a5fe-4c51-98a4-b78ad57059a4] Socket closed without exit code\n2025-10-29 07:02:54.187 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:02:54.189 [info] [command][3ec4725f-4da0-4426-a88f-ad3cc3101cdb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3ec4725f-4da0-4426-a88f-ad3cc3101cdb""}\n2025-10-29 07:02:54.190 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6856d0a6-8771-4b1d-b449-c78318a62e28] remote server not configured\n2025-10-29 07:02:54.191 [error] [command][3ec4725f-4da0-4426-a88f-ad3cc3101cdb] Socket error: Error: read ECONNRESET\n2025-10-29 07:02:54.191 [info] [command][3ec4725f-4da0-4426-a88f-ad3cc3101cdb] Socket close event received\n2025-10-29 07:02:54.191 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3ec4725f-4da0-4426-a88f-ad3cc3101cdb] Socket closed without exit code\n2025-10-29 07:03:54.199 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:03:54.201 [info] [command][3e0ae0f1-4d6d-478f-b76f-9573ef52b3f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3e0ae0f1-4d6d-478f-b76f-9573ef52b3f2""}\n2025-10-29 07:03:54.202 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][b6d7b65b-e56d-45c0-8df1-9f2ff4b8c486] remote server not configured\n2025-10-29 07:03:54.202 [error] [command][3e0ae0f1-4d6d-478f-b76f-9573ef52b3f2] Socket error: Error: read ECONNRESET\n2025-10-29 07:03:54.203 [info] [command][3e0ae0f1-4d6d-478f-b76f-9573ef52b3f2] Socket close event received\n2025-10-29 07:03:54.203 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3e0ae0f1-4d6d-478f-b76f-9573ef52b3f2] Socket closed without exit code\n2025-10-29 07:04:54.203 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:04:54.206 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a674cf05-7041-4260-8d4d-81636c2147e3] remote server not configured\n2025-10-29 07:04:54.207 [info] [command][112f8e2d-6e8c-4623-80b2-5216d083523d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""112f8e2d-6e8c-4623-80b2-5216d083523d""}\n2025-10-29 07:04:54.207 [error] [command][112f8e2d-6e8c-4623-80b2-5216d083523d] Socket error: Error: read ECONNRESET\n2025-10-29 07:04:54.208 [info] [command][112f8e2d-6e8c-4623-80b2-5216d083523d] Socket close event received\n2025-10-29 07:04:54.208 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][112f8e2d-6e8c-4623-80b2-5216d083523d] Socket closed without exit code\n2025-10-29 07:05:54.218 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:05:54.220 [info] [command][89f6ebc5-33b9-4204-a3c0-623379f0d9c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""89f6ebc5-33b9-4204-a3c0-623379f0d9c2""}\n2025-10-29 07:05:54.221 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f673df19-6051-4d8e-9952-2ccd4276b1ed] remote server not configured\n2025-10-29 07:05:54.221 [error] [command][89f6ebc5-33b9-4204-a3c0-623379f0d9c2] Socket error: Error: read ECONNRESET\n2025-10-29 07:05:54.221 [info] [command][89f6ebc5-33b9-4204-a3c0-623379f0d9c2] Socket close event received\n2025-10-29 07:05:54.222 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][89f6ebc5-33b9-4204-a3c0-623379f0d9c2] Socket closed without exit code\n2025-10-29 07:06:54.232 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:06:54.235 [info] [command][07240448-3a67-4a22-a28e-d606f1e1a8db] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""07240448-3a67-4a22-a28e-d606f1e1a8db""}\n2025-10-29 07:06:54.236 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6c49ec55-4b70-4556-8d75-4e21dd199b91] remote server not configured\n2025-10-29 07:06:54.236 [error] [command][07240448-3a67-4a22-a28e-d606f1e1a8db] Socket error: Error: read ECONNRESET\n2025-10-29 07:06:54.237 [info] [command][07240448-3a67-4a22-a28e-d606f1e1a8db] Socket close event received\n2025-10-29 07:06:54.237 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][07240448-3a67-4a22-a28e-d606f1e1a8db] Socket closed without exit code\n2025-10-29 07:07:54.247 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:07:54.250 [info] [command][0355ca3a-21d9-4eb8-a9d1-e5552e6014a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0355ca3a-21d9-4eb8-a9d1-e5552e6014a0""}\n2025-10-29 07:07:54.251 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][81bbbe8e-ba6b-4f9f-b47a-f5e9109a3280] remote server not configured\n2025-10-29 07:07:54.251 [error] [command][0355ca3a-21d9-4eb8-a9d1-e5552e6014a0] Socket error: Error: read ECONNRESET\n2025-10-29 07:07:54.252 [info] [command][0355ca3a-21d9-4eb8-a9d1-e5552e6014a0] Socket close event received\n2025-10-29 07:07:54.252 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0355ca3a-21d9-4eb8-a9d1-e5552e6014a0] Socket closed without exit code\n2025-10-29 07:08:54.259 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:08:54.262 [info] [command][97b5cf8c-478d-49ee-963a-c18de22ab6c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""97b5cf8c-478d-49ee-963a-c18de22ab6c8""}\n2025-10-29 07:08:54.263 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][22245a48-c405-4b28-bff4-7e71979710ab] remote server not configured\n2025-10-29 07:08:54.264 [error] [command][97b5cf8c-478d-49ee-963a-c18de22ab6c8] Socket error: Error: read ECONNRESET\n2025-10-29 07:08:54.264 [info] [command][97b5cf8c-478d-49ee-963a-c18de22ab6c8] Socket close event received\n2025-10-29 07:08:54.264 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][97b5cf8c-478d-49ee-963a-c18de22ab6c8] Socket closed without exit code\n2025-10-29 07:09:54.274 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:09:54.277 [info] [command][e9cfac99-c60b-420f-ae99-48da9f9b3dda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e9cfac99-c60b-420f-ae99-48da9f9b3dda""}\n2025-10-29 07:09:54.277 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4421a469-3085-4a1a-bc75-4e6f08dde86a] remote server not configured\n2025-10-29 07:09:54.278 [error] [command][e9cfac99-c60b-420f-ae99-48da9f9b3dda] Socket error: Error: read ECONNRESET\n2025-10-29 07:09:54.278 [info] [command][e9cfac99-c60b-420f-ae99-48da9f9b3dda] Socket close event received\n2025-10-29 07:09:54.278 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e9cfac99-c60b-420f-ae99-48da9f9b3dda] Socket closed without exit code\n2025-10-29 07:10:54.288 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:10:54.291 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d104e1f6-563d-4109-abbb-44776e1e9aa5] remote server not configured\n2025-10-29 07:10:54.292 [info] [command][be6b04e8-e146-4ad5-bbaa-df30e8575290] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""be6b04e8-e146-4ad5-bbaa-df30e8575290""}\n2025-10-29 07:10:54.292 [error] [command][be6b04e8-e146-4ad5-bbaa-df30e8575290] Socket error: Error: read ECONNRESET\n2025-10-29 07:10:54.293 [info] [command][be6b04e8-e146-4ad5-bbaa-df30e8575290] Socket close event received\n2025-10-29 07:10:54.293 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][be6b04e8-e146-4ad5-bbaa-df30e8575290] Socket closed without exit code\n2025-10-29 07:11:54.293 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:11:54.296 [info] [command][c57dd626-a777-4204-a925-ba55c15cd2ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c57dd626-a777-4204-a925-ba55c15cd2ac""}\n2025-10-29 07:11:54.297 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][975d4a30-cbd2-4d61-8ea3-e61bca0fc346] remote server not configured\n2025-10-29 07:11:54.297 [error] [command][c57dd626-a777-4204-a925-ba55c15cd2ac] Socket error: Error: read ECONNRESET\n2025-10-29 07:11:54.298 [info] [command][c57dd626-a777-4204-a925-ba55c15cd2ac] Socket close event received\n2025-10-29 07:11:54.298 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c57dd626-a777-4204-a925-ba55c15cd2ac] Socket closed without exit code\n2025-10-29 07:12:54.308 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:12:54.310 [info] [command][577b3d9e-a98f-4e67-b6c8-a9184d3d3f2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""577b3d9e-a98f-4e67-b6c8-a9184d3d3f2a""}\n2025-10-29 07:12:54.311 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d31b15e2-1d63-44f7-b190-b285b24b6674] remote server not configured\n2025-10-29 07:12:54.312 [error] [command][577b3d9e-a98f-4e67-b6c8-a9184d3d3f2a] Socket error: Error: read ECONNRESET\n2025-10-29 07:12:54.312 [info] [command][577b3d9e-a98f-4e67-b6c8-a9184d3d3f2a] Socket close event received\n2025-10-29 07:12:54.312 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][577b3d9e-a98f-4e67-b6c8-a9184d3d3f2a] Socket closed without exit code\n2025-10-29 07:13:54.316 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:13:54.319 [info] [command][a6616007-cca7-41c3-a0bd-3ddd48348a4c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a6616007-cca7-41c3-a0bd-3ddd48348a4c""}\n2025-10-29 07:13:54.320 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6383cc9e-b763-4fc5-9e78-ef3e1535f665] remote server not configured\n2025-10-29 07:13:54.320 [error] [command][a6616007-cca7-41c3-a0bd-3ddd48348a4c] Socket error: Error: read ECONNRESET\n2025-10-29 07:13:54.321 [info] [command][a6616007-cca7-41c3-a0bd-3ddd48348a4c] Socket close event received\n2025-10-29 07:13:54.321 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a6616007-cca7-41c3-a0bd-3ddd48348a4c] Socket closed without exit code\n2025-10-29 07:14:54.331 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:14:54.334 [info] [command][3ec76465-8312-4e90-80c7-c19e17c8a474] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3ec76465-8312-4e90-80c7-c19e17c8a474""}\n2025-10-29 07:14:54.335 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a56defa1-c3ad-4984-878f-516625e932d7] remote server not configured\n2025-10-29 07:14:54.335 [error] [command][3ec76465-8312-4e90-80c7-c19e17c8a474] Socket error: Error: read ECONNRESET\n2025-10-29 07:14:54.335 [info] [command][3ec76465-8312-4e90-80c7-c19e17c8a474] Socket close event received\n2025-10-29 07:14:54.336 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3ec76465-8312-4e90-80c7-c19e17c8a474] Socket closed without exit code\n2025-10-29 07:15:54.347 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:15:54.350 [info] [command][3d53d702-ac4e-4643-9fe0-ef575704eb88] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""3d53d702-ac4e-4643-9fe0-ef575704eb88""}\n2025-10-29 07:15:54.351 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d285db21-c238-4491-91bc-4863f2d7ba5b] remote server not configured\n2025-10-29 07:15:54.353 [error] [command][3d53d702-ac4e-4643-9fe0-ef575704eb88] Socket error: Error: read ECONNRESET\n2025-10-29 07:15:54.353 [info] [command][3d53d702-ac4e-4643-9fe0-ef575704eb88] Socket close event received\n2025-10-29 07:15:54.353 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][3d53d702-ac4e-4643-9fe0-ef575704eb88] Socket closed without exit code\n2025-10-29 07:16:54.355 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:16:54.358 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7098d7d6-0581-484f-9a2b-e230e233d01e] remote server not configured\n2025-10-29 07:16:54.359 [info] [command][baa04a37-d408-4df2-939f-3cff1844aa25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""baa04a37-d408-4df2-939f-3cff1844aa25""}\n2025-10-29 07:16:54.360 [error] [command][baa04a37-d408-4df2-939f-3cff1844aa25] Socket error: Error: read ECONNRESET\n2025-10-29 07:16:54.360 [info] [command][baa04a37-d408-4df2-939f-3cff1844aa25] Socket close event received\n2025-10-29 07:16:54.360 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][baa04a37-d408-4df2-939f-3cff1844aa25] Socket closed without exit code\n2025-10-29 07:17:54.368 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:17:54.371 [info] [command][e0856f82-d08e-4718-9e71-8e9aac62bbef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e0856f82-d08e-4718-9e71-8e9aac62bbef""}\n2025-10-29 07:17:54.371 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a952fe2e-542e-48eb-baa3-1d67e637cb06] remote server not configured\n2025-10-29 07:17:54.371 [error] [command][e0856f82-d08e-4718-9e71-8e9aac62bbef] Socket error: Error: read ECONNRESET\n2025-10-29 07:17:54.372 [info] [command][e0856f82-d08e-4718-9e71-8e9aac62bbef] Socket close event received\n2025-10-29 07:17:54.372 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e0856f82-d08e-4718-9e71-8e9aac62bbef] Socket closed without exit code\n2025-10-29 07:18:54.382 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:18:54.385 [info] [command][d9f4d2e2-3642-4922-b97f-6e1dc2cc8aef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d9f4d2e2-3642-4922-b97f-6e1dc2cc8aef""}\n2025-10-29 07:18:54.386 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][6209ccd8-5ac4-49fe-97c0-85c218e1ac75] remote server not configured\n2025-10-29 07:18:54.387 [error] [command][d9f4d2e2-3642-4922-b97f-6e1dc2cc8aef] Socket error: Error: read ECONNRESET\n2025-10-29 07:18:54.387 [info] [command][d9f4d2e2-3642-4922-b97f-6e1dc2cc8aef] Socket close event received\n2025-10-29 07:18:54.388 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d9f4d2e2-3642-4922-b97f-6e1dc2cc8aef] Socket closed without exit code\n2025-10-29 07:19:54.396 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:19:54.399 [info] [command][8415f36d-7433-4b91-84e9-a75777870d72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8415f36d-7433-4b91-84e9-a75777870d72""}\n2025-10-29 07:19:54.400 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cf3990c3-98a1-48ca-b622-277bb95cb480] remote server not configured\n2025-10-29 07:19:54.401 [error] [command][8415f36d-7433-4b91-84e9-a75777870d72] Socket error: Error: read ECONNRESET\n2025-10-29 07:19:54.401 [info] [command][8415f36d-7433-4b91-84e9-a75777870d72] Socket close event received\n2025-10-29 07:19:54.401 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8415f36d-7433-4b91-84e9-a75777870d72] Socket closed without exit code\n2025-10-29 07:20:54.412 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:20:54.413 [info] [command][8a2fbd93-19fb-47e9-a523-4be922488416] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8a2fbd93-19fb-47e9-a523-4be922488416""}\n2025-10-29 07:20:54.414 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d62c58c1-a013-4083-83a0-31dfa1035ef2] remote server not configured\n2025-10-29 07:20:54.415 [error] [command][8a2fbd93-19fb-47e9-a523-4be922488416] Socket error: Error: read ECONNRESET\n2025-10-29 07:20:54.415 [info] [command][8a2fbd93-19fb-47e9-a523-4be922488416] Socket close event received\n2025-10-29 07:20:54.415 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8a2fbd93-19fb-47e9-a523-4be922488416] Socket closed without exit code\n2025-10-29 07:21:54.424 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:21:54.427 [info] [command][028841b7-f370-4261-a32c-f2c3849d1ba2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""028841b7-f370-4261-a32c-f2c3849d1ba2""}\n2025-10-29 07:21:54.428 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2f5e1384-14a5-4931-855c-ef7550075fa2] remote server not configured\n2025-10-29 07:21:54.428 [error] [command][028841b7-f370-4261-a32c-f2c3849d1ba2] Socket error: Error: read ECONNRESET\n2025-10-29 07:21:54.429 [info] [command][028841b7-f370-4261-a32c-f2c3849d1ba2] Socket close event received\n2025-10-29 07:21:54.429 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][028841b7-f370-4261-a32c-f2c3849d1ba2] Socket closed without exit code\n2025-10-29 07:22:54.437 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:22:54.440 [info] [command][ccbce214-4394-4616-a2da-c788d3c7341f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ccbce214-4394-4616-a2da-c788d3c7341f""}\n2025-10-29 07:22:54.440 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][156ad303-9a5c-4870-ad33-e6a124c519c1] remote server not configured\n2025-10-29 07:22:54.441 [error] [command][ccbce214-4394-4616-a2da-c788d3c7341f] Socket error: Error: read ECONNRESET\n2025-10-29 07:22:54.441 [info] [command][ccbce214-4394-4616-a2da-c788d3c7341f] Socket close event received\n2025-10-29 07:22:54.441 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ccbce214-4394-4616-a2da-c788d3c7341f] Socket closed without exit code\n2025-10-29 07:23:54.443 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:23:54.445 [info] [command][87650ec4-76a2-4724-969b-f47f462289e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""87650ec4-76a2-4724-969b-f47f462289e8""}\n2025-10-29 07:23:54.445 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7876ff5c-a365-4992-9f1f-5303bb5fd237] remote server not configured\n2025-10-29 07:23:54.446 [error] [command][87650ec4-76a2-4724-969b-f47f462289e8] Socket error: Error: read ECONNRESET\n2025-10-29 07:23:54.446 [info] [command][87650ec4-76a2-4724-969b-f47f462289e8] Socket close event received\n2025-10-29 07:23:54.446 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][87650ec4-76a2-4724-969b-f47f462289e8] Socket closed without exit code\n2025-10-29 07:24:54.456 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:24:54.459 [info] [command][0fd9a744-7174-4e1f-ba17-795e162da8b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""0fd9a744-7174-4e1f-ba17-795e162da8b0""}\n2025-10-29 07:24:54.459 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][408c343b-2db4-4c28-8687-3060e4b70136] remote server not configured\n2025-10-29 07:24:54.459 [error] [command][0fd9a744-7174-4e1f-ba17-795e162da8b0] Socket error: Error: read ECONNRESET\n2025-10-29 07:24:54.460 [info] [command][0fd9a744-7174-4e1f-ba17-795e162da8b0] Socket close event received\n2025-10-29 07:24:54.460 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][0fd9a744-7174-4e1f-ba17-795e162da8b0] Socket closed without exit code\n2025-10-29 07:25:54.476 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:25:54.483 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][e1d991c5-451c-4e30-a002-0bdf83da0c94] remote server not configured\n2025-10-29 07:25:54.484 [info] [command][527e5c3e-3849-461e-94d7-79fb857187ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""527e5c3e-3849-461e-94d7-79fb857187ce""}\n2025-10-29 07:25:54.484 [error] [command][527e5c3e-3849-461e-94d7-79fb857187ce] Socket error: Error: read ECONNRESET\n2025-10-29 07:25:54.484 [info] [command][527e5c3e-3849-461e-94d7-79fb857187ce] Socket close event received\n2025-10-29 07:25:54.484 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][527e5c3e-3849-461e-94d7-79fb857187ce] Socket closed without exit code\n2025-10-29 07:26:54.494 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:26:54.495 [info] [command][5f4294a3-7dad-450b-bc11-538792f6564b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""5f4294a3-7dad-450b-bc11-538792f6564b""}\n2025-10-29 07:26:54.495 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0ce044ac-bfc0-438e-8839-66420ca64f71] remote server not configured\n2025-10-29 07:26:54.495 [error] [command][5f4294a3-7dad-450b-bc11-538792f6564b] Socket error: Error: read ECONNRESET\n2025-10-29 07:26:54.495 [info] [command][5f4294a3-7dad-450b-bc11-538792f6564b] Socket close event received\n2025-10-29 07:26:54.495 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][5f4294a3-7dad-450b-bc11-538792f6564b] Socket closed without exit code\n2025-10-29 07:27:54.506 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:27:54.509 [info] [command][92952ca2-7c91-41ef-a537-2f1b4fca1c66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""92952ca2-7c91-41ef-a537-2f1b4fca1c66""}\n2025-10-29 07:27:54.509 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][651ac3a0-5801-4357-9aab-72a52fe24e4c] remote server not configured\n2025-10-29 07:27:54.510 [error] [command][92952ca2-7c91-41ef-a537-2f1b4fca1c66] Socket error: Error: read ECONNRESET\n2025-10-29 07:27:54.510 [info] [command][92952ca2-7c91-41ef-a537-2f1b4fca1c66] Socket close event received\n2025-10-29 07:27:54.510 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][92952ca2-7c91-41ef-a537-2f1b4fca1c66] Socket closed without exit code\n2025-10-29 07:28:54.520 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:28:54.523 [info] [command][2b04709e-8732-4bc2-915b-fd2a9823dc32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2b04709e-8732-4bc2-915b-fd2a9823dc32""}\n2025-10-29 07:28:54.523 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4cd6b799-d65c-4356-a063-6839ad211c07] remote server not configured\n2025-10-29 07:28:54.524 [error] [command][2b04709e-8732-4bc2-915b-fd2a9823dc32] Socket error: Error: read ECONNRESET\n2025-10-29 07:28:54.524 [info] [command][2b04709e-8732-4bc2-915b-fd2a9823dc32] Socket close event received\n2025-10-29 07:28:54.525 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2b04709e-8732-4bc2-915b-fd2a9823dc32] Socket closed without exit code\n2025-10-29 07:29:54.536 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:29:54.538 [info] [command][ffa4b819-cda6-46fb-83df-d67e70314561] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ffa4b819-cda6-46fb-83df-d67e70314561""}\n2025-10-29 07:29:54.540 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][0d2fd1e8-a8e6-4876-a9b4-1f3fbc77bc70] remote server not configured\n2025-10-29 07:29:54.541 [error] [command][ffa4b819-cda6-46fb-83df-d67e70314561] Socket error: Error: read ECONNRESET\n2025-10-29 07:29:54.541 [info] [command][ffa4b819-cda6-46fb-83df-d67e70314561] Socket close event received\n2025-10-29 07:29:54.541 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ffa4b819-cda6-46fb-83df-d67e70314561] Socket closed without exit code\n2025-10-29 07:30:54.545 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:30:54.548 [info] [command][c337d0d6-edb1-4a5c-9133-e9f1e307c6f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c337d0d6-edb1-4a5c-9133-e9f1e307c6f7""}\n2025-10-29 07:30:54.548 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][bc60314b-53e7-4564-b320-116ca60b8638] remote server not configured\n2025-10-29 07:30:54.549 [error] [command][c337d0d6-edb1-4a5c-9133-e9f1e307c6f7] Socket error: Error: read ECONNRESET\n2025-10-29 07:30:54.549 [info] [command][c337d0d6-edb1-4a5c-9133-e9f1e307c6f7] Socket close event received\n2025-10-29 07:30:54.549 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c337d0d6-edb1-4a5c-9133-e9f1e307c6f7] Socket closed without exit code\n2025-10-29 07:31:54.557 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:31:54.560 [info] [command][ee92d9dd-1a03-4242-9d29-e39e9304da7d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ee92d9dd-1a03-4242-9d29-e39e9304da7d""}\n2025-10-29 07:31:54.560 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][eddb99ce-2240-4e80-b47c-62f1abf9b21b] remote server not configured\n2025-10-29 07:31:54.561 [error] [command][ee92d9dd-1a03-4242-9d29-e39e9304da7d] Socket error: Error: read ECONNRESET\n2025-10-29 07:31:54.561 [info] [command][ee92d9dd-1a03-4242-9d29-e39e9304da7d] Socket close event received\n2025-10-29 07:31:54.562 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ee92d9dd-1a03-4242-9d29-e39e9304da7d] Socket closed without exit code\n2025-10-29 07:32:54.572 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:32:54.575 [info] [command][c7a0cb50-67c8-4264-a741-4679d908b023] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c7a0cb50-67c8-4264-a741-4679d908b023""}\n2025-10-29 07:32:54.576 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][59df2449-6db2-40eb-9724-04c283c1d6c3] remote server not configured\n2025-10-29 07:32:54.577 [error] [command][c7a0cb50-67c8-4264-a741-4679d908b023] Socket error: Error: read ECONNRESET\n2025-10-29 07:32:54.577 [info] [command][c7a0cb50-67c8-4264-a741-4679d908b023] Socket close event received\n2025-10-29 07:32:54.577 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c7a0cb50-67c8-4264-a741-4679d908b023] Socket closed without exit code\n2025-10-29 07:33:54.579 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:33:54.582 [info] [command][43759915-803d-4363-89c0-4f39145675a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""43759915-803d-4363-89c0-4f39145675a8""}\n2025-10-29 07:33:54.583 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9698247e-8e7e-4b4c-aef4-d86382117a92] remote server not configured\n2025-10-29 07:33:54.583 [error] [command][43759915-803d-4363-89c0-4f39145675a8] Socket error: Error: read ECONNRESET\n2025-10-29 07:33:54.584 [info] [command][43759915-803d-4363-89c0-4f39145675a8] Socket close event received\n2025-10-29 07:33:54.584 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][43759915-803d-4363-89c0-4f39145675a8] Socket closed without exit code\n2025-10-29 07:34:54.594 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:34:54.597 [info] [command][a39b1282-c3a0-4af5-959d-ce9ca5a6dae4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a39b1282-c3a0-4af5-959d-ce9ca5a6dae4""}\n2025-10-29 07:34:54.597 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][87c14964-12d6-44c4-afe4-3daeecc079c4] remote server not configured\n2025-10-29 07:34:54.598 [error] [command][a39b1282-c3a0-4af5-959d-ce9ca5a6dae4] Socket error: Error: read ECONNRESET\n2025-10-29 07:34:54.598 [info] [command][a39b1282-c3a0-4af5-959d-ce9ca5a6dae4] Socket close event received\n2025-10-29 07:34:54.598 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a39b1282-c3a0-4af5-959d-ce9ca5a6dae4] Socket closed without exit code\n2025-10-29 07:35:54.609 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:35:54.612 [info] [command][10d5d71e-be1e-42ea-9ef1-44dc963fd445] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""10d5d71e-be1e-42ea-9ef1-44dc963fd445""}\n2025-10-29 07:35:54.613 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][11b9f09a-a1dd-4c8f-a848-789114dec057] remote server not configured\n2025-10-29 07:35:54.614 [error] [command][10d5d71e-be1e-42ea-9ef1-44dc963fd445] Socket error: Error: read ECONNRESET\n2025-10-29 07:35:54.614 [info] [command][10d5d71e-be1e-42ea-9ef1-44dc963fd445] Socket close event received\n2025-10-29 07:35:54.614 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][10d5d71e-be1e-42ea-9ef1-44dc963fd445] Socket closed without exit code\n2025-10-29 07:36:54.616 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:36:54.618 [info] [command][63769ca6-f888-49bf-bf3d-3685de52d20e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""63769ca6-f888-49bf-bf3d-3685de52d20e""}\n2025-10-29 07:36:54.619 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2d5373c5-ee76-48e7-93ba-26cbc7bfc63d] remote server not configured\n2025-10-29 07:36:54.619 [error] [command][63769ca6-f888-49bf-bf3d-3685de52d20e] Socket error: Error: read ECONNRESET\n2025-10-29 07:36:54.619 [info] [command][63769ca6-f888-49bf-bf3d-3685de52d20e] Socket close event received\n2025-10-29 07:36:54.620 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][63769ca6-f888-49bf-bf3d-3685de52d20e] Socket closed without exit code\n2025-10-29 07:37:54.631 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:37:54.633 [info] [command][a752fde5-655e-4130-b2d6-5c3990c6f187] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a752fde5-655e-4130-b2d6-5c3990c6f187""}\n2025-10-29 07:37:54.634 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cafb5e84-bd55-48c2-9314-966ed84c1eb0] remote server not configured\n2025-10-29 07:37:54.635 [error] [command][a752fde5-655e-4130-b2d6-5c3990c6f187] Socket error: Error: read ECONNRESET\n2025-10-29 07:37:54.635 [info] [command][a752fde5-655e-4130-b2d6-5c3990c6f187] Socket close event received\n2025-10-29 07:37:54.635 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a752fde5-655e-4130-b2d6-5c3990c6f187] Socket closed without exit code\n2025-10-29 07:38:54.640 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:38:54.643 [info] [command][950cbced-2bca-4001-ad27-97ff8a72e2f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""950cbced-2bca-4001-ad27-97ff8a72e2f8""}\n2025-10-29 07:38:54.644 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][380f305b-a7b8-45e3-bb67-071a0f67356b] remote server not configured\n2025-10-29 07:38:54.644 [error] [command][950cbced-2bca-4001-ad27-97ff8a72e2f8] Socket error: Error: read ECONNRESET\n2025-10-29 07:38:54.644 [info] [command][950cbced-2bca-4001-ad27-97ff8a72e2f8] Socket close event received\n2025-10-29 07:38:54.645 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][950cbced-2bca-4001-ad27-97ff8a72e2f8] Socket closed without exit code\n2025-10-29 07:39:54.648 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:39:54.651 [info] [command][8af698ac-a604-4717-8cf7-a95eb926166a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8af698ac-a604-4717-8cf7-a95eb926166a""}\n2025-10-29 07:39:54.651 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2809c4bc-7984-4f45-8793-10f690511dda] remote server not configured\n2025-10-29 07:39:54.651 [error] [command][8af698ac-a604-4717-8cf7-a95eb926166a] Socket error: Error: read ECONNRESET\n2025-10-29 07:39:54.652 [info] [command][8af698ac-a604-4717-8cf7-a95eb926166a] Socket close event received\n2025-10-29 07:39:54.652 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8af698ac-a604-4717-8cf7-a95eb926166a] Socket closed without exit code\n2025-10-29 07:40:54.652 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:40:54.655 [info] [command][8345a833-e37f-485b-832d-14eeced27cad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8345a833-e37f-485b-832d-14eeced27cad""}\n2025-10-29 07:40:54.656 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][517ac30e-68d6-49a8-b625-032fb627a270] remote server not configured\n2025-10-29 07:40:54.656 [error] [command][8345a833-e37f-485b-832d-14eeced27cad] Socket error: Error: read ECONNRESET\n2025-10-29 07:40:54.657 [info] [command][8345a833-e37f-485b-832d-14eeced27cad] Socket close event received\n2025-10-29 07:40:54.657 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8345a833-e37f-485b-832d-14eeced27cad] Socket closed without exit code\n2025-10-29 07:41:54.668 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:41:54.671 [info] [command][7c247330-8911-4ff7-995b-30659f183fc8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7c247330-8911-4ff7-995b-30659f183fc8""}\n2025-10-29 07:41:54.672 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][62b2acef-b42d-4179-9262-94e3947d6966] remote server not configured\n2025-10-29 07:41:54.673 [error] [command][7c247330-8911-4ff7-995b-30659f183fc8] Socket error: Error: read ECONNRESET\n2025-10-29 07:41:54.673 [info] [command][7c247330-8911-4ff7-995b-30659f183fc8] Socket close event received\n2025-10-29 07:41:54.673 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7c247330-8911-4ff7-995b-30659f183fc8] Socket closed without exit code\n2025-10-29 07:42:54.681 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:42:54.684 [info] [command][ed01e495-8470-4058-a837-966154b45049] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ed01e495-8470-4058-a837-966154b45049""}\n2025-10-29 07:42:54.684 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][9da8653b-acdf-4b59-b67e-d838072535c2] remote server not configured\n2025-10-29 07:42:54.685 [error] [command][ed01e495-8470-4058-a837-966154b45049] Socket error: Error: read ECONNRESET\n2025-10-29 07:42:54.685 [info] [command][ed01e495-8470-4058-a837-966154b45049] Socket close event received\n2025-10-29 07:42:54.685 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ed01e495-8470-4058-a837-966154b45049] Socket closed without exit code\n2025-10-29 07:43:54.696 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:43:54.699 [info] [command][6705ca2a-c61c-413b-9d96-45a3e085895a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6705ca2a-c61c-413b-9d96-45a3e085895a""}\n2025-10-29 07:43:54.699 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c2770349-a296-46ce-bf96-9f21bf76152d] remote server not configured\n2025-10-29 07:43:54.700 [error] [command][6705ca2a-c61c-413b-9d96-45a3e085895a] Socket error: Error: read ECONNRESET\n2025-10-29 07:43:54.700 [info] [command][6705ca2a-c61c-413b-9d96-45a3e085895a] Socket close event received\n2025-10-29 07:43:54.701 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6705ca2a-c61c-413b-9d96-45a3e085895a] Socket closed without exit code\n2025-10-29 07:44:54.711 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:44:54.714 [info] [command][e1f8fa0d-de16-4d4d-9801-f46037e34b10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""e1f8fa0d-de16-4d4d-9801-f46037e34b10""}\n2025-10-29 07:44:54.714 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f2b20759-8fc4-4ee9-9ecf-983ecba23bcb] remote server not configured\n2025-10-29 07:44:54.715 [error] [command][e1f8fa0d-de16-4d4d-9801-f46037e34b10] Socket error: Error: read ECONNRESET\n2025-10-29 07:44:54.715 [info] [command][e1f8fa0d-de16-4d4d-9801-f46037e34b10] Socket close event received\n2025-10-29 07:44:54.715 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][e1f8fa0d-de16-4d4d-9801-f46037e34b10] Socket closed without exit code\n2025-10-29 07:45:54.716 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:45:54.719 [info] [command][c539f32e-0b5a-44e6-9f5b-3637a66fc727] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c539f32e-0b5a-44e6-9f5b-3637a66fc727""}\n2025-10-29 07:45:54.720 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a70c5065-ac07-4a2a-a77e-1755351fee04] remote server not configured\n2025-10-29 07:45:54.721 [error] [command][c539f32e-0b5a-44e6-9f5b-3637a66fc727] Socket error: Error: read ECONNRESET\n2025-10-29 07:45:54.722 [info] [command][c539f32e-0b5a-44e6-9f5b-3637a66fc727] Socket close event received\n2025-10-29 07:45:54.722 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c539f32e-0b5a-44e6-9f5b-3637a66fc727] Socket closed without exit code\n2025-10-29 07:46:54.732 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:46:54.734 [info] [command][ea875bf5-b373-494d-b49f-fb1324aa9bde] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""ea875bf5-b373-494d-b49f-fb1324aa9bde""}\n2025-10-29 07:46:54.735 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][d5e76cc6-967f-463a-9a05-6412089f69e6] remote server not configured\n2025-10-29 07:46:54.735 [error] [command][ea875bf5-b373-494d-b49f-fb1324aa9bde] Socket error: Error: read ECONNRESET\n2025-10-29 07:46:54.736 [info] [command][ea875bf5-b373-494d-b49f-fb1324aa9bde] Socket close event received\n2025-10-29 07:46:54.736 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][ea875bf5-b373-494d-b49f-fb1324aa9bde] Socket closed without exit code\n2025-10-29 07:47:54.737 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:47:54.738 [info] [command][840462fc-a47c-48e0-b553-77c2b8284fa6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""840462fc-a47c-48e0-b553-77c2b8284fa6""}\n2025-10-29 07:47:54.739 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][70e69683-66ea-4cff-8b03-9fab7da85df0] remote server not configured\n2025-10-29 07:47:54.739 [error] [command][840462fc-a47c-48e0-b553-77c2b8284fa6] Socket error: Error: read ECONNRESET\n2025-10-29 07:47:54.739 [info] [command][840462fc-a47c-48e0-b553-77c2b8284fa6] Socket close event received\n2025-10-29 07:47:54.740 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][840462fc-a47c-48e0-b553-77c2b8284fa6] Socket closed without exit code\n2025-10-29 07:48:54.743 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:48:54.746 [info] [command][41e95e14-e728-40cd-85ed-5021512150aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""41e95e14-e728-40cd-85ed-5021512150aa""}\n2025-10-29 07:48:54.746 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][cdfda50c-6b01-4300-a2df-42e1d50e6fb1] remote server not configured\n2025-10-29 07:48:54.747 [error] [command][41e95e14-e728-40cd-85ed-5021512150aa] Socket error: Error: read ECONNRESET\n2025-10-29 07:48:54.747 [info] [command][41e95e14-e728-40cd-85ed-5021512150aa] Socket close event received\n2025-10-29 07:48:54.747 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][41e95e14-e728-40cd-85ed-5021512150aa] Socket closed without exit code\n2025-10-29 07:49:54.758 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:49:54.760 [info] [command][7c9e88f8-4a61-48f5-b50f-df444bd7da77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7c9e88f8-4a61-48f5-b50f-df444bd7da77""}\n2025-10-29 07:49:54.761 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7b51a3f2-3dd7-4888-88c0-97fe59e822e4] remote server not configured\n2025-10-29 07:49:54.761 [error] [command][7c9e88f8-4a61-48f5-b50f-df444bd7da77] Socket error: Error: read ECONNRESET\n2025-10-29 07:49:54.762 [info] [command][7c9e88f8-4a61-48f5-b50f-df444bd7da77] Socket close event received\n2025-10-29 07:49:54.762 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7c9e88f8-4a61-48f5-b50f-df444bd7da77] Socket closed without exit code\n2025-10-29 07:50:54.763 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:50:54.765 [info] [command][62916adb-7f5f-4952-aae4-6cd7d7876db9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""62916adb-7f5f-4952-aae4-6cd7d7876db9""}\n2025-10-29 07:50:54.766 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][13612211-77b5-4ab7-8509-14170c80bacb] remote server not configured\n2025-10-29 07:50:54.766 [error] [command][62916adb-7f5f-4952-aae4-6cd7d7876db9] Socket error: Error: read ECONNRESET\n2025-10-29 07:50:54.766 [info] [command][62916adb-7f5f-4952-aae4-6cd7d7876db9] Socket close event received\n2025-10-29 07:50:54.766 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][62916adb-7f5f-4952-aae4-6cd7d7876db9] Socket closed without exit code\n2025-10-29 07:51:54.776 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:51:54.779 [info] [command][c6c0b777-6a06-4cb0-98f0-b68f812cec12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""c6c0b777-6a06-4cb0-98f0-b68f812cec12""}\n2025-10-29 07:51:54.779 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c86bb487-3893-4483-b354-81124d9c7236] remote server not configured\n2025-10-29 07:51:54.780 [error] [command][c6c0b777-6a06-4cb0-98f0-b68f812cec12] Socket error: Error: read ECONNRESET\n2025-10-29 07:51:54.780 [info] [command][c6c0b777-6a06-4cb0-98f0-b68f812cec12] Socket close event received\n2025-10-29 07:51:54.780 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][c6c0b777-6a06-4cb0-98f0-b68f812cec12] Socket closed without exit code\n2025-10-29 07:52:54.787 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:52:54.790 [info] [command][1b523abe-52aa-42cb-b406-d277a50b6b63] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1b523abe-52aa-42cb-b406-d277a50b6b63""}\n2025-10-29 07:52:54.791 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][73a528f2-1121-43d1-b288-f6b71d26bb79] remote server not configured\n2025-10-29 07:52:54.791 [error] [command][1b523abe-52aa-42cb-b406-d277a50b6b63] Socket error: Error: read ECONNRESET\n2025-10-29 07:52:54.792 [info] [command][1b523abe-52aa-42cb-b406-d277a50b6b63] Socket close event received\n2025-10-29 07:52:54.792 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1b523abe-52aa-42cb-b406-d277a50b6b63] Socket closed without exit code\n2025-10-29 07:53:54.802 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:53:54.805 [info] [command][d0d88bd5-44af-443d-9651-8e232502bcd7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d0d88bd5-44af-443d-9651-8e232502bcd7""}\n2025-10-29 07:53:54.806 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][07b2e541-776c-4844-8b56-6035f2669281] remote server not configured\n2025-10-29 07:53:54.806 [error] [command][d0d88bd5-44af-443d-9651-8e232502bcd7] Socket error: Error: read ECONNRESET\n2025-10-29 07:53:54.807 [info] [command][d0d88bd5-44af-443d-9651-8e232502bcd7] Socket close event received\n2025-10-29 07:53:54.807 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d0d88bd5-44af-443d-9651-8e232502bcd7] Socket closed without exit code\n2025-10-29 07:54:54.818 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:54:54.821 [info] [command][da287f8a-529e-4940-b3b0-440ca90e7467] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""da287f8a-529e-4940-b3b0-440ca90e7467""}\n2025-10-29 07:54:54.822 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7cb2c491-58a4-441d-b509-fe562b9280f9] remote server not configured\n2025-10-29 07:54:54.822 [error] [command][da287f8a-529e-4940-b3b0-440ca90e7467] Socket error: Error: read ECONNRESET\n2025-10-29 07:54:54.822 [info] [command][da287f8a-529e-4940-b3b0-440ca90e7467] Socket close event received\n2025-10-29 07:54:54.822 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][da287f8a-529e-4940-b3b0-440ca90e7467] Socket closed without exit code\n2025-10-29 07:55:54.833 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:55:54.836 [info] [command][2b0836c9-259e-424b-81a2-4cce7ba8ffa9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""2b0836c9-259e-424b-81a2-4cce7ba8ffa9""}\n2025-10-29 07:55:54.836 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7f0f3719-c575-4e12-a980-9cd014582069] remote server not configured\n2025-10-29 07:55:54.837 [error] [command][2b0836c9-259e-424b-81a2-4cce7ba8ffa9] Socket error: Error: read ECONNRESET\n2025-10-29 07:55:54.838 [info] [command][2b0836c9-259e-424b-81a2-4cce7ba8ffa9] Socket close event received\n2025-10-29 07:55:54.838 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][2b0836c9-259e-424b-81a2-4cce7ba8ffa9] Socket closed without exit code\n2025-10-29 07:56:54.838 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:56:54.841 [info] [command][4f365617-cd17-4638-99ee-939d0c456272] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4f365617-cd17-4638-99ee-939d0c456272""}\n2025-10-29 07:56:54.841 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][23d1eee4-1ace-412c-8cfc-b9f3986e6165] remote server not configured\n2025-10-29 07:56:54.842 [error] [command][4f365617-cd17-4638-99ee-939d0c456272] Socket error: Error: read ECONNRESET\n2025-10-29 07:56:54.842 [info] [command][4f365617-cd17-4638-99ee-939d0c456272] Socket close event received\n2025-10-29 07:56:54.843 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4f365617-cd17-4638-99ee-939d0c456272] Socket closed without exit code\n2025-10-29 07:57:54.852 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:57:54.855 [info] [command][1ed0c2de-3645-4fd6-a1bb-68e054bf21ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""1ed0c2de-3645-4fd6-a1bb-68e054bf21ec""}\n2025-10-29 07:57:54.856 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][968f3965-48ae-4141-a674-f4df1edcc24f] remote server not configured\n2025-10-29 07:57:54.856 [error] [command][1ed0c2de-3645-4fd6-a1bb-68e054bf21ec] Socket error: Error: read ECONNRESET\n2025-10-29 07:57:54.856 [info] [command][1ed0c2de-3645-4fd6-a1bb-68e054bf21ec] Socket close event received\n2025-10-29 07:57:54.857 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][1ed0c2de-3645-4fd6-a1bb-68e054bf21ec] Socket closed without exit code\n2025-10-29 07:58:54.862 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:58:54.865 [info] [command][f9f0eb55-3911-4e27-b3a6-83329bd3ccab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f9f0eb55-3911-4e27-b3a6-83329bd3ccab""}\n2025-10-29 07:58:54.865 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][46f7a85f-b4eb-4175-b91a-4dfa808b1713] remote server not configured\n2025-10-29 07:58:54.866 [error] [command][f9f0eb55-3911-4e27-b3a6-83329bd3ccab] Socket error: Error: read ECONNRESET\n2025-10-29 07:58:54.866 [info] [command][f9f0eb55-3911-4e27-b3a6-83329bd3ccab] Socket close event received\n2025-10-29 07:58:54.866 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f9f0eb55-3911-4e27-b3a6-83329bd3ccab] Socket closed without exit code\n2025-10-29 07:59:54.873 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 07:59:54.876 [info] [command][08c98a94-b979-4f13-91e5-20f87993ed3e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""08c98a94-b979-4f13-91e5-20f87993ed3e""}\n2025-10-29 07:59:54.877 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4289c587-5cd9-46d2-8975-973422c6a67e] remote server not configured\n2025-10-29 07:59:54.877 [error] [command][08c98a94-b979-4f13-91e5-20f87993ed3e] Socket error: Error: read ECONNRESET\n2025-10-29 07:59:54.877 [info] [command][08c98a94-b979-4f13-91e5-20f87993ed3e] Socket close event received\n2025-10-29 07:59:54.878 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][08c98a94-b979-4f13-91e5-20f87993ed3e] Socket closed without exit code\n2025-10-29 08:00:54.902 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:00:54.905 [info] [command][fe690a2c-f4ab-4939-80b3-71eddbe839b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""fe690a2c-f4ab-4939-80b3-71eddbe839b3""}\n2025-10-29 08:00:54.906 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f5019ff7-48b5-43be-ba70-5027d097308f] remote server not configured\n2025-10-29 08:00:54.907 [error] [command][fe690a2c-f4ab-4939-80b3-71eddbe839b3] Socket error: Error: read ECONNRESET\n2025-10-29 08:00:54.907 [info] [command][fe690a2c-f4ab-4939-80b3-71eddbe839b3] Socket close event received\n2025-10-29 08:00:54.907 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][fe690a2c-f4ab-4939-80b3-71eddbe839b3] Socket closed without exit code\n2025-10-29 08:01:54.933 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:01:54.936 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][81ad116d-b032-4dee-beeb-e94ca2f9c1f7] remote server not configured\n2025-10-29 08:01:54.937 [info] [command][d9818146-c0ee-4dc7-b04e-c69ea2f6ad14] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d9818146-c0ee-4dc7-b04e-c69ea2f6ad14""}\n2025-10-29 08:01:54.938 [error] [command][d9818146-c0ee-4dc7-b04e-c69ea2f6ad14] Socket error: Error: read ECONNRESET\n2025-10-29 08:01:54.939 [info] [command][d9818146-c0ee-4dc7-b04e-c69ea2f6ad14] Socket close event received\n2025-10-29 08:01:54.939 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d9818146-c0ee-4dc7-b04e-c69ea2f6ad14] Socket closed without exit code\n2025-10-29 08:02:54.944 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:02:54.947 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][f3b6fd2e-bfaa-4e76-866b-a94a87c7b30f] remote server not configured\n2025-10-29 08:02:54.947 [info] [command][a4df279e-4859-4c87-a3ef-014bef42ae13] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""a4df279e-4859-4c87-a3ef-014bef42ae13""}\n2025-10-29 08:02:54.948 [error] [command][a4df279e-4859-4c87-a3ef-014bef42ae13] Socket error: Error: read ECONNRESET\n2025-10-29 08:02:54.948 [info] [command][a4df279e-4859-4c87-a3ef-014bef42ae13] Socket close event received\n2025-10-29 08:02:54.948 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][a4df279e-4859-4c87-a3ef-014bef42ae13] Socket closed without exit code\n2025-10-29 08:03:54.959 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:03:54.962 [info] [command][d182cc91-a169-45b8-9aec-8f7fca231ab1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d182cc91-a169-45b8-9aec-8f7fca231ab1""}\n2025-10-29 08:03:54.963 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a446dd5a-edfc-4536-b48b-16ca198db056] remote server not configured\n2025-10-29 08:03:54.963 [error] [command][d182cc91-a169-45b8-9aec-8f7fca231ab1] Socket error: Error: read ECONNRESET\n2025-10-29 08:03:54.963 [info] [command][d182cc91-a169-45b8-9aec-8f7fca231ab1] Socket close event received\n2025-10-29 08:03:54.964 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d182cc91-a169-45b8-9aec-8f7fca231ab1] Socket closed without exit code\n2025-10-29 08:04:54.969 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:04:54.972 [info] [command][9d66b74b-21bd-4439-9fed-49334aacd46b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""9d66b74b-21bd-4439-9fed-49334aacd46b""}\n2025-10-29 08:04:54.973 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4a849fc1-2d57-4465-a53b-e9dccb7bd065] remote server not configured\n2025-10-29 08:04:54.973 [error] [command][9d66b74b-21bd-4439-9fed-49334aacd46b] Socket error: Error: read ECONNRESET\n2025-10-29 08:04:54.973 [info] [command][9d66b74b-21bd-4439-9fed-49334aacd46b] Socket close event received\n2025-10-29 08:04:54.974 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][9d66b74b-21bd-4439-9fed-49334aacd46b] Socket closed without exit code\n2025-10-29 08:05:54.985 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:05:54.987 [info] [command][8e9b38c8-5b91-4f9a-b43c-59275ce77491] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8e9b38c8-5b91-4f9a-b43c-59275ce77491""}\n2025-10-29 08:05:54.987 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][543e7041-821c-4598-8f99-48cc659d529f] remote server not configured\n2025-10-29 08:05:54.988 [error] [command][8e9b38c8-5b91-4f9a-b43c-59275ce77491] Socket error: Error: read ECONNRESET\n2025-10-29 08:05:54.988 [info] [command][8e9b38c8-5b91-4f9a-b43c-59275ce77491] Socket close event received\n2025-10-29 08:05:54.989 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8e9b38c8-5b91-4f9a-b43c-59275ce77491] Socket closed without exit code\n2025-10-29 08:06:55.000 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:06:55.003 [info] [command][861d6205-5b1c-4253-a852-49dd04671618] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""861d6205-5b1c-4253-a852-49dd04671618""}\n2025-10-29 08:06:55.004 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][7c7c8c6d-c405-481a-80d4-662406d8934b] remote server not configured\n2025-10-29 08:06:55.004 [error] [command][861d6205-5b1c-4253-a852-49dd04671618] Socket error: Error: read ECONNRESET\n2025-10-29 08:06:55.004 [info] [command][861d6205-5b1c-4253-a852-49dd04671618] Socket close event received\n2025-10-29 08:06:55.004 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][861d6205-5b1c-4253-a852-49dd04671618] Socket closed without exit code\n2025-10-29 08:07:55.012 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:07:55.015 [info] [command][6622ac39-af54-4379-a243-05253a77e67b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6622ac39-af54-4379-a243-05253a77e67b""}\n2025-10-29 08:07:55.016 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][ae9b7fc4-678b-49b8-9e60-10b803f315f2] remote server not configured\n2025-10-29 08:07:55.016 [error] [command][6622ac39-af54-4379-a243-05253a77e67b] Socket error: Error: read ECONNRESET\n2025-10-29 08:07:55.017 [info] [command][6622ac39-af54-4379-a243-05253a77e67b] Socket close event received\n2025-10-29 08:07:55.017 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6622ac39-af54-4379-a243-05253a77e67b] Socket closed without exit code\n2025-10-29 08:08:55.018 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:08:55.021 [info] [command][202ebc21-a575-4119-961e-ab5ed8d00eb0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""202ebc21-a575-4119-961e-ab5ed8d00eb0""}\n2025-10-29 08:08:55.022 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][509a126c-4a0a-4ff0-876d-8a8d6b87dd51] remote server not configured\n2025-10-29 08:08:55.022 [error] [command][202ebc21-a575-4119-961e-ab5ed8d00eb0] Socket error: Error: read ECONNRESET\n2025-10-29 08:08:55.022 [info] [command][202ebc21-a575-4119-961e-ab5ed8d00eb0] Socket close event received\n2025-10-29 08:08:55.023 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][202ebc21-a575-4119-961e-ab5ed8d00eb0] Socket closed without exit code\n2025-10-29 08:09:55.024 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:09:55.027 [info] [command][d49bc48c-da76-46f8-ba8c-cea444ea8d3c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""d49bc48c-da76-46f8-ba8c-cea444ea8d3c""}\n2025-10-29 08:09:55.028 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][c2a4b427-9b41-4ffb-955d-f5f23bc804af] remote server not configured\n2025-10-29 08:09:55.028 [error] [command][d49bc48c-da76-46f8-ba8c-cea444ea8d3c] Socket error: Error: read ECONNRESET\n2025-10-29 08:09:55.028 [info] [command][d49bc48c-da76-46f8-ba8c-cea444ea8d3c] Socket close event received\n2025-10-29 08:09:55.029 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][d49bc48c-da76-46f8-ba8c-cea444ea8d3c] Socket closed without exit code\n2025-10-29 08:10:55.037 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:10:55.038 [info] [command][7836c686-6984-42a5-98e5-3766995f8b20] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""7836c686-6984-42a5-98e5-3766995f8b20""}\n2025-10-29 08:10:55.039 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][fe220a63-6aac-43d0-a308-80ac1b48669d] remote server not configured\n2025-10-29 08:10:55.039 [error] [command][7836c686-6984-42a5-98e5-3766995f8b20] Socket error: Error: read ECONNRESET\n2025-10-29 08:10:55.040 [info] [command][7836c686-6984-42a5-98e5-3766995f8b20] Socket close event received\n2025-10-29 08:10:55.040 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][7836c686-6984-42a5-98e5-3766995f8b20] Socket closed without exit code\n2025-10-29 08:11:55.052 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:11:55.055 [info] [command][6d58759b-a30f-4128-8368-9650beb18175] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""6d58759b-a30f-4128-8368-9650beb18175""}\n2025-10-29 08:11:55.055 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][21f7143b-83ac-4c82-a8e4-a0782db4061f] remote server not configured\n2025-10-29 08:11:55.056 [error] [command][6d58759b-a30f-4128-8368-9650beb18175] Socket error: Error: read ECONNRESET\n2025-10-29 08:11:55.056 [info] [command][6d58759b-a30f-4128-8368-9650beb18175] Socket close event received\n2025-10-29 08:11:55.057 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][6d58759b-a30f-4128-8368-9650beb18175] Socket closed without exit code\n2025-10-29 08:12:55.065 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:12:55.067 [info] [command][4f5ac456-f789-4952-a28a-dff9982c92a1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""4f5ac456-f789-4952-a28a-dff9982c92a1""}\n2025-10-29 08:12:55.068 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][34f9b5bd-1d2c-42b4-aa1a-fee35f3fd561] remote server not configured\n2025-10-29 08:12:55.068 [error] [command][4f5ac456-f789-4952-a28a-dff9982c92a1] Socket error: Error: read ECONNRESET\n2025-10-29 08:12:55.068 [info] [command][4f5ac456-f789-4952-a28a-dff9982c92a1] Socket close event received\n2025-10-29 08:12:55.068 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][4f5ac456-f789-4952-a28a-dff9982c92a1] Socket closed without exit code\n2025-10-29 08:13:55.089 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:13:55.096 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][4bee80fc-3d43-40be-ac1a-c0bb70ea33ea] remote server not configured\n2025-10-29 08:13:55.098 [info] [command][059436f6-550b-44f7-84a8-5537ee6f171d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""059436f6-550b-44f7-84a8-5537ee6f171d""}\n2025-10-29 08:13:55.102 [error] [command][059436f6-550b-44f7-84a8-5537ee6f171d] Socket error: Error: read ECONNRESET\n2025-10-29 08:13:55.103 [info] [command][059436f6-550b-44f7-84a8-5537ee6f171d] Socket close event received\n2025-10-29 08:13:55.103 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][059436f6-550b-44f7-84a8-5537ee6f171d] Socket closed without exit code\n2025-10-29 08:14:55.110 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:14:55.112 [info] [command][8def998a-6dc7-4e7a-a653-06c3366d83c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""8def998a-6dc7-4e7a-a653-06c3366d83c9""}\n2025-10-29 08:14:55.113 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2cdfa211-3c6d-4395-9af7-59ba7d2ddb0a] remote server not configured\n2025-10-29 08:14:55.115 [error] [command][8def998a-6dc7-4e7a-a653-06c3366d83c9] Socket error: Error: read ECONNRESET\n2025-10-29 08:14:55.115 [info] [command][8def998a-6dc7-4e7a-a653-06c3366d83c9] Socket close event received\n2025-10-29 08:14:55.115 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][8def998a-6dc7-4e7a-a653-06c3366d83c9] Socket closed without exit code\n2025-10-29 08:15:55.120 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:15:55.122 [info] [command][f623b400-9427-43e5-8958-4b32375cf24d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""f623b400-9427-43e5-8958-4b32375cf24d""}\n2025-10-29 08:15:55.122 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][a2f52157-abdc-4fae-9ada-a0465769a847] remote server not configured\n2025-10-29 08:15:55.123 [error] [command][f623b400-9427-43e5-8958-4b32375cf24d] Socket error: Error: read ECONNRESET\n2025-10-29 08:15:55.123 [info] [command][f623b400-9427-43e5-8958-4b32375cf24d] Socket close event received\n2025-10-29 08:15:55.123 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][f623b400-9427-43e5-8958-4b32375cf24d] Socket closed without exit code\n2025-10-29 08:16:55.128 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56487...\n2025-10-29 08:16:55.130 [info] [command][48c8e57e-b7c2-4dd7-a662-b3965a63bccb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bf11df0a-a510-4abc-87c9-121bfdb07854"",""id"":""48c8e57e-b7c2-4dd7-a662-b3965a63bccb""}\n2025-10-29 08:16:55.130 [error] [forwarding][multiplex][127.0.0.1:56487 -> unknown}][2fb7678b-d35a-4fe0-97aa-a37cf5c06cff] remote server not configured\n2025-10-29 08:16:55.131 [error] [command][48c8e57e-b7c2-4dd7-a662-b3965a63bccb] Socket error: Error: read ECONNRESET\n2025-10-29 08:16:55.131 [info] [command][48c8e57e-b7c2-4dd7-a662-b3965a63bccb] Socket close event received\n2025-10-29 08:16:55.131 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:56487: Error: [command][48c8e57e-b7c2-4dd7-a662-b3965a63bccb] Socket closed without exit code\n2025-10-29 08:17:13.436 [info] Resolving ssh remote authority 'login.haicore.berlin' (Unparsed 'ssh-remote+7b22686f73744e616d65223a226c6f67696e2e686169636f72652e6265726c696e227d') (attempt #1)\n2025-10-29 08:17:13.443 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:17:13.443 [info] Using configured platform linux for remote host login.haicore.berlin\n2025-10-29 08:17:13.444 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:17:13.447 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d168e526-a08e-4b53-be1b-6d806d3ecb57.sh"" | ssh -T -D 53645 login.haicore.berlin bash --login -c bash\n2025-10-29 08:17:13.447 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d168e526-a08e-4b53-be1b-6d806d3ecb57.sh"" | ssh -T -D 53645 login.haicore.berlin bash --login -c bash\n2025-10-29 08:17:13.447 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:17:13.447 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:17:15.091 [info] (ssh_tunnel) stdout: Configuring Cursor Server on Remote\n\n2025-10-29 08:17:15.097 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/961800067\n\n2025-10-29 08:17:15.140 [info] (ssh_tunnel) stdout: Locking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-29 08:17:15.145 [info] (ssh_tunnel) stdout: Server script already installed in /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server\nChecking node executable\n\n2025-10-29 08:17:15.286 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-10-29 08:17:15.293 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-29 08:17:15.310 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-10-29 08:17:15.313 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-29 08:17:15.318 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server\n\n2025-10-29 08:17:15.321 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-29 08:17:15.329 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js 3a8411eb-5322-429f-82be-459b20240cc8 0\n\n2025-10-29 08:17:15.331 [info] (ssh_tunnel) stdout: Multiplex server started with PID 726504 and wrote pid to file /run/user/961800067/cursor-remote-multiplex.pid.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\nReading multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\nMultiplex server token file found\n\n2025-10-29 08:17:15.357 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/961800067/cursor-remote-multiplex.log.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-29 08:17:15.846 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-10-29 08:17:15.864 [info] (ssh_tunnel) stdout: Code server script is not running\nCreating code server token file /run/user/961800067/cursor-remote-code.token.c403edc4db82e26fa41a0903d75ac6d0\nStarting code server script /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/961800067/cursor-remote-code.token.c403edc4db82e26fa41a0903d75ac6d0 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/961800067/cursor-remote-code.log.c403edc4db82e26fa41a0903d75ac6d0 &\nCode server started with PID 726528 and wrote pid to file /run/user/961800067/cursor-remote-code.pid.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-29 08:17:15.870 [info] (ssh_tunnel) stdout: Code server log file is /run/user/961800067/cursor-remote-code.log.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-29 08:17:16.393 [info] (ssh_tunnel) stdout: 9efe0eb30b9f67ac933f7d4b: start\nexitCode==0==\nnodeExecutable==/home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==36707==\nmultiplexConnectionToken==3a8411eb-5322-429f-82be-459b20240cc8==\ncodeListeningOn==45865==\ncodeConnectionToken==7e1e20b8-0b29-4605-a891-4c61c5c55457==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n9efe0eb30b9f67ac933f7d4b: end\n\n2025-10-29 08:17:16.394 [info] Server install command exit code: 0\n2025-10-29 08:17:16.394 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d168e526-a08e-4b53-be1b-6d806d3ecb57.sh\n2025-10-29 08:17:16.395 [info] [forwarding][code] creating new forwarding server\n2025-10-29 08:17:16.395 [info] [forwarding][code] server listening on 127.0.0.1:53651\n2025-10-29 08:17:16.395 [info] [forwarding][code] Set up server\n2025-10-29 08:17:16.395 [info] [remote-ssh] codeListeningOn (remote=127.0.0.1:45865; local=127.0.0.1:53651) codeConnectionToken: 7e1e20b8-0b29-4605-a891-4c61c5c55457\n2025-10-29 08:17:16.395 [info] [forwarding][multiplex] creating new forwarding server\n2025-10-29 08:17:16.395 [info] [forwarding][multiplex] server listening on 127.0.0.1:53652\n2025-10-29 08:17:16.395 [info] [forwarding][multiplex] Set up server\n2025-10-29 08:17:16.397 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: 3a8411eb-5322-429f-82be-459b20240cc8\n2025-10-29 08:17:16.397 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:17:16.397 [info] [remote-ssh] Resolved exec server. Socks port: 53645\n2025-10-29 08:17:16.397 [info] Setting up 0 default forwarded ports\n2025-10-29 08:17:16.397 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":53651,""connectionToken"":""7e1e20b8-0b29-4605-a891-4c61c5c55457"",""extensionHostEnv"":{}}. Socks port: 53645\n2025-10-29 08:17:16.398 [info] (ssh_tunnel) stdout: Unlocking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n \n***********************************************************************\n* This terminal is used to establish and maintain the SSH connection. *\n* Closing this terminal will terminate the connection and disconnect *\n* Cursor from the remote server. *\n***********************************************************************\n\n2025-10-29 08:17:16.398 [info] [command][c4b0ed62-088a-4653-996d-ef5b31fd2cf3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""c4b0ed62-088a-4653-996d-ef5b31fd2cf3""}\n2025-10-29 08:17:16.399 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][7b4ff57e-7c7a-4b5a-b54d-35ee979ef117] received connection request\n2025-10-29 08:17:16.438 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][d33657a0-fa1e-4545-86fa-a233fdfc710f] received connection request\n2025-10-29 08:17:16.484 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][7b4ff57e-7c7a-4b5a-b54d-35ee979ef117] socks forwarding established\n2025-10-29 08:17:16.515 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][d33657a0-fa1e-4545-86fa-a233fdfc710f] socks forwarding established\n2025-10-29 08:17:16.625 [info] [command][c4b0ed62-088a-4653-996d-ef5b31fd2cf3] Process exited with code 0\n2025-10-29 08:17:16.626 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][7b4ff57e-7c7a-4b5a-b54d-35ee979ef117] socks connection closed\n2025-10-29 08:17:16.626 [info] [command][c4b0ed62-088a-4653-996d-ef5b31fd2cf3] Socket close event received\n2025-10-29 08:17:16.652 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][3642c1f7-0800-433b-a19f-1c78598a3a4e] received connection request\n2025-10-29 08:17:16.748 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][3642c1f7-0800-433b-a19f-1c78598a3a4e] socks forwarding established\n2025-10-29 08:17:17.126 [info] Saved platform linux for remote host login.haicore.berlin\n2025-10-29 08:17:20.880 [info] [tunnel-forwarding][localhost:8888 -> 127.0.0.1:8888] server listening\n2025-10-29 08:17:20.880 [info] Cross binding to [::1]:8888. Originally bound to 127.0.0.1:8888\n2025-10-29 08:17:20.880 [info] [tunnel-forwarding][::1:8888 -> 127.0.0.1:8888] server listening\n2025-10-29 08:17:20.887 [info] [tunnel-forwarding][localhost:62884 -> localhost:6006] server listening\n2025-10-29 08:17:20.887 [info] Cross binding to [::1]:62884. Originally bound to 127.0.0.1:62884\n2025-10-29 08:17:20.887 [info] [tunnel-forwarding][::1:62884 -> localhost:6006] server listening\n2025-10-29 08:17:28.565 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][7abd9693-21bb-4955-b152-cadc86f06baa] received connection request\n2025-10-29 08:17:28.629 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][7abd9693-21bb-4955-b152-cadc86f06baa] socks forwarding established\n2025-10-29 08:17:33.078 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][7abd9693-21bb-4955-b152-cadc86f06baa] socks connection closed\n2025-10-29 08:18:16.631 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:18:16.633 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][c2d5a8b3-3b23-4ffd-940e-dd1c75aff2f7] received connection request\n2025-10-29 08:18:16.633 [info] [command][cb3831a4-0201-43e5-ba85-666b91209746] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""cb3831a4-0201-43e5-ba85-666b91209746""}\n2025-10-29 08:18:16.765 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][c2d5a8b3-3b23-4ffd-940e-dd1c75aff2f7] socks forwarding established\n2025-10-29 08:18:16.872 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][c2d5a8b3-3b23-4ffd-940e-dd1c75aff2f7] socks connection closed\n2025-10-29 08:18:16.873 [info] [command][cb3831a4-0201-43e5-ba85-666b91209746] Process exited with code 0\n2025-10-29 08:18:16.873 [info] [command][cb3831a4-0201-43e5-ba85-666b91209746] Socket close event received\n2025-10-29 08:19:16.878 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:19:16.882 [info] [command][332120e9-66ae-4c16-a45d-a5d0a34496bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""332120e9-66ae-4c16-a45d-a5d0a34496bd""}\n2025-10-29 08:19:16.883 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][41b51dd1-2ffb-46ec-9e71-8f6178ecd2f9] received connection request\n2025-10-29 08:19:16.994 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][41b51dd1-2ffb-46ec-9e71-8f6178ecd2f9] socks forwarding established\n2025-10-29 08:19:17.090 [info] [command][332120e9-66ae-4c16-a45d-a5d0a34496bd] Process exited with code 0\n2025-10-29 08:19:17.091 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][41b51dd1-2ffb-46ec-9e71-8f6178ecd2f9] socks connection closed\n2025-10-29 08:19:17.091 [info] [command][332120e9-66ae-4c16-a45d-a5d0a34496bd] Socket close event received\n2025-10-29 08:20:17.094 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:20:17.096 [info] [command][d8da7c0a-6afc-46bb-b534-19bd50d86bc6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""d8da7c0a-6afc-46bb-b534-19bd50d86bc6""}\n2025-10-29 08:20:17.097 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][9068c70c-e3b2-4035-8276-44ffb9352515] received connection request\n2025-10-29 08:20:17.187 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][9068c70c-e3b2-4035-8276-44ffb9352515] socks forwarding established\n2025-10-29 08:20:17.265 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][9068c70c-e3b2-4035-8276-44ffb9352515] socks connection closed\n2025-10-29 08:20:17.265 [info] [command][d8da7c0a-6afc-46bb-b534-19bd50d86bc6] Process exited with code 0\n2025-10-29 08:20:17.265 [info] [command][d8da7c0a-6afc-46bb-b534-19bd50d86bc6] Socket close event received\n2025-10-29 08:21:17.271 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:21:17.272 [info] [command][30795c1f-42e3-45be-a97f-f0237cb80528] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""30795c1f-42e3-45be-a97f-f0237cb80528""}\n2025-10-29 08:21:17.272 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][fbbe228a-20cc-48d7-916b-037c9e3eba87] received connection request\n2025-10-29 08:21:17.349 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][fbbe228a-20cc-48d7-916b-037c9e3eba87] socks forwarding established\n2025-10-29 08:21:17.431 [info] [command][30795c1f-42e3-45be-a97f-f0237cb80528] Process exited with code 0\n2025-10-29 08:21:17.431 [info] [command][30795c1f-42e3-45be-a97f-f0237cb80528] Socket close event received\n2025-10-29 08:21:17.431 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][fbbe228a-20cc-48d7-916b-037c9e3eba87] socks connection closed\n2025-10-29 08:22:17.433 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:22:17.435 [info] [command][cd62cf04-75db-4fa6-9c38-002211411150] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""cd62cf04-75db-4fa6-9c38-002211411150""}\n2025-10-29 08:22:17.435 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][6d6e9e2c-df40-4d31-8ae7-bd4a8674a7c6] received connection request\n2025-10-29 08:22:17.515 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][6d6e9e2c-df40-4d31-8ae7-bd4a8674a7c6] socks forwarding established\n2025-10-29 08:22:17.615 [info] [command][cd62cf04-75db-4fa6-9c38-002211411150] Process exited with code 0\n2025-10-29 08:22:17.615 [info] [command][cd62cf04-75db-4fa6-9c38-002211411150] Socket close event received\n2025-10-29 08:22:17.619 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][6d6e9e2c-df40-4d31-8ae7-bd4a8674a7c6] socks connection closed\n2025-10-29 08:23:17.616 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:23:17.619 [info] [command][4749fc27-6c1b-4e57-afc8-2412ef141302] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""4749fc27-6c1b-4e57-afc8-2412ef141302""}\n2025-10-29 08:23:17.621 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][d121d380-c551-47fd-ba19-24034b9a89e2] received connection request\n2025-10-29 08:23:17.697 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][d121d380-c551-47fd-ba19-24034b9a89e2] socks forwarding established\n2025-10-29 08:23:17.780 [info] [command][4749fc27-6c1b-4e57-afc8-2412ef141302] Process exited with code 0\n2025-10-29 08:23:17.781 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][d121d380-c551-47fd-ba19-24034b9a89e2] socks connection closed\n2025-10-29 08:23:17.781 [info] [command][4749fc27-6c1b-4e57-afc8-2412ef141302] Socket close event received\n2025-10-29 08:24:17.785 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:24:17.786 [info] [command][513e5059-96f1-469b-bb66-27106a254745] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""513e5059-96f1-469b-bb66-27106a254745""}\n2025-10-29 08:24:17.786 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][1a77f67d-5198-4ab1-8895-c8fe66ed650c] received connection request\n2025-10-29 08:24:17.865 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][1a77f67d-5198-4ab1-8895-c8fe66ed650c] socks forwarding established\n2025-10-29 08:24:17.959 [info] [command][513e5059-96f1-469b-bb66-27106a254745] Process exited with code 0\n2025-10-29 08:24:17.959 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][1a77f67d-5198-4ab1-8895-c8fe66ed650c] socks connection closed\n2025-10-29 08:24:17.959 [info] [command][513e5059-96f1-469b-bb66-27106a254745] Socket close event received\n2025-10-29 08:25:17.964 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:25:17.966 [info] [command][80da4306-0350-41c9-b3cc-f2869580fe6a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""80da4306-0350-41c9-b3cc-f2869580fe6a""}\n2025-10-29 08:25:17.967 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][2074cfbe-1ded-47da-ac44-cabab38dbbaa] received connection request\n2025-10-29 08:25:18.044 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][2074cfbe-1ded-47da-ac44-cabab38dbbaa] socks forwarding established\n2025-10-29 08:25:18.157 [info] [command][80da4306-0350-41c9-b3cc-f2869580fe6a] Process exited with code 0\n2025-10-29 08:25:18.158 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][2074cfbe-1ded-47da-ac44-cabab38dbbaa] socks connection closed\n2025-10-29 08:25:18.158 [info] [command][80da4306-0350-41c9-b3cc-f2869580fe6a] Socket close event received\n2025-10-29 08:26:18.161 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:26:18.165 [info] [command][ad0ec6b5-7442-46f3-9c66-c6f3e53026ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""ad0ec6b5-7442-46f3-9c66-c6f3e53026ce""}\n2025-10-29 08:26:18.166 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][40fcbfe1-2b78-4b54-8813-27f5ee3def4d] received connection request\n2025-10-29 08:26:18.251 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][40fcbfe1-2b78-4b54-8813-27f5ee3def4d] socks forwarding established\n2025-10-29 08:26:18.365 [info] [command][ad0ec6b5-7442-46f3-9c66-c6f3e53026ce] Process exited with code 0\n2025-10-29 08:26:18.366 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][40fcbfe1-2b78-4b54-8813-27f5ee3def4d] socks connection closed\n2025-10-29 08:26:18.366 [info] [command][ad0ec6b5-7442-46f3-9c66-c6f3e53026ce] Socket close event received\n2025-10-29 08:27:18.369 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:27:18.370 [info] [command][314d9d9f-aa7a-49be-affb-146448a96db7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""314d9d9f-aa7a-49be-affb-146448a96db7""}\n2025-10-29 08:27:18.371 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][b682caba-8710-4e48-9503-6ba1bb14e5a2] received connection request\n2025-10-29 08:27:18.462 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][b682caba-8710-4e48-9503-6ba1bb14e5a2] socks forwarding established\n2025-10-29 08:27:18.554 [info] [command][314d9d9f-aa7a-49be-affb-146448a96db7] Process exited with code 0\n2025-10-29 08:27:18.555 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][b682caba-8710-4e48-9503-6ba1bb14e5a2] socks connection closed\n2025-10-29 08:27:18.555 [info] [command][314d9d9f-aa7a-49be-affb-146448a96db7] Socket close event received\n2025-10-29 08:28:18.555 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:28:18.557 [info] [command][2d361692-ef66-4220-9928-51bfe77f745b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""2d361692-ef66-4220-9928-51bfe77f745b""}\n2025-10-29 08:28:18.558 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][2eb05259-863d-451f-b480-6d32e81a88e5] received connection request\n2025-10-29 08:28:18.646 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][2eb05259-863d-451f-b480-6d32e81a88e5] socks forwarding established\n2025-10-29 08:28:18.726 [info] [command][2d361692-ef66-4220-9928-51bfe77f745b] Process exited with code 0\n2025-10-29 08:28:18.726 [info] [command][2d361692-ef66-4220-9928-51bfe77f745b] Socket close event received\n2025-10-29 08:28:18.729 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][2eb05259-863d-451f-b480-6d32e81a88e5] socks connection closed\n2025-10-29 08:29:18.729 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:29:18.732 [info] [command][ed688186-85f4-4dcf-87c0-4c7e288c52cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""ed688186-85f4-4dcf-87c0-4c7e288c52cd""}\n2025-10-29 08:29:18.733 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][d09b5c07-e60f-4c4d-b4c9-80baf3bbc44f] received connection request\n2025-10-29 08:29:18.808 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][d09b5c07-e60f-4c4d-b4c9-80baf3bbc44f] socks forwarding established\n2025-10-29 08:29:18.891 [info] [command][ed688186-85f4-4dcf-87c0-4c7e288c52cd] Process exited with code 0\n2025-10-29 08:29:18.892 [info] [command][ed688186-85f4-4dcf-87c0-4c7e288c52cd] Socket close event received\n2025-10-29 08:29:18.895 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][d09b5c07-e60f-4c4d-b4c9-80baf3bbc44f] socks connection closed\n2025-10-29 08:30:18.893 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:30:18.896 [info] [command][63f4abc4-7629-47eb-87d6-10fe6bcc8ef4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""63f4abc4-7629-47eb-87d6-10fe6bcc8ef4""}\n2025-10-29 08:30:18.897 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][17cb8be9-914e-4e07-a30c-f5f24a72fba8] received connection request\n2025-10-29 08:30:18.972 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][17cb8be9-914e-4e07-a30c-f5f24a72fba8] socks forwarding established\n2025-10-29 08:30:19.054 [info] [command][63f4abc4-7629-47eb-87d6-10fe6bcc8ef4] Process exited with code 0\n2025-10-29 08:30:19.054 [info] [command][63f4abc4-7629-47eb-87d6-10fe6bcc8ef4] Socket close event received\n2025-10-29 08:30:19.058 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][17cb8be9-914e-4e07-a30c-f5f24a72fba8] socks connection closed\n2025-10-29 08:31:19.058 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:31:19.062 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][fb1ffdbd-067e-4f49-8993-61ca73924c99] received connection request\n2025-10-29 08:31:19.063 [info] [command][347ad300-2e9a-4178-ac27-ba7f9838b0de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""347ad300-2e9a-4178-ac27-ba7f9838b0de""}\n2025-10-29 08:31:19.165 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][fb1ffdbd-067e-4f49-8993-61ca73924c99] socks forwarding established\n2025-10-29 08:31:19.276 [info] [command][347ad300-2e9a-4178-ac27-ba7f9838b0de] Process exited with code 0\n2025-10-29 08:31:19.277 [info] [command][347ad300-2e9a-4178-ac27-ba7f9838b0de] Socket close event received\n2025-10-29 08:31:19.277 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][fb1ffdbd-067e-4f49-8993-61ca73924c99] socks connection closed\n2025-10-29 08:32:19.278 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:32:19.281 [info] [command][a8117372-487a-4912-8d18-25ed86d4307f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""a8117372-487a-4912-8d18-25ed86d4307f""}\n2025-10-29 08:32:19.281 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][5a14a05b-4fb9-486e-a2f0-f7eb5d990c68] received connection request\n2025-10-29 08:32:19.357 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][5a14a05b-4fb9-486e-a2f0-f7eb5d990c68] socks forwarding established\n2025-10-29 08:32:19.437 [info] [command][a8117372-487a-4912-8d18-25ed86d4307f] Process exited with code 0\n2025-10-29 08:32:19.437 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][5a14a05b-4fb9-486e-a2f0-f7eb5d990c68] socks connection closed\n2025-10-29 08:32:19.437 [info] [command][a8117372-487a-4912-8d18-25ed86d4307f] Socket close event received\n2025-10-29 08:33:19.441 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:33:19.445 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][5a20d224-8e98-404d-b4ed-193cf5fe2dfa] received connection request\n2025-10-29 08:33:19.445 [info] [command][f69eb2b9-de2b-4b3f-9bc8-77cd44002bb1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""f69eb2b9-de2b-4b3f-9bc8-77cd44002bb1""}\n2025-10-29 08:33:19.529 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][5a20d224-8e98-404d-b4ed-193cf5fe2dfa] socks forwarding established\n2025-10-29 08:33:19.621 [info] [command][f69eb2b9-de2b-4b3f-9bc8-77cd44002bb1] Process exited with code 0\n2025-10-29 08:33:19.621 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][5a20d224-8e98-404d-b4ed-193cf5fe2dfa] socks connection closed\n2025-10-29 08:33:19.621 [info] [command][f69eb2b9-de2b-4b3f-9bc8-77cd44002bb1] Socket close event received\n2025-10-29 08:34:19.623 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:34:19.626 [info] [command][1e71f880-6d5f-415e-b008-50ed1935f922] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""1e71f880-6d5f-415e-b008-50ed1935f922""}\n2025-10-29 08:34:19.627 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][0af10949-2ffc-4ff7-a0cd-421d1b6877c0] received connection request\n2025-10-29 08:34:19.747 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][0af10949-2ffc-4ff7-a0cd-421d1b6877c0] socks forwarding established\n2025-10-29 08:34:19.854 [info] [command][1e71f880-6d5f-415e-b008-50ed1935f922] Process exited with code 0\n2025-10-29 08:34:19.854 [info] [command][1e71f880-6d5f-415e-b008-50ed1935f922] Socket close event received\n2025-10-29 08:34:19.854 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][0af10949-2ffc-4ff7-a0cd-421d1b6877c0] socks connection closed\n2025-10-29 08:35:19.860 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:35:19.864 [info] [command][fc02aac2-1331-470a-b548-62dec3dd830e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""fc02aac2-1331-470a-b548-62dec3dd830e""}\n2025-10-29 08:35:19.864 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][900f5df3-6117-4285-8ee7-765081f71eb4] received connection request\n2025-10-29 08:35:19.932 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][900f5df3-6117-4285-8ee7-765081f71eb4] socks forwarding established\n2025-10-29 08:35:20.035 [info] [command][fc02aac2-1331-470a-b548-62dec3dd830e] Process exited with code 0\n2025-10-29 08:35:20.035 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][900f5df3-6117-4285-8ee7-765081f71eb4] socks connection closed\n2025-10-29 08:35:20.035 [info] [command][fc02aac2-1331-470a-b548-62dec3dd830e] Socket close event received\n2025-10-29 08:36:20.036 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:36:20.040 [info] [command][163c150a-eb1a-4072-bfee-4708e8a62db6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""163c150a-eb1a-4072-bfee-4708e8a62db6""}\n2025-10-29 08:36:20.040 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][bf4dfe52-875b-4168-ad8d-b049e5609392] received connection request\n2025-10-29 08:36:20.114 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][bf4dfe52-875b-4168-ad8d-b049e5609392] socks forwarding established\n2025-10-29 08:36:20.212 [info] [command][163c150a-eb1a-4072-bfee-4708e8a62db6] Process exited with code 0\n2025-10-29 08:36:20.212 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][bf4dfe52-875b-4168-ad8d-b049e5609392] socks connection closed\n2025-10-29 08:36:20.213 [info] [command][163c150a-eb1a-4072-bfee-4708e8a62db6] Socket close event received\n2025-10-29 08:37:20.217 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:37:20.218 [info] [command][9accff1f-43cf-486f-9d5e-75b192dff0c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""9accff1f-43cf-486f-9d5e-75b192dff0c2""}\n2025-10-29 08:37:20.219 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][7dfbc1da-42c7-4c6d-b520-f8fc30d9c250] received connection request\n2025-10-29 08:37:20.283 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][7dfbc1da-42c7-4c6d-b520-f8fc30d9c250] socks forwarding established\n2025-10-29 08:37:20.397 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][7dfbc1da-42c7-4c6d-b520-f8fc30d9c250] socks connection closed\n2025-10-29 08:37:20.397 [info] [command][9accff1f-43cf-486f-9d5e-75b192dff0c2] Process exited with code 0\n2025-10-29 08:37:20.397 [info] [command][9accff1f-43cf-486f-9d5e-75b192dff0c2] Socket close event received\n2025-10-29 08:38:20.399 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:38:20.401 [info] [command][e2c0790b-69ea-4cc6-9548-690f4b5da4e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""e2c0790b-69ea-4cc6-9548-690f4b5da4e0""}\n2025-10-29 08:38:20.401 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][1819b128-03f6-4f10-9213-50eebe6bd63b] received connection request\n2025-10-29 08:38:20.468 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][1819b128-03f6-4f10-9213-50eebe6bd63b] socks forwarding established\n2025-10-29 08:38:20.569 [info] [command][e2c0790b-69ea-4cc6-9548-690f4b5da4e0] Process exited with code 0\n2025-10-29 08:38:20.569 [info] [command][e2c0790b-69ea-4cc6-9548-690f4b5da4e0] Socket close event received\n2025-10-29 08:38:20.570 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][1819b128-03f6-4f10-9213-50eebe6bd63b] socks connection closed\n2025-10-29 08:39:20.571 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:39:20.573 [info] [command][16ae864b-abed-4536-81c9-43c729a2bf7f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""16ae864b-abed-4536-81c9-43c729a2bf7f""}\n2025-10-29 08:39:20.574 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][5956f3b7-2fa4-40eb-b69e-94838938d9ed] received connection request\n2025-10-29 08:39:20.717 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][5956f3b7-2fa4-40eb-b69e-94838938d9ed] socks forwarding established\n2025-10-29 08:39:20.945 [info] [command][16ae864b-abed-4536-81c9-43c729a2bf7f] Process exited with code 0\n2025-10-29 08:39:20.945 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][5956f3b7-2fa4-40eb-b69e-94838938d9ed] socks connection closed\n2025-10-29 08:39:20.945 [info] [command][16ae864b-abed-4536-81c9-43c729a2bf7f] Socket close event received\n2025-10-29 08:40:20.913 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:40:20.916 [info] [command][50f20641-b8fa-4330-809a-61894b49eed7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""50f20641-b8fa-4330-809a-61894b49eed7""}\n2025-10-29 08:40:20.916 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][6f0467d0-ce10-4d15-809b-503efc4ddd08] received connection request\n2025-10-29 08:40:21.004 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][6f0467d0-ce10-4d15-809b-503efc4ddd08] socks forwarding established\n2025-10-29 08:40:21.095 [info] [command][50f20641-b8fa-4330-809a-61894b49eed7] Process exited with code 0\n2025-10-29 08:40:21.095 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][6f0467d0-ce10-4d15-809b-503efc4ddd08] socks connection closed\n2025-10-29 08:40:21.095 [info] [command][50f20641-b8fa-4330-809a-61894b49eed7] Socket close event received\n2025-10-29 08:41:21.094 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:41:21.097 [info] [command][f15f912f-148e-4ca4-a95a-c123f29a9828] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""f15f912f-148e-4ca4-a95a-c123f29a9828""}\n2025-10-29 08:41:21.097 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][0435578a-48fa-40ef-aebf-460e05a043bd] received connection request\n2025-10-29 08:41:21.174 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][0435578a-48fa-40ef-aebf-460e05a043bd] socks forwarding established\n2025-10-29 08:41:21.273 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][0435578a-48fa-40ef-aebf-460e05a043bd] socks connection closed\n2025-10-29 08:41:21.273 [info] [command][f15f912f-148e-4ca4-a95a-c123f29a9828] Process exited with code 0\n2025-10-29 08:41:21.274 [info] [command][f15f912f-148e-4ca4-a95a-c123f29a9828] Socket close event received\n2025-10-29 08:42:21.279 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:42:21.281 [info] [command][aa5418fc-adea-4c07-968c-e1ac84f6435f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""aa5418fc-adea-4c07-968c-e1ac84f6435f""}\n2025-10-29 08:42:21.282 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][ef454456-12c3-499e-bcc5-d60cfc335d4c] received connection request\n2025-10-29 08:42:21.362 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][ef454456-12c3-499e-bcc5-d60cfc335d4c] socks forwarding established\n2025-10-29 08:42:21.454 [info] [command][aa5418fc-adea-4c07-968c-e1ac84f6435f] Process exited with code 0\n2025-10-29 08:42:21.455 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][ef454456-12c3-499e-bcc5-d60cfc335d4c] socks connection closed\n2025-10-29 08:42:21.455 [info] [command][aa5418fc-adea-4c07-968c-e1ac84f6435f] Socket close event received\n2025-10-29 08:43:21.462 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:43:21.465 [info] [command][cf829b75-691a-4c56-87c1-1c75a64a3c92] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""cf829b75-691a-4c56-87c1-1c75a64a3c92""}\n2025-10-29 08:43:21.465 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][d3ed7a2c-a92c-41ba-a4c3-44433ad27d8f] received connection request\n2025-10-29 08:43:21.562 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][d3ed7a2c-a92c-41ba-a4c3-44433ad27d8f] socks forwarding established\n2025-10-29 08:43:21.636 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][d3ed7a2c-a92c-41ba-a4c3-44433ad27d8f] socks connection closed\n2025-10-29 08:43:21.638 [info] [command][cf829b75-691a-4c56-87c1-1c75a64a3c92] Process exited with code 0\n2025-10-29 08:43:21.638 [info] [command][cf829b75-691a-4c56-87c1-1c75a64a3c92] Socket close event received\n2025-10-29 08:43:52.903 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][5f922604-fdeb-49b4-889a-545a3c395fac] received connection request\n2025-10-29 08:44:15.194 [info] (ssh_tunnel) stderr: Read from remote host login.haicore.berlin: Operation timed out\nclient_loop: send disconnect: Broken pipe\n\n2025-10-29 08:44:15.197 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][3642c1f7-0800-433b-a19f-1c78598a3a4e] socks connection closed\n2025-10-29 08:44:15.201 [error] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][5f922604-fdeb-49b4-889a-545a3c395fac] error while creating socks forwarding Socket closed\n2025-10-29 08:44:15.201 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][d33657a0-fa1e-4545-86fa-a233fdfc710f] socks connection closed\n2025-10-29 08:44:15.216 [info] Resolving ssh remote authority 'login.haicore.berlin' (Unparsed 'ssh-remote+7b22686f73744e616d65223a226c6f67696e2e686169636f72652e6265726c696e227d') (attempt #2)\n2025-10-29 08:44:15.216 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-10-29 08:44:15.220 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][747b7313-a5a9-4ba1-9d42-f42942982887] received connection request\n2025-10-29 08:44:15.220 [error] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][747b7313-a5a9-4ba1-9d42-f42942982887] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:53645\n2025-10-29 08:44:15.222 [error] Failed to connect to Cursor server at http://127.0.0.1:53651, attempt 1 of 3 fetch failed\n2025-10-29 08:44:16.227 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][59e102ea-f31a-4fa6-bdcc-56a279469059] received connection request\n2025-10-29 08:44:16.228 [error] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][59e102ea-f31a-4fa6-bdcc-56a279469059] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:53645\n2025-10-29 08:44:16.229 [error] Failed to connect to Cursor server at http://127.0.0.1:53651, attempt 2 of 3 fetch failed\n2025-10-29 08:44:17.237 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][ff019a06-db26-463e-8fd3-62028371c1fe] received connection request\n2025-10-29 08:44:17.238 [error] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][ff019a06-db26-463e-8fd3-62028371c1fe] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:53645\n2025-10-29 08:44:17.238 [error] Failed to connect to Cursor server at http://127.0.0.1:53651, attempt 3 of 3 fetch failed\n2025-10-29 08:44:17.239 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-10-29 08:44:17.239 [info] [forwarding][code] returning existing forwarding server listening on local port 53651\n2025-10-29 08:44:17.239 [info] [remote-ssh] codeListeningOn (remote=127.0.0.1:45865; local=127.0.0.1:53651) codeConnectionToken: 7e1e20b8-0b29-4605-a891-4c61c5c55457\n2025-10-29 08:44:17.239 [info] [forwarding][multiplex] returning existing forwarding server listening on local port 53652\n2025-10-29 08:44:17.239 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: 3a8411eb-5322-429f-82be-459b20240cc8\n2025-10-29 08:44:17.239 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:44:17.241 [info] [command][06857463-66c1-4e3b-ae9a-9b1e6c0788a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""06857463-66c1-4e3b-ae9a-9b1e6c0788a2""}\n2025-10-29 08:44:17.242 [info] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:36707][66a848d9-4659-4c17-9265-fdcc3dbc010b] received connection request\n2025-10-29 08:44:17.242 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][d862f0f9-b7de-40a3-9c38-56a3192099c9] received connection request\n2025-10-29 08:44:17.243 [error] [forwarding][multiplex][127.0.0.1:53652 -> 127.0.0.1:53645 -> 127.0.0.1:36707][66a848d9-4659-4c17-9265-fdcc3dbc010b] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:53645\n2025-10-29 08:44:17.243 [error] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][d862f0f9-b7de-40a3-9c38-56a3192099c9] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:53645\n2025-10-29 08:44:17.244 [info] [command][06857463-66c1-4e3b-ae9a-9b1e6c0788a2] Socket end event received\n2025-10-29 08:44:17.244 [info] [command][06857463-66c1-4e3b-ae9a-9b1e6c0788a2] Socket close event received\n2025-10-29 08:44:17.244 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][06857463-66c1-4e3b-ae9a-9b1e6c0788a2] Socket closed without exit code\n2025-10-29 08:44:17.245 [error] Failed to connect to Cursor server at http://127.0.0.1:53651, attempt 1 of 3 fetch failed\n2025-10-29 08:44:18.251 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][4cc38cb0-fd71-4396-aacf-481cd06fed7b] received connection request\n2025-10-29 08:44:18.251 [error] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][4cc38cb0-fd71-4396-aacf-481cd06fed7b] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:53645\n2025-10-29 08:44:18.252 [error] Failed to connect to Cursor server at http://127.0.0.1:53651, attempt 2 of 3 fetch failed\n2025-10-29 08:44:19.257 [info] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:45865][31ba18c9-c7bd-43fe-bd9c-74c5649fab5e] received connection request\n2025-10-29 08:44:19.257 [error] [forwarding][code][127.0.0.1:53651 -> 127.0.0.1:53645 -> 127.0.0.1:45865][31ba18c9-c7bd-43fe-bd9c-74c5649fab5e] error while creating socks forwarding connect ECONNREFUSED 127.0.0.1:53645\n2025-10-29 08:44:19.258 [error] Failed to connect to Cursor server at http://127.0.0.1:53651, attempt 3 of 3 fetch failed\n2025-10-29 08:44:19.260 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-10-29 08:44:19.308 [info] Terminating existing SSH process\n2025-10-29 08:44:19.308 [info] Using configured platform linux for remote host login.haicore.berlin\n2025-10-29 08:44:19.308 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:44:19.311 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_71334f45-7dbf-4db9-95bb-69f78d79310b.sh"" | ssh -T -D 54732 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:19.311 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_71334f45-7dbf-4db9-95bb-69f78d79310b.sh"" | ssh -T -D 54732 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:19.311 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:44:19.311 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:44:19.319 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:44:19.320 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:44:19.320 [info] Retrying connection in 5 seconds...\n2025-10-29 08:44:24.330 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_71334f45-7dbf-4db9-95bb-69f78d79310b.sh\n2025-10-29 08:44:24.331 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:44:24.336 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6179d6a3-8abd-4858-83c2-261a37e23cd6.sh"" | ssh -T -D 54733 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:24.336 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6179d6a3-8abd-4858-83c2-261a37e23cd6.sh"" | ssh -T -D 54733 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:24.336 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:44:24.336 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:44:24.355 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:44:24.355 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:44:24.355 [info] Retrying connection in 5 seconds...\n2025-10-29 08:44:29.365 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6179d6a3-8abd-4858-83c2-261a37e23cd6.sh\n2025-10-29 08:44:29.366 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:44:29.371 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f429cdfa-d889-41cd-86ec-c9c26539de02.sh"" | ssh -T -D 54734 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:29.372 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f429cdfa-d889-41cd-86ec-c9c26539de02.sh"" | ssh -T -D 54734 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:29.372 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:44:29.372 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:44:29.390 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:44:29.391 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:44:29.391 [info] Retrying connection in 5 seconds...\n2025-10-29 08:44:34.401 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f429cdfa-d889-41cd-86ec-c9c26539de02.sh\n2025-10-29 08:44:34.403 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:44:34.408 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_61a75f60-4bbd-4dd9-a3c2-6eec543289fc.sh"" | ssh -T -D 54736 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:34.408 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_61a75f60-4bbd-4dd9-a3c2-6eec543289fc.sh"" | ssh -T -D 54736 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:34.408 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:44:34.408 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:44:34.429 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:44:34.430 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:44:34.430 [info] Retrying connection in 5 seconds...\n2025-10-29 08:44:39.441 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_61a75f60-4bbd-4dd9-a3c2-6eec543289fc.sh\n2025-10-29 08:44:39.442 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:44:39.447 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_deaa7323-4e03-4d7b-b142-a99202b6b3df.sh"" | ssh -T -D 54737 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:39.447 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_deaa7323-4e03-4d7b-b142-a99202b6b3df.sh"" | ssh -T -D 54737 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:39.447 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:44:39.447 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:44:39.466 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:44:39.467 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:44:39.467 [info] Retrying connection in 5 seconds...\n2025-10-29 08:44:44.477 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_deaa7323-4e03-4d7b-b142-a99202b6b3df.sh\n2025-10-29 08:44:44.478 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:44:44.483 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_941590df-bd22-4f47-8dde-7556c408849e.sh"" | ssh -T -D 54738 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:44.483 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_941590df-bd22-4f47-8dde-7556c408849e.sh"" | ssh -T -D 54738 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:44.483 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:44:44.483 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:44:44.498 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:44:44.499 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:44:44.499 [info] Retrying connection in 5 seconds...\n2025-10-29 08:44:49.509 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_941590df-bd22-4f47-8dde-7556c408849e.sh\n2025-10-29 08:44:49.510 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:44:49.517 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_838e9d01-f135-4a7c-af8c-0c3cc9dc6950.sh"" | ssh -T -D 54739 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:49.517 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_838e9d01-f135-4a7c-af8c-0c3cc9dc6950.sh"" | ssh -T -D 54739 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:49.517 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:44:49.517 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:44:49.539 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:44:49.540 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:44:49.540 [info] Retrying connection in 5 seconds...\n2025-10-29 08:44:54.550 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_838e9d01-f135-4a7c-af8c-0c3cc9dc6950.sh\n2025-10-29 08:44:54.551 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:44:54.556 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e5a6daf8-1cfe-4106-9031-c8de3e562aea.sh"" | ssh -T -D 54740 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:54.556 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e5a6daf8-1cfe-4106-9031-c8de3e562aea.sh"" | ssh -T -D 54740 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:54.556 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:44:54.556 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:44:54.574 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:44:54.575 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:44:54.575 [info] Retrying connection in 5 seconds...\n2025-10-29 08:44:59.586 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e5a6daf8-1cfe-4106-9031-c8de3e562aea.sh\n2025-10-29 08:44:59.587 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:44:59.592 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_32cec442-5b77-4371-9c36-c671db892019.sh"" | ssh -T -D 54741 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:59.592 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_32cec442-5b77-4371-9c36-c671db892019.sh"" | ssh -T -D 54741 login.haicore.berlin bash --login -c bash\n2025-10-29 08:44:59.592 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:44:59.592 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:44:59.612 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:44:59.613 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:44:59.613 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:04.616 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_32cec442-5b77-4371-9c36-c671db892019.sh\n2025-10-29 08:45:04.617 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:04.621 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_501908ed-7186-4ba6-9d5b-afea5777983d.sh"" | ssh -T -D 54742 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:04.621 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_501908ed-7186-4ba6-9d5b-afea5777983d.sh"" | ssh -T -D 54742 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:04.621 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:04.622 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:04.640 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:04.640 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:04.640 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:09.645 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_501908ed-7186-4ba6-9d5b-afea5777983d.sh\n2025-10-29 08:45:09.646 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:09.650 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e45a09b2-8c2a-4ac3-b0e6-51ac79461c57.sh"" | ssh -T -D 54743 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:09.650 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e45a09b2-8c2a-4ac3-b0e6-51ac79461c57.sh"" | ssh -T -D 54743 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:09.650 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:09.651 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:09.671 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:09.672 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:09.672 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:14.674 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e45a09b2-8c2a-4ac3-b0e6-51ac79461c57.sh\n2025-10-29 08:45:14.675 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:14.679 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ff2904da-6c3a-43c0-b8f0-b56269af062d.sh"" | ssh -T -D 54744 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:14.679 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ff2904da-6c3a-43c0-b8f0-b56269af062d.sh"" | ssh -T -D 54744 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:14.679 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:14.679 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:14.698 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:14.699 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:14.699 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:17.253 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:45:17.254 [info] [command][8b1ab15f-9294-4c65-b5cb-ab5b3e1ea0ad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""8b1ab15f-9294-4c65-b5cb-ab5b3e1ea0ad""}\n2025-10-29 08:45:17.255 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][f8e767ec-e509-4874-8b97-4e9dedc467ac] remote server not configured\n2025-10-29 08:45:17.255 [error] [command][8b1ab15f-9294-4c65-b5cb-ab5b3e1ea0ad] Socket error: Error: read ECONNRESET\n2025-10-29 08:45:17.255 [info] [command][8b1ab15f-9294-4c65-b5cb-ab5b3e1ea0ad] Socket close event received\n2025-10-29 08:45:17.255 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][8b1ab15f-9294-4c65-b5cb-ab5b3e1ea0ad] Socket closed without exit code\n2025-10-29 08:45:19.709 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ff2904da-6c3a-43c0-b8f0-b56269af062d.sh\n2025-10-29 08:45:19.710 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:19.714 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_dd1610e7-98ec-47f6-9d00-ef70a6bfafa3.sh"" | ssh -T -D 54747 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:19.714 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_dd1610e7-98ec-47f6-9d00-ef70a6bfafa3.sh"" | ssh -T -D 54747 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:19.714 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:19.714 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:19.728 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:19.729 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:19.729 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:24.737 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_dd1610e7-98ec-47f6-9d00-ef70a6bfafa3.sh\n2025-10-29 08:45:24.739 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:24.744 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d4a62ad6-d6c6-4d47-98ba-2568f2ba1aaa.sh"" | ssh -T -D 54748 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:24.744 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d4a62ad6-d6c6-4d47-98ba-2568f2ba1aaa.sh"" | ssh -T -D 54748 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:24.744 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:24.744 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:24.768 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:24.769 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:24.769 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:29.779 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d4a62ad6-d6c6-4d47-98ba-2568f2ba1aaa.sh\n2025-10-29 08:45:29.780 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:29.784 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_121bab85-3c4b-451f-a678-12ed919c3e42.sh"" | ssh -T -D 54749 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:29.785 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_121bab85-3c4b-451f-a678-12ed919c3e42.sh"" | ssh -T -D 54749 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:29.785 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:29.785 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:29.798 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:29.799 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:29.799 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:34.809 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_121bab85-3c4b-451f-a678-12ed919c3e42.sh\n2025-10-29 08:45:34.810 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:34.815 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3255b23b-3d85-4039-b86f-2d16925d09c3.sh"" | ssh -T -D 54751 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:34.815 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3255b23b-3d85-4039-b86f-2d16925d09c3.sh"" | ssh -T -D 54751 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:34.815 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:34.815 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:34.826 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:34.827 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:34.827 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:39.831 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3255b23b-3d85-4039-b86f-2d16925d09c3.sh\n2025-10-29 08:45:39.832 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:39.836 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0611defb-0593-472c-acb4-339e8b5cc931.sh"" | ssh -T -D 54752 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:39.837 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0611defb-0593-472c-acb4-339e8b5cc931.sh"" | ssh -T -D 54752 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:39.837 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:39.837 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:39.856 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:39.857 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:39.857 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:44.867 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0611defb-0593-472c-acb4-339e8b5cc931.sh\n2025-10-29 08:45:44.868 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:44.873 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_33e9b870-a94d-488d-bb69-826aae67dcd1.sh"" | ssh -T -D 54753 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:44.873 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_33e9b870-a94d-488d-bb69-826aae67dcd1.sh"" | ssh -T -D 54753 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:44.873 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:44.873 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:44.895 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:44.896 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:44.896 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:49.901 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_33e9b870-a94d-488d-bb69-826aae67dcd1.sh\n2025-10-29 08:45:49.902 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:49.907 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0030cbe6-6ff9-487c-ae58-8605c64fce5c.sh"" | ssh -T -D 54754 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:49.907 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0030cbe6-6ff9-487c-ae58-8605c64fce5c.sh"" | ssh -T -D 54754 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:49.907 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:49.908 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:49.924 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:49.925 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:49.925 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:54.926 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0030cbe6-6ff9-487c-ae58-8605c64fce5c.sh\n2025-10-29 08:45:54.927 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:54.932 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_550aa8db-11a3-4e01-95f6-2a166f2033be.sh"" | ssh -T -D 54755 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:54.932 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_550aa8db-11a3-4e01-95f6-2a166f2033be.sh"" | ssh -T -D 54755 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:54.932 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:54.932 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:54.950 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:54.951 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:54.951 [info] Retrying connection in 5 seconds...\n2025-10-29 08:45:59.955 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_550aa8db-11a3-4e01-95f6-2a166f2033be.sh\n2025-10-29 08:45:59.956 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:45:59.961 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_84d3a8cb-f8fe-46ff-870a-6102e37dc63e.sh"" | ssh -T -D 54756 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:59.961 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_84d3a8cb-f8fe-46ff-870a-6102e37dc63e.sh"" | ssh -T -D 54756 login.haicore.berlin bash --login -c bash\n2025-10-29 08:45:59.961 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:45:59.961 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:45:59.982 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:45:59.983 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:45:59.983 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:04.993 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_84d3a8cb-f8fe-46ff-870a-6102e37dc63e.sh\n2025-10-29 08:46:04.994 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:04.999 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5dcb49ce-2661-4312-b944-fb7295ab9b2c.sh"" | ssh -T -D 54757 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:04.999 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5dcb49ce-2661-4312-b944-fb7295ab9b2c.sh"" | ssh -T -D 54757 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:04.999 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:04.999 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:05.018 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:05.018 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:05.018 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:10.028 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5dcb49ce-2661-4312-b944-fb7295ab9b2c.sh\n2025-10-29 08:46:10.030 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:10.035 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7847a1d8-db86-438b-9cbe-f09b63cfd470.sh"" | ssh -T -D 54758 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:10.035 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7847a1d8-db86-438b-9cbe-f09b63cfd470.sh"" | ssh -T -D 54758 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:10.035 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:10.035 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:10.056 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:10.056 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:10.056 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:15.057 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7847a1d8-db86-438b-9cbe-f09b63cfd470.sh\n2025-10-29 08:46:15.058 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:15.063 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2d0b7c52-f270-4735-86e9-595e6e08075d.sh"" | ssh -T -D 54759 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:15.063 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2d0b7c52-f270-4735-86e9-595e6e08075d.sh"" | ssh -T -D 54759 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:15.063 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:15.063 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:15.079 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:15.080 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:15.080 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:17.259 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:46:17.260 [info] [command][44d8eb75-69c0-4181-ba33-4203f8ad4b72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""44d8eb75-69c0-4181-ba33-4203f8ad4b72""}\n2025-10-29 08:46:17.261 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][73e6a94e-737d-4ede-8d1c-7c72f0e9769f] remote server not configured\n2025-10-29 08:46:17.261 [error] [command][44d8eb75-69c0-4181-ba33-4203f8ad4b72] Socket error: Error: read ECONNRESET\n2025-10-29 08:46:17.261 [info] [command][44d8eb75-69c0-4181-ba33-4203f8ad4b72] Socket close event received\n2025-10-29 08:46:17.261 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][44d8eb75-69c0-4181-ba33-4203f8ad4b72] Socket closed without exit code\n2025-10-29 08:46:20.091 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2d0b7c52-f270-4735-86e9-595e6e08075d.sh\n2025-10-29 08:46:20.092 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:20.096 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9b46ab5f-6368-4a9d-9894-deaff6470519.sh"" | ssh -T -D 54762 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:20.096 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9b46ab5f-6368-4a9d-9894-deaff6470519.sh"" | ssh -T -D 54762 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:20.096 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:20.096 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:20.112 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:20.112 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:20.112 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:25.122 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9b46ab5f-6368-4a9d-9894-deaff6470519.sh\n2025-10-29 08:46:25.123 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:25.127 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d78794c0-1b20-47ba-b428-4f42e9404f4b.sh"" | ssh -T -D 54763 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:25.127 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d78794c0-1b20-47ba-b428-4f42e9404f4b.sh"" | ssh -T -D 54763 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:25.128 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:25.128 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:25.146 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:25.146 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:25.146 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:30.157 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_d78794c0-1b20-47ba-b428-4f42e9404f4b.sh\n2025-10-29 08:46:30.157 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:30.163 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_db19ac40-55a6-48d7-a864-3d34df55d60c.sh"" | ssh -T -D 54764 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:30.163 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_db19ac40-55a6-48d7-a864-3d34df55d60c.sh"" | ssh -T -D 54764 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:30.163 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:30.163 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:30.181 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:30.181 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:30.181 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:35.191 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_db19ac40-55a6-48d7-a864-3d34df55d60c.sh\n2025-10-29 08:46:35.192 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:35.197 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_360c79b1-d00c-47e0-bf1e-324591b58672.sh"" | ssh -T -D 54766 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:35.197 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_360c79b1-d00c-47e0-bf1e-324591b58672.sh"" | ssh -T -D 54766 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:35.197 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:35.197 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:35.210 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:35.210 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:35.210 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:40.221 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_360c79b1-d00c-47e0-bf1e-324591b58672.sh\n2025-10-29 08:46:40.222 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:40.226 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0b54152c-0635-410f-a3ad-a786b595a183.sh"" | ssh -T -D 54767 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:40.227 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0b54152c-0635-410f-a3ad-a786b595a183.sh"" | ssh -T -D 54767 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:40.227 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:40.227 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:40.240 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:40.241 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:40.241 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:45.251 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_0b54152c-0635-410f-a3ad-a786b595a183.sh\n2025-10-29 08:46:45.252 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:45.256 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_10c4b0b4-408c-4773-af4a-9fb1967f84fc.sh"" | ssh -T -D 54768 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:45.256 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_10c4b0b4-408c-4773-af4a-9fb1967f84fc.sh"" | ssh -T -D 54768 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:45.256 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:45.256 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:45.269 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:45.270 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:45.270 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:50.274 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_10c4b0b4-408c-4773-af4a-9fb1967f84fc.sh\n2025-10-29 08:46:50.275 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:50.279 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_49ed88c1-74ae-4052-9ff5-7626e58eb531.sh"" | ssh -T -D 54769 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:50.279 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_49ed88c1-74ae-4052-9ff5-7626e58eb531.sh"" | ssh -T -D 54769 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:50.279 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:50.279 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:50.292 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:50.293 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:50.293 [info] Retrying connection in 5 seconds...\n2025-10-29 08:46:55.303 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_49ed88c1-74ae-4052-9ff5-7626e58eb531.sh\n2025-10-29 08:46:55.304 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:46:55.310 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_eb6930fa-dec7-4809-8076-a95809e09af1.sh"" | ssh -T -D 54770 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:55.310 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_eb6930fa-dec7-4809-8076-a95809e09af1.sh"" | ssh -T -D 54770 login.haicore.berlin bash --login -c bash\n2025-10-29 08:46:55.310 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:46:55.310 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:46:55.330 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:46:55.330 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:46:55.330 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:00.340 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_eb6930fa-dec7-4809-8076-a95809e09af1.sh\n2025-10-29 08:47:00.341 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:00.346 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ca4c15ca-f650-4a1e-aa2b-8409e3c757df.sh"" | ssh -T -D 54771 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:00.346 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ca4c15ca-f650-4a1e-aa2b-8409e3c757df.sh"" | ssh -T -D 54771 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:00.346 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:00.346 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:00.360 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:00.361 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:00.361 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:05.364 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ca4c15ca-f650-4a1e-aa2b-8409e3c757df.sh\n2025-10-29 08:47:05.365 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:05.369 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b5055f8e-b054-4ff7-8781-1fe15916c466.sh"" | ssh -T -D 54772 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:05.370 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b5055f8e-b054-4ff7-8781-1fe15916c466.sh"" | ssh -T -D 54772 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:05.370 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:05.370 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:05.391 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:05.392 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:05.392 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:10.393 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_b5055f8e-b054-4ff7-8781-1fe15916c466.sh\n2025-10-29 08:47:10.394 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:10.398 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_16fea19c-7136-47e8-9645-111709a9806f.sh"" | ssh -T -D 54773 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:10.398 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_16fea19c-7136-47e8-9645-111709a9806f.sh"" | ssh -T -D 54773 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:10.398 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:10.398 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:10.417 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:10.418 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:10.418 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:15.429 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_16fea19c-7136-47e8-9645-111709a9806f.sh\n2025-10-29 08:47:15.429 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:15.434 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9596436f-dd77-4245-9b04-a72da01eb5e6.sh"" | ssh -T -D 54774 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:15.434 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9596436f-dd77-4245-9b04-a72da01eb5e6.sh"" | ssh -T -D 54774 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:15.434 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:15.434 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:15.453 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:15.454 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:15.454 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:17.272 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:47:17.273 [info] [command][119919ab-36cf-4afa-84f7-c3f990e65564] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""119919ab-36cf-4afa-84f7-c3f990e65564""}\n2025-10-29 08:47:17.274 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][ececf554-25bf-4d71-8cba-1be9fc83054e] remote server not configured\n2025-10-29 08:47:17.274 [error] [command][119919ab-36cf-4afa-84f7-c3f990e65564] Socket error: Error: read ECONNRESET\n2025-10-29 08:47:17.275 [info] [command][119919ab-36cf-4afa-84f7-c3f990e65564] Socket close event received\n2025-10-29 08:47:17.275 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][119919ab-36cf-4afa-84f7-c3f990e65564] Socket closed without exit code\n2025-10-29 08:47:20.464 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9596436f-dd77-4245-9b04-a72da01eb5e6.sh\n2025-10-29 08:47:20.466 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:20.471 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e7df0a03-d109-45d0-a948-afb0cee53d27.sh"" | ssh -T -D 54777 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:20.471 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e7df0a03-d109-45d0-a948-afb0cee53d27.sh"" | ssh -T -D 54777 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:20.471 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:20.471 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:20.491 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:20.491 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:20.491 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:25.501 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e7df0a03-d109-45d0-a948-afb0cee53d27.sh\n2025-10-29 08:47:25.502 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:25.507 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c78f08c9-9080-4ec6-b7e3-b605d76dcafc.sh"" | ssh -T -D 54778 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:25.507 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c78f08c9-9080-4ec6-b7e3-b605d76dcafc.sh"" | ssh -T -D 54778 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:25.507 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:25.507 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:25.526 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:25.527 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:25.527 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:30.528 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_c78f08c9-9080-4ec6-b7e3-b605d76dcafc.sh\n2025-10-29 08:47:30.529 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:30.534 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_331e6528-66dd-4887-8882-9eb69ae9ce3f.sh"" | ssh -T -D 54779 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:30.534 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_331e6528-66dd-4887-8882-9eb69ae9ce3f.sh"" | ssh -T -D 54779 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:30.535 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:30.535 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:30.556 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:30.557 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:30.557 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:35.564 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_331e6528-66dd-4887-8882-9eb69ae9ce3f.sh\n2025-10-29 08:47:35.565 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:35.570 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_56d598ee-0768-49f7-a0a2-6cb690007af3.sh"" | ssh -T -D 54781 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:35.570 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_56d598ee-0768-49f7-a0a2-6cb690007af3.sh"" | ssh -T -D 54781 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:35.570 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:35.570 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:35.588 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:35.589 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:35.589 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:40.590 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_56d598ee-0768-49f7-a0a2-6cb690007af3.sh\n2025-10-29 08:47:40.591 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:40.595 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_07fd287b-16c7-4d44-8bb5-8d3d70c2ca81.sh"" | ssh -T -D 54782 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:40.595 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_07fd287b-16c7-4d44-8bb5-8d3d70c2ca81.sh"" | ssh -T -D 54782 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:40.595 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:40.595 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:40.607 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:40.607 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:40.607 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:45.618 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_07fd287b-16c7-4d44-8bb5-8d3d70c2ca81.sh\n2025-10-29 08:47:45.619 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:45.623 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8f4834ee-87e3-4794-aafa-0bd12f6544f1.sh"" | ssh -T -D 54783 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:45.624 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8f4834ee-87e3-4794-aafa-0bd12f6544f1.sh"" | ssh -T -D 54783 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:45.624 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:45.624 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:45.643 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:45.644 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:45.644 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:50.654 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8f4834ee-87e3-4794-aafa-0bd12f6544f1.sh\n2025-10-29 08:47:50.655 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:50.660 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e8182ab9-6cda-49b3-a206-e569ce994225.sh"" | ssh -T -D 54784 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:50.660 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e8182ab9-6cda-49b3-a206-e569ce994225.sh"" | ssh -T -D 54784 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:50.660 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:50.660 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:50.678 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:50.679 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:50.679 [info] Retrying connection in 5 seconds...\n2025-10-29 08:47:55.689 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_e8182ab9-6cda-49b3-a206-e569ce994225.sh\n2025-10-29 08:47:55.690 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:47:55.694 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a95845dd-dc33-4d2c-b8fc-3536879ab02e.sh"" | ssh -T -D 54785 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:55.694 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a95845dd-dc33-4d2c-b8fc-3536879ab02e.sh"" | ssh -T -D 54785 login.haicore.berlin bash --login -c bash\n2025-10-29 08:47:55.694 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:47:55.694 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:47:55.706 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:47:55.707 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:47:55.707 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:00.716 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a95845dd-dc33-4d2c-b8fc-3536879ab02e.sh\n2025-10-29 08:48:00.717 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:00.722 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_43d9e914-bf4f-4e95-aeb8-33b88c65a043.sh"" | ssh -T -D 54786 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:00.722 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_43d9e914-bf4f-4e95-aeb8-33b88c65a043.sh"" | ssh -T -D 54786 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:00.722 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:00.722 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:00.741 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:00.742 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:00.742 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:05.752 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_43d9e914-bf4f-4e95-aeb8-33b88c65a043.sh\n2025-10-29 08:48:05.753 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:05.758 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5b73f3c8-9d0b-46a5-9b65-198bd2c1224e.sh"" | ssh -T -D 54787 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:05.758 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5b73f3c8-9d0b-46a5-9b65-198bd2c1224e.sh"" | ssh -T -D 54787 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:05.758 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:05.758 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:05.778 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:05.779 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:05.779 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:10.784 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_5b73f3c8-9d0b-46a5-9b65-198bd2c1224e.sh\n2025-10-29 08:48:10.785 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:10.790 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f81febbb-2b05-4546-8733-03c7463c8cc3.sh"" | ssh -T -D 54788 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:10.790 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f81febbb-2b05-4546-8733-03c7463c8cc3.sh"" | ssh -T -D 54788 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:10.790 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:10.790 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:10.810 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:10.811 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:10.811 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:15.811 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_f81febbb-2b05-4546-8733-03c7463c8cc3.sh\n2025-10-29 08:48:15.813 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:15.817 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9d1cff8c-60d0-4ec7-b70a-7f0dcff23481.sh"" | ssh -T -D 54789 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:15.817 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9d1cff8c-60d0-4ec7-b70a-7f0dcff23481.sh"" | ssh -T -D 54789 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:15.817 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:15.818 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:15.838 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:15.839 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:15.839 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:17.285 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:48:17.287 [info] [command][76ed50fd-d8a9-48b6-8f62-da519ab91282] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""76ed50fd-d8a9-48b6-8f62-da519ab91282""}\n2025-10-29 08:48:17.287 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][8452ea75-bad2-4bc9-bd67-ca7d09bc621c] remote server not configured\n2025-10-29 08:48:17.288 [error] [command][76ed50fd-d8a9-48b6-8f62-da519ab91282] Socket error: Error: read ECONNRESET\n2025-10-29 08:48:17.288 [info] [command][76ed50fd-d8a9-48b6-8f62-da519ab91282] Socket close event received\n2025-10-29 08:48:17.288 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][76ed50fd-d8a9-48b6-8f62-da519ab91282] Socket closed without exit code\n2025-10-29 08:48:20.849 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9d1cff8c-60d0-4ec7-b70a-7f0dcff23481.sh\n2025-10-29 08:48:20.850 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:20.855 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a7d66186-83e0-4b83-b652-0be8f75b37b0.sh"" | ssh -T -D 54792 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:20.855 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a7d66186-83e0-4b83-b652-0be8f75b37b0.sh"" | ssh -T -D 54792 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:20.855 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:20.855 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:20.869 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:20.870 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:20.870 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:25.874 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a7d66186-83e0-4b83-b652-0be8f75b37b0.sh\n2025-10-29 08:48:25.875 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:25.880 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_74813066-b76e-4032-a81d-898836c39304.sh"" | ssh -T -D 54793 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:25.880 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_74813066-b76e-4032-a81d-898836c39304.sh"" | ssh -T -D 54793 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:25.880 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:25.880 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:25.898 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:25.899 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:25.899 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:30.907 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_74813066-b76e-4032-a81d-898836c39304.sh\n2025-10-29 08:48:30.908 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:30.912 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_882c4f9e-7b50-4dd6-9af0-c18ed7edde7c.sh"" | ssh -T -D 54794 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:30.912 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_882c4f9e-7b50-4dd6-9af0-c18ed7edde7c.sh"" | ssh -T -D 54794 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:30.912 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:30.912 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:30.930 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:30.931 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:30.931 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:35.942 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_882c4f9e-7b50-4dd6-9af0-c18ed7edde7c.sh\n2025-10-29 08:48:35.942 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:35.944 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3fae02df-45d6-4845-86a8-0a34260fa1ee.sh"" | ssh -T -D 54796 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:35.944 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3fae02df-45d6-4845-86a8-0a34260fa1ee.sh"" | ssh -T -D 54796 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:35.944 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:35.944 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:35.956 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:35.957 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:35.957 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:40.966 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3fae02df-45d6-4845-86a8-0a34260fa1ee.sh\n2025-10-29 08:48:40.966 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:40.968 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_148c75e4-3bcb-4583-9a4f-833079ccf778.sh"" | ssh -T -D 54797 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:40.968 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_148c75e4-3bcb-4583-9a4f-833079ccf778.sh"" | ssh -T -D 54797 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:40.968 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:40.968 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:40.975 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:40.976 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:40.976 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:45.986 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_148c75e4-3bcb-4583-9a4f-833079ccf778.sh\n2025-10-29 08:48:45.988 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:45.991 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a80f3008-9665-4eb5-aa57-4c9ab3e4e3a7.sh"" | ssh -T -D 54798 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:45.991 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a80f3008-9665-4eb5-aa57-4c9ab3e4e3a7.sh"" | ssh -T -D 54798 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:45.991 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:45.991 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:46.010 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:46.011 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:46.011 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:51.012 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a80f3008-9665-4eb5-aa57-4c9ab3e4e3a7.sh\n2025-10-29 08:48:51.013 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:51.016 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_cd67c46f-6bf3-4774-99b3-3c3871ddbf76.sh"" | ssh -T -D 54799 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:51.016 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_cd67c46f-6bf3-4774-99b3-3c3871ddbf76.sh"" | ssh -T -D 54799 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:51.016 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:51.016 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:51.029 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:51.030 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:51.030 [info] Retrying connection in 5 seconds...\n2025-10-29 08:48:56.035 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_cd67c46f-6bf3-4774-99b3-3c3871ddbf76.sh\n2025-10-29 08:48:56.036 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:48:56.041 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1d3b4b20-37a6-450a-a1d8-294e9b00051a.sh"" | ssh -T -D 54800 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:56.041 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1d3b4b20-37a6-450a-a1d8-294e9b00051a.sh"" | ssh -T -D 54800 login.haicore.berlin bash --login -c bash\n2025-10-29 08:48:56.041 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:48:56.041 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:48:56.059 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:48:56.060 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:48:56.060 [info] Retrying connection in 5 seconds...\n2025-10-29 08:49:01.066 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1d3b4b20-37a6-450a-a1d8-294e9b00051a.sh\n2025-10-29 08:49:01.066 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:49:01.071 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_eefc7746-bb8d-4eb2-bc29-d3fb9d78c15a.sh"" | ssh -T -D 54801 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:01.071 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_eefc7746-bb8d-4eb2-bc29-d3fb9d78c15a.sh"" | ssh -T -D 54801 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:01.071 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:49:01.071 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:49:01.088 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:49:01.088 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:49:01.088 [info] Retrying connection in 5 seconds...\n2025-10-29 08:49:06.096 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_eefc7746-bb8d-4eb2-bc29-d3fb9d78c15a.sh\n2025-10-29 08:49:06.097 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:49:06.101 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a29ec9f2-a66d-400a-b16e-a4490e0e8265.sh"" | ssh -T -D 54802 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:06.101 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a29ec9f2-a66d-400a-b16e-a4490e0e8265.sh"" | ssh -T -D 54802 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:06.102 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:49:06.102 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:49:06.119 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:49:06.120 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:49:06.120 [info] Retrying connection in 5 seconds...\n2025-10-29 08:49:11.130 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_a29ec9f2-a66d-400a-b16e-a4490e0e8265.sh\n2025-10-29 08:49:11.130 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:49:11.132 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8ffd53a6-7515-4bf3-a4df-73b040f8eab1.sh"" | ssh -T -D 54803 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:11.132 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8ffd53a6-7515-4bf3-a4df-73b040f8eab1.sh"" | ssh -T -D 54803 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:11.132 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:49:11.132 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:49:11.140 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:49:11.141 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:49:11.141 [info] Retrying connection in 5 seconds...\n2025-10-29 08:49:16.152 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8ffd53a6-7515-4bf3-a4df-73b040f8eab1.sh\n2025-10-29 08:49:16.155 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:49:16.159 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ddf87536-7ac9-4b17-91b8-22d2077fa0e0.sh"" | ssh -T -D 54804 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:16.159 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ddf87536-7ac9-4b17-91b8-22d2077fa0e0.sh"" | ssh -T -D 54804 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:16.159 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:49:16.159 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:49:16.180 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:49:16.181 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:49:16.181 [info] Retrying connection in 5 seconds...\n2025-10-29 08:49:17.295 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:49:17.296 [info] [command][39d775e3-abd6-45f3-ac3f-979706e703ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""39d775e3-abd6-45f3-ac3f-979706e703ba""}\n2025-10-29 08:49:17.297 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][97941ab2-0700-4938-8448-e2572fa254e3] remote server not configured\n2025-10-29 08:49:17.297 [error] [command][39d775e3-abd6-45f3-ac3f-979706e703ba] Socket error: Error: read ECONNRESET\n2025-10-29 08:49:17.297 [info] [command][39d775e3-abd6-45f3-ac3f-979706e703ba] Socket close event received\n2025-10-29 08:49:17.297 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][39d775e3-abd6-45f3-ac3f-979706e703ba] Socket closed without exit code\n2025-10-29 08:49:21.183 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_ddf87536-7ac9-4b17-91b8-22d2077fa0e0.sh\n2025-10-29 08:49:21.184 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-j9pkSd/socket.sock\n2025-10-29 08:49:21.189 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8de29e1a-5574-4475-a0fd-f77f5ce41226.sh"" | ssh -T -D 54807 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:21.189 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8de29e1a-5574-4475-a0fd-f77f5ce41226.sh"" | ssh -T -D 54807 login.haicore.berlin bash --login -c bash\n2025-10-29 08:49:21.189 [info] Started installation script. Waiting for it to finish...\n2025-10-29 08:49:21.189 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 08:49:21.208 [info] (ssh_tunnel) stderr: ssh: connect to host login.haicore.berlin port 22: Undefined error: 0\n\n2025-10-29 08:49:21.209 [error] Error installing server: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:49:21.209 [error] Failed to connect after 61 attempts: Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:49:21.209 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8de29e1a-5574-4475-a0fd-f77f5ce41226.sh\n2025-10-29 08:49:21.210 [error] Error resolving SSH authority Failed to connect to the remote SSH host. Please check the logs for more details.\n2025-10-29 08:50:17.307 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:50:17.309 [info] [command][3a9bc5ea-1452-4102-89c9-74593f20d3f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""3a9bc5ea-1452-4102-89c9-74593f20d3f0""}\n2025-10-29 08:50:17.309 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][60d8f8a1-b46d-4864-bcb5-97d912c2f6e4] remote server not configured\n2025-10-29 08:50:17.310 [error] [command][3a9bc5ea-1452-4102-89c9-74593f20d3f0] Socket error: Error: read ECONNRESET\n2025-10-29 08:50:17.310 [info] [command][3a9bc5ea-1452-4102-89c9-74593f20d3f0] Socket close event received\n2025-10-29 08:50:17.310 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][3a9bc5ea-1452-4102-89c9-74593f20d3f0] Socket closed without exit code\n2025-10-29 08:51:17.320 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:51:17.321 [info] [command][1c32ce0f-01b6-4f81-a643-b58225ff5055] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""1c32ce0f-01b6-4f81-a643-b58225ff5055""}\n2025-10-29 08:51:17.322 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][e6ff3298-a5d3-465a-b40d-ba0bf65ecef7] remote server not configured\n2025-10-29 08:51:17.322 [error] [command][1c32ce0f-01b6-4f81-a643-b58225ff5055] Socket error: Error: read ECONNRESET\n2025-10-29 08:51:17.322 [info] [command][1c32ce0f-01b6-4f81-a643-b58225ff5055] Socket close event received\n2025-10-29 08:51:17.322 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][1c32ce0f-01b6-4f81-a643-b58225ff5055] Socket closed without exit code\n2025-10-29 08:52:17.332 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:52:17.334 [info] [command][1e3f6679-64cb-4af4-8b36-ff3fee7f9bb2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""1e3f6679-64cb-4af4-8b36-ff3fee7f9bb2""}\n2025-10-29 08:52:17.334 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][982da83d-afcd-428f-8458-2200f1cc8f79] remote server not configured\n2025-10-29 08:52:17.335 [error] [command][1e3f6679-64cb-4af4-8b36-ff3fee7f9bb2] Socket error: Error: read ECONNRESET\n2025-10-29 08:52:17.335 [info] [command][1e3f6679-64cb-4af4-8b36-ff3fee7f9bb2] Socket close event received\n2025-10-29 08:52:17.335 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][1e3f6679-64cb-4af4-8b36-ff3fee7f9bb2] Socket closed without exit code\n2025-10-29 08:53:17.345 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:53:17.347 [info] [command][cec1ddc9-99a1-4444-8bde-d8f12cf4732b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""cec1ddc9-99a1-4444-8bde-d8f12cf4732b""}\n2025-10-29 08:53:17.348 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][7177aeac-6d2e-4149-bea6-08f952d331b2] remote server not configured\n2025-10-29 08:53:17.348 [error] [command][cec1ddc9-99a1-4444-8bde-d8f12cf4732b] Socket error: Error: read ECONNRESET\n2025-10-29 08:53:17.348 [info] [command][cec1ddc9-99a1-4444-8bde-d8f12cf4732b] Socket close event received\n2025-10-29 08:53:17.349 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][cec1ddc9-99a1-4444-8bde-d8f12cf4732b] Socket closed without exit code\n2025-10-29 08:54:17.354 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:54:17.356 [info] [command][4fda7547-cfcf-48f9-8bee-537818ae53ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""4fda7547-cfcf-48f9-8bee-537818ae53ca""}\n2025-10-29 08:54:17.357 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][b1dc5c09-140f-419f-9151-568d9aa67a81] remote server not configured\n2025-10-29 08:54:17.357 [error] [command][4fda7547-cfcf-48f9-8bee-537818ae53ca] Socket error: Error: read ECONNRESET\n2025-10-29 08:54:17.357 [info] [command][4fda7547-cfcf-48f9-8bee-537818ae53ca] Socket close event received\n2025-10-29 08:54:17.358 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][4fda7547-cfcf-48f9-8bee-537818ae53ca] Socket closed without exit code\n2025-10-29 08:55:17.368 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:55:17.369 [info] [command][3ea0992d-9839-43d1-b919-889a50409918] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""3ea0992d-9839-43d1-b919-889a50409918""}\n2025-10-29 08:55:17.370 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][791fe5a1-1a52-49a8-97f2-6f05807bf45e] remote server not configured\n2025-10-29 08:55:17.371 [error] [command][3ea0992d-9839-43d1-b919-889a50409918] Socket error: Error: read ECONNRESET\n2025-10-29 08:55:17.371 [info] [command][3ea0992d-9839-43d1-b919-889a50409918] Socket close event received\n2025-10-29 08:55:17.371 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][3ea0992d-9839-43d1-b919-889a50409918] Socket closed without exit code\n2025-10-29 08:56:17.378 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:56:17.380 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][2f3432f8-9635-42af-9351-c8670aff58d8] remote server not configured\n2025-10-29 08:56:17.381 [info] [command][829e0408-d657-462d-b1d6-dc2ca4d9ea9b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""829e0408-d657-462d-b1d6-dc2ca4d9ea9b""}\n2025-10-29 08:56:17.382 [error] [command][829e0408-d657-462d-b1d6-dc2ca4d9ea9b] Socket error: Error: read ECONNRESET\n2025-10-29 08:56:17.382 [info] [command][829e0408-d657-462d-b1d6-dc2ca4d9ea9b] Socket close event received\n2025-10-29 08:56:17.382 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][829e0408-d657-462d-b1d6-dc2ca4d9ea9b] Socket closed without exit code\n2025-10-29 08:57:17.391 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:57:17.393 [info] [command][7e607bae-a4b3-431b-a397-11f45d5a4cde] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""7e607bae-a4b3-431b-a397-11f45d5a4cde""}\n2025-10-29 08:57:17.394 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][07bd448f-d131-41c3-b7aa-93f25744525d] remote server not configured\n2025-10-29 08:57:17.394 [error] [command][7e607bae-a4b3-431b-a397-11f45d5a4cde] Socket error: Error: read ECONNRESET\n2025-10-29 08:57:17.394 [info] [command][7e607bae-a4b3-431b-a397-11f45d5a4cde] Socket close event received\n2025-10-29 08:57:17.395 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][7e607bae-a4b3-431b-a397-11f45d5a4cde] Socket closed without exit code\n2025-10-29 08:58:17.400 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:58:17.402 [info] [command][9e8e4baf-0043-4a11-93b3-16393c5a900f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""9e8e4baf-0043-4a11-93b3-16393c5a900f""}\n2025-10-29 08:58:17.403 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][d6d2fe92-96d1-49b2-bdb9-d416fb3f251f] remote server not configured\n2025-10-29 08:58:17.403 [error] [command][9e8e4baf-0043-4a11-93b3-16393c5a900f] Socket error: Error: read ECONNRESET\n2025-10-29 08:58:17.403 [info] [command][9e8e4baf-0043-4a11-93b3-16393c5a900f] Socket close event received\n2025-10-29 08:58:17.403 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][9e8e4baf-0043-4a11-93b3-16393c5a900f] Socket closed without exit code\n2025-10-29 08:59:17.413 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 08:59:17.415 [info] [command][cb21abdb-b0b7-4d99-849b-6b9e21893168] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""cb21abdb-b0b7-4d99-849b-6b9e21893168""}\n2025-10-29 08:59:17.416 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][5e297ced-6e17-43ab-aa3b-4f030a372e07] remote server not configured\n2025-10-29 08:59:17.416 [error] [command][cb21abdb-b0b7-4d99-849b-6b9e21893168] Socket error: Error: read ECONNRESET\n2025-10-29 08:59:17.416 [info] [command][cb21abdb-b0b7-4d99-849b-6b9e21893168] Socket close event received\n2025-10-29 08:59:17.416 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][cb21abdb-b0b7-4d99-849b-6b9e21893168] Socket closed without exit code\n2025-10-29 09:00:17.421 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:00:17.423 [info] [command][38c57875-63de-4b25-898b-076aacd7d57e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""38c57875-63de-4b25-898b-076aacd7d57e""}\n2025-10-29 09:00:17.423 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][c9351fbb-5cb0-487b-a6ae-86efdb971e94] remote server not configured\n2025-10-29 09:00:17.423 [error] [command][38c57875-63de-4b25-898b-076aacd7d57e] Socket error: Error: read ECONNRESET\n2025-10-29 09:00:17.424 [info] [command][38c57875-63de-4b25-898b-076aacd7d57e] Socket close event received\n2025-10-29 09:00:17.424 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][38c57875-63de-4b25-898b-076aacd7d57e] Socket closed without exit code\n2025-10-29 09:01:17.426 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:01:17.428 [info] [command][5fcae62f-2669-4f88-8791-4a28a4bf2ea2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""5fcae62f-2669-4f88-8791-4a28a4bf2ea2""}\n2025-10-29 09:01:17.428 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][8ca4c678-c22b-44f8-a20e-8f00cd51739b] remote server not configured\n2025-10-29 09:01:17.429 [error] [command][5fcae62f-2669-4f88-8791-4a28a4bf2ea2] Socket error: Error: read ECONNRESET\n2025-10-29 09:01:17.429 [info] [command][5fcae62f-2669-4f88-8791-4a28a4bf2ea2] Socket close event received\n2025-10-29 09:01:17.430 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][5fcae62f-2669-4f88-8791-4a28a4bf2ea2] Socket closed without exit code\n2025-10-29 09:02:17.439 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:02:17.441 [info] [command][57a1eb09-42be-4b48-a4ed-976dc8f64564] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""57a1eb09-42be-4b48-a4ed-976dc8f64564""}\n2025-10-29 09:02:17.442 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][63cfb169-b930-4c0c-b10d-e5c31dc856e3] remote server not configured\n2025-10-29 09:02:17.442 [error] [command][57a1eb09-42be-4b48-a4ed-976dc8f64564] Socket error: Error: read ECONNRESET\n2025-10-29 09:02:17.442 [info] [command][57a1eb09-42be-4b48-a4ed-976dc8f64564] Socket close event received\n2025-10-29 09:02:17.442 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][57a1eb09-42be-4b48-a4ed-976dc8f64564] Socket closed without exit code\n2025-10-29 09:03:17.452 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:03:17.454 [info] [command][536a4fe0-83d3-486d-83c1-672066cb0467] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""536a4fe0-83d3-486d-83c1-672066cb0467""}\n2025-10-29 09:03:17.454 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][3a128f27-33a9-4ac7-b004-69c243f388ab] remote server not configured\n2025-10-29 09:03:17.455 [error] [command][536a4fe0-83d3-486d-83c1-672066cb0467] Socket error: Error: read ECONNRESET\n2025-10-29 09:03:17.455 [info] [command][536a4fe0-83d3-486d-83c1-672066cb0467] Socket close event received\n2025-10-29 09:03:17.455 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][536a4fe0-83d3-486d-83c1-672066cb0467] Socket closed without exit code\n2025-10-29 09:04:17.465 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:04:17.467 [info] [command][a604d8a2-e7f8-48b8-bc11-813e9511395d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""a604d8a2-e7f8-48b8-bc11-813e9511395d""}\n2025-10-29 09:04:17.468 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][cb5cd7a5-fd75-4cec-ad5d-4b3c2b974a20] remote server not configured\n2025-10-29 09:04:17.468 [error] [command][a604d8a2-e7f8-48b8-bc11-813e9511395d] Socket error: Error: read ECONNRESET\n2025-10-29 09:04:17.468 [info] [command][a604d8a2-e7f8-48b8-bc11-813e9511395d] Socket close event received\n2025-10-29 09:04:17.468 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][a604d8a2-e7f8-48b8-bc11-813e9511395d] Socket closed without exit code\n2025-10-29 09:05:17.479 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:05:17.480 [info] [command][a3edcd40-b042-4337-bac4-39932b78277f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""a3edcd40-b042-4337-bac4-39932b78277f""}\n2025-10-29 09:05:17.481 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][eb71c6a2-110c-44ae-82b3-2db8620ebfc4] remote server not configured\n2025-10-29 09:05:17.481 [error] [command][a3edcd40-b042-4337-bac4-39932b78277f] Socket error: Error: read ECONNRESET\n2025-10-29 09:05:17.482 [info] [command][a3edcd40-b042-4337-bac4-39932b78277f] Socket close event received\n2025-10-29 09:05:17.482 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][a3edcd40-b042-4337-bac4-39932b78277f] Socket closed without exit code\n2025-10-29 09:06:17.493 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:06:17.494 [info] [command][fe7dff7a-6351-4f4f-a74a-f59d366f4181] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""fe7dff7a-6351-4f4f-a74a-f59d366f4181""}\n2025-10-29 09:06:17.495 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][42a263fc-42b2-45ca-ad8d-26ca9b181d5d] remote server not configured\n2025-10-29 09:06:17.495 [error] [command][fe7dff7a-6351-4f4f-a74a-f59d366f4181] Socket error: Error: read ECONNRESET\n2025-10-29 09:06:17.496 [info] [command][fe7dff7a-6351-4f4f-a74a-f59d366f4181] Socket close event received\n2025-10-29 09:06:17.496 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][fe7dff7a-6351-4f4f-a74a-f59d366f4181] Socket closed without exit code\n2025-10-29 09:07:17.498 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:07:17.499 [info] [command][8a583b4f-5cc5-4b06-850e-06655fefb28f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""8a583b4f-5cc5-4b06-850e-06655fefb28f""}\n2025-10-29 09:07:17.500 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][d97ef671-33d9-492a-b873-8bd82b1a7637] remote server not configured\n2025-10-29 09:07:17.501 [error] [command][8a583b4f-5cc5-4b06-850e-06655fefb28f] Socket error: Error: read ECONNRESET\n2025-10-29 09:07:17.501 [info] [command][8a583b4f-5cc5-4b06-850e-06655fefb28f] Socket close event received\n2025-10-29 09:07:17.501 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][8a583b4f-5cc5-4b06-850e-06655fefb28f] Socket closed without exit code\n2025-10-29 09:08:17.511 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:08:17.513 [info] [command][63e0e242-c9da-42ad-bcea-09739a4ef077] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""63e0e242-c9da-42ad-bcea-09739a4ef077""}\n2025-10-29 09:08:17.513 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][99a37271-3039-4faa-8e93-769aa333c718] remote server not configured\n2025-10-29 09:08:17.514 [error] [command][63e0e242-c9da-42ad-bcea-09739a4ef077] Socket error: Error: read ECONNRESET\n2025-10-29 09:08:17.514 [info] [command][63e0e242-c9da-42ad-bcea-09739a4ef077] Socket close event received\n2025-10-29 09:08:17.514 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][63e0e242-c9da-42ad-bcea-09739a4ef077] Socket closed without exit code\n2025-10-29 09:09:17.524 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:09:17.526 [info] [command][a103da7f-ecbf-494c-9c65-da8e6ed02051] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""a103da7f-ecbf-494c-9c65-da8e6ed02051""}\n2025-10-29 09:09:17.526 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][da82466e-91c1-4270-8426-f42eb4d7f7a0] remote server not configured\n2025-10-29 09:09:17.527 [error] [command][a103da7f-ecbf-494c-9c65-da8e6ed02051] Socket error: Error: read ECONNRESET\n2025-10-29 09:09:17.527 [info] [command][a103da7f-ecbf-494c-9c65-da8e6ed02051] Socket close event received\n2025-10-29 09:09:17.527 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][a103da7f-ecbf-494c-9c65-da8e6ed02051] Socket closed without exit code\n2025-10-29 09:10:17.537 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:10:17.539 [info] [command][448e60d3-149b-4f08-8287-8437fb89dcc6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""448e60d3-149b-4f08-8287-8437fb89dcc6""}\n2025-10-29 09:10:17.540 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][3e518e91-7706-4c18-9980-9d3c77b2cf3f] remote server not configured\n2025-10-29 09:10:17.541 [error] [command][448e60d3-149b-4f08-8287-8437fb89dcc6] Socket error: Error: read ECONNRESET\n2025-10-29 09:10:17.541 [info] [command][448e60d3-149b-4f08-8287-8437fb89dcc6] Socket close event received\n2025-10-29 09:10:17.541 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][448e60d3-149b-4f08-8287-8437fb89dcc6] Socket closed without exit code\n2025-10-29 09:11:17.551 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:11:17.552 [info] [command][9f1f765f-d85c-4485-bc44-7848f5f8ac6d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""9f1f765f-d85c-4485-bc44-7848f5f8ac6d""}\n2025-10-29 09:11:17.553 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][d5e70568-9188-4f7a-8b86-d3f278efc29c] remote server not configured\n2025-10-29 09:11:17.554 [error] [command][9f1f765f-d85c-4485-bc44-7848f5f8ac6d] Socket error: Error: read ECONNRESET\n2025-10-29 09:11:17.554 [info] [command][9f1f765f-d85c-4485-bc44-7848f5f8ac6d] Socket close event received\n2025-10-29 09:11:17.554 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][9f1f765f-d85c-4485-bc44-7848f5f8ac6d] Socket closed without exit code\n2025-10-29 09:12:17.556 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:12:17.557 [info] [command][e726f3f2-1878-4eec-8884-8436da963030] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""e726f3f2-1878-4eec-8884-8436da963030""}\n2025-10-29 09:12:17.558 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][a20e4014-754c-4756-a95e-2adcced2234b] remote server not configured\n2025-10-29 09:12:17.558 [error] [command][e726f3f2-1878-4eec-8884-8436da963030] Socket error: Error: read ECONNRESET\n2025-10-29 09:12:17.558 [info] [command][e726f3f2-1878-4eec-8884-8436da963030] Socket close event received\n2025-10-29 09:12:17.559 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][e726f3f2-1878-4eec-8884-8436da963030] Socket closed without exit code\n2025-10-29 09:13:17.558 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:13:17.560 [info] [command][91a8c604-d49a-458b-97d7-96294f56054c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""91a8c604-d49a-458b-97d7-96294f56054c""}\n2025-10-29 09:13:17.560 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][4c1665a9-59e3-4ad2-9ea0-c07035008a19] remote server not configured\n2025-10-29 09:13:17.561 [error] [command][91a8c604-d49a-458b-97d7-96294f56054c] Socket error: Error: read ECONNRESET\n2025-10-29 09:13:17.561 [info] [command][91a8c604-d49a-458b-97d7-96294f56054c] Socket close event received\n2025-10-29 09:13:17.561 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][91a8c604-d49a-458b-97d7-96294f56054c] Socket closed without exit code\n2025-10-29 09:14:17.571 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:14:17.572 [info] [command][691af1f5-c97e-4064-a053-261df6ae89ee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""691af1f5-c97e-4064-a053-261df6ae89ee""}\n2025-10-29 09:14:17.573 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][eb001b85-d9a3-4f9b-b249-e7b53b3308d6] remote server not configured\n2025-10-29 09:14:17.573 [error] [command][691af1f5-c97e-4064-a053-261df6ae89ee] Socket error: Error: read ECONNRESET\n2025-10-29 09:14:17.573 [info] [command][691af1f5-c97e-4064-a053-261df6ae89ee] Socket close event received\n2025-10-29 09:14:17.573 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][691af1f5-c97e-4064-a053-261df6ae89ee] Socket closed without exit code\n2025-10-29 09:15:17.575 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:15:17.577 [info] [command][7bf0a9b3-d8a8-438b-a847-523596f37873] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""7bf0a9b3-d8a8-438b-a847-523596f37873""}\n2025-10-29 09:15:17.577 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][c529ea58-ef73-4413-b55b-e802af22bee6] remote server not configured\n2025-10-29 09:15:17.578 [error] [command][7bf0a9b3-d8a8-438b-a847-523596f37873] Socket error: Error: read ECONNRESET\n2025-10-29 09:15:17.578 [info] [command][7bf0a9b3-d8a8-438b-a847-523596f37873] Socket close event received\n2025-10-29 09:15:17.579 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][7bf0a9b3-d8a8-438b-a847-523596f37873] Socket closed without exit code\n2025-10-29 09:16:17.583 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:16:17.585 [info] [command][60321b5b-fc7d-4041-8a92-f574b35a69a4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""60321b5b-fc7d-4041-8a92-f574b35a69a4""}\n2025-10-29 09:16:17.585 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][6da7d7cb-5bdc-4de0-bb1e-d7561566474d] remote server not configured\n2025-10-29 09:16:17.586 [error] [command][60321b5b-fc7d-4041-8a92-f574b35a69a4] Socket error: Error: read ECONNRESET\n2025-10-29 09:16:17.586 [info] [command][60321b5b-fc7d-4041-8a92-f574b35a69a4] Socket close event received\n2025-10-29 09:16:17.587 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][60321b5b-fc7d-4041-8a92-f574b35a69a4] Socket closed without exit code\n2025-10-29 09:17:17.597 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:17:17.598 [info] [command][7c10c876-eb7b-4896-aff9-01f25ff44377] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""7c10c876-eb7b-4896-aff9-01f25ff44377""}\n2025-10-29 09:17:17.599 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][c4fd4690-a6ff-481f-bec9-a7ff307c10e2] remote server not configured\n2025-10-29 09:17:17.600 [error] [command][7c10c876-eb7b-4896-aff9-01f25ff44377] Socket error: Error: read ECONNRESET\n2025-10-29 09:17:17.600 [info] [command][7c10c876-eb7b-4896-aff9-01f25ff44377] Socket close event received\n2025-10-29 09:17:17.600 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][7c10c876-eb7b-4896-aff9-01f25ff44377] Socket closed without exit code\n2025-10-29 09:18:17.604 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:18:17.606 [info] [command][bbf1ff50-a86c-40d4-abc8-92768d13e81a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""bbf1ff50-a86c-40d4-abc8-92768d13e81a""}\n2025-10-29 09:18:17.607 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][2f44944e-d07d-4a63-b3a0-b72adf23f901] remote server not configured\n2025-10-29 09:18:17.608 [error] [command][bbf1ff50-a86c-40d4-abc8-92768d13e81a] Socket error: Error: read ECONNRESET\n2025-10-29 09:18:17.608 [info] [command][bbf1ff50-a86c-40d4-abc8-92768d13e81a] Socket close event received\n2025-10-29 09:18:17.608 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][bbf1ff50-a86c-40d4-abc8-92768d13e81a] Socket closed without exit code\n2025-10-29 09:19:17.616 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:19:17.618 [info] [command][477f570c-a8c1-4545-a68e-73719457e756] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""477f570c-a8c1-4545-a68e-73719457e756""}\n2025-10-29 09:19:17.618 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][305427ab-463f-4bbe-99f3-c9a717a24942] remote server not configured\n2025-10-29 09:19:17.619 [error] [command][477f570c-a8c1-4545-a68e-73719457e756] Socket error: Error: read ECONNRESET\n2025-10-29 09:19:17.619 [info] [command][477f570c-a8c1-4545-a68e-73719457e756] Socket close event received\n2025-10-29 09:19:17.619 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][477f570c-a8c1-4545-a68e-73719457e756] Socket closed without exit code\n2025-10-29 09:20:17.630 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:20:17.632 [info] [command][9d0fa6ee-4d7d-4cbb-b12e-089b77985dae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""9d0fa6ee-4d7d-4cbb-b12e-089b77985dae""}\n2025-10-29 09:20:17.632 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][d1896271-bbd3-46d1-8bf1-dae64f5939bf] remote server not configured\n2025-10-29 09:20:17.633 [error] [command][9d0fa6ee-4d7d-4cbb-b12e-089b77985dae] Socket error: Error: read ECONNRESET\n2025-10-29 09:20:17.633 [info] [command][9d0fa6ee-4d7d-4cbb-b12e-089b77985dae] Socket close event received\n2025-10-29 09:20:17.633 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][9d0fa6ee-4d7d-4cbb-b12e-089b77985dae] Socket closed without exit code\n2025-10-29 09:21:17.639 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:21:17.641 [info] [command][8eb0aa7e-ef6d-44a9-8424-499dd23289a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""8eb0aa7e-ef6d-44a9-8424-499dd23289a5""}\n2025-10-29 09:21:17.641 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][8a89acd2-710c-4134-b826-949ea5b3cc36] remote server not configured\n2025-10-29 09:21:17.642 [error] [command][8eb0aa7e-ef6d-44a9-8424-499dd23289a5] Socket error: Error: read ECONNRESET\n2025-10-29 09:21:17.642 [info] [command][8eb0aa7e-ef6d-44a9-8424-499dd23289a5] Socket close event received\n2025-10-29 09:21:17.642 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][8eb0aa7e-ef6d-44a9-8424-499dd23289a5] Socket closed without exit code\n2025-10-29 09:22:17.642 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:22:17.643 [info] [command][ae2591b9-aece-4658-b1e9-73a5916c0e15] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""ae2591b9-aece-4658-b1e9-73a5916c0e15""}\n2025-10-29 09:22:17.643 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][d943f092-28f0-4118-849c-27bd7b15c2b7] remote server not configured\n2025-10-29 09:22:17.643 [error] [command][ae2591b9-aece-4658-b1e9-73a5916c0e15] Socket error: Error: read ECONNRESET\n2025-10-29 09:22:17.643 [info] [command][ae2591b9-aece-4658-b1e9-73a5916c0e15] Socket close event received\n2025-10-29 09:22:17.644 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][ae2591b9-aece-4658-b1e9-73a5916c0e15] Socket closed without exit code\n2025-10-29 09:23:17.653 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:23:17.654 [info] [command][26606edc-67e2-4b49-9a63-1ef40138b969] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""26606edc-67e2-4b49-9a63-1ef40138b969""}\n2025-10-29 09:23:17.655 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][677656b5-a366-4e14-a165-b11eb7dba0eb] remote server not configured\n2025-10-29 09:23:17.655 [error] [command][26606edc-67e2-4b49-9a63-1ef40138b969] Socket error: Error: read ECONNRESET\n2025-10-29 09:23:17.655 [info] [command][26606edc-67e2-4b49-9a63-1ef40138b969] Socket close event received\n2025-10-29 09:23:17.656 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][26606edc-67e2-4b49-9a63-1ef40138b969] Socket closed without exit code\n2025-10-29 09:24:17.665 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:24:17.667 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][33497d07-ca3f-4049-a237-6292671b40b5] remote server not configured\n2025-10-29 09:24:17.668 [info] [command][e0cef355-f542-46fd-8eb1-a23eec582e54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""e0cef355-f542-46fd-8eb1-a23eec582e54""}\n2025-10-29 09:24:17.668 [error] [command][e0cef355-f542-46fd-8eb1-a23eec582e54] Socket error: Error: read ECONNRESET\n2025-10-29 09:24:17.668 [info] [command][e0cef355-f542-46fd-8eb1-a23eec582e54] Socket close event received\n2025-10-29 09:24:17.669 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][e0cef355-f542-46fd-8eb1-a23eec582e54] Socket closed without exit code\n2025-10-29 09:25:17.670 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:25:17.671 [info] [command][953a3162-a83f-4d9f-b284-e02cf21e977b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""953a3162-a83f-4d9f-b284-e02cf21e977b""}\n2025-10-29 09:25:17.672 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][d89ed641-68b9-403b-8502-9167aafffb17] remote server not configured\n2025-10-29 09:25:17.673 [error] [command][953a3162-a83f-4d9f-b284-e02cf21e977b] Socket error: Error: read ECONNRESET\n2025-10-29 09:25:17.673 [info] [command][953a3162-a83f-4d9f-b284-e02cf21e977b] Socket close event received\n2025-10-29 09:25:17.673 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][953a3162-a83f-4d9f-b284-e02cf21e977b] Socket closed without exit code\n2025-10-29 09:26:17.570 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:26:17.571 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][5b30ecb1-4f82-4d64-80a4-78b0e38be367] remote server not configured\n2025-10-29 09:26:17.572 [info] [command][76a55d26-7b78-43a0-9ed4-c0cb390e6c45] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""76a55d26-7b78-43a0-9ed4-c0cb390e6c45""}\n2025-10-29 09:26:17.572 [error] [command][76a55d26-7b78-43a0-9ed4-c0cb390e6c45] Socket error: Error: read ECONNRESET\n2025-10-29 09:26:17.572 [info] [command][76a55d26-7b78-43a0-9ed4-c0cb390e6c45] Socket close event received\n2025-10-29 09:26:17.572 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][76a55d26-7b78-43a0-9ed4-c0cb390e6c45] Socket closed without exit code\n2025-10-29 09:27:17.572 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:27:17.574 [info] [command][2b95d594-8378-46be-ae41-7a98d09deb93] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""2b95d594-8378-46be-ae41-7a98d09deb93""}\n2025-10-29 09:27:17.574 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][9fcced4a-8f2a-4ca1-b821-4f183be30a45] remote server not configured\n2025-10-29 09:27:17.574 [error] [command][2b95d594-8378-46be-ae41-7a98d09deb93] Socket error: Error: read ECONNRESET\n2025-10-29 09:27:17.575 [info] [command][2b95d594-8378-46be-ae41-7a98d09deb93] Socket close event received\n2025-10-29 09:27:17.575 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][2b95d594-8378-46be-ae41-7a98d09deb93] Socket closed without exit code\n2025-10-29 09:28:17.574 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:28:17.579 [info] [command][9995239f-c244-408d-b3e4-fae9a8d5afd3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""9995239f-c244-408d-b3e4-fae9a8d5afd3""}\n2025-10-29 09:28:17.579 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][769cc46c-7bd6-40f8-b595-4d1f73ffeb54] remote server not configured\n2025-10-29 09:28:17.579 [error] [command][9995239f-c244-408d-b3e4-fae9a8d5afd3] Socket error: Error: read ECONNRESET\n2025-10-29 09:28:17.579 [info] [command][9995239f-c244-408d-b3e4-fae9a8d5afd3] Socket close event received\n2025-10-29 09:28:17.579 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][9995239f-c244-408d-b3e4-fae9a8d5afd3] Socket closed without exit code\n2025-10-29 09:29:17.581 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:29:17.582 [info] [command][5b24ed05-fc9d-4224-9e16-f8eb8bb2803b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""5b24ed05-fc9d-4224-9e16-f8eb8bb2803b""}\n2025-10-29 09:29:17.582 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][8b805f6c-f4e7-4d26-85f9-053842ab9512] remote server not configured\n2025-10-29 09:29:17.583 [error] [command][5b24ed05-fc9d-4224-9e16-f8eb8bb2803b] Socket error: Error: read ECONNRESET\n2025-10-29 09:29:17.583 [info] [command][5b24ed05-fc9d-4224-9e16-f8eb8bb2803b] Socket close event received\n2025-10-29 09:29:17.583 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][5b24ed05-fc9d-4224-9e16-f8eb8bb2803b] Socket closed without exit code\n2025-10-29 09:30:17.587 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:30:17.589 [info] [command][0f4d2a99-9719-4aa0-af4c-2ccaf170d4d3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""0f4d2a99-9719-4aa0-af4c-2ccaf170d4d3""}\n2025-10-29 09:30:17.590 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][24f264d4-a78e-4c08-b838-928445cf2b76] remote server not configured\n2025-10-29 09:30:17.590 [error] [command][0f4d2a99-9719-4aa0-af4c-2ccaf170d4d3] Socket error: Error: read ECONNRESET\n2025-10-29 09:30:17.591 [info] [command][0f4d2a99-9719-4aa0-af4c-2ccaf170d4d3] Socket close event received\n2025-10-29 09:30:17.591 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][0f4d2a99-9719-4aa0-af4c-2ccaf170d4d3] Socket closed without exit code\n2025-10-29 09:31:17.591 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:31:17.592 [info] [command][fc0e76d6-768f-4348-b78c-719023118eae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""fc0e76d6-768f-4348-b78c-719023118eae""}\n2025-10-29 09:31:17.593 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][b8c55020-c1c5-4797-9739-5989fc0175d8] remote server not configured\n2025-10-29 09:31:17.593 [error] [command][fc0e76d6-768f-4348-b78c-719023118eae] Socket error: Error: read ECONNRESET\n2025-10-29 09:31:17.593 [info] [command][fc0e76d6-768f-4348-b78c-719023118eae] Socket close event received\n2025-10-29 09:31:17.594 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][fc0e76d6-768f-4348-b78c-719023118eae] Socket closed without exit code\n2025-10-29 09:32:17.597 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:32:17.598 [info] [command][cb9c70e4-8849-4800-89e7-adbab827336a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""cb9c70e4-8849-4800-89e7-adbab827336a""}\n2025-10-29 09:32:17.599 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][bf7bd582-1597-4094-82c2-d5cd2599c8f3] remote server not configured\n2025-10-29 09:32:17.599 [error] [command][cb9c70e4-8849-4800-89e7-adbab827336a] Socket error: Error: read ECONNRESET\n2025-10-29 09:32:17.599 [info] [command][cb9c70e4-8849-4800-89e7-adbab827336a] Socket close event received\n2025-10-29 09:32:17.600 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][cb9c70e4-8849-4800-89e7-adbab827336a] Socket closed without exit code\n2025-10-29 09:33:17.603 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:33:17.606 [info] [command][b5e13409-c93d-47d7-a670-a401bf6b7350] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""b5e13409-c93d-47d7-a670-a401bf6b7350""}\n2025-10-29 09:33:17.606 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][90a4639d-5c5b-4a87-bdb6-45912e6faada] remote server not configured\n2025-10-29 09:33:17.606 [error] [command][b5e13409-c93d-47d7-a670-a401bf6b7350] Socket error: Error: read ECONNRESET\n2025-10-29 09:33:17.607 [info] [command][b5e13409-c93d-47d7-a670-a401bf6b7350] Socket close event received\n2025-10-29 09:33:17.607 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][b5e13409-c93d-47d7-a670-a401bf6b7350] Socket closed without exit code\n2025-10-29 09:34:17.610 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:34:17.613 [info] [command][71cad269-d02e-408f-af87-a167a4ad3e87] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""71cad269-d02e-408f-af87-a167a4ad3e87""}\n2025-10-29 09:34:17.613 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][75845a84-9fe7-436e-bdd0-c8119b13aba5] remote server not configured\n2025-10-29 09:34:17.613 [error] [command][71cad269-d02e-408f-af87-a167a4ad3e87] Socket error: Error: read ECONNRESET\n2025-10-29 09:34:17.614 [info] [command][71cad269-d02e-408f-af87-a167a4ad3e87] Socket close event received\n2025-10-29 09:34:17.614 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][71cad269-d02e-408f-af87-a167a4ad3e87] Socket closed without exit code\n2025-10-29 09:35:17.617 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:35:17.619 [info] [command][f37da01b-fc99-4869-87ad-71eb980cc15c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""f37da01b-fc99-4869-87ad-71eb980cc15c""}\n2025-10-29 09:35:17.619 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][71aa75f2-fd9f-4e45-9e02-1a64997116af] remote server not configured\n2025-10-29 09:35:17.619 [error] [command][f37da01b-fc99-4869-87ad-71eb980cc15c] Socket error: Error: read ECONNRESET\n2025-10-29 09:35:17.620 [info] [command][f37da01b-fc99-4869-87ad-71eb980cc15c] Socket close event received\n2025-10-29 09:35:17.620 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][f37da01b-fc99-4869-87ad-71eb980cc15c] Socket closed without exit code\n2025-10-29 09:36:17.620 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:36:17.623 [info] [command][4522af71-8ee1-404d-a167-43385de25939] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""4522af71-8ee1-404d-a167-43385de25939""}\n2025-10-29 09:36:17.623 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][d1da1933-560f-4791-9aa6-73799d7d1c4f] remote server not configured\n2025-10-29 09:36:17.624 [error] [command][4522af71-8ee1-404d-a167-43385de25939] Socket error: Error: read ECONNRESET\n2025-10-29 09:36:17.624 [info] [command][4522af71-8ee1-404d-a167-43385de25939] Socket close event received\n2025-10-29 09:36:17.624 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][4522af71-8ee1-404d-a167-43385de25939] Socket closed without exit code\n2025-10-29 09:37:17.627 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:37:17.629 [info] [command][6290658f-b38a-40fb-9990-c6b56e752998] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""6290658f-b38a-40fb-9990-c6b56e752998""}\n2025-10-29 09:37:17.630 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][aaa01b34-c00c-4332-ba10-340682961aec] remote server not configured\n2025-10-29 09:37:17.630 [error] [command][6290658f-b38a-40fb-9990-c6b56e752998] Socket error: Error: read ECONNRESET\n2025-10-29 09:37:17.630 [info] [command][6290658f-b38a-40fb-9990-c6b56e752998] Socket close event received\n2025-10-29 09:37:17.630 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][6290658f-b38a-40fb-9990-c6b56e752998] Socket closed without exit code\n2025-10-29 09:38:17.633 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:38:17.635 [info] [command][b0562f09-5e33-49ad-8af3-bc07bafe62f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""b0562f09-5e33-49ad-8af3-bc07bafe62f5""}\n2025-10-29 09:38:17.635 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][b976dc3a-c3c8-455c-a04b-49e36202a3d2] remote server not configured\n2025-10-29 09:38:17.635 [error] [command][b0562f09-5e33-49ad-8af3-bc07bafe62f5] Socket error: Error: read ECONNRESET\n2025-10-29 09:38:17.636 [info] [command][b0562f09-5e33-49ad-8af3-bc07bafe62f5] Socket close event received\n2025-10-29 09:38:17.636 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][b0562f09-5e33-49ad-8af3-bc07bafe62f5] Socket closed without exit code\n2025-10-29 09:39:17.634 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:39:17.637 [info] [command][233348c3-c6f2-4ead-a2cb-93becdf7a0a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""233348c3-c6f2-4ead-a2cb-93becdf7a0a0""}\n2025-10-29 09:39:17.637 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][e5bfd5b3-a786-4481-beb7-8707e75d1248] remote server not configured\n2025-10-29 09:39:17.638 [error] [command][233348c3-c6f2-4ead-a2cb-93becdf7a0a0] Socket error: Error: read ECONNRESET\n2025-10-29 09:39:17.638 [info] [command][233348c3-c6f2-4ead-a2cb-93becdf7a0a0] Socket close event received\n2025-10-29 09:39:17.638 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][233348c3-c6f2-4ead-a2cb-93becdf7a0a0] Socket closed without exit code\n2025-10-29 09:40:17.647 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:40:17.649 [info] [command][bba231b4-8911-428e-b018-79620e938c33] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""bba231b4-8911-428e-b018-79620e938c33""}\n2025-10-29 09:40:17.650 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][2159f99f-faf2-4411-b355-a14c928a8141] remote server not configured\n2025-10-29 09:40:17.651 [error] [command][bba231b4-8911-428e-b018-79620e938c33] Socket error: Error: read ECONNRESET\n2025-10-29 09:40:17.651 [info] [command][bba231b4-8911-428e-b018-79620e938c33] Socket close event received\n2025-10-29 09:40:17.651 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][bba231b4-8911-428e-b018-79620e938c33] Socket closed without exit code\n2025-10-29 09:41:17.660 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:41:17.662 [info] [command][94a26899-57ab-47d2-baaa-dbb857a73839] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""94a26899-57ab-47d2-baaa-dbb857a73839""}\n2025-10-29 09:41:17.663 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][797828c5-2c9f-4989-ac6e-28c08a8c919c] remote server not configured\n2025-10-29 09:41:17.663 [error] [command][94a26899-57ab-47d2-baaa-dbb857a73839] Socket error: Error: read ECONNRESET\n2025-10-29 09:41:17.663 [info] [command][94a26899-57ab-47d2-baaa-dbb857a73839] Socket close event received\n2025-10-29 09:41:17.663 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][94a26899-57ab-47d2-baaa-dbb857a73839] Socket closed without exit code\n2025-10-29 09:42:17.673 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:42:17.675 [info] [command][cd614ced-6f98-465c-800e-4f6c894c07c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""cd614ced-6f98-465c-800e-4f6c894c07c7""}\n2025-10-29 09:42:17.676 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][be8ce2e2-615b-4ccc-aefc-42b6b00949cd] remote server not configured\n2025-10-29 09:42:17.676 [error] [command][cd614ced-6f98-465c-800e-4f6c894c07c7] Socket error: Error: read ECONNRESET\n2025-10-29 09:42:17.676 [info] [command][cd614ced-6f98-465c-800e-4f6c894c07c7] Socket close event received\n2025-10-29 09:42:17.676 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][cd614ced-6f98-465c-800e-4f6c894c07c7] Socket closed without exit code\n2025-10-29 09:43:17.679 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:43:17.681 [info] [command][8c655108-f43b-4120-8d5a-f1e632a8e586] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""8c655108-f43b-4120-8d5a-f1e632a8e586""}\n2025-10-29 09:43:17.681 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][f637bd43-4586-45bc-8863-997c155a649d] remote server not configured\n2025-10-29 09:43:17.682 [error] [command][8c655108-f43b-4120-8d5a-f1e632a8e586] Socket error: Error: read ECONNRESET\n2025-10-29 09:43:17.682 [info] [command][8c655108-f43b-4120-8d5a-f1e632a8e586] Socket close event received\n2025-10-29 09:43:17.683 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][8c655108-f43b-4120-8d5a-f1e632a8e586] Socket closed without exit code\n2025-10-29 09:44:17.687 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:44:17.689 [info] [command][f964f623-9d94-4d3c-8c17-dff021889f30] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""f964f623-9d94-4d3c-8c17-dff021889f30""}\n2025-10-29 09:44:17.690 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][483b8664-fd27-4ab3-9690-7b0f397a690b] remote server not configured\n2025-10-29 09:44:17.690 [error] [command][f964f623-9d94-4d3c-8c17-dff021889f30] Socket error: Error: read ECONNRESET\n2025-10-29 09:44:17.691 [info] [command][f964f623-9d94-4d3c-8c17-dff021889f30] Socket close event received\n2025-10-29 09:44:17.691 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][f964f623-9d94-4d3c-8c17-dff021889f30] Socket closed without exit code\n2025-10-29 09:45:17.700 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:45:17.703 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][cf0a680e-2420-41a3-a001-f65b985f30c2] remote server not configured\n2025-10-29 09:45:17.703 [info] [command][3e8583fb-b8fa-4461-9ea7-0d009714d561] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""3e8583fb-b8fa-4461-9ea7-0d009714d561""}\n2025-10-29 09:45:17.704 [error] [command][3e8583fb-b8fa-4461-9ea7-0d009714d561] Socket error: Error: read ECONNRESET\n2025-10-29 09:45:17.704 [info] [command][3e8583fb-b8fa-4461-9ea7-0d009714d561] Socket close event received\n2025-10-29 09:45:17.704 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][3e8583fb-b8fa-4461-9ea7-0d009714d561] Socket closed without exit code\n2025-10-29 09:46:17.706 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:46:17.707 [info] [command][9a438546-d151-4bec-839c-2cf59ebaf95e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""9a438546-d151-4bec-839c-2cf59ebaf95e""}\n2025-10-29 09:46:17.708 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][4223c828-fa2e-4395-9e88-aa4007903949] remote server not configured\n2025-10-29 09:46:17.709 [error] [command][9a438546-d151-4bec-839c-2cf59ebaf95e] Socket error: Error: read ECONNRESET\n2025-10-29 09:46:17.709 [info] [command][9a438546-d151-4bec-839c-2cf59ebaf95e] Socket close event received\n2025-10-29 09:46:17.709 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][9a438546-d151-4bec-839c-2cf59ebaf95e] Socket closed without exit code\n2025-10-29 09:47:17.717 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:47:17.719 [info] [command][307ce497-8632-4640-a0bd-3f3131889c88] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""307ce497-8632-4640-a0bd-3f3131889c88""}\n2025-10-29 09:47:17.719 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][6a163250-0184-4ec3-ba34-d46d6fa0311a] remote server not configured\n2025-10-29 09:47:17.720 [error] [command][307ce497-8632-4640-a0bd-3f3131889c88] Socket error: Error: read ECONNRESET\n2025-10-29 09:47:17.720 [info] [command][307ce497-8632-4640-a0bd-3f3131889c88] Socket close event received\n2025-10-29 09:47:17.720 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][307ce497-8632-4640-a0bd-3f3131889c88] Socket closed without exit code\n2025-10-29 09:48:17.729 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:48:17.731 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][ec5e9d3b-4f22-43dd-ac64-06a81eb31ad8] remote server not configured\n2025-10-29 09:48:17.732 [info] [command][4a71ffbb-0526-4b86-849b-b45c4275516c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""4a71ffbb-0526-4b86-849b-b45c4275516c""}\n2025-10-29 09:48:17.733 [error] [command][4a71ffbb-0526-4b86-849b-b45c4275516c] Socket error: Error: read ECONNRESET\n2025-10-29 09:48:17.733 [info] [command][4a71ffbb-0526-4b86-849b-b45c4275516c] Socket close event received\n2025-10-29 09:48:17.733 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][4a71ffbb-0526-4b86-849b-b45c4275516c] Socket closed without exit code\n2025-10-29 09:49:17.741 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:49:17.744 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][31d79e1a-98c7-4836-becf-8871bb7edcab] remote server not configured\n2025-10-29 09:49:17.744 [info] [command][6a2bd71c-cd33-43c2-96cd-766316467778] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""6a2bd71c-cd33-43c2-96cd-766316467778""}\n2025-10-29 09:49:17.745 [error] [command][6a2bd71c-cd33-43c2-96cd-766316467778] Socket error: Error: read ECONNRESET\n2025-10-29 09:49:17.746 [info] [command][6a2bd71c-cd33-43c2-96cd-766316467778] Socket close event received\n2025-10-29 09:49:17.746 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][6a2bd71c-cd33-43c2-96cd-766316467778] Socket closed without exit code\n2025-10-29 09:50:17.755 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:50:17.757 [info] [command][f796dc87-7910-4208-8256-b699dccdc133] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""f796dc87-7910-4208-8256-b699dccdc133""}\n2025-10-29 09:50:17.757 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][137ad783-e017-42aa-98f5-7aaf631af4d3] remote server not configured\n2025-10-29 09:50:17.758 [error] [command][f796dc87-7910-4208-8256-b699dccdc133] Socket error: Error: read ECONNRESET\n2025-10-29 09:50:17.758 [info] [command][f796dc87-7910-4208-8256-b699dccdc133] Socket close event received\n2025-10-29 09:50:17.759 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][f796dc87-7910-4208-8256-b699dccdc133] Socket closed without exit code\n2025-10-29 09:51:17.759 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:51:17.761 [info] [command][296dd0f1-a88c-413f-ba5f-4bef211c31a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""296dd0f1-a88c-413f-ba5f-4bef211c31a5""}\n2025-10-29 09:51:17.762 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][4bc5cb4e-39c1-4807-a9f3-0fe41fde5176] remote server not configured\n2025-10-29 09:51:17.762 [error] [command][296dd0f1-a88c-413f-ba5f-4bef211c31a5] Socket error: Error: read ECONNRESET\n2025-10-29 09:51:17.762 [info] [command][296dd0f1-a88c-413f-ba5f-4bef211c31a5] Socket close event received\n2025-10-29 09:51:17.762 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][296dd0f1-a88c-413f-ba5f-4bef211c31a5] Socket closed without exit code\n2025-10-29 09:52:17.771 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:52:17.772 [info] [command][5a05b29b-ed4f-4a19-bb19-79281128772a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""5a05b29b-ed4f-4a19-bb19-79281128772a""}\n2025-10-29 09:52:17.772 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][8c412e44-6fff-4823-aa71-20fae63c8ff9] remote server not configured\n2025-10-29 09:52:17.773 [error] [command][5a05b29b-ed4f-4a19-bb19-79281128772a] Socket error: Error: read ECONNRESET\n2025-10-29 09:52:17.773 [info] [command][5a05b29b-ed4f-4a19-bb19-79281128772a] Socket close event received\n2025-10-29 09:52:17.773 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][5a05b29b-ed4f-4a19-bb19-79281128772a] Socket closed without exit code\n2025-10-29 09:53:17.964 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:53:17.966 [info] [command][ab68ac8a-473d-4a6b-95ba-88146a98a5cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""ab68ac8a-473d-4a6b-95ba-88146a98a5cd""}\n2025-10-29 09:53:17.966 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][710d0745-4830-4a5d-9a99-d9ac5b343619] remote server not configured\n2025-10-29 09:53:17.967 [error] [command][ab68ac8a-473d-4a6b-95ba-88146a98a5cd] Socket error: Error: read ECONNRESET\n2025-10-29 09:53:17.967 [info] [command][ab68ac8a-473d-4a6b-95ba-88146a98a5cd] Socket close event received\n2025-10-29 09:53:17.967 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][ab68ac8a-473d-4a6b-95ba-88146a98a5cd] Socket closed without exit code\n2025-10-29 09:54:17.969 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:54:17.970 [info] [command][2cab48fe-3050-4c53-8aca-656c5f4f0070] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""2cab48fe-3050-4c53-8aca-656c5f4f0070""}\n2025-10-29 09:54:17.970 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][e1981882-5e30-4db7-b59a-7136e328d7db] remote server not configured\n2025-10-29 09:54:17.971 [error] [command][2cab48fe-3050-4c53-8aca-656c5f4f0070] Socket error: Error: read ECONNRESET\n2025-10-29 09:54:17.971 [info] [command][2cab48fe-3050-4c53-8aca-656c5f4f0070] Socket close event received\n2025-10-29 09:54:17.971 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][2cab48fe-3050-4c53-8aca-656c5f4f0070] Socket closed without exit code\n2025-10-29 09:55:17.986 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:55:17.987 [info] [command][57c90bc5-36a4-433c-8830-642e5ddee960] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""57c90bc5-36a4-433c-8830-642e5ddee960""}\n2025-10-29 09:55:17.988 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][fea9e8cd-805f-4828-b27e-33bbf4666246] remote server not configured\n2025-10-29 09:55:17.989 [error] [command][57c90bc5-36a4-433c-8830-642e5ddee960] Socket error: Error: read ECONNRESET\n2025-10-29 09:55:17.990 [info] [command][57c90bc5-36a4-433c-8830-642e5ddee960] Socket close event received\n2025-10-29 09:55:17.990 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][57c90bc5-36a4-433c-8830-642e5ddee960] Socket closed without exit code\n2025-10-29 09:56:17.995 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:56:17.996 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][5fb9938f-8b79-44f4-85bb-8f70ebe70c43] remote server not configured\n2025-10-29 09:56:17.997 [info] [command][f79562fc-13a5-478a-a023-2a7ca2bcc7af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""f79562fc-13a5-478a-a023-2a7ca2bcc7af""}\n2025-10-29 09:56:17.997 [error] [command][f79562fc-13a5-478a-a023-2a7ca2bcc7af] Socket error: Error: read ECONNRESET\n2025-10-29 09:56:17.997 [info] [command][f79562fc-13a5-478a-a023-2a7ca2bcc7af] Socket close event received\n2025-10-29 09:56:17.997 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][f79562fc-13a5-478a-a023-2a7ca2bcc7af] Socket closed without exit code\n2025-10-29 09:57:18.003 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:57:18.004 [info] [command][d00cf940-b961-4f30-a991-3cc45c3b3091] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""d00cf940-b961-4f30-a991-3cc45c3b3091""}\n2025-10-29 09:57:18.004 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][f7336e60-67ab-4331-b41a-e1165ee63e9e] remote server not configured\n2025-10-29 09:57:18.004 [error] [command][d00cf940-b961-4f30-a991-3cc45c3b3091] Socket error: Error: read ECONNRESET\n2025-10-29 09:57:18.004 [info] [command][d00cf940-b961-4f30-a991-3cc45c3b3091] Socket close event received\n2025-10-29 09:57:18.005 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][d00cf940-b961-4f30-a991-3cc45c3b3091] Socket closed without exit code\n2025-10-29 09:58:18.007 [info] [remote-ssh] Pinging remote server via 127.0.0.1:53652...\n2025-10-29 09:58:18.007 [info] [command][718320ec-cdea-4145-90c2-cc4a48fdfd5e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a8411eb-5322-429f-82be-459b20240cc8"",""id"":""718320ec-cdea-4145-90c2-cc4a48fdfd5e""}\n2025-10-29 09:58:18.008 [error] [forwarding][multiplex][127.0.0.1:53652 -> unknown}][09d266d0-9602-46a0-9702-1447c642f98f] remote server not configured\n2025-10-29 09:58:18.008 [error] [command][718320ec-cdea-4145-90c2-cc4a48fdfd5e] Socket error: Error: read ECONNRESET\n2025-10-29 09:58:18.008 [info] [command][718320ec-cdea-4145-90c2-cc4a48fdfd5e] Socket close event received\n2025-10-29 09:58:18.008 [warning] [remote-ssh] Failed to ping remote server via 127.0.0.1:53652: Error: [command][718320ec-cdea-4145-90c2-cc4a48fdfd5e] Socket closed without exit code\n2025-10-29 09:59:19.426 [info] Resolving ssh remote authority 'login.haicore.berlin' (Unparsed 'ssh-remote+7b22686f73744e616d65223a226c6f67696e2e686169636f72652e6265726c696e227d') (attempt #1)\n2025-10-29 09:59:19.436 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Bvj80v/socket.sock\n2025-10-29 09:59:19.437 [info] Using configured platform linux for remote host login.haicore.berlin\n2025-10-29 09:59:19.438 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.34/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Bvj80v/socket.sock\n2025-10-29 09:59:19.441 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_794763ee-4d61-402d-a70b-57ccd8020ff8.sh"" | ssh -T -D 56201 login.haicore.berlin bash --login -c bash\n2025-10-29 09:59:19.441 [info] Establishing SSH connection: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_794763ee-4d61-402d-a70b-57ccd8020ff8.sh"" | ssh -T -D 56201 login.haicore.berlin bash --login -c bash\n2025-10-29 09:59:19.441 [info] Started installation script. Waiting for it to finish...\n2025-10-29 09:59:19.441 [info] Waiting for server to install. Timeout: 30000ms\n2025-10-29 09:59:20.308 [info] (ssh_tunnel) stdout: Configuring Cursor Server on Remote\n\n2025-10-29 09:59:20.313 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/961800067\n\n2025-10-29 09:59:20.360 [info] (ssh_tunnel) stdout: Locking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\nServer script already installed in /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server\nChecking node executable\n\n2025-10-29 09:59:20.365 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-10-29 09:59:20.377 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-29 09:59:20.397 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-10-29 09:59:20.405 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-29 09:59:20.405 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/franz.srambical/.cursor-server/bin/multiplex-server\n\n2025-10-29 09:59:20.407 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js\n\n2025-10-29 09:59:20.414 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node /home/franz.srambical/.cursor-server/bin/multiplex-server/3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8.js e1dc22e6-b7b4-4c9c-b432-d3423b3d5157 0\n\n2025-10-29 09:59:20.416 [info] (ssh_tunnel) stdout: Multiplex server started with PID 789170 and wrote pid to file /run/user/961800067/cursor-remote-multiplex.pid.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-29 09:59:20.417 [info] (ssh_tunnel) stdout: Reading multiplex server token file /run/user/961800067/cursor-remote-multiplex.token.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\nMultiplex server token file found\n\n2025-10-29 09:59:20.417 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/961800067/cursor-remote-multiplex.log.c403edc4db82e26fa41a0903d75ac6d0.3ce73d09cffc8f33c6d911e972bd0f6dabbe3e26e810844be8060e6b10987db8\n\n2025-10-29 09:59:20.927 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-10-29 09:59:20.947 [info] (ssh_tunnel) stdout: Code server script is already running /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server. Running processes are 726528 sh /home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/961800067/cursor-remote-code.token.c403edc4db82e26fa41a0903d75ac6d0 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\n\n2025-10-29 09:59:20.948 [info] (ssh_tunnel) stdout: Code server log file is /run/user/961800067/cursor-remote-code.log.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-29 09:59:20.955 [info] (ssh_tunnel) stdout: 7e9d2d89dfded69e1334d1e0: start\nexitCode==0==\nnodeExecutable==/home/franz.srambical/.cursor-server/bin/3ccce8f55d8cca49f6d28b491a844c699b8719a0/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==35833==\nmultiplexConnectionToken==e1dc22e6-b7b4-4c9c-b432-d3423b3d5157==\ncodeListeningOn==45865==\ncodeConnectionToken==7e1e20b8-0b29-4605-a891-4c61c5c55457==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n7e9d2d89dfded69e1334d1e0: end\n\n2025-10-29 09:59:20.957 [info] Server install command exit code: 0\n2025-10-29 09:59:20.957 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_794763ee-4d61-402d-a70b-57ccd8020ff8.sh\n2025-10-29 09:59:20.957 [info] [forwarding][code] creating new forwarding server\n2025-10-29 09:59:20.957 [info] [forwarding][code] server listening on 127.0.0.1:56206\n2025-10-29 09:59:20.957 [info] [forwarding][code] Set up server\n2025-10-29 09:59:20.958 [info] [remote-ssh] codeListeningOn (remote=127.0.0.1:45865; local=127.0.0.1:56206) codeConnectionToken: 7e1e20b8-0b29-4605-a891-4c61c5c55457\n2025-10-29 09:59:20.958 [info] [forwarding][multiplex] creating new forwarding server\n2025-10-29 09:59:20.958 [info] [forwarding][multiplex] server listening on 127.0.0.1:56207\n2025-10-29 09:59:20.958 [info] [forwarding][multiplex] Set up server\n2025-10-29 09:59:20.959 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: e1dc22e6-b7b4-4c9c-b432-d3423b3d5157\n2025-10-29 09:59:20.959 [info] [remote-ssh] Pinging remote server via 127.0.0.1:56207...\n2025-10-29 09:59:20.959 [info] [remote-ssh] Resolved exec server. Socks port: 56201\n2025-10-29 09:59:20.959 [info] Setting up 0 default forwarded ports\n2025-10-29 09:59:20.960 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":56206,""connectionToken"":""7e1e20b8-0b29-4605-a891-4c61c5c55457"",""extensionHostEnv"":{}}. Socks port: 56201\n2025-10-29 09:59:20.960 [info] (ssh_tunnel) stdout: Unlocking /run/user/961800067/cursor-remote-lock.c403edc4db82e26fa41a0903d75ac6d0\n\n2025-10-29 09:59:20.961 [info] [command][5cc332f9-ad27-48c4-ae65-8152a3048c7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""e1dc22e6-b7b4-4c9c-b432-d3423b3d5157"",""id"":""5cc332f9-ad27-48c4-ae65-8152a3048c7a""}\n2025-10-29 09:59:20.961 [info] [forwarding][multiplex][127.0.0.1:56207 -> 127.0.0.1:35833][e31b25ff-b217-499c-80cc-4a634b4177f8] received connection request\n2025-10-29 09:59:20.962 [info] (ssh_tunnel) stdout: \n***********************************************************************\n* This terminal is used to establish and maintain the SSH connection. *\n* Closing this terminal will terminate the connection and disconnect *\n* Cursor from the remote server. *\n***********************************************************************\n\n2025-10-29 09:59:20.984 [info] [forwarding][multiplex][127.0.0.1:56207 -> 127.0.0.1:56201 -> 127.0.0.1:35833][e31b25ff-b217-499c-80cc-4a634b4177f8] socks forwarding established\n2025-10-29 09:59:21.012 [info] [command][5cc332f9-ad27-48c4-ae65-8152a3048c7a] Process exited with code 0\n2025-10-29 09:59:21.012 [info] [command][5cc332f9-ad27-48c4-ae65-8152a3048c7a] Socket close event received\n2025-10-29 09:59:21.013 [info] [forwarding][multiplex][127.0.0.1:56207 -> 127.0.0.1:56201 -> 127.0.0.1:35833][e31b25ff-b217-499c-80cc-4a634b4177f8] socks connection closed\n2025-10-29 09:59:21.023 [info] [forwarding][code][127.0.0.1:56206 -> 127.0.0.1:45865][156debfe-ad3d-4e69-ad2d-28489d1da127] received connection request\n2025-10-29 09:59:21.053 [info] [forwarding][code][127.0.0.1:56206 -> 127.0.0.1:56201 -> 127.0.0.1:45865][156debfe-ad3d-4e69-ad2d-28489d1da127] socks forwarding established\n2025-10-29 09:59:21.098 [info] [forwarding][code][127.0.0.1:56206 -> 127.0.0.1:45865][719811f1-75ce-424b-8017-bba5e9f4e172] received connection request\n2025-10-29 09:59:21.120 [info] [forwarding][code][127.0.0.1:56206 -> 127.0.0.1:56201 -> 127.0.0.1:45865][719811f1-75ce-424b-8017-bba5e9f4e172] socks forwarding established\n2025-10-29 09:59:21.263 [info] Saved platform linux for remote host login.haicore.berlin\n2025-10-29 09:59:23.936 [info] [tunnel-forwarding][localhost:8888 -> 127.0.0.1:8888] server listening\n2025-10-29 09:59:23.936 [info] Cross binding to [::1]:8888. Originally bound to 127.0.0.1:8888\n2025-10-29 09:59:23.936 [info] [tunnel-forwarding][::1:8888 -> 127.0.0.1:8888] server listening\n2025-10-29 09:59:23.945 [info] [tunnel-forwarding][localhost:62884 -> localhost:6006] server listening\n2025-10-29 09:59:23.945 [info] Cross binding to [::1]:62884. Originally bound to 127.0.0.1:62884\n2025-10-29 09:59:23.945 [info] [tunnel-forwarding][::1:62884 -> localhost:6006] server listening\n",log,tab +3,65,"jasmine/baselines/maskgit/train_dynamics_maskgit.py",0,0,"",python,tab +4,235,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"9:59:25 AM [info] Activating crowd-code\n9:59:25 AM [info] Recording started\n9:59:25 AM [info] Initializing git provider using file system watchers...\n",Log,tab +5,298,"extension-output-pdoom-org.crowd-code-#1-crowd-code",150,0,"9:59:25 AM [info] Git repository found\n9:59:25 AM [info] Git provider initialized successfully\n9:59:25 AM [info] Initial git state: [object Object]\n",Log,content +6,4448,"TERMINAL",0,0,"",,terminal_command +7,11199,"TERMINAL",0,0,"",,terminal_command +8,119387,"TERMINAL",0,0,"",,terminal_command +9,1758215,"jasmine/baselines/maskgit/train_dynamics_maskgit.py",0,0,"",python,tab diff --git a/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-42977cf0-50f0-4dc9-b77f-2db2b88a939d1753960254266-2025_07_31-13.11.02.905/source.csv b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-42977cf0-50f0-4dc9-b77f-2db2b88a939d1753960254266-2025_07_31-13.11.02.905/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..e166ae9f3bda28b8a210be83c7d535d236a3e4f5 --- /dev/null +++ b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-42977cf0-50f0-4dc9-b77f-2db2b88a939d1753960254266-2025_07_31-13.11.02.905/source.csv @@ -0,0 +1,3211 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,3,"genie.py",0,0,"from typing import Dict\n\nimport optax\nimport jax\nimport jax.numpy as jnp\nimport flax.nnx as nnx\nimport orbax.checkpoint as ocp\n\nfrom models.dynamics import DynamicsMaskGIT, DynamicsCausal\nfrom models.lam import LatentActionModel\nfrom models.tokenizer import TokenizerVQVAE\n\n\nclass Genie(nnx.Module):\n """"""Genie model""""""\n\n def __init__(\n self,\n in_dim: int,\n tokenizer_dim: int,\n tokenizer_ffn_dim: int,\n latent_patch_dim: int,\n num_patch_latents: int,\n patch_size: int,\n tokenizer_num_blocks: int,\n tokenizer_num_heads: int,\n lam_dim: int,\n lam_ffn_dim: int,\n latent_action_dim: int,\n num_latent_actions: int,\n lam_patch_size: int,\n lam_num_blocks: int,\n lam_num_heads: int,\n lam_co_train: bool,\n dyna_type: str,\n dyna_dim: int,\n dyna_ffn_dim: int,\n dyna_num_blocks: int,\n dyna_num_heads: int,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n dropout: float = 0.0,\n mask_limit: float = 0.0,\n ):\n # --- Tokenizer ---\n self.in_dim = in_dim\n self.tokenizer_dim = tokenizer_dim\n self.tokenizer_ffn_dim = tokenizer_ffn_dim\n self.latent_patch_dim = latent_patch_dim\n self.num_patch_latents = num_patch_latents\n self.patch_size = patch_size\n self.tokenizer_num_blocks = tokenizer_num_blocks\n self.tokenizer_num_heads = tokenizer_num_heads\n # --- LAM ---\n self.lam_dim = lam_dim\n self.lam_ffn_dim = lam_ffn_dim\n self.latent_action_dim = latent_action_dim\n self.num_latent_actions = num_latent_actions\n self.lam_patch_size = lam_patch_size\n self.lam_num_blocks = lam_num_blocks\n self.lam_num_heads = lam_num_heads\n self.lam_co_train = lam_co_train\n # --- Dynamics ---\n self.dyna_type = dyna_type\n self.dyna_dim = dyna_dim\n self.dyna_ffn_dim = dyna_ffn_dim\n self.dyna_num_blocks = dyna_num_blocks\n self.dyna_num_heads = dyna_num_heads\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n self.dropout = dropout\n self.mask_limit = mask_limit\n\n self.tokenizer = TokenizerVQVAE(\n in_dim=self.in_dim,\n model_dim=self.tokenizer_dim,\n ffn_dim=self.tokenizer_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_patch_latents,\n patch_size=self.patch_size,\n num_blocks=self.tokenizer_num_blocks,\n num_heads=self.tokenizer_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n self.lam = LatentActionModel(\n in_dim=self.in_dim,\n model_dim=self.lam_dim,\n ffn_dim=self.lam_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_latent_actions,\n patch_size=self.lam_patch_size,\n num_blocks=self.lam_num_blocks,\n num_heads=self.lam_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n if self.dyna_type == ""maskgit"":\n self.dynamics = DynamicsMaskGIT(\n model_dim=self.dyna_dim,\n ffn_dim=self.dyna_ffn_dim,\n num_latents=self.num_patch_latents,\n latent_action_dim=self.latent_action_dim,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n mask_limit=self.mask_limit,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n elif self.dyna_type == ""causal"":\n self.dynamics = DynamicsCausal(\n model_dim=self.dyna_dim,\n ffn_dim=self.dyna_ffn_dim,\n num_latents=self.num_patch_latents,\n latent_action_dim=self.latent_action_dim,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n decode=False,\n rngs=rngs,\n )\n else:\n raise ValueError(f""Invalid dynamics type: {self.dyna_type}"")\n\n def __call__(\n self, batch: Dict[str, jax.Array], training: bool = True\n ) -> Dict[str, jax.Array]:\n videos_BTHWC = batch[""videos""]\n tokenizer_outputs = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_indices_BTN = tokenizer_outputs[""indices""]\n lam_outputs = self.lam.vq_encode(videos_BTHWC, training=False)\n z_q_BTm11L = lam_outputs[""z_q""]\n action_indices_E = lam_outputs[""indices""]\n latent_actions_BTm11L = jax.lax.cond(\n self.lam_co_train,\n lambda: z_q_BTm11L,\n lambda: jax.lax.stop_gradient(z_q_BTm11L),\n )\n outputs = dict(\n video_tokens=jax.lax.stop_gradient(token_indices_BTN),\n latent_actions=latent_actions_BTm11L,\n )\n outputs[""mask_rng""] = batch[""mask_rng""]\n dyna_logits_BTNV, dyna_mask = self.dynamics(outputs, training)\n outputs[""token_logits""] = dyna_logits_BTNV\n if dyna_mask is not None:\n outputs[""mask""] = dyna_mask\n mle_indices_BTN = jnp.argmax(outputs[""token_logits""], axis=-1)\n H, W = batch[""videos""].shape[2:4]\n outputs[""recon""] = self.tokenizer.decode(mle_indices_BTN, (H, W))\n outputs[""lam_indices""] = action_indices_E\n return outputs\n\n # FIXME (f.srambical): sampling should be moved to the dynamics classes\n def sample(\n self,\n batch: Dict[str, jax.Array],\n seq_len: int,\n steps: int = 25,\n temperature: float = 1,\n sample_argmax: bool = False,\n ) -> jax.Array:\n """"""\n Autoregressively samples up to `seq_len` future frames, following Figure 8 of the paper.\n\n - Input frames are tokenized once.\n - Future frames are generated autoregressively in token space.\n - All frames are detokenized in a single pass.\n\n Note:\n - For interactive or step-wise sampling, detokenization should occur after each action.\n - To maintain consistent tensor shapes across timesteps, all current and future frames are decoded at every step.\n - Temporal causal structure is preserved by\n a) reapplying the mask before each decoding step.\n b) a temporal causal mask is applied within each ST-transformer block.\n\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n M: model dimension\n S: sequence length\n H: height\n W: width\n E: B * (S - 1)\n """"""\n # --- Encode videos and actions ---\n videos_BTHWC = batch[""videos""]\n latent_actions_E = batch[""latent_actions""]\n tokenizer_out = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_idxs_BTN = tokenizer_out[""indices""]\n B, T, N = token_idxs_BTN.shape\n pad_shape = (B, seq_len - T, N)\n pad = jnp.zeros(pad_shape, dtype=token_idxs_BTN.dtype)\n token_idxs_BSN = jnp.concatenate([token_idxs_BTN, pad], axis=1)\n action_tokens_EL = self.lam.vq.get_codes(latent_actions_E)\n\n def maskgit_step_fn(\n carry: tuple[jax.Array, jax.Array, jax.Array, jax.Array], step: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array, jax.Array, jax.Array], None]:\n rng, token_idxs_BSN, mask_BSN, action_tokens_EL = carry\n S, N = token_idxs_BSN.shape[1:]\n L = action_tokens_EL.shape[-1]\n\n # --- Construct + encode video ---\n vid_embed_BSNM = self.dynamics.patch_embed(token_idxs_BSN)\n mask_token_111M = self.dynamics.mask_token.value\n mask_expanded_BSN1 = mask_BSN[..., None]\n vid_embed_BSNM = jnp.where(mask_expanded_BSN1, mask_token_111M, vid_embed_BSNM)\n\n # --- Predict transition ---\n action_tokens_BSm1L = jnp.reshape(action_tokens_EL, (B, S - 1, L))\n act_embed_BSm1M = self.dynamics.action_up(action_tokens_BSm1L)\n vid_embed_BSNM += jnp.pad(act_embed_BSm1M, ((0, 0), (1, 0), (0, 0), (0, 0)))\n unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (steps * 2))\n step_temp = temperature * (1.0 - unmasked_ratio)\n final_logits_BSNV = self.dynamics.transformer(vid_embed_BSNM) / step_temp\n\n # --- Sample new tokens for final frame ---\n if sample_argmax:\n sampled_token_idxs_BSN = jnp.argmax(final_logits_BSNV, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs_BSN = jax.random.categorical(_rng, final_logits_BSNV)\n gather_fn = jax.vmap(jax.vmap(jax.vmap(lambda x, y: x[y])))\n final_token_probs_BSN = gather_fn(\n jax.nn.softmax(final_logits_BSNV), sampled_token_idxs_BSN\n )\n final_token_probs_BSN += ~mask_BSN\n # Update masked tokens only\n token_idxs_BSN = jnp.where(mask_BSN, sampled_token_idxs_BSN, token_idxs_BSN)\n\n # --- Update mask ---\n num_unmasked_tokens = jnp.round(N * (1.0 - unmasked_ratio)).astype(int)\n idx_mask_N = jnp.arange(final_token_probs_BSN.shape[-1]) > num_unmasked_tokens\n sorted_idxs_BSN = jnp.argsort(final_token_probs_BSN, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask_N))\n new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)\n\n new_carry = (rng, token_idxs_BSN, new_mask_BSN, action_tokens_EL)\n return new_carry, None\n\n def generation_step_fn(\n carry: tuple[jax.Array, jax.Array], step_t: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array], None]:\n rng, current_token_idxs_BSN = carry\n rng, step_rng = jax.random.split(rng)\n\n # Mask current and future frames (i.e., t >= step_t)\n mask_S = jnp.arange(seq_len) >= step_t\n mask_BSN = jnp.broadcast_to(mask_S[None, :, None], (B, seq_len, N)).astype(\n bool\n )\n masked_token_idxs_BSN = current_token_idxs_BSN * ~mask_BSN\n\n # --- Initialize and run MaskGIT loop ---\n init_carry_maskgit = (\n step_rng,\n masked_token_idxs_BSN,\n mask_BSN,\n action_tokens_EL,\n )\n final_carry_maskgit, _ = jax.lax.scan(\n maskgit_step_fn, init_carry_maskgit, jnp.arange(steps)\n )\n updated_token_idxs = final_carry_maskgit[1]\n new_carry = (rng, updated_token_idxs)\n return new_carry, None\n\n # --- Run the autoregressive generation using jax.lax.scan ---\n initial_carry = (batch[""rng""], token_idxs_BSN)\n timesteps_to_scan = jnp.arange(T, seq_len)\n final_carry, _ = jax.lax.scan(\n generation_step_fn, initial_carry, timesteps_to_scan\n )\n final_token_idxs = final_carry[1]\n\n # --- Decode all tokens at once at the end ---\n H, W = batch[""videos""].shape[2:4]\n final_frames = self.tokenizer.decode(\n final_token_idxs,\n video_hw=(H, W),\n )\n return final_frames\n\n def sample_causal(\n self,\n batch: Dict[str, jax.Array],\n seq_len: int,\n temperature: float = 1,\n sample_argmax: bool = False,\n ) -> jax.Array:\n # FIXME (f.srambical): implement this\n """"""\n Autoregressively samples up to `seq_len` future frames, following Figure 8 of the paper.\n\n - Input frames are tokenized once.\n - Future frames are generated autoregressively in token space.\n - All frames are detokenized in a single pass.\n\n Note:\n - For interactive or step-wise sampling, detokenization should occur after each action.\n - To maintain consistent tensor shapes across timesteps, all current and future frames are decoded at every step.\n - Temporal causal structure is preserved by\n a) reapplying the mask before each decoding step.\n b) a temporal causal mask is applied within each ST-transformer block.\n\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n M: model dimension\n S: sequence length\n H: height\n W: width\n E: B * (S - 1)\n """"""\n # --- Encode videos and actions ---\n videos_BTHWC = batch[""videos""]\n latent_actions_E = batch[""latent_actions""]\n tokenizer_out = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_idxs_BTN = tokenizer_out[""indices""]\n B, T, N = token_idxs_BTN.shape\n pad_shape = (B, seq_len - T, N)\n pad = jnp.zeros(pad_shape, dtype=token_idxs_BTN.dtype)\n token_idxs_BSN = jnp.concatenate([token_idxs_BTN, pad], axis=1)\n action_tokens_EL = self.lam.vq.get_codes(latent_actions_E)\n\n def causal_step_fn(\n carry: tuple[jax.Array, jax.Array, jax.Array], step: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array, jax.Array], None]:\n rng, token_idxs_BSN, action_tokens_EL = carry\n S, N = token_idxs_BSN.shape[1:]\n L = action_tokens_EL.shape[-1]\n\n # --- Construct + encode video ---\n vid_embed_BSNM = self.dynamics.patch_embed(token_idxs_BSN)\n\n # --- Predict transition ---\n action_tokens_BSm1L = jnp.reshape(action_tokens_EL, (B, S - 1, L))\n act_embed_BSm1M = self.dynamics.action_up(action_tokens_BSm1L)\n act_embed_BSM = jnp.pad(act_embed_BSm1M, ((0, 0), (1, 0), (0, 0), (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, action_))\n vid_embed_BSNp1M = jnp.concatenate([act_embed_BS1M, vid_embed_BSNM], axis=2)\n unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (steps * 2))\n step_temp = temperature * (1.0 - unmasked_ratio)\n final_logits_BSNV = self.dynamics.transformer(vid_embed_BSNM) / step_temp\n\n # --- Sample new tokens for final frame ---\n if sample_argmax:\n sampled_token_idxs_BSN = jnp.argmax(final_logits_BSNV, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs_BSN = jax.random.categorical(_rng, final_logits_BSNV)\n gather_fn = jax.vmap(jax.vmap(jax.vmap(lambda x, y: x[y])))\n final_token_probs_BSN = gather_fn(\n jax.nn.softmax(final_logits_BSNV), sampled_token_idxs_BSN\n )\n final_token_probs_BSN += ~mask_BSN\n # Update masked tokens only\n token_idxs_BSN = jnp.where(mask_BSN, sampled_token_idxs_BSN, token_idxs_BSN)\n\n # --- Update mask ---\n num_unmasked_tokens = jnp.round(N * (1.0 - unmasked_ratio)).astype(int)\n idx_mask_N = jnp.arange(final_token_probs_BSN.shape[-1]) > num_unmasked_tokens\n sorted_idxs_BSN = jnp.argsort(final_token_probs_BSN, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask_N))\n new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)\n\n new_carry = (rng, token_idxs_BSN, new_mask_BSN, action_tokens_EL)\n return new_carry, None\n\n def generation_step_fn(\n carry: tuple[jax.Array, jax.Array], step_t: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array], None]:\n rng, current_token_idxs_BSN = carry\n rng, step_rng = jax.random.split(rng)\n\n # --- Initialize and run causal loop ---\n init_carry_causal = (\n step_rng,\n current_token_idxs_BSN,\n action_tokens_EL,\n )\n final_carry_causal, _ = jax.lax.scan(\n causal_step_fn, init_carry_causal, jnp.arange(N)\n )\n updated_token_idxs = final_carry_causal[1]\n new_carry = (rng, updated_token_idxs)\n return new_carry, None\n\n # --- Run the autoregressive generation using jax.lax.scan ---\n initial_carry = (batch[""rng""], token_idxs_BSN)\n timesteps_to_scan = jnp.arange(T, seq_len)\n final_carry, _ = jax.lax.scan(\n generation_step_fn, initial_carry, timesteps_to_scan\n )\n final_token_idxs = final_carry[1]\n\n # --- Decode all tokens at once at the end ---\n H, W = batch[""videos""].shape[2:4]\n final_frames = self.tokenizer.decode(\n final_token_idxs,\n video_hw=(H, W),\n )\n return final_frames\n\n def vq_encode(self, batch: Dict[str, jax.Array], training: bool) -> jax.Array:\n # --- Preprocess videos ---\n video_BTHWC = batch[""videos""]\n lam_output = self.lam.vq_encode(video_BTHWC, training=training)\n lam_indices_E = lam_output[""indices""]\n return lam_indices_E\n\n# FIXME (f.srambical): add conversion script for old checkpoints\ndef restore_genie_components(\n optimizer: nnx.Optimizer,\n sharding: jax.sharding.NamedSharding,\n rng: jax.Array,\n args,\n) -> nnx.Optimizer:\n """"""Restore pre-trained Genie components""""""\n rngs = nnx.Rngs(rng)\n\n tx = optimizer.tx\n model = optimizer.model\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n tokenizer_checkpoint_manager = ocp.CheckpointManager(\n directory=args.tokenizer_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.tokenizer_dim,\n ffn_dim=args.tokenizer_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n num_blocks=args.tokenizer_num_blocks,\n num_heads=args.tokenizer_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n dummy_tokenizer_optimizer = nnx.Optimizer(dummy_tokenizer, tx)\n dummy_tokenizer_optimizer_state = nnx.state(dummy_tokenizer_optimizer)\n abstract_sharded_tokenizer_optimizer_state = _create_abstract_sharded_pytree(\n dummy_tokenizer_optimizer_state, sharding\n )\n restored_tokenizer = tokenizer_checkpoint_manager.restore(\n step=tokenizer_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore( # type: ignore\n abstract_sharded_tokenizer_optimizer_state # type: ignore\n ),\n ),\n )[""model_state""]\n nnx.update(dummy_tokenizer_optimizer.model, restored_tokenizer.model)\n model.tokenizer = dummy_tokenizer_optimizer.model\n tokenizer_checkpoint_manager.close()\n\n if args.lam_checkpoint:\n lam_checkpoint_manager = ocp.CheckpointManager(\n directory=args.lam_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_lam = LatentActionModel(\n in_dim=args.image_channels,\n model_dim=args.lam_dim,\n ffn_dim=args.lam_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_latent_actions,\n patch_size=args.lam_patch_size,\n num_blocks=args.lam_num_blocks,\n num_heads=args.lam_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n dummy_lam_optimizer = nnx.Optimizer(dummy_lam, tx)\n dummy_lam_optimizer_state = nnx.state(dummy_lam_optimizer)\n abstract_sharded_lam_optimizer_state = _create_abstract_sharded_pytree(\n dummy_lam_optimizer_state, sharding\n )\n restored_lam_optimizer = lam_checkpoint_manager.restore(\n step=lam_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore( # type: ignore\n abstract_sharded_lam_optimizer_state # type: ignore\n ),\n ),\n )[""model_state""]\n nnx.update(dummy_lam_optimizer.model, restored_lam_optimizer.model)\n model.lam = dummy_lam_optimizer.model\n # Remove the LAM decoder to save memory and avoid unnecessary computation.\n del model.lam.decoder\n lam_checkpoint_manager.close()\n \n # Reinitialize the optimizer states\n optimizer = nnx.Optimizer(model, tx)\n return optimizer\n\n\ndef _create_abstract_sharded_pytree(\n pytree_template: nnx.GraphState, sharding_spec: jax.sharding.NamedSharding\n) -> jax.Array:\n """"""Replaces arrays in a pytree with ShapeDtypeStructs having the given sharding.""""""\n\n def map_fn(leaf_template):\n if hasattr(leaf_template, ""shape"") and hasattr(leaf_template, ""dtype""):\n return jax.ShapeDtypeStruct(\n leaf_template.shape, leaf_template.dtype, sharding=sharding_spec\n )\n return leaf_template\n\n return jax.tree_util.tree_map(map_fn, pytree_template)\n",python,tab +2,316,"genie.py",14679,0,"e",python,content +3,317,"genie.py",14680,0,"",python,selection_keyboard +4,363,"genie.py",14680,0,"m",python,content +5,368,"genie.py",14681,0,"b",python,content +6,368,"genie.py",14682,0,"",python,selection_keyboard +7,371,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"1:11:02 PM [info] Activating crowd-code\n1:11:02 PM [info] Recording started\n1:11:02 PM [info] Initializing git provider using file system watchers...\n",Log,tab +8,515,"extension-output-pdoom-org.crowd-code-#1-crowd-code",150,0,"1:11:03 PM [info] Git repository found\n1:11:03 PM [info] Git provider initialized successfully\n1:11:03 PM [info] Initial git state: [object Object]\n",Log,content +9,1237,"genie.py",0,0,"",python,tab +10,2333,"genie.py",14681,0,"",python,selection_command +11,4709,"genie.py",14683,0,"",python,selection_command +12,5032,"genie.py",14684,0,"",python,selection_command +13,5554,"genie.py",14683,0,"",python,selection_command +14,6282,"genie.py",14682,0,"",python,selection_command +15,7211,"genie.py",14682,0,"_",python,content +16,7211,"genie.py",14683,0,"",python,selection_keyboard +17,9101,"genie.py",14683,0,"B",python,content +18,9101,"genie.py",14684,0,"",python,selection_keyboard +19,10014,"genie.py",14684,0,"S",python,content +20,10015,"genie.py",14685,0,"",python,selection_keyboard +21,10480,"genie.py",14685,0,"M",python,content +22,10480,"genie.py",14686,0,"",python,selection_keyboard +23,11944,"genie.py",14686,0,"l",python,content +24,11948,"genie.py",14687,0,".",python,content +25,11948,"genie.py",14688,0,"",python,selection_keyboard +26,12360,"genie.py",14687,1,"",python,content +27,12575,"genie.py",14686,1,"",python,content +28,12773,"genie.py",14686,0,".",python,content +29,12773,"genie.py",14687,0,"",python,selection_keyboard +30,12953,"genie.py",14687,0,"s",python,content +31,12953,"genie.py",14688,0,"",python,selection_keyboard +32,13002,"genie.py",14688,0,"h",python,content +33,13003,"genie.py",14689,0,"",python,selection_keyboard +34,13143,"genie.py",14689,0,"a",python,content +35,13143,"genie.py",14690,0,"",python,selection_keyboard +36,13175,"genie.py",14690,0,"p",python,content +37,13176,"genie.py",14691,0,"",python,selection_keyboard +38,13296,"genie.py",14691,0,"e",python,content +39,13297,"genie.py",14692,0,"",python,selection_keyboard +40,14149,"genie.py",14692,0,"[-1]",python,content +41,14510,"genie.py",14695,0,"",python,selection_command +42,15819,"genie.py",14694,0,"",python,selection_command +43,15966,"genie.py",14692,0,"",python,selection_command +44,16105,"genie.py",14687,0,"",python,selection_command +45,16254,"genie.py",14686,0,"",python,selection_command +46,16444,"genie.py",14672,0,"",python,selection_command +47,20257,"genie.py",14673,0,"",python,selection_command +48,20506,"genie.py",14674,0,"",python,selection_command +49,20546,"genie.py",14675,0,"",python,selection_command +50,20635,"genie.py",14676,0,"",python,selection_command +51,20635,"genie.py",14677,0,"",python,selection_command +52,20635,"genie.py",14678,0,"",python,selection_command +53,20668,"genie.py",14679,0,"",python,selection_command +54,20704,"genie.py",14680,0,"",python,selection_command +55,20735,"genie.py",14681,0,"",python,selection_command +56,20769,"genie.py",14682,0,"",python,selection_command +57,22249,"genie.py",14682,0,"e",python,content +58,22249,"genie.py",14683,0,"",python,selection_keyboard +59,22537,"genie.py",14683,0,"d",python,content +60,22538,"genie.py",14684,0,"",python,selection_keyboard +61,22734,"genie.py",14683,0,"",python,selection_command +62,23399,"genie.py",14682,0,"",python,selection_command +63,23641,"genie.py",14681,0,"",python,selection_command +64,23676,"genie.py",14680,0,"",python,selection_command +65,23779,"genie.py",14679,0,"",python,selection_command +66,23826,"genie.py",14678,0,"",python,selection_command +67,23984,"genie.py",14677,0,"",python,selection_command +68,24105,"genie.py",14676,0,"",python,selection_command +69,24649,"genie.py",14675,0,"",python,selection_command +70,24827,"genie.py",14675,1,"",python,content +71,24953,"genie.py",14675,1,"",python,content +72,25156,"genie.py",14675,1,"",python,content +73,27531,"genie.py",14606,0,"",python,selection_command +74,29187,"genie.py",14698,0,"",python,selection_command +75,29638,"genie.py",14710,0,"",python,selection_command +76,29889,"genie.py",14727,0,"",python,selection_command +77,29920,"genie.py",14729,0,"",python,selection_command +78,29951,"genie.py",14732,0,"",python,selection_command +79,29979,"genie.py",14733,0,"",python,selection_command +80,30019,"genie.py",14744,0,"",python,selection_command +81,30051,"genie.py",14746,0,"",python,selection_command +82,30083,"genie.py",14760,0,"",python,selection_command +83,30119,"genie.py",14762,0,"",python,selection_command +84,30152,"genie.py",14776,0,"",python,selection_command +85,30178,"genie.py",14779,0,"",python,selection_command +86,30212,"genie.py",14783,0,"",python,selection_command +87,30725,"genie.py",14779,0,"",python,selection_command +88,30972,"genie.py",14776,0,"",python,selection_command +89,31004,"genie.py",14762,0,"",python,selection_command +90,31033,"genie.py",14760,0,"",python,selection_command +91,31068,"genie.py",14746,0,"",python,selection_command +92,31103,"genie.py",14744,0,"",python,selection_command +93,31246,"genie.py",14733,0,"",python,selection_command +94,31246,"genie.py",14732,0,"",python,selection_command +95,31247,"genie.py",14729,0,"",python,selection_command +96,31536,"genie.py",14727,0,"",python,selection_command +97,31793,"genie.py",14710,0,"",python,selection_command +98,31823,"genie.py",14694,0,"",python,selection_command +99,31849,"genie.py",14693,0,"",python,selection_command +100,31882,"genie.py",14691,0,"",python,selection_command +101,31916,"genie.py",14686,0,"",python,selection_command +102,32235,"genie.py",14691,0,"",python,selection_command +103,32489,"genie.py",14693,0,"",python,selection_command +104,32519,"genie.py",14694,0,"",python,selection_command +105,32545,"genie.py",14710,0,"",python,selection_command +106,32576,"genie.py",14727,0,"",python,selection_command +107,32610,"genie.py",14729,0,"",python,selection_command +108,32643,"genie.py",14732,0,"",python,selection_command +109,32677,"genie.py",14733,0,"",python,selection_command +110,32722,"genie.py",14744,0,"",python,selection_command +111,36186,"genie.py",14733,0,"",python,selection_command +112,36350,"genie.py",14732,0,"",python,selection_command +113,36485,"genie.py",14729,0,"",python,selection_command +114,36653,"genie.py",14727,0,"",python,selection_command +115,37154,"genie.py",14710,0,"",python,selection_command +116,444175,"genie.py",14799,0,"",python,selection_command +117,445397,"genie.py",14787,72,"",python,content +118,445400,"genie.py",14799,0,"",python,selection_command +119,452017,"genie.py",14799,0,"unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (steps * 2))\n ",python,content +120,452019,"genie.py",14799,0,"",python,selection_command +121,480877,"genie.py",14834,0,"",python,selection_mouse +122,482682,"genie.py",14809,0,"",python,selection_mouse +123,536582,"genie.py",14787,72,"",python,content +124,536587,"genie.py",14799,0,"",python,selection_command +125,536956,"genie.py",14787,61,"",python,content +126,536970,"genie.py",14799,0,"",python,selection_command +127,539654,"genie.py",14817,0,"",python,selection_command +128,539873,"genie.py",14819,0,"",python,selection_command +129,540071,"genie.py",14823,0,"",python,selection_command +130,540085,"genie.py",14824,0,"",python,selection_command +131,540122,"genie.py",14832,0,"",python,selection_command +132,540165,"genie.py",14833,0,"",python,selection_command +133,540189,"genie.py",14844,0,"",python,selection_command +134,540399,"genie.py",14845,0,"",python,selection_command +135,540595,"genie.py",14859,0,"",python,selection_command +136,540787,"genie.py",14861,0,"",python,selection_command +137,541287,"genie.py",14859,0,"",python,selection_command +138,541971,"genie.py",14861,0,"",python,selection_command +139,542077,"genie.py",14863,0,"",python,selection_command +140,544270,"genie.py",14863,9,"",python,content +141,544382,"genie.py",14863,0,"t",python,content +142,544382,"genie.py",14864,0,"",python,selection_keyboard +143,544425,"genie.py",14864,0,"e",python,content +144,544426,"genie.py",14865,0,"",python,selection_keyboard +145,544601,"genie.py",14865,0,"m",python,content +146,544602,"genie.py",14866,0,"",python,selection_keyboard +147,544602,"genie.py",14866,0,"p",python,content +148,544603,"genie.py",14867,0,"",python,selection_keyboard +149,544848,"genie.py",14866,0,"",python,selection_command +150,557532,"genie.py",14868,0,"",python,selection_command +151,563731,"genie.py",14863,0,"step_",python,content +152,563744,"genie.py",14863,0,"",python,selection_command +153,563934,"genie.py",14799,0,"step_temp = temperature * (1.0 - unmasked_ratio)\n ",python,content +154,563944,"genie.py",14799,0,"",python,selection_command +155,564218,"genie.py",14799,0,"unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (steps * 2))\n ",python,content +156,564221,"genie.py",14809,0,"",python,selection_command +157,599861,"genie.py",14799,72,"",python,content +158,599871,"genie.py",14809,0,"",python,selection_command +159,600027,"genie.py",14799,61,"",python,content +160,600160,"genie.py",14863,5,"",python,content +161,600164,"genie.py",14863,0,"",python,selection_command +162,601554,"genie.py",14867,0,"",python,selection_command +163,601860,"genie.py",14867,0,"e",python,content +164,601860,"genie.py",14868,0,"",python,selection_keyboard +165,601977,"genie.py",14868,0,"r",python,content +166,601978,"genie.py",14869,0,"",python,selection_keyboard +167,602172,"genie.py",14869,0,"a",python,content +168,602173,"genie.py",14870,0,"",python,selection_keyboard +169,602183,"genie.py",14870,0,"t",python,content +170,602183,"genie.py",14871,0,"",python,selection_keyboard +171,602348,"genie.py",14871,0,"r",python,content +172,602348,"genie.py",14872,0,"",python,selection_keyboard +173,602403,"genie.py",14872,0,"u",python,content +174,602403,"genie.py",14873,0,"",python,selection_keyboard +175,602509,"genie.py",14873,0,"r",python,content +176,602509,"genie.py",14874,0,"",python,selection_keyboard +177,602590,"genie.py",14874,0,"e",python,content +178,602590,"genie.py",14875,0,"",python,selection_keyboard +179,602971,"genie.py",14874,1,"",python,content +180,603136,"genie.py",14873,1,"",python,content +181,603285,"genie.py",14872,1,"",python,content +182,603401,"genie.py",14871,1,"",python,content +183,603405,"genie.py",14871,0,"u",python,content +184,603405,"genie.py",14872,0,"",python,selection_keyboard +185,603711,"genie.py",14872,0,"r",python,content +186,603712,"genie.py",14873,0,"",python,selection_keyboard +187,603754,"genie.py",14873,0,"e",python,content +188,603754,"genie.py",14874,0,"",python,selection_keyboard +189,604018,"genie.py",14873,0,"",python,selection_command +190,606001,"genie.py",14863,0,"",python,selection_command +191,606162,"genie.py",14861,0,"",python,selection_command +192,606341,"genie.py",14859,0,"",python,selection_command +193,607088,"genie.py",14845,0,"",python,selection_command +194,607356,"genie.py",14858,0,"",python,selection_command +195,607540,"genie.py",14859,0,"",python,selection_command +196,609663,"genie.py",14858,1,"",python,content +197,610898,"genie.py",14858,0,"p1M",python,content +198,611157,"genie.py",14860,0,"",python,selection_command +199,612130,"genie.py",14845,0,"",python,selection_command +200,612384,"genie.py",14844,0,"",python,selection_command +201,612408,"genie.py",14833,0,"",python,selection_command +202,612440,"genie.py",14832,0,"",python,selection_command +203,612469,"genie.py",14824,0,"",python,selection_command +204,612642,"genie.py",14823,0,"",python,selection_command +205,612824,"genie.py",14819,0,"",python,selection_command +206,612968,"genie.py",14817,0,"",python,selection_command +207,613161,"genie.py",14799,0,"",python,selection_command +208,613706,"genie.py",14800,0,"",python,selection_command +209,613997,"genie.py",14815,0,"",python,selection_command +210,615304,"genie.py",14815,0,"p",python,content +211,615304,"genie.py",14816,0,"",python,selection_keyboard +212,616599,"genie.py",14816,0,"1",python,content +213,616600,"genie.py",14817,0,"",python,selection_keyboard +214,616936,"genie.py",14816,0,"",python,selection_command +215,617688,"genie.py",14878,0,"\n ",python,content +216,618147,"genie.py",14891,0,"f",python,content +217,618148,"genie.py",14892,0,"",python,selection_keyboard +218,618150,"genie.py",14892,0,"i",python,content +219,618150,"genie.py",14893,0,"",python,selection_keyboard +220,618194,"genie.py",14893,0,"n",python,content +221,618194,"genie.py",14894,0,"",python,selection_keyboard +222,618389,"genie.py",14894,0,"a",python,content +223,618390,"genie.py",14895,0,"",python,selection_keyboard +224,618477,"genie.py",14895,0,"l",python,content +225,618478,"genie.py",14896,0,"",python,selection_keyboard +226,618759,"genie.py",14896,0,"_",python,content +227,618759,"genie.py",14897,0,"",python,selection_keyboard +228,619289,"genie.py",14897,0,"logits_BSNV = final_logits_BSNp1V[..., :N]",python,content +229,619542,"genie.py",14938,0,"",python,selection_command +230,620156,"genie.py",14940,0,"",python,selection_command +231,622276,"genie.py",14879,0,"",python,selection_command +232,622444,"genie.py",14891,0,"",python,selection_command +233,623176,"genie.py",14940,0,"",python,selection_command +234,624415,"genie.py",14891,0,"",python,selection_command +235,624679,"genie.py",14909,0,"",python,selection_command +236,624874,"genie.py",14911,0,"",python,selection_command +237,624899,"genie.py",14930,0,"",python,selection_command +238,624927,"genie.py",14936,0,"",python,selection_command +239,624959,"genie.py",14937,0,"",python,selection_command +240,624993,"genie.py",14938,0,"",python,selection_command +241,625027,"genie.py",14940,0,"",python,selection_command +242,625060,"genie.py",14953,0,"",python,selection_command +243,625096,"genie.py",14955,0,"",python,selection_command +244,625527,"genie.py",14953,0,"",python,selection_command +245,625727,"genie.py",14940,0,"",python,selection_command +246,625930,"genie.py",14938,0,"",python,selection_command +247,634117,"genie.py",14937,0,"",python,selection_command +248,635283,"genie.py",14937,1,"t",python,content +249,636757,"genie.py",14937,1,"0",python,content +250,637302,"genie.py",14938,0,"",python,selection_command +251,637923,"genie.py",14937,1,"",python,content +252,638286,"genie.py",14937,0,"0",python,content +253,638286,"genie.py",14938,0,"",python,selection_keyboard +254,638782,"genie.py",14937,1,"",python,content +255,639133,"genie.py",14937,0,"-",python,content +256,639134,"genie.py",14938,0,"",python,selection_keyboard +257,639794,"genie.py",14938,0,"1",python,content +258,639795,"genie.py",14939,0,"",python,selection_keyboard +259,640085,"genie.py",14938,0,"",python,selection_command +260,640955,"genie.py",14941,0,"",python,selection_command +261,642189,"genie.py",14879,0,"",python,selection_command +262,642503,"genie.py",14891,0,"",python,selection_command +263,652854,"genie.py",14909,0,"",python,selection_command +264,653030,"genie.py",14911,0,"",python,selection_command +265,653194,"genie.py",14930,0,"",python,selection_command +266,653342,"genie.py",14936,0,"",python,selection_command +267,653534,"genie.py",14938,0,"",python,selection_command +268,653902,"genie.py",14936,0,"",python,selection_command +269,654062,"genie.py",14930,0,"",python,selection_command +270,654344,"genie.py",14934,0,"",python,selection_command +271,654614,"genie.py",14937,0,"",python,selection_command +272,654805,"genie.py",14938,0,"",python,selection_command +273,655324,"genie.py",14939,0,"",python,selection_command +274,657978,"genie.py",14939,0,",",python,content +275,657978,"genie.py",14940,0,"",python,selection_keyboard +276,658133,"genie.py",14940,0," ",python,content +277,658134,"genie.py",14941,0,"",python,selection_keyboard +278,658377,"genie.py",14941,0,":",python,content +279,658378,"genie.py",14942,0,"",python,selection_keyboard +280,658718,"genie.py",14941,0,"",python,selection_command +281,659806,"genie.py",14944,0,"",python,selection_command +282,684975,"genie.py",14939,3,"",python,content +283,684988,"genie.py",14939,0,"",python,selection_command +284,685121,"genie.py",14937,2,"0",python,content +285,685264,"genie.py",14937,1,"t",python,content +286,685268,"genie.py",14937,0,"",python,selection_command +287,685405,"genie.py",14937,1,"N",python,content +288,685553,"genie.py",14879,61,"",python,content +289,685555,"genie.py",14816,0,"",python,selection_command +290,685704,"genie.py",14815,2,"",python,content +291,686021,"genie.py",14858,2,"",python,content +292,686021,"genie.py",14859,0,"",python,selection_command +293,686321,"genie.py",14867,7,"",python,content +294,686322,"genie.py",14866,0,"",python,selection_command +295,686621,"genie.py",14863,0,"step_",python,content +296,686625,"genie.py",14863,0,"",python,selection_command +297,686789,"genie.py",14799,0,"step_temp = temperature * (1.0 - unmasked_ratio)\n ",python,content +298,686791,"genie.py",14799,0,"",python,selection_command +299,686959,"genie.py",14799,0,"unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (steps * 2))\n ",python,content +300,686961,"genie.py",14809,0,"",python,selection_command +301,734699,"genie.py",14799,72,"",python,content +302,734708,"genie.py",14809,0,"",python,selection_command +303,734930,"genie.py",14799,61,"",python,content +304,734960,"genie.py",14863,5,"",python,content +305,734961,"genie.py",14863,0,"",python,selection_command +306,734989,"genie.py",14867,0,"erature",python,content +307,734991,"genie.py",14867,0,"",python,selection_command +308,735028,"genie.py",14858,0,"p1",python,content +309,735030,"genie.py",14859,0,"",python,selection_command +310,735065,"genie.py",14815,0,"p1",python,content +311,735067,"genie.py",14815,0,"",python,selection_command +312,735088,"genie.py",14879,0," final_logits_BSNV = final_logits_BSNp1V[..., :N]\n",python,content +313,735089,"genie.py",14816,0,"",python,selection_command +314,735121,"genie.py",14937,1,"t",python,content +315,735122,"genie.py",14937,0,"",python,selection_command +316,735154,"genie.py",14937,1,"0",python,content +317,735188,"genie.py",14937,1,"-1",python,content +318,735189,"genie.py",14938,0,"",python,selection_command +319,735221,"genie.py",14939,0,", :",python,content +320,735222,"genie.py",14939,0,"",python,selection_command +321,736794,"genie.py",14944,0,"",python,selection_command +322,752066,"genie.py",14939,0,"",python,selection_command +323,752189,"genie.py",14847,0,"",python,selection_command +324,752335,"genie.py",14758,0,"",python,selection_command +325,752994,"genie.py",14786,0,"\n ",python,content +326,758162,"genie.py",14799,0,"#",python,content +327,758163,"genie.py",14800,0,"",python,selection_keyboard +328,758800,"genie.py",14800,0," ",python,content +329,758801,"genie.py",14801,0,"",python,selection_keyboard +330,759401,"genie.py",14801,0,"F",python,content +331,759401,"genie.py",14802,0,"",python,selection_keyboard +332,760493,"genie.py",14801,1,"",python,content +333,761278,"genie.py",14801,0,"F",python,content +334,761278,"genie.py",14802,0,"",python,selection_keyboard +335,761307,"genie.py",14802,0,"I",python,content +336,761307,"genie.py",14803,0,"",python,selection_keyboard +337,761380,"genie.py",14803,0,"X",python,content +338,761381,"genie.py",14804,0,"",python,selection_keyboard +339,762191,"genie.py",14804,0,"ME (f.srambical): this is not correct, we need to use the mask",python,content +340,762395,"genie.py",14865,0,"",python,selection_command +341,762582,"genie.py",14862,0,"",python,selection_command +342,762836,"genie.py",14858,0,"",python,selection_command +343,762864,"genie.py",14854,0,"",python,selection_command +344,762900,"genie.py",14851,0,"",python,selection_command +345,762931,"genie.py",14846,0,"",python,selection_command +346,762964,"genie.py",14843,0,"",python,selection_command +347,762999,"genie.py",14841,0,"",python,selection_command +348,763032,"genie.py",14834,0,"",python,selection_command +349,763192,"genie.py",14830,0,"",python,selection_command +350,763353,"genie.py",14827,0,"",python,selection_command +351,763488,"genie.py",14822,0,"",python,selection_command +352,763921,"genie.py",14822,44,"",python,content +353,764190,"genie.py",14822,0,"o",python,content +354,764190,"genie.py",14823,0,"",python,selection_keyboard +355,764289,"genie.py",14823,0,"n",python,content +356,764290,"genie.py",14824,0,"",python,selection_keyboard +357,764524,"genie.py",14824,0,"l",python,content +358,764524,"genie.py",14825,0,"",python,selection_keyboard +359,764552,"genie.py",14825,0,"y",python,content +360,764552,"genie.py",14826,0,"",python,selection_keyboard +361,764740,"genie.py",14826,0," ",python,content +362,764740,"genie.py",14827,0,"",python,selection_keyboard +363,764749,"genie.py",14827,0,"i",python,content +364,764750,"genie.py",14828,0,"",python,selection_keyboard +365,764780,"genie.py",14828,0,"n",python,content +366,764781,"genie.py",14829,0,"",python,selection_keyboard +367,764951,"genie.py",14829,0,"p",python,content +368,764951,"genie.py",14830,0,"",python,selection_keyboard +369,765021,"genie.py",14830,0,"u",python,content +370,765022,"genie.py",14831,0,"",python,selection_keyboard +371,765085,"genie.py",14831,0,"t",python,content +372,765086,"genie.py",14832,0,"",python,selection_keyboard +373,765252,"genie.py",14832,0," ",python,content +374,765252,"genie.py",14833,0,"",python,selection_keyboard +375,765403,"genie.py",14833,0,"l",python,content +376,765403,"genie.py",14834,0,"",python,selection_keyboard +377,765468,"genie.py",14834,0,"a",python,content +378,765468,"genie.py",14835,0,"",python,selection_keyboard +379,765510,"genie.py",14835,0,"s",python,content +380,765511,"genie.py",14836,0,"",python,selection_keyboard +381,765520,"genie.py",14836,0,"t",python,content +382,765520,"genie.py",14837,0,"",python,selection_keyboard +383,765736,"genie.py",14837,0," ",python,content +384,765736,"genie.py",14838,0,"",python,selection_keyboard +385,765739,"genie.py",14838,0,"t",python,content +386,765739,"genie.py",14839,0,"",python,selection_keyboard +387,765818,"genie.py",14839,0,"o",python,content +388,765819,"genie.py",14840,0,"",python,selection_keyboard +389,765950,"genie.py",14840,0,"k",python,content +390,765950,"genie.py",14841,0,"",python,selection_keyboard +391,765958,"genie.py",14841,0,"e",python,content +392,765959,"genie.py",14842,0,"",python,selection_keyboard +393,766041,"genie.py",14842,0,"n",python,content +394,766041,"genie.py",14843,0,"",python,selection_keyboard +395,766257,"genie.py",14842,0,"",python,selection_command +396,830610,"genie.py",14843,0,"\n # FIXME (f.srambical): only input last token",python,content +397,830624,"genie.py",14856,0,"",python,selection_command +398,831214,"genie.py",14799,0,"",python,selection_command +399,831487,"genie.py",14801,0,"",python,selection_command +400,831739,"genie.py",14807,0,"",python,selection_command +401,831764,"genie.py",14808,0,"",python,selection_command +402,831793,"genie.py",14809,0,"",python,selection_command +403,831845,"genie.py",14810,0,"",python,selection_command +404,831862,"genie.py",14819,0,"",python,selection_command +405,831893,"genie.py",14822,0,"",python,selection_command +406,832060,"genie.py",14827,0,"",python,selection_command +407,832230,"genie.py",14833,0,"",python,selection_command +408,832854,"genie.py",14833,10,"",python,content +409,833045,"genie.py",14833,0,"u",python,content +410,833045,"genie.py",14834,0,"",python,selection_keyboard +411,833208,"genie.py",14834,0,"n",python,content +412,833209,"genie.py",14835,0,"",python,selection_keyboard +413,833294,"genie.py",14835,0,"t",python,content +414,833295,"genie.py",14836,0,"",python,selection_keyboard +415,833371,"genie.py",14836,0,"i",python,content +416,833371,"genie.py",14837,0,"",python,selection_keyboard +417,833543,"genie.py",14837,0,"l",python,content +418,833543,"genie.py",14838,0,"",python,selection_keyboard +419,833636,"genie.py",14838,0," ",python,content +420,833637,"genie.py",14839,0,"",python,selection_keyboard +421,833894,"genie.py",14839,0,"c",python,content +422,833894,"genie.py",14840,0,"",python,selection_keyboard +423,834010,"genie.py",14840,0,"u",python,content +424,834010,"genie.py",14841,0,"",python,selection_keyboard +425,834092,"genie.py",14841,0,"r",python,content +426,834092,"genie.py",14842,0,"",python,selection_keyboard +427,834241,"genie.py",14842,0,"r",python,content +428,834241,"genie.py",14843,0,"",python,selection_keyboard +429,834330,"genie.py",14843,0,"e",python,content +430,834331,"genie.py",14844,0,"",python,selection_keyboard +431,834457,"genie.py",14844,0,"n",python,content +432,834458,"genie.py",14845,0,"",python,selection_keyboard +433,834523,"genie.py",14845,0,"t",python,content +434,834523,"genie.py",14846,0,"",python,selection_keyboard +435,834718,"genie.py",14846,0," ",python,content +436,834718,"genie.py",14847,0,"",python,selection_keyboard +437,835364,"genie.py",14839,8,"",python,content +438,837157,"genie.py",14839,0,"c",python,content +439,837158,"genie.py",14840,0,"",python,selection_keyboard +440,837219,"genie.py",14840,0,"u",python,content +441,837220,"genie.py",14841,0,"",python,selection_keyboard +442,837356,"genie.py",14841,0,"r",python,content +443,837356,"genie.py",14842,0,"",python,selection_keyboard +444,837504,"genie.py",14842,0,"r",python,content +445,837504,"genie.py",14843,0,"",python,selection_keyboard +446,837543,"genie.py",14843,0,"e",python,content +447,837543,"genie.py",14844,0,"",python,selection_keyboard +448,837632,"genie.py",14844,0,"n",python,content +449,837633,"genie.py",14845,0,"",python,selection_keyboard +450,837777,"genie.py",14845,0,"t",python,content +451,837777,"genie.py",14846,0,"",python,selection_keyboard +452,947932,"genie.py",14846,0," ",python,content +453,947932,"genie.py",14847,0,"",python,selection_keyboard +454,948085,"genie.py",14847,0,"f",python,content +455,948085,"genie.py",14848,0,"",python,selection_keyboard +456,948087,"genie.py",14848,0,"r",python,content +457,948088,"genie.py",14849,0,"",python,selection_keyboard +458,948188,"genie.py",14849,0,"r",python,content +459,948188,"genie.py",14850,0,"",python,selection_keyboard +460,948384,"genie.py",14850,0,"a",python,content +461,948384,"genie.py",14851,0,"",python,selection_keyboard +462,948385,"genie.py",14851,0,"m",python,content +463,948385,"genie.py",14852,0,"",python,selection_keyboard +464,948436,"genie.py",14852,0,"e",python,content +465,948436,"genie.py",14853,0,"",python,selection_keyboard +466,948913,"genie.py",14852,1,"",python,content +467,949208,"genie.py",14851,1,"",python,content +468,949375,"genie.py",14850,1,"",python,content +469,949603,"genie.py",14849,1,"",python,content +470,949694,"genie.py",14849,0,"a",python,content +471,949695,"genie.py",14850,0,"",python,selection_keyboard +472,949737,"genie.py",14850,0,"m",python,content +473,949738,"genie.py",14851,0,"",python,selection_keyboard +474,949803,"genie.py",14851,0,"e",python,content +475,949803,"genie.py",14852,0,"",python,selection_keyboard +476,950021,"genie.py",14851,0,"",python,selection_command +477,951137,"genie.py",14908,0,"",python,selection_command +478,951244,"genie.py",14974,0,"",python,selection_command +479,951388,"genie.py",15065,0,"",python,selection_command +480,951544,"genie.py",15067,0,"",python,selection_command +481,951775,"genie.py",15065,0,"",python,selection_command +482,952277,"genie.py",15064,0,"",python,selection_command +483,952407,"genie.py",15062,0,"",python,selection_command +484,952555,"genie.py",15061,0,"",python,selection_command +485,952751,"genie.py",15059,0,"",python,selection_command +486,952934,"genie.py",15053,0,"",python,selection_command +487,953149,"genie.py",15034,0,"",python,selection_command +488,953419,"genie.py",15053,0,"",python,selection_command +489,953612,"genie.py",15059,0,"",python,selection_command +490,953764,"genie.py",15061,0,"",python,selection_command +491,954094,"genie.py",15060,0,"",python,selection_command +492,954257,"genie.py",15059,0,"",python,selection_command +493,954376,"genie.py",15059,1,"",python,content +494,955123,"genie.py",15058,0,"",python,selection_command +495,956135,"genie.py",15066,0,"",python,selection_command +496,984207,"genie.py",15002,0,"",python,selection_command +497,984754,"genie.py",15014,0,"",python,selection_command +498,984915,"genie.py",15032,0,"",python,selection_command +499,985783,"genie.py",15031,0,"",python,selection_command +500,985794,"genie.py",15030,0,"",python,selection_command +501,985928,"genie.py",15029,0,"",python,selection_command +502,988575,"genie.py",15028,0,"",python,selection_command +503,988701,"genie.py",15028,1,"",python,content +504,996940,"genie.py",15028,0,"S",python,content +505,996944,"genie.py",15028,0,"",python,selection_command +506,1021430,"genie.py",15028,1,"",python,content +507,1021606,"genie.py",15028,1,"",python,content +508,1029454,"genie.py",15030,0,"",python,selection_command +509,1029711,"genie.py",15032,0,"",python,selection_command +510,1029734,"genie.py",15051,0,"",python,selection_command +511,1029762,"genie.py",15057,0,"",python,selection_command +512,1029800,"genie.py",15058,0,"",python,selection_command +513,1030474,"genie.py",15057,0,"",python,selection_command +514,1033095,"genie.py",15057,0,",",python,content +515,1033095,"genie.py",15058,0,"",python,selection_keyboard +516,1033264,"genie.py",15058,0," ",python,content +517,1033264,"genie.py",15059,0,"",python,selection_keyboard +518,1033475,"genie.py",15058,0,"",python,selection_command +519,1033692,"genie.py",15057,0,"",python,selection_command +520,1033836,"genie.py",15056,0,"",python,selection_command +521,1034284,"genie.py",15057,0,"",python,selection_command +522,1035962,"genie.py",15056,0,"",python,selection_command +523,1036107,"genie.py",15055,0,"",python,selection_command +524,1036261,"genie.py",15054,0,"",python,selection_command +525,1036406,"genie.py",15053,0,"",python,selection_command +526,1036547,"genie.py",15052,0,"",python,selection_command +527,1036825,"genie.py",15052,1,"",python,content +528,1036971,"genie.py",15052,1,"",python,content +529,1037133,"genie.py",15052,1,"",python,content +530,1037952,"genie.py",15052,0,":",python,content +531,1037953,"genie.py",15053,0,"",python,selection_keyboard +532,1038203,"genie.py",15052,0,"",python,selection_command +533,1038813,"genie.py",15053,0,"",python,selection_command +534,1038842,"genie.py",15053,0," ",python,content +535,1038842,"genie.py",15054,0,"",python,selection_keyboard +536,1039164,"genie.py",15053,0,"",python,selection_command +537,1039880,"genie.py",15052,0,"",python,selection_command +538,1041084,"genie.py",15053,0,"",python,selection_command +539,1041655,"genie.py",15053,1,"",python,content +540,1042083,"genie.py",14961,0,"",python,selection_command +541,1042270,"genie.py",14904,0,"",python,selection_command +542,1042701,"genie.py",14961,0,"",python,selection_command +543,1042899,"genie.py",15053,0,"",python,selection_command +544,1043150,"genie.py",15054,0,"",python,selection_command +545,1043303,"genie.py",15055,0,"",python,selection_command +546,1051166,"genie.py",15056,0,"",python,selection_command +547,1051229,"genie.py",15057,0,"",python,selection_command +548,1051687,"genie.py",15058,0,"",python,selection_command +549,1051837,"genie.py",15059,0,"",python,selection_command +550,1052213,"genie.py",15058,1,"",python,content +551,1052385,"genie.py",15057,1,"",python,content +552,1052742,"genie.py",15057,0,"s",python,content +553,1052742,"genie.py",15058,0,"",python,selection_keyboard +554,1052747,"genie.py",15058,0,"t",python,content +555,1052747,"genie.py",15059,0,"",python,selection_keyboard +556,1052754,"genie.py",15059,0,"e",python,content +557,1052754,"genie.py",15060,0,"",python,selection_keyboard +558,1052812,"genie.py",15060,0,"p",python,content +559,1052812,"genie.py",15061,0,"",python,selection_keyboard +560,1053052,"genie.py",15060,0,"",python,selection_command +561,1053649,"genie.py",15059,0,"",python,selection_command +562,1053765,"genie.py",15058,0,"",python,selection_command +563,1053867,"genie.py",15057,0,"",python,selection_command +564,1054092,"genie.py",15056,0,"",python,selection_command +565,1054154,"genie.py",15055,0,"",python,selection_command +566,1086701,"genie.py",14963,0,"",python,selection_command +567,1087196,"genie.py",14906,0,"",python,selection_command +568,1088531,"genie.py",14853,57,"",python,content +569,1088543,"genie.py",14865,0,"",python,selection_command +570,1090560,"utils/nn.py",0,0,"import math\nfrom typing import Tuple, Callable\n\nfrom flax import nnx\nimport jax\nimport jax.numpy as jnp\nimport einops\n\n\nclass PositionalEncoding(nnx.Module):\n """"""https://uvadlc-notebooks.readthedocs.io/en/latest/tutorial_notebooks/JAX/tutorial6/Transformers_and_MHAttention.html""""""\n\n def __init__(self, d_model: int, max_len: int = 5000):\n self.d_model = d_model\n self.max_len = max_len\n\n pe = jnp.zeros((self.max_len, self.d_model))\n position = jnp.arange(0, self.max_len, dtype=jnp.float32)[:, None]\n div_term = jnp.exp(\n jnp.arange(0, self.d_model, 2) * (-math.log(10000.0) / self.d_model)\n )\n pe = pe.at[:, 0::2].set(jnp.sin(position * div_term))\n pe = pe.at[:, 1::2].set(jnp.cos(position * div_term))\n self.pe = nnx.Variable(pe)\n\n def __call__(self, x: jax.Array) -> jax.Array:\n x = x + self.pe[: x.shape[2]]\n return x\n\n\nclass STBlock(nnx.Module):\n def __init__(\n self,\n dim: int,\n ffn_dim: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n ):\n self.dim = dim\n self.ffn_dim = ffn_dim\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.spatial_pos_enc = PositionalEncoding(self.dim)\n self.spatial_norm = nnx.LayerNorm(\n num_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.spatial_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.dim,\n qkv_features=self.dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=False\n ),\n rngs=rngs,\n decode=False,\n )\n\n self.temporal_pos_enc = PositionalEncoding(self.dim)\n self.temporal_norm = nnx.LayerNorm(\n num_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.temporal_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.dim,\n qkv_features=self.dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=True\n ),\n rngs=rngs,\n decode=False,\n )\n\n self.ffn_norm = nnx.LayerNorm(\n num_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_dense1 = nnx.Linear(\n in_features=self.dim,\n out_features=self.ffn_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_dense2 = nnx.Linear(\n in_features=self.ffn_dim,\n out_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n @nnx.remat\n def __call__(self, x_BTNM: jax.Array) -> jax.Array:\n # --- Spatial attention ---\n z_BTNM = self.spatial_pos_enc(x_BTNM)\n z_BTNM = self.spatial_norm(z_BTNM)\n z_BTNM = self.spatial_attention(z_BTNM)\n x_BTNM = x_BTNM + z_BTNM\n\n # --- Temporal attention ---\n x_BNTM = x_BTNM.swapaxes(1, 2)\n z_BNTM = self.temporal_pos_enc(x_BNTM)\n z_BNTM = self.temporal_norm(z_BNTM)\n z_BNTM = self.temporal_attention(z_BNTM)\n x_BNTM = x_BNTM + z_BNTM\n x_BTNM = x_BNTM.swapaxes(1, 2)\n\n # --- Feedforward ---\n z_BTNM = self.ffn_norm(x_BTNM)\n z_BTND = self.ffn_dense1(z_BTNM)\n z_BTND = jax.nn.gelu(z_BTND)\n z_BTNM = self.ffn_dense2(z_BTND)\n x_BTNM = x_BTNM + z_BTNM\n\n return x_BTNM\n\n\nclass STTransformer(nnx.Module):\n """"""\n Dimension keys:\n B: batch size\n T: number of frames\n N: number of patches per frame\n I: number of input features\n M: model dimension\n D: FFN dimension\n O: number of output features\n """"""\n def __init__(\n self,\n input_dim: int,\n model_dim: int,\n ffn_dim: int,\n out_dim: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n ):\n self.input_dim = input_dim\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.out_dim = out_dim\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.input_norm1 = nnx.LayerNorm(\n num_features=self.input_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_dense = nnx.Linear(\n in_features=self.input_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_norm2 = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n self.blocks = []\n for _ in range(self.num_blocks):\n self.blocks.append(\n STBlock(\n dim=self.model_dim,\n ffn_dim=self.ffn_dim,\n num_heads=self.num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n )\n\n self.output_dense = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.out_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n def __call__(self, x_BTNI: jax.Array) -> jax.Array:\n x_BTNI = self.input_norm1(x_BTNI)\n x_BTNM = self.input_dense(x_BTNI)\n x_BTNM = self.input_norm2(x_BTNM)\n\n for block in self.blocks:\n x_BTNM = block(x_BTNM)\n\n x_BTNO = self.output_dense(x_BTNM)\n return x_BTNO\n\nclass TransformerBlock(nnx.Module):\n def __init__(\n self,\n model_dim: int,\n ffn_dim: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n decode: bool,\n rngs: nnx.Rngs,\n ):\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.temporal_pos_enc = PositionalEncoding(self.model_dim)\n self.spatial_pos_enc = PositionalEncoding(self.model_dim)\n self.temporal_norm = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.spatial_norm = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_norm = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.temporal_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.model_dim,\n qkv_features=self.model_dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=True\n ),\n rngs=rngs,\n decode=decode,\n )\n self.spatial_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.model_dim,\n qkv_features=self.model_dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=True\n ),\n rngs=rngs,\n decode=decode,\n )\n self.ffn_dense1 = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.ffn_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_dense2 = nnx.Linear(\n in_features=self.ffn_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n @nnx.remat\n def __call__(self, x_BTNM: jax.Array) -> jax.Array:\n # FIXME (f.srambical): this is exactly the same as STBlock (except for the positional encoding)\n # --- Spatial attention ---\n _, T, N, _ = x_BTNM.shape\n z_FNM = einops.rearrange(x_BTNM, ""b t n m -> (b t) n m"")\n z_FNM = self.spatial_norm(z_FNM)\n z_FNM = self.spatial_attention(z_FNM)\n z_BTNM = einops.rearrange(z_FNM, ""(b t) n m -> b t n m"", t=T)\n x_BTNM = x_BTNM + z_BTNM\n # --- Temporal attention ---\n z_PTM = einops.rearrange(x_BTNM, ""b t n m -> (b n) t m"")\n z_PTM = self.temporal_norm(z_PTM)\n z_PTM = self.temporal_attention(z_PTM)\n z_BTNM = einops.rearrange(z_PTM, ""(b n) t m -> b t n m"", n=N)\n x_BTNM = x_BTNM + z_BTNM\n # --- Feedforward ---\n z_BTNM = self.ffn_norm(x_BTNM)\n z_BTND = self.ffn_dense1(z_BTNM)\n z_BTND = jax.nn.gelu(z_BTND)\n z_BTNM = self.ffn_dense2(z_BTND)\n x_BTNM = x_BTNM + z_BTNM\n\n return x_BTNM\n\nclass Transformer(nnx.Module):\n """"""\n Dimension keys:\n B: batch size\n T: number of frames\n N: number of patches per frame\n I: number of input features\n M: model dimension\n D: FFN dimension\n O: number of output features\n F: number of frames in batch\n P: number of patch positions in batch\n """"""\n def __init__(\n self,\n input_dim: int,\n model_dim: int,\n ffn_dim: int,\n out_dim: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n decode: bool,\n rngs: nnx.Rngs,\n ):\n self.input_dim = input_dim\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.out_dim = out_dim\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.pos_enc = PositionalEncoding(self.model_dim)\n self.input_norm1 = nnx.LayerNorm(\n num_features=self.input_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_dense = nnx.Linear(\n in_features=self.input_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_norm2 = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n self.blocks = []\n for _ in range(self.num_blocks):\n self.blocks.append(\n TransformerBlock(\n model_dim=self.model_dim,\n ffn_dim=self.ffn_dim,\n num_heads=self.num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n decode=decode,\n rngs=rngs,\n )\n )\n self.output_dense = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.out_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n def __call__(self, x_BTNI: jax.Array) -> jax.Array:\n x_BTNI = self.input_norm1(x_BTNI)\n x_BTNM = self.input_dense(x_BTNI)\n x_BTNM = self.input_norm2(x_BTNM)\n x_BTNM = self.pos_enc(x_BTNM)\n\n for block in self.blocks:\n x_BTNM = block(x_BTNM)\n\n x_BTNV = self.output_dense(x_BTNM)\n return x_BTNV\n\ndef normalize(x: jax.Array) -> jax.Array:\n return x / (jnp.linalg.norm(x, ord=2, axis=-1, keepdims=True) + 1e-8)\n\n\nclass VectorQuantizer(nnx.Module):\n """"""\n Dimension keys:\n D: B * T * N\n K: number of latents\n L: latent dimension\n """"""\n def __init__(\n self, latent_dim: int, num_latents: int, dropout: float, rngs: nnx.Rngs\n ):\n self.latent_dim = latent_dim\n self.num_latents = num_latents\n self.dropout = dropout\n\n self.codebook = nnx.Param(\n normalize(\n nnx.initializers.lecun_uniform()(\n rngs.params(), (self.num_latents, self.latent_dim)\n )\n )\n )\n self.drop = nnx.Dropout(self.dropout, rngs=rngs)\n\n def __call__(\n self, x_DL: jax.Array, training: bool\n ) -> Tuple[jax.Array, jax.Array, jax.Array, jax.Array]:\n # --- Compute distances ---\n x_DL = normalize(x_DL)\n normalized_codebook_KL = normalize(self.codebook.value)\n distance_DK = -jnp.matmul(x_DL, normalized_codebook_KL.T)\n if training:\n distance_DK = self.drop(distance_DK)\n\n # --- Get indices and embeddings ---\n indices_D = jnp.argmin(distance_DK, axis=-1)\n z_DL = self.codebook[indices_D]\n\n # --- Straight through estimator ---\n z_q_DL = x_DL + jax.lax.stop_gradient(z_DL - x_DL)\n return z_q_DL, z_DL, x_DL, indices_D\n\n def get_codes(self, indices_E: jax.Array) -> jax.Array:\n return self.codebook[indices_E]\n\n\ndef _create_flash_attention_fn(use_flash_attention: bool, is_causal: bool) -> Callable:\n """"""\n Create an attention function that uses flash attention if enabled.\n\n Flax MultiHeadAttention provides tensors with shape (batch..., length, num_heads, head_dim)\n jax.nn.dot_product_attention expects (batch, length, num_heads, head_dim).\n\n We need to reshape to ensure compatibility. cuDNN's flash attention additionally\n requires a sequence length that is a multiple of 4. We pad the sequence length to the nearest\n multiple of 4 and mask accordingly.\n """"""\n\n def attention_fn(query, key, value, bias=None, mask=None, **kwargs):\n implementation = ""cudnn"" if use_flash_attention else None\n\n def _rearrange(x):\n return einops.rearrange(x, ""... l h d -> (...) l h d"")\n\n def _pad(x):\n return jnp.pad(x, ((0, 0), (0, pad_size), (0, 0), (0, 0)))\n\n def _fuse_masks(mask: jax.Array, attention_mask: jax.Array) -> jax.Array:\n mask_bool = mask.astype(jnp.bool_)\n expanded_mask = jnp.pad(\n mask_bool, ((0, pad_size), (0, pad_size)), constant_values=False\n )\n return jnp.logical_and(attention_mask, expanded_mask)\n\n original_shape = query.shape\n original_seq_len = query.shape[-3]\n\n # Pad to nearest multiple of 4\n target_seq_len = ((original_seq_len + 3) // 4) * 4\n pad_size = target_seq_len - original_seq_len\n\n query_4d = _pad(_rearrange(query))\n key_4d = _pad(_rearrange(key))\n value_4d = _pad(_rearrange(value))\n\n attention_mask = jnp.ones((target_seq_len, target_seq_len), dtype=jnp.bool_)\n attention_mask = attention_mask.at[original_seq_len:, :].set(False)\n attention_mask = attention_mask.at[:, original_seq_len:].set(False)\n\n mask_4d = (\n _fuse_masks(mask, attention_mask) if mask is not None else attention_mask\n )\n mask_4d = mask_4d[jnp.newaxis, jnp.newaxis, :, :] # (1, 1, seq_len, seq_len)\n\n bias_4d = _pad(_rearrange(bias)) if bias is not None else None\n\n # NOTE: jax.nn.dot_product_attention does not support dropout\n output_4d = jax.nn.dot_product_attention(\n query=query_4d,\n key=key_4d,\n value=value_4d,\n bias=bias_4d,\n mask=mask_4d,\n implementation=implementation,\n is_causal=is_causal,\n )\n return output_4d[..., :original_seq_len, :, :].reshape(original_shape)\n\n return attention_fn\n",python,tab +571,1092058,"utils/nn.py",15740,0,"",python,selection_command +572,1092678,"utils/nn.py",13899,0,"",python,selection_command +573,1093092,"utils/nn.py",12379,0,"",python,selection_command +574,1095537,"utils/nn.py",10945,0,"",python,selection_command +575,1096324,"utils/nn.py",9403,0,"",python,selection_keyboard +576,1096343,"utils/nn.py",9391,82," out_features=self.model_dim, param_dtype=self.param_dtype,",python,content +577,1096346,"utils/nn.py",9431,0,"",python,selection_command +578,1097126,"utils/nn.py",9431,0,"\n ",python,content +579,1097128,"utils/nn.py",9403,0,"",python,selection_command +580,1101562,"genie.py",0,0,"",python,tab +581,1101967,"genie.py",14865,0,"# FIXME (f.srambical): only input last token\n ",python,content +582,1101970,"genie.py",14906,0,"",python,selection_command +583,1103387,"genie.py",14853,57,"",python,content +584,1103408,"genie.py",14865,0,"",python,selection_command +585,1104488,"utils/nn.py",0,0,"",python,tab +586,1105184,"utils/nn.py",9444,0,"",python,selection_command +587,1105433,"utils/nn.py",9486,0,"",python,selection_command +588,1105463,"utils/nn.py",9516,0,"",python,selection_command +589,1105494,"utils/nn.py",9535,0,"",python,selection_command +590,1105531,"utils/nn.py",9537,0,"",python,selection_command +591,1105561,"utils/nn.py",9550,0,"",python,selection_command +592,1105586,"utils/nn.py",9565,0,"",python,selection_command +593,1105631,"utils/nn.py",9621,0,"",python,selection_command +594,1105660,"utils/nn.py",9725,0,"",python,selection_command +595,1105685,"utils/nn.py",9761,0,"",python,selection_command +596,1105718,"utils/nn.py",9795,0,"",python,selection_command +597,1105751,"utils/nn.py",9860,0,"",python,selection_command +598,1105785,"utils/nn.py",9901,0,"",python,selection_command +599,1105936,"utils/nn.py",9947,0,"",python,selection_command +600,1106114,"utils/nn.py",10017,0,"",python,selection_command +601,1106218,"utils/nn.py",9947,0,"",python,selection_command +602,1106382,"utils/nn.py",9901,0,"",python,selection_command +603,1106532,"utils/nn.py",9860,0,"",python,selection_command +604,1106679,"utils/nn.py",9795,0,"",python,selection_command +605,1106891,"utils/nn.py",9860,0,"",python,selection_command +606,1107146,"utils/nn.py",9901,0,"",python,selection_command +607,1107167,"utils/nn.py",9947,0,"",python,selection_command +608,1107357,"utils/nn.py",9901,0,"",python,selection_command +609,1107583,"utils/nn.py",9860,0,"",python,selection_command +610,1107908,"utils/nn.py",9888,0,"\n # FIXME (f.srambical): only input last token",python,content +611,1107920,"utils/nn.py",9901,0,"",python,selection_command +612,1108313,"utils/nn.py",9958,0,"",python,selection_command +613,1108617,"utils/nn.py",9901,0,"",python,selection_command +614,1109122,"utils/nn.py",9917,0,"",python,selection_command +615,1109306,"utils/nn.py",9916,0,"",python,selection_command +616,1110169,"utils/nn.py",9901,0,"",python,selection_command +617,1110577,"utils/nn.py",9897,4,"",python,content +618,1110623,"utils/nn.py",9896,0,"",python,selection_command +619,1111042,"utils/nn.py",9949,0,"",python,selection_command +620,1111307,"utils/nn.py",9995,0,"",python,selection_command +621,1111331,"utils/nn.py",10065,0,"",python,selection_command +622,1111357,"utils/nn.py",10098,0,"",python,selection_command +623,1111468,"utils/nn.py",10135,0,"",python,selection_command +624,1111629,"utils/nn.py",10200,0,"",python,selection_command +625,1112439,"utils/nn.py",10234,0,"\n # FIXME (f.srambical): only input last token",python,content +626,1112449,"utils/nn.py",10247,0,"",python,selection_command +627,1113824,"utils/nn.py",10243,4,"",python,content +628,1113921,"utils/nn.py",10242,0,"",python,selection_command +629,1127467,"genie.py",0,0,"",python,tab +630,1142785,"genie.py",14799,0,"",python,selection_command +631,1144695,"genie.py",14852,0,"\n ",python,content +632,1144968,"genie.py",14865,0,"v",python,content +633,1144969,"genie.py",14866,0,"",python,selection_keyboard +634,1145072,"genie.py",14866,0,"i",python,content +635,1145072,"genie.py",14867,0,"",python,selection_keyboard +636,1145299,"genie.py",14867,0,"c",python,content +637,1145300,"genie.py",14868,0,"",python,selection_keyboard +638,1145598,"genie.py",14868,0,"d",python,content +639,1145598,"genie.py",14869,0,"",python,selection_keyboard +640,1145808,"genie.py",14868,1,"",python,content +641,1145949,"genie.py",14867,1,"",python,content +642,1146028,"genie.py",14867,0,"d",python,content +643,1146029,"genie.py",14868,0,"",python,selection_keyboard +644,1146270,"genie.py",14868,0,"_",python,content +645,1146270,"genie.py",14869,0,"",python,selection_keyboard +646,1146668,"genie.py",14869,0,"e",python,content +647,1146668,"genie.py",14870,0,"",python,selection_keyboard +648,1146865,"genie.py",14870,0,"m",python,content +649,1146865,"genie.py",14871,0,"",python,selection_keyboard +650,1146972,"genie.py",14871,0,"b",python,content +651,1146973,"genie.py",14872,0,"",python,selection_keyboard +652,1147047,"genie.py",14872,0,"e",python,content +653,1147048,"genie.py",14873,0,"",python,selection_keyboard +654,1147342,"genie.py",14873,0,"d",python,content +655,1147342,"genie.py",14874,0,"",python,selection_keyboard +656,1147694,"genie.py",14874,0,"_",python,content +657,1147694,"genie.py",14875,0,"",python,selection_keyboard +658,1148063,"genie.py",14875,0,"B",python,content +659,1148063,"genie.py",14876,0,"",python,selection_keyboard +660,1148363,"genie.py",14876,0,"T",python,content +661,1148363,"genie.py",14877,0,"",python,selection_keyboard +662,1148898,"genie.py",14877,0,"N",python,content +663,1148899,"genie.py",14878,0,"",python,selection_keyboard +664,1149268,"genie.py",14878,0,"p",python,content +665,1149268,"genie.py",14879,0,"",python,selection_keyboard +666,1149702,"genie.py",14879,0,"1",python,content +667,1149702,"genie.py",14880,0,"",python,selection_keyboard +668,1150223,"genie.py",14880,0,"M",python,content +669,1150224,"genie.py",14881,0,"",python,selection_keyboard +670,1153462,"genie.py",14881,0," = vid_embed_BTNp1M[:, :, step, :]",python,content +671,1154136,"genie.py",14914,0,"",python,selection_command +672,1154510,"genie.py",14913,0,"",python,selection_command +673,1154662,"genie.py",14911,0,"",python,selection_command +674,1154838,"genie.py",14907,0,"",python,selection_command +675,1155034,"genie.py",14904,0,"",python,selection_command +676,1155125,"genie.py",14900,0,"",python,selection_command +677,1155559,"genie.py",14904,0,"",python,selection_command +678,1155955,"genie.py",14907,0,"",python,selection_command +679,1156156,"genie.py",14911,0,"",python,selection_command +680,1156606,"genie.py",14907,0,"",python,selection_command +681,1158182,"genie.py",14907,4,"",python,content +682,1159789,"genie.py",14907,0,":",python,content +683,1160408,"genie.py",14907,0,"",python,selection_command +684,1160603,"genie.py",14904,0,"",python,selection_command +685,1162376,"genie.py",14903,0,"",python,selection_command +686,1162606,"genie.py",14902,0,"",python,selection_command +687,1162702,"genie.py",14901,0,"",python,selection_command +688,1162702,"genie.py",14900,0,"",python,selection_command +689,1162702,"genie.py",14899,0,"",python,selection_command +690,1162726,"genie.py",14898,0,"",python,selection_command +691,1162757,"genie.py",14897,0,"",python,selection_command +692,1162923,"genie.py",14896,0,"",python,selection_command +693,1163075,"genie.py",14895,0,"",python,selection_command +694,1163641,"genie.py",14894,0,"",python,selection_command +695,1163946,"genie.py",14893,0,"",python,selection_command +696,1163947,"genie.py",14892,0,"",python,selection_command +697,1163947,"genie.py",14891,0,"",python,selection_command +698,1163979,"genie.py",14890,0,"",python,selection_command +699,1164012,"genie.py",14889,0,"",python,selection_command +700,1164047,"genie.py",14888,0,"",python,selection_command +701,1164169,"genie.py",14889,0,"",python,selection_command +702,1164473,"genie.py",14890,0,"",python,selection_command +703,1164474,"genie.py",14891,0,"",python,selection_command +704,1164476,"genie.py",14892,0,"",python,selection_command +705,1164509,"genie.py",14893,0,"",python,selection_command +706,1164544,"genie.py",14894,0,"",python,selection_command +707,1164864,"genie.py",14895,0,"",python,selection_command +708,1165521,"genie.py",14895,1,"S",python,content +709,1165846,"genie.py",14900,0,"",python,selection_command +710,1166568,"genie.py",14901,0,"",python,selection_command +711,1166589,"genie.py",14902,0,"",python,selection_command +712,1166744,"genie.py",14903,0,"",python,selection_command +713,1166895,"genie.py",14904,0,"",python,selection_command +714,1168840,"genie.py",14905,0,"",python,selection_command +715,1173359,"genie.py",14905,0,"c",python,content +716,1173360,"genie.py",14906,0,"",python,selection_keyboard +717,1173479,"genie.py",14906,0,"u",python,content +718,1173479,"genie.py",14907,0,"",python,selection_keyboard +719,1173874,"genie.py",14907,0,"r",python,content +720,1173875,"genie.py",14908,0,"",python,selection_keyboard +721,1173998,"genie.py",14908,0,"r",python,content +722,1173998,"genie.py",14909,0,"",python,selection_keyboard +723,1174054,"genie.py",14909,0,"e",python,content +724,1174054,"genie.py",14910,0,"",python,selection_keyboard +725,1174133,"genie.py",14910,0,"n",python,content +726,1174133,"genie.py",14911,0,"",python,selection_keyboard +727,1174239,"genie.py",14911,0,"t",python,content +728,1174240,"genie.py",14912,0,"",python,selection_keyboard +729,1174677,"genie.py",14912,0,"_",python,content +730,1174678,"genie.py",14913,0,"",python,selection_keyboard +731,1175023,"genie.py",14913,0,"f",python,content +732,1175023,"genie.py",14914,0,"",python,selection_keyboard +733,1175094,"genie.py",14914,0,"r",python,content +734,1175095,"genie.py",14915,0,"",python,selection_keyboard +735,1175261,"genie.py",14915,0,"a",python,content +736,1175261,"genie.py",14916,0,"",python,selection_keyboard +737,1175271,"genie.py",14916,0,"m",python,content +738,1175271,"genie.py",14917,0,"",python,selection_keyboard +739,1175314,"genie.py",14917,0,"e",python,content +740,1175314,"genie.py",14918,0,"",python,selection_keyboard +741,1175559,"genie.py",14917,0,"",python,selection_command +742,1181329,"genie.py",14990,0,"",python,selection_command +743,1181431,"genie.py",15080,0,"",python,selection_command +744,1181749,"genie.py",15079,0,"",python,selection_command +745,1181874,"genie.py",15077,0,"",python,selection_command +746,1182178,"genie.py",15073,0,"",python,selection_command +747,1182469,"genie.py",15071,0,"",python,selection_command +748,1182889,"genie.py",15071,0,"c",python,content +749,1182889,"genie.py",15072,0,"",python,selection_keyboard +750,1182995,"genie.py",15072,0,"u",python,content +751,1182996,"genie.py",15073,0,"",python,selection_keyboard +752,1183072,"genie.py",15073,0,"r",python,content +753,1183072,"genie.py",15074,0,"",python,selection_keyboard +754,1183217,"genie.py",15074,0,"r",python,content +755,1183218,"genie.py",15075,0,"",python,selection_keyboard +756,1183264,"genie.py",15075,0,"e",python,content +757,1183264,"genie.py",15076,0,"",python,selection_keyboard +758,1183385,"genie.py",15076,0,"n",python,content +759,1183386,"genie.py",15077,0,"",python,selection_keyboard +760,1183458,"genie.py",15077,0,"t",python,content +761,1183459,"genie.py",15078,0,"",python,selection_keyboard +762,1183816,"genie.py",15078,0,"_",python,content +763,1183817,"genie.py",15079,0,"",python,selection_keyboard +764,1184015,"genie.py",15079,0,"f",python,content +765,1184016,"genie.py",15080,0,"",python,selection_keyboard +766,1184110,"genie.py",15080,0,"r",python,content +767,1184111,"genie.py",15081,0,"",python,selection_keyboard +768,1184247,"genie.py",15081,0,"a",python,content +769,1184248,"genie.py",15082,0,"",python,selection_keyboard +770,1184250,"genie.py",15082,0,"m",python,content +771,1184251,"genie.py",15083,0,"",python,selection_keyboard +772,1184295,"genie.py",15083,0,"e",python,content +773,1184295,"genie.py",15084,0,"",python,selection_keyboard +774,1184530,"genie.py",15083,0,"",python,selection_command +775,1185488,"genie.py",15095,0,"",python,selection_command +776,1186006,"genie.py",15083,0,"",python,selection_command +777,1187075,"genie.py",14991,0,"",python,selection_command +778,1187214,"genie.py",14918,0,"",python,selection_command +779,1194971,"genie.py",17365,0,"",python,selection_mouse +780,1195894,"genie.py",16455,0,"",python,selection_mouse +781,1198243,"genie.py",16809,0,"",python,selection_mouse +782,1198244,"genie.py",16808,0,"",python,selection_command +783,1206324,"genie.py",16809,0,"\n ",python,content +784,1206559,"genie.py",16826,0,"s",python,content +785,1206560,"genie.py",16827,0,"",python,selection_keyboard +786,1206673,"genie.py",16827,0,"t",python,content +787,1206674,"genie.py",16828,0,"",python,selection_keyboard +788,1206735,"genie.py",16828,0,"e",python,content +789,1206735,"genie.py",16829,0,"",python,selection_keyboard +790,1206816,"genie.py",16829,0,"p",python,content +791,1206816,"genie.py",16830,0,"",python,selection_keyboard +792,1207325,"genie.py",16830,0,"_",python,content +793,1207326,"genie.py",16831,0,"",python,selection_keyboard +794,1207764,"genie.py",16831,0,"t",python,content +795,1207764,"genie.py",16832,0,"",python,selection_keyboard +796,1207957,"genie.py",16832,0,",",python,content +797,1207957,"genie.py",16833,0,"",python,selection_keyboard +798,1208101,"genie.py",16832,0,"",python,selection_command +799,1212650,"genie.py",13973,0,"",python,selection_mouse +800,1213975,"genie.py",13974,0,", jax.Array",python,content +801,1213975,"genie.py",13985,0,"",python,selection_command +802,1214660,"genie.py",14119,0,", step_t",python,content +803,1214660,"genie.py",14060,0,", jax.Array",python,content +804,1215710,"genie.py",14071,0,"",python,selection_command +805,1215741,"genie.py",14145,0,"",python,selection_command +806,1216124,"genie.py",14141,0,"",python,selection_command +807,1216258,"genie.py",14139,0,"",python,selection_command +808,1216419,"genie.py",14132,0,"",python,selection_command +809,1221497,"genie.py",14132,6,"",python,content +810,1223347,"genie.py",14132,0,"current_frame",python,content +811,1223623,"genie.py",14144,0,"",python,selection_command +812,1231524,"genie.py",14132,0,"",python,selection_command +813,1232613,"genie.py",14132,13,"",python,content +814,1233840,"genie.py",14132,0,"s",python,content +815,1233841,"genie.py",14133,0,"",python,selection_keyboard +816,1233842,"genie.py",14133,0,"t",python,content +817,1233843,"genie.py",14134,0,"",python,selection_keyboard +818,1233862,"genie.py",14134,0,"e",python,content +819,1233862,"genie.py",14135,0,"",python,selection_keyboard +820,1234009,"genie.py",14135,0,"p",python,content +821,1234009,"genie.py",14136,0,"",python,selection_keyboard +822,1234351,"genie.py",14136,0,"_",python,content +823,1234351,"genie.py",14137,0,"",python,selection_keyboard +824,1234858,"genie.py",14137,0,"t",python,content +825,1234858,"genie.py",14138,0,"",python,selection_keyboard +826,1235172,"genie.py",14137,0,"",python,selection_command +827,1235382,"genie.py",14138,0,"",python,selection_command +828,1236128,"genie.py",14189,0,"",python,selection_command +829,1236434,"genie.py",14232,0,"",python,selection_command +830,1236435,"genie.py",14234,0,"",python,selection_command +831,1236435,"genie.py",14280,0,"",python,selection_command +832,1236460,"genie.py",14339,0,"",python,selection_command +833,1236491,"genie.py",14353,0,"",python,selection_command +834,1236525,"genie.py",14393,0,"",python,selection_command +835,1236631,"genie.py",14452,0,"",python,selection_command +836,1236631,"genie.py",14531,0,"",python,selection_command +837,1236632,"genie.py",14606,0,"",python,selection_command +838,1236660,"genie.py",14693,0,"",python,selection_command +839,1236695,"genie.py",14785,0,"",python,selection_command +840,1236728,"genie.py",14874,0,"",python,selection_command +841,1236760,"genie.py",14940,0,"",python,selection_command +842,1236794,"genie.py",15013,0,"",python,selection_command +843,1237035,"genie.py",14940,0,"",python,selection_command +844,1238530,"genie.py",14935,0,"",python,selection_command +845,1239252,"genie.py",14935,13,"",python,content +846,1239662,"genie.py",14935,0,"s",python,content +847,1239662,"genie.py",14936,0,"",python,selection_keyboard +848,1239664,"genie.py",14936,0,"t",python,content +849,1239664,"genie.py",14937,0,"",python,selection_keyboard +850,1239782,"genie.py",14937,0,"e",python,content +851,1239782,"genie.py",14938,0,"",python,selection_keyboard +852,1239785,"genie.py",14938,0,"p",python,content +853,1239785,"genie.py",14939,0,"",python,selection_keyboard +854,1240111,"genie.py",14939,0,"_",python,content +855,1240112,"genie.py",14940,0,"",python,selection_keyboard +856,1240471,"genie.py",14940,0,"t",python,content +857,1240471,"genie.py",14941,0,"",python,selection_keyboard +858,1240700,"genie.py",14940,0,"",python,selection_command +859,1241064,"genie.py",15006,0,"",python,selection_command +860,1241153,"genie.py",15098,0,"",python,selection_command +861,1241445,"genie.py",15094,0,"",python,selection_command +862,1241701,"genie.py",15094,13,"",python,content +863,1242305,"genie.py",15094,0,"s",python,content +864,1242305,"genie.py",15095,0,"",python,selection_keyboard +865,1242400,"genie.py",15095,0,"d",python,content +866,1242401,"genie.py",15096,0,"",python,selection_keyboard +867,1242401,"genie.py",15096,0,"t",python,content +868,1242401,"genie.py",15097,0,"",python,selection_keyboard +869,1242402,"genie.py",15097,0,"e",python,content +870,1242402,"genie.py",15098,0,"",python,selection_keyboard +871,1242403,"genie.py",15098,0,"p",python,content +872,1242403,"genie.py",15099,0,"",python,selection_keyboard +873,1243120,"genie.py",15098,1,"",python,content +874,1243272,"genie.py",15097,1,"",python,content +875,1243447,"genie.py",15096,1,"",python,content +876,1243549,"genie.py",15095,1,"",python,content +877,1243683,"genie.py",15095,0,"t",python,content +878,1243684,"genie.py",15096,0,"",python,selection_keyboard +879,1243776,"genie.py",15096,0,"e",python,content +880,1243776,"genie.py",15097,0,"",python,selection_keyboard +881,1243777,"genie.py",15097,0,"p",python,content +882,1243777,"genie.py",15098,0,"",python,selection_keyboard +883,1244157,"genie.py",15098,0,"_",python,content +884,1244157,"genie.py",15099,0,"",python,selection_keyboard +885,1244625,"genie.py",15099,0,"t",python,content +886,1244625,"genie.py",15100,0,"",python,selection_keyboard +887,1244825,"genie.py",15099,0,"",python,selection_command +888,1245722,"genie.py",15100,0,"",python,selection_command +889,1245873,"genie.py",15102,0,"",python,selection_command +890,1248190,"genie.py",15010,0,"",python,selection_command +891,1248404,"genie.py",14944,0,"",python,selection_command +892,1248492,"genie.py",14878,0,"",python,selection_command +893,1248492,"genie.py",14789,0,"",python,selection_command +894,1248689,"genie.py",14878,0,"",python,selection_command +895,1248856,"genie.py",14944,0,"",python,selection_command +896,1248884,"genie.py",14878,0,"",python,selection_command +897,1249218,"genie.py",14944,0,"",python,selection_command +898,1249396,"genie.py",15010,0,"",python,selection_command +899,1249404,"genie.py",15102,0,"",python,selection_command +900,1249445,"genie.py",15111,0,"",python,selection_command +901,1249451,"genie.py",15102,0,"",python,selection_command +902,1249737,"genie.py",15010,0,"",python,selection_command +903,1249738,"genie.py",14944,0,"",python,selection_command +904,1249784,"genie.py",14878,0,"",python,selection_command +905,1249817,"genie.py",14789,0,"",python,selection_command +906,1249838,"genie.py",14697,0,"",python,selection_command +907,1249867,"genie.py",14610,0,"",python,selection_command +908,1249901,"genie.py",14535,0,"",python,selection_command +909,1249934,"genie.py",14456,0,"",python,selection_command +910,1249970,"genie.py",14393,0,"",python,selection_command +911,1250067,"genie.py",14353,0,"",python,selection_command +912,1250067,"genie.py",14343,0,"",python,selection_command +913,1250072,"genie.py",14280,0,"",python,selection_command +914,1250106,"genie.py",14234,0,"",python,selection_command +915,1250139,"genie.py",14232,0,"",python,selection_command +916,1250172,"genie.py",14189,0,"",python,selection_command +917,1250264,"genie.py",14142,0,"",python,selection_command +918,1250298,"genie.py",14065,0,"",python,selection_command +919,1250474,"genie.py",13979,0,"",python,selection_command +920,1250817,"genie.py",13984,0,"",python,selection_command +921,1250973,"genie.py",13986,0,"",python,selection_command +922,1251159,"genie.py",13991,0,"",python,selection_command +923,1251640,"genie.py",13992,0,"",python,selection_command +924,1251859,"genie.py",13992,0,"_",python,content +925,1251860,"genie.py",13993,0,"",python,selection_keyboard +926,1252165,"genie.py",13993,0,"n",python,content +927,1252165,"genie.py",13994,0,"",python,selection_keyboard +928,1252360,"genie.py",13993,0,"",python,selection_command +929,1252715,"genie.py",14081,0,"",python,selection_command +930,1252958,"genie.py",14147,0,"",python,selection_command +931,1252992,"genie.py",14191,0,"",python,selection_command +932,1253022,"genie.py",14234,0,"",python,selection_command +933,1253050,"genie.py",14236,0,"",python,selection_command +934,1253084,"genie.py",14282,0,"",python,selection_command +935,1253114,"genie.py",14353,0,"",python,selection_command +936,1253213,"genie.py",14355,0,"",python,selection_command +937,1253214,"genie.py",14395,0,"",python,selection_command +938,1253214,"genie.py",14472,0,"",python,selection_command +939,1253244,"genie.py",14549,0,"",python,selection_command +940,1253278,"genie.py",14626,0,"",python,selection_command +941,1253308,"genie.py",14713,0,"",python,selection_command +942,1253409,"genie.py",14805,0,"",python,selection_command +943,1253409,"genie.py",14883,0,"",python,selection_command +944,1253410,"genie.py",14949,0,"",python,selection_command +945,1253444,"genie.py",15026,0,"",python,selection_command +946,1253476,"genie.py",15111,0,"",python,selection_command +947,1253508,"genie.py",15113,0,"",python,selection_command +948,1253932,"genie.py",15111,0,"",python,selection_command +949,1254261,"genie.py",15110,0,"",python,selection_command +950,1254289,"genie.py",15108,0,"",python,selection_command +951,1254461,"genie.py",15104,0,"",python,selection_command +952,1254995,"genie.py",15107,0,"",python,selection_command +953,1255310,"genie.py",15108,0,"",python,selection_command +954,1255560,"genie.py",15108,0,"_",python,content +955,1255560,"genie.py",15109,0,"",python,selection_keyboard +956,1255877,"genie.py",15109,0,"n",python,content +957,1255877,"genie.py",15110,0,"",python,selection_keyboard +958,1256039,"genie.py",15109,0,"",python,selection_command +959,1256910,"genie.py",15115,0,"",python,selection_command +960,1271176,"genie.py",13906,0,"",python,selection_mouse +961,1276207,"genie.py",16975,0,"",python,selection_mouse +962,1282363,"genie.py",13991,0,"",python,selection_mouse +963,1284482,"genie.py",15108,0,"",python,selection_mouse +964,1288678,"genie.py",15115,0,"",python,selection_mouse +965,1295841,"genie.py",14909,0,"",python,selection_mouse +966,1302048,"genie.py",15022,0,"",python,selection_mouse +967,1304845,"genie.py",15022,1,"T",python,content +968,1305467,"genie.py",15021,0,"",python,selection_command +969,1305723,"genie.py",15020,0,"",python,selection_command +970,1305743,"genie.py",15019,0,"",python,selection_command +971,1305777,"genie.py",15018,0,"",python,selection_command +972,1305810,"genie.py",15017,0,"",python,selection_command +973,1305846,"genie.py",15016,0,"",python,selection_command +974,1305880,"genie.py",15015,0,"",python,selection_command +975,1305909,"genie.py",15014,0,"",python,selection_command +976,1305946,"genie.py",15013,0,"",python,selection_command +977,1305979,"genie.py",15012,0,"",python,selection_command +978,1306011,"genie.py",15011,0,"",python,selection_command +979,1306047,"genie.py",15010,0,"",python,selection_command +980,1306079,"genie.py",15009,0,"",python,selection_command +981,1306115,"genie.py",15008,0,"",python,selection_command +982,1306145,"genie.py",15007,0,"",python,selection_command +983,1306180,"genie.py",15006,0,"",python,selection_command +984,1306212,"genie.py",15005,0,"",python,selection_command +985,1306248,"genie.py",15004,0,"",python,selection_command +986,1306282,"genie.py",15003,0,"",python,selection_command +987,1306318,"genie.py",15002,0,"",python,selection_command +988,1306352,"genie.py",15001,0,"",python,selection_command +989,1306383,"genie.py",15000,0,"",python,selection_command +990,1306421,"genie.py",14999,0,"",python,selection_command +991,1306453,"genie.py",14998,0,"",python,selection_command +992,1306486,"genie.py",14997,0,"",python,selection_command +993,1306519,"genie.py",14996,0,"",python,selection_command +994,1306553,"genie.py",14995,0,"",python,selection_command +995,1306586,"genie.py",14994,0,"",python,selection_command +996,1306618,"genie.py",14993,0,"",python,selection_command +997,1306649,"genie.py",14992,0,"",python,selection_command +998,1306685,"genie.py",14991,0,"",python,selection_command +999,1306725,"genie.py",14990,0,"",python,selection_command +1000,1306754,"genie.py",14989,0,"",python,selection_command +1001,1306784,"genie.py",14988,0,"",python,selection_command +1002,1306816,"genie.py",14987,0,"",python,selection_command +1003,1306851,"genie.py",14986,0,"",python,selection_command +1004,1306886,"genie.py",14985,0,"",python,selection_command +1005,1306918,"genie.py",14984,0,"",python,selection_command +1006,1306952,"genie.py",14983,0,"",python,selection_command +1007,1306986,"genie.py",14982,0,"",python,selection_command +1008,1307020,"genie.py",14981,0,"",python,selection_command +1009,1307054,"genie.py",14980,0,"",python,selection_command +1010,1307199,"genie.py",14979,0,"",python,selection_command +1011,1307363,"genie.py",14978,0,"",python,selection_command +1012,1307504,"genie.py",14977,0,"",python,selection_command +1013,1308439,"genie.py",14976,0,"",python,selection_command +1014,1309272,"genie.py",14977,0,"",python,selection_command +1015,1309831,"genie.py",14977,1,"T",python,content +1016,1310950,"genie.py",15069,0,"",python,selection_command +1017,1311213,"genie.py",15071,0,"",python,selection_command +1018,1311719,"genie.py",15072,0,"",python,selection_command +1019,1311967,"genie.py",15073,0,"",python,selection_command +1020,1311989,"genie.py",15074,0,"",python,selection_command +1021,1312019,"genie.py",15075,0,"",python,selection_command +1022,1312050,"genie.py",15076,0,"",python,selection_command +1023,1312085,"genie.py",15077,0,"",python,selection_command +1024,1312122,"genie.py",15078,0,"",python,selection_command +1025,1312155,"genie.py",15079,0,"",python,selection_command +1026,1312186,"genie.py",15080,0,"",python,selection_command +1027,1312220,"genie.py",15081,0,"",python,selection_command +1028,1312253,"genie.py",15082,0,"",python,selection_command +1029,1312290,"genie.py",15083,0,"",python,selection_command +1030,1312323,"genie.py",15084,0,"",python,selection_command +1031,1312357,"genie.py",15085,0,"",python,selection_command +1032,1312391,"genie.py",15086,0,"",python,selection_command +1033,1312507,"genie.py",15087,0,"",python,selection_command +1034,1313139,"genie.py",15087,1,"T",python,content +1035,1313756,"genie.py",15115,0,"",python,selection_command +1036,1357611,"genie.py",15268,0,"",python,selection_mouse +1037,1359635,"genie.py",15268,1,"",python,content +1038,1359810,"genie.py",15268,1,"",python,content +1039,1361381,"genie.py",15296,0,"",python,selection_command +1040,1363236,"genie.py",15238,0,"",python,selection_mouse +1041,1365331,"genie.py",15268,0,"N",python,content +1042,1365337,"genie.py",15268,0,"",python,selection_command +1043,1365774,"genie.py",15268,0,"S",python,content +1044,1365777,"genie.py",15268,0,"",python,selection_command +1045,1367211,"genie.py",15268,1,"",python,content +1046,1367348,"genie.py",15268,1,"",python,content +1047,1367554,"genie.py",15254,0,"",python,selection_command +1048,1367872,"genie.py",15253,0,"",python,selection_command +1049,1367872,"genie.py",15247,0,"",python,selection_command +1050,1367873,"genie.py",15246,0,"",python,selection_command +1051,1368581,"genie.py",15245,0,"",python,selection_command +1052,1368613,"genie.py",15244,0,"",python,selection_command +1053,1368801,"genie.py",15243,0,"",python,selection_command +1054,1368921,"genie.py",15242,0,"",python,selection_command +1055,1369034,"genie.py",15241,0,"",python,selection_command +1056,1369247,"genie.py",15240,0,"",python,selection_command +1057,1369302,"genie.py",15239,0,"",python,selection_command +1058,1369454,"genie.py",15238,0,"",python,selection_command +1059,1369659,"genie.py",15238,1,"",python,content +1060,1369807,"genie.py",15238,1,"",python,content +1061,1370820,"genie.py",15294,0,"",python,selection_command +1062,1370870,"genie.py",15332,0,"",python,selection_command +1063,1371017,"genie.py",15382,0,"",python,selection_command +1064,1371360,"genie.py",15382,1,"",python,content +1065,1371541,"genie.py",15382,1,"",python,content +1066,1371882,"genie.py",15383,0,"",python,selection_command +1067,1372123,"genie.py",15384,0,"",python,selection_command +1068,1372157,"genie.py",15385,0,"",python,selection_command +1069,1372188,"genie.py",15386,0,"",python,selection_command +1070,1372224,"genie.py",15387,0,"",python,selection_command +1071,1372258,"genie.py",15388,0,"",python,selection_command +1072,1372291,"genie.py",15389,0,"",python,selection_command +1073,1372394,"genie.py",15390,0,"",python,selection_command +1074,1372394,"genie.py",15391,0,"",python,selection_command +1075,1372403,"genie.py",15392,0,"",python,selection_command +1076,1372434,"genie.py",15393,0,"",python,selection_command +1077,1372465,"genie.py",15394,0,"",python,selection_command +1078,1372498,"genie.py",15395,0,"",python,selection_command +1079,1372591,"genie.py",15396,0,"",python,selection_command +1080,1372592,"genie.py",15397,0,"",python,selection_command +1081,1372592,"genie.py",15398,0,"",python,selection_command +1082,1372624,"genie.py",15399,0,"",python,selection_command +1083,1372657,"genie.py",15400,0,"",python,selection_command +1084,1372691,"genie.py",15401,0,"",python,selection_command +1085,1372725,"genie.py",15402,0,"",python,selection_command +1086,1372755,"genie.py",15403,0,"",python,selection_command +1087,1372790,"genie.py",15404,0,"",python,selection_command +1088,1372824,"genie.py",15405,0,"",python,selection_command +1089,1372920,"genie.py",15406,0,"",python,selection_command +1090,1372921,"genie.py",15407,0,"",python,selection_command +1091,1372924,"genie.py",15408,0,"",python,selection_command +1092,1372958,"genie.py",15409,0,"",python,selection_command +1093,1372990,"genie.py",15410,0,"",python,selection_command +1094,1373029,"genie.py",15411,0,"",python,selection_command +1095,1373115,"genie.py",15412,0,"",python,selection_command +1096,1373116,"genie.py",15413,0,"",python,selection_command +1097,1373125,"genie.py",15414,0,"",python,selection_command +1098,1373160,"genie.py",15415,0,"",python,selection_command +1099,1373192,"genie.py",15416,0,"",python,selection_command +1100,1373227,"genie.py",15417,0,"",python,selection_command +1101,1373261,"genie.py",15418,0,"",python,selection_command +1102,1373292,"genie.py",15419,0,"",python,selection_command +1103,1373328,"genie.py",15420,0,"",python,selection_command +1104,1373455,"genie.py",15421,0,"",python,selection_command +1105,1373456,"genie.py",15422,0,"",python,selection_command +1106,1373456,"genie.py",15423,0,"",python,selection_command +1107,1373458,"genie.py",15424,0,"",python,selection_command +1108,1373491,"genie.py",15425,0,"",python,selection_command +1109,1373524,"genie.py",15426,0,"",python,selection_command +1110,1373660,"genie.py",15427,0,"",python,selection_command +1111,1373812,"genie.py",15428,0,"",python,selection_command +1112,1373966,"genie.py",15429,0,"",python,selection_command +1113,1374220,"genie.py",15429,1,"",python,content +1114,1374400,"genie.py",15429,1,"",python,content +1115,1374772,"genie.py",15429,0,"V",python,content +1116,1374774,"genie.py",15429,0,"",python,selection_command +1117,1375324,"genie.py",15428,0,"",python,selection_command +1118,1375385,"genie.py",15428,1,"",python,content +1119,1376785,"genie.py",15501,0,"",python,selection_command +1120,1379473,"genie.py",15534,0,"",python,selection_mouse +1121,1381024,"genie.py",15534,1,"",python,content +1122,1381192,"genie.py",15534,1,"",python,content +1123,1382225,"genie.py",15593,0,"",python,selection_mouse +1124,1382432,"genie.py",15593,1,"",python,content +1125,1382608,"genie.py",15593,1,"",python,content +1126,1383929,"genie.py",15617,0,"",python,selection_mouse +1127,1384051,"genie.py",15617,1,"",python,content +1128,1384186,"genie.py",15617,1,"",python,content +1129,1384187,"genie.py",15616,0,"",python,selection_command +1130,1387060,"genie.py",15660,0,"",python,selection_mouse +1131,1427687,"genie.py",15632,47,"",python,content +1132,1427700,"genie.py",15644,0,"",python,selection_command +1133,1429235,"genie.py",15646,0,"",python,selection_command +1134,1429413,"genie.py",15653,0,"",python,selection_command +1135,1431277,"genie.py",15653,1,"m",python,selection_command +1136,1431335,"genie.py",15653,6,"masked",python,selection_command +1137,1431558,"genie.py",15653,13,"masked tokens",python,selection_command +1138,1431841,"genie.py",15653,13,"",python,content +1139,1432069,"genie.py",15653,0,"n",python,content +1140,1432070,"genie.py",15654,0,"",python,selection_keyboard +1141,1432100,"genie.py",15654,0,"e",python,content +1142,1432101,"genie.py",15655,0,"",python,selection_keyboard +1143,1432299,"genie.py",15655,0,"x",python,content +1144,1432299,"genie.py",15656,0,"",python,selection_keyboard +1145,1432448,"genie.py",15656,0,"t",python,content +1146,1432449,"genie.py",15657,0,"",python,selection_keyboard +1147,1432618,"genie.py",15657,0," ",python,content +1148,1432618,"genie.py",15658,0,"",python,selection_keyboard +1149,1432637,"genie.py",15658,0,"t",python,content +1150,1432638,"genie.py",15659,0,"",python,selection_keyboard +1151,1432715,"genie.py",15659,0,"o",python,content +1152,1432715,"genie.py",15660,0,"",python,selection_keyboard +1153,1432816,"genie.py",15660,0,"k",python,content +1154,1432816,"genie.py",15661,0,"",python,selection_keyboard +1155,1432835,"genie.py",15661,0,"e",python,content +1156,1432835,"genie.py",15662,0,"",python,selection_keyboard +1157,1432964,"genie.py",15662,0,"n",python,content +1158,1432964,"genie.py",15663,0,"",python,selection_keyboard +1159,1433098,"genie.py",15662,0,"",python,selection_command +1160,1433654,"genie.py",15699,0,"",python,selection_command +1161,1433954,"genie.py",15701,0,"",python,selection_command +1162,1434142,"genie.py",15702,0,"",python,selection_command +1163,1434323,"genie.py",15707,0,"",python,selection_command +1164,1435326,"genie.py",15702,0,"",python,selection_command +1165,1435513,"genie.py",15701,0,"",python,selection_command +1166,1435703,"genie.py",15698,0,"",python,selection_command +1167,1453122,"genie.py",15698,59,"",python,content +1168,1453435,"genie.py",15698,0,"t",python,content +1169,1453436,"genie.py",15699,0,"",python,selection_keyboard +1170,1453507,"genie.py",15699,0,"o",python,content +1171,1453507,"genie.py",15700,0,"",python,selection_keyboard +1172,1453633,"genie.py",15700,0,"k",python,content +1173,1453633,"genie.py",15701,0,"",python,selection_keyboard +1174,1453635,"genie.py",15701,0,"e",python,content +1175,1453635,"genie.py",15702,0,"",python,selection_keyboard +1176,1453742,"genie.py",15702,0,"n",python,content +1177,1453742,"genie.py",15703,0,"",python,selection_keyboard +1178,1455461,"genie.py",15703,0,"_idxs_BSN.at[step_t, step_n].set(sampled_token_idxs_B)",python,content +1179,1455857,"genie.py",15756,0,"",python,selection_command +1180,1456224,"genie.py",15736,0,"",python,selection_command +1181,1456461,"genie.py",15735,0,"",python,selection_command +1182,1456486,"genie.py",15732,0,"",python,selection_command +1183,1456521,"genie.py",15730,0,"",python,selection_command +1184,1456550,"genie.py",15724,0,"",python,selection_command +1185,1456693,"genie.py",15722,0,"",python,selection_command +1186,1456856,"genie.py",15716,0,"",python,selection_command +1187,1457014,"genie.py",15715,0,"",python,selection_command +1188,1458039,"genie.py",15716,0,"",python,selection_command +1189,1462698,"genie.py",15716,0,":",python,content +1190,1462699,"genie.py",15717,0,"",python,selection_keyboard +1191,1462872,"genie.py",15717,0,",",python,content +1192,1462873,"genie.py",15718,0,"",python,selection_keyboard +1193,1462883,"genie.py",15718,0,",",python,content +1194,1462883,"genie.py",15719,0,"",python,selection_keyboard +1195,1463649,"genie.py",15718,1,"",python,content +1196,1463695,"genie.py",15718,0," ",python,content +1197,1463696,"genie.py",15719,0,"",python,selection_keyboard +1198,1463992,"genie.py",15718,0,"",python,selection_command +1199,1464701,"genie.py",15719,0,"",python,selection_command +1200,1464863,"genie.py",15725,0,"",python,selection_command +1201,1465035,"genie.py",15727,0,"",python,selection_command +1202,1465231,"genie.py",15733,0,"",python,selection_command +1203,1465442,"genie.py",15735,0,"",python,selection_command +1204,1465568,"genie.py",15737,0,"",python,selection_command +1205,1465794,"genie.py",15738,0,"",python,selection_command +1206,1466487,"genie.py",15739,0,"",python,selection_command +1207,1467835,"genie.py",15738,0,"",python,selection_command +1208,1468852,"genie.py",15735,0,"",python,selection_command +1209,1468983,"genie.py",15733,0,"",python,selection_command +1210,1469239,"genie.py",15727,0,"",python,selection_command +1211,1469262,"genie.py",15725,0,"",python,selection_command +1212,1469298,"genie.py",15719,0,"",python,selection_command +1213,1469325,"genie.py",15715,0,"",python,selection_command +1214,1469359,"genie.py",15713,0,"",python,selection_command +1215,1469392,"genie.py",15712,0,"",python,selection_command +1216,1469426,"genie.py",15698,0,"",python,selection_command +1217,1469459,"genie.py",15696,0,"",python,selection_command +1218,1469493,"genie.py",15681,0,"",python,selection_command +1219,1469759,"genie.py",15696,0,"",python,selection_command +1220,1469949,"genie.py",15698,0,"",python,selection_command +1221,1470117,"genie.py",15712,0,"",python,selection_command +1222,1470254,"genie.py",15713,0,"",python,selection_command +1223,1598856,"genie.py",15715,0,"",python,selection_command +1224,1599046,"genie.py",15719,0,"",python,selection_command +1225,1599243,"genie.py",15725,0,"",python,selection_command +1226,1599404,"genie.py",15727,0,"",python,selection_command +1227,1599575,"genie.py",15733,0,"",python,selection_command +1228,1599746,"genie.py",15735,0,"",python,selection_command +1229,1599925,"genie.py",15738,0,"",python,selection_command +1230,1600429,"genie.py",15739,0,"",python,selection_command +1231,1603575,"genie.py",15669,91," token_idxs_BSN = token_idxs_BSN.at[:, step_t, step_n].set(sampled_token_idxs_B)",python,selection_command +1232,1657020,"genie.py",15761,0,"",python,selection_mouse +1233,1660632,"genie.py",15661,0,"",python,selection_mouse +1234,1662540,"genie.py",15662,0,"",python,selection_mouse +1235,1664598,"genie.py",15761,0,"",python,selection_command +1236,1665470,"genie.py",15669,0,"",python,selection_command +1237,1665542,"genie.py",15632,0,"",python,selection_command +1238,1665657,"genie.py",15644,0,"",python,selection_command +1239,1666118,"genie.py",15653,0,"",python,selection_command +1240,1668228,"genie.py",15654,0,"",python,selection_command +1241,1668562,"genie.py",15655,0,"",python,selection_command +1242,1669232,"genie.py",15656,0,"",python,selection_command +1243,1669433,"genie.py",15662,0,"",python,selection_command +1244,1669664,"genie.py",15667,0,"",python,selection_command +1245,1670334,"genie.py",15664,0,"",python,selection_command +1246,1670465,"genie.py",15658,0,"",python,selection_command +1247,1670707,"genie.py",15662,0,"",python,selection_command +1248,1671004,"genie.py",15663,0,"",python,selection_command +1249,1671236,"genie.py",15663,0,"s",python,content +1250,1671236,"genie.py",15664,0,"",python,selection_keyboard +1251,1671513,"genie.py",15663,0,"",python,selection_command +1252,1672491,"genie.py",15701,0,"",python,selection_command +1253,1672620,"genie.py",15762,0,"",python,selection_command +1254,1672762,"genie.py",15794,0,"",python,selection_command +1255,1674913,"genie.py",15826,0,"",python,selection_mouse +1256,1676612,"genie.py",15797,84,"",python,content +1257,1676628,"genie.py",15809,0,"",python,selection_command +1258,1676933,"genie.py",15797,91,"",python,content +1259,1676942,"genie.py",15809,0,"",python,selection_command +1260,1677272,"genie.py",15797,91,"",python,content +1261,1677274,"genie.py",15809,0,"",python,selection_command +1262,1677587,"genie.py",15797,84,"",python,content +1263,1677593,"genie.py",15809,0,"",python,selection_command +1264,1678305,"genie.py",15797,69,"",python,content +1265,1680128,"genie.py",15844,0,"",python,selection_mouse +1266,1680305,"genie.py",15844,1,"n",python,selection_command +1267,1680353,"genie.py",15844,12,"new_mask_BSN",python,selection_command +1268,1680550,"genie.py",15844,13,"new_mask_BSN,",python,selection_command +1269,1681216,"genie.py",15844,13,"",python,content +1270,1681617,"genie.py",15844,1,"",python,content +1271,1681972,"genie.py",15859,0,"",python,selection_command +1272,1682680,"genie.py",15860,0,"",python,selection_command +1273,1683461,"genie.py",15860,0,", step_t",python,content +1274,1683746,"genie.py",15867,0,"",python,selection_command +1275,1686639,"genie.py",15797,0,"",python,selection_command +1276,1686701,"genie.py",15795,0,"",python,selection_command +1277,1687196,"genie.py",15763,34,"",python,content +1278,1691427,"genie.py",15763,0,"\n",python,content +1279,1691998,"genie.py",15764,0,"_",python,content +1280,1691998,"genie.py",15765,0,"",python,selection_keyboard +1281,1692696,"genie.py",15764,1,"",python,content +1282,1693173,"genie.py",15764,0," ",python,content +1283,1693271,"genie.py",15768,0," ",python,content +1284,1693500,"genie.py",15772,0," ",python,content +1285,1693700,"genie.py",15776,0," ",python,content +1286,1694975,"genie.py",15776,4,"",python,content +1287,1695348,"genie.py",15776,0,"s",python,content +1288,1695348,"genie.py",15777,0,"",python,selection_keyboard +1289,1695369,"genie.py",15777,0,"t",python,content +1290,1695369,"genie.py",15778,0,"",python,selection_keyboard +1291,1695433,"genie.py",15778,0,"e",python,content +1292,1695434,"genie.py",15779,0,"",python,selection_keyboard +1293,1695596,"genie.py",15779,0,"p",python,content +1294,1695596,"genie.py",15780,0,"",python,selection_keyboard +1295,1695856,"genie.py",15780,0,"_",python,content +1296,1695857,"genie.py",15781,0,"",python,selection_keyboard +1297,1696317,"genie.py",15781,0,"t += 1",python,content +1298,1696500,"genie.py",15786,0,"",python,selection_command +1299,1697174,"genie.py",15763,0,"",python,selection_command +1300,1697567,"genie.py",15763,1,"",python,content +1301,1697570,"genie.py",15775,0,"",python,selection_command +1302,1697899,"genie.py",15786,0,"\n ",python,content +1303,1698071,"genie.py",15787,12,"",python,content +1304,1699840,"genie.py",15763,0,"",python,selection_command +1305,1699895,"genie.py",15762,0,"",python,selection_command +1306,1700393,"genie.py",15762,1,"",python,content +1307,1700394,"genie.py",15774,0,"",python,selection_command +1308,1701626,"genie.py",15786,0,"",python,selection_command +1309,1702115,"genie.py",15786,1,"",python,content +1310,1702133,"genie.py",15798,0,"",python,selection_command +1311,1705108,"genie.py",15892,0,"",python,selection_mouse +1312,1705110,"genie.py",15891,0,"",python,selection_command +1313,1705433,"genie.py",15893,0,"",python,selection_mouse +1314,1706494,"genie.py",15785,0,"",python,selection_mouse +1315,1706494,"genie.py",15784,0,"",python,selection_command +1316,1707654,"genie.py",15785,0,"\n ",python,content +1317,1708066,"genie.py",15786,12,"",python,content +1318,1710478,"genie.py",15894,0,"",python,selection_mouse +1319,1776881,"experiments/dynamics_grain_tok_restore.sh",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=8\n#SBATCH --time=12:00:00\n#SBATCH --cpus-per-task=1\n#SBATCH --gres=gpu:8\n#SBATCH --mem=100GB\n\nsource .venv/bin/activate\n\ndata_dir=""$PWD/data_arrayrecord/dummy""\nckpt_dir=""$PWD/checkpoints/maskgit_dynamics_openai_grain_tok_restore""\ntokenizer_ckpt_dir=""$PWD/checkpoints/tokenizer_openai_grain_checkpointing""\n\nexport XLA_FLAGS=--xla_gpu_autotune_level=0\nexport PYTHONUNBUFFERED=1\nsrun python train_dynamics.py \\n --dyna_type 'causal' \\n --save_ckpt \\n --log_checkpoint_interval 5 \\n --batch_size 12 \\n --tokenizer_checkpoint $tokenizer_ckpt_dir \\n --ckpt_dir $ckpt_dir \\n --num_steps 300000 \\n --warmup_steps 10000 \\n --seed 0 \\n --init_lr=0.0000866 \\n --max_lr=0.0000866 \\n --data_dir $data_dir",shellscript,tab +1320,1787808,"genie.py",0,0,"",python,tab +1321,1793924,"genie.py",13341,0,"",python,selection_command +1322,1794038,"genie.py",11491,0,"",python,selection_command +1323,1794562,"genie.py",9183,0,"",python,selection_command +1324,1794645,"genie.py",6737,0,"",python,selection_command +1325,1795610,"genie.py",6433,0,"",python,selection_keyboard +1326,1796138,"genie.py",6396,0,"",python,selection_command +1327,1796171,"genie.py",6364,0,"",python,selection_command +1328,1796330,"genie.py",6339,0,"",python,selection_command +1329,1796443,"genie.py",6317,0,"",python,selection_command +1330,1796671,"genie.py",6280,0,"",python,selection_command +1331,1796711,"genie.py",6266,0,"",python,selection_command +1332,1797022,"genie.py",6250,0,"",python,selection_command +1333,1797421,"genie.py",6254,0,"",python,selection_command +1334,1797557,"genie.py",6260,0,"",python,selection_command +1335,1798082,"genie.py",6254,0,"",python,selection_command +1336,1799037,"sample.py",0,0,"from dataclasses import dataclass\nimport time\nimport os\nimport optax\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport flax.linen as nn\nimport numpy as np\nimport orbax.checkpoint as ocp\nfrom PIL import Image, ImageDraw\nimport tyro\nfrom flax import nnx\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n tokenizer_ffn_dim: int = 2048\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 4\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n lam_ffn_dim: int = 2048\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 4\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_dim: int = 512\n dyna_ffn_dim: int = 2048\n dyna_num_blocks: int = 6\n dyna_num_heads: int = 8\n param_dtype = jnp.float32\n dtype = jnp.bfloat16\n use_flash_attention: bool = True\n\n\nargs = tyro.cli(Args)\n\nif __name__ == ""__main__"":\n """"""\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n S: sequence length\n H: height\n W: width\n D: B * T * N\n E: B * (T - 1)\n """"""\n jax.distributed.initialize()\n\n rng = jax.random.key(args.seed)\n\n # --- Load Genie checkpoint ---\n rngs = nnx.Rngs(rng)\n genie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n tokenizer_ffn_dim=args.tokenizer_ffn_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n lam_ffn_dim=args.lam_ffn_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n lam_co_train=False,\n # Dynamics\n dyna_type=""maskgit"",\n dyna_dim=args.dyna_dim,\n dyna_ffn_dim=args.dyna_ffn_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeSave, ocp.handlers.PyTreeCheckpointHandler\n )\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n checkpoint_manager = ocp.CheckpointManager(\n args.checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n\n dummy_tx = optax.adamw(\n learning_rate=optax.linear_schedule(0.0001, 0.0001, 10000),\n b1=0.9,\n b2=0.9,\n weight_decay=1e-4,\n mu_dtype=args.dtype,\n )\n dummy_optimizer = nnx.Optimizer(genie, dummy_tx)\n\n abstract_optimizer = nnx.eval_shape(lambda: dummy_optimizer)\n abstract_optimizer_state = nnx.state(abstract_optimizer)\n restored = checkpoint_manager.restore(\n checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore(abstract_optimizer_state), # type: ignore\n ),\n )\n restored_optimizer_state = restored[""model_state""]\n nnx.update(dummy_optimizer, restored_optimizer_state)\n\n # --- Define sampling function ---\n def _sampling_fn(model: Genie, batch: dict) -> jax.Array:\n """"""Runs Genie.sample with pre-defined generation hyper-parameters.""""""\n return model.sample(\n batch,\n args.seq_len,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n )\n\n # --- Define autoregressive sampling loop ---\n @nnx.jit\n def _autoreg_sample(rng, video_batch_BSHWC, action_batch_E):\n input_video_BTHWC = video_batch_BSHWC[:, : args.start_frame + 1]\n rng, _rng = jax.random.split(rng)\n batch = dict(videos=input_video_BTHWC, latent_actions=action_batch_E, rng=_rng)\n generated_vid = _sampling_fn(genie, batch)\n return generated_vid\n\n # --- Get video + latent actions ---\n array_record_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".array_record"")\n ]\n dataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n args.batch_size,\n args.image_height,\n args.image_width,\n args.image_channels,\n # We don't use workers in order to avoid grain shutdown issues (https://github.com/google/grain/issues/398)\n num_workers=0,\n prefetch_buffer_size=1,\n seed=args.seed,\n )\n dataloader = iter(dataloader)\n video_batch_BSHWC = next(dataloader)\n gt_video = jnp.asarray(video_batch_BSHWC, dtype=jnp.float32) / 255.0\n video_batch_BSHWC = gt_video.astype(args.dtype)\n # Get latent actions for all videos in the batch\n batch = dict(videos=video_batch_BSHWC)\n action_batch_E = genie.vq_encode(batch, training=False)\n\n # --- Sample + evaluate video ---\n recon_video = _autoreg_sample(rng, video_batch_BSHWC, action_batch_E)\n recon_video = recon_video.astype(jnp.float32)\n gt = gt_video[:, : recon_video.shape[1]].clip(0, 1).reshape(-1, *gt_video.shape[2:])\n recon = recon_video.clip(0, 1).reshape(-1, *recon_video.shape[2:])\n ssim = jnp.asarray(\n pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :])\n ).mean()\n print(f""SSIM: {ssim}"")\n\n # --- Construct video ---\n true_videos = (gt_video * 255).astype(np.uint8)\n pred_videos = (recon_video * 255).astype(np.uint8)\n video_comparison = np.zeros((2, *recon_video.shape), dtype=np.uint8)\n video_comparison[0] = true_videos[:, : args.seq_len]\n video_comparison[1] = pred_videos\n frames = einops.rearrange(video_comparison, ""n b t h w c -> t (b h) (n w) c"")\n\n # --- Save video ---\n imgs = [Image.fromarray(img) for img in frames]\n # Write actions on each frame, on each row (i.e., for each video in the batch, on the GT row)\n for t, img in enumerate(imgs[1:]):\n d = ImageDraw.Draw(img)\n for row in range(action_batch_E.shape[0]):\n action = action_batch_E[row, t, 0]\n y_offset = row * video_batch_BSHWC.shape[2] + 2\n d.text((2, y_offset), f""{action}"", fill=255)\n imgs[0].save(\n f""generation_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n )\n",python,tab +1337,1799038,"sample.py",4436,0,"",python,selection_command +1338,1804522,"sample.py",4414,0,"\n ",python,content +1339,1804871,"sample.py",4423,0,"i",python,content +1340,1804871,"sample.py",4424,0,"",python,selection_keyboard +1341,1805065,"sample.py",4424,0,"f",python,content +1342,1805066,"sample.py",4425,0,"",python,selection_keyboard +1343,1805112,"sample.py",4425,0," ",python,content +1344,1805112,"sample.py",4426,0,"",python,selection_keyboard +1345,1806095,"sample.py",4426,0,"args.dyna_type == ""maskgit"":",python,content +1346,1806633,"sample.py",4453,0,"",python,selection_command +1347,1807463,"sample.py",4482,0,"",python,selection_command +1348,1807815,"sample.py",4482,1,"(",python,selection_command +1349,1808357,"sample.py",4482,0,"",python,selection_command +1350,1808716,"sample.py",4455,28," return model.sample(",python,selection_command +1351,1808979,"sample.py",4455,47," return model.sample(\n batch,",python,selection_command +1352,1809047,"sample.py",4455,73," return model.sample(\n batch,\n args.seq_len,",python,selection_command +1353,1809240,"sample.py",4455,105," return model.sample(\n batch,\n args.seq_len,\n args.maskgit_steps,",python,selection_command +1354,1809316,"sample.py",4455,135," return model.sample(\n batch,\n args.seq_len,\n args.maskgit_steps,\n args.temperature,",python,selection_command +1355,1809452,"sample.py",4455,167," return model.sample(\n batch,\n args.seq_len,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,",python,selection_command +1356,1809585,"sample.py",4455,177," return model.sample(\n batch,\n args.seq_len,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n )",python,selection_command +1357,1809985,"sample.py",4623,8," ",python,content +1358,1809985,"sample.py",4591,12," ",python,content +1359,1809985,"sample.py",4561,12," ",python,content +1360,1809985,"sample.py",4529,12," ",python,content +1361,1809985,"sample.py",4503,12," ",python,content +1362,1809985,"sample.py",4484,12," ",python,content +1363,1809985,"sample.py",4455,8," ",python,content +1364,1809988,"sample.py",4467,0,"",python,selection_command +1365,1810549,"sample.py",4500,0,"",python,selection_command +1366,1810560,"sample.py",4523,0,"",python,selection_command +1367,1810705,"sample.py",4553,0,"",python,selection_command +1368,1810836,"sample.py",4589,0,"",python,selection_command +1369,1810980,"sample.py",4623,0,"",python,selection_command +1370,1811417,"sample.py",4659,0,"",python,selection_command +1371,1811654,"sample.py",4660,0,"\n ",python,content +1372,1812187,"sample.py",4673,0,"\n ",python,content +1373,1812187,"sample.py",4661,12,"",python,content +1374,1812913,"sample.py",4670,4,"",python,content +1375,1813001,"sample.py",4666,4,"",python,content +1376,1813287,"sample.py",4662,4,"",python,content +1377,1813454,"sample.py",4661,1,"",python,content +1378,1814311,"sample.py",4661,0," ",python,content +1379,1814957,"sample.py",4665,0," ",python,content +1380,1815321,"sample.py",4669,0,"e",python,content +1381,1815321,"sample.py",4670,0,"",python,selection_keyboard +1382,1815626,"sample.py",4670,0,"l",python,content +1383,1815627,"sample.py",4671,0,"",python,selection_keyboard +1384,1815710,"sample.py",4671,0,"s",python,content +1385,1815710,"sample.py",4672,0,"",python,selection_keyboard +1386,1815711,"sample.py",4672,0,"e",python,content +1387,1815711,"sample.py",4673,0,"",python,selection_keyboard +1388,1816122,"sample.py",4672,1,"",python,content +1389,1816264,"sample.py",4671,1,"",python,content +1390,1816335,"sample.py",4671,0,"i",python,content +1391,1816335,"sample.py",4672,0,"",python,selection_keyboard +1392,1816582,"sample.py",4672,0,"f",python,content +1393,1816583,"sample.py",4673,0,"",python,selection_keyboard +1394,1816842,"sample.py",4672,1,"",python,content +1395,1816993,"sample.py",4671,1,"",python,content +1396,1817218,"sample.py",4671,0,"i",python,content +1397,1817219,"sample.py",4672,0,"",python,selection_keyboard +1398,1817384,"sample.py",4672,0,"f",python,content +1399,1817385,"sample.py",4673,0,"",python,selection_keyboard +1400,1817816,"sample.py",4673,0," args.dyna_type == ""causal"":",python,content +1401,1818784,"sample.py",4701,0,"\n ",python,content +1402,1819209,"sample.py",4714,0,"return model.sample_causal(\n batch,\n args.seq_len,\n args.temperature,\n args.sample_argmax,\n )",python,content +1403,1819952,"sample.py",4877,1,"",python,content +1404,1821224,"sample.py",4865,12," )",python,content +1405,1821224,"sample.py",4878,0,"",python,selection_keyboard +1406,1821900,"sample.py",4877,1,"",python,content +1407,1822489,"sample.py",4865,12," )",python,content +1408,1822489,"sample.py",4878,0,"",python,selection_keyboard +1409,1822866,"sample.py",4878,0,"\n ",python,content +1410,1823414,"sample.py",4887,4,"",python,content +1411,1823978,"sample.py",4887,0,"e",python,content +1412,1823979,"sample.py",4888,0,"",python,selection_keyboard +1413,1824142,"sample.py",4888,0,"l",python,content +1414,1824142,"sample.py",4889,0,"",python,selection_keyboard +1415,1824288,"sample.py",4889,0,"s",python,content +1416,1824288,"sample.py",4890,0,"",python,selection_keyboard +1417,1824293,"sample.py",4890,0,"e",python,content +1418,1824293,"sample.py",4891,0,"",python,selection_keyboard +1419,1824545,"sample.py",4891,0,":",python,content +1420,1825043,"sample.py",4892,0,"\n raise ValueError(f""Invalid dynamics type: {args.dyna_type}"")",python,content +1421,1825359,"sample.py",4964,0,"",python,selection_command +1422,1826112,"sample.py",4966,0,"",python,selection_command +1423,1826334,"sample.py",4962,0,"",python,selection_command +1424,1826466,"sample.py",4953,0,"",python,selection_command +1425,1830093,"sample.py",3269,0,"",python,selection_command +1426,1830488,"sample.py",1626,0,"",python,selection_command +1427,1832929,"sample.py",1587,0,"",python,selection_command +1428,1833176,"sample.py",1538,0,"",python,selection_command +1429,1833198,"sample.py",1516,0,"",python,selection_command +1430,1833228,"sample.py",1496,0,"",python,selection_command +1431,1833262,"sample.py",1486,0,"",python,selection_command +1432,1833297,"sample.py",1461,0,"",python,selection_command +1433,1833331,"sample.py",1452,0,"",python,selection_command +1434,1833365,"sample.py",1438,0,"",python,selection_command +1435,1833400,"sample.py",1429,0,"",python,selection_command +1436,1833433,"sample.py",1428,0,"",python,selection_command +1437,1833466,"sample.py",1399,0,"",python,selection_command +1438,1833499,"sample.py",1374,0,"",python,selection_command +1439,1833537,"sample.py",1344,0,"",python,selection_command +1440,1833569,"sample.py",1316,0,"",python,selection_command +1441,1833602,"sample.py",1287,0,"",python,selection_command +1442,1833759,"sample.py",1258,0,"",python,selection_command +1443,1833911,"sample.py",1234,0,"",python,selection_command +1444,1834053,"sample.py",1208,0,"",python,selection_command +1445,1834273,"sample.py",1225,0,"\n ",python,content +1446,1835103,"sample.py",1230,0,"dyna_type: str = ""maskgit""",python,content +1447,1835317,"sample.py",1255,0,"",python,selection_command +1448,1837380,"sample.py",1279,0,"",python,selection_command +1449,1837625,"sample.py",1308,0,"",python,selection_command +1450,1837653,"sample.py",1337,0,"",python,selection_command +1451,1837680,"sample.py",1365,0,"",python,selection_command +1452,1837723,"sample.py",1395,0,"",python,selection_command +1453,1837748,"sample.py",1420,0,"",python,selection_command +1454,1837784,"sample.py",1451,0,"",python,selection_command +1455,1837817,"sample.py",1459,0,"",python,selection_command +1456,1837849,"sample.py",1460,0,"",python,selection_command +1457,1837882,"sample.py",1481,0,"",python,selection_command +1458,1837916,"sample.py",1483,0,"",python,selection_command +1459,1837952,"sample.py",1509,0,"",python,selection_command +1460,1837984,"sample.py",1517,0,"",python,selection_command +1461,1838019,"sample.py",1537,0,"",python,selection_command +1462,1838052,"sample.py",1559,0,"",python,selection_command +1463,1838087,"sample.py",1590,0,"",python,selection_command +1464,1838121,"sample.py",1639,0,"",python,selection_command +1465,1838155,"sample.py",1674,0,"",python,selection_command +1466,1838189,"sample.py",1692,0,"",python,selection_command +1467,1838223,"sample.py",1709,0,"",python,selection_command +1468,1838257,"sample.py",1730,0,"",python,selection_command +1469,1838290,"sample.py",1753,0,"",python,selection_command +1470,1838323,"sample.py",1761,0,"",python,selection_command +1471,1838358,"sample.py",1792,0,"",python,selection_command +1472,1838398,"sample.py",1796,0,"",python,selection_command +1473,1838451,"sample.py",1826,0,"",python,selection_command +1474,1838462,"sample.py",1833,0,"",python,selection_command +1475,1838489,"sample.py",1863,0,"",python,selection_command +1476,1838523,"sample.py",1893,0,"",python,selection_command +1477,1838555,"sample.py",1912,0,"",python,selection_command +1478,1838592,"sample.py",1932,0,"",python,selection_command +1479,1838623,"sample.py",1963,0,"",python,selection_command +1480,1838657,"sample.py",1999,0,"",python,selection_command +1481,1838689,"sample.py",2041,0,"",python,selection_command +1482,1838723,"sample.py",2091,0,"",python,selection_command +1483,1838775,"sample.py",2139,0,"",python,selection_command +1484,1838792,"sample.py",2189,0,"",python,selection_command +1485,1838824,"sample.py",2225,0,"",python,selection_command +1486,1838855,"sample.py",2281,0,"",python,selection_command +1487,1838890,"sample.py",2318,0,"",python,selection_command +1488,1838923,"sample.py",2348,0,"",python,selection_command +1489,1838957,"sample.py",2379,0,"",python,selection_command +1490,1838991,"sample.py",2417,0,"",python,selection_command +1491,1839023,"sample.py",2467,0,"",python,selection_command +1492,1839057,"sample.py",2519,0,"",python,selection_command +1493,1839092,"sample.py",2563,0,"",python,selection_command +1494,1839125,"sample.py",2607,0,"",python,selection_command +1495,1839161,"sample.py",2646,0,"",python,selection_command +1496,1839310,"sample.py",2665,0,"",python,selection_command +1497,1839471,"sample.py",2694,0,"",python,selection_command +1498,1840489,"sample.py",2694,0,"ype",python,content +1499,1840489,"sample.py",2693,1,"",python,content +1500,1840489,"sample.py",2692,0,".dyna_",python,content +1501,1840489,"sample.py",2689,3,"",python,content +1502,1840489,"sample.py",2688,0,"rg",python,content +1503,1840489,"sample.py",2685,2,"",python,content +1504,1844033,"sample.py",4381,0,"",python,selection_command +1505,1845108,"sample.py",6153,0,"",python,selection_command +1506,1847144,"sample.py",4381,0,"",python,selection_command +1507,1848076,"sample.py",4459,0,"",python,selection_command +1508,1848331,"sample.py",4499,0,"",python,selection_command +1509,1848361,"sample.py",4532,0,"",python,selection_command +1510,1848390,"sample.py",4555,0,"",python,selection_command +1511,1848425,"sample.py",4585,0,"",python,selection_command +1512,1848461,"sample.py",4621,0,"",python,selection_command +1513,1848491,"sample.py",4655,0,"",python,selection_command +1514,1848622,"sample.py",4691,0,"",python,selection_command +1515,1848799,"sample.py",4705,0,"",python,selection_command +1516,1848956,"sample.py",4746,0,"",python,selection_command +1517,1849263,"sample.py",4750,0,"",python,selection_command +1518,1849396,"sample.py",4757,0,"",python,selection_command +1519,1849556,"sample.py",4762,0,"",python,selection_command +1520,1849709,"sample.py",4763,0,"",python,selection_command +1521,1850185,"genie.py",0,0,"",python,tab +1522,1850185,"genie.py",12098,0,"",python,selection_command +1523,1852173,"sample.py",0,0,"",python,tab +1524,1852173,"sample.py",4763,0,"",python,selection_command +1525,1853632,"genie.py",0,0,"",python,tab +1526,1853632,"genie.py",12098,0,"",python,selection_command +1527,1855821,"sample.py",0,0,"",python,tab +1528,1855821,"sample.py",4763,0,"",python,selection_command +1529,1856556,"genie.py",0,0,"",python,tab +1530,1856556,"genie.py",12098,0,"",python,selection_command +1531,1857133,"sample.py",0,0,"",python,tab +1532,1857133,"sample.py",4763,0,"",python,selection_command +1533,1858456,"genie.py",0,0,"",python,tab +1534,1858456,"genie.py",12098,0,"",python,selection_command +1535,1860086,"genie.py",12121,0,"",python,selection_command +1536,1860334,"genie.py",12139,0,"",python,selection_command +1537,1860356,"genie.py",12180,0,"",python,selection_command +1538,1860446,"genie.py",12206,0,"",python,selection_command +1539,1860608,"genie.py",12242,0,"",python,selection_command +1540,1860760,"genie.py",12283,0,"",python,selection_command +1541,1860886,"genie.py",12307,0,"",python,selection_command +1542,1861427,"genie.py",12299,46,"",python,content +1543,1861432,"genie.py",12307,0,"",python,selection_command +1544,1862403,"sample.py",0,0,"",python,tab +1545,1862403,"sample.py",4763,0,"",python,selection_command +1546,1863575,"sample.py",4794,0,"",python,selection_command +1547,1863591,"sample.py",4795,0,"",python,selection_command +1548,1863680,"sample.py",4795,0,"w",python,content +1549,1863681,"sample.py",4796,0,"",python,selection_keyboard +1550,1863827,"sample.py",4796,0,"\n ",python,content +1551,1864422,"sample.py",4812,0,"",python,selection_command +1552,1864458,"sample.py",4795,18,"",python,content +1553,1867571,"experiments/sample.sh",0,0,"source .venv/bin/activate\n\ndata_dir=""$PWD/data_arrayrecord/dummy""\nckpt_dir=""$PWD/checkpoints/maskgit_dynamics_openai_grain_tok_restore""\n\nexport XLA_FLAGS='--xla_gpu_autotune_level=0'\n #--dynamics_type ""causal"" \\nsrun python sample.py \\n --batch_size 1 \\n --seq_len 2 \\n --start_frame 1 \\n --checkpoint $ckpt_dir \\n --data_dir $data_dir",shellscript,tab +1554,1869569,"experiments/sample.sh",183,0,"",shellscript,selection_command +1555,1869830,"experiments/sample.sh",187,0,"",shellscript,selection_command +1556,1870139,"experiments/sample.sh",187,1,"",shellscript,content +1557,1871594,"experiments/sample.sh",183,31,"",shellscript,content +1558,1871864,"experiments/sample.sh",207,0,"",shellscript,selection_command +1559,1872197,"experiments/sample.sh",183,0,"",shellscript,selection_command +1560,1872265,"experiments/sample.sh",206,0,"\n --dynamics_type ""causal"" \",shellscript,content +1561,1872281,"experiments/sample.sh",211,0,"",shellscript,selection_command +1562,1875007,"sample.py",0,0,"",python,tab +1563,1877990,"experiments/sample.sh",0,0,"",shellscript,tab +1564,1879056,"experiments/sample.sh",213,0,"",shellscript,selection_command +1565,1879434,"experiments/sample.sh",213,13,"",shellscript,content +1566,1879744,"experiments/sample.sh",213,0,"d",shellscript,content +1567,1879745,"experiments/sample.sh",214,0,"",shellscript,selection_keyboard +1568,1879754,"experiments/sample.sh",214,0,"y",shellscript,content +1569,1879754,"experiments/sample.sh",215,0,"",shellscript,selection_keyboard +1570,1879890,"experiments/sample.sh",215,0,"n",shellscript,content +1571,1879890,"experiments/sample.sh",216,0,"",shellscript,selection_keyboard +1572,1880087,"experiments/sample.sh",216,0,"a",shellscript,content +1573,1880088,"experiments/sample.sh",217,0,"",shellscript,selection_keyboard +1574,1880307,"experiments/sample.sh",217,0,"_",shellscript,content +1575,1880307,"experiments/sample.sh",218,0,"",shellscript,selection_keyboard +1576,1880612,"experiments/sample.sh",218,0,"t",shellscript,content +1577,1880612,"experiments/sample.sh",219,0,"",shellscript,selection_keyboard +1578,1880612,"experiments/sample.sh",219,0,"y",shellscript,content +1579,1880612,"experiments/sample.sh",220,0,"",shellscript,selection_keyboard +1580,1880639,"experiments/sample.sh",220,0,"p",shellscript,content +1581,1880639,"experiments/sample.sh",221,0,"",shellscript,selection_keyboard +1582,1880686,"experiments/sample.sh",221,0,"e",shellscript,content +1583,1880687,"experiments/sample.sh",222,0,"",shellscript,selection_keyboard +1584,1880991,"experiments/sample.sh",221,0,"",shellscript,selection_command +1585,1883870,"experiments/sample.sh",238,0,"",shellscript,selection_command +1586,1883872,"experiments/sample.sh",239,0,"",shellscript,selection_command +1587,1884086,"experiments/sample.sh",239,0,"\n ",shellscript,content +1588,1884806,"experiments/sample.sh",243,0,"",shellscript,selection_command +1589,1884988,"experiments/sample.sh",239,5,"",shellscript,content +1590,1893859,"experiments/dynamics_grain_tok_restore.sh",0,0,"",shellscript,tab +1591,1894951,"experiments/dynamics_grain_tok_restore.sh",457,0,"",shellscript,selection_command +1592,1895096,"experiments/dynamics_grain_tok_restore.sh",431,0,"",shellscript,selection_command +1593,1895294,"experiments/dynamics_grain_tok_restore.sh",387,0,"",shellscript,selection_command +1594,1895294,"experiments/dynamics_grain_tok_restore.sh",370,0,"",shellscript,selection_command +1595,1895423,"experiments/dynamics_grain_tok_restore.sh",311,0,"",shellscript,selection_command +1596,1896669,"experiments/dynamics_grain_tok_restore.sh",241,0,"",shellscript,selection_command +1597,1897611,"experiments/sample.sh",0,0,"",shellscript,tab +1598,1898121,"experiments/sample.sh",212,0,"",shellscript,selection_command +1599,1898251,"experiments/sample.sh",188,0,"",shellscript,selection_command +1600,1898439,"experiments/sample.sh",142,0,"",shellscript,selection_command +1601,1898525,"experiments/sample.sh",136,0,"",shellscript,selection_command +1602,1899089,"experiments/sample.sh",71,0,"",shellscript,selection_command +1603,1899561,"experiments/sample.sh",66,69,"ckpt_dir=""$PWD/checkpoints/maskgit_dynamics_openai_grain_tok_restore""",shellscript,selection_command +1604,1899819,"experiments/sample.sh",66,69,"ckpt_dir=""$PWD/checkpoints/maskgit_dynamics_openai_grain_tok_restore""",shellscript,content +1605,1899825,"experiments/sample.sh",66,0,"",shellscript,selection_command +1606,1901583,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"",Log,tab +1607,1903251,"experiments/sample.sh",0,0,"",shellscript,tab +1608,1903253,"TERMINAL",0,0,"",,terminal_focus +1609,1904234,"TERMINAL",0,0,"source /home/franz.srambical/jafar/.venv/bin/activate",,terminal_command +1610,1908484,"TERMINAL",0,0,"scancel --me",,terminal_command +1611,1908506,"TERMINAL",0,0,"]633;C]0;franz.srambical@hai-login1:~/jafar",,terminal_output +1612,1912552,"TERMINAL",0,0,"salloc --gpus=1 --ntasks-per-node=1 --cpus-per-task=1 --mem=100G --time=10:00:00",,terminal_command +1613,1912619,"TERMINAL",0,0,"]633;Csalloc: Granted job allocation 14454\r\n",,terminal_output +1614,1912714,"TERMINAL",0,0,"salloc: Nodes hai001 are ready for job\r\n",,terminal_output +1615,1913089,"TERMINAL",0,0,"Running inside SLURM, Job ID 14454.\r\n",,terminal_output +1616,1913160,"TERMINAL",0,0,"]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +1617,1937001,"TERMINAL",0,0,"b",,terminal_output +1618,1937283,"TERMINAL",0,0,"a",,terminal_output +1619,1937588,"TERMINAL",0,0,"s",,terminal_output +1620,1937660,"TERMINAL",0,0,"h",,terminal_output +1621,1937916,"TERMINAL",0,0," ",,terminal_output +1622,1939066,"TERMINAL",0,0,"e",,terminal_output +1623,1939279,"TERMINAL",0,0,"xc",,terminal_output +1624,1939366,"TERMINAL",0,0,"p",,terminal_output +1625,1940004,"TERMINAL",0,0,"",,terminal_output +1626,1940160,"TERMINAL",0,0,"",,terminal_output +1627,1940237,"TERMINAL",0,0,"p",,terminal_output +1628,1940399,"TERMINAL",0,0,"eriments/",,terminal_output +1629,1940877,"TERMINAL",0,0,"s",,terminal_output +1630,1940946,"TERMINAL",0,0,"am",,terminal_output +1631,1941148,"TERMINAL",0,0,"ple.sh ",,terminal_output +1632,1941876,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +1633,1949759,"experiments/sample.sh",64,0,"",shellscript,selection_command +1634,1952060,"TERMINAL",0,0,"^Csrun: interrupt (one more within 1 sec to abort)\r\nsrun: StepId=14454.0 task 0: running\r\n",,terminal_output +1635,1952136,"TERMINAL",0,0,"^Csrun: sending Ctrl-C to StepId=14454.0\r\nsrun: forcing job termination\r\nsrun: Job step aborted: Waiting up to 32 seconds for job step to finish.\r\n[2025-07-31T13:43:34.937] error: *** STEP 14454.0 ON hai001 CANCELLED AT 2025-07-31T13:43:34 DUE to SIGNAL Killed ***\r\n",,terminal_output +1636,1952257,"TERMINAL",0,0,"^Csrun: sending Ctrl-C to StepId=14454.0\r\nsrun: job abort in progress\r\n",,terminal_output +1637,1952453,"TERMINAL",0,0,"]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +1638,1952936,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +1639,1954048,"experiments/sample.sh",103,0,"",shellscript,selection_command +1640,1954135,"experiments/sample.sh",136,0,"",shellscript,selection_command +1641,1954277,"experiments/sample.sh",174,0,"",shellscript,selection_command +1642,1954681,"experiments/sample.sh",182,0,"\n",shellscript,content +1643,1954936,"experiments/sample.sh",183,0,"x",shellscript,content +1644,1954936,"experiments/sample.sh",184,0,"",shellscript,selection_keyboard +1645,1955059,"experiments/sample.sh",184,0,"p",shellscript,content +1646,1955059,"experiments/sample.sh",185,0,"",shellscript,selection_keyboard +1647,1955294,"experiments/sample.sh",185,0,"r",shellscript,content +1648,1955294,"experiments/sample.sh",186,0,"",shellscript,selection_keyboard +1649,1955467,"experiments/sample.sh",185,1,"",shellscript,content +1650,1955637,"experiments/sample.sh",184,1,"",shellscript,content +1651,1955664,"experiments/sample.sh",184,0,"e",shellscript,content +1652,1955664,"experiments/sample.sh",185,0,"",shellscript,selection_keyboard +1653,1955816,"experiments/sample.sh",184,1,"",shellscript,content +1654,1955883,"experiments/sample.sh",184,0,"e",shellscript,content +1655,1955883,"experiments/sample.sh",185,0,"",shellscript,selection_keyboard +1656,1956175,"experiments/sample.sh",184,1,"",shellscript,content +1657,1956324,"experiments/sample.sh",183,1,"",shellscript,content +1658,1956333,"experiments/sample.sh",183,0,"e",shellscript,content +1659,1956333,"experiments/sample.sh",184,0,"",shellscript,selection_keyboard +1660,1956521,"experiments/sample.sh",184,0,"x",shellscript,content +1661,1956521,"experiments/sample.sh",185,0,"",shellscript,selection_keyboard +1662,1956551,"experiments/sample.sh",185,0,"p",shellscript,content +1663,1956551,"experiments/sample.sh",186,0,"",shellscript,selection_keyboard +1664,1956668,"experiments/sample.sh",186,0,"o",shellscript,content +1665,1956668,"experiments/sample.sh",187,0,"",shellscript,selection_keyboard +1666,1957467,"experiments/sample.sh",187,0,"rt PYTHONUNBUFFERED=1",shellscript,content +1667,1957627,"experiments/sample.sh",207,0,"",shellscript,selection_command +1668,1960585,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +1669,1971380,"TERMINAL",0,0,"Traceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 142, in \r\n restored = checkpoint_manager.restore(\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/checkpoint_manager.py"", line 1647, in restore\r\n restored = self._checkpointer.restore(restore_directory, args=args)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/checkpointers/async_checkpointer.py"", line 562, in restore\r\n return super().restore(directory, *args, **kwargs)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/checkpointers/checkpointer.py"", line 304, in restore\r\n restored = self._restore(directory, args=ckpt_args)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/checkpointers/checkpointer.py"", line 323, in _restore\r\n return self._handler.restore(directory, args=args)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/handlers/composite_checkpoint_handler.py"", line 859, in restore\r\n restored[item_name] = handler.restore(\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/handlers/pytree_checkpoint_handler.py"", line 816, in restore\r\n return self._handler_impl.restore(directory, args=args)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/handlers/base_pytree_checkpoint_handler.py"", line 792, in restore\r\n raise ValueError(\r\nValueError: User-provided restore item and on-disk value metadata tree structures do not match: {'model': {'dynamics': {'transformer': {'pos_enc': Diff(lhs={'pe': {'value': ShapeDtypeStruct(shape=(5000, 512), dtype=float32)}}, rhs=None)}, 'mask_token': Diff(lhs=None, rhs={'value': ValueMetadataEntry(value_type='jax.Array', skip_deserialize=False, write_shape=(1, 1, 1, 512))})}}, 'opt_state': {'0': {'mu': {'dynamics': {'mask_token': Diff(lhs=None, rhs={'value': ValueMetadataEntry(value_type='jax.Array', skip_deserialize=False, write_shape=(1, 1, 1, 512))})}}, 'nu': {'dynamics': {'mask_token': Diff(lhs=None, rhs={'value': ValueMetadataEntry(value_type='jax.Array', skip_deserialize=False, write_shape=(1, 1, 1, 512))})}}}}}\r\n",,terminal_output +1670,1972000,"TERMINAL",0,0,"srun: error: hai001: task 0: Exited with exit code 1\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +1671,2020141,"genie.py",0,0,"",python,tab +1672,2022755,"sample.py",0,0,"",python,tab +1673,2024062,"sample.py",4755,0,"",python,selection_command +1674,2024316,"sample.py",4714,0,"",python,selection_command +1675,2024338,"sample.py",4695,0,"",python,selection_command +1676,2024370,"sample.py",4664,0,"",python,selection_command +1677,2024396,"sample.py",4630,0,"",python,selection_command +1678,2024427,"sample.py",4594,0,"",python,selection_command +1679,2024459,"sample.py",4564,0,"",python,selection_command +1680,2024492,"sample.py",4541,0,"",python,selection_command +1681,2024526,"sample.py",4508,0,"",python,selection_command +1682,2024560,"sample.py",4468,0,"",python,selection_command +1683,2024593,"sample.py",4390,0,"",python,selection_command +1684,2024626,"sample.py",4328,0,"",python,selection_command +1685,2025108,"sample.py",3311,0,"",python,selection_command +1686,2025497,"sample.py",2204,0,"",python,selection_command +1687,2027578,"sample.py",2168,0,"",python,selection_command +1688,2027830,"sample.py",2118,0,"",python,selection_command +1689,2027865,"sample.py",2070,0,"",python,selection_command +1690,2027889,"sample.py",2020,0,"",python,selection_command +1691,2028056,"sample.py",1978,0,"",python,selection_command +1692,2028305,"sample.py",1942,0,"",python,selection_command +1693,2028514,"sample.py",1978,0,"",python,selection_command +1694,2028660,"sample.py",2020,0,"",python,selection_command +1695,2028913,"sample.py",2070,0,"",python,selection_command +1696,2028931,"sample.py",2118,0,"",python,selection_command +1697,2028964,"sample.py",2168,0,"",python,selection_command +1698,2029002,"sample.py",2204,0,"",python,selection_command +1699,2029027,"sample.py",2260,0,"",python,selection_command +1700,2029064,"sample.py",2314,0,"",python,selection_command +1701,2029095,"sample.py",2328,0,"",python,selection_command +1702,2029129,"sample.py",2358,0,"",python,selection_command +1703,2029166,"sample.py",2396,0,"",python,selection_command +1704,2029196,"sample.py",2446,0,"",python,selection_command +1705,2029229,"sample.py",2498,0,"",python,selection_command +1706,2029267,"sample.py",2542,0,"",python,selection_command +1707,2029303,"sample.py",2586,0,"",python,selection_command +1708,2029329,"sample.py",2628,0,"",python,selection_command +1709,2029364,"sample.py",2656,0,"",python,selection_command +1710,2029450,"sample.py",2675,0,"",python,selection_command +1711,2029886,"sample.py",2656,0,"",python,selection_command +1712,2030128,"sample.py",2628,0,"",python,selection_command +1713,2030166,"sample.py",2586,0,"",python,selection_command +1714,2030188,"sample.py",2542,0,"",python,selection_command +1715,2030222,"sample.py",2498,0,"",python,selection_command +1716,2030255,"sample.py",2446,0,"",python,selection_command +1717,2030290,"sample.py",2396,0,"",python,selection_command +1718,2030326,"sample.py",2358,0,"",python,selection_command +1719,2030357,"sample.py",2328,0,"",python,selection_command +1720,2030391,"sample.py",2314,0,"",python,selection_command +1721,2030427,"sample.py",2260,0,"",python,selection_command +1722,2030460,"sample.py",2204,0,"",python,selection_command +1723,2030490,"sample.py",2168,0,"",python,selection_command +1724,2030525,"sample.py",2118,0,"",python,selection_command +1725,2030614,"sample.py",2070,0,"",python,selection_command +1726,2030765,"sample.py",2020,0,"",python,selection_command +1727,2030914,"sample.py",1978,0,"",python,selection_command +1728,2031048,"sample.py",1942,0,"",python,selection_command +1729,2031188,"sample.py",1922,0,"",python,selection_command +1730,2031373,"sample.py",1903,0,"",python,selection_command +1731,2031670,"sample.py",1905,0,"",python,selection_command +1732,2031835,"sample.py",1907,0,"",python,selection_command +1733,2032239,"genie.py",0,0,"",python,tab +1734,2032240,"genie.py",281,0,"",python,selection_command +1735,2032758,"genie.py",1078,0,"",python,selection_command +1736,2033033,"genie.py",2267,0,"",python,selection_command +1737,2033647,"genie.py",3381,0,"",python,selection_command +1738,2334752,"genie.py",3531,0,"",python,selection_mouse +1739,2334758,"genie.py",3530,0,"",python,selection_command +1740,2338509,"genie.py",4234,0,"",python,selection_mouse +1741,2338822,"genie.py",4245,0,"",python,selection_mouse +1742,2340396,"models/dynamics.py",0,0,"from typing import Dict\n\nimport jax\nimport jax.numpy as jnp\nimport flax.nnx as nnx\nimport einops\n\nfrom utils.nn import STTransformer, Transformer\n\n\nclass DynamicsMaskGIT(nnx.Module):\n """"""\n MaskGIT dynamics model\n \n Dimension keys:\n B: batch size\n T: sequence length\n N: number of patches per frame\n L: latent dimension\n V: vocabulary size (number of latents)\n """"""\n\n def __init__(\n self,\n model_dim: int,\n ffn_dim: int,\n num_latents: int,\n latent_action_dim: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n mask_limit: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n ):\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.num_latents = num_latents\n self.latent_action_dim = latent_action_dim\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.mask_limit = mask_limit\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.transformer = STTransformer(\n self.model_dim,\n self.model_dim,\n self.ffn_dim,\n self.num_latents,\n self.num_blocks,\n self.num_heads,\n self.dropout,\n self.param_dtype,\n self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n self.patch_embed = nnx.Embed(self.num_latents, self.model_dim, rngs=rngs)\n self.mask_token = nnx.Param(\n nnx.initializers.lecun_uniform()(rngs.params(), (1, 1, 1, self.model_dim))\n )\n self.action_up = nnx.Linear(\n self.latent_action_dim,\n self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n def __call__(\n self, batch: Dict[str, jax.Array], training: bool = True\n ) -> tuple[jax.Array, jax.Array | None]:\n # --- Mask videos ---\n video_tokens_BTN = batch[""video_tokens""]\n latent_actions_BTm11L = batch[""latent_actions""]\n vid_embed_BTNM = self.patch_embed(video_tokens_BTN)\n if training:\n batch_size = vid_embed_BTNM.shape[0]\n _rng_prob, *_rngs_mask = jax.random.split(batch[""mask_rng""], batch_size + 1)\n mask_prob = jax.random.uniform(\n _rng_prob, shape=(batch_size,), minval=self.mask_limit\n )\n per_sample_shape = vid_embed_BTNM.shape[1:-1]\n mask = jax.vmap(\n lambda rng, prob: jax.random.bernoulli(rng, prob, per_sample_shape),\n in_axes=(0, 0),\n )(jnp.asarray(_rngs_mask), mask_prob)\n mask = mask.at[:, 0].set(False)\n vid_embed_BTNM = jnp.where(\n jnp.expand_dims(mask, -1), self.mask_token.value, vid_embed_BTNM\n )\n else:\n mask = None\n\n # --- Predict transition ---\n act_embed_BTm11M = self.action_up(latent_actions_BTm11L)\n padded_act_embed_BT1M = jnp.pad(act_embed_BTm11M, ((0, 0), (1, 0), (0, 0), (0, 0)))\n padded_act_embed_BTNM = jnp.broadcast_to(padded_act_embed_BT1M, vid_embed_BTNM.shape)\n vid_embed_BTNM += padded_act_embed_BTNM\n logits_BTNV = self.transformer(vid_embed_BTNM)\n return logits_BTNV, mask\n\nclass DynamicsCausal(nnx.Module):\n """"""Causal dynamics model""""""\n\n def __init__(\n self,\n model_dim: int,\n ffn_dim: int,\n num_latents: int,\n latent_action_dim: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n decode: bool,\n rngs: nnx.Rngs,\n ):\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.num_latents = num_latents\n self.latent_action_dim = latent_action_dim\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.transformer = Transformer(\n self.model_dim,\n self.model_dim,\n self.ffn_dim,\n self.num_latents,\n self.num_blocks,\n self.num_heads,\n self.dropout,\n self.param_dtype,\n self.dtype,\n use_flash_attention=self.use_flash_attention,\n decode=decode,\n rngs=rngs,\n )\n self.patch_embed = nnx.Embed(self.num_latents, self.model_dim, rngs=rngs)\n self.action_up = nnx.Linear(\n self.latent_action_dim,\n self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n def __call__(\n self, batch: Dict[str, jax.Array], training: bool = True\n ) -> tuple[jax.Array, jax.Array | None]:\n # FIXME (f.srambical): this is exactly the same as STTransformer, just without the masking\n video_tokens_BTN = batch[""video_tokens""]\n latent_actions_BTm11L = batch[""latent_actions""]\n\n vid_embed_BTNM = self.patch_embed(video_tokens_BTN)\n act_embed_BTm11M = self.action_up(latent_actions_BTm11L)\n # FIXME (f.srambical): do we need to embed the action padding?\n padded_act_embed_BT1M = jnp.pad(act_embed_BTm11M, ((0, 0), (1, 0), (0, 0), (0, 0)))\n vid_embed_BTNp1M = jnp.concatenate([padded_act_embed_BT1M, vid_embed_BTNM], axis=2)\n\n logits_BTNp1V = self.transformer(vid_embed_BTNp1M)\n logits_BTNV = logits_BTNp1V[:, :, :-1]\n\n return logits_BTNV, jnp.ones_like(video_tokens_BTN)\n",python,tab +1743,2340396,"models/dynamics.py",3512,0,"",python,selection_command +1744,2347375,"models/dynamics.py",4308,0,"",python,selection_mouse +1745,2350584,"models/dynamics.py",4328,0,"",python,selection_mouse +1746,2351929,"models/dynamics.py",4340,0,"",python,selection_mouse +1747,2352355,"utils/nn.py",0,0,"",python,tab +1748,2352356,"utils/nn.py",10689,0,"",python,selection_command +1749,2359720,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +1750,2371516,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +1751,2374025,"experiments/dynamics_grain_tok_restore.sh",0,0,"",shellscript,tab +1752,2375976,"TERMINAL",0,0,"b",,terminal_output +1753,2376280,"TERMINAL",0,0,"ash",,terminal_output +1754,2376368,"TERMINAL",0,0,"e",,terminal_output +1755,2376518,"TERMINAL",0,0," ",,terminal_output +1756,2376572,"TERMINAL",0,0,"e",,terminal_output +1757,2376947,"TERMINAL",0,0,"",,terminal_output +1758,2377097,"TERMINAL",0,0,"",,terminal_output +1759,2377250,"TERMINAL",0,0,"",,terminal_output +1760,2377476,"TERMINAL",0,0," e",,terminal_output +1761,2377846,"TERMINAL",0,0,"x",,terminal_output +1762,2378142,"TERMINAL",0,0,"periments/",,terminal_output +1763,2379722,"TERMINAL",0,0,"dy",,terminal_output +1764,2379952,"TERMINAL",0,0,"namics_grain_",,terminal_output +1765,2381079,"TERMINAL",0,0,"t",,terminal_output +1766,2381339,"TERMINAL",0,0,"ok_",,terminal_output +1767,2381562,"TERMINAL",0,0,"r",,terminal_output +1768,2382072,"TERMINAL",0,0,"estore.sh ",,terminal_output +1769,2384162,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +1770,2389509,"TERMINAL",0,0,"Running on 1 devices.\r\n",,terminal_output +1771,2390043,"TERMINAL",0,0,"^Csrun: interrupt (one more within 1 sec to abort)\r\nsrun: StepId=14454.2 task 0: running\r\n^Csrun: sending Ctrl-C to StepId=14454.2\r\nsrun: forcing job termination\r\nsrun: Job step aborted: Waiting up to 32 seconds for job step to finish.\r\n[2025-07-31T13:50:52.851] error: *** STEP 14454.2 ON hai001 CANCELLED AT 2025-07-31T13:50:52 DUE to SIGNAL Killed ***\r\n",,terminal_output +1772,2390213,"TERMINAL",0,0,"^Csrun: sending Ctrl-C to StepId=14454.2\r\nsrun: job abort in progress\r\n",,terminal_output +1773,2390344,"TERMINAL",0,0,"]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ^C[?2004l\r[?2004h[?2004l\r\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +1774,2391967,"experiments/dynamics_grain_tok_restore.sh",202,0,"",shellscript,selection_command +1775,2392274,"experiments/dynamics_grain_tok_restore.sh",241,0,"",shellscript,selection_command +1776,2392481,"experiments/dynamics_grain_tok_restore.sh",251,0,"",shellscript,selection_command +1777,2392666,"experiments/dynamics_grain_tok_restore.sh",252,0,"",shellscript,selection_command +1778,2395636,"experiments/dynamics_grain_tok_restore.sh",252,1,"m",shellscript,selection_command +1779,2396175,"experiments/dynamics_grain_tok_restore.sh",252,2,"ma",shellscript,selection_command +1780,2396252,"experiments/dynamics_grain_tok_restore.sh",252,3,"mas",shellscript,selection_command +1781,2396414,"experiments/dynamics_grain_tok_restore.sh",252,4,"mask",shellscript,selection_command +1782,2396560,"experiments/dynamics_grain_tok_restore.sh",252,5,"maskg",shellscript,selection_command +1783,2396714,"experiments/dynamics_grain_tok_restore.sh",252,6,"maskgi",shellscript,selection_command +1784,2396870,"experiments/dynamics_grain_tok_restore.sh",252,7,"maskgit",shellscript,selection_command +1785,2397212,"experiments/dynamics_grain_tok_restore.sh",252,8,"maskgit_",shellscript,selection_command +1786,2397941,"experiments/dynamics_grain_tok_restore.sh",252,7,"maskgit",shellscript,selection_command +1787,2398438,"experiments/dynamics_grain_tok_restore.sh",252,7,"",shellscript,content +1788,2398700,"experiments/dynamics_grain_tok_restore.sh",252,0,"c",shellscript,content +1789,2398700,"experiments/dynamics_grain_tok_restore.sh",253,0,"",shellscript,selection_keyboard +1790,2398869,"experiments/dynamics_grain_tok_restore.sh",253,0,"c",shellscript,content +1791,2398869,"experiments/dynamics_grain_tok_restore.sh",254,0,"",shellscript,selection_keyboard +1792,2399287,"experiments/dynamics_grain_tok_restore.sh",253,1,"",shellscript,content +1793,2399468,"experiments/dynamics_grain_tok_restore.sh",253,0,"a",shellscript,content +1794,2399468,"experiments/dynamics_grain_tok_restore.sh",254,0,"",shellscript,selection_keyboard +1795,2399481,"experiments/dynamics_grain_tok_restore.sh",254,0,"u",shellscript,content +1796,2399481,"experiments/dynamics_grain_tok_restore.sh",255,0,"",shellscript,selection_keyboard +1797,2399652,"experiments/dynamics_grain_tok_restore.sh",255,0,"s",shellscript,content +1798,2399653,"experiments/dynamics_grain_tok_restore.sh",256,0,"",shellscript,selection_keyboard +1799,2399715,"experiments/dynamics_grain_tok_restore.sh",256,0,"a",shellscript,content +1800,2399716,"experiments/dynamics_grain_tok_restore.sh",257,0,"",shellscript,selection_keyboard +1801,2399833,"experiments/dynamics_grain_tok_restore.sh",257,0,"l",shellscript,content +1802,2399833,"experiments/dynamics_grain_tok_restore.sh",258,0,"",shellscript,selection_keyboard +1803,2399925,"experiments/dynamics_grain_tok_restore.sh",257,0,"",shellscript,selection_command +1804,2401533,"TERMINAL",0,0,"bash experiments/dynamics_grain_tok_restore.sh ",,terminal_output +1805,2401772,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +1806,2405865,"TERMINAL",0,0,"Running on 1 devices.\r\n",,terminal_output +1807,2411929,"TERMINAL",0,0,"Counting all components: ['dynamics', 'lam', 'tokenizer']\r\nParameter counts:\r\n{'dynamics': 26555392, 'lam': 35115232, 'tokenizer': 33750256, 'total': 95420880}\r\n",,terminal_output +1808,2414308,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +1809,2416215,"TERMINAL",0,0,"Starting training from step 0...\r\n",,terminal_output +1810,2437364,"TERMINAL",0,0,"2025-07-31 13:51:40.102231: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 13:51:40.102983: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 13:51:40.104247: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 13:51:40.104273: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1811,2459700,"TERMINAL",0,0,"Step 0, loss: 16.7960147857666\r\n",,terminal_output +1812,2491306,"TERMINAL",0,0,"Step 1, loss: 1.9300518035888672\r\n",,terminal_output +1813,2492364,"TERMINAL",0,0,"Step 2, loss: 2.3423683643341064\r\n",,terminal_output +1814,2493365,"TERMINAL",0,0,"Step 3, loss: 2.199364185333252\r\n",,terminal_output +1815,2494395,"TERMINAL",0,0,"Step 4, loss: 1.6084355115890503\r\n",,terminal_output +1816,2495599,"TERMINAL",0,0,"Saved checkpoint at step 5\r\n",,terminal_output +1817,2496706,"TERMINAL",0,0,"Step 5, loss: 1.0009500980377197\r\n",,terminal_output +1818,2498170,"TERMINAL",0,0,"Step 6, loss: 0.42609506845474243\r\n",,terminal_output +1819,2499568,"TERMINAL",0,0,"Step 7, loss: 5.184782028198242\r\n",,terminal_output +1820,2500702,"TERMINAL",0,0,"Step 8, loss: 0.44082924723625183\r\n",,terminal_output +1821,2501678,"TERMINAL",0,0,"Step 9, loss: 0.8897686004638672\r\n",,terminal_output +1822,2503442,"TERMINAL",0,0,"Saved checkpoint at step 10\r\n",,terminal_output +1823,2504511,"TERMINAL",0,0,"Step 10, loss: 1.4465599060058594\r\n",,terminal_output +1824,2506148,"TERMINAL",0,0,"Step 11, loss: 1.9773063659667969\r\n",,terminal_output +1825,2506765,"TERMINAL",0,0,"^Csrun: interrupt (one more within 1 sec to abort)\r\nsrun: StepId=14454.3 task 0: running\r\n",,terminal_output +1826,2506942,"TERMINAL",0,0,"^Csrun: sending Ctrl-C to StepId=14454.3\r\nsrun: forcing job termination\r\nsrun: Job step aborted: Waiting up to 32 seconds for job step to finish.\r\n[2025-07-31T13:52:49.729] error: *** STEP 14454.3 ON hai001 CANCELLED AT 2025-07-31T13:52:49 DUE to SIGNAL Killed ***\r\n",,terminal_output +1827,2507083,"TERMINAL",0,0,"^Csrun: sending Ctrl-C to StepId=14454.3\r\nsrun: job abort in progress\r\n",,terminal_output +1828,2507550,"TERMINAL",0,0,"]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +1829,2511406,"experiments/sample.sh",0,0,"",shellscript,tab +1830,2511910,"experiments/sample.sh",161,0,"",shellscript,selection_command +1831,2512043,"experiments/sample.sh",136,0,"",shellscript,selection_command +1832,2512209,"experiments/sample.sh",90,0,"",shellscript,selection_command +1833,2512383,"experiments/sample.sh",136,0,"",shellscript,selection_command +1834,2512591,"experiments/sample.sh",90,0,"",shellscript,selection_command +1835,2513029,"experiments/sample.sh",66,69,"ckpt_dir=""$PWD/checkpoints/maskgit_dynamics_openai_grain_tok_restore""",shellscript,selection_command +1836,2513510,"experiments/sample.sh",66,69,"ckpt_dir=""$PWD/checkpoints/causal_dynamics_openai_grain_tok_restore""",shellscript,content +1837,2513512,"experiments/sample.sh",66,0,"",shellscript,selection_command +1838,2515862,"TERMINAL",0,0,"bash experiments/dynamics_grain_tok_restore.sh sampl",,terminal_output +1839,2516706,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +1840,2522999,"utils/nn.py",0,0,"",python,tab +1841,2527901,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +1842,2530922,"utils/nn.py",11468,0,"",python,selection_command +1843,2531560,"utils/nn.py",12415,0,"",python,selection_command +1844,2535183,"utils/nn.py",12440,0,"",python,selection_command +1845,2535462,"utils/nn.py",12481,0,"",python,selection_command +1846,2535463,"utils/nn.py",12513,0,"",python,selection_command +1847,2535489,"utils/nn.py",12547,0,"",python,selection_command +1848,2535519,"utils/nn.py",12593,0,"",python,selection_command +1849,2535548,"utils/nn.py",12635,0,"",python,selection_command +1850,2535584,"utils/nn.py",12681,0,"",python,selection_command +1851,2535616,"utils/nn.py",12723,0,"",python,selection_command +1852,2535651,"utils/nn.py",12773,0,"",python,selection_command +1853,2535685,"utils/nn.py",12811,0,"",python,selection_command +1854,2535717,"utils/nn.py",12877,0,"",python,selection_command +1855,2535752,"utils/nn.py",12912,0,"",python,selection_command +1856,2535785,"utils/nn.py",12943,0,"",python,selection_command +1857,2535909,"utils/nn.py",12961,0,"",python,selection_command +1858,2535910,"utils/nn.py",12975,0,"",python,selection_command +1859,2535910,"utils/nn.py",13015,0,"",python,selection_command +1860,2535924,"utils/nn.py",13055,0,"",python,selection_command +1861,2535958,"utils/nn.py",13094,0,"",python,selection_command +1862,2535996,"utils/nn.py",13136,0,"",python,selection_command +1863,2536025,"utils/nn.py",13166,0,"",python,selection_command +1864,2536058,"utils/nn.py",13189,0,"",python,selection_command +1865,2536089,"utils/nn.py",13191,0,"",python,selection_command +1866,2536122,"utils/nn.py",13200,0,"",python,selection_command +1867,2536123,"TERMINAL",0,0,"2025-07-31 13:53:18.929046: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1868,2536156,"utils/nn.py",13256,0,"",python,selection_command +1869,2536437,"utils/nn.py",13200,0,"",python,selection_command +1870,2537108,"TERMINAL",0,0,"jax.errors.SimplifiedTraceback: For simplicity, JAX has removed its internal frames from the traceback of the following exception. Set JAX_TRACEBACK_FILTERING=off to include these.\r\n\r\nThe above exception was the direct cause of the following exception:\r\n\r\nTraceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 208, in \r\n recon_video = _autoreg_sample(rng, video_batch_BSHWC, action_batch_E)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/flax/nnx/transforms/compilation.py"", line 431, in __call__\r\n pure_args_out, pure_kwargs_out, pure_out = self.jitted_fn(\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/flax/nnx/transforms/compilation.py"", line 126, in __call__\r\n out = self.f(*args, **kwargs)\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 178, in _autoreg_sample\r\n generated_vid = _sampling_fn(genie, batch)\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 163, in _sampling_fn\r\n return model.sample_causal(\r\n File ""/fast/home/franz.srambical/jafar/genie.py"", line 406, in sample_causal\r\n final_carry, _ = jax.lax.scan(\r\n File ""/fast/home/franz.srambical/jafar/genie.py"", line 396, in generation_step_fn\r\n final_carry_causal, _ = jax.lax.scan(\r\n File ""/fast/home/franz.srambical/jafar/genie.py"", line 358, in causal_step_fn\r\n act_embed_BSM = jnp.pad(act_embed_BSm1M, ((0, 0), (1, 0), (0, 0), (0, 0)))\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 4352, in pad\r\n pad_width = _broadcast_to_pairs(pad_width, np.ndim(array), ""pad_width"")\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 3937, in _broadcast_to_pairs\r\n raise ValueError(f""jnp.pad: {name} with {nd=} has unsupported shape {nvals.shape}. ""\r\nValueError: jnp.pad: pad_width with nd=3 has unsupported shape (4, 2). Valid shapes are (3, 2), (1, 2), (2,), (1,), or ().\r\n",,terminal_output +1871,2538005,"TERMINAL",0,0,"srun: error: hai001: task 0: Exited with exit code 1\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +1872,2544393,"/fast/home/franz.srambical/jafar/sample.py",0,0,"from dataclasses import dataclass\nimport time\nimport os\nimport optax\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport flax.linen as nn\nimport numpy as np\nimport orbax.checkpoint as ocp\nfrom PIL import Image, ImageDraw\nimport tyro\nfrom flax import nnx\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n tokenizer_ffn_dim: int = 2048\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 4\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n lam_ffn_dim: int = 2048\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 4\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_type: str = ""maskgit""\n dyna_dim: int = 512\n dyna_ffn_dim: int = 2048\n dyna_num_blocks: int = 6\n dyna_num_heads: int = 8\n param_dtype = jnp.float32\n dtype = jnp.bfloat16\n use_flash_attention: bool = True\n\n\nargs = tyro.cli(Args)\n\nif __name__ == ""__main__"":\n """"""\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n S: sequence length\n H: height\n W: width\n D: B * T * N\n E: B * (T - 1)\n """"""\n jax.distributed.initialize()\n\n rng = jax.random.key(args.seed)\n\n # --- Load Genie checkpoint ---\n rngs = nnx.Rngs(rng)\n genie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n tokenizer_ffn_dim=args.tokenizer_ffn_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n lam_ffn_dim=args.lam_ffn_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n lam_co_train=False,\n # Dynamics\n dyna_type=args.dyna_type,\n dyna_dim=args.dyna_dim,\n dyna_ffn_dim=args.dyna_ffn_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeSave, ocp.handlers.PyTreeCheckpointHandler\n )\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n checkpoint_manager = ocp.CheckpointManager(\n args.checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n\n dummy_tx = optax.adamw(\n learning_rate=optax.linear_schedule(0.0001, 0.0001, 10000),\n b1=0.9,\n b2=0.9,\n weight_decay=1e-4,\n mu_dtype=args.dtype,\n )\n dummy_optimizer = nnx.Optimizer(genie, dummy_tx)\n\n abstract_optimizer = nnx.eval_shape(lambda: dummy_optimizer)\n abstract_optimizer_state = nnx.state(abstract_optimizer)\n restored = checkpoint_manager.restore(\n checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore(abstract_optimizer_state), # type: ignore\n ),\n )\n restored_optimizer_state = restored[""model_state""]\n nnx.update(dummy_optimizer, restored_optimizer_state)\n\n # --- Define sampling function ---\n def _sampling_fn(model: Genie, batch: dict) -> jax.Array:\n """"""Runs Genie.sample with pre-defined generation hyper-parameters.""""""\n if args.dyna_type == ""maskgit"":\n return model.sample(\n batch,\n args.seq_len,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n )\n elif args.dyna_type == ""causal"":\n return model.sample_causal(\n batch,\n args.seq_len,\n args.temperature,\n args.sample_argmax,\n )\n else:\n raise ValueError(f""Invalid dynamics type: {args.dyna_type}"")\n\n # --- Define autoregressive sampling loop ---\n @nnx.jit\n def _autoreg_sample(rng, video_batch_BSHWC, action_batch_E):\n input_video_BTHWC = video_batch_BSHWC[:, : args.start_frame + 1]\n rng, _rng = jax.random.split(rng)\n batch = dict(videos=input_video_BTHWC, latent_actions=action_batch_E, rng=_rng)\n generated_vid = _sampling_fn(genie, batch)\n return generated_vid\n\n # --- Get video + latent actions ---\n array_record_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".array_record"")\n ]\n dataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n args.batch_size,\n args.image_height,\n args.image_width,\n args.image_channels,\n # We don't use workers in order to avoid grain shutdown issues (https://github.com/google/grain/issues/398)\n num_workers=0,\n prefetch_buffer_size=1,\n seed=args.seed,\n )\n dataloader = iter(dataloader)\n video_batch_BSHWC = next(dataloader)\n gt_video = jnp.asarray(video_batch_BSHWC, dtype=jnp.float32) / 255.0\n video_batch_BSHWC = gt_video.astype(args.dtype)\n # Get latent actions for all videos in the batch\n batch = dict(videos=video_batch_BSHWC)\n action_batch_E = genie.vq_encode(batch, training=False)\n\n # --- Sample + evaluate video ---\n recon_video = _autoreg_sample(rng, video_batch_BSHWC, action_batch_E)\n recon_video = recon_video.astype(jnp.float32)\n gt = gt_video[:, : recon_video.shape[1]].clip(0, 1).reshape(-1, *gt_video.shape[2:])\n recon = recon_video.clip(0, 1).reshape(-1, *recon_video.shape[2:])\n ssim = jnp.asarray(\n pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :])\n ).mean()\n print(f""SSIM: {ssim}"")\n\n # --- Construct video ---\n true_videos = (gt_video * 255).astype(np.uint8)\n pred_videos = (recon_video * 255).astype(np.uint8)\n video_comparison = np.zeros((2, *recon_video.shape), dtype=np.uint8)\n video_comparison[0] = true_videos[:, : args.seq_len]\n video_comparison[1] = pred_videos\n frames = einops.rearrange(video_comparison, ""n b t h w c -> t (b h) (n w) c"")\n\n # --- Save video ---\n imgs = [Image.fromarray(img) for img in frames]\n # Write actions on each frame, on each row (i.e., for each video in the batch, on the GT row)\n for t, img in enumerate(imgs[1:]):\n d = ImageDraw.Draw(img)\n for row in range(action_batch_E.shape[0]):\n action = action_batch_E[row, t, 0]\n y_offset = row * video_batch_BSHWC.shape[2] + 2\n d.text((2, y_offset), f""{action}"", fill=255)\n imgs[0].save(\n f""generation_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n )\n",python,tab +1873,2544393,"/fast/home/franz.srambical/jafar/sample.py",5334,0,"",python,selection_command +1874,2546435,"/fast/home/franz.srambical/jafar/genie.py",0,0,"from typing import Dict\n\nimport optax\nimport jax\nimport jax.numpy as jnp\nimport flax.nnx as nnx\nimport orbax.checkpoint as ocp\n\nfrom models.dynamics import DynamicsMaskGIT, DynamicsCausal\nfrom models.lam import LatentActionModel\nfrom models.tokenizer import TokenizerVQVAE\n\n\nclass Genie(nnx.Module):\n """"""Genie model""""""\n\n def __init__(\n self,\n in_dim: int,\n tokenizer_dim: int,\n tokenizer_ffn_dim: int,\n latent_patch_dim: int,\n num_patch_latents: int,\n patch_size: int,\n tokenizer_num_blocks: int,\n tokenizer_num_heads: int,\n lam_dim: int,\n lam_ffn_dim: int,\n latent_action_dim: int,\n num_latent_actions: int,\n lam_patch_size: int,\n lam_num_blocks: int,\n lam_num_heads: int,\n lam_co_train: bool,\n dyna_type: str,\n dyna_dim: int,\n dyna_ffn_dim: int,\n dyna_num_blocks: int,\n dyna_num_heads: int,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n dropout: float = 0.0,\n mask_limit: float = 0.0,\n ):\n # --- Tokenizer ---\n self.in_dim = in_dim\n self.tokenizer_dim = tokenizer_dim\n self.tokenizer_ffn_dim = tokenizer_ffn_dim\n self.latent_patch_dim = latent_patch_dim\n self.num_patch_latents = num_patch_latents\n self.patch_size = patch_size\n self.tokenizer_num_blocks = tokenizer_num_blocks\n self.tokenizer_num_heads = tokenizer_num_heads\n # --- LAM ---\n self.lam_dim = lam_dim\n self.lam_ffn_dim = lam_ffn_dim\n self.latent_action_dim = latent_action_dim\n self.num_latent_actions = num_latent_actions\n self.lam_patch_size = lam_patch_size\n self.lam_num_blocks = lam_num_blocks\n self.lam_num_heads = lam_num_heads\n self.lam_co_train = lam_co_train\n # --- Dynamics ---\n self.dyna_type = dyna_type\n self.dyna_dim = dyna_dim\n self.dyna_ffn_dim = dyna_ffn_dim\n self.dyna_num_blocks = dyna_num_blocks\n self.dyna_num_heads = dyna_num_heads\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n self.dropout = dropout\n self.mask_limit = mask_limit\n\n self.tokenizer = TokenizerVQVAE(\n in_dim=self.in_dim,\n model_dim=self.tokenizer_dim,\n ffn_dim=self.tokenizer_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_patch_latents,\n patch_size=self.patch_size,\n num_blocks=self.tokenizer_num_blocks,\n num_heads=self.tokenizer_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n self.lam = LatentActionModel(\n in_dim=self.in_dim,\n model_dim=self.lam_dim,\n ffn_dim=self.lam_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_latent_actions,\n patch_size=self.lam_patch_size,\n num_blocks=self.lam_num_blocks,\n num_heads=self.lam_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n if self.dyna_type == ""maskgit"":\n self.dynamics = DynamicsMaskGIT(\n model_dim=self.dyna_dim,\n ffn_dim=self.dyna_ffn_dim,\n num_latents=self.num_patch_latents,\n latent_action_dim=self.latent_action_dim,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n mask_limit=self.mask_limit,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n elif self.dyna_type == ""causal"":\n self.dynamics = DynamicsCausal(\n model_dim=self.dyna_dim,\n ffn_dim=self.dyna_ffn_dim,\n num_latents=self.num_patch_latents,\n latent_action_dim=self.latent_action_dim,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n decode=False,\n rngs=rngs,\n )\n else:\n raise ValueError(f""Invalid dynamics type: {self.dyna_type}"")\n\n def __call__(\n self, batch: Dict[str, jax.Array], training: bool = True\n ) -> Dict[str, jax.Array]:\n videos_BTHWC = batch[""videos""]\n tokenizer_outputs = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_indices_BTN = tokenizer_outputs[""indices""]\n lam_outputs = self.lam.vq_encode(videos_BTHWC, training=False)\n z_q_BTm11L = lam_outputs[""z_q""]\n action_indices_E = lam_outputs[""indices""]\n latent_actions_BTm11L = jax.lax.cond(\n self.lam_co_train,\n lambda: z_q_BTm11L,\n lambda: jax.lax.stop_gradient(z_q_BTm11L),\n )\n outputs = dict(\n video_tokens=jax.lax.stop_gradient(token_indices_BTN),\n latent_actions=latent_actions_BTm11L,\n )\n outputs[""mask_rng""] = batch[""mask_rng""]\n dyna_logits_BTNV, dyna_mask = self.dynamics(outputs, training)\n outputs[""token_logits""] = dyna_logits_BTNV\n if dyna_mask is not None:\n outputs[""mask""] = dyna_mask\n mle_indices_BTN = jnp.argmax(outputs[""token_logits""], axis=-1)\n H, W = batch[""videos""].shape[2:4]\n outputs[""recon""] = self.tokenizer.decode(mle_indices_BTN, (H, W))\n outputs[""lam_indices""] = action_indices_E\n return outputs\n\n # FIXME (f.srambical): sampling should be moved to the dynamics classes\n def sample(\n self,\n batch: Dict[str, jax.Array],\n seq_len: int,\n steps: int = 25,\n temperature: float = 1,\n sample_argmax: bool = False,\n ) -> jax.Array:\n """"""\n Autoregressively samples up to `seq_len` future frames, following Figure 8 of the paper.\n\n - Input frames are tokenized once.\n - Future frames are generated autoregressively in token space.\n - All frames are detokenized in a single pass.\n\n Note:\n - For interactive or step-wise sampling, detokenization should occur after each action.\n - To maintain consistent tensor shapes across timesteps, all current and future frames are decoded at every step.\n - Temporal causal structure is preserved by\n a) reapplying the mask before each decoding step.\n b) a temporal causal mask is applied within each ST-transformer block.\n\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n M: model dimension\n S: sequence length\n H: height\n W: width\n E: B * (S - 1)\n """"""\n # --- Encode videos and actions ---\n videos_BTHWC = batch[""videos""]\n latent_actions_E = batch[""latent_actions""]\n tokenizer_out = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_idxs_BTN = tokenizer_out[""indices""]\n B, T, N = token_idxs_BTN.shape\n pad_shape = (B, seq_len - T, N)\n pad = jnp.zeros(pad_shape, dtype=token_idxs_BTN.dtype)\n token_idxs_BSN = jnp.concatenate([token_idxs_BTN, pad], axis=1)\n action_tokens_EL = self.lam.vq.get_codes(latent_actions_E)\n\n def maskgit_step_fn(\n carry: tuple[jax.Array, jax.Array, jax.Array, jax.Array], step: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array, jax.Array, jax.Array], None]:\n rng, token_idxs_BSN, mask_BSN, action_tokens_EL = carry\n S, N = token_idxs_BSN.shape[1:]\n L = action_tokens_EL.shape[-1]\n\n # --- Construct + encode video ---\n vid_embed_BSNM = self.dynamics.patch_embed(token_idxs_BSN)\n mask_token_111M = self.dynamics.mask_token.value\n mask_expanded_BSN1 = mask_BSN[..., None]\n vid_embed_BSNM = jnp.where(mask_expanded_BSN1, mask_token_111M, vid_embed_BSNM)\n\n # --- Predict transition ---\n action_tokens_BSm1L = jnp.reshape(action_tokens_EL, (B, S - 1, L))\n act_embed_BSm1M = self.dynamics.action_up(action_tokens_BSm1L)\n vid_embed_BSNM += jnp.pad(act_embed_BSm1M, ((0, 0), (1, 0), (0, 0), (0, 0)))\n unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (steps * 2))\n step_temp = temperature * (1.0 - unmasked_ratio)\n final_logits_BSNV = self.dynamics.transformer(vid_embed_BSNM) / step_temp\n\n # --- Sample new tokens for final frame ---\n if sample_argmax:\n sampled_token_idxs_BSN = jnp.argmax(final_logits_BSNV, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs_BSN = jax.random.categorical(_rng, final_logits_BSNV)\n gather_fn = jax.vmap(jax.vmap(jax.vmap(lambda x, y: x[y])))\n final_token_probs_BSN = gather_fn(\n jax.nn.softmax(final_logits_BSNV), sampled_token_idxs_BSN\n )\n final_token_probs_BSN += ~mask_BSN\n # Update masked tokens only\n token_idxs_BSN = jnp.where(mask_BSN, sampled_token_idxs_BSN, token_idxs_BSN)\n\n # --- Update mask ---\n num_unmasked_tokens = jnp.round(N * (1.0 - unmasked_ratio)).astype(int)\n idx_mask_N = jnp.arange(final_token_probs_BSN.shape[-1]) > num_unmasked_tokens\n sorted_idxs_BSN = jnp.argsort(final_token_probs_BSN, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask_N))\n new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)\n\n new_carry = (rng, token_idxs_BSN, new_mask_BSN, action_tokens_EL)\n return new_carry, None\n\n def generation_step_fn(\n carry: tuple[jax.Array, jax.Array], step_t: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array], None]:\n rng, current_token_idxs_BSN = carry\n rng, step_rng = jax.random.split(rng)\n\n # Mask current and future frames (i.e., t >= step_t)\n mask_S = jnp.arange(seq_len) >= step_t\n mask_BSN = jnp.broadcast_to(mask_S[None, :, None], (B, seq_len, N)).astype(\n bool\n )\n masked_token_idxs_BSN = current_token_idxs_BSN * ~mask_BSN\n\n # --- Initialize and run MaskGIT loop ---\n init_carry_maskgit = (\n step_rng,\n masked_token_idxs_BSN,\n mask_BSN,\n action_tokens_EL,\n )\n final_carry_maskgit, _ = jax.lax.scan(\n maskgit_step_fn, init_carry_maskgit, jnp.arange(steps)\n )\n updated_token_idxs = final_carry_maskgit[1]\n new_carry = (rng, updated_token_idxs)\n return new_carry, None\n\n # --- Run the autoregressive generation using jax.lax.scan ---\n initial_carry = (batch[""rng""], token_idxs_BSN)\n timesteps_to_scan = jnp.arange(T, seq_len)\n final_carry, _ = jax.lax.scan(\n generation_step_fn, initial_carry, timesteps_to_scan\n )\n final_token_idxs = final_carry[1]\n\n # --- Decode all tokens at once at the end ---\n H, W = batch[""videos""].shape[2:4]\n final_frames = self.tokenizer.decode(\n final_token_idxs,\n video_hw=(H, W),\n )\n return final_frames\n\n def sample_causal(\n self,\n batch: Dict[str, jax.Array],\n seq_len: int,\n temperature: float = 1,\n sample_argmax: bool = False,\n ) -> jax.Array:\n """"""\n Autoregressively samples up to `seq_len` future frames, following Figure 8 of the paper.\n\n - Input frames are tokenized once.\n - Future frames are generated autoregressively in token space.\n - All frames are detokenized in a single pass.\n\n Note:\n - For interactive or step-wise sampling, detokenization should occur after each action.\n - To maintain consistent tensor shapes across timesteps, all current and future frames are decoded at every step.\n - Temporal causal structure is preserved by\n a) reapplying the mask before each decoding step.\n b) a temporal causal mask is applied within each ST-transformer block.\n\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n M: model dimension\n S: sequence length\n H: height\n W: width\n E: B * (S - 1)\n """"""\n # --- Encode videos and actions ---\n videos_BTHWC = batch[""videos""]\n latent_actions_E = batch[""latent_actions""]\n tokenizer_out = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_idxs_BTN = tokenizer_out[""indices""]\n B, T, N = token_idxs_BTN.shape\n pad_shape = (B, seq_len - T, N)\n pad = jnp.zeros(pad_shape, dtype=token_idxs_BTN.dtype)\n token_idxs_BSN = jnp.concatenate([token_idxs_BTN, pad], axis=1)\n action_tokens_EL = self.lam.vq.get_codes(latent_actions_E)\n\n def causal_step_fn(\n carry: tuple[jax.Array, jax.Array, jax.Array, jax.Array], step_n: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array, jax.Array, jax.Array], None]:\n rng, token_idxs_BSN, action_tokens_EL, step_t = carry\n S, N = token_idxs_BSN.shape[1:]\n L = action_tokens_EL.shape[-1]\n\n # --- Construct + encode video ---\n vid_embed_BSNM = self.dynamics.patch_embed(token_idxs_BSN)\n\n # --- Predict transition ---\n action_tokens_BSm1L = jnp.reshape(action_tokens_EL, (B, S - 1, L))\n act_embed_BSm1M = self.dynamics.action_up(action_tokens_BSm1L)\n act_embed_BSM = jnp.pad(act_embed_BSm1M, ((0, 0), (1, 0), (0, 0), (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.shape[-1]))\n vid_embed_BSNp1M = jnp.concatenate([act_embed_BS1M, vid_embed_BSNM], axis=2)\n # FIXME (f.srambical): only input until current frame\n vid_embed_BTNp1M = vid_embed_BSNp1M[:, :step_t, :, :]\n final_logits_BTNp1V = self.dynamics.transformer(vid_embed_BTNp1M) / temperature\n final_logits_BV = final_logits_BTNp1V[:, step_t, step_n, :]\n\n # --- Sample new tokens for final frame ---\n if sample_argmax:\n sampled_token_idxs_B = jnp.argmax(final_logits_BV, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs_B = jax.random.categorical(_rng, final_logits_BV)\n gather_fn = jax.vmap(jax.vmap(jax.vmap(lambda x, y: x[y])))\n final_token_probs_B = gather_fn(\n jax.nn.softmax(final_logits_BV), sampled_token_idxs_B\n )\n # Update next tokens only\n token_idxs_BSN = token_idxs_BSN.at[:, step_t, step_n].set(sampled_token_idxs_B)\n step_t += 1\n\n new_carry = (rng, token_idxs_BSN, action_tokens_EL, step_t)\n return new_carry, None\n\n def generation_step_fn(\n carry: tuple[jax.Array, jax.Array], step_t: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array], None]:\n rng, current_token_idxs_BSN = carry\n rng, step_rng = jax.random.split(rng)\n\n # --- Initialize and run causal loop ---\n init_carry_causal = (\n step_rng,\n current_token_idxs_BSN,\n action_tokens_EL,\n step_t,\n )\n final_carry_causal, _ = jax.lax.scan(\n causal_step_fn, init_carry_causal, jnp.arange(N)\n )\n updated_token_idxs = final_carry_causal[1]\n new_carry = (rng, updated_token_idxs)\n return new_carry, None\n\n # --- Run the autoregressive generation using jax.lax.scan ---\n initial_carry = (batch[""rng""], token_idxs_BSN)\n timesteps_to_scan = jnp.arange(T, seq_len)\n final_carry, _ = jax.lax.scan(\n generation_step_fn, initial_carry, timesteps_to_scan\n )\n final_token_idxs = final_carry[1]\n\n # --- Decode all tokens at once at the end ---\n H, W = batch[""videos""].shape[2:4]\n final_frames = self.tokenizer.decode(\n final_token_idxs,\n video_hw=(H, W),\n )\n return final_frames\n\n def vq_encode(self, batch: Dict[str, jax.Array], training: bool) -> jax.Array:\n # --- Preprocess videos ---\n video_BTHWC = batch[""videos""]\n lam_output = self.lam.vq_encode(video_BTHWC, training=training)\n lam_indices_E = lam_output[""indices""]\n return lam_indices_E\n\n# FIXME (f.srambical): add conversion script for old checkpoints\ndef restore_genie_components(\n optimizer: nnx.Optimizer,\n sharding: jax.sharding.NamedSharding,\n rng: jax.Array,\n args,\n) -> nnx.Optimizer:\n """"""Restore pre-trained Genie components""""""\n rngs = nnx.Rngs(rng)\n\n tx = optimizer.tx\n model = optimizer.model\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n tokenizer_checkpoint_manager = ocp.CheckpointManager(\n directory=args.tokenizer_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.tokenizer_dim,\n ffn_dim=args.tokenizer_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n num_blocks=args.tokenizer_num_blocks,\n num_heads=args.tokenizer_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n dummy_tokenizer_optimizer = nnx.Optimizer(dummy_tokenizer, tx)\n dummy_tokenizer_optimizer_state = nnx.state(dummy_tokenizer_optimizer)\n abstract_sharded_tokenizer_optimizer_state = _create_abstract_sharded_pytree(\n dummy_tokenizer_optimizer_state, sharding\n )\n restored_tokenizer = tokenizer_checkpoint_manager.restore(\n step=tokenizer_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore( # type: ignore\n abstract_sharded_tokenizer_optimizer_state # type: ignore\n ),\n ),\n )[""model_state""]\n nnx.update(dummy_tokenizer_optimizer.model, restored_tokenizer.model)\n model.tokenizer = dummy_tokenizer_optimizer.model\n tokenizer_checkpoint_manager.close()\n\n if args.lam_checkpoint:\n lam_checkpoint_manager = ocp.CheckpointManager(\n directory=args.lam_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_lam = LatentActionModel(\n in_dim=args.image_channels,\n model_dim=args.lam_dim,\n ffn_dim=args.lam_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_latent_actions,\n patch_size=args.lam_patch_size,\n num_blocks=args.lam_num_blocks,\n num_heads=args.lam_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n dummy_lam_optimizer = nnx.Optimizer(dummy_lam, tx)\n dummy_lam_optimizer_state = nnx.state(dummy_lam_optimizer)\n abstract_sharded_lam_optimizer_state = _create_abstract_sharded_pytree(\n dummy_lam_optimizer_state, sharding\n )\n restored_lam_optimizer = lam_checkpoint_manager.restore(\n step=lam_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore( # type: ignore\n abstract_sharded_lam_optimizer_state # type: ignore\n ),\n ),\n )[""model_state""]\n nnx.update(dummy_lam_optimizer.model, restored_lam_optimizer.model)\n model.lam = dummy_lam_optimizer.model\n # Remove the LAM decoder to save memory and avoid unnecessary computation.\n del model.lam.decoder\n lam_checkpoint_manager.close()\n \n # Reinitialize the optimizer states\n optimizer = nnx.Optimizer(model, tx)\n return optimizer\n\n\ndef _create_abstract_sharded_pytree(\n pytree_template: nnx.GraphState, sharding_spec: jax.sharding.NamedSharding\n) -> jax.Array:\n """"""Replaces arrays in a pytree with ShapeDtypeStructs having the given sharding.""""""\n\n def map_fn(leaf_template):\n if hasattr(leaf_template, ""shape"") and hasattr(leaf_template, ""dtype""):\n return jax.ShapeDtypeStruct(\n leaf_template.shape, leaf_template.dtype, sharding=sharding_spec\n )\n return leaf_template\n\n return jax.tree_util.tree_map(map_fn, pytree_template)\n",python,tab +1875,2546435,"/fast/home/franz.srambical/jafar/genie.py",16326,0,"",python,selection_command +1876,2547735,"/fast/home/franz.srambical/jafar/genie.py",14505,0,"",python,selection_command +1877,2550960,"/fast/home/franz.srambical/jafar/genie.py",14544,0,"",python,selection_mouse +1878,2608579,"/fast/home/franz.srambical/jafar/genie.py",14469,0,"",python,selection_command +1879,2612941,"/fast/home/franz.srambical/jafar/genie.py",13124,0,"",python,selection_command +1880,2613663,"/fast/home/franz.srambical/jafar/genie.py",11954,0,"",python,selection_command +1881,2615555,"/fast/home/franz.srambical/jafar/genie.py",10775,0,"",python,selection_command +1882,2615757,"/fast/home/franz.srambical/jafar/genie.py",9239,0,"",python,selection_command +1883,2616102,"/fast/home/franz.srambical/jafar/genie.py",7591,0,"",python,selection_command +1884,2616804,"/fast/home/franz.srambical/jafar/genie.py",6368,0,"",python,selection_command +1885,2617328,"/fast/home/franz.srambical/jafar/genie.py",5130,0,"",python,selection_command +1886,2619105,"/fast/home/franz.srambical/jafar/genie.py",6368,0,"",python,selection_command +1887,2619754,"/fast/home/franz.srambical/jafar/genie.py",7591,0,"",python,selection_command +1888,2622209,"/fast/home/franz.srambical/jafar/genie.py",7670,0,"",python,selection_command +1889,2622450,"/fast/home/franz.srambical/jafar/genie.py",7720,0,"",python,selection_command +1890,2622481,"/fast/home/franz.srambical/jafar/genie.py",7759,0,"",python,selection_command +1891,2622569,"/fast/home/franz.srambical/jafar/genie.py",7799,0,"",python,selection_command +1892,2622570,"/fast/home/franz.srambical/jafar/genie.py",7862,0,"",python,selection_command +1893,2622580,"/fast/home/franz.srambical/jafar/genie.py",7934,0,"",python,selection_command +1894,2622616,"/fast/home/franz.srambical/jafar/genie.py",7993,0,"",python,selection_command +1895,2622650,"/fast/home/franz.srambical/jafar/genie.py",8002,0,"",python,selection_command +1896,2622682,"/fast/home/franz.srambical/jafar/genie.py",8031,0,"",python,selection_command +1897,2622714,"/fast/home/franz.srambical/jafar/genie.py",8117,0,"",python,selection_command +1898,2622749,"/fast/home/franz.srambical/jafar/genie.py",8194,0,"",python,selection_command +1899,2622784,"/fast/home/franz.srambical/jafar/genie.py",8262,0,"",python,selection_command +1900,2622900,"/fast/home/franz.srambical/jafar/genie.py",8306,0,"",python,selection_command +1901,2622901,"/fast/home/franz.srambical/jafar/genie.py",8341,0,"",python,selection_command +1902,2622901,"/fast/home/franz.srambical/jafar/genie.py",8350,0,"",python,selection_command +1903,2623285,"/fast/home/franz.srambical/jafar/genie.py",8397,0,"",python,selection_command +1904,2623448,"/fast/home/franz.srambical/jafar/genie.py",8468,0,"",python,selection_command +1905,2623619,"/fast/home/franz.srambical/jafar/genie.py",8529,0,"",python,selection_command +1906,2623761,"/fast/home/franz.srambical/jafar/genie.py",8582,0,"",python,selection_command +1907,2628141,"/fast/home/franz.srambical/jafar/genie.py",8666,0,"",python,selection_command +1908,2628338,"/fast/home/franz.srambical/jafar/genie.py",8675,0,"",python,selection_command +1909,2628413,"/fast/home/franz.srambical/jafar/genie.py",8716,0,"",python,selection_command +1910,2628562,"/fast/home/franz.srambical/jafar/genie.py",8795,0,"",python,selection_command +1911,2628921,"/fast/home/franz.srambical/jafar/genie.py",8799,0,"",python,selection_command +1912,2643344,"/fast/home/franz.srambical/jafar/genie.py",8861,0,"\n ",python,content +1913,2643872,"/fast/home/franz.srambical/jafar/genie.py",8874,0,"c",python,content +1914,2643872,"/fast/home/franz.srambical/jafar/genie.py",8875,0,"",python,selection_keyboard +1915,2644155,"/fast/home/franz.srambical/jafar/genie.py",8875,0,"t",python,content +1916,2644155,"/fast/home/franz.srambical/jafar/genie.py",8876,0,"",python,selection_keyboard +1917,2644467,"/fast/home/franz.srambical/jafar/genie.py",8875,1,"",python,content +1918,2644641,"/fast/home/franz.srambical/jafar/genie.py",8874,1,"",python,content +1919,2644717,"/fast/home/franz.srambical/jafar/genie.py",8874,0,"a",python,content +1920,2644717,"/fast/home/franz.srambical/jafar/genie.py",8875,0,"",python,selection_keyboard +1921,2644718,"/fast/home/franz.srambical/jafar/genie.py",8875,0,"c",python,content +1922,2644718,"/fast/home/franz.srambical/jafar/genie.py",8876,0,"",python,selection_keyboard +1923,2644929,"/fast/home/franz.srambical/jafar/genie.py",8876,0,"t",python,content +1924,2644930,"/fast/home/franz.srambical/jafar/genie.py",8877,0,"",python,selection_keyboard +1925,2645691,"/fast/home/franz.srambical/jafar/genie.py",8877,0,"_",python,content +1926,2645691,"/fast/home/franz.srambical/jafar/genie.py",8878,0,"",python,selection_keyboard +1927,2645968,"/fast/home/franz.srambical/jafar/genie.py",8878,0,"e",python,content +1928,2645968,"/fast/home/franz.srambical/jafar/genie.py",8879,0,"",python,selection_keyboard +1929,2646053,"/fast/home/franz.srambical/jafar/genie.py",8879,0,"m",python,content +1930,2646054,"/fast/home/franz.srambical/jafar/genie.py",8880,0,"",python,selection_keyboard +1931,2646099,"/fast/home/franz.srambical/jafar/genie.py",8880,0,"b",python,content +1932,2646100,"/fast/home/franz.srambical/jafar/genie.py",8881,0,"",python,selection_keyboard +1933,2646240,"/fast/home/franz.srambical/jafar/genie.py",8881,0,"e",python,content +1934,2646240,"/fast/home/franz.srambical/jafar/genie.py",8882,0,"",python,selection_keyboard +1935,2646502,"/fast/home/franz.srambical/jafar/genie.py",8882,0,"d",python,content +1936,2646503,"/fast/home/franz.srambical/jafar/genie.py",8883,0,"",python,selection_keyboard +1937,2646757,"/fast/home/franz.srambical/jafar/genie.py",8883,0,"_",python,content +1938,2646757,"/fast/home/franz.srambical/jafar/genie.py",8884,0,"",python,selection_keyboard +1939,2647303,"/fast/home/franz.srambical/jafar/genie.py",8884,0,"\",python,content +1940,2647304,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"",python,selection_keyboard +1941,2648063,"/fast/home/franz.srambical/jafar/genie.py",8884,1,"",python,content +1942,2648404,"/fast/home/franz.srambical/jafar/genie.py",8884,0,"B",python,content +1943,2648404,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"",python,selection_keyboard +1944,2649465,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"S",python,content +1945,2649466,"/fast/home/franz.srambical/jafar/genie.py",8886,0,"",python,selection_keyboard +1946,2653865,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"",python,selection_command +1947,2655201,"/fast/home/franz.srambical/jafar/genie.py",8862,25,"",python,content +1948,2655210,"/fast/home/franz.srambical/jafar/genie.py",8874,0,"",python,selection_command +1949,2660857,"/fast/home/franz.srambical/jafar/genie.py",8861,0,"\n ",python,content +1950,2661269,"/fast/home/franz.srambical/jafar/genie.py",8874,0,"a",python,content +1951,2661269,"/fast/home/franz.srambical/jafar/genie.py",8875,0,"",python,selection_keyboard +1952,2661297,"/fast/home/franz.srambical/jafar/genie.py",8875,0,"d",python,content +1953,2661297,"/fast/home/franz.srambical/jafar/genie.py",8876,0,"",python,selection_keyboard +1954,2661301,"/fast/home/franz.srambical/jafar/genie.py",8876,0,"c",python,content +1955,2661301,"/fast/home/franz.srambical/jafar/genie.py",8877,0,"",python,selection_keyboard +1956,2661773,"/fast/home/franz.srambical/jafar/genie.py",8876,1,"",python,content +1957,2661911,"/fast/home/franz.srambical/jafar/genie.py",8875,1,"",python,content +1958,2661913,"/fast/home/franz.srambical/jafar/genie.py",8875,0,"c",python,content +1959,2661913,"/fast/home/franz.srambical/jafar/genie.py",8876,0,"",python,selection_keyboard +1960,2662065,"/fast/home/franz.srambical/jafar/genie.py",8876,0,"t",python,content +1961,2662065,"/fast/home/franz.srambical/jafar/genie.py",8877,0,"",python,selection_keyboard +1962,2662230,"/fast/home/franz.srambical/jafar/genie.py",8877,0,"i",python,content +1963,2662230,"/fast/home/franz.srambical/jafar/genie.py",8878,0,"",python,selection_keyboard +1964,2662873,"/fast/home/franz.srambical/jafar/genie.py",8877,1,"",python,content +1965,2663366,"/fast/home/franz.srambical/jafar/genie.py",8877,0,"_",python,content +1966,2663366,"/fast/home/franz.srambical/jafar/genie.py",8878,0,"",python,selection_keyboard +1967,2663618,"/fast/home/franz.srambical/jafar/genie.py",8878,0,"e",python,content +1968,2663618,"/fast/home/franz.srambical/jafar/genie.py",8879,0,"",python,selection_keyboard +1969,2663794,"/fast/home/franz.srambical/jafar/genie.py",8879,0,"b",python,content +1970,2663794,"/fast/home/franz.srambical/jafar/genie.py",8880,0,"",python,selection_keyboard +1971,2663865,"/fast/home/franz.srambical/jafar/genie.py",8880,0,"m",python,content +1972,2663865,"/fast/home/franz.srambical/jafar/genie.py",8881,0,"",python,selection_keyboard +1973,2663964,"/fast/home/franz.srambical/jafar/genie.py",8881,0,"e",python,content +1974,2663965,"/fast/home/franz.srambical/jafar/genie.py",8882,0,"",python,selection_keyboard +1975,2664228,"/fast/home/franz.srambical/jafar/genie.py",8882,0,"d",python,content +1976,2664228,"/fast/home/franz.srambical/jafar/genie.py",8883,0,"",python,selection_keyboard +1977,2664454,"/fast/home/franz.srambical/jafar/genie.py",8883,0,"_",python,content +1978,2664454,"/fast/home/franz.srambical/jafar/genie.py",8884,0,"",python,selection_keyboard +1979,2664737,"/fast/home/franz.srambical/jafar/genie.py",8884,0,"V",python,content +1980,2664737,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"",python,selection_keyboard +1981,2664953,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"S",python,content +1982,2664954,"/fast/home/franz.srambical/jafar/genie.py",8886,0,"",python,selection_keyboard +1983,2665415,"/fast/home/franz.srambical/jafar/genie.py",8885,1,"",python,content +1984,2665541,"/fast/home/franz.srambical/jafar/genie.py",8884,1,"",python,content +1985,2665892,"/fast/home/franz.srambical/jafar/genie.py",8884,0,"B",python,content +1986,2665893,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"",python,selection_keyboard +1987,2665949,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"S",python,content +1988,2665949,"/fast/home/franz.srambical/jafar/genie.py",8886,0,"",python,selection_keyboard +1989,2668245,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"",python,selection_command +1990,2669119,"/fast/home/franz.srambical/jafar/genie.py",8886,0,"",python,selection_command +1991,2671271,"/fast/home/franz.srambical/jafar/genie.py",8886,0,"M",python,content +1992,2671272,"/fast/home/franz.srambical/jafar/genie.py",8887,0,"",python,selection_keyboard +1993,2671730,"/fast/home/franz.srambical/jafar/genie.py",8887,0," ",python,content +1994,2671730,"/fast/home/franz.srambical/jafar/genie.py",8888,0,"",python,selection_keyboard +1995,2672094,"/fast/home/franz.srambical/jafar/genie.py",8888,0,"=",python,content +1996,2672094,"/fast/home/franz.srambical/jafar/genie.py",8889,0,"",python,selection_keyboard +1997,2672873,"/fast/home/franz.srambical/jafar/genie.py",8889,0," ",python,content +1998,2672874,"/fast/home/franz.srambical/jafar/genie.py",8890,0,"",python,selection_keyboard +1999,2673231,"/fast/home/franz.srambical/jafar/genie.py",8890,0,"w",python,content +2000,2673231,"/fast/home/franz.srambical/jafar/genie.py",8891,0,"",python,selection_keyboard +2001,2673931,"/fast/home/franz.srambical/jafar/genie.py",8890,1,"",python,content +2002,2674284,"/fast/home/franz.srambical/jafar/genie.py",8889,0,"",python,selection_command +2003,2674605,"/fast/home/franz.srambical/jafar/genie.py",8918,0,"",python,selection_command +2004,2674957,"/fast/home/franz.srambical/jafar/genie.py",8921,0,"",python,selection_command +2005,2675126,"/fast/home/franz.srambical/jafar/genie.py",8924,0,"",python,selection_command +2006,2675329,"/fast/home/franz.srambical/jafar/genie.py",8925,0,"",python,selection_command +2007,2675413,"/fast/home/franz.srambical/jafar/genie.py",8928,0,"",python,selection_command +2008,2675554,"/fast/home/franz.srambical/jafar/genie.py",8929,0,"",python,selection_command +2009,2675974,"/fast/home/franz.srambical/jafar/genie.py",8929,0,"d",python,content +2010,2675974,"/fast/home/franz.srambical/jafar/genie.py",8930,0,"",python,selection_keyboard +2011,2676237,"/fast/home/franz.srambical/jafar/genie.py",8930,0,"(",python,content +2012,2676237,"/fast/home/franz.srambical/jafar/genie.py",8931,0,"",python,selection_keyboard +2013,2676778,"/fast/home/franz.srambical/jafar/genie.py",8930,0,"",python,selection_command +2014,2677057,"/fast/home/franz.srambical/jafar/genie.py",8929,2,"",python,content +2015,2677953,"/fast/home/franz.srambical/jafar/genie.py",8929,49,"",python,content +2016,2678495,"/fast/home/franz.srambical/jafar/genie.py",8889,0,"",python,selection_command +2017,2678716,"/fast/home/franz.srambical/jafar/genie.py",8890,0,"act_embed_BSm1M, ((0, 0), (1, 0), (0, 0), (0, 0))",python,content +2018,2678716,"/fast/home/franz.srambical/jafar/genie.py",8938,0,"",python,selection_command +2019,2679711,"/fast/home/franz.srambical/jafar/genie.py",8937,0,"",python,selection_command +2020,2680047,"/fast/home/franz.srambical/jafar/genie.py",8936,0,"",python,selection_command +2021,2680047,"/fast/home/franz.srambical/jafar/genie.py",8934,0,"",python,selection_command +2022,2680047,"/fast/home/franz.srambical/jafar/genie.py",8933,0,"",python,selection_command +2023,2680051,"/fast/home/franz.srambical/jafar/genie.py",8932,0,"",python,selection_command +2024,2680084,"/fast/home/franz.srambical/jafar/genie.py",8929,0,"",python,selection_command +2025,2680117,"/fast/home/franz.srambical/jafar/genie.py",8928,0,"",python,selection_command +2026,2680315,"/fast/home/franz.srambical/jafar/genie.py",8926,0,"",python,selection_command +2027,2680572,"/fast/home/franz.srambical/jafar/genie.py",8925,0,"",python,selection_command +2028,2680593,"/fast/home/franz.srambical/jafar/genie.py",8924,0,"",python,selection_command +2029,2680629,"/fast/home/franz.srambical/jafar/genie.py",8921,0,"",python,selection_command +2030,2680659,"/fast/home/franz.srambical/jafar/genie.py",8920,0,"",python,selection_command +2031,2680687,"/fast/home/franz.srambical/jafar/genie.py",8918,0,"",python,selection_command +2032,2680718,"/fast/home/franz.srambical/jafar/genie.py",8917,0,"",python,selection_command +2033,2680751,"/fast/home/franz.srambical/jafar/genie.py",8916,0,"",python,selection_command +2034,2680940,"/fast/home/franz.srambical/jafar/genie.py",8913,0,"",python,selection_command +2035,2681200,"/fast/home/franz.srambical/jafar/genie.py",8912,0,"",python,selection_command +2036,2681214,"/fast/home/franz.srambical/jafar/genie.py",8910,0,"",python,selection_command +2037,2681246,"/fast/home/franz.srambical/jafar/genie.py",8909,0,"",python,selection_command +2038,2681282,"/fast/home/franz.srambical/jafar/genie.py",8907,0,"",python,selection_command +2039,2681315,"/fast/home/franz.srambical/jafar/genie.py",8905,0,"",python,selection_command +2040,2681349,"/fast/home/franz.srambical/jafar/genie.py",8890,0,"",python,selection_command +2041,2681622,"/fast/home/franz.srambical/jafar/genie.py",8888,0,"",python,selection_command +2042,2681715,"/fast/home/franz.srambical/jafar/genie.py",8874,0,"",python,selection_command +2043,2682426,"/fast/home/franz.srambical/jafar/genie.py",8888,0,"",python,selection_command +2044,2682966,"/fast/home/franz.srambical/jafar/genie.py",8966,0,"",python,selection_command +2045,2683387,"/fast/home/franz.srambical/jafar/genie.py",8967,0,"",python,selection_command +2046,2683581,"/fast/home/franz.srambical/jafar/genie.py",8970,0,"",python,selection_command +2047,2683852,"/fast/home/franz.srambical/jafar/genie.py",8973,0,"",python,selection_command +2048,2685054,"/fast/home/franz.srambical/jafar/genie.py",8979,0,"_BSM",python,content +2049,2685054,"/fast/home/franz.srambical/jafar/genie.py",8977,2,"",python,content +2050,2685054,"/fast/home/franz.srambical/jafar/genie.py",8976,0,"ct_ebme",python,content +2051,2685054,"/fast/home/franz.srambical/jafar/genie.py",8970,5,"",python,content +2052,2685054,"/fast/home/franz.srambical/jafar/genie.py",8939,0,")",python,content +2053,2685054,"/fast/home/franz.srambical/jafar/genie.py",8890,0,"jnp.pad(",python,content +2054,2687921,"/fast/home/franz.srambical/jafar/genie.py",8892,0,"",python,selection_command +2055,2688498,"/fast/home/franz.srambical/jafar/genie.py",8961,0,"",python,selection_command +2056,2688498,"/fast/home/franz.srambical/jafar/genie.py",8962,0,"",python,selection_command +2057,2688579,"/fast/home/franz.srambical/jafar/genie.py",8962,0,"w",python,content +2058,2688579,"/fast/home/franz.srambical/jafar/genie.py",8963,0,"",python,selection_keyboard +2059,2688733,"/fast/home/franz.srambical/jafar/genie.py",8963,0,"\n ",python,content +2060,2689254,"/fast/home/franz.srambical/jafar/genie.py",8975,0,"",python,selection_command +2061,2689338,"/fast/home/franz.srambical/jafar/genie.py",8962,14,"",python,content +2062,2689341,"/fast/home/franz.srambical/jafar/genie.py",8979,13,"jnp.pad()",python,content +2063,2689342,"/fast/home/franz.srambical/jafar/genie.py",8947,1,"",python,content +2064,2689342,"/fast/home/franz.srambical/jafar/genie.py",8890,8,"",python,content +2065,2689342,"/fast/home/franz.srambical/jafar/genie.py",8970,0,"",python,selection_command +2066,2690654,"/fast/home/franz.srambical/jafar/genie.py",8892,0,"",python,selection_command +2067,2690946,"/fast/home/franz.srambical/jafar/genie.py",8939,0,"\n ",python,content +2068,2692386,"/fast/home/franz.srambical/jafar/genie.py",8952,0,"a",python,content +2069,2692386,"/fast/home/franz.srambical/jafar/genie.py",8953,0,"",python,selection_keyboard +2070,2692387,"/fast/home/franz.srambical/jafar/genie.py",8953,0,"c",python,content +2071,2692387,"/fast/home/franz.srambical/jafar/genie.py",8954,0,"",python,selection_keyboard +2072,2692666,"/fast/home/franz.srambical/jafar/genie.py",8954,0,"t",python,content +2073,2692667,"/fast/home/franz.srambical/jafar/genie.py",8955,0,"",python,selection_keyboard +2074,2693389,"/fast/home/franz.srambical/jafar/genie.py",8954,0,"",python,selection_command +2075,2694206,"/fast/home/franz.srambical/jafar/genie.py",8970,0,"",python,selection_command +2076,2694468,"/fast/home/franz.srambical/jafar/genie.py",8983,0,"",python,selection_command +2077,2694626,"/fast/home/franz.srambical/jafar/genie.py",8986,0,"",python,selection_command +2078,2694761,"/fast/home/franz.srambical/jafar/genie.py",8989,0,"",python,selection_command +2079,2695283,"/fast/home/franz.srambical/jafar/genie.py",8986,0,"",python,selection_command +2080,2695618,"/fast/home/franz.srambical/jafar/genie.py",8986,9,"",python,content +2081,2696616,"/fast/home/franz.srambical/jafar/genie.py",8986,0,"a",python,content +2082,2696616,"/fast/home/franz.srambical/jafar/genie.py",8987,0,"",python,selection_keyboard +2083,2696617,"/fast/home/franz.srambical/jafar/genie.py",8987,0,"c",python,content +2084,2696617,"/fast/home/franz.srambical/jafar/genie.py",8988,0,"",python,selection_keyboard +2085,2697241,"/fast/home/franz.srambical/jafar/genie.py",8987,0,"",python,selection_command +2086,2697571,"/fast/home/franz.srambical/jafar/genie.py",8954,0,"",python,selection_command +2087,2697587,"/fast/home/franz.srambical/jafar/genie.py",8893,0,"",python,selection_command +2088,2697896,"/fast/home/franz.srambical/jafar/genie.py",8892,0,"",python,selection_command +2089,2698079,"/fast/home/franz.srambical/jafar/genie.py",8891,0,"",python,selection_command +2090,2698111,"/fast/home/franz.srambical/jafar/genie.py",8890,0,"",python,selection_command +2091,2698149,"/fast/home/franz.srambical/jafar/genie.py",8889,0,"",python,selection_command +2092,2698172,"/fast/home/franz.srambical/jafar/genie.py",8888,0,"",python,selection_command +2093,2698200,"/fast/home/franz.srambical/jafar/genie.py",8887,0,"",python,selection_command +2094,2698236,"/fast/home/franz.srambical/jafar/genie.py",8886,0,"",python,selection_command +2095,2698273,"/fast/home/franz.srambical/jafar/genie.py",8885,0,"",python,selection_command +2096,2698302,"/fast/home/franz.srambical/jafar/genie.py",8884,0,"",python,selection_command +2097,2698408,"/fast/home/franz.srambical/jafar/genie.py",8883,0,"",python,selection_command +2098,2698408,"/fast/home/franz.srambical/jafar/genie.py",8882,0,"",python,selection_command +2099,2698409,"/fast/home/franz.srambical/jafar/genie.py",8881,0,"",python,selection_command +2100,2698446,"/fast/home/franz.srambical/jafar/genie.py",8880,0,"",python,selection_command +2101,2698752,"/fast/home/franz.srambical/jafar/genie.py",8879,0,"",python,selection_command +2102,2699121,"/fast/home/franz.srambical/jafar/genie.py",8879,1,"",python,content +2103,2699122,"/fast/home/franz.srambical/jafar/genie.py",8880,0,"b",python,content +2104,2699122,"/fast/home/franz.srambical/jafar/genie.py",8880,0,"",python,selection_command +2105,2699789,"/fast/home/franz.srambical/jafar/genie.py",8954,0,"",python,selection_command +2106,2699994,"/fast/home/franz.srambical/jafar/genie.py",8974,0,"",python,selection_command +2107,2700503,"/fast/home/franz.srambical/jafar/genie.py",8988,0,"",python,selection_command +2108,2700793,"/fast/home/franz.srambical/jafar/genie.py",8988,0,"t",python,content +2109,2700793,"/fast/home/franz.srambical/jafar/genie.py",8989,0,"",python,selection_keyboard +2110,2701216,"/fast/home/franz.srambical/jafar/genie.py",8989,0,"_",python,content +2111,2701217,"/fast/home/franz.srambical/jafar/genie.py",8990,0,"",python,selection_keyboard +2112,2701630,"/fast/home/franz.srambical/jafar/genie.py",8990,0,"e",python,content +2113,2701630,"/fast/home/franz.srambical/jafar/genie.py",8991,0,"",python,selection_keyboard +2114,2701748,"/fast/home/franz.srambical/jafar/genie.py",8991,0,"m",python,content +2115,2701748,"/fast/home/franz.srambical/jafar/genie.py",8992,0,"",python,selection_keyboard +2116,2701829,"/fast/home/franz.srambical/jafar/genie.py",8992,0,"b",python,content +2117,2701829,"/fast/home/franz.srambical/jafar/genie.py",8993,0,"",python,selection_keyboard +2118,2701960,"/fast/home/franz.srambical/jafar/genie.py",8993,0,"e",python,content +2119,2701961,"/fast/home/franz.srambical/jafar/genie.py",8994,0,"",python,selection_keyboard +2120,2702264,"/fast/home/franz.srambical/jafar/genie.py",8994,0,"d",python,content +2121,2702265,"/fast/home/franz.srambical/jafar/genie.py",8995,0,"",python,selection_keyboard +2122,2702592,"/fast/home/franz.srambical/jafar/genie.py",8995,0,"_",python,content +2123,2702593,"/fast/home/franz.srambical/jafar/genie.py",8996,0,"",python,selection_keyboard +2124,2703311,"/fast/home/franz.srambical/jafar/genie.py",8996,0,"B",python,content +2125,2703312,"/fast/home/franz.srambical/jafar/genie.py",8997,0,"",python,selection_keyboard +2126,2703862,"/fast/home/franz.srambical/jafar/genie.py",8997,0,"S",python,content +2127,2703862,"/fast/home/franz.srambical/jafar/genie.py",8998,0,"",python,selection_keyboard +2128,2704255,"/fast/home/franz.srambical/jafar/genie.py",8998,0,"M",python,content +2129,2704255,"/fast/home/franz.srambical/jafar/genie.py",8999,0,"",python,selection_keyboard +2130,2704600,"/fast/home/franz.srambical/jafar/genie.py",8998,0,"",python,selection_command +2131,2705215,"/fast/home/franz.srambical/jafar/genie.py",8954,0,"",python,selection_command +2132,2705617,"/fast/home/franz.srambical/jafar/genie.py",8955,0,"",python,selection_command +2133,2706271,"/fast/home/franz.srambical/jafar/genie.py",8955,0,"_",python,content +2134,2706272,"/fast/home/franz.srambical/jafar/genie.py",8956,0,"",python,selection_keyboard +2135,2706459,"/fast/home/franz.srambical/jafar/genie.py",8956,0,"E",python,content +2136,2706459,"/fast/home/franz.srambical/jafar/genie.py",8957,0,"",python,selection_keyboard +2137,2706830,"/fast/home/franz.srambical/jafar/genie.py",8956,1,"",python,content +2138,2706850,"/fast/home/franz.srambical/jafar/genie.py",8956,0,"e",python,content +2139,2706851,"/fast/home/franz.srambical/jafar/genie.py",8957,0,"",python,selection_keyboard +2140,2706984,"/fast/home/franz.srambical/jafar/genie.py",8957,0,"m",python,content +2141,2706985,"/fast/home/franz.srambical/jafar/genie.py",8958,0,"",python,selection_keyboard +2142,2707028,"/fast/home/franz.srambical/jafar/genie.py",8958,0,"b",python,content +2143,2707029,"/fast/home/franz.srambical/jafar/genie.py",8959,0,"",python,selection_keyboard +2144,2707187,"/fast/home/franz.srambical/jafar/genie.py",8959,0,"e",python,content +2145,2707187,"/fast/home/franz.srambical/jafar/genie.py",8960,0,"",python,selection_keyboard +2146,2707403,"/fast/home/franz.srambical/jafar/genie.py",8960,0,"d",python,content +2147,2707404,"/fast/home/franz.srambical/jafar/genie.py",8961,0,"",python,selection_keyboard +2148,2707662,"/fast/home/franz.srambical/jafar/genie.py",8961,0,"_",python,content +2149,2707662,"/fast/home/franz.srambical/jafar/genie.py",8962,0,"",python,selection_keyboard +2150,2708258,"/fast/home/franz.srambical/jafar/genie.py",8962,0,"B",python,content +2151,2708258,"/fast/home/franz.srambical/jafar/genie.py",8963,0,"",python,selection_keyboard +2152,2708561,"/fast/home/franz.srambical/jafar/genie.py",8963,0,"S",python,content +2153,2708561,"/fast/home/franz.srambical/jafar/genie.py",8964,0,"",python,selection_keyboard +2154,2709493,"/fast/home/franz.srambical/jafar/genie.py",8964,0,"1",python,content +2155,2709493,"/fast/home/franz.srambical/jafar/genie.py",8965,0,"",python,selection_keyboard +2156,2710372,"/fast/home/franz.srambical/jafar/genie.py",8965,0,"M",python,content +2157,2710372,"/fast/home/franz.srambical/jafar/genie.py",8966,0,"",python,selection_keyboard +2158,2711755,"/fast/home/franz.srambical/jafar/genie.py",8966,0," = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.shape[-1]))",python,content +2159,2711756,"/fast/home/franz.srambical/jafar/genie.py",8939,0,")",python,content +2160,2711756,"/fast/home/franz.srambical/jafar/genie.py",8890,0,"jnp.pad(",python,content +2161,2712228,"/fast/home/franz.srambical/jafar/genie.py",9039,0,"",python,selection_command +2162,2714533,"/fast/home/franz.srambical/jafar/genie.py",9083,0,"",python,selection_command +2163,2715700,"/fast/home/franz.srambical/jafar/genie.py",9083,0,"1",python,content +2164,2731605,"/fast/home/franz.srambical/jafar/genie.py",10188,0,"",python,selection_command +2165,2732696,"/fast/home/franz.srambical/jafar/genie.py",9028,0,"",python,selection_command +2166,2733000,"/fast/home/franz.srambical/jafar/genie.py",10188,0,"",python,selection_command +2167,2733163,"/fast/home/franz.srambical/jafar/genie.py",12069,0,"",python,selection_command +2168,2734150,"/fast/home/franz.srambical/jafar/genie.py",12863,0,"",python,selection_command +2169,2734574,"/fast/home/franz.srambical/jafar/genie.py",13729,0,"",python,selection_command +2170,2736146,"/fast/home/franz.srambical/jafar/genie.py",12863,0,"",python,selection_command +2171,2736147,"/fast/home/franz.srambical/jafar/genie.py",12069,0,"",python,selection_command +2172,2736306,"/fast/home/franz.srambical/jafar/genie.py",10188,0,"",python,selection_command +2173,2737094,"/fast/home/franz.srambical/jafar/genie.py",9028,0,"",python,selection_command +2174,2739603,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2175,2749912,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2176,2751874,"/fast/home/franz.srambical/jafar/genie.py",8949,0,"",python,selection_command +2177,2752923,"/fast/home/franz.srambical/jafar/genie.py",10589,0,"",python,selection_command +2178,2753464,"/fast/home/franz.srambical/jafar/genie.py",11835,0,"",python,selection_command +2179,2754195,"/fast/home/franz.srambical/jafar/genie.py",12954,0,"",python,selection_command +2180,2759745,"/fast/home/franz.srambical/jafar/genie.py",13010,0,"",python,selection_command +2181,2759745,"/fast/home/franz.srambical/jafar/genie.py",13011,0,"",python,selection_command +2182,2759866,"/fast/home/franz.srambical/jafar/genie.py",13011,0,"w",python,content +2183,2759867,"/fast/home/franz.srambical/jafar/genie.py",13012,0,"",python,selection_keyboard +2184,2760048,"/fast/home/franz.srambical/jafar/genie.py",13012,0,"\n ",python,content +2185,2760477,"/fast/home/franz.srambical/jafar/genie.py",13024,0,"",python,selection_command +2186,2760602,"/fast/home/franz.srambical/jafar/genie.py",13011,14,"",python,content +2187,2762254,"/fast/home/franz.srambical/jafar/genie.py",14325,0,"",python,selection_command +2188,2763531,"/fast/home/franz.srambical/jafar/genie.py",14326,0,"",python,selection_command +2189,2763778,"/fast/home/franz.srambical/jafar/genie.py",14373,0,"",python,selection_command +2190,2763801,"/fast/home/franz.srambical/jafar/genie.py",14444,0,"",python,selection_command +2191,2763834,"/fast/home/franz.srambical/jafar/genie.py",14445,0,"",python,selection_command +2192,2763939,"/fast/home/franz.srambical/jafar/genie.py",14486,0,"",python,selection_command +2193,2763939,"/fast/home/franz.srambical/jafar/genie.py",14565,0,"",python,selection_command +2194,2766449,"/fast/home/franz.srambical/jafar/genie.py",14640,0,"",python,selection_command +2195,2766616,"/fast/home/franz.srambical/jafar/genie.py",14727,0,"",python,selection_command +2196,2766929,"/fast/home/franz.srambical/jafar/genie.py",14640,0,"",python,selection_command +2197,2771811,"/fast/home/franz.srambical/jafar/genie.py",14727,0,"",python,selection_command +2198,2786557,"/fast/home/franz.srambical/jafar/genie.py",14486,0,"",python,selection_command +2199,2809722,"/fast/home/franz.srambical/jafar/genie.py",14487,0,"",python,selection_command +2200,2813217,"/fast/home/franz.srambical/jafar/genie.py",14851,0,"",python,selection_mouse +2201,2814052,"/fast/home/franz.srambical/jafar/genie.py",14850,0,"",python,selection_command +2202,2815994,"/fast/home/franz.srambical/jafar/genie.py",14758,0,"",python,selection_command +2203,2832796,"/fast/home/franz.srambical/jafar/genie.py",14716,0,"",python,selection_mouse +2204,2832891,"/fast/home/franz.srambical/jafar/genie.py",14716,1,",",python,selection_mouse +2205,2833000,"/fast/home/franz.srambical/jafar/genie.py",14716,2,", ",python,selection_mouse +2206,2833000,"/fast/home/franz.srambical/jafar/genie.py",14716,3,", (",python,selection_mouse +2207,2833000,"/fast/home/franz.srambical/jafar/genie.py",14716,4,", (0",python,selection_mouse +2208,2833000,"/fast/home/franz.srambical/jafar/genie.py",14716,91,", (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.",python,selection_mouse +2209,2833000,"/fast/home/franz.srambical/jafar/genie.py",14716,92,", (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.s",python,selection_mouse +2210,2833020,"/fast/home/franz.srambical/jafar/genie.py",14716,93,", (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.sh",python,selection_mouse +2211,2833239,"/fast/home/franz.srambical/jafar/genie.py",14716,94,", (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.sha",python,selection_mouse +2212,2833307,"/fast/home/franz.srambical/jafar/genie.py",14716,95,", (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.shap",python,selection_mouse +2213,2833522,"/fast/home/franz.srambical/jafar/genie.py",14716,8,", (0, 0)",python,selection_mouse +2214,2836673,"/fast/home/franz.srambical/jafar/genie.py",14716,8,"",python,content +2215,2841388,"/fast/home/franz.srambical/jafar/genie.py",13302,0,"",python,selection_command +2216,2841484,"/fast/home/franz.srambical/jafar/genie.py",12139,0,"",python,selection_command +2217,2841916,"/fast/home/franz.srambical/jafar/genie.py",10961,0,"",python,selection_command +2218,2842015,"/fast/home/franz.srambical/jafar/genie.py",9408,0,"",python,selection_command +2219,2842204,"/fast/home/franz.srambical/jafar/genie.py",7759,0,"",python,selection_command +2220,2843334,"/fast/home/franz.srambical/jafar/genie.py",7799,0,"",python,selection_command +2221,2843592,"/fast/home/franz.srambical/jafar/genie.py",7862,0,"",python,selection_command +2222,2843613,"/fast/home/franz.srambical/jafar/genie.py",7934,0,"",python,selection_command +2223,2843645,"/fast/home/franz.srambical/jafar/genie.py",7993,0,"",python,selection_command +2224,2843675,"/fast/home/franz.srambical/jafar/genie.py",8002,0,"",python,selection_command +2225,2843708,"/fast/home/franz.srambical/jafar/genie.py",8031,0,"",python,selection_command +2226,2843742,"/fast/home/franz.srambical/jafar/genie.py",8117,0,"",python,selection_command +2227,2843776,"/fast/home/franz.srambical/jafar/genie.py",8194,0,"",python,selection_command +2228,2843809,"/fast/home/franz.srambical/jafar/genie.py",8262,0,"",python,selection_command +2229,2843844,"/fast/home/franz.srambical/jafar/genie.py",8306,0,"",python,selection_command +2230,2843878,"/fast/home/franz.srambical/jafar/genie.py",8341,0,"",python,selection_command +2231,2843911,"/fast/home/franz.srambical/jafar/genie.py",8350,0,"",python,selection_command +2232,2844009,"/fast/home/franz.srambical/jafar/genie.py",8397,0,"",python,selection_command +2233,2844009,"/fast/home/franz.srambical/jafar/genie.py",8468,0,"",python,selection_command +2234,2844009,"/fast/home/franz.srambical/jafar/genie.py",8529,0,"",python,selection_command +2235,2844044,"/fast/home/franz.srambical/jafar/genie.py",8582,0,"",python,selection_command +2236,2844077,"/fast/home/franz.srambical/jafar/genie.py",8666,0,"",python,selection_command +2237,2844110,"/fast/home/franz.srambical/jafar/genie.py",8675,0,"",python,selection_command +2238,2844143,"/fast/home/franz.srambical/jafar/genie.py",8716,0,"",python,selection_command +2239,2844176,"/fast/home/franz.srambical/jafar/genie.py",8795,0,"",python,selection_command +2240,2844534,"/fast/home/franz.srambical/jafar/genie.py",8870,0,"",python,selection_command +2241,2844784,"/fast/home/franz.srambical/jafar/genie.py",8874,0,"",python,selection_command +2242,2845057,"/fast/home/franz.srambical/jafar/genie.py",8888,0,"",python,selection_command +2243,2845064,"/fast/home/franz.srambical/jafar/genie.py",8890,0,"",python,selection_command +2244,2845601,"/fast/home/franz.srambical/jafar/genie.py",8938,8,"",python,content +2245,2848427,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2246,2848593,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +2247,2859850,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +2248,2867946,"TERMINAL",0,0,"2025-07-31 13:58:50.749059: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2249,2868876,"TERMINAL",0,0,"jax.errors.SimplifiedTraceback: For simplicity, JAX has removed its internal frames from the traceback of the following exception. Set JAX_TRACEBACK_FILTERING=off to include these.\r\n\r\nThe above exception was the direct cause of the following exception:\r\n\r\nTraceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 208, in \r\n recon_video = _autoreg_sample(rng, video_batch_BSHWC, action_batch_E)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/flax/nnx/transforms/compilation.py"", line 431, in __call__\r\n pure_args_out, pure_kwargs_out, pure_out = self.jitted_fn(\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/flax/nnx/transforms/compilation.py"", line 126, in __call__\r\n out = self.f(*args, **kwargs)\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 178, in _autoreg_sample\r\n generated_vid = _sampling_fn(genie, batch)\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 163, in _sampling_fn\r\n return model.sample_causal(\r\n File ""/fast/home/franz.srambical/jafar/genie.py"", line 408, in sample_causal\r\n final_carry, _ = jax.lax.scan(\r\n File ""/fast/home/franz.srambical/jafar/genie.py"", line 398, in generation_step_fn\r\n final_carry_causal, _ = jax.lax.scan(\r\n File ""/fast/home/franz.srambical/jafar/genie.py"", line 364, in causal_step_fn\r\n vid_embed_BTNp1M = vid_embed_BSNp1M[:, :step_t, :, :]\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/array_methods.py"", line 1083, in op\r\n return getattr(self.aval, f""_{name}"")(self, *args)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/array_methods.py"", line 657, in _getitem\r\n return indexing.rewriting_take(self, item)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 653, in rewriting_take\r\n return internal_gather(arr, dynamic_idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 662, in _gather\r\n indexer = index_to_gather(np.shape(arr), idx) # shared with _scatter_update\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 929, in index_to_gather\r\n raise IndexError(msg)\r\nIndexError: Array slice indices must have static start/stop/step to be used with NumPy indexing syntax. Found slice(None, Tracedwith, None). To index a statically sized array at a dynamic position, try lax.dynamic_slice/dynamic_update_slice (JAX does not support dynamically sized arrays within JIT compiled functions).\r\n",,terminal_output +2250,2869770,"TERMINAL",0,0,"srun: error: hai001: task 0: Exited with exit code 1\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2251,2878892,"/fast/home/franz.srambical/jafar/genie.py",14958,0,"",python,selection_command +2252,2881672,"/fast/home/franz.srambical/jafar/genie.py",14970,0,"",python,selection_command +2253,2911429,"/fast/home/franz.srambical/jafar/genie.py",14904,0,"",python,selection_command +2254,2912003,"/fast/home/franz.srambical/jafar/genie.py",14892,66,"",python,content +2255,2912015,"/fast/home/franz.srambical/jafar/genie.py",14904,0,"",python,selection_command +2256,2912307,"/fast/home/franz.srambical/jafar/genie.py",14892,66,"",python,content +2257,2912320,"/fast/home/franz.srambical/jafar/genie.py",14904,0,"",python,selection_command +2258,2914395,"/fast/home/franz.srambical/jafar/genie.py",14922,0,"",python,selection_command +2259,2914530,"/fast/home/franz.srambical/jafar/genie.py",14924,0,"",python,selection_command +2260,2914693,"/fast/home/franz.srambical/jafar/genie.py",14929,0,"",python,selection_command +2261,2914857,"/fast/home/franz.srambical/jafar/genie.py",14930,0,"",python,selection_command +2262,2915008,"/fast/home/franz.srambical/jafar/genie.py",14938,0,"",python,selection_command +2263,2915142,"/fast/home/franz.srambical/jafar/genie.py",14939,0,"",python,selection_command +2264,2915293,"/fast/home/franz.srambical/jafar/genie.py",14950,0,"",python,selection_command +2265,2915442,"/fast/home/franz.srambical/jafar/genie.py",14951,0,"",python,selection_command +2266,2915685,"/fast/home/franz.srambical/jafar/genie.py",14967,0,"",python,selection_command +2267,2916210,"/fast/home/franz.srambical/jafar/genie.py",14952,0,"",python,selection_command +2268,2917637,"/fast/home/franz.srambical/jafar/genie.py",14953,0,"",python,selection_command +2269,2917879,"/fast/home/franz.srambical/jafar/genie.py",14954,0,"",python,selection_command +2270,2917910,"/fast/home/franz.srambical/jafar/genie.py",14955,0,"",python,selection_command +2271,2917948,"/fast/home/franz.srambical/jafar/genie.py",14956,0,"",python,selection_command +2272,2917981,"/fast/home/franz.srambical/jafar/genie.py",14957,0,"",python,selection_command +2273,2918012,"/fast/home/franz.srambical/jafar/genie.py",14958,0,"",python,selection_command +2274,2918045,"/fast/home/franz.srambical/jafar/genie.py",14959,0,"",python,selection_command +2275,2918078,"/fast/home/franz.srambical/jafar/genie.py",14960,0,"",python,selection_command +2276,2918261,"/fast/home/franz.srambical/jafar/genie.py",14961,0,"",python,selection_command +2277,2918429,"/fast/home/franz.srambical/jafar/genie.py",14962,0,"",python,selection_command +2278,2918577,"/fast/home/franz.srambical/jafar/genie.py",14963,0,"",python,selection_command +2279,2919112,"/fast/home/franz.srambical/jafar/genie.py",14963,1,"S",python,content +2280,2919577,"/fast/home/franz.srambical/jafar/genie.py",14996,0,"",python,selection_command +2281,2919590,"/fast/home/franz.srambical/jafar/genie.py",14997,0,"",python,selection_command +2282,2919639,"/fast/home/franz.srambical/jafar/genie.py",14997,0,"w",python,content +2283,2919639,"/fast/home/franz.srambical/jafar/genie.py",14998,0,"",python,selection_keyboard +2284,2919761,"/fast/home/franz.srambical/jafar/genie.py",14998,0,"\n ",python,content +2285,2920363,"/fast/home/franz.srambical/jafar/genie.py",15010,0,"",python,selection_command +2286,2920524,"/fast/home/franz.srambical/jafar/genie.py",14997,14,"",python,content +2287,2922285,"TERMINAL",0,0,"dp",,terminal_output +2288,2922428,"TERMINAL",0,0,"\r\n[?2004l\rbash: dp: command not found\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2289,2923337,"TERMINAL",0,0,"dp",,terminal_output +2290,2923567,"TERMINAL",0,0,"\r\n[?2004l\rbash: dp: command not found\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2291,2924329,"TERMINAL",0,0,"dp",,terminal_output +2292,2924551,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2293,2925904,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +2294,2936264,"utils/nn.py",0,0,"import math\nfrom typing import Tuple, Callable\n\nfrom flax import nnx\nimport jax\nimport jax.numpy as jnp\nimport einops\n\n\nclass PositionalEncoding(nnx.Module):\n """"""https://uvadlc-notebooks.readthedocs.io/en/latest/tutorial_notebooks/JAX/tutorial6/Transformers_and_MHAttention.html""""""\n\n def __init__(self, d_model: int, max_len: int = 5000):\n self.d_model = d_model\n self.max_len = max_len\n\n pe = jnp.zeros((self.max_len, self.d_model))\n position = jnp.arange(0, self.max_len, dtype=jnp.float32)[:, None]\n div_term = jnp.exp(\n jnp.arange(0, self.d_model, 2) * (-math.log(10000.0) / self.d_model)\n )\n pe = pe.at[:, 0::2].set(jnp.sin(position * div_term))\n pe = pe.at[:, 1::2].set(jnp.cos(position * div_term))\n self.pe = nnx.Variable(pe)\n\n def __call__(self, x: jax.Array) -> jax.Array:\n x = x + self.pe[: x.shape[2]]\n return x\n\n\nclass STBlock(nnx.Module):\n def __init__(\n self,\n dim: int,\n ffn_dim: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n ):\n self.dim = dim\n self.ffn_dim = ffn_dim\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.spatial_pos_enc = PositionalEncoding(self.dim)\n self.spatial_norm = nnx.LayerNorm(\n num_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.spatial_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.dim,\n qkv_features=self.dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=False\n ),\n rngs=rngs,\n decode=False,\n )\n\n self.temporal_pos_enc = PositionalEncoding(self.dim)\n self.temporal_norm = nnx.LayerNorm(\n num_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.temporal_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.dim,\n qkv_features=self.dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=True\n ),\n rngs=rngs,\n decode=False,\n )\n\n self.ffn_norm = nnx.LayerNorm(\n num_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_dense1 = nnx.Linear(\n in_features=self.dim,\n out_features=self.ffn_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_dense2 = nnx.Linear(\n in_features=self.ffn_dim,\n out_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n @nnx.remat\n def __call__(self, x_BTNM: jax.Array) -> jax.Array:\n # --- Spatial attention ---\n z_BTNM = self.spatial_pos_enc(x_BTNM)\n z_BTNM = self.spatial_norm(z_BTNM)\n z_BTNM = self.spatial_attention(z_BTNM)\n x_BTNM = x_BTNM + z_BTNM\n\n # --- Temporal attention ---\n x_BNTM = x_BTNM.swapaxes(1, 2)\n z_BNTM = self.temporal_pos_enc(x_BNTM)\n z_BNTM = self.temporal_norm(z_BNTM)\n z_BNTM = self.temporal_attention(z_BNTM)\n x_BNTM = x_BNTM + z_BNTM\n x_BTNM = x_BNTM.swapaxes(1, 2)\n\n # --- Feedforward ---\n z_BTNM = self.ffn_norm(x_BTNM)\n z_BTND = self.ffn_dense1(z_BTNM)\n z_BTND = jax.nn.gelu(z_BTND)\n z_BTNM = self.ffn_dense2(z_BTND)\n x_BTNM = x_BTNM + z_BTNM\n\n return x_BTNM\n\n\nclass STTransformer(nnx.Module):\n """"""\n Dimension keys:\n B: batch size\n T: number of frames\n N: number of patches per frame\n I: number of input features\n M: model dimension\n D: FFN dimension\n O: number of output features\n """"""\n def __init__(\n self,\n input_dim: int,\n model_dim: int,\n ffn_dim: int,\n out_dim: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n ):\n self.input_dim = input_dim\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.out_dim = out_dim\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.input_norm1 = nnx.LayerNorm(\n num_features=self.input_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_dense = nnx.Linear(\n in_features=self.input_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_norm2 = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n self.blocks = []\n for _ in range(self.num_blocks):\n self.blocks.append(\n STBlock(\n dim=self.model_dim,\n ffn_dim=self.ffn_dim,\n num_heads=self.num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n )\n\n self.output_dense = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.out_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n def __call__(self, x_BTNI: jax.Array) -> jax.Array:\n x_BTNI = self.input_norm1(x_BTNI)\n x_BTNM = self.input_dense(x_BTNI)\n x_BTNM = self.input_norm2(x_BTNM)\n\n for block in self.blocks:\n x_BTNM = block(x_BTNM)\n\n x_BTNO = self.output_dense(x_BTNM)\n return x_BTNO\n\nclass TransformerBlock(nnx.Module):\n def __init__(\n self,\n model_dim: int,\n ffn_dim: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n decode: bool,\n rngs: nnx.Rngs,\n ):\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.temporal_pos_enc = PositionalEncoding(self.model_dim)\n self.spatial_pos_enc = PositionalEncoding(self.model_dim)\n self.temporal_norm = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.spatial_norm = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_norm = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.temporal_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.model_dim,\n qkv_features=self.model_dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=True\n ),\n rngs=rngs,\n decode=decode,\n )\n self.spatial_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.model_dim,\n qkv_features=self.model_dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=True\n ),\n rngs=rngs,\n decode=decode,\n )\n self.ffn_dense1 = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.ffn_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_dense2 = nnx.Linear(\n in_features=self.ffn_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n @nnx.remat\n def __call__(self, x_BTNM: jax.Array) -> jax.Array:\n # FIXME (f.srambical): this is exactly the same as STBlock (except for the positional encoding)\n # --- Spatial attention ---\n _, T, N, _ = x_BTNM.shape\n z_FNM = einops.rearrange(x_BTNM, ""b t n m -> (b t) n m"")\n z_FNM = self.spatial_norm(z_FNM)\n z_FNM = self.spatial_attention(z_FNM)\n z_BTNM = einops.rearrange(z_FNM, ""(b t) n m -> b t n m"", t=T)\n x_BTNM = x_BTNM + z_BTNM\n # --- Temporal attention ---\n z_PTM = einops.rearrange(x_BTNM, ""b t n m -> (b n) t m"")\n z_PTM = self.temporal_norm(z_PTM)\n z_PTM = self.temporal_attention(z_PTM)\n z_BTNM = einops.rearrange(z_PTM, ""(b n) t m -> b t n m"", n=N)\n x_BTNM = x_BTNM + z_BTNM\n # --- Feedforward ---\n z_BTNM = self.ffn_norm(x_BTNM)\n z_BTND = self.ffn_dense1(z_BTNM)\n z_BTND = jax.nn.gelu(z_BTND)\n z_BTNM = self.ffn_dense2(z_BTND)\n x_BTNM = x_BTNM + z_BTNM\n\n return x_BTNM\n\nclass Transformer(nnx.Module):\n """"""\n Dimension keys:\n B: batch size\n T: number of frames\n N: number of patches per frame\n I: number of input features\n M: model dimension\n D: FFN dimension\n O: number of output features\n F: number of frames in batch\n P: number of patch positions in batch\n """"""\n def __init__(\n self,\n input_dim: int,\n model_dim: int,\n ffn_dim: int,\n out_dim: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n decode: bool,\n rngs: nnx.Rngs,\n ):\n self.input_dim = input_dim\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.out_dim = out_dim\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.pos_enc = PositionalEncoding(self.model_dim)\n self.input_norm1 = nnx.LayerNorm(\n num_features=self.input_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_dense = nnx.Linear(\n in_features=self.input_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_norm2 = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n self.blocks = []\n for _ in range(self.num_blocks):\n self.blocks.append(\n TransformerBlock(\n model_dim=self.model_dim,\n ffn_dim=self.ffn_dim,\n num_heads=self.num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n decode=decode,\n rngs=rngs,\n )\n )\n self.output_dense = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.out_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n def __call__(self, x_BTNI: jax.Array) -> jax.Array:\n x_BTNI = self.input_norm1(x_BTNI)\n x_BTNM = self.input_dense(x_BTNI)\n x_BTNM = self.input_norm2(x_BTNM)\n x_BTNM = self.pos_enc(x_BTNM)\n\n for block in self.blocks:\n x_BTNM = block(x_BTNM)\n\n x_BTNV = self.output_dense(x_BTNM)\n return x_BTNV\n\ndef normalize(x: jax.Array) -> jax.Array:\n return x / (jnp.linalg.norm(x, ord=2, axis=-1, keepdims=True) + 1e-8)\n\n\nclass VectorQuantizer(nnx.Module):\n """"""\n Dimension keys:\n D: B * T * N\n K: number of latents\n L: latent dimension\n """"""\n def __init__(\n self, latent_dim: int, num_latents: int, dropout: float, rngs: nnx.Rngs\n ):\n self.latent_dim = latent_dim\n self.num_latents = num_latents\n self.dropout = dropout\n\n self.codebook = nnx.Param(\n normalize(\n nnx.initializers.lecun_uniform()(\n rngs.params(), (self.num_latents, self.latent_dim)\n )\n )\n )\n self.drop = nnx.Dropout(self.dropout, rngs=rngs)\n\n def __call__(\n self, x_DL: jax.Array, training: bool\n ) -> Tuple[jax.Array, jax.Array, jax.Array, jax.Array]:\n # --- Compute distances ---\n x_DL = normalize(x_DL)\n normalized_codebook_KL = normalize(self.codebook.value)\n distance_DK = -jnp.matmul(x_DL, normalized_codebook_KL.T)\n if training:\n distance_DK = self.drop(distance_DK)\n\n # --- Get indices and embeddings ---\n indices_D = jnp.argmin(distance_DK, axis=-1)\n z_DL = self.codebook[indices_D]\n\n # --- Straight through estimator ---\n z_q_DL = x_DL + jax.lax.stop_gradient(z_DL - x_DL)\n return z_q_DL, z_DL, x_DL, indices_D\n\n def get_codes(self, indices_E: jax.Array) -> jax.Array:\n return self.codebook[indices_E]\n\n\ndef _create_flash_attention_fn(use_flash_attention: bool, is_causal: bool) -> Callable:\n """"""\n Create an attention function that uses flash attention if enabled.\n\n Flax MultiHeadAttention provides tensors with shape (batch..., length, num_heads, head_dim)\n jax.nn.dot_product_attention expects (batch, length, num_heads, head_dim).\n\n We need to reshape to ensure compatibility. cuDNN's flash attention additionally\n requires a sequence length that is a multiple of 4. We pad the sequence length to the nearest\n multiple of 4 and mask accordingly.\n """"""\n\n def attention_fn(query, key, value, bias=None, mask=None, **kwargs):\n implementation = ""cudnn"" if use_flash_attention else None\n\n def _rearrange(x):\n return einops.rearrange(x, ""... l h d -> (...) l h d"")\n\n def _pad(x):\n return jnp.pad(x, ((0, 0), (0, pad_size), (0, 0), (0, 0)))\n\n def _fuse_masks(mask: jax.Array, attention_mask: jax.Array) -> jax.Array:\n mask_bool = mask.astype(jnp.bool_)\n expanded_mask = jnp.pad(\n mask_bool, ((0, pad_size), (0, pad_size)), constant_values=False\n )\n return jnp.logical_and(attention_mask, expanded_mask)\n\n original_shape = query.shape\n original_seq_len = query.shape[-3]\n\n # Pad to nearest multiple of 4\n target_seq_len = ((original_seq_len + 3) // 4) * 4\n pad_size = target_seq_len - original_seq_len\n\n query_4d = _pad(_rearrange(query))\n key_4d = _pad(_rearrange(key))\n value_4d = _pad(_rearrange(value))\n\n attention_mask = jnp.ones((target_seq_len, target_seq_len), dtype=jnp.bool_)\n attention_mask = attention_mask.at[original_seq_len:, :].set(False)\n attention_mask = attention_mask.at[:, original_seq_len:].set(False)\n\n mask_4d = (\n _fuse_masks(mask, attention_mask) if mask is not None else attention_mask\n )\n mask_4d = mask_4d[jnp.newaxis, jnp.newaxis, :, :] # (1, 1, seq_len, seq_len)\n\n bias_4d = _pad(_rearrange(bias)) if bias is not None else None\n\n # NOTE: jax.nn.dot_product_attention does not support dropout\n output_4d = jax.nn.dot_product_attention(\n query=query_4d,\n key=key_4d,\n value=value_4d,\n bias=bias_4d,\n mask=mask_4d,\n implementation=implementation,\n is_causal=is_causal,\n )\n return output_4d[..., :original_seq_len, :, :].reshape(original_shape)\n\n return attention_fn\n",python,tab +2295,2936329,"utils/nn.py",4094,0,"",python,selection_command +2296,2937163,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +2297,2938379,"utils/nn.py",4094,9348," z_BTNF = self.ffn_dense1(z_BTNM)\n z_BTNF = jax.nn.gelu(z_BTNF)\n z_BTNM = self.ffn_dense2(z_BTNF)\n x_BTNM = x_BTNM + z_BTNM\n\n return x_BTNM\n\n\nclass STTransformer(nnx.Module):\n """"""\n Dimension keys:\n B: batch size\n T: number of frames\n N: number of patches per frame\n I: number of input features\n M: model dimension\n F: FFN dimension\n O: number of output features\n """"""\n def __init__(\n self,\n input_dim: int,\n model_dim: int,\n ffn_dim: int,\n out_dim: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n ):\n self.input_dim = input_dim\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.out_dim = out_dim\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.input_norm1 = nnx.LayerNorm(\n num_features=self.input_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_dense = nnx.Linear(\n in_features=self.input_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_norm2 = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n self.blocks = []\n for _ in range(self.num_blocks):\n self.blocks.append(\n STBlock(\n dim=self.model_dim,\n ffn_dim=self.ffn_dim,\n num_heads=self.num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n )\n\n self.output_dense = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.out_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n def __call__(self, x_BTNI: jax.Array) -> jax.Array:\n x_BTNI = self.input_norm1(x_BTNI)\n x_BTNM = self.input_dense(x_BTNI)\n x_BTNM = self.input_norm2(x_BTNM)\n\n for block in self.blocks:\n x_BTNM = block(x_BTNM)\n\n x_BTNO = self.output_dense(x_BTNM)\n return x_BTNO\n",python,content +2298,2945227,"TERMINAL",0,0,"2025-07-31 14:00:08.028662: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2299,2946306,"TERMINAL",0,0,"Traceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/api.py"", line 1175, in _get_axis_size\r\n return shape[axis]\r\nIndexError: tuple index out of range\r\n\r\nThe above exception was the direct cause of the following exception:\r\n\r\njax.errors.SimplifiedTraceback: For simplicity, JAX has removed its internal frames from the traceback of the following exception. Set JAX_TRACEBACK_FILTERING=off to include these.\r\n\r\nThe above exception was the direct cause of the following exception:\r\n\r\nTraceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 208, in \r\n recon_video = _autoreg_sample(rng, video_batch_BSHWC, action_batch_E)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/flax/nnx/transforms/compilation.py"", line 431, in __call__\r\n pure_args_out, pure_kwargs_out, pure_out = self.jitted_fn(\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/flax/nnx/transforms/compilation.py"", line 126, in __call__\r\n out = self.f(*args, **kwargs)\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 178, in _autoreg_sample\r\n generated_vid = _sampling_fn(genie, batch)\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 163, in _sampling_fn\r\n return model.sample_causal(\r\n File ""/fast/home/franz.srambical/jafar/genie.py"", line 406, in sample_causal\r\n final_carry, _ = jax.lax.scan(\r\n File ""/fast/home/franz.srambical/jafar/genie.py"", line 396, in generation_step_fn\r\n final_carry_causal, _ = jax.lax.scan(\r\n File ""/fast/home/franz.srambical/jafar/genie.py"", line 373, in causal_step_fn\r\n final_token_probs_B = gather_fn(\r\nValueError: vmap was requested to map its argument along axis 0, which implies that its rank should be at least 1, but is only 0 (its shape is ())\r\n",,terminal_output +2300,2947229,"TERMINAL",0,0,"srun: error: hai001: task 0: Exited with exit code 1\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2301,2952644,"genie.py",0,0,"",python,tab +2302,2952644,"genie.py",128,0,"",python,selection_command +2303,3055583,"genie.py",0,0,"Switched from branch 'main' to 'fix-reshape-typo-2'",python,git_branch_checkout +2304,3068378,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2305,3068946,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2306,3069031,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2307,3069590,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2308,3070422,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2309,3071508,"/fast/home/franz.srambical/jafar/genie.py",0,0,"from typing import Dict\n\nimport optax\nimport jax\nimport jax.numpy as jnp\nimport flax.nnx as nnx\nimport orbax.checkpoint as ocp\n\nfrom models.dynamics import DynamicsMaskGIT, DynamicsCausal\nfrom models.lam import LatentActionModel\nfrom models.tokenizer import TokenizerVQVAE\n\n\nclass Genie(nnx.Module):\n """"""Genie model""""""\n\n def __init__(\n self,\n in_dim: int,\n tokenizer_dim: int,\n tokenizer_ffn_dim: int,\n latent_patch_dim: int,\n num_patch_latents: int,\n patch_size: int,\n tokenizer_num_blocks: int,\n tokenizer_num_heads: int,\n lam_dim: int,\n lam_ffn_dim: int,\n latent_action_dim: int,\n num_latent_actions: int,\n lam_patch_size: int,\n lam_num_blocks: int,\n lam_num_heads: int,\n lam_co_train: bool,\n dyna_type: str,\n dyna_dim: int,\n dyna_ffn_dim: int,\n dyna_num_blocks: int,\n dyna_num_heads: int,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n dropout: float = 0.0,\n mask_limit: float = 0.0,\n ):\n # --- Tokenizer ---\n self.in_dim = in_dim\n self.tokenizer_dim = tokenizer_dim\n self.tokenizer_ffn_dim = tokenizer_ffn_dim\n self.latent_patch_dim = latent_patch_dim\n self.num_patch_latents = num_patch_latents\n self.patch_size = patch_size\n self.tokenizer_num_blocks = tokenizer_num_blocks\n self.tokenizer_num_heads = tokenizer_num_heads\n # --- LAM ---\n self.lam_dim = lam_dim\n self.lam_ffn_dim = lam_ffn_dim\n self.latent_action_dim = latent_action_dim\n self.num_latent_actions = num_latent_actions\n self.lam_patch_size = lam_patch_size\n self.lam_num_blocks = lam_num_blocks\n self.lam_num_heads = lam_num_heads\n self.lam_co_train = lam_co_train\n # --- Dynamics ---\n self.dyna_type = dyna_type\n self.dyna_dim = dyna_dim\n self.dyna_ffn_dim = dyna_ffn_dim\n self.dyna_num_blocks = dyna_num_blocks\n self.dyna_num_heads = dyna_num_heads\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n self.dropout = dropout\n self.mask_limit = mask_limit\n\n self.tokenizer = TokenizerVQVAE(\n in_dim=self.in_dim,\n model_dim=self.tokenizer_dim,\n ffn_dim=self.tokenizer_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_patch_latents,\n patch_size=self.patch_size,\n num_blocks=self.tokenizer_num_blocks,\n num_heads=self.tokenizer_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n self.lam = LatentActionModel(\n in_dim=self.in_dim,\n model_dim=self.lam_dim,\n ffn_dim=self.lam_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_latent_actions,\n patch_size=self.lam_patch_size,\n num_blocks=self.lam_num_blocks,\n num_heads=self.lam_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n if self.dyna_type == ""maskgit"":\n self.dynamics = DynamicsMaskGIT(\n model_dim=self.dyna_dim,\n ffn_dim=self.dyna_ffn_dim,\n num_latents=self.num_patch_latents,\n latent_action_dim=self.latent_action_dim,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n mask_limit=self.mask_limit,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n elif self.dyna_type == ""causal"":\n self.dynamics = DynamicsCausal(\n model_dim=self.dyna_dim,\n ffn_dim=self.dyna_ffn_dim,\n num_latents=self.num_patch_latents,\n latent_action_dim=self.latent_action_dim,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n decode=False,\n rngs=rngs,\n )\n else:\n raise ValueError(f""Invalid dynamics type: {self.dyna_type}"")\n\n def __call__(\n self, batch: Dict[str, jax.Array], training: bool = True\n ) -> Dict[str, jax.Array]:\n videos_BTHWC = batch[""videos""]\n tokenizer_outputs = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_indices_BTN = tokenizer_outputs[""indices""]\n lam_outputs = self.lam.vq_encode(videos_BTHWC, training=False)\n z_q_BTm11L = lam_outputs[""z_q""]\n action_indices_E = lam_outputs[""indices""]\n latent_actions_BTm11L = jax.lax.cond(\n self.lam_co_train,\n lambda: z_q_BTm11L,\n lambda: jax.lax.stop_gradient(z_q_BTm11L),\n )\n outputs = dict(\n video_tokens=jax.lax.stop_gradient(token_indices_BTN),\n latent_actions=latent_actions_BTm11L,\n )\n outputs[""mask_rng""] = batch[""mask_rng""]\n dyna_logits_BTNV, dyna_mask = self.dynamics(outputs, training)\n outputs[""token_logits""] = dyna_logits_BTNV\n if dyna_mask is not None:\n outputs[""mask""] = dyna_mask\n mle_indices_BTN = jnp.argmax(outputs[""token_logits""], axis=-1)\n H, W = batch[""videos""].shape[2:4]\n outputs[""recon""] = self.tokenizer.decode(mle_indices_BTN, (H, W))\n outputs[""lam_indices""] = action_indices_E\n return outputs\n\n # FIXME (f.srambical): sampling should be moved to the dynamics classes\n def sample(\n self,\n batch: Dict[str, jax.Array],\n seq_len: int,\n steps: int = 25,\n temperature: float = 1,\n sample_argmax: bool = False,\n ) -> jax.Array:\n """"""\n Autoregressively samples up to `seq_len` future frames, following Figure 8 of the paper.\n\n - Input frames are tokenized once.\n - Future frames are generated autoregressively in token space.\n - All frames are detokenized in a single pass.\n\n Note:\n - For interactive or step-wise sampling, detokenization should occur after each action.\n - To maintain consistent tensor shapes across timesteps, all current and future frames are decoded at every step.\n - Temporal causal structure is preserved by\n a) reapplying the mask before each decoding step.\n b) a temporal causal mask is applied within each ST-transformer block.\n\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n M: model dimension\n S: sequence length\n H: height\n W: width\n E: B * (S - 1)\n """"""\n # --- Encode videos and actions ---\n videos_BTHWC = batch[""videos""]\n latent_actions_E = batch[""latent_actions""]\n tokenizer_out = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_idxs_BTN = tokenizer_out[""indices""]\n B, T, N = token_idxs_BTN.shape\n pad_shape = (B, seq_len - T, N)\n pad = jnp.zeros(pad_shape, dtype=token_idxs_BTN.dtype)\n token_idxs_BSN = jnp.concatenate([token_idxs_BTN, pad], axis=1)\n action_tokens_EL = self.lam.vq.get_codes(latent_actions_E)\n\n def maskgit_step_fn(\n carry: tuple[jax.Array, jax.Array, jax.Array, jax.Array], step: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array, jax.Array, jax.Array], None]:\n rng, token_idxs_BSN, mask_BSN, action_tokens_EL = carry\n S, N = token_idxs_BSN.shape[1:]\n L = action_tokens_EL.shape[-1]\n\n # --- Construct + encode video ---\n vid_embed_BSNM = self.dynamics.patch_embed(token_idxs_BSN)\n mask_token_111M = self.dynamics.mask_token.value\n mask_expanded_BSN1 = mask_BSN[..., None]\n vid_embed_BSNM = jnp.where(mask_expanded_BSN1, mask_token_111M, vid_embed_BSNM)\n\n # --- Predict transition ---\n action_tokens_BSm1L = jnp.reshape(action_tokens_EL, (B, S - 1, L))\n act_embed_BSm1M = self.dynamics.action_up(action_tokens_BSm1L)\n act_embed_BSM = jnp.pad(act_embed_BSm1M, ((0, 0), (1, 0), (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.shape[-1]))\n vid_embed_BSNM += act_embed_BS1M\n unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (steps * 2))\n step_temp = temperature * (1.0 - unmasked_ratio)\n final_logits_BSNV = self.dynamics.transformer(vid_embed_BSNM) / step_temp\n\n # --- Sample new tokens for final frame ---\n if sample_argmax:\n sampled_token_idxs_BSN = jnp.argmax(final_logits_BSNV, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs_BSN = jax.random.categorical(_rng, final_logits_BSNV)\n gather_fn = jax.vmap(jax.vmap(jax.vmap(lambda x, y: x[y])))\n final_token_probs_BSN = gather_fn(\n jax.nn.softmax(final_logits_BSNV), sampled_token_idxs_BSN\n )\n final_token_probs_BSN += ~mask_BSN\n # Update masked tokens only\n token_idxs_BSN = jnp.where(mask_BSN, sampled_token_idxs_BSN, token_idxs_BSN)\n\n # --- Update mask ---\n num_unmasked_tokens = jnp.round(N * (1.0 - unmasked_ratio)).astype(int)\n idx_mask_N = jnp.arange(final_token_probs_BSN.shape[-1]) > num_unmasked_tokens\n sorted_idxs_BSN = jnp.argsort(final_token_probs_BSN, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask_N))\n new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)\n\n new_carry = (rng, token_idxs_BSN, new_mask_BSN, action_tokens_EL)\n return new_carry, None\n\n def generation_step_fn(\n carry: tuple[jax.Array, jax.Array], step_t: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array], None]:\n rng, current_token_idxs_BSN = carry\n rng, step_rng = jax.random.split(rng)\n\n # Mask current and future frames (i.e., t >= step_t)\n mask_S = jnp.arange(seq_len) >= step_t\n mask_BSN = jnp.broadcast_to(mask_S[None, :, None], (B, seq_len, N)).astype(\n bool\n )\n masked_token_idxs_BSN = current_token_idxs_BSN * ~mask_BSN\n\n # --- Initialize and run MaskGIT loop ---\n init_carry_maskgit = (\n step_rng,\n masked_token_idxs_BSN,\n mask_BSN,\n action_tokens_EL,\n )\n final_carry_maskgit, _ = jax.lax.scan(\n maskgit_step_fn, init_carry_maskgit, jnp.arange(steps)\n )\n updated_token_idxs = final_carry_maskgit[1]\n new_carry = (rng, updated_token_idxs)\n return new_carry, None\n\n # --- Run the autoregressive generation using jax.lax.scan ---\n initial_carry = (batch[""rng""], token_idxs_BSN)\n timesteps_to_scan = jnp.arange(T, seq_len)\n final_carry, _ = jax.lax.scan(\n generation_step_fn, initial_carry, timesteps_to_scan\n )\n final_token_idxs = final_carry[1]\n\n # --- Decode all tokens at once at the end ---\n H, W = batch[""videos""].shape[2:4]\n final_frames = self.tokenizer.decode(\n final_token_idxs,\n video_hw=(H, W),\n )\n return final_frames\n\n def sample_causal(\n self,\n batch: Dict[str, jax.Array],\n seq_len: int,\n temperature: float = 1,\n sample_argmax: bool = False,\n ) -> jax.Array:\n """"""\n Autoregressively samples up to `seq_len` future frames, following Figure 8 of the paper.\n\n - Input frames are tokenized once.\n - Future frames are generated autoregressively in token space.\n - All frames are detokenized in a single pass.\n\n Note:\n - For interactive or step-wise sampling, detokenization should occur after each action.\n - To maintain consistent tensor shapes across timesteps, all current and future frames are decoded at every step.\n - Temporal causal structure is preserved by\n a) reapplying the mask before each decoding step.\n b) a temporal causal mask is applied within each ST-transformer block.\n\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n M: model dimension\n S: sequence length\n H: height\n W: width\n E: B * (S - 1)\n """"""\n # --- Encode videos and actions ---\n videos_BTHWC = batch[""videos""]\n latent_actions_E = batch[""latent_actions""]\n tokenizer_out = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_idxs_BTN = tokenizer_out[""indices""]\n B, T, N = token_idxs_BTN.shape\n pad_shape = (B, seq_len - T, N)\n pad = jnp.zeros(pad_shape, dtype=token_idxs_BTN.dtype)\n token_idxs_BSN = jnp.concatenate([token_idxs_BTN, pad], axis=1)\n action_tokens_EL = self.lam.vq.get_codes(latent_actions_E)\n\n def causal_step_fn(\n carry: tuple[jax.Array, jax.Array, jax.Array, jax.Array], step_n: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array, jax.Array, jax.Array], None]:\n rng, token_idxs_BSN, action_tokens_EL, step_t = carry\n S, N = token_idxs_BSN.shape[1:]\n L = action_tokens_EL.shape[-1]\n\n # --- Construct + encode video ---\n vid_embed_BSNM = self.dynamics.patch_embed(token_idxs_BSN)\n\n # --- Predict transition ---\n action_tokens_BSm1L = jnp.reshape(action_tokens_EL, (B, S - 1, L))\n act_embed_BSm1M = self.dynamics.action_up(action_tokens_BSm1L)\n act_embed_BSM = jnp.pad(act_embed_BSm1M, ((0, 0), (1, 0), (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.shape[-1]))\n vid_embed_BSNp1M = jnp.concatenate([act_embed_BS1M, vid_embed_BSNM], axis=2)\n final_logits_BTNp1V = self.dynamics.transformer(vid_embed_BSNp1M) / temperature\n final_logits_BV = final_logits_BTNp1V[:, step_t, step_n, :]\n\n # --- Sample new tokens for final frame ---\n if sample_argmax:\n sampled_token_idxs_B = jnp.argmax(final_logits_BV, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs_B = jax.random.categorical(_rng, final_logits_BV)\n gather_fn = jax.vmap(jax.vmap(jax.vmap(lambda x, y: x[y])))\n final_token_probs_B = gather_fn(\n jax.nn.softmax(final_logits_BV), sampled_token_idxs_B\n )\n # Update next tokens only\n token_idxs_BSN = token_idxs_BSN.at[:, step_t, step_n].set(sampled_token_idxs_B)\n step_t += 1\n\n new_carry = (rng, token_idxs_BSN, action_tokens_EL, step_t)\n return new_carry, None\n\n def generation_step_fn(\n carry: tuple[jax.Array, jax.Array], step_t: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array], None]:\n rng, current_token_idxs_BSN = carry\n rng, step_rng = jax.random.split(rng)\n\n # --- Initialize and run causal loop ---\n init_carry_causal = (\n step_rng,\n current_token_idxs_BSN,\n action_tokens_EL,\n step_t,\n )\n final_carry_causal, _ = jax.lax.scan(\n causal_step_fn, init_carry_causal, jnp.arange(N)\n )\n updated_token_idxs = final_carry_causal[1]\n new_carry = (rng, updated_token_idxs)\n return new_carry, None\n\n # --- Run the autoregressive generation using jax.lax.scan ---\n initial_carry = (batch[""rng""], token_idxs_BSN)\n timesteps_to_scan = jnp.arange(T, seq_len)\n final_carry, _ = jax.lax.scan(\n generation_step_fn, initial_carry, timesteps_to_scan\n )\n final_token_idxs = final_carry[1]\n\n # --- Decode all tokens at once at the end ---\n H, W = batch[""videos""].shape[2:4]\n final_frames = self.tokenizer.decode(\n final_token_idxs,\n video_hw=(H, W),\n )\n return final_frames\n\n def vq_encode(self, batch: Dict[str, jax.Array], training: bool) -> jax.Array:\n # --- Preprocess videos ---\n video_BTHWC = batch[""videos""]\n lam_output = self.lam.vq_encode(video_BTHWC, training=training)\n lam_indices_E = lam_output[""indices""]\n return lam_indices_E\n\n# FIXME (f.srambical): add conversion script for old checkpoints\ndef restore_genie_components(\n optimizer: nnx.Optimizer,\n sharding: jax.sharding.NamedSharding,\n rng: jax.Array,\n args,\n) -> nnx.Optimizer:\n """"""Restore pre-trained Genie components""""""\n rngs = nnx.Rngs(rng)\n\n tx = optimizer.tx\n model = optimizer.model\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n tokenizer_checkpoint_manager = ocp.CheckpointManager(\n directory=args.tokenizer_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.tokenizer_dim,\n ffn_dim=args.tokenizer_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n num_blocks=args.tokenizer_num_blocks,\n num_heads=args.tokenizer_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n dummy_tokenizer_optimizer = nnx.Optimizer(dummy_tokenizer, tx)\n dummy_tokenizer_optimizer_state = nnx.state(dummy_tokenizer_optimizer)\n abstract_sharded_tokenizer_optimizer_state = _create_abstract_sharded_pytree(\n dummy_tokenizer_optimizer_state, sharding\n )\n restored_tokenizer = tokenizer_checkpoint_manager.restore(\n step=tokenizer_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore( # type: ignore\n abstract_sharded_tokenizer_optimizer_state # type: ignore\n ),\n ),\n )[""model_state""]\n nnx.update(dummy_tokenizer_optimizer.model, restored_tokenizer.model)\n model.tokenizer = dummy_tokenizer_optimizer.model\n tokenizer_checkpoint_manager.close()\n\n if args.lam_checkpoint:\n lam_checkpoint_manager = ocp.CheckpointManager(\n directory=args.lam_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_lam = LatentActionModel(\n in_dim=args.image_channels,\n model_dim=args.lam_dim,\n ffn_dim=args.lam_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_latent_actions,\n patch_size=args.lam_patch_size,\n num_blocks=args.lam_num_blocks,\n num_heads=args.lam_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n dummy_lam_optimizer = nnx.Optimizer(dummy_lam, tx)\n dummy_lam_optimizer_state = nnx.state(dummy_lam_optimizer)\n abstract_sharded_lam_optimizer_state = _create_abstract_sharded_pytree(\n dummy_lam_optimizer_state, sharding\n )\n restored_lam_optimizer = lam_checkpoint_manager.restore(\n step=lam_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore( # type: ignore\n abstract_sharded_lam_optimizer_state # type: ignore\n ),\n ),\n )[""model_state""]\n nnx.update(dummy_lam_optimizer.model, restored_lam_optimizer.model)\n model.lam = dummy_lam_optimizer.model\n # Remove the LAM decoder to save memory and avoid unnecessary computation.\n del model.lam.decoder\n lam_checkpoint_manager.close()\n \n # Reinitialize the optimizer states\n optimizer = nnx.Optimizer(model, tx)\n return optimizer\n\n\ndef _create_abstract_sharded_pytree(\n pytree_template: nnx.GraphState, sharding_spec: jax.sharding.NamedSharding\n) -> jax.Array:\n """"""Replaces arrays in a pytree with ShapeDtypeStructs having the given sharding.""""""\n\n def map_fn(leaf_template):\n if hasattr(leaf_template, ""shape"") and hasattr(leaf_template, ""dtype""):\n return jax.ShapeDtypeStruct(\n leaf_template.shape, leaf_template.dtype, sharding=sharding_spec\n )\n return leaf_template\n\n return jax.tree_util.tree_map(map_fn, pytree_template)\n",python,tab +2310,3112302,"/fast/home/franz.srambical/jafar/genie.py",15056,0,"",python,selection_mouse +2311,3118967,"/fast/home/franz.srambical/jafar/sample.py",0,0,"from dataclasses import dataclass\nimport time\nimport os\nimport optax\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport flax.linen as nn\nimport numpy as np\nimport orbax.checkpoint as ocp\nfrom PIL import Image, ImageDraw\nimport tyro\nfrom flax import nnx\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n tokenizer_ffn_dim: int = 2048\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 4\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n lam_ffn_dim: int = 2048\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 4\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_type: str = ""maskgit""\n dyna_dim: int = 512\n dyna_ffn_dim: int = 2048\n dyna_num_blocks: int = 6\n dyna_num_heads: int = 8\n param_dtype = jnp.float32\n dtype = jnp.bfloat16\n use_flash_attention: bool = True\n\n\nargs = tyro.cli(Args)\n\nif __name__ == ""__main__"":\n """"""\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n S: sequence length\n H: height\n W: width\n D: B * T * N\n E: B * (T - 1)\n """"""\n jax.distributed.initialize()\n\n rng = jax.random.key(args.seed)\n\n # --- Load Genie checkpoint ---\n rngs = nnx.Rngs(rng)\n genie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n tokenizer_ffn_dim=args.tokenizer_ffn_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n lam_ffn_dim=args.lam_ffn_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n lam_co_train=False,\n # Dynamics\n dyna_type=args.dyna_type,\n dyna_dim=args.dyna_dim,\n dyna_ffn_dim=args.dyna_ffn_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeSave, ocp.handlers.PyTreeCheckpointHandler\n )\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n checkpoint_manager = ocp.CheckpointManager(\n args.checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n\n dummy_tx = optax.adamw(\n learning_rate=optax.linear_schedule(0.0001, 0.0001, 10000),\n b1=0.9,\n b2=0.9,\n weight_decay=1e-4,\n mu_dtype=args.dtype,\n )\n dummy_optimizer = nnx.Optimizer(genie, dummy_tx)\n\n abstract_optimizer = nnx.eval_shape(lambda: dummy_optimizer)\n abstract_optimizer_state = nnx.state(abstract_optimizer)\n restored = checkpoint_manager.restore(\n checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore(abstract_optimizer_state), # type: ignore\n ),\n )\n restored_optimizer_state = restored[""model_state""]\n nnx.update(dummy_optimizer, restored_optimizer_state)\n\n # --- Define sampling function ---\n def _sampling_fn(model: Genie, batch: dict) -> jax.Array:\n """"""Runs Genie.sample with pre-defined generation hyper-parameters.""""""\n if args.dyna_type == ""maskgit"":\n return model.sample(\n batch,\n args.seq_len,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n )\n elif args.dyna_type == ""causal"":\n return model.sample_causal(\n batch,\n args.seq_len,\n args.temperature,\n args.sample_argmax,\n )\n else:\n raise ValueError(f""Invalid dynamics type: {args.dyna_type}"")\n\n # --- Define autoregressive sampling loop ---\n @nnx.jit\n def _autoreg_sample(rng, video_batch_BSHWC, action_batch_E):\n input_video_BTHWC = video_batch_BSHWC[:, : args.start_frame + 1]\n rng, _rng = jax.random.split(rng)\n batch = dict(videos=input_video_BTHWC, latent_actions=action_batch_E, rng=_rng)\n generated_vid = _sampling_fn(genie, batch)\n return generated_vid\n\n # --- Get video + latent actions ---\n array_record_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".array_record"")\n ]\n dataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n args.batch_size,\n args.image_height,\n args.image_width,\n args.image_channels,\n # We don't use workers in order to avoid grain shutdown issues (https://github.com/google/grain/issues/398)\n num_workers=0,\n prefetch_buffer_size=1,\n seed=args.seed,\n )\n dataloader = iter(dataloader)\n video_batch_BSHWC = next(dataloader)\n gt_video = jnp.asarray(video_batch_BSHWC, dtype=jnp.float32) / 255.0\n video_batch_BSHWC = gt_video.astype(args.dtype)\n # Get latent actions for all videos in the batch\n batch = dict(videos=video_batch_BSHWC)\n action_batch_E = genie.vq_encode(batch, training=False)\n\n # --- Sample + evaluate video ---\n recon_video = _autoreg_sample(rng, video_batch_BSHWC, action_batch_E)\n recon_video = recon_video.astype(jnp.float32)\n gt = gt_video[:, : recon_video.shape[1]].clip(0, 1).reshape(-1, *gt_video.shape[2:])\n recon = recon_video.clip(0, 1).reshape(-1, *recon_video.shape[2:])\n ssim = jnp.asarray(\n pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :])\n ).mean()\n print(f""SSIM: {ssim}"")\n\n # --- Construct video ---\n true_videos = (gt_video * 255).astype(np.uint8)\n pred_videos = (recon_video * 255).astype(np.uint8)\n video_comparison = np.zeros((2, *recon_video.shape), dtype=np.uint8)\n video_comparison[0] = true_videos[:, : args.seq_len]\n video_comparison[1] = pred_videos\n frames = einops.rearrange(video_comparison, ""n b t h w c -> t (b h) (n w) c"")\n\n # --- Save video ---\n imgs = [Image.fromarray(img) for img in frames]\n # Write actions on each frame, on each row (i.e., for each video in the batch, on the GT row)\n for t, img in enumerate(imgs[1:]):\n d = ImageDraw.Draw(img)\n for row in range(action_batch_E.shape[0]):\n action = action_batch_E[row, t, 0]\n y_offset = row * video_batch_BSHWC.shape[2] + 2\n d.text((2, y_offset), f""{action}"", fill=255)\n imgs[0].save(\n f""generation_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n )\n",python,tab +2312,3118967,"/fast/home/franz.srambical/jafar/sample.py",5334,0,"",python,selection_command +2313,3120535,"/fast/home/franz.srambical/jafar/sample.py",4738,0,"",python,selection_command +2314,3121612,"/fast/home/franz.srambical/jafar/genie.py",0,0,"",python,tab +2315,3121612,"/fast/home/franz.srambical/jafar/genie.py",16760,0,"",python,selection_command +2316,3122690,"/fast/home/franz.srambical/jafar/genie.py",16313,0,"",python,selection_command +2317,3123985,"/fast/home/franz.srambical/jafar/genie.py",15444,0,"",python,selection_command +2318,3416655,"/fast/home/franz.srambical/jafar/genie.py",15403,0,"",python,selection_mouse +2319,3417151,"/fast/home/franz.srambical/jafar/genie.py",15409,0,"",python,selection_mouse +2320,3417655,"/fast/home/franz.srambical/jafar/genie.py",15418,0,"",python,selection_mouse +2321,3418577,"/fast/home/franz.srambical/jafar/genie.py",15438,0,"",python,selection_mouse +2322,3420030,"/fast/home/franz.srambical/jafar/genie.py",15385,0,"",python,selection_mouse +2323,3428983,"/fast/home/franz.srambical/jafar/genie.py",15394,0,"",python,selection_command +2324,3429147,"/fast/home/franz.srambical/jafar/genie.py",15396,0,"",python,selection_command +2325,3429374,"/fast/home/franz.srambical/jafar/genie.py",15399,0,"",python,selection_command +2326,3429464,"/fast/home/franz.srambical/jafar/genie.py",15400,0,"",python,selection_command +2327,3429630,"/fast/home/franz.srambical/jafar/genie.py",15404,0,"",python,selection_command +2328,3430077,"/fast/home/franz.srambical/jafar/genie.py",15404,1,"(",python,selection_command +2329,3430216,"/fast/home/franz.srambical/jafar/genie.py",15404,4,"(jax",python,selection_command +2330,3430483,"/fast/home/franz.srambical/jafar/genie.py",15404,5,"(jax.",python,selection_command +2331,3430646,"/fast/home/franz.srambical/jafar/genie.py",15404,9,"(jax.vmap",python,selection_command +2332,3430774,"/fast/home/franz.srambical/jafar/genie.py",15404,10,"(jax.vmap(",python,selection_command +2333,3431015,"/fast/home/franz.srambical/jafar/genie.py",15404,13,"(jax.vmap(jax",python,selection_command +2334,3431186,"/fast/home/franz.srambical/jafar/genie.py",15404,14,"(jax.vmap(jax.",python,selection_command +2335,3431499,"/fast/home/franz.srambical/jafar/genie.py",15404,18,"(jax.vmap(jax.vmap",python,selection_command +2336,3432023,"/fast/home/franz.srambical/jafar/genie.py",15404,18,"",python,content +2337,3433882,"/fast/home/franz.srambical/jafar/genie.py",15425,0,"",python,selection_command +2338,3434406,"/fast/home/franz.srambical/jafar/genie.py",15424,1,"",python,content +2339,3434619,"/fast/home/franz.srambical/jafar/genie.py",15423,1,"",python,content +2340,3434836,"/fast/home/franz.srambical/jafar/genie.py",15422,0,"",python,selection_command +2341,3436883,"/fast/home/franz.srambical/jafar/genie.py",15467,0,"",python,selection_command +2342,3437558,"/fast/home/franz.srambical/jafar/genie.py",15458,0,"",python,selection_command +2343,3437706,"/fast/home/franz.srambical/jafar/genie.py",15456,0,"",python,selection_command +2344,3437860,"/fast/home/franz.srambical/jafar/genie.py",15436,0,"",python,selection_command +2345,3437994,"/fast/home/franz.srambical/jafar/genie.py",15421,0,"",python,selection_command +2346,3438371,"/fast/home/franz.srambical/jafar/genie.py",15436,0,"",python,selection_command +2347,3449853,"/fast/home/franz.srambical/jafar/genie.py",9849,0,"",python,selection_mouse +2348,3455004,"/fast/home/franz.srambical/jafar/genie.py",10141,0,"",python,selection_mouse +2349,3461100,"/fast/home/franz.srambical/jafar/genie.py",9857,0,"",python,selection_mouse +2350,3497674,"/fast/home/franz.srambical/jafar/genie.py",10237,0,"",python,selection_mouse +2351,3500925,"/fast/home/franz.srambical/jafar/genie.py",10424,0,"",python,selection_mouse +2352,3503931,"/fast/home/franz.srambical/jafar/genie.py",10389,68," new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)",python,selection_command +2353,3504396,"/fast/home/franz.srambical/jafar/genie.py",10305,152," mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask_N))\n new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)",python,selection_command +2354,3504447,"/fast/home/franz.srambical/jafar/genie.py",10214,243," sorted_idxs_BSN = jnp.argsort(final_token_probs_BSN, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask_N))\n new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)",python,selection_command +2355,3504610,"/fast/home/franz.srambical/jafar/genie.py",10123,334," idx_mask_N = jnp.arange(final_token_probs_BSN.shape[-1]) > num_unmasked_tokens\n sorted_idxs_BSN = jnp.argsort(final_token_probs_BSN, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask_N))\n new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)",python,selection_command +2356,3504749,"/fast/home/franz.srambical/jafar/genie.py",10039,418," num_unmasked_tokens = jnp.round(N * (1.0 - unmasked_ratio)).astype(int)\n idx_mask_N = jnp.arange(final_token_probs_BSN.shape[-1]) > num_unmasked_tokens\n sorted_idxs_BSN = jnp.argsort(final_token_probs_BSN, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask_N))\n new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)",python,selection_command +2357,3505846,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2358,3550936,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2359,3551989,"/fast/home/franz.srambical/jafar/genie.py",10458,0,"",python,selection_mouse +2360,3611246,"/fast/home/franz.srambical/jafar/genie.py",9096,0,"",python,selection_mouse +2361,3666555,"/fast/home/franz.srambical/jafar/genie.py",10679,0,"",python,selection_command +2362,3666935,"/fast/home/franz.srambical/jafar/genie.py",11931,0,"",python,selection_command +2363,3668448,"/fast/home/franz.srambical/jafar/genie.py",13064,0,"",python,selection_command +2364,3668529,"/fast/home/franz.srambical/jafar/genie.py",14330,0,"",python,selection_command +2365,3669981,"/fast/home/franz.srambical/jafar/genie.py",14815,0,"",python,selection_keyboard +2366,3671028,"/fast/home/franz.srambical/jafar/genie.py",14904,0,"",python,selection_command +2367,3671283,"/fast/home/franz.srambical/jafar/genie.py",14996,0,"",python,selection_command +2368,3671317,"/fast/home/franz.srambical/jafar/genie.py",15056,0,"",python,selection_command +2369,3671347,"/fast/home/franz.srambical/jafar/genie.py",15069,0,"",python,selection_command +2370,3671379,"/fast/home/franz.srambical/jafar/genie.py",15125,0,"",python,selection_command +2371,3671511,"/fast/home/franz.srambical/jafar/genie.py",15155,0,"",python,selection_command +2372,3671687,"/fast/home/franz.srambical/jafar/genie.py",15231,0,"",python,selection_command +2373,3671854,"/fast/home/franz.srambical/jafar/genie.py",15249,0,"",python,selection_command +2374,3671997,"/fast/home/franz.srambical/jafar/genie.py",15299,0,"",python,selection_command +2375,3672145,"/fast/home/franz.srambical/jafar/genie.py",15384,0,"",python,selection_command +2376,3672282,"/fast/home/franz.srambical/jafar/genie.py",15436,0,"",python,selection_command +2377,3672870,"/fast/home/franz.srambical/jafar/genie.py",15424,44," final_token_probs_B = gather_fn(",python,selection_command +2378,3673216,"/fast/home/franz.srambical/jafar/genie.py",15424,114," final_token_probs_B = gather_fn(\n jax.nn.softmax(final_logits_BV), sampled_token_idxs_B",python,selection_command +2379,3673329,"/fast/home/franz.srambical/jafar/genie.py",15424,128," final_token_probs_B = gather_fn(\n jax.nn.softmax(final_logits_BV), sampled_token_idxs_B\n )",python,selection_command +2380,3673561,"/fast/home/franz.srambical/jafar/genie.py",15424,129,"",python,content +2381,3673572,"/fast/home/franz.srambical/jafar/genie.py",15436,0,"",python,selection_command +2382,3674515,"/fast/home/franz.srambical/jafar/genie.py",15384,0,"",python,selection_command +2383,3674850,"/fast/home/franz.srambical/jafar/genie.py",15372,52,"",python,content +2384,3674861,"/fast/home/franz.srambical/jafar/genie.py",15384,0,"",python,selection_command +2385,3676463,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2386,3676663,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +2387,3687988,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +2388,3696076,"TERMINAL",0,0,"2025-07-31 14:12:38.815769: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2389,3699915,"TERMINAL",0,0,"2025-07-31 14:12:42.713829: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:12:42.714366: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:12:42.714389: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2390,3703525,"TERMINAL",0,0,"SSIM: 0.009795557707548141\r\n",,terminal_output +2391,3703651,"TERMINAL",0,0,"Traceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 231, in \r\n action = action_batch_E[row, t, 0]\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/array.py"", line 382, in __getitem__\r\n return indexing.rewriting_take(self, idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 653, in rewriting_take\r\n return internal_gather(arr, dynamic_idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 662, in _gather\r\n indexer = index_to_gather(np.shape(arr), idx) # shared with _scatter_update\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 799, in index_to_gather\r\n idx = _canonicalize_tuple_index(len(x_shape), idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 1118, in _canonicalize_tuple_index\r\n raise IndexError(\r\nIndexError: Too many indices: 1-dimensional array indexed with 3 regular indices.\r\n",,terminal_output +2392,3704683,"TERMINAL",0,0,"srun: error: hai001: task 0: Exited with exit code 1\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2393,3712126,"/fast/home/franz.srambical/jafar/sample.py",0,0,"",python,tab +2394,3712127,"/fast/home/franz.srambical/jafar/sample.py",7512,0,"",python,selection_command +2395,3732351,"/fast/home/franz.srambical/jafar/sample.py",7549,0,"",python,selection_mouse +2396,3733134,"/fast/home/franz.srambical/jafar/sample.py",7558,0,"",python,selection_mouse +2397,3733135,"/fast/home/franz.srambical/jafar/sample.py",7557,0,"",python,selection_command +2398,3734841,"/fast/home/franz.srambical/jafar/sample.py",7537,0,"",python,selection_mouse +2399,3761487,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2400,3762535,"TERMINAL",0,0,"[franz.srambical@hai001.haicore.berlin:~/jafar] $ bash experiments/sample.sh ",,terminal_output +2401,3762924,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +2402,3774095,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +2403,3782114,"TERMINAL",0,0,"2025-07-31 14:14:04.913410: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2404,3785918,"TERMINAL",0,0,"2025-07-31 14:14:08.715746: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:14:08.716266: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:14:08.716288: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2405,3789524,"TERMINAL",0,0,"SSIM: 0.009795557707548141\r\n",,terminal_output +2406,3789643,"TERMINAL",0,0,"Traceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 231, in \r\n action = action_batch_E[row, t, 0]\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/array.py"", line 382, in __getitem__\r\n return indexing.rewriting_take(self, idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 653, in rewriting_take\r\n return internal_gather(arr, dynamic_idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 662, in _gather\r\n indexer = index_to_gather(np.shape(arr), idx) # shared with _scatter_update\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 799, in index_to_gather\r\n idx = _canonicalize_tuple_index(len(x_shape), idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 1118, in _canonicalize_tuple_index\r\n raise IndexError(\r\nIndexError: Too many indices: 1-dimensional array indexed with 3 regular indices.\r\n",,terminal_output +2407,3790725,"TERMINAL",0,0,"srun: error: hai001: task 0: Exited with exit code 1\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2408,3793431,"TERMINAL",0,0,"d",,terminal_output +2409,3794057,"TERMINAL",0,0,"",,terminal_output +2410,3794198,"TERMINAL",0,0,"",,terminal_output +2411,3820257,"/fast/home/franz.srambical/jafar/sample.py",6080,0,"",python,selection_command +2412,3820381,"/fast/home/franz.srambical/jafar/sample.py",5002,0,"",python,selection_command +2413,3820573,"/fast/home/franz.srambical/jafar/sample.py",3876,0,"",python,selection_command +2414,3820977,"/fast/home/franz.srambical/jafar/sample.py",2935,0,"",python,selection_command +2415,3821121,"/fast/home/franz.srambical/jafar/sample.py",1833,0,"",python,selection_command +2416,3821260,"/fast/home/franz.srambical/jafar/sample.py",1149,0,"",python,selection_command +2417,3821403,"/fast/home/franz.srambical/jafar/sample.py",351,0,"",python,selection_command +2418,3822348,"/fast/home/franz.srambical/jafar/sample.py",1149,0,"",python,selection_command +2419,3827046,"experiments/sample.sh",0,0,"source .venv/bin/activate\n\ndata_dir=""$PWD/data_arrayrecord/dummy""\nckpt_dir=""$PWD/checkpoints/causal_dynamics_openai_grain_tok_restore""\n\nexport XLA_FLAGS='--xla_gpu_autotune_level=0'\nexport PYTHONUNBUFFERED=1\nsrun python sample.py \\n --dyna_type ""causal"" \\n --batch_size 1 \\n --seq_len 2 \\n --start_frame 1 \\n --checkpoint $ckpt_dir \\n --data_dir $data_dir",shellscript,tab +2420,3827730,"experiments/sample.sh",135,0,"",shellscript,selection_command +2421,3827772,"experiments/sample.sh",136,0,"",shellscript,selection_command +2422,3828028,"experiments/sample.sh",182,0,"",shellscript,selection_command +2423,3828060,"experiments/sample.sh",208,0,"",shellscript,selection_command +2424,3828088,"experiments/sample.sh",232,0,"",shellscript,selection_command +2425,3828229,"experiments/sample.sh",259,0,"",shellscript,selection_command +2426,3828377,"experiments/sample.sh",280,0,"",shellscript,selection_command +2427,3828566,"experiments/sample.sh",285,0,"",shellscript,selection_command +2428,3828729,"experiments/sample.sh",292,0,"",shellscript,selection_command +2429,3828879,"experiments/sample.sh",294,0,"",shellscript,selection_command +2430,3830065,"experiments/sample.sh",294,1,"3",shellscript,content +2431,3830684,"experiments/sample.sh",302,0,"",shellscript,selection_command +2432,3830736,"experiments/sample.sh",303,0,"",shellscript,selection_command +2433,3830783,"experiments/sample.sh",303,0,"w",shellscript,content +2434,3830783,"experiments/sample.sh",304,0,"",shellscript,selection_keyboard +2435,3830903,"experiments/sample.sh",304,0,"\n ",shellscript,content +2436,3831455,"experiments/sample.sh",308,0,"",shellscript,selection_command +2437,3831520,"experiments/sample.sh",303,6,"",shellscript,content +2438,3834662,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2439,3834858,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +2440,3835186,"TERMINAL",0,0,"a\t",,terminal_output +2441,3836006,"TERMINAL",0,0,"",,terminal_output +2442,3836232,"TERMINAL",0,0," ",,terminal_output +2443,3838031,"TERMINAL",0,0,"^Csrun: interrupt (one more within 1 sec to abort)\r\nsrun: StepId=14454.9 task 0: running\r\n^Csrun: sending Ctrl-C to StepId=14454.9\r\nsrun: forcing job termination\r\nsrun: Job step aborted: Waiting up to 32 seconds for job step to finish.\r\n[2025-07-31T14:15:00.840] error: *** STEP 14454.9 ON hai001 CANCELLED AT 2025-07-31T14:15:00 DUE to SIGNAL Killed ***\r\n",,terminal_output +2444,3838135,"TERMINAL",0,0,"]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2445,3838529,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2446,3838819,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +2447,3849593,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +2448,3857726,"TERMINAL",0,0,"2025-07-31 14:15:20.526553: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2449,3863292,"TERMINAL",0,0,"2025-07-31 14:15:26.094384: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:15:26.094925: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:15:26.094950: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2450,3869690,"TERMINAL",0,0,"a",,terminal_output +2451,3873957,"TERMINAL",0,0,"SSIM: 0.00590125098824501\r\n",,terminal_output +2452,3874077,"TERMINAL",0,0,"Traceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 231, in \r\n action = action_batch_E[row, t, 0]\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/array.py"", line 382, in __getitem__\r\n return indexing.rewriting_take(self, idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 653, in rewriting_take\r\n return internal_gather(arr, dynamic_idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 662, in _gather\r\n indexer = index_to_gather(np.shape(arr), idx) # shared with _scatter_update\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 799, in index_to_gather\r\n idx = _canonicalize_tuple_index(len(x_shape), idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 1118, in _canonicalize_tuple_index\r\n raise IndexError(\r\nIndexError: Too many indices: 1-dimensional array indexed with 3 regular indices.\r\n",,terminal_output +2453,3875189,"TERMINAL",0,0,"srun: error: hai001: task 0: Exited with exit code 1\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ a",,terminal_output +2454,3879003,"TERMINAL",0,0,"",,terminal_output +2455,3879165,"TERMINAL",0,0,"",,terminal_output +2456,3879316,"TERMINAL",0,0,"",,terminal_output +2457,3879448,"TERMINAL",0,0,"",,terminal_output +2458,3923266,"experiments/sample.sh",285,0,"",shellscript,selection_command +2459,3923310,"experiments/sample.sh",292,0,"",shellscript,selection_command +2460,3923661,"experiments/sample.sh",294,0,"",shellscript,selection_command +2461,3924082,"experiments/sample.sh",294,1,"",shellscript,content +2462,3924486,"experiments/sample.sh",294,0,"1",shellscript,content +2463,3924486,"experiments/sample.sh",295,0,"",shellscript,selection_keyboard +2464,3924644,"experiments/sample.sh",295,0,"6",shellscript,content +2465,3924645,"experiments/sample.sh",296,0,"",shellscript,selection_keyboard +2466,3925215,"experiments/sample.sh",295,0,"",shellscript,selection_command +2467,3929002,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2468,3929146,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +2469,3940534,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +2470,3958780,"TERMINAL",0,0,"2025-07-31 14:17:01.579647: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:17:01.580206: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:17:01.580235: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2471,4189613,"TERMINAL",0,0,"^Csrun: interrupt (one more within 1 sec to abort)\r\nsrun: StepId=14454.11 task 0: running\r\n",,terminal_output +2472,4189687,"TERMINAL",0,0,"^Csrun: sending Ctrl-C to StepId=14454.11\r\nsrun: forcing job termination\r\nsrun: Job step aborted: Waiting up to 32 seconds for job step to finish.\r\n[2025-07-31T14:20:52.491] error: *** STEP 14454.11 ON hai001 CANCELLED AT 2025-07-31T14:20:52 DUE to SIGNAL Killed ***\r\n",,terminal_output +2473,4189911,"TERMINAL",0,0,"^Csrun: sending Ctrl-C to StepId=14454.11\r\nsrun: job abort in progress\r\n",,terminal_output +2474,4190015,"TERMINAL",0,0,"^Csrun: sending Ctrl-C to StepId=14454.11\r\n",,terminal_output +2475,4190143,"TERMINAL",0,0,"]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ^C[?2004l\r[?2004h[?2004l\r\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2476,4190824,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2477,4195683,"experiments/sample.sh",294,0,"",shellscript,selection_command +2478,4196101,"experiments/sample.sh",294,2,"",shellscript,content +2479,4196927,"experiments/sample.sh",294,0,"6",shellscript,content +2480,4196927,"experiments/sample.sh",295,0,"",shellscript,selection_keyboard +2481,4197561,"experiments/sample.sh",294,1,"",shellscript,content +2482,4199351,"experiments/sample.sh",294,0,"5",shellscript,content +2483,4199351,"experiments/sample.sh",295,0,"",shellscript,selection_keyboard +2484,4199878,"experiments/sample.sh",294,1,"",shellscript,content +2485,4200119,"experiments/sample.sh",294,0,"3",shellscript,content +2486,4200120,"experiments/sample.sh",295,0,"",shellscript,selection_keyboard +2487,4200478,"experiments/sample.sh",294,0,"",shellscript,selection_command +2488,4202272,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ bash experiments/sample.sh ",,terminal_output +2489,4202694,"TERMINAL",0,0,"dp",,terminal_output +2490,4203084,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2491,4203547,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +2492,4214723,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +2493,4222789,"TERMINAL",0,0,"2025-07-31 14:21:25.584995: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2494,4228139,"TERMINAL",0,0,"2025-07-31 14:21:30.939460: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:21:30.939998: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:21:30.940022: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2495,4238804,"TERMINAL",0,0,"SSIM: 0.00590125098824501\r\n",,terminal_output +2496,4238921,"TERMINAL",0,0,"Traceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 231, in \r\n action = action_batch_E[row, t, 0]\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/array.py"", line 382, in __getitem__\r\n return indexing.rewriting_take(self, idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 653, in rewriting_take\r\n return internal_gather(arr, dynamic_idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 662, in _gather\r\n indexer = index_to_gather(np.shape(arr), idx) # shared with _scatter_update\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 799, in index_to_gather\r\n idx = _canonicalize_tuple_index(len(x_shape), idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 1118, in _canonicalize_tuple_index\r\n raise IndexError(\r\nIndexError: Too many indices: 1-dimensional array indexed with 3 regular indices.\r\n",,terminal_output +2497,4240033,"TERMINAL",0,0,"srun: error: hai001: task 0: Exited with exit code 1\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2498,4256684,"experiments/sample.sh",294,1,"f",shellscript,content +2499,4258699,"experiments/sample.sh",294,1,"6",shellscript,content +2500,4262991,"experiments/sample.sh",294,1,"5",shellscript,content +2501,4266715,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +2502,4266995,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +2503,4278157,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +2504,4321001,"TERMINAL",0,0,"2025-07-31 14:23:03.801720: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2505,4326438,"TERMINAL",0,0,"2025-07-31 14:23:09.239545: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:23:09.240093: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:23:09.240121: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +2506,4351339,"TERMINAL",0,0,"SSIM: 0.006550051271915436\r\n",,terminal_output +2507,4351402,"TERMINAL",0,0,"Traceback (most recent call last):\r\n File ""/fast/home/franz.srambical/jafar/sample.py"", line 231, in \r\n action = action_batch_E[row, t, 0]\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/array.py"", line 382, in __getitem__\r\n return indexing.rewriting_take(self, idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 653, in rewriting_take\r\n return internal_gather(arr, dynamic_idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 662, in _gather\r\n indexer = index_to_gather(np.shape(arr), idx) # shared with _scatter_update\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 799, in index_to_gather\r\n idx = _canonicalize_tuple_index(len(x_shape), idx)\r\n File ""/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/jax/_src/numpy/indexing.py"", line 1118, in _canonicalize_tuple_index\r\n raise IndexError(\r\nIndexError: Too many indices: 1-dimensional array indexed with 3 regular indices.\r\n",,terminal_output +2508,4352723,"TERMINAL",0,0,"srun: error: hai001: task 0: Exited with exit code 1\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2509,4410828,"/fast/home/franz.srambical/jafar/sample.py",0,0,"",python,tab +2510,4410828,"/fast/home/franz.srambical/jafar/sample.py",7512,0,"",python,selection_command +2511,4416988,"/fast/home/franz.srambical/jafar/sample.py",6331,0,"",python,selection_mouse +2512,4422457,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2513,4422524,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +2514,4434736,"/fast/home/franz.srambical/jafar/sample.py",5633,0,"",python,selection_mouse +2515,4435237,"/fast/home/franz.srambical/jafar/sample.py",5619,0,"",python,selection_mouse +2516,4436544,"/fast/home/franz.srambical/jafar/sample.py",6052,0,"",python,selection_mouse +2517,4439366,"/fast/home/franz.srambical/jafar/sample.py",6309,0,"",python,selection_mouse +2518,4440741,"/fast/home/franz.srambical/jafar/sample.py",6429,0,"",python,selection_mouse +2519,4441178,"/fast/home/franz.srambical/jafar/sample.py",5074,0,"",python,selection_command +2520,4445829,"/fast/home/franz.srambical/jafar/sample.py",5363,0,"",python,selection_mouse +2521,4446294,"/fast/home/franz.srambical/jafar/sample.py",4319,0,"",python,selection_command +2522,4448319,"/fast/home/franz.srambical/jafar/sample.py",4765,0,"",python,selection_mouse +2523,4448933,"genie.py",0,0,"from typing import Dict\n\nimport optax\nimport jax\nimport jax.numpy as jnp\nimport flax.nnx as nnx\nimport orbax.checkpoint as ocp\n\nfrom models.dynamics import DynamicsMaskGIT, DynamicsCausal\nfrom models.lam import LatentActionModel\nfrom models.tokenizer import TokenizerVQVAE\n\n\nclass Genie(nnx.Module):\n """"""Genie model""""""\n\n def __init__(\n self,\n in_dim: int,\n tokenizer_dim: int,\n tokenizer_ffn_dim: int,\n latent_patch_dim: int,\n num_patch_latents: int,\n patch_size: int,\n tokenizer_num_blocks: int,\n tokenizer_num_heads: int,\n lam_dim: int,\n lam_ffn_dim: int,\n latent_action_dim: int,\n num_latent_actions: int,\n lam_patch_size: int,\n lam_num_blocks: int,\n lam_num_heads: int,\n lam_co_train: bool,\n dyna_type: str,\n dyna_dim: int,\n dyna_ffn_dim: int,\n dyna_num_blocks: int,\n dyna_num_heads: int,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n dropout: float = 0.0,\n mask_limit: float = 0.0,\n ):\n # --- Tokenizer ---\n self.in_dim = in_dim\n self.tokenizer_dim = tokenizer_dim\n self.tokenizer_ffn_dim = tokenizer_ffn_dim\n self.latent_patch_dim = latent_patch_dim\n self.num_patch_latents = num_patch_latents\n self.patch_size = patch_size\n self.tokenizer_num_blocks = tokenizer_num_blocks\n self.tokenizer_num_heads = tokenizer_num_heads\n # --- LAM ---\n self.lam_dim = lam_dim\n self.lam_ffn_dim = lam_ffn_dim\n self.latent_action_dim = latent_action_dim\n self.num_latent_actions = num_latent_actions\n self.lam_patch_size = lam_patch_size\n self.lam_num_blocks = lam_num_blocks\n self.lam_num_heads = lam_num_heads\n self.lam_co_train = lam_co_train\n # --- Dynamics ---\n self.dyna_type = dyna_type\n self.dyna_dim = dyna_dim\n self.dyna_ffn_dim = dyna_ffn_dim\n self.dyna_num_blocks = dyna_num_blocks\n self.dyna_num_heads = dyna_num_heads\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n self.dropout = dropout\n self.mask_limit = mask_limit\n\n self.tokenizer = TokenizerVQVAE(\n in_dim=self.in_dim,\n model_dim=self.tokenizer_dim,\n ffn_dim=self.tokenizer_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_patch_latents,\n patch_size=self.patch_size,\n num_blocks=self.tokenizer_num_blocks,\n num_heads=self.tokenizer_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n self.lam = LatentActionModel(\n in_dim=self.in_dim,\n model_dim=self.lam_dim,\n ffn_dim=self.lam_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_latent_actions,\n patch_size=self.lam_patch_size,\n num_blocks=self.lam_num_blocks,\n num_heads=self.lam_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n if self.dyna_type == ""maskgit"":\n self.dynamics = DynamicsMaskGIT(\n model_dim=self.dyna_dim,\n ffn_dim=self.dyna_ffn_dim,\n num_latents=self.num_patch_latents,\n latent_action_dim=self.latent_action_dim,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n mask_limit=self.mask_limit,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n elif self.dyna_type == ""causal"":\n self.dynamics = DynamicsCausal(\n model_dim=self.dyna_dim,\n ffn_dim=self.dyna_ffn_dim,\n num_latents=self.num_patch_latents,\n latent_action_dim=self.latent_action_dim,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n decode=False,\n rngs=rngs,\n )\n else:\n raise ValueError(f""Invalid dynamics type: {self.dyna_type}"")\n\n def __call__(\n self, batch: Dict[str, jax.Array], training: bool = True\n ) -> Dict[str, jax.Array]:\n videos_BTHWC = batch[""videos""]\n tokenizer_outputs = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_indices_BTN = tokenizer_outputs[""indices""]\n lam_outputs = self.lam.vq_encode(videos_BTHWC, training=False)\n z_q_BTm11L = lam_outputs[""z_q""]\n action_indices_E = lam_outputs[""indices""]\n latent_actions_BTm11L = jax.lax.cond(\n self.lam_co_train,\n lambda: z_q_BTm11L,\n lambda: jax.lax.stop_gradient(z_q_BTm11L),\n )\n outputs = dict(\n video_tokens=jax.lax.stop_gradient(token_indices_BTN),\n latent_actions=latent_actions_BTm11L,\n )\n outputs[""mask_rng""] = batch[""mask_rng""]\n dyna_logits_BTNV, dyna_mask = self.dynamics(outputs, training)\n outputs[""token_logits""] = dyna_logits_BTNV\n if dyna_mask is not None:\n outputs[""mask""] = dyna_mask\n mle_indices_BTN = jnp.argmax(outputs[""token_logits""], axis=-1)\n H, W = batch[""videos""].shape[2:4]\n outputs[""recon""] = self.tokenizer.decode(mle_indices_BTN, (H, W))\n outputs[""lam_indices""] = action_indices_E\n return outputs\n\n # FIXME (f.srambical): sampling should be moved to the dynamics classes\n def sample(\n self,\n batch: Dict[str, jax.Array],\n seq_len: int,\n steps: int = 25,\n temperature: float = 1,\n sample_argmax: bool = False,\n ) -> jax.Array:\n """"""\n Autoregressively samples up to `seq_len` future frames, following Figure 8 of the paper.\n\n - Input frames are tokenized once.\n - Future frames are generated autoregressively in token space.\n - All frames are detokenized in a single pass.\n\n Note:\n - For interactive or step-wise sampling, detokenization should occur after each action.\n - To maintain consistent tensor shapes across timesteps, all current and future frames are decoded at every step.\n - Temporal causal structure is preserved by\n a) reapplying the mask before each decoding step.\n b) a temporal causal mask is applied within each ST-transformer block.\n\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n M: model dimension\n S: sequence length\n H: height\n W: width\n E: B * (S - 1)\n """"""\n # --- Encode videos and actions ---\n videos_BTHWC = batch[""videos""]\n latent_actions_E = batch[""latent_actions""]\n tokenizer_out = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_idxs_BTN = tokenizer_out[""indices""]\n B, T, N = token_idxs_BTN.shape\n pad_shape = (B, seq_len - T, N)\n pad = jnp.zeros(pad_shape, dtype=token_idxs_BTN.dtype)\n token_idxs_BSN = jnp.concatenate([token_idxs_BTN, pad], axis=1)\n action_tokens_EL = self.lam.vq.get_codes(latent_actions_E)\n\n def maskgit_step_fn(\n carry: tuple[jax.Array, jax.Array, jax.Array, jax.Array], step: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array, jax.Array, jax.Array], None]:\n rng, token_idxs_BSN, mask_BSN, action_tokens_EL = carry\n S, N = token_idxs_BSN.shape[1:]\n L = action_tokens_EL.shape[-1]\n\n # --- Construct + encode video ---\n vid_embed_BSNM = self.dynamics.patch_embed(token_idxs_BSN)\n mask_token_111M = self.dynamics.mask_token.value\n mask_expanded_BSN1 = mask_BSN[..., None]\n vid_embed_BSNM = jnp.where(mask_expanded_BSN1, mask_token_111M, vid_embed_BSNM)\n\n # --- Predict transition ---\n action_tokens_BSm1L = jnp.reshape(action_tokens_EL, (B, S - 1, L))\n act_embed_BSm1M = self.dynamics.action_up(action_tokens_BSm1L)\n act_embed_BSM = jnp.pad(act_embed_BSm1M, ((0, 0), (1, 0), (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.shape[-1]))\n vid_embed_BSNM += act_embed_BS1M\n unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (steps * 2))\n step_temp = temperature * (1.0 - unmasked_ratio)\n final_logits_BSNV = self.dynamics.transformer(vid_embed_BSNM) / step_temp\n\n # --- Sample new tokens for final frame ---\n if sample_argmax:\n sampled_token_idxs_BSN = jnp.argmax(final_logits_BSNV, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs_BSN = jax.random.categorical(_rng, final_logits_BSNV)\n gather_fn = jax.vmap(jax.vmap(jax.vmap(lambda x, y: x[y])))\n final_token_probs_BSN = gather_fn(\n jax.nn.softmax(final_logits_BSNV), sampled_token_idxs_BSN\n )\n final_token_probs_BSN += ~mask_BSN\n # Update masked tokens only\n token_idxs_BSN = jnp.where(mask_BSN, sampled_token_idxs_BSN, token_idxs_BSN)\n\n # --- Update mask ---\n num_unmasked_tokens = jnp.round(N * (1.0 - unmasked_ratio)).astype(int)\n idx_mask_N = jnp.arange(final_token_probs_BSN.shape[-1]) > num_unmasked_tokens\n sorted_idxs_BSN = jnp.argsort(final_token_probs_BSN, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask_N))\n new_mask_BSN = mask_update_fn(mask_BSN, sorted_idxs_BSN)\n\n new_carry = (rng, token_idxs_BSN, new_mask_BSN, action_tokens_EL)\n return new_carry, None\n\n def generation_step_fn(\n carry: tuple[jax.Array, jax.Array], step_t: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array], None]:\n rng, current_token_idxs_BSN = carry\n rng, step_rng = jax.random.split(rng)\n\n # Mask current and future frames (i.e., t >= step_t)\n mask_S = jnp.arange(seq_len) >= step_t\n mask_BSN = jnp.broadcast_to(mask_S[None, :, None], (B, seq_len, N)).astype(\n bool\n )\n masked_token_idxs_BSN = current_token_idxs_BSN * ~mask_BSN\n\n # --- Initialize and run MaskGIT loop ---\n init_carry_maskgit = (\n step_rng,\n masked_token_idxs_BSN,\n mask_BSN,\n action_tokens_EL,\n )\n final_carry_maskgit, _ = jax.lax.scan(\n maskgit_step_fn, init_carry_maskgit, jnp.arange(steps)\n )\n updated_token_idxs = final_carry_maskgit[1]\n new_carry = (rng, updated_token_idxs)\n return new_carry, None\n\n # --- Run the autoregressive generation using jax.lax.scan ---\n initial_carry = (batch[""rng""], token_idxs_BSN)\n timesteps_to_scan = jnp.arange(T, seq_len)\n final_carry, _ = jax.lax.scan(\n generation_step_fn, initial_carry, timesteps_to_scan\n )\n final_token_idxs = final_carry[1]\n\n # --- Decode all tokens at once at the end ---\n H, W = batch[""videos""].shape[2:4]\n final_frames = self.tokenizer.decode(\n final_token_idxs,\n video_hw=(H, W),\n )\n return final_frames\n\n def sample_causal(\n self,\n batch: Dict[str, jax.Array],\n seq_len: int,\n temperature: float = 1,\n sample_argmax: bool = False,\n ) -> jax.Array:\n """"""\n Autoregressively samples up to `seq_len` future frames, following Figure 8 of the paper.\n\n - Input frames are tokenized once.\n - Future frames are generated autoregressively in token space.\n - All frames are detokenized in a single pass.\n\n Note:\n - For interactive or step-wise sampling, detokenization should occur after each action.\n - To maintain consistent tensor shapes across timesteps, all current and future frames are decoded at every step.\n - Temporal causal structure is preserved by\n a) reapplying the mask before each decoding step.\n b) a temporal causal mask is applied within each ST-transformer block.\n\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n M: model dimension\n S: sequence length\n H: height\n W: width\n E: B * (S - 1)\n """"""\n # --- Encode videos and actions ---\n videos_BTHWC = batch[""videos""]\n latent_actions_E = batch[""latent_actions""]\n tokenizer_out = self.tokenizer.vq_encode(videos_BTHWC, training=False)\n token_idxs_BTN = tokenizer_out[""indices""]\n B, T, N = token_idxs_BTN.shape\n pad_shape = (B, seq_len - T, N)\n pad = jnp.zeros(pad_shape, dtype=token_idxs_BTN.dtype)\n token_idxs_BSN = jnp.concatenate([token_idxs_BTN, pad], axis=1)\n action_tokens_EL = self.lam.vq.get_codes(latent_actions_E)\n\n def causal_step_fn(\n carry: tuple[jax.Array, jax.Array, jax.Array, jax.Array], step_n: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array, jax.Array, jax.Array], None]:\n rng, token_idxs_BSN, action_tokens_EL, step_t = carry\n S, N = token_idxs_BSN.shape[1:]\n L = action_tokens_EL.shape[-1]\n\n # --- Construct + encode video ---\n vid_embed_BSNM = self.dynamics.patch_embed(token_idxs_BSN)\n\n # --- Predict transition ---\n action_tokens_BSm1L = jnp.reshape(action_tokens_EL, (B, S - 1, L))\n act_embed_BSm1M = self.dynamics.action_up(action_tokens_BSm1L)\n act_embed_BSM = jnp.pad(act_embed_BSm1M, ((0, 0), (1, 0), (0, 0)))\n act_embed_BS1M = jnp.reshape(act_embed_BSM, (B, S, 1, act_embed_BSM.shape[-1]))\n vid_embed_BSNp1M = jnp.concatenate([act_embed_BS1M, vid_embed_BSNM], axis=2)\n final_logits_BTNp1V = self.dynamics.transformer(vid_embed_BSNp1M) / temperature\n final_logits_BV = final_logits_BTNp1V[:, step_t, step_n, :]\n\n # --- Sample new tokens for final frame ---\n if sample_argmax:\n sampled_token_idxs_B = jnp.argmax(final_logits_BV, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs_B = jax.random.categorical(_rng, final_logits_BV)\n # Update next tokens only\n token_idxs_BSN = token_idxs_BSN.at[:, step_t, step_n].set(sampled_token_idxs_B)\n step_t += 1\n\n new_carry = (rng, token_idxs_BSN, action_tokens_EL, step_t)\n return new_carry, None\n\n def generation_step_fn(\n carry: tuple[jax.Array, jax.Array], step_t: jax.Array\n ) -> tuple[tuple[jax.Array, jax.Array], None]:\n rng, current_token_idxs_BSN = carry\n rng, step_rng = jax.random.split(rng)\n\n # --- Initialize and run causal loop ---\n init_carry_causal = (\n step_rng,\n current_token_idxs_BSN,\n action_tokens_EL,\n step_t,\n )\n final_carry_causal, _ = jax.lax.scan(\n causal_step_fn, init_carry_causal, jnp.arange(N)\n )\n updated_token_idxs = final_carry_causal[1]\n new_carry = (rng, updated_token_idxs)\n return new_carry, None\n\n # --- Run the autoregressive generation using jax.lax.scan ---\n initial_carry = (batch[""rng""], token_idxs_BSN)\n timesteps_to_scan = jnp.arange(T, seq_len)\n final_carry, _ = jax.lax.scan(\n generation_step_fn, initial_carry, timesteps_to_scan\n )\n final_token_idxs = final_carry[1]\n\n # --- Decode all tokens at once at the end ---\n H, W = batch[""videos""].shape[2:4]\n final_frames = self.tokenizer.decode(\n final_token_idxs,\n video_hw=(H, W),\n )\n return final_frames\n\n def vq_encode(self, batch: Dict[str, jax.Array], training: bool) -> jax.Array:\n # --- Preprocess videos ---\n video_BTHWC = batch[""videos""]\n lam_output = self.lam.vq_encode(video_BTHWC, training=training)\n lam_indices_E = lam_output[""indices""]\n return lam_indices_E\n\n# FIXME (f.srambical): add conversion script for old checkpoints\ndef restore_genie_components(\n optimizer: nnx.Optimizer,\n sharding: jax.sharding.NamedSharding,\n rng: jax.Array,\n args,\n) -> nnx.Optimizer:\n """"""Restore pre-trained Genie components""""""\n rngs = nnx.Rngs(rng)\n\n tx = optimizer.tx\n model = optimizer.model\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n tokenizer_checkpoint_manager = ocp.CheckpointManager(\n directory=args.tokenizer_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.tokenizer_dim,\n ffn_dim=args.tokenizer_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n num_blocks=args.tokenizer_num_blocks,\n num_heads=args.tokenizer_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n dummy_tokenizer_optimizer = nnx.Optimizer(dummy_tokenizer, tx)\n dummy_tokenizer_optimizer_state = nnx.state(dummy_tokenizer_optimizer)\n abstract_sharded_tokenizer_optimizer_state = _create_abstract_sharded_pytree(\n dummy_tokenizer_optimizer_state, sharding\n )\n restored_tokenizer = tokenizer_checkpoint_manager.restore(\n step=tokenizer_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore( # type: ignore\n abstract_sharded_tokenizer_optimizer_state # type: ignore\n ),\n ),\n )[""model_state""]\n nnx.update(dummy_tokenizer_optimizer.model, restored_tokenizer.model)\n model.tokenizer = dummy_tokenizer_optimizer.model\n tokenizer_checkpoint_manager.close()\n\n if args.lam_checkpoint:\n lam_checkpoint_manager = ocp.CheckpointManager(\n directory=args.lam_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_lam = LatentActionModel(\n in_dim=args.image_channels,\n model_dim=args.lam_dim,\n ffn_dim=args.lam_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_latent_actions,\n patch_size=args.lam_patch_size,\n num_blocks=args.lam_num_blocks,\n num_heads=args.lam_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n dummy_lam_optimizer = nnx.Optimizer(dummy_lam, tx)\n dummy_lam_optimizer_state = nnx.state(dummy_lam_optimizer)\n abstract_sharded_lam_optimizer_state = _create_abstract_sharded_pytree(\n dummy_lam_optimizer_state, sharding\n )\n restored_lam_optimizer = lam_checkpoint_manager.restore(\n step=lam_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore( # type: ignore\n abstract_sharded_lam_optimizer_state # type: ignore\n ),\n ),\n )[""model_state""]\n nnx.update(dummy_lam_optimizer.model, restored_lam_optimizer.model)\n model.lam = dummy_lam_optimizer.model\n # Remove the LAM decoder to save memory and avoid unnecessary computation.\n del model.lam.decoder\n lam_checkpoint_manager.close()\n \n # Reinitialize the optimizer states\n optimizer = nnx.Optimizer(model, tx)\n return optimizer\n\n\ndef _create_abstract_sharded_pytree(\n pytree_template: nnx.GraphState, sharding_spec: jax.sharding.NamedSharding\n) -> jax.Array:\n """"""Replaces arrays in a pytree with ShapeDtypeStructs having the given sharding.""""""\n\n def map_fn(leaf_template):\n if hasattr(leaf_template, ""shape"") and hasattr(leaf_template, ""dtype""):\n return jax.ShapeDtypeStruct(\n leaf_template.shape, leaf_template.dtype, sharding=sharding_spec\n )\n return leaf_template\n\n return jax.tree_util.tree_map(map_fn, pytree_template)\n",python,tab +2524,4448933,"genie.py",12225,0,"",python,selection_command +2525,4452327,"/fast/home/franz.srambical/jafar/sample.py",0,0,"",python,tab +2526,4452327,"/fast/home/franz.srambical/jafar/sample.py",4765,0,"",python,selection_command +2527,4454910,"/fast/home/franz.srambical/jafar/sample.py",4325,0,"",python,selection_mouse +2528,4456384,"/fast/home/franz.srambical/jafar/sample.py",5352,0,"",python,selection_mouse +2529,4460397,"/fast/home/franz.srambical/jafar/sample.py",4766,0,"",python,selection_mouse +2530,4460942,"genie.py",0,0,"",python,tab +2531,4460943,"genie.py",12225,0,"",python,selection_command +2532,4469296,"genie.py",14436,0,"",python,selection_mouse +2533,4470906,"genie.py",15056,0,"",python,selection_mouse +2534,4475680,"genie.py",15005,0,"",python,selection_mouse +2535,4476900,"genie.py",15171,0,"",python,selection_mouse +2536,4479057,"genie.py",15430,0,"",python,selection_mouse +2537,4480249,"genie.py",15525,0,"",python,selection_mouse +2538,4480251,"genie.py",15524,0,"",python,selection_command +2539,4480283,"genie.py",15524,1,"1",python,selection_mouse +2540,4480284,"genie.py",15525,0,"",python,selection_command +2541,4481027,"genie.py",15526,0,"",python,selection_mouse +2542,4482125,"genie.py",13988,0,"",python,selection_mouse +2543,4483980,"genie.py",16135,0,"",python,selection_mouse +2544,4494247,"genie.py",16267,0,"",python,selection_mouse +2545,4501681,"genie.py",16270,0,"",python,selection_command +2546,4502706,"genie.py",16271,0,"",python,selection_command +2547,4503042,"genie.py",16271,0,"_",python,content +2548,4503042,"genie.py",16272,0,"",python,selection_keyboard +2549,4503603,"genie.py",16272,0,"B",python,content +2550,4503603,"genie.py",16273,0,"",python,selection_keyboard +2551,4504438,"genie.py",16273,0,"N",python,content +2552,4504438,"genie.py",16274,0,"",python,selection_keyboard +2553,4505039,"genie.py",16273,1,"",python,content +2554,4505505,"genie.py",16273,0,"S",python,content +2555,4505506,"genie.py",16274,0,"",python,selection_keyboard +2556,4505871,"genie.py",16274,0,"N",python,content +2557,4505872,"genie.py",16275,0,"",python,selection_keyboard +2558,4506174,"genie.py",16274,0,"",python,selection_command +2559,4506666,"genie.py",16333,0,"",python,selection_command +2560,4506829,"genie.py",16347,0,"",python,selection_command +2561,4507069,"genie.py",16348,0,"",python,selection_command +2562,4507811,"genie.py",16348,0,"_BSN",python,content +2563,4508061,"genie.py",16351,0,"",python,selection_command +2564,4513236,"genie.py",16292,0,"",python,selection_command +2565,4513484,"genie.py",16239,0,"",python,selection_command +2566,4513503,"genie.py",16213,0,"",python,selection_command +2567,4513540,"genie.py",16160,0,"",python,selection_command +2568,4513570,"genie.py",16110,0,"",python,selection_command +2569,4513602,"genie.py",16096,0,"",python,selection_command +2570,4513636,"genie.py",16072,0,"",python,selection_command +2571,4513669,"genie.py",16038,0,"",python,selection_command +2572,4513705,"genie.py",15998,0,"",python,selection_command +2573,4513738,"genie.py",15972,0,"",python,selection_command +2574,4513771,"genie.py",15938,0,"",python,selection_command +2575,4513804,"genie.py",15886,0,"",python,selection_command +2576,4513931,"genie.py",15884,0,"",python,selection_command +2577,4514097,"genie.py",15834,0,"",python,selection_command +2578,4514384,"genie.py",15830,0,"",python,selection_command +2579,4514540,"genie.py",15828,0,"",python,selection_command +2580,4514719,"genie.py",15805,0,"",python,selection_command +2581,4527710,"genie.py",16648,0,"",python,selection_mouse +2582,4535381,"genie.py",16584,0,"",python,selection_mouse +2583,4536502,"genie.py",16699,0,"",python,selection_mouse +2584,4537897,"genie.py",16704,0,"",python,selection_command +2585,4538329,"genie.py",16705,0,"",python,selection_command +2586,4539052,"genie.py",16705,0,"_",python,content +2587,4539052,"genie.py",16706,0,"",python,selection_keyboard +2588,4541001,"genie.py",16706,0,"B",python,content +2589,4541001,"genie.py",16707,0,"",python,selection_keyboard +2590,4541171,"genie.py",16707,0,"S",python,content +2591,4541172,"genie.py",16708,0,"",python,selection_keyboard +2592,4541649,"genie.py",16708,0,"N",python,content +2593,4541650,"genie.py",16709,0,"",python,selection_keyboard +2594,4541999,"genie.py",16708,0,"",python,selection_command +2595,4542523,"genie.py",16727,0,"",python,selection_command +2596,4542593,"genie.py",16755,0,"",python,selection_command +2597,4542752,"genie.py",16810,0,"",python,selection_command +2598,4542886,"genie.py",16852,0,"",python,selection_command +2599,4543265,"genie.py",16898,0,"",python,selection_command +2600,4544101,"genie.py",16899,0,"",python,selection_command +2601,4544353,"genie.py",16899,0,"_BSN",python,content +2602,4544622,"genie.py",16902,0,"",python,selection_command +2603,4547314,"genie.py",16972,0,"",python,selection_mouse +2604,4549586,"genie.py",16891,0,"",python,selection_mouse +2605,4552816,"genie.py",16865,0,"",python,selection_mouse +2606,4554360,"models/tokenizer.py",0,0,"from typing import Dict, Tuple\n\nimport flax.nnx as nnx\nimport jax.numpy as jnp\nimport jax\n\nfrom utils.preprocess import patchify, unpatchify\nfrom utils.nn import STTransformer, VectorQuantizer\n\n\nclass TokenizerVQVAE(nnx.Module):\n """"""\n ST-ViVit VQ-VAE\n\n Dimension keys:\n B: batch size\n T: sequence length\n N: number of patches per frame\n L: latent dimension\n D: B * T * N\n H: height\n W: width\n C: number of channels\n P: patch token dimension (patch_size^2 * C)\n """"""\n\n def __init__(\n self,\n in_dim: int,\n model_dim: int,\n ffn_dim: int,\n latent_dim: int,\n num_latents: int,\n patch_size: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n codebook_dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n ):\n self.in_dim = in_dim\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.latent_dim = latent_dim\n self.num_latents = num_latents\n self.patch_size = patch_size\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.codebook_dropout = codebook_dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.encoder = STTransformer(\n self.in_dim * self.patch_size**2,\n self.model_dim,\n self.ffn_dim,\n self.latent_dim,\n self.num_blocks,\n self.num_heads,\n self.dropout,\n self.param_dtype,\n self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n self.vq = VectorQuantizer(\n self.latent_dim,\n self.num_latents,\n self.codebook_dropout,\n rngs=rngs,\n )\n self.out_dim = self.in_dim * self.patch_size**2\n self.decoder = STTransformer(\n self.latent_dim,\n self.model_dim,\n self.ffn_dim,\n self.out_dim,\n self.num_blocks,\n self.num_heads,\n self.dropout,\n self.param_dtype,\n self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n\n def __call__(\n self, batch: Dict[str, jax.Array], training: bool = True\n ) -> Dict[str, jax.Array]:\n H, W = batch[""videos""].shape[2:4]\n videos_BTHWC = batch[""videos""]\n outputs = self.vq_encode(videos_BTHWC, training)\n z_q_BTNL = outputs[""z_q""]\n recon_BTHWC = self.decoder(z_q_BTNL)\n recon_BTHWC = recon_BTHWC.astype(jnp.float32)\n recon_BTHWC = nnx.sigmoid(recon_BTHWC)\n recon_BTHWC = recon_BTHWC.astype(self.dtype)\n recon_BTHWC = unpatchify(recon_BTHWC, self.patch_size, H, W)\n outputs[""recon""] = recon_BTHWC\n return outputs\n\n def vq_encode(\n self, videos: jax.Array, training: bool = True\n ) -> Dict[str, jax.Array]:\n # --- Preprocess + encode ---\n B, T = videos.shape[:2]\n patch_BTNP = patchify(videos, self.patch_size)\n N = patch_BTNP.shape[2]\n x_BTNL = self.encoder(patch_BTNP)\n\n # --- Vector quantize ---\n x_DL = x_BTNL.reshape(B * T * N, self.latent_dim)\n z_q_DL, z_DL, emb_DL, indices_D = self.vq(x_DL, training)\n z_q_BTNL = z_q_DL.reshape(B, T, N, self.latent_dim)\n indices_BTN = indices_D.reshape(B, T, N)\n return dict(z_q=z_q_BTNL, z=z_DL, emb=emb_DL, indices=indices_BTN)\n\n def decode(self, indices_BTN: jax.Array, video_hw: Tuple[int, int]) -> jax.Array:\n z_BTNL = self.vq.codebook[indices_BTN]\n recon_BTNP = self.decoder(z_BTNL)\n recon_BTNP = recon_BTNP.astype(jnp.float32)\n recon_BTNP = nnx.sigmoid(recon_BTNP)\n recon_BTNP = recon_BTNP.astype(self.dtype)\n return unpatchify(recon_BTNP, self.patch_size, *video_hw)\n",python,tab +2607,4554361,"models/tokenizer.py",3690,0,"",python,selection_command +2608,4559381,"genie.py",0,0,"",python,tab +2609,4559381,"genie.py",16865,0,"",python,selection_command +2610,4564888,"genie.py",16965,0,"",python,selection_mouse +2611,4565772,"genie.py",16844,0,"",python,selection_mouse +2612,4567091,"genie.py",16845,0,"",python,selection_command +2613,4567405,"genie.py",16845,0,"_",python,content +2614,4567406,"genie.py",16846,0,"",python,selection_keyboard +2615,4571891,"genie.py",16846,0,"B",python,content +2616,4571891,"genie.py",16847,0,"",python,selection_keyboard +2617,4572083,"genie.py",16847,0,"S",python,content +2618,4572084,"genie.py",16848,0,"",python,selection_keyboard +2619,4573703,"genie.py",16848,0,"H",python,content +2620,4573703,"genie.py",16849,0,"",python,selection_keyboard +2621,4574144,"genie.py",16849,0,"W",python,content +2622,4574145,"genie.py",16850,0,"",python,selection_keyboard +2623,4574413,"genie.py",16850,0,"C",python,content +2624,4574414,"genie.py",16851,0,"",python,selection_keyboard +2625,4575689,"genie.py",16977,0,"_BSHWC",python,content +2626,4575690,"genie.py",16983,0,"",python,selection_command +2627,4575929,"genie.py",16982,0,"",python,selection_command +2628,4586871,"genie.py",11465,0,"",python,selection_mouse +2629,4592733,"genie.py",11528,0,"",python,selection_mouse +2630,4594336,"genie.py",11604,0,"_BSN",python,content +2631,4594336,"genie.py",11530,0,"_BSN",python,content +2632,4596585,"genie.py",11965,0,"_BSN",python,content +2633,4596585,"genie.py",11969,0,"",python,selection_command +2634,4600676,"genie.py",12227,0,"_BSHWC",python,content +2635,4600676,"genie.py",12159,0,"_BSN",python,content +2636,4600676,"genie.py",12105,0,"_BSHWC",python,content +2637,4608288,"genie.py",15650,0,"",python,selection_mouse +2638,4736550,"genie.py",15596,0,"",python,selection_mouse +2639,4737626,"genie.py",14019,0,"",python,selection_mouse +2640,4740118,"genie.py",16169,0,"",python,selection_mouse +2641,4740733,"genie.py",16301,0,"",python,selection_mouse +2642,4743162,"genie.py",15683,0,"",python,selection_mouse +2643,4745010,"genie.py",16611,0,"",python,selection_mouse +2644,4745662,"genie.py",16733,0,"",python,selection_mouse +2645,4747594,"genie.py",16875,0,"",python,selection_mouse +2646,4770057,"genie.py",12260,0,"",python,selection_mouse +2647,4775033,"sample.py",0,0,"from dataclasses import dataclass\nimport time\nimport os\nimport optax\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport flax.linen as nn\nimport numpy as np\nimport orbax.checkpoint as ocp\nfrom PIL import Image, ImageDraw\nimport tyro\nfrom flax import nnx\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n tokenizer_ffn_dim: int = 2048\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 4\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n lam_ffn_dim: int = 2048\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 4\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_type: str = ""maskgit""\n dyna_dim: int = 512\n dyna_ffn_dim: int = 2048\n dyna_num_blocks: int = 6\n dyna_num_heads: int = 8\n param_dtype = jnp.float32\n dtype = jnp.bfloat16\n use_flash_attention: bool = True\n\n\nargs = tyro.cli(Args)\n\nif __name__ == ""__main__"":\n """"""\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n S: sequence length\n H: height\n W: width\n D: B * T * N\n E: B * (T - 1)\n """"""\n jax.distributed.initialize()\n\n rng = jax.random.key(args.seed)\n\n # --- Load Genie checkpoint ---\n rngs = nnx.Rngs(rng)\n genie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n tokenizer_ffn_dim=args.tokenizer_ffn_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n lam_ffn_dim=args.lam_ffn_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n lam_co_train=False,\n # Dynamics\n dyna_type=args.dyna_type,\n dyna_dim=args.dyna_dim,\n dyna_ffn_dim=args.dyna_ffn_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeSave, ocp.handlers.PyTreeCheckpointHandler\n )\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n checkpoint_manager = ocp.CheckpointManager(\n args.checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n\n dummy_tx = optax.adamw(\n learning_rate=optax.linear_schedule(0.0001, 0.0001, 10000),\n b1=0.9,\n b2=0.9,\n weight_decay=1e-4,\n mu_dtype=args.dtype,\n )\n dummy_optimizer = nnx.Optimizer(genie, dummy_tx)\n\n abstract_optimizer = nnx.eval_shape(lambda: dummy_optimizer)\n abstract_optimizer_state = nnx.state(abstract_optimizer)\n restored = checkpoint_manager.restore(\n checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore(abstract_optimizer_state), # type: ignore\n ),\n )\n restored_optimizer_state = restored[""model_state""]\n nnx.update(dummy_optimizer, restored_optimizer_state)\n\n # --- Define sampling function ---\n def _sampling_fn(model: Genie, batch: dict) -> jax.Array:\n """"""Runs Genie.sample with pre-defined generation hyper-parameters.""""""\n if args.dyna_type == ""maskgit"":\n return model.sample(\n batch,\n args.seq_len,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n )\n elif args.dyna_type == ""causal"":\n return model.sample_causal(\n batch,\n args.seq_len,\n args.temperature,\n args.sample_argmax,\n )\n else:\n raise ValueError(f""Invalid dynamics type: {args.dyna_type}"")\n\n # --- Define autoregressive sampling loop ---\n @nnx.jit\n def _autoreg_sample(rng, video_batch_BSHWC, action_batch_E):\n input_video_BTHWC = video_batch_BSHWC[:, : args.start_frame + 1]\n rng, _rng = jax.random.split(rng)\n batch = dict(videos=input_video_BTHWC, latent_actions=action_batch_E, rng=_rng)\n generated_vid = _sampling_fn(genie, batch)\n return generated_vid\n\n # --- Get video + latent actions ---\n array_record_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".array_record"")\n ]\n dataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n args.batch_size,\n args.image_height,\n args.image_width,\n args.image_channels,\n # We don't use workers in order to avoid grain shutdown issues (https://github.com/google/grain/issues/398)\n num_workers=0,\n prefetch_buffer_size=1,\n seed=args.seed,\n )\n dataloader = iter(dataloader)\n video_batch_BSHWC = next(dataloader)\n gt_video = jnp.asarray(video_batch_BSHWC, dtype=jnp.float32) / 255.0\n video_batch_BSHWC = gt_video.astype(args.dtype)\n # Get latent actions for all videos in the batch\n batch = dict(videos=video_batch_BSHWC)\n action_batch_E = genie.vq_encode(batch, training=False)\n\n # --- Sample + evaluate video ---\n recon_video = _autoreg_sample(rng, video_batch_BSHWC, action_batch_E)\n recon_video = recon_video.astype(jnp.float32)\n gt = gt_video[:, : recon_video.shape[1]].clip(0, 1).reshape(-1, *gt_video.shape[2:])\n recon = recon_video.clip(0, 1).reshape(-1, *recon_video.shape[2:])\n ssim = jnp.asarray(\n pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :])\n ).mean()\n print(f""SSIM: {ssim}"")\n\n # --- Construct video ---\n true_videos = (gt_video * 255).astype(np.uint8)\n pred_videos = (recon_video * 255).astype(np.uint8)\n video_comparison = np.zeros((2, *recon_video.shape), dtype=np.uint8)\n video_comparison[0] = true_videos[:, : args.seq_len]\n video_comparison[1] = pred_videos\n frames = einops.rearrange(video_comparison, ""n b t h w c -> t (b h) (n w) c"")\n\n # --- Save video ---\n imgs = [Image.fromarray(img) for img in frames]\n # Write actions on each frame, on each row (i.e., for each video in the batch, on the GT row)\n for t, img in enumerate(imgs[1:]):\n d = ImageDraw.Draw(img)\n for row in range(action_batch_E.shape[0]):\n action = action_batch_E[row, t, 0]\n y_offset = row * video_batch_BSHWC.shape[2] + 2\n d.text((2, y_offset), f""{action}"", fill=255)\n imgs[0].save(\n f""generation_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n )\n",python,tab +2648,4775033,"sample.py",4763,13,"sample_causal",python,selection_command +2649,4775760,"sample.py",4775,0,"",python,selection_command +2650,4780449,"sample.py",4325,0,"",python,selection_mouse +2651,4781931,"sample.py",5364,0,"",python,selection_mouse +2652,4782483,"sample.py",5379,0,"",python,selection_mouse +2653,4782964,"sample.py",5350,0,"",python,selection_mouse +2654,4789282,"sample.py",5412,0,"",python,selection_mouse +2655,4790010,"sample.py",5083,0,"",python,selection_mouse +2656,4791385,"sample.py",5354,0,"",python,selection_mouse +2657,4793177,"sample.py",5355,0,"",python,selection_command +2658,4793445,"sample.py",5355,0,"_",python,content +2659,4793446,"sample.py",5356,0,"",python,selection_keyboard +2660,4794105,"sample.py",5356,0,"B",python,content +2661,4794105,"sample.py",5357,0,"",python,selection_keyboard +2662,4794398,"sample.py",5357,0,"S",python,content +2663,4794398,"sample.py",5358,0,"",python,selection_keyboard +2664,4795161,"sample.py",5358,0,"H",python,content +2665,4795162,"sample.py",5359,0,"",python,selection_keyboard +2666,4795535,"sample.py",5359,0,"W",python,content +2667,4795536,"sample.py",5360,0,"",python,selection_keyboard +2668,4795682,"sample.py",5360,0,"C",python,content +2669,4795683,"sample.py",5361,0,"",python,selection_keyboard +2670,4796240,"sample.py",5360,0,"",python,selection_command +2671,4796698,"sample.py",5417,0,"",python,selection_command +2672,4797381,"sample.py",5419,0,"_BSHWC",python,content +2673,4797381,"sample.py",5425,0,"",python,selection_command +2674,4798045,"sample.py",5424,0,"",python,selection_command +2675,4806888,"sample.py",5083,0,"",python,selection_mouse +2676,4809240,"sample.py",6422,0,"",python,selection_mouse +2677,4812621,"sample.py",6423,0,"",python,selection_command +2678,4812819,"sample.py",6423,0,"_",python,content +2679,4812820,"sample.py",6424,0,"",python,selection_keyboard +2680,4825232,"sample.py",6681,0,"_BSHWC",python,content +2681,4825232,"sample.py",6645,0,"_BSHWC",python,content +2682,4825232,"sample.py",6567,0,"_BSHWC",python,content +2683,4825232,"sample.py",6512,0,"_BSHWC",python,content +2684,4825232,"sample.py",6498,0,"_BSHWC",python,content +2685,4825232,"sample.py",6424,0,"BSHWC",python,content +2686,4826079,"sample.py",6428,0,"",python,selection_command +2687,4831644,"sample.py",6922,0,"",python,selection_mouse +2688,4832021,"sample.py",6925,0,"",python,selection_mouse +2689,4839583,"sample.py",7060,0,"_BSHWC",python,content +2690,4839583,"sample.py",6987,0,"_BSHWC",python,content +2691,4848957,"sample.py",7199,0,"",python,selection_mouse +2692,4849953,"sample.py",7233,0,"",python,selection_mouse +2693,4873993,"sample.py",7130,0,"",python,selection_mouse +2694,4877145,"sample.py",7145,0,"",python,selection_mouse +2695,4877900,"sample.py",7109,0,"",python,selection_mouse +2696,4878313,"sample.py",7165,0,"",python,selection_mouse +2697,4878703,"sample.py",7181,0,"",python,selection_mouse +2698,4879399,"sample.py",7229,0,"",python,selection_mouse +2699,4885361,"sample.py",7256,0,"",python,selection_mouse +2700,4886088,"sample.py",7259,0,"",python,selection_mouse +2701,4886483,"sample.py",7261,0,"",python,selection_mouse +2702,4888292,"sample.py",7198,0,"",python,selection_mouse +2703,4910929,"/fast/home/franz.srambical/jafar/sample.py",0,0,"",python,tab +2704,4910929,"/fast/home/franz.srambical/jafar/sample.py",7512,0,"",python,selection_command +2705,4911069,"/fast/home/franz.srambical/jafar/sample.py",5334,1703," generated_vid_BSHWC = _sampling_fn(genie, batch)\n return generated_vid_BSHWC\n\n # --- Get video + latent actions ---\n array_record_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".array_record"")\n ]\n dataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n args.batch_size,\n args.image_height,\n args.image_width,\n args.image_channels,\n # We don't use workers in order to avoid grain shutdown issues (https://github.com/google/grain/issues/398)\n num_workers=0,\n prefetch_buffer_size=1,\n seed=args.seed,\n )\n dataloader = iter(dataloader)\n video_batch_BSHWC = next(dataloader)\n gt_video = jnp.asarray(video_batch_BSHWC, dtype=jnp.float32) / 255.0\n video_batch_BSHWC = gt_video.astype(args.dtype)\n # Get latent actions for all videos in the batch\n batch = dict(videos=video_batch_BSHWC)\n action_batch_E = genie.vq_encode(batch, training=False)\n\n # --- Sample + evaluate video ---\n recon_video_BSHWC = _autoreg_sample(rng, video_batch_BSHWC, action_batch_E)\n recon_video_BSHWC = recon_video_BSHWC.astype(jnp.float32)\n gt = gt_video[:, : recon_video_BSHWC.shape[1]].clip(0, 1).reshape(-1, *gt_video.shape[2:])\n recon = recon_video_BSHWC.clip(0, 1).reshape(-1, *recon_video_BSHWC.shape[2:])\n ssim = jnp.asarray(\n pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :])\n ).mean()\n print(f""SSIM: {ssim}"")\n\n # --- Construct video ---\n true_videos = (gt_video * 255).astype(np.uint8)\n pred_videos = (recon_video_BSHWC * 255).astype(np.uint8)\n video_comparison = np.zeros((2, *recon_video_BSHWC.shape), dtype=np.uint8)\n",python,content +2706,4917181,"/fast/home/franz.srambical/jafar/sample.py",7601,0,"",python,selection_mouse +2707,5103503,"/fast/home/franz.srambical/jafar/sample.py",7550,0,"",python,selection_command +2708,5103750,"/fast/home/franz.srambical/jafar/sample.py",7518,0,"",python,selection_command +2709,5103782,"/fast/home/franz.srambical/jafar/sample.py",7479,0,"",python,selection_command +2710,5103809,"/fast/home/franz.srambical/jafar/sample.py",7381,0,"",python,selection_command +2711,5103838,"/fast/home/franz.srambical/jafar/sample.py",7329,0,"",python,selection_command +2712,5103869,"/fast/home/franz.srambical/jafar/sample.py",7298,0,"",python,selection_command +2713,5103904,"/fast/home/franz.srambical/jafar/sample.py",7274,0,"",python,selection_command +2714,5103933,"/fast/home/franz.srambical/jafar/sample.py",7221,0,"",python,selection_command +2715,5103968,"/fast/home/franz.srambical/jafar/sample.py",7183,0,"",python,selection_command +2716,5104003,"/fast/home/franz.srambical/jafar/sample.py",7126,0,"",python,selection_command +2717,5104034,"/fast/home/franz.srambical/jafar/sample.py",7047,0,"",python,selection_command +2718,5104139,"/fast/home/franz.srambical/jafar/sample.py",6986,0,"",python,selection_command +2719,5104140,"/fast/home/franz.srambical/jafar/sample.py",6934,0,"",python,selection_command +2720,5104141,"/fast/home/franz.srambical/jafar/sample.py",6903,0,"",python,selection_command +2721,5104176,"/fast/home/franz.srambical/jafar/sample.py",6874,0,"",python,selection_command +2722,5104211,"/fast/home/franz.srambical/jafar/sample.py",6872,0,"",python,selection_command +2723,5104249,"/fast/home/franz.srambical/jafar/sample.py",6845,0,"",python,selection_command +2724,5104281,"/fast/home/franz.srambical/jafar/sample.py",6781,0,"",python,selection_command +2725,5104308,"/fast/home/franz.srambical/jafar/sample.py",6750,0,"",python,selection_command +2726,5104342,"/fast/home/franz.srambical/jafar/sample.py",6674,0,"",python,selection_command +2727,5104375,"/fast/home/franz.srambical/jafar/sample.py",6579,0,"",python,selection_command +2728,5104407,"/fast/home/franz.srambical/jafar/sample.py",6517,0,"",python,selection_command +2729,5104442,"/fast/home/franz.srambical/jafar/sample.py",6437,0,"",python,selection_command +2730,5104476,"/fast/home/franz.srambical/jafar/sample.py",6399,0,"",python,selection_command +2731,5104509,"/fast/home/franz.srambical/jafar/sample.py",6369,0,"",python,selection_command +2732,5104542,"/fast/home/franz.srambical/jafar/sample.py",6338,0,"",python,selection_command +2733,5105775,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"\n ",python,content +2734,5106392,"/fast/home/franz.srambical/jafar/sample.py",6373,0,"a",python,content +2735,5106392,"/fast/home/franz.srambical/jafar/sample.py",6374,0,"",python,selection_keyboard +2736,5106420,"/fast/home/franz.srambical/jafar/sample.py",6374,0,"c",python,content +2737,5106420,"/fast/home/franz.srambical/jafar/sample.py",6375,0,"",python,selection_keyboard +2738,5106650,"/fast/home/franz.srambical/jafar/sample.py",6375,0,"t",python,content +2739,5106651,"/fast/home/franz.srambical/jafar/sample.py",6376,0,"",python,selection_keyboard +2740,5106664,"/fast/home/franz.srambical/jafar/sample.py",6376,0,"i",python,content +2741,5106664,"/fast/home/franz.srambical/jafar/sample.py",6377,0,"",python,selection_keyboard +2742,5106759,"/fast/home/franz.srambical/jafar/sample.py",6377,0,"o",python,content +2743,5106760,"/fast/home/franz.srambical/jafar/sample.py",6378,0,"",python,selection_keyboard +2744,5106794,"/fast/home/franz.srambical/jafar/sample.py",6378,0,"n",python,content +2745,5106795,"/fast/home/franz.srambical/jafar/sample.py",6379,0,"",python,selection_keyboard +2746,5106811,"/fast/home/franz.srambical/jafar/sample.py",6379,0,"m",python,content +2747,5106811,"/fast/home/franz.srambical/jafar/sample.py",6380,0,"",python,selection_keyboard +2748,5107377,"/fast/home/franz.srambical/jafar/sample.py",6379,1,"",python,content +2749,5107884,"/fast/home/franz.srambical/jafar/sample.py",6379,0,"_",python,content +2750,5107884,"/fast/home/franz.srambical/jafar/sample.py",6380,0,"",python,selection_keyboard +2751,5108333,"/fast/home/franz.srambical/jafar/sample.py",6380,0,"b",python,content +2752,5108334,"/fast/home/franz.srambical/jafar/sample.py",6381,0,"",python,selection_keyboard +2753,5108571,"/fast/home/franz.srambical/jafar/sample.py",6381,0,"a",python,content +2754,5108572,"/fast/home/franz.srambical/jafar/sample.py",6382,0,"",python,selection_keyboard +2755,5108587,"/fast/home/franz.srambical/jafar/sample.py",6382,0,"t",python,content +2756,5108588,"/fast/home/franz.srambical/jafar/sample.py",6383,0,"",python,selection_keyboard +2757,5108745,"/fast/home/franz.srambical/jafar/sample.py",6383,0,"c",python,content +2758,5108745,"/fast/home/franz.srambical/jafar/sample.py",6384,0,"",python,selection_keyboard +2759,5108859,"/fast/home/franz.srambical/jafar/sample.py",6384,0,"h",python,content +2760,5108860,"/fast/home/franz.srambical/jafar/sample.py",6385,0,"",python,selection_keyboard +2761,5109168,"/fast/home/franz.srambical/jafar/sample.py",6385,0,"_",python,content +2762,5109168,"/fast/home/franz.srambical/jafar/sample.py",6386,0,"",python,selection_keyboard +2763,5110704,"/fast/home/franz.srambical/jafar/sample.py",6386,0,"B",python,content +2764,5110705,"/fast/home/franz.srambical/jafar/sample.py",6387,0,"",python,selection_keyboard +2765,5113845,"/fast/home/franz.srambical/jafar/sample.py",6387,0,"S",python,content +2766,5113845,"/fast/home/franz.srambical/jafar/sample.py",6388,0,"",python,selection_keyboard +2767,5114345,"/fast/home/franz.srambical/jafar/sample.py",6388,0,"1",python,content +2768,5114345,"/fast/home/franz.srambical/jafar/sample.py",6389,0,"",python,selection_keyboard +2769,5122507,"/fast/home/franz.srambical/jafar/sample.py",6389,0," ",python,content +2770,5122507,"/fast/home/franz.srambical/jafar/sample.py",6390,0,"",python,selection_keyboard +2771,5123168,"/fast/home/franz.srambical/jafar/sample.py",6390,0,"=",python,content +2772,5123168,"/fast/home/franz.srambical/jafar/sample.py",6391,0,"",python,selection_keyboard +2773,5123792,"/fast/home/franz.srambical/jafar/sample.py",6391,0," jnp.reshape(action_batch_E, (args.batch_size, args.seq_len, 1, action_batch_E.shape[-1]))",python,content +2774,5124067,"/fast/home/franz.srambical/jafar/sample.py",6480,0,"",python,selection_command +2775,5124459,"/fast/home/franz.srambical/jafar/sample.py",6478,0,"",python,selection_command +2776,5124705,"/fast/home/franz.srambical/jafar/sample.py",6477,0,"",python,selection_command +2777,5124727,"/fast/home/franz.srambical/jafar/sample.py",6475,0,"",python,selection_command +2778,5124760,"/fast/home/franz.srambical/jafar/sample.py",6470,0,"",python,selection_command +2779,5124793,"/fast/home/franz.srambical/jafar/sample.py",6469,0,"",python,selection_command +2780,5124828,"/fast/home/franz.srambical/jafar/sample.py",6455,0,"",python,selection_command +2781,5124861,"/fast/home/franz.srambical/jafar/sample.py",6453,0,"",python,selection_command +2782,5124896,"/fast/home/franz.srambical/jafar/sample.py",6452,0,"",python,selection_command +2783,5124930,"/fast/home/franz.srambical/jafar/sample.py",6450,0,"",python,selection_command +2784,5124964,"/fast/home/franz.srambical/jafar/sample.py",6443,0,"",python,selection_command +2785,5125002,"/fast/home/franz.srambical/jafar/sample.py",6442,0,"",python,selection_command +2786,5125108,"/fast/home/franz.srambical/jafar/sample.py",6438,0,"",python,selection_command +2787,5125109,"/fast/home/franz.srambical/jafar/sample.py",6436,0,"",python,selection_command +2788,5125110,"/fast/home/franz.srambical/jafar/sample.py",6426,0,"",python,selection_command +2789,5125132,"/fast/home/franz.srambical/jafar/sample.py",6425,0,"",python,selection_command +2790,5125167,"/fast/home/franz.srambical/jafar/sample.py",6421,0,"",python,selection_command +2791,5125482,"/fast/home/franz.srambical/jafar/sample.py",6420,0,"",python,selection_command +2792,5125765,"/fast/home/franz.srambical/jafar/sample.py",6418,0,"",python,selection_command +2793,5126158,"/fast/home/franz.srambical/jafar/sample.py",6420,0,"",python,selection_command +2794,5126335,"/fast/home/franz.srambical/jafar/sample.py",6421,0,"",python,selection_command +2795,5135462,"/fast/home/franz.srambical/jafar/sample.py",6424,0,"",python,selection_command +2796,5135640,"/fast/home/franz.srambical/jafar/sample.py",6425,0,"",python,selection_command +2797,5135803,"/fast/home/franz.srambical/jafar/sample.py",6435,0,"",python,selection_command +2798,5135936,"/fast/home/franz.srambical/jafar/sample.py",6436,0,"",python,selection_command +2799,5136117,"/fast/home/franz.srambical/jafar/sample.py",6441,0,"",python,selection_command +2800,5136291,"/fast/home/franz.srambical/jafar/sample.py",6442,0,"",python,selection_command +2801,5136428,"/fast/home/franz.srambical/jafar/sample.py",6449,0,"",python,selection_command +2802,5136863,"/fast/home/franz.srambical/jafar/sample.py",6450,0,"",python,selection_command +2803,5137154,"/fast/home/franz.srambical/jafar/sample.py",6450,0,"0",python,content +2804,5137154,"/fast/home/franz.srambical/jafar/sample.py",6451,0,"",python,selection_keyboard +2805,5137854,"/fast/home/franz.srambical/jafar/sample.py",6450,1,"",python,content +2806,5138190,"/fast/home/franz.srambical/jafar/sample.py",6450,0,"-",python,content +2807,5138191,"/fast/home/franz.srambical/jafar/sample.py",6451,0,"",python,selection_keyboard +2808,5138907,"/fast/home/franz.srambical/jafar/sample.py",6451,0,"1",python,content +2809,5138907,"/fast/home/franz.srambical/jafar/sample.py",6452,0,"",python,selection_keyboard +2810,5139509,"/fast/home/franz.srambical/jafar/sample.py",6451,0,"",python,selection_command +2811,5140239,"/fast/home/franz.srambical/jafar/sample.py",6450,0,"",python,selection_command +2812,5140491,"/fast/home/franz.srambical/jafar/sample.py",6443,0,"",python,selection_command +2813,5140520,"/fast/home/franz.srambical/jafar/sample.py",6442,0,"",python,selection_command +2814,5140546,"/fast/home/franz.srambical/jafar/sample.py",6438,0,"",python,selection_command +2815,5140583,"/fast/home/franz.srambical/jafar/sample.py",6436,0,"",python,selection_command +2816,5140687,"/fast/home/franz.srambical/jafar/sample.py",6426,0,"",python,selection_command +2817,5140688,"/fast/home/franz.srambical/jafar/sample.py",6425,0,"",python,selection_command +2818,5140688,"/fast/home/franz.srambical/jafar/sample.py",6421,0,"",python,selection_command +2819,5140727,"/fast/home/franz.srambical/jafar/sample.py",6420,0,"",python,selection_command +2820,5140783,"/fast/home/franz.srambical/jafar/sample.py",6418,0,"",python,selection_command +2821,5140787,"/fast/home/franz.srambical/jafar/sample.py",6404,0,"",python,selection_command +2822,5140860,"/fast/home/franz.srambical/jafar/sample.py",6403,0,"",python,selection_command +2823,5140861,"/fast/home/franz.srambical/jafar/sample.py",6396,0,"",python,selection_command +2824,5140909,"/fast/home/franz.srambical/jafar/sample.py",6395,0,"",python,selection_command +2825,5140920,"/fast/home/franz.srambical/jafar/sample.py",6392,0,"",python,selection_command +2826,5140954,"/fast/home/franz.srambical/jafar/sample.py",6390,0,"",python,selection_command +2827,5140992,"/fast/home/franz.srambical/jafar/sample.py",6373,0,"",python,selection_command +2828,5141055,"/fast/home/franz.srambical/jafar/sample.py",6367,0,"",python,selection_command +2829,5141348,"/fast/home/franz.srambical/jafar/sample.py",6373,0,"",python,selection_command +2830,5141561,"/fast/home/franz.srambical/jafar/sample.py",6390,0,"",python,selection_command +2831,5142471,"/fast/home/franz.srambical/jafar/sample.py",6389,0,"",python,selection_command +2832,5142563,"/fast/home/franz.srambical/jafar/sample.py",6388,0,"",python,selection_command +2833,5142805,"/fast/home/franz.srambical/jafar/sample.py",6387,0,"",python,selection_command +2834,5142856,"/fast/home/franz.srambical/jafar/sample.py",6386,0,"",python,selection_command +2835,5143347,"/fast/home/franz.srambical/jafar/sample.py",6387,0,"",python,selection_command +2836,5143711,"/fast/home/franz.srambical/jafar/sample.py",6388,0,"",python,selection_command +2837,5143827,"/fast/home/franz.srambical/jafar/sample.py",6388,0,"m",python,content +2838,5143827,"/fast/home/franz.srambical/jafar/sample.py",6389,0,"",python,selection_keyboard +2839,5144272,"/fast/home/franz.srambical/jafar/sample.py",6389,0,"1",python,content +2840,5144272,"/fast/home/franz.srambical/jafar/sample.py",6390,0,"",python,selection_keyboard +2841,5144522,"/fast/home/franz.srambical/jafar/sample.py",6389,0,"",python,selection_command +2842,5145032,"/fast/home/franz.srambical/jafar/sample.py",6329,0,"",python,selection_command +2843,5145221,"/fast/home/franz.srambical/jafar/sample.py",6328,0,"",python,selection_command +2844,5145364,"/fast/home/franz.srambical/jafar/sample.py",6327,0,"",python,selection_command +2845,5145509,"/fast/home/franz.srambical/jafar/sample.py",6326,0,"",python,selection_command +2846,5147241,"/fast/home/franz.srambical/jafar/sample.py",5139,0,"",python,selection_command +2847,5148055,"/fast/home/franz.srambical/jafar/sample.py",4063,0,"",python,selection_command +2848,5148788,"/fast/home/franz.srambical/jafar/sample.py",3011,0,"",python,selection_command +2849,5149123,"/fast/home/franz.srambical/jafar/sample.py",1922,0,"",python,selection_command +2850,5150734,"/fast/home/franz.srambical/jafar/sample.py",1903,0,"",python,selection_command +2851,5150979,"/fast/home/franz.srambical/jafar/sample.py",1878,0,"",python,selection_command +2852,5150999,"/fast/home/franz.srambical/jafar/sample.py",1842,0,"",python,selection_command +2853,5151031,"/fast/home/franz.srambical/jafar/sample.py",1833,0,"",python,selection_command +2854,5151065,"/fast/home/franz.srambical/jafar/sample.py",1805,0,"",python,selection_command +2855,5151101,"/fast/home/franz.srambical/jafar/sample.py",1796,0,"",python,selection_command +2856,5151133,"/fast/home/franz.srambical/jafar/sample.py",1771,0,"",python,selection_command +2857,5151166,"/fast/home/franz.srambical/jafar/sample.py",1761,0,"",python,selection_command +2858,5151199,"/fast/home/franz.srambical/jafar/sample.py",1740,0,"",python,selection_command +2859,5151236,"/fast/home/franz.srambical/jafar/sample.py",1719,0,"",python,selection_command +2860,5151534,"/fast/home/franz.srambical/jafar/sample.py",1740,0,"",python,selection_command +2861,5151845,"/fast/home/franz.srambical/jafar/sample.py",1741,0,"",python,selection_command +2862,5151954,"/fast/home/franz.srambical/jafar/sample.py",1743,0,"",python,selection_command +2863,5152156,"/fast/home/franz.srambical/jafar/sample.py",1745,0,"",python,selection_command +2864,5152371,"/fast/home/franz.srambical/jafar/sample.py",1747,0,"",python,selection_command +2865,5152719,"/fast/home/franz.srambical/jafar/sample.py",1748,0,"",python,selection_command +2866,5153418,"/fast/home/franz.srambical/jafar/sample.py",1748,1,"S",python,content +2867,5156040,"/fast/home/franz.srambical/jafar/sample.py",2658,0,"",python,selection_command +2868,5156146,"/fast/home/franz.srambical/jafar/sample.py",3043,0,"",python,selection_command +2869,5156317,"/fast/home/franz.srambical/jafar/sample.py",4282,0,"",python,selection_command +2870,5156958,"/fast/home/franz.srambical/jafar/sample.py",5013,0,"",python,selection_command +2871,5157125,"/fast/home/franz.srambical/jafar/sample.py",7623,0,"",python,selection_command +2872,5157692,"/fast/home/franz.srambical/jafar/sample.py",7628,0,"",python,selection_command +2873,5158862,"/fast/home/franz.srambical/jafar/sample.py",7623,0,"",python,selection_command +2874,5158863,"/fast/home/franz.srambical/jafar/sample.py",5013,0,"",python,selection_command +2875,5158945,"/fast/home/franz.srambical/jafar/sample.py",4282,0,"",python,selection_command +2876,5159189,"/fast/home/franz.srambical/jafar/sample.py",3043,0,"",python,selection_command +2877,5159215,"/fast/home/franz.srambical/jafar/sample.py",2658,0,"",python,selection_command +2878,5159577,"/fast/home/franz.srambical/jafar/sample.py",1719,0,"",python,selection_command +2879,5160023,"/fast/home/franz.srambical/jafar/sample.py",1523,0,"",python,selection_command +2880,5160957,"/fast/home/franz.srambical/jafar/sample.py",1543,0,"",python,selection_command +2881,5161154,"/fast/home/franz.srambical/jafar/sample.py",1565,0,"",python,selection_command +2882,5161179,"/fast/home/franz.srambical/jafar/sample.py",1614,0,"",python,selection_command +2883,5161284,"/fast/home/franz.srambical/jafar/sample.py",1653,0,"",python,selection_command +2884,5161284,"/fast/home/franz.srambical/jafar/sample.py",1680,0,"",python,selection_command +2885,5161479,"/fast/home/franz.srambical/jafar/sample.py",1698,0,"",python,selection_command +2886,5161556,"/fast/home/franz.srambical/jafar/sample.py",1715,0,"",python,selection_command +2887,5162031,"/fast/home/franz.srambical/jafar/sample.py",1711,21,"",python,content +2888,5162039,"/fast/home/franz.srambical/jafar/sample.py",1719,0,"",python,selection_command +2889,5163223,"/fast/home/franz.srambical/jafar/sample.py",2720,0,"",python,selection_command +2890,5163733,"/fast/home/franz.srambical/jafar/sample.py",3705,0,"",python,selection_command +2891,5164790,"/fast/home/franz.srambical/jafar/sample.py",4826,0,"",python,selection_command +2892,5165753,"/fast/home/franz.srambical/jafar/sample.py",4860,0,"",python,selection_command +2893,5166002,"/fast/home/franz.srambical/jafar/sample.py",4892,0,"",python,selection_command +2894,5166031,"/fast/home/franz.srambical/jafar/sample.py",4906,0,"",python,selection_command +2895,5166221,"/fast/home/franz.srambical/jafar/sample.py",4924,0,"",python,selection_command +2896,5166527,"/fast/home/franz.srambical/jafar/sample.py",4981,0,"",python,selection_command +2897,5166527,"/fast/home/franz.srambical/jafar/sample.py",4998,0,"",python,selection_command +2898,5166544,"/fast/home/franz.srambical/jafar/sample.py",5043,0,"",python,selection_command +2899,5166577,"/fast/home/franz.srambical/jafar/sample.py",5061,0,"",python,selection_command +2900,5166600,"/fast/home/franz.srambical/jafar/sample.py",5126,0,"",python,selection_command +2901,5166723,"/fast/home/franz.srambical/jafar/sample.py",5199,0,"",python,selection_command +2902,5166723,"/fast/home/franz.srambical/jafar/sample.py",5241,0,"",python,selection_command +2903,5166724,"/fast/home/franz.srambical/jafar/sample.py",5329,0,"",python,selection_command +2904,5166733,"/fast/home/franz.srambical/jafar/sample.py",5386,0,"",python,selection_command +2905,5166767,"/fast/home/franz.srambical/jafar/sample.py",5405,0,"",python,selection_command +2906,5166802,"/fast/home/franz.srambical/jafar/sample.py",5422,0,"",python,selection_command +2907,5166844,"/fast/home/franz.srambical/jafar/sample.py",5463,0,"",python,selection_command +2908,5166876,"/fast/home/franz.srambical/jafar/sample.py",5490,0,"",python,selection_command +2909,5166901,"/fast/home/franz.srambical/jafar/sample.py",5529,0,"",python,selection_command +2910,5166934,"/fast/home/franz.srambical/jafar/sample.py",5572,0,"",python,selection_command +2911,5167051,"/fast/home/franz.srambical/jafar/sample.py",5599,0,"",python,selection_command +2912,5167052,"/fast/home/franz.srambical/jafar/sample.py",5617,0,"",python,selection_command +2913,5167052,"/fast/home/franz.srambical/jafar/sample.py",5650,0,"",python,selection_command +2914,5167246,"/fast/home/franz.srambical/jafar/sample.py",5678,0,"",python,selection_command +2915,5167425,"/fast/home/franz.srambical/jafar/sample.py",5700,0,"",python,selection_command +2916,5167455,"/fast/home/franz.srambical/jafar/sample.py",5725,0,"",python,selection_command +2917,5167576,"/fast/home/franz.srambical/jafar/sample.py",5752,0,"",python,selection_command +2918,5167576,"/fast/home/franz.srambical/jafar/sample.py",5778,0,"",python,selection_command +2919,5167576,"/fast/home/franz.srambical/jafar/sample.py",5807,0,"",python,selection_command +2920,5167592,"/fast/home/franz.srambical/jafar/sample.py",5923,0,"",python,selection_command +2921,5167628,"/fast/home/franz.srambical/jafar/sample.py",5946,0,"",python,selection_command +2922,5167660,"/fast/home/franz.srambical/jafar/sample.py",5978,0,"",python,selection_command +2923,5167695,"/fast/home/franz.srambical/jafar/sample.py",5990,0,"",python,selection_command +2924,5167731,"/fast/home/franz.srambical/jafar/sample.py",6008,0,"",python,selection_command +2925,5167763,"/fast/home/franz.srambical/jafar/sample.py",6042,0,"",python,selection_command +2926,5167919,"/fast/home/franz.srambical/jafar/sample.py",6083,0,"",python,selection_command +2927,5168169,"/fast/home/franz.srambical/jafar/sample.py",6156,0,"",python,selection_command +2928,5168201,"/fast/home/franz.srambical/jafar/sample.py",6208,0,"",python,selection_command +2929,5168227,"/fast/home/franz.srambical/jafar/sample.py",6261,0,"",python,selection_command +2930,5168261,"/fast/home/franz.srambical/jafar/sample.py",6304,0,"",python,selection_command +2931,5168428,"/fast/home/franz.srambical/jafar/sample.py",6364,0,"",python,selection_command +2932,5170038,"/fast/home/franz.srambical/jafar/sample.py",6371,0,"",python,selection_command +2933,5170289,"/fast/home/franz.srambical/jafar/sample.py",6373,0,"",python,selection_command +2934,5170315,"/fast/home/franz.srambical/jafar/sample.py",6376,0,"",python,selection_command +2935,5170348,"/fast/home/franz.srambical/jafar/sample.py",6377,0,"",python,selection_command +2936,5170383,"/fast/home/franz.srambical/jafar/sample.py",6384,0,"",python,selection_command +2937,5170416,"/fast/home/franz.srambical/jafar/sample.py",6385,0,"",python,selection_command +2938,5170450,"/fast/home/franz.srambical/jafar/sample.py",6399,0,"",python,selection_command +2939,5170484,"/fast/home/franz.srambical/jafar/sample.py",6401,0,"",python,selection_command +2940,5170518,"/fast/home/franz.srambical/jafar/sample.py",6402,0,"",python,selection_command +2941,5171676,"/fast/home/franz.srambical/jafar/sample.py",6401,0,"",python,selection_command +2942,5172053,"/fast/home/franz.srambical/jafar/sample.py",6402,0,"",python,selection_command +2943,5172301,"/fast/home/franz.srambical/jafar/sample.py",6406,0,"",python,selection_command +2944,5172325,"/fast/home/franz.srambical/jafar/sample.py",6407,0,"",python,selection_command +2945,5172358,"/fast/home/franz.srambical/jafar/sample.py",6417,0,"",python,selection_command +2946,5172393,"/fast/home/franz.srambical/jafar/sample.py",6419,0,"",python,selection_command +2947,5172425,"/fast/home/franz.srambical/jafar/sample.py",6423,0,"",python,selection_command +2948,5172459,"/fast/home/franz.srambical/jafar/sample.py",6424,0,"",python,selection_command +2949,5172766,"/fast/home/franz.srambical/jafar/sample.py",6431,0,"",python,selection_command +2950,5173236,"/fast/home/franz.srambical/jafar/sample.py",6424,0,"",python,selection_command +2951,5173493,"/fast/home/franz.srambical/jafar/sample.py",6423,0,"",python,selection_command +2952,5173516,"/fast/home/franz.srambical/jafar/sample.py",6419,0,"",python,selection_command +2953,5173548,"/fast/home/franz.srambical/jafar/sample.py",6417,0,"",python,selection_command +2954,5173581,"/fast/home/franz.srambical/jafar/sample.py",6407,0,"",python,selection_command +2955,5173614,"/fast/home/franz.srambical/jafar/sample.py",6406,0,"",python,selection_command +2956,5173647,"/fast/home/franz.srambical/jafar/sample.py",6402,0,"",python,selection_command +2957,5173680,"/fast/home/franz.srambical/jafar/sample.py",6401,0,"",python,selection_command +2958,5173952,"/fast/home/franz.srambical/jafar/sample.py",6399,0,"",python,selection_command +2959,5174169,"/fast/home/franz.srambical/jafar/sample.py",6385,0,"",python,selection_command +2960,5174797,"/fast/home/franz.srambical/jafar/sample.py",6398,0,"",python,selection_command +2961,5190416,"/fast/home/franz.srambical/jafar/sample.py",6399,0,"",python,selection_command +2962,5190674,"/fast/home/franz.srambical/jafar/sample.py",6401,0,"",python,selection_command +2963,5190698,"/fast/home/franz.srambical/jafar/sample.py",6405,0,"",python,selection_command +2964,5190730,"/fast/home/franz.srambical/jafar/sample.py",6406,0,"",python,selection_command +2965,5190760,"/fast/home/franz.srambical/jafar/sample.py",6416,0,"",python,selection_command +2966,5190795,"/fast/home/franz.srambical/jafar/sample.py",6417,0,"",python,selection_command +2967,5190831,"/fast/home/franz.srambical/jafar/sample.py",6422,0,"",python,selection_command +2968,5190862,"/fast/home/franz.srambical/jafar/sample.py",6423,0,"",python,selection_command +2969,5190895,"/fast/home/franz.srambical/jafar/sample.py",6430,0,"",python,selection_command +2970,5190930,"/fast/home/franz.srambical/jafar/sample.py",6431,0,"",python,selection_command +2971,5190963,"/fast/home/franz.srambical/jafar/sample.py",6432,0,"",python,selection_command +2972,5190997,"/fast/home/franz.srambical/jafar/sample.py",6433,0,"",python,selection_command +2973,5191574,"/fast/home/franz.srambical/jafar/sample.py",6435,0,"",python,selection_command +2974,5191796,"/fast/home/franz.srambical/jafar/sample.py",6436,0,"",python,selection_command +2975,5192107,"/fast/home/franz.srambical/jafar/sample.py",6438,0,"",python,selection_command +2976,5196919,"/fast/home/franz.srambical/jafar/sample.py",6438,1,"a",python,selection_command +2977,5197006,"/fast/home/franz.srambical/jafar/sample.py",6438,14,"action_batch_E",python,selection_command +2978,5197209,"/fast/home/franz.srambical/jafar/sample.py",6438,15,"action_batch_E.",python,selection_command +2979,5197393,"/fast/home/franz.srambical/jafar/sample.py",6438,20,"action_batch_E.shape",python,selection_command +2980,5197575,"/fast/home/franz.srambical/jafar/sample.py",6438,22,"action_batch_E.shape[-",python,selection_command +2981,5198770,"/fast/home/franz.srambical/jafar/sample.py",6438,23,"action_batch_E.shape[-1",python,selection_command +2982,5198933,"/fast/home/franz.srambical/jafar/sample.py",6438,24,"action_batch_E.shape[-1]",python,selection_command +2983,5199455,"/fast/home/franz.srambical/jafar/sample.py",6438,24,"",python,content +2984,5200913,"/fast/home/franz.srambical/jafar/sample.py",6439,0,"",python,selection_command +2985,5204752,"/fast/home/franz.srambical/jafar/sample.py",6438,0,"",python,selection_command +2986,5204848,"/fast/home/franz.srambical/jafar/sample.py",6438,1,"",python,content +2987,5205317,"/fast/home/franz.srambical/jafar/sample.py",6439,0,")",python,content +2988,5206550,"/fast/home/franz.srambical/jafar/sample.py",6438,0,"action_batch_E.shape[-1]",python,content +2989,5206553,"/fast/home/franz.srambical/jafar/sample.py",6438,0,"",python,selection_command +2990,5207341,"/fast/home/franz.srambical/jafar/sample.py",6438,24,"",python,content +2991,5207595,"/fast/home/franz.srambical/jafar/sample.py",6437,0,"",python,selection_command +2992,5207743,"/fast/home/franz.srambical/jafar/sample.py",6437,1,"",python,content +2993,5209418,"/fast/home/franz.srambical/jafar/sample.py",6436,0,"",python,selection_command +2994,5209804,"/fast/home/franz.srambical/jafar/sample.py",6436,1,"",python,content +2995,5210287,"/fast/home/franz.srambical/jafar/sample.py",6439,0,"",python,selection_command +2996,5210353,"/fast/home/franz.srambical/jafar/sample.py",6439,0,"w",python,content +2997,5210353,"/fast/home/franz.srambical/jafar/sample.py",6440,0,"",python,selection_keyboard +2998,5210510,"/fast/home/franz.srambical/jafar/sample.py",6440,0,"\n",python,content +2999,5211218,"/fast/home/franz.srambical/jafar/sample.py",6439,2,"",python,content +3000,5212455,"/fast/home/franz.srambical/jafar/sample.py",6348,0,"",python,selection_command +3001,5212654,"/fast/home/franz.srambical/jafar/sample.py",6352,0,"",python,selection_command +3002,5212800,"/fast/home/franz.srambical/jafar/sample.py",6371,0,"",python,selection_command +3003,5213058,"/fast/home/franz.srambical/jafar/sample.py",6373,0,"",python,selection_command +3004,5213087,"/fast/home/franz.srambical/jafar/sample.py",6376,0,"",python,selection_command +3005,5213117,"/fast/home/franz.srambical/jafar/sample.py",6377,0,"",python,selection_command +3006,5213460,"/fast/home/franz.srambical/jafar/sample.py",6384,0,"",python,selection_command +3007,5213680,"/fast/home/franz.srambical/jafar/sample.py",6385,0,"",python,selection_command +3008,5227362,"/fast/home/franz.srambical/jafar/sample.py",6347,0,"\n ",python,content +3009,5228394,"/fast/home/franz.srambical/jafar/sample.py",6352,0,"B",python,content +3010,5228394,"/fast/home/franz.srambical/jafar/sample.py",6353,0,"",python,selection_keyboard +3011,5228645,"/fast/home/franz.srambical/jafar/sample.py",6353,0,",",python,content +3012,5228646,"/fast/home/franz.srambical/jafar/sample.py",6354,0,"",python,selection_keyboard +3013,5228920,"/fast/home/franz.srambical/jafar/sample.py",6354,0," ",python,content +3014,5228921,"/fast/home/franz.srambical/jafar/sample.py",6355,0,"",python,selection_keyboard +3015,5233328,"/fast/home/franz.srambical/jafar/sample.py",6355,0,"S",python,content +3016,5233328,"/fast/home/franz.srambical/jafar/sample.py",6356,0,"",python,selection_keyboard +3017,5233866,"/fast/home/franz.srambical/jafar/sample.py",6356,0," ",python,content +3018,5233867,"/fast/home/franz.srambical/jafar/sample.py",6357,0,"",python,selection_keyboard +3019,5235733,"/fast/home/franz.srambical/jafar/sample.py",6357,0,"_",python,content +3020,5235734,"/fast/home/franz.srambical/jafar/sample.py",6358,0,"",python,selection_keyboard +3021,5236094,"/fast/home/franz.srambical/jafar/sample.py",6358,0,",",python,content +3022,5236094,"/fast/home/franz.srambical/jafar/sample.py",6359,0,"",python,selection_keyboard +3023,5237013,"/fast/home/franz.srambical/jafar/sample.py",6359,0," ",python,content +3024,5237014,"/fast/home/franz.srambical/jafar/sample.py",6360,0,"",python,selection_keyboard +3025,5237341,"/fast/home/franz.srambical/jafar/sample.py",6360,0,"_",python,content +3026,5237341,"/fast/home/franz.srambical/jafar/sample.py",6361,0,"",python,selection_keyboard +3027,5237596,"/fast/home/franz.srambical/jafar/sample.py",6361,0,",",python,content +3028,5237596,"/fast/home/franz.srambical/jafar/sample.py",6362,0,"",python,selection_keyboard +3029,5237875,"/fast/home/franz.srambical/jafar/sample.py",6362,0," ",python,content +3030,5237875,"/fast/home/franz.srambical/jafar/sample.py",6363,0,"",python,selection_keyboard +3031,5242023,"/fast/home/franz.srambical/jafar/sample.py",6363,0,"_",python,content +3032,5242023,"/fast/home/franz.srambical/jafar/sample.py",6364,0,"",python,selection_keyboard +3033,5242638,"/fast/home/franz.srambical/jafar/sample.py",6364,0,",",python,content +3034,5242639,"/fast/home/franz.srambical/jafar/sample.py",6365,0,"",python,selection_keyboard +3035,5243303,"/fast/home/franz.srambical/jafar/sample.py",6365,0," ",python,content +3036,5243303,"/fast/home/franz.srambical/jafar/sample.py",6366,0,"",python,selection_keyboard +3037,5243597,"/fast/home/franz.srambical/jafar/sample.py",6366,0,"_",python,content +3038,5243597,"/fast/home/franz.srambical/jafar/sample.py",6367,0,"",python,selection_keyboard +3039,5244645,"/fast/home/franz.srambical/jafar/sample.py",6367,0," ",python,content +3040,5244645,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"",python,selection_keyboard +3041,5244913,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"+",python,content +3042,5244913,"/fast/home/franz.srambical/jafar/sample.py",6369,0,"",python,selection_keyboard +3043,5245171,"/fast/home/franz.srambical/jafar/sample.py",6369,0," ",python,content +3044,5245171,"/fast/home/franz.srambical/jafar/sample.py",6370,0,"",python,selection_keyboard +3045,5245604,"/fast/home/franz.srambical/jafar/sample.py",6369,1,"",python,content +3046,5245741,"/fast/home/franz.srambical/jafar/sample.py",6368,1,"",python,content +3047,5246080,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"6",python,content +3048,5246080,"/fast/home/franz.srambical/jafar/sample.py",6369,0,"",python,selection_keyboard +3049,5246504,"/fast/home/franz.srambical/jafar/sample.py",6368,1,"",python,content +3050,5246778,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"=",python,content +3051,5246778,"/fast/home/franz.srambical/jafar/sample.py",6369,0,"",python,selection_keyboard +3052,5247605,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"",python,selection_command +3053,5247950,"/fast/home/franz.srambical/jafar/sample.py",6366,0,"",python,selection_command +3054,5248085,"/fast/home/franz.srambical/jafar/sample.py",6364,0,"",python,selection_command +3055,5248239,"/fast/home/franz.srambical/jafar/sample.py",6363,0,"",python,selection_command +3056,5248391,"/fast/home/franz.srambical/jafar/sample.py",6361,0,"",python,selection_command +3057,5248562,"/fast/home/franz.srambical/jafar/sample.py",6360,0,"",python,selection_command +3058,5248733,"/fast/home/franz.srambical/jafar/sample.py",6358,0,"",python,selection_command +3059,5249118,"/fast/home/franz.srambical/jafar/sample.py",6357,0,"",python,selection_command +3060,5249477,"/fast/home/franz.srambical/jafar/sample.py",6358,0,"",python,selection_command +3061,5249689,"/fast/home/franz.srambical/jafar/sample.py",6360,0,"",python,selection_command +3062,5249872,"/fast/home/franz.srambical/jafar/sample.py",6361,0,"",python,selection_command +3063,5250056,"/fast/home/franz.srambical/jafar/sample.py",6363,0,"",python,selection_command +3064,5250259,"/fast/home/franz.srambical/jafar/sample.py",6364,0,"",python,selection_command +3065,5250684,"/fast/home/franz.srambical/jafar/sample.py",6364,1,"",python,content +3066,5250844,"/fast/home/franz.srambical/jafar/sample.py",6364,1,"",python,content +3067,5251030,"/fast/home/franz.srambical/jafar/sample.py",6364,1,"",python,content +3068,5251782,"/fast/home/franz.srambical/jafar/sample.py",6366,0,"",python,selection_command +3069,5252429,"/fast/home/franz.srambical/jafar/sample.py",6366,0," ",python,content +3070,5252429,"/fast/home/franz.srambical/jafar/sample.py",6367,0,"",python,selection_keyboard +3071,5254301,"/fast/home/franz.srambical/jafar/sample.py",6367,0,"v",python,content +3072,5254301,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"",python,selection_keyboard +3073,5254539,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"d",python,content +3074,5254540,"/fast/home/franz.srambical/jafar/sample.py",6369,0,"",python,selection_keyboard +3075,5254553,"/fast/home/franz.srambical/jafar/sample.py",6369,0,"i",python,content +3076,5254554,"/fast/home/franz.srambical/jafar/sample.py",6370,0,"",python,selection_keyboard +3077,5254665,"/fast/home/franz.srambical/jafar/sample.py",6370,0,"e",python,content +3078,5254665,"/fast/home/franz.srambical/jafar/sample.py",6371,0,"",python,selection_keyboard +3079,5255103,"/fast/home/franz.srambical/jafar/sample.py",6370,1,"",python,content +3080,5255260,"/fast/home/franz.srambical/jafar/sample.py",6369,1,"",python,content +3081,5255407,"/fast/home/franz.srambical/jafar/sample.py",6368,1,"",python,content +3082,5255438,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"i",python,content +3083,5255439,"/fast/home/franz.srambical/jafar/sample.py",6369,0,"",python,selection_keyboard +3084,5255577,"/fast/home/franz.srambical/jafar/sample.py",6369,0,"d",python,content +3085,5255577,"/fast/home/franz.srambical/jafar/sample.py",6370,0,"",python,selection_keyboard +3086,5255652,"/fast/home/franz.srambical/jafar/sample.py",6370,0,"e",python,content +3087,5255652,"/fast/home/franz.srambical/jafar/sample.py",6371,0,"",python,selection_keyboard +3088,5255723,"/fast/home/franz.srambical/jafar/sample.py",6371,0,"o",python,content +3089,5255724,"/fast/home/franz.srambical/jafar/sample.py",6372,0,"",python,selection_keyboard +3090,5257380,"/fast/home/franz.srambical/jafar/sample.py",6367,5,"video_batch_BSHWC",python,content +3091,5257779,"/fast/home/franz.srambical/jafar/sample.py",6384,0,".",python,content +3092,5257779,"/fast/home/franz.srambical/jafar/sample.py",6385,0,"",python,selection_keyboard +3093,5258006,"/fast/home/franz.srambical/jafar/sample.py",6385,0,"s",python,content +3094,5258006,"/fast/home/franz.srambical/jafar/sample.py",6386,0,"",python,selection_keyboard +3095,5258012,"/fast/home/franz.srambical/jafar/sample.py",6386,0,"h",python,content +3096,5258012,"/fast/home/franz.srambical/jafar/sample.py",6387,0,"",python,selection_keyboard +3097,5258192,"/fast/home/franz.srambical/jafar/sample.py",6387,0,"a",python,content +3098,5258192,"/fast/home/franz.srambical/jafar/sample.py",6388,0,"",python,selection_keyboard +3099,5258196,"/fast/home/franz.srambical/jafar/sample.py",6388,0,"p",python,content +3100,5258196,"/fast/home/franz.srambical/jafar/sample.py",6389,0,"",python,selection_keyboard +3101,5258273,"/fast/home/franz.srambical/jafar/sample.py",6389,0,"e",python,content +3102,5258274,"/fast/home/franz.srambical/jafar/sample.py",6390,0,"",python,selection_keyboard +3103,5258460,"/fast/home/franz.srambical/jafar/sample.py",6389,0,"",python,selection_command +3104,5259960,"/fast/home/franz.srambical/jafar/sample.py",6432,0,"",python,selection_command +3105,5260062,"/fast/home/franz.srambical/jafar/sample.py",6442,0,"",python,selection_command +3106,5260242,"/fast/home/franz.srambical/jafar/sample.py",6444,0,"",python,selection_command +3107,5260679,"/fast/home/franz.srambical/jafar/sample.py",6445,0,"",python,selection_command +3108,5261595,"/fast/home/franz.srambical/jafar/sample.py",6474,0,"S",python,content +3109,5261595,"/fast/home/franz.srambical/jafar/sample.py",6462,12,"",python,content +3110,5261595,"/fast/home/franz.srambical/jafar/sample.py",6460,0,"B",python,content +3111,5261595,"/fast/home/franz.srambical/jafar/sample.py",6445,15,"",python,content +3112,5261595,"/fast/home/franz.srambical/jafar/sample.py",6356,0,",",python,content +3113,5263967,"/fast/home/franz.srambical/jafar/sample.py",6390,0,"",python,selection_command +3114,5271052,"/fast/home/franz.srambical/jafar/sample.py",5191,0,"",python,selection_command +3115,5273209,"/fast/home/franz.srambical/jafar/sample.py",6352,0,"",python,selection_command +3116,5277112,"/fast/home/franz.srambical/jafar/sample.py",6353,0,"",python,selection_command +3117,5277345,"/fast/home/franz.srambical/jafar/sample.py",6355,0,"",python,selection_command +3118,5277374,"/fast/home/franz.srambical/jafar/sample.py",6356,0,"",python,selection_command +3119,5277407,"/fast/home/franz.srambical/jafar/sample.py",6358,0,"",python,selection_command +3120,5277442,"/fast/home/franz.srambical/jafar/sample.py",6359,0,"",python,selection_command +3121,5277479,"/fast/home/franz.srambical/jafar/sample.py",6361,0,"",python,selection_command +3122,5277925,"/fast/home/franz.srambical/jafar/sample.py",6362,0,"",python,selection_command +3123,5278111,"/fast/home/franz.srambical/jafar/sample.py",6364,0,"",python,selection_command +3124,5278291,"/fast/home/franz.srambical/jafar/sample.py",6366,0,"",python,selection_command +3125,5278456,"/fast/home/franz.srambical/jafar/sample.py",6368,0,"",python,selection_command +3126,5279003,"/fast/home/franz.srambical/jafar/sample.py",6412,0,"",python,selection_command +3127,5285941,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +3128,5286037,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +3129,5286415,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +3130,5289981,"experiments/sample.sh",0,0,"",shellscript,tab +3131,5291362,"experiments/sample.sh",294,1,"2",shellscript,content +3132,5293025,"/fast/home/franz.srambical/jafar/sample.py",0,0,"",python,tab +3133,5294341,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +3134,5294524,"TERMINAL",0,0,"\r\n",,terminal_output +3135,5305807,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n^Csrun: interrupt (one more within 1 sec to abort)\r\nsrun: StepId=14454.14 task 0: running\r\n^Csrun: sending Ctrl-C to StepId=14454.14\r\nsrun: forcing job termination\r\nsrun: Job step aborted: Waiting up to 32 seconds for job step to finish.\r\n[2025-07-31T14:39:28.605] error: *** STEP 14454.14 ON hai001 CANCELLED AT 2025-07-31T14:39:28 DUE to SIGNAL Killed ***\r\n",,terminal_output +3136,5305991,"TERMINAL",0,0,"^Csrun: sending Ctrl-C to StepId=14454.14\r\nsrun: job abort in progress\r\n",,terminal_output +3137,5306185,"TERMINAL",0,0,"]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +3138,5306247,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +3139,5307954,"/fast/home/franz.srambical/jafar/sample.py",7695,0,"",python,selection_mouse +3140,5309702,"/fast/home/franz.srambical/jafar/sample.py",7642,0,"",python,selection_mouse +3141,5313328,"/fast/home/franz.srambical/jafar/sample.py",7696,0,"BSm11",python,content +3142,5313328,"/fast/home/franz.srambical/jafar/sample.py",7695,1,"",python,content +3143,5313328,"/fast/home/franz.srambical/jafar/sample.py",7649,0,"BSm11",python,content +3144,5313328,"/fast/home/franz.srambical/jafar/sample.py",7648,1,"",python,content +3145,5316056,"TERMINAL",0,0,"bash experiments/sample.sh ",,terminal_output +3146,5316252,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +3147,5327026,"TERMINAL",0,0,"/fast/home/franz.srambical/jafar/.venv/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1256: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\r\n warnings.warn(\r\n",,terminal_output +3148,5327300,"/fast/home/franz.srambical/jafar/sample.py",6299,0,"",python,selection_mouse +3149,5329592,"/fast/home/franz.srambical/jafar/sample.py",6401,0,"",python,selection_mouse +3150,5333521,"/fast/home/franz.srambical/jafar/sample.py",6357,0,"",python,selection_command +3151,5334075,"/fast/home/franz.srambical/jafar/sample.py",6348,43," B, S, _, _, _ = video_batch_BSHWC.shape",python,selection_command +3152,5334520,"/fast/home/franz.srambical/jafar/sample.py",6348,109," B, S, _, _, _ = video_batch_BSHWC.shape\n action_batch_BSm11 = jnp.reshape(action_batch_E, (B, S-1, 1))",python,selection_command +3153,5334860,"/fast/home/franz.srambical/jafar/sample.py",6348,110,"",python,content +3154,5335023,"TERMINAL",0,0,"2025-07-31 14:39:57.829242: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +3155,5335729,"/fast/home/franz.srambical/jafar/sample.py",6349,0,"",python,selection_command +3156,5335977,"/fast/home/franz.srambical/jafar/sample.py",6387,0,"",python,selection_command +3157,5336013,"/fast/home/franz.srambical/jafar/sample.py",6467,0,"",python,selection_command +3158,5336040,"/fast/home/franz.srambical/jafar/sample.py",6529,0,"",python,selection_command +3159,5336075,"/fast/home/franz.srambical/jafar/sample.py",6624,0,"",python,selection_command +3160,5336122,"/fast/home/franz.srambical/jafar/sample.py",6707,0,"",python,selection_command +3161,5336151,"/fast/home/franz.srambical/jafar/sample.py",6731,0,"",python,selection_command +3162,5336176,"/fast/home/franz.srambical/jafar/sample.py",6813,0,"",python,selection_command +3163,5336220,"/fast/home/franz.srambical/jafar/sample.py",6826,0,"",python,selection_command +3164,5336251,"/fast/home/franz.srambical/jafar/sample.py",6853,0,"",python,selection_command +3165,5336278,"/fast/home/franz.srambical/jafar/sample.py",6854,0,"",python,selection_command +3166,5336399,"/fast/home/franz.srambical/jafar/sample.py",6884,0,"",python,selection_command +3167,5336399,"/fast/home/franz.srambical/jafar/sample.py",6936,0,"",python,selection_command +3168,5336399,"/fast/home/franz.srambical/jafar/sample.py",6997,0,"",python,selection_command +3169,5336412,"/fast/home/franz.srambical/jafar/sample.py",7076,0,"",python,selection_command +3170,5336445,"/fast/home/franz.srambical/jafar/sample.py",7133,0,"",python,selection_command +3171,5336479,"/fast/home/franz.srambical/jafar/sample.py",7171,0,"",python,selection_command +3172,5336516,"/fast/home/franz.srambical/jafar/sample.py",7253,0,"",python,selection_command +3173,5336550,"/fast/home/franz.srambical/jafar/sample.py",7254,0,"",python,selection_command +3174,5336583,"/fast/home/franz.srambical/jafar/sample.py",7279,0,"",python,selection_command +3175,5336792,"/fast/home/franz.srambical/jafar/sample.py",7331,0,"",python,selection_command +3176,5338271,"/fast/home/franz.srambical/jafar/sample.py",7428,0,"\n ",python,content +3177,5338485,"/fast/home/franz.srambical/jafar/sample.py",7429,4,"",python,content +3178,5338587,"/fast/home/franz.srambical/jafar/sample.py",7429,0,"\n B, S, _, _, _ = video_batch_BSHWC.shape\n action_batch_BSm11 = jnp.reshape(action_batch_E, (B, S-1, 1))",python,content +3179,5338589,"/fast/home/franz.srambical/jafar/sample.py",7434,0,"",python,selection_command +3180,5338753,"TERMINAL",0,0,"2025-07-31 14:40:01.557447: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:40:01.557961: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-07-31 14:40:01.557982: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +3181,5339810,"/fast/home/franz.srambical/jafar/sample.py",7429,0,"",python,selection_command +3182,5340322,"/fast/home/franz.srambical/jafar/sample.py",7429,1,"",python,content +3183,5340328,"/fast/home/franz.srambical/jafar/sample.py",7433,0,"",python,selection_command +3184,5342363,"TERMINAL",0,0,"SSIM: 0.009795557707548141\r\n",,terminal_output +3185,5342581,"/fast/home/franz.srambical/jafar/sample.py",7434,0,"",python,selection_command +3186,5343751,"TERMINAL",0,0,"]0;franz.srambical@hai-login1:~/jafar[?2004h[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +3187,5343944,"/fast/home/franz.srambical/jafar/sample.py",7478,0,"",python,selection_command +3188,5344198,"/fast/home/franz.srambical/jafar/sample.py",7434,0,"",python,selection_command +3189,5344434,"/fast/home/franz.srambical/jafar/sample.py",7433,0,"",python,selection_command +3190,5345265,"/fast/home/franz.srambical/jafar/sample.py",7432,0,"",python,selection_command +3191,5390879,"TERMINAL",0,0,"\r[franz.srambical@hai001.haicore.berlin:~/jafar] $ ",,terminal_output +3192,5394037,"genie.py",0,0,"",python,tab +3193,5394038,"genie.py",128,0,"",python,selection_command +3194,5411553,"sample.py",0,0,"",python,tab +3195,5411553,"sample.py",1226,0,"",python,selection_command +3196,5429056,"genie.py",0,0,"",python,tab +3197,5429461,"genie.py",0,0,"",python,selection_command +3198,5430128,"genie.py",714,0,"",python,selection_command +3199,5430277,"genie.py",1744,0,"",python,selection_command +3200,5430427,"genie.py",2920,0,"",python,selection_command +3201,5430718,"genie.py",4085,0,"",python,selection_command +3202,5431010,"genie.py",5348,0,"",python,selection_command +3203,5431321,"genie.py",6469,0,"",python,selection_command +3204,5433644,"sample.py",0,0,"",python,tab +3205,5486459,"sample.py",0,0,"from dataclasses import dataclass\nimport time\nimport os\nimport optax\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport flax.linen as nn\nimport numpy as np\nimport orbax.checkpoint as ocp\nfrom PIL import Image, ImageDraw\nimport tyro\nfrom flax import nnx\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n tokenizer_ffn_dim: int = 2048\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 4\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n lam_ffn_dim: int = 2048\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 4\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_dim: int = 512\n dyna_ffn_dim: int = 2048\n dyna_num_blocks: int = 6\n dyna_num_heads: int = 8\n param_dtype = jnp.float32\n dtype = jnp.bfloat16\n use_flash_attention: bool = True\n\n\nargs = tyro.cli(Args)\n\nif __name__ == ""__main__"":\n """"""\n Dimension keys:\n B: batch size\n T: number of input (conditioning) frames\n N: number of patches per frame\n S: sequence length\n H: height\n W: width\n E: B * (S - 1)\n """"""\n jax.distributed.initialize()\n\n rng = jax.random.key(args.seed)\n\n # --- Load Genie checkpoint ---\n rngs = nnx.Rngs(rng)\n genie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n tokenizer_ffn_dim=args.tokenizer_ffn_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n lam_ffn_dim=args.lam_ffn_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n lam_co_train=False,\n # Dynamics\n dyna_dim=args.dyna_dim,\n dyna_ffn_dim=args.dyna_ffn_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n rngs=rngs,\n )\n\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeSave, ocp.handlers.PyTreeCheckpointHandler\n )\n handler_registry.add(\n ""model_state"", ocp.args.PyTreeRestore, ocp.handlers.PyTreeCheckpointHandler\n )\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n checkpoint_manager = ocp.CheckpointManager(\n args.checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n\n dummy_tx = optax.adamw(\n learning_rate=optax.linear_schedule(0.0001, 0.0001, 10000),\n b1=0.9,\n b2=0.9,\n weight_decay=1e-4,\n mu_dtype=args.dtype,\n )\n dummy_optimizer = nnx.Optimizer(genie, dummy_tx)\n\n abstract_optimizer = nnx.eval_shape(lambda: dummy_optimizer)\n abstract_optimizer_state = nnx.state(abstract_optimizer)\n restored = checkpoint_manager.restore(\n checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.PyTreeRestore(abstract_optimizer_state), # type: ignore\n ),\n )\n restored_optimizer_state = restored[""model_state""]\n nnx.update(dummy_optimizer, restored_optimizer_state)\n\n # --- Define sampling function ---\n def _sampling_fn(model: Genie, batch: dict) -> jax.Array:\n """"""Runs Genie.sample with pre-defined generation hyper-parameters.""""""\n return model.sample(\n batch,\n args.seq_len,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n )\n\n # --- Define autoregressive sampling loop ---\n @nnx.jit\n def _autoreg_sample(rng, video_batch_BSHWC, action_batch_E):\n input_video_BTHWC = video_batch_BSHWC[:, : args.start_frame + 1]\n rng, _rng = jax.random.split(rng)\n batch = dict(videos=input_video_BTHWC, latent_actions=action_batch_E, rng=_rng)\n generated_vid_BSHWC = _sampling_fn(genie, batch)\n return generated_vid_BSHWC\n\n # --- Get video + latent actions ---\n array_record_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".array_record"")\n ]\n dataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n args.batch_size,\n args.image_height,\n args.image_width,\n args.image_channels,\n # We don't use workers in order to avoid grain shutdown issues (https://github.com/google/grain/issues/398)\n num_workers=0,\n prefetch_buffer_size=1,\n seed=args.seed,\n )\n dataloader = iter(dataloader)\n video_batch_BSHWC = next(dataloader)\n gt_video = jnp.asarray(video_batch_BSHWC, dtype=jnp.float32) / 255.0\n video_batch_BSHWC = gt_video.astype(args.dtype)\n # Get latent actions for all videos in the batch\n batch = dict(videos=video_batch_BSHWC)\n action_batch_E = genie.vq_encode(batch, training=False)\n\n # --- Sample + evaluate video ---\n recon_video_BSHWC = _autoreg_sample(rng, video_batch_BSHWC, action_batch_E)\n recon_video_BSHWC = recon_video_BSHWC.astype(jnp.float32)\n gt = gt_video[:, : recon_video_BSHWC.shape[1]].clip(0, 1).reshape(-1, *gt_video.shape[2:])\n recon = recon_video_BSHWC.clip(0, 1).reshape(-1, *recon_video_BSHWC.shape[2:])\n ssim = jnp.asarray(\n pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :])\n ).mean()\n print(f""SSIM: {ssim}"")\n\n # --- Construct video ---\n true_videos = (gt_video * 255).astype(np.uint8)\n pred_videos = (recon_video_BSHWC * 255).astype(np.uint8)\n video_comparison = np.zeros((2, *recon_video_BSHWC.shape), dtype=np.uint8)\n video_comparison[0] = true_videos[:, : args.seq_len]\n video_comparison[1] = pred_videos\n frames = einops.rearrange(video_comparison, ""n b t h w c -> t (b h) (n w) c"")\n\n # --- Save video ---\n imgs = [Image.fromarray(img) for img in frames]\n # Write actions on each frame, on each row (i.e., for each video in the batch, on the GT row)\n B, S, _, _, _ = video_batch_BSHWC.shape\n action_batch_BSm11 = jnp.reshape(action_batch_E, (B, S-1, 1))\n for t, img in enumerate(imgs[1:]):\n d = ImageDraw.Draw(img)\n for row in range(action_batch_BSm11.shape[0]):\n action = action_batch_BSm11[row, t, 0]\n y_offset = row * video_batch_BSHWC.shape[2] + 2\n d.text((2, y_offset), f""{action}"", fill=255)\n imgs[0].save(\n f""generation_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n )\n",python,tab +3206,5486459,"sample.py",1680,0,"",python,selection_command +3207,5537069,"sample.py",6768,0,"",python,selection_mouse +3208,5537621,"sample.py",6815,0,"",python,selection_mouse +3209,5555749,"sample.py",0,0,"Switched from branch 'fix-reshape-typo-2' to 'missing-reshape-sample-py'",python,git_branch_checkout +3210,5567769,"sample.py",6415,0,"",python,selection_mouse diff --git a/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-5342e4d6-3c20-40cb-9bcb-64bf1931df6e1753973941916-2025_07_31-16.59.20.943/source.csv b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-5342e4d6-3c20-40cb-9bcb-64bf1931df6e1753973941916-2025_07_31-16.59.20.943/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..044c61be7cd91aa82ef9ec060f4c1849a5187124 --- /dev/null +++ b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-5342e4d6-3c20-40cb-9bcb-64bf1931df6e1753973941916-2025_07_31-16.59.20.943/source.csv @@ -0,0 +1,5 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,3,"utils/nn.py",0,0,"import math\nfrom typing import Tuple, Callable\n\nfrom flax import nnx\nimport jax\nimport jax.numpy as jnp\nimport einops\n\n\nclass PositionalEncoding(nnx.Module):\n """"""https://uvadlc-notebooks.readthedocs.io/en/latest/tutorial_notebooks/JAX/tutorial6/Transformers_and_MHAttention.html""""""\n\n def __init__(self, d_model: int, max_len: int = 5000):\n self.d_model = d_model\n self.max_len = max_len\n\n pe = jnp.zeros((self.max_len, self.d_model))\n position = jnp.arange(0, self.max_len, dtype=jnp.float32)[:, None]\n div_term = jnp.exp(\n jnp.arange(0, self.d_model, 2) * (-math.log(10000.0) / self.d_model)\n )\n pe = pe.at[:, 0::2].set(jnp.sin(position * div_term))\n pe = pe.at[:, 1::2].set(jnp.cos(position * div_term))\n self.pe = nnx.Variable(pe)\n\n def __call__(self, x: jax.Array) -> jax.Array:\n x = x + self.pe[: x.shape[2]]\n return x\n\n\nclass STBlock(nnx.Module):\n def __init__(\n self,\n dim: int,\n ffn_dim: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n ):\n self.dim = dim\n self.ffn_dim = ffn_dim\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.spatial_pos_enc = PositionalEncoding(self.dim)\n self.spatial_norm = nnx.LayerNorm(\n num_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.spatial_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.dim,\n qkv_features=self.dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=False\n ),\n rngs=rngs,\n decode=False,\n )\n\n self.temporal_pos_enc = PositionalEncoding(self.dim)\n self.temporal_norm = nnx.LayerNorm(\n num_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.temporal_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.dim,\n qkv_features=self.dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=True\n ),\n rngs=rngs,\n decode=False,\n )\n\n self.ffn_norm = nnx.LayerNorm(\n num_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_dense1 = nnx.Linear(\n in_features=self.dim,\n out_features=self.ffn_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_dense2 = nnx.Linear(\n in_features=self.ffn_dim,\n out_features=self.dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n @nnx.remat\n def __call__(self, x_BTNM: jax.Array) -> jax.Array:\n # --- Spatial attention ---\n z_BTNM = self.spatial_pos_enc(x_BTNM)\n z_BTNM = self.spatial_norm(z_BTNM)\n z_BTNM = self.spatial_attention(z_BTNM)\n x_BTNM = x_BTNM + z_BTNM\n\n # --- Temporal attention ---\n x_BNTM = x_BTNM.swapaxes(1, 2)\n z_BNTM = self.temporal_pos_enc(x_BNTM)\n z_BNTM = self.temporal_norm(z_BNTM)\n z_BNTM = self.temporal_attention(z_BNTM)\n x_BNTM = x_BNTM + z_BNTM\n x_BTNM = x_BNTM.swapaxes(1, 2)\n\n # --- Feedforward ---\n z_BTNM = self.ffn_norm(x_BTNM)\n z_BTND = self.ffn_dense1(z_BTNM)\n z_BTND = jax.nn.gelu(z_BTND)\n z_BTNM = self.ffn_dense2(z_BTND)\n x_BTNM = x_BTNM + z_BTNM\n\n return x_BTNM\n\n\nclass STTransformer(nnx.Module):\n """"""\n Dimension keys:\n B: batch size\n T: number of frames\n N: number of patches per frame\n I: number of input features\n M: model dimension\n D: FFN dimension\n O: number of output features\n """"""\n def __init__(\n self,\n input_dim: int,\n model_dim: int,\n ffn_dim: int,\n out_dim: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n rngs: nnx.Rngs,\n ):\n self.input_dim = input_dim\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.out_dim = out_dim\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.input_norm1 = nnx.LayerNorm(\n num_features=self.input_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_dense = nnx.Linear(\n in_features=self.input_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_norm2 = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n self.blocks = []\n for _ in range(self.num_blocks):\n self.blocks.append(\n STBlock(\n dim=self.model_dim,\n ffn_dim=self.ffn_dim,\n num_heads=self.num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n rngs=rngs,\n )\n )\n\n self.output_dense = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.out_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n def __call__(self, x_BTNI: jax.Array) -> jax.Array:\n x_BTNI = self.input_norm1(x_BTNI)\n x_BTNM = self.input_dense(x_BTNI)\n x_BTNM = self.input_norm2(x_BTNM)\n\n for block in self.blocks:\n x_BTNM = block(x_BTNM)\n\n x_BTNO = self.output_dense(x_BTNM)\n return x_BTNO\n\nclass TransformerBlock(nnx.Module):\n def __init__(\n self,\n model_dim: int,\n ffn_dim: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n decode: bool,\n rngs: nnx.Rngs,\n ):\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.temporal_pos_enc = PositionalEncoding(self.model_dim)\n self.spatial_pos_enc = PositionalEncoding(self.model_dim)\n self.temporal_norm = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.spatial_norm = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_norm = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.temporal_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.model_dim,\n qkv_features=self.model_dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=True\n ),\n rngs=rngs,\n decode=decode,\n )\n self.spatial_attention = nnx.MultiHeadAttention(\n num_heads=self.num_heads,\n in_features=self.model_dim,\n qkv_features=self.model_dim,\n dropout_rate=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n attention_fn=_create_flash_attention_fn(\n self.use_flash_attention, is_causal=True\n ),\n rngs=rngs,\n decode=decode,\n )\n self.ffn_dense1 = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.ffn_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.ffn_dense2 = nnx.Linear(\n in_features=self.ffn_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n @nnx.remat\n def __call__(self, x_BTNM: jax.Array) -> jax.Array:\n # FIXME (f.srambical): this is exactly the same as STBlock (except for the positional encoding)\n # --- Spatial attention ---\n _, T, N, _ = x_BTNM.shape\n z_FNM = einops.rearrange(x_BTNM, ""b t n m -> (b t) n m"")\n z_FNM = self.spatial_norm(z_FNM)\n # FIXME (f.srambical): only input last token\n z_FNM = self.spatial_attention(z_FNM)\n z_BTNM = einops.rearrange(z_FNM, ""(b t) n m -> b t n m"", t=T)\n x_BTNM = x_BTNM + z_BTNM\n # --- Temporal attention ---\n z_PTM = einops.rearrange(x_BTNM, ""b t n m -> (b n) t m"")\n z_PTM = self.temporal_norm(z_PTM)\n # FIXME (f.srambical): only input last token\n z_PTM = self.temporal_attention(z_PTM)\n z_BTNM = einops.rearrange(z_PTM, ""(b n) t m -> b t n m"", n=N)\n x_BTNM = x_BTNM + z_BTNM\n # --- Feedforward ---\n z_BTNM = self.ffn_norm(x_BTNM)\n z_BTND = self.ffn_dense1(z_BTNM)\n z_BTND = jax.nn.gelu(z_BTND)\n z_BTNM = self.ffn_dense2(z_BTND)\n x_BTNM = x_BTNM + z_BTNM\n\n return x_BTNM\n\nclass Transformer(nnx.Module):\n """"""\n Dimension keys:\n B: batch size\n T: number of frames\n N: number of patches per frame\n I: number of input features\n M: model dimension\n D: FFN dimension\n O: number of output features\n F: number of frames in batch\n P: number of patch positions in batch\n """"""\n def __init__(\n self,\n input_dim: int,\n model_dim: int,\n ffn_dim: int,\n out_dim: int,\n num_blocks: int,\n num_heads: int,\n dropout: float,\n param_dtype: jnp.dtype,\n dtype: jnp.dtype,\n use_flash_attention: bool,\n decode: bool,\n rngs: nnx.Rngs,\n ):\n self.input_dim = input_dim\n self.model_dim = model_dim\n self.ffn_dim = ffn_dim\n self.out_dim = out_dim\n self.num_blocks = num_blocks\n self.num_heads = num_heads\n self.dropout = dropout\n self.param_dtype = param_dtype\n self.dtype = dtype\n self.use_flash_attention = use_flash_attention\n\n self.pos_enc = PositionalEncoding(self.model_dim)\n self.input_norm1 = nnx.LayerNorm(\n num_features=self.input_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_dense = nnx.Linear(\n in_features=self.input_dim,\n out_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n self.input_norm2 = nnx.LayerNorm(\n num_features=self.model_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n self.blocks = []\n for _ in range(self.num_blocks):\n self.blocks.append(\n TransformerBlock(\n model_dim=self.model_dim,\n ffn_dim=self.ffn_dim,\n num_heads=self.num_heads,\n dropout=self.dropout,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n decode=decode,\n rngs=rngs,\n )\n )\n self.output_dense = nnx.Linear(\n in_features=self.model_dim,\n out_features=self.out_dim,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n rngs=rngs,\n )\n\n def __call__(self, x_BTNI: jax.Array) -> jax.Array:\n x_BTNI = self.input_norm1(x_BTNI)\n x_BTNM = self.input_dense(x_BTNI)\n x_BTNM = self.input_norm2(x_BTNM)\n x_BTNM = self.pos_enc(x_BTNM)\n\n for block in self.blocks:\n x_BTNM = block(x_BTNM)\n\n x_BTNV = self.output_dense(x_BTNM)\n return x_BTNV\n\ndef normalize(x: jax.Array) -> jax.Array:\n return x / (jnp.linalg.norm(x, ord=2, axis=-1, keepdims=True) + 1e-8)\n\n\nclass VectorQuantizer(nnx.Module):\n """"""\n Dimension keys:\n D: B * T * N\n K: number of latents\n L: latent dimension\n """"""\n def __init__(\n self, latent_dim: int, num_latents: int, dropout: float, rngs: nnx.Rngs\n ):\n self.latent_dim = latent_dim\n self.num_latents = num_latents\n self.dropout = dropout\n\n self.codebook = nnx.Param(\n normalize(\n nnx.initializers.lecun_uniform()(\n rngs.params(), (self.num_latents, self.latent_dim)\n )\n )\n )\n self.drop = nnx.Dropout(self.dropout, rngs=rngs)\n\n def __call__(\n self, x_DL: jax.Array, training: bool\n ) -> Tuple[jax.Array, jax.Array, jax.Array, jax.Array]:\n # --- Compute distances ---\n x_DL = normalize(x_DL)\n normalized_codebook_KL = normalize(self.codebook.value)\n distance_DK = -jnp.matmul(x_DL, normalized_codebook_KL.T)\n if training:\n distance_DK = self.drop(distance_DK)\n\n # --- Get indices and embeddings ---\n indices_D = jnp.argmin(distance_DK, axis=-1)\n z_DL = self.codebook[indices_D]\n\n # --- Straight through estimator ---\n z_q_DL = x_DL + jax.lax.stop_gradient(z_DL - x_DL)\n return z_q_DL, z_DL, x_DL, indices_D\n\n def get_codes(self, indices_E: jax.Array) -> jax.Array:\n return self.codebook[indices_E]\n\n\ndef _create_flash_attention_fn(use_flash_attention: bool, is_causal: bool) -> Callable:\n """"""\n Create an attention function that uses flash attention if enabled.\n\n Flax MultiHeadAttention provides tensors with shape (batch..., length, num_heads, head_dim)\n jax.nn.dot_product_attention expects (batch, length, num_heads, head_dim).\n\n We need to reshape to ensure compatibility. cuDNN's flash attention additionally\n requires a sequence length that is a multiple of 4. We pad the sequence length to the nearest\n multiple of 4 and mask accordingly.\n """"""\n\n def attention_fn(query, key, value, bias=None, mask=None, **kwargs):\n implementation = ""cudnn"" if use_flash_attention else None\n\n def _rearrange(x):\n return einops.rearrange(x, ""... l h d -> (...) l h d"")\n\n def _pad(x):\n return jnp.pad(x, ((0, 0), (0, pad_size), (0, 0), (0, 0)))\n\n def _fuse_masks(mask: jax.Array, attention_mask: jax.Array) -> jax.Array:\n mask_bool = mask.astype(jnp.bool_)\n expanded_mask = jnp.pad(\n mask_bool, ((0, pad_size), (0, pad_size)), constant_values=False\n )\n return jnp.logical_and(attention_mask, expanded_mask)\n\n original_shape = query.shape\n original_seq_len = query.shape[-3]\n\n # Pad to nearest multiple of 4\n target_seq_len = ((original_seq_len + 3) // 4) * 4\n pad_size = target_seq_len - original_seq_len\n\n query_4d = _pad(_rearrange(query))\n key_4d = _pad(_rearrange(key))\n value_4d = _pad(_rearrange(value))\n\n attention_mask = jnp.ones((target_seq_len, target_seq_len), dtype=jnp.bool_)\n attention_mask = attention_mask.at[original_seq_len:, :].set(False)\n attention_mask = attention_mask.at[:, original_seq_len:].set(False)\n\n mask_4d = (\n _fuse_masks(mask, attention_mask) if mask is not None else attention_mask\n )\n mask_4d = mask_4d[jnp.newaxis, jnp.newaxis, :, :] # (1, 1, seq_len, seq_len)\n\n bias_4d = _pad(_rearrange(bias)) if bias is not None else None\n\n # NOTE: jax.nn.dot_product_attention does not support dropout\n output_4d = jax.nn.dot_product_attention(\n query=query_4d,\n key=key_4d,\n value=value_4d,\n bias=bias_4d,\n mask=mask_4d,\n implementation=implementation,\n is_causal=is_causal,\n )\n return output_4d[..., :original_seq_len, :, :].reshape(original_shape)\n\n return attention_fn\n",python,tab +2,408,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"4:59:20 PM [info] Activating crowd-code\n4:59:20 PM [info] Recording started\n4:59:20 PM [info] Initializing git provider using file system watchers...\n",Log,tab +3,558,"extension-output-pdoom-org.crowd-code-#1-crowd-code",150,0,"4:59:21 PM [info] Git repository found\n4:59:21 PM [info] Git provider initialized successfully\n4:59:21 PM [info] Initial git state: [object Object]\n",Log,content +4,6295,"utils/nn.py",0,0,"",python,tab diff --git a/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-995920d4-3066-4bd1-985c-53b12cb9e83c1753010233944-2025_07_20-13.18.05.231/source.csv b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-995920d4-3066-4bd1-985c-53b12cb9e83c1753010233944-2025_07_20-13.18.05.231/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..047adb38f708efb5f2d63dfe5149fc6d9adcca40 --- /dev/null +++ b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-995920d4-3066-4bd1-985c-53b12cb9e83c1753010233944-2025_07_20-13.18.05.231/source.csv @@ -0,0 +1,2664 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +2,863,"anysphere.remote-ssh.Remote - SSH",0,0,"2025-07-14 14:15:14.072 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-14 14:15:14.072 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-lHYAht/socket.sock\n2025-07-14 14:15:14.072 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-14 14:15:14.072 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-lHYAht/socket.sock\n2025-07-14 14:15:14.072 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_80384.sh"" | ssh -v -T -D 62197 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 14:15:14.072 [info] Started installation script. Waiting for it to finish...\n2025-07-14 14:15:14.072 [info] Waiting for server to install via process(27370)...\n2025-07-14 14:15:14.072 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 14:15:14.072 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 14:15:14.072 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 14:15:14.098 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-14 14:15:14.098 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\n\n2025-07-14 14:15:14.098 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\n\n2025-07-14 14:15:14.098 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\n\n2025-07-14 14:15:14.098 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-14 14:15:14.098 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\n\n2025-07-14 14:15:14.098 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\n\n2025-07-14 14:15:14.098 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-14 14:15:14.098 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-14 14:15:14.176 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-14 14:15:14.176 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-14 14:15:14.176 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT sent\n\n2025-07-14 14:15:14.194 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-14 14:15:14.195 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-14 14:15:14.210 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-14 14:15:14.212 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-14 14:15:14.222 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\ndebug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-14 14:15:14.286 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-14 14:15:14.301 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-14 14:15:14.305 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-14 14:15:14.308 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\n\n2025-07-14 14:15:14.308 [info] (ssh_tunnel) stderr: debug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-14 14:15:14.897 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\n\n2025-07-14 14:15:14.899 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-14 14:15:14.920 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-14 14:15:15.674 [info] Askpass server received request: POST /\n2025-07-14 14:15:15.675 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-14 14:15:15.675 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-14 14:15:53.922 [info] (ssh_tunnel) stderr: ssh_dispatch_run_fatal: Connection to 2a00:1398:4:180c::8d34:2b11 port 22: incomplete message\n\n2025-07-14 14:15:53.924 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 14:15:53.925 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 14:15:53.925 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_80384.sh\n2025-07-14 14:15:53.926 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 14:16:57.204 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-14 14:16:57.216 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 14:16:57.217 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-14 14:16:57.218 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 14:16:57.221 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8429.sh"" | ssh -v -T -D 62450 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 14:16:57.221 [info] Started installation script. Waiting for it to finish...\n2025-07-14 14:16:57.221 [info] Waiting for server to install via process(28062)...\n2025-07-14 14:16:57.228 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-14 14:16:57.228 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 14:16:57.228 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\n\n2025-07-14 14:16:57.228 [info] (ssh_tunnel) stderr: debug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 14:16:57.228 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 14:16:57.275 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-14 14:16:57.275 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-14 14:16:57.276 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-14 14:16:57.276 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-14 14:16:57.276 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-14 14:16:57.314 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-14 14:16:57.315 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-14 14:16:57.315 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-14 14:16:57.332 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-14 14:16:57.333 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-14 14:16:57.360 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-14 14:16:57.361 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-14 14:16:57.361 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-14 14:16:57.364 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-14 14:16:57.364 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\n\n2025-07-14 14:16:57.364 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-14 14:16:57.439 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-14 14:16:57.467 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-14 14:16:57.471 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-14 14:16:57.471 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \n\n2025-07-14 14:16:57.471 [info] (ssh_tunnel) stderr: debug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\n\n2025-07-14 14:16:57.471 [info] (ssh_tunnel) stderr: debug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-14 14:16:58.066 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-14 14:16:58.093 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-14 14:16:58.200 [info] Askpass server received request: POST /\n2025-07-14 14:16:58.201 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-14 14:16:58.201 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-14 14:17:07.673 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-14 14:17:07.758 [info] Askpass server received request: POST /\n2025-07-14 14:17:07.759 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-14 14:17:07.759 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-14 14:17:11.328 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.19]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:62450 forwarded to remote address socks:0\n\n2025-07-14 14:17:11.328 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 62450.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 62450.\n\n2025-07-14 14:17:11.330 [info] (ssh_tunnel) stderr: debug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-14 14:17:11.928 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-14 14:17:11.928 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-14 14:17:11.933 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\n\n2025-07-14 14:17:11.933 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-14 14:17:11.953 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-14 14:17:14.633 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-14 14:17:14.906 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\nDownloading server via wget from https://downloads.cursor.com/production/a8e95743c5268be73767c46944a71f4465d05c90/linux/x64/cursor-reh-linux-x64.tar.gz to cursor-server-1c0f46c7-9da8-464a-ad76-fc412d40675f.tar.gz\n\n2025-07-14 14:17:14.906 [info] (ssh_tunnel) stderr: --2025-07-14 14:17:14-- https://downloads.cursor.com/production/a8e95743c5268be73767c46944a71f4465d05c90/linux/x64/cursor-reh-linux-x64.tar.gz\n\n2025-07-14 14:17:14.998 [info] (ssh_tunnel) stderr: Resolving downloads.cursor.com (downloads.cursor.com)... \n2025-07-14 14:17:15.103 [info] (ssh_tunnel) stderr: 2606:4700::6812:1080, 2606:4700::6812:1180, 104.18.17.128, ...\nConnecting to downloads.cursor.com (downloads.cursor.com)|2606:4700::6812:1080|:443... connected.\n\n2025-07-14 14:17:15.122 [info] (ssh_tunnel) stderr: HTTP request sent, awaiting response... \n2025-07-14 14:17:15.136 [info] (ssh_tunnel) stderr: 200 OK\nLength: 68058811 (65M) [application/gzip]\nSaving to: ‘cursor-server-1c0f46c7-9da8-464a-ad76-fc412d40675f.tar.gz’\n\n 0K ...\n2025-07-14 14:17:15.142 [info] (ssh_tunnel) stderr: ....... .......... .......... .....\n2025-07-14 14:17:15.157 [info] (ssh_tunnel) stderr: ..... .......... 0% 10.6M 6s\n 50K .......... .......... .......... .......... .......... 0% 106M 3s\n 100K .......... .......... .......... .......... .......... 0% 116M 2s\n 150K ..\n2025-07-14 14:17:15.158 [info] (ssh_tunnel) stderr: ........ .......... .......... .......... .......... 0% 112M 2s\n 200K .......... .......... .......... .......... .......... 0% 59.7M 2s\n 250K .......... .......... .......... .......... .......... 0% 46.7M 2s\n 300K .......... .......... .......... .......... .......... 0% 206M 2s\n 350K .......... .......... .......... .......... ..\n2025-07-14 14:17:15.166 [info] (ssh_tunnel) stderr: ........ 0% 173M 1s\n 400K .......... .......... .......... .......... .......... 0% 183M 1s\n 450K .......... .......... .......... .......... .......... 0% 38.7M 1s\n 500K .......... .......... .......... .......... ..\n2025-07-14 14:17:15.168 [info] (ssh_tunnel) stderr: ........ 0% 190M 1s\n 550K .......... .......... .......... .......... .......... 0% 167M 1s\n 600K .......... .......... .......... .......... .......... 0% 207M 1s\n 650K .......... .......... .......... .......... .......... 1% 211M 1s\n 700K .......... .......... .......... .......... .......... 1% 208M 1s\n 750K .......... .......... .......... .......... .......... 1% 156M 1s\n 800K .......... .......... .......... .......... .......... 1% 196M 1s\n 850K .......... .......... .......... .......... .......... 1% 202M 1s\n 900K .......... .......... .......... .......... .......... 1% 209M 1s\n 950K .......... .......... .......... .......... .......... 1% 184M 1s\n 1000K .......... .......... .......... .......... .......... 1% 170M 1s\n 1050K .......... .......... .......... .......... .......... 1% 163M 1s\n 1100K .......... .......... .......... .......... .......... 1% 158M 1s\n 1150K .......... .......... .......... .......... .......... 1% 136M 1s\n 1200K .......... .......... .......... .......... .......... 1% 166M 1s\n 1250K .......... .......... .......... .......... .......... 1% 167M 1s\n 1300K .......... .......... .......... .......... .......... 2% 162M 1s\n 1350K .......... .......... .......... .......... .......... 2% 146M 1s\n 1400K .......... .......... .......... .......... .......... 2% 165M 1s\n 1450K .......... .......... .......... .......... .......... 2% 157M 1s\n 1500K .......... .......... .......... .......... .......... 2% 167M 1s\n 1550K .......... .......... .......... .......... .......... 2% 142M 1s\n 1600K .......... .......... .......... .......... .......... 2% 164M 1s\n 1650K .......... .......... .......... .......... .......... 2% 170M 1s\n 1700K .......... .......... ......\n2025-07-14 14:17:15.171 [info] (ssh_tunnel) stderr: .... .......... .......... 2% 170M 1s\n 1750K .......... .......... .......... .......... .......... 2% 152M 1s\n 1800K .......... .......... ..........\n2025-07-14 14:17:15.175 [info] (ssh_tunnel) stderr: .......... .......... 2% 163M 1s\n 1850K .......... .......... .......... .......... .......... 2% 161M 1s\n 1900K .......... .......... .......... .......... .......... 2% 153M 1s\n 1950K .......... .......... .......... .......... .......... 3% 131M 1s\n 2000K .......... .......... .......... .......... .......... 3% 166M 1s\n 2050K .......... .......... .......... .......... .......... 3% 167M 1s\n 2100K .......... .......... .......... .......... .......... 3% 163M 1s\n 2150K .......... .......... .......... .......... .......... 3% 149M 1s\n 2200K .......... .......... .......... .......... .......... 3% 168M 1s\n 2250K .......... .......... .......... .......... .......... 3% 147M 1s\n 2300K .......... .......... .......... .......... .......... 3% 154M 1s\n 2350K .......... .......... .......... .......... .......... 3% 137M 1s\n 2400K .......... .......... .......... .......... .......... 3% 164M 1s\n 2450K .......... .......... .......... .......... .......... 3% 168M 1s\n 2500K .......... .......... .......... .......... .......... 3% 169M 1s\n 2550K .......... .......... .......... .......... .......... 3% 153M 1s\n 2600K .......... .......... .......... .......... .......... 3% 162M 1s\n 2650K .......... .......... .......... .......... .......... 4% 170M 1s\n 2700K .......... .......... .......... ....\n2025-07-14 14:17:15.176 [info] (ssh_tunnel) stderr: ...... .......... 4% 153M 1s\n 2750K .......... .......... .......... .......... .......... 4% 133M 1s\n 2800K .......... .......... .......... .......... .......... 4% 160M 1s\n 2850K .......... .......... .......... .......... .......... 4% 168M 1s\n 2900K .......... .......... .......... ....\n2025-07-14 14:17:15.187 [info] (ssh_tunnel) stderr: ...... .......... 4% 165M 1s\n 2950K .......... .......... .......... .......... .......... 4% 152M 1s\n 3000K .......... .......... .......... .......... .......... 4% 170M 1s\n 3050K .......... .......... .......... .......... .......... 4% 165M 1s\n 3100K .......... .......... .......... .......... .......... 4% 151M 1s\n 3150K .......... .......... .......... .......... .......... 4% 133M 1s\n 3200K .......... .......... .......... .......... .......... 4% 152M 1s\n 3250K .......... .......... .......... .......... .......... 4% 157M 1s\n 3300K .......... .......... .......... .......... .......... 5% 164M 1s\n 3350K .......... .......... .......... .......... .......... 5% 187M 1s\n 3400K .......... .......... .......... .......... .......... 5% 245M 1s\n 3450K ....\n2025-07-14 14:17:15.187 [info] (ssh_tunnel) stderr: ...... .......... .......... .......... .......... 5% 218M 0s\n 3500K .......... .......... .......... .......... .......... 5% 240M 0s\n 3550K .......... .......... .......... .......... .......... 5% 205M 0s\n 3600K .......... .......... .......... .......... .......... 5% 244M 0s\n 3650K .......... .......... .......... .......... .......... 5% 213M 0s\n 3700K .......... .......... .......... .......... .......... 5% 248M 0s\n 3750K .......... .......... .......... .......... .......... 5% 212M 0s\n 3800K .......... .......... .......... .......... .......... 5% 226M 0s\n 3850K .......... .......... .......... .......... .......... 5% 240M 0s\n 3900K .......... .......... .......... .......... .......... 5% 248M 0s\n 3950K .......... .......... .......... .......... .......... 6% 208M 0s\n 4000K .......... .......... .......... .......... .......... 6% 241M 0s\n 4050K .......... .......... .......... .......... .......... 6% 240M 0s\n 4100K .......... .......... .......... .......... .......... 6% 222M 0s\n 4150K .......... .......... .......... .......... .......... 6% 195M 0s\n 4200K .......... .......... .......... .......... .....\n2025-07-14 14:17:15.195 [info] (ssh_tunnel) stderr: ..... 6% 223M 0s\n 4250K .......... .......... .......... .......... .......... 6% 238M 0s\n 4300K .......... .......... .......... .......... .......... 6% 233M 0s\n 4350K .......... .......... .......... .......... .......... 6% 197M 0s\n 4400K .......... .......... .......... .......... .......... 6% 241M 0s\n 4450K .......... .......... .......... .......... .......... 6% 240M 0s\n 4500K .......... .......... .......... .......... .......... 6% 237M 0s\n 4550K .......... .......... .......... .......... .......... 6% 210M 0s\n 4600K .......... .......... .......... .......... .......... 6% 235M 0s\n 4650K .......... .......... .......... .......... .......... 7% 239M 0s\n 4700K .......... .......... .......... .......... .......... 7% 226M 0s\n 4750K .......... .......... .......... .......... .......... 7% 190M 0s\n 4800K .......... .......... .......... .......... .......... 7% 224M 0s\n 4850K .......... .......... .......... .......... .......... 7% 224M 0s\n 4900K .......... .......... .......... .......... .......... 7% 242M 0s\n 4950K .......... .......... .......... .......... .......... 7% 214M 0s\n 5000K .......... .......... .......... .......... .......... 7% 228M 0s\n 5050K .......... .......... .......... .......... .......... 7% 227M 0s\n 5100K .......... .......... .......... .......... .......... 7% 228M 0s\n 5150K .......... .......... .......... .......... .......... 7% 204M 0s\n 5200K .......... .......... .......... .......... .......... 7% 237M 0s\n 5250K .......... .......... .......... .......... .......... 7% 210M 0s\n 5300K .......... .......... .......... .......... .......... 8% 245M 0s\n 5350K .......... .......... .......... .......... .......... 8% 223M 0s\n 5400K .......... .......... .......... .......... .......... 8% 246M 0s\n 5450K .......... .......... .......... .......... .......... 8% 208M 0s\n 5500K .......... .......\n2025-07-14 14:17:15.201 [info] (ssh_tunnel) stderr: ... .......... .......... .......... 8% 227M 0s\n 5550K .......... .......... .......... .......... .......... 8% 205M 0s\n 5600K .......... .......... .......... .......... .......... 8% 238M 0s\n 5650K .......... .......... .......... .......... .......... 8% 245M 0s\n 5700K .......... .......... .......... .......... .......... 8% 235M 0s\n 5750K .......... .......... .......... .......... .......... 8% 222M 0s\n 5800K .......... .......... .......... .......... .......... 8% 239M 0s\n 5850K .......... .......... .......... .......... .......... 8% 224M 0s\n 5900K .......... .......... .......... .......... .......... 8% 327M 0s\n2025-07-14 14:17:15.201 [info] (ssh_tunnel) stderr: \n 5950K .......... .......... .......... .......... .......... 9% 298M 0s\n 6000K .......... .......... .......... .......... .......... 9% 368M 0s\n 6050K .......... .......... .......... .......... .......... 9% 375M 0s\n 6100K .......... .......... .......... .......... .......... 9% 373M 0s\n 6150K .......... .......... .......... .......... .......... 9% 333M 0s\n 6200K .......... .......... .......... .......... .......... 9% 371M 0s\n 6250K .......... .......... .......... .......... .......... 9% 371M 0s\n 6300K .......... .......... .......... .......... .......... 9% 381M 0s\n 6350K .......... .......... .......... .......... .......... 9% 296M 0s\n 6400K .......... .......... .......... .......... .......... 9% 376M 0s\n 6450K .......... .......... .......... .......... .......... 9% 370M 0s\n 6500K .......... .......... .......... .......... .......... 9% 374M 0s\n 6550K .......... .......... .......... .......... .......... 9% 340M 0s\n 6600K .......... .......... .......... .......... .......... 10% 367M 0s\n 6650K .......... .......... .......... .......... .......... 10% 344M 0s\n 6700K .......... .......... .......... .......... .......... 10% 344M 0s\n 6750K .......... .......... .......... .......... .......... 10% 285M 0s\n 6800K .......... .......... .......... .......... .......... 10% 369M 0s\n 6850K .......... .......... .......... .......... .......... 10% 376M 0s\n 6900K .......... .......... .......... .......... .......... 10% 368M 0s\n 6950K .......... .......... .......... ..........\n2025-07-14 14:17:15.208 [info] (ssh_tunnel) stderr: .......... 10% 334M 0s\n 7000K .......... .......... .......... .......... .......... 10% 374M 0s\n 7050K .......... .......... .......... .......... .......... 10% 363M 0s\n 7100K .......... .......... .......... .......... .......... 10% 375M 0s\n 7150K .......... .......... .......... .......... .......... 10% 307M 0s\n 7200K .......... ....\n2025-07-14 14:17:15.209 [info] (ssh_tunnel) stderr: ...... .......... .......... .......... 10% 368M 0s\n 7250K .......... .......... .......... .......... .......... 10% 377M 0s\n 7300K .......... .......... .......... .......... .......... 11% 360M 0s\n 7350K .......... .......... .......... .......... .......... 11% 331M 0s\n 7400K .......... .......... .......... .......... .......... 11% 360M 0s\n 7450K .......... .......... .......... .......... .......... 11% 327M 0s\n 7500K .......... .......... .......... .......... .......... 11% 367M 0s\n 7550K ........\n2025-07-14 14:17:15.239 [info] (ssh_tunnel) stderr: .. .......... .......... .......... .......... 11% 333M 0s\n 7600K .......... .......... .......... .......... .......... 11% 359M 0s\n 7650K .......... .......... .......... .......... .......... 11% 341M 0s\n 7700K .......... .......... .......... .......... .......... 11% 382M 0s\n 7750K .......... .......... .......... .......... .......... 11% 305M 0s\n 7800K .......... .......... .......... .......... .......... 11% 368M 0s\n 7850K .......... .......... .......... .......... .......... 11% 351M 0s\n 7900K .......... .......... .......... .......... .......... 11% 384M 0s\n 7950K .......... .......... .......... .......... .......... 12% 320M 0s\n 8000K .......... ....\n2025-07-14 14:17:15.240 [info] (ssh_tunnel) stderr: ...... .......... .......... .......... 12% 333M 0s\n 8050K .......... .......... .......... .......... .......... 12% 316M 0s\n 8100K .......... .......... .......... .......... .......... 12% 346M 0s\n 8150K .......... .......... .......... .......... .......... 12% 317M 0s\n 8200K .......... .......... .......... .......... .......... 12% 365M 0s\n 8250K .......... .......... .......... .......... .......... 12% 361M 0s\n 8300K .......... .......... .......... .......... .......... 12% 338M 0s\n 8350K .......... .......... .......... .......... .......... 12% 295M 0s\n 8400K .......... .......... .......... .......... .......... 12% 372M 0s\n 8450K .......... .......... .......... .......... .......... 12% 340M 0s\n 8500K .......... .......... .......... .......... .......... 12% 347M 0s\n 8550K .......... .......... .......... .......... .......... 12% 306M 0s\n 8600K .......... .......... .......... .......... .......... 13% 341M 0s\n 8650K .......... .......... .......... .......... .......... 13% 340M 0s\n 8700K .......... .......... .......... .......... .......... 13% 347M 0s\n 8750K .......... .......... .......... .......... .......... 13% 290M 0s\n 8800K .......... .......... .......... .......... .......... 13% 342M 0s\n 8850K .......... .......... .......... .......... .......... 13% 341M 0s\n 8900K .......... .......... .......... .......... .......... 13% 352M 0s\n 8950K .......... .......... .......... .......... .......... 13% 301M 0s\n 9000K .......... .......... .......... .......... .......... 13% 344M 0s\n 9050K .......... .......... .......... .......... .......... 13% 349M 0s\n 9100K .......... .......... .......... .......... .......... 13% 356M 0s\n 9150K .......... .......... .......... .......... .......... 13% 267M 0s\n 9200K .......... .......... .......... .......... .......... 13% 339M 0s\n 9250K .......... .......... .......... .......... .......... 13% 371M 0s\n 9300K .......... .......... .......... .......... .......... 14% 344M 0s\n 9350K .......... .......... .......... .......... .......... 14% 338M 0s\n 9400K .......... .......... .......... .......... .......... 14% 375M 0s\n 9450K .......... .......... .......... .......... .......... 14% 368M 0s\n 9500K .......... .......... .......... .......... .......... 14% 348M 0s\n 9550K .......... .......... .......... .......... .......... 14% 280M 0s\n 9600K .......... .......... .......... .......... .......... 14% 333M 0s\n 9650K .......... .......... .......... .......... .......... 14% 350M 0s\n 9700K .......... .......... .......... .......... .......... 14% 341M 0s\n 9750K .......... .......... .......... .......... .......... 14% 312M 0s\n 9800K .......... .......... .......... .......... .......... 14% 345M 0s\n 9850K .......... .......... .......... .......... .......... 14% 357M 0s\n 9900K .......... .......... .......... .......... .......... 14% 327M 0s\n 9950K .......... .......... ....\n2025-07-14 14:17:15.241 [info] (ssh_tunnel) stderr: ...... .......... .......... 15% 252M 0s\n 10000K .......... .......... .......... .......... .......... 15% 365M 0s\n 10050K .......... .......... .......... ........\n2025-07-14 14:17:15.242 [info] (ssh_tunnel) stderr: .. .......... 15% 366M 0s\n 10100K .......... .......... .......... .......... .......... 15% 367M 0s\n 10150K .......... .......... .......... .......... .......... 15% 331M 0s\n 10200K .......... .......... ..\n2025-07-14 14:17:15.245 [info] (ssh_tunnel) stderr: ........ .......... .......... 15% 365M 0s\n 10250K .......... .......... .......... .......... .......... 15% 380M 0s\n 10300K .......... .......... .......... .......... .......... 15% 370M 0s\n 10350K .......... .......... .......... .......... .......... 15% 303M 0s\n 10400K .......... .......... .......... .......... .......... 15% 369M 0s\n 10450K .......... .......... .......... .......... .......... 15% 366M 0s\n 10500K .......... .......... .......... .......... .......... 15% 347M 0s\n 10550K .......... .......... ....\n2025-07-14 14:17:15.246 [info] (ssh_tunnel) stderr: ...... .......... .......... 15% 290M 0s\n 10600K .......... .......... .......... .......... .......... 16% 355M 0s\n 10650K .......... .......... .......... .......... .......... 16% 350M 0s\n 10700K .......... .......... .......... .......... .......... 16% 349M 0s\n 10750K .......... .......... .......... .......... .......... 16% 296M 0s\n 10800K .......... .......... .......... .......... .......... 16% 431M 0s\n 10850K .......... .......... .......... .......... .......... 16% 433M 0s\n 10900K .......... .......... .......... .......... .......... 16% 414M 0s\n 10950K .......... .......... .......... .......... .......... 16% 388M 0s\n 11000K .......... .......... .......... .......... .......... 16% 430M 0s\n 11050K .......... .......... .......... .......... .......... 16% 411M 0s\n 11100K .......... .......... .......... .......... .......... 16% 373M 0s\n 11150K .......... .......... .......... .......... .......... 16% 330M 0s\n 11200K .......... .......... .......... .......... .......... 16% 430M 0s\n 11250K .......... .......... .......... .......... .......... 17% 425M 0s\n 11300K .......... .......... .......... .......... .......... 17% 414M 0s\n 11350K .......... .......... .......... .......... .......... 17% 327M 0s\n 11400K .......... .......... .......... .......... .......... 17% 400M 0s\n 11450K .......... .......... .......... .......... .......... 17% 411M 0s\n 11500K .......... .......... .......... .......... .......... 17% 419M 0s\n 11550K .......... .......... .......... .......... .......... 17% 335M 0s\n 11600K .......... .......... .......... .......... .......... 17% 419M 0s\n 11650K .......... .......... .......... .......... .......... 17% 422M 0s\n 11700K .......... .......... .......... .......... .......... 17% 402M 0s\n 11750K .......... .......... .......... .......... .......... 17% 375M 0s\n 11800K .......... .......... .......... .......... .......... 17% 417M 0s\n 11850K .......... .......... .......... .......... .......... 17% 436M 0s\n 11900K .......... .......... .......... .......... .......... 17% 436M 0s\n 11950K .......... .......... .......... .......... .......... 18% 310M 0s\n 12000K .......... .......... .......... .......... .......... 18% 454M 0s\n 12050K .......... .......... .......... .......... .......... 18% 430M 0s\n 12100K .......... .......... .......... .......... .......... 18% 432M 0s\n 12150K .......... .......... .......... .......... .......... 18% 407M 0s\n 12200K .......... .......... .......... .......... .......... 18% 445M 0s\n 12250K .......... .......... .......... .......... .......... 18% 452M 0s\n 12300K .......... .......... .......... .......... .......... 18% 456M 0s\n 12350K .......... .......... .......... .......... .......... 18% 380M 0s\n 12400K .......... .......... .......... .......... .......... 18% 372M 0s\n 12450K .......... .......... .......... .......... .......... 18% 434M 0s\n 12500K .......... .......... .......... .......... .......... 18% 430M 0s\n 12550K .......... .......... .......... .......... .......... 18% 388M 0s\n 12600K .......... .......... .......... .......... .......... 19% 459M 0s\n 12650K .......... .......... .......... .......... .......... 19% 457M 0s\n 12700K .......... .......... .......... .......... .......... 19% 460M 0s\n 12750K .......... .......... .......... .......... .......... 19% 270M 0s\n 12800K .......... .......... .......... .......... .......... 19% 21.4M 0s\n 12850K .......... .......... .......... .......... .......... 19% 336M 0s\n 12900K .......... .......... .......... .......... .......... 19% 421M 0s\n 12950K .......... .......... .......... .......... .......... 19% 359M 0s\n 13000K .......... .......... .......... .......... .......... 19% 378M 0s\n 13050K .......... .......... .......... .......... .......... 19% 385M 0s\n 13100K .......... .......... .......... .......... .......... 19% 379M 0s\n 13150K .......... .......... ....\n2025-07-14 14:17:15.247 [info] (ssh_tunnel) stderr: ...... .......... .......... 19% 323M 0s\n 13200K .......... .......... .......... .......... .......... 19% 424M 0s\n 13250K .......... .......... .......... .......... .......... 20% 393M 0s\n 13300K .......... .......... .......... .......... .......... 20% 372M 0s\n 13350K .......... .......... .......... .......... .......... 20% 396M 0s\n 13400K ......\n2025-07-14 14:17:15.249 [info] (ssh_tunnel) stderr: .... .......... .......... .......... .......... 20% 434M 0s\n 13450K .......... .......... .......... .......... .......... 20% 447M 0s\n 13500K .......... .......... .......... .......... ..\n2025-07-14 14:17:15.253 [info] (ssh_tunnel) stderr: ........ 20% 434M 0s\n 13550K .......... .......... .......... .......... .......... 20% 370M 0s\n 13600K .......... .......... .......... .......... .......... 20% 425M 0s\n 13650K .......... ..\n2025-07-14 14:17:15.254 [info] (ssh_tunnel) stderr: ........ .......... .......... .......... 20% 444M 0s\n 13700K .......... .......... .......... .......... .......... 20% 408M 0s\n 13750K .......... .......... .......... .......... .......... 20% 408M 0s\n 13800K .......... .......... .......... .......... .......... 20% 430M 0s\n 13850K .......... .......... .......... .......... .......... 20% 381M 0s\n 13900K .......... .......... .......... .......... .......... 20% 425M 0s\n 13950K .......... .......... .......... .......... .......... 21% 381M 0s\n 14000K .......... .......... .......... .......... .......... 21% 448M 0s\n 14050K .......... .......... .......... .......... .......... 21% 364M 0s\n 14100K .......... .......... .......... .......... .......... 21% 427M 0s\n 14150K .......... .......... .......... .......... .......... 21% 372M 0s\n 14200K .......... .......... .......... .......... .......... 21% 438M 0s\n 14250K .......... .......... .......... .......... .......... 21% 433M 0s\n 14300K .......... .......... .......... .......... .......... 21% 439M 0s\n 14350K .......... .......... .......... .......... .......... 21% 376M 0s\n 14400K .......... .......... .......... .......... .......... 21% 429M 0s\n 14450K .......... .......... .......... .......... .......... 21% 423M 0s\n 14500K .......... .......... .......... .......... .......... 21% 414M 0s\n 14550K .......... .......... .......... .......... .......... 21% 375M 0s\n 14600K .......... .......... .......... .......... .......... 22% 453M 0s\n 14650K .......... .......... .......... .......... .......... 22% 387M 0s\n 14700K .......... .......... .......... .......... .......... 22% 441M 0s\n 14750K .......... .......... .......... .......... .......... 22% 365M 0s\n 14800K .......... .......... .......... .......... .......... 22% 455M 0s\n 14850K .......... .......... .......... .......... .......... 22% 456M 0s\n 14900K .......... .......... .......... .......... .......... 22% 382M 0s\n 14950K .......... .......... .......... .......... .......... 22% 389M 0s\n 15000K .......... .......... .......... .......... .......... 22% 459M 0s\n 15050K .......... .......... .......... .......... .......... 22% 455M 0s\n 15100K .......... .......... .......... .......... .......... 22% 45.9M 0s\n 15150K .......... .......... .......... .......... .......... 22% 317M 0s\n 15200K .......... .......... .......... .......... .......... 22% 424M 0s\n 15250K .......... .......... .......... .......... .......... 23% 335M 0s\n 15300K .......... .......... .......... .......... .......... 23% 387M 0s\n 15350K .......... .......... .......... .......... .......... 23% 353M 0s\n 15400K .......... .......... .......... .......... .......... 23% 386M 0s\n 15450K .......... .......... .......... .......... .......... 23% 406M 0s\n 15500K .......... .......... .......... .......... .......... 23% 429M 0s\n 15550K .......... .......... .......... .......... .......... 23% 354M 0s\n 15600K .......... .......... .......... .......... .......... 23% 66.5M 0s\n 15650K .......... .......... .......... .......... .......... 23% 379M 0s\n 15700K .......... .......... .......... .......... .......... 23% 426M 0s\n 15750K .......... .......... .......... .......... .......... 23% 365M 0s\n 15800K .......... .......... .......... .......... .......... 23% 385M 0s\n 15850K .......... .......... .......... .......... .......... 23% 377M 0s\n 15900K .......... .......... .......... .......... .......... 23% 372M 0s\n 15950K .......... .......... .......... .......... .......... 24% 308M 0s\n 16000K .......... .......... .......... .......... .......... 24% 416M 0s\n 16050K .......... .......... .......... .......... .......... 24% 418M 0s\n 16100K .......... .......... ......\n2025-07-14 14:17:15.258 [info] (ssh_tunnel) stderr: .... .......... .......... 24% 390M 0s\n 16150K .......... .......... .......... .......... .......... 24% 351M 0s\n 16200K .......... .......... .......... .......... .......... 24% 375M 0s\n 16250K .......... .......... .......... .......... .......... 24% 424M 0s\n 16300K .......... .......... .......... .......... .......... 24% 364M 0s\n2025-07-14 14:17:15.258 [info] (ssh_tunnel) stderr: \n 16350K .......... .......... .......... .......... .......... 24% 1.55M 0s\n 16400K .......... .......... .......... .......... .......... 24% 298M 0s\n 16450K .......... .......... .......... .......... .......... 24% 309M 0s\n 16500K .......... .......... .......... .......... .......... 24% 287M 0s\n 16550K .......... .......... .......... .......... .......... 24% 287M 0s\n 16600K .......... .......... .......... .......... .......... 25% 319M 0s\n 16650K .......... .......... .......... .......... .......... 25% 318M 0s\n 16700K .......... .......... .......... .......... .......... 25% 323M 0s\n 16750K .......... .......... .......... .......... .......... 25% 264M 0s\n 16800K .......... .......... .......... .......... .......... 25% 300M 0s\n 16850K .......... .......... .......... .......... .......... 25% 323M 0s\n 16900K .......... .......... .......... .......... .......... 25% 317M 0s\n 16950K .......... .......... .......... .......... .......... 25% 270M 0s\n 17000K .......... .......... .......... .......... .......... 25% 270M 0s\n 17050K .......... .......... .......... .......... .......... 25% 277M 0s\n 17100K .......... .......... .......... .......... .......... 25% 280M 0s\n 17150K .......... .......... .......... .......... .......... 25% 233M 0s\n 17200K .......... .......... .......... .......... .......... 25% 304M 0s\n 17250K .......... .......... .......... .......... .......... 26% 286M 0s\n 17300K .......... .......... .......... .......... .......... 26% 304M 0s\n 17350K .......... .......... .......... .......... .......... 26% 260M 0s\n 17400K .......... .......... .......... .......... .......... 26% 318M 0s\n 17450K .......... .......... .......... .......... .......... 26% 284M 0s\n 17500K .......... .......... .......... .......... .......... 26% 301M 0s\n 17550K .......... .......... .......... .......... .......... 26% 261M 0s\n 17600K .......... .......... .......... .......... .......... 26% 294M 0s\n 17650K .......... .......... .......... .......... .......... 26% 272M 0s\n 17700K .......... .......... .......... .......... .......... 26% 277M 0s\n 17750K .......... .......... .......... .......... .......... 26% 266M 0s\n 17800K .......... .......... .......... .......... .......... 26% 243M 0s\n 17850K .......... .......... .......... .......... .......... 26% 208M 0s\n 17900K .......... .......... .......... .......... .......... 27% 230M 0s\n 17950K .......... .......... .......... .......... .......... 27% 178M 0s\n 18000K .......... .......... .......... .......... .......... 27% 223M 0s\n 18050K .......... .......... .......... .......... .......... 27% 218M 0s\n 18100K .......... .......... .......... .......... .......... 27% 202M 0s\n 18150K .......... .......... .......... .......... .......... 27% 201M 0s\n 18200K .......... .......... .......... .......... .......... 27% 209M 0s\n 18250K .......... .......... .......... .......... .......... 27% 239M 0s\n 18300K .......... .......... .......... .......... .......... 27% 194M 0s\n 18350K .......... .......... .......... .......... .......... 27% 168M 0s\n 18400K .......... .......... ..\n2025-07-14 14:17:15.261 [info] (ssh_tunnel) stderr: ........ .......... .......... 27% 241M 0s\n 18450K .......... .......... .......... .......... .......... 27% 216M 0s\n 18500K .......... .......... .......... .......... .......... 27% 216M 0s\n 18550K .......... .......... .......... .......... .......... 27% 208M 0s\n 18600K .......... .......... .......... .......... ....\n2025-07-14 14:17:15.261 [info] (ssh_tunnel) stderr: ...... 28% 227M 0s\n 18650K .......... .......... .......... .......... .......... 28% 218M 0s\n 18700K .......... .......... .......... .......... .......... 28% 220M 0s\n 18750K .......... .......... .......... .......... .......... 28% 177M 0s\n 18800K .......... .......... .......... .......... .......... 28% 216M 0s\n 18850K .......... .......... .......... .......... .......... 28% 218M 0s\n 18900K .......... .......... .......... .......... .......... 28% 223M 0s\n 18950K .......... .......... .......... .......... .......... 28% 203M 0s\n 19000K .......... .......... .......... .......... .......... 28% 230M 0s\n 19050K .......... .......... .......... .......... .......... 28% 234M 0s\n 19100K .......... .......... .......... .......... .......... 28% 220M 0s\n 19150K .......... .......... .......... .......... .......... 28% 176M 0s\n 19200K .......... .......... .......... .......... .......... 28% 215M 0s\n 19250K .......... .......... .......... .......... .......... 29% 233M 0s\n 19300K .......... .......... .......... .......... .......... 29% 220M 0s\n 19350K .......... .......... .......... .......... .......... 29% 199M 0s\n 19400K .......... .......... .......... .......... .......... 29% 220M 0s\n 19450K .......... .......... .......... .......... .......... 29% 230M 0s\n 19500K .......... .......... .......... .......... .......... 29% 211M 0s\n 19550K .......... .\n2025-07-14 14:17:15.265 [info] (ssh_tunnel) stderr: ......... .......... .......... .......... 29% 179M 0s\n 19600K .......... .......... .......... .......... .......... 29% 239M 0s\n 19650K .......... .......... .......... .......... .......... 29% 219M 0s\n 19700K .......... .......... .......... .......... .......... 29% 217M 0s\n 19750K .......... .......... .......... .......... .......... 29% 211M 0s\n 19800K .......... .......... .......... .......... .......... 29% 224M 0s\n 19850K .......... .......... .......... .......... .......... 29% 217M 0s\n 19900K .......... .......... .......... .......... .......... 30% 229M 0s\n 19950K .......... .......... .......... .......... .......... 30% 177M 0s\n 20000K .......... ....\n2025-07-14 14:17:15.268 [info] (ssh_tunnel) stderr: ...... .......... .......... .......... 30% 228M 0s\n 20050K .......... .......... .......... .......... .......... 30% 256M 0s\n 20100K .......... .......... .......... ....\n2025-07-14 14:17:15.268 [info] (ssh_tunnel) stderr: ...... .......... 30% 313M 0s\n 20150K .......... .......... .......... .......... .......... 30% 310M 0s\n 20200K .......... .......... .......... .......... .......... 30% 322M 0s\n 20250K .......... .......... .......... .......... .......... 30% 345M 0s\n 20300K .......... .......... .......... .......... .......... 30% 322M 0s\n 20350K .......... .......... .......... .......... .......... 30% 269M 0s\n 20400K .......... .......... .......... .......... .......... 30% 332M 0s\n 20450K .......... .......... .......... ....\n2025-07-14 14:17:15.296 [info] (ssh_tunnel) stderr: ...... .......... 30% 352M 0s\n 20500K .......... .......... .......... .......... .......... 30% 353M 0s\n 20550K .......... .......... .......... .......... .......... 30% 328M 0s\n 20600K .......... .......... .......... .......... .......... 31% 343M 0s\n 20650K .......... .......... .......... .......... .......... 31% 348M 0s\n 20700K .......... .......... .......... .......... .......... 31% 328M 0s\n 20750K .......... .......... .......... .......... .......... 31% 251M 0s\n 20800K .......... .......... .......... .......... .......... 31% 320M 0s\n 20850K .......... .......... .......... .......... .......... 31% 322M 0s\n 20900K .......... .......... .......... .......... .......... 31% 320M 0s\n 20950K .......... .......... ....\n2025-07-14 14:17:15.297 [info] (ssh_tunnel) stderr: ...... .......... .......... 31% 323M 0s\n 21000K .......... .......... .......... .......... .......... 31% 344M 0s\n 21050K .......... .......... .......... .......... .......... 31% 342M 0s\n 21100K .......... .......... .......... .......... .......... 31% 341M 0s\n 21150K .......... .......... .......... .......... .......... 31% 300M 0s\n 21200K .......... .......... .......... .......... .......... 31% 318M 0s\n 21250K .......... .......... .......... .......... .......... 32% 352M 0s\n 21300K .......... .......... .......... .......... .......... 32% 325M 0s\n 21350K .......... .......... .......... .......... .......... 32% 310M 0s\n 21400K .......... .......... .......... .......... .......... 32% 352M 0s\n 21450K .......... .......... .......... .......... .......... 32% 345M 0s\n 21500K .......... .......... .......... .......... .......... 32% 353M 0s\n 21550K .......... .......... .......... .......... .......... 32% 272M 0s\n 21600K .......... .......... .......... .......... .......... 32% 331M 0s\n 21650K .......... .......... .......... .......... .......... 32% 347M 0s\n 21700K .......... .......... .......... .......... .......... 32% 361M 0s\n 21750K .......... .......... .......... .......... .......... 32% 315M 0s\n 21800K .......... .......... .......... .......... .......... 32% 353M 0s\n 21850K .......... .......... .......... .......... .......... 32% 320M 0s\n 21900K .......... .......... .......... .......... .......... 33% 343M 0s\n 21950K .......... .......... .......... .......... .......... 33% 272M 0s\n 22000K .......... .......... .......... .......... .......... 33% 354M 0s\n 22050K .......... .......... .......... .......... .......... 33% 361M 0s\n 22100K .......... .......... .......... .......... .......... 33% 302M 0s\n 22150K .......... .......... .......... .......... .......... 33% 325M 0s\n 22200K .......... .......... .......... .......... .......... 33% 315M 0s\n 22250K .......... .......... .......... .......... .......... 33% 338M 0s\n 22300K .......... .......... .......... .......... .......... 33% 354M 0s\n 22350K .......... .......... .......... .......... .......... 33% 299M 0s\n 22400K .......... .......... .......... .......... .......... 33% 365M 0s\n 22450K .......... .......... .......... .......... .......... 33% 347M 0s\n 22500K .......... .......... .......... .......... .......... 33% 340M 0s\n 22550K .......... .......... .......... .......... .......... 34% 316M 0s\n 22600K .......... .......... .......... .......... .......... 34% 356M 0s\n 22650K .......... .......... .......... .......... .......... 34% 360M 0s\n 22700K .......... .......... .......... .......... .......... 34% 354M 0s\n 22750K .......... .......... .\n2025-07-14 14:17:15.304 [info] (ssh_tunnel) stderr: ......... .......... .......... 34% 282M 0s\n 22800K .......... .......... .......... .......... .......... 34% 296M 0s\n 22850K .......... .......... .......... .......... .......... 34% 357M 0s\n 22900K .......... .......... .......... .......... .......... 34% 358M 0s\n 22950K .......... .......... .......... .......... .......... 34% 303M 0s\n 23000K .......... .......... .......... .......... .......... 34% 333M 0s\n 23050K .......... .......... .......... .......... .......... 34% 357M 0s\n 23100K .......... .......... .......... .......... .......... 34% 347M 0s\n 23150K .......... .......... .......... .......... .......... 34% 284M 0s\n 23200K .......... .......... .......... .......... .......... 34% 352M 0s\n 23250K .......... .......... .......... .......... .......... 35% 296M 0s\n 23300K .......... .......... .......... .......... .......... 35% 348M 0s\n 23350K .......... .......... .......... .......... .......... 35% 295M 0s\n 23400K .......... .......... .......... .......... .......... 35% 353M 0s\n 23450K .......... .......... .......... .......... .......... 35% 319M 0s\n 23500K .......... .......... .......... .......... .......... 35% 357M 0s\n 23550K .......... .......... .......... .......... .......... 35% 314M 0s\n 23600K .......... .......... .......... .......... .......... 35% 363M 0s\n 23650K .......... .......... .......... .......... .......... 35% 345M 0s\n 23700K .......... .......... .......... .......... .......... 35% 350M 0s\n 23750K .......... .......... .......... .......... .......... 35% 265M 0s\n 23800K .......... .......... .......... .......... .......... 35% 322M 0s\n 23850K .......... .......... .......... .......... .......... 35% 349M 0s\n 23900K .......... .......... .......... .......... .......... 36% 349M 0s\n 23950K .......... .......... .......... .......... .......... 36% 383M 0s\n 24000K .......... .......... .......... .......... .......... 36% 430M 0s\n 24050K .......... .......... .......... .......... .......... 36% 367M 0s\n 24100K .......... .......... .......... .......... .......... 36% 428M 0s\n 24150K .......... .......... .......... .......... .......... 36% 285M 0s\n 24200K .......... .......... .......... .......... .......... 36% 424M 0s\n 24250K .......... .......... .......... .......... .......... 36% 431M 0s\n 24300K .......... .......... .......... .......... .......... 36% 426M 0s\n 24350K .......... .......... .......... .......... .......... 36% 387M 0s\n 24400K .......... .......... .......... .......... .......... 36% 431M 0s\n 24450K .......... .......... .......... .......... .......... 36% 369M 0s\n 24500K .......... .......... .......... .......... .......... 36% 420M 0s\n 24550K .......... .......... .......... .......... .......... 37% 332M 0s\n 24600K .......... .......... .......... .......... .......... 37% 387M 0s\n 24650K .......... .......... .......... .......... .......... 37% 442M 0s\n 24700K .......... .......... .......... .......... .......... 37% 394M 0s\n 24750K .......... .......... .......... .......... .......... 37% 395M 0s\n 24800K .......... .......... .......... .......... .......... 37% 328M 0s\n 24850K .......... .......... .......... .......... .......... 37% 425M 0s\n 24900K .......... .......... .......... .......... .......... 37% 427M 0s\n 24950K .......... .......... .......... .......... .......... 37% 324M 0s\n 25000K .......... .......... .......... .......... .......... 37% 428M 0s\n 25050K .......... .......... .......... .......... .......... 37% 431M 0s\n 25100K .......... .......... .......... .......... .......... 37% 430M 0s\n 25150K .......... .......... .......... .......... .......... 37% 393M 0s\n 25200K .......... .......... .......... .......... .......... 37% 400M 0s\n 25250K .......... .......... .......... .......... .......... 38% 400M 0s\n 25300K .......... .......... .......... .......... .......... 38% 437M 0s\n 25350K .......... .......... .......... .......... .......... 38% 309M 0s\n 25400K .......... .......... .......... .......... .......... 38% 430M 0s\n 25450K .......... .......... .......... .......... .......... 38% 452M 0s\n 25500K .......... .......... .......... .......... .......... 38% 401M 0s\n 25550K .......... .......... .......... .......... .......... 38% 358M 0s\n 25600K .......... .......... .......... .......... .......... 38% 385M 0s\n 25650K .......... .......... .......... .......... .......... 38% 403M 0s\n 25700K .......... .......... .......... .......... .......... 38% 419M 0s\n 25750K .......... .......... .......... .......... .......... 38% 343M 0s\n 25800K .......... .......... .......... .......... .......... 38% 436M 0s\n 25850K .......... .......... .......... .......... .......... 38% 426M 0s\n 25900K .......... .......... .......... .......... .......... 39% 425M 0s\n 25950K .......... .......... .......... .......... .......... 39% 340M 0s\n 26000K .......... .......... .......... .......... .......... 39% 414M 0s\n 26050K .......... .......... .......... .......... .......... 39% 425M 0s\n 26100K .......... .......... .......... .......... .......... 39% 423M 0s\n 26150K .......... .......... .......... .......... .......... 39% 364M 0s\n 26200K .......... .......... .......... .......... .......... 39% 423M 0s\n 26250K .......... .......... .......... .......... .......... 39% 425M 0s\n 26300K .......... .......... .......... .......... .......... 39% 378M 0s\n 26350K .......... .......... .......... .......... .......... 39% 331M 0s\n 26400K .......... .......... .......... .......... .......... 39% 322M 0s\n 26450K .......... .......... .......... .......... .......... 39% 391M 0s\n 26500K .......... .......... .......... .......... .......... 39% 381M 0s\n 26550K .......... .......... .......... .......... .......... 40% 313M 0s\n 26600K .......... .......... .......... .......... .......... 40% 418M 0s\n 26650K .......... .......... .......... .......... .......... 40% 311M 0s\n 26700K .......... .......... .......... .......... .......... 40% 396M 0s\n 26750K .......... .......... .......... .......... .......... 40% 338M 0s\n 26800K .......... .......... .......... .......... .......... 40% 431M 0s\n 26850K .......... .......... .......... .......... .......... 40% 410M 0s\n 26900K .......... .......... .......... .......... .......... 40% 420M 0s\n 26950K .......... .......... .......... .......... .......... 40% 360M 0s\n 27000K .......... .......... .......... .......... .......... 40% 423M 0s\n 27050K .......... .......... .......... .......... .......... 40% 430M 0s\n 27100K .......... .......... .......... .......... .......... 40% 347M 0s\n 27150K .......... .......... .......... .......... .......... 40% 325M 0s\n 27200K .......... .......... .......... .......... .......... 40% 428M 0s\n 27250K .......... .......... .......... .......... .......... 41% 425M 0s\n 27300K .......... .......... .......... .......... .......... 41% 409M 0s\n 27350K .......... .......... .......... .......... .......... 41% 372M 0s\n 27400K .......... .......... .......... .......... .......... 41% 427M 0s\n 27450K .......... .......... .......... .......... .......... 41% 344M 0s\n 27500K .......... .......... .......... .......... .......... 41% 403M 0s\n 27550K .......... .......... .......... .......... .......... 41% 305M 0s\n 27600K .......... .......... .......... .......... .......... 41% 378M 0s\n 27650K .......... .......... .......... .......... .......... 41% 422M 0s\n 27700K .......... .......... .......... .......... .......... 41% 364M 0s\n 27750K .......... .......... .......... .......... .......... 41% 363M 0s\n 27800K .......... .......... .......... .......... .......... 41% 400M 0s\n 27850K .......... .......... .......... .......... .......... 41% 415M 0s\n 27900K .......... .......... .......... .......... .......... 42% 414M 0s\n 27950K .......... .......... .......... .......... .......... 42% 338M 0s\n 28000K .......... .......... .......... .......... .......... 42% 420M 0s\n 28050K .......... .......... .......... .......... .......... 42% 355M 0s\n 28100K .......... .......... .......... .......... .......... 42% 397M 0s\n 28150K .......\n2025-07-14 14:17:15.304 [info] (ssh_tunnel) stderr: ... .......... .......... .......... .......... 42% 353M 0s\n 28200K .......... .......... .......... .......... .......... 42% 420M 0s\n 28250K .......... .......... .......... .......... .......... 42% 398M 0s\n 28300K .......... .......... .......... .......... .......... 42% 423M 0s\n 28350K .......... .......... .......... .......... .......... 42% 347M 0s\n 28400K .......... .......... .......... .......... .......... 42% 402M 0s\n 28450K .......... .......... .......... .......... .......... 42% 422M 0s\n 28500K .......... .......... .......... .......... .......... 42% 367M 0s\n 28550K .......... .......... .......... .......... .......... 43% 366M 0s\n 28600K .......... .......... .......... .......... .......... 43% 426M 0s\n 28650K .......... .......... .......... .......... .......... 43% 330M 0s\n 28700K .......... .......... .......... .......... .......... 43% 420M 0s\n 28750K .......... .......... .......... .......... .......... 43% 346M 0s\n 28800K .......... .......... .......... .......... .......... 43% 400M 0s\n 28850K .......... .......... .......... .......... .......... 43% 418M 0s\n 28900K .......... .......... .......... .......... .......... 43% 392M 0s\n 28950K .......... .......... .......... .......... .......... 43% 378M 0s\n 29000K .......... .......... .......... .......... .......... 43% 404M 0s\n 29050K .......... .......... .......... .......... .......... 43% 411M 0s\n 29100K .......... .......... .......... .......... .......... 43% 399M 0s\n 29150K .......... .......... .......... .......... .......... 43% 347M 0s\n 29200K .......... .......... .......... .......... .......... 44% 393M 0s\n 29250K .......... .......... .......... .......... .......... 44% 434M 0s\n 29300K .......... .......... .......... .......... .......... 44% 405M 0s\n 29350K .......... .......... .......... .......... .......... 44% 348M 0s\n 29400K .......... .......... .......... .......... .......... 44% 388M 0s\n 29450K .......... .......... .......... .......... .......... 44% 411M 0s\n 29500K .......... .......... .......... .......... .......... 44% 411M 0s\n 29550K .......... .......... .......... .......... .......... 44% 333M 0s\n 29600K .......... .......... .......... .......... .......... 44% 426M 0s\n 29650K .......... .......... .......... .......... .......... 44% 405M 0s\n 29700K .......... .......... .......... .......... .......... 44% 389M 0s\n 29750K .......... .......... .......... .......... .......... 44% 333M 0s\n 29800K .......... .......... .......... .......... .......... 44% 335M 0s\n 29850K .......... .......... .......... .......... .......... 44% 425M 0s\n 29900K .......... .......... .......... .......... .......... 45% 383M 0s\n 29950K .......... .......... .......... .......... .......... 45% 362M 0s\n 30000K .......... .......... .......... .......... .......... 45% 403M 0s\n 30050K .......... .......... .......... .......... .......... 45% 406M 0s\n 30100K .......... .......... .......... .......... .......... 45% 395M 0s\n 30150K ........\n2025-07-14 14:17:15.311 [info] (ssh_tunnel) stderr: .. .......... .......... .......... .......... 45% 318M 0s\n 30200K .......... .......... .......... .......... .......... 45% 326M 0s\n 30250K .......... .......... .......... .......... .......... 45% 429M 0s\n 30300K .......... .......... .......... .......... .......... 45% 394M 0s\n 30350K .......... .......... .......... .......... .......... 45% 315M 0s\n 30400K .......... .......... .......... .......... .......... 45% 427M 0s\n 30450K .......... .......... .......... .......... .......... 45% 402M 0s\n 30500K .......... .......... .......... .......... .......... 45% 382M 0s\n 30550K .......... .......... .......... .......... .......... 46% 345M 0s\n 30600K .......... .......... .......... .......... .......... 46% 418M 0s\n 30650K .......... .......... .......... ......\n2025-07-14 14:17:15.311 [info] (ssh_tunnel) stderr: .... .......... 46% 387M 0s\n 30700K .......... .......... .......... .......... .......... 46% 417M 0s\n 30750K .......... .......... .......... .......... .......... 46% 351M 0s\n 30800K .......... .......... .......... .......... .......... 46% 431M 0s\n 30850K .......... .......... .......... .......... .......... 46% 394M 0s\n 30900K .......... .......... .......... .......... .......... 46% 419M 0s\n 30950K .......... .......... .......... .......... .......... 46% 342M 0s\n 31000K .......... .......... .......... .......... .......... 46% 400M 0s\n 31050K .......... .......... .......... .......... .......... 46% 399M 0s\n 31100K .......... .......... .......... .......... .......... 46% 392M 0s\n 31150K .......... .......... .......... .......... .......... 46% 362M 0s\n 31200K .......... .......... .......... .......... .......... 47% 412M 0s\n 31250K .......... .......... .......... .......... .......... 47% 391M 0s\n 31300K .......... .......... .......... .......... .......... 47% 414M 0s\n 31350K .......... .......... .......... .......... .......... 47% 351M 0s\n 31400K .......... .......... .......... .......... .......... 47% 420M 0s\n 31450K .......... .......... .......... .......... .......... 47% 385M 0s\n 31500K .......... .......... .......... .......... .......... 47% 415M 0s\n 31550K .......... .......... .......... .......... .......... 47% 346M 0s\n 31600K .......... ...\n2025-07-14 14:17:15.313 [info] (ssh_tunnel) stderr: ....... .......... .......... .......... 47% 405M 0s\n 31650K .......... .......... .......... .......... .......... 47% 408M 0s\n 31700K .......... ........\n2025-07-14 14:17:15.316 [info] (ssh_tunnel) stderr: .. .......... .......... .......... 47% 409M 0s\n 31750K .......... .......... .......... .......... .......... 47% 354M 0s\n 31800K .......... .......... ..\n2025-07-14 14:17:15.318 [info] (ssh_tunnel) stderr: ........ .......... .......... 47% 394M 0s\n 31850K .......... .......... .......... .......... .......... 47% 391M 0s\n 31900K .......... .......... ..\n2025-07-14 14:17:15.318 [info] (ssh_tunnel) stderr: ........ .......... .......... 48% 415M 0s\n 31950K .......... .......... .......... .......... .......... 48% 358M 0s\n 32000K .......... .......... .......... .......... .......... 48% 360M 0s\n 32050K .......... .......... .......... .......... .......... 48% 398M 0s\n 32100K .......... .......... .......... .......... .......... 48% 375M 0s\n 32150K .......... .......... .......... .......... .......... 48% 366M 0s\n 32200K .......... .......... .......... .......... .......... 48% 406M 0s\n 32250K .......... .......... .......... .......... .......... 48% 415M 0s\n 32300K .......... .......... .......... .......... .......... 48% 408M 0s\n 32350K .......... .......... .......... .......... .......... 48% 350M 0s\n 32400K .......... .......... .......... .......... ......\n2025-07-14 14:17:15.318 [info] (ssh_tunnel) stderr: .... 48% 360M 0s\n 32450K .......... .......... .......... .......... .......... 48% 412M 0s\n 32500K .......... .......... .......... .......... .......... 48% 385M 0s\n 32550K .......... .......... .......... .......... .......... 49% 370M 0s\n 32600K .......... .......... .......... .......... .......... 49% 413M 0s\n 32650K .......... .......... .......... .......... .......... 49% 418M 0s\n 32700K .......... .......... .......... .......... .......... 49% 421M 0s\n 32750K .......... .......... .......... .......... .......... 49% 66.0M 0s\n 32800K .......... .......... .......... .......... .......... 49% 404M 0s\n 32850K .......... .......... .......... .......... .......... 49% 432M 0s\n 32900K .......... .......... .......... .......... .......... 49% 433M 0s\n 32950K .......... ......\n2025-07-14 14:17:15.318 [info] (ssh_tunnel) stderr: .... .......... .......... .......... 49% 394M 0s\n 33000K .......... .......... .......... .......... .......... 49% 388M 0s\n 33050K .......... .......... .......... .......... .......... 49% 416M 0s\n 33100K .......... .......... .......... .......... .......... 49% 433M 0s\n 33150K .......... .......... ....\n2025-07-14 14:17:15.321 [info] (ssh_tunnel) stderr: ...... .......... .......... 49% 363M 0s\n 33200K .......... .......... .......... .......... .......... 50% 432M 0s\n 33250K .......... .......... .......... ......\n2025-07-14 14:17:15.325 [info] (ssh_tunnel) stderr: .... .......... 50% 428M 0s\n 33300K .......... .......... .......... .......... .......... 50% 455M 0s\n 33350K .......... .......... .......... ..........\n2025-07-14 14:17:15.325 [info] (ssh_tunnel) stderr: .......... 50% 398M 0s\n 33400K .......... .......... .......... .......... .......... 50% 443M 0s\n 33450K .......... .......... .......... .......... .......... 50% 427M 0s\n 33500K .......... .......... .......... .......... .......... 50% 432M 0s\n 33550K .......... .......... .......... .......... .......... 50% 364M 0s\n 33600K .......... .......... .......... .......... .......... 50% 452M 0s\n 33650K .......... .......... .......... .......... .......... 50% 443M 0s\n 33700K .......... .......... .......... .......... .......... 50% 445M 0s\n 33750K .......... .......... .......... .......... .......... 50% 404M 0s\n 33800K .......... .......... .......... .......... .......... 50% 432M 0s\n 33850K .......... .......... .......... ......\n2025-07-14 14:17:15.325 [info] (ssh_tunnel) stderr: .... .......... 51% 444M 0s\n 33900K .......... .......... .......... .......... .......... 51% 424M 0s\n 33950K .......... .......... .......... .......... .......... 51% 365M 0s\n 34000K .......... .......... .......... .......... .......... 51% 448M 0s\n 34050K .......... .......... .......... .......... .......... 51% 434M 0s\n 34100K .......... .......... .......... .......... .......... 51% 394M 0s\n 34150K .......... .......... .......... .......... .......... 51% 344M 0s\n 34200K .......... .......... .......... .......... .......... 51% 424M 0s\n 34250K .......... .......... .......... .......... .......... 51% 434M 0s\n 34300K .......... .......... .......... .......... .......... 51% 401M 0s\n 34350K .......... .......... .......... .......... .......... 51% 398M 0s\n 34400K .......... .......... .......... .......... .......... 51% 434M 0s\n 34450K .......... .......... .......... .......... .......... 51% 406M 0s\n 34500K .......... .......... .......... .......... .......... 51% 438M 0s\n 34550K ........\n2025-07-14 14:17:15.331 [info] (ssh_tunnel) stderr: .. .......... .......... .......... .......... 52% 398M 0s\n 34600K .......... .......... .......... .......... .......... 52% 418M 0s\n 34650K .......... .......... .......... .......... .......... 52% 445M 0s\n 34700K .......... .......... .......... .......... .......\n2025-07-14 14:17:15.332 [info] (ssh_tunnel) stderr: ... 52% 425M 0s\n 34750K .......... .......... .......... .......... .......... 52% 332M 0s\n 34800K .......... .......... .......... ........\n2025-07-14 14:17:15.332 [info] (ssh_tunnel) stderr: .. .......... 52% 445M 0s\n 34850K .......... .......... .......... .......... .......... 52% 439M 0s\n 34900K .......... .......... .......... .......... .......... 52% 427M 0s\n 34950K .......... .......... .......... .......... .......... 52% 393M 0s\n 35000K .......... .......... .......... .......... .......... 52% 421M 0s\n 35050K .......... .......... .......... .......... .......... 52% 437M 0s\n 35100K .......... .......... .......... ....\n2025-07-14 14:17:15.332 [info] (ssh_tunnel) stderr: ...... .......... 52% 449M 0s\n 35150K .......... .......... .......... .......... .......... 52% 328M 0s\n 35200K .......... .......... .......... .......... .......... 53% 445M 0s\n 35250K .......... .......... .......... .......... .......... 53% 452M 0s\n 35300K .......... .......... .......... .......... .......... 53% 382M 0s\n 35350K .......... .......... .......... .......... .......... 53% 398M 0s\n 35400K .......... .......... .......... .......... .......... 53% 429M 0s\n 35450K .......... .......... .......... .......... .......... 53% 409M 0s\n 35500K .......... .......... .......... .......... .......... 53% 422M 0s\n 35550K .......... .......... .......... .......... .......... 53% 347M 0s\n 35600K .......... .......... .......... .......... .......... 53% 445M 0s\n 35650K .......... .......... .......... .......... .......... 53% 447M 0s\n 35700K .......... .......... .......... .......... .......... 53% 391M 0s\n 35750K .......... .......... .......... .......... .......... 53% 386M 0s\n 35800K .......... .......... .......... ...\n2025-07-14 14:17:15.332 [info] (ssh_tunnel) stderr: ....... .......... 53% 439M 0s\n 35850K .......... .......... .......... .......... .......... 54% 439M 0s\n 35900K .......... .......... ......\n2025-07-14 14:17:15.336 [info] (ssh_tunnel) stderr: .... .......... .......... 54% 441M 0s\n 35950K .......... .......... .......... .......... .......... 54% 362M 0s\n 36000K .......... .......... ..\n2025-07-14 14:17:15.357 [info] (ssh_tunnel) stderr: ........ .......... .......... 54% 419M 0s\n 36050K .......... .......... .......... .......... .......... 54% 449M 0s\n 36100K .......... .......... .......... .......... .......... 54% 440M 0s\n 36150K .......... .......... .......... .......... .......... 54% 388M 0s\n 36200K .......... .......... .......... .......... .......... 54% 429M 0s\n 36250K .......... .......... .......... .......... .......... 54% 434M 0s\n 36300K .......... .......... .......... .......... .......... 54% 433M 0s\n 36350K .......... .......... .......... .......... .......... 54% 361M 0s\n 36400K .......... .......... .......... .......... .......... 54% 419M 0s\n 36450K .......... .......... .......... .......... .......... 54% 437M 0s\n 36500K .........\n2025-07-14 14:17:15.357 [info] (ssh_tunnel) stderr: . .......... .......... .......... .......... 54% 429M 0s\n 36550K .......... .......... .......... .......... .......... 55% 393M 0s\n 36600K .......... .......... .......... .......... .......... 55% 375M 0s\n 36650K .......... .......... .......... .......... .......... 55% 356M 0s\n 36700K .......... .......... .......... .......... .......... 55% 433M 0s\n 36750K .......... .......... .......... .......... .......... 55% 345M 0s\n 36800K .......... .......... .......... .......... .......... 55% 405M 0s\n 36850K .......... .......... .......... .......... .......... 55% 405M 0s\n 36900K .......... .......... .......... .......... .......... 55% 441M 0s\n 36950K .......... .......... .......... .......... .......... 55% 402M 0s\n 37000K .......... .......... .......... .......... .......... 55% 418M 0s\n 37050K .......... .......... .......... .......... .......... 55% 396M 0s\n 37100K .......... .......... .......... .......... .......... 55% 439M 0s\n 37150K .......... .......... .......... .......... .......... 55% 345M 0s\n 37200K .......... .......... .......... .......... .......... 56% 395M 0s\n 37250K .......... .......... .......... .......... .......... 56% 418M 0s\n 37300K .......... .......... .......... .......... .......... 56% 434M 0s\n 37350K .......... .......... .......... .......... .......... 56% 398M 0s\n 37400K .......... .......... .......... .......... .......... 56% 392M 0s\n 37450K .......... .......... .......... .......... .......... 56% 420M 0s\n 37500K .......... .......... .......... .......... .......... 56% 439M 0s\n 37550K ......\n2025-07-14 14:17:15.429 [info] (ssh_tunnel) stderr: .... .......... .......... .......... .......... 56% 336M 0s\n 37600K .......... .......... .......... .......... .......... 56% 407M 0s\n 37650K .......... .......... .......... .......... .......... 56% 401M 0s\n 37700K .......... .......... .......... .......... ..........\n2025-07-14 14:17:15.432 [info] (ssh_tunnel) stderr: 56% 416M 0s\n 37750K .......... .......... .......... .......... .......... 56% 393M 0s\n 37800K .......... .......... .......... .......... .......... 56% 405M 0s\n 37850K .......... .......... .......... .......... .......... 57% 408M 0s\n 37900K .......... .......... .......... .......... .......... 57% 394M 0s\n 37950K .......... .......... .......... .......... .......... 57% 363M 0s\n 38000K .......... .......... .......... .......... .......... 57% 444M 0s\n 38050K .......... .......... .......... .......... .......... 57% 402M 0s\n 38100K .......... ........\n2025-07-14 14:17:15.432 [info] (ssh_tunnel) stderr: .. .......... .......... .......... 57% 421M 0s\n 38150K .......... .......... .......... .......... .......... 57% 393M 0s\n 38200K .......... .......... .......... .......... .......... 57% 441M 0s\n 38250K .......... .......... .......... .......... .......... 57% 437M 0s\n 38300K .......... .......... .......... .......... .......... 57% 443M 0s\n 38350K .......... .......... .......... .......... .......... 57% 362M 0s\n 38400K .......... .......... .......... .......... .......... 57% 432M 0s\n 38450K .......... .......... .......... .......... .......... 57% 411M 0s\n 38500K .......... .......... .......... .......... .......... 58% 428M 0s\n 38550K .......... .......... .......... .......... .......... 58% 392M 0s\n 38600K .......... .......... .......... .......... .......... 58% 434M 0s\n 38650K .......... .......... .......... .......... .......... 58% 429M 0s\n 38700K .......... .......... .......... .......... .......... 58% 439M 0s\n 38750K .......... .......... .......... .......... .......... 58% 358M 0s\n 38800K .......... .......... .......... .......... .......... 58% 434M 0s\n 38850K .......... .......... .......... .......... .......... 58% 435M 0s\n 38900K .......... .......... .......... .......... .......... 58% 418M 0s\n 38950K .......... .......... .......... .......... .......... 58% 395M 0s\n 39000K .......... .......... .......... .......... .......... 58% 435M 0s\n 39050K .......... ..........\n2025-07-14 14:17:15.434 [info] (ssh_tunnel) stderr: .......... .......... .......... 58% 426M 0s\n 39100K .......... .......... .......... .......... .......... 58% 421M 0s\n 39150K .......... .......... .......... .......... .......... 58% 347M 0s\n 39200K .......... .......... .......... .......... .......... 59% 441M 0s\n 39250K .......... \n2025-07-14 14:17:15.436 [info] (ssh_tunnel) stderr: .......... .......... .......... .......... 59% 410M 0s\n 39300K .......... .......... .......... .......... .......... 59% 415M 0s\n 39350K ..\n2025-07-14 14:17:15.438 [info] (ssh_tunnel) stderr: ........ .......... .......... .......... .......... 59% 384M 0s\n 39400K .......... .......... .......... .......... .......... 59% 440M\n2025-07-14 14:17:15.465 [info] (ssh_tunnel) stderr: 0s\n 39450K .......... .......... .......... .......... .......... 59% 432M 0s\n 39500K .......... .......... .......... .......... .......... 59% 413M 0s\n 39550K .......... .......... .......... .......... .......... 59% 360M 0s\n 39600K .......... .......... .......... .......... .......... 59% 429M 0s\n 39650K .......... .......... .......... .......... .......... 59% 417M 0s\n 39700K .......... .......... .......... .......... .......... 59% 424M 0s\n 39750K .......... .......... .......... .......... .......... 59% 379M 0s\n 39800K .......... .......... .......... .......... .......... 59% 430M 0s\n 39850K .......... .......... .......... .......... .......... 60% 427M 0s\n 39900K .......... .......... .......... .......... .......... 60% 417M 0s\n 39950K .......... .......... .......... .......... .......... 60% 349M 0s\n 40000K .......... .......... .......... .......... .......... 60% 437M 0s\n 40050K .......... .......... .......... .......... .......... 60% 386M 0s\n 40100K .......... .......... .......... .......... .......... 60% 380M 0s\n 40150K .......... .......... .......... .......... .......... 60% 364M 0s\n 40200K .......... .......... .......... .......... .......... 60% 407M 0s\n 40250K .......... .......... .......... .......... .......... 60% 423M 0s\n 40300K .......... .......... .......... .......... .......... 60% 422M 0s\n 40350K .......... .......... .......... .......... .......... 60% 351M 0s\n 40400K .......... .......... .......... .......... .......... 60% 416M 0s\n 40450K .......... .......... .......... .......... .......... 60% 430M 0s\n 40500K .......... .......... .......... .......... .......... 61% 419M 0s\n 40550K .......... .......... .......... .......... .......... 61% 373M 0s\n 40600K .......... .......... .......... .......... .......... 61% 419M 0s\n 40650K .......... .......... .......... .......... .......... 61% 432M 0s\n 40700K .......... .......... .......... .......... .......... 61% 420M 0s\n 40750K .......... .......... .......... .......... .......... 61% 351M 0s\n 40800K .......... .......... .......... .......... .......... 61% 428M 0s\n 40850K .......... .......... .......... .......... .......... 61% 425M 0s\n 40900K .......... .......... .......... .......... .......... 61% 424M 0s\n 40950K .......... .......... .......... .......... .......... 61% 370M 0s\n 41000K .......... .......... .......... .......... .......... 61% 413M 0s\n 41050K .......... .......... .......... .......... .......... 61% 425M 0s\n 41100K .......... .......... .......... .......... .......... 61% 411M 0s\n 41150K .......... .......... .......... .......... .......... 61% 349M 0s\n 41200K .......... .......... .......... .......... .......... 62% 431M 0s\n 41250K .......... .......... .......... .......... .......... 62% 413M 0s\n 41300K .......... .......... .......... .......... .......... 62% 412M 0s\n 41350K .......... .......... .......... .......... .......... 62% 383M 0s\n 41400K .......... .......... .......... .......... .......... 62% 409M 0s\n 41450K .......... .......... .......... .......... .......... 62% 418M 0s\n 41500K .......... .......... .......... .......... .......... 62% 397M 0s\n 41550K .......... .......... .......... .......... .......... 62% 351M 0s\n 41600K .......... .......... .......... .......... .......... 62% 424M 0s\n 41650K .......... .......... .......... .......... .......... 62% 431M 0s\n 41700K .......... .......... .......... .......... .......... 62% 421M 0s\n 41750K .......... .......... .......... .......... .......... 62% 380M 0s\n 41800K .......... .......... .......... .......... .......... 62% 403M 0s\n 41850K .......... .......... .......... .......... .......... 63% 431M 0s\n 41900K .......... .......... .......... .......... .......... 63% 424M 0s\n 41950K .......... .......... .......... .......... .......... 63% 346M 0s\n 42000K .......... .......... .......... .......... .......... 63% 420M 0s\n 42050K .......... .......... .......... .......... .......... 63% 415M 0s\n 42100K .......... .......... .......... .......... .......... 63% 418M 0s\n 42150K .......... .......... .......... .......... .......... 63% 386M 0s\n 42200K .......... .......... .......... .......... .......... 63% 403M 0s\n 42250K .......... .......... .......... .......... .......... 63% 418M 0s\n 42300K .......... .......... .......... .......... .......... 63% 411M 0s\n 42350K .......... .......... .......... .......... .......... 63% 347M 0s\n 42400K .......... .......... .......... .......... .......... 63% 434M 0s\n 42450K .......... .......... .......... .......... .......... 63% 419M 0s\n 42500K .......... .......... .......... .......... .......... 64% 418M 0s\n 42550K .......... .......... .......... .......... .......... 64% 381M 0s\n 42600K .......... .......... .......... .......... .......... 64% 427M 0s\n 42650K .......... .......... .......... .......... .......... 64% 413M 0s\n 42700K .......... .......... .......... .......... .......... 64% 422M 0s\n 42750K .......... .......... .......... .......... .......... 64% 349M 0s\n 42800K .......... .......... .......... .......... .......... 64% 417M 0s\n 42850K .......... .......... .......... .......... .......... 64% 424M 0s\n 42900K .......... .......... .......... .......... .......... 64% 423M 0s\n 42950K .......... .......... .......... .......... .......... 64% 386M 0s\n 43000K .......... .......... .......... .......... .......... 64% 415M 0s\n 43050K .......... .......... .......... .......... .......... 64% 383M 0s\n 43100K .......... .......... .......... .......... .......... 64% 412M 0s\n 43150K .......... .......... .......... .......... .......... 64% 356M 0s\n 43200K .......... .......... .......... .......... .......... 65% 381M 0s\n 43250K .......... .......... .......... .......... .......... 65% 377M 0s\n 43300K .......... .......... .......... .......... .......... 65% 409M 0s\n 43350K .......... .......... .......... .......... .......... 65% 383M 0s\n 43400K .......... .......... .......... .......... .......... 65% 406M 0s\n 43450K .......... .......... .......... .......... .......... 65% 388M 0s\n 43500K .......... .......... .......... .......... .......... 65% 411M 0s\n 43550K .......... .......... .......... .......... .......... 65% 328M 0s\n 43600K .......... .......... .......... .......... .......... 65% 415M 0s\n 43650K .......... .......... .......... .......... .......... 65% 420M 0s\n 43700K .......... .......... .......... .......... .......... 65% 398M 0s\n 43750K .......... .......... .......... .......... .......... 65% 353M 0s\n 43800K ......\n2025-07-14 14:17:15.465 [info] (ssh_tunnel) stderr: .... .......... .......... .......... .......... 65% 404M 0s\n 43850K .......... .......... .......... .......... .......... 66%\n2025-07-14 14:17:15.469 [info] (ssh_tunnel) stderr: 386M 0s\n 43900K .......... .......... .......... .......... .......... 66% 382M 0s\n 43950K .......... .......... .......... .......... .......... 66% 319M 0s\n 44000K .......... .......... .......... .......... .......... 66% 419M 0s\n 44050K .......... .......... .......... .......... .......... 66% 427M 0s\n 44100K .......... .......... .......... .......... .......... 66% 335M 0s\n 44150K .......... .......... .......... .......... .......... 66% 266M 0s\n 44200K .......... .......... .......... .......... .......... 66% 279M 0s\n 44250K .......... .......... .......... .......... ....\n2025-07-14 14:17:15.471 [info] (ssh_tunnel) stderr: ...... 66% 303M 0s\n 44300K .......... .......... .......... .......... .......... 66% 337M 0s\n 44350K .......... .......... .......... .......... .......\n2025-07-14 14:17:15.473 [info] (ssh_tunnel) stderr: ... 66% 331M 0s\n 44400K .......... .......... .......... .......... .......... 66% 427M 0s\n 44450K .......... .......... .......... .......... .......... 66% 422M 0s\n 44500K .......... .......... .......... .......... .......... 67% 428M 0s\n 44550K .......... .......... .......... .......... .......... 67% 367M 0s\n 44600K .......... .......... .......... .......... .......... 67% 415M 0s\n 44650K .......... .......... .......... .......... .......... 67% 405M 0s\n 44700K .......... .......... .......... .......... .......... 67% 414M 0s\n 44750K .......... .......... ....\n2025-07-14 14:17:15.473 [info] (ssh_tunnel) stderr: ...... .......... .......... 67% 354M 0s\n 44800K .......... .......... .......... .......... .......... 67% 413M 0s\n 44850K .......... .......... .......... .......... .......... 67% 421M 0s\n 44900K .......... .......... .......... .......... .......... 67% 414M 0s\n 44950K .......... .......... .......... .......... .......... 67% 372M 0s\n 45000K .......... .......... .......... .......... .......... 67% 419M 0s\n 45050K .......... .......... .......... .......... .......... 67% 421M 0s\n 45100K .......... .......... .......... .......... .......... 67% 420M 0s\n 45150K .......... .......... .......... .......... .......... 68% 348M 0s\n 45200K .......... .......... .......... .......... .......... 68% 417M 0s\n 45250K .......... .......... .......... .......... .......... 68% 429M 0s\n 45300K .......... .......... .......... .......... .......... 68% 411M 0s\n 45350K .......... .......... .......... .......... .......... 68% 370M 0s\n 45400K .......... .......... .......... .......... .......... 68% 411M 0s\n 45450K .......... .......... .......... .......... .......... 68% 423M 0s\n 45500K .......... .......... .......... .......... .........\n2025-07-14 14:17:15.475 [info] (ssh_tunnel) stderr: . 68% 420M 0s\n 45550K .......... .......... .......... .......... .......... 68% 338M 0s\n 45600K .......... .......... .......... .......... .......... 68% 395M 0s\n 45650K .......... .......... .......... .......... .......... 68% 363M 0s\n 45700K .......... .......... .......... .......... .......... 68% 409M 0s\n 45750K .......... .......... .......... .......... .......... 68% 359M 0s\n 45800K .......... .......... .......... .......... ..........\n2025-07-14 14:17:15.483 [info] (ssh_tunnel) stderr: 68% 340M 0s\n 45850K .......... .......... .......... .......... .......... 69% 409M 0s\n 45900K .......... .......... .......... .......... ..\n2025-07-14 14:17:15.483 [info] (ssh_tunnel) stderr: ........ 69% 380M 0s\n 45950K .......... .......... .......... .......... .......... 69% 340M 0s\n 46000K .......... .......... .......... .......... .......... 69% 403M 0s\n 46050K .......... .......... .......... .......... .......... 69% 382M 0s\n 46100K .......... .......... .......... .......... ..........\n2025-07-14 14:17:15.486 [info] (ssh_tunnel) stderr: 69% 397M 0s\n 46150K .......... .......... .......... .......... .......... 69% 356M 0s\n 46200K .......... .......... .......... .......... .......... 69% 421M 0s\n 46250K .......... .......... .......... .......... .......... 69% 426M 0s\n 46300K .......... .......... .......... .......... .......... 69% 406M 0s\n 46350K .......... .......... .......... .......... .......... 69% 334M 0s\n 46400K .......... .......... .......\n2025-07-14 14:17:15.486 [info] (ssh_tunnel) stderr: ... .......... .......... 69% 413M 0s\n 46450K .......... .......... .......... .......... .......... 69% 410M 0s\n 46500K .......... .......... .......... .......... .......... 70% 422M 0s\n 46550K .......... .......... .......... .......... .......... 70% 369M 0s\n 46600K .......... .......... .......... .......... .......... 70% 421M 0s\n 46650K .......... .......... .......... .......... .......... 70% 413M 0s\n 46700K .......... .......... .......... .......... .......... 70% 430M 0s\n 46750K .......... .......... .......... .......... .......... 70% 354M 0s\n 46800K .......... .......... .......... .......... .......... 70% 417M 0s\n 46850K .......... .......... .......... .......... .......... 70% 416M 0s\n 46900K .......... .......... .......... .......... .......... 70% 424M 0s\n 46950K .......... .......... .......... .......... .......... 70% 315M 0s\n 47000K .......... .......... .......... .......... .......... 70% 402M 0s\n 47050K .......... .......... .......... ......\n2025-07-14 14:17:15.487 [info] (ssh_tunnel) stderr: .... .......... 70% 360M 0s\n 47100K .......... .......... .......... .......... .......... 70% 400M 0s\n 47150K .......... .......... .......... .......... .......... 71% 344M 0s\n 47200K .......... .......... .......... .......... .......... 71% 410M 0s\n 47250K .......... .......... .......... .......... .......... 71% 372M 0s\n 47300K .......... .......... .......... .......... .......... 71% 383M 0s\n 47350K .......... .......... .......... .......... .......... 71% 331M 0s\n2025-07-14 14:17:15.488 [info] (ssh_tunnel) stderr: \n 47400K .......... .......... .......... .......... .......... 71% 430M 0s\n 47450K .......... .......... .......... .......... ....\n2025-07-14 14:17:15.494 [info] (ssh_tunnel) stderr: ...... 71% 312M 0s\n 47500K .......... .......... .......... .......... .......... 71% 394M 0s\n 47550K .......... .......... .......... .......... .......... 71% 322M 0s\n 47600K .......... .......... .......... .......... .......... 71% 415M 0s\n 47650K .......... .......... .......... .......... .......... 71% 389M 0s\n 47700K .......... .......... .......... .......... .......... 71% 373M 0s\n 47750K .......... .......... .......... .\n2025-07-14 14:17:15.494 [info] (ssh_tunnel) stderr: ......... .......... 71% 347M 0s\n 47800K .......... .......... .......... .......... .......... 71% 417M 0s\n 47850K .......... .......... .......... .......... .......... 72% 413M 0s\n 47900K .......... .......... .......... .......... .......... 72% 350M 0s\n 47950K .......... .......... .......... .......... .......... 72% 309M 0s\n 48000K .......... .......... .......... .......... .......... 72% 402M 0s\n 48050K .......... .......... .......... .......... .......... 72% 394M 0s\n 48100K .......... .......... .......... .......... .......... 72% 363M 0s\n 48150K .......... .......... .......... .......... .......... 72% 358M 0s\n 48200K .......... .......... .......... .......... .......... 72% 391M 0s\n 48250K .......... .......... .......... .......... .......... 72% 386M 0s\n 48300K .......... .......... .......... .......... .......... 72% 387M 0s\n 48350K .......... .......... .......... .......... .......... 72% 340M 0s\n 48400K .......... .......... .......... .......... .......... 72% 387M 0s\n 48450K .......... .......... .......... .......... .......... 72% 388M 0s\n 48500K .......... .......... .......... .......... .......... 73% 347M 0s\n 48550K .......... .......... .......... .......... .......... 73% 369M 0s\n 48600K .......... ....\n2025-07-14 14:17:15.495 [info] (ssh_tunnel) stderr: ...... .......... .......... .......... 73% 411M 0s\n 48650K .......... .......... .......... .......... .......... 73% 385M 0s\n 48700K .......... .......... .......... .......... .......... 73% 341M 0s\n 48750K .......... .......... .......... ..........\n2025-07-14 14:17:15.496 [info] (ssh_tunnel) stderr: .......... 73% 333M 0s\n 48800K .......... .......... .......... .......... .......... 73% 419M 0s\n 48850K .......... .......... .......... .......... ..\n2025-07-14 14:17:15.503 [info] (ssh_tunnel) stderr: ........ 73% 361M 0s\n 48900K .......... .......... .......... .......... .......... 73% 366M 0s\n 48950K .......... .......... .......... .......... .......... 73% 370M 0s\n 49000K .......... .......... .......... .......... .......... 73% 420M 0s\n 49050K .......... ..........\n2025-07-14 14:17:15.506 [info] (ssh_tunnel) stderr: .......... .......... .......... 73% 381M 0s\n 49100K .......... .......... .......... .......... .......... 73% 375M 0s\n 49150K .......... .......... .......... .......... .......... 74% 71.0M 0s\n 49200K .......... .......... .......... .......... .......... 74%\n2025-07-14 14:17:15.507 [info] (ssh_tunnel) stderr: 394M 0s\n 49250K .......... .......... .......... .......... .......... 74% 407M 0s\n 49300K .......... .......... .......... .......... .......... 74% 391M 0s\n 49350K .......... .......... .......... .......... .......... 74% 400M 0s\n 49400K .......... .......... .......... .......... .......... 74% 415M 0s\n 49450K .......... .......... .......... .......... .......... 74% 376M 0s\n 49500K .......... .......... .......... .......... .......... 74% 429M 0s\n 49550K .......... .......... .......... .......... .......... 74% 371M 0s\n 49600K .......... .......... .......... .......... .......... 74% 385M 0s\n 49650K .......... .......... .......... .......... .......... 74% 408M 0s\n 49700K .......... .......... .......... .......... .......... 74% 388M 0s\n 49750K .......... .......... .......... .......... .......... 74% 394M 0s\n 49800K .......... .......... .......... .......... .......... 75% 450M 0s\n 49850K .......... .......... .......... .......... .......... 75% 370M 0s\n 49900K .......... .......... .......... .......... .......... 75% 422M 0s\n 49950K .......... .......... .......... .......... .......... 75% 337M 0s\n 50000K .......... .......... .......... .......... .......... 75% 404M 0s\n 50050K .......... .......... .......... .......... .......... 75% 421M 0s\n 50100K .......... .......... .......... .......... .......... 75% 432M 0s\n 50150K .......... .......... .......... ..........\n2025-07-14 14:17:15.507 [info] (ssh_tunnel) stderr: .......... 75% 367M 0s\n 50200K .......... .......... .......... .......... .......... 75% 448M 0s\n 50250K .......... .......... .......... .......... .......... 75% 415M 0s\n 50300K .......... .......... .......... .......... .......... 75% 404M 0s\n 50350K .......... .......... .......... .......... .......... 75% 370M 0s\n 50400K .......... .......... .......... .......... .......... 75% 449M 0s\n 50450K .......... .......... .......... .......... .......... 75% 397M 0s\n 50500K ..........\n2025-07-14 14:17:15.514 [info] (ssh_tunnel) stderr: .......... .......... .......... .......... 76% 402M 0s\n 50550K .......... .......... .......... .......... .......... 76% 407M 0s\n 50600K .......... .......... .......... .......... .......... 76% 450M 0s\n 50650K .......... .......... .......... .......... .......... 76% 437M 0s\n 50700K .......... .......... .......... .......... .......... 76% 381M 0s\n 50750K .......... .......... .......... .......... .......... 76% 337M 0s\n 50800K .......... .......... .......... .......... .......... 76% 452M 0s\n 50850K .......... .......... .......... .......... .......... 76% 442M 0s\n 50900K .......... .......... .......... .......... .......... 76% 372M 0s\n 50950K .......... .......... .......... .......... .......... 76% 357M 0s\n 51000K .......... .......... .......... .......... .......... 76% 448M 0s\n 51050K .......... .......... .......... .......... .......... 76% 449M 0s\n 51100K .......... .......... .......... .......... .......... 76% 384M 0s\n 51150K .......... .......... .......... .......... .......... 77% 330M 0s\n 51200K .......... .\n2025-07-14 14:17:15.514 [info] (ssh_tunnel) stderr: ......... .......... .......... .......... 77% 420M 0s\n 51250K .......... .......... .......... .......... .......... 77% 418M 0s\n 51300K .......... .......... .......... .......... .......... 77% 419M 0s\n 51350K .......... .......... .......... .......... .......... 77% 391M 0s\n 51400K .......... .......... .......... .......... .......... 77% 429M 0s\n 51450K .......... .......... .......... .......... .......... 77% 432M 0s\n 51500K .......... .......... .......... .......... .......... 77% 413M 0s\n 51550K .......... .......... .......... .......... .......... 77% 348M 0s\n 51600K .......... .......... .......... .......... .......... 77% 440M 0s\n 51650K .......... .......... .......... .......... .......... 77% 421M 0s\n 51700K .......... .......... .......... .......... .......... 77% 389M 0s\n 51750K .......... .......... .......... .......... .......... 77% 380M 0s\n 51800K .......... .......... .......... .......... .......... 78% 432M 0s\n 51850K .......... .......... .......... .......... .......... 78% 397M 0s\n 51900K .......... .......... .......... .......... .......... 78% 393M 0s\n 51950K .......... .......... .......... .......... .......... 78% 345M 0s\n 52000K .......... .......... .......... .......... .......... 78% 415M 0s\n 52050K .......... .......... .......... .......... .......... 78% 412M 0s\n 52100K .......... .......... .......... .......... .......... 78% 384M 0s\n 52150K .......... .......... .......... .......... .......... 78% 330M 0s\n 52200K .......... ....\n2025-07-14 14:17:15.522 [info] (ssh_tunnel) stderr: ...... .......... .......... .......... 78% 418M 0s\n 52250K .......... .......... .......... .......... .......... 78% 411M 0s\n 52300K .......... .......... .......... .......... .......... 78% 445M 0s\n 52350K .......... .......... .......... .......... .......... 78% 313M 0s\n 52400K .......... ...\n2025-07-14 14:17:15.527 [info] (ssh_tunnel) stderr: ....... .......... .......... .......... 78% 385M 0s\n 52450K .......... .......... .......... .......... .......... 78% 406M 0s\n 52500K .......... .......... .......... .......... .......... 79% 424M 0s\n 52550K .......... .......... .......... .......... .......... 79% 336M 0s\n 52600K .......... .......... .......... .......... .......... 79% 380M 0s\n 52650K .......... .......... .......... .......... .......... 79% 453M 0s\n 52700K .......... .......... .......... .......... .......... 79% 342M 0s\n 52750K .......... .......... .......... .......... .......... 79% 353M 0s\n 52800K .......... .......... .......... .......... .......... 79% 402M 0s\n 52850K .......... ..........\n2025-07-14 14:17:15.527 [info] (ssh_tunnel) stderr: .......... .......... .......... 79% 399M 0s\n 52900K .......... .......... .......... .......... .......... 79% 440M 0s\n 52950K .......... .......... .......... .......... .......... 79% 310M 0s\n 53000K .......... .......... .......... .......... .......... 79% 378M 0s\n 53050K .......... .......... .......... .......... .......... 79% 397M 0s\n 53100K .......... .......... .......... .......... .......... 79% 433M 0s\n 53150K .......... .......... .......... .......... .......... 80% 383M 0s\n 53200K .......... .......... .......... .......... .......... 80% 382M 0s\n 53250K .......... .......... .......... .......... .......... 80% 415M 0s\n 53300K .......... .......... .......... .......... .......... 80% 426M 0s\n 53350K .......... .......... .......... .......... .......... 80% 369M 0s\n 53400K .......... .......... .......... .......... .......... 80% 392M 0s\n 53450K .......... .......... .......... .......... .......... 80% 421M 0s\n 53500K .......... .......... .......... .......... .......... 80% 391M 0s\n 53550K .......... .......... .......... .......... .......... 80% 345M 0s\n 53600K .......... .......... .......... .......... .......... 80% 416M 0s\n 53650K .......... .......... .......... .......... .......... 80% 431M 0s\n 53700K .......... .......... .......... .......... .......... 80% 457M 0s\n 53750K .......... .......... .......... .......... .......... 80% 321M 0s\n 53800K .......... .......... .......... .......... .......... 81% 374M 0s\n 53850K .......... .......... .......... .......... .......... 81% 428M 0s\n 53900K .......... .......... .......... .......... .......... 81% 399M 0s\n 53950K .......... .......... .......... .......... .......... 81% 391M 0s\n 54000K .......... .......... .......... .......... .......... 81% 380M 0s\n 54050K .......... .......... .......... .......... .......... 81% 445M 0s\n 54100K .......... .......... .......... .......... .......... 81% 462M 0s\n 54150K .......... .......... .......... .......... .......... 81% 337M 0s\n 54200K .......... .......... .......... .......... .......... 81% 417M 0s\n 54250K .......... .......... .......... .......... .......... 81% 445M 0s\n 54300K .......... .......... .......... .......... .......... 81% 408M 0s\n 54350K .......... .......... .......... .......... .......... 81% 323M 0s\n 54400K .......... .......... .......... .......... .......... 81% 411M 0s\n 54450K .......... .......... .......... .......... .......... 81% 442M 0s\n 54500K .......... ........\n2025-07-14 14:17:15.536 [info] (ssh_tunnel) stderr: .. .......... .......... .......... 82% 366M 0s\n 54550K .......... .......... .......... .......... .......... 82% 365M 0s\n 54600K .......... .......... .......... .......... .......... 82% 399M 0s\n 54650K .......... .......... .........\n2025-07-14 14:17:15.536 [info] (ssh_tunnel) stderr: . .......... .......... 82% 416M 0s\n 54700K .......... .......... .......... .......... .......... 82% 377M 0s\n 54750K .......... .......... .......... .......... .......... 82% 364M 0s\n 54800K .......... .......... .......... .......... .......... 82% 416M 0s\n 54850K .......... .......... .......... .......... .......... 82% 422M 0s\n 54900K .......... .......... .......... .......... .......... 82% 422M 0s\n 54950K .......... .......... .......... .......... .......... 82% 345M 0s\n 55000K .......... .......... .......... .......... .......... 82% 427M 0s\n 55050K .......... .......... .......... .......... .......... 82% 399M 0s\n 55100K .......... .......... .......... .......... .......... 82% 395M 0s\n 55150K .......... .......... .......... .......... .......... 83% 394M 0s\n 55200K .......... .......... .......... .......... .......... 83% 381M 0s\n 55250K .......... .......... .......... .......... .......... 83% 418M 0s\n 55300K .......... .......... .......... .......... .......... 83% 438M 0s\n 55350K .......... .......... .......... .......... .......... 83% 362M 0s\n 55400K .......... .......... .......... .......... .......... 83% 396M 0s\n 55450K .......... .......... .......... .......... .......... 83% 421M 0s\n 55500K .......... .......... .......... .......... .......... 83% 372M 0s\n 55550K .......... .......... .......... .......... .......... 83% 384M 0s\n 55600K .......... .......... .......... .......... .......... 83% 365M 0s\n 55650K .......... .......... .......... .......... .......... 83% 425M 0s\n 55700K .......... .......... .......... .......... .......... 83% 387M 0s\n 55750K .......... .......... .......... .......... .......... 83% 332M 0s\n 55800K .......... .......... .......... .......... .......... 84% 417M 0s\n 55850K .......... .......... .......... .......... .......... 84% 418M 0s\n 55900K .......... .......... .......... .......... .......... 84% 395M 0s\n 55950K .......... .......... .......... ..\n2025-07-14 14:17:15.536 [info] (ssh_tunnel) stderr: ........ .......... 84% 360M 0s\n 56000K .......... .......... .......... .......... .......... 84% 422M 0s\n 56050K .......... .......... .......... .......... .......... 84% 376M 0s\n 56100K .......... .......... .......... .......... .......... 84% 394M 0s\n 56150K .......... .......... .......... .......... .......... 84% 371M 0s\n 56200K .......... .......... .......... .......... .......... 84% 436M 0s\n 56250K .......... .......... .......... .......... .......... 84% 423M 0s\n 56300K .......... .......... .......... .......... .......... 84% 396M 0s\n 56350K .......... .......... .......... .......... .......... 84% 356M 0s\n 56400K .......... .......... .......... .......... .......... 84% 385M 0s\n 56450K .......... .......... .......... .......... .......... 85% 400M 0s\n 56500K .......... .......... .......... .......... .......... 85% 407M 0s\n 56550K .......... .......... .......... .......... .......... 85% 390M 0s\n 56600K .......... .......... .......... .......... .......... 85% 436M 0s\n 56650K .......... .......... .......... .......... .......... 85% 434M 0s\n 56700K .......... .......... .......... .......... .......... 85% 441M 0s\n 56750K .......... .......... .......... .......... .......... 85% 354M 0s\n 56800K .......... .......... .......... .......... .......... 85% 431M 0s\n 56850K .......... .......... .......... .......... .......... 85% 402M 0s\n 56900K .......... .......... .......... .......... .......... 85% 434M 0s\n 56950K .......... .......... .......... .......... .......... 85% 393M 0s\n 57000K .......... .......... .......... .......... .......... 85% 430M 0s\n 57050K .......... .......... .......... .......... .......... 85% 441M 0s\n 57100K .......... .......... .......... .......... .......... 85% 427M 0s\n 57150K .......... .......... .......... .......... .......... 86% 348M 0s\n 57200K .......... .......... .......... .......... .......... 86% 432M 0s\n 57250K .......... .......... .......... .......... .......... 86% 430M 0s\n 57300K .......... .......... .......... .......... .......... 86% 432M 0s\n 57350K .......... .......... .......... .......... .......... 86% 389M 0s\n 57400K .......... .......... .......... .......... .......... 86% 433M 0s\n 57450K .......... ..\n2025-07-14 14:17:15.629 [info] (ssh_tunnel) stderr: ........ .......... .......... .......... 86% 431M 0s\n 57500K .......... .......... .......... .......... .......... 86% 434M 0s\n 57550K .......... .......... .......... .......... .......... 86% 351M 0s\n 57600K .......... .......... .......... .......... .......... 86% 418M 0s\n 57650K .......... .......... .......... .......... .......... 86% 430M 0s\n 57700K .......... .......... .......... .......... .......... 86% 435M 0s\n 57750K .......... .......... .......... .......... .......... 86% 376M 0s\n 57800K .......... .......... .......... .......... .......... 87% 427M 0s\n 57850K .......... .......... .......... .......... .......... 87% 426M 0s\n 57900K .......... .......... .......... .......... .......... 87% 433M 0s\n 57950K .......... .......... .......... .......... .......... 87% 357M 0s\n 58000K .......... .......... .......... .......... .......... 87% 408M 0s\n 58050K .......... .......... .......... .......... .......... 87% 422M 0s\n 58100K .......... .......... ......\n2025-07-14 14:17:15.630 [info] (ssh_tunnel) stderr: .... .......... .......... 87% 431M 0s\n 58150K .......... .......... .......... .......... .......... 87% 392M 0s\n 58200K .......... .......... .......... .......... .......... 87% 412M 0s\n 58250K .......... .......... .......... .......... .......... 87% 426M 0s\n 58300K .......... .......... .......... .......... .......... 87% 431M 0s\n 58350K .......... .......... .......... .......... .......... 87% 354M 0s\n 58400K .......... .......... .......... .......... .......... 87% 414M 0s\n 58450K .......... .......... .......... .......... .......... 88% 424M 0s\n 58500K .......... .......... .......... .......... .......... 88% 431M 0s\n 58550K .......... .......... .......... .......... .......... 88% 390M 0s\n 58600K .......... .......... .......... .......... .......... 88% 424M 0s\n 58650K .......... .......... .......... .......... .......... 88% 426M 0s\n 58700K .......... .......... .......... .......... .......... 88% 428M 0s\n 58750K .......... .......... .......... .......... .......... 88% 331M 0s\n 58800K .......... .......... .......... .......... .......... 88% 381M 0s\n 58850K .......... .......... .......... .......... .......... 88% 382M 0s\n 58900K .......... .......... .......... .......... .......... 88% 394M 0s\n 58950K .......... .......... .......... .......... .......... 88% 357M 0s\n 59000K .......... .......... .......... .......... .......... 88% 397M 0s\n 59050K .......... .......... .......... .......... .......... 88% 405M 0s\n 59100K .......... .......... .......... .......... .......... 88% 403M 0s\n 59150K .......... .......... .......... .......... .......... 89% 329M 0s\n 59200K .......... .......... .......... .......... .......... 89% 392M 0s\n 59250K .......... .......... .......... .......... .......... 89% 406M 0s\n 59300K .......... .......... .......... .......... .......... 89% 405M 0s\n 59350K .......... .......... .......... .......... .......... 89% 363M 0s\n 59400K .......... .......... .......... .......... .......... 89% 401M 0s\n 59450K .......... .......... .......... .......... .......... 89% 397M 0s\n 59500K .......... .......... .......... .......... .......... 89% 400M 0s\n 59550K .......... .......... .......... .......... .......... 89% 346M 0s\n 59600K .......... .......... .......... .......... .......... 89% 403M 0s\n 59650K .......... .......... .......... .......... .......... 89% 407M 0s\n 59700K .......... .......... .......... .......... .......... 89% 408M 0s\n 59750K .......... .......... .......... .......... .......... 89% 371M 0s\n 59800K .......... .......... .......... .......... .......... 90% 406M 0s\n 59850K .......... .......... .......... .......... .......... 90% 426M 0s\n 59900K .......... .......... .......... .......... .......... 90% 416M 0s\n 59950K .......... .......... .......... .......... .......... 90% 351M 0s\n 60000K .......... .......... .......... .......... .......... 90% 406M 0s\n 60050K .......... .......... .......... .......... .......... 90% 444M 0s\n 60100K .......... .......... .......... .......... .......... 90% 432M 0s\n 60150K .......... .......... .......... .......... .......... 90% 383M 0s\n 60200K .......... .......... .......... .......... .......... 90% 451M 0s\n 60250K .......... .......... .......... .......... .......... 90% 447M 0s\n 60300K .......... .......... .......... .......... .......... 90% 429M 0s\n 60350K .......... .......... .......... .......... .......... 90% 367M 0s\n 60400K .......... ........\n2025-07-14 14:17:15.640 [info] (ssh_tunnel) stderr: .. .......... .......... .......... 90% 434M 0s\n 60450K .......... .......... .......... .......... .......... 91% 427M 0s\n 60500K .......... .......... .......... .......... .......... 91% 430M 0s\n 60550K .......... .......... .......... .......... .......... 91% 393M 0s\n 60600K .......... .......... .......... .......... .......... 91% 436M 0s\n 60650K .......... .......... .......... .......... .......... 91% 423M 0s\n 60700K .......... .......... .......... .......... .......... 91% 438M 0s\n 60750K .......... .......... .......... .......... .......... 91% 362M 0s\n 60800K .......... .......... .......... .......... .......... 91% 440M 0s\n 60850K .......... .......... .......... .......... .......... 91% 420M 0s\n 60900K .......... .......... .......... .......... .......... 91% 422M 0s\n 60950K .......... .......... .......... .......... .......... 91% 359M 0s\n 61000K .......... .......... .......... .......... .......... 91% 432M 0s\n 61050K .......... .......... .......... .......... .......... 91% 429M 0s\n 61100K .......... .......... .......... .......... .......... 92% 437M 0s\n 61150K .......... .......... .......... .......... .......... 92% 333M 0s\n 61200K .......... .......... .......... .......... .......... 92% 440M 0s\n 61250K .......... .......... .......... .......... .......... 92% 424M 0s\n 61300K .......... .......... .......... .......... .......... 92% 354M 0s\n 61350K .......... .......... .......... .......... .......... 92% 394M 0s\n 61400K .......... .......... .......... .......... ......\n2025-07-14 14:17:15.641 [info] (ssh_tunnel) stderr: .... 92% 427M 0s\n 61450K .......... .......... .......... .......... .......... 92% 425M 0s\n 61500K .......... .......... .......... .......... .......... 92% 417M 0s\n 61550K .......... .......... .......... .......... .......... 92% 343M 0s\n 61600K .......... .......... .......... .......... .......... 92% 393M 0s\n 61650K .......... .......... .......... .......... .......... 92% 309M 0s\n 61700K .......... .......... .......... .......... .......... 92% 410M 0s\n 61750K .......... .......... .......... .......... .......... 92% 354M 0s\n 61800K .\n2025-07-14 14:17:15.641 [info] (ssh_tunnel) stderr: ......... .......... .......... .......... .......... 93% 387M 0s\n 61850K .......... .......... .......... .......... .......... 93% 396M 0s\n 61900K .......... .......... .......... .......... .......... 93% 393M 0s\n 61950K .......... .......... .......... .......... .......... 93% 325M 0s\n 62000K .......... .......... .......... .......... .......... 93% 401M 0s\n 62050K .......... .......... .......... .......... .......... 93% 382M 0s\n 62100K .......... .......... .......... .......... .......... 93% 393M 0s\n 62150K .......... .......... .......... .......... .......... 93% 357M 0s\n 62200K .......... .......... .......... .......... .......... 93% 394M 0s\n 62250K .......... .......... .......... .......... .......... 93% 383M 0s\n 62300K .......... .......... .......... .......... .......... 93% 245M 0s\n 62350K .......... .......... .......... .......... .......... 93% 324M 0s\n 62400K .......... .......... .......... .......... .......... 93% 371M 0s\n 62450K .......... .......... .......... .......... .......... 94% 393M 0s\n 62500K .......... .......... .......... .......... .......... 94% 389M 0s\n 62550K .......... .......... .......... .......... .......... 94% 75.4M 0s\n 62600K .......... .......... .......... .......... .......... 94% 379M 0s\n 62650K .......... .......... .......... .......... .......... 94% 401M 0s\n 62700K .......... ........\n2025-07-14 14:17:15.642 [info] (ssh_tunnel) stderr: .. .......... .......... .......... 94% 397M 0s\n 62750K .......... .......... .......... .......... .......... 94% 335M 0s\n 62800K .......... .......... .......... .......... .......... 94% 409M 0s\n 62850K .......... .......... .......... .......... .......... 94% 404M 0s\n 62900K .......... .......... .......... .......... .......... 94% 391M 0s\n 62950K .......... .......... .......... .......... .......... 94% 368M 0s\n 63000K .......... .......... .......... .......... .......... 94% 409M 0s\n 63050K .......... .......... .......... .......... .......... 94% 402M 0s\n 63100K .......... .......... .......... .......... .......... 95% 412M 0s\n 63150K .......... .......... .......... .......... .......... 95% 343M 0s\n 63200K .......... .......... .......... .......... .......... 95% 418M 0s\n 63250K .......... .......... .......... .......... .......... 95% 416M 0s\n 63300K ..........\n2025-07-14 14:17:15.649 [info] (ssh_tunnel) stderr: .......... .......... .......... .......... 95% 333M 0s\n 63350K .......... .......... .......... .......... .......... 95% 372M 0s\n 63400K .......... .......... .......... .......... .......... 95% 375M 0s\n 63450K .......... .......... .......... .......... .......... 95% 412M 0s\n 63500K .......... .......... .......... .......... .......... 95% 413M 0s\n 63550K .......... .......... .......... .......... .......... 95% 338M 0s\n 63600K .......... .......... .......... .......... .......... 95% 380M 0s\n 63650K .......... .......... .......... .......... .......... 95% 405M 0s\n 63700K .......... .......... .......... .......... .......... 95% 415M 0s\n 63750K .......... .......... .......... .......... .......... 95% 380M 0s\n 63800K .......... .......... .......... .......... .......... 96% 415M 0s\n 63850K .......... .......... .......... .......... .......... 96% 418M 0s\n 63900K .......... ........\n2025-07-14 14:17:15.649 [info] (ssh_tunnel) stderr: .. .......... .......... .......... 96% 373M 0s\n 63950K .......... .......... .......... .......... .......... 96% 309M 0s\n 64000K .......... .......... .......... .......... .......... 96% 346M 0s\n 64050K .......... .......... .......... .......... .......... 96% 389M 0s\n 64100K .......... .......... .......... .......... .......... 96% 392M 0s\n 64150K .......... .......... .......... .......... .......... 96% 320M 0s\n 64200K .......... .......... .......... .......... .......... 96% 395M 0s\n 64250K .......... .......... .......... .......... .......... 96% 418M 0s\n 64300K .......... .......... .......... .......... .......... 96% 420M 0s\n 64350K .......... .......... .......... .......... .......... 96% 347M 0s\n 64400K .......... .......... .......... .......... .......... 96% 410M 0s\n 64450K .......... .......... .......... .......... .......... 97% 411M 0s\n 64500K .......... .......... .......... .......... .......... 97% 391M 0s\n 64550K .......... .......... .......... .......... .......... 97% 344M 0s\n 64600K .......... .......... .......... .......... .......... 97% 386M 0s\n 64650K .......... .......... .......... .......... .......... 97% 388M 0s\n 64700K .......... .......... .......... .......... .......... 97% 398M 0s\n 64750K .......... .......... .......... .......... .......... 97% 326M 0s\n 64800K .......... .......... .......... .......... .......... 97% 398M 0s\n 64850K .......... .......... .......... .......... .......... 97% 396M 0s\n 64900K .......... .......... .......... .......... .......... 97% 391M 0s\n 64950K .......... .......... .......... .......... .......... 97% 346M 0s\n 65000K .......... .......... .......... ........\n2025-07-14 14:17:15.660 [info] (ssh_tunnel) stderr: .. .......... 97% 388M 0s\n 65050K .......... .......... .......... .......... .......... 97% 385M 0s\n 65100K .......... .......... .......... .......... .......... 98% 388M 0s\n 65150K .......... .......... .......... .......... .......... 98% 326M 0s\n 65200K .......... .......... .......... .......... .......... 98% 403M 0s\n 65250K .......... .......... .......... .......... .......... 98% 391M 0s\n 65300K ........\n2025-07-14 14:17:15.660 [info] (ssh_tunnel) stderr: .. .......... .......... .......... .......... 98% 395M 0s\n 65350K .......... .......... .......... .......... .......... 98% 337M 0s\n 65400K .......... .......... .......... .......... .......... 98% 386M 0s\n 65450K .......... .......... .......... .......... .......... 98% 399M 0s\n 65500K .......... .......... .......... .......... .......... 98% 74.6M 0s\n 65550K .......... .......... .......... .......... .......... 98% 294M 0s\n 65600K .......... .......... .......... .......... .......... 98% 439M 0s\n 65650K .......... .......... .......... .......... .......... 98% 416M 0s\n 65700K .......... .......... .......... .......... .......... 98% 441M 0s\n 65750K .......... .......... .......... .......... .......... 99% 402M 0s\n 65800K .......... .......... .......... .......... .......... 99% 421M 0s\n 65850K .......... .......... .......... .......... .......... 99% 428M 0s\n 65900K .......... .......... .......... .......... .......... 99% 396M 0s\n 65950K .......... .......... .......... .......... .......... 99% 358M 0s\n 66000K .......... .......... .......... .......... .......... 99% 452M 0s\n 66050K .......... .......... .......... .......... .......... 99% 437M 0s\n 66100K .......... .......... .......... .......... .......... 99% 455M 0s\n 66150K .......... .......... .......... .......... .......... 99% 393M 0s\n 66200K .......... .......... .......... .......... .......... 99% 458M 0s\n 66250K .......... .......... .......... .......... .......... 99% 443M 0s\n 66300K .......... .......... .......... .......... .......... 99% 432M 0s\n 66350K .......... .......... .......... .......... .......... 99% 362M 0s\n 66400K .......... .......... .......... .......... .......... 99% 456M 0s\n 66450K .......... ... 100% 435M=0.2s\n\n2025-07-14 14:17:15 (276 MB/s) - ‘cursor-server-1c0f46c7-9da8-464a-ad76-fc412d40675f.tar.gz’ saved [68058811/68058811]\n\n\n2025-07-14 14:17:26.122 [info] (ssh_tunnel) stdout: Checking node executable\n\n2025-07-14 14:17:26.192 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-14 14:17:26.208 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-14 14:17:26.314 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-14 14:17:26.327 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-14 14:17:26.364 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-14 14:17:26.378 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-14 14:17:26.413 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js 79fd9113-f3ad-4a7c-8b69-7098e18fecfb\n\n2025-07-14 14:17:26.413 [info] (ssh_tunnel) stdout: Multiplex server started with PID 4160115 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-14 14:17:26.427 [info] (ssh_tunnel) stdout: Multiplex server token file found\n\n2025-07-14 14:17:26.441 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-14 14:17:26.951 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-14 14:17:27.053 [info] (ssh_tunnel) stdout: Code server script is not running\nCreating code server token file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-14 14:17:27.069 [info] (ssh_tunnel) stdout: Starting code server script /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2 &\n\n2025-07-14 14:17:27.084 [info] (ssh_tunnel) stdout: Code server started with PID 4160223 and wrote pid to file /run/user/996262/cursor-remote-code.pid.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-14 14:17:27.104 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-14 14:17:27.616 [info] (ssh_tunnel) stdout: 37be33cd6960cff51b51c874: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==45899==\nmultiplexConnectionToken==79fd9113-f3ad-4a7c-8b69-7098e18fecfb==\n\n2025-07-14 14:17:27.622 [info] (ssh_tunnel) stdout: codeListeningOn==40389==\ncodeConnectionToken==9b7f273b-49c8-4681-9b58-87ff716b3407==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n37be33cd6960cff51b51c874: end\n\n2025-07-14 14:17:27.625 [info] Server install command exit code: 0\n2025-07-14 14:17:27.626 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8429.sh\n2025-07-14 14:17:27.628 [info] [forwarding][code] creating new forwarding server\n2025-07-14 14:17:27.628 [info] [forwarding][code] server listening on 62463\n2025-07-14 14:17:27.629 [info] [forwarding][code] Set up server\n2025-07-14 14:17:27.629 [info] [remote-ssh] codeListeningOn (remote=40389; local=62463) codeConnectionToken: 9b7f273b-49c8-4681-9b58-87ff716b3407\n2025-07-14 14:17:27.629 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-14 14:17:27.629 [info] [forwarding][multiplex] server listening on 62464\n2025-07-14 14:17:27.629 [info] [forwarding][multiplex] Set up server\n2025-07-14 14:17:27.631 [info] [remote-ssh] multiplexListeningOn (remote=45899; local=62464) multiplexConnectionToken: 79fd9113-f3ad-4a7c-8b69-7098e18fecfb\n2025-07-14 14:17:27.631 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:17:27.635 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-14 14:17:27.636 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][1489714a-3bda-4341-91d0-1f69ee311719] received connection request\n2025-07-14 14:17:27.637 [info] [command][6d43a117-0edc-4189-8fd6-d3fa3caf6858] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""6d43a117-0edc-4189-8fd6-d3fa3caf6858""}\n2025-07-14 14:17:27.638 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:17:27.649 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:40389][f71bf5ff-61e8-4351-8ace-5e0673cf7a6d] received connection request\n2025-07-14 14:17:27.650 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:17:27.687 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1489714a-3bda-4341-91d0-1f69ee311719] socks forwarding established\n2025-07-14 14:17:27.687 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62450 -> 127.0.0.1:40389][f71bf5ff-61e8-4351-8ace-5e0673cf7a6d] socks forwarding established\n2025-07-14 14:17:27.753 [info] Successfully connected to Cursor server at http://127.0.0.1:62463/version\n2025-07-14 14:17:27.753 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-14 14:17:27.753 [info] [command][6d43a117-0edc-4189-8fd6-d3fa3caf6858] Process exited with code 0\n2025-07-14 14:17:27.754 [info] [command][6d43a117-0edc-4189-8fd6-d3fa3caf6858] Socket close event received\n2025-07-14 14:17:27.754 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][c2606aac-bf60-4f63-a431-b97dc19dc796] received connection request\n2025-07-14 14:17:27.754 [info] [command][271433fe-e9ab-4889-a9c1-cd04f70843af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""271433fe-e9ab-4889-a9c1-cd04f70843af""}\n2025-07-14 14:17:27.754 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:17:27.763 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1489714a-3bda-4341-91d0-1f69ee311719] socks connection closed\n2025-07-14 14:17:27.816 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62466 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:17:27.816 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c2606aac-bf60-4f63-a431-b97dc19dc796] socks forwarding established\n2025-07-14 14:17:27.878 [info] [command][271433fe-e9ab-4889-a9c1-cd04f70843af] Process exited with code 0\n2025-07-14 14:17:27.878 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-14 14:17:27.879 [info] [remote-ssh] Resolved exec server. Socks port: 62450\n2025-07-14 14:17:27.879 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":62463,""connectionToken"":""9b7f273b-49c8-4681-9b58-87ff716b3407"",""extensionHostEnv"":{}}. Socks port: 62450\n2025-07-14 14:17:27.879 [info] [command][271433fe-e9ab-4889-a9c1-cd04f70843af] Socket close event received\n2025-07-14 14:17:27.890 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c2606aac-bf60-4f63-a431-b97dc19dc796] socks connection closed\n2025-07-14 14:17:27.925 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62470 to 127.0.0.1 port 62450, nchannels 5\n\n2025-07-14 14:17:27.926 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:40389][2397fce9-4856-4ae1-bf3c-8bf42f6ec0a7] received connection request\n2025-07-14 14:17:27.926 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:17:27.980 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62450 -> 127.0.0.1:40389][2397fce9-4856-4ae1-bf3c-8bf42f6ec0a7] socks forwarding established\n2025-07-14 14:17:28.052 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:40389][87d9f55a-0bd2-4011-8c76-310ff60680a5] received connection request\n2025-07-14 14:17:28.053 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:17:28.105 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62450 -> 127.0.0.1:40389][87d9f55a-0bd2-4011-8c76-310ff60680a5] socks forwarding established\n2025-07-14 14:17:28.317 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-14 14:17:30.818 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 40389, connect from 127.0.0.1 port 62468 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:17:30.818 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62450 -> 127.0.0.1:40389][f71bf5ff-61e8-4351-8ace-5e0673cf7a6d] socks connection closed\n2025-07-14 14:17:32.018 [info] [tunnel-forwarding][127.0.0.1:8791 -> localhost:8791] server listening\n2025-07-14 14:18:27.757 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:18:27.760 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][61182308-e349-462c-ad1b-edefe7a1bd80] received connection request\n2025-07-14 14:18:27.761 [info] [command][7f340b93-170e-4e2f-9c3c-14eafe91a0e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""7f340b93-170e-4e2f-9c3c-14eafe91a0e1""}\n2025-07-14 14:18:27.762 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:18:27.783 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][61182308-e349-462c-ad1b-edefe7a1bd80] socks forwarding established\n2025-07-14 14:18:27.815 [info] [command][7f340b93-170e-4e2f-9c3c-14eafe91a0e1] Process exited with code 0\n2025-07-14 14:18:27.815 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][61182308-e349-462c-ad1b-edefe7a1bd80] socks connection closed\n2025-07-14 14:18:27.815 [info] [command][7f340b93-170e-4e2f-9c3c-14eafe91a0e1] Socket close event received\n2025-07-14 14:18:27.833 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62551 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:19:27.821 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:19:27.822 [info] [command][9e0cace2-0c10-4773-b04b-ab36ed3bbd72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""9e0cace2-0c10-4773-b04b-ab36ed3bbd72""}\n2025-07-14 14:19:27.822 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][0689a278-7b6f-485d-bbb0-e50831374730] received connection request\n2025-07-14 14:19:27.823 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:19:27.841 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0689a278-7b6f-485d-bbb0-e50831374730] socks forwarding established\n2025-07-14 14:19:27.874 [info] [command][9e0cace2-0c10-4773-b04b-ab36ed3bbd72] Process exited with code 0\n2025-07-14 14:19:27.874 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0689a278-7b6f-485d-bbb0-e50831374730] socks connection closed\n2025-07-14 14:19:27.875 [info] [command][9e0cace2-0c10-4773-b04b-ab36ed3bbd72] Socket close event received\n2025-07-14 14:19:27.893 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62577 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:20:27.878 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:20:27.880 [info] [command][e9fa8e03-61e7-49da-be23-d8aa2b6d4f6b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""e9fa8e03-61e7-49da-be23-d8aa2b6d4f6b""}\n2025-07-14 14:20:27.881 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][d71e3b8f-5978-4697-bd21-5d219b674268] received connection request\n2025-07-14 14:20:27.881 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:20:27.955 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d71e3b8f-5978-4697-bd21-5d219b674268] socks forwarding established\n2025-07-14 14:20:28.122 [info] [command][e9fa8e03-61e7-49da-be23-d8aa2b6d4f6b] Process exited with code 0\n2025-07-14 14:20:28.123 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d71e3b8f-5978-4697-bd21-5d219b674268] socks connection closed\n2025-07-14 14:20:28.123 [info] [command][e9fa8e03-61e7-49da-be23-d8aa2b6d4f6b] Socket close event received\n2025-07-14 14:20:28.144 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62632 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:21:28.124 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:21:28.126 [info] [command][273b5b15-1635-47c0-8d4b-4b041cddc4e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""273b5b15-1635-47c0-8d4b-4b041cddc4e2""}\n2025-07-14 14:21:28.127 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6f1c680c-6347-46f2-af53-1c65b5b77981] received connection request\n2025-07-14 14:21:28.128 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:21:28.147 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6f1c680c-6347-46f2-af53-1c65b5b77981] socks forwarding established\n2025-07-14 14:21:28.179 [info] [command][273b5b15-1635-47c0-8d4b-4b041cddc4e2] Process exited with code 0\n2025-07-14 14:21:28.180 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6f1c680c-6347-46f2-af53-1c65b5b77981] socks connection closed\n2025-07-14 14:21:28.180 [info] [command][273b5b15-1635-47c0-8d4b-4b041cddc4e2] Socket close event received\n2025-07-14 14:21:28.199 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62653 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:22:28.182 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:22:28.183 [info] [command][a40453d1-427d-4374-8fbe-15f10b174554] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a40453d1-427d-4374-8fbe-15f10b174554""}\n2025-07-14 14:22:28.183 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ee313301-2303-4a37-8f53-e36be5925cb0] received connection request\n2025-07-14 14:22:28.184 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:22:28.204 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ee313301-2303-4a37-8f53-e36be5925cb0] socks forwarding established\n2025-07-14 14:22:28.244 [info] [command][a40453d1-427d-4374-8fbe-15f10b174554] Process exited with code 0\n2025-07-14 14:22:28.244 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ee313301-2303-4a37-8f53-e36be5925cb0] socks connection closed\n2025-07-14 14:22:28.244 [info] [command][a40453d1-427d-4374-8fbe-15f10b174554] Socket close event received\n2025-07-14 14:22:28.260 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62695 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:23:28.248 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:23:28.249 [info] [command][4e4d4389-610e-41ad-8754-d0f78eaf22d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4e4d4389-610e-41ad-8754-d0f78eaf22d1""}\n2025-07-14 14:23:28.250 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][cc462fe7-def2-47cd-8996-1d7d6b249ea6] received connection request\n2025-07-14 14:23:28.251 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:23:28.269 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cc462fe7-def2-47cd-8996-1d7d6b249ea6] socks forwarding established\n2025-07-14 14:23:28.306 [info] [command][4e4d4389-610e-41ad-8754-d0f78eaf22d1] Process exited with code 0\n2025-07-14 14:23:28.307 [info] [command][4e4d4389-610e-41ad-8754-d0f78eaf22d1] Socket close event received\n2025-07-14 14:23:28.307 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cc462fe7-def2-47cd-8996-1d7d6b249ea6] socks connection closed\n2025-07-14 14:23:28.325 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62733 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:24:28.311 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:24:28.312 [info] [command][edbbadc2-3ad1-4156-94a7-2ffc10ff2d08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""edbbadc2-3ad1-4156-94a7-2ffc10ff2d08""}\n2025-07-14 14:24:28.313 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][3dc82b6e-2349-4ffa-8b6d-09dc9f26f46d] received connection request\n2025-07-14 14:24:28.313 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:24:28.363 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3dc82b6e-2349-4ffa-8b6d-09dc9f26f46d] socks forwarding established\n2025-07-14 14:24:28.530 [info] [command][edbbadc2-3ad1-4156-94a7-2ffc10ff2d08] Process exited with code 0\n2025-07-14 14:24:28.530 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3dc82b6e-2349-4ffa-8b6d-09dc9f26f46d] socks connection closed\n2025-07-14 14:24:28.530 [info] [command][edbbadc2-3ad1-4156-94a7-2ffc10ff2d08] Socket close event received\n2025-07-14 14:24:28.549 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62751 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:25:28.537 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:25:28.539 [info] [command][3c3973c1-c6f5-4afa-aa53-e098b0b653d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""3c3973c1-c6f5-4afa-aa53-e098b0b653d1""}\n2025-07-14 14:25:28.540 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][323f53e6-8ce2-4860-8abe-0070d3a640e0] received connection request\n2025-07-14 14:25:28.541 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:25:28.560 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][323f53e6-8ce2-4860-8abe-0070d3a640e0] socks forwarding established\n2025-07-14 14:25:28.592 [info] [command][3c3973c1-c6f5-4afa-aa53-e098b0b653d1] Process exited with code 0\n2025-07-14 14:25:28.592 [info] [command][3c3973c1-c6f5-4afa-aa53-e098b0b653d1] Socket close event received\n2025-07-14 14:25:28.593 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][323f53e6-8ce2-4860-8abe-0070d3a640e0] socks connection closed\n2025-07-14 14:25:28.610 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62801 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:26:28.598 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:26:28.600 [info] [command][5b5de1d8-b224-4819-b5d2-58832128fb7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""5b5de1d8-b224-4819-b5d2-58832128fb7a""}\n2025-07-14 14:26:28.600 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6a5d2246-c885-4ca9-a1ae-579f29068dd0] received connection request\n2025-07-14 14:26:28.600 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 14:26:28.600 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:26:28.617 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6a5d2246-c885-4ca9-a1ae-579f29068dd0] socks forwarding established\n2025-07-14 14:26:28.646 [info] [command][5b5de1d8-b224-4819-b5d2-58832128fb7a] Process exited with code 0\n2025-07-14 14:26:28.646 [info] [command][5b5de1d8-b224-4819-b5d2-58832128fb7a] Socket close event received\n2025-07-14 14:26:28.647 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6a5d2246-c885-4ca9-a1ae-579f29068dd0] socks connection closed\n2025-07-14 14:26:28.664 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62829 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:27:28.653 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:27:28.659 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][bdbb2097-be96-46aa-ab37-08b83a41a6e1] received connection request\n2025-07-14 14:27:28.659 [info] [command][6fd89c00-263d-49ab-887b-7238ec20c966] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""6fd89c00-263d-49ab-887b-7238ec20c966""}\n2025-07-14 14:27:28.660 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:27:28.678 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][bdbb2097-be96-46aa-ab37-08b83a41a6e1] socks forwarding established\n2025-07-14 14:27:28.716 [info] [command][6fd89c00-263d-49ab-887b-7238ec20c966] Process exited with code 0\n2025-07-14 14:27:28.716 [info] [command][6fd89c00-263d-49ab-887b-7238ec20c966] Socket close event received\n2025-07-14 14:27:28.717 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][bdbb2097-be96-46aa-ab37-08b83a41a6e1] socks connection closed\n2025-07-14 14:27:28.736 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62877 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:28:28.720 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:28:28.721 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][2c858b4f-45e4-4d2f-9736-0380775ed901] received connection request\n2025-07-14 14:28:28.721 [info] [command][a184c47e-13d5-4c3a-905b-ebd9facac8df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a184c47e-13d5-4c3a-905b-ebd9facac8df""}\n2025-07-14 14:28:28.722 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:28:28.918 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2c858b4f-45e4-4d2f-9736-0380775ed901] socks forwarding established\n2025-07-14 14:28:28.950 [info] [command][a184c47e-13d5-4c3a-905b-ebd9facac8df] Process exited with code 0\n2025-07-14 14:28:28.950 [info] [command][a184c47e-13d5-4c3a-905b-ebd9facac8df] Socket close event received\n2025-07-14 14:28:28.953 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2c858b4f-45e4-4d2f-9736-0380775ed901] socks connection closed\n2025-07-14 14:28:29.019 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62897 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:29:28.955 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:29:28.958 [info] [command][d62acfd1-9f24-4f46-9b19-95199c5d3a20] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d62acfd1-9f24-4f46-9b19-95199c5d3a20""}\n2025-07-14 14:29:28.959 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][accc928a-6d06-492d-99ec-e13156140f7a] received connection request\n2025-07-14 14:29:28.959 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:29:28.980 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][accc928a-6d06-492d-99ec-e13156140f7a] socks forwarding established\n2025-07-14 14:29:29.011 [info] [command][d62acfd1-9f24-4f46-9b19-95199c5d3a20] Process exited with code 0\n2025-07-14 14:29:29.011 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][accc928a-6d06-492d-99ec-e13156140f7a] socks connection closed\n2025-07-14 14:29:29.012 [info] [command][d62acfd1-9f24-4f46-9b19-95199c5d3a20] Socket close event received\n2025-07-14 14:29:29.029 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62962 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:30:29.018 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:30:29.019 [info] [command][b8412b0a-5486-4837-bdb5-e97af5bee5e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b8412b0a-5486-4837-bdb5-e97af5bee5e1""}\n2025-07-14 14:30:29.020 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f9cc5f45-b1ce-4246-8ac6-1e7b2833ebfd] received connection request\n2025-07-14 14:30:29.021 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:30:29.040 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f9cc5f45-b1ce-4246-8ac6-1e7b2833ebfd] socks forwarding established\n2025-07-14 14:30:29.069 [info] [command][b8412b0a-5486-4837-bdb5-e97af5bee5e1] Process exited with code 0\n2025-07-14 14:30:29.070 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f9cc5f45-b1ce-4246-8ac6-1e7b2833ebfd] socks connection closed\n2025-07-14 14:30:29.070 [info] [command][b8412b0a-5486-4837-bdb5-e97af5bee5e1] Socket close event received\n2025-07-14 14:30:29.090 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 62993 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:31:29.074 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:31:29.075 [info] [command][f0fe7817-8dff-4b26-b37b-6e10a3a98688] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f0fe7817-8dff-4b26-b37b-6e10a3a98688""}\n2025-07-14 14:31:29.076 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][879f72ec-776c-4a5c-8c5b-d217f8acde69] received connection request\n2025-07-14 14:31:29.076 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:31:29.100 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][879f72ec-776c-4a5c-8c5b-d217f8acde69] socks forwarding established\n2025-07-14 14:31:29.129 [info] [command][f0fe7817-8dff-4b26-b37b-6e10a3a98688] Process exited with code 0\n2025-07-14 14:31:29.129 [info] [command][f0fe7817-8dff-4b26-b37b-6e10a3a98688] Socket close event received\n2025-07-14 14:31:29.146 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63013 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:31:29.147 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][879f72ec-776c-4a5c-8c5b-d217f8acde69] socks connection closed\n2025-07-14 14:32:29.136 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:32:29.138 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][0fb838d8-b822-4304-9da4-6319478be788] received connection request\n2025-07-14 14:32:29.138 [info] [command][bd9bc889-1932-4cfd-9431-d0a8996bb0a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""bd9bc889-1932-4cfd-9431-d0a8996bb0a2""}\n2025-07-14 14:32:29.139 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:32:29.168 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0fb838d8-b822-4304-9da4-6319478be788] socks forwarding established\n2025-07-14 14:32:29.200 [info] [command][bd9bc889-1932-4cfd-9431-d0a8996bb0a2] Process exited with code 0\n2025-07-14 14:32:29.200 [info] [command][bd9bc889-1932-4cfd-9431-d0a8996bb0a2] Socket close event received\n2025-07-14 14:32:29.219 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0fb838d8-b822-4304-9da4-6319478be788] socks connection closed\n2025-07-14 14:32:29.220 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63042 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:33:29.205 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:33:29.207 [info] [command][3e416eb6-7e6c-48d9-a20b-ff3512fc97b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""3e416eb6-7e6c-48d9-a20b-ff3512fc97b4""}\n2025-07-14 14:33:29.208 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][80dafe5c-c649-4099-987f-25a3584cd2cf] received connection request\n2025-07-14 14:33:29.208 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:33:29.304 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][80dafe5c-c649-4099-987f-25a3584cd2cf] socks forwarding established\n2025-07-14 14:33:29.461 [info] [command][3e416eb6-7e6c-48d9-a20b-ff3512fc97b4] Process exited with code 0\n2025-07-14 14:33:29.461 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][80dafe5c-c649-4099-987f-25a3584cd2cf] socks connection closed\n2025-07-14 14:33:29.461 [info] [command][3e416eb6-7e6c-48d9-a20b-ff3512fc97b4] Socket close event received\n2025-07-14 14:33:29.478 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63056 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:34:29.462 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:34:29.463 [info] [command][1751ec5a-4a35-44bb-89ae-15cccef3d3a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1751ec5a-4a35-44bb-89ae-15cccef3d3a8""}\n2025-07-14 14:34:29.463 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][53db53a8-3963-4048-ba02-77ba4e44d81d] received connection request\n2025-07-14 14:34:29.463 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:34:29.480 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][53db53a8-3963-4048-ba02-77ba4e44d81d] socks forwarding established\n2025-07-14 14:34:29.510 [info] [command][1751ec5a-4a35-44bb-89ae-15cccef3d3a8] Process exited with code 0\n2025-07-14 14:34:29.510 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][53db53a8-3963-4048-ba02-77ba4e44d81d] socks connection closed\n2025-07-14 14:34:29.510 [info] [command][1751ec5a-4a35-44bb-89ae-15cccef3d3a8] Socket close event received\n2025-07-14 14:34:29.528 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63082 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:35:29.516 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:35:29.519 [info] [command][ae7ff85d-f8df-49b3-a0ac-f967dbaf876d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ae7ff85d-f8df-49b3-a0ac-f967dbaf876d""}\n2025-07-14 14:35:29.520 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][73ed8ee1-a426-40e8-a3a5-f27ae6910693] received connection request\n2025-07-14 14:35:29.521 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:35:29.543 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][73ed8ee1-a426-40e8-a3a5-f27ae6910693] socks forwarding established\n2025-07-14 14:35:29.576 [info] [command][ae7ff85d-f8df-49b3-a0ac-f967dbaf876d] Process exited with code 0\n2025-07-14 14:35:29.577 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][73ed8ee1-a426-40e8-a3a5-f27ae6910693] socks connection closed\n2025-07-14 14:35:29.577 [info] [command][ae7ff85d-f8df-49b3-a0ac-f967dbaf876d] Socket close event received\n2025-07-14 14:35:29.594 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63115 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:36:29.581 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:36:29.582 [info] [command][02ef97e5-9405-414c-bb6d-5ac490bd93c5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""02ef97e5-9405-414c-bb6d-5ac490bd93c5""}\n2025-07-14 14:36:29.583 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][241788d1-062c-4371-9776-3744fe495418] received connection request\n2025-07-14 14:36:29.584 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:36:29.602 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][241788d1-062c-4371-9776-3744fe495418] socks forwarding established\n2025-07-14 14:36:29.634 [info] [command][02ef97e5-9405-414c-bb6d-5ac490bd93c5] Process exited with code 0\n2025-07-14 14:36:29.634 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][241788d1-062c-4371-9776-3744fe495418] socks connection closed\n2025-07-14 14:36:29.634 [info] [command][02ef97e5-9405-414c-bb6d-5ac490bd93c5] Socket close event received\n2025-07-14 14:36:29.652 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63127 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:37:29.639 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:37:29.641 [info] [command][7b3d9eb0-c822-4275-9ff7-d939a9b1b5d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""7b3d9eb0-c822-4275-9ff7-d939a9b1b5d8""}\n2025-07-14 14:37:29.642 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][cddf9611-020f-418d-8a75-c7920b925277] received connection request\n2025-07-14 14:37:29.642 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:37:29.728 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cddf9611-020f-418d-8a75-c7920b925277] socks forwarding established\n2025-07-14 14:37:29.895 [info] [command][7b3d9eb0-c822-4275-9ff7-d939a9b1b5d8] Process exited with code 0\n2025-07-14 14:37:29.895 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cddf9611-020f-418d-8a75-c7920b925277] socks connection closed\n2025-07-14 14:37:29.895 [info] [command][7b3d9eb0-c822-4275-9ff7-d939a9b1b5d8] Socket close event received\n2025-07-14 14:37:29.913 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63164 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:38:29.898 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:38:29.899 [info] [command][9fb6a233-cc0f-4124-af73-470f24c55ef6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""9fb6a233-cc0f-4124-af73-470f24c55ef6""}\n2025-07-14 14:38:29.899 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e39fbb17-772d-4f96-956c-d029b034e429] received connection request\n2025-07-14 14:38:29.900 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:38:29.925 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e39fbb17-772d-4f96-956c-d029b034e429] socks forwarding established\n2025-07-14 14:38:29.955 [info] [command][9fb6a233-cc0f-4124-af73-470f24c55ef6] Process exited with code 0\n2025-07-14 14:38:29.955 [info] [command][9fb6a233-cc0f-4124-af73-470f24c55ef6] Socket close event received\n2025-07-14 14:38:29.955 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e39fbb17-772d-4f96-956c-d029b034e429] socks connection closed\n2025-07-14 14:38:29.972 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63184 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:39:29.962 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:39:29.963 [info] [command][5a398c7e-c81e-4621-88c6-15681475e7c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""5a398c7e-c81e-4621-88c6-15681475e7c4""}\n2025-07-14 14:39:29.964 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][353e03b4-1c4a-4268-8c15-2793f2846500] received connection request\n2025-07-14 14:39:29.964 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:39:29.982 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][353e03b4-1c4a-4268-8c15-2793f2846500] socks forwarding established\n2025-07-14 14:39:30.014 [info] [command][5a398c7e-c81e-4621-88c6-15681475e7c4] Process exited with code 0\n2025-07-14 14:39:30.015 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][353e03b4-1c4a-4268-8c15-2793f2846500] socks connection closed\n2025-07-14 14:39:30.015 [info] [command][5a398c7e-c81e-4621-88c6-15681475e7c4] Socket close event received\n2025-07-14 14:39:30.032 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63197 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:40:30.021 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:40:30.023 [info] [command][50b9ff4f-c00a-48ef-9f61-0b0a9eccf68f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""50b9ff4f-c00a-48ef-9f61-0b0a9eccf68f""}\n2025-07-14 14:40:30.023 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][341f7360-20c6-4277-bf5d-aac0843af937] received connection request\n2025-07-14 14:40:30.024 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:40:30.042 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][341f7360-20c6-4277-bf5d-aac0843af937] socks forwarding established\n2025-07-14 14:40:30.075 [info] [command][50b9ff4f-c00a-48ef-9f61-0b0a9eccf68f] Process exited with code 0\n2025-07-14 14:40:30.075 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][341f7360-20c6-4277-bf5d-aac0843af937] socks connection closed\n2025-07-14 14:40:30.075 [info] [command][50b9ff4f-c00a-48ef-9f61-0b0a9eccf68f] Socket close event received\n2025-07-14 14:40:30.092 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63238 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:41:30.076 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:41:30.078 [info] [command][2c8cf132-de8a-4630-afa6-281008955b28] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""2c8cf132-de8a-4630-afa6-281008955b28""}\n2025-07-14 14:41:30.078 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9b71f989-0b53-4afa-ab0b-98324acc5a42] received connection request\n2025-07-14 14:41:30.078 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:41:30.197 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9b71f989-0b53-4afa-ab0b-98324acc5a42] socks forwarding established\n2025-07-14 14:41:30.306 [info] [command][2c8cf132-de8a-4630-afa6-281008955b28] Process exited with code 0\n2025-07-14 14:41:30.306 [info] [command][2c8cf132-de8a-4630-afa6-281008955b28] Socket close event received\n2025-07-14 14:41:30.310 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9b71f989-0b53-4afa-ab0b-98324acc5a42] socks connection closed\n2025-07-14 14:41:30.323 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63278 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:42:30.308 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:42:30.310 [info] [command][a440bc14-2715-4d36-9eca-386543c1598f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a440bc14-2715-4d36-9eca-386543c1598f""}\n2025-07-14 14:42:30.311 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][007c0c9a-17d8-4b25-871c-74c7785fcb95] received connection request\n2025-07-14 14:42:30.311 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:42:30.330 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][007c0c9a-17d8-4b25-871c-74c7785fcb95] socks forwarding established\n2025-07-14 14:42:30.361 [info] [command][a440bc14-2715-4d36-9eca-386543c1598f] Process exited with code 0\n2025-07-14 14:42:30.361 [info] [command][a440bc14-2715-4d36-9eca-386543c1598f] Socket close event received\n2025-07-14 14:42:30.378 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63343 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:42:30.378 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][007c0c9a-17d8-4b25-871c-74c7785fcb95] socks connection closed\n2025-07-14 14:43:30.366 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:43:30.366 [info] [command][4072393f-e913-4552-9d33-08fb2a330ed5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4072393f-e913-4552-9d33-08fb2a330ed5""}\n2025-07-14 14:43:30.367 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][cdad10f2-65e1-4071-ae16-2bd94bb49424] received connection request\n2025-07-14 14:43:30.367 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:43:30.385 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cdad10f2-65e1-4071-ae16-2bd94bb49424] socks forwarding established\n2025-07-14 14:43:30.431 [info] [command][4072393f-e913-4552-9d33-08fb2a330ed5] Process exited with code 0\n2025-07-14 14:43:30.431 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cdad10f2-65e1-4071-ae16-2bd94bb49424] socks connection closed\n2025-07-14 14:43:30.431 [info] [command][4072393f-e913-4552-9d33-08fb2a330ed5] Socket close event received\n2025-07-14 14:43:30.449 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63378 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:44:30.437 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:44:30.439 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][872e2437-dbfc-4e34-947b-e1ccbb5b01ca] received connection request\n2025-07-14 14:44:30.439 [info] [command][a0691f8c-d52b-4d64-b1e1-3a029a92615a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a0691f8c-d52b-4d64-b1e1-3a029a92615a""}\n2025-07-14 14:44:30.439 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:44:30.457 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][872e2437-dbfc-4e34-947b-e1ccbb5b01ca] socks forwarding established\n2025-07-14 14:44:30.510 [info] [command][a0691f8c-d52b-4d64-b1e1-3a029a92615a] Process exited with code 0\n2025-07-14 14:44:30.511 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][872e2437-dbfc-4e34-947b-e1ccbb5b01ca] socks connection closed\n2025-07-14 14:44:30.511 [info] [command][a0691f8c-d52b-4d64-b1e1-3a029a92615a] Socket close event received\n2025-07-14 14:44:30.529 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63400 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:45:30.517 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:45:30.518 [info] [command][9529f933-7e8f-4608-a1f1-c9afcf60e5b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""9529f933-7e8f-4608-a1f1-c9afcf60e5b1""}\n2025-07-14 14:45:30.519 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][27b76d98-2f4c-4cac-b8e9-a5e6228c176c] received connection request\n2025-07-14 14:45:30.519 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:45:30.538 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][27b76d98-2f4c-4cac-b8e9-a5e6228c176c] socks forwarding established\n2025-07-14 14:45:30.697 [info] [command][9529f933-7e8f-4608-a1f1-c9afcf60e5b1] Process exited with code 0\n2025-07-14 14:45:30.697 [info] [command][9529f933-7e8f-4608-a1f1-c9afcf60e5b1] Socket close event received\n2025-07-14 14:45:30.699 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][27b76d98-2f4c-4cac-b8e9-a5e6228c176c] socks connection closed\n2025-07-14 14:45:30.722 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63433 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:46:30.703 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:46:30.705 [info] [command][4f217453-5847-4af0-a732-0fb019905f93] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4f217453-5847-4af0-a732-0fb019905f93""}\n2025-07-14 14:46:30.706 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][1e207b78-95f7-4616-9ba7-505a2be73f31] received connection request\n2025-07-14 14:46:30.707 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:46:30.731 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1e207b78-95f7-4616-9ba7-505a2be73f31] socks forwarding established\n2025-07-14 14:46:30.763 [info] [command][4f217453-5847-4af0-a732-0fb019905f93] Process exited with code 0\n2025-07-14 14:46:30.763 [info] [command][4f217453-5847-4af0-a732-0fb019905f93] Socket close event received\n2025-07-14 14:46:30.779 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1e207b78-95f7-4616-9ba7-505a2be73f31] socks connection closed\n2025-07-14 14:46:30.781 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63447 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:47:30.767 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:47:30.768 [info] [command][04a2f626-17c9-4cdc-a4cb-74582396da87] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""04a2f626-17c9-4cdc-a4cb-74582396da87""}\n2025-07-14 14:47:30.770 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][df933238-bc86-4cc7-81ab-1a07c2a5d36a] received connection request\n2025-07-14 14:47:30.770 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:47:30.790 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][df933238-bc86-4cc7-81ab-1a07c2a5d36a] socks forwarding established\n2025-07-14 14:47:30.820 [info] [command][04a2f626-17c9-4cdc-a4cb-74582396da87] Process exited with code 0\n2025-07-14 14:47:30.821 [info] [command][04a2f626-17c9-4cdc-a4cb-74582396da87] Socket close event received\n2025-07-14 14:47:30.822 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][df933238-bc86-4cc7-81ab-1a07c2a5d36a] socks connection closed\n2025-07-14 14:47:30.840 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63483 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:48:30.827 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:48:30.828 [info] [command][1723aeee-81bf-43b3-b205-7d01b9207c58] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1723aeee-81bf-43b3-b205-7d01b9207c58""}\n2025-07-14 14:48:30.829 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][dbfb3287-da30-4d20-bb1d-1810a05ccc81] received connection request\n2025-07-14 14:48:30.830 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:48:30.848 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][dbfb3287-da30-4d20-bb1d-1810a05ccc81] socks forwarding established\n2025-07-14 14:48:30.877 [info] [command][1723aeee-81bf-43b3-b205-7d01b9207c58] Process exited with code 0\n2025-07-14 14:48:30.878 [info] [command][1723aeee-81bf-43b3-b205-7d01b9207c58] Socket close event received\n2025-07-14 14:48:30.894 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][dbfb3287-da30-4d20-bb1d-1810a05ccc81] socks connection closed\n2025-07-14 14:48:30.896 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63540 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:49:30.882 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:49:30.884 [info] [command][b7efe2b2-e2a9-4760-b53e-4e260fcc205d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b7efe2b2-e2a9-4760-b53e-4e260fcc205d""}\n2025-07-14 14:49:30.885 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][5f15a693-4669-45f2-a263-25492919dd4d] received connection request\n2025-07-14 14:49:30.885 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:49:30.974 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5f15a693-4669-45f2-a263-25492919dd4d] socks forwarding established\n2025-07-14 14:49:31.148 [info] [command][b7efe2b2-e2a9-4760-b53e-4e260fcc205d] Process exited with code 0\n2025-07-14 14:49:31.148 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5f15a693-4669-45f2-a263-25492919dd4d] socks connection closed\n2025-07-14 14:49:31.148 [info] [command][b7efe2b2-e2a9-4760-b53e-4e260fcc205d] Socket close event received\n2025-07-14 14:49:31.171 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63557 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:50:31.155 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:50:31.156 [info] [command][87d593ca-06bd-45fb-9b16-d800f0402c0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""87d593ca-06bd-45fb-9b16-d800f0402c0a""}\n2025-07-14 14:50:31.157 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ce765d17-23f2-45b8-8f95-38849d6324c8] received connection request\n2025-07-14 14:50:31.157 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:50:31.175 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ce765d17-23f2-45b8-8f95-38849d6324c8] socks forwarding established\n2025-07-14 14:50:31.209 [info] [command][87d593ca-06bd-45fb-9b16-d800f0402c0a] Process exited with code 0\n2025-07-14 14:50:31.209 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ce765d17-23f2-45b8-8f95-38849d6324c8] socks connection closed\n2025-07-14 14:50:31.209 [info] [command][87d593ca-06bd-45fb-9b16-d800f0402c0a] Socket close event received\n2025-07-14 14:50:31.230 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63588 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:51:31.215 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:51:31.217 [info] [command][23f1ceff-279e-4840-b697-1fc086771c17] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""23f1ceff-279e-4840-b697-1fc086771c17""}\n2025-07-14 14:51:31.217 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][4c6e8b58-6a4e-4550-bdd0-d6fd52df5ddc] received connection request\n2025-07-14 14:51:31.218 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:51:31.241 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4c6e8b58-6a4e-4550-bdd0-d6fd52df5ddc] socks forwarding established\n2025-07-14 14:51:31.270 [info] [command][23f1ceff-279e-4840-b697-1fc086771c17] Process exited with code 0\n2025-07-14 14:51:31.270 [info] [command][23f1ceff-279e-4840-b697-1fc086771c17] Socket close event received\n2025-07-14 14:51:31.287 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4c6e8b58-6a4e-4550-bdd0-d6fd52df5ddc] socks connection closed\n2025-07-14 14:51:31.287 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63654 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:52:31.277 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:52:31.278 [info] [command][741fc6d9-56a0-42ba-94a8-7f776271c1bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""741fc6d9-56a0-42ba-94a8-7f776271c1bf""}\n2025-07-14 14:52:31.279 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][4574e50e-5510-499b-a83d-5eb3bd365175] received connection request\n2025-07-14 14:52:31.280 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:52:31.299 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4574e50e-5510-499b-a83d-5eb3bd365175] socks forwarding established\n2025-07-14 14:52:31.329 [info] [command][741fc6d9-56a0-42ba-94a8-7f776271c1bf] Process exited with code 0\n2025-07-14 14:52:31.329 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4574e50e-5510-499b-a83d-5eb3bd365175] socks connection closed\n2025-07-14 14:52:31.329 [info] [command][741fc6d9-56a0-42ba-94a8-7f776271c1bf] Socket close event received\n2025-07-14 14:52:31.349 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63681 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:53:31.334 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:53:31.336 [info] [command][a2f626f5-1e4e-4ebf-ba9a-c3922039f28e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a2f626f5-1e4e-4ebf-ba9a-c3922039f28e""}\n2025-07-14 14:53:31.337 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6ae4eb89-88a3-47b1-adb2-7709a56d1c74] received connection request\n2025-07-14 14:53:31.337 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:53:31.418 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6ae4eb89-88a3-47b1-adb2-7709a56d1c74] socks forwarding established\n2025-07-14 14:53:31.485 [info] [command][a2f626f5-1e4e-4ebf-ba9a-c3922039f28e] Process exited with code 0\n2025-07-14 14:53:31.485 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6ae4eb89-88a3-47b1-adb2-7709a56d1c74] socks connection closed\n2025-07-14 14:53:31.485 [info] [command][a2f626f5-1e4e-4ebf-ba9a-c3922039f28e] Socket close event received\n2025-07-14 14:53:31.503 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63701 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:54:31.491 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:54:31.491 [info] [command][2ccdca21-a46c-4e27-bf16-0fadd5a0e920] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""2ccdca21-a46c-4e27-bf16-0fadd5a0e920""}\n2025-07-14 14:54:31.492 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][b3d1b267-5900-4469-b1d8-eb606f084c06] received connection request\n2025-07-14 14:54:31.492 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:54:31.510 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b3d1b267-5900-4469-b1d8-eb606f084c06] socks forwarding established\n2025-07-14 14:54:31.542 [info] [command][2ccdca21-a46c-4e27-bf16-0fadd5a0e920] Process exited with code 0\n2025-07-14 14:54:31.542 [info] [command][2ccdca21-a46c-4e27-bf16-0fadd5a0e920] Socket close event received\n2025-07-14 14:54:31.543 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b3d1b267-5900-4469-b1d8-eb606f084c06] socks connection closed\n2025-07-14 14:54:31.561 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63721 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:55:31.553 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:55:31.554 [info] [command][b14ce144-8e5a-4ca9-a145-651b4b90b9b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b14ce144-8e5a-4ca9-a145-651b4b90b9b9""}\n2025-07-14 14:55:31.554 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][0f40eb78-68b3-400e-bed7-962cc44132fe] received connection request\n2025-07-14 14:55:31.555 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:55:31.574 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0f40eb78-68b3-400e-bed7-962cc44132fe] socks forwarding established\n2025-07-14 14:55:31.603 [info] [command][b14ce144-8e5a-4ca9-a145-651b4b90b9b9] Process exited with code 0\n2025-07-14 14:55:31.603 [info] [command][b14ce144-8e5a-4ca9-a145-651b4b90b9b9] Socket close event received\n2025-07-14 14:55:31.604 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0f40eb78-68b3-400e-bed7-962cc44132fe] socks connection closed\n2025-07-14 14:55:31.621 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63751 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:56:31.609 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:56:31.610 [info] [command][f58dec4b-2787-44c5-9798-3f1e54c78ef7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f58dec4b-2787-44c5-9798-3f1e54c78ef7""}\n2025-07-14 14:56:31.610 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][4ece34e6-a929-47ee-8b6b-52ae59f03ea4] received connection request\n2025-07-14 14:56:31.610 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 14:56:31.610 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:56:31.629 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4ece34e6-a929-47ee-8b6b-52ae59f03ea4] socks forwarding established\n2025-07-14 14:56:31.666 [info] [command][f58dec4b-2787-44c5-9798-3f1e54c78ef7] Process exited with code 0\n2025-07-14 14:56:31.666 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4ece34e6-a929-47ee-8b6b-52ae59f03ea4] socks connection closed\n2025-07-14 14:56:31.667 [info] [command][f58dec4b-2787-44c5-9798-3f1e54c78ef7] Socket close event received\n2025-07-14 14:56:31.689 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63764 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:57:31.672 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:57:31.673 [info] [command][11901eb5-8545-4473-8242-c378f301820b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""11901eb5-8545-4473-8242-c378f301820b""}\n2025-07-14 14:57:31.674 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][47d31c4c-aa1a-46fa-8c11-44ce1b57638a] received connection request\n2025-07-14 14:57:31.674 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:57:31.711 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][47d31c4c-aa1a-46fa-8c11-44ce1b57638a] socks forwarding established\n2025-07-14 14:57:31.744 [info] [command][11901eb5-8545-4473-8242-c378f301820b] Process exited with code 0\n2025-07-14 14:57:31.744 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][47d31c4c-aa1a-46fa-8c11-44ce1b57638a] socks connection closed\n2025-07-14 14:57:31.744 [info] [command][11901eb5-8545-4473-8242-c378f301820b] Socket close event received\n2025-07-14 14:57:31.763 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63793 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:58:31.747 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:58:31.749 [info] [command][669a5a22-4e38-4d86-95f7-306d0f15a81a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""669a5a22-4e38-4d86-95f7-306d0f15a81a""}\n2025-07-14 14:58:31.750 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e5126852-e3d5-4157-9fa5-60e9de336ee7] received connection request\n2025-07-14 14:58:31.751 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 14:58:31.751 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:58:31.769 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e5126852-e3d5-4157-9fa5-60e9de336ee7] socks forwarding established\n2025-07-14 14:58:31.811 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e5126852-e3d5-4157-9fa5-60e9de336ee7] socks connection closed\n2025-07-14 14:58:31.811 [info] [command][669a5a22-4e38-4d86-95f7-306d0f15a81a] Process exited with code 0\n2025-07-14 14:58:31.811 [info] [command][669a5a22-4e38-4d86-95f7-306d0f15a81a] Socket close event received\n2025-07-14 14:58:31.828 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63825 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 14:59:31.815 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 14:59:31.817 [info] [command][b1d85d47-20be-4a70-a5d3-2ff0f23e4539] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b1d85d47-20be-4a70-a5d3-2ff0f23e4539""}\n2025-07-14 14:59:31.818 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e6e6258e-cb2a-4fcd-8757-fb0a91b69a1d] received connection request\n2025-07-14 14:59:31.818 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 14:59:31.838 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e6e6258e-cb2a-4fcd-8757-fb0a91b69a1d] socks forwarding established\n2025-07-14 14:59:31.870 [info] [command][b1d85d47-20be-4a70-a5d3-2ff0f23e4539] Process exited with code 0\n2025-07-14 14:59:31.870 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e6e6258e-cb2a-4fcd-8757-fb0a91b69a1d] socks connection closed\n2025-07-14 14:59:31.870 [info] [command][b1d85d47-20be-4a70-a5d3-2ff0f23e4539] Socket close event received\n2025-07-14 14:59:31.888 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63868 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:00:31.875 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:00:31.876 [info] [command][18febaa8-9bc1-4cfa-bd73-7158d455c1eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""18febaa8-9bc1-4cfa-bd73-7158d455c1eb""}\n2025-07-14 15:00:31.876 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][08a9d1cd-19cb-43e3-8087-443684aaaedf] received connection request\n2025-07-14 15:00:31.877 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:00:31.896 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][08a9d1cd-19cb-43e3-8087-443684aaaedf] socks forwarding established\n2025-07-14 15:00:31.926 [info] [command][18febaa8-9bc1-4cfa-bd73-7158d455c1eb] Process exited with code 0\n2025-07-14 15:00:31.926 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][08a9d1cd-19cb-43e3-8087-443684aaaedf] socks connection closed\n2025-07-14 15:00:31.927 [info] [command][18febaa8-9bc1-4cfa-bd73-7158d455c1eb] Socket close event received\n2025-07-14 15:00:32.035 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63933 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:01:31.931 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:01:31.933 [info] [command][b21993d3-694c-4145-81b2-4b4b9ef3d53c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b21993d3-694c-4145-81b2-4b4b9ef3d53c""}\n2025-07-14 15:01:31.933 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][459e6c82-ff75-484d-8b7b-552a20a94f59] received connection request\n2025-07-14 15:01:31.933 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:01:31.951 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][459e6c82-ff75-484d-8b7b-552a20a94f59] socks forwarding established\n2025-07-14 15:01:31.982 [info] [command][b21993d3-694c-4145-81b2-4b4b9ef3d53c] Process exited with code 0\n2025-07-14 15:01:31.982 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][459e6c82-ff75-484d-8b7b-552a20a94f59] socks connection closed\n2025-07-14 15:01:31.982 [info] [command][b21993d3-694c-4145-81b2-4b4b9ef3d53c] Socket close event received\n2025-07-14 15:01:32.000 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63964 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:02:31.986 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:02:31.988 [info] [command][2dc0e8a4-a212-4c77-a0fb-cb40af1b18eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""2dc0e8a4-a212-4c77-a0fb-cb40af1b18eb""}\n2025-07-14 15:02:31.989 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9c39e112-7669-4b68-80d9-5545f4becaa3] received connection request\n2025-07-14 15:02:31.989 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:02:32.050 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9c39e112-7669-4b68-80d9-5545f4becaa3] socks forwarding established\n2025-07-14 15:02:32.082 [info] [command][2dc0e8a4-a212-4c77-a0fb-cb40af1b18eb] Process exited with code 0\n2025-07-14 15:02:32.083 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9c39e112-7669-4b68-80d9-5545f4becaa3] socks connection closed\n2025-07-14 15:02:32.083 [info] [command][2dc0e8a4-a212-4c77-a0fb-cb40af1b18eb] Socket close event received\n2025-07-14 15:02:32.100 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 63997 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:03:32.088 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:03:32.089 [info] [command][bdc3d0df-204e-41c1-af22-c05dfdbc8221] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""bdc3d0df-204e-41c1-af22-c05dfdbc8221""}\n2025-07-14 15:03:32.089 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][2382604f-6a8b-41b1-a0c7-74713f76a9c1] received connection request\n2025-07-14 15:03:32.090 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:03:32.107 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2382604f-6a8b-41b1-a0c7-74713f76a9c1] socks forwarding established\n2025-07-14 15:03:32.137 [info] [command][bdc3d0df-204e-41c1-af22-c05dfdbc8221] Process exited with code 0\n2025-07-14 15:03:32.137 [info] [command][bdc3d0df-204e-41c1-af22-c05dfdbc8221] Socket close event received\n2025-07-14 15:03:32.154 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2382604f-6a8b-41b1-a0c7-74713f76a9c1] socks connection closed\n2025-07-14 15:03:32.154 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64012 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:04:32.141 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:04:32.141 [info] [command][14399868-b768-432b-b693-249555db088b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""14399868-b768-432b-b693-249555db088b""}\n2025-07-14 15:04:32.142 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9b631a23-e094-4218-bce4-c86315a43d2b] received connection request\n2025-07-14 15:04:32.142 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:04:32.162 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9b631a23-e094-4218-bce4-c86315a43d2b] socks forwarding established\n2025-07-14 15:04:32.194 [info] [command][14399868-b768-432b-b693-249555db088b] Process exited with code 0\n2025-07-14 15:04:32.195 [info] [command][14399868-b768-432b-b693-249555db088b] Socket close event received\n2025-07-14 15:04:32.218 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64043 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:04:32.218 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9b631a23-e094-4218-bce4-c86315a43d2b] socks connection closed\n2025-07-14 15:05:32.200 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:05:32.203 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][3a16c1f9-168c-4d5e-94f6-a8bbc974f70b] received connection request\n2025-07-14 15:05:32.203 [info] [command][f2ea30d9-e388-4a63-990d-9ab20d0caf5e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f2ea30d9-e388-4a63-990d-9ab20d0caf5e""}\n2025-07-14 15:05:32.204 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:05:32.222 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3a16c1f9-168c-4d5e-94f6-a8bbc974f70b] socks forwarding established\n2025-07-14 15:05:32.253 [info] [command][f2ea30d9-e388-4a63-990d-9ab20d0caf5e] Process exited with code 0\n2025-07-14 15:05:32.253 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3a16c1f9-168c-4d5e-94f6-a8bbc974f70b] socks connection closed\n2025-07-14 15:05:32.254 [info] [command][f2ea30d9-e388-4a63-990d-9ab20d0caf5e] Socket close event received\n2025-07-14 15:05:32.272 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64080 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:06:32.256 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:06:32.258 [info] [command][354dbbea-c5b5-4a5b-a1ba-6dc0999106c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""354dbbea-c5b5-4a5b-a1ba-6dc0999106c8""}\n2025-07-14 15:06:32.259 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][70c264b9-3c42-474a-8dbd-ae36e94d9c79] received connection request\n2025-07-14 15:06:32.259 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:06:32.392 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][70c264b9-3c42-474a-8dbd-ae36e94d9c79] socks forwarding established\n2025-07-14 15:06:32.422 [info] [command][354dbbea-c5b5-4a5b-a1ba-6dc0999106c8] Process exited with code 0\n2025-07-14 15:06:32.422 [info] [command][354dbbea-c5b5-4a5b-a1ba-6dc0999106c8] Socket close event received\n2025-07-14 15:06:32.516 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64093 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:06:32.516 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][70c264b9-3c42-474a-8dbd-ae36e94d9c79] socks connection closed\n2025-07-14 15:07:32.429 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:07:32.431 [info] [command][fe59ba89-d08e-446b-96c7-7c9af6c747c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""fe59ba89-d08e-446b-96c7-7c9af6c747c0""}\n2025-07-14 15:07:32.431 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][46f20a9c-23e3-4170-b5ce-e4aff1e56ad2] received connection request\n2025-07-14 15:07:32.432 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:07:32.456 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][46f20a9c-23e3-4170-b5ce-e4aff1e56ad2] socks forwarding established\n2025-07-14 15:07:32.495 [info] [command][fe59ba89-d08e-446b-96c7-7c9af6c747c0] Process exited with code 0\n2025-07-14 15:07:32.496 [info] [command][fe59ba89-d08e-446b-96c7-7c9af6c747c0] Socket close event received\n2025-07-14 15:07:32.501 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][46f20a9c-23e3-4170-b5ce-e4aff1e56ad2] socks connection closed\n2025-07-14 15:07:32.562 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64125 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:08:32.502 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:08:32.505 [info] [command][ad5de1ec-d929-40f5-af99-9f1101a1e0f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ad5de1ec-d929-40f5-af99-9f1101a1e0f3""}\n2025-07-14 15:08:32.506 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9a87334e-46e2-467d-b56c-9c64bff981d9] received connection request\n2025-07-14 15:08:32.507 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:08:32.526 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9a87334e-46e2-467d-b56c-9c64bff981d9] socks forwarding established\n2025-07-14 15:08:32.560 [info] [command][ad5de1ec-d929-40f5-af99-9f1101a1e0f3] Process exited with code 0\n2025-07-14 15:08:32.560 [info] [command][ad5de1ec-d929-40f5-af99-9f1101a1e0f3] Socket close event received\n2025-07-14 15:08:32.575 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9a87334e-46e2-467d-b56c-9c64bff981d9] socks connection closed\n2025-07-14 15:08:32.579 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64139 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:09:32.567 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:09:32.571 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][fc9ae024-8a24-4e4f-a793-4e07c033f48d] received connection request\n2025-07-14 15:09:32.571 [info] [command][13792963-d2b7-4faa-a686-892414a6c568] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""13792963-d2b7-4faa-a686-892414a6c568""}\n2025-07-14 15:09:32.572 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:09:32.591 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fc9ae024-8a24-4e4f-a793-4e07c033f48d] socks forwarding established\n2025-07-14 15:09:32.634 [info] [command][13792963-d2b7-4faa-a686-892414a6c568] Process exited with code 0\n2025-07-14 15:09:32.634 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fc9ae024-8a24-4e4f-a793-4e07c033f48d] socks connection closed\n2025-07-14 15:09:32.634 [info] [command][13792963-d2b7-4faa-a686-892414a6c568] Socket close event received\n2025-07-14 15:09:32.653 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64160 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:10:32.637 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:10:32.638 [info] [command][d7515410-0187-4c8b-9f0f-21085a747a0e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d7515410-0187-4c8b-9f0f-21085a747a0e""}\n2025-07-14 15:10:32.639 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][93793694-d1fc-4cc5-ae04-70ce944df321] received connection request\n2025-07-14 15:10:32.639 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:10:32.788 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][93793694-d1fc-4cc5-ae04-70ce944df321] socks forwarding established\n2025-07-14 15:10:32.852 [info] [command][d7515410-0187-4c8b-9f0f-21085a747a0e] Process exited with code 0\n2025-07-14 15:10:32.852 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][93793694-d1fc-4cc5-ae04-70ce944df321] socks connection closed\n2025-07-14 15:10:32.852 [info] [command][d7515410-0187-4c8b-9f0f-21085a747a0e] Socket close event received\n2025-07-14 15:10:32.949 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64191 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:11:32.859 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:11:32.861 [info] [command][ca54002f-3cf1-4f80-b719-fa404cb19c83] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ca54002f-3cf1-4f80-b719-fa404cb19c83""}\n2025-07-14 15:11:32.861 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][74d7b6ca-0ae1-4d6c-8a20-90323909721f] received connection request\n2025-07-14 15:11:32.862 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 15:11:32.862 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:11:32.880 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][74d7b6ca-0ae1-4d6c-8a20-90323909721f] socks forwarding established\n2025-07-14 15:11:32.914 [info] [command][ca54002f-3cf1-4f80-b719-fa404cb19c83] Process exited with code 0\n2025-07-14 15:11:32.915 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][74d7b6ca-0ae1-4d6c-8a20-90323909721f] socks connection closed\n2025-07-14 15:11:32.915 [info] [command][ca54002f-3cf1-4f80-b719-fa404cb19c83] Socket close event received\n2025-07-14 15:11:32.933 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64205 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:12:32.921 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:12:32.921 [info] [command][46ade490-55f6-46bb-956a-cec008ba5dab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""46ade490-55f6-46bb-956a-cec008ba5dab""}\n2025-07-14 15:12:32.922 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][7402bd63-55f0-4e9b-b393-8a887cdc237d] received connection request\n2025-07-14 15:12:32.922 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:12:32.940 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7402bd63-55f0-4e9b-b393-8a887cdc237d] socks forwarding established\n2025-07-14 15:12:32.970 [info] [command][46ade490-55f6-46bb-956a-cec008ba5dab] Process exited with code 0\n2025-07-14 15:12:32.970 [info] [command][46ade490-55f6-46bb-956a-cec008ba5dab] Socket close event received\n2025-07-14 15:12:32.988 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64231 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:12:32.988 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7402bd63-55f0-4e9b-b393-8a887cdc237d] socks connection closed\n2025-07-14 15:13:32.977 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:13:32.978 [info] [command][1c826e08-af3f-4ec5-a2f4-397e5984ded4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1c826e08-af3f-4ec5-a2f4-397e5984ded4""}\n2025-07-14 15:13:32.978 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][8b0c9caa-e7a9-4fb9-ae48-62fed2b0486c] received connection request\n2025-07-14 15:13:32.979 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:13:32.997 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8b0c9caa-e7a9-4fb9-ae48-62fed2b0486c] socks forwarding established\n2025-07-14 15:13:33.027 [info] [command][1c826e08-af3f-4ec5-a2f4-397e5984ded4] Process exited with code 0\n2025-07-14 15:13:33.027 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8b0c9caa-e7a9-4fb9-ae48-62fed2b0486c] socks connection closed\n2025-07-14 15:13:33.027 [info] [command][1c826e08-af3f-4ec5-a2f4-397e5984ded4] Socket close event received\n2025-07-14 15:13:33.044 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64245 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:14:33.033 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:14:33.036 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][2ffbd56e-ce27-40c2-ae4e-4fdeb627aceb] received connection request\n2025-07-14 15:14:33.036 [info] [command][ed3b3a46-3205-48a4-966b-4da263150222] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ed3b3a46-3205-48a4-966b-4da263150222""}\n2025-07-14 15:14:33.037 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:14:33.138 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2ffbd56e-ce27-40c2-ae4e-4fdeb627aceb] socks forwarding established\n2025-07-14 15:14:33.179 [info] [command][ed3b3a46-3205-48a4-966b-4da263150222] Process exited with code 0\n2025-07-14 15:14:33.180 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2ffbd56e-ce27-40c2-ae4e-4fdeb627aceb] socks connection closed\n2025-07-14 15:14:33.180 [info] [command][ed3b3a46-3205-48a4-966b-4da263150222] Socket close event received\n2025-07-14 15:14:33.331 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64268 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:15:33.185 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:15:33.186 [info] [command][fbc438ec-8a14-41dd-ab47-26f3328ce115] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""fbc438ec-8a14-41dd-ab47-26f3328ce115""}\n2025-07-14 15:15:33.187 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][0daa97a6-46dc-4e82-b667-074d9389a9f8] received connection request\n2025-07-14 15:15:33.188 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:15:33.207 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0daa97a6-46dc-4e82-b667-074d9389a9f8] socks forwarding established\n2025-07-14 15:15:33.240 [info] [command][fbc438ec-8a14-41dd-ab47-26f3328ce115] Process exited with code 0\n2025-07-14 15:15:33.240 [info] [command][fbc438ec-8a14-41dd-ab47-26f3328ce115] Socket close event received\n2025-07-14 15:15:33.240 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0daa97a6-46dc-4e82-b667-074d9389a9f8] socks connection closed\n2025-07-14 15:15:33.257 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64313 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:16:33.242 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:16:33.243 [info] [command][3db446e5-6b46-43cc-bf90-30afdfae57fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""3db446e5-6b46-43cc-bf90-30afdfae57fe""}\n2025-07-14 15:16:33.243 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f3ac29d0-cf9b-4c49-b3ea-34ea1f7a2dc7] received connection request\n2025-07-14 15:16:33.244 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:16:33.262 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f3ac29d0-cf9b-4c49-b3ea-34ea1f7a2dc7] socks forwarding established\n2025-07-14 15:16:33.291 [info] [command][3db446e5-6b46-43cc-bf90-30afdfae57fe] Process exited with code 0\n2025-07-14 15:16:33.291 [info] [command][3db446e5-6b46-43cc-bf90-30afdfae57fe] Socket close event received\n2025-07-14 15:16:33.292 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f3ac29d0-cf9b-4c49-b3ea-34ea1f7a2dc7] socks connection closed\n2025-07-14 15:16:33.310 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64329 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:17:33.297 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:17:33.298 [info] [command][91223ff1-4b45-45cd-9aa6-d019efe77076] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""91223ff1-4b45-45cd-9aa6-d019efe77076""}\n2025-07-14 15:17:33.298 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][809d5953-613f-4774-95c1-b412e7e30e4d] received connection request\n2025-07-14 15:17:33.298 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:17:33.317 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][809d5953-613f-4774-95c1-b412e7e30e4d] socks forwarding established\n2025-07-14 15:17:33.355 [info] [command][91223ff1-4b45-45cd-9aa6-d019efe77076] Process exited with code 0\n2025-07-14 15:17:33.355 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][809d5953-613f-4774-95c1-b412e7e30e4d] socks connection closed\n2025-07-14 15:17:33.355 [info] [command][91223ff1-4b45-45cd-9aa6-d019efe77076] Socket close event received\n2025-07-14 15:17:33.374 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64364 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:18:33.361 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:18:33.362 [info] [command][2ae746db-6bcd-4a11-81ef-55d21daab5b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""2ae746db-6bcd-4a11-81ef-55d21daab5b0""}\n2025-07-14 15:18:33.362 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e1760297-568e-4046-8bc6-9f31a844ee89] received connection request\n2025-07-14 15:18:33.363 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:18:33.459 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e1760297-568e-4046-8bc6-9f31a844ee89] socks forwarding established\n2025-07-14 15:18:33.623 [info] [command][2ae746db-6bcd-4a11-81ef-55d21daab5b0] Process exited with code 0\n2025-07-14 15:18:33.624 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e1760297-568e-4046-8bc6-9f31a844ee89] socks connection closed\n2025-07-14 15:18:33.624 [info] [command][2ae746db-6bcd-4a11-81ef-55d21daab5b0] Socket close event received\n2025-07-14 15:18:33.641 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64387 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:19:33.626 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:19:33.629 [info] [command][503311cc-3de5-416d-af3c-0d5b83aa4c8e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""503311cc-3de5-416d-af3c-0d5b83aa4c8e""}\n2025-07-14 15:19:33.629 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e1b70372-ae5a-4683-90f9-6724a0fef228] received connection request\n2025-07-14 15:19:33.630 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:19:33.651 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e1b70372-ae5a-4683-90f9-6724a0fef228] socks forwarding established\n2025-07-14 15:19:33.683 [info] [command][503311cc-3de5-416d-af3c-0d5b83aa4c8e] Process exited with code 0\n2025-07-14 15:19:33.684 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e1b70372-ae5a-4683-90f9-6724a0fef228] socks connection closed\n2025-07-14 15:19:33.684 [info] [command][503311cc-3de5-416d-af3c-0d5b83aa4c8e] Socket close event received\n2025-07-14 15:19:33.702 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64406 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:20:33.687 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:20:33.689 [info] [command][96f33159-49cc-40a8-811c-ba508fc3335b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""96f33159-49cc-40a8-811c-ba508fc3335b""}\n2025-07-14 15:20:33.690 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][c311e7cf-c148-4780-9583-71b212800607] received connection request\n2025-07-14 15:20:33.690 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 15:20:33.690 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:20:33.708 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c311e7cf-c148-4780-9583-71b212800607] socks forwarding established\n2025-07-14 15:20:33.742 [info] [command][96f33159-49cc-40a8-811c-ba508fc3335b] Process exited with code 0\n2025-07-14 15:20:33.742 [info] [command][96f33159-49cc-40a8-811c-ba508fc3335b] Socket close event received\n2025-07-14 15:20:33.742 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c311e7cf-c148-4780-9583-71b212800607] socks connection closed\n2025-07-14 15:20:33.760 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64453 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:21:33.748 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:21:33.750 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][d0ef8f75-d23d-4a78-acff-ae738ff03495] received connection request\n2025-07-14 15:21:33.751 [info] [command][9d322df5-07ca-42bc-9254-aab5f0070c04] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""9d322df5-07ca-42bc-9254-aab5f0070c04""}\n2025-07-14 15:21:33.751 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:21:33.769 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d0ef8f75-d23d-4a78-acff-ae738ff03495] socks forwarding established\n2025-07-14 15:21:33.802 [info] [command][9d322df5-07ca-42bc-9254-aab5f0070c04] Process exited with code 0\n2025-07-14 15:21:33.802 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d0ef8f75-d23d-4a78-acff-ae738ff03495] socks connection closed\n2025-07-14 15:21:33.802 [info] [command][9d322df5-07ca-42bc-9254-aab5f0070c04] Socket close event received\n2025-07-14 15:21:33.821 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64470 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:22:33.807 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:22:33.808 [info] [command][c57b2683-04a5-49a1-b6d7-d7a9b00ceb76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""c57b2683-04a5-49a1-b6d7-d7a9b00ceb76""}\n2025-07-14 15:22:33.808 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][95edf014-772b-4447-9c47-784c0a24bddc] received connection request\n2025-07-14 15:22:33.808 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:22:33.899 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][95edf014-772b-4447-9c47-784c0a24bddc] socks forwarding established\n2025-07-14 15:22:34.065 [info] [command][c57b2683-04a5-49a1-b6d7-d7a9b00ceb76] Process exited with code 0\n2025-07-14 15:22:34.066 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][95edf014-772b-4447-9c47-784c0a24bddc] socks connection closed\n2025-07-14 15:22:34.066 [info] [command][c57b2683-04a5-49a1-b6d7-d7a9b00ceb76] Socket close event received\n2025-07-14 15:22:34.086 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64500 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:23:34.071 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:23:34.073 [info] [command][8d95d782-904c-438b-adfa-f4ad7a16c240] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""8d95d782-904c-438b-adfa-f4ad7a16c240""}\n2025-07-14 15:23:34.073 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][309f2447-ff12-4b3d-81cb-0cbb6d3e6127] received connection request\n2025-07-14 15:23:34.074 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:23:34.091 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][309f2447-ff12-4b3d-81cb-0cbb6d3e6127] socks forwarding established\n2025-07-14 15:23:34.124 [info] [command][8d95d782-904c-438b-adfa-f4ad7a16c240] Process exited with code 0\n2025-07-14 15:23:34.124 [info] [command][8d95d782-904c-438b-adfa-f4ad7a16c240] Socket close event received\n2025-07-14 15:23:34.125 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][309f2447-ff12-4b3d-81cb-0cbb6d3e6127] socks connection closed\n2025-07-14 15:23:34.142 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64515 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:24:34.130 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:24:34.131 [info] [command][4eaf7a32-9a8d-4fd7-a391-aaee554bf1dd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4eaf7a32-9a8d-4fd7-a391-aaee554bf1dd""}\n2025-07-14 15:24:34.131 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][1abf78bf-6531-4650-8661-37d917d0fee4] received connection request\n2025-07-14 15:24:34.131 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:24:34.157 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1abf78bf-6531-4650-8661-37d917d0fee4] socks forwarding established\n2025-07-14 15:24:34.190 [info] [command][4eaf7a32-9a8d-4fd7-a391-aaee554bf1dd] Process exited with code 0\n2025-07-14 15:24:34.191 [info] [command][4eaf7a32-9a8d-4fd7-a391-aaee554bf1dd] Socket close event received\n2025-07-14 15:24:34.191 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1abf78bf-6531-4650-8661-37d917d0fee4] socks connection closed\n2025-07-14 15:24:34.210 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64533 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:25:34.196 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:25:34.198 [info] [command][55ae01c5-219a-4cb9-b4a6-edb57d6fb80e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""55ae01c5-219a-4cb9-b4a6-edb57d6fb80e""}\n2025-07-14 15:25:34.199 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][169b4c6d-f1af-4c00-b61c-748fdc14fc39] received connection request\n2025-07-14 15:25:34.201 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:25:34.221 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][169b4c6d-f1af-4c00-b61c-748fdc14fc39] socks forwarding established\n2025-07-14 15:25:34.256 [info] [command][55ae01c5-219a-4cb9-b4a6-edb57d6fb80e] Process exited with code 0\n2025-07-14 15:25:34.256 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][169b4c6d-f1af-4c00-b61c-748fdc14fc39] socks connection closed\n2025-07-14 15:25:34.257 [info] [command][55ae01c5-219a-4cb9-b4a6-edb57d6fb80e] Socket close event received\n2025-07-14 15:25:34.275 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64568 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:26:34.263 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:26:34.264 [info] [command][845a9358-bc46-449b-a867-26d378700da3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""845a9358-bc46-449b-a867-26d378700da3""}\n2025-07-14 15:26:34.265 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][57a7cea4-57b9-46de-8e98-5e8b4fe09b38] received connection request\n2025-07-14 15:26:34.265 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:26:34.416 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][57a7cea4-57b9-46de-8e98-5e8b4fe09b38] socks forwarding established\n2025-07-14 15:26:34.580 [info] [command][845a9358-bc46-449b-a867-26d378700da3] Process exited with code 0\n2025-07-14 15:26:34.580 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][57a7cea4-57b9-46de-8e98-5e8b4fe09b38] socks connection closed\n2025-07-14 15:26:34.580 [info] [command][845a9358-bc46-449b-a867-26d378700da3] Socket close event received\n2025-07-14 15:26:34.601 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64581 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:27:34.583 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:27:34.586 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][fef3f4fe-180e-425d-b674-1b7e9ee6f404] received connection request\n2025-07-14 15:27:34.586 [info] [command][0f9daf62-1e5d-4419-9540-1debde6c18d3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""0f9daf62-1e5d-4419-9540-1debde6c18d3""}\n2025-07-14 15:27:34.586 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:27:34.607 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fef3f4fe-180e-425d-b674-1b7e9ee6f404] socks forwarding established\n2025-07-14 15:27:34.643 [info] [command][0f9daf62-1e5d-4419-9540-1debde6c18d3] Process exited with code 0\n2025-07-14 15:27:34.643 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fef3f4fe-180e-425d-b674-1b7e9ee6f404] socks connection closed\n2025-07-14 15:27:34.644 [info] [command][0f9daf62-1e5d-4419-9540-1debde6c18d3] Socket close event received\n2025-07-14 15:27:34.661 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64611 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:28:34.647 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:28:34.648 [info] [command][a300f2a3-2409-4b56-bb38-be1ab69d8b31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a300f2a3-2409-4b56-bb38-be1ab69d8b31""}\n2025-07-14 15:28:34.649 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][b8ee0d0f-448c-41a7-bd16-7a2700713f02] received connection request\n2025-07-14 15:28:34.649 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:28:34.670 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b8ee0d0f-448c-41a7-bd16-7a2700713f02] socks forwarding established\n2025-07-14 15:28:34.702 [info] [command][a300f2a3-2409-4b56-bb38-be1ab69d8b31] Process exited with code 0\n2025-07-14 15:28:34.702 [info] [command][a300f2a3-2409-4b56-bb38-be1ab69d8b31] Socket close event received\n2025-07-14 15:28:34.703 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b8ee0d0f-448c-41a7-bd16-7a2700713f02] socks connection closed\n2025-07-14 15:28:34.724 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64632 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:29:34.708 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:29:34.710 [info] [command][4f6dc3a0-7c11-4093-bf5d-a3f7b9c6d0da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4f6dc3a0-7c11-4093-bf5d-a3f7b9c6d0da""}\n2025-07-14 15:29:34.711 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ab5636bb-7025-44b3-a817-21565b205106] received connection request\n2025-07-14 15:29:34.712 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:29:34.733 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ab5636bb-7025-44b3-a817-21565b205106] socks forwarding established\n2025-07-14 15:29:34.766 [info] [command][4f6dc3a0-7c11-4093-bf5d-a3f7b9c6d0da] Process exited with code 0\n2025-07-14 15:29:34.766 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ab5636bb-7025-44b3-a817-21565b205106] socks connection closed\n2025-07-14 15:29:34.766 [info] [command][4f6dc3a0-7c11-4093-bf5d-a3f7b9c6d0da] Socket close event received\n2025-07-14 15:29:34.783 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64653 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:30:34.770 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:30:34.771 [info] [command][15804599-888d-4164-9bd5-81e8f34cd7c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""15804599-888d-4164-9bd5-81e8f34cd7c7""}\n2025-07-14 15:30:34.772 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][5d33c07c-baac-4b46-a4dc-f1ada7a3568e] received connection request\n2025-07-14 15:30:34.772 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:30:34.886 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5d33c07c-baac-4b46-a4dc-f1ada7a3568e] socks forwarding established\n2025-07-14 15:30:35.048 [info] [command][15804599-888d-4164-9bd5-81e8f34cd7c7] Process exited with code 0\n2025-07-14 15:30:35.049 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5d33c07c-baac-4b46-a4dc-f1ada7a3568e] socks connection closed\n2025-07-14 15:30:35.049 [info] [command][15804599-888d-4164-9bd5-81e8f34cd7c7] Socket close event received\n2025-07-14 15:30:35.067 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64687 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:31:35.052 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:31:35.054 [info] [command][2d00af7a-872a-4d45-a9ae-c572148144ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""2d00af7a-872a-4d45-a9ae-c572148144ce""}\n2025-07-14 15:31:35.055 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][5916368b-9304-470d-9b9b-513d095fb001] received connection request\n2025-07-14 15:31:35.056 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:31:35.077 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5916368b-9304-470d-9b9b-513d095fb001] socks forwarding established\n2025-07-14 15:31:35.110 [info] [command][2d00af7a-872a-4d45-a9ae-c572148144ce] Process exited with code 0\n2025-07-14 15:31:35.110 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5916368b-9304-470d-9b9b-513d095fb001] socks connection closed\n2025-07-14 15:31:35.111 [info] [command][2d00af7a-872a-4d45-a9ae-c572148144ce] Socket close event received\n2025-07-14 15:31:35.130 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64700 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:32:35.117 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:32:35.119 [info] [command][83b1dfc6-8c86-4842-82de-b9c21c7eabbf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""83b1dfc6-8c86-4842-82de-b9c21c7eabbf""}\n2025-07-14 15:32:35.120 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9c325adc-f63f-457d-9c4b-8f3bc87816fe] received connection request\n2025-07-14 15:32:35.120 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 15:32:35.121 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:32:35.140 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9c325adc-f63f-457d-9c4b-8f3bc87816fe] socks forwarding established\n2025-07-14 15:32:35.177 [info] [command][83b1dfc6-8c86-4842-82de-b9c21c7eabbf] Process exited with code 0\n2025-07-14 15:32:35.177 [info] [command][83b1dfc6-8c86-4842-82de-b9c21c7eabbf] Socket close event received\n2025-07-14 15:32:35.178 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9c325adc-f63f-457d-9c4b-8f3bc87816fe] socks connection closed\n2025-07-14 15:32:35.196 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64736 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:33:35.179 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:33:35.180 [info] [command][6476725e-4969-4a4b-9871-ee4184dba604] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""6476725e-4969-4a4b-9871-ee4184dba604""}\n2025-07-14 15:33:35.181 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][3ee0d050-64cd-42f5-af88-b79f6094b2f4] received connection request\n2025-07-14 15:33:35.182 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:33:35.207 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3ee0d050-64cd-42f5-af88-b79f6094b2f4] socks forwarding established\n2025-07-14 15:33:35.241 [info] [command][6476725e-4969-4a4b-9871-ee4184dba604] Process exited with code 0\n2025-07-14 15:33:35.243 [info] [command][6476725e-4969-4a4b-9871-ee4184dba604] Socket close event received\n2025-07-14 15:33:35.244 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3ee0d050-64cd-42f5-af88-b79f6094b2f4] socks connection closed\n2025-07-14 15:33:35.262 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64756 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:34:35.249 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:34:35.250 [info] [command][eb1a1546-59ea-4c3c-ae03-618ae95d81ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""eb1a1546-59ea-4c3c-ae03-618ae95d81ec""}\n2025-07-14 15:34:35.250 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][8304b9ff-66bb-4bff-bbf9-2720bf77f57b] received connection request\n2025-07-14 15:34:35.250 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:34:35.353 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8304b9ff-66bb-4bff-bbf9-2720bf77f57b] socks forwarding established\n2025-07-14 15:34:35.517 [info] [command][eb1a1546-59ea-4c3c-ae03-618ae95d81ec] Process exited with code 0\n2025-07-14 15:34:35.518 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8304b9ff-66bb-4bff-bbf9-2720bf77f57b] socks connection closed\n2025-07-14 15:34:35.518 [info] [command][eb1a1546-59ea-4c3c-ae03-618ae95d81ec] Socket close event received\n2025-07-14 15:34:35.543 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64792 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:35:35.521 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:35:35.522 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][adfe23db-4192-4e42-bd07-aca2145cffc8] received connection request\n2025-07-14 15:35:35.523 [info] [command][ebdf4dda-5685-4ebe-91c3-92933e9c4e14] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ebdf4dda-5685-4ebe-91c3-92933e9c4e14""}\n2025-07-14 15:35:35.523 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:35:35.542 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][adfe23db-4192-4e42-bd07-aca2145cffc8] socks forwarding established\n2025-07-14 15:35:35.576 [info] [command][ebdf4dda-5685-4ebe-91c3-92933e9c4e14] Process exited with code 0\n2025-07-14 15:35:35.577 [info] [command][ebdf4dda-5685-4ebe-91c3-92933e9c4e14] Socket close event received\n2025-07-14 15:35:35.577 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][adfe23db-4192-4e42-bd07-aca2145cffc8] socks connection closed\n2025-07-14 15:35:35.595 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64841 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:36:35.581 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:36:35.584 [info] [command][c1127297-de5c-452e-b375-72d514e72915] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""c1127297-de5c-452e-b375-72d514e72915""}\n2025-07-14 15:36:35.584 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ce3e39d5-0aae-45ef-8d07-8d3ec329f0da] received connection request\n2025-07-14 15:36:35.585 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:36:35.605 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ce3e39d5-0aae-45ef-8d07-8d3ec329f0da] socks forwarding established\n2025-07-14 15:36:35.634 [info] [command][c1127297-de5c-452e-b375-72d514e72915] Process exited with code 0\n2025-07-14 15:36:35.634 [info] [command][c1127297-de5c-452e-b375-72d514e72915] Socket close event received\n2025-07-14 15:36:35.635 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ce3e39d5-0aae-45ef-8d07-8d3ec329f0da] socks connection closed\n2025-07-14 15:36:35.654 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64856 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:37:35.640 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:37:35.642 [info] [command][b99b54f8-ca7c-46b1-ab2c-b60e0fcf4c6d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b99b54f8-ca7c-46b1-ab2c-b60e0fcf4c6d""}\n2025-07-14 15:37:35.642 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][cbfb9d6f-2610-40d2-be61-81c02350acac] received connection request\n2025-07-14 15:37:35.642 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:37:35.659 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cbfb9d6f-2610-40d2-be61-81c02350acac] socks forwarding established\n2025-07-14 15:37:35.690 [info] [command][b99b54f8-ca7c-46b1-ab2c-b60e0fcf4c6d] Process exited with code 0\n2025-07-14 15:37:35.691 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cbfb9d6f-2610-40d2-be61-81c02350acac] socks connection closed\n2025-07-14 15:37:35.691 [info] [command][b99b54f8-ca7c-46b1-ab2c-b60e0fcf4c6d] Socket close event received\n2025-07-14 15:37:35.711 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64884 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:38:35.693 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:38:35.695 [info] [command][0b00ed54-1052-4f88-9311-8fa7c4b9eb66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""0b00ed54-1052-4f88-9311-8fa7c4b9eb66""}\n2025-07-14 15:38:35.696 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][139d705b-ea72-4db2-8f61-8f06c35ba541] received connection request\n2025-07-14 15:38:35.696 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:38:35.794 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][139d705b-ea72-4db2-8f61-8f06c35ba541] socks forwarding established\n2025-07-14 15:38:35.962 [info] [command][0b00ed54-1052-4f88-9311-8fa7c4b9eb66] Process exited with code 0\n2025-07-14 15:38:35.962 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][139d705b-ea72-4db2-8f61-8f06c35ba541] socks connection closed\n2025-07-14 15:38:35.963 [info] [command][0b00ed54-1052-4f88-9311-8fa7c4b9eb66] Socket close event received\n2025-07-14 15:38:35.980 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64902 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:39:35.966 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:39:35.967 [info] [command][994a5662-16ef-4d9d-9400-8a3b6970d833] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""994a5662-16ef-4d9d-9400-8a3b6970d833""}\n2025-07-14 15:39:35.968 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][572153e4-901d-49aa-9adb-41bc30ea1e5d] received connection request\n2025-07-14 15:39:35.969 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:39:35.988 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][572153e4-901d-49aa-9adb-41bc30ea1e5d] socks forwarding established\n2025-07-14 15:39:36.024 [info] [command][994a5662-16ef-4d9d-9400-8a3b6970d833] Process exited with code 0\n2025-07-14 15:39:36.025 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][572153e4-901d-49aa-9adb-41bc30ea1e5d] socks connection closed\n2025-07-14 15:39:36.025 [info] [command][994a5662-16ef-4d9d-9400-8a3b6970d833] Socket close event received\n2025-07-14 15:39:36.044 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64917 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:40:36.027 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:40:36.029 [info] [command][256b20fb-b7f6-4b5c-aec0-e8dcf01b15d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""256b20fb-b7f6-4b5c-aec0-e8dcf01b15d2""}\n2025-07-14 15:40:36.030 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][1c2074f2-fed9-4438-bbdf-ff3855e422f3] received connection request\n2025-07-14 15:40:36.031 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:40:36.049 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1c2074f2-fed9-4438-bbdf-ff3855e422f3] socks forwarding established\n2025-07-14 15:40:36.082 [info] [command][256b20fb-b7f6-4b5c-aec0-e8dcf01b15d2] Process exited with code 0\n2025-07-14 15:40:36.082 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1c2074f2-fed9-4438-bbdf-ff3855e422f3] socks connection closed\n2025-07-14 15:40:36.082 [info] [command][256b20fb-b7f6-4b5c-aec0-e8dcf01b15d2] Socket close event received\n2025-07-14 15:40:36.100 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64949 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:41:36.088 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:41:36.089 [info] [command][a1ca1a1c-bdab-45e5-b35d-0888b361e196] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a1ca1a1c-bdab-45e5-b35d-0888b361e196""}\n2025-07-14 15:41:36.090 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][eee169b6-4789-4324-a074-71367c226cf8] received connection request\n2025-07-14 15:41:36.091 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:41:36.111 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][eee169b6-4789-4324-a074-71367c226cf8] socks forwarding established\n2025-07-14 15:41:36.143 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][eee169b6-4789-4324-a074-71367c226cf8] socks connection closed\n2025-07-14 15:41:36.144 [info] [command][a1ca1a1c-bdab-45e5-b35d-0888b361e196] Process exited with code 0\n2025-07-14 15:41:36.144 [info] [command][a1ca1a1c-bdab-45e5-b35d-0888b361e196] Socket close event received\n2025-07-14 15:41:36.165 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64963 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:42:36.152 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:42:36.153 [info] [command][ea335b1a-94fb-439b-a21b-90e72d4d2295] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ea335b1a-94fb-439b-a21b-90e72d4d2295""}\n2025-07-14 15:42:36.153 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][241cefe9-c43a-42dc-aef1-b32b27064b58] received connection request\n2025-07-14 15:42:36.154 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:42:36.172 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][241cefe9-c43a-42dc-aef1-b32b27064b58] socks forwarding established\n2025-07-14 15:42:36.326 [info] [command][ea335b1a-94fb-439b-a21b-90e72d4d2295] Process exited with code 0\n2025-07-14 15:42:36.326 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][241cefe9-c43a-42dc-aef1-b32b27064b58] socks connection closed\n2025-07-14 15:42:36.326 [info] [command][ea335b1a-94fb-439b-a21b-90e72d4d2295] Socket close event received\n2025-07-14 15:42:36.351 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 64988 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:43:36.328 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:43:36.329 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ed63abc9-f226-42d3-914b-75b63bf3fb17] received connection request\n2025-07-14 15:43:36.330 [info] [command][53374146-c30e-4fdf-ae34-83af29cbdcfc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""53374146-c30e-4fdf-ae34-83af29cbdcfc""}\n2025-07-14 15:43:36.330 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:43:36.348 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ed63abc9-f226-42d3-914b-75b63bf3fb17] socks forwarding established\n2025-07-14 15:43:36.380 [info] [command][53374146-c30e-4fdf-ae34-83af29cbdcfc] Process exited with code 0\n2025-07-14 15:43:36.380 [info] [command][53374146-c30e-4fdf-ae34-83af29cbdcfc] Socket close event received\n2025-07-14 15:43:36.381 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ed63abc9-f226-42d3-914b-75b63bf3fb17] socks connection closed\n2025-07-14 15:43:36.398 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65008 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:44:36.389 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:44:36.391 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][3d6be318-f962-4757-97ac-148366967b8c] received connection request\n2025-07-14 15:44:36.391 [info] [command][e2d61496-7146-4c88-9ed0-1c969c454c48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""e2d61496-7146-4c88-9ed0-1c969c454c48""}\n2025-07-14 15:44:36.392 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:44:36.415 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3d6be318-f962-4757-97ac-148366967b8c] socks forwarding established\n2025-07-14 15:44:36.448 [info] [command][e2d61496-7146-4c88-9ed0-1c969c454c48] Process exited with code 0\n2025-07-14 15:44:36.448 [info] [command][e2d61496-7146-4c88-9ed0-1c969c454c48] Socket close event received\n2025-07-14 15:44:36.449 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3d6be318-f962-4757-97ac-148366967b8c] socks connection closed\n2025-07-14 15:44:36.469 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65026 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:45:36.457 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:45:36.458 [info] [command][66793ce9-84dc-4055-a0db-2280646dbb70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""66793ce9-84dc-4055-a0db-2280646dbb70""}\n2025-07-14 15:45:36.459 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e544a8c2-7f2a-406e-99e3-52f568b0decd] received connection request\n2025-07-14 15:45:36.460 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:45:36.483 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e544a8c2-7f2a-406e-99e3-52f568b0decd] socks forwarding established\n2025-07-14 15:45:36.519 [info] [command][66793ce9-84dc-4055-a0db-2280646dbb70] Process exited with code 0\n2025-07-14 15:45:36.520 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e544a8c2-7f2a-406e-99e3-52f568b0decd] socks connection closed\n2025-07-14 15:45:36.520 [info] [command][66793ce9-84dc-4055-a0db-2280646dbb70] Socket close event received\n2025-07-14 15:45:36.537 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65059 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:46:36.530 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:46:36.531 [info] [command][c8b2b990-ebb0-448e-833e-6939ef89a2b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""c8b2b990-ebb0-448e-833e-6939ef89a2b8""}\n2025-07-14 15:46:36.532 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][27e55ad6-538e-4afd-9f53-c63b52ad5638] received connection request\n2025-07-14 15:46:36.533 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:46:36.601 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][27e55ad6-538e-4afd-9f53-c63b52ad5638] socks forwarding established\n2025-07-14 15:46:36.767 [info] [command][c8b2b990-ebb0-448e-833e-6939ef89a2b8] Process exited with code 0\n2025-07-14 15:46:36.768 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][27e55ad6-538e-4afd-9f53-c63b52ad5638] socks connection closed\n2025-07-14 15:46:36.768 [info] [command][c8b2b990-ebb0-448e-833e-6939ef89a2b8] Socket close event received\n2025-07-14 15:46:36.786 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65075 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:47:36.769 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:47:36.770 [info] [command][f5893fd0-d1d4-4b3f-8363-be3d86c4fc4d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f5893fd0-d1d4-4b3f-8363-be3d86c4fc4d""}\n2025-07-14 15:47:36.771 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][22df8c28-48c9-4255-9e05-be14b9af2e38] received connection request\n2025-07-14 15:47:36.771 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:47:36.798 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][22df8c28-48c9-4255-9e05-be14b9af2e38] socks forwarding established\n2025-07-14 15:47:36.828 [info] [command][f5893fd0-d1d4-4b3f-8363-be3d86c4fc4d] Process exited with code 0\n2025-07-14 15:47:36.828 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][22df8c28-48c9-4255-9e05-be14b9af2e38] socks connection closed\n2025-07-14 15:47:36.828 [info] [command][f5893fd0-d1d4-4b3f-8363-be3d86c4fc4d] Socket close event received\n2025-07-14 15:47:36.848 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65108 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:48:36.831 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:48:36.833 [info] [command][86408975-ed36-492c-b59e-5482947a6186] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""86408975-ed36-492c-b59e-5482947a6186""}\n2025-07-14 15:48:36.833 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][a010809d-479c-4464-8b0d-7572ef789c9f] received connection request\n2025-07-14 15:48:36.834 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:48:36.851 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a010809d-479c-4464-8b0d-7572ef789c9f] socks forwarding established\n2025-07-14 15:48:36.883 [info] [command][86408975-ed36-492c-b59e-5482947a6186] Process exited with code 0\n2025-07-14 15:48:36.883 [info] [command][86408975-ed36-492c-b59e-5482947a6186] Socket close event received\n2025-07-14 15:48:36.883 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a010809d-479c-4464-8b0d-7572ef789c9f] socks connection closed\n2025-07-14 15:48:36.901 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65125 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:49:36.886 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:49:36.887 [info] [command][fc71a73e-1623-4b1e-a20d-6add08090d26] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""fc71a73e-1623-4b1e-a20d-6add08090d26""}\n2025-07-14 15:49:36.887 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9ec7c8f3-2d11-4239-996a-6e8bda3f22ce] received connection request\n2025-07-14 15:49:36.887 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:49:36.905 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9ec7c8f3-2d11-4239-996a-6e8bda3f22ce] socks forwarding established\n2025-07-14 15:49:36.937 [info] [command][fc71a73e-1623-4b1e-a20d-6add08090d26] Process exited with code 0\n2025-07-14 15:49:36.937 [info] [command][fc71a73e-1623-4b1e-a20d-6add08090d26] Socket close event received\n2025-07-14 15:49:36.938 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9ec7c8f3-2d11-4239-996a-6e8bda3f22ce] socks connection closed\n2025-07-14 15:49:36.955 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65143 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:50:36.941 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:50:36.943 [info] [command][a7de23da-332f-4421-8bcf-4cef189d7117] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a7de23da-332f-4421-8bcf-4cef189d7117""}\n2025-07-14 15:50:36.944 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][dbdab87e-e772-4e9f-ae39-fd3730006412] received connection request\n2025-07-14 15:50:36.944 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:50:37.037 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][dbdab87e-e772-4e9f-ae39-fd3730006412] socks forwarding established\n2025-07-14 15:50:37.127 [info] [command][a7de23da-332f-4421-8bcf-4cef189d7117] Process exited with code 0\n2025-07-14 15:50:37.128 [info] [command][a7de23da-332f-4421-8bcf-4cef189d7117] Socket close event received\n2025-07-14 15:50:37.128 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][dbdab87e-e772-4e9f-ae39-fd3730006412] socks connection closed\n2025-07-14 15:50:37.155 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65177 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:51:37.134 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:51:37.137 [info] [command][8377b6c0-e4db-4b90-a2f9-6d6631bc360c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""8377b6c0-e4db-4b90-a2f9-6d6631bc360c""}\n2025-07-14 15:51:37.138 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e86aa0f8-3ff9-4751-b21b-7adc42f0cb34] received connection request\n2025-07-14 15:51:37.138 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:51:37.159 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e86aa0f8-3ff9-4751-b21b-7adc42f0cb34] socks forwarding established\n2025-07-14 15:51:37.193 [info] [command][8377b6c0-e4db-4b90-a2f9-6d6631bc360c] Process exited with code 0\n2025-07-14 15:51:37.193 [info] [command][8377b6c0-e4db-4b90-a2f9-6d6631bc360c] Socket close event received\n2025-07-14 15:51:37.193 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e86aa0f8-3ff9-4751-b21b-7adc42f0cb34] socks connection closed\n2025-07-14 15:51:37.212 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65194 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:52:37.200 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:52:37.201 [info] [command][f04ff000-d317-4020-b34e-24023a294d1c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f04ff000-d317-4020-b34e-24023a294d1c""}\n2025-07-14 15:52:37.202 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][7f7556ca-093f-40f8-9852-017dce8e2092] received connection request\n2025-07-14 15:52:37.202 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:52:37.220 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7f7556ca-093f-40f8-9852-017dce8e2092] socks forwarding established\n2025-07-14 15:52:37.254 [info] [command][f04ff000-d317-4020-b34e-24023a294d1c] Process exited with code 0\n2025-07-14 15:52:37.254 [info] [command][f04ff000-d317-4020-b34e-24023a294d1c] Socket close event received\n2025-07-14 15:52:37.254 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7f7556ca-093f-40f8-9852-017dce8e2092] socks connection closed\n2025-07-14 15:52:37.272 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65232 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:53:37.258 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:53:37.260 [info] [command][aae506eb-5138-4ec3-adb9-5e7f554fd042] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""aae506eb-5138-4ec3-adb9-5e7f554fd042""}\n2025-07-14 15:53:37.261 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][32766389-3721-446d-b878-0ea6382cdb51] received connection request\n2025-07-14 15:53:37.262 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:53:37.286 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][32766389-3721-446d-b878-0ea6382cdb51] socks forwarding established\n2025-07-14 15:53:37.316 [info] [command][aae506eb-5138-4ec3-adb9-5e7f554fd042] Process exited with code 0\n2025-07-14 15:53:37.317 [info] [command][aae506eb-5138-4ec3-adb9-5e7f554fd042] Socket close event received\n2025-07-14 15:53:37.317 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][32766389-3721-446d-b878-0ea6382cdb51] socks connection closed\n2025-07-14 15:53:37.335 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65284 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:54:37.324 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:54:37.325 [info] [command][50e1fbbc-43e7-42cc-8a9f-9bb772a31a45] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""50e1fbbc-43e7-42cc-8a9f-9bb772a31a45""}\n2025-07-14 15:54:37.326 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][37ca6516-2c42-4ac2-9749-27523fc10d91] received connection request\n2025-07-14 15:54:37.327 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:54:37.390 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][37ca6516-2c42-4ac2-9749-27523fc10d91] socks forwarding established\n2025-07-14 15:54:37.465 [info] [command][50e1fbbc-43e7-42cc-8a9f-9bb772a31a45] Process exited with code 0\n2025-07-14 15:54:37.466 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][37ca6516-2c42-4ac2-9749-27523fc10d91] socks connection closed\n2025-07-14 15:54:37.466 [info] [command][50e1fbbc-43e7-42cc-8a9f-9bb772a31a45] Socket close event received\n2025-07-14 15:54:37.485 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65297 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:55:37.472 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:55:37.473 [info] [command][c919bb64-57c8-4b3c-b903-4150bdf427e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""c919bb64-57c8-4b3c-b903-4150bdf427e5""}\n2025-07-14 15:55:37.474 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][4ea17baf-4d90-4e56-a0dc-5c1106d5297a] received connection request\n2025-07-14 15:55:37.475 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:55:37.496 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4ea17baf-4d90-4e56-a0dc-5c1106d5297a] socks forwarding established\n2025-07-14 15:55:37.530 [info] [command][c919bb64-57c8-4b3c-b903-4150bdf427e5] Process exited with code 0\n2025-07-14 15:55:37.531 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4ea17baf-4d90-4e56-a0dc-5c1106d5297a] socks connection closed\n2025-07-14 15:55:37.531 [info] [command][c919bb64-57c8-4b3c-b903-4150bdf427e5] Socket close event received\n2025-07-14 15:55:37.554 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65326 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:56:37.537 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:56:37.538 [info] [command][083f89f0-0985-4288-b131-410274fcc310] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""083f89f0-0985-4288-b131-410274fcc310""}\n2025-07-14 15:56:37.539 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][1051ccb7-2515-4d47-8a5f-931382f4d3f4] received connection request\n2025-07-14 15:56:37.540 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:56:37.559 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1051ccb7-2515-4d47-8a5f-931382f4d3f4] socks forwarding established\n2025-07-14 15:56:37.590 [info] [command][083f89f0-0985-4288-b131-410274fcc310] Process exited with code 0\n2025-07-14 15:56:37.591 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1051ccb7-2515-4d47-8a5f-931382f4d3f4] socks connection closed\n2025-07-14 15:56:37.591 [info] [command][083f89f0-0985-4288-b131-410274fcc310] Socket close event received\n2025-07-14 15:56:37.609 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65342 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:57:37.593 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:57:37.594 [info] [command][30267ffd-e615-42fd-a16b-b0c1eefe44ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""30267ffd-e615-42fd-a16b-b0c1eefe44ff""}\n2025-07-14 15:57:37.595 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][5bea58e2-ce31-4845-bafb-27aaceb1b465] received connection request\n2025-07-14 15:57:37.596 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:57:37.619 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5bea58e2-ce31-4845-bafb-27aaceb1b465] socks forwarding established\n2025-07-14 15:57:37.650 [info] [command][30267ffd-e615-42fd-a16b-b0c1eefe44ff] Process exited with code 0\n2025-07-14 15:57:37.651 [info] [command][30267ffd-e615-42fd-a16b-b0c1eefe44ff] Socket close event received\n2025-07-14 15:57:37.654 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5bea58e2-ce31-4845-bafb-27aaceb1b465] socks connection closed\n2025-07-14 15:57:37.669 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65373 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:58:37.661 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:58:37.663 [info] [command][fed89d75-07b7-40ba-acde-2a9eadcc41e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""fed89d75-07b7-40ba-acde-2a9eadcc41e6""}\n2025-07-14 15:58:37.663 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][a70768e8-d5f7-4156-ac21-a60b732659ee] received connection request\n2025-07-14 15:58:37.664 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:58:37.803 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a70768e8-d5f7-4156-ac21-a60b732659ee] socks forwarding established\n2025-07-14 15:58:37.909 [info] [command][fed89d75-07b7-40ba-acde-2a9eadcc41e6] Process exited with code 0\n2025-07-14 15:58:37.909 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a70768e8-d5f7-4156-ac21-a60b732659ee] socks connection closed\n2025-07-14 15:58:37.909 [info] [command][fed89d75-07b7-40ba-acde-2a9eadcc41e6] Socket close event received\n2025-07-14 15:58:37.930 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65400 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 15:59:37.915 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 15:59:37.917 [info] [command][1933524b-2ad4-4577-b340-d4b14fb0b4b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1933524b-2ad4-4577-b340-d4b14fb0b4b4""}\n2025-07-14 15:59:37.918 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][aff2a2ea-07f3-4f92-8df0-f396d2efa2c1] received connection request\n2025-07-14 15:59:37.919 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 15:59:37.937 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][aff2a2ea-07f3-4f92-8df0-f396d2efa2c1] socks forwarding established\n2025-07-14 15:59:37.970 [info] [command][1933524b-2ad4-4577-b340-d4b14fb0b4b4] Process exited with code 0\n2025-07-14 15:59:37.970 [info] [command][1933524b-2ad4-4577-b340-d4b14fb0b4b4] Socket close event received\n2025-07-14 15:59:37.970 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][aff2a2ea-07f3-4f92-8df0-f396d2efa2c1] socks connection closed\n2025-07-14 15:59:37.988 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65415 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:00:37.981 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:00:37.982 [info] [command][926a086c-5cad-4d1e-bf1e-429da270c394] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""926a086c-5cad-4d1e-bf1e-429da270c394""}\n2025-07-14 16:00:37.983 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][0c93a460-31da-4466-9c38-8b7dd144b869] received connection request\n2025-07-14 16:00:37.984 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:00:38.002 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0c93a460-31da-4466-9c38-8b7dd144b869] socks forwarding established\n2025-07-14 16:00:38.034 [info] [command][926a086c-5cad-4d1e-bf1e-429da270c394] Process exited with code 0\n2025-07-14 16:00:38.035 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0c93a460-31da-4466-9c38-8b7dd144b869] socks connection closed\n2025-07-14 16:00:38.035 [info] [command][926a086c-5cad-4d1e-bf1e-429da270c394] Socket close event received\n2025-07-14 16:00:38.052 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65449 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:01:38.041 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:01:38.043 [info] [command][95527181-9cd1-4781-add4-2a4535aa51ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""95527181-9cd1-4781-add4-2a4535aa51ab""}\n2025-07-14 16:01:38.043 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e05218e6-376c-43f7-b217-9c808f6b6914] received connection request\n2025-07-14 16:01:38.044 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:01:38.064 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e05218e6-376c-43f7-b217-9c808f6b6914] socks forwarding established\n2025-07-14 16:01:38.096 [info] [command][95527181-9cd1-4781-add4-2a4535aa51ab] Process exited with code 0\n2025-07-14 16:01:38.097 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e05218e6-376c-43f7-b217-9c808f6b6914] socks connection closed\n2025-07-14 16:01:38.097 [info] [command][95527181-9cd1-4781-add4-2a4535aa51ab] Socket close event received\n2025-07-14 16:01:38.117 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65475 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:02:38.108 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:02:38.110 [info] [command][0945731e-98a3-4193-9027-14b9638037ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""0945731e-98a3-4193-9027-14b9638037ed""}\n2025-07-14 16:02:38.111 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][590388a6-b662-47e8-94a9-d9292bdd3cdd] received connection request\n2025-07-14 16:02:38.112 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:02:38.135 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][590388a6-b662-47e8-94a9-d9292bdd3cdd] socks forwarding established\n2025-07-14 16:02:38.276 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][590388a6-b662-47e8-94a9-d9292bdd3cdd] socks connection closed\n2025-07-14 16:02:38.277 [info] [command][0945731e-98a3-4193-9027-14b9638037ed] Process exited with code 0\n2025-07-14 16:02:38.277 [info] [command][0945731e-98a3-4193-9027-14b9638037ed] Socket close event received\n2025-07-14 16:02:38.353 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65513 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:03:38.288 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:03:38.290 [info] [command][c76d241a-c03a-427d-b967-f6b8928e6b0b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""c76d241a-c03a-427d-b967-f6b8928e6b0b""}\n2025-07-14 16:03:38.291 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][d3fcd4cb-f0d8-4180-9baf-2a867e0188a1] received connection request\n2025-07-14 16:03:38.292 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:03:38.315 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d3fcd4cb-f0d8-4180-9baf-2a867e0188a1] socks forwarding established\n2025-07-14 16:03:38.347 [info] [command][c76d241a-c03a-427d-b967-f6b8928e6b0b] Process exited with code 0\n2025-07-14 16:03:38.348 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d3fcd4cb-f0d8-4180-9baf-2a867e0188a1] socks connection closed\n2025-07-14 16:03:38.348 [info] [command][c76d241a-c03a-427d-b967-f6b8928e6b0b] Socket close event received\n2025-07-14 16:03:38.374 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 65526 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:04:38.359 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:04:38.360 [info] [command][64555d01-9af9-4a5d-b7bc-c974f81aced7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""64555d01-9af9-4a5d-b7bc-c974f81aced7""}\n2025-07-14 16:04:38.361 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][81e9aae1-7bf6-4cdb-b751-cd1ea16f1c2b] received connection request\n2025-07-14 16:04:38.362 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:04:38.380 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][81e9aae1-7bf6-4cdb-b751-cd1ea16f1c2b] socks forwarding established\n2025-07-14 16:04:38.412 [info] [command][64555d01-9af9-4a5d-b7bc-c974f81aced7] Process exited with code 0\n2025-07-14 16:04:38.412 [info] [command][64555d01-9af9-4a5d-b7bc-c974f81aced7] Socket close event received\n2025-07-14 16:04:38.413 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][81e9aae1-7bf6-4cdb-b751-cd1ea16f1c2b] socks connection closed\n2025-07-14 16:04:38.430 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49155 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:05:38.418 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:05:38.419 [info] [command][35bbfd16-dab1-4d33-ba53-f8744cd88262] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""35bbfd16-dab1-4d33-ba53-f8744cd88262""}\n2025-07-14 16:05:38.420 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][21a52564-390a-4a63-880e-15a6d22e820f] received connection request\n2025-07-14 16:05:38.420 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:05:38.439 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][21a52564-390a-4a63-880e-15a6d22e820f] socks forwarding established\n2025-07-14 16:05:38.471 [info] [command][35bbfd16-dab1-4d33-ba53-f8744cd88262] Process exited with code 0\n2025-07-14 16:05:38.471 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][21a52564-390a-4a63-880e-15a6d22e820f] socks connection closed\n2025-07-14 16:05:38.471 [info] [command][35bbfd16-dab1-4d33-ba53-f8744cd88262] Socket close event received\n2025-07-14 16:05:38.489 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49171 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:06:38.476 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:06:38.477 [info] [command][ed3fb5ef-805a-4f2c-9dbd-4af6ba20429b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ed3fb5ef-805a-4f2c-9dbd-4af6ba20429b""}\n2025-07-14 16:06:38.477 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][48f07777-42aa-46cc-a549-3c32247bad95] received connection request\n2025-07-14 16:06:38.478 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:06:38.502 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][48f07777-42aa-46cc-a549-3c32247bad95] socks forwarding established\n2025-07-14 16:06:38.667 [info] [command][ed3fb5ef-805a-4f2c-9dbd-4af6ba20429b] Process exited with code 0\n2025-07-14 16:06:38.668 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][48f07777-42aa-46cc-a549-3c32247bad95] socks connection closed\n2025-07-14 16:06:38.668 [info] [command][ed3fb5ef-805a-4f2c-9dbd-4af6ba20429b] Socket close event received\n2025-07-14 16:06:38.688 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49201 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:07:38.669 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:07:38.670 [info] [command][b0604d26-b2d9-48a1-882c-3f4cc2418efa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b0604d26-b2d9-48a1-882c-3f4cc2418efa""}\n2025-07-14 16:07:38.671 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][a5581084-ce0a-4e05-aeac-a728cbd77869] received connection request\n2025-07-14 16:07:38.672 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:07:38.690 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a5581084-ce0a-4e05-aeac-a728cbd77869] socks forwarding established\n2025-07-14 16:07:38.736 [info] [command][b0604d26-b2d9-48a1-882c-3f4cc2418efa] Process exited with code 0\n2025-07-14 16:07:38.737 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a5581084-ce0a-4e05-aeac-a728cbd77869] socks connection closed\n2025-07-14 16:07:38.737 [info] [command][b0604d26-b2d9-48a1-882c-3f4cc2418efa] Socket close event received\n2025-07-14 16:07:38.754 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49216 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:08:38.738 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:08:38.739 [info] [command][9f21b84d-759d-4ee9-af70-06689c8e39cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""9f21b84d-759d-4ee9-af70-06689c8e39cf""}\n2025-07-14 16:08:38.740 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][7b4dae7f-9308-4b1e-84f6-557aaf1e5d3d] received connection request\n2025-07-14 16:08:38.741 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:08:38.759 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7b4dae7f-9308-4b1e-84f6-557aaf1e5d3d] socks forwarding established\n2025-07-14 16:08:38.794 [info] [command][9f21b84d-759d-4ee9-af70-06689c8e39cf] Process exited with code 0\n2025-07-14 16:08:38.794 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7b4dae7f-9308-4b1e-84f6-557aaf1e5d3d] socks connection closed\n2025-07-14 16:08:38.794 [info] [command][9f21b84d-759d-4ee9-af70-06689c8e39cf] Socket close event received\n2025-07-14 16:08:38.812 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49246 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:09:38.806 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:09:38.806 [info] [command][f5809d47-e4b5-488b-9d53-087301b49063] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f5809d47-e4b5-488b-9d53-087301b49063""}\n2025-07-14 16:09:38.807 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][20e6f7a7-f2d8-4e3f-baf6-deb301b24af2] received connection request\n2025-07-14 16:09:38.808 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:09:38.826 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][20e6f7a7-f2d8-4e3f-baf6-deb301b24af2] socks forwarding established\n2025-07-14 16:09:38.858 [info] [command][f5809d47-e4b5-488b-9d53-087301b49063] Process exited with code 0\n2025-07-14 16:09:38.858 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][20e6f7a7-f2d8-4e3f-baf6-deb301b24af2] socks connection closed\n2025-07-14 16:09:38.858 [info] [command][f5809d47-e4b5-488b-9d53-087301b49063] Socket close event received\n2025-07-14 16:09:38.876 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49261 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:10:38.865 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:10:38.866 [info] [command][411297fd-f4d9-470d-b8bb-d9a2c1a7fe2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""411297fd-f4d9-470d-b8bb-d9a2c1a7fe2b""}\n2025-07-14 16:10:38.866 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][d03bc6ea-50ef-4f11-9ddd-bc0c60edbedf] received connection request\n2025-07-14 16:10:38.866 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:10:38.884 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d03bc6ea-50ef-4f11-9ddd-bc0c60edbedf] socks forwarding established\n2025-07-14 16:10:39.039 [info] [command][411297fd-f4d9-470d-b8bb-d9a2c1a7fe2b] Process exited with code 0\n2025-07-14 16:10:39.040 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d03bc6ea-50ef-4f11-9ddd-bc0c60edbedf] socks connection closed\n2025-07-14 16:10:39.040 [info] [command][411297fd-f4d9-470d-b8bb-d9a2c1a7fe2b] Socket close event received\n2025-07-14 16:10:39.059 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49277 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:11:39.042 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:11:39.043 [info] [command][1a24145f-98a9-4d9c-920d-ae565ca68879] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1a24145f-98a9-4d9c-920d-ae565ca68879""}\n2025-07-14 16:11:39.043 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][242c1056-41ba-4663-9838-5e75e8aa7b76] received connection request\n2025-07-14 16:11:39.044 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:11:39.065 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][242c1056-41ba-4663-9838-5e75e8aa7b76] socks forwarding established\n2025-07-14 16:11:39.096 [info] [command][1a24145f-98a9-4d9c-920d-ae565ca68879] Process exited with code 0\n2025-07-14 16:11:39.096 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][242c1056-41ba-4663-9838-5e75e8aa7b76] socks connection closed\n2025-07-14 16:11:39.097 [info] [command][1a24145f-98a9-4d9c-920d-ae565ca68879] Socket close event received\n2025-07-14 16:11:39.114 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49302 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:12:39.106 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:12:39.106 [info] [command][0e3764f6-2d5a-4fc6-9eea-aa287ee2bd7f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""0e3764f6-2d5a-4fc6-9eea-aa287ee2bd7f""}\n2025-07-14 16:12:39.107 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][8013fba0-2c68-4049-9bc5-5704cb2b2435] received connection request\n2025-07-14 16:12:39.107 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:12:39.124 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8013fba0-2c68-4049-9bc5-5704cb2b2435] socks forwarding established\n2025-07-14 16:12:39.155 [info] [command][0e3764f6-2d5a-4fc6-9eea-aa287ee2bd7f] Process exited with code 0\n2025-07-14 16:12:39.156 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8013fba0-2c68-4049-9bc5-5704cb2b2435] socks connection closed\n2025-07-14 16:12:39.156 [info] [command][0e3764f6-2d5a-4fc6-9eea-aa287ee2bd7f] Socket close event received\n2025-07-14 16:12:39.173 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49320 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:13:39.160 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:13:39.162 [info] [command][ecb5506b-3d16-46da-9729-fc3a18b29dcf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ecb5506b-3d16-46da-9729-fc3a18b29dcf""}\n2025-07-14 16:13:39.163 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6785523e-523c-4c58-9c5d-1c7a100fb94d] received connection request\n2025-07-14 16:13:39.164 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:13:39.183 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6785523e-523c-4c58-9c5d-1c7a100fb94d] socks forwarding established\n2025-07-14 16:13:39.215 [info] [command][ecb5506b-3d16-46da-9729-fc3a18b29dcf] Process exited with code 0\n2025-07-14 16:13:39.216 [info] [command][ecb5506b-3d16-46da-9729-fc3a18b29dcf] Socket close event received\n2025-07-14 16:13:39.216 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6785523e-523c-4c58-9c5d-1c7a100fb94d] socks connection closed\n2025-07-14 16:13:39.235 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49346 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:14:39.223 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:14:39.225 [info] [command][fe64bb94-7c6c-4bab-bbf1-c77c82961ff1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""fe64bb94-7c6c-4bab-bbf1-c77c82961ff1""}\n2025-07-14 16:14:39.225 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ce182a51-8b3e-4b0e-be2d-106339b71bec] received connection request\n2025-07-14 16:14:39.226 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:14:39.249 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ce182a51-8b3e-4b0e-be2d-106339b71bec] socks forwarding established\n2025-07-14 16:14:39.414 [info] [command][fe64bb94-7c6c-4bab-bbf1-c77c82961ff1] Process exited with code 0\n2025-07-14 16:14:39.415 [info] [command][fe64bb94-7c6c-4bab-bbf1-c77c82961ff1] Socket close event received\n2025-07-14 16:14:39.415 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ce182a51-8b3e-4b0e-be2d-106339b71bec] socks connection closed\n2025-07-14 16:14:39.434 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49363 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:15:39.421 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:15:39.424 [info] [command][d9025910-4d84-4122-8e21-a68c3c89cf69] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d9025910-4d84-4122-8e21-a68c3c89cf69""}\n2025-07-14 16:15:39.424 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][b08d91e8-143c-493b-91e6-551dbce162bc] received connection request\n2025-07-14 16:15:39.425 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:15:39.456 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b08d91e8-143c-493b-91e6-551dbce162bc] socks forwarding established\n2025-07-14 16:15:39.622 [info] [command][d9025910-4d84-4122-8e21-a68c3c89cf69] Process exited with code 0\n2025-07-14 16:15:39.622 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b08d91e8-143c-493b-91e6-551dbce162bc] socks connection closed\n2025-07-14 16:15:39.622 [info] [command][d9025910-4d84-4122-8e21-a68c3c89cf69] Socket close event received\n2025-07-14 16:15:39.646 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49410 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:16:39.624 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:16:39.625 [info] [command][632fb1c8-e017-4960-a12a-31b79f0a8e05] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""632fb1c8-e017-4960-a12a-31b79f0a8e05""}\n2025-07-14 16:16:39.626 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6728deec-c226-4ffe-9a1f-332516fbabf3] received connection request\n2025-07-14 16:16:39.626 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:16:39.649 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6728deec-c226-4ffe-9a1f-332516fbabf3] socks forwarding established\n2025-07-14 16:16:39.689 [info] [command][632fb1c8-e017-4960-a12a-31b79f0a8e05] Process exited with code 0\n2025-07-14 16:16:39.689 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6728deec-c226-4ffe-9a1f-332516fbabf3] socks connection closed\n2025-07-14 16:16:39.689 [info] [command][632fb1c8-e017-4960-a12a-31b79f0a8e05] Socket close event received\n2025-07-14 16:16:39.707 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49426 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:17:39.700 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:17:39.700 [info] [command][8435f07c-52c7-4ad0-ad1e-ae77f680b4ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""8435f07c-52c7-4ad0-ad1e-ae77f680b4ab""}\n2025-07-14 16:17:39.701 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][24b80ecf-315e-4161-88ba-eb3225698c8d] received connection request\n2025-07-14 16:17:39.701 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 16:17:39.701 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:17:39.722 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][24b80ecf-315e-4161-88ba-eb3225698c8d] socks forwarding established\n2025-07-14 16:17:39.832 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][24b80ecf-315e-4161-88ba-eb3225698c8d] socks connection closed\n2025-07-14 16:17:39.832 [info] [command][8435f07c-52c7-4ad0-ad1e-ae77f680b4ab] Process exited with code 0\n2025-07-14 16:17:39.832 [info] [command][8435f07c-52c7-4ad0-ad1e-ae77f680b4ab] Socket close event received\n2025-07-14 16:17:39.904 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49470 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:18:39.838 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:18:39.841 [info] [command][0b4e0b00-eaae-4f46-a33f-293a53c942da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""0b4e0b00-eaae-4f46-a33f-293a53c942da""}\n2025-07-14 16:18:39.841 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f152f85f-fa59-48ae-9368-6a6f406be57d] received connection request\n2025-07-14 16:18:39.842 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:18:39.860 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f152f85f-fa59-48ae-9368-6a6f406be57d] socks forwarding established\n2025-07-14 16:18:39.892 [info] [command][0b4e0b00-eaae-4f46-a33f-293a53c942da] Process exited with code 0\n2025-07-14 16:18:39.892 [info] [command][0b4e0b00-eaae-4f46-a33f-293a53c942da] Socket close event received\n2025-07-14 16:18:39.893 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f152f85f-fa59-48ae-9368-6a6f406be57d] socks connection closed\n2025-07-14 16:18:39.911 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49532 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:19:39.899 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:19:39.899 [info] [command][d9e040cd-8ebf-4a4b-bfa1-2457a4426e59] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d9e040cd-8ebf-4a4b-bfa1-2457a4426e59""}\n2025-07-14 16:19:39.900 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][613ca49d-4222-403d-ae1f-248fa9b98ed9] received connection request\n2025-07-14 16:19:39.900 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:19:39.918 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][613ca49d-4222-403d-ae1f-248fa9b98ed9] socks forwarding established\n2025-07-14 16:19:39.953 [info] [command][d9e040cd-8ebf-4a4b-bfa1-2457a4426e59] Process exited with code 0\n2025-07-14 16:19:39.953 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][613ca49d-4222-403d-ae1f-248fa9b98ed9] socks connection closed\n2025-07-14 16:19:39.953 [info] [command][d9e040cd-8ebf-4a4b-bfa1-2457a4426e59] Socket close event received\n2025-07-14 16:19:39.970 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49555 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:20:39.959 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:20:39.960 [info] [command][41e14333-ceb1-4fb3-9411-7f4c778c87bc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""41e14333-ceb1-4fb3-9411-7f4c778c87bc""}\n2025-07-14 16:20:39.961 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e95cff00-85b6-4af9-b5d3-3c6ab27efd7d] received connection request\n2025-07-14 16:20:39.961 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:20:39.979 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e95cff00-85b6-4af9-b5d3-3c6ab27efd7d] socks forwarding established\n2025-07-14 16:20:40.011 [info] [command][41e14333-ceb1-4fb3-9411-7f4c778c87bc] Process exited with code 0\n2025-07-14 16:20:40.011 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e95cff00-85b6-4af9-b5d3-3c6ab27efd7d] socks connection closed\n2025-07-14 16:20:40.011 [info] [command][41e14333-ceb1-4fb3-9411-7f4c778c87bc] Socket close event received\n2025-07-14 16:20:40.029 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49599 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:21:40.017 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:21:40.020 [info] [command][d55e849d-a226-426b-9cb5-99103bdfdb51] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d55e849d-a226-426b-9cb5-99103bdfdb51""}\n2025-07-14 16:21:40.021 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f96c0692-561e-4b6c-98b0-79dda7c2c6ba] received connection request\n2025-07-14 16:21:40.022 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:21:40.128 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f96c0692-561e-4b6c-98b0-79dda7c2c6ba] socks forwarding established\n2025-07-14 16:21:40.294 [info] [command][d55e849d-a226-426b-9cb5-99103bdfdb51] Process exited with code 0\n2025-07-14 16:21:40.295 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f96c0692-561e-4b6c-98b0-79dda7c2c6ba] socks connection closed\n2025-07-14 16:21:40.295 [info] [command][d55e849d-a226-426b-9cb5-99103bdfdb51] Socket close event received\n2025-07-14 16:21:40.312 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49615 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:22:40.298 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:22:40.299 [info] [command][9299c78a-d1ed-4973-a199-da1390fb515b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""9299c78a-d1ed-4973-a199-da1390fb515b""}\n2025-07-14 16:22:40.300 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][8dc2e296-210f-46eb-b602-aa2b9fe77f12] received connection request\n2025-07-14 16:22:40.301 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:22:40.320 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8dc2e296-210f-46eb-b602-aa2b9fe77f12] socks forwarding established\n2025-07-14 16:22:40.351 [info] [command][9299c78a-d1ed-4973-a199-da1390fb515b] Process exited with code 0\n2025-07-14 16:22:40.352 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8dc2e296-210f-46eb-b602-aa2b9fe77f12] socks connection closed\n2025-07-14 16:22:40.352 [info] [command][9299c78a-d1ed-4973-a199-da1390fb515b] Socket close event received\n2025-07-14 16:22:40.371 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49645 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:23:40.357 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:23:40.359 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][44338ea7-f07d-4190-ac29-9d306673de02] received connection request\n2025-07-14 16:23:40.360 [info] [command][de9bedcd-3da7-4c99-9f14-1f44bf01ed3f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""de9bedcd-3da7-4c99-9f14-1f44bf01ed3f""}\n2025-07-14 16:23:40.360 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:23:40.379 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][44338ea7-f07d-4190-ac29-9d306673de02] socks forwarding established\n2025-07-14 16:23:40.415 [info] [command][de9bedcd-3da7-4c99-9f14-1f44bf01ed3f] Process exited with code 0\n2025-07-14 16:23:40.416 [info] [command][de9bedcd-3da7-4c99-9f14-1f44bf01ed3f] Socket close event received\n2025-07-14 16:23:40.416 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][44338ea7-f07d-4190-ac29-9d306673de02] socks connection closed\n2025-07-14 16:23:40.434 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49664 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:24:40.419 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:24:40.420 [info] [command][256ce3f7-eb3a-4e12-8b0f-3eb897041cdd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""256ce3f7-eb3a-4e12-8b0f-3eb897041cdd""}\n2025-07-14 16:24:40.421 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][99215308-fad1-401e-91f1-0f2f4238e5d5] received connection request\n2025-07-14 16:24:40.422 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:24:40.440 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][99215308-fad1-401e-91f1-0f2f4238e5d5] socks forwarding established\n2025-07-14 16:24:40.473 [info] [command][256ce3f7-eb3a-4e12-8b0f-3eb897041cdd] Process exited with code 0\n2025-07-14 16:24:40.473 [info] [command][256ce3f7-eb3a-4e12-8b0f-3eb897041cdd] Socket close event received\n2025-07-14 16:24:40.474 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][99215308-fad1-401e-91f1-0f2f4238e5d5] socks connection closed\n2025-07-14 16:24:40.495 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49689 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:25:40.475 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:25:40.477 [info] [command][a2ed92da-2aee-4ef3-898d-89e473bf8ff5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a2ed92da-2aee-4ef3-898d-89e473bf8ff5""}\n2025-07-14 16:25:40.478 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][451e8c72-e3e6-4320-92b3-a04d0847bf45] received connection request\n2025-07-14 16:25:40.479 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:25:40.630 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][451e8c72-e3e6-4320-92b3-a04d0847bf45] socks forwarding established\n2025-07-14 16:25:40.661 [info] [command][a2ed92da-2aee-4ef3-898d-89e473bf8ff5] Process exited with code 0\n2025-07-14 16:25:40.661 [info] [command][a2ed92da-2aee-4ef3-898d-89e473bf8ff5] Socket close event received\n2025-07-14 16:25:40.662 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][451e8c72-e3e6-4320-92b3-a04d0847bf45] socks connection closed\n2025-07-14 16:25:40.808 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49733 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:26:40.664 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:26:40.665 [info] [command][dc01703b-6ead-4672-a6d2-dbef5acff90c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""dc01703b-6ead-4672-a6d2-dbef5acff90c""}\n2025-07-14 16:26:40.665 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][8171781a-b51d-4ced-a920-21d71888726a] received connection request\n2025-07-14 16:26:40.665 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:26:40.683 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8171781a-b51d-4ced-a920-21d71888726a] socks forwarding established\n2025-07-14 16:26:40.716 [info] [command][dc01703b-6ead-4672-a6d2-dbef5acff90c] Process exited with code 0\n2025-07-14 16:26:40.716 [info] [command][dc01703b-6ead-4672-a6d2-dbef5acff90c] Socket close event received\n2025-07-14 16:26:40.717 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8171781a-b51d-4ced-a920-21d71888726a] socks connection closed\n2025-07-14 16:26:40.734 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49764 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:27:40.720 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:27:40.721 [info] [command][1d26e7ad-c6dc-4bb6-b788-4688b1ccb19d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1d26e7ad-c6dc-4bb6-b788-4688b1ccb19d""}\n2025-07-14 16:27:40.722 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ec6b1fb9-4b95-478a-93fd-886d6c41bfde] received connection request\n2025-07-14 16:27:40.723 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:27:40.742 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ec6b1fb9-4b95-478a-93fd-886d6c41bfde] socks forwarding established\n2025-07-14 16:27:40.777 [info] [command][1d26e7ad-c6dc-4bb6-b788-4688b1ccb19d] Process exited with code 0\n2025-07-14 16:27:40.777 [info] [command][1d26e7ad-c6dc-4bb6-b788-4688b1ccb19d] Socket close event received\n2025-07-14 16:27:40.795 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ec6b1fb9-4b95-478a-93fd-886d6c41bfde] socks connection closed\n2025-07-14 16:27:40.798 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49799 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:28:40.782 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:28:40.783 [info] [command][04c11349-2295-4380-bbe7-cf39df2cc3b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""04c11349-2295-4380-bbe7-cf39df2cc3b7""}\n2025-07-14 16:28:40.784 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][5b00ed5e-91fe-4cb8-94b2-0fc40882acab] received connection request\n2025-07-14 16:28:40.784 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:28:40.801 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5b00ed5e-91fe-4cb8-94b2-0fc40882acab] socks forwarding established\n2025-07-14 16:28:40.831 [info] [command][04c11349-2295-4380-bbe7-cf39df2cc3b7] Process exited with code 0\n2025-07-14 16:28:40.831 [info] [command][04c11349-2295-4380-bbe7-cf39df2cc3b7] Socket close event received\n2025-07-14 16:28:40.849 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49820 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:28:40.850 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5b00ed5e-91fe-4cb8-94b2-0fc40882acab] socks connection closed\n2025-07-14 16:29:40.838 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:29:40.839 [info] [command][30ddc9b2-ba5b-41d7-aa12-b07b3a69d802] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""30ddc9b2-ba5b-41d7-aa12-b07b3a69d802""}\n2025-07-14 16:29:40.840 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][c5784a71-582e-4f47-ab39-de247a3ccde1] received connection request\n2025-07-14 16:29:40.842 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:29:40.882 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c5784a71-582e-4f47-ab39-de247a3ccde1] socks forwarding established\n2025-07-14 16:29:41.046 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c5784a71-582e-4f47-ab39-de247a3ccde1] socks connection closed\n2025-07-14 16:29:41.047 [info] [command][30ddc9b2-ba5b-41d7-aa12-b07b3a69d802] Process exited with code 0\n2025-07-14 16:29:41.047 [info] [command][30ddc9b2-ba5b-41d7-aa12-b07b3a69d802] Socket close event received\n2025-07-14 16:29:41.064 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49840 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:30:41.049 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:30:41.049 [info] [command][75b674f3-dfb5-41bd-bac6-e89928f01d97] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""75b674f3-dfb5-41bd-bac6-e89928f01d97""}\n2025-07-14 16:30:41.049 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][fda996f0-5617-4590-9fda-cceff92f2c7c] received connection request\n2025-07-14 16:30:41.050 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:30:41.067 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fda996f0-5617-4590-9fda-cceff92f2c7c] socks forwarding established\n2025-07-14 16:30:41.097 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fda996f0-5617-4590-9fda-cceff92f2c7c] socks connection closed\n2025-07-14 16:30:41.097 [info] [command][75b674f3-dfb5-41bd-bac6-e89928f01d97] Process exited with code 0\n2025-07-14 16:30:41.097 [info] [command][75b674f3-dfb5-41bd-bac6-e89928f01d97] Socket close event received\n2025-07-14 16:30:41.116 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49868 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:31:41.103 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:31:41.104 [info] [command][915013b5-f071-4fc0-a38c-b5a5fe9db711] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""915013b5-f071-4fc0-a38c-b5a5fe9db711""}\n2025-07-14 16:31:41.104 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][0adea512-6127-48c2-91f6-dbec32f0f4eb] received connection request\n2025-07-14 16:31:41.104 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 16:31:41.104 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:31:41.122 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0adea512-6127-48c2-91f6-dbec32f0f4eb] socks forwarding established\n2025-07-14 16:31:41.156 [info] [command][915013b5-f071-4fc0-a38c-b5a5fe9db711] Process exited with code 0\n2025-07-14 16:31:41.157 [info] [command][915013b5-f071-4fc0-a38c-b5a5fe9db711] Socket close event received\n2025-07-14 16:31:41.157 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0adea512-6127-48c2-91f6-dbec32f0f4eb] socks connection closed\n2025-07-14 16:31:41.176 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49893 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:32:41.162 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:32:41.163 [info] [command][a8028cba-7937-4294-934c-8b5394632286] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a8028cba-7937-4294-934c-8b5394632286""}\n2025-07-14 16:32:41.163 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][60e5c8fe-bf4e-4aac-9cac-019e4efe437c] received connection request\n2025-07-14 16:32:41.164 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 16:32:41.164 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:32:41.181 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][60e5c8fe-bf4e-4aac-9cac-019e4efe437c] socks forwarding established\n2025-07-14 16:32:41.208 [info] [command][a8028cba-7937-4294-934c-8b5394632286] Process exited with code 0\n2025-07-14 16:32:41.208 [info] [command][a8028cba-7937-4294-934c-8b5394632286] Socket close event received\n2025-07-14 16:32:41.208 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][60e5c8fe-bf4e-4aac-9cac-019e4efe437c] socks connection closed\n2025-07-14 16:32:41.226 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49943 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:33:41.210 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:33:41.212 [info] [command][4fd4f3b2-ec61-4edc-8914-22a0e0d84155] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4fd4f3b2-ec61-4edc-8914-22a0e0d84155""}\n2025-07-14 16:33:41.212 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][d0750398-1284-48f5-a2b3-350b774eef0b] received connection request\n2025-07-14 16:33:41.213 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:33:41.231 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d0750398-1284-48f5-a2b3-350b774eef0b] socks forwarding established\n2025-07-14 16:33:41.385 [info] [command][4fd4f3b2-ec61-4edc-8914-22a0e0d84155] Process exited with code 0\n2025-07-14 16:33:41.386 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d0750398-1284-48f5-a2b3-350b774eef0b] socks connection closed\n2025-07-14 16:33:41.386 [info] [command][4fd4f3b2-ec61-4edc-8914-22a0e0d84155] Socket close event received\n2025-07-14 16:33:41.406 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49961 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:34:41.389 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:34:41.390 [info] [command][f08d79a1-bef9-4544-8f59-1955d22c2609] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f08d79a1-bef9-4544-8f59-1955d22c2609""}\n2025-07-14 16:34:41.391 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9b3e32b0-0aa1-42fd-8b47-33cabe45856e] received connection request\n2025-07-14 16:34:41.392 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:34:41.416 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9b3e32b0-0aa1-42fd-8b47-33cabe45856e] socks forwarding established\n2025-07-14 16:34:41.451 [info] [command][f08d79a1-bef9-4544-8f59-1955d22c2609] Process exited with code 0\n2025-07-14 16:34:41.451 [info] [command][f08d79a1-bef9-4544-8f59-1955d22c2609] Socket close event received\n2025-07-14 16:34:41.451 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9b3e32b0-0aa1-42fd-8b47-33cabe45856e] socks connection closed\n2025-07-14 16:34:41.468 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 49994 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:35:41.457 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:35:41.459 [info] [command][821ff766-fe1d-44eb-abb9-2d09bf655f21] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""821ff766-fe1d-44eb-abb9-2d09bf655f21""}\n2025-07-14 16:35:41.460 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][fa9b82b3-d180-48f4-a131-ba3515799751] received connection request\n2025-07-14 16:35:41.460 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:35:41.481 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fa9b82b3-d180-48f4-a131-ba3515799751] socks forwarding established\n2025-07-14 16:35:41.510 [info] [command][821ff766-fe1d-44eb-abb9-2d09bf655f21] Process exited with code 0\n2025-07-14 16:35:41.510 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fa9b82b3-d180-48f4-a131-ba3515799751] socks connection closed\n2025-07-14 16:35:41.510 [info] [command][821ff766-fe1d-44eb-abb9-2d09bf655f21] Socket close event received\n2025-07-14 16:35:41.529 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50042 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:36:41.513 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:36:41.514 [info] [command][57205668-26ed-4fc6-a51e-4488c97795f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""57205668-26ed-4fc6-a51e-4488c97795f4""}\n2025-07-14 16:36:41.514 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f6091f7c-fc5b-4bf8-8a07-cfc3b64f8a0e] received connection request\n2025-07-14 16:36:41.515 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:36:41.532 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f6091f7c-fc5b-4bf8-8a07-cfc3b64f8a0e] socks forwarding established\n2025-07-14 16:36:41.565 [info] [command][57205668-26ed-4fc6-a51e-4488c97795f4] Process exited with code 0\n2025-07-14 16:36:41.565 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f6091f7c-fc5b-4bf8-8a07-cfc3b64f8a0e] socks connection closed\n2025-07-14 16:36:41.565 [info] [command][57205668-26ed-4fc6-a51e-4488c97795f4] Socket close event received\n2025-07-14 16:36:41.582 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50063 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:37:41.571 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:37:41.572 [info] [command][c09164ef-57ca-49c9-a63d-491630fa6a29] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""c09164ef-57ca-49c9-a63d-491630fa6a29""}\n2025-07-14 16:37:41.572 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][a518973e-0d69-469a-aa83-397dc7732ccd] received connection request\n2025-07-14 16:37:41.572 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 16:37:41.572 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:37:41.714 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a518973e-0d69-469a-aa83-397dc7732ccd] socks forwarding established\n2025-07-14 16:37:41.821 [info] [command][c09164ef-57ca-49c9-a63d-491630fa6a29] Process exited with code 0\n2025-07-14 16:37:41.821 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a518973e-0d69-469a-aa83-397dc7732ccd] socks connection closed\n2025-07-14 16:37:41.821 [info] [command][c09164ef-57ca-49c9-a63d-491630fa6a29] Socket close event received\n2025-07-14 16:37:41.838 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50106 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:38:41.822 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:38:41.823 [info] [command][59f03331-c1c2-461d-b06b-8c144c218076] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""59f03331-c1c2-461d-b06b-8c144c218076""}\n2025-07-14 16:38:41.824 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][44bc4d04-0fad-4c21-8e87-d85fb4f83e53] received connection request\n2025-07-14 16:38:41.824 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 16:38:41.824 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:38:41.849 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][44bc4d04-0fad-4c21-8e87-d85fb4f83e53] socks forwarding established\n2025-07-14 16:38:41.881 [info] [command][59f03331-c1c2-461d-b06b-8c144c218076] Process exited with code 0\n2025-07-14 16:38:41.882 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][44bc4d04-0fad-4c21-8e87-d85fb4f83e53] socks connection closed\n2025-07-14 16:38:41.882 [info] [command][59f03331-c1c2-461d-b06b-8c144c218076] Socket close event received\n2025-07-14 16:38:41.980 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50130 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:39:41.884 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:39:41.886 [info] [command][4dfa5d29-6f27-4852-bf37-a096d0e3b980] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4dfa5d29-6f27-4852-bf37-a096d0e3b980""}\n2025-07-14 16:39:41.887 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][bf0fb75e-f076-4948-91c0-76983542e496] received connection request\n2025-07-14 16:39:41.887 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:39:41.906 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][bf0fb75e-f076-4948-91c0-76983542e496] socks forwarding established\n2025-07-14 16:39:41.938 [info] [command][4dfa5d29-6f27-4852-bf37-a096d0e3b980] Process exited with code 0\n2025-07-14 16:39:41.938 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][bf0fb75e-f076-4948-91c0-76983542e496] socks connection closed\n2025-07-14 16:39:41.938 [info] [command][4dfa5d29-6f27-4852-bf37-a096d0e3b980] Socket close event received\n2025-07-14 16:39:41.956 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50145 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:40:41.943 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:40:41.945 [info] [command][5fe1cc77-d22e-4734-8ad9-ddc3d4511476] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""5fe1cc77-d22e-4734-8ad9-ddc3d4511476""}\n2025-07-14 16:40:41.946 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][0201fab1-9b0d-4ebe-8077-5172287af098] received connection request\n2025-07-14 16:40:41.946 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:40:41.965 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0201fab1-9b0d-4ebe-8077-5172287af098] socks forwarding established\n2025-07-14 16:40:41.997 [info] [command][5fe1cc77-d22e-4734-8ad9-ddc3d4511476] Process exited with code 0\n2025-07-14 16:40:41.997 [info] [command][5fe1cc77-d22e-4734-8ad9-ddc3d4511476] Socket close event received\n2025-07-14 16:40:41.998 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0201fab1-9b0d-4ebe-8077-5172287af098] socks connection closed\n2025-07-14 16:40:42.015 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50180 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:41:42.000 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:41:42.003 [info] [command][697f4891-10a6-44dc-9926-dd52746f0eb8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""697f4891-10a6-44dc-9926-dd52746f0eb8""}\n2025-07-14 16:41:42.004 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][881617c8-a37d-4308-a866-7286c7820b61] received connection request\n2025-07-14 16:41:42.005 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:41:42.085 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][881617c8-a37d-4308-a866-7286c7820b61] socks forwarding established\n2025-07-14 16:41:42.159 [info] [command][697f4891-10a6-44dc-9926-dd52746f0eb8] Process exited with code 0\n2025-07-14 16:41:42.159 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][881617c8-a37d-4308-a866-7286c7820b61] socks connection closed\n2025-07-14 16:41:42.159 [info] [command][697f4891-10a6-44dc-9926-dd52746f0eb8] Socket close event received\n2025-07-14 16:41:42.227 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50195 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:42:42.164 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:42:42.164 [info] [command][2304dd3d-2378-4118-a651-705e78305efc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""2304dd3d-2378-4118-a651-705e78305efc""}\n2025-07-14 16:42:42.165 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ea82821a-8b92-4778-99a0-06ea9949da2d] received connection request\n2025-07-14 16:42:42.165 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:42:42.182 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ea82821a-8b92-4778-99a0-06ea9949da2d] socks forwarding established\n2025-07-14 16:42:42.213 [info] [command][2304dd3d-2378-4118-a651-705e78305efc] Process exited with code 0\n2025-07-14 16:42:42.213 [info] [command][2304dd3d-2378-4118-a651-705e78305efc] Socket close event received\n2025-07-14 16:42:42.214 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ea82821a-8b92-4778-99a0-06ea9949da2d] socks connection closed\n2025-07-14 16:42:42.231 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50236 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:43:42.217 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:43:42.219 [info] [command][76136fbd-34f8-46d9-a25e-e1d9623394fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""76136fbd-34f8-46d9-a25e-e1d9623394fa""}\n2025-07-14 16:43:42.219 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][a0c47a68-7b01-43a6-b608-4be744bcfee9] received connection request\n2025-07-14 16:43:42.220 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 16:43:42.220 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:43:42.267 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a0c47a68-7b01-43a6-b608-4be744bcfee9] socks forwarding established\n2025-07-14 16:43:42.333 [info] [command][76136fbd-34f8-46d9-a25e-e1d9623394fa] Process exited with code 0\n2025-07-14 16:43:42.333 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a0c47a68-7b01-43a6-b608-4be744bcfee9] socks connection closed\n2025-07-14 16:43:42.333 [info] [command][76136fbd-34f8-46d9-a25e-e1d9623394fa] Socket close event received\n2025-07-14 16:43:42.351 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50277 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:44:42.339 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:44:42.342 [info] [command][40b1ee1a-2582-452f-b8e5-b6e495941469] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""40b1ee1a-2582-452f-b8e5-b6e495941469""}\n2025-07-14 16:44:42.343 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][cb1d8325-3426-48ce-923e-c27038c371a5] received connection request\n2025-07-14 16:44:42.345 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:44:42.440 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cb1d8325-3426-48ce-923e-c27038c371a5] socks forwarding established\n2025-07-14 16:44:42.475 [info] [command][40b1ee1a-2582-452f-b8e5-b6e495941469] Process exited with code 0\n2025-07-14 16:44:42.476 [info] [command][40b1ee1a-2582-452f-b8e5-b6e495941469] Socket close event received\n2025-07-14 16:44:42.481 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cb1d8325-3426-48ce-923e-c27038c371a5] socks connection closed\n2025-07-14 16:44:42.541 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50313 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:45:42.481 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:45:42.482 [info] [command][e85bfa8d-8f23-4c1c-90b5-4d831765c3f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""e85bfa8d-8f23-4c1c-90b5-4d831765c3f5""}\n2025-07-14 16:45:42.482 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][3a4d6409-31be-4794-b759-a8e0329901f7] received connection request\n2025-07-14 16:45:42.482 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:45:42.500 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3a4d6409-31be-4794-b759-a8e0329901f7] socks forwarding established\n2025-07-14 16:45:42.531 [info] [command][e85bfa8d-8f23-4c1c-90b5-4d831765c3f5] Process exited with code 0\n2025-07-14 16:45:42.531 [info] [command][e85bfa8d-8f23-4c1c-90b5-4d831765c3f5] Socket close event received\n2025-07-14 16:45:42.532 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3a4d6409-31be-4794-b759-a8e0329901f7] socks connection closed\n2025-07-14 16:45:42.553 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50361 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:46:42.538 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:46:42.540 [info] [command][4a82e819-113d-42bf-bd17-ecc79fa9465c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4a82e819-113d-42bf-bd17-ecc79fa9465c""}\n2025-07-14 16:46:42.541 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9e157aa5-f3e5-4bb0-bf95-d41cf203a44c] received connection request\n2025-07-14 16:46:42.542 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:46:42.564 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9e157aa5-f3e5-4bb0-bf95-d41cf203a44c] socks forwarding established\n2025-07-14 16:46:42.598 [info] [command][4a82e819-113d-42bf-bd17-ecc79fa9465c] Process exited with code 0\n2025-07-14 16:46:42.598 [info] [command][4a82e819-113d-42bf-bd17-ecc79fa9465c] Socket close event received\n2025-07-14 16:46:42.599 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9e157aa5-f3e5-4bb0-bf95-d41cf203a44c] socks connection closed\n2025-07-14 16:46:42.617 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50377 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:47:42.604 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:47:42.606 [info] [command][8637d58b-fdf6-41c0-8301-a77a44b816aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""8637d58b-fdf6-41c0-8301-a77a44b816aa""}\n2025-07-14 16:47:42.607 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e682eac9-2128-4f4f-acf5-98f9cbaa7254] received connection request\n2025-07-14 16:47:42.608 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:47:42.652 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e682eac9-2128-4f4f-acf5-98f9cbaa7254] socks forwarding established\n2025-07-14 16:47:42.812 [info] [command][8637d58b-fdf6-41c0-8301-a77a44b816aa] Process exited with code 0\n2025-07-14 16:47:42.812 [info] [command][8637d58b-fdf6-41c0-8301-a77a44b816aa] Socket close event received\n2025-07-14 16:47:42.814 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e682eac9-2128-4f4f-acf5-98f9cbaa7254] socks connection closed\n2025-07-14 16:47:42.840 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50412 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:48:42.817 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:48:42.820 [info] [command][d4e4e25d-c812-4556-8da9-4c9a1a172441] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d4e4e25d-c812-4556-8da9-4c9a1a172441""}\n2025-07-14 16:48:42.821 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][5c14f552-66c9-4c4f-aec2-f02162282767] received connection request\n2025-07-14 16:48:42.821 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:48:42.843 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5c14f552-66c9-4c4f-aec2-f02162282767] socks forwarding established\n2025-07-14 16:48:42.876 [info] [command][d4e4e25d-c812-4556-8da9-4c9a1a172441] Process exited with code 0\n2025-07-14 16:48:42.876 [info] [command][d4e4e25d-c812-4556-8da9-4c9a1a172441] Socket close event received\n2025-07-14 16:48:42.882 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5c14f552-66c9-4c4f-aec2-f02162282767] socks connection closed\n2025-07-14 16:48:42.906 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50438 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:49:42.882 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:49:42.884 [info] [command][1e0d836e-ded4-4612-80b6-b3a282a8ab91] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1e0d836e-ded4-4612-80b6-b3a282a8ab91""}\n2025-07-14 16:49:42.885 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][548543a3-f899-46a5-ae57-8a4b4bc2e418] received connection request\n2025-07-14 16:49:42.886 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:49:42.904 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][548543a3-f899-46a5-ae57-8a4b4bc2e418] socks forwarding established\n2025-07-14 16:49:42.937 [info] [command][1e0d836e-ded4-4612-80b6-b3a282a8ab91] Process exited with code 0\n2025-07-14 16:49:42.937 [info] [command][1e0d836e-ded4-4612-80b6-b3a282a8ab91] Socket close event received\n2025-07-14 16:49:42.938 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][548543a3-f899-46a5-ae57-8a4b4bc2e418] socks connection closed\n2025-07-14 16:49:42.957 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50459 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:50:42.941 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:50:42.941 [info] [command][6232d92a-0dd8-4967-8715-59ba1d30762d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""6232d92a-0dd8-4967-8715-59ba1d30762d""}\n2025-07-14 16:50:42.942 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][53e9724a-9f83-4caa-96a9-f74e75ea9a5b] received connection request\n2025-07-14 16:50:42.942 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 16:50:42.942 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:50:42.961 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][53e9724a-9f83-4caa-96a9-f74e75ea9a5b] socks forwarding established\n2025-07-14 16:50:43.028 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][53e9724a-9f83-4caa-96a9-f74e75ea9a5b] socks connection closed\n2025-07-14 16:50:43.028 [info] [command][6232d92a-0dd8-4967-8715-59ba1d30762d] Process exited with code 0\n2025-07-14 16:50:43.028 [info] [command][6232d92a-0dd8-4967-8715-59ba1d30762d] Socket close event received\n2025-07-14 16:50:43.054 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50487 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:51:43.035 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:51:43.036 [info] [command][27352cbe-5b68-4ca3-bd3a-3bcf3af36977] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""27352cbe-5b68-4ca3-bd3a-3bcf3af36977""}\n2025-07-14 16:51:43.037 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][b53ff761-f436-4778-8cdb-0d24faee92c4] received connection request\n2025-07-14 16:51:43.037 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:51:43.056 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b53ff761-f436-4778-8cdb-0d24faee92c4] socks forwarding established\n2025-07-14 16:51:43.088 [info] [command][27352cbe-5b68-4ca3-bd3a-3bcf3af36977] Process exited with code 0\n2025-07-14 16:51:43.088 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b53ff761-f436-4778-8cdb-0d24faee92c4] socks connection closed\n2025-07-14 16:51:43.088 [info] [command][27352cbe-5b68-4ca3-bd3a-3bcf3af36977] Socket close event received\n2025-07-14 16:51:43.123 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50504 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:52:43.093 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:52:43.094 [info] [command][f15bd6ad-1c89-4e74-8ee6-67b6ad39674f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f15bd6ad-1c89-4e74-8ee6-67b6ad39674f""}\n2025-07-14 16:52:43.095 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e64a541e-eb8e-44e0-9897-c2fbcca1d011] received connection request\n2025-07-14 16:52:43.096 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 16:52:43.097 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:52:43.126 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e64a541e-eb8e-44e0-9897-c2fbcca1d011] socks forwarding established\n2025-07-14 16:52:43.257 [info] [command][f15bd6ad-1c89-4e74-8ee6-67b6ad39674f] Process exited with code 0\n2025-07-14 16:52:43.258 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e64a541e-eb8e-44e0-9897-c2fbcca1d011] socks connection closed\n2025-07-14 16:52:43.258 [info] [command][f15bd6ad-1c89-4e74-8ee6-67b6ad39674f] Socket close event received\n2025-07-14 16:52:43.275 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50534 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:53:43.264 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:53:43.265 [info] [command][841d47a5-3f89-4625-9f85-e5b89a734e8c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""841d47a5-3f89-4625-9f85-e5b89a734e8c""}\n2025-07-14 16:53:43.265 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f7bfbb58-6806-4c2f-9059-51b457f9f5ea] received connection request\n2025-07-14 16:53:43.266 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:53:43.283 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f7bfbb58-6806-4c2f-9059-51b457f9f5ea] socks forwarding established\n2025-07-14 16:53:43.315 [info] [command][841d47a5-3f89-4625-9f85-e5b89a734e8c] Process exited with code 0\n2025-07-14 16:53:43.315 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f7bfbb58-6806-4c2f-9059-51b457f9f5ea] socks connection closed\n2025-07-14 16:53:43.315 [info] [command][841d47a5-3f89-4625-9f85-e5b89a734e8c] Socket close event received\n2025-07-14 16:53:43.333 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50562 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:54:43.321 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:54:43.322 [info] [command][66952b71-78fa-422d-b800-4446e6a2d29f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""66952b71-78fa-422d-b800-4446e6a2d29f""}\n2025-07-14 16:54:43.323 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ed2e1f86-f2dc-4ae2-8fa0-73e6c2101506] received connection request\n2025-07-14 16:54:43.323 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:54:43.341 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ed2e1f86-f2dc-4ae2-8fa0-73e6c2101506] socks forwarding established\n2025-07-14 16:54:43.372 [info] [command][66952b71-78fa-422d-b800-4446e6a2d29f] Process exited with code 0\n2025-07-14 16:54:43.372 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ed2e1f86-f2dc-4ae2-8fa0-73e6c2101506] socks connection closed\n2025-07-14 16:54:43.372 [info] [command][66952b71-78fa-422d-b800-4446e6a2d29f] Socket close event received\n2025-07-14 16:54:43.391 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50579 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:55:43.376 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:55:43.377 [info] [command][72f669f1-c848-46ec-8b61-24f6f753257b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""72f669f1-c848-46ec-8b61-24f6f753257b""}\n2025-07-14 16:55:43.378 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][bde26e62-a27e-41c0-ab6f-5f9a5657bf39] received connection request\n2025-07-14 16:55:43.379 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:55:43.398 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][bde26e62-a27e-41c0-ab6f-5f9a5657bf39] socks forwarding established\n2025-07-14 16:55:43.431 [info] [command][72f669f1-c848-46ec-8b61-24f6f753257b] Process exited with code 0\n2025-07-14 16:55:43.432 [info] [command][72f669f1-c848-46ec-8b61-24f6f753257b] Socket close event received\n2025-07-14 16:55:43.433 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][bde26e62-a27e-41c0-ab6f-5f9a5657bf39] socks connection closed\n2025-07-14 16:55:43.452 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50607 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:56:43.434 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:56:43.435 [info] [command][d2616b85-ab0f-4d5d-8eec-40bbd5837387] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d2616b85-ab0f-4d5d-8eec-40bbd5837387""}\n2025-07-14 16:56:43.435 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][3c4a028a-a4c3-49e1-97f0-ad61a196208e] received connection request\n2025-07-14 16:56:43.436 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:56:43.536 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3c4a028a-a4c3-49e1-97f0-ad61a196208e] socks forwarding established\n2025-07-14 16:56:43.689 [info] [command][d2616b85-ab0f-4d5d-8eec-40bbd5837387] Process exited with code 0\n2025-07-14 16:56:43.689 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][3c4a028a-a4c3-49e1-97f0-ad61a196208e] socks connection closed\n2025-07-14 16:56:43.689 [info] [command][d2616b85-ab0f-4d5d-8eec-40bbd5837387] Socket close event received\n2025-07-14 16:56:43.706 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50624 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:57:43.696 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:57:43.697 [info] [command][dc1a9ebe-c554-47f1-8eaa-950635deae66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""dc1a9ebe-c554-47f1-8eaa-950635deae66""}\n2025-07-14 16:57:43.697 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][b235ebc7-489d-47f4-b8bb-dcddc3b5e2a6] received connection request\n2025-07-14 16:57:43.698 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:57:43.716 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b235ebc7-489d-47f4-b8bb-dcddc3b5e2a6] socks forwarding established\n2025-07-14 16:57:43.751 [info] [command][dc1a9ebe-c554-47f1-8eaa-950635deae66] Process exited with code 0\n2025-07-14 16:57:43.752 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b235ebc7-489d-47f4-b8bb-dcddc3b5e2a6] socks connection closed\n2025-07-14 16:57:43.752 [info] [command][dc1a9ebe-c554-47f1-8eaa-950635deae66] Socket close event received\n2025-07-14 16:57:43.771 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50659 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:58:43.758 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:58:43.759 [info] [command][b27a35f2-7e3e-4f5d-98ed-dc4f73aa4e4a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b27a35f2-7e3e-4f5d-98ed-dc4f73aa4e4a""}\n2025-07-14 16:58:43.760 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][1852cd5e-54f8-4c08-bb39-36f47ee6be84] received connection request\n2025-07-14 16:58:43.761 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:58:43.787 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1852cd5e-54f8-4c08-bb39-36f47ee6be84] socks forwarding established\n2025-07-14 16:58:43.819 [info] [command][b27a35f2-7e3e-4f5d-98ed-dc4f73aa4e4a] Process exited with code 0\n2025-07-14 16:58:43.819 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1852cd5e-54f8-4c08-bb39-36f47ee6be84] socks connection closed\n2025-07-14 16:58:43.819 [info] [command][b27a35f2-7e3e-4f5d-98ed-dc4f73aa4e4a] Socket close event received\n2025-07-14 16:58:43.838 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50678 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 16:59:43.824 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 16:59:43.826 [info] [command][c165bfa1-b076-4de7-a563-3a3f7243f92c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""c165bfa1-b076-4de7-a563-3a3f7243f92c""}\n2025-07-14 16:59:43.826 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][0ee48869-601c-4c07-b4aa-ae287d2d1867] received connection request\n2025-07-14 16:59:43.827 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 16:59:43.847 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0ee48869-601c-4c07-b4aa-ae287d2d1867] socks forwarding established\n2025-07-14 16:59:43.886 [info] [command][c165bfa1-b076-4de7-a563-3a3f7243f92c] Process exited with code 0\n2025-07-14 16:59:43.886 [info] [command][c165bfa1-b076-4de7-a563-3a3f7243f92c] Socket close event received\n2025-07-14 16:59:43.888 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0ee48869-601c-4c07-b4aa-ae287d2d1867] socks connection closed\n2025-07-14 16:59:43.907 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50718 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:00:43.892 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:00:43.894 [info] [command][316ff941-7d13-43b2-a767-60429928d4d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""316ff941-7d13-43b2-a767-60429928d4d2""}\n2025-07-14 17:00:43.895 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6a88ed07-c71a-4d08-b70c-1cbcea9552d1] received connection request\n2025-07-14 17:00:43.895 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:00:44.024 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6a88ed07-c71a-4d08-b70c-1cbcea9552d1] socks forwarding established\n2025-07-14 17:00:44.195 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6a88ed07-c71a-4d08-b70c-1cbcea9552d1] socks connection closed\n2025-07-14 17:00:44.195 [info] [command][316ff941-7d13-43b2-a767-60429928d4d2] Process exited with code 0\n2025-07-14 17:00:44.195 [info] [command][316ff941-7d13-43b2-a767-60429928d4d2] Socket close event received\n2025-07-14 17:00:44.211 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50774 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:01:44.200 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:01:44.201 [info] [command][fa3cd39b-8e93-41eb-8749-8224b666bb21] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""fa3cd39b-8e93-41eb-8749-8224b666bb21""}\n2025-07-14 17:01:44.202 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][821252da-71a6-47b6-9b80-d625c5b0474d] received connection request\n2025-07-14 17:01:44.202 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:01:44.220 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][821252da-71a6-47b6-9b80-d625c5b0474d] socks forwarding established\n2025-07-14 17:01:44.252 [info] [command][fa3cd39b-8e93-41eb-8749-8224b666bb21] Process exited with code 0\n2025-07-14 17:01:44.252 [info] [command][fa3cd39b-8e93-41eb-8749-8224b666bb21] Socket close event received\n2025-07-14 17:01:44.253 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][821252da-71a6-47b6-9b80-d625c5b0474d] socks connection closed\n2025-07-14 17:01:44.271 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50798 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:02:44.256 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:02:44.257 [info] [command][b631f6dd-31ab-402e-8420-dce486938e2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b631f6dd-31ab-402e-8420-dce486938e2e""}\n2025-07-14 17:02:44.258 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][2eb3d22b-51e2-407d-9e19-e6f827ab77fb] received connection request\n2025-07-14 17:02:44.258 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:02:44.276 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2eb3d22b-51e2-407d-9e19-e6f827ab77fb] socks forwarding established\n2025-07-14 17:02:44.313 [info] [command][b631f6dd-31ab-402e-8420-dce486938e2e] Process exited with code 0\n2025-07-14 17:02:44.314 [info] [command][b631f6dd-31ab-402e-8420-dce486938e2e] Socket close event received\n2025-07-14 17:02:44.314 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2eb3d22b-51e2-407d-9e19-e6f827ab77fb] socks connection closed\n2025-07-14 17:02:44.333 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50836 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:03:44.320 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:03:44.321 [info] [command][3f20c416-d012-434a-a208-80a9af2a6eb6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""3f20c416-d012-434a-a208-80a9af2a6eb6""}\n2025-07-14 17:03:44.322 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][18ff0834-091d-4613-9583-6c785caa1efc] received connection request\n2025-07-14 17:03:44.322 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:03:44.369 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][18ff0834-091d-4613-9583-6c785caa1efc] socks forwarding established\n2025-07-14 17:03:44.404 [info] [command][3f20c416-d012-434a-a208-80a9af2a6eb6] Process exited with code 0\n2025-07-14 17:03:44.406 [info] [command][3f20c416-d012-434a-a208-80a9af2a6eb6] Socket close event received\n2025-07-14 17:03:44.408 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][18ff0834-091d-4613-9583-6c785caa1efc] socks connection closed\n2025-07-14 17:03:44.427 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50871 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:04:44.410 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:04:44.411 [info] [command][8bacf535-a004-43e5-b452-0d7414cdb5d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""8bacf535-a004-43e5-b452-0d7414cdb5d6""}\n2025-07-14 17:04:44.411 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][156b153e-7ce4-431d-8cb4-7dfee80ab017] received connection request\n2025-07-14 17:04:44.411 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 17:04:44.411 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:04:44.429 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][156b153e-7ce4-431d-8cb4-7dfee80ab017] socks forwarding established\n2025-07-14 17:04:44.460 [info] [command][8bacf535-a004-43e5-b452-0d7414cdb5d6] Process exited with code 0\n2025-07-14 17:04:44.460 [info] [command][8bacf535-a004-43e5-b452-0d7414cdb5d6] Socket close event received\n2025-07-14 17:04:44.461 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][156b153e-7ce4-431d-8cb4-7dfee80ab017] socks connection closed\n2025-07-14 17:04:44.478 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50912 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:05:44.463 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:05:44.464 [info] [command][67cb0c96-7cef-4498-b9b5-bd0a3d2cbf29] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""67cb0c96-7cef-4498-b9b5-bd0a3d2cbf29""}\n2025-07-14 17:05:44.465 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][1afad27d-1343-4df1-bd2d-f60b0f0dd2f1] received connection request\n2025-07-14 17:05:44.465 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:05:44.482 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1afad27d-1343-4df1-bd2d-f60b0f0dd2f1] socks forwarding established\n2025-07-14 17:05:44.512 [info] [command][67cb0c96-7cef-4498-b9b5-bd0a3d2cbf29] Process exited with code 0\n2025-07-14 17:05:44.512 [info] [command][67cb0c96-7cef-4498-b9b5-bd0a3d2cbf29] Socket close event received\n2025-07-14 17:05:44.513 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1afad27d-1343-4df1-bd2d-f60b0f0dd2f1] socks connection closed\n2025-07-14 17:05:44.530 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50955 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:06:44.515 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:06:44.519 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][58ef1d75-70af-4111-b6b5-06eea109e9ec] received connection request\n2025-07-14 17:06:44.520 [info] [command][9580d68f-2db6-4040-9ddd-3fb3b0d4fabf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""9580d68f-2db6-4040-9ddd-3fb3b0d4fabf""}\n2025-07-14 17:06:44.526 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:06:44.545 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][58ef1d75-70af-4111-b6b5-06eea109e9ec] socks forwarding established\n2025-07-14 17:06:44.690 [info] [command][9580d68f-2db6-4040-9ddd-3fb3b0d4fabf] Process exited with code 0\n2025-07-14 17:06:44.690 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][58ef1d75-70af-4111-b6b5-06eea109e9ec] socks connection closed\n2025-07-14 17:06:44.690 [info] [command][9580d68f-2db6-4040-9ddd-3fb3b0d4fabf] Socket close event received\n2025-07-14 17:06:44.707 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 50984 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:07:44.697 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:07:44.698 [info] [command][edc06a56-b8ab-4367-aca7-0b0cbc960345] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""edc06a56-b8ab-4367-aca7-0b0cbc960345""}\n2025-07-14 17:07:44.698 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][411d8936-4498-43b2-b809-02ed0bd20f45] received connection request\n2025-07-14 17:07:44.699 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:07:44.720 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][411d8936-4498-43b2-b809-02ed0bd20f45] socks forwarding established\n2025-07-14 17:07:44.751 [info] [command][edc06a56-b8ab-4367-aca7-0b0cbc960345] Process exited with code 0\n2025-07-14 17:07:44.751 [info] [command][edc06a56-b8ab-4367-aca7-0b0cbc960345] Socket close event received\n2025-07-14 17:07:44.751 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][411d8936-4498-43b2-b809-02ed0bd20f45] socks connection closed\n2025-07-14 17:07:44.770 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51019 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:08:44.757 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:08:44.758 [info] [command][580bc7cc-7394-4377-81e8-a855d37eefad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""580bc7cc-7394-4377-81e8-a855d37eefad""}\n2025-07-14 17:08:44.759 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][0fbed844-2652-4f57-b6c7-0d3df5512640] received connection request\n2025-07-14 17:08:44.759 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:08:44.778 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0fbed844-2652-4f57-b6c7-0d3df5512640] socks forwarding established\n2025-07-14 17:08:44.811 [info] [command][580bc7cc-7394-4377-81e8-a855d37eefad] Process exited with code 0\n2025-07-14 17:08:44.811 [info] [command][580bc7cc-7394-4377-81e8-a855d37eefad] Socket close event received\n2025-07-14 17:08:44.811 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][0fbed844-2652-4f57-b6c7-0d3df5512640] socks connection closed\n2025-07-14 17:08:44.829 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51032 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:09:44.815 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:09:44.817 [info] [command][82f6b676-9f3c-454b-8aca-ca51dc9b587a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""82f6b676-9f3c-454b-8aca-ca51dc9b587a""}\n2025-07-14 17:09:44.818 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][4194d2e1-f005-4506-8922-7407f8c56e2b] received connection request\n2025-07-14 17:09:44.819 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:09:44.838 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4194d2e1-f005-4506-8922-7407f8c56e2b] socks forwarding established\n2025-07-14 17:09:44.869 [info] [command][82f6b676-9f3c-454b-8aca-ca51dc9b587a] Process exited with code 0\n2025-07-14 17:09:44.870 [info] [command][82f6b676-9f3c-454b-8aca-ca51dc9b587a] Socket close event received\n2025-07-14 17:09:44.871 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4194d2e1-f005-4506-8922-7407f8c56e2b] socks connection closed\n2025-07-14 17:09:44.888 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51047 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:10:44.876 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:10:44.877 [info] [command][c874ff11-740c-42e9-a210-e1eca90c4d41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""c874ff11-740c-42e9-a210-e1eca90c4d41""}\n2025-07-14 17:10:44.878 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][c9f6ed51-4fc4-4c51-8172-ac821442ed29] received connection request\n2025-07-14 17:10:44.878 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:10:44.904 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c9f6ed51-4fc4-4c51-8172-ac821442ed29] socks forwarding established\n2025-07-14 17:10:44.935 [info] [command][c874ff11-740c-42e9-a210-e1eca90c4d41] Process exited with code 0\n2025-07-14 17:10:44.935 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c9f6ed51-4fc4-4c51-8172-ac821442ed29] socks connection closed\n2025-07-14 17:10:44.935 [info] [command][c874ff11-740c-42e9-a210-e1eca90c4d41] Socket close event received\n2025-07-14 17:10:44.952 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51092 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:11:44.941 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:11:44.943 [info] [command][89591e5f-119f-4aae-a7d1-537caa263746] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""89591e5f-119f-4aae-a7d1-537caa263746""}\n2025-07-14 17:11:44.943 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][57ed23cf-0a97-45d7-9691-88e7121ee767] received connection request\n2025-07-14 17:11:44.945 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:11:45.106 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][57ed23cf-0a97-45d7-9691-88e7121ee767] socks forwarding established\n2025-07-14 17:11:45.169 [info] [command][89591e5f-119f-4aae-a7d1-537caa263746] Process exited with code 0\n2025-07-14 17:11:45.169 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][57ed23cf-0a97-45d7-9691-88e7121ee767] socks connection closed\n2025-07-14 17:11:45.169 [info] [command][89591e5f-119f-4aae-a7d1-537caa263746] Socket close event received\n2025-07-14 17:11:45.266 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51110 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:12:45.175 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:12:45.176 [info] [command][6ef0aa5c-53c1-4183-8e96-d79ccdf7661b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""6ef0aa5c-53c1-4183-8e96-d79ccdf7661b""}\n2025-07-14 17:12:45.176 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][06ac9ad0-e58a-43c6-bfb4-3f7891a14443] received connection request\n2025-07-14 17:12:45.177 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:12:45.194 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][06ac9ad0-e58a-43c6-bfb4-3f7891a14443] socks forwarding established\n2025-07-14 17:12:45.225 [info] [command][6ef0aa5c-53c1-4183-8e96-d79ccdf7661b] Process exited with code 0\n2025-07-14 17:12:45.225 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][06ac9ad0-e58a-43c6-bfb4-3f7891a14443] socks connection closed\n2025-07-14 17:12:45.226 [info] [command][6ef0aa5c-53c1-4183-8e96-d79ccdf7661b] Socket close event received\n2025-07-14 17:12:45.243 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51138 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:13:45.232 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:13:45.234 [info] [command][334be405-fe80-49d3-82ef-69ac924b9874] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""334be405-fe80-49d3-82ef-69ac924b9874""}\n2025-07-14 17:13:45.235 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][b08fce83-66ad-4684-978a-7ca05559bb70] received connection request\n2025-07-14 17:13:45.237 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:13:45.257 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b08fce83-66ad-4684-978a-7ca05559bb70] socks forwarding established\n2025-07-14 17:13:45.291 [info] [command][334be405-fe80-49d3-82ef-69ac924b9874] Process exited with code 0\n2025-07-14 17:13:45.292 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b08fce83-66ad-4684-978a-7ca05559bb70] socks connection closed\n2025-07-14 17:13:45.292 [info] [command][334be405-fe80-49d3-82ef-69ac924b9874] Socket close event received\n2025-07-14 17:13:45.310 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51158 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:14:45.298 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:14:45.300 [info] [command][6e7b86cf-a6f2-48b2-8fa2-701877e7312f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""6e7b86cf-a6f2-48b2-8fa2-701877e7312f""}\n2025-07-14 17:14:45.300 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9caf8a47-3f1a-4beb-90a4-650496f7f58b] received connection request\n2025-07-14 17:14:45.301 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:14:45.320 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9caf8a47-3f1a-4beb-90a4-650496f7f58b] socks forwarding established\n2025-07-14 17:14:45.354 [info] [command][6e7b86cf-a6f2-48b2-8fa2-701877e7312f] Process exited with code 0\n2025-07-14 17:14:45.354 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9caf8a47-3f1a-4beb-90a4-650496f7f58b] socks connection closed\n2025-07-14 17:14:45.354 [info] [command][6e7b86cf-a6f2-48b2-8fa2-701877e7312f] Socket close event received\n2025-07-14 17:14:45.371 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51177 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:15:45.360 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:15:45.363 [info] [command][eb5c58cf-601c-4ebb-a2fc-dbef21ad80cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""eb5c58cf-601c-4ebb-a2fc-dbef21ad80cd""}\n2025-07-14 17:15:45.364 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][c5615f02-22e5-4f17-b9bd-571552c82d79] received connection request\n2025-07-14 17:15:45.365 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:15:45.491 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c5615f02-22e5-4f17-b9bd-571552c82d79] socks forwarding established\n2025-07-14 17:15:45.617 [info] [command][eb5c58cf-601c-4ebb-a2fc-dbef21ad80cd] Process exited with code 0\n2025-07-14 17:15:45.617 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c5615f02-22e5-4f17-b9bd-571552c82d79] socks connection closed\n2025-07-14 17:15:45.617 [info] [command][eb5c58cf-601c-4ebb-a2fc-dbef21ad80cd] Socket close event received\n2025-07-14 17:15:45.637 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51215 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:16:45.623 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:16:45.625 [info] [command][4e83baee-82df-49c3-b24a-5c04e1d39f23] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4e83baee-82df-49c3-b24a-5c04e1d39f23""}\n2025-07-14 17:16:45.626 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][c488dfaa-5635-4c16-a18f-74117a6051c4] received connection request\n2025-07-14 17:16:45.626 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:16:45.648 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c488dfaa-5635-4c16-a18f-74117a6051c4] socks forwarding established\n2025-07-14 17:16:45.678 [info] [command][4e83baee-82df-49c3-b24a-5c04e1d39f23] Process exited with code 0\n2025-07-14 17:16:45.679 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c488dfaa-5635-4c16-a18f-74117a6051c4] socks connection closed\n2025-07-14 17:16:45.679 [info] [command][4e83baee-82df-49c3-b24a-5c04e1d39f23] Socket close event received\n2025-07-14 17:16:45.697 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51238 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:17:45.686 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:17:45.687 [info] [command][fff22f94-5087-4c86-8a37-1fde736e8a86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""fff22f94-5087-4c86-8a37-1fde736e8a86""}\n2025-07-14 17:17:45.688 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][b227e4e4-3f71-42f5-9eff-dc94d1781cc1] received connection request\n2025-07-14 17:17:45.689 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:17:45.707 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b227e4e4-3f71-42f5-9eff-dc94d1781cc1] socks forwarding established\n2025-07-14 17:17:45.745 [info] [command][fff22f94-5087-4c86-8a37-1fde736e8a86] Process exited with code 0\n2025-07-14 17:17:45.746 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b227e4e4-3f71-42f5-9eff-dc94d1781cc1] socks connection closed\n2025-07-14 17:17:45.746 [info] [command][fff22f94-5087-4c86-8a37-1fde736e8a86] Socket close event received\n2025-07-14 17:17:45.764 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51286 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:18:45.752 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:18:45.754 [info] [command][05d6dd02-8e8e-4331-8298-3e0d6bad4d60] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""05d6dd02-8e8e-4331-8298-3e0d6bad4d60""}\n2025-07-14 17:18:45.755 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][afafc5bf-9ade-4b7d-8611-6397f65eb6ee] received connection request\n2025-07-14 17:18:45.755 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:18:45.774 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][afafc5bf-9ade-4b7d-8611-6397f65eb6ee] socks forwarding established\n2025-07-14 17:18:45.806 [info] [command][05d6dd02-8e8e-4331-8298-3e0d6bad4d60] Process exited with code 0\n2025-07-14 17:18:45.807 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][afafc5bf-9ade-4b7d-8611-6397f65eb6ee] socks connection closed\n2025-07-14 17:18:45.807 [info] [command][05d6dd02-8e8e-4331-8298-3e0d6bad4d60] Socket close event received\n2025-07-14 17:18:45.825 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51305 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:19:45.809 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:19:45.811 [info] [command][70eb9e99-7848-487a-a009-b294c051a958] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""70eb9e99-7848-487a-a009-b294c051a958""}\n2025-07-14 17:19:45.811 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f86d8cc8-14cc-4a4a-88da-cb03279bb735] received connection request\n2025-07-14 17:19:45.812 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:19:45.830 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f86d8cc8-14cc-4a4a-88da-cb03279bb735] socks forwarding established\n2025-07-14 17:19:45.863 [info] [command][70eb9e99-7848-487a-a009-b294c051a958] Process exited with code 0\n2025-07-14 17:19:45.864 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f86d8cc8-14cc-4a4a-88da-cb03279bb735] socks connection closed\n2025-07-14 17:19:45.864 [info] [command][70eb9e99-7848-487a-a009-b294c051a958] Socket close event received\n2025-07-14 17:19:45.881 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51325 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:20:45.871 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:20:45.873 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9e373104-7e96-4eb6-b200-4352e6307a1f] received connection request\n2025-07-14 17:20:45.873 [info] [command][5ae5405c-cd52-4983-8f6f-3fab25ac99c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""5ae5405c-cd52-4983-8f6f-3fab25ac99c0""}\n2025-07-14 17:20:45.873 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 17:20:45.873 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:20:45.895 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9e373104-7e96-4eb6-b200-4352e6307a1f] socks forwarding established\n2025-07-14 17:20:46.028 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9e373104-7e96-4eb6-b200-4352e6307a1f] socks connection closed\n2025-07-14 17:20:46.029 [info] [command][5ae5405c-cd52-4983-8f6f-3fab25ac99c0] Process exited with code 0\n2025-07-14 17:20:46.029 [info] [command][5ae5405c-cd52-4983-8f6f-3fab25ac99c0] Socket close event received\n2025-07-14 17:20:46.046 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51361 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:21:46.034 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:21:46.035 [info] [command][1c9407ce-09eb-43e7-bf7a-4c765522ef3f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1c9407ce-09eb-43e7-bf7a-4c765522ef3f""}\n2025-07-14 17:21:46.035 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][7d0f088e-aa18-4eea-91de-3820e0613257] received connection request\n2025-07-14 17:21:46.035 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:21:46.053 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7d0f088e-aa18-4eea-91de-3820e0613257] socks forwarding established\n2025-07-14 17:21:46.086 [info] [command][1c9407ce-09eb-43e7-bf7a-4c765522ef3f] Process exited with code 0\n2025-07-14 17:21:46.086 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7d0f088e-aa18-4eea-91de-3820e0613257] socks connection closed\n2025-07-14 17:21:46.086 [info] [command][1c9407ce-09eb-43e7-bf7a-4c765522ef3f] Socket close event received\n2025-07-14 17:21:46.104 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51376 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:22:46.088 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:22:46.090 [info] [command][10663116-1ff1-4edb-b5c6-b4db3b383aa8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""10663116-1ff1-4edb-b5c6-b4db3b383aa8""}\n2025-07-14 17:22:46.091 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][aa600c88-26fa-4819-94f9-d55879753c26] received connection request\n2025-07-14 17:22:46.092 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:22:46.112 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][aa600c88-26fa-4819-94f9-d55879753c26] socks forwarding established\n2025-07-14 17:22:46.215 [info] [command][10663116-1ff1-4edb-b5c6-b4db3b383aa8] Process exited with code 0\n2025-07-14 17:22:46.216 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][aa600c88-26fa-4819-94f9-d55879753c26] socks connection closed\n2025-07-14 17:22:46.216 [info] [command][10663116-1ff1-4edb-b5c6-b4db3b383aa8] Socket close event received\n2025-07-14 17:22:46.238 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51410 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:23:46.222 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:23:46.224 [info] [command][1ee05ca1-abef-4ad8-8b9d-ee98e4f5a550] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1ee05ca1-abef-4ad8-8b9d-ee98e4f5a550""}\n2025-07-14 17:23:46.225 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][b3049013-b427-4d11-8cf8-fe7979d69811] received connection request\n2025-07-14 17:23:46.226 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:23:46.282 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b3049013-b427-4d11-8cf8-fe7979d69811] socks forwarding established\n2025-07-14 17:23:46.313 [info] [command][1ee05ca1-abef-4ad8-8b9d-ee98e4f5a550] Process exited with code 0\n2025-07-14 17:23:46.313 [info] [command][1ee05ca1-abef-4ad8-8b9d-ee98e4f5a550] Socket close event received\n2025-07-14 17:23:46.314 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b3049013-b427-4d11-8cf8-fe7979d69811] socks connection closed\n2025-07-14 17:23:46.331 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51449 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:24:46.315 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:24:46.317 [info] [command][7314c433-573f-45f0-9f81-15fd67ca8716] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""7314c433-573f-45f0-9f81-15fd67ca8716""}\n2025-07-14 17:24:46.318 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][10dcadf3-18eb-493a-b5ef-11b4eee1fd17] received connection request\n2025-07-14 17:24:46.319 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:24:46.341 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][10dcadf3-18eb-493a-b5ef-11b4eee1fd17] socks forwarding established\n2025-07-14 17:24:46.378 [info] [command][7314c433-573f-45f0-9f81-15fd67ca8716] Process exited with code 0\n2025-07-14 17:24:46.379 [info] [command][7314c433-573f-45f0-9f81-15fd67ca8716] Socket close event received\n2025-07-14 17:24:46.380 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][10dcadf3-18eb-493a-b5ef-11b4eee1fd17] socks connection closed\n2025-07-14 17:24:46.401 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51471 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:25:46.385 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:25:46.387 [info] [command][5f210035-a513-4566-81a4-cb0d004ce84f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""5f210035-a513-4566-81a4-cb0d004ce84f""}\n2025-07-14 17:25:46.387 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][84386a38-c423-4a1f-9a43-7c1ae23c911a] received connection request\n2025-07-14 17:25:46.388 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:25:46.408 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][84386a38-c423-4a1f-9a43-7c1ae23c911a] socks forwarding established\n2025-07-14 17:25:46.447 [info] [command][5f210035-a513-4566-81a4-cb0d004ce84f] Process exited with code 0\n2025-07-14 17:25:46.447 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][84386a38-c423-4a1f-9a43-7c1ae23c911a] socks connection closed\n2025-07-14 17:25:46.447 [info] [command][5f210035-a513-4566-81a4-cb0d004ce84f] Socket close event received\n2025-07-14 17:25:46.466 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51502 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:26:46.450 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:26:46.451 [info] [command][82348748-0813-4213-a7a1-d6435d87766e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""82348748-0813-4213-a7a1-d6435d87766e""}\n2025-07-14 17:26:46.451 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][be3eaeac-8419-4fe2-8cb8-8bf0dc851462] received connection request\n2025-07-14 17:26:46.451 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:26:46.475 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][be3eaeac-8419-4fe2-8cb8-8bf0dc851462] socks forwarding established\n2025-07-14 17:26:46.517 [info] [command][82348748-0813-4213-a7a1-d6435d87766e] Process exited with code 0\n2025-07-14 17:26:46.517 [info] [command][82348748-0813-4213-a7a1-d6435d87766e] Socket close event received\n2025-07-14 17:26:46.518 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][be3eaeac-8419-4fe2-8cb8-8bf0dc851462] socks connection closed\n2025-07-14 17:26:46.540 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51516 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:27:46.523 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:27:46.525 [info] [command][b4e644ef-3a27-4fb0-921d-7505deb36fda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b4e644ef-3a27-4fb0-921d-7505deb36fda""}\n2025-07-14 17:27:46.526 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e60eddfa-b390-4777-87d7-8f47090f35dc] received connection request\n2025-07-14 17:27:46.526 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:27:46.592 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e60eddfa-b390-4777-87d7-8f47090f35dc] socks forwarding established\n2025-07-14 17:27:46.625 [info] [command][b4e644ef-3a27-4fb0-921d-7505deb36fda] Process exited with code 0\n2025-07-14 17:27:46.626 [info] [command][b4e644ef-3a27-4fb0-921d-7505deb36fda] Socket close event received\n2025-07-14 17:27:46.626 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e60eddfa-b390-4777-87d7-8f47090f35dc] socks connection closed\n2025-07-14 17:27:46.644 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51552 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:28:46.630 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:28:46.632 [info] [command][7eaa7561-7d25-44a7-b409-e05d58d2995d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""7eaa7561-7d25-44a7-b409-e05d58d2995d""}\n2025-07-14 17:28:46.633 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][1fc06673-4711-41cb-9de1-9cdad668e51c] received connection request\n2025-07-14 17:28:46.634 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:28:46.697 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1fc06673-4711-41cb-9de1-9cdad668e51c] socks forwarding established\n2025-07-14 17:28:46.732 [info] [command][7eaa7561-7d25-44a7-b409-e05d58d2995d] Process exited with code 0\n2025-07-14 17:28:46.732 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][1fc06673-4711-41cb-9de1-9cdad668e51c] socks connection closed\n2025-07-14 17:28:46.732 [info] [command][7eaa7561-7d25-44a7-b409-e05d58d2995d] Socket close event received\n2025-07-14 17:28:46.750 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51604 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:29:46.736 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:29:46.738 [info] [command][2ddcf6f8-3664-4275-a183-221d1eae3510] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""2ddcf6f8-3664-4275-a183-221d1eae3510""}\n2025-07-14 17:29:46.739 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e2ea5334-3964-41f6-92e1-26538caff23d] received connection request\n2025-07-14 17:29:46.740 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:29:46.758 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e2ea5334-3964-41f6-92e1-26538caff23d] socks forwarding established\n2025-07-14 17:29:46.791 [info] [command][2ddcf6f8-3664-4275-a183-221d1eae3510] Process exited with code 0\n2025-07-14 17:29:46.791 [info] [command][2ddcf6f8-3664-4275-a183-221d1eae3510] Socket close event received\n2025-07-14 17:29:46.792 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e2ea5334-3964-41f6-92e1-26538caff23d] socks connection closed\n2025-07-14 17:29:46.811 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51644 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:30:46.798 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:30:46.800 [info] [command][79e537d8-fc81-4fb1-ac72-71b7495bbc32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""79e537d8-fc81-4fb1-ac72-71b7495bbc32""}\n2025-07-14 17:30:46.801 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][15a22d4f-a993-4162-879b-d2a039b126f0] received connection request\n2025-07-14 17:30:46.802 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:30:46.823 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][15a22d4f-a993-4162-879b-d2a039b126f0] socks forwarding established\n2025-07-14 17:30:46.860 [info] [command][79e537d8-fc81-4fb1-ac72-71b7495bbc32] Process exited with code 0\n2025-07-14 17:30:46.860 [info] [command][79e537d8-fc81-4fb1-ac72-71b7495bbc32] Socket close event received\n2025-07-14 17:30:46.885 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][15a22d4f-a993-4162-879b-d2a039b126f0] socks connection closed\n2025-07-14 17:30:46.887 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51681 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:31:46.863 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:31:46.865 [info] [command][6dfc17d5-65cc-4e38-b75f-20cc6a1f9626] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""6dfc17d5-65cc-4e38-b75f-20cc6a1f9626""}\n2025-07-14 17:31:46.865 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e94a14ed-f02b-425e-868f-3a4f93c17676] received connection request\n2025-07-14 17:31:46.865 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:31:46.958 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e94a14ed-f02b-425e-868f-3a4f93c17676] socks forwarding established\n2025-07-14 17:31:47.123 [info] [command][6dfc17d5-65cc-4e38-b75f-20cc6a1f9626] Process exited with code 0\n2025-07-14 17:31:47.123 [info] [command][6dfc17d5-65cc-4e38-b75f-20cc6a1f9626] Socket close event received\n2025-07-14 17:31:47.125 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e94a14ed-f02b-425e-868f-3a4f93c17676] socks connection closed\n2025-07-14 17:31:47.144 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51716 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:32:47.125 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:32:47.127 [info] [command][5be6079d-7b41-43c1-b8f2-7eff74a65a67] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""5be6079d-7b41-43c1-b8f2-7eff74a65a67""}\n2025-07-14 17:32:47.128 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e457b2d4-061b-417d-88c3-2e17fdde9896] received connection request\n2025-07-14 17:32:47.128 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:32:47.149 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e457b2d4-061b-417d-88c3-2e17fdde9896] socks forwarding established\n2025-07-14 17:32:47.183 [info] [command][5be6079d-7b41-43c1-b8f2-7eff74a65a67] Process exited with code 0\n2025-07-14 17:32:47.183 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e457b2d4-061b-417d-88c3-2e17fdde9896] socks connection closed\n2025-07-14 17:32:47.183 [info] [command][5be6079d-7b41-43c1-b8f2-7eff74a65a67] Socket close event received\n2025-07-14 17:32:47.331 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51774 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:33:47.187 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:33:47.188 [info] [command][ea9495f1-d63f-4ef8-bc22-b42b31ce7cc6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ea9495f1-d63f-4ef8-bc22-b42b31ce7cc6""}\n2025-07-14 17:33:47.188 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][d7df5b37-6886-4f43-af42-4cd883796857] received connection request\n2025-07-14 17:33:47.188 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 17:33:47.188 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:33:47.206 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d7df5b37-6886-4f43-af42-4cd883796857] socks forwarding established\n2025-07-14 17:33:47.243 [info] [command][ea9495f1-d63f-4ef8-bc22-b42b31ce7cc6] Process exited with code 0\n2025-07-14 17:33:47.244 [info] [command][ea9495f1-d63f-4ef8-bc22-b42b31ce7cc6] Socket close event received\n2025-07-14 17:33:47.244 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d7df5b37-6886-4f43-af42-4cd883796857] socks connection closed\n2025-07-14 17:33:47.265 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51811 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:34:47.250 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:34:47.251 [info] [command][1e3182a5-bd8c-4c7a-8551-939704681425] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""1e3182a5-bd8c-4c7a-8551-939704681425""}\n2025-07-14 17:34:47.252 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][758d707e-d7dd-43c7-807f-7780f6c50d3a] received connection request\n2025-07-14 17:34:47.253 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:34:47.271 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][758d707e-d7dd-43c7-807f-7780f6c50d3a] socks forwarding established\n2025-07-14 17:34:47.303 [info] [command][1e3182a5-bd8c-4c7a-8551-939704681425] Process exited with code 0\n2025-07-14 17:34:47.303 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][758d707e-d7dd-43c7-807f-7780f6c50d3a] socks connection closed\n2025-07-14 17:34:47.303 [info] [command][1e3182a5-bd8c-4c7a-8551-939704681425] Socket close event received\n2025-07-14 17:34:47.326 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51837 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:35:47.309 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:35:47.311 [info] [command][0cf526b3-1f0e-4913-ad97-397e78804dca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""0cf526b3-1f0e-4913-ad97-397e78804dca""}\n2025-07-14 17:35:47.311 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][04b65ca0-afda-42fa-b7e2-15b4b77c8522] received connection request\n2025-07-14 17:35:47.312 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:35:47.352 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][04b65ca0-afda-42fa-b7e2-15b4b77c8522] socks forwarding established\n2025-07-14 17:35:47.431 [info] [command][0cf526b3-1f0e-4913-ad97-397e78804dca] Process exited with code 0\n2025-07-14 17:35:47.431 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][04b65ca0-afda-42fa-b7e2-15b4b77c8522] socks connection closed\n2025-07-14 17:35:47.431 [info] [command][0cf526b3-1f0e-4913-ad97-397e78804dca] Socket close event received\n2025-07-14 17:35:47.579 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51868 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:36:47.435 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:36:47.436 [info] [command][d141a860-96f1-42cd-b792-ab98cf1928ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d141a860-96f1-42cd-b792-ab98cf1928ff""}\n2025-07-14 17:36:47.437 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ea3b8657-8ed8-4b4b-b0c5-e93926ff8fb4] received connection request\n2025-07-14 17:36:47.437 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:36:47.455 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ea3b8657-8ed8-4b4b-b0c5-e93926ff8fb4] socks forwarding established\n2025-07-14 17:36:47.489 [info] [command][d141a860-96f1-42cd-b792-ab98cf1928ff] Process exited with code 0\n2025-07-14 17:36:47.489 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ea3b8657-8ed8-4b4b-b0c5-e93926ff8fb4] socks connection closed\n2025-07-14 17:36:47.489 [info] [command][d141a860-96f1-42cd-b792-ab98cf1928ff] Socket close event received\n2025-07-14 17:36:47.506 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51882 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:37:47.493 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:37:47.494 [info] [command][4cee0a6d-197a-4775-82c2-4e0aa2fdc6a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""4cee0a6d-197a-4775-82c2-4e0aa2fdc6a5""}\n2025-07-14 17:37:47.495 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f32f1ab1-4640-4c15-85b1-63566aef9624] received connection request\n2025-07-14 17:37:47.495 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:37:47.513 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f32f1ab1-4640-4c15-85b1-63566aef9624] socks forwarding established\n2025-07-14 17:37:47.548 [info] [command][4cee0a6d-197a-4775-82c2-4e0aa2fdc6a5] Process exited with code 0\n2025-07-14 17:37:47.548 [info] [command][4cee0a6d-197a-4775-82c2-4e0aa2fdc6a5] Socket close event received\n2025-07-14 17:37:47.549 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f32f1ab1-4640-4c15-85b1-63566aef9624] socks connection closed\n2025-07-14 17:37:47.566 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51914 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:38:47.554 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:38:47.556 [info] [command][69fd4590-b4aa-4aad-bda5-b98a3c0d1887] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""69fd4590-b4aa-4aad-bda5-b98a3c0d1887""}\n2025-07-14 17:38:47.556 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][58cdac8f-120d-4109-a30b-234e9b48499d] received connection request\n2025-07-14 17:38:47.557 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:38:47.574 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][58cdac8f-120d-4109-a30b-234e9b48499d] socks forwarding established\n2025-07-14 17:38:47.605 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][58cdac8f-120d-4109-a30b-234e9b48499d] socks connection closed\n2025-07-14 17:38:47.606 [info] [command][69fd4590-b4aa-4aad-bda5-b98a3c0d1887] Process exited with code 0\n2025-07-14 17:38:47.606 [info] [command][69fd4590-b4aa-4aad-bda5-b98a3c0d1887] Socket close event received\n2025-07-14 17:38:47.624 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51954 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:39:47.610 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:39:47.612 [info] [command][561914e3-53d6-4be3-b214-4129dbf40cbe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""561914e3-53d6-4be3-b214-4129dbf40cbe""}\n2025-07-14 17:39:47.613 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][eee29fa9-bfcf-46bc-a77b-849aa3508c62] received connection request\n2025-07-14 17:39:47.614 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:39:47.633 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][eee29fa9-bfcf-46bc-a77b-849aa3508c62] socks forwarding established\n2025-07-14 17:39:47.672 [info] [command][561914e3-53d6-4be3-b214-4129dbf40cbe] Process exited with code 0\n2025-07-14 17:39:47.672 [info] [command][561914e3-53d6-4be3-b214-4129dbf40cbe] Socket close event received\n2025-07-14 17:39:47.674 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][eee29fa9-bfcf-46bc-a77b-849aa3508c62] socks connection closed\n2025-07-14 17:39:47.692 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 51993 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:40:47.677 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:40:47.678 [info] [command][7a6aa1e1-e39f-4aa4-b3a3-444e6970280a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""7a6aa1e1-e39f-4aa4-b3a3-444e6970280a""}\n2025-07-14 17:40:47.679 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][c5f110b0-dd2e-4c5f-855e-4303dc4bb04a] received connection request\n2025-07-14 17:40:47.680 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:40:47.748 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c5f110b0-dd2e-4c5f-855e-4303dc4bb04a] socks forwarding established\n2025-07-14 17:40:47.914 [info] [command][7a6aa1e1-e39f-4aa4-b3a3-444e6970280a] Process exited with code 0\n2025-07-14 17:40:47.914 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c5f110b0-dd2e-4c5f-855e-4303dc4bb04a] socks connection closed\n2025-07-14 17:40:47.915 [info] [command][7a6aa1e1-e39f-4aa4-b3a3-444e6970280a] Socket close event received\n2025-07-14 17:40:47.933 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52025 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:41:47.917 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:41:47.919 [info] [command][3323c484-39b9-4670-96d8-50dfdc49a93c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""3323c484-39b9-4670-96d8-50dfdc49a93c""}\n2025-07-14 17:41:47.920 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][d90e21e5-5bac-478b-8eef-80f831a52b00] received connection request\n2025-07-14 17:41:47.920 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:41:47.938 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d90e21e5-5bac-478b-8eef-80f831a52b00] socks forwarding established\n2025-07-14 17:41:47.968 [info] [command][3323c484-39b9-4670-96d8-50dfdc49a93c] Process exited with code 0\n2025-07-14 17:41:47.968 [info] [command][3323c484-39b9-4670-96d8-50dfdc49a93c] Socket close event received\n2025-07-14 17:41:47.969 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d90e21e5-5bac-478b-8eef-80f831a52b00] socks connection closed\n2025-07-14 17:41:47.987 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52037 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:42:47.975 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:42:47.977 [info] [command][448c1903-c020-4f59-b4fa-9baef6779478] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""448c1903-c020-4f59-b4fa-9baef6779478""}\n2025-07-14 17:42:47.978 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e79e6f2f-1bf9-4112-b782-ff26462a7053] received connection request\n2025-07-14 17:42:47.978 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:42:47.998 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e79e6f2f-1bf9-4112-b782-ff26462a7053] socks forwarding established\n2025-07-14 17:42:48.030 [info] [command][448c1903-c020-4f59-b4fa-9baef6779478] Process exited with code 0\n2025-07-14 17:42:48.030 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e79e6f2f-1bf9-4112-b782-ff26462a7053] socks connection closed\n2025-07-14 17:42:48.031 [info] [command][448c1903-c020-4f59-b4fa-9baef6779478] Socket close event received\n2025-07-14 17:42:48.048 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52070 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:43:48.034 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:43:48.035 [info] [command][8bd2bf63-cb3f-4441-9779-a7ced9928d68] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""8bd2bf63-cb3f-4441-9779-a7ced9928d68""}\n2025-07-14 17:43:48.035 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][c3a42247-864c-4d0f-8d8f-da9c074d49d0] received connection request\n2025-07-14 17:43:48.035 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:43:48.260 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c3a42247-864c-4d0f-8d8f-da9c074d49d0] socks forwarding established\n2025-07-14 17:43:48.292 [info] [command][8bd2bf63-cb3f-4441-9779-a7ced9928d68] Process exited with code 0\n2025-07-14 17:43:48.292 [info] [command][8bd2bf63-cb3f-4441-9779-a7ced9928d68] Socket close event received\n2025-07-14 17:43:48.295 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c3a42247-864c-4d0f-8d8f-da9c074d49d0] socks connection closed\n2025-07-14 17:43:48.321 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52088 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:44:48.298 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:44:48.301 [info] [command][a8d29905-833e-4794-98dd-18f8fdcf5966] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a8d29905-833e-4794-98dd-18f8fdcf5966""}\n2025-07-14 17:44:48.301 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][deab0f29-9dcb-4e11-9db6-b7ba0f00b635] received connection request\n2025-07-14 17:44:48.302 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 17:44:48.303 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:44:48.321 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][deab0f29-9dcb-4e11-9db6-b7ba0f00b635] socks forwarding established\n2025-07-14 17:44:48.357 [info] [command][a8d29905-833e-4794-98dd-18f8fdcf5966] Process exited with code 0\n2025-07-14 17:44:48.357 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][deab0f29-9dcb-4e11-9db6-b7ba0f00b635] socks connection closed\n2025-07-14 17:44:48.357 [info] [command][a8d29905-833e-4794-98dd-18f8fdcf5966] Socket close event received\n2025-07-14 17:44:48.392 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52121 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:45:48.365 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:45:48.366 [info] [command][7b4886f4-27a8-4290-a793-1fc029867433] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""7b4886f4-27a8-4290-a793-1fc029867433""}\n2025-07-14 17:45:48.367 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][768b58d5-9b9d-4ddd-900d-bb76b318e368] received connection request\n2025-07-14 17:45:48.368 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:45:48.393 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][768b58d5-9b9d-4ddd-900d-bb76b318e368] socks forwarding established\n2025-07-14 17:45:48.511 [info] [command][7b4886f4-27a8-4290-a793-1fc029867433] Process exited with code 0\n2025-07-14 17:45:48.512 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][768b58d5-9b9d-4ddd-900d-bb76b318e368] socks connection closed\n2025-07-14 17:45:48.512 [info] [command][7b4886f4-27a8-4290-a793-1fc029867433] Socket close event received\n2025-07-14 17:45:48.532 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52155 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:46:48.518 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:46:48.521 [info] [command][aa36999b-961c-4a1f-b5a1-6102ce800188] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""aa36999b-961c-4a1f-b5a1-6102ce800188""}\n2025-07-14 17:46:48.522 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][71ded4db-1bc9-435f-999e-863ee6d21422] received connection request\n2025-07-14 17:46:48.522 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:46:48.544 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][71ded4db-1bc9-435f-999e-863ee6d21422] socks forwarding established\n2025-07-14 17:46:48.578 [info] [command][aa36999b-961c-4a1f-b5a1-6102ce800188] Process exited with code 0\n2025-07-14 17:46:48.578 [info] [command][aa36999b-961c-4a1f-b5a1-6102ce800188] Socket close event received\n2025-07-14 17:46:48.578 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][71ded4db-1bc9-435f-999e-863ee6d21422] socks connection closed\n2025-07-14 17:46:48.604 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52181 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:47:48.585 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:47:48.587 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][9005925d-cd3b-4cf9-a3f4-d82bddd558be] received connection request\n2025-07-14 17:47:48.588 [info] [command][58738676-5f52-4c28-9442-66be26a52a20] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""58738676-5f52-4c28-9442-66be26a52a20""}\n2025-07-14 17:47:48.588 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:47:48.609 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9005925d-cd3b-4cf9-a3f4-d82bddd558be] socks forwarding established\n2025-07-14 17:47:48.640 [info] [command][58738676-5f52-4c28-9442-66be26a52a20] Process exited with code 0\n2025-07-14 17:47:48.640 [info] [command][58738676-5f52-4c28-9442-66be26a52a20] Socket close event received\n2025-07-14 17:47:48.641 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][9005925d-cd3b-4cf9-a3f4-d82bddd558be] socks connection closed\n2025-07-14 17:47:48.659 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52228 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:48:48.646 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:48:48.648 [info] [command][9bf93e78-169b-4014-bb50-2f0002337bf8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""9bf93e78-169b-4014-bb50-2f0002337bf8""}\n2025-07-14 17:48:48.648 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][2ac1961c-4da6-4abd-9189-7e2415356f23] received connection request\n2025-07-14 17:48:48.649 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:48:48.670 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2ac1961c-4da6-4abd-9189-7e2415356f23] socks forwarding established\n2025-07-14 17:48:48.702 [info] [command][9bf93e78-169b-4014-bb50-2f0002337bf8] Process exited with code 0\n2025-07-14 17:48:48.702 [info] [command][9bf93e78-169b-4014-bb50-2f0002337bf8] Socket close event received\n2025-07-14 17:48:48.702 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][2ac1961c-4da6-4abd-9189-7e2415356f23] socks connection closed\n2025-07-14 17:48:48.719 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52250 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:49:48.708 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:49:48.709 [info] [command][091f6b4d-7ce3-4d84-be53-d802e0bdf1ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""091f6b4d-7ce3-4d84-be53-d802e0bdf1ac""}\n2025-07-14 17:49:48.709 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][fad1f33d-894f-4548-90e1-74c12a1a33b1] received connection request\n2025-07-14 17:49:48.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 17:49:48.709 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:49:48.780 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fad1f33d-894f-4548-90e1-74c12a1a33b1] socks forwarding established\n2025-07-14 17:49:48.936 [info] [command][091f6b4d-7ce3-4d84-be53-d802e0bdf1ac] Process exited with code 0\n2025-07-14 17:49:48.936 [info] [command][091f6b4d-7ce3-4d84-be53-d802e0bdf1ac] Socket close event received\n2025-07-14 17:49:48.937 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fad1f33d-894f-4548-90e1-74c12a1a33b1] socks connection closed\n2025-07-14 17:49:48.957 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52272 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:50:48.943 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:50:48.944 [info] [command][21ec03b7-bf06-4e44-8926-8f37233faf28] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""21ec03b7-bf06-4e44-8926-8f37233faf28""}\n2025-07-14 17:50:48.945 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f5353aa7-83f2-486c-8131-bda6f38bf641] received connection request\n2025-07-14 17:50:48.946 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:50:48.965 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f5353aa7-83f2-486c-8131-bda6f38bf641] socks forwarding established\n2025-07-14 17:50:48.998 [info] [command][21ec03b7-bf06-4e44-8926-8f37233faf28] Process exited with code 0\n2025-07-14 17:50:48.999 [info] [command][21ec03b7-bf06-4e44-8926-8f37233faf28] Socket close event received\n2025-07-14 17:50:49.023 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52308 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:50:49.023 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f5353aa7-83f2-486c-8131-bda6f38bf641] socks connection closed\n2025-07-14 17:51:49.002 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:51:49.003 [info] [command][43ccf1bb-4d18-45ae-8a37-26a8739ae9d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""43ccf1bb-4d18-45ae-8a37-26a8739ae9d7""}\n2025-07-14 17:51:49.003 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e82ac3dd-242f-430a-90a3-7179186197ee] received connection request\n2025-07-14 17:51:49.004 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:51:49.021 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e82ac3dd-242f-430a-90a3-7179186197ee] socks forwarding established\n2025-07-14 17:51:49.053 [info] [command][43ccf1bb-4d18-45ae-8a37-26a8739ae9d7] Process exited with code 0\n2025-07-14 17:51:49.054 [info] [command][43ccf1bb-4d18-45ae-8a37-26a8739ae9d7] Socket close event received\n2025-07-14 17:51:49.054 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e82ac3dd-242f-430a-90a3-7179186197ee] socks connection closed\n2025-07-14 17:51:49.072 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52334 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:52:49.059 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:52:49.062 [info] [command][a4782140-d142-4cfd-af2c-40418acfc498] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a4782140-d142-4cfd-af2c-40418acfc498""}\n2025-07-14 17:52:49.062 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][fff7983d-9c71-420b-98ec-98a0c5318850] received connection request\n2025-07-14 17:52:49.063 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:52:49.081 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fff7983d-9c71-420b-98ec-98a0c5318850] socks forwarding established\n2025-07-14 17:52:49.114 [info] [command][a4782140-d142-4cfd-af2c-40418acfc498] Process exited with code 0\n2025-07-14 17:52:49.114 [info] [command][a4782140-d142-4cfd-af2c-40418acfc498] Socket close event received\n2025-07-14 17:52:49.115 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][fff7983d-9c71-420b-98ec-98a0c5318850] socks connection closed\n2025-07-14 17:52:49.132 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52361 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:53:49.117 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:53:49.119 [info] [command][0222d56d-9735-4046-9e7e-65f566359272] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""0222d56d-9735-4046-9e7e-65f566359272""}\n2025-07-14 17:53:49.120 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][63977bf4-aec5-46d9-a3d6-0fc80492800a] received connection request\n2025-07-14 17:53:49.121 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:53:49.140 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][63977bf4-aec5-46d9-a3d6-0fc80492800a] socks forwarding established\n2025-07-14 17:53:49.223 [info] [command][0222d56d-9735-4046-9e7e-65f566359272] Process exited with code 0\n2025-07-14 17:53:49.223 [info] [command][0222d56d-9735-4046-9e7e-65f566359272] Socket close event received\n2025-07-14 17:53:49.239 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][63977bf4-aec5-46d9-a3d6-0fc80492800a] socks connection closed\n2025-07-14 17:53:49.240 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52394 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:54:49.226 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:54:49.228 [info] [command][af7e03a3-8b64-4135-81e8-be01066bb421] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""af7e03a3-8b64-4135-81e8-be01066bb421""}\n2025-07-14 17:54:49.229 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][5018e4b2-9b01-4430-8471-fc3889c9940d] received connection request\n2025-07-14 17:54:49.229 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:54:49.328 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5018e4b2-9b01-4430-8471-fc3889c9940d] socks forwarding established\n2025-07-14 17:54:49.397 [info] [command][af7e03a3-8b64-4135-81e8-be01066bb421] Process exited with code 0\n2025-07-14 17:54:49.397 [info] [command][af7e03a3-8b64-4135-81e8-be01066bb421] Socket close event received\n2025-07-14 17:54:49.480 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5018e4b2-9b01-4430-8471-fc3889c9940d] socks connection closed\n2025-07-14 17:54:49.494 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52417 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:55:49.403 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:55:49.405 [info] [command][601ca338-c260-452e-86f8-a063f1cf7775] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""601ca338-c260-452e-86f8-a063f1cf7775""}\n2025-07-14 17:55:49.406 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][85a4b3ec-27fe-4abe-aafc-6e66034579e6] received connection request\n2025-07-14 17:55:49.407 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:55:49.425 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][85a4b3ec-27fe-4abe-aafc-6e66034579e6] socks forwarding established\n2025-07-14 17:55:49.459 [info] [command][601ca338-c260-452e-86f8-a063f1cf7775] Process exited with code 0\n2025-07-14 17:55:49.460 [info] [command][601ca338-c260-452e-86f8-a063f1cf7775] Socket close event received\n2025-07-14 17:55:49.460 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][85a4b3ec-27fe-4abe-aafc-6e66034579e6] socks connection closed\n2025-07-14 17:55:49.477 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52457 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:56:49.466 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:56:49.467 [info] [command][69f74215-7cd7-4d44-8e1d-cae55da0bcc5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""69f74215-7cd7-4d44-8e1d-cae55da0bcc5""}\n2025-07-14 17:56:49.467 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][4b0e5f0b-552d-4d54-85dd-2493927ebe9d] received connection request\n2025-07-14 17:56:49.468 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:56:49.486 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4b0e5f0b-552d-4d54-85dd-2493927ebe9d] socks forwarding established\n2025-07-14 17:56:49.516 [info] [command][69f74215-7cd7-4d44-8e1d-cae55da0bcc5] Process exited with code 0\n2025-07-14 17:56:49.516 [info] [command][69f74215-7cd7-4d44-8e1d-cae55da0bcc5] Socket close event received\n2025-07-14 17:56:49.516 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][4b0e5f0b-552d-4d54-85dd-2493927ebe9d] socks connection closed\n2025-07-14 17:56:49.534 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52483 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:57:49.523 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:57:49.524 [info] [command][e00224db-24bb-4c84-9a72-800a4d11bcda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""e00224db-24bb-4c84-9a72-800a4d11bcda""}\n2025-07-14 17:57:49.525 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][cb3b4a29-ee2f-4203-bb20-960e04c0f85a] received connection request\n2025-07-14 17:57:49.525 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:57:49.543 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cb3b4a29-ee2f-4203-bb20-960e04c0f85a] socks forwarding established\n2025-07-14 17:57:49.574 [info] [command][e00224db-24bb-4c84-9a72-800a4d11bcda] Process exited with code 0\n2025-07-14 17:57:49.575 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][cb3b4a29-ee2f-4203-bb20-960e04c0f85a] socks connection closed\n2025-07-14 17:57:49.575 [info] [command][e00224db-24bb-4c84-9a72-800a4d11bcda] Socket close event received\n2025-07-14 17:57:49.593 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52527 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:58:49.581 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:58:49.583 [info] [command][dc57136b-d416-4d5b-981b-4cee577d47e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""dc57136b-d416-4d5b-981b-4cee577d47e5""}\n2025-07-14 17:58:49.584 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][33ac4685-2635-4cee-a210-44c8c263ee8a] received connection request\n2025-07-14 17:58:49.585 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:58:49.614 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][33ac4685-2635-4cee-a210-44c8c263ee8a] socks forwarding established\n2025-07-14 17:58:49.761 [info] [command][dc57136b-d416-4d5b-981b-4cee577d47e5] Process exited with code 0\n2025-07-14 17:58:49.761 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][33ac4685-2635-4cee-a210-44c8c263ee8a] socks connection closed\n2025-07-14 17:58:49.761 [info] [command][dc57136b-d416-4d5b-981b-4cee577d47e5] Socket close event received\n2025-07-14 17:58:50.237 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52546 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 17:59:49.767 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 17:59:49.769 [info] [command][2604c5af-2068-45a5-8bfc-6762fee5f946] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""2604c5af-2068-45a5-8bfc-6762fee5f946""}\n2025-07-14 17:59:49.770 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][a5ada42c-9ed3-4537-8ad1-0ff571a9f445] received connection request\n2025-07-14 17:59:49.771 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 17:59:49.791 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a5ada42c-9ed3-4537-8ad1-0ff571a9f445] socks forwarding established\n2025-07-14 17:59:49.827 [info] [command][2604c5af-2068-45a5-8bfc-6762fee5f946] Process exited with code 0\n2025-07-14 17:59:49.827 [info] [command][2604c5af-2068-45a5-8bfc-6762fee5f946] Socket close event received\n2025-07-14 17:59:49.828 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][a5ada42c-9ed3-4537-8ad1-0ff571a9f445] socks connection closed\n2025-07-14 17:59:49.845 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52576 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:00:49.831 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:00:49.833 [info] [command][515ef667-1020-41e5-a575-5dc408a0b788] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""515ef667-1020-41e5-a575-5dc408a0b788""}\n2025-07-14 18:00:49.833 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][68edaf13-19f5-4103-a0f0-55c88b0e80e2] received connection request\n2025-07-14 18:00:49.834 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:00:49.864 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][68edaf13-19f5-4103-a0f0-55c88b0e80e2] socks forwarding established\n2025-07-14 18:00:49.895 [info] [command][515ef667-1020-41e5-a575-5dc408a0b788] Process exited with code 0\n2025-07-14 18:00:49.895 [info] [command][515ef667-1020-41e5-a575-5dc408a0b788] Socket close event received\n2025-07-14 18:00:49.895 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][68edaf13-19f5-4103-a0f0-55c88b0e80e2] socks connection closed\n2025-07-14 18:00:49.913 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52624 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:01:49.898 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:01:49.899 [info] [command][f764f482-0880-4179-b857-63ed43ae12d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f764f482-0880-4179-b857-63ed43ae12d5""}\n2025-07-14 18:01:49.900 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][02b50eb4-6811-424e-9b68-da16d940bb5e] received connection request\n2025-07-14 18:01:49.900 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:01:49.918 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][02b50eb4-6811-424e-9b68-da16d940bb5e] socks forwarding established\n2025-07-14 18:01:49.948 [info] [command][f764f482-0880-4179-b857-63ed43ae12d5] Process exited with code 0\n2025-07-14 18:01:49.948 [info] [command][f764f482-0880-4179-b857-63ed43ae12d5] Socket close event received\n2025-07-14 18:01:49.948 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][02b50eb4-6811-424e-9b68-da16d940bb5e] socks connection closed\n2025-07-14 18:01:49.966 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52650 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:02:49.953 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:02:49.954 [info] [command][2ae653c4-8a26-412f-af15-3374a98eb9ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""2ae653c4-8a26-412f-af15-3374a98eb9ef""}\n2025-07-14 18:02:49.954 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][45f0b89b-3e26-4c8b-8531-bb185ab67d53] received connection request\n2025-07-14 18:02:49.954 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 18:02:49.954 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:02:49.971 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][45f0b89b-3e26-4c8b-8531-bb185ab67d53] socks forwarding established\n2025-07-14 18:02:50.019 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][45f0b89b-3e26-4c8b-8531-bb185ab67d53] socks connection closed\n2025-07-14 18:02:50.019 [info] [command][2ae653c4-8a26-412f-af15-3374a98eb9ef] Process exited with code 0\n2025-07-14 18:02:50.019 [info] [command][2ae653c4-8a26-412f-af15-3374a98eb9ef] Socket close event received\n2025-07-14 18:02:50.038 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52716 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:03:50.026 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:03:50.027 [info] [command][b6317523-9b0d-4d17-bad3-97f3efdcd912] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b6317523-9b0d-4d17-bad3-97f3efdcd912""}\n2025-07-14 18:03:50.028 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][193cdf30-c3a1-4fe1-83b3-5d68173f9392] received connection request\n2025-07-14 18:03:50.028 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:03:50.086 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][193cdf30-c3a1-4fe1-83b3-5d68173f9392] socks forwarding established\n2025-07-14 18:03:50.166 [info] [command][b6317523-9b0d-4d17-bad3-97f3efdcd912] Process exited with code 0\n2025-07-14 18:03:50.166 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][193cdf30-c3a1-4fe1-83b3-5d68173f9392] socks connection closed\n2025-07-14 18:03:50.166 [info] [command][b6317523-9b0d-4d17-bad3-97f3efdcd912] Socket close event received\n2025-07-14 18:03:50.187 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52753 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:04:50.172 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:04:50.174 [info] [command][531c1e07-b57e-4aac-9615-8dbb818ee114] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""531c1e07-b57e-4aac-9615-8dbb818ee114""}\n2025-07-14 18:04:50.174 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][129926cb-ec84-4283-b498-f97d1ae75834] received connection request\n2025-07-14 18:04:50.174 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:04:50.192 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][129926cb-ec84-4283-b498-f97d1ae75834] socks forwarding established\n2025-07-14 18:04:50.225 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][129926cb-ec84-4283-b498-f97d1ae75834] socks connection closed\n2025-07-14 18:04:50.225 [info] [command][531c1e07-b57e-4aac-9615-8dbb818ee114] Process exited with code 0\n2025-07-14 18:04:50.225 [info] [command][531c1e07-b57e-4aac-9615-8dbb818ee114] Socket close event received\n2025-07-14 18:04:50.242 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52787 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:05:50.227 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:05:50.228 [info] [command][91ae10d7-0d7c-4c41-bd3e-caee7bc99683] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""91ae10d7-0d7c-4c41-bd3e-caee7bc99683""}\n2025-07-14 18:05:50.228 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6b79b9dd-f725-46c2-a44b-aee1794a9eb4] received connection request\n2025-07-14 18:05:50.228 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 18:05:50.228 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:05:50.249 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6b79b9dd-f725-46c2-a44b-aee1794a9eb4] socks forwarding established\n2025-07-14 18:05:50.282 [info] [command][91ae10d7-0d7c-4c41-bd3e-caee7bc99683] Process exited with code 0\n2025-07-14 18:05:50.282 [info] [command][91ae10d7-0d7c-4c41-bd3e-caee7bc99683] Socket close event received\n2025-07-14 18:05:50.284 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6b79b9dd-f725-46c2-a44b-aee1794a9eb4] socks connection closed\n2025-07-14 18:05:50.307 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52831 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:06:50.289 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:06:50.290 [info] [command][a770f8aa-4bdb-487a-9672-f67c0956e64f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a770f8aa-4bdb-487a-9672-f67c0956e64f""}\n2025-07-14 18:06:50.290 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][dc8f788e-fa6d-4fad-956c-d3fd47c5afcb] received connection request\n2025-07-14 18:06:50.291 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 18:06:50.291 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:06:50.309 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][dc8f788e-fa6d-4fad-956c-d3fd47c5afcb] socks forwarding established\n2025-07-14 18:06:50.343 [info] [command][a770f8aa-4bdb-487a-9672-f67c0956e64f] Process exited with code 0\n2025-07-14 18:06:50.343 [info] [command][a770f8aa-4bdb-487a-9672-f67c0956e64f] Socket close event received\n2025-07-14 18:06:50.344 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][dc8f788e-fa6d-4fad-956c-d3fd47c5afcb] socks connection closed\n2025-07-14 18:06:50.364 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52851 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:07:50.350 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:07:50.350 [info] [command][a24aebb3-8410-4d75-9c46-e572e52375b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""a24aebb3-8410-4d75-9c46-e572e52375b5""}\n2025-07-14 18:07:50.351 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][b9d977f5-3b39-408a-8c5d-61f19d5d6e2b] received connection request\n2025-07-14 18:07:50.351 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:07:50.413 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b9d977f5-3b39-408a-8c5d-61f19d5d6e2b] socks forwarding established\n2025-07-14 18:07:50.557 [info] [command][a24aebb3-8410-4d75-9c46-e572e52375b5] Process exited with code 0\n2025-07-14 18:07:50.557 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][b9d977f5-3b39-408a-8c5d-61f19d5d6e2b] socks connection closed\n2025-07-14 18:07:50.557 [info] [command][a24aebb3-8410-4d75-9c46-e572e52375b5] Socket close event received\n2025-07-14 18:07:50.575 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52880 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:08:50.564 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:08:50.566 [info] [command][d00821ba-67db-44c9-827e-4ed1675d45cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d00821ba-67db-44c9-827e-4ed1675d45cd""}\n2025-07-14 18:08:50.567 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][dbe735e8-a70c-4b8a-8b8b-869d1f7d77a1] received connection request\n2025-07-14 18:08:50.567 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:08:50.586 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][dbe735e8-a70c-4b8a-8b8b-869d1f7d77a1] socks forwarding established\n2025-07-14 18:08:50.618 [info] [command][d00821ba-67db-44c9-827e-4ed1675d45cd] Process exited with code 0\n2025-07-14 18:08:50.619 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][dbe735e8-a70c-4b8a-8b8b-869d1f7d77a1] socks connection closed\n2025-07-14 18:08:50.619 [info] [command][d00821ba-67db-44c9-827e-4ed1675d45cd] Socket close event received\n2025-07-14 18:08:50.636 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52906 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:09:50.623 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:09:50.625 [info] [command][48723ddc-8a3d-4cfe-afe6-4012cb0bf38e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""48723ddc-8a3d-4cfe-afe6-4012cb0bf38e""}\n2025-07-14 18:09:50.626 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6351dbaf-62c2-4323-9bcb-ca8a55fb30b2] received connection request\n2025-07-14 18:09:50.626 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:09:50.644 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6351dbaf-62c2-4323-9bcb-ca8a55fb30b2] socks forwarding established\n2025-07-14 18:09:50.677 [info] [command][48723ddc-8a3d-4cfe-afe6-4012cb0bf38e] Process exited with code 0\n2025-07-14 18:09:50.677 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6351dbaf-62c2-4323-9bcb-ca8a55fb30b2] socks connection closed\n2025-07-14 18:09:50.677 [info] [command][48723ddc-8a3d-4cfe-afe6-4012cb0bf38e] Socket close event received\n2025-07-14 18:09:50.695 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52933 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:10:50.683 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:10:50.685 [info] [command][3544e411-db55-4dee-9a27-b38117e6654c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""3544e411-db55-4dee-9a27-b38117e6654c""}\n2025-07-14 18:10:50.686 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][7bd2ac70-0e7e-4ed1-b821-367aabfb91e7] received connection request\n2025-07-14 18:10:50.686 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:10:50.708 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7bd2ac70-0e7e-4ed1-b821-367aabfb91e7] socks forwarding established\n2025-07-14 18:10:50.740 [info] [command][3544e411-db55-4dee-9a27-b38117e6654c] Process exited with code 0\n2025-07-14 18:10:50.740 [info] [command][3544e411-db55-4dee-9a27-b38117e6654c] Socket close event received\n2025-07-14 18:10:50.741 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7bd2ac70-0e7e-4ed1-b821-367aabfb91e7] socks connection closed\n2025-07-14 18:10:50.759 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52963 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:11:50.746 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:11:50.751 [info] [command][f132a71a-03d7-4cfb-8fb6-44fefa59c080] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f132a71a-03d7-4cfb-8fb6-44fefa59c080""}\n2025-07-14 18:11:50.751 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f7c750ac-4241-4a6b-bb79-bc6fa1b744f5] received connection request\n2025-07-14 18:11:50.752 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:11:50.776 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f7c750ac-4241-4a6b-bb79-bc6fa1b744f5] socks forwarding established\n2025-07-14 18:11:50.831 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f7c750ac-4241-4a6b-bb79-bc6fa1b744f5] socks connection closed\n2025-07-14 18:11:50.831 [info] [command][f132a71a-03d7-4cfb-8fb6-44fefa59c080] Process exited with code 0\n2025-07-14 18:11:50.831 [info] [command][f132a71a-03d7-4cfb-8fb6-44fefa59c080] Socket close event received\n2025-07-14 18:11:50.858 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 52994 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:12:50.835 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:12:50.835 [info] [command][b0dd73cb-e24e-4c60-8110-52a94314651a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""b0dd73cb-e24e-4c60-8110-52a94314651a""}\n2025-07-14 18:12:50.836 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6499da36-2c3b-45d6-8aab-55c3f974ae45] received connection request\n2025-07-14 18:12:50.836 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:12:50.854 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6499da36-2c3b-45d6-8aab-55c3f974ae45] socks forwarding established\n2025-07-14 18:12:50.885 [info] [command][b0dd73cb-e24e-4c60-8110-52a94314651a] Process exited with code 0\n2025-07-14 18:12:50.885 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6499da36-2c3b-45d6-8aab-55c3f974ae45] socks connection closed\n2025-07-14 18:12:50.886 [info] [command][b0dd73cb-e24e-4c60-8110-52a94314651a] Socket close event received\n2025-07-14 18:12:50.903 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53027 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:13:50.887 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:13:50.889 [info] [command][aef3d513-c2b2-4a91-961d-e051ad7f6a06] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""aef3d513-c2b2-4a91-961d-e051ad7f6a06""}\n2025-07-14 18:13:50.890 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ad1812a6-d832-4e0d-a8e0-139e80255e78] received connection request\n2025-07-14 18:13:50.891 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 18:13:50.893 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:13:50.913 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ad1812a6-d832-4e0d-a8e0-139e80255e78] socks forwarding established\n2025-07-14 18:13:50.945 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ad1812a6-d832-4e0d-a8e0-139e80255e78] socks connection closed\n2025-07-14 18:13:50.945 [info] [command][aef3d513-c2b2-4a91-961d-e051ad7f6a06] Process exited with code 0\n2025-07-14 18:13:50.945 [info] [command][aef3d513-c2b2-4a91-961d-e051ad7f6a06] Socket close event received\n2025-07-14 18:13:50.962 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53054 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:14:50.947 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:14:50.948 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e145bd63-8a43-4105-b76b-da92898845d3] received connection request\n2025-07-14 18:14:50.948 [info] [command][f7119dca-f1f7-4537-acb0-d55f8865fddb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""f7119dca-f1f7-4537-acb0-d55f8865fddb""}\n2025-07-14 18:14:50.948 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:14:50.966 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e145bd63-8a43-4105-b76b-da92898845d3] socks forwarding established\n2025-07-14 18:14:50.998 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e145bd63-8a43-4105-b76b-da92898845d3] socks connection closed\n2025-07-14 18:14:50.998 [info] [command][f7119dca-f1f7-4537-acb0-d55f8865fddb] Process exited with code 0\n2025-07-14 18:14:50.998 [info] [command][f7119dca-f1f7-4537-acb0-d55f8865fddb] Socket close event received\n2025-07-14 18:14:51.015 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53087 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:15:51.005 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:15:51.008 [info] [command][656440c6-de10-4ed7-a2ca-09734c61f859] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""656440c6-de10-4ed7-a2ca-09734c61f859""}\n2025-07-14 18:15:51.009 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][87dee80f-22cc-4245-8f1c-39ba8b2b44ed] received connection request\n2025-07-14 18:15:51.010 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:15:51.030 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][87dee80f-22cc-4245-8f1c-39ba8b2b44ed] socks forwarding established\n2025-07-14 18:15:51.065 [info] [command][656440c6-de10-4ed7-a2ca-09734c61f859] Process exited with code 0\n2025-07-14 18:15:51.065 [info] [command][656440c6-de10-4ed7-a2ca-09734c61f859] Socket close event received\n2025-07-14 18:15:51.065 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][87dee80f-22cc-4245-8f1c-39ba8b2b44ed] socks connection closed\n2025-07-14 18:15:51.087 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53129 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:16:51.070 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:16:51.075 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][96461d09-c3bd-4018-a075-478978ba63c8] received connection request\n2025-07-14 18:16:51.076 [info] [command][aecf5b94-8c14-4c79-9c4e-effd6615b5fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""aecf5b94-8c14-4c79-9c4e-effd6615b5fd""}\n2025-07-14 18:16:51.076 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:16:51.125 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][96461d09-c3bd-4018-a075-478978ba63c8] socks forwarding established\n2025-07-14 18:16:51.289 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][96461d09-c3bd-4018-a075-478978ba63c8] socks connection closed\n2025-07-14 18:16:51.289 [info] [command][aecf5b94-8c14-4c79-9c4e-effd6615b5fd] Process exited with code 0\n2025-07-14 18:16:51.289 [info] [command][aecf5b94-8c14-4c79-9c4e-effd6615b5fd] Socket close event received\n2025-07-14 18:16:51.314 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53156 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:17:51.293 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:17:51.294 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ababcafc-9385-429d-8548-dfce537dfd5e] received connection request\n2025-07-14 18:17:51.295 [info] [command][e57d5cea-e43e-49c0-8869-1f8862c8d8a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""e57d5cea-e43e-49c0-8869-1f8862c8d8a7""}\n2025-07-14 18:17:51.295 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:17:51.313 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ababcafc-9385-429d-8548-dfce537dfd5e] socks forwarding established\n2025-07-14 18:17:51.347 [info] [command][e57d5cea-e43e-49c0-8869-1f8862c8d8a7] Process exited with code 0\n2025-07-14 18:17:51.347 [info] [command][e57d5cea-e43e-49c0-8869-1f8862c8d8a7] Socket close event received\n2025-07-14 18:17:51.347 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ababcafc-9385-429d-8548-dfce537dfd5e] socks connection closed\n2025-07-14 18:17:51.368 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53195 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:18:51.353 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:18:51.355 [info] [command][61a3dfbd-da57-4b78-b325-7b81e32cb89b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""61a3dfbd-da57-4b78-b325-7b81e32cb89b""}\n2025-07-14 18:18:51.356 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][d52af1f5-f5ea-444d-942f-bf0fa224dfa2] received connection request\n2025-07-14 18:18:51.357 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:18:51.377 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d52af1f5-f5ea-444d-942f-bf0fa224dfa2] socks forwarding established\n2025-07-14 18:18:51.409 [info] [command][61a3dfbd-da57-4b78-b325-7b81e32cb89b] Process exited with code 0\n2025-07-14 18:18:51.410 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][d52af1f5-f5ea-444d-942f-bf0fa224dfa2] socks connection closed\n2025-07-14 18:18:51.410 [info] [command][61a3dfbd-da57-4b78-b325-7b81e32cb89b] Socket close event received\n2025-07-14 18:18:51.428 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53220 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:19:51.412 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:19:51.414 [info] [command][675f2a70-32b4-48d5-bce7-34b07df27364] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""675f2a70-32b4-48d5-bce7-34b07df27364""}\n2025-07-14 18:19:51.415 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][8e658600-a65e-4443-8fef-971a46a94d46] received connection request\n2025-07-14 18:19:51.416 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:19:51.439 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8e658600-a65e-4443-8fef-971a46a94d46] socks forwarding established\n2025-07-14 18:19:51.478 [info] [command][675f2a70-32b4-48d5-bce7-34b07df27364] Process exited with code 0\n2025-07-14 18:19:51.479 [info] [command][675f2a70-32b4-48d5-bce7-34b07df27364] Socket close event received\n2025-07-14 18:19:51.480 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][8e658600-a65e-4443-8fef-971a46a94d46] socks connection closed\n2025-07-14 18:19:51.503 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53238 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:20:51.481 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:20:51.484 [info] [command][72c863c9-6daf-4b9d-9234-7f2ccc4e4fa6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""72c863c9-6daf-4b9d-9234-7f2ccc4e4fa6""}\n2025-07-14 18:20:51.485 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][913c0050-2a46-4eb1-b245-3125b618f57c] received connection request\n2025-07-14 18:20:51.486 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:20:51.571 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][913c0050-2a46-4eb1-b245-3125b618f57c] socks forwarding established\n2025-07-14 18:20:51.740 [info] [command][72c863c9-6daf-4b9d-9234-7f2ccc4e4fa6] Process exited with code 0\n2025-07-14 18:20:51.741 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][913c0050-2a46-4eb1-b245-3125b618f57c] socks connection closed\n2025-07-14 18:20:51.741 [info] [command][72c863c9-6daf-4b9d-9234-7f2ccc4e4fa6] Socket close event received\n2025-07-14 18:20:51.763 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53273 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:21:51.742 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:21:51.744 [info] [command][fd0dc358-fe6f-4a32-8f97-806e2bb10b76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""fd0dc358-fe6f-4a32-8f97-806e2bb10b76""}\n2025-07-14 18:21:51.745 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][137cd8f6-b439-4464-9ee3-9ccb1abd9bde] received connection request\n2025-07-14 18:21:51.746 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:21:51.766 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][137cd8f6-b439-4464-9ee3-9ccb1abd9bde] socks forwarding established\n2025-07-14 18:21:51.799 [info] [command][fd0dc358-fe6f-4a32-8f97-806e2bb10b76] Process exited with code 0\n2025-07-14 18:21:51.799 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][137cd8f6-b439-4464-9ee3-9ccb1abd9bde] socks connection closed\n2025-07-14 18:21:51.799 [info] [command][fd0dc358-fe6f-4a32-8f97-806e2bb10b76] Socket close event received\n2025-07-14 18:21:51.817 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53288 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:22:51.802 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:22:51.803 [info] [command][d762189c-34df-4ead-a2b7-130299956886] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""d762189c-34df-4ead-a2b7-130299956886""}\n2025-07-14 18:22:51.804 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f546bcfe-6d25-4cb5-b7dd-562cd3d9e522] received connection request\n2025-07-14 18:22:51.805 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:22:51.825 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f546bcfe-6d25-4cb5-b7dd-562cd3d9e522] socks forwarding established\n2025-07-14 18:22:51.856 [info] [command][d762189c-34df-4ead-a2b7-130299956886] Process exited with code 0\n2025-07-14 18:22:51.856 [info] [command][d762189c-34df-4ead-a2b7-130299956886] Socket close event received\n2025-07-14 18:22:51.856 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f546bcfe-6d25-4cb5-b7dd-562cd3d9e522] socks connection closed\n2025-07-14 18:22:51.874 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53315 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:23:51.862 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:23:51.865 [info] [command][81431d3d-29ee-4980-a153-9970bb6eb2a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""81431d3d-29ee-4980-a153-9970bb6eb2a3""}\n2025-07-14 18:23:51.865 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][c6136f93-ad78-4afd-9268-1679e685553f] received connection request\n2025-07-14 18:23:51.866 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\n\n2025-07-14 18:23:51.866 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:23:51.885 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c6136f93-ad78-4afd-9268-1679e685553f] socks forwarding established\n2025-07-14 18:23:51.919 [info] [command][81431d3d-29ee-4980-a153-9970bb6eb2a3] Process exited with code 0\n2025-07-14 18:23:51.920 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][c6136f93-ad78-4afd-9268-1679e685553f] socks connection closed\n2025-07-14 18:23:51.920 [info] [command][81431d3d-29ee-4980-a153-9970bb6eb2a3] Socket close event received\n2025-07-14 18:23:51.939 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53339 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:24:51.925 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:24:51.927 [info] [command][77fd2dc8-8ad8-43fa-87cb-d1d1370f3b9f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""77fd2dc8-8ad8-43fa-87cb-d1d1370f3b9f""}\n2025-07-14 18:24:51.928 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][5894fa06-17b7-4bb4-b242-8b2323c6a07d] received connection request\n2025-07-14 18:24:51.929 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:24:51.948 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5894fa06-17b7-4bb4-b242-8b2323c6a07d] socks forwarding established\n2025-07-14 18:24:51.987 [info] [command][77fd2dc8-8ad8-43fa-87cb-d1d1370f3b9f] Process exited with code 0\n2025-07-14 18:24:51.988 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][5894fa06-17b7-4bb4-b242-8b2323c6a07d] socks connection closed\n2025-07-14 18:24:51.988 [info] [command][77fd2dc8-8ad8-43fa-87cb-d1d1370f3b9f] Socket close event received\n2025-07-14 18:24:52.006 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53358 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:25:51.994 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:25:51.997 [info] [command][9e05db60-3c29-4b45-8a22-aafe584f0b7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""9e05db60-3c29-4b45-8a22-aafe584f0b7a""}\n2025-07-14 18:25:51.998 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6786a12a-2ce1-4bbb-af4b-2012f45f91e0] received connection request\n2025-07-14 18:25:51.999 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:25:52.147 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6786a12a-2ce1-4bbb-af4b-2012f45f91e0] socks forwarding established\n2025-07-14 18:25:52.310 [info] [command][9e05db60-3c29-4b45-8a22-aafe584f0b7a] Process exited with code 0\n2025-07-14 18:25:52.310 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6786a12a-2ce1-4bbb-af4b-2012f45f91e0] socks connection closed\n2025-07-14 18:25:52.311 [info] [command][9e05db60-3c29-4b45-8a22-aafe584f0b7a] Socket close event received\n2025-07-14 18:25:52.332 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53393 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:26:52.317 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:26:52.318 [info] [command][374dfe88-a3bf-42bf-b2d5-c7a59120097d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""374dfe88-a3bf-42bf-b2d5-c7a59120097d""}\n2025-07-14 18:26:52.319 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][19ff6167-d4c9-4b2b-8a1e-fdddabf96a3a] received connection request\n2025-07-14 18:26:52.319 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:26:52.338 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][19ff6167-d4c9-4b2b-8a1e-fdddabf96a3a] socks forwarding established\n2025-07-14 18:26:52.371 [info] [command][374dfe88-a3bf-42bf-b2d5-c7a59120097d] Process exited with code 0\n2025-07-14 18:26:52.371 [info] [command][374dfe88-a3bf-42bf-b2d5-c7a59120097d] Socket close event received\n2025-07-14 18:26:52.372 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][19ff6167-d4c9-4b2b-8a1e-fdddabf96a3a] socks connection closed\n2025-07-14 18:26:52.390 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53409 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:27:52.378 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:27:52.379 [info] [command][ea5838b9-f622-4e92-b98d-99636a7424d3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""ea5838b9-f622-4e92-b98d-99636a7424d3""}\n2025-07-14 18:27:52.380 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][aa239da4-aaac-4540-91cb-4864369c62e2] received connection request\n2025-07-14 18:27:52.381 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:27:52.404 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][aa239da4-aaac-4540-91cb-4864369c62e2] socks forwarding established\n2025-07-14 18:27:52.517 [info] [command][ea5838b9-f622-4e92-b98d-99636a7424d3] Process exited with code 0\n2025-07-14 18:27:52.517 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][aa239da4-aaac-4540-91cb-4864369c62e2] socks connection closed\n2025-07-14 18:27:52.517 [info] [command][ea5838b9-f622-4e92-b98d-99636a7424d3] Socket close event received\n2025-07-14 18:27:52.534 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53438 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:28:52.523 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:28:52.525 [info] [command][20441526-3da4-4324-a5d3-0aead9af1829] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""20441526-3da4-4324-a5d3-0aead9af1829""}\n2025-07-14 18:28:52.526 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][7f6c9500-1fbd-40c9-bdc3-cd84de233917] received connection request\n2025-07-14 18:28:52.528 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:28:52.548 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7f6c9500-1fbd-40c9-bdc3-cd84de233917] socks forwarding established\n2025-07-14 18:28:52.580 [info] [command][20441526-3da4-4324-a5d3-0aead9af1829] Process exited with code 0\n2025-07-14 18:28:52.581 [info] [command][20441526-3da4-4324-a5d3-0aead9af1829] Socket close event received\n2025-07-14 18:28:52.581 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][7f6c9500-1fbd-40c9-bdc3-cd84de233917] socks connection closed\n2025-07-14 18:28:52.600 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53459 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:29:52.585 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:29:52.585 [info] [command][c783b8fc-929d-4884-a8f8-a0f3aa0220b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""c783b8fc-929d-4884-a8f8-a0f3aa0220b4""}\n2025-07-14 18:29:52.586 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][6e5e4599-60c8-4a66-a461-3cd2cb5b4ecf] received connection request\n2025-07-14 18:29:52.586 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:29:52.604 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6e5e4599-60c8-4a66-a461-3cd2cb5b4ecf] socks forwarding established\n2025-07-14 18:29:52.636 [info] [command][c783b8fc-929d-4884-a8f8-a0f3aa0220b4] Process exited with code 0\n2025-07-14 18:29:52.636 [info] [command][c783b8fc-929d-4884-a8f8-a0f3aa0220b4] Socket close event received\n2025-07-14 18:29:52.637 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][6e5e4599-60c8-4a66-a461-3cd2cb5b4ecf] socks connection closed\n2025-07-14 18:29:52.654 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53483 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:30:52.643 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:30:52.645 [info] [command][7bb626dd-b8bf-4c6e-a58c-9919bc3c8fcd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""7bb626dd-b8bf-4c6e-a58c-9919bc3c8fcd""}\n2025-07-14 18:30:52.646 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][e6bb07ab-a684-4622-8c57-aedde2014359] received connection request\n2025-07-14 18:30:52.647 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:30:52.667 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e6bb07ab-a684-4622-8c57-aedde2014359] socks forwarding established\n2025-07-14 18:30:52.699 [info] [command][7bb626dd-b8bf-4c6e-a58c-9919bc3c8fcd] Process exited with code 0\n2025-07-14 18:30:52.700 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][e6bb07ab-a684-4622-8c57-aedde2014359] socks connection closed\n2025-07-14 18:30:52.700 [info] [command][7bb626dd-b8bf-4c6e-a58c-9919bc3c8fcd] Socket close event received\n2025-07-14 18:30:52.719 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53515 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:31:52.707 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:31:52.708 [info] [command][bd3a3e1d-8c8a-44a9-ba5a-4dcf7cd1e281] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""bd3a3e1d-8c8a-44a9-ba5a-4dcf7cd1e281""}\n2025-07-14 18:31:52.709 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][bc60ff1e-d819-4fdc-bed8-27a6df29e4a6] received connection request\n2025-07-14 18:31:52.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:31:52.732 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][bc60ff1e-d819-4fdc-bed8-27a6df29e4a6] socks forwarding established\n2025-07-14 18:31:52.767 [info] [command][bd3a3e1d-8c8a-44a9-ba5a-4dcf7cd1e281] Process exited with code 0\n2025-07-14 18:31:52.768 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][bc60ff1e-d819-4fdc-bed8-27a6df29e4a6] socks connection closed\n2025-07-14 18:31:52.768 [info] [command][bd3a3e1d-8c8a-44a9-ba5a-4dcf7cd1e281] Socket close event received\n2025-07-14 18:31:52.786 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53533 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:32:52.774 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:32:52.776 [info] [command][7569681d-4003-432a-817b-3ed657ed44e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""7569681d-4003-432a-817b-3ed657ed44e7""}\n2025-07-14 18:32:52.777 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][ef79bd3a-ff10-4e00-8711-a4b3ad1dfdd8] received connection request\n2025-07-14 18:32:52.777 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:32:52.795 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ef79bd3a-ff10-4e00-8711-a4b3ad1dfdd8] socks forwarding established\n2025-07-14 18:32:52.827 [info] [command][7569681d-4003-432a-817b-3ed657ed44e7] Process exited with code 0\n2025-07-14 18:32:52.828 [info] [command][7569681d-4003-432a-817b-3ed657ed44e7] Socket close event received\n2025-07-14 18:32:52.828 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][ef79bd3a-ff10-4e00-8711-a4b3ad1dfdd8] socks connection closed\n2025-07-14 18:32:52.847 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53563 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:33:52.834 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:33:52.835 [info] [command][27d47f1d-f68f-4ef3-a8b6-fde150d077e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""27d47f1d-f68f-4ef3-a8b6-fde150d077e5""}\n2025-07-14 18:33:52.836 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:45899][f051403a-2ef9-4cfd-abfc-315a0b91b455] received connection request\n2025-07-14 18:33:52.837 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:33:52.925 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f051403a-2ef9-4cfd-abfc-315a0b91b455] socks forwarding established\n2025-07-14 18:33:53.092 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62450 -> 127.0.0.1:45899][f051403a-2ef9-4cfd-abfc-315a0b91b455] socks connection closed\n2025-07-14 18:33:53.093 [info] [command][27d47f1d-f68f-4ef3-a8b6-fde150d077e5] Process exited with code 0\n2025-07-14 18:33:53.093 [info] [command][27d47f1d-f68f-4ef3-a8b6-fde150d077e5] Socket close event received\n2025-07-14 18:33:53.109 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62450 for 127.0.0.1 port 45899, connect from 127.0.0.1 port 53578 to 127.0.0.1 port 62450, nchannels 6\n\n2025-07-14 18:33:59.341 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-14 18:33:59.341 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-14 18:33:59.351 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:40389][38ec42f8-7500-4c9e-9cdc-306f3c00262f] received connection request\n2025-07-14 18:33:59.436 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:40389][0c1d378f-4e5e-496f-b035-45341b58ab1c] received connection request\n2025-07-14 18:33:59.436 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:33:59.436 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:34:02.355 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-14 18:34:02.355 [error] Failed to connect to Cursor server at http://127.0.0.1:62463, attempt 1 of 3 This operation was aborted\n2025-07-14 18:34:02.358 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:40389][39013f1f-01d8-445a-8145-1d238e5100bf] received connection request\n2025-07-14 18:34:02.358 [info] (ssh_tunnel) stderr: debug1: Connection to port 62450 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 18:34:02.426 [info] Terminating existing SSH process with pid: 28062\n2025-07-14 18:34:02.426 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-14 18:34:02.427 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:34:02.427 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-14 18:34:02.428 [error] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62450 -> 127.0.0.1:40389][38ec42f8-7500-4c9e-9cdc-306f3c00262f] error while creating socks forwarding Socket closed\n2025-07-14 18:34:02.428 [error] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62450 -> 127.0.0.1:40389][0c1d378f-4e5e-496f-b035-45341b58ab1c] error while creating socks forwarding Socket closed\n2025-07-14 18:34:02.428 [error] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62450 -> 127.0.0.1:40389][39013f1f-01d8-445a-8145-1d238e5100bf] error while creating socks forwarding Socket closed\n2025-07-14 18:34:02.428 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62450 -> 127.0.0.1:40389][2397fce9-4856-4ae1-bf3c-8bf42f6ec0a7] socks connection closed\n2025-07-14 18:34:02.428 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62450 -> 127.0.0.1:40389][87d9f55a-0bd2-4011-8c76-310ff60680a5] socks connection closed\n2025-07-14 18:34:02.432 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_31851.sh"" | ssh -v -T -D 53589 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:34:02.432 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:34:02.432 [info] Waiting for server to install via process(37148)...\n2025-07-14 18:34:02.439 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-14 18:34:02.439 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:34:02.439 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:34:02.439 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:34:02.440 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:34:02.441 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:34:02.442 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:34:02.442 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:34:02.442 [info] Retrying connection in 5 seconds...\n2025-07-14 18:34:03.366 [error] Failed to connect to Cursor server at http://127.0.0.1:62463, attempt 2 of 3 This operation was aborted\n2025-07-14 18:34:04.378 [error] Failed to connect to Cursor server at http://127.0.0.1:62463, attempt 3 of 3 This operation was aborted\n2025-07-14 18:34:04.378 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-14 18:34:04.378 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-14 18:36:42.932 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_31851.sh\n2025-07-14 18:36:42.938 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-14 18:36:42.939 [error] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:undefined][4473f5d1-5693-4107-a47a-7173fa8ba5e9] remote server not configured\n2025-07-14 18:36:42.940 [info] [command][3c0f7d68-85fb-4fb9-b828-3aab8668678b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""79fd9113-f3ad-4a7c-8b69-7098e18fecfb"",""id"":""3c0f7d68-85fb-4fb9-b828-3aab8668678b""}\n2025-07-14 18:36:42.941 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:36:42.942 [error] [command][3c0f7d68-85fb-4fb9-b828-3aab8668678b] Socket error: Error: read ECONNRESET\n2025-07-14 18:36:42.942 [info] [command][3c0f7d68-85fb-4fb9-b828-3aab8668678b] Socket close event received\n2025-07-14 18:36:43.011 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_24022.sh"" | ssh -v -T -D 53591 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:36:43.011 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:36:43.011 [info] Waiting for server to install via process(37153)...\n2025-07-14 18:36:43.021 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-14 18:36:43.021 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:36:43.021 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:36:43.021 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:36:43.021 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:36:43.023 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:36:43.024 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:36:43.024 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:36:43.024 [info] Retrying connection in 5 seconds...\n2025-07-14 18:36:48.035 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_24022.sh\n2025-07-14 18:36:48.036 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:36:48.038 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44360.sh"" | ssh -v -T -D 53593 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:36:48.039 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:36:48.039 [info] Waiting for server to install via process(37161)...\n2025-07-14 18:36:48.051 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-14 18:36:48.052 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:36:48.052 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:36:48.052 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:36:48.052 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:36:48.054 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:36:48.055 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:36:48.055 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:36:48.055 [info] Retrying connection in 5 seconds...\n2025-07-14 18:36:53.062 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44360.sh\n2025-07-14 18:36:53.063 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:36:53.066 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_29973.sh"" | ssh -v -T -D 53595 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:36:53.067 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:36:53.067 [info] Waiting for server to install via process(37170)...\n2025-07-14 18:36:53.079 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-14 18:36:53.079 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:36:53.080 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:36:53.080 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:36:53.080 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:36:53.082 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:36:53.083 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:36:53.083 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:36:53.083 [info] Retrying connection in 5 seconds...\n2025-07-14 18:37:08.406 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_29973.sh\n2025-07-14 18:37:08.407 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:37:08.409 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_86245.sh"" | ssh -v -T -D 53596 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:37:08.410 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:37:08.410 [info] Waiting for server to install via process(37177)...\n2025-07-14 18:37:08.425 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-14 18:37:08.425 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:37:08.426 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:37:08.426 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:37:08.426 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:37:08.428 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:37:08.428 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:37:08.429 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:37:08.429 [info] Retrying connection in 5 seconds...\n2025-07-14 18:37:13.439 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_86245.sh\n2025-07-14 18:37:13.439 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:37:13.443 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_710.sh"" | ssh -v -T -D 53598 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:37:13.443 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:37:13.443 [info] Waiting for server to install via process(37183)...\n2025-07-14 18:37:13.459 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-14 18:37:13.459 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:37:13.460 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\n\n2025-07-14 18:37:13.460 [info] (ssh_tunnel) stderr: debug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:37:13.460 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\ndebug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:37:13.462 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:37:13.463 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:37:13.464 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:37:13.464 [info] Retrying connection in 5 seconds...\n2025-07-14 18:37:18.473 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_710.sh\n2025-07-14 18:37:18.474 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:37:18.480 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_66474.sh"" | ssh -v -T -D 53599 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:37:18.480 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:37:18.480 [info] Waiting for server to install via process(37188)...\n2025-07-14 18:37:18.499 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-14 18:37:18.499 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:37:18.499 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:37:18.499 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:37:18.500 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:37:18.502 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:37:18.502 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:37:18.502 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:37:18.502 [info] Retrying connection in 5 seconds...\n2025-07-14 18:37:23.513 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_66474.sh\n2025-07-14 18:37:23.514 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:37:23.520 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35878.sh"" | ssh -v -T -D 53600 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:37:23.520 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:37:23.520 [info] Waiting for server to install via process(37192)...\n2025-07-14 18:37:23.538 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-14 18:37:23.538 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:37:23.538 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:37:23.538 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:37:23.539 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:37:23.540 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:37:23.541 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:37:23.541 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:37:23.541 [info] Retrying connection in 5 seconds...\n2025-07-14 18:37:28.551 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35878.sh\n2025-07-14 18:37:28.552 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:37:28.556 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_54270.sh"" | ssh -v -T -D 53602 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:37:28.556 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:37:28.556 [info] Waiting for server to install via process(37199)...\n2025-07-14 18:37:28.573 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-14 18:37:28.573 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:37:28.574 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:37:28.574 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:37:28.574 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:37:28.576 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:37:28.577 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:37:28.577 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:37:28.577 [info] Retrying connection in 5 seconds...\n2025-07-14 18:37:33.583 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_54270.sh\n2025-07-14 18:37:33.584 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:37:33.587 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_36675.sh"" | ssh -v -T -D 53603 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:37:33.587 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:37:33.587 [info] Waiting for server to install via process(37204)...\n2025-07-14 18:37:33.606 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-14 18:37:33.606 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:37:33.607 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:37:33.607 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:37:33.607 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:37:33.610 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:37:33.611 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:37:33.611 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:37:33.611 [info] Retrying connection in 5 seconds...\n2025-07-14 18:37:38.621 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_36675.sh\n2025-07-14 18:37:38.622 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:37:38.625 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68363.sh"" | ssh -v -T -D 53604 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:37:38.625 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:37:38.625 [info] Waiting for server to install via process(37208)...\n2025-07-14 18:37:38.639 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-14 18:37:38.639 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:37:38.640 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:37:38.640 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:37:38.640 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:37:38.643 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:37:38.644 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:37:38.644 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:37:38.644 [info] Retrying connection in 5 seconds...\n2025-07-14 18:38:55.722 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68363.sh\n2025-07-14 18:38:55.722 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:38:55.788 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_90555.sh"" | ssh -v -T -D 53605 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:38:55.788 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:38:55.788 [info] Waiting for server to install via process(37212)...\n2025-07-14 18:38:55.794 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-14 18:38:55.794 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:38:55.795 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:38:55.795 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:38:55.795 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:38:55.796 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:38:55.797 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:38:55.797 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:38:55.797 [info] Retrying connection in 5 seconds...\n2025-07-14 18:39:00.797 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_90555.sh\n2025-07-14 18:39:00.797 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:39:00.799 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_62487.sh"" | ssh -v -T -D 53606 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:39:00.800 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:39:00.800 [info] Waiting for server to install via process(37217)...\n2025-07-14 18:39:00.811 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-14 18:39:00.811 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:39:00.811 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:39:00.811 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:39:00.811 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:39:00.813 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:39:00.814 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:39:00.814 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:39:00.814 [info] Retrying connection in 5 seconds...\n2025-07-14 18:39:05.819 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_62487.sh\n2025-07-14 18:39:05.824 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-f6oY6V/socket.sock\n2025-07-14 18:39:05.835 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_40005.sh"" | ssh -v -T -D 53611 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 18:39:05.835 [info] Started installation script. Waiting for it to finish...\n2025-07-14 18:39:05.835 [info] Waiting for server to install via process(37221)...\n2025-07-14 18:39:05.865 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-14 18:39:05.865 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-14 18:39:05.865 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 18:39:05.865 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 18:39:05.865 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 18:39:05.866 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 18:39:05.867 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 18:39:05.868 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 18:39:05.868 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:39:05.868 [error] Failed to connect after 14 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 18:39:05.868 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_40005.sh\n2025-07-14 18:39:05.869 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 20:09:13.524 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-14 20:09:13.539 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-O0Gfsb/socket.sock\n2025-07-14 20:09:13.540 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-14 20:09:13.542 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-O0Gfsb/socket.sock\n2025-07-14 20:09:13.544 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44034.sh"" | ssh -v -T -D 54505 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 20:09:13.544 [info] Started installation script. Waiting for it to finish...\n2025-07-14 20:09:13.544 [info] Waiting for server to install via process(37749)...\n2025-07-14 20:09:13.549 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-14 20:09:13.549 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-14 20:09:13.549 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 20:09:13.550 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 20:09:13.550 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 20:09:13.551 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\n\n2025-07-14 20:09:13.551 [info] (ssh_tunnel) stderr: debug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 20:09:13.715 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-14 20:09:13.715 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-14 20:09:13.716 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-14 20:09:13.716 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-14 20:09:13.716 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-14 20:09:13.805 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-14 20:09:13.807 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\n\n2025-07-14 20:09:13.807 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-14 20:09:14.033 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\n\n2025-07-14 20:09:14.034 [info] (ssh_tunnel) stderr: debug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-14 20:09:14.035 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-14 20:09:14.073 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-14 20:09:14.075 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-14 20:09:14.075 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-14 20:09:14.080 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-14 20:09:14.080 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-14 20:09:14.232 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-14 20:09:14.430 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-14 20:09:14.435 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-14 20:09:14.435 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-14 20:09:15.046 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\n\n2025-07-14 20:09:15.046 [info] (ssh_tunnel) stderr: debug1: Next authentication method: keyboard-interactive\n\n2025-07-14 20:09:15.085 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-14 20:09:15.339 [info] Askpass server received request: POST /\n2025-07-14 20:09:15.339 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-14 20:09:15.339 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-14 20:09:39.933 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-14 20:09:40.031 [info] Askpass server received request: POST /\n2025-07-14 20:09:40.031 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-14 20:09:40.031 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-14 20:09:46.409 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.20]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:54505 forwarded to remote address socks:0\n\n2025-07-14 20:09:46.410 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 54505.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 54505.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\n\n2025-07-14 20:09:46.412 [info] (ssh_tunnel) stderr: debug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\n\n2025-07-14 20:09:46.413 [info] (ssh_tunnel) stderr: debug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-14 20:09:46.905 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-14 20:09:46.906 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-14 20:09:46.917 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-14 20:09:46.931 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-14 20:09:49.656 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-14 20:09:49.764 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-14 20:09:49.787 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-14 20:09:49.862 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-14 20:09:49.877 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-14 20:09:49.985 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-14 20:09:50.005 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-14 20:09:50.023 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-14 20:09:50.035 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-14 20:09:50.053 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js 3190eef4-868b-48f5-a572-0de621182d06\n\n2025-07-14 20:09:50.061 [info] (ssh_tunnel) stdout: Multiplex server started with PID 3176899 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-14 20:09:50.061 [info] (ssh_tunnel) stdout: Reading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\n\n2025-07-14 20:09:50.067 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-14 20:09:50.598 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-14 20:09:50.718 [info] (ssh_tunnel) stdout: Code server script is not running\n\n2025-07-14 20:09:50.729 [info] (ssh_tunnel) stdout: Creating code server token file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-14 20:09:50.740 [info] (ssh_tunnel) stdout: Starting code server script /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2 &\n\n2025-07-14 20:09:50.747 [info] (ssh_tunnel) stdout: Code server started with PID 3176944 and wrote pid to file /run/user/996262/cursor-remote-code.pid.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-14 20:09:50.752 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-14 20:09:51.297 [info] (ssh_tunnel) stdout: d517a3861b84340686ed99de: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==34749==\nmultiplexConnectionToken==3190eef4-868b-48f5-a572-0de621182d06==\ncodeListeningOn==33755==\ncodeConnectionToken==28d7b665-c3f9-4bbf-9a04-2b8f980ae717==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\nd517a3861b84340686ed99de: end\n\n2025-07-14 20:09:51.299 [info] Server install command exit code: 0\n2025-07-14 20:09:51.299 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44034.sh\n2025-07-14 20:09:51.300 [info] [forwarding][code] creating new forwarding server\n2025-07-14 20:09:51.300 [info] [forwarding][code] server listening on 54517\n2025-07-14 20:09:51.300 [info] [forwarding][code] Set up server\n2025-07-14 20:09:51.300 [info] [remote-ssh] codeListeningOn (remote=33755; local=54517) codeConnectionToken: 28d7b665-c3f9-4bbf-9a04-2b8f980ae717\n2025-07-14 20:09:51.300 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-14 20:09:51.300 [info] [forwarding][multiplex] server listening on 54518\n2025-07-14 20:09:51.300 [info] [forwarding][multiplex] Set up server\n2025-07-14 20:09:51.302 [info] [remote-ssh] multiplexListeningOn (remote=34749; local=54518) multiplexConnectionToken: 3190eef4-868b-48f5-a572-0de621182d06\n2025-07-14 20:09:51.302 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:09:51.306 [info] [command][eb7458f2-31ea-4710-8c88-f77715de0feb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""eb7458f2-31ea-4710-8c88-f77715de0feb""}\n2025-07-14 20:09:51.307 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][a712080d-e502-4fba-a035-6c160a2a0743] received connection request\n2025-07-14 20:09:51.307 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:09:51.314 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-14 20:09:51.316 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:33755][bb2995e3-c06e-4473-8395-edba8fc67820] received connection request\n2025-07-14 20:09:51.316 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:09:51.342 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][a712080d-e502-4fba-a035-6c160a2a0743] socks forwarding established\n2025-07-14 20:09:51.346 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:54505 -> 127.0.0.1:33755][bb2995e3-c06e-4473-8395-edba8fc67820] socks forwarding established\n2025-07-14 20:09:51.397 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][a712080d-e502-4fba-a035-6c160a2a0743] socks connection closed\n2025-07-14 20:09:51.397 [info] [command][eb7458f2-31ea-4710-8c88-f77715de0feb] Process exited with code 0\n2025-07-14 20:09:51.397 [info] [command][eb7458f2-31ea-4710-8c88-f77715de0feb] Socket close event received\n2025-07-14 20:09:51.426 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54520 to 127.0.0.1 port 54505, nchannels 5\n\n2025-07-14 20:09:51.563 [info] Successfully connected to Cursor server at http://127.0.0.1:54517/version\n2025-07-14 20:09:51.563 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-14 20:09:51.564 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][5730ec8d-af9e-46dd-abd0-4df4fc6cc739] received connection request\n2025-07-14 20:09:51.564 [info] [command][2007d814-8e60-4bcc-8bf9-7ef59763d996] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""2007d814-8e60-4bcc-8bf9-7ef59763d996""}\n2025-07-14 20:09:51.564 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:09:51.593 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][5730ec8d-af9e-46dd-abd0-4df4fc6cc739] socks forwarding established\n2025-07-14 20:09:51.632 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][5730ec8d-af9e-46dd-abd0-4df4fc6cc739] socks connection closed\n2025-07-14 20:09:51.632 [info] [command][2007d814-8e60-4bcc-8bf9-7ef59763d996] Process exited with code 0\n2025-07-14 20:09:51.632 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-14 20:09:51.633 [info] [remote-ssh] Resolved exec server. Socks port: 54505\n2025-07-14 20:09:51.633 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":54517,""connectionToken"":""28d7b665-c3f9-4bbf-9a04-2b8f980ae717"",""extensionHostEnv"":{}}. Socks port: 54505\n2025-07-14 20:09:51.633 [info] [command][2007d814-8e60-4bcc-8bf9-7ef59763d996] Socket close event received\n2025-07-14 20:09:51.661 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54524 to 127.0.0.1 port 54505, nchannels 5\n\n2025-07-14 20:09:51.673 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:33755][ba7946fc-db5e-4682-887c-6575e858520b] received connection request\n2025-07-14 20:09:51.674 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:09:51.786 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:54505 -> 127.0.0.1:33755][ba7946fc-db5e-4682-887c-6575e858520b] socks forwarding established\n2025-07-14 20:09:51.831 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:33755][eefbdc61-c4c3-4420-99d7-464de70c93e5] received connection request\n2025-07-14 20:09:51.831 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:09:51.860 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:54505 -> 127.0.0.1:33755][eefbdc61-c4c3-4420-99d7-464de70c93e5] socks forwarding established\n2025-07-14 20:09:53.505 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-14 20:09:54.729 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 33755, connect from 127.0.0.1 port 54522 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:09:54.729 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:54505 -> 127.0.0.1:33755][bb2995e3-c06e-4473-8395-edba8fc67820] socks connection closed\n2025-07-14 20:09:59.763 [info] [tunnel-forwarding][127.0.0.1:8791 -> localhost:8791] server listening\n2025-07-14 20:10:51.403 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:10:51.405 [info] [command][04f69c2b-d520-460e-80e8-6450e11b51b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""04f69c2b-d520-460e-80e8-6450e11b51b5""}\n2025-07-14 20:10:51.406 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][daa16d3d-c554-4ba4-bcb3-46afb9d7e220] received connection request\n2025-07-14 20:10:51.407 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:10:51.504 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][daa16d3d-c554-4ba4-bcb3-46afb9d7e220] socks forwarding established\n2025-07-14 20:10:51.574 [info] [command][04f69c2b-d520-460e-80e8-6450e11b51b5] Process exited with code 0\n2025-07-14 20:10:51.575 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][daa16d3d-c554-4ba4-bcb3-46afb9d7e220] socks connection closed\n2025-07-14 20:10:51.575 [info] [command][04f69c2b-d520-460e-80e8-6450e11b51b5] Socket close event received\n2025-07-14 20:10:51.603 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54601 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:11:51.579 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:11:51.580 [info] [command][1d94f784-81dd-42e9-956c-821b22764230] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""1d94f784-81dd-42e9-956c-821b22764230""}\n2025-07-14 20:11:51.581 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][48307f08-00e5-4405-a6e5-a07bf69addd1] received connection request\n2025-07-14 20:11:51.581 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:11:51.612 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][48307f08-00e5-4405-a6e5-a07bf69addd1] socks forwarding established\n2025-07-14 20:11:51.652 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][48307f08-00e5-4405-a6e5-a07bf69addd1] socks connection closed\n2025-07-14 20:11:51.652 [info] [command][1d94f784-81dd-42e9-956c-821b22764230] Process exited with code 0\n2025-07-14 20:11:51.652 [info] [command][1d94f784-81dd-42e9-956c-821b22764230] Socket close event received\n2025-07-14 20:11:51.678 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54645 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:12:51.654 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:12:51.654 [info] [command][e7f9ba68-5760-4aca-8128-3b90958485b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""e7f9ba68-5760-4aca-8128-3b90958485b5""}\n2025-07-14 20:12:51.655 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][3957a2b1-7ab2-40a3-9840-b8ba8232200a] received connection request\n2025-07-14 20:12:51.655 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:12:51.686 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][3957a2b1-7ab2-40a3-9840-b8ba8232200a] socks forwarding established\n2025-07-14 20:12:51.728 [info] [command][e7f9ba68-5760-4aca-8128-3b90958485b5] Process exited with code 0\n2025-07-14 20:12:51.728 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][3957a2b1-7ab2-40a3-9840-b8ba8232200a] socks connection closed\n2025-07-14 20:12:51.729 [info] [command][e7f9ba68-5760-4aca-8128-3b90958485b5] Socket close event received\n2025-07-14 20:12:51.756 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54677 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:13:51.732 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:13:51.733 [info] [command][6b7603c8-74a5-4ce0-8d5d-0a2819c35902] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""6b7603c8-74a5-4ce0-8d5d-0a2819c35902""}\n2025-07-14 20:13:51.734 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][a5c7dacc-b71a-4a23-9b3c-a1ff49d9b22e] received connection request\n2025-07-14 20:13:51.734 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:13:51.772 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][a5c7dacc-b71a-4a23-9b3c-a1ff49d9b22e] socks forwarding established\n2025-07-14 20:13:51.814 [info] [command][6b7603c8-74a5-4ce0-8d5d-0a2819c35902] Process exited with code 0\n2025-07-14 20:13:51.814 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][a5c7dacc-b71a-4a23-9b3c-a1ff49d9b22e] socks connection closed\n2025-07-14 20:13:51.814 [info] [command][6b7603c8-74a5-4ce0-8d5d-0a2819c35902] Socket close event received\n2025-07-14 20:13:51.840 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54703 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:14:51.821 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:14:51.822 [info] [command][60d2d944-b301-46ee-8eb1-70471896f3c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""60d2d944-b301-46ee-8eb1-70471896f3c0""}\n2025-07-14 20:14:51.823 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][90aeb57c-cea7-46a0-affc-546a9c6d7d62] received connection request\n2025-07-14 20:14:51.824 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:14:51.854 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][90aeb57c-cea7-46a0-affc-546a9c6d7d62] socks forwarding established\n2025-07-14 20:14:51.893 [info] [command][60d2d944-b301-46ee-8eb1-70471896f3c0] Process exited with code 0\n2025-07-14 20:14:51.893 [info] [command][60d2d944-b301-46ee-8eb1-70471896f3c0] Socket close event received\n2025-07-14 20:14:51.893 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][90aeb57c-cea7-46a0-affc-546a9c6d7d62] socks connection closed\n2025-07-14 20:14:51.919 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54759 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:15:51.899 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:15:51.901 [info] [command][2e3c0d79-a237-4491-bbf5-4ec1871f0acb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""2e3c0d79-a237-4491-bbf5-4ec1871f0acb""}\n2025-07-14 20:15:51.902 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][39a5a57f-881c-4731-9dc4-e6a7856608d8] received connection request\n2025-07-14 20:15:51.902 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:15:51.930 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][39a5a57f-881c-4731-9dc4-e6a7856608d8] socks forwarding established\n2025-07-14 20:15:51.969 [info] [command][2e3c0d79-a237-4491-bbf5-4ec1871f0acb] Process exited with code 0\n2025-07-14 20:15:51.970 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][39a5a57f-881c-4731-9dc4-e6a7856608d8] socks connection closed\n2025-07-14 20:15:51.970 [info] [command][2e3c0d79-a237-4491-bbf5-4ec1871f0acb] Socket close event received\n2025-07-14 20:15:51.996 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54777 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:16:51.975 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:16:51.977 [info] [command][3a9343ad-c81b-4793-ac26-7ad243b22f46] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""3a9343ad-c81b-4793-ac26-7ad243b22f46""}\n2025-07-14 20:16:51.978 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][df7915b6-1e7e-4ced-b3dc-dababe09f72a] received connection request\n2025-07-14 20:16:51.979 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:16:52.064 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][df7915b6-1e7e-4ced-b3dc-dababe09f72a] socks forwarding established\n2025-07-14 20:16:52.168 [info] [command][3a9343ad-c81b-4793-ac26-7ad243b22f46] Process exited with code 0\n2025-07-14 20:16:52.168 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][df7915b6-1e7e-4ced-b3dc-dababe09f72a] socks connection closed\n2025-07-14 20:16:52.168 [info] [command][3a9343ad-c81b-4793-ac26-7ad243b22f46] Socket close event received\n2025-07-14 20:16:52.196 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54789 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:17:52.175 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:17:52.177 [info] [command][612bf198-ca96-4a5c-bb8c-cc2a0a5fdc97] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""612bf198-ca96-4a5c-bb8c-cc2a0a5fdc97""}\n2025-07-14 20:17:52.178 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][7e695ee1-41ed-4947-9ea8-a0e912c5100a] received connection request\n2025-07-14 20:17:52.179 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:17:52.209 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][7e695ee1-41ed-4947-9ea8-a0e912c5100a] socks forwarding established\n2025-07-14 20:17:52.251 [info] [command][612bf198-ca96-4a5c-bb8c-cc2a0a5fdc97] Process exited with code 0\n2025-07-14 20:17:52.252 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][7e695ee1-41ed-4947-9ea8-a0e912c5100a] socks connection closed\n2025-07-14 20:17:52.252 [info] [command][612bf198-ca96-4a5c-bb8c-cc2a0a5fdc97] Socket close event received\n2025-07-14 20:17:52.279 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54808 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:18:52.258 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:18:52.260 [info] [command][b5511bff-8573-474d-828d-aecdf5af818f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""b5511bff-8573-474d-828d-aecdf5af818f""}\n2025-07-14 20:18:52.260 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][b60ae347-d6fa-4633-b5ce-86f55fcfe7f9] received connection request\n2025-07-14 20:18:52.261 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:18:52.295 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][b60ae347-d6fa-4633-b5ce-86f55fcfe7f9] socks forwarding established\n2025-07-14 20:18:52.337 [info] [command][b5511bff-8573-474d-828d-aecdf5af818f] Process exited with code 0\n2025-07-14 20:18:52.338 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][b60ae347-d6fa-4633-b5ce-86f55fcfe7f9] socks connection closed\n2025-07-14 20:18:52.338 [info] [command][b5511bff-8573-474d-828d-aecdf5af818f] Socket close event received\n2025-07-14 20:18:52.365 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54826 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:19:52.340 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:19:52.341 [info] [command][c0a63b16-bc2a-403d-80cf-48d8b53a8de3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""c0a63b16-bc2a-403d-80cf-48d8b53a8de3""}\n2025-07-14 20:19:52.342 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][4f352e24-e023-4ffa-8708-4d34fabf40a8] received connection request\n2025-07-14 20:19:52.343 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:19:52.658 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][4f352e24-e023-4ffa-8708-4d34fabf40a8] socks forwarding established\n2025-07-14 20:19:52.699 [info] [command][c0a63b16-bc2a-403d-80cf-48d8b53a8de3] Process exited with code 0\n2025-07-14 20:19:52.699 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][4f352e24-e023-4ffa-8708-4d34fabf40a8] socks connection closed\n2025-07-14 20:19:52.699 [info] [command][c0a63b16-bc2a-403d-80cf-48d8b53a8de3] Socket close event received\n2025-07-14 20:19:52.848 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54869 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:20:52.701 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:20:52.704 [info] [command][45454e53-aa34-4a6a-ae7c-bac226fb1615] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""45454e53-aa34-4a6a-ae7c-bac226fb1615""}\n2025-07-14 20:20:52.704 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][451d2fb7-83dc-47e5-b6a3-2f4a4818b8e2] received connection request\n2025-07-14 20:20:52.705 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\n\n2025-07-14 20:20:52.706 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:20:52.733 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][451d2fb7-83dc-47e5-b6a3-2f4a4818b8e2] socks forwarding established\n2025-07-14 20:20:52.775 [info] [command][45454e53-aa34-4a6a-ae7c-bac226fb1615] Process exited with code 0\n2025-07-14 20:20:52.775 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][451d2fb7-83dc-47e5-b6a3-2f4a4818b8e2] socks connection closed\n2025-07-14 20:20:52.776 [info] [command][45454e53-aa34-4a6a-ae7c-bac226fb1615] Socket close event received\n2025-07-14 20:20:52.802 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54892 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:21:52.782 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:21:52.784 [info] [command][ea4e410f-6d4c-4eaf-9d53-b5ebdb0361f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""ea4e410f-6d4c-4eaf-9d53-b5ebdb0361f2""}\n2025-07-14 20:21:52.785 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][81e4768a-6be4-4554-aaff-8a33bf756242] received connection request\n2025-07-14 20:21:52.786 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:21:52.814 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][81e4768a-6be4-4554-aaff-8a33bf756242] socks forwarding established\n2025-07-14 20:21:52.856 [info] [command][ea4e410f-6d4c-4eaf-9d53-b5ebdb0361f2] Process exited with code 0\n2025-07-14 20:21:52.857 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][81e4768a-6be4-4554-aaff-8a33bf756242] socks connection closed\n2025-07-14 20:21:52.857 [info] [command][ea4e410f-6d4c-4eaf-9d53-b5ebdb0361f2] Socket close event received\n2025-07-14 20:21:52.883 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54909 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:22:52.863 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:22:52.865 [info] [command][52fa0755-29ea-4465-8b9b-fb1a602baaed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""52fa0755-29ea-4465-8b9b-fb1a602baaed""}\n2025-07-14 20:22:52.865 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][ddd27832-ff54-4787-8b51-f1f52e6ccbe5] received connection request\n2025-07-14 20:22:52.866 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:22:52.896 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][ddd27832-ff54-4787-8b51-f1f52e6ccbe5] socks forwarding established\n2025-07-14 20:22:52.937 [info] [command][52fa0755-29ea-4465-8b9b-fb1a602baaed] Process exited with code 0\n2025-07-14 20:22:52.938 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][ddd27832-ff54-4787-8b51-f1f52e6ccbe5] socks connection closed\n2025-07-14 20:22:52.938 [info] [command][52fa0755-29ea-4465-8b9b-fb1a602baaed] Socket close event received\n2025-07-14 20:22:52.964 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54926 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:23:52.942 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:23:52.944 [info] [command][5d36364b-5e42-45e7-b5d1-09207b486d1f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""5d36364b-5e42-45e7-b5d1-09207b486d1f""}\n2025-07-14 20:23:52.945 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][5e2f83d6-9c95-4459-b786-7e9f57bd5705] received connection request\n2025-07-14 20:23:52.946 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:23:52.974 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][5e2f83d6-9c95-4459-b786-7e9f57bd5705] socks forwarding established\n2025-07-14 20:23:53.015 [info] [command][5d36364b-5e42-45e7-b5d1-09207b486d1f] Process exited with code 0\n2025-07-14 20:23:53.015 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][5e2f83d6-9c95-4459-b786-7e9f57bd5705] socks connection closed\n2025-07-14 20:23:53.015 [info] [command][5d36364b-5e42-45e7-b5d1-09207b486d1f] Socket close event received\n2025-07-14 20:23:53.043 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54942 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:24:53.022 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:24:53.024 [info] [command][47d5ae33-84fa-4330-85af-23f36227fc56] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""47d5ae33-84fa-4330-85af-23f36227fc56""}\n2025-07-14 20:24:53.025 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][459466ab-9989-459d-acd4-5ac76b0e3e13] received connection request\n2025-07-14 20:24:53.025 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:24:53.053 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][459466ab-9989-459d-acd4-5ac76b0e3e13] socks forwarding established\n2025-07-14 20:24:53.096 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][459466ab-9989-459d-acd4-5ac76b0e3e13] socks connection closed\n2025-07-14 20:24:53.096 [info] [command][47d5ae33-84fa-4330-85af-23f36227fc56] Process exited with code 0\n2025-07-14 20:24:53.096 [info] [command][47d5ae33-84fa-4330-85af-23f36227fc56] Socket close event received\n2025-07-14 20:24:53.124 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 54995 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:25:53.103 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:25:53.105 [info] [command][4cf6dd74-2528-4110-910e-745b3d2016a4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""4cf6dd74-2528-4110-910e-745b3d2016a4""}\n2025-07-14 20:25:53.106 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][5e81be22-bfcc-4176-a8f1-ae2e39c9fb90] received connection request\n2025-07-14 20:25:53.107 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:25:53.133 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][5e81be22-bfcc-4176-a8f1-ae2e39c9fb90] socks forwarding established\n2025-07-14 20:25:53.174 [info] [command][4cf6dd74-2528-4110-910e-745b3d2016a4] Process exited with code 0\n2025-07-14 20:25:53.175 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][5e81be22-bfcc-4176-a8f1-ae2e39c9fb90] socks connection closed\n2025-07-14 20:25:53.175 [info] [command][4cf6dd74-2528-4110-910e-745b3d2016a4] Socket close event received\n2025-07-14 20:25:53.202 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 55008 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:26:53.181 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:26:53.183 [info] [command][7e6892e5-64bd-40cf-80ac-2a4de6778cb7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""7e6892e5-64bd-40cf-80ac-2a4de6778cb7""}\n2025-07-14 20:26:53.184 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][4cc6dc3f-cef2-4d8c-b358-1e87951de54f] received connection request\n2025-07-14 20:26:53.185 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:26:53.266 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][4cc6dc3f-cef2-4d8c-b358-1e87951de54f] socks forwarding established\n2025-07-14 20:26:53.422 [info] [command][7e6892e5-64bd-40cf-80ac-2a4de6778cb7] Process exited with code 0\n2025-07-14 20:26:53.422 [info] [command][7e6892e5-64bd-40cf-80ac-2a4de6778cb7] Socket close event received\n2025-07-14 20:26:53.423 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][4cc6dc3f-cef2-4d8c-b358-1e87951de54f] socks connection closed\n2025-07-14 20:26:53.452 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 55021 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:27:53.427 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:27:53.429 [info] [command][6b81f2d3-a6e9-420a-97d0-01af5d175b86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""6b81f2d3-a6e9-420a-97d0-01af5d175b86""}\n2025-07-14 20:27:53.430 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][aae0b988-8414-4819-9c42-ff9b23900bd3] received connection request\n2025-07-14 20:27:53.430 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:27:53.474 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][aae0b988-8414-4819-9c42-ff9b23900bd3] socks forwarding established\n2025-07-14 20:27:53.564 [info] [command][6b81f2d3-a6e9-420a-97d0-01af5d175b86] Process exited with code 0\n2025-07-14 20:27:53.564 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][aae0b988-8414-4819-9c42-ff9b23900bd3] socks connection closed\n2025-07-14 20:27:53.564 [info] [command][6b81f2d3-a6e9-420a-97d0-01af5d175b86] Socket close event received\n2025-07-14 20:27:53.591 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 55039 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:28:53.571 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:28:53.574 [info] [command][af2432c7-2978-4292-a1fb-5eadbc544ced] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""af2432c7-2978-4292-a1fb-5eadbc544ced""}\n2025-07-14 20:28:53.574 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][9c88d801-c9ee-4c57-95b8-d90a4d464324] received connection request\n2025-07-14 20:28:53.575 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:28:53.680 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][9c88d801-c9ee-4c57-95b8-d90a4d464324] socks forwarding established\n2025-07-14 20:28:53.723 [info] [command][af2432c7-2978-4292-a1fb-5eadbc544ced] Process exited with code 0\n2025-07-14 20:28:53.723 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][9c88d801-c9ee-4c57-95b8-d90a4d464324] socks connection closed\n2025-07-14 20:28:53.723 [info] [command][af2432c7-2978-4292-a1fb-5eadbc544ced] Socket close event received\n2025-07-14 20:28:53.754 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 55077 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:29:53.726 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:29:53.728 [info] [command][d8623c74-793b-4b3d-9e55-02f0f62a50da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""d8623c74-793b-4b3d-9e55-02f0f62a50da""}\n2025-07-14 20:29:53.729 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][33a184f9-d07a-4ad4-b2a7-c79c434a2a86] received connection request\n2025-07-14 20:29:53.729 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:29:53.759 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][33a184f9-d07a-4ad4-b2a7-c79c434a2a86] socks forwarding established\n2025-07-14 20:29:53.801 [info] [command][d8623c74-793b-4b3d-9e55-02f0f62a50da] Process exited with code 0\n2025-07-14 20:29:53.801 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][33a184f9-d07a-4ad4-b2a7-c79c434a2a86] socks connection closed\n2025-07-14 20:29:53.802 [info] [command][d8623c74-793b-4b3d-9e55-02f0f62a50da] Socket close event received\n2025-07-14 20:29:53.828 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 55135 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:30:53.803 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:30:53.805 [info] [command][3a55f0b9-61b4-452d-869f-dbdf92509736] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""3a55f0b9-61b4-452d-869f-dbdf92509736""}\n2025-07-14 20:30:53.805 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][79eeadbb-2f26-4b24-b01e-4bc72a14c200] received connection request\n2025-07-14 20:30:53.806 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:30:53.856 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][79eeadbb-2f26-4b24-b01e-4bc72a14c200] socks forwarding established\n2025-07-14 20:30:53.988 [info] [command][3a55f0b9-61b4-452d-869f-dbdf92509736] Process exited with code 0\n2025-07-14 20:30:53.989 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][79eeadbb-2f26-4b24-b01e-4bc72a14c200] socks connection closed\n2025-07-14 20:30:53.989 [info] [command][3a55f0b9-61b4-452d-869f-dbdf92509736] Socket close event received\n2025-07-14 20:30:54.037 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 55151 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:31:53.994 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:31:53.995 [info] [command][1d94e702-6453-4d6a-ae6f-ce9a381ed892] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""1d94e702-6453-4d6a-ae6f-ce9a381ed892""}\n2025-07-14 20:31:53.996 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][69ba247f-5f8e-4591-a559-6f1e965bb90b] received connection request\n2025-07-14 20:31:53.997 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:31:54.029 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][69ba247f-5f8e-4591-a559-6f1e965bb90b] socks forwarding established\n2025-07-14 20:31:54.070 [info] [command][1d94e702-6453-4d6a-ae6f-ce9a381ed892] Process exited with code 0\n2025-07-14 20:31:54.070 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][69ba247f-5f8e-4591-a559-6f1e965bb90b] socks connection closed\n2025-07-14 20:31:54.070 [info] [command][1d94e702-6453-4d6a-ae6f-ce9a381ed892] Socket close event received\n2025-07-14 20:31:54.108 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 55162 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:32:54.076 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:32:54.077 [info] [command][6050f2a1-ed44-4ab1-8fd9-d5bf17c4d70b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""6050f2a1-ed44-4ab1-8fd9-d5bf17c4d70b""}\n2025-07-14 20:32:54.077 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][2e3a0d25-b83c-430a-9a4b-f8af42370a76] received connection request\n2025-07-14 20:32:54.078 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:32:54.106 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][2e3a0d25-b83c-430a-9a4b-f8af42370a76] socks forwarding established\n2025-07-14 20:32:54.147 [info] [command][6050f2a1-ed44-4ab1-8fd9-d5bf17c4d70b] Process exited with code 0\n2025-07-14 20:32:54.148 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][2e3a0d25-b83c-430a-9a4b-f8af42370a76] socks connection closed\n2025-07-14 20:32:54.148 [info] [command][6050f2a1-ed44-4ab1-8fd9-d5bf17c4d70b] Socket close event received\n2025-07-14 20:32:54.174 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 55179 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:33:54.152 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:33:54.153 [info] [command][6a534545-79de-4189-9cbb-7aeb10d8cfb0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""6a534545-79de-4189-9cbb-7aeb10d8cfb0""}\n2025-07-14 20:33:54.153 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:34749][1d00f7cf-756e-4df4-af17-2d9814bd5c8b] received connection request\n2025-07-14 20:33:54.154 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:33:54.221 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][1d00f7cf-756e-4df4-af17-2d9814bd5c8b] socks forwarding established\n2025-07-14 20:33:54.326 [info] [command][6a534545-79de-4189-9cbb-7aeb10d8cfb0] Process exited with code 0\n2025-07-14 20:33:54.326 [info] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:54505 -> 127.0.0.1:34749][1d00f7cf-756e-4df4-af17-2d9814bd5c8b] socks connection closed\n2025-07-14 20:33:54.327 [info] [command][6a534545-79de-4189-9cbb-7aeb10d8cfb0] Socket close event received\n2025-07-14 20:33:54.354 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54505 for 127.0.0.1 port 34749, connect from 127.0.0.1 port 55197 to 127.0.0.1 port 54505, nchannels 6\n\n2025-07-14 20:34:42.612 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-14 20:34:42.612 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-14 20:34:42.616 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:33755][82d3e58f-a970-4a92-9b3b-cd710d918586] received connection request\n2025-07-14 20:34:42.619 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:33755][d4ed67cf-6246-4ce9-93d6-474a77f9da70] received connection request\n2025-07-14 20:34:42.620 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\ndebug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:34:45.620 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-14 20:34:45.621 [error] Failed to connect to Cursor server at http://127.0.0.1:54517, attempt 1 of 3 This operation was aborted\n2025-07-14 20:34:45.623 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:33755][00e219d0-93b7-4ff8-8885-462cead58094] received connection request\n2025-07-14 20:34:45.623 [info] (ssh_tunnel) stderr: debug1: Connection to port 54505 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-14 20:34:45.694 [info] Terminating existing SSH process with pid: 37749\n2025-07-14 20:34:45.694 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-14 20:34:45.694 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-14 20:34:45.694 [error] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:54505 -> 127.0.0.1:33755][82d3e58f-a970-4a92-9b3b-cd710d918586] error while creating socks forwarding Socket closed\n2025-07-14 20:34:45.695 [error] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:54505 -> 127.0.0.1:33755][d4ed67cf-6246-4ce9-93d6-474a77f9da70] error while creating socks forwarding Socket closed\n2025-07-14 20:34:45.695 [error] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:54505 -> 127.0.0.1:33755][00e219d0-93b7-4ff8-8885-462cead58094] error while creating socks forwarding Socket closed\n2025-07-14 20:34:45.695 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:54505 -> 127.0.0.1:33755][ba7946fc-db5e-4682-887c-6575e858520b] socks connection closed\n2025-07-14 20:34:45.695 [info] [forwarding][code][127.0.0.1:54517 -> 127.0.0.1:54505 -> 127.0.0.1:33755][eefbdc61-c4c3-4420-99d7-464de70c93e5] socks connection closed\n2025-07-14 20:34:45.695 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-O0Gfsb/socket.sock\n2025-07-14 20:34:45.698 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_29258.sh"" | ssh -v -T -D 55266 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 20:34:45.698 [info] Started installation script. Waiting for it to finish...\n2025-07-14 20:34:45.698 [info] Waiting for server to install via process(38489)...\n2025-07-14 20:34:45.705 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-14 20:34:45.705 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 20:34:45.705 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 20:34:45.706 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 20:34:45.706 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 20:34:46.625 [error] Failed to connect to Cursor server at http://127.0.0.1:54517, attempt 2 of 3 This operation was aborted\n2025-07-14 20:34:46.631 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-14 20:34:46.641 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-14 20:34:46.641 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-14 20:34:46.641 [info] Retrying connection in 5 seconds...\n2025-07-14 20:34:47.627 [error] Failed to connect to Cursor server at http://127.0.0.1:54517, attempt 3 of 3 This operation was aborted\n2025-07-14 20:34:47.627 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-14 20:34:47.628 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-14 20:34:51.647 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_29258.sh\n2025-07-14 20:34:51.647 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-O0Gfsb/socket.sock\n2025-07-14 20:34:51.652 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_90648.sh"" | ssh -v -T -D 55301 horeka.scc.kit.edu bash --login -c bash\n2025-07-14 20:34:51.653 [info] Started installation script. Waiting for it to finish...\n2025-07-14 20:34:51.653 [info] Waiting for server to install via process(38505)...\n2025-07-14 20:34:51.672 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-14 20:34:51.672 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-14 20:34:51.672 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-14 20:34:51.672 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-14 20:34:51.672 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-14 20:34:52.891 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-14 20:34:52.891 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-14 20:34:52.892 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\ndebug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-14 20:34:52.944 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-14 20:34:52.946 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-14 20:34:52.947 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT sent\n\n2025-07-14 20:34:52.979 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\n\n2025-07-14 20:34:52.979 [info] (ssh_tunnel) stderr: debug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-14 20:34:52.980 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-14 20:34:53.086 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-14 20:34:53.087 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-14 20:34:53.093 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-14 20:34:53.093 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-14 20:34:53.213 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-14 20:34:53.252 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-14 20:34:53.261 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\ndebug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\n\n2025-07-14 20:34:53.262 [info] (ssh_tunnel) stderr: debug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\n\n2025-07-14 20:34:53.262 [info] (ssh_tunnel) stderr: debug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-14 20:34:53.942 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-14 20:34:53.988 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-14 20:34:54.090 [info] Askpass server received request: POST /\n2025-07-14 20:34:54.090 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-14 20:34:54.090 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-14 20:34:54.333 [info] [remote-ssh] Pinging remote server on port 54518\n2025-07-14 20:34:54.333 [info] [command][8c1e99b4-66e8-43a3-a545-93116100f8ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3190eef4-868b-48f5-a572-0de621182d06"",""id"":""8c1e99b4-66e8-43a3-a545-93116100f8ca""}\n2025-07-14 20:34:54.334 [error] [forwarding][multiplex][127.0.0.1:54518 -> 127.0.0.1:undefined][7f6705f7-11bc-43db-b09d-49d42ca1d6d3] remote server not configured\n2025-07-14 20:34:54.334 [error] [command][8c1e99b4-66e8-43a3-a545-93116100f8ca] Socket error: Error: read ECONNRESET\n2025-07-14 20:34:54.334 [info] [command][8c1e99b4-66e8-43a3-a545-93116100f8ca] Socket close event received\n2025-07-15 11:13:36.403 [error] Password authentication cancelled\n2025-07-15 11:13:36.405 [info] (ssh_tunnel) stderr: Server returned status code: 500\n\n2025-07-15 11:13:36.411 [info] (ssh_tunnel) stderr: ssh_dispatch_run_fatal: Connection to 141.52.43.20 port 22: Can't assign requested address\n\n2025-07-15 11:13:36.412 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 11:13:36.412 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 11:13:36.412 [error] Failed to connect after 2 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 11:13:36.412 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_90648.sh\n2025-07-15 11:13:36.413 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 11:13:39.491 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-15 11:13:39.502 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 11:13:39.503 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-15 11:13:39.504 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 11:13:39.507 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3183.sh"" | ssh -v -T -D 65268 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 11:13:39.507 [info] Started installation script. Waiting for it to finish...\n2025-07-15 11:13:39.507 [info] Waiting for server to install via process(42370)...\n2025-07-15 11:13:39.512 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-15 11:13:39.512 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 11:13:39.513 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 11:13:39.513 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 11:13:39.513 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 11:13:39.551 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-15 11:13:39.551 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-15 11:13:39.551 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-15 11:13:39.551 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-15 11:13:39.551 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-15 11:13:39.590 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-15 11:13:39.591 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-15 11:13:39.591 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-15 11:13:39.608 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\n\n2025-07-15 11:13:39.608 [info] (ssh_tunnel) stderr: debug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-15 11:13:39.608 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-15 11:13:39.632 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-15 11:13:39.632 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-15 11:13:39.632 [info] (ssh_tunnel) stderr: debug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-15 11:13:39.635 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-15 11:13:39.635 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-15 11:13:39.709 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-15 11:13:39.740 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-15 11:13:39.744 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-15 11:13:39.744 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-15 11:13:40.373 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-15 11:13:40.399 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-15 11:13:40.771 [info] Askpass server received request: POST /\n2025-07-15 11:13:40.773 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-15 11:13:40.774 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-15 11:14:23.721 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-15 11:14:23.825 [info] Askpass server received request: POST /\n2025-07-15 11:14:23.825 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-15 11:14:23.825 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-15 11:14:28.851 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.19]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:65268 forwarded to remote address socks:0\n\n2025-07-15 11:14:28.852 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 65268.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 65268.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\n\n2025-07-15 11:14:28.854 [info] (ssh_tunnel) stderr: debug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-15 11:14:29.431 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-15 11:14:29.433 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-15 11:14:29.444 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-15 11:14:29.448 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-15 11:14:32.191 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-15 11:14:32.349 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-15 11:14:32.368 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-15 11:14:32.434 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-15 11:14:32.448 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-15 11:14:32.551 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-15 11:14:32.561 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-15 11:14:32.583 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-15 11:14:32.592 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-15 11:14:32.645 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js dd18db9b-722d-4af0-b9fc-a967a56f0eb1\n\n2025-07-15 11:14:32.652 [info] (ssh_tunnel) stdout: Multiplex server started with PID 1443315 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-15 11:14:32.652 [info] (ssh_tunnel) stdout: Reading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\n\n2025-07-15 11:14:32.659 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-15 11:14:33.191 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-15 11:14:33.304 [info] (ssh_tunnel) stdout: Code server script is not running\nCreating code server token file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-15 11:14:33.315 [info] (ssh_tunnel) stdout: Starting code server script /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2 &\n\n2025-07-15 11:14:33.322 [info] (ssh_tunnel) stdout: Code server started with PID 1443343 and wrote pid to file /run/user/996262/cursor-remote-code.pid.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-15 11:14:33.340 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-15 11:14:33.876 [info] (ssh_tunnel) stdout: 2b074f443e2240b096882a90: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==41109==\nmultiplexConnectionToken==dd18db9b-722d-4af0-b9fc-a967a56f0eb1==\ncodeListeningOn==39145==\ncodeConnectionToken==a5a4d8fa-6932-401a-b45e-59d555a96344==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n2b074f443e2240b096882a90: end\n\n2025-07-15 11:14:33.878 [info] Server install command exit code: 0\n2025-07-15 11:14:33.878 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3183.sh\n2025-07-15 11:14:33.881 [info] [forwarding][code] creating new forwarding server\n2025-07-15 11:14:33.881 [info] [forwarding][code] server listening on 65313\n2025-07-15 11:14:33.881 [info] [forwarding][code] Set up server\n2025-07-15 11:14:33.882 [info] [remote-ssh] codeListeningOn (remote=39145; local=65313) codeConnectionToken: a5a4d8fa-6932-401a-b45e-59d555a96344\n2025-07-15 11:14:33.882 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-15 11:14:33.883 [info] [forwarding][multiplex] server listening on 65314\n2025-07-15 11:14:33.883 [info] [forwarding][multiplex] Set up server\n2025-07-15 11:14:33.886 [info] [remote-ssh] multiplexListeningOn (remote=41109; local=65314) multiplexConnectionToken: dd18db9b-722d-4af0-b9fc-a967a56f0eb1\n2025-07-15 11:14:33.886 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:14:33.894 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-15 11:14:33.895 [info] [command][82210665-cbf4-459d-9dd2-f8d743b05930] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""82210665-cbf4-459d-9dd2-f8d743b05930""}\n2025-07-15 11:14:33.896 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7d82e6e3-0c5f-47d5-9818-843506e67a67] received connection request\n2025-07-15 11:14:33.896 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:14:33.905 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:39145][2f4c3d5f-4b4e-42a3-916a-1f74cdbf8a0a] received connection request\n2025-07-15 11:14:33.907 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:14:33.915 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7d82e6e3-0c5f-47d5-9818-843506e67a67] socks forwarding established\n2025-07-15 11:14:33.925 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:65268 -> 127.0.0.1:39145][2f4c3d5f-4b4e-42a3-916a-1f74cdbf8a0a] socks forwarding established\n2025-07-15 11:14:33.956 [info] [command][82210665-cbf4-459d-9dd2-f8d743b05930] Process exited with code 0\n2025-07-15 11:14:33.956 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7d82e6e3-0c5f-47d5-9818-843506e67a67] socks connection closed\n2025-07-15 11:14:33.956 [info] [command][82210665-cbf4-459d-9dd2-f8d743b05930] Socket close event received\n2025-07-15 11:14:33.973 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 65316 to 127.0.0.1 port 65268, nchannels 5\n\n2025-07-15 11:14:34.042 [info] Successfully connected to Cursor server at http://127.0.0.1:65313/version\n2025-07-15 11:14:34.042 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-15 11:14:34.042 [info] [command][c1038953-4dac-48ee-80fb-f3df7f63c7ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c1038953-4dac-48ee-80fb-f3df7f63c7ae""}\n2025-07-15 11:14:34.043 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d2cb6bf5-249e-45a7-a41c-0cfaf055a1d7] received connection request\n2025-07-15 11:14:34.043 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:14:34.059 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d2cb6bf5-249e-45a7-a41c-0cfaf055a1d7] socks forwarding established\n2025-07-15 11:14:34.090 [info] [command][c1038953-4dac-48ee-80fb-f3df7f63c7ae] Process exited with code 0\n2025-07-15 11:14:34.090 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-15 11:14:34.091 [info] [remote-ssh] Resolved exec server. Socks port: 65268\n2025-07-15 11:14:34.091 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":65313,""connectionToken"":""a5a4d8fa-6932-401a-b45e-59d555a96344"",""extensionHostEnv"":{}}. Socks port: 65268\n2025-07-15 11:14:34.091 [info] [command][c1038953-4dac-48ee-80fb-f3df7f63c7ae] Socket close event received\n2025-07-15 11:14:34.091 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d2cb6bf5-249e-45a7-a41c-0cfaf055a1d7] socks connection closed\n2025-07-15 11:14:34.107 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 65320 to 127.0.0.1 port 65268, nchannels 5\n\n2025-07-15 11:14:34.128 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:39145][1be7d995-21f4-4809-bef6-5d99408717d9] received connection request\n2025-07-15 11:14:34.128 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:14:34.150 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:65268 -> 127.0.0.1:39145][1be7d995-21f4-4809-bef6-5d99408717d9] socks forwarding established\n2025-07-15 11:14:34.182 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:39145][4693c2ed-6e88-45ec-8cb2-2e545b136f2a] received connection request\n2025-07-15 11:14:34.183 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:14:34.200 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:65268 -> 127.0.0.1:39145][4693c2ed-6e88-45ec-8cb2-2e545b136f2a] socks forwarding established\n2025-07-15 11:14:34.339 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-15 11:14:41.956 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 39145, connect from 127.0.0.1 port 65318 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:14:41.956 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:65268 -> 127.0.0.1:39145][2f4c3d5f-4b4e-42a3-916a-1f74cdbf8a0a] socks connection closed\n2025-07-15 11:14:42.959 [info] [tunnel-forwarding][127.0.0.1:8791 -> localhost:8791] server listening\n2025-07-15 11:15:33.962 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:15:33.963 [info] [command][99d1f31b-ee42-474f-83aa-bc5b33659206] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""99d1f31b-ee42-474f-83aa-bc5b33659206""}\n2025-07-15 11:15:33.963 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fbbbedb6-81cb-4599-8e28-d4f6a0531621] received connection request\n2025-07-15 11:15:33.964 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:15:33.985 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fbbbedb6-81cb-4599-8e28-d4f6a0531621] socks forwarding established\n2025-07-15 11:15:34.015 [info] [command][99d1f31b-ee42-474f-83aa-bc5b33659206] Process exited with code 0\n2025-07-15 11:15:34.015 [info] [command][99d1f31b-ee42-474f-83aa-bc5b33659206] Socket close event received\n2025-07-15 11:15:34.016 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fbbbedb6-81cb-4599-8e28-d4f6a0531621] socks connection closed\n2025-07-15 11:15:34.047 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49204 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:16:34.017 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:16:34.018 [info] [command][c573186a-9775-4664-9d41-eb9f17219bc3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c573186a-9775-4664-9d41-eb9f17219bc3""}\n2025-07-15 11:16:34.019 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f8584ec4-ae32-466f-83ad-fd6840d35c0e] received connection request\n2025-07-15 11:16:34.019 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:16:34.036 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f8584ec4-ae32-466f-83ad-fd6840d35c0e] socks forwarding established\n2025-07-15 11:16:34.102 [info] [command][c573186a-9775-4664-9d41-eb9f17219bc3] Process exited with code 0\n2025-07-15 11:16:34.102 [info] [command][c573186a-9775-4664-9d41-eb9f17219bc3] Socket close event received\n2025-07-15 11:16:34.120 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49288 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:16:34.120 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f8584ec4-ae32-466f-83ad-fd6840d35c0e] socks connection closed\n2025-07-15 11:17:34.108 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:17:34.109 [info] [command][8239191d-5049-4822-9ef0-11771e3dd91e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8239191d-5049-4822-9ef0-11771e3dd91e""}\n2025-07-15 11:17:34.110 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6f3f760e-96cf-44a9-96e2-de66554ada9d] received connection request\n2025-07-15 11:17:34.111 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:17:34.128 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6f3f760e-96cf-44a9-96e2-de66554ada9d] socks forwarding established\n2025-07-15 11:17:34.161 [info] [command][8239191d-5049-4822-9ef0-11771e3dd91e] Process exited with code 0\n2025-07-15 11:17:34.161 [info] [command][8239191d-5049-4822-9ef0-11771e3dd91e] Socket close event received\n2025-07-15 11:17:34.175 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6f3f760e-96cf-44a9-96e2-de66554ada9d] socks connection closed\n2025-07-15 11:17:34.180 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49306 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:18:34.162 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:18:34.163 [info] [command][944befb5-c9be-4786-99c9-ec321061adc2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""944befb5-c9be-4786-99c9-ec321061adc2""}\n2025-07-15 11:18:34.163 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1a7a9e7b-eede-4700-bd9c-8896f7a3fd50] received connection request\n2025-07-15 11:18:34.164 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:18:34.180 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1a7a9e7b-eede-4700-bd9c-8896f7a3fd50] socks forwarding established\n2025-07-15 11:18:34.216 [info] [command][944befb5-c9be-4786-99c9-ec321061adc2] Process exited with code 0\n2025-07-15 11:18:34.216 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1a7a9e7b-eede-4700-bd9c-8896f7a3fd50] socks connection closed\n2025-07-15 11:18:34.216 [info] [command][944befb5-c9be-4786-99c9-ec321061adc2] Socket close event received\n2025-07-15 11:18:34.232 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49332 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:19:34.219 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:19:34.221 [info] [command][086d83d3-89d4-411a-a261-7ee9c5fb0d70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""086d83d3-89d4-411a-a261-7ee9c5fb0d70""}\n2025-07-15 11:19:34.221 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][68b50746-b0ff-41cc-bd01-8c9aa8bcc277] received connection request\n2025-07-15 11:19:34.222 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:19:34.239 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][68b50746-b0ff-41cc-bd01-8c9aa8bcc277] socks forwarding established\n2025-07-15 11:19:34.270 [info] [command][086d83d3-89d4-411a-a261-7ee9c5fb0d70] Process exited with code 0\n2025-07-15 11:19:34.270 [info] [command][086d83d3-89d4-411a-a261-7ee9c5fb0d70] Socket close event received\n2025-07-15 11:19:34.285 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][68b50746-b0ff-41cc-bd01-8c9aa8bcc277] socks connection closed\n2025-07-15 11:19:34.287 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49375 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:20:34.276 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:20:34.278 [info] [command][0cee8e74-6840-42a7-88e3-e9cdc9c4a0d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0cee8e74-6840-42a7-88e3-e9cdc9c4a0d1""}\n2025-07-15 11:20:34.278 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f41bcf35-cf15-44a5-889a-b8849e0eea4a] received connection request\n2025-07-15 11:20:34.278 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:20:34.401 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f41bcf35-cf15-44a5-889a-b8849e0eea4a] socks forwarding established\n2025-07-15 11:20:34.517 [info] [command][0cee8e74-6840-42a7-88e3-e9cdc9c4a0d1] Process exited with code 0\n2025-07-15 11:20:34.517 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f41bcf35-cf15-44a5-889a-b8849e0eea4a] socks connection closed\n2025-07-15 11:20:34.518 [info] [command][0cee8e74-6840-42a7-88e3-e9cdc9c4a0d1] Socket close event received\n2025-07-15 11:20:34.533 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49397 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:21:34.523 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:21:34.525 [info] [command][215b8bd2-2cb5-4f32-bb33-abda5e5c9469] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""215b8bd2-2cb5-4f32-bb33-abda5e5c9469""}\n2025-07-15 11:21:34.527 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][51a82fcf-9385-49e0-9b54-9ea340f9749f] received connection request\n2025-07-15 11:21:34.527 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:21:34.545 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][51a82fcf-9385-49e0-9b54-9ea340f9749f] socks forwarding established\n2025-07-15 11:21:34.579 [info] [command][215b8bd2-2cb5-4f32-bb33-abda5e5c9469] Process exited with code 0\n2025-07-15 11:21:34.579 [info] [command][215b8bd2-2cb5-4f32-bb33-abda5e5c9469] Socket close event received\n2025-07-15 11:21:34.580 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][51a82fcf-9385-49e0-9b54-9ea340f9749f] socks connection closed\n2025-07-15 11:21:34.599 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49440 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:22:34.584 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:22:34.586 [info] [command][f8e24b3d-8cf7-46d3-b145-33736bb6edb2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f8e24b3d-8cf7-46d3-b145-33736bb6edb2""}\n2025-07-15 11:22:34.586 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3e8ad31f-89f1-4054-b8bb-781eae5e648a] received connection request\n2025-07-15 11:22:34.586 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:22:34.603 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3e8ad31f-89f1-4054-b8bb-781eae5e648a] socks forwarding established\n2025-07-15 11:22:34.636 [info] [command][f8e24b3d-8cf7-46d3-b145-33736bb6edb2] Process exited with code 0\n2025-07-15 11:22:34.637 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3e8ad31f-89f1-4054-b8bb-781eae5e648a] socks connection closed\n2025-07-15 11:22:34.637 [info] [command][f8e24b3d-8cf7-46d3-b145-33736bb6edb2] Socket close event received\n2025-07-15 11:22:34.653 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49463 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:23:34.641 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:23:34.643 [info] [command][6051f2ef-2350-45da-a47b-58c830fc20e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6051f2ef-2350-45da-a47b-58c830fc20e4""}\n2025-07-15 11:23:34.643 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][cd5acc85-e539-4b4f-9faa-0c9641855f21] received connection request\n2025-07-15 11:23:34.643 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:23:34.661 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cd5acc85-e539-4b4f-9faa-0c9641855f21] socks forwarding established\n2025-07-15 11:23:34.690 [info] [command][6051f2ef-2350-45da-a47b-58c830fc20e4] Process exited with code 0\n2025-07-15 11:23:34.690 [info] [command][6051f2ef-2350-45da-a47b-58c830fc20e4] Socket close event received\n2025-07-15 11:23:34.705 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cd5acc85-e539-4b4f-9faa-0c9641855f21] socks connection closed\n2025-07-15 11:23:34.706 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49494 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:24:34.696 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:24:34.698 [info] [command][c11c0c01-a936-4dcf-aba7-c2c559fdc29a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c11c0c01-a936-4dcf-aba7-c2c559fdc29a""}\n2025-07-15 11:24:34.699 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f67d2f15-2e37-43a5-9297-d544c8effebd] received connection request\n2025-07-15 11:24:34.699 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:24:34.717 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f67d2f15-2e37-43a5-9297-d544c8effebd] socks forwarding established\n2025-07-15 11:24:34.748 [info] [command][c11c0c01-a936-4dcf-aba7-c2c559fdc29a] Process exited with code 0\n2025-07-15 11:24:34.748 [info] [command][c11c0c01-a936-4dcf-aba7-c2c559fdc29a] Socket close event received\n2025-07-15 11:24:34.763 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f67d2f15-2e37-43a5-9297-d544c8effebd] socks connection closed\n2025-07-15 11:24:34.766 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49564 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:25:34.754 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:25:34.756 [info] [command][c0fff269-cf1f-4743-b35a-67cfbd5e844c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c0fff269-cf1f-4743-b35a-67cfbd5e844c""}\n2025-07-15 11:25:34.757 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5f6dad8b-2186-4b97-a454-32d0628d212a] received connection request\n2025-07-15 11:25:34.757 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:25:34.840 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5f6dad8b-2186-4b97-a454-32d0628d212a] socks forwarding established\n2025-07-15 11:25:34.868 [info] [command][c0fff269-cf1f-4743-b35a-67cfbd5e844c] Process exited with code 0\n2025-07-15 11:25:34.868 [info] [command][c0fff269-cf1f-4743-b35a-67cfbd5e844c] Socket close event received\n2025-07-15 11:25:34.869 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5f6dad8b-2186-4b97-a454-32d0628d212a] socks connection closed\n2025-07-15 11:25:35.018 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49585 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:26:34.872 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:26:34.873 [info] [command][f3625545-ef45-4bbc-b31b-a0d3e7927083] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f3625545-ef45-4bbc-b31b-a0d3e7927083""}\n2025-07-15 11:26:34.874 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7276befc-2e38-4425-9056-50156d87be0f] received connection request\n2025-07-15 11:26:34.874 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 11:26:34.874 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:26:34.890 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7276befc-2e38-4425-9056-50156d87be0f] socks forwarding established\n2025-07-15 11:26:34.919 [info] [command][f3625545-ef45-4bbc-b31b-a0d3e7927083] Process exited with code 0\n2025-07-15 11:26:34.920 [info] [command][f3625545-ef45-4bbc-b31b-a0d3e7927083] Socket close event received\n2025-07-15 11:26:34.920 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7276befc-2e38-4425-9056-50156d87be0f] socks connection closed\n2025-07-15 11:26:34.937 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49634 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:27:34.924 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:27:34.926 [info] [command][bffdb1f8-113f-421f-bcea-451998e7de12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bffdb1f8-113f-421f-bcea-451998e7de12""}\n2025-07-15 11:27:34.926 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2340a24d-e756-40d5-82c8-1b019d7097e5] received connection request\n2025-07-15 11:27:34.926 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 11:27:34.927 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:27:34.943 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2340a24d-e756-40d5-82c8-1b019d7097e5] socks forwarding established\n2025-07-15 11:27:34.993 [info] [command][bffdb1f8-113f-421f-bcea-451998e7de12] Process exited with code 0\n2025-07-15 11:27:34.993 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2340a24d-e756-40d5-82c8-1b019d7097e5] socks connection closed\n2025-07-15 11:27:34.993 [info] [command][bffdb1f8-113f-421f-bcea-451998e7de12] Socket close event received\n2025-07-15 11:27:35.097 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49661 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:28:34.993 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:28:34.995 [info] [command][5b537e07-d7c4-417f-997c-611b211c6131] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5b537e07-d7c4-417f-997c-611b211c6131""}\n2025-07-15 11:28:34.995 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][36af054f-390d-4d0d-ac73-c4a41b57ccbb] received connection request\n2025-07-15 11:28:34.996 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 11:28:34.996 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:28:35.012 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][36af054f-390d-4d0d-ac73-c4a41b57ccbb] socks forwarding established\n2025-07-15 11:28:35.043 [info] [command][5b537e07-d7c4-417f-997c-611b211c6131] Process exited with code 0\n2025-07-15 11:28:35.044 [info] [command][5b537e07-d7c4-417f-997c-611b211c6131] Socket close event received\n2025-07-15 11:28:35.044 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][36af054f-390d-4d0d-ac73-c4a41b57ccbb] socks connection closed\n2025-07-15 11:28:35.060 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49673 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:29:35.047 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:29:35.049 [info] [command][f1ba2ffe-b3d9-4f49-8aa1-258fcfa26aed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f1ba2ffe-b3d9-4f49-8aa1-258fcfa26aed""}\n2025-07-15 11:29:35.049 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ab190a49-78d9-4c34-bfd2-485c20786d09] received connection request\n2025-07-15 11:29:35.049 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 11:29:35.050 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:29:35.066 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ab190a49-78d9-4c34-bfd2-485c20786d09] socks forwarding established\n2025-07-15 11:29:35.096 [info] [command][f1ba2ffe-b3d9-4f49-8aa1-258fcfa26aed] Process exited with code 0\n2025-07-15 11:29:35.097 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ab190a49-78d9-4c34-bfd2-485c20786d09] socks connection closed\n2025-07-15 11:29:35.097 [info] [command][f1ba2ffe-b3d9-4f49-8aa1-258fcfa26aed] Socket close event received\n2025-07-15 11:29:35.115 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49702 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:30:35.096 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:30:35.098 [info] [command][df757ee0-f9a0-4256-b3bc-57bb9c78cc6e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""df757ee0-f9a0-4256-b3bc-57bb9c78cc6e""}\n2025-07-15 11:30:35.098 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][15d28bfa-db6a-472c-8a9c-5c8d5bb020d5] received connection request\n2025-07-15 11:30:35.098 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:30:35.120 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][15d28bfa-db6a-472c-8a9c-5c8d5bb020d5] socks forwarding established\n2025-07-15 11:30:35.153 [info] [command][df757ee0-f9a0-4256-b3bc-57bb9c78cc6e] Process exited with code 0\n2025-07-15 11:30:35.153 [info] [command][df757ee0-f9a0-4256-b3bc-57bb9c78cc6e] Socket close event received\n2025-07-15 11:30:35.153 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][15d28bfa-db6a-472c-8a9c-5c8d5bb020d5] socks connection closed\n2025-07-15 11:30:35.171 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49723 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:31:35.157 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:31:35.159 [info] [command][8c45f676-a526-4af2-a32c-6c2aeef93c71] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8c45f676-a526-4af2-a32c-6c2aeef93c71""}\n2025-07-15 11:31:35.160 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0b8295de-46e8-4072-bce4-1bebf4ef64e4] received connection request\n2025-07-15 11:31:35.160 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:31:35.189 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0b8295de-46e8-4072-bce4-1bebf4ef64e4] socks forwarding established\n2025-07-15 11:31:35.221 [info] [command][8c45f676-a526-4af2-a32c-6c2aeef93c71] Process exited with code 0\n2025-07-15 11:31:35.221 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0b8295de-46e8-4072-bce4-1bebf4ef64e4] socks connection closed\n2025-07-15 11:31:35.223 [info] [command][8c45f676-a526-4af2-a32c-6c2aeef93c71] Socket close event received\n2025-07-15 11:31:35.239 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49766 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:32:35.223 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:32:35.225 [info] [command][65043ef7-de48-4d4d-9ef7-30f5a0e0405e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""65043ef7-de48-4d4d-9ef7-30f5a0e0405e""}\n2025-07-15 11:32:35.226 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9afa0af2-04ca-4034-8185-74af0b17ae48] received connection request\n2025-07-15 11:32:35.226 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:32:35.315 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9afa0af2-04ca-4034-8185-74af0b17ae48] socks forwarding established\n2025-07-15 11:32:35.478 [info] [command][65043ef7-de48-4d4d-9ef7-30f5a0e0405e] Process exited with code 0\n2025-07-15 11:32:35.479 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9afa0af2-04ca-4034-8185-74af0b17ae48] socks connection closed\n2025-07-15 11:32:35.479 [info] [command][65043ef7-de48-4d4d-9ef7-30f5a0e0405e] Socket close event received\n2025-07-15 11:32:35.494 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49794 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:33:35.482 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:33:35.484 [info] [command][3173b332-154c-443a-9ddc-58652be9223b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3173b332-154c-443a-9ddc-58652be9223b""}\n2025-07-15 11:33:35.484 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4a7b5792-5632-4cdc-b64f-2fc062b6f60c] received connection request\n2025-07-15 11:33:35.484 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:33:35.500 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4a7b5792-5632-4cdc-b64f-2fc062b6f60c] socks forwarding established\n2025-07-15 11:33:35.531 [info] [command][3173b332-154c-443a-9ddc-58652be9223b] Process exited with code 0\n2025-07-15 11:33:35.531 [info] [command][3173b332-154c-443a-9ddc-58652be9223b] Socket close event received\n2025-07-15 11:33:35.533 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4a7b5792-5632-4cdc-b64f-2fc062b6f60c] socks connection closed\n2025-07-15 11:33:35.555 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49809 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:34:35.534 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:34:35.536 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7997ed10-7caf-4258-a47a-999662308213] received connection request\n2025-07-15 11:34:35.537 [info] [command][5fa53489-7718-416d-8e76-06737cd33a74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5fa53489-7718-416d-8e76-06737cd33a74""}\n2025-07-15 11:34:35.537 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:34:35.556 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7997ed10-7caf-4258-a47a-999662308213] socks forwarding established\n2025-07-15 11:34:35.586 [info] [command][5fa53489-7718-416d-8e76-06737cd33a74] Process exited with code 0\n2025-07-15 11:34:35.586 [info] [command][5fa53489-7718-416d-8e76-06737cd33a74] Socket close event received\n2025-07-15 11:34:35.586 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7997ed10-7caf-4258-a47a-999662308213] socks connection closed\n2025-07-15 11:34:35.603 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49839 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:35:35.592 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:35:35.594 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][493e9200-ebb3-4ea1-b11c-7e8e826deb24] received connection request\n2025-07-15 11:35:35.595 [info] [command][2bcfcd63-1f7a-4519-b94b-dd147b9041ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2bcfcd63-1f7a-4519-b94b-dd147b9041ce""}\n2025-07-15 11:35:35.595 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:35:35.614 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][493e9200-ebb3-4ea1-b11c-7e8e826deb24] socks forwarding established\n2025-07-15 11:35:35.644 [info] [command][2bcfcd63-1f7a-4519-b94b-dd147b9041ce] Process exited with code 0\n2025-07-15 11:35:35.645 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][493e9200-ebb3-4ea1-b11c-7e8e826deb24] socks connection closed\n2025-07-15 11:35:35.645 [info] [command][2bcfcd63-1f7a-4519-b94b-dd147b9041ce] Socket close event received\n2025-07-15 11:35:35.663 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49859 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:36:35.645 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:36:35.646 [info] [command][c796e499-3617-4934-baae-4290dc43124a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c796e499-3617-4934-baae-4290dc43124a""}\n2025-07-15 11:36:35.647 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3c922897-d2c5-458f-b609-4aaf1ec04bab] received connection request\n2025-07-15 11:36:35.648 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:36:35.665 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3c922897-d2c5-458f-b609-4aaf1ec04bab] socks forwarding established\n2025-07-15 11:36:35.697 [info] [command][c796e499-3617-4934-baae-4290dc43124a] Process exited with code 0\n2025-07-15 11:36:35.697 [info] [command][c796e499-3617-4934-baae-4290dc43124a] Socket close event received\n2025-07-15 11:36:35.698 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3c922897-d2c5-458f-b609-4aaf1ec04bab] socks connection closed\n2025-07-15 11:36:35.713 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49889 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:37:35.700 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:37:35.701 [info] [command][a2cbedcf-48aa-4c40-a801-b9be7756e781] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a2cbedcf-48aa-4c40-a801-b9be7756e781""}\n2025-07-15 11:37:35.701 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][25379cc4-77bc-49f9-b488-ded754650faf] received connection request\n2025-07-15 11:37:35.702 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:37:35.731 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][25379cc4-77bc-49f9-b488-ded754650faf] socks forwarding established\n2025-07-15 11:37:35.915 [info] [command][a2cbedcf-48aa-4c40-a801-b9be7756e781] Process exited with code 0\n2025-07-15 11:37:35.915 [info] [command][a2cbedcf-48aa-4c40-a801-b9be7756e781] Socket close event received\n2025-07-15 11:37:35.916 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][25379cc4-77bc-49f9-b488-ded754650faf] socks connection closed\n2025-07-15 11:37:36.037 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49903 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:38:35.918 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:38:35.919 [info] [command][60d3bbd3-072b-4179-8e23-b04ef3c92001] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""60d3bbd3-072b-4179-8e23-b04ef3c92001""}\n2025-07-15 11:38:35.920 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9afad8a2-b230-45a6-8322-5ef2b5923a87] received connection request\n2025-07-15 11:38:35.921 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:38:35.938 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9afad8a2-b230-45a6-8322-5ef2b5923a87] socks forwarding established\n2025-07-15 11:38:35.972 [info] [command][60d3bbd3-072b-4179-8e23-b04ef3c92001] Process exited with code 0\n2025-07-15 11:38:35.972 [info] [command][60d3bbd3-072b-4179-8e23-b04ef3c92001] Socket close event received\n2025-07-15 11:38:35.973 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9afad8a2-b230-45a6-8322-5ef2b5923a87] socks connection closed\n2025-07-15 11:38:35.989 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49923 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:39:35.973 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:39:35.975 [info] [command][6e731a2b-b676-4e67-a7f8-bbf15acd8f8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6e731a2b-b676-4e67-a7f8-bbf15acd8f8f""}\n2025-07-15 11:39:35.975 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d0586764-2600-44a8-b39e-9342cc9e6ece] received connection request\n2025-07-15 11:39:35.976 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:39:35.995 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d0586764-2600-44a8-b39e-9342cc9e6ece] socks forwarding established\n2025-07-15 11:39:36.029 [info] [command][6e731a2b-b676-4e67-a7f8-bbf15acd8f8f] Process exited with code 0\n2025-07-15 11:39:36.029 [info] [command][6e731a2b-b676-4e67-a7f8-bbf15acd8f8f] Socket close event received\n2025-07-15 11:39:36.030 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d0586764-2600-44a8-b39e-9342cc9e6ece] socks connection closed\n2025-07-15 11:39:36.049 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49955 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:40:36.033 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:40:36.035 [info] [command][1b766782-52b5-4682-ac4e-6fe4553b5abd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1b766782-52b5-4682-ac4e-6fe4553b5abd""}\n2025-07-15 11:40:36.036 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d44596b6-c698-49a6-bb8e-8da513e63c76] received connection request\n2025-07-15 11:40:36.036 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:40:36.053 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d44596b6-c698-49a6-bb8e-8da513e63c76] socks forwarding established\n2025-07-15 11:40:36.088 [info] [command][1b766782-52b5-4682-ac4e-6fe4553b5abd] Process exited with code 0\n2025-07-15 11:40:36.088 [info] [command][1b766782-52b5-4682-ac4e-6fe4553b5abd] Socket close event received\n2025-07-15 11:40:36.089 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d44596b6-c698-49a6-bb8e-8da513e63c76] socks connection closed\n2025-07-15 11:40:36.105 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 49975 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:41:36.092 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:41:36.094 [info] [command][650fa7d1-5218-4156-8887-05d4f96d036c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""650fa7d1-5218-4156-8887-05d4f96d036c""}\n2025-07-15 11:41:36.095 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6d2b307a-adcd-4f70-8efb-622a8e9dadf2] received connection request\n2025-07-15 11:41:36.095 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:41:36.311 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6d2b307a-adcd-4f70-8efb-622a8e9dadf2] socks forwarding established\n2025-07-15 11:41:36.400 [info] [command][650fa7d1-5218-4156-8887-05d4f96d036c] Process exited with code 0\n2025-07-15 11:41:36.400 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6d2b307a-adcd-4f70-8efb-622a8e9dadf2] socks connection closed\n2025-07-15 11:41:36.400 [info] [command][650fa7d1-5218-4156-8887-05d4f96d036c] Socket close event received\n2025-07-15 11:41:36.568 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50005 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:42:36.404 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:42:36.406 [info] [command][57f588f8-93cd-4d4a-ad09-e55468450e93] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""57f588f8-93cd-4d4a-ad09-e55468450e93""}\n2025-07-15 11:42:36.407 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][36986038-06b9-46db-831b-adccf47c531a] received connection request\n2025-07-15 11:42:36.407 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:42:36.424 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][36986038-06b9-46db-831b-adccf47c531a] socks forwarding established\n2025-07-15 11:42:36.456 [info] [command][57f588f8-93cd-4d4a-ad09-e55468450e93] Process exited with code 0\n2025-07-15 11:42:36.456 [info] [command][57f588f8-93cd-4d4a-ad09-e55468450e93] Socket close event received\n2025-07-15 11:42:36.457 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][36986038-06b9-46db-831b-adccf47c531a] socks connection closed\n2025-07-15 11:42:36.474 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50022 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:43:36.458 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:43:36.460 [info] [command][c2363a4b-831e-4d0f-8b40-0adfa4d0e1ee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c2363a4b-831e-4d0f-8b40-0adfa4d0e1ee""}\n2025-07-15 11:43:36.460 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5ff97b3c-a24b-4e49-9eeb-08b2654bd187] received connection request\n2025-07-15 11:43:36.461 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:43:36.478 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5ff97b3c-a24b-4e49-9eeb-08b2654bd187] socks forwarding established\n2025-07-15 11:43:36.511 [info] [command][c2363a4b-831e-4d0f-8b40-0adfa4d0e1ee] Process exited with code 0\n2025-07-15 11:43:36.511 [info] [command][c2363a4b-831e-4d0f-8b40-0adfa4d0e1ee] Socket close event received\n2025-07-15 11:43:36.511 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5ff97b3c-a24b-4e49-9eeb-08b2654bd187] socks connection closed\n2025-07-15 11:43:36.530 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50082 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:44:36.512 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:44:36.513 [info] [command][5b9b61e7-eb1d-46d2-8578-bbf8377cdb0b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5b9b61e7-eb1d-46d2-8578-bbf8377cdb0b""}\n2025-07-15 11:44:36.513 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][00854ef4-c98b-49f2-bb2b-3d3c6de49928] received connection request\n2025-07-15 11:44:36.514 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:44:36.530 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][00854ef4-c98b-49f2-bb2b-3d3c6de49928] socks forwarding established\n2025-07-15 11:44:36.565 [info] [command][5b9b61e7-eb1d-46d2-8578-bbf8377cdb0b] Process exited with code 0\n2025-07-15 11:44:36.565 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][00854ef4-c98b-49f2-bb2b-3d3c6de49928] socks connection closed\n2025-07-15 11:44:36.566 [info] [command][5b9b61e7-eb1d-46d2-8578-bbf8377cdb0b] Socket close event received\n2025-07-15 11:44:36.583 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50137 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:45:36.571 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:45:36.573 [info] [command][9673cb6c-01b1-4070-988f-55feeb1fd99c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9673cb6c-01b1-4070-988f-55feeb1fd99c""}\n2025-07-15 11:45:36.574 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][51edf07b-249f-4ee1-a374-69c42afeb0b3] received connection request\n2025-07-15 11:45:36.575 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:45:36.593 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][51edf07b-249f-4ee1-a374-69c42afeb0b3] socks forwarding established\n2025-07-15 11:45:36.626 [info] [command][9673cb6c-01b1-4070-988f-55feeb1fd99c] Process exited with code 0\n2025-07-15 11:45:36.627 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][51edf07b-249f-4ee1-a374-69c42afeb0b3] socks connection closed\n2025-07-15 11:45:36.627 [info] [command][9673cb6c-01b1-4070-988f-55feeb1fd99c] Socket close event received\n2025-07-15 11:45:36.644 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50173 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:46:36.629 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:46:36.631 [info] [command][46a53794-afaa-4014-83ba-daeef71580b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""46a53794-afaa-4014-83ba-daeef71580b7""}\n2025-07-15 11:46:36.632 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0a5e88e7-f51a-45ea-bf0c-ae5b86a35377] received connection request\n2025-07-15 11:46:36.633 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 11:46:36.633 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:46:36.651 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0a5e88e7-f51a-45ea-bf0c-ae5b86a35377] socks forwarding established\n2025-07-15 11:46:36.683 [info] [command][46a53794-afaa-4014-83ba-daeef71580b7] Process exited with code 0\n2025-07-15 11:46:36.684 [info] [command][46a53794-afaa-4014-83ba-daeef71580b7] Socket close event received\n2025-07-15 11:46:36.686 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0a5e88e7-f51a-45ea-bf0c-ae5b86a35377] socks connection closed\n2025-07-15 11:46:36.700 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50210 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:47:36.687 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:47:36.688 [info] [command][ebeb64f4-4fff-4fee-9dca-f8cb70bc052e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ebeb64f4-4fff-4fee-9dca-f8cb70bc052e""}\n2025-07-15 11:47:36.689 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][cefb2914-3266-452b-894f-2f60e7273906] received connection request\n2025-07-15 11:47:36.689 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:47:36.802 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cefb2914-3266-452b-894f-2f60e7273906] socks forwarding established\n2025-07-15 11:47:36.862 [info] [command][ebeb64f4-4fff-4fee-9dca-f8cb70bc052e] Process exited with code 0\n2025-07-15 11:47:36.862 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cefb2914-3266-452b-894f-2f60e7273906] socks connection closed\n2025-07-15 11:47:36.862 [info] [command][ebeb64f4-4fff-4fee-9dca-f8cb70bc052e] Socket close event received\n2025-07-15 11:47:36.879 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50237 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:48:36.867 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:48:36.869 [info] [command][459c45a6-9290-4e0e-ae62-8d7470211a70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""459c45a6-9290-4e0e-ae62-8d7470211a70""}\n2025-07-15 11:48:36.870 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][07ded031-ac71-47f0-aea9-a2867e4a920b] received connection request\n2025-07-15 11:48:36.871 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:48:36.890 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][07ded031-ac71-47f0-aea9-a2867e4a920b] socks forwarding established\n2025-07-15 11:48:36.927 [info] [command][459c45a6-9290-4e0e-ae62-8d7470211a70] Process exited with code 0\n2025-07-15 11:48:36.927 [info] [command][459c45a6-9290-4e0e-ae62-8d7470211a70] Socket close event received\n2025-07-15 11:48:36.942 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][07ded031-ac71-47f0-aea9-a2867e4a920b] socks connection closed\n2025-07-15 11:48:36.945 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50262 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:49:36.933 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:49:36.935 [info] [command][bee4a27e-8b52-483a-8d8e-9f55d6c10272] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bee4a27e-8b52-483a-8d8e-9f55d6c10272""}\n2025-07-15 11:49:36.936 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][34d6eeba-947f-4b7c-b36f-50ef82e8fd46] received connection request\n2025-07-15 11:49:36.937 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:49:36.959 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34d6eeba-947f-4b7c-b36f-50ef82e8fd46] socks forwarding established\n2025-07-15 11:49:36.995 [info] [command][bee4a27e-8b52-483a-8d8e-9f55d6c10272] Process exited with code 0\n2025-07-15 11:49:36.995 [info] [command][bee4a27e-8b52-483a-8d8e-9f55d6c10272] Socket close event received\n2025-07-15 11:49:37.007 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34d6eeba-947f-4b7c-b36f-50ef82e8fd46] socks connection closed\n2025-07-15 11:49:37.017 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50301 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:50:36.998 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:50:36.999 [info] [command][a853f021-5a85-4d7b-b41a-053fe4565f3c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a853f021-5a85-4d7b-b41a-053fe4565f3c""}\n2025-07-15 11:50:36.999 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][73131b5c-3b05-4104-a52e-82c951655c3d] received connection request\n2025-07-15 11:50:36.999 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:50:37.074 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][73131b5c-3b05-4104-a52e-82c951655c3d] socks forwarding established\n2025-07-15 11:50:37.106 [info] [command][a853f021-5a85-4d7b-b41a-053fe4565f3c] Process exited with code 0\n2025-07-15 11:50:37.106 [info] [command][a853f021-5a85-4d7b-b41a-053fe4565f3c] Socket close event received\n2025-07-15 11:50:37.110 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][73131b5c-3b05-4104-a52e-82c951655c3d] socks connection closed\n2025-07-15 11:50:37.159 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50334 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:51:37.111 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:51:37.113 [info] [command][282d369e-fa35-4812-9e82-f9ee36ecd3ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""282d369e-fa35-4812-9e82-f9ee36ecd3ae""}\n2025-07-15 11:51:37.114 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d6c41ef9-59df-4ddc-85cd-520a509528be] received connection request\n2025-07-15 11:51:37.115 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:51:37.133 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d6c41ef9-59df-4ddc-85cd-520a509528be] socks forwarding established\n2025-07-15 11:51:37.169 [info] [command][282d369e-fa35-4812-9e82-f9ee36ecd3ae] Process exited with code 0\n2025-07-15 11:51:37.169 [info] [command][282d369e-fa35-4812-9e82-f9ee36ecd3ae] Socket close event received\n2025-07-15 11:51:37.171 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d6c41ef9-59df-4ddc-85cd-520a509528be] socks connection closed\n2025-07-15 11:51:37.194 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50367 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:52:37.175 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:52:37.176 [info] [command][84bbee56-ac68-43f4-adcb-cb22d62d7f35] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""84bbee56-ac68-43f4-adcb-cb22d62d7f35""}\n2025-07-15 11:52:37.177 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][924fdf30-e0b4-40f0-9e60-ce4710c18811] received connection request\n2025-07-15 11:52:37.177 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:52:37.328 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][924fdf30-e0b4-40f0-9e60-ce4710c18811] socks forwarding established\n2025-07-15 11:52:37.362 [info] [command][84bbee56-ac68-43f4-adcb-cb22d62d7f35] Process exited with code 0\n2025-07-15 11:52:37.362 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][924fdf30-e0b4-40f0-9e60-ce4710c18811] socks connection closed\n2025-07-15 11:52:37.362 [info] [command][84bbee56-ac68-43f4-adcb-cb22d62d7f35] Socket close event received\n2025-07-15 11:52:37.472 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50383 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:53:37.366 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:53:37.369 [info] [command][3b1659df-c66b-4121-bd7e-800f2dac58dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3b1659df-c66b-4121-bd7e-800f2dac58dc""}\n2025-07-15 11:53:37.370 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][15b93f2c-abb6-49bd-a6c1-6eb889a27168] received connection request\n2025-07-15 11:53:37.370 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:53:37.397 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][15b93f2c-abb6-49bd-a6c1-6eb889a27168] socks forwarding established\n2025-07-15 11:53:37.435 [info] [command][3b1659df-c66b-4121-bd7e-800f2dac58dc] Process exited with code 0\n2025-07-15 11:53:37.435 [info] [command][3b1659df-c66b-4121-bd7e-800f2dac58dc] Socket close event received\n2025-07-15 11:53:37.437 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][15b93f2c-abb6-49bd-a6c1-6eb889a27168] socks connection closed\n2025-07-15 11:53:37.462 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50398 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:54:37.441 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:54:37.443 [info] [command][3b419116-9e79-4454-85e6-bc7f16914f3b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3b419116-9e79-4454-85e6-bc7f16914f3b""}\n2025-07-15 11:54:37.445 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c38036b0-6805-4a2c-ad8f-37be3b20caef] received connection request\n2025-07-15 11:54:37.446 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:54:37.464 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c38036b0-6805-4a2c-ad8f-37be3b20caef] socks forwarding established\n2025-07-15 11:54:37.507 [info] [command][3b419116-9e79-4454-85e6-bc7f16914f3b] Process exited with code 0\n2025-07-15 11:54:37.507 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c38036b0-6805-4a2c-ad8f-37be3b20caef] socks connection closed\n2025-07-15 11:54:37.507 [info] [command][3b419116-9e79-4454-85e6-bc7f16914f3b] Socket close event received\n2025-07-15 11:54:37.525 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50431 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:55:37.512 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:55:37.513 [info] [command][030620e8-2eb2-4c80-b0f3-33cc3183c46d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""030620e8-2eb2-4c80-b0f3-33cc3183c46d""}\n2025-07-15 11:55:37.514 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][03c30b31-9650-45bd-8c63-afe6d27cf72a] received connection request\n2025-07-15 11:55:37.515 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:55:37.534 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][03c30b31-9650-45bd-8c63-afe6d27cf72a] socks forwarding established\n2025-07-15 11:55:37.574 [info] [command][030620e8-2eb2-4c80-b0f3-33cc3183c46d] Process exited with code 0\n2025-07-15 11:55:37.574 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][03c30b31-9650-45bd-8c63-afe6d27cf72a] socks connection closed\n2025-07-15 11:55:37.574 [info] [command][030620e8-2eb2-4c80-b0f3-33cc3183c46d] Socket close event received\n2025-07-15 11:55:37.593 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50449 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:56:37.580 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:56:37.582 [info] [command][da49ea53-4bdb-4417-abc8-42de4b15fa81] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""da49ea53-4bdb-4417-abc8-42de4b15fa81""}\n2025-07-15 11:56:37.583 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][56c53a5d-aaef-4e2b-9cc6-3d289ad83341] received connection request\n2025-07-15 11:56:37.583 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:56:37.633 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][56c53a5d-aaef-4e2b-9cc6-3d289ad83341] socks forwarding established\n2025-07-15 11:56:37.791 [info] [command][da49ea53-4bdb-4417-abc8-42de4b15fa81] Process exited with code 0\n2025-07-15 11:56:37.792 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][56c53a5d-aaef-4e2b-9cc6-3d289ad83341] socks connection closed\n2025-07-15 11:56:37.792 [info] [command][da49ea53-4bdb-4417-abc8-42de4b15fa81] Socket close event received\n2025-07-15 11:56:37.812 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50476 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:57:37.798 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:57:37.799 [info] [command][bd19ad32-ac08-4233-8d91-afd8a12f6d9b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bd19ad32-ac08-4233-8d91-afd8a12f6d9b""}\n2025-07-15 11:57:37.800 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][73b393fe-71cd-4f92-8053-15f0a1c875fb] received connection request\n2025-07-15 11:57:37.800 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:57:37.825 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][73b393fe-71cd-4f92-8053-15f0a1c875fb] socks forwarding established\n2025-07-15 11:57:37.854 [info] [command][bd19ad32-ac08-4233-8d91-afd8a12f6d9b] Process exited with code 0\n2025-07-15 11:57:37.854 [info] [command][bd19ad32-ac08-4233-8d91-afd8a12f6d9b] Socket close event received\n2025-07-15 11:57:37.871 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][73b393fe-71cd-4f92-8053-15f0a1c875fb] socks connection closed\n2025-07-15 11:57:37.872 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50491 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:58:37.859 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:58:37.860 [info] [command][802d1809-f3f0-4a01-a4ae-52ae39876997] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""802d1809-f3f0-4a01-a4ae-52ae39876997""}\n2025-07-15 11:58:37.861 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f6ee343d-95f4-46da-accb-3968d056b95c] received connection request\n2025-07-15 11:58:37.862 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:58:37.879 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f6ee343d-95f4-46da-accb-3968d056b95c] socks forwarding established\n2025-07-15 11:58:37.913 [info] [command][802d1809-f3f0-4a01-a4ae-52ae39876997] Process exited with code 0\n2025-07-15 11:58:37.913 [info] [command][802d1809-f3f0-4a01-a4ae-52ae39876997] Socket close event received\n2025-07-15 11:58:37.915 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f6ee343d-95f4-46da-accb-3968d056b95c] socks connection closed\n2025-07-15 11:58:37.930 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50503 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 11:59:37.916 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 11:59:37.917 [info] [command][d3064803-2041-4586-b82b-65f5ccdd4b43] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d3064803-2041-4586-b82b-65f5ccdd4b43""}\n2025-07-15 11:59:37.918 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e61cdb30-4de7-4d23-9e4e-fd5ef6493825] received connection request\n2025-07-15 11:59:37.919 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 11:59:38.002 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e61cdb30-4de7-4d23-9e4e-fd5ef6493825] socks forwarding established\n2025-07-15 11:59:38.032 [info] [command][d3064803-2041-4586-b82b-65f5ccdd4b43] Process exited with code 0\n2025-07-15 11:59:38.032 [info] [command][d3064803-2041-4586-b82b-65f5ccdd4b43] Socket close event received\n2025-07-15 11:59:38.037 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e61cdb30-4de7-4d23-9e4e-fd5ef6493825] socks connection closed\n2025-07-15 11:59:38.094 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50533 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:00:38.038 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:00:38.040 [info] [command][348b62d3-ef0e-4b9d-b502-a63aff97b707] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""348b62d3-ef0e-4b9d-b502-a63aff97b707""}\n2025-07-15 12:00:38.041 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e71b9f2f-28e8-4bba-903b-a0fca96595e3] received connection request\n2025-07-15 12:00:38.042 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:00:38.060 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e71b9f2f-28e8-4bba-903b-a0fca96595e3] socks forwarding established\n2025-07-15 12:00:38.097 [info] [command][348b62d3-ef0e-4b9d-b502-a63aff97b707] Process exited with code 0\n2025-07-15 12:00:38.097 [info] [command][348b62d3-ef0e-4b9d-b502-a63aff97b707] Socket close event received\n2025-07-15 12:00:38.098 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e71b9f2f-28e8-4bba-903b-a0fca96595e3] socks connection closed\n2025-07-15 12:00:38.115 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50571 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:01:38.103 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:01:38.104 [info] [command][b7cd605c-070a-4e99-a1c8-9e2f19310c68] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b7cd605c-070a-4e99-a1c8-9e2f19310c68""}\n2025-07-15 12:01:38.105 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3d80f524-ebcc-4ad8-9463-94e155f5f4d3] received connection request\n2025-07-15 12:01:38.106 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:01:38.154 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d80f524-ebcc-4ad8-9463-94e155f5f4d3] socks forwarding established\n2025-07-15 12:01:38.311 [info] [command][b7cd605c-070a-4e99-a1c8-9e2f19310c68] Process exited with code 0\n2025-07-15 12:01:38.311 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d80f524-ebcc-4ad8-9463-94e155f5f4d3] socks connection closed\n2025-07-15 12:01:38.311 [info] [command][b7cd605c-070a-4e99-a1c8-9e2f19310c68] Socket close event received\n2025-07-15 12:01:38.328 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50600 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:02:38.316 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:02:38.317 [info] [command][e7406471-04b1-46b7-a69c-bc0b6d7cb82c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e7406471-04b1-46b7-a69c-bc0b6d7cb82c""}\n2025-07-15 12:02:38.318 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5745421f-e303-43f9-8b17-a15886197eee] received connection request\n2025-07-15 12:02:38.319 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:02:38.336 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5745421f-e303-43f9-8b17-a15886197eee] socks forwarding established\n2025-07-15 12:02:38.368 [info] [command][e7406471-04b1-46b7-a69c-bc0b6d7cb82c] Process exited with code 0\n2025-07-15 12:02:38.369 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5745421f-e303-43f9-8b17-a15886197eee] socks connection closed\n2025-07-15 12:02:38.369 [info] [command][e7406471-04b1-46b7-a69c-bc0b6d7cb82c] Socket close event received\n2025-07-15 12:02:38.385 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50614 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:03:38.374 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:03:38.377 [info] [command][34cae939-f537-48fb-98c8-692c86724bbd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""34cae939-f537-48fb-98c8-692c86724bbd""}\n2025-07-15 12:03:38.378 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f53813ca-16d8-46da-ae4a-c3e1b9e16fb2] received connection request\n2025-07-15 12:03:38.378 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:03:38.397 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f53813ca-16d8-46da-ae4a-c3e1b9e16fb2] socks forwarding established\n2025-07-15 12:03:38.433 [info] [command][34cae939-f537-48fb-98c8-692c86724bbd] Process exited with code 0\n2025-07-15 12:03:38.434 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f53813ca-16d8-46da-ae4a-c3e1b9e16fb2] socks connection closed\n2025-07-15 12:03:38.434 [info] [command][34cae939-f537-48fb-98c8-692c86724bbd] Socket close event received\n2025-07-15 12:03:38.455 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50634 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:04:38.435 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:04:38.437 [info] [command][a3ec75e1-3407-460c-8326-7e28cf465b25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a3ec75e1-3407-460c-8326-7e28cf465b25""}\n2025-07-15 12:04:38.438 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][07d3660e-d5b1-4a67-b783-d12a4ae9f2ee] received connection request\n2025-07-15 12:04:38.438 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:04:38.466 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][07d3660e-d5b1-4a67-b783-d12a4ae9f2ee] socks forwarding established\n2025-07-15 12:04:38.499 [info] [command][a3ec75e1-3407-460c-8326-7e28cf465b25] Process exited with code 0\n2025-07-15 12:04:38.500 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][07d3660e-d5b1-4a67-b783-d12a4ae9f2ee] socks connection closed\n2025-07-15 12:04:38.500 [info] [command][a3ec75e1-3407-460c-8326-7e28cf465b25] Socket close event received\n2025-07-15 12:04:38.517 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50671 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:05:38.505 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:05:38.507 [info] [command][1186485c-9139-4aab-8f1a-0712cc1a74e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1186485c-9139-4aab-8f1a-0712cc1a74e2""}\n2025-07-15 12:05:38.508 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3682c55f-dfb2-4d8f-be91-7b33c4a7e5e1] received connection request\n2025-07-15 12:05:38.509 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:05:38.536 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3682c55f-dfb2-4d8f-be91-7b33c4a7e5e1] socks forwarding established\n2025-07-15 12:05:38.682 [info] [command][1186485c-9139-4aab-8f1a-0712cc1a74e2] Process exited with code 0\n2025-07-15 12:05:38.683 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3682c55f-dfb2-4d8f-be91-7b33c4a7e5e1] socks connection closed\n2025-07-15 12:05:38.683 [info] [command][1186485c-9139-4aab-8f1a-0712cc1a74e2] Socket close event received\n2025-07-15 12:05:38.701 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50690 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:06:38.688 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:06:38.689 [info] [command][1a4d7ee7-a174-4b5e-9369-fb52bec69dae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1a4d7ee7-a174-4b5e-9369-fb52bec69dae""}\n2025-07-15 12:06:38.690 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1d638af0-765f-4ea6-980b-677161b6df3a] received connection request\n2025-07-15 12:06:38.691 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:06:38.709 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1d638af0-765f-4ea6-980b-677161b6df3a] socks forwarding established\n2025-07-15 12:06:38.761 [info] [command][1a4d7ee7-a174-4b5e-9369-fb52bec69dae] Process exited with code 0\n2025-07-15 12:06:38.762 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1d638af0-765f-4ea6-980b-677161b6df3a] socks connection closed\n2025-07-15 12:06:38.762 [info] [command][1a4d7ee7-a174-4b5e-9369-fb52bec69dae] Socket close event received\n2025-07-15 12:06:38.781 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50721 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:07:38.762 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:07:38.764 [info] [command][0ee74897-bc49-4010-b754-8a105e8fefea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0ee74897-bc49-4010-b754-8a105e8fefea""}\n2025-07-15 12:07:38.765 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c70f708d-9572-444f-bcbe-defacb367bec] received connection request\n2025-07-15 12:07:38.765 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:07:38.783 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c70f708d-9572-444f-bcbe-defacb367bec] socks forwarding established\n2025-07-15 12:07:38.816 [info] [command][0ee74897-bc49-4010-b754-8a105e8fefea] Process exited with code 0\n2025-07-15 12:07:38.816 [info] [command][0ee74897-bc49-4010-b754-8a105e8fefea] Socket close event received\n2025-07-15 12:07:38.817 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c70f708d-9572-444f-bcbe-defacb367bec] socks connection closed\n2025-07-15 12:07:38.836 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50733 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:08:38.819 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:08:38.820 [info] [command][3ffcdffa-6278-492d-9c02-fc312899d237] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3ffcdffa-6278-492d-9c02-fc312899d237""}\n2025-07-15 12:08:38.820 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][68b3e159-5f4d-4e26-9242-e34381290b85] received connection request\n2025-07-15 12:08:38.821 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:08:38.837 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][68b3e159-5f4d-4e26-9242-e34381290b85] socks forwarding established\n2025-07-15 12:08:38.868 [info] [command][3ffcdffa-6278-492d-9c02-fc312899d237] Process exited with code 0\n2025-07-15 12:08:38.868 [info] [command][3ffcdffa-6278-492d-9c02-fc312899d237] Socket close event received\n2025-07-15 12:08:38.868 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][68b3e159-5f4d-4e26-9242-e34381290b85] socks connection closed\n2025-07-15 12:08:38.885 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50756 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:09:38.868 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:09:38.869 [info] [command][fc59dffb-f7d6-4807-abc7-0b5fdc2ed7e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fc59dffb-f7d6-4807-abc7-0b5fdc2ed7e2""}\n2025-07-15 12:09:38.870 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fbab6e6d-8f06-4123-b9f2-6b99a9d1ab9f] received connection request\n2025-07-15 12:09:38.870 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:09:38.886 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fbab6e6d-8f06-4123-b9f2-6b99a9d1ab9f] socks forwarding established\n2025-07-15 12:09:38.922 [info] [command][fc59dffb-f7d6-4807-abc7-0b5fdc2ed7e2] Process exited with code 0\n2025-07-15 12:09:38.923 [info] [command][fc59dffb-f7d6-4807-abc7-0b5fdc2ed7e2] Socket close event received\n2025-07-15 12:09:38.946 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fbab6e6d-8f06-4123-b9f2-6b99a9d1ab9f] socks connection closed\n2025-07-15 12:09:38.946 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50789 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:10:38.926 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:10:38.927 [info] [command][dd965901-9ed0-41da-948d-784a973cd84e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""dd965901-9ed0-41da-948d-784a973cd84e""}\n2025-07-15 12:10:38.928 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e93651ed-03ed-4be8-b764-ec15f50bd3e5] received connection request\n2025-07-15 12:10:38.930 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:10:38.949 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e93651ed-03ed-4be8-b764-ec15f50bd3e5] socks forwarding established\n2025-07-15 12:10:38.980 [info] [command][dd965901-9ed0-41da-948d-784a973cd84e] Process exited with code 0\n2025-07-15 12:10:38.980 [info] [command][dd965901-9ed0-41da-948d-784a973cd84e] Socket close event received\n2025-07-15 12:10:38.981 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e93651ed-03ed-4be8-b764-ec15f50bd3e5] socks connection closed\n2025-07-15 12:10:38.999 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50812 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:11:38.983 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:11:38.986 [info] [command][ebf6dc14-d199-498c-89dc-cbd44731090c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ebf6dc14-d199-498c-89dc-cbd44731090c""}\n2025-07-15 12:11:38.987 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e4d52036-a6fa-4a56-9be4-1cafdef0f4e1] received connection request\n2025-07-15 12:11:38.987 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:11:39.022 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e4d52036-a6fa-4a56-9be4-1cafdef0f4e1] socks forwarding established\n2025-07-15 12:11:39.071 [info] [command][ebf6dc14-d199-498c-89dc-cbd44731090c] Process exited with code 0\n2025-07-15 12:11:39.071 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e4d52036-a6fa-4a56-9be4-1cafdef0f4e1] socks connection closed\n2025-07-15 12:11:39.071 [info] [command][ebf6dc14-d199-498c-89dc-cbd44731090c] Socket close event received\n2025-07-15 12:11:39.088 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50899 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:12:39.076 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:12:39.077 [info] [command][bc3001ab-1a64-412b-a39a-35a6879d9e94] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bc3001ab-1a64-412b-a39a-35a6879d9e94""}\n2025-07-15 12:12:39.078 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7d6d2d6c-51d5-41f2-9733-324d2902c7fe] received connection request\n2025-07-15 12:12:39.078 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:12:39.095 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7d6d2d6c-51d5-41f2-9733-324d2902c7fe] socks forwarding established\n2025-07-15 12:12:39.176 [info] [command][bc3001ab-1a64-412b-a39a-35a6879d9e94] Process exited with code 0\n2025-07-15 12:12:39.176 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7d6d2d6c-51d5-41f2-9733-324d2902c7fe] socks connection closed\n2025-07-15 12:12:39.176 [info] [command][bc3001ab-1a64-412b-a39a-35a6879d9e94] Socket close event received\n2025-07-15 12:12:39.246 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50924 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:13:39.178 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:13:39.178 [info] [command][b255c19e-8b39-404b-b166-a224d28c5581] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b255c19e-8b39-404b-b166-a224d28c5581""}\n2025-07-15 12:13:39.179 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][66b290b6-3d6b-4499-9c53-421059aa7549] received connection request\n2025-07-15 12:13:39.179 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:13:39.201 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][66b290b6-3d6b-4499-9c53-421059aa7549] socks forwarding established\n2025-07-15 12:13:39.235 [info] [command][b255c19e-8b39-404b-b166-a224d28c5581] Process exited with code 0\n2025-07-15 12:13:39.235 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][66b290b6-3d6b-4499-9c53-421059aa7549] socks connection closed\n2025-07-15 12:13:39.235 [info] [command][b255c19e-8b39-404b-b166-a224d28c5581] Socket close event received\n2025-07-15 12:13:39.252 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50949 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:14:39.239 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:14:39.241 [info] [command][1eed5774-58ac-45a1-b211-e9594cf30014] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1eed5774-58ac-45a1-b211-e9594cf30014""}\n2025-07-15 12:14:39.242 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fc7d51a6-9869-42e1-932d-f1f3ebf0f32c] received connection request\n2025-07-15 12:14:39.243 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:14:39.266 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fc7d51a6-9869-42e1-932d-f1f3ebf0f32c] socks forwarding established\n2025-07-15 12:14:39.298 [info] [command][1eed5774-58ac-45a1-b211-e9594cf30014] Process exited with code 0\n2025-07-15 12:14:39.298 [info] [command][1eed5774-58ac-45a1-b211-e9594cf30014] Socket close event received\n2025-07-15 12:14:39.298 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fc7d51a6-9869-42e1-932d-f1f3ebf0f32c] socks connection closed\n2025-07-15 12:14:39.316 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 50981 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:15:39.303 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:15:39.305 [info] [command][83e796bb-7665-4a02-b2aa-0e423a11c37c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""83e796bb-7665-4a02-b2aa-0e423a11c37c""}\n2025-07-15 12:15:39.306 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c01d5e9b-fe7a-4042-8bf6-6452fff6fd55] received connection request\n2025-07-15 12:15:39.307 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:15:39.327 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c01d5e9b-fe7a-4042-8bf6-6452fff6fd55] socks forwarding established\n2025-07-15 12:15:39.358 [info] [command][83e796bb-7665-4a02-b2aa-0e423a11c37c] Process exited with code 0\n2025-07-15 12:15:39.358 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c01d5e9b-fe7a-4042-8bf6-6452fff6fd55] socks connection closed\n2025-07-15 12:15:39.359 [info] [command][83e796bb-7665-4a02-b2aa-0e423a11c37c] Socket close event received\n2025-07-15 12:15:39.375 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51008 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:16:39.362 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:16:39.364 [info] [command][5ac0114d-1086-429e-a3b9-90b671f19a63] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5ac0114d-1086-429e-a3b9-90b671f19a63""}\n2025-07-15 12:16:39.365 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4b0403ab-df7d-476a-8e09-d6391dceba1d] received connection request\n2025-07-15 12:16:39.365 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:16:39.516 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4b0403ab-df7d-476a-8e09-d6391dceba1d] socks forwarding established\n2025-07-15 12:16:39.549 [info] [command][5ac0114d-1086-429e-a3b9-90b671f19a63] Process exited with code 0\n2025-07-15 12:16:39.550 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4b0403ab-df7d-476a-8e09-d6391dceba1d] socks connection closed\n2025-07-15 12:16:39.550 [info] [command][5ac0114d-1086-429e-a3b9-90b671f19a63] Socket close event received\n2025-07-15 12:16:39.693 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51040 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:17:39.553 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:17:39.554 [info] [command][83c1066a-0c8c-4347-98b8-937c72d94362] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""83c1066a-0c8c-4347-98b8-937c72d94362""}\n2025-07-15 12:17:39.555 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e5f56766-3deb-4bda-94b7-0d1ebc76b0c3] received connection request\n2025-07-15 12:17:39.555 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:17:39.576 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e5f56766-3deb-4bda-94b7-0d1ebc76b0c3] socks forwarding established\n2025-07-15 12:17:39.607 [info] [command][83c1066a-0c8c-4347-98b8-937c72d94362] Process exited with code 0\n2025-07-15 12:17:39.608 [info] [command][83c1066a-0c8c-4347-98b8-937c72d94362] Socket close event received\n2025-07-15 12:17:39.623 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e5f56766-3deb-4bda-94b7-0d1ebc76b0c3] socks connection closed\n2025-07-15 12:17:39.624 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51061 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:18:39.610 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:18:39.611 [info] [command][9d7d468d-edbb-4714-9e0e-545f417d368a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9d7d468d-edbb-4714-9e0e-545f417d368a""}\n2025-07-15 12:18:39.611 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6d637e25-251e-4544-847f-193fea955014] received connection request\n2025-07-15 12:18:39.611 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:18:39.629 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6d637e25-251e-4544-847f-193fea955014] socks forwarding established\n2025-07-15 12:18:39.659 [info] [command][9d7d468d-edbb-4714-9e0e-545f417d368a] Process exited with code 0\n2025-07-15 12:18:39.659 [info] [command][9d7d468d-edbb-4714-9e0e-545f417d368a] Socket close event received\n2025-07-15 12:18:39.660 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6d637e25-251e-4544-847f-193fea955014] socks connection closed\n2025-07-15 12:18:39.675 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51083 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:19:39.660 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:19:39.661 [info] [command][99b986b9-b08f-4aeb-9dc3-dcb4288a5bff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""99b986b9-b08f-4aeb-9dc3-dcb4288a5bff""}\n2025-07-15 12:19:39.662 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3bdf7abf-d1f0-461f-bd3e-fca8411a1e7f] received connection request\n2025-07-15 12:19:39.662 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 12:19:39.662 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:19:39.679 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3bdf7abf-d1f0-461f-bd3e-fca8411a1e7f] socks forwarding established\n2025-07-15 12:19:39.711 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3bdf7abf-d1f0-461f-bd3e-fca8411a1e7f] socks connection closed\n2025-07-15 12:19:39.711 [info] [command][99b986b9-b08f-4aeb-9dc3-dcb4288a5bff] Process exited with code 0\n2025-07-15 12:19:39.711 [info] [command][99b986b9-b08f-4aeb-9dc3-dcb4288a5bff] Socket close event received\n2025-07-15 12:19:39.816 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51109 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:20:39.715 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:20:39.717 [info] [command][04c89723-7e4f-4a5a-a4bd-aff085524100] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""04c89723-7e4f-4a5a-a4bd-aff085524100""}\n2025-07-15 12:20:39.718 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][306a577a-6246-4735-81fd-0be96b55db09] received connection request\n2025-07-15 12:20:39.718 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:20:39.736 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][306a577a-6246-4735-81fd-0be96b55db09] socks forwarding established\n2025-07-15 12:20:39.770 [info] [command][04c89723-7e4f-4a5a-a4bd-aff085524100] Process exited with code 0\n2025-07-15 12:20:39.770 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][306a577a-6246-4735-81fd-0be96b55db09] socks connection closed\n2025-07-15 12:20:39.770 [info] [command][04c89723-7e4f-4a5a-a4bd-aff085524100] Socket close event received\n2025-07-15 12:20:39.790 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51135 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:21:39.775 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:21:39.779 [info] [command][9cf2c26c-0c3c-424d-b7b7-4b1b8b190dbb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9cf2c26c-0c3c-424d-b7b7-4b1b8b190dbb""}\n2025-07-15 12:21:39.779 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b84c573f-0b5e-4fe5-a766-fda4bd4e6b36] received connection request\n2025-07-15 12:21:39.780 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:21:39.798 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b84c573f-0b5e-4fe5-a766-fda4bd4e6b36] socks forwarding established\n2025-07-15 12:21:39.829 [info] [command][9cf2c26c-0c3c-424d-b7b7-4b1b8b190dbb] Process exited with code 0\n2025-07-15 12:21:39.830 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b84c573f-0b5e-4fe5-a766-fda4bd4e6b36] socks connection closed\n2025-07-15 12:21:39.830 [info] [command][9cf2c26c-0c3c-424d-b7b7-4b1b8b190dbb] Socket close event received\n2025-07-15 12:21:39.847 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51167 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:22:39.835 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:22:39.837 [info] [command][1ac9123c-8cb3-4378-87cb-6352c80a52ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1ac9123c-8cb3-4378-87cb-6352c80a52ff""}\n2025-07-15 12:22:39.838 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][27b69db4-b8bf-457b-82fc-ff370872722a] received connection request\n2025-07-15 12:22:39.839 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:22:39.928 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][27b69db4-b8bf-457b-82fc-ff370872722a] socks forwarding established\n2025-07-15 12:22:39.960 [info] [command][1ac9123c-8cb3-4378-87cb-6352c80a52ff] Process exited with code 0\n2025-07-15 12:22:39.960 [info] [command][1ac9123c-8cb3-4378-87cb-6352c80a52ff] Socket close event received\n2025-07-15 12:22:39.977 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][27b69db4-b8bf-457b-82fc-ff370872722a] socks connection closed\n2025-07-15 12:22:39.978 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51194 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:23:39.962 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:23:39.964 [info] [command][995c75ae-f99d-4f00-b3b5-4f2f567af522] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""995c75ae-f99d-4f00-b3b5-4f2f567af522""}\n2025-07-15 12:23:39.966 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d5785185-538f-45d8-8ba1-92309baecc64] received connection request\n2025-07-15 12:23:39.968 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:23:39.994 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d5785185-538f-45d8-8ba1-92309baecc64] socks forwarding established\n2025-07-15 12:23:40.029 [info] [command][995c75ae-f99d-4f00-b3b5-4f2f567af522] Process exited with code 0\n2025-07-15 12:23:40.030 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d5785185-538f-45d8-8ba1-92309baecc64] socks connection closed\n2025-07-15 12:23:40.031 [info] [command][995c75ae-f99d-4f00-b3b5-4f2f567af522] Socket close event received\n2025-07-15 12:23:40.061 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51220 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:24:40.034 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:24:40.036 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0a501cc2-0ecf-43fa-8c0f-19344af6f959] received connection request\n2025-07-15 12:24:40.036 [info] [command][9aebded8-84d6-4fe1-a8d9-6d0470244019] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9aebded8-84d6-4fe1-a8d9-6d0470244019""}\n2025-07-15 12:24:40.036 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:24:40.054 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0a501cc2-0ecf-43fa-8c0f-19344af6f959] socks forwarding established\n2025-07-15 12:24:40.084 [info] [command][9aebded8-84d6-4fe1-a8d9-6d0470244019] Process exited with code 0\n2025-07-15 12:24:40.085 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0a501cc2-0ecf-43fa-8c0f-19344af6f959] socks connection closed\n2025-07-15 12:24:40.085 [info] [command][9aebded8-84d6-4fe1-a8d9-6d0470244019] Socket close event received\n2025-07-15 12:24:40.189 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51247 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:25:40.088 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:25:40.091 [info] [command][9c42fbbb-237b-4a46-915f-0582d01f8d70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9c42fbbb-237b-4a46-915f-0582d01f8d70""}\n2025-07-15 12:25:40.091 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][55c63e0c-e9e4-4027-9a95-74dd68aaef7f] received connection request\n2025-07-15 12:25:40.092 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:25:40.111 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][55c63e0c-e9e4-4027-9a95-74dd68aaef7f] socks forwarding established\n2025-07-15 12:25:40.144 [info] [command][9c42fbbb-237b-4a46-915f-0582d01f8d70] Process exited with code 0\n2025-07-15 12:25:40.144 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][55c63e0c-e9e4-4027-9a95-74dd68aaef7f] socks connection closed\n2025-07-15 12:25:40.144 [info] [command][9c42fbbb-237b-4a46-915f-0582d01f8d70] Socket close event received\n2025-07-15 12:25:40.163 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51272 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:26:40.148 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:26:40.149 [info] [command][107c83aa-948a-47ef-9e2c-55348a1eca6d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""107c83aa-948a-47ef-9e2c-55348a1eca6d""}\n2025-07-15 12:26:40.149 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5762849c-453c-446e-804d-5e7cd5891b07] received connection request\n2025-07-15 12:26:40.149 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:26:40.283 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5762849c-453c-446e-804d-5e7cd5891b07] socks forwarding established\n2025-07-15 12:26:40.458 [info] [command][107c83aa-948a-47ef-9e2c-55348a1eca6d] Process exited with code 0\n2025-07-15 12:26:40.458 [info] [command][107c83aa-948a-47ef-9e2c-55348a1eca6d] Socket close event received\n2025-07-15 12:26:40.459 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5762849c-453c-446e-804d-5e7cd5891b07] socks connection closed\n2025-07-15 12:26:40.477 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51299 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:27:40.463 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:27:40.464 [info] [command][5b9110e8-916b-4f3c-8b03-13cc876fbeb0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5b9110e8-916b-4f3c-8b03-13cc876fbeb0""}\n2025-07-15 12:27:40.464 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7e89d944-2acd-488c-8e2d-93d90ae2b1a4] received connection request\n2025-07-15 12:27:40.464 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:27:40.555 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7e89d944-2acd-488c-8e2d-93d90ae2b1a4] socks forwarding established\n2025-07-15 12:27:40.602 [info] [command][5b9110e8-916b-4f3c-8b03-13cc876fbeb0] Process exited with code 0\n2025-07-15 12:27:40.602 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7e89d944-2acd-488c-8e2d-93d90ae2b1a4] socks connection closed\n2025-07-15 12:27:40.602 [info] [command][5b9110e8-916b-4f3c-8b03-13cc876fbeb0] Socket close event received\n2025-07-15 12:27:40.618 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51321 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:28:40.607 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:28:40.610 [info] [command][742b9d03-1110-4189-8aea-5c3fc9aa9a03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""742b9d03-1110-4189-8aea-5c3fc9aa9a03""}\n2025-07-15 12:28:40.611 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7fefe924-0b55-4aa3-9602-4815c91969f4] received connection request\n2025-07-15 12:28:40.612 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:28:40.630 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7fefe924-0b55-4aa3-9602-4815c91969f4] socks forwarding established\n2025-07-15 12:28:40.664 [info] [command][742b9d03-1110-4189-8aea-5c3fc9aa9a03] Process exited with code 0\n2025-07-15 12:28:40.664 [info] [command][742b9d03-1110-4189-8aea-5c3fc9aa9a03] Socket close event received\n2025-07-15 12:28:40.666 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7fefe924-0b55-4aa3-9602-4815c91969f4] socks connection closed\n2025-07-15 12:28:40.684 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51342 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:29:40.667 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:29:40.668 [info] [command][05e9d273-8c49-43ff-8cae-54b0b589167f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""05e9d273-8c49-43ff-8cae-54b0b589167f""}\n2025-07-15 12:29:40.669 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][61d715ab-c3ca-4b37-afbd-e548b0bb92c3] received connection request\n2025-07-15 12:29:40.669 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:29:40.686 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][61d715ab-c3ca-4b37-afbd-e548b0bb92c3] socks forwarding established\n2025-07-15 12:29:40.715 [info] [command][05e9d273-8c49-43ff-8cae-54b0b589167f] Process exited with code 0\n2025-07-15 12:29:40.716 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][61d715ab-c3ca-4b37-afbd-e548b0bb92c3] socks connection closed\n2025-07-15 12:29:40.716 [info] [command][05e9d273-8c49-43ff-8cae-54b0b589167f] Socket close event received\n2025-07-15 12:29:40.733 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51373 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:30:40.717 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:30:40.719 [info] [command][7b2a1e12-d1de-43c3-be6c-281462a532b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7b2a1e12-d1de-43c3-be6c-281462a532b0""}\n2025-07-15 12:30:40.720 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][06dda931-7afd-4907-8241-0e907b0d78c3] received connection request\n2025-07-15 12:30:40.721 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:30:40.739 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][06dda931-7afd-4907-8241-0e907b0d78c3] socks forwarding established\n2025-07-15 12:30:40.773 [info] [command][7b2a1e12-d1de-43c3-be6c-281462a532b0] Process exited with code 0\n2025-07-15 12:30:40.774 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][06dda931-7afd-4907-8241-0e907b0d78c3] socks connection closed\n2025-07-15 12:30:40.774 [info] [command][7b2a1e12-d1de-43c3-be6c-281462a532b0] Socket close event received\n2025-07-15 12:30:40.879 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51392 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:31:40.778 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:31:40.781 [info] [command][e68ef75b-7bcd-43b4-b340-b6f4f45d29f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e68ef75b-7bcd-43b4-b340-b6f4f45d29f5""}\n2025-07-15 12:31:40.781 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][505e18da-3956-4c3f-8c1e-d9123ba4acbe] received connection request\n2025-07-15 12:31:40.782 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:31:40.803 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][505e18da-3956-4c3f-8c1e-d9123ba4acbe] socks forwarding established\n2025-07-15 12:31:40.834 [info] [command][e68ef75b-7bcd-43b4-b340-b6f4f45d29f5] Process exited with code 0\n2025-07-15 12:31:40.834 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][505e18da-3956-4c3f-8c1e-d9123ba4acbe] socks connection closed\n2025-07-15 12:31:40.834 [info] [command][e68ef75b-7bcd-43b4-b340-b6f4f45d29f5] Socket close event received\n2025-07-15 12:31:40.854 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51422 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:32:40.839 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:32:40.841 [info] [command][957b42d1-5db7-47bf-90c8-4f6ee6a864f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""957b42d1-5db7-47bf-90c8-4f6ee6a864f6""}\n2025-07-15 12:32:40.841 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][11956430-32b8-45c3-aaab-b8d002955ee7] received connection request\n2025-07-15 12:32:40.841 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:32:40.864 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][11956430-32b8-45c3-aaab-b8d002955ee7] socks forwarding established\n2025-07-15 12:32:40.896 [info] [command][957b42d1-5db7-47bf-90c8-4f6ee6a864f6] Process exited with code 0\n2025-07-15 12:32:40.896 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][11956430-32b8-45c3-aaab-b8d002955ee7] socks connection closed\n2025-07-15 12:32:40.897 [info] [command][957b42d1-5db7-47bf-90c8-4f6ee6a864f6] Socket close event received\n2025-07-15 12:32:40.913 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51440 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:33:40.902 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:33:40.904 [info] [command][1f77ebb4-1c48-462f-a667-cea22763938f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1f77ebb4-1c48-462f-a667-cea22763938f""}\n2025-07-15 12:33:40.904 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6b265891-f2ba-4413-8677-347fdb691077] received connection request\n2025-07-15 12:33:40.904 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:33:40.922 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6b265891-f2ba-4413-8677-347fdb691077] socks forwarding established\n2025-07-15 12:33:40.952 [info] [command][1f77ebb4-1c48-462f-a667-cea22763938f] Process exited with code 0\n2025-07-15 12:33:40.952 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6b265891-f2ba-4413-8677-347fdb691077] socks connection closed\n2025-07-15 12:33:40.953 [info] [command][1f77ebb4-1c48-462f-a667-cea22763938f] Socket close event received\n2025-07-15 12:33:41.048 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51490 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:34:40.957 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:34:40.958 [info] [command][55bc3ce1-f637-4bf7-89fe-3b250ed8618b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""55bc3ce1-f637-4bf7-89fe-3b250ed8618b""}\n2025-07-15 12:34:40.958 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d156a0be-60ef-41c9-824a-cb51e687455b] received connection request\n2025-07-15 12:34:40.958 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:34:40.975 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d156a0be-60ef-41c9-824a-cb51e687455b] socks forwarding established\n2025-07-15 12:34:41.005 [info] [command][55bc3ce1-f637-4bf7-89fe-3b250ed8618b] Process exited with code 0\n2025-07-15 12:34:41.005 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d156a0be-60ef-41c9-824a-cb51e687455b] socks connection closed\n2025-07-15 12:34:41.005 [info] [command][55bc3ce1-f637-4bf7-89fe-3b250ed8618b] Socket close event received\n2025-07-15 12:34:41.024 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51515 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:35:41.011 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:35:41.012 [info] [command][58bc5292-92ec-409c-ab29-b761391e244f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""58bc5292-92ec-409c-ab29-b761391e244f""}\n2025-07-15 12:35:41.013 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][470ca4b8-4a26-486a-baca-8af77bd3b55e] received connection request\n2025-07-15 12:35:41.014 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:35:41.031 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][470ca4b8-4a26-486a-baca-8af77bd3b55e] socks forwarding established\n2025-07-15 12:35:41.064 [info] [command][58bc5292-92ec-409c-ab29-b761391e244f] Process exited with code 0\n2025-07-15 12:35:41.064 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][470ca4b8-4a26-486a-baca-8af77bd3b55e] socks connection closed\n2025-07-15 12:35:41.065 [info] [command][58bc5292-92ec-409c-ab29-b761391e244f] Socket close event received\n2025-07-15 12:35:41.082 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51534 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:36:41.070 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:36:41.070 [info] [command][7392ec01-8885-4077-bb40-929f78bbd354] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7392ec01-8885-4077-bb40-929f78bbd354""}\n2025-07-15 12:36:41.071 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ce638902-8dd2-4389-b5d9-1f57d11600ec] received connection request\n2025-07-15 12:36:41.071 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 12:36:41.071 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:36:41.129 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ce638902-8dd2-4389-b5d9-1f57d11600ec] socks forwarding established\n2025-07-15 12:36:41.159 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ce638902-8dd2-4389-b5d9-1f57d11600ec] socks connection closed\n2025-07-15 12:36:41.159 [info] [command][7392ec01-8885-4077-bb40-929f78bbd354] Process exited with code 0\n2025-07-15 12:36:41.160 [info] [command][7392ec01-8885-4077-bb40-929f78bbd354] Socket close event received\n2025-07-15 12:36:41.176 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51565 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:37:41.163 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:37:41.166 [info] [command][64ad4fe2-d5a7-4ddd-a969-2808237b8b2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""64ad4fe2-d5a7-4ddd-a969-2808237b8b2f""}\n2025-07-15 12:37:41.167 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1edcb4dd-4dd7-4632-99e1-1c6fc9e2206c] received connection request\n2025-07-15 12:37:41.168 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:37:41.185 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1edcb4dd-4dd7-4632-99e1-1c6fc9e2206c] socks forwarding established\n2025-07-15 12:37:41.218 [info] [command][64ad4fe2-d5a7-4ddd-a969-2808237b8b2f] Process exited with code 0\n2025-07-15 12:37:41.218 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1edcb4dd-4dd7-4632-99e1-1c6fc9e2206c] socks connection closed\n2025-07-15 12:37:41.218 [info] [command][64ad4fe2-d5a7-4ddd-a969-2808237b8b2f] Socket close event received\n2025-07-15 12:37:41.237 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51581 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:38:41.224 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:38:41.225 [info] [command][6898cc06-2001-4c74-a6c9-9abf0a4721d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6898cc06-2001-4c74-a6c9-9abf0a4721d5""}\n2025-07-15 12:38:41.225 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d4f08849-60c5-47a4-83d4-85367d4128e7] received connection request\n2025-07-15 12:38:41.226 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:38:41.244 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d4f08849-60c5-47a4-83d4-85367d4128e7] socks forwarding established\n2025-07-15 12:38:41.276 [info] [command][6898cc06-2001-4c74-a6c9-9abf0a4721d5] Process exited with code 0\n2025-07-15 12:38:41.276 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d4f08849-60c5-47a4-83d4-85367d4128e7] socks connection closed\n2025-07-15 12:38:41.276 [info] [command][6898cc06-2001-4c74-a6c9-9abf0a4721d5] Socket close event received\n2025-07-15 12:38:41.293 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51610 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:39:41.277 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:39:41.278 [info] [command][330f8ef3-3765-4b1f-8091-9d2eb384b93b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""330f8ef3-3765-4b1f-8091-9d2eb384b93b""}\n2025-07-15 12:39:41.279 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a7e41aa4-76ad-4509-8833-fae8b5ce2198] received connection request\n2025-07-15 12:39:41.280 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:39:41.312 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a7e41aa4-76ad-4509-8833-fae8b5ce2198] socks forwarding established\n2025-07-15 12:39:41.346 [info] [command][330f8ef3-3765-4b1f-8091-9d2eb384b93b] Process exited with code 0\n2025-07-15 12:39:41.346 [info] [command][330f8ef3-3765-4b1f-8091-9d2eb384b93b] Socket close event received\n2025-07-15 12:39:41.347 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a7e41aa4-76ad-4509-8833-fae8b5ce2198] socks connection closed\n2025-07-15 12:39:41.391 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51632 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:40:41.352 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:40:41.354 [info] [command][d2b09b23-6566-408d-925e-2758223dd757] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d2b09b23-6566-408d-925e-2758223dd757""}\n2025-07-15 12:40:41.355 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ce93d299-3b00-4812-a205-46a5e0d6e9a0] received connection request\n2025-07-15 12:40:41.356 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:40:41.453 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ce93d299-3b00-4812-a205-46a5e0d6e9a0] socks forwarding established\n2025-07-15 12:40:41.489 [info] [command][d2b09b23-6566-408d-925e-2758223dd757] Process exited with code 0\n2025-07-15 12:40:41.490 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ce93d299-3b00-4812-a205-46a5e0d6e9a0] socks connection closed\n2025-07-15 12:40:41.490 [info] [command][d2b09b23-6566-408d-925e-2758223dd757] Socket close event received\n2025-07-15 12:40:41.508 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51652 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:41:41.495 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:41:41.498 [info] [command][c2fb9700-62b9-4732-8c5f-e4c1fe1dcc08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c2fb9700-62b9-4732-8c5f-e4c1fe1dcc08""}\n2025-07-15 12:41:41.499 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3d63b760-32b9-464b-87d5-0908e49189c0] received connection request\n2025-07-15 12:41:41.499 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:41:41.518 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d63b760-32b9-464b-87d5-0908e49189c0] socks forwarding established\n2025-07-15 12:41:41.549 [info] [command][c2fb9700-62b9-4732-8c5f-e4c1fe1dcc08] Process exited with code 0\n2025-07-15 12:41:41.549 [info] [command][c2fb9700-62b9-4732-8c5f-e4c1fe1dcc08] Socket close event received\n2025-07-15 12:41:41.565 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d63b760-32b9-464b-87d5-0908e49189c0] socks connection closed\n2025-07-15 12:41:41.571 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51688 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:42:41.550 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:42:41.551 [info] [command][a96660b6-a877-435e-ace1-0848630f0f0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a96660b6-a877-435e-ace1-0848630f0f0a""}\n2025-07-15 12:42:41.552 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][61f149d0-6e5a-49ae-a563-944b77c36890] received connection request\n2025-07-15 12:42:41.552 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:42:41.569 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][61f149d0-6e5a-49ae-a563-944b77c36890] socks forwarding established\n2025-07-15 12:42:41.601 [info] [command][a96660b6-a877-435e-ace1-0848630f0f0a] Process exited with code 0\n2025-07-15 12:42:41.602 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][61f149d0-6e5a-49ae-a563-944b77c36890] socks connection closed\n2025-07-15 12:42:41.602 [info] [command][a96660b6-a877-435e-ace1-0848630f0f0a] Socket close event received\n2025-07-15 12:42:41.620 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51706 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:43:41.607 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:43:41.609 [info] [command][509787b5-c82a-4fc2-a076-6e5b1e5607c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""509787b5-c82a-4fc2-a076-6e5b1e5607c7""}\n2025-07-15 12:43:41.610 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][bd597a28-3061-4b85-99a0-0498edb3cd59] received connection request\n2025-07-15 12:43:41.610 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:43:41.667 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bd597a28-3061-4b85-99a0-0498edb3cd59] socks forwarding established\n2025-07-15 12:43:41.700 [info] [command][509787b5-c82a-4fc2-a076-6e5b1e5607c7] Process exited with code 0\n2025-07-15 12:43:41.701 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bd597a28-3061-4b85-99a0-0498edb3cd59] socks connection closed\n2025-07-15 12:43:41.701 [info] [command][509787b5-c82a-4fc2-a076-6e5b1e5607c7] Socket close event received\n2025-07-15 12:43:41.718 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51740 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:44:41.706 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:44:41.708 [info] [command][03c3d9fd-f652-454b-bc3f-09b13038da5d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""03c3d9fd-f652-454b-bc3f-09b13038da5d""}\n2025-07-15 12:44:41.709 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][10d499fd-77d1-4fd1-8b38-00d785856d47] received connection request\n2025-07-15 12:44:41.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:44:41.727 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][10d499fd-77d1-4fd1-8b38-00d785856d47] socks forwarding established\n2025-07-15 12:44:41.758 [info] [command][03c3d9fd-f652-454b-bc3f-09b13038da5d] Process exited with code 0\n2025-07-15 12:44:41.758 [info] [command][03c3d9fd-f652-454b-bc3f-09b13038da5d] Socket close event received\n2025-07-15 12:44:41.759 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][10d499fd-77d1-4fd1-8b38-00d785856d47] socks connection closed\n2025-07-15 12:44:41.775 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51761 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:45:41.759 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:45:41.761 [info] [command][abdf17b8-184f-4feb-95a0-43da8ae35ebf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""abdf17b8-184f-4feb-95a0-43da8ae35ebf""}\n2025-07-15 12:45:41.761 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][91e4e5b0-c3be-4b78-9a2b-69d1850684a7] received connection request\n2025-07-15 12:45:41.761 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:45:41.778 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][91e4e5b0-c3be-4b78-9a2b-69d1850684a7] socks forwarding established\n2025-07-15 12:45:41.809 [info] [command][abdf17b8-184f-4feb-95a0-43da8ae35ebf] Process exited with code 0\n2025-07-15 12:45:41.810 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][91e4e5b0-c3be-4b78-9a2b-69d1850684a7] socks connection closed\n2025-07-15 12:45:41.810 [info] [command][abdf17b8-184f-4feb-95a0-43da8ae35ebf] Socket close event received\n2025-07-15 12:45:41.826 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51796 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:46:41.813 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:46:41.815 [info] [command][768240c2-3541-4a6d-952a-643384c89eef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""768240c2-3541-4a6d-952a-643384c89eef""}\n2025-07-15 12:46:41.816 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2b58bee8-f079-4672-ac83-2101a3742493] received connection request\n2025-07-15 12:46:41.816 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:46:41.834 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2b58bee8-f079-4672-ac83-2101a3742493] socks forwarding established\n2025-07-15 12:46:41.867 [info] [command][768240c2-3541-4a6d-952a-643384c89eef] Process exited with code 0\n2025-07-15 12:46:41.867 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2b58bee8-f079-4672-ac83-2101a3742493] socks connection closed\n2025-07-15 12:46:41.867 [info] [command][768240c2-3541-4a6d-952a-643384c89eef] Socket close event received\n2025-07-15 12:46:41.885 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51830 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:47:41.868 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:47:41.870 [info] [command][f7176b2b-1e39-4263-a7be-06c6322236e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f7176b2b-1e39-4263-a7be-06c6322236e9""}\n2025-07-15 12:47:41.871 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][cab25226-961c-415e-95ba-3d5d09ff93dd] received connection request\n2025-07-15 12:47:41.871 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:47:41.901 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cab25226-961c-415e-95ba-3d5d09ff93dd] socks forwarding established\n2025-07-15 12:47:41.931 [info] [command][f7176b2b-1e39-4263-a7be-06c6322236e9] Process exited with code 0\n2025-07-15 12:47:41.932 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cab25226-961c-415e-95ba-3d5d09ff93dd] socks connection closed\n2025-07-15 12:47:41.932 [info] [command][f7176b2b-1e39-4263-a7be-06c6322236e9] Socket close event received\n2025-07-15 12:47:41.951 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51844 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:48:41.933 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:48:41.936 [info] [command][db8e6264-25d6-421c-ba3c-e47a9fc01106] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""db8e6264-25d6-421c-ba3c-e47a9fc01106""}\n2025-07-15 12:48:41.937 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f3c8c4ec-7253-47a0-9276-0175629e5fd2] received connection request\n2025-07-15 12:48:41.938 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:48:41.958 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f3c8c4ec-7253-47a0-9276-0175629e5fd2] socks forwarding established\n2025-07-15 12:48:41.991 [info] [command][db8e6264-25d6-421c-ba3c-e47a9fc01106] Process exited with code 0\n2025-07-15 12:48:41.992 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f3c8c4ec-7253-47a0-9276-0175629e5fd2] socks connection closed\n2025-07-15 12:48:41.992 [info] [command][db8e6264-25d6-421c-ba3c-e47a9fc01106] Socket close event received\n2025-07-15 12:48:42.010 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51873 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:49:41.996 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:49:41.998 [info] [command][2a754baa-c3d9-4ecb-9377-bf1c73452d85] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2a754baa-c3d9-4ecb-9377-bf1c73452d85""}\n2025-07-15 12:49:41.998 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ec4186e2-6d7d-48db-b206-427c80d33fcd] received connection request\n2025-07-15 12:49:41.998 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:49:42.099 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ec4186e2-6d7d-48db-b206-427c80d33fcd] socks forwarding established\n2025-07-15 12:49:42.135 [info] [command][2a754baa-c3d9-4ecb-9377-bf1c73452d85] Process exited with code 0\n2025-07-15 12:49:42.135 [info] [command][2a754baa-c3d9-4ecb-9377-bf1c73452d85] Socket close event received\n2025-07-15 12:49:42.137 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ec4186e2-6d7d-48db-b206-427c80d33fcd] socks connection closed\n2025-07-15 12:49:42.155 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51898 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:50:42.141 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:50:42.143 [info] [command][0c5e621c-24f6-4f04-8be9-241daa36cf57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0c5e621c-24f6-4f04-8be9-241daa36cf57""}\n2025-07-15 12:50:42.144 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4578e369-7f6e-49fd-a642-9955920560f9] received connection request\n2025-07-15 12:50:42.145 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 12:50:42.146 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:50:42.164 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4578e369-7f6e-49fd-a642-9955920560f9] socks forwarding established\n2025-07-15 12:50:42.196 [info] [command][0c5e621c-24f6-4f04-8be9-241daa36cf57] Process exited with code 0\n2025-07-15 12:50:42.196 [info] [command][0c5e621c-24f6-4f04-8be9-241daa36cf57] Socket close event received\n2025-07-15 12:50:42.196 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4578e369-7f6e-49fd-a642-9955920560f9] socks connection closed\n2025-07-15 12:50:42.213 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51915 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:51:42.197 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:51:42.198 [info] [command][5e7c805b-19bd-449f-bf7e-5d9216555a91] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5e7c805b-19bd-449f-bf7e-5d9216555a91""}\n2025-07-15 12:51:42.199 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4fda8c0a-f45e-45eb-bab9-3b5677f91f3e] received connection request\n2025-07-15 12:51:42.199 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:51:42.217 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4fda8c0a-f45e-45eb-bab9-3b5677f91f3e] socks forwarding established\n2025-07-15 12:51:42.248 [info] [command][5e7c805b-19bd-449f-bf7e-5d9216555a91] Process exited with code 0\n2025-07-15 12:51:42.249 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4fda8c0a-f45e-45eb-bab9-3b5677f91f3e] socks connection closed\n2025-07-15 12:51:42.249 [info] [command][5e7c805b-19bd-449f-bf7e-5d9216555a91] Socket close event received\n2025-07-15 12:51:42.266 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51945 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:52:42.251 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:52:42.252 [info] [command][3bcb776a-eb8d-4179-ab9d-634780f281a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3bcb776a-eb8d-4179-ab9d-634780f281a5""}\n2025-07-15 12:52:42.253 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d077b097-c0f4-4ba4-9bb7-df572f58b082] received connection request\n2025-07-15 12:52:42.253 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:52:42.277 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d077b097-c0f4-4ba4-9bb7-df572f58b082] socks forwarding established\n2025-07-15 12:52:42.312 [info] [command][3bcb776a-eb8d-4179-ab9d-634780f281a5] Process exited with code 0\n2025-07-15 12:52:42.313 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d077b097-c0f4-4ba4-9bb7-df572f58b082] socks connection closed\n2025-07-15 12:52:42.313 [info] [command][3bcb776a-eb8d-4179-ab9d-634780f281a5] Socket close event received\n2025-07-15 12:52:42.331 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51964 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:53:42.318 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:53:42.321 [info] [command][92f5e89c-592a-4d41-b726-48a7b3660ecb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""92f5e89c-592a-4d41-b726-48a7b3660ecb""}\n2025-07-15 12:53:42.322 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8892f8a2-2d50-4e1e-9dc7-ae4b42015e93] received connection request\n2025-07-15 12:53:42.323 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:53:42.340 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8892f8a2-2d50-4e1e-9dc7-ae4b42015e93] socks forwarding established\n2025-07-15 12:53:42.373 [info] [command][92f5e89c-592a-4d41-b726-48a7b3660ecb] Process exited with code 0\n2025-07-15 12:53:42.373 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8892f8a2-2d50-4e1e-9dc7-ae4b42015e93] socks connection closed\n2025-07-15 12:53:42.373 [info] [command][92f5e89c-592a-4d41-b726-48a7b3660ecb] Socket close event received\n2025-07-15 12:53:42.390 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 51994 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:54:42.376 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:54:42.378 [info] [command][066e857e-eb29-4ad2-a3d2-a4b41181c658] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""066e857e-eb29-4ad2-a3d2-a4b41181c658""}\n2025-07-15 12:54:42.379 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2dfc1bd4-bb2c-4360-a168-99d8e3d1c491] received connection request\n2025-07-15 12:54:42.380 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:54:42.398 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2dfc1bd4-bb2c-4360-a168-99d8e3d1c491] socks forwarding established\n2025-07-15 12:54:42.429 [info] [command][066e857e-eb29-4ad2-a3d2-a4b41181c658] Process exited with code 0\n2025-07-15 12:54:42.430 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2dfc1bd4-bb2c-4360-a168-99d8e3d1c491] socks connection closed\n2025-07-15 12:54:42.430 [info] [command][066e857e-eb29-4ad2-a3d2-a4b41181c658] Socket close event received\n2025-07-15 12:54:42.447 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52029 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:55:42.431 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:55:42.432 [info] [command][e5808f83-6470-4880-a0dc-fabcf8f1faeb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e5808f83-6470-4880-a0dc-fabcf8f1faeb""}\n2025-07-15 12:55:42.433 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0e2d5b98-3260-4ec8-8fe8-2c9dfbf7e179] received connection request\n2025-07-15 12:55:42.433 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:55:42.477 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0e2d5b98-3260-4ec8-8fe8-2c9dfbf7e179] socks forwarding established\n2025-07-15 12:55:42.645 [info] [command][e5808f83-6470-4880-a0dc-fabcf8f1faeb] Process exited with code 0\n2025-07-15 12:55:42.645 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0e2d5b98-3260-4ec8-8fe8-2c9dfbf7e179] socks connection closed\n2025-07-15 12:55:42.645 [info] [command][e5808f83-6470-4880-a0dc-fabcf8f1faeb] Socket close event received\n2025-07-15 12:55:42.661 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52050 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:56:42.649 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:56:42.651 [info] [command][fdd89227-7a97-4d71-a4d5-e9919579926a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fdd89227-7a97-4d71-a4d5-e9919579926a""}\n2025-07-15 12:56:42.652 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][eb9e8d4d-7cd7-4c40-bd64-7ca4eb6afb81] received connection request\n2025-07-15 12:56:42.653 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:56:42.671 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][eb9e8d4d-7cd7-4c40-bd64-7ca4eb6afb81] socks forwarding established\n2025-07-15 12:56:42.703 [info] [command][fdd89227-7a97-4d71-a4d5-e9919579926a] Process exited with code 0\n2025-07-15 12:56:42.703 [info] [command][fdd89227-7a97-4d71-a4d5-e9919579926a] Socket close event received\n2025-07-15 12:56:42.704 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][eb9e8d4d-7cd7-4c40-bd64-7ca4eb6afb81] socks connection closed\n2025-07-15 12:56:42.720 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52085 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:57:42.709 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:57:42.711 [info] [command][90a3017c-aa0b-4c6d-ae6b-e29bac6460eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""90a3017c-aa0b-4c6d-ae6b-e29bac6460eb""}\n2025-07-15 12:57:42.711 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][700de19b-8e10-4889-8a82-9c53f4851883] received connection request\n2025-07-15 12:57:42.711 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:57:42.730 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][700de19b-8e10-4889-8a82-9c53f4851883] socks forwarding established\n2025-07-15 12:57:42.761 [info] [command][90a3017c-aa0b-4c6d-ae6b-e29bac6460eb] Process exited with code 0\n2025-07-15 12:57:42.762 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][700de19b-8e10-4889-8a82-9c53f4851883] socks connection closed\n2025-07-15 12:57:42.762 [info] [command][90a3017c-aa0b-4c6d-ae6b-e29bac6460eb] Socket close event received\n2025-07-15 12:57:42.780 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52150 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:58:42.764 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:58:42.765 [info] [command][68fdf81d-9f73-4e9c-a4ad-881632c1b71b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""68fdf81d-9f73-4e9c-a4ad-881632c1b71b""}\n2025-07-15 12:58:42.765 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][094b1f3e-6fc5-4f23-a6bf-fb8240bca558] received connection request\n2025-07-15 12:58:42.766 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:58:42.782 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][094b1f3e-6fc5-4f23-a6bf-fb8240bca558] socks forwarding established\n2025-07-15 12:58:42.810 [info] [command][68fdf81d-9f73-4e9c-a4ad-881632c1b71b] Process exited with code 0\n2025-07-15 12:58:42.811 [info] [command][68fdf81d-9f73-4e9c-a4ad-881632c1b71b] Socket close event received\n2025-07-15 12:58:42.811 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][094b1f3e-6fc5-4f23-a6bf-fb8240bca558] socks connection closed\n2025-07-15 12:58:42.829 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52176 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 12:59:42.814 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 12:59:42.815 [info] [command][7414bf24-44a5-471e-a69b-882267635c77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7414bf24-44a5-471e-a69b-882267635c77""}\n2025-07-15 12:59:42.815 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ae4323d7-5827-4533-964a-09226a0e8754] received connection request\n2025-07-15 12:59:42.816 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 12:59:42.833 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ae4323d7-5827-4533-964a-09226a0e8754] socks forwarding established\n2025-07-15 12:59:42.864 [info] [command][7414bf24-44a5-471e-a69b-882267635c77] Process exited with code 0\n2025-07-15 12:59:42.864 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ae4323d7-5827-4533-964a-09226a0e8754] socks connection closed\n2025-07-15 12:59:42.864 [info] [command][7414bf24-44a5-471e-a69b-882267635c77] Socket close event received\n2025-07-15 12:59:42.880 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52241 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:00:42.869 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:00:42.871 [info] [command][4de760a2-7535-4644-b3ab-525f1996ae9f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4de760a2-7535-4644-b3ab-525f1996ae9f""}\n2025-07-15 13:00:42.872 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][656d619a-e10b-4238-b791-34b6cf0e48f7] received connection request\n2025-07-15 13:00:42.873 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:00:42.892 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][656d619a-e10b-4238-b791-34b6cf0e48f7] socks forwarding established\n2025-07-15 13:00:42.926 [info] [command][4de760a2-7535-4644-b3ab-525f1996ae9f] Process exited with code 0\n2025-07-15 13:00:42.926 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][656d619a-e10b-4238-b791-34b6cf0e48f7] socks connection closed\n2025-07-15 13:00:42.926 [info] [command][4de760a2-7535-4644-b3ab-525f1996ae9f] Socket close event received\n2025-07-15 13:00:42.949 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52279 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:01:42.929 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:01:42.930 [info] [command][c8ad7701-6e93-40e4-b192-7374aa1b5296] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c8ad7701-6e93-40e4-b192-7374aa1b5296""}\n2025-07-15 13:01:42.930 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fec5caca-3a4f-4c3f-9a36-d0211e278162] received connection request\n2025-07-15 13:01:42.931 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:01:42.948 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fec5caca-3a4f-4c3f-9a36-d0211e278162] socks forwarding established\n2025-07-15 13:01:42.982 [info] [command][c8ad7701-6e93-40e4-b192-7374aa1b5296] Process exited with code 0\n2025-07-15 13:01:42.982 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fec5caca-3a4f-4c3f-9a36-d0211e278162] socks connection closed\n2025-07-15 13:01:42.983 [info] [command][c8ad7701-6e93-40e4-b192-7374aa1b5296] Socket close event received\n2025-07-15 13:01:43.083 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52359 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:02:42.984 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:02:42.985 [info] [command][5ed0260e-dc40-4801-b343-3109737d9ce0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5ed0260e-dc40-4801-b343-3109737d9ce0""}\n2025-07-15 13:02:42.985 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f268e993-404b-46b3-bb42-66d85324671f] received connection request\n2025-07-15 13:02:42.986 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:02:43.004 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f268e993-404b-46b3-bb42-66d85324671f] socks forwarding established\n2025-07-15 13:02:43.034 [info] [command][5ed0260e-dc40-4801-b343-3109737d9ce0] Process exited with code 0\n2025-07-15 13:02:43.035 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f268e993-404b-46b3-bb42-66d85324671f] socks connection closed\n2025-07-15 13:02:43.035 [info] [command][5ed0260e-dc40-4801-b343-3109737d9ce0] Socket close event received\n2025-07-15 13:02:43.057 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52390 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:03:43.036 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:03:43.038 [info] [command][ae0cede6-2db8-4eed-b9f1-cb2f03e3ca94] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ae0cede6-2db8-4eed-b9f1-cb2f03e3ca94""}\n2025-07-15 13:03:43.039 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f89761fa-70be-42a6-842b-0e44c2f2e41f] received connection request\n2025-07-15 13:03:43.039 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:03:43.075 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f89761fa-70be-42a6-842b-0e44c2f2e41f] socks forwarding established\n2025-07-15 13:03:43.110 [info] [command][ae0cede6-2db8-4eed-b9f1-cb2f03e3ca94] Process exited with code 0\n2025-07-15 13:03:43.110 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f89761fa-70be-42a6-842b-0e44c2f2e41f] socks connection closed\n2025-07-15 13:03:43.110 [info] [command][ae0cede6-2db8-4eed-b9f1-cb2f03e3ca94] Socket close event received\n2025-07-15 13:03:43.129 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52429 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:04:43.116 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:04:43.118 [info] [command][64324805-339c-4cf3-a243-60adb204f302] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""64324805-339c-4cf3-a243-60adb204f302""}\n2025-07-15 13:04:43.119 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][487bf0b5-9ed3-46a3-b536-f7176844fafd] received connection request\n2025-07-15 13:04:43.119 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:04:43.137 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][487bf0b5-9ed3-46a3-b536-f7176844fafd] socks forwarding established\n2025-07-15 13:04:43.170 [info] [command][64324805-339c-4cf3-a243-60adb204f302] Process exited with code 0\n2025-07-15 13:04:43.170 [info] [command][64324805-339c-4cf3-a243-60adb204f302] Socket close event received\n2025-07-15 13:04:43.171 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][487bf0b5-9ed3-46a3-b536-f7176844fafd] socks connection closed\n2025-07-15 13:04:43.188 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52453 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:05:43.175 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:05:43.178 [info] [command][c26090aa-882b-49da-9ffd-87d6b9e88fb3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c26090aa-882b-49da-9ffd-87d6b9e88fb3""}\n2025-07-15 13:05:43.178 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][88a8a0fb-6513-4de1-a660-4d7f72a17c56] received connection request\n2025-07-15 13:05:43.179 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:05:43.196 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][88a8a0fb-6513-4de1-a660-4d7f72a17c56] socks forwarding established\n2025-07-15 13:05:43.228 [info] [command][c26090aa-882b-49da-9ffd-87d6b9e88fb3] Process exited with code 0\n2025-07-15 13:05:43.228 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][88a8a0fb-6513-4de1-a660-4d7f72a17c56] socks connection closed\n2025-07-15 13:05:43.228 [info] [command][c26090aa-882b-49da-9ffd-87d6b9e88fb3] Socket close event received\n2025-07-15 13:05:43.243 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52480 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:06:43.229 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:06:43.231 [info] [command][60a63387-c743-4de7-abd5-08a0ad40cdda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""60a63387-c743-4de7-abd5-08a0ad40cdda""}\n2025-07-15 13:06:43.232 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][571c7b99-45b4-4a0b-90ed-3be35347787f] received connection request\n2025-07-15 13:06:43.233 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:06:43.250 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][571c7b99-45b4-4a0b-90ed-3be35347787f] socks forwarding established\n2025-07-15 13:06:43.359 [info] [command][60a63387-c743-4de7-abd5-08a0ad40cdda] Process exited with code 0\n2025-07-15 13:06:43.359 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][571c7b99-45b4-4a0b-90ed-3be35347787f] socks connection closed\n2025-07-15 13:06:43.360 [info] [command][60a63387-c743-4de7-abd5-08a0ad40cdda] Socket close event received\n2025-07-15 13:06:43.376 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52508 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:07:43.364 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:07:43.366 [info] [command][0dd489d0-4dd3-404f-813e-4a4cce894f86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0dd489d0-4dd3-404f-813e-4a4cce894f86""}\n2025-07-15 13:07:43.366 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b04c3f23-437a-4d37-9093-6bb81bdb0ee3] received connection request\n2025-07-15 13:07:43.367 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:07:43.384 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b04c3f23-437a-4d37-9093-6bb81bdb0ee3] socks forwarding established\n2025-07-15 13:07:43.417 [info] [command][0dd489d0-4dd3-404f-813e-4a4cce894f86] Process exited with code 0\n2025-07-15 13:07:43.418 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b04c3f23-437a-4d37-9093-6bb81bdb0ee3] socks connection closed\n2025-07-15 13:07:43.418 [info] [command][0dd489d0-4dd3-404f-813e-4a4cce894f86] Socket close event received\n2025-07-15 13:07:43.434 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52522 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:08:43.420 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:08:43.421 [info] [command][06ae2b6d-4ddf-43a3-a5d2-d6f8d843b045] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""06ae2b6d-4ddf-43a3-a5d2-d6f8d843b045""}\n2025-07-15 13:08:43.422 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d1f107cc-71a4-4425-ba23-a4471c643327] received connection request\n2025-07-15 13:08:43.423 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:08:43.441 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d1f107cc-71a4-4425-ba23-a4471c643327] socks forwarding established\n2025-07-15 13:08:43.473 [info] [command][06ae2b6d-4ddf-43a3-a5d2-d6f8d843b045] Process exited with code 0\n2025-07-15 13:08:43.473 [info] [command][06ae2b6d-4ddf-43a3-a5d2-d6f8d843b045] Socket close event received\n2025-07-15 13:08:43.474 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d1f107cc-71a4-4425-ba23-a4471c643327] socks connection closed\n2025-07-15 13:08:43.492 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52550 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:09:43.478 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:09:43.480 [info] [command][4dbdacb5-11f8-471d-b965-34ff7f17cc1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4dbdacb5-11f8-471d-b965-34ff7f17cc1a""}\n2025-07-15 13:09:43.481 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][62290315-6d09-40c5-b48b-82ac4cc5f76e] received connection request\n2025-07-15 13:09:43.482 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:09:43.500 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][62290315-6d09-40c5-b48b-82ac4cc5f76e] socks forwarding established\n2025-07-15 13:09:43.617 [info] [command][4dbdacb5-11f8-471d-b965-34ff7f17cc1a] Process exited with code 0\n2025-07-15 13:09:43.617 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][62290315-6d09-40c5-b48b-82ac4cc5f76e] socks connection closed\n2025-07-15 13:09:43.618 [info] [command][4dbdacb5-11f8-471d-b965-34ff7f17cc1a] Socket close event received\n2025-07-15 13:09:43.636 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52568 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:10:43.622 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:10:43.625 [info] [command][fef17114-c537-4173-a861-6b918836c035] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fef17114-c537-4173-a861-6b918836c035""}\n2025-07-15 13:10:43.625 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ca1af64b-4776-4929-9db3-3b86f13ce584] received connection request\n2025-07-15 13:10:43.626 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:10:43.644 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ca1af64b-4776-4929-9db3-3b86f13ce584] socks forwarding established\n2025-07-15 13:10:43.683 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ca1af64b-4776-4929-9db3-3b86f13ce584] socks connection closed\n2025-07-15 13:10:43.683 [info] [command][fef17114-c537-4173-a861-6b918836c035] Process exited with code 0\n2025-07-15 13:10:43.684 [info] [command][fef17114-c537-4173-a861-6b918836c035] Socket close event received\n2025-07-15 13:10:43.699 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52587 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:11:43.688 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:11:43.690 [info] [command][d4cca081-6058-48eb-b691-8266fb56ce42] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d4cca081-6058-48eb-b691-8266fb56ce42""}\n2025-07-15 13:11:43.691 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][bf3e1457-2487-4248-be18-67f1df76400f] received connection request\n2025-07-15 13:11:43.691 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:11:43.709 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bf3e1457-2487-4248-be18-67f1df76400f] socks forwarding established\n2025-07-15 13:11:43.748 [info] [command][d4cca081-6058-48eb-b691-8266fb56ce42] Process exited with code 0\n2025-07-15 13:11:43.748 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bf3e1457-2487-4248-be18-67f1df76400f] socks connection closed\n2025-07-15 13:11:43.748 [info] [command][d4cca081-6058-48eb-b691-8266fb56ce42] Socket close event received\n2025-07-15 13:11:43.766 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52618 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:12:43.753 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:12:43.754 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0a8e3a4b-8d70-49d6-8f69-571ea6d7478b] received connection request\n2025-07-15 13:12:43.755 [info] [command][e166eaaa-ba79-4fe5-a384-b925cc380878] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e166eaaa-ba79-4fe5-a384-b925cc380878""}\n2025-07-15 13:12:43.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:12:43.806 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0a8e3a4b-8d70-49d6-8f69-571ea6d7478b] socks forwarding established\n2025-07-15 13:12:43.839 [info] [command][e166eaaa-ba79-4fe5-a384-b925cc380878] Process exited with code 0\n2025-07-15 13:12:43.840 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0a8e3a4b-8d70-49d6-8f69-571ea6d7478b] socks connection closed\n2025-07-15 13:12:43.840 [info] [command][e166eaaa-ba79-4fe5-a384-b925cc380878] Socket close event received\n2025-07-15 13:12:43.858 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52645 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:13:43.845 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:13:43.848 [info] [command][c98248d3-1e5c-4a2b-9b37-7cc7f5a621b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c98248d3-1e5c-4a2b-9b37-7cc7f5a621b4""}\n2025-07-15 13:13:43.849 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][799746c9-ace4-4c40-8df6-f6783b54f1b7] received connection request\n2025-07-15 13:13:43.850 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:13:43.872 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][799746c9-ace4-4c40-8df6-f6783b54f1b7] socks forwarding established\n2025-07-15 13:13:43.904 [info] [command][c98248d3-1e5c-4a2b-9b37-7cc7f5a621b4] Process exited with code 0\n2025-07-15 13:13:43.904 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][799746c9-ace4-4c40-8df6-f6783b54f1b7] socks connection closed\n2025-07-15 13:13:43.904 [info] [command][c98248d3-1e5c-4a2b-9b37-7cc7f5a621b4] Socket close event received\n2025-07-15 13:13:43.921 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52685 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:14:43.910 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:14:43.912 [info] [command][43483b0e-d41c-4f73-a4e5-7d58411b605f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""43483b0e-d41c-4f73-a4e5-7d58411b605f""}\n2025-07-15 13:14:43.913 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e7389910-237e-4c13-a0e1-ba6b8203b1a4] received connection request\n2025-07-15 13:14:43.913 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:14:43.931 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e7389910-237e-4c13-a0e1-ba6b8203b1a4] socks forwarding established\n2025-07-15 13:14:43.961 [info] [command][43483b0e-d41c-4f73-a4e5-7d58411b605f] Process exited with code 0\n2025-07-15 13:14:43.961 [info] [command][43483b0e-d41c-4f73-a4e5-7d58411b605f] Socket close event received\n2025-07-15 13:14:43.962 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e7389910-237e-4c13-a0e1-ba6b8203b1a4] socks connection closed\n2025-07-15 13:14:43.978 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52711 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:15:43.966 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:15:43.968 [info] [command][e76d1992-c694-41ae-a327-5b581c137a9a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e76d1992-c694-41ae-a327-5b581c137a9a""}\n2025-07-15 13:15:43.969 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ebc6706f-fc4e-43be-af2b-8c91241d846c] received connection request\n2025-07-15 13:15:43.969 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:15:43.986 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ebc6706f-fc4e-43be-af2b-8c91241d846c] socks forwarding established\n2025-07-15 13:15:44.016 [info] [command][e76d1992-c694-41ae-a327-5b581c137a9a] Process exited with code 0\n2025-07-15 13:15:44.016 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ebc6706f-fc4e-43be-af2b-8c91241d846c] socks connection closed\n2025-07-15 13:15:44.016 [info] [command][e76d1992-c694-41ae-a327-5b581c137a9a] Socket close event received\n2025-07-15 13:15:44.033 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52731 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:16:44.017 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:16:44.020 [info] [command][7f5a0b16-ec95-4c0e-b761-0f4e829177a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7f5a0b16-ec95-4c0e-b761-0f4e829177a6""}\n2025-07-15 13:16:44.021 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][819fb73b-fd97-4aee-855b-d12c9ad1dfb4] received connection request\n2025-07-15 13:16:44.022 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:16:44.182 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][819fb73b-fd97-4aee-855b-d12c9ad1dfb4] socks forwarding established\n2025-07-15 13:16:44.214 [info] [command][7f5a0b16-ec95-4c0e-b761-0f4e829177a6] Process exited with code 0\n2025-07-15 13:16:44.215 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][819fb73b-fd97-4aee-855b-d12c9ad1dfb4] socks connection closed\n2025-07-15 13:16:44.215 [info] [command][7f5a0b16-ec95-4c0e-b761-0f4e829177a6] Socket close event received\n2025-07-15 13:16:44.290 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52759 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:17:44.216 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:17:44.218 [info] [command][a48bf272-31fc-40aa-9613-3f1a3e714c18] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a48bf272-31fc-40aa-9613-3f1a3e714c18""}\n2025-07-15 13:17:44.218 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][227ead57-de5c-4765-b4b6-799a56cd5c92] received connection request\n2025-07-15 13:17:44.219 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:17:44.235 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][227ead57-de5c-4765-b4b6-799a56cd5c92] socks forwarding established\n2025-07-15 13:17:44.266 [info] [command][a48bf272-31fc-40aa-9613-3f1a3e714c18] Process exited with code 0\n2025-07-15 13:17:44.267 [info] [command][a48bf272-31fc-40aa-9613-3f1a3e714c18] Socket close event received\n2025-07-15 13:17:44.267 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][227ead57-de5c-4765-b4b6-799a56cd5c92] socks connection closed\n2025-07-15 13:17:44.283 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52802 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:18:44.271 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:18:44.272 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][532f45a8-ebe6-4d1f-9673-47ebd57e4550] received connection request\n2025-07-15 13:18:44.272 [info] [command][db02d5ff-ff67-4490-8ce9-92acef686c46] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""db02d5ff-ff67-4490-8ce9-92acef686c46""}\n2025-07-15 13:18:44.274 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:18:44.296 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][532f45a8-ebe6-4d1f-9673-47ebd57e4550] socks forwarding established\n2025-07-15 13:18:44.457 [info] [command][db02d5ff-ff67-4490-8ce9-92acef686c46] Process exited with code 0\n2025-07-15 13:18:44.458 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][532f45a8-ebe6-4d1f-9673-47ebd57e4550] socks connection closed\n2025-07-15 13:18:44.458 [info] [command][db02d5ff-ff67-4490-8ce9-92acef686c46] Socket close event received\n2025-07-15 13:18:44.508 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52839 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:19:44.462 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:19:44.464 [info] [command][685ca1ae-84e3-455f-a0e6-b7d0663be7d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""685ca1ae-84e3-455f-a0e6-b7d0663be7d4""}\n2025-07-15 13:19:44.465 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a326319c-1096-47f2-a5b0-1bb95a5d42ef] received connection request\n2025-07-15 13:19:44.466 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:19:44.487 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a326319c-1096-47f2-a5b0-1bb95a5d42ef] socks forwarding established\n2025-07-15 13:19:44.517 [info] [command][685ca1ae-84e3-455f-a0e6-b7d0663be7d4] Process exited with code 0\n2025-07-15 13:19:44.517 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a326319c-1096-47f2-a5b0-1bb95a5d42ef] socks connection closed\n2025-07-15 13:19:44.517 [info] [command][685ca1ae-84e3-455f-a0e6-b7d0663be7d4] Socket close event received\n2025-07-15 13:19:44.534 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52855 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:20:44.518 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:20:44.519 [info] [command][d2d5d207-299a-4eac-9a7a-3424e678dae3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d2d5d207-299a-4eac-9a7a-3424e678dae3""}\n2025-07-15 13:20:44.519 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][011f97bd-b410-4311-8b22-6d835777bce7] received connection request\n2025-07-15 13:20:44.519 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:20:44.536 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][011f97bd-b410-4311-8b22-6d835777bce7] socks forwarding established\n2025-07-15 13:20:44.565 [info] [command][d2d5d207-299a-4eac-9a7a-3424e678dae3] Process exited with code 0\n2025-07-15 13:20:44.566 [info] [command][d2d5d207-299a-4eac-9a7a-3424e678dae3] Socket close event received\n2025-07-15 13:20:44.566 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][011f97bd-b410-4311-8b22-6d835777bce7] socks connection closed\n2025-07-15 13:20:44.582 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52878 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:21:44.570 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:21:44.571 [info] [command][31204f54-9c71-4099-973c-c6beee201df4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""31204f54-9c71-4099-973c-c6beee201df4""}\n2025-07-15 13:21:44.573 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7ad3c2ce-859f-42f9-bec9-9a9dc634b0a9] received connection request\n2025-07-15 13:21:44.573 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:21:44.591 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7ad3c2ce-859f-42f9-bec9-9a9dc634b0a9] socks forwarding established\n2025-07-15 13:21:44.624 [info] [command][31204f54-9c71-4099-973c-c6beee201df4] Process exited with code 0\n2025-07-15 13:21:44.625 [info] [command][31204f54-9c71-4099-973c-c6beee201df4] Socket close event received\n2025-07-15 13:21:44.627 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7ad3c2ce-859f-42f9-bec9-9a9dc634b0a9] socks connection closed\n2025-07-15 13:21:44.652 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52917 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:22:44.629 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:22:44.631 [info] [command][fdbc5ef1-5dca-4058-a10e-04e4809e991b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fdbc5ef1-5dca-4058-a10e-04e4809e991b""}\n2025-07-15 13:22:44.632 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d477fd06-bedc-4bf9-9df2-26da9ed451b2] received connection request\n2025-07-15 13:22:44.632 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:22:44.648 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d477fd06-bedc-4bf9-9df2-26da9ed451b2] socks forwarding established\n2025-07-15 13:22:44.680 [info] [command][fdbc5ef1-5dca-4058-a10e-04e4809e991b] Process exited with code 0\n2025-07-15 13:22:44.680 [info] [command][fdbc5ef1-5dca-4058-a10e-04e4809e991b] Socket close event received\n2025-07-15 13:22:44.680 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d477fd06-bedc-4bf9-9df2-26da9ed451b2] socks connection closed\n2025-07-15 13:22:44.695 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52951 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:23:44.684 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:23:44.686 [info] [command][647fe30a-1498-4728-be55-77ec1f35898e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""647fe30a-1498-4728-be55-77ec1f35898e""}\n2025-07-15 13:23:44.687 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5986b980-23da-4d91-bfbd-a3c3b12892da] received connection request\n2025-07-15 13:23:44.687 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:23:44.704 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5986b980-23da-4d91-bfbd-a3c3b12892da] socks forwarding established\n2025-07-15 13:23:44.734 [info] [command][647fe30a-1498-4728-be55-77ec1f35898e] Process exited with code 0\n2025-07-15 13:23:44.734 [info] [command][647fe30a-1498-4728-be55-77ec1f35898e] Socket close event received\n2025-07-15 13:23:44.734 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5986b980-23da-4d91-bfbd-a3c3b12892da] socks connection closed\n2025-07-15 13:23:44.750 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 52995 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:24:44.739 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:24:44.741 [info] [command][fe295aa9-e30c-454f-86c6-cd42f1ab779b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fe295aa9-e30c-454f-86c6-cd42f1ab779b""}\n2025-07-15 13:24:44.742 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][49f8d81f-95b9-4849-99d4-8b74513726dd] received connection request\n2025-07-15 13:24:44.743 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:24:44.868 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][49f8d81f-95b9-4849-99d4-8b74513726dd] socks forwarding established\n2025-07-15 13:24:44.900 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][49f8d81f-95b9-4849-99d4-8b74513726dd] socks connection closed\n2025-07-15 13:24:44.901 [info] [command][fe295aa9-e30c-454f-86c6-cd42f1ab779b] Process exited with code 0\n2025-07-15 13:24:44.901 [info] [command][fe295aa9-e30c-454f-86c6-cd42f1ab779b] Socket close event received\n2025-07-15 13:24:44.919 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53040 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:25:44.907 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:25:44.908 [info] [command][2d6e8b40-1f60-4c27-b0ff-36105abaa8b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2d6e8b40-1f60-4c27-b0ff-36105abaa8b8""}\n2025-07-15 13:25:44.909 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a23ae9bc-eb0e-46c8-847e-3ee59bb2a2e5] received connection request\n2025-07-15 13:25:44.910 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:25:44.932 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a23ae9bc-eb0e-46c8-847e-3ee59bb2a2e5] socks forwarding established\n2025-07-15 13:25:44.963 [info] [command][2d6e8b40-1f60-4c27-b0ff-36105abaa8b8] Process exited with code 0\n2025-07-15 13:25:44.963 [info] [command][2d6e8b40-1f60-4c27-b0ff-36105abaa8b8] Socket close event received\n2025-07-15 13:25:44.964 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a23ae9bc-eb0e-46c8-847e-3ee59bb2a2e5] socks connection closed\n2025-07-15 13:25:44.985 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53061 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:26:44.966 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:26:44.968 [info] [command][9df3ba3c-befb-479f-8f2a-35cf6544f4fb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9df3ba3c-befb-479f-8f2a-35cf6544f4fb""}\n2025-07-15 13:26:44.968 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][002198ed-7b85-47d1-bc4e-1e8c82313620] received connection request\n2025-07-15 13:26:44.969 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:26:44.986 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][002198ed-7b85-47d1-bc4e-1e8c82313620] socks forwarding established\n2025-07-15 13:26:45.016 [info] [command][9df3ba3c-befb-479f-8f2a-35cf6544f4fb] Process exited with code 0\n2025-07-15 13:26:45.016 [info] [command][9df3ba3c-befb-479f-8f2a-35cf6544f4fb] Socket close event received\n2025-07-15 13:26:45.016 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][002198ed-7b85-47d1-bc4e-1e8c82313620] socks connection closed\n2025-07-15 13:26:45.036 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53100 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:27:45.022 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:27:45.026 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b49d3305-9235-4d4d-a5d6-7c1dd8ef23d6] received connection request\n2025-07-15 13:27:45.027 [info] [command][04fe0e64-ad55-4a6d-94a4-8df40dee36ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""04fe0e64-ad55-4a6d-94a4-8df40dee36ed""}\n2025-07-15 13:27:45.027 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:27:45.097 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b49d3305-9235-4d4d-a5d6-7c1dd8ef23d6] socks forwarding established\n2025-07-15 13:27:45.263 [info] [command][04fe0e64-ad55-4a6d-94a4-8df40dee36ed] Process exited with code 0\n2025-07-15 13:27:45.263 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b49d3305-9235-4d4d-a5d6-7c1dd8ef23d6] socks connection closed\n2025-07-15 13:27:45.263 [info] [command][04fe0e64-ad55-4a6d-94a4-8df40dee36ed] Socket close event received\n2025-07-15 13:27:45.282 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53148 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:28:45.263 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:28:45.263 [info] [command][a67d11e9-1802-4179-b845-2f8786576d73] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a67d11e9-1802-4179-b845-2f8786576d73""}\n2025-07-15 13:28:45.264 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a2f24ed2-d87b-4a22-b540-74085688b758] received connection request\n2025-07-15 13:28:45.264 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:28:45.398 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a2f24ed2-d87b-4a22-b540-74085688b758] socks forwarding established\n2025-07-15 13:28:45.428 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a2f24ed2-d87b-4a22-b540-74085688b758] socks connection closed\n2025-07-15 13:28:45.428 [info] [command][a67d11e9-1802-4179-b845-2f8786576d73] Process exited with code 0\n2025-07-15 13:28:45.428 [info] [command][a67d11e9-1802-4179-b845-2f8786576d73] Socket close event received\n2025-07-15 13:28:45.575 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53185 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:29:45.431 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:29:45.432 [info] [command][907a4908-1f2b-4dfb-bcc9-63bc79f88c5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""907a4908-1f2b-4dfb-bcc9-63bc79f88c5b""}\n2025-07-15 13:29:45.432 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8f16b9d1-ea3a-4aa4-bd34-142866afa3b3] received connection request\n2025-07-15 13:29:45.432 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:29:45.516 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8f16b9d1-ea3a-4aa4-bd34-142866afa3b3] socks forwarding established\n2025-07-15 13:29:45.548 [info] [command][907a4908-1f2b-4dfb-bcc9-63bc79f88c5b] Process exited with code 0\n2025-07-15 13:29:45.548 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8f16b9d1-ea3a-4aa4-bd34-142866afa3b3] socks connection closed\n2025-07-15 13:29:45.548 [info] [command][907a4908-1f2b-4dfb-bcc9-63bc79f88c5b] Socket close event received\n2025-07-15 13:29:45.565 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53250 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:30:45.553 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:30:45.554 [info] [command][a9e14853-1720-4897-99b3-3433e50be8d3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a9e14853-1720-4897-99b3-3433e50be8d3""}\n2025-07-15 13:30:45.554 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4cc8121b-cb86-4a59-86ca-1d309f1982e1] received connection request\n2025-07-15 13:30:45.554 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:30:45.684 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4cc8121b-cb86-4a59-86ca-1d309f1982e1] socks forwarding established\n2025-07-15 13:30:45.717 [info] [command][a9e14853-1720-4897-99b3-3433e50be8d3] Process exited with code 0\n2025-07-15 13:30:45.717 [info] [command][a9e14853-1720-4897-99b3-3433e50be8d3] Socket close event received\n2025-07-15 13:30:45.722 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4cc8121b-cb86-4a59-86ca-1d309f1982e1] socks connection closed\n2025-07-15 13:30:45.746 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53276 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:31:45.723 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:31:45.725 [info] [command][8a632f38-00c2-424a-a681-a65c4e09b98d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8a632f38-00c2-424a-a681-a65c4e09b98d""}\n2025-07-15 13:31:45.725 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9dbb4f88-2920-4632-b267-a18d03b0a9f5] received connection request\n2025-07-15 13:31:45.726 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:31:45.744 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9dbb4f88-2920-4632-b267-a18d03b0a9f5] socks forwarding established\n2025-07-15 13:31:45.779 [info] [command][8a632f38-00c2-424a-a681-a65c4e09b98d] Process exited with code 0\n2025-07-15 13:31:45.779 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9dbb4f88-2920-4632-b267-a18d03b0a9f5] socks connection closed\n2025-07-15 13:31:45.779 [info] [command][8a632f38-00c2-424a-a681-a65c4e09b98d] Socket close event received\n2025-07-15 13:31:45.797 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53313 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:32:45.782 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:32:45.784 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0c9fff6c-b432-493b-be4e-18db64f8a036] received connection request\n2025-07-15 13:32:45.784 [info] [command][a29a09d5-93c2-43fe-b9ad-95f665333470] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a29a09d5-93c2-43fe-b9ad-95f665333470""}\n2025-07-15 13:32:45.784 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:32:45.867 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0c9fff6c-b432-493b-be4e-18db64f8a036] socks forwarding established\n2025-07-15 13:32:45.899 [info] [command][a29a09d5-93c2-43fe-b9ad-95f665333470] Process exited with code 0\n2025-07-15 13:32:45.899 [info] [command][a29a09d5-93c2-43fe-b9ad-95f665333470] Socket close event received\n2025-07-15 13:32:45.902 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0c9fff6c-b432-493b-be4e-18db64f8a036] socks connection closed\n2025-07-15 13:32:45.917 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53334 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:33:45.910 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:33:45.912 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3cdff1e3-69eb-44c3-842d-9699ed04e547] received connection request\n2025-07-15 13:33:45.912 [info] [command][59c73ec5-bdd0-4cb3-a1c6-2d169feb9900] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""59c73ec5-bdd0-4cb3-a1c6-2d169feb9900""}\n2025-07-15 13:33:45.912 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:33:45.931 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3cdff1e3-69eb-44c3-842d-9699ed04e547] socks forwarding established\n2025-07-15 13:33:45.965 [info] [command][59c73ec5-bdd0-4cb3-a1c6-2d169feb9900] Process exited with code 0\n2025-07-15 13:33:45.965 [info] [command][59c73ec5-bdd0-4cb3-a1c6-2d169feb9900] Socket close event received\n2025-07-15 13:33:45.965 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3cdff1e3-69eb-44c3-842d-9699ed04e547] socks connection closed\n2025-07-15 13:33:45.981 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53374 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:34:45.966 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:34:45.968 [info] [command][7b011753-93b9-4dca-ae78-2abc45f365e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7b011753-93b9-4dca-ae78-2abc45f365e1""}\n2025-07-15 13:34:45.968 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][62e562b8-6c61-46ea-a341-3070a5749bd3] received connection request\n2025-07-15 13:34:45.968 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 13:34:45.968 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:34:45.985 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][62e562b8-6c61-46ea-a341-3070a5749bd3] socks forwarding established\n2025-07-15 13:34:46.015 [info] [command][7b011753-93b9-4dca-ae78-2abc45f365e1] Process exited with code 0\n2025-07-15 13:34:46.015 [info] [command][7b011753-93b9-4dca-ae78-2abc45f365e1] Socket close event received\n2025-07-15 13:34:46.016 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][62e562b8-6c61-46ea-a341-3070a5749bd3] socks connection closed\n2025-07-15 13:34:46.039 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53414 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:35:46.018 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:35:46.019 [info] [command][792fd55c-e39a-449a-8de2-8af265db5f12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""792fd55c-e39a-449a-8de2-8af265db5f12""}\n2025-07-15 13:35:46.020 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][178e18ba-9d4a-48db-badd-bc6fab437628] received connection request\n2025-07-15 13:35:46.020 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:35:46.041 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][178e18ba-9d4a-48db-badd-bc6fab437628] socks forwarding established\n2025-07-15 13:35:46.074 [info] [command][792fd55c-e39a-449a-8de2-8af265db5f12] Process exited with code 0\n2025-07-15 13:35:46.074 [info] [command][792fd55c-e39a-449a-8de2-8af265db5f12] Socket close event received\n2025-07-15 13:35:46.074 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][178e18ba-9d4a-48db-badd-bc6fab437628] socks connection closed\n2025-07-15 13:35:46.092 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53441 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:36:46.074 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:36:46.076 [info] [command][49a4e63e-c934-4b0a-80af-203b4632723f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""49a4e63e-c934-4b0a-80af-203b4632723f""}\n2025-07-15 13:36:46.077 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f8ef920b-bbbe-436c-8483-8f0b6302ac52] received connection request\n2025-07-15 13:36:46.077 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:36:46.161 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f8ef920b-bbbe-436c-8483-8f0b6302ac52] socks forwarding established\n2025-07-15 13:36:46.193 [info] [command][49a4e63e-c934-4b0a-80af-203b4632723f] Process exited with code 0\n2025-07-15 13:36:46.194 [info] [command][49a4e63e-c934-4b0a-80af-203b4632723f] Socket close event received\n2025-07-15 13:36:46.194 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f8ef920b-bbbe-436c-8483-8f0b6302ac52] socks connection closed\n2025-07-15 13:36:46.258 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53492 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:37:46.199 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:37:46.201 [info] [command][2fd39b62-010f-4ffd-b8fa-97b4de1a23d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2fd39b62-010f-4ffd-b8fa-97b4de1a23d4""}\n2025-07-15 13:37:46.202 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8384ff4c-f03d-4ca8-bd41-e1ef1ddfcbdd] received connection request\n2025-07-15 13:37:46.202 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:37:46.226 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8384ff4c-f03d-4ca8-bd41-e1ef1ddfcbdd] socks forwarding established\n2025-07-15 13:37:46.385 [info] [command][2fd39b62-010f-4ffd-b8fa-97b4de1a23d4] Process exited with code 0\n2025-07-15 13:37:46.385 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8384ff4c-f03d-4ca8-bd41-e1ef1ddfcbdd] socks connection closed\n2025-07-15 13:37:46.385 [info] [command][2fd39b62-010f-4ffd-b8fa-97b4de1a23d4] Socket close event received\n2025-07-15 13:37:46.402 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53520 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:38:46.390 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:38:46.390 [info] [command][4e3f729e-f4c5-43c2-ba6c-79f50c8cbd24] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4e3f729e-f4c5-43c2-ba6c-79f50c8cbd24""}\n2025-07-15 13:38:46.390 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5fafd027-7619-4384-b901-432c2865b464] received connection request\n2025-07-15 13:38:46.390 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:38:46.503 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5fafd027-7619-4384-b901-432c2865b464] socks forwarding established\n2025-07-15 13:38:46.616 [info] [command][4e3f729e-f4c5-43c2-ba6c-79f50c8cbd24] Process exited with code 0\n2025-07-15 13:38:46.616 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5fafd027-7619-4384-b901-432c2865b464] socks connection closed\n2025-07-15 13:38:46.616 [info] [command][4e3f729e-f4c5-43c2-ba6c-79f50c8cbd24] Socket close event received\n2025-07-15 13:38:46.632 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53562 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:39:46.622 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:39:46.624 [info] [command][0019cbe8-146d-4b88-957b-31e8a2c1cd45] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0019cbe8-146d-4b88-957b-31e8a2c1cd45""}\n2025-07-15 13:39:46.625 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a2cce2dd-7ab5-4882-a07c-fa6c6f0bf52a] received connection request\n2025-07-15 13:39:46.625 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:39:46.664 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a2cce2dd-7ab5-4882-a07c-fa6c6f0bf52a] socks forwarding established\n2025-07-15 13:39:46.760 [info] [command][0019cbe8-146d-4b88-957b-31e8a2c1cd45] Process exited with code 0\n2025-07-15 13:39:46.761 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a2cce2dd-7ab5-4882-a07c-fa6c6f0bf52a] socks connection closed\n2025-07-15 13:39:46.761 [info] [command][0019cbe8-146d-4b88-957b-31e8a2c1cd45] Socket close event received\n2025-07-15 13:39:46.779 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53591 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:40:46.764 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:40:46.770 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f895c775-240d-4a37-91a6-83ae787e5688] received connection request\n2025-07-15 13:40:46.771 [info] [command][db3d1995-0f58-4737-a345-aa49cb1c3772] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""db3d1995-0f58-4737-a345-aa49cb1c3772""}\n2025-07-15 13:40:46.774 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 13:40:46.775 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:40:46.802 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f895c775-240d-4a37-91a6-83ae787e5688] socks forwarding established\n2025-07-15 13:40:46.833 [info] [command][db3d1995-0f58-4737-a345-aa49cb1c3772] Process exited with code 0\n2025-07-15 13:40:46.833 [info] [command][db3d1995-0f58-4737-a345-aa49cb1c3772] Socket close event received\n2025-07-15 13:40:46.834 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f895c775-240d-4a37-91a6-83ae787e5688] socks connection closed\n2025-07-15 13:40:46.850 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53619 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:41:46.835 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:41:46.837 [info] [command][48295e1d-a4f4-4da9-ae2f-4f01b0147b69] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""48295e1d-a4f4-4da9-ae2f-4f01b0147b69""}\n2025-07-15 13:41:46.837 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ce98d4b9-c5ff-4903-9320-42c233b907cc] received connection request\n2025-07-15 13:41:46.837 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:41:46.854 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ce98d4b9-c5ff-4903-9320-42c233b907cc] socks forwarding established\n2025-07-15 13:41:46.885 [info] [command][48295e1d-a4f4-4da9-ae2f-4f01b0147b69] Process exited with code 0\n2025-07-15 13:41:46.886 [info] [command][48295e1d-a4f4-4da9-ae2f-4f01b0147b69] Socket close event received\n2025-07-15 13:41:46.887 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ce98d4b9-c5ff-4903-9320-42c233b907cc] socks connection closed\n2025-07-15 13:41:46.904 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53653 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:42:46.891 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:42:46.893 [info] [command][a140c91d-cfdc-4a15-ad6a-b1b048631a67] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a140c91d-cfdc-4a15-ad6a-b1b048631a67""}\n2025-07-15 13:42:46.894 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][368833af-0baa-48f2-b38a-44ef023b3aa2] received connection request\n2025-07-15 13:42:46.894 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:42:46.926 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][368833af-0baa-48f2-b38a-44ef023b3aa2] socks forwarding established\n2025-07-15 13:42:46.999 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][368833af-0baa-48f2-b38a-44ef023b3aa2] socks connection closed\n2025-07-15 13:42:46.999 [info] [command][a140c91d-cfdc-4a15-ad6a-b1b048631a67] Process exited with code 0\n2025-07-15 13:42:46.999 [info] [command][a140c91d-cfdc-4a15-ad6a-b1b048631a67] Socket close event received\n2025-07-15 13:42:47.104 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53670 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:43:47.001 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:43:47.003 [info] [command][94eb816b-b664-4147-ad70-255d6b67c314] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""94eb816b-b664-4147-ad70-255d6b67c314""}\n2025-07-15 13:43:47.003 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5958f536-6f37-4ea9-87f0-718483f56b01] received connection request\n2025-07-15 13:43:47.003 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:43:47.022 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5958f536-6f37-4ea9-87f0-718483f56b01] socks forwarding established\n2025-07-15 13:43:47.053 [info] [command][94eb816b-b664-4147-ad70-255d6b67c314] Process exited with code 0\n2025-07-15 13:43:47.053 [info] [command][94eb816b-b664-4147-ad70-255d6b67c314] Socket close event received\n2025-07-15 13:43:47.053 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5958f536-6f37-4ea9-87f0-718483f56b01] socks connection closed\n2025-07-15 13:43:47.070 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53700 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:44:47.058 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:44:47.060 [info] [command][2d1b78b2-77fe-4ba5-9371-db2a3e42e691] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2d1b78b2-77fe-4ba5-9371-db2a3e42e691""}\n2025-07-15 13:44:47.061 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8f73dd8d-bd44-441d-b9f4-34da191495de] received connection request\n2025-07-15 13:44:47.062 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:44:47.083 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8f73dd8d-bd44-441d-b9f4-34da191495de] socks forwarding established\n2025-07-15 13:44:47.115 [info] [command][2d1b78b2-77fe-4ba5-9371-db2a3e42e691] Process exited with code 0\n2025-07-15 13:44:47.116 [info] [command][2d1b78b2-77fe-4ba5-9371-db2a3e42e691] Socket close event received\n2025-07-15 13:44:47.116 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8f73dd8d-bd44-441d-b9f4-34da191495de] socks connection closed\n2025-07-15 13:44:47.133 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53726 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:45:47.121 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:45:47.122 [info] [command][5031a1ad-4820-4c79-804a-61d4d94d1df8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5031a1ad-4820-4c79-804a-61d4d94d1df8""}\n2025-07-15 13:45:47.122 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8d0cd18c-9f5d-453f-97e2-3c9c94a22ec7] received connection request\n2025-07-15 13:45:47.122 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:45:47.220 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8d0cd18c-9f5d-453f-97e2-3c9c94a22ec7] socks forwarding established\n2025-07-15 13:45:47.312 [info] [command][5031a1ad-4820-4c79-804a-61d4d94d1df8] Process exited with code 0\n2025-07-15 13:45:47.313 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8d0cd18c-9f5d-453f-97e2-3c9c94a22ec7] socks connection closed\n2025-07-15 13:45:47.313 [info] [command][5031a1ad-4820-4c79-804a-61d4d94d1df8] Socket close event received\n2025-07-15 13:45:47.331 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53752 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:46:47.315 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:46:47.317 [info] [command][720944da-c76b-49db-a513-4cad8e5cd402] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""720944da-c76b-49db-a513-4cad8e5cd402""}\n2025-07-15 13:46:47.317 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][bd497252-6259-4056-b7c4-43a2c3aae531] received connection request\n2025-07-15 13:46:47.318 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:46:47.336 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bd497252-6259-4056-b7c4-43a2c3aae531] socks forwarding established\n2025-07-15 13:46:47.367 [info] [command][720944da-c76b-49db-a513-4cad8e5cd402] Process exited with code 0\n2025-07-15 13:46:47.368 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bd497252-6259-4056-b7c4-43a2c3aae531] socks connection closed\n2025-07-15 13:46:47.368 [info] [command][720944da-c76b-49db-a513-4cad8e5cd402] Socket close event received\n2025-07-15 13:46:47.385 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53780 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:47:47.370 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:47:47.372 [info] [command][0e8adb40-58af-463d-8915-eccd30bc1d62] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0e8adb40-58af-463d-8915-eccd30bc1d62""}\n2025-07-15 13:47:47.373 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9e72aa62-7d49-4cd9-8fc9-d2bb0a373cd8] received connection request\n2025-07-15 13:47:47.373 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:47:47.401 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9e72aa62-7d49-4cd9-8fc9-d2bb0a373cd8] socks forwarding established\n2025-07-15 13:47:47.484 [info] [command][0e8adb40-58af-463d-8915-eccd30bc1d62] Process exited with code 0\n2025-07-15 13:47:47.484 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9e72aa62-7d49-4cd9-8fc9-d2bb0a373cd8] socks connection closed\n2025-07-15 13:47:47.484 [info] [command][0e8adb40-58af-463d-8915-eccd30bc1d62] Socket close event received\n2025-07-15 13:47:47.502 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53807 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:48:47.486 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:48:47.487 [info] [command][0ecd4082-e9bc-4d54-98ff-46acd8ad7bd8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0ecd4082-e9bc-4d54-98ff-46acd8ad7bd8""}\n2025-07-15 13:48:47.488 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][26172752-012a-4c30-9105-186afd946b90] received connection request\n2025-07-15 13:48:47.488 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:48:47.508 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][26172752-012a-4c30-9105-186afd946b90] socks forwarding established\n2025-07-15 13:48:47.538 [info] [command][0ecd4082-e9bc-4d54-98ff-46acd8ad7bd8] Process exited with code 0\n2025-07-15 13:48:47.539 [info] [command][0ecd4082-e9bc-4d54-98ff-46acd8ad7bd8] Socket close event received\n2025-07-15 13:48:47.540 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][26172752-012a-4c30-9105-186afd946b90] socks connection closed\n2025-07-15 13:48:47.556 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53836 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:49:47.544 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:49:47.546 [info] [command][a0a6bd6c-fcb1-4cab-9875-e25bc4e8fa1d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a0a6bd6c-fcb1-4cab-9875-e25bc4e8fa1d""}\n2025-07-15 13:49:47.547 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][71f86b0c-5b36-460e-8051-e363d5562575] received connection request\n2025-07-15 13:49:47.547 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:49:47.566 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][71f86b0c-5b36-460e-8051-e363d5562575] socks forwarding established\n2025-07-15 13:49:47.598 [info] [command][a0a6bd6c-fcb1-4cab-9875-e25bc4e8fa1d] Process exited with code 0\n2025-07-15 13:49:47.598 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][71f86b0c-5b36-460e-8051-e363d5562575] socks connection closed\n2025-07-15 13:49:47.598 [info] [command][a0a6bd6c-fcb1-4cab-9875-e25bc4e8fa1d] Socket close event received\n2025-07-15 13:49:47.616 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53897 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:50:47.604 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:50:47.607 [info] [command][9dc0b67a-cb4e-4ef4-8874-0d1b138489e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9dc0b67a-cb4e-4ef4-8874-0d1b138489e2""}\n2025-07-15 13:50:47.608 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6e91f45f-9800-4d7c-9909-a3a22763226e] received connection request\n2025-07-15 13:50:47.608 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:50:47.627 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6e91f45f-9800-4d7c-9909-a3a22763226e] socks forwarding established\n2025-07-15 13:50:47.659 [info] [command][9dc0b67a-cb4e-4ef4-8874-0d1b138489e2] Process exited with code 0\n2025-07-15 13:50:47.659 [info] [command][9dc0b67a-cb4e-4ef4-8874-0d1b138489e2] Socket close event received\n2025-07-15 13:50:47.659 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6e91f45f-9800-4d7c-9909-a3a22763226e] socks connection closed\n2025-07-15 13:50:47.681 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53944 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:51:47.659 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:51:47.660 [info] [command][edc5d9dc-f7c6-4518-bfac-d9339f89bd0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""edc5d9dc-f7c6-4518-bfac-d9339f89bd0a""}\n2025-07-15 13:51:47.660 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][48fe6dcc-65e2-4b9e-9036-c96b2d989486] received connection request\n2025-07-15 13:51:47.661 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:51:47.679 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][48fe6dcc-65e2-4b9e-9036-c96b2d989486] socks forwarding established\n2025-07-15 13:51:47.710 [info] [command][edc5d9dc-f7c6-4518-bfac-d9339f89bd0a] Process exited with code 0\n2025-07-15 13:51:47.710 [info] [command][edc5d9dc-f7c6-4518-bfac-d9339f89bd0a] Socket close event received\n2025-07-15 13:51:47.711 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][48fe6dcc-65e2-4b9e-9036-c96b2d989486] socks connection closed\n2025-07-15 13:51:47.729 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 53985 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:52:47.713 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:52:47.715 [info] [command][93cf3503-64cf-4cd5-984d-f8fb9b591ae9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""93cf3503-64cf-4cd5-984d-f8fb9b591ae9""}\n2025-07-15 13:52:47.715 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6a2b77a4-b7b3-4253-a34b-261a981c999f] received connection request\n2025-07-15 13:52:47.716 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:52:47.734 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6a2b77a4-b7b3-4253-a34b-261a981c999f] socks forwarding established\n2025-07-15 13:52:47.767 [info] [command][93cf3503-64cf-4cd5-984d-f8fb9b591ae9] Process exited with code 0\n2025-07-15 13:52:47.767 [info] [command][93cf3503-64cf-4cd5-984d-f8fb9b591ae9] Socket close event received\n2025-07-15 13:52:47.768 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6a2b77a4-b7b3-4253-a34b-261a981c999f] socks connection closed\n2025-07-15 13:52:47.784 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54001 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:53:47.772 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:53:47.773 [info] [command][535e63cf-fc09-40ba-b102-0e85a1ff1655] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""535e63cf-fc09-40ba-b102-0e85a1ff1655""}\n2025-07-15 13:53:47.773 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f4dc000a-0789-4d8e-abdd-b3cd8e9bab95] received connection request\n2025-07-15 13:53:47.774 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:53:47.792 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f4dc000a-0789-4d8e-abdd-b3cd8e9bab95] socks forwarding established\n2025-07-15 13:53:47.825 [info] [command][535e63cf-fc09-40ba-b102-0e85a1ff1655] Process exited with code 0\n2025-07-15 13:53:47.825 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f4dc000a-0789-4d8e-abdd-b3cd8e9bab95] socks connection closed\n2025-07-15 13:53:47.825 [info] [command][535e63cf-fc09-40ba-b102-0e85a1ff1655] Socket close event received\n2025-07-15 13:53:47.842 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54036 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:54:47.828 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:54:47.829 [info] [command][9d200603-c89b-4296-9749-bc2621b2171b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9d200603-c89b-4296-9749-bc2621b2171b""}\n2025-07-15 13:54:47.829 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8e89ae72-449b-4d67-8cc9-d9d1efffaf28] received connection request\n2025-07-15 13:54:47.830 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:54:47.850 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8e89ae72-449b-4d67-8cc9-d9d1efffaf28] socks forwarding established\n2025-07-15 13:54:47.880 [info] [command][9d200603-c89b-4296-9749-bc2621b2171b] Process exited with code 0\n2025-07-15 13:54:47.880 [info] [command][9d200603-c89b-4296-9749-bc2621b2171b] Socket close event received\n2025-07-15 13:54:47.881 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8e89ae72-449b-4d67-8cc9-d9d1efffaf28] socks connection closed\n2025-07-15 13:54:47.896 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54063 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:55:47.885 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:55:47.887 [info] [command][4b9707ad-95c5-4c6e-a16d-4f9439a28609] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4b9707ad-95c5-4c6e-a16d-4f9439a28609""}\n2025-07-15 13:55:47.888 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][bd776107-6945-4579-b18e-636cbaa51055] received connection request\n2025-07-15 13:55:47.888 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:55:47.906 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bd776107-6945-4579-b18e-636cbaa51055] socks forwarding established\n2025-07-15 13:55:47.937 [info] [command][4b9707ad-95c5-4c6e-a16d-4f9439a28609] Process exited with code 0\n2025-07-15 13:55:47.937 [info] [command][4b9707ad-95c5-4c6e-a16d-4f9439a28609] Socket close event received\n2025-07-15 13:55:47.938 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bd776107-6945-4579-b18e-636cbaa51055] socks connection closed\n2025-07-15 13:55:47.962 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54092 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:56:47.938 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:56:47.940 [info] [command][940e6481-fa05-49f0-b8db-24114ef6fa8e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""940e6481-fa05-49f0-b8db-24114ef6fa8e""}\n2025-07-15 13:56:47.941 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][bf76b891-520a-4099-908e-0e6447f78281] received connection request\n2025-07-15 13:56:47.942 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:56:47.966 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bf76b891-520a-4099-908e-0e6447f78281] socks forwarding established\n2025-07-15 13:56:47.993 [info] [command][940e6481-fa05-49f0-b8db-24114ef6fa8e] Process exited with code 0\n2025-07-15 13:56:47.993 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bf76b891-520a-4099-908e-0e6447f78281] socks connection closed\n2025-07-15 13:56:47.994 [info] [command][940e6481-fa05-49f0-b8db-24114ef6fa8e] Socket close event received\n2025-07-15 13:56:48.011 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54123 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:57:47.996 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:57:47.997 [info] [command][33e0d349-7b39-492a-844b-4c44b5c93d81] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""33e0d349-7b39-492a-844b-4c44b5c93d81""}\n2025-07-15 13:57:47.997 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5e7468f6-9f45-4904-9d4d-3a6742f67ebb] received connection request\n2025-07-15 13:57:47.998 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:57:48.017 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5e7468f6-9f45-4904-9d4d-3a6742f67ebb] socks forwarding established\n2025-07-15 13:57:48.047 [info] [command][33e0d349-7b39-492a-844b-4c44b5c93d81] Process exited with code 0\n2025-07-15 13:57:48.048 [info] [command][33e0d349-7b39-492a-844b-4c44b5c93d81] Socket close event received\n2025-07-15 13:57:48.049 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5e7468f6-9f45-4904-9d4d-3a6742f67ebb] socks connection closed\n2025-07-15 13:57:48.064 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54144 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:58:48.052 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:58:48.054 [info] [command][2dfd2eca-5319-44d9-83ce-2f23c809f285] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2dfd2eca-5319-44d9-83ce-2f23c809f285""}\n2025-07-15 13:58:48.055 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][dd350af0-707a-4762-a860-c5b5afef9091] received connection request\n2025-07-15 13:58:48.056 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 13:58:48.056 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:58:48.074 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][dd350af0-707a-4762-a860-c5b5afef9091] socks forwarding established\n2025-07-15 13:58:48.100 [info] [command][2dfd2eca-5319-44d9-83ce-2f23c809f285] Process exited with code 0\n2025-07-15 13:58:48.100 [info] [command][2dfd2eca-5319-44d9-83ce-2f23c809f285] Socket close event received\n2025-07-15 13:58:48.101 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][dd350af0-707a-4762-a860-c5b5afef9091] socks connection closed\n2025-07-15 13:58:48.117 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54193 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 13:59:48.105 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 13:59:48.107 [info] [command][2ee429ae-0a39-401c-9016-d813cb5be841] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2ee429ae-0a39-401c-9016-d813cb5be841""}\n2025-07-15 13:59:48.108 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5239a310-ba9d-4310-92b1-9a9b3b69620c] received connection request\n2025-07-15 13:59:48.108 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 13:59:48.163 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5239a310-ba9d-4310-92b1-9a9b3b69620c] socks forwarding established\n2025-07-15 13:59:48.197 [info] [command][2ee429ae-0a39-401c-9016-d813cb5be841] Process exited with code 0\n2025-07-15 13:59:48.197 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5239a310-ba9d-4310-92b1-9a9b3b69620c] socks connection closed\n2025-07-15 13:59:48.197 [info] [command][2ee429ae-0a39-401c-9016-d813cb5be841] Socket close event received\n2025-07-15 13:59:48.213 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54236 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:00:48.201 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:00:48.203 [info] [command][5ffd6ba5-5d2b-42b4-a02b-5bb47ad75558] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5ffd6ba5-5d2b-42b4-a02b-5bb47ad75558""}\n2025-07-15 14:00:48.204 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][78d906a8-e4b9-4e07-8df3-0ee922668005] received connection request\n2025-07-15 14:00:48.204 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:00:48.310 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][78d906a8-e4b9-4e07-8df3-0ee922668005] socks forwarding established\n2025-07-15 14:00:48.343 [info] [command][5ffd6ba5-5d2b-42b4-a02b-5bb47ad75558] Process exited with code 0\n2025-07-15 14:00:48.344 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][78d906a8-e4b9-4e07-8df3-0ee922668005] socks connection closed\n2025-07-15 14:00:48.344 [info] [command][5ffd6ba5-5d2b-42b4-a02b-5bb47ad75558] Socket close event received\n2025-07-15 14:00:48.362 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54259 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:01:48.345 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:01:48.348 [info] [command][9516a944-7b3b-4b1d-baf0-b97a7f5e5393] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9516a944-7b3b-4b1d-baf0-b97a7f5e5393""}\n2025-07-15 14:01:48.349 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][80fd35cb-15ce-4fa3-9df1-5bd5702a00a4] received connection request\n2025-07-15 14:01:48.349 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:01:48.377 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][80fd35cb-15ce-4fa3-9df1-5bd5702a00a4] socks forwarding established\n2025-07-15 14:01:48.406 [info] [command][9516a944-7b3b-4b1d-baf0-b97a7f5e5393] Process exited with code 0\n2025-07-15 14:01:48.406 [info] [command][9516a944-7b3b-4b1d-baf0-b97a7f5e5393] Socket close event received\n2025-07-15 14:01:48.407 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][80fd35cb-15ce-4fa3-9df1-5bd5702a00a4] socks connection closed\n2025-07-15 14:01:48.423 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54301 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:02:48.411 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:02:48.413 [info] [command][6b2c1482-f924-4dfd-8d52-62fd78839aca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6b2c1482-f924-4dfd-8d52-62fd78839aca""}\n2025-07-15 14:02:48.414 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][61a33dd9-2c55-47ed-b5d1-f591fa63f134] received connection request\n2025-07-15 14:02:48.414 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:02:48.432 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][61a33dd9-2c55-47ed-b5d1-f591fa63f134] socks forwarding established\n2025-07-15 14:02:48.465 [info] [command][6b2c1482-f924-4dfd-8d52-62fd78839aca] Process exited with code 0\n2025-07-15 14:02:48.466 [info] [command][6b2c1482-f924-4dfd-8d52-62fd78839aca] Socket close event received\n2025-07-15 14:02:48.467 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][61a33dd9-2c55-47ed-b5d1-f591fa63f134] socks connection closed\n2025-07-15 14:02:48.487 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54315 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:03:48.470 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:03:48.471 [info] [command][05a21df5-0fb8-4d02-905a-82c7cdaa5859] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""05a21df5-0fb8-4d02-905a-82c7cdaa5859""}\n2025-07-15 14:03:48.472 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][16896842-d5bf-4adb-8807-10f5bd79b1a8] received connection request\n2025-07-15 14:03:48.473 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:03:48.492 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][16896842-d5bf-4adb-8807-10f5bd79b1a8] socks forwarding established\n2025-07-15 14:03:48.536 [info] [command][05a21df5-0fb8-4d02-905a-82c7cdaa5859] Process exited with code 0\n2025-07-15 14:03:48.536 [info] [command][05a21df5-0fb8-4d02-905a-82c7cdaa5859] Socket close event received\n2025-07-15 14:03:48.544 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][16896842-d5bf-4adb-8807-10f5bd79b1a8] socks connection closed\n2025-07-15 14:03:48.655 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54376 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:04:48.540 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:04:48.543 [info] [command][f413d749-e011-47bf-ba1c-228d993d0cf0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f413d749-e011-47bf-ba1c-228d993d0cf0""}\n2025-07-15 14:04:48.543 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2cf5d511-dd1f-4c6f-ad9d-ce6e11b42756] received connection request\n2025-07-15 14:04:48.544 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:04:48.562 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2cf5d511-dd1f-4c6f-ad9d-ce6e11b42756] socks forwarding established\n2025-07-15 14:04:48.660 [info] [command][f413d749-e011-47bf-ba1c-228d993d0cf0] Process exited with code 0\n2025-07-15 14:04:48.660 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2cf5d511-dd1f-4c6f-ad9d-ce6e11b42756] socks connection closed\n2025-07-15 14:04:48.660 [info] [command][f413d749-e011-47bf-ba1c-228d993d0cf0] Socket close event received\n2025-07-15 14:04:48.677 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54405 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:05:48.663 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:05:48.665 [info] [command][79215641-691a-4a8b-918e-209983a3799d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""79215641-691a-4a8b-918e-209983a3799d""}\n2025-07-15 14:05:48.666 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a8643f9c-f3bf-47ea-baeb-95dcd9592cb8] received connection request\n2025-07-15 14:05:48.666 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:05:48.697 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a8643f9c-f3bf-47ea-baeb-95dcd9592cb8] socks forwarding established\n2025-07-15 14:05:48.728 [info] [command][79215641-691a-4a8b-918e-209983a3799d] Process exited with code 0\n2025-07-15 14:05:48.728 [info] [command][79215641-691a-4a8b-918e-209983a3799d] Socket close event received\n2025-07-15 14:05:48.729 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a8643f9c-f3bf-47ea-baeb-95dcd9592cb8] socks connection closed\n2025-07-15 14:05:48.746 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54424 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:06:48.730 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:06:48.732 [info] [command][3f64862e-0c05-4f4d-adc2-6f21a5c8388f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3f64862e-0c05-4f4d-adc2-6f21a5c8388f""}\n2025-07-15 14:06:48.733 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a5c3e7d4-5d1c-42cc-941c-a155590e0dad] received connection request\n2025-07-15 14:06:48.733 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:06:48.815 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a5c3e7d4-5d1c-42cc-941c-a155590e0dad] socks forwarding established\n2025-07-15 14:06:48.849 [info] [command][3f64862e-0c05-4f4d-adc2-6f21a5c8388f] Process exited with code 0\n2025-07-15 14:06:48.850 [info] [command][3f64862e-0c05-4f4d-adc2-6f21a5c8388f] Socket close event received\n2025-07-15 14:06:48.850 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a5c3e7d4-5d1c-42cc-941c-a155590e0dad] socks connection closed\n2025-07-15 14:06:48.868 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54451 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:07:48.854 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:07:48.857 [info] [command][b81e47e5-6e32-4d22-8118-23e738d05c02] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b81e47e5-6e32-4d22-8118-23e738d05c02""}\n2025-07-15 14:07:48.858 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0be21c6e-de21-4975-be9e-92ab9eb5f43a] received connection request\n2025-07-15 14:07:48.858 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:07:48.877 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0be21c6e-de21-4975-be9e-92ab9eb5f43a] socks forwarding established\n2025-07-15 14:07:48.913 [info] [command][b81e47e5-6e32-4d22-8118-23e738d05c02] Process exited with code 0\n2025-07-15 14:07:48.913 [info] [command][b81e47e5-6e32-4d22-8118-23e738d05c02] Socket close event received\n2025-07-15 14:07:48.914 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0be21c6e-de21-4975-be9e-92ab9eb5f43a] socks connection closed\n2025-07-15 14:07:48.931 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54480 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:08:48.914 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:08:48.916 [info] [command][32df28a7-503f-4307-af27-865a5552cfb7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""32df28a7-503f-4307-af27-865a5552cfb7""}\n2025-07-15 14:08:48.917 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6f7c5666-ffeb-4d28-ae67-da73ead37c5d] received connection request\n2025-07-15 14:08:48.917 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:08:48.945 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6f7c5666-ffeb-4d28-ae67-da73ead37c5d] socks forwarding established\n2025-07-15 14:08:49.020 [info] [command][32df28a7-503f-4307-af27-865a5552cfb7] Process exited with code 0\n2025-07-15 14:08:49.020 [info] [command][32df28a7-503f-4307-af27-865a5552cfb7] Socket close event received\n2025-07-15 14:08:49.021 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6f7c5666-ffeb-4d28-ae67-da73ead37c5d] socks connection closed\n2025-07-15 14:08:49.038 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54511 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:09:49.024 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:09:49.025 [info] [command][055febd9-d4e9-42bb-be8a-af00c0ef7e0f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""055febd9-d4e9-42bb-be8a-af00c0ef7e0f""}\n2025-07-15 14:09:49.026 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0bbe2ba9-da3e-4dc6-b6f7-84c61be30e62] received connection request\n2025-07-15 14:09:49.026 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:09:49.049 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0bbe2ba9-da3e-4dc6-b6f7-84c61be30e62] socks forwarding established\n2025-07-15 14:09:49.162 [info] [command][055febd9-d4e9-42bb-be8a-af00c0ef7e0f] Process exited with code 0\n2025-07-15 14:09:49.163 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0bbe2ba9-da3e-4dc6-b6f7-84c61be30e62] socks connection closed\n2025-07-15 14:09:49.163 [info] [command][055febd9-d4e9-42bb-be8a-af00c0ef7e0f] Socket close event received\n2025-07-15 14:09:49.179 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54531 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:10:49.165 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:10:49.168 [info] [command][6697c72d-4d7e-4e31-a354-f4700cda1c40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6697c72d-4d7e-4e31-a354-f4700cda1c40""}\n2025-07-15 14:10:49.169 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0fdd9357-6db6-46af-b450-b4e4bb333061] received connection request\n2025-07-15 14:10:49.170 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:10:49.191 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0fdd9357-6db6-46af-b450-b4e4bb333061] socks forwarding established\n2025-07-15 14:10:49.221 [info] [command][6697c72d-4d7e-4e31-a354-f4700cda1c40] Process exited with code 0\n2025-07-15 14:10:49.222 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0fdd9357-6db6-46af-b450-b4e4bb333061] socks connection closed\n2025-07-15 14:10:49.222 [info] [command][6697c72d-4d7e-4e31-a354-f4700cda1c40] Socket close event received\n2025-07-15 14:10:49.238 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54549 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:11:49.223 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:11:49.223 [info] [command][19dfdac9-89f9-4507-82c9-bb7780e7e001] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""19dfdac9-89f9-4507-82c9-bb7780e7e001""}\n2025-07-15 14:11:49.224 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][31c0eac9-87a6-43ea-9054-9daebea18239] received connection request\n2025-07-15 14:11:49.224 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:11:49.240 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][31c0eac9-87a6-43ea-9054-9daebea18239] socks forwarding established\n2025-07-15 14:11:49.269 [info] [command][19dfdac9-89f9-4507-82c9-bb7780e7e001] Process exited with code 0\n2025-07-15 14:11:49.269 [info] [command][19dfdac9-89f9-4507-82c9-bb7780e7e001] Socket close event received\n2025-07-15 14:11:49.269 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][31c0eac9-87a6-43ea-9054-9daebea18239] socks connection closed\n2025-07-15 14:11:49.286 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54581 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:12:49.273 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:12:49.275 [info] [command][4012583c-d47b-431a-bbe8-2a1e523e1ad6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4012583c-d47b-431a-bbe8-2a1e523e1ad6""}\n2025-07-15 14:12:49.275 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f78380ad-aee6-43a8-bcdf-e407cbedb5c0] received connection request\n2025-07-15 14:12:49.276 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:12:49.293 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f78380ad-aee6-43a8-bcdf-e407cbedb5c0] socks forwarding established\n2025-07-15 14:12:49.328 [info] [command][4012583c-d47b-431a-bbe8-2a1e523e1ad6] Process exited with code 0\n2025-07-15 14:12:49.328 [info] [command][4012583c-d47b-431a-bbe8-2a1e523e1ad6] Socket close event received\n2025-07-15 14:12:49.328 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f78380ad-aee6-43a8-bcdf-e407cbedb5c0] socks connection closed\n2025-07-15 14:12:49.346 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54608 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:13:49.333 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:13:49.337 [info] [command][146c56f7-b884-41f1-bde4-fdc724774549] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""146c56f7-b884-41f1-bde4-fdc724774549""}\n2025-07-15 14:13:49.339 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][36dcfa3b-0ae5-4dc9-ad7f-27f07928a3b3] received connection request\n2025-07-15 14:13:49.342 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:13:49.362 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][36dcfa3b-0ae5-4dc9-ad7f-27f07928a3b3] socks forwarding established\n2025-07-15 14:13:49.398 [info] [command][146c56f7-b884-41f1-bde4-fdc724774549] Process exited with code 0\n2025-07-15 14:13:49.399 [info] [command][146c56f7-b884-41f1-bde4-fdc724774549] Socket close event received\n2025-07-15 14:13:49.401 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][36dcfa3b-0ae5-4dc9-ad7f-27f07928a3b3] socks connection closed\n2025-07-15 14:13:49.421 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54662 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:14:49.400 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:14:49.402 [info] [command][7db5640e-3b29-46a8-a30c-fe24da147639] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7db5640e-3b29-46a8-a30c-fe24da147639""}\n2025-07-15 14:14:49.402 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b5419ccb-6ec5-4d31-b49e-1585166af6f9] received connection request\n2025-07-15 14:14:49.403 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:14:49.430 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b5419ccb-6ec5-4d31-b49e-1585166af6f9] socks forwarding established\n2025-07-15 14:14:49.461 [info] [command][7db5640e-3b29-46a8-a30c-fe24da147639] Process exited with code 0\n2025-07-15 14:14:49.461 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b5419ccb-6ec5-4d31-b49e-1585166af6f9] socks connection closed\n2025-07-15 14:14:49.461 [info] [command][7db5640e-3b29-46a8-a30c-fe24da147639] Socket close event received\n2025-07-15 14:14:49.478 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54699 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:15:49.466 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:15:49.467 [info] [command][5a8003f2-6854-4ebe-9205-94f5375f15b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5a8003f2-6854-4ebe-9205-94f5375f15b5""}\n2025-07-15 14:15:49.467 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][08b5f342-150f-435e-98c3-628a6a4da753] received connection request\n2025-07-15 14:15:49.468 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:15:49.565 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][08b5f342-150f-435e-98c3-628a6a4da753] socks forwarding established\n2025-07-15 14:15:49.598 [info] [command][5a8003f2-6854-4ebe-9205-94f5375f15b5] Process exited with code 0\n2025-07-15 14:15:49.599 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][08b5f342-150f-435e-98c3-628a6a4da753] socks connection closed\n2025-07-15 14:15:49.599 [info] [command][5a8003f2-6854-4ebe-9205-94f5375f15b5] Socket close event received\n2025-07-15 14:15:49.616 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54729 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:16:49.604 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:16:49.606 [info] [command][64ea97ea-84a2-46a4-be85-28d0ad8173a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""64ea97ea-84a2-46a4-be85-28d0ad8173a0""}\n2025-07-15 14:16:49.606 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a61c4375-db68-42b3-bbc0-0548595e86ea] received connection request\n2025-07-15 14:16:49.607 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:16:49.658 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a61c4375-db68-42b3-bbc0-0548595e86ea] socks forwarding established\n2025-07-15 14:16:49.822 [info] [command][64ea97ea-84a2-46a4-be85-28d0ad8173a0] Process exited with code 0\n2025-07-15 14:16:49.822 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a61c4375-db68-42b3-bbc0-0548595e86ea] socks connection closed\n2025-07-15 14:16:49.822 [info] [command][64ea97ea-84a2-46a4-be85-28d0ad8173a0] Socket close event received\n2025-07-15 14:16:49.838 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54775 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:17:49.827 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:17:49.829 [info] [command][c70132ac-1a6b-4aaf-8788-e971fe693789] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c70132ac-1a6b-4aaf-8788-e971fe693789""}\n2025-07-15 14:17:49.830 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][722df8d7-a151-44ec-9e0d-80e2005f34bc] received connection request\n2025-07-15 14:17:49.831 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:17:49.849 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][722df8d7-a151-44ec-9e0d-80e2005f34bc] socks forwarding established\n2025-07-15 14:17:49.883 [info] [command][c70132ac-1a6b-4aaf-8788-e971fe693789] Process exited with code 0\n2025-07-15 14:17:49.883 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][722df8d7-a151-44ec-9e0d-80e2005f34bc] socks connection closed\n2025-07-15 14:17:49.883 [info] [command][c70132ac-1a6b-4aaf-8788-e971fe693789] Socket close event received\n2025-07-15 14:17:49.900 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54795 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:18:49.888 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:18:49.891 [info] [command][465be9a7-b05c-4553-9145-8c4f264e533e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""465be9a7-b05c-4553-9145-8c4f264e533e""}\n2025-07-15 14:18:49.891 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5db87a0b-7c2a-4602-b64f-539506ed012c] received connection request\n2025-07-15 14:18:49.892 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:18:49.921 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5db87a0b-7c2a-4602-b64f-539506ed012c] socks forwarding established\n2025-07-15 14:18:49.958 [info] [command][465be9a7-b05c-4553-9145-8c4f264e533e] Process exited with code 0\n2025-07-15 14:18:49.958 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5db87a0b-7c2a-4602-b64f-539506ed012c] socks connection closed\n2025-07-15 14:18:49.958 [info] [command][465be9a7-b05c-4553-9145-8c4f264e533e] Socket close event received\n2025-07-15 14:18:49.980 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54839 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:19:49.961 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:19:49.964 [info] [command][70a6d498-a05e-40e2-b42d-a203ef41a81d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""70a6d498-a05e-40e2-b42d-a203ef41a81d""}\n2025-07-15 14:19:49.965 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][689f3320-8f3a-496a-aff5-e02fa8cea0e5] received connection request\n2025-07-15 14:19:49.966 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:19:49.989 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][689f3320-8f3a-496a-aff5-e02fa8cea0e5] socks forwarding established\n2025-07-15 14:19:50.021 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][689f3320-8f3a-496a-aff5-e02fa8cea0e5] socks connection closed\n2025-07-15 14:19:50.021 [info] [command][70a6d498-a05e-40e2-b42d-a203ef41a81d] Process exited with code 0\n2025-07-15 14:19:50.021 [info] [command][70a6d498-a05e-40e2-b42d-a203ef41a81d] Socket close event received\n2025-07-15 14:19:50.038 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54862 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:20:50.026 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:20:50.029 [info] [command][2ffe2fa3-db53-4fb8-976b-6721be84dbef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2ffe2fa3-db53-4fb8-976b-6721be84dbef""}\n2025-07-15 14:20:50.030 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6845250e-a37d-451d-9dc5-d2942e38a7e6] received connection request\n2025-07-15 14:20:50.031 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:20:50.051 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6845250e-a37d-451d-9dc5-d2942e38a7e6] socks forwarding established\n2025-07-15 14:20:50.082 [info] [command][2ffe2fa3-db53-4fb8-976b-6721be84dbef] Process exited with code 0\n2025-07-15 14:20:50.083 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6845250e-a37d-451d-9dc5-d2942e38a7e6] socks connection closed\n2025-07-15 14:20:50.083 [info] [command][2ffe2fa3-db53-4fb8-976b-6721be84dbef] Socket close event received\n2025-07-15 14:20:50.100 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54885 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:21:50.092 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:21:50.093 [info] [command][599d8d11-6aa5-4f31-92b0-3f2fd4560a08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""599d8d11-6aa5-4f31-92b0-3f2fd4560a08""}\n2025-07-15 14:21:50.094 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ed316f35-8e89-46e0-98c0-435ad7e0b601] received connection request\n2025-07-15 14:21:50.094 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:21:50.243 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ed316f35-8e89-46e0-98c0-435ad7e0b601] socks forwarding established\n2025-07-15 14:21:50.407 [info] [command][599d8d11-6aa5-4f31-92b0-3f2fd4560a08] Process exited with code 0\n2025-07-15 14:21:50.408 [info] [command][599d8d11-6aa5-4f31-92b0-3f2fd4560a08] Socket close event received\n2025-07-15 14:21:50.409 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ed316f35-8e89-46e0-98c0-435ad7e0b601] socks connection closed\n2025-07-15 14:21:50.427 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54901 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:22:50.410 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:22:50.412 [info] [command][b3cdc613-8056-47a2-b247-5627003bf7e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b3cdc613-8056-47a2-b247-5627003bf7e8""}\n2025-07-15 14:22:50.413 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fb8920a8-bf18-4a74-8c5a-9f482bd05dec] received connection request\n2025-07-15 14:22:50.413 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:22:50.429 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fb8920a8-bf18-4a74-8c5a-9f482bd05dec] socks forwarding established\n2025-07-15 14:22:50.462 [info] [command][b3cdc613-8056-47a2-b247-5627003bf7e8] Process exited with code 0\n2025-07-15 14:22:50.463 [info] [command][b3cdc613-8056-47a2-b247-5627003bf7e8] Socket close event received\n2025-07-15 14:22:50.463 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fb8920a8-bf18-4a74-8c5a-9f482bd05dec] socks connection closed\n2025-07-15 14:22:50.479 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54928 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:23:50.473 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:23:50.475 [info] [command][fb8b55e7-2c93-4dcd-882b-36bdd37c306e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fb8b55e7-2c93-4dcd-882b-36bdd37c306e""}\n2025-07-15 14:23:50.476 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8f0828f2-24c4-4122-acdb-c6128a4cc9dc] received connection request\n2025-07-15 14:23:50.476 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:23:50.493 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8f0828f2-24c4-4122-acdb-c6128a4cc9dc] socks forwarding established\n2025-07-15 14:23:50.524 [info] [command][fb8b55e7-2c93-4dcd-882b-36bdd37c306e] Process exited with code 0\n2025-07-15 14:23:50.524 [info] [command][fb8b55e7-2c93-4dcd-882b-36bdd37c306e] Socket close event received\n2025-07-15 14:23:50.524 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8f0828f2-24c4-4122-acdb-c6128a4cc9dc] socks connection closed\n2025-07-15 14:23:50.540 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54941 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:24:50.534 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:24:50.536 [info] [command][d31e1284-dcd8-4d86-bb3c-41d71a341b8c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d31e1284-dcd8-4d86-bb3c-41d71a341b8c""}\n2025-07-15 14:24:50.537 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][aeb52662-500f-4c77-b0a4-de7f53af539f] received connection request\n2025-07-15 14:24:50.537 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:24:50.555 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][aeb52662-500f-4c77-b0a4-de7f53af539f] socks forwarding established\n2025-07-15 14:24:50.584 [info] [command][d31e1284-dcd8-4d86-bb3c-41d71a341b8c] Process exited with code 0\n2025-07-15 14:24:50.584 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][aeb52662-500f-4c77-b0a4-de7f53af539f] socks connection closed\n2025-07-15 14:24:50.585 [info] [command][d31e1284-dcd8-4d86-bb3c-41d71a341b8c] Socket close event received\n2025-07-15 14:24:50.601 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54972 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:25:50.594 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:25:50.596 [info] [command][53cc1b55-7e30-4e5e-b99f-4759ee1c243f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""53cc1b55-7e30-4e5e-b99f-4759ee1c243f""}\n2025-07-15 14:25:50.597 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a12f792d-4b04-4810-93bd-372e79de8c67] received connection request\n2025-07-15 14:25:50.598 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:25:50.686 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a12f792d-4b04-4810-93bd-372e79de8c67] socks forwarding established\n2025-07-15 14:25:50.761 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a12f792d-4b04-4810-93bd-372e79de8c67] socks connection closed\n2025-07-15 14:25:50.761 [info] [command][53cc1b55-7e30-4e5e-b99f-4759ee1c243f] Process exited with code 0\n2025-07-15 14:25:50.761 [info] [command][53cc1b55-7e30-4e5e-b99f-4759ee1c243f] Socket close event received\n2025-07-15 14:25:50.910 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 54989 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:26:50.771 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:26:50.773 [info] [command][82816bc2-b85a-43f3-b090-4b5064c7e12b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""82816bc2-b85a-43f3-b090-4b5064c7e12b""}\n2025-07-15 14:26:50.773 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c9cde259-8638-4dc4-8a53-14b3d1f2c953] received connection request\n2025-07-15 14:26:50.774 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:26:50.791 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c9cde259-8638-4dc4-8a53-14b3d1f2c953] socks forwarding established\n2025-07-15 14:26:50.826 [info] [command][82816bc2-b85a-43f3-b090-4b5064c7e12b] Process exited with code 0\n2025-07-15 14:26:50.826 [info] [command][82816bc2-b85a-43f3-b090-4b5064c7e12b] Socket close event received\n2025-07-15 14:26:50.826 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c9cde259-8638-4dc4-8a53-14b3d1f2c953] socks connection closed\n2025-07-15 14:26:50.843 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55004 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:27:50.836 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:27:50.839 [info] [command][f88c6f28-2402-4dda-9375-3e348be45aa0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f88c6f28-2402-4dda-9375-3e348be45aa0""}\n2025-07-15 14:27:50.840 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6245461a-36c2-4535-aae4-2dfbe5229c0c] received connection request\n2025-07-15 14:27:50.840 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:27:50.857 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6245461a-36c2-4535-aae4-2dfbe5229c0c] socks forwarding established\n2025-07-15 14:27:50.891 [info] [command][f88c6f28-2402-4dda-9375-3e348be45aa0] Process exited with code 0\n2025-07-15 14:27:50.891 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6245461a-36c2-4535-aae4-2dfbe5229c0c] socks connection closed\n2025-07-15 14:27:50.891 [info] [command][f88c6f28-2402-4dda-9375-3e348be45aa0] Socket close event received\n2025-07-15 14:27:50.908 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55035 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:28:50.897 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:28:50.899 [info] [command][1ceb5ba4-3a33-4d8e-9b73-91f27ace8c14] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1ceb5ba4-3a33-4d8e-9b73-91f27ace8c14""}\n2025-07-15 14:28:50.899 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c52babf4-7604-4cc9-9ec9-b42fc2ceeb43] received connection request\n2025-07-15 14:28:50.900 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:28:50.917 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c52babf4-7604-4cc9-9ec9-b42fc2ceeb43] socks forwarding established\n2025-07-15 14:28:50.947 [info] [command][1ceb5ba4-3a33-4d8e-9b73-91f27ace8c14] Process exited with code 0\n2025-07-15 14:28:50.947 [info] [command][1ceb5ba4-3a33-4d8e-9b73-91f27ace8c14] Socket close event received\n2025-07-15 14:28:50.948 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c52babf4-7604-4cc9-9ec9-b42fc2ceeb43] socks connection closed\n2025-07-15 14:28:50.965 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55046 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:29:50.958 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:29:50.960 [info] [command][5886b951-1768-4049-9f0c-884206f67738] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5886b951-1768-4049-9f0c-884206f67738""}\n2025-07-15 14:29:50.961 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9e8b44e2-a2b5-4c31-84a8-883d25a286d3] received connection request\n2025-07-15 14:29:50.961 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:29:50.978 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9e8b44e2-a2b5-4c31-84a8-883d25a286d3] socks forwarding established\n2025-07-15 14:29:51.013 [info] [command][5886b951-1768-4049-9f0c-884206f67738] Process exited with code 0\n2025-07-15 14:29:51.014 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9e8b44e2-a2b5-4c31-84a8-883d25a286d3] socks connection closed\n2025-07-15 14:29:51.014 [info] [command][5886b951-1768-4049-9f0c-884206f67738] Socket close event received\n2025-07-15 14:29:51.031 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55080 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:30:51.018 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:30:51.020 [info] [command][21fef5a7-ec78-4921-a2a1-2586a292003a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""21fef5a7-ec78-4921-a2a1-2586a292003a""}\n2025-07-15 14:30:51.020 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0df95a1e-a45f-48e3-aed0-3705c78a6648] received connection request\n2025-07-15 14:30:51.021 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:30:51.167 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0df95a1e-a45f-48e3-aed0-3705c78a6648] socks forwarding established\n2025-07-15 14:30:52.195 [info] [command][21fef5a7-ec78-4921-a2a1-2586a292003a] Process exited with code 0\n2025-07-15 14:30:52.195 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0df95a1e-a45f-48e3-aed0-3705c78a6648] socks connection closed\n2025-07-15 14:30:52.195 [info] [command][21fef5a7-ec78-4921-a2a1-2586a292003a] Socket close event received\n2025-07-15 14:30:52.225 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55104 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:31:52.205 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:31:52.207 [info] [command][017cda3e-29cb-45ca-8c5f-659c0dff7a2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""017cda3e-29cb-45ca-8c5f-659c0dff7a2f""}\n2025-07-15 14:31:52.208 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e176a2a7-7cdb-4018-8a6f-4466c403d45f] received connection request\n2025-07-15 14:31:52.208 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:31:52.225 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e176a2a7-7cdb-4018-8a6f-4466c403d45f] socks forwarding established\n2025-07-15 14:31:52.255 [info] [command][017cda3e-29cb-45ca-8c5f-659c0dff7a2f] Process exited with code 0\n2025-07-15 14:31:52.256 [info] [command][017cda3e-29cb-45ca-8c5f-659c0dff7a2f] Socket close event received\n2025-07-15 14:31:52.256 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e176a2a7-7cdb-4018-8a6f-4466c403d45f] socks connection closed\n2025-07-15 14:31:52.273 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55122 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:32:52.258 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:32:52.260 [info] [command][bc3a6c38-2da5-472b-bac7-aa5df8b03c36] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bc3a6c38-2da5-472b-bac7-aa5df8b03c36""}\n2025-07-15 14:32:52.261 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1cd05834-d35e-4379-a2d3-0dbed41f291a] received connection request\n2025-07-15 14:32:52.261 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:32:52.278 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1cd05834-d35e-4379-a2d3-0dbed41f291a] socks forwarding established\n2025-07-15 14:32:52.309 [info] [command][bc3a6c38-2da5-472b-bac7-aa5df8b03c36] Process exited with code 0\n2025-07-15 14:32:52.310 [info] [command][bc3a6c38-2da5-472b-bac7-aa5df8b03c36] Socket close event received\n2025-07-15 14:32:52.310 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1cd05834-d35e-4379-a2d3-0dbed41f291a] socks connection closed\n2025-07-15 14:32:52.327 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55156 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:33:52.321 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:33:52.324 [info] [command][49f87495-f008-4fdc-929d-f41b548f7117] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""49f87495-f008-4fdc-929d-f41b548f7117""}\n2025-07-15 14:33:52.324 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][da71bbdb-8f88-4686-a0a2-0f75d6782044] received connection request\n2025-07-15 14:33:52.325 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:33:52.343 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][da71bbdb-8f88-4686-a0a2-0f75d6782044] socks forwarding established\n2025-07-15 14:33:52.374 [info] [command][49f87495-f008-4fdc-929d-f41b548f7117] Process exited with code 0\n2025-07-15 14:33:52.374 [info] [command][49f87495-f008-4fdc-929d-f41b548f7117] Socket close event received\n2025-07-15 14:33:52.375 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][da71bbdb-8f88-4686-a0a2-0f75d6782044] socks connection closed\n2025-07-15 14:33:52.391 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55177 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:34:52.383 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:34:52.386 [info] [command][52214f8b-6313-4644-9c88-f39c5a8782e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""52214f8b-6313-4644-9c88-f39c5a8782e1""}\n2025-07-15 14:34:52.387 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][51368a10-b696-4dd3-aed9-b2bac3792440] received connection request\n2025-07-15 14:34:52.387 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:34:52.507 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][51368a10-b696-4dd3-aed9-b2bac3792440] socks forwarding established\n2025-07-15 14:34:52.673 [info] [command][52214f8b-6313-4644-9c88-f39c5a8782e1] Process exited with code 0\n2025-07-15 14:34:52.674 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][51368a10-b696-4dd3-aed9-b2bac3792440] socks connection closed\n2025-07-15 14:34:52.674 [info] [command][52214f8b-6313-4644-9c88-f39c5a8782e1] Socket close event received\n2025-07-15 14:34:52.691 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55207 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:35:52.684 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:35:52.686 [info] [command][c11e1780-32c4-4c77-a9ed-efd4b042fa5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c11e1780-32c4-4c77-a9ed-efd4b042fa5b""}\n2025-07-15 14:35:52.687 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][34db6e69-80ed-4041-9eb0-76594a1f3c91] received connection request\n2025-07-15 14:35:52.687 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:35:52.715 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34db6e69-80ed-4041-9eb0-76594a1f3c91] socks forwarding established\n2025-07-15 14:35:52.755 [info] [command][c11e1780-32c4-4c77-a9ed-efd4b042fa5b] Process exited with code 0\n2025-07-15 14:35:52.755 [info] [command][c11e1780-32c4-4c77-a9ed-efd4b042fa5b] Socket close event received\n2025-07-15 14:35:52.762 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34db6e69-80ed-4041-9eb0-76594a1f3c91] socks connection closed\n2025-07-15 14:35:52.789 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55226 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:36:52.759 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:36:52.760 [info] [command][3271b669-9ccd-40a0-bc50-04b40c5da6f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3271b669-9ccd-40a0-bc50-04b40c5da6f6""}\n2025-07-15 14:36:52.761 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ebea4b3a-430a-4f73-8bb2-6762b1390fd3] received connection request\n2025-07-15 14:36:52.762 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:36:52.779 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ebea4b3a-430a-4f73-8bb2-6762b1390fd3] socks forwarding established\n2025-07-15 14:36:52.811 [info] [command][3271b669-9ccd-40a0-bc50-04b40c5da6f6] Process exited with code 0\n2025-07-15 14:36:52.811 [info] [command][3271b669-9ccd-40a0-bc50-04b40c5da6f6] Socket close event received\n2025-07-15 14:36:52.813 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ebea4b3a-430a-4f73-8bb2-6762b1390fd3] socks connection closed\n2025-07-15 14:36:52.829 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55241 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:37:52.822 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:37:52.824 [info] [command][c9ac76a5-d964-439d-883e-4add464a8060] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c9ac76a5-d964-439d-883e-4add464a8060""}\n2025-07-15 14:37:52.825 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7cfc592e-636b-472b-a5ff-8cf0bb56b8ef] received connection request\n2025-07-15 14:37:52.826 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:37:52.843 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7cfc592e-636b-472b-a5ff-8cf0bb56b8ef] socks forwarding established\n2025-07-15 14:37:52.874 [info] [command][c9ac76a5-d964-439d-883e-4add464a8060] Process exited with code 0\n2025-07-15 14:37:52.874 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7cfc592e-636b-472b-a5ff-8cf0bb56b8ef] socks connection closed\n2025-07-15 14:37:52.874 [info] [command][c9ac76a5-d964-439d-883e-4add464a8060] Socket close event received\n2025-07-15 14:37:52.890 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55272 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:38:52.884 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:38:52.886 [info] [command][45fad736-f938-4bb7-9312-88b486a137d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""45fad736-f938-4bb7-9312-88b486a137d6""}\n2025-07-15 14:38:52.886 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3d7df207-1487-4c98-9497-3d7be028b941] received connection request\n2025-07-15 14:38:52.887 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:38:52.904 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d7df207-1487-4c98-9497-3d7be028b941] socks forwarding established\n2025-07-15 14:38:52.934 [info] [command][45fad736-f938-4bb7-9312-88b486a137d6] Process exited with code 0\n2025-07-15 14:38:52.935 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d7df207-1487-4c98-9497-3d7be028b941] socks connection closed\n2025-07-15 14:38:52.935 [info] [command][45fad736-f938-4bb7-9312-88b486a137d6] Socket close event received\n2025-07-15 14:38:52.952 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55287 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:39:52.945 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:39:52.947 [info] [command][d0b60dd8-d6bb-4463-bc7d-fa61913e4fce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d0b60dd8-d6bb-4463-bc7d-fa61913e4fce""}\n2025-07-15 14:39:52.948 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][20991730-9ef7-4d24-974a-86c9a97150bd] received connection request\n2025-07-15 14:39:52.948 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:39:53.086 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][20991730-9ef7-4d24-974a-86c9a97150bd] socks forwarding established\n2025-07-15 14:39:53.157 [info] [command][d0b60dd8-d6bb-4463-bc7d-fa61913e4fce] Process exited with code 0\n2025-07-15 14:39:53.157 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][20991730-9ef7-4d24-974a-86c9a97150bd] socks connection closed\n2025-07-15 14:39:53.158 [info] [command][d0b60dd8-d6bb-4463-bc7d-fa61913e4fce] Socket close event received\n2025-07-15 14:39:53.252 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55319 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:40:53.166 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:40:53.168 [info] [command][29611458-f4fc-4eed-808c-0253a1db1c0d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""29611458-f4fc-4eed-808c-0253a1db1c0d""}\n2025-07-15 14:40:53.169 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][35105c53-4860-42ba-9bc0-59fecbfcdede] received connection request\n2025-07-15 14:40:53.170 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:40:53.187 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][35105c53-4860-42ba-9bc0-59fecbfcdede] socks forwarding established\n2025-07-15 14:40:53.219 [info] [command][29611458-f4fc-4eed-808c-0253a1db1c0d] Process exited with code 0\n2025-07-15 14:40:53.219 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][35105c53-4860-42ba-9bc0-59fecbfcdede] socks connection closed\n2025-07-15 14:40:53.219 [info] [command][29611458-f4fc-4eed-808c-0253a1db1c0d] Socket close event received\n2025-07-15 14:40:53.236 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55340 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:41:53.230 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:41:53.232 [info] [command][56d12520-22b0-4537-af09-256fc68ce8c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""56d12520-22b0-4537-af09-256fc68ce8c0""}\n2025-07-15 14:41:53.232 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f8e0d50e-d6a1-4d41-b378-6670d0e2e6d9] received connection request\n2025-07-15 14:41:53.233 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:41:53.254 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f8e0d50e-d6a1-4d41-b378-6670d0e2e6d9] socks forwarding established\n2025-07-15 14:41:53.284 [info] [command][56d12520-22b0-4537-af09-256fc68ce8c0] Process exited with code 0\n2025-07-15 14:41:53.285 [info] [command][56d12520-22b0-4537-af09-256fc68ce8c0] Socket close event received\n2025-07-15 14:41:53.285 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f8e0d50e-d6a1-4d41-b378-6670d0e2e6d9] socks connection closed\n2025-07-15 14:41:53.301 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55359 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:42:53.296 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:42:53.297 [info] [command][dd99c138-ba4c-4c23-b07d-89702fb39431] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""dd99c138-ba4c-4c23-b07d-89702fb39431""}\n2025-07-15 14:42:53.298 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f5ff3632-b441-4e08-9916-26c4538442fe] received connection request\n2025-07-15 14:42:53.299 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:42:53.318 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f5ff3632-b441-4e08-9916-26c4538442fe] socks forwarding established\n2025-07-15 14:42:53.350 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f5ff3632-b441-4e08-9916-26c4538442fe] socks connection closed\n2025-07-15 14:42:53.350 [info] [command][dd99c138-ba4c-4c23-b07d-89702fb39431] Process exited with code 0\n2025-07-15 14:42:53.350 [info] [command][dd99c138-ba4c-4c23-b07d-89702fb39431] Socket close event received\n2025-07-15 14:42:53.366 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55410 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:43:53.360 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:43:53.362 [info] [command][0d7963bf-f6a3-43af-a364-af1dbf012961] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0d7963bf-f6a3-43af-a364-af1dbf012961""}\n2025-07-15 14:43:53.362 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][17abaa1c-6cd4-46c8-80cd-1c6c692fe9af] received connection request\n2025-07-15 14:43:53.363 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:43:53.390 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][17abaa1c-6cd4-46c8-80cd-1c6c692fe9af] socks forwarding established\n2025-07-15 14:43:53.532 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][17abaa1c-6cd4-46c8-80cd-1c6c692fe9af] socks connection closed\n2025-07-15 14:43:53.532 [info] [command][0d7963bf-f6a3-43af-a364-af1dbf012961] Process exited with code 0\n2025-07-15 14:43:53.532 [info] [command][0d7963bf-f6a3-43af-a364-af1dbf012961] Socket close event received\n2025-07-15 14:43:53.548 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55424 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:44:53.538 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:44:53.540 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d96bf06a-507f-441e-811a-8c4aef0431fd] received connection request\n2025-07-15 14:44:53.540 [info] [command][cfeea003-fca1-4907-9fe5-07505dfb95c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cfeea003-fca1-4907-9fe5-07505dfb95c0""}\n2025-07-15 14:44:53.541 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:44:53.559 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d96bf06a-507f-441e-811a-8c4aef0431fd] socks forwarding established\n2025-07-15 14:44:53.591 [info] [command][cfeea003-fca1-4907-9fe5-07505dfb95c0] Process exited with code 0\n2025-07-15 14:44:53.591 [info] [command][cfeea003-fca1-4907-9fe5-07505dfb95c0] Socket close event received\n2025-07-15 14:44:53.607 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d96bf06a-507f-441e-811a-8c4aef0431fd] socks connection closed\n2025-07-15 14:44:53.608 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55455 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:45:53.601 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:45:53.603 [info] [command][a5a3669c-1720-46b5-9a37-d930d7b40bd3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a5a3669c-1720-46b5-9a37-d930d7b40bd3""}\n2025-07-15 14:45:53.604 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][bdc818e8-7d85-4f93-9e01-0bc099daa353] received connection request\n2025-07-15 14:45:53.604 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:45:53.622 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bdc818e8-7d85-4f93-9e01-0bc099daa353] socks forwarding established\n2025-07-15 14:45:53.655 [info] [command][a5a3669c-1720-46b5-9a37-d930d7b40bd3] Process exited with code 0\n2025-07-15 14:45:53.655 [info] [command][a5a3669c-1720-46b5-9a37-d930d7b40bd3] Socket close event received\n2025-07-15 14:45:53.656 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bdc818e8-7d85-4f93-9e01-0bc099daa353] socks connection closed\n2025-07-15 14:45:53.675 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55474 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:46:53.665 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:46:53.667 [info] [command][d3d36c6f-88b3-4cae-ac89-dc66537d20bc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d3d36c6f-88b3-4cae-ac89-dc66537d20bc""}\n2025-07-15 14:46:53.668 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][cff3bb76-3fba-4ee9-a2d9-fd18dc582208] received connection request\n2025-07-15 14:46:53.669 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:46:53.686 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cff3bb76-3fba-4ee9-a2d9-fd18dc582208] socks forwarding established\n2025-07-15 14:46:53.717 [info] [command][d3d36c6f-88b3-4cae-ac89-dc66537d20bc] Process exited with code 0\n2025-07-15 14:46:53.718 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cff3bb76-3fba-4ee9-a2d9-fd18dc582208] socks connection closed\n2025-07-15 14:46:53.718 [info] [command][d3d36c6f-88b3-4cae-ac89-dc66537d20bc] Socket close event received\n2025-07-15 14:46:53.737 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55489 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:47:53.728 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:47:53.730 [info] [command][ff906ed8-1f90-4322-b337-778410547405] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ff906ed8-1f90-4322-b337-778410547405""}\n2025-07-15 14:47:53.731 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][38797edc-f214-4cbb-a378-dc0364942634] received connection request\n2025-07-15 14:47:53.731 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:47:53.749 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][38797edc-f214-4cbb-a378-dc0364942634] socks forwarding established\n2025-07-15 14:47:53.780 [info] [command][ff906ed8-1f90-4322-b337-778410547405] Process exited with code 0\n2025-07-15 14:47:53.781 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][38797edc-f214-4cbb-a378-dc0364942634] socks connection closed\n2025-07-15 14:47:53.781 [info] [command][ff906ed8-1f90-4322-b337-778410547405] Socket close event received\n2025-07-15 14:47:53.797 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55518 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:48:53.790 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:48:53.792 [info] [command][2af58fe2-1eee-432d-aa23-e361ce39119a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2af58fe2-1eee-432d-aa23-e361ce39119a""}\n2025-07-15 14:48:53.793 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6964642a-cc10-4369-a198-b499972793dd] received connection request\n2025-07-15 14:48:53.794 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:48:53.871 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6964642a-cc10-4369-a198-b499972793dd] socks forwarding established\n2025-07-15 14:48:54.038 [info] [command][2af58fe2-1eee-432d-aa23-e361ce39119a] Process exited with code 0\n2025-07-15 14:48:54.038 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6964642a-cc10-4369-a198-b499972793dd] socks connection closed\n2025-07-15 14:48:54.038 [info] [command][2af58fe2-1eee-432d-aa23-e361ce39119a] Socket close event received\n2025-07-15 14:48:54.056 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55535 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:49:54.046 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:49:54.048 [info] [command][ca8087cb-d1f5-48a2-8d90-2bc5747b423a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ca8087cb-d1f5-48a2-8d90-2bc5747b423a""}\n2025-07-15 14:49:54.049 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b6ca0fb8-85f9-4723-859f-fa5712ae74e3] received connection request\n2025-07-15 14:49:54.050 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:49:54.072 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b6ca0fb8-85f9-4723-859f-fa5712ae74e3] socks forwarding established\n2025-07-15 14:49:54.108 [info] [command][ca8087cb-d1f5-48a2-8d90-2bc5747b423a] Process exited with code 0\n2025-07-15 14:49:54.108 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b6ca0fb8-85f9-4723-859f-fa5712ae74e3] socks connection closed\n2025-07-15 14:49:54.109 [info] [command][ca8087cb-d1f5-48a2-8d90-2bc5747b423a] Socket close event received\n2025-07-15 14:49:54.127 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55563 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:50:54.117 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:50:54.118 [info] [command][10954668-792b-4ec2-b884-99075b13b52e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""10954668-792b-4ec2-b884-99075b13b52e""}\n2025-07-15 14:50:54.119 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7d9b9379-6e51-4f6d-92a2-660fdb520ae3] received connection request\n2025-07-15 14:50:54.119 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:50:54.141 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7d9b9379-6e51-4f6d-92a2-660fdb520ae3] socks forwarding established\n2025-07-15 14:50:54.172 [info] [command][10954668-792b-4ec2-b884-99075b13b52e] Process exited with code 0\n2025-07-15 14:50:54.173 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7d9b9379-6e51-4f6d-92a2-660fdb520ae3] socks connection closed\n2025-07-15 14:50:54.173 [info] [command][10954668-792b-4ec2-b884-99075b13b52e] Socket close event received\n2025-07-15 14:50:54.191 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55579 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:51:54.181 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:51:54.184 [info] [command][4def7b75-e9bd-452d-8ba4-218b0b41b8ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4def7b75-e9bd-452d-8ba4-218b0b41b8ae""}\n2025-07-15 14:51:54.184 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][505c424e-35a1-479c-9bc8-ea757d16a271] received connection request\n2025-07-15 14:51:54.185 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:51:54.202 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][505c424e-35a1-479c-9bc8-ea757d16a271] socks forwarding established\n2025-07-15 14:51:54.234 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][505c424e-35a1-479c-9bc8-ea757d16a271] socks connection closed\n2025-07-15 14:51:54.234 [info] [command][4def7b75-e9bd-452d-8ba4-218b0b41b8ae] Process exited with code 0\n2025-07-15 14:51:54.234 [info] [command][4def7b75-e9bd-452d-8ba4-218b0b41b8ae] Socket close event received\n2025-07-15 14:51:54.253 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55598 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:52:54.237 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:52:54.239 [info] [command][514e76e5-544c-486c-9622-2c46511f68f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""514e76e5-544c-486c-9622-2c46511f68f5""}\n2025-07-15 14:52:54.239 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c0da844b-72fa-4b08-a131-28557210bcc0] received connection request\n2025-07-15 14:52:54.240 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:52:54.493 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c0da844b-72fa-4b08-a131-28557210bcc0] socks forwarding established\n2025-07-15 14:52:54.577 [info] [command][514e76e5-544c-486c-9622-2c46511f68f5] Process exited with code 0\n2025-07-15 14:52:54.578 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c0da844b-72fa-4b08-a131-28557210bcc0] socks connection closed\n2025-07-15 14:52:54.578 [info] [command][514e76e5-544c-486c-9622-2c46511f68f5] Socket close event received\n2025-07-15 14:52:54.595 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55630 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:53:54.585 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:53:54.586 [info] [command][f397cdb9-927d-44e8-b17a-108e56009475] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f397cdb9-927d-44e8-b17a-108e56009475""}\n2025-07-15 14:53:54.586 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][32ffc5ce-dd87-4c05-8078-eec2b4401157] received connection request\n2025-07-15 14:53:54.586 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:53:54.618 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][32ffc5ce-dd87-4c05-8078-eec2b4401157] socks forwarding established\n2025-07-15 14:53:54.653 [info] [command][f397cdb9-927d-44e8-b17a-108e56009475] Process exited with code 0\n2025-07-15 14:53:54.653 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][32ffc5ce-dd87-4c05-8078-eec2b4401157] socks connection closed\n2025-07-15 14:53:54.654 [info] [command][f397cdb9-927d-44e8-b17a-108e56009475] Socket close event received\n2025-07-15 14:53:54.684 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55644 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:54:54.658 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:54:54.660 [info] [command][c5c48f1e-b0ec-4d03-8c87-f1f4ec72fa37] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c5c48f1e-b0ec-4d03-8c87-f1f4ec72fa37""}\n2025-07-15 14:54:54.661 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7831dcd7-d9c7-44ad-a27c-f382aca45c18] received connection request\n2025-07-15 14:54:54.661 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:54:54.679 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7831dcd7-d9c7-44ad-a27c-f382aca45c18] socks forwarding established\n2025-07-15 14:54:54.711 [info] [command][c5c48f1e-b0ec-4d03-8c87-f1f4ec72fa37] Process exited with code 0\n2025-07-15 14:54:54.711 [info] [command][c5c48f1e-b0ec-4d03-8c87-f1f4ec72fa37] Socket close event received\n2025-07-15 14:54:54.712 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7831dcd7-d9c7-44ad-a27c-f382aca45c18] socks connection closed\n2025-07-15 14:54:54.729 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55673 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:55:54.717 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:55:54.718 [info] [command][bbe5bb73-9a2c-4e4e-99fd-94bcc56b02e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bbe5bb73-9a2c-4e4e-99fd-94bcc56b02e1""}\n2025-07-15 14:55:54.718 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8fdbab06-8af3-4286-ad95-5f1a48a99dfa] received connection request\n2025-07-15 14:55:54.718 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:55:54.734 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8fdbab06-8af3-4286-ad95-5f1a48a99dfa] socks forwarding established\n2025-07-15 14:55:54.765 [info] [command][bbe5bb73-9a2c-4e4e-99fd-94bcc56b02e1] Process exited with code 0\n2025-07-15 14:55:54.766 [info] [command][bbe5bb73-9a2c-4e4e-99fd-94bcc56b02e1] Socket close event received\n2025-07-15 14:55:54.766 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8fdbab06-8af3-4286-ad95-5f1a48a99dfa] socks connection closed\n2025-07-15 14:55:54.781 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55689 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:56:54.769 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:56:54.771 [info] [command][1c8c0153-10c0-49ad-ba6a-6cbeef393b66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1c8c0153-10c0-49ad-ba6a-6cbeef393b66""}\n2025-07-15 14:56:54.772 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1bc16321-4924-4e07-837b-e65ce91e26c7] received connection request\n2025-07-15 14:56:54.772 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:56:54.790 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1bc16321-4924-4e07-837b-e65ce91e26c7] socks forwarding established\n2025-07-15 14:56:54.819 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1bc16321-4924-4e07-837b-e65ce91e26c7] socks connection closed\n2025-07-15 14:56:54.819 [info] [command][1c8c0153-10c0-49ad-ba6a-6cbeef393b66] Process exited with code 0\n2025-07-15 14:56:54.819 [info] [command][1c8c0153-10c0-49ad-ba6a-6cbeef393b66] Socket close event received\n2025-07-15 14:56:54.835 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55706 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:57:54.830 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:57:54.832 [info] [command][46093174-e4b3-41f3-82a9-5a1feddb172b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""46093174-e4b3-41f3-82a9-5a1feddb172b""}\n2025-07-15 14:57:54.833 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][99c34605-1721-467f-9a11-0007b0634bed] received connection request\n2025-07-15 14:57:54.833 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:57:54.895 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][99c34605-1721-467f-9a11-0007b0634bed] socks forwarding established\n2025-07-15 14:57:55.060 [info] [command][46093174-e4b3-41f3-82a9-5a1feddb172b] Process exited with code 0\n2025-07-15 14:57:55.061 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][99c34605-1721-467f-9a11-0007b0634bed] socks connection closed\n2025-07-15 14:57:55.061 [info] [command][46093174-e4b3-41f3-82a9-5a1feddb172b] Socket close event received\n2025-07-15 14:57:55.076 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55736 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:58:55.062 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:58:55.063 [info] [command][1461c8af-d5f4-47e9-b152-882669442ec3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1461c8af-d5f4-47e9-b152-882669442ec3""}\n2025-07-15 14:58:55.064 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a2481971-fe8b-4f44-9f8c-18d7c5e90b53] received connection request\n2025-07-15 14:58:55.064 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:58:55.082 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a2481971-fe8b-4f44-9f8c-18d7c5e90b53] socks forwarding established\n2025-07-15 14:58:55.119 [info] [command][1461c8af-d5f4-47e9-b152-882669442ec3] Process exited with code 0\n2025-07-15 14:58:55.119 [info] [command][1461c8af-d5f4-47e9-b152-882669442ec3] Socket close event received\n2025-07-15 14:58:55.130 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a2481971-fe8b-4f44-9f8c-18d7c5e90b53] socks connection closed\n2025-07-15 14:58:55.139 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55753 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 14:59:55.122 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 14:59:55.124 [info] [command][dea77bc4-9a0c-41f6-acb8-d3e5ff6658df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""dea77bc4-9a0c-41f6-acb8-d3e5ff6658df""}\n2025-07-15 14:59:55.124 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9f541d82-2c17-4b78-b22b-10d030770161] received connection request\n2025-07-15 14:59:55.125 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 14:59:55.143 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9f541d82-2c17-4b78-b22b-10d030770161] socks forwarding established\n2025-07-15 14:59:55.174 [info] [command][dea77bc4-9a0c-41f6-acb8-d3e5ff6658df] Process exited with code 0\n2025-07-15 14:59:55.174 [info] [command][dea77bc4-9a0c-41f6-acb8-d3e5ff6658df] Socket close event received\n2025-07-15 14:59:55.174 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9f541d82-2c17-4b78-b22b-10d030770161] socks connection closed\n2025-07-15 14:59:55.193 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55784 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:00:55.184 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:00:55.186 [info] [command][f998668a-4eb4-4e03-878c-a797edb2b5a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f998668a-4eb4-4e03-878c-a797edb2b5a3""}\n2025-07-15 15:00:55.186 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][62b6d51a-775e-4461-afd3-1726e6e2ff0f] received connection request\n2025-07-15 15:00:55.187 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:00:55.204 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][62b6d51a-775e-4461-afd3-1726e6e2ff0f] socks forwarding established\n2025-07-15 15:00:55.236 [info] [command][f998668a-4eb4-4e03-878c-a797edb2b5a3] Process exited with code 0\n2025-07-15 15:00:55.236 [info] [command][f998668a-4eb4-4e03-878c-a797edb2b5a3] Socket close event received\n2025-07-15 15:00:55.237 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][62b6d51a-775e-4461-afd3-1726e6e2ff0f] socks connection closed\n2025-07-15 15:00:55.252 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55805 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:01:55.246 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:01:55.248 [info] [command][e4946044-7bbf-4e69-ae54-aaf2960d24c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e4946044-7bbf-4e69-ae54-aaf2960d24c4""}\n2025-07-15 15:01:55.248 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7a11f931-ac92-4793-af83-ad8efba0293d] received connection request\n2025-07-15 15:01:55.249 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:01:55.423 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7a11f931-ac92-4793-af83-ad8efba0293d] socks forwarding established\n2025-07-15 15:01:55.577 [info] [command][e4946044-7bbf-4e69-ae54-aaf2960d24c4] Process exited with code 0\n2025-07-15 15:01:55.577 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7a11f931-ac92-4793-af83-ad8efba0293d] socks connection closed\n2025-07-15 15:01:55.577 [info] [command][e4946044-7bbf-4e69-ae54-aaf2960d24c4] Socket close event received\n2025-07-15 15:01:55.595 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55822 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:02:55.579 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:02:55.580 [info] [command][617eb6d1-2eae-4d84-9d0d-51eaf8e8c457] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""617eb6d1-2eae-4d84-9d0d-51eaf8e8c457""}\n2025-07-15 15:02:55.581 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4bf89fe9-ce38-4573-a963-94f54c74344d] received connection request\n2025-07-15 15:02:55.581 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:02:55.602 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4bf89fe9-ce38-4573-a963-94f54c74344d] socks forwarding established\n2025-07-15 15:02:55.633 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4bf89fe9-ce38-4573-a963-94f54c74344d] socks connection closed\n2025-07-15 15:02:55.633 [info] [command][617eb6d1-2eae-4d84-9d0d-51eaf8e8c457] Process exited with code 0\n2025-07-15 15:02:55.633 [info] [command][617eb6d1-2eae-4d84-9d0d-51eaf8e8c457] Socket close event received\n2025-07-15 15:02:55.649 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55851 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:03:55.638 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:03:55.639 [info] [command][9c08e995-f1a9-4c6d-9d71-2fcc728cbbdf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9c08e995-f1a9-4c6d-9d71-2fcc728cbbdf""}\n2025-07-15 15:03:55.639 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][270ae9cf-0822-4b86-ab6e-0effc85921b7] received connection request\n2025-07-15 15:03:55.639 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:03:55.656 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][270ae9cf-0822-4b86-ab6e-0effc85921b7] socks forwarding established\n2025-07-15 15:03:55.687 [info] [command][9c08e995-f1a9-4c6d-9d71-2fcc728cbbdf] Process exited with code 0\n2025-07-15 15:03:55.687 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][270ae9cf-0822-4b86-ab6e-0effc85921b7] socks connection closed\n2025-07-15 15:03:55.687 [info] [command][9c08e995-f1a9-4c6d-9d71-2fcc728cbbdf] Socket close event received\n2025-07-15 15:03:55.704 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55867 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:04:55.697 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:04:55.699 [info] [command][27a76a2e-3cee-49e7-9902-4e69353a2971] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""27a76a2e-3cee-49e7-9902-4e69353a2971""}\n2025-07-15 15:04:55.700 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][903a315b-4011-478b-a41a-d5c6196d0aae] received connection request\n2025-07-15 15:04:55.700 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:04:55.718 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][903a315b-4011-478b-a41a-d5c6196d0aae] socks forwarding established\n2025-07-15 15:04:55.748 [info] [command][27a76a2e-3cee-49e7-9902-4e69353a2971] Process exited with code 0\n2025-07-15 15:04:55.748 [info] [command][27a76a2e-3cee-49e7-9902-4e69353a2971] Socket close event received\n2025-07-15 15:04:55.749 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][903a315b-4011-478b-a41a-d5c6196d0aae] socks connection closed\n2025-07-15 15:04:55.767 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55903 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:05:55.752 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:05:55.754 [info] [command][32aa3adb-8873-4288-a791-5a98c61ad04c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""32aa3adb-8873-4288-a791-5a98c61ad04c""}\n2025-07-15 15:05:55.755 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d98607ef-1026-4786-bdbd-fbb1f0466944] received connection request\n2025-07-15 15:05:55.755 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:05:55.773 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d98607ef-1026-4786-bdbd-fbb1f0466944] socks forwarding established\n2025-07-15 15:05:55.807 [info] [command][32aa3adb-8873-4288-a791-5a98c61ad04c] Process exited with code 0\n2025-07-15 15:05:55.808 [info] [command][32aa3adb-8873-4288-a791-5a98c61ad04c] Socket close event received\n2025-07-15 15:05:55.811 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d98607ef-1026-4786-bdbd-fbb1f0466944] socks connection closed\n2025-07-15 15:05:55.826 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55924 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:06:55.815 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:06:55.816 [info] [command][3bb76034-de0f-41b2-a38b-887c1568b6f1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3bb76034-de0f-41b2-a38b-887c1568b6f1""}\n2025-07-15 15:06:55.817 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6819a1a4-7b04-41de-9dbf-7bb9496f1d29] received connection request\n2025-07-15 15:06:55.818 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:06:55.880 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6819a1a4-7b04-41de-9dbf-7bb9496f1d29] socks forwarding established\n2025-07-15 15:06:55.993 [info] [command][3bb76034-de0f-41b2-a38b-887c1568b6f1] Process exited with code 0\n2025-07-15 15:06:55.993 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6819a1a4-7b04-41de-9dbf-7bb9496f1d29] socks connection closed\n2025-07-15 15:06:55.994 [info] [command][3bb76034-de0f-41b2-a38b-887c1568b6f1] Socket close event received\n2025-07-15 15:06:56.011 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55937 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:07:56.004 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:07:56.006 [info] [command][52f062d8-1b02-454b-829e-d0872509e6e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""52f062d8-1b02-454b-829e-d0872509e6e0""}\n2025-07-15 15:07:56.006 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2829ae64-d0a9-40c2-a59e-98a5fc97af24] received connection request\n2025-07-15 15:07:56.007 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:07:56.026 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2829ae64-d0a9-40c2-a59e-98a5fc97af24] socks forwarding established\n2025-07-15 15:07:56.062 [info] [command][52f062d8-1b02-454b-829e-d0872509e6e0] Process exited with code 0\n2025-07-15 15:07:56.062 [info] [command][52f062d8-1b02-454b-829e-d0872509e6e0] Socket close event received\n2025-07-15 15:07:56.063 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2829ae64-d0a9-40c2-a59e-98a5fc97af24] socks connection closed\n2025-07-15 15:07:56.085 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55964 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:08:56.063 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:08:56.064 [info] [command][c7f7a668-3b89-4e86-9928-0e0f8cd5abc9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c7f7a668-3b89-4e86-9928-0e0f8cd5abc9""}\n2025-07-15 15:08:56.065 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][34d14813-8e2b-4c50-a26d-853304250d60] received connection request\n2025-07-15 15:08:56.066 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:08:56.090 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34d14813-8e2b-4c50-a26d-853304250d60] socks forwarding established\n2025-07-15 15:08:56.122 [info] [command][c7f7a668-3b89-4e86-9928-0e0f8cd5abc9] Process exited with code 0\n2025-07-15 15:08:56.122 [info] [command][c7f7a668-3b89-4e86-9928-0e0f8cd5abc9] Socket close event received\n2025-07-15 15:08:56.123 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34d14813-8e2b-4c50-a26d-853304250d60] socks connection closed\n2025-07-15 15:08:56.140 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 55981 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:09:56.132 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:09:56.135 [info] [command][5dbe332d-e877-4cae-8b6e-2c403e45b61f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5dbe332d-e877-4cae-8b6e-2c403e45b61f""}\n2025-07-15 15:09:56.135 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][248914dd-4540-4f4b-80aa-13dba2128c39] received connection request\n2025-07-15 15:09:56.136 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:09:56.154 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][248914dd-4540-4f4b-80aa-13dba2128c39] socks forwarding established\n2025-07-15 15:09:56.185 [info] [command][5dbe332d-e877-4cae-8b6e-2c403e45b61f] Process exited with code 0\n2025-07-15 15:09:56.185 [info] [command][5dbe332d-e877-4cae-8b6e-2c403e45b61f] Socket close event received\n2025-07-15 15:09:56.186 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][248914dd-4540-4f4b-80aa-13dba2128c39] socks connection closed\n2025-07-15 15:09:56.203 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56008 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:10:56.190 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:10:56.191 [info] [command][53f66087-d8f0-48b5-9fb7-3b68db1a399c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""53f66087-d8f0-48b5-9fb7-3b68db1a399c""}\n2025-07-15 15:10:56.192 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5b1a8eaa-5302-4bc1-bc37-11c35f5ba005] received connection request\n2025-07-15 15:10:56.192 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:10:56.298 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5b1a8eaa-5302-4bc1-bc37-11c35f5ba005] socks forwarding established\n2025-07-15 15:10:56.463 [info] [command][53f66087-d8f0-48b5-9fb7-3b68db1a399c] Process exited with code 0\n2025-07-15 15:10:56.463 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5b1a8eaa-5302-4bc1-bc37-11c35f5ba005] socks connection closed\n2025-07-15 15:10:56.463 [info] [command][53f66087-d8f0-48b5-9fb7-3b68db1a399c] Socket close event received\n2025-07-15 15:10:56.480 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56022 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:11:56.473 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:11:56.475 [info] [command][045fbdc5-3972-406f-8aab-ad831373b7f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""045fbdc5-3972-406f-8aab-ad831373b7f7""}\n2025-07-15 15:11:56.476 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f48f80f6-d53a-4c5e-aa9f-9af882fe80e4] received connection request\n2025-07-15 15:11:56.477 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:11:56.499 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f48f80f6-d53a-4c5e-aa9f-9af882fe80e4] socks forwarding established\n2025-07-15 15:11:56.531 [info] [command][045fbdc5-3972-406f-8aab-ad831373b7f7] Process exited with code 0\n2025-07-15 15:11:56.532 [info] [command][045fbdc5-3972-406f-8aab-ad831373b7f7] Socket close event received\n2025-07-15 15:11:56.532 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f48f80f6-d53a-4c5e-aa9f-9af882fe80e4] socks connection closed\n2025-07-15 15:11:56.552 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56041 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:12:56.542 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:12:56.544 [info] [command][d54dd30a-7a7d-4775-b718-33f0166ace8e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d54dd30a-7a7d-4775-b718-33f0166ace8e""}\n2025-07-15 15:12:56.545 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4936786f-63b7-4735-9fd1-a90ea25c72c8] received connection request\n2025-07-15 15:12:56.545 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:12:56.563 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4936786f-63b7-4735-9fd1-a90ea25c72c8] socks forwarding established\n2025-07-15 15:12:56.594 [info] [command][d54dd30a-7a7d-4775-b718-33f0166ace8e] Process exited with code 0\n2025-07-15 15:12:56.594 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4936786f-63b7-4735-9fd1-a90ea25c72c8] socks connection closed\n2025-07-15 15:12:56.594 [info] [command][d54dd30a-7a7d-4775-b718-33f0166ace8e] Socket close event received\n2025-07-15 15:12:56.612 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56069 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:13:56.594 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:13:56.597 [info] [command][13d5e3af-93ef-48ff-9bde-f10691f4eef5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""13d5e3af-93ef-48ff-9bde-f10691f4eef5""}\n2025-07-15 15:13:56.597 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f89c933a-545e-4dc2-b7a1-38b6f256bc32] received connection request\n2025-07-15 15:13:56.598 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:13:56.616 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f89c933a-545e-4dc2-b7a1-38b6f256bc32] socks forwarding established\n2025-07-15 15:13:56.648 [info] [command][13d5e3af-93ef-48ff-9bde-f10691f4eef5] Process exited with code 0\n2025-07-15 15:13:56.648 [info] [command][13d5e3af-93ef-48ff-9bde-f10691f4eef5] Socket close event received\n2025-07-15 15:13:56.649 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f89c933a-545e-4dc2-b7a1-38b6f256bc32] socks connection closed\n2025-07-15 15:13:56.667 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56093 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:14:56.652 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:14:56.654 [info] [command][23f13bc4-df96-47a2-8659-7afea8794e36] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""23f13bc4-df96-47a2-8659-7afea8794e36""}\n2025-07-15 15:14:56.655 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2ebac810-4d8d-4ecd-8a51-8e816131cadc] received connection request\n2025-07-15 15:14:56.656 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:14:56.678 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2ebac810-4d8d-4ecd-8a51-8e816131cadc] socks forwarding established\n2025-07-15 15:14:56.739 [info] [command][23f13bc4-df96-47a2-8659-7afea8794e36] Process exited with code 0\n2025-07-15 15:14:56.739 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2ebac810-4d8d-4ecd-8a51-8e816131cadc] socks connection closed\n2025-07-15 15:14:56.739 [info] [command][23f13bc4-df96-47a2-8659-7afea8794e36] Socket close event received\n2025-07-15 15:14:56.888 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56133 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:15:56.749 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:15:56.750 [info] [command][572acb8a-f567-43cd-8369-bb1bbb87b499] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""572acb8a-f567-43cd-8369-bb1bbb87b499""}\n2025-07-15 15:15:56.751 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fad91115-0d45-43b9-9e8f-e113a6168399] received connection request\n2025-07-15 15:15:56.751 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:15:56.770 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fad91115-0d45-43b9-9e8f-e113a6168399] socks forwarding established\n2025-07-15 15:15:56.802 [info] [command][572acb8a-f567-43cd-8369-bb1bbb87b499] Process exited with code 0\n2025-07-15 15:15:56.802 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fad91115-0d45-43b9-9e8f-e113a6168399] socks connection closed\n2025-07-15 15:15:56.803 [info] [command][572acb8a-f567-43cd-8369-bb1bbb87b499] Socket close event received\n2025-07-15 15:15:56.821 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56156 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:16:56.804 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:16:56.807 [info] [command][d418af17-048a-4a6a-a55a-728f0f427907] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d418af17-048a-4a6a-a55a-728f0f427907""}\n2025-07-15 15:16:56.807 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ef88d009-fb54-4a7f-b796-68aa5c0172bd] received connection request\n2025-07-15 15:16:56.808 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:16:56.825 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ef88d009-fb54-4a7f-b796-68aa5c0172bd] socks forwarding established\n2025-07-15 15:16:56.860 [info] [command][d418af17-048a-4a6a-a55a-728f0f427907] Process exited with code 0\n2025-07-15 15:16:56.861 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ef88d009-fb54-4a7f-b796-68aa5c0172bd] socks connection closed\n2025-07-15 15:16:56.861 [info] [command][d418af17-048a-4a6a-a55a-728f0f427907] Socket close event received\n2025-07-15 15:16:56.877 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56171 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:17:56.865 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:17:56.866 [info] [command][690e5ea2-23f6-4010-a8f4-74ff77ca6ca8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""690e5ea2-23f6-4010-a8f4-74ff77ca6ca8""}\n2025-07-15 15:17:56.866 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8ee2fdaa-c192-412e-9d5c-654d75d026c7] received connection request\n2025-07-15 15:17:56.867 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:17:56.883 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8ee2fdaa-c192-412e-9d5c-654d75d026c7] socks forwarding established\n2025-07-15 15:17:56.915 [info] [command][690e5ea2-23f6-4010-a8f4-74ff77ca6ca8] Process exited with code 0\n2025-07-15 15:17:56.915 [info] [command][690e5ea2-23f6-4010-a8f4-74ff77ca6ca8] Socket close event received\n2025-07-15 15:17:56.915 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8ee2fdaa-c192-412e-9d5c-654d75d026c7] socks connection closed\n2025-07-15 15:17:56.932 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56200 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:18:56.920 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:18:56.921 [info] [command][8e06a9d6-4731-412b-9d14-7b6ace3ca23a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8e06a9d6-4731-412b-9d14-7b6ace3ca23a""}\n2025-07-15 15:18:56.921 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b96ddfa1-5495-4429-bbc0-8cc50834b0a2] received connection request\n2025-07-15 15:18:56.921 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:18:56.938 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b96ddfa1-5495-4429-bbc0-8cc50834b0a2] socks forwarding established\n2025-07-15 15:18:56.967 [info] [command][8e06a9d6-4731-412b-9d14-7b6ace3ca23a] Process exited with code 0\n2025-07-15 15:18:56.968 [info] [command][8e06a9d6-4731-412b-9d14-7b6ace3ca23a] Socket close event received\n2025-07-15 15:18:56.968 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b96ddfa1-5495-4429-bbc0-8cc50834b0a2] socks connection closed\n2025-07-15 15:18:56.984 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56221 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:19:56.970 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:19:56.972 [info] [command][feb562b6-7b46-47e3-8b11-6a34f24f8e48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""feb562b6-7b46-47e3-8b11-6a34f24f8e48""}\n2025-07-15 15:19:56.973 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7dc7bd3b-c904-49dc-a691-c8a9fc7441e4] received connection request\n2025-07-15 15:19:56.973 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:19:57.123 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7dc7bd3b-c904-49dc-a691-c8a9fc7441e4] socks forwarding established\n2025-07-15 15:19:57.289 [info] [command][feb562b6-7b46-47e3-8b11-6a34f24f8e48] Process exited with code 0\n2025-07-15 15:19:57.289 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7dc7bd3b-c904-49dc-a691-c8a9fc7441e4] socks connection closed\n2025-07-15 15:19:57.289 [info] [command][feb562b6-7b46-47e3-8b11-6a34f24f8e48] Socket close event received\n2025-07-15 15:19:57.306 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56259 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:20:57.293 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:20:57.295 [info] [command][9fe253ea-ac5c-4fc5-b26a-a96d3e708e58] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9fe253ea-ac5c-4fc5-b26a-a96d3e708e58""}\n2025-07-15 15:20:57.295 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][59b93fe6-7a44-45f7-a152-72db9ee2133e] received connection request\n2025-07-15 15:20:57.296 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:20:57.313 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][59b93fe6-7a44-45f7-a152-72db9ee2133e] socks forwarding established\n2025-07-15 15:20:57.349 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][59b93fe6-7a44-45f7-a152-72db9ee2133e] socks connection closed\n2025-07-15 15:20:57.350 [info] [command][9fe253ea-ac5c-4fc5-b26a-a96d3e708e58] Process exited with code 0\n2025-07-15 15:20:57.350 [info] [command][9fe253ea-ac5c-4fc5-b26a-a96d3e708e58] Socket close event received\n2025-07-15 15:20:57.365 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56278 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:21:57.351 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:21:57.352 [info] [command][5e3332bd-980e-4df8-a7a8-ccb6bdf91a39] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5e3332bd-980e-4df8-a7a8-ccb6bdf91a39""}\n2025-07-15 15:21:57.353 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][33bbda96-3566-44d0-b63a-f0c0e96af444] received connection request\n2025-07-15 15:21:57.353 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:21:57.369 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][33bbda96-3566-44d0-b63a-f0c0e96af444] socks forwarding established\n2025-07-15 15:21:57.401 [info] [command][5e3332bd-980e-4df8-a7a8-ccb6bdf91a39] Process exited with code 0\n2025-07-15 15:21:57.401 [info] [command][5e3332bd-980e-4df8-a7a8-ccb6bdf91a39] Socket close event received\n2025-07-15 15:21:57.401 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][33bbda96-3566-44d0-b63a-f0c0e96af444] socks connection closed\n2025-07-15 15:21:57.418 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56299 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:22:57.412 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:22:57.413 [info] [command][21f551c9-4f14-4843-950b-c1ea99888518] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""21f551c9-4f14-4843-950b-c1ea99888518""}\n2025-07-15 15:22:57.414 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4fd49d66-c23d-48c8-94f4-2bed7040110e] received connection request\n2025-07-15 15:22:57.415 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:22:57.436 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4fd49d66-c23d-48c8-94f4-2bed7040110e] socks forwarding established\n2025-07-15 15:22:57.470 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4fd49d66-c23d-48c8-94f4-2bed7040110e] socks connection closed\n2025-07-15 15:22:57.470 [info] [command][21f551c9-4f14-4843-950b-c1ea99888518] Process exited with code 0\n2025-07-15 15:22:57.470 [info] [command][21f551c9-4f14-4843-950b-c1ea99888518] Socket close event received\n2025-07-15 15:22:57.487 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56329 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:23:57.471 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:23:57.472 [info] [command][8e0db128-25da-4df5-9dc4-6a261bcc8446] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8e0db128-25da-4df5-9dc4-6a261bcc8446""}\n2025-07-15 15:23:57.473 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b92d91cd-84bb-4ff5-9582-70dca551e54e] received connection request\n2025-07-15 15:23:57.474 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:23:57.530 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b92d91cd-84bb-4ff5-9582-70dca551e54e] socks forwarding established\n2025-07-15 15:23:57.598 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b92d91cd-84bb-4ff5-9582-70dca551e54e] socks connection closed\n2025-07-15 15:23:57.598 [info] [command][8e0db128-25da-4df5-9dc4-6a261bcc8446] Process exited with code 0\n2025-07-15 15:23:57.598 [info] [command][8e0db128-25da-4df5-9dc4-6a261bcc8446] Socket close event received\n2025-07-15 15:23:57.614 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56343 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:24:57.607 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:24:57.608 [info] [command][8df96d4f-c12a-497f-b5d3-ae6726db9432] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8df96d4f-c12a-497f-b5d3-ae6726db9432""}\n2025-07-15 15:24:57.608 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][420e2ddc-0305-4fb6-a5c7-f8b9e70845a2] received connection request\n2025-07-15 15:24:57.608 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:24:57.625 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][420e2ddc-0305-4fb6-a5c7-f8b9e70845a2] socks forwarding established\n2025-07-15 15:24:57.658 [info] [command][8df96d4f-c12a-497f-b5d3-ae6726db9432] Process exited with code 0\n2025-07-15 15:24:57.658 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][420e2ddc-0305-4fb6-a5c7-f8b9e70845a2] socks connection closed\n2025-07-15 15:24:57.658 [info] [command][8df96d4f-c12a-497f-b5d3-ae6726db9432] Socket close event received\n2025-07-15 15:24:57.674 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56373 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:25:57.665 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:25:57.667 [info] [command][d3d03a6e-95a0-4d4e-be2a-717a5961ae0c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d3d03a6e-95a0-4d4e-be2a-717a5961ae0c""}\n2025-07-15 15:25:57.667 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a8ce0fe8-89eb-46e5-8e06-f60a05ff901e] received connection request\n2025-07-15 15:25:57.668 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:25:57.686 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a8ce0fe8-89eb-46e5-8e06-f60a05ff901e] socks forwarding established\n2025-07-15 15:25:57.724 [info] [command][d3d03a6e-95a0-4d4e-be2a-717a5961ae0c] Process exited with code 0\n2025-07-15 15:25:57.725 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a8ce0fe8-89eb-46e5-8e06-f60a05ff901e] socks connection closed\n2025-07-15 15:25:57.725 [info] [command][d3d03a6e-95a0-4d4e-be2a-717a5961ae0c] Socket close event received\n2025-07-15 15:25:57.741 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56391 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:26:57.725 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:26:57.728 [info] [command][9f1a17a4-e65b-493e-b9c2-f8d834644e7e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9f1a17a4-e65b-493e-b9c2-f8d834644e7e""}\n2025-07-15 15:26:57.728 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b3b240e3-d507-43e9-a85a-640aabcb0e8b] received connection request\n2025-07-15 15:26:57.728 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:26:57.746 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b3b240e3-d507-43e9-a85a-640aabcb0e8b] socks forwarding established\n2025-07-15 15:26:57.776 [info] [command][9f1a17a4-e65b-493e-b9c2-f8d834644e7e] Process exited with code 0\n2025-07-15 15:26:57.776 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b3b240e3-d507-43e9-a85a-640aabcb0e8b] socks connection closed\n2025-07-15 15:26:57.776 [info] [command][9f1a17a4-e65b-493e-b9c2-f8d834644e7e] Socket close event received\n2025-07-15 15:26:57.793 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56407 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:27:57.786 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:27:57.788 [info] [command][856e61bd-26af-495d-b728-f02ae6294454] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""856e61bd-26af-495d-b728-f02ae6294454""}\n2025-07-15 15:27:57.789 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][497cd684-55bb-4a99-878b-f7d90eb22dd8] received connection request\n2025-07-15 15:27:57.790 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:27:57.814 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][497cd684-55bb-4a99-878b-f7d90eb22dd8] socks forwarding established\n2025-07-15 15:27:57.846 [info] [command][856e61bd-26af-495d-b728-f02ae6294454] Process exited with code 0\n2025-07-15 15:27:57.846 [info] [command][856e61bd-26af-495d-b728-f02ae6294454] Socket close event received\n2025-07-15 15:27:57.847 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][497cd684-55bb-4a99-878b-f7d90eb22dd8] socks connection closed\n2025-07-15 15:27:57.863 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56435 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:28:57.851 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:28:57.853 [info] [command][648f917b-7eac-4b41-ad22-c9289ca798a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""648f917b-7eac-4b41-ad22-c9289ca798a8""}\n2025-07-15 15:28:57.854 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1eb84744-ff08-4955-b5ea-7e6c3dedc454] received connection request\n2025-07-15 15:28:57.854 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:28:57.945 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1eb84744-ff08-4955-b5ea-7e6c3dedc454] socks forwarding established\n2025-07-15 15:28:58.111 [info] [command][648f917b-7eac-4b41-ad22-c9289ca798a8] Process exited with code 0\n2025-07-15 15:28:58.111 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1eb84744-ff08-4955-b5ea-7e6c3dedc454] socks connection closed\n2025-07-15 15:28:58.111 [info] [command][648f917b-7eac-4b41-ad22-c9289ca798a8] Socket close event received\n2025-07-15 15:28:58.128 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56450 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:29:58.118 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:29:58.119 [info] [command][bf2d8114-e601-4bf8-99ef-4410c85975c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bf2d8114-e601-4bf8-99ef-4410c85975c2""}\n2025-07-15 15:29:58.119 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][cf94782c-64f2-43cf-9b07-dd8063537684] received connection request\n2025-07-15 15:29:58.120 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:29:58.139 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cf94782c-64f2-43cf-9b07-dd8063537684] socks forwarding established\n2025-07-15 15:29:58.171 [info] [command][bf2d8114-e601-4bf8-99ef-4410c85975c2] Process exited with code 0\n2025-07-15 15:29:58.171 [info] [command][bf2d8114-e601-4bf8-99ef-4410c85975c2] Socket close event received\n2025-07-15 15:29:58.171 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cf94782c-64f2-43cf-9b07-dd8063537684] socks connection closed\n2025-07-15 15:29:58.188 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56478 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:30:58.177 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:30:58.179 [info] [command][d0682a71-8a56-49a0-8491-fc04abae0166] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d0682a71-8a56-49a0-8491-fc04abae0166""}\n2025-07-15 15:30:58.179 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1fcb1e9a-7775-43f5-8e59-168d92dbd978] received connection request\n2025-07-15 15:30:58.179 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:30:58.196 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1fcb1e9a-7775-43f5-8e59-168d92dbd978] socks forwarding established\n2025-07-15 15:30:58.227 [info] [command][d0682a71-8a56-49a0-8491-fc04abae0166] Process exited with code 0\n2025-07-15 15:30:58.227 [info] [command][d0682a71-8a56-49a0-8491-fc04abae0166] Socket close event received\n2025-07-15 15:30:58.227 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1fcb1e9a-7775-43f5-8e59-168d92dbd978] socks connection closed\n2025-07-15 15:30:58.246 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56515 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:31:58.230 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:31:58.231 [info] [command][4c468e85-72da-4383-b0ef-7189971f6675] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4c468e85-72da-4383-b0ef-7189971f6675""}\n2025-07-15 15:31:58.231 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e432cd4a-1ef8-448e-aa32-66fac993eca9] received connection request\n2025-07-15 15:31:58.231 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:31:58.248 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e432cd4a-1ef8-448e-aa32-66fac993eca9] socks forwarding established\n2025-07-15 15:31:58.279 [info] [command][4c468e85-72da-4383-b0ef-7189971f6675] Process exited with code 0\n2025-07-15 15:31:58.280 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e432cd4a-1ef8-448e-aa32-66fac993eca9] socks connection closed\n2025-07-15 15:31:58.280 [info] [command][4c468e85-72da-4383-b0ef-7189971f6675] Socket close event received\n2025-07-15 15:31:58.297 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56534 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:32:58.285 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:32:58.286 [info] [command][9186a776-c5a3-446b-a344-4a2573ce0455] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9186a776-c5a3-446b-a344-4a2573ce0455""}\n2025-07-15 15:32:58.286 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][637528e7-3aaf-4d14-b233-ac1ca0b960b8] received connection request\n2025-07-15 15:32:58.287 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:32:58.333 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][637528e7-3aaf-4d14-b233-ac1ca0b960b8] socks forwarding established\n2025-07-15 15:32:58.483 [info] [command][9186a776-c5a3-446b-a344-4a2573ce0455] Process exited with code 0\n2025-07-15 15:32:58.483 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][637528e7-3aaf-4d14-b233-ac1ca0b960b8] socks connection closed\n2025-07-15 15:32:58.483 [info] [command][9186a776-c5a3-446b-a344-4a2573ce0455] Socket close event received\n2025-07-15 15:32:58.498 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56564 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:33:58.492 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:33:58.493 [info] [command][25fbc1a3-8683-4799-9322-144764ad351e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""25fbc1a3-8683-4799-9322-144764ad351e""}\n2025-07-15 15:33:58.493 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d0ef2ce4-12dc-4df7-9529-49c859406273] received connection request\n2025-07-15 15:33:58.494 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:33:58.513 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d0ef2ce4-12dc-4df7-9529-49c859406273] socks forwarding established\n2025-07-15 15:33:58.544 [info] [command][25fbc1a3-8683-4799-9322-144764ad351e] Process exited with code 0\n2025-07-15 15:33:58.544 [info] [command][25fbc1a3-8683-4799-9322-144764ad351e] Socket close event received\n2025-07-15 15:33:58.544 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d0ef2ce4-12dc-4df7-9529-49c859406273] socks connection closed\n2025-07-15 15:33:58.560 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56578 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:34:58.552 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:34:58.552 [info] [command][f715b3b5-d78f-425a-91e8-8eb9049561c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f715b3b5-d78f-425a-91e8-8eb9049561c6""}\n2025-07-15 15:34:58.553 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a3ffe508-3943-4593-ae61-2b28ec9f837f] received connection request\n2025-07-15 15:34:58.553 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:34:58.576 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a3ffe508-3943-4593-ae61-2b28ec9f837f] socks forwarding established\n2025-07-15 15:34:58.607 [info] [command][f715b3b5-d78f-425a-91e8-8eb9049561c6] Process exited with code 0\n2025-07-15 15:34:58.607 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a3ffe508-3943-4593-ae61-2b28ec9f837f] socks connection closed\n2025-07-15 15:34:58.607 [info] [command][f715b3b5-d78f-425a-91e8-8eb9049561c6] Socket close event received\n2025-07-15 15:34:58.624 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56622 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:35:58.615 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:35:58.617 [info] [command][a4ebd68c-f471-476c-aaf1-cf69a024edca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a4ebd68c-f471-476c-aaf1-cf69a024edca""}\n2025-07-15 15:35:58.617 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][de977422-2664-44d1-832d-8d1fd6971848] received connection request\n2025-07-15 15:35:58.618 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:35:58.639 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][de977422-2664-44d1-832d-8d1fd6971848] socks forwarding established\n2025-07-15 15:35:58.670 [info] [command][a4ebd68c-f471-476c-aaf1-cf69a024edca] Process exited with code 0\n2025-07-15 15:35:58.670 [info] [command][a4ebd68c-f471-476c-aaf1-cf69a024edca] Socket close event received\n2025-07-15 15:35:58.670 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][de977422-2664-44d1-832d-8d1fd6971848] socks connection closed\n2025-07-15 15:35:58.687 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56638 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:36:58.676 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:36:58.677 [info] [command][91540cea-e3b6-4dc8-9092-3a6786cb719e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""91540cea-e3b6-4dc8-9092-3a6786cb719e""}\n2025-07-15 15:36:58.678 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2bb7e353-d14c-43e3-8619-0bbc71c33413] received connection request\n2025-07-15 15:36:58.678 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:36:58.694 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2bb7e353-d14c-43e3-8619-0bbc71c33413] socks forwarding established\n2025-07-15 15:36:58.840 [info] [command][91540cea-e3b6-4dc8-9092-3a6786cb719e] Process exited with code 0\n2025-07-15 15:36:58.840 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2bb7e353-d14c-43e3-8619-0bbc71c33413] socks connection closed\n2025-07-15 15:36:58.840 [info] [command][91540cea-e3b6-4dc8-9092-3a6786cb719e] Socket close event received\n2025-07-15 15:36:58.859 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56657 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:37:58.850 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:37:58.852 [info] [command][cb2cbecc-2324-430c-89f6-660ff34923a9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cb2cbecc-2324-430c-89f6-660ff34923a9""}\n2025-07-15 15:37:58.852 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][101d1919-036a-4a8f-bbcb-1de75dec84d7] received connection request\n2025-07-15 15:37:58.853 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:37:58.873 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][101d1919-036a-4a8f-bbcb-1de75dec84d7] socks forwarding established\n2025-07-15 15:37:58.906 [info] [command][cb2cbecc-2324-430c-89f6-660ff34923a9] Process exited with code 0\n2025-07-15 15:37:58.906 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][101d1919-036a-4a8f-bbcb-1de75dec84d7] socks connection closed\n2025-07-15 15:37:58.906 [info] [command][cb2cbecc-2324-430c-89f6-660ff34923a9] Socket close event received\n2025-07-15 15:37:58.923 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56690 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:38:58.916 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:38:58.917 [info] [command][b8ccbe2d-fe6a-41f0-9dc6-6d9e65cae867] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b8ccbe2d-fe6a-41f0-9dc6-6d9e65cae867""}\n2025-07-15 15:38:58.918 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c6021b66-8ba4-40e9-8afe-fcd3c43e76b6] received connection request\n2025-07-15 15:38:58.918 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:38:58.941 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c6021b66-8ba4-40e9-8afe-fcd3c43e76b6] socks forwarding established\n2025-07-15 15:38:58.977 [info] [command][b8ccbe2d-fe6a-41f0-9dc6-6d9e65cae867] Process exited with code 0\n2025-07-15 15:38:58.977 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c6021b66-8ba4-40e9-8afe-fcd3c43e76b6] socks connection closed\n2025-07-15 15:38:58.977 [info] [command][b8ccbe2d-fe6a-41f0-9dc6-6d9e65cae867] Socket close event received\n2025-07-15 15:38:58.993 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56705 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:39:58.987 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:39:58.989 [info] [command][aa1f1564-c427-4ed2-883c-e6b0c002ca8a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""aa1f1564-c427-4ed2-883c-e6b0c002ca8a""}\n2025-07-15 15:39:58.990 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][094284e3-983b-454b-b9eb-2076c2c5066f] received connection request\n2025-07-15 15:39:58.991 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:39:59.008 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][094284e3-983b-454b-b9eb-2076c2c5066f] socks forwarding established\n2025-07-15 15:39:59.041 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][094284e3-983b-454b-b9eb-2076c2c5066f] socks connection closed\n2025-07-15 15:39:59.041 [info] [command][aa1f1564-c427-4ed2-883c-e6b0c002ca8a] Process exited with code 0\n2025-07-15 15:39:59.041 [info] [command][aa1f1564-c427-4ed2-883c-e6b0c002ca8a] Socket close event received\n2025-07-15 15:39:59.058 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56747 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:40:59.049 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:40:59.050 [info] [command][7ac3be2a-c440-4ab2-8320-deb59facefdd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7ac3be2a-c440-4ab2-8320-deb59facefdd""}\n2025-07-15 15:40:59.050 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7860bfa6-6e1a-44a9-b287-c6069b13f61a] received connection request\n2025-07-15 15:40:59.050 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:40:59.068 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7860bfa6-6e1a-44a9-b287-c6069b13f61a] socks forwarding established\n2025-07-15 15:40:59.114 [info] [command][7ac3be2a-c440-4ab2-8320-deb59facefdd] Process exited with code 0\n2025-07-15 15:40:59.114 [info] [command][7ac3be2a-c440-4ab2-8320-deb59facefdd] Socket close event received\n2025-07-15 15:40:59.132 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7860bfa6-6e1a-44a9-b287-c6069b13f61a] socks connection closed\n2025-07-15 15:40:59.137 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56767 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:41:59.125 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:41:59.127 [info] [command][e1b37a49-3593-4910-bbb7-8deb8191ebe5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e1b37a49-3593-4910-bbb7-8deb8191ebe5""}\n2025-07-15 15:41:59.127 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fcc22fe0-1899-4637-89a1-7edbf02f4094] received connection request\n2025-07-15 15:41:59.128 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:41:59.190 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fcc22fe0-1899-4637-89a1-7edbf02f4094] socks forwarding established\n2025-07-15 15:41:59.269 [info] [command][e1b37a49-3593-4910-bbb7-8deb8191ebe5] Process exited with code 0\n2025-07-15 15:41:59.270 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fcc22fe0-1899-4637-89a1-7edbf02f4094] socks connection closed\n2025-07-15 15:41:59.270 [info] [command][e1b37a49-3593-4910-bbb7-8deb8191ebe5] Socket close event received\n2025-07-15 15:41:59.286 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56789 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:42:59.272 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:42:59.274 [info] [command][781ece3f-adda-4bcf-bada-014036344af3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""781ece3f-adda-4bcf-bada-014036344af3""}\n2025-07-15 15:42:59.275 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fde94805-ee9d-481f-a42a-c870bb28ce58] received connection request\n2025-07-15 15:42:59.275 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:42:59.294 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fde94805-ee9d-481f-a42a-c870bb28ce58] socks forwarding established\n2025-07-15 15:42:59.324 [info] [command][781ece3f-adda-4bcf-bada-014036344af3] Process exited with code 0\n2025-07-15 15:42:59.325 [info] [command][781ece3f-adda-4bcf-bada-014036344af3] Socket close event received\n2025-07-15 15:42:59.325 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fde94805-ee9d-481f-a42a-c870bb28ce58] socks connection closed\n2025-07-15 15:42:59.342 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56818 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:43:59.326 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:43:59.327 [info] [command][71e1579a-91b4-4531-8c31-7e230982ed5e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""71e1579a-91b4-4531-8c31-7e230982ed5e""}\n2025-07-15 15:43:59.327 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e1b86dea-b70f-4a7d-8a8d-9ca59ca80591] received connection request\n2025-07-15 15:43:59.328 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:43:59.350 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e1b86dea-b70f-4a7d-8a8d-9ca59ca80591] socks forwarding established\n2025-07-15 15:43:59.379 [info] [command][71e1579a-91b4-4531-8c31-7e230982ed5e] Process exited with code 0\n2025-07-15 15:43:59.379 [info] [command][71e1579a-91b4-4531-8c31-7e230982ed5e] Socket close event received\n2025-07-15 15:43:59.393 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e1b86dea-b70f-4a7d-8a8d-9ca59ca80591] socks connection closed\n2025-07-15 15:43:59.396 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56836 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:44:59.380 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:44:59.381 [info] [command][b17171c6-3c81-4c50-9202-8a3c05513e08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b17171c6-3c81-4c50-9202-8a3c05513e08""}\n2025-07-15 15:44:59.382 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9f77d4f4-fbab-4db6-ae36-dd8502500749] received connection request\n2025-07-15 15:44:59.383 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:44:59.401 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9f77d4f4-fbab-4db6-ae36-dd8502500749] socks forwarding established\n2025-07-15 15:44:59.433 [info] [command][b17171c6-3c81-4c50-9202-8a3c05513e08] Process exited with code 0\n2025-07-15 15:44:59.434 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9f77d4f4-fbab-4db6-ae36-dd8502500749] socks connection closed\n2025-07-15 15:44:59.434 [info] [command][b17171c6-3c81-4c50-9202-8a3c05513e08] Socket close event received\n2025-07-15 15:44:59.452 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56912 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:45:59.435 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:45:59.436 [info] [command][30b119cb-77b2-49e9-82aa-6cb92ef39d8e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""30b119cb-77b2-49e9-82aa-6cb92ef39d8e""}\n2025-07-15 15:45:59.436 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][47d0ef2f-7721-4595-83f3-af34996f055e] received connection request\n2025-07-15 15:45:59.437 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:45:59.454 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][47d0ef2f-7721-4595-83f3-af34996f055e] socks forwarding established\n2025-07-15 15:45:59.490 [info] [command][30b119cb-77b2-49e9-82aa-6cb92ef39d8e] Process exited with code 0\n2025-07-15 15:45:59.490 [info] [command][30b119cb-77b2-49e9-82aa-6cb92ef39d8e] Socket close event received\n2025-07-15 15:45:59.491 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][47d0ef2f-7721-4595-83f3-af34996f055e] socks connection closed\n2025-07-15 15:45:59.508 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56938 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:46:59.490 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:46:59.492 [info] [command][eec37275-c2b7-4db2-bd68-b2b92542021e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""eec37275-c2b7-4db2-bd68-b2b92542021e""}\n2025-07-15 15:46:59.493 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fc0e9fb1-62b4-4607-9751-dd728bc35dfd] received connection request\n2025-07-15 15:46:59.494 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:46:59.510 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fc0e9fb1-62b4-4607-9751-dd728bc35dfd] socks forwarding established\n2025-07-15 15:46:59.541 [info] [command][eec37275-c2b7-4db2-bd68-b2b92542021e] Process exited with code 0\n2025-07-15 15:46:59.542 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fc0e9fb1-62b4-4607-9751-dd728bc35dfd] socks connection closed\n2025-07-15 15:46:59.542 [info] [command][eec37275-c2b7-4db2-bd68-b2b92542021e] Socket close event received\n2025-07-15 15:46:59.643 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56973 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:47:59.546 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:47:59.548 [info] [command][dba50efb-a56f-4937-be23-ac7e7dae186e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""dba50efb-a56f-4937-be23-ac7e7dae186e""}\n2025-07-15 15:47:59.549 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0ddc6b43-9245-41fa-b6b4-c4ca3aef03b5] received connection request\n2025-07-15 15:47:59.550 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:47:59.567 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0ddc6b43-9245-41fa-b6b4-c4ca3aef03b5] socks forwarding established\n2025-07-15 15:47:59.600 [info] [command][dba50efb-a56f-4937-be23-ac7e7dae186e] Process exited with code 0\n2025-07-15 15:47:59.600 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0ddc6b43-9245-41fa-b6b4-c4ca3aef03b5] socks connection closed\n2025-07-15 15:47:59.600 [info] [command][dba50efb-a56f-4937-be23-ac7e7dae186e] Socket close event received\n2025-07-15 15:47:59.618 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 56986 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:48:59.605 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:48:59.607 [info] [command][07718874-c351-4203-8f03-67e2f309ded8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""07718874-c351-4203-8f03-67e2f309ded8""}\n2025-07-15 15:48:59.608 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][455a05bb-652a-4c67-9e7a-3e74032893a3] received connection request\n2025-07-15 15:48:59.609 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:48:59.632 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][455a05bb-652a-4c67-9e7a-3e74032893a3] socks forwarding established\n2025-07-15 15:48:59.662 [info] [command][07718874-c351-4203-8f03-67e2f309ded8] Process exited with code 0\n2025-07-15 15:48:59.662 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][455a05bb-652a-4c67-9e7a-3e74032893a3] socks connection closed\n2025-07-15 15:48:59.662 [info] [command][07718874-c351-4203-8f03-67e2f309ded8] Socket close event received\n2025-07-15 15:48:59.679 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57024 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:49:59.664 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:49:59.667 [info] [command][f5d5bde9-ab15-4e30-b735-3b67d223a1d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f5d5bde9-ab15-4e30-b735-3b67d223a1d4""}\n2025-07-15 15:49:59.667 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][bf3fb336-b178-4097-aec9-083c10a2829e] received connection request\n2025-07-15 15:49:59.668 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:49:59.750 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bf3fb336-b178-4097-aec9-083c10a2829e] socks forwarding established\n2025-07-15 15:49:59.781 [info] [command][f5d5bde9-ab15-4e30-b735-3b67d223a1d4] Process exited with code 0\n2025-07-15 15:49:59.781 [info] [command][f5d5bde9-ab15-4e30-b735-3b67d223a1d4] Socket close event received\n2025-07-15 15:49:59.782 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bf3fb336-b178-4097-aec9-083c10a2829e] socks connection closed\n2025-07-15 15:49:59.800 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57039 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:50:59.782 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:50:59.784 [info] [command][fa2b5efa-331d-48d7-8f96-a656b9aad954] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fa2b5efa-331d-48d7-8f96-a656b9aad954""}\n2025-07-15 15:50:59.785 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7f62fe1f-c402-489b-8ce8-7b62db9dd429] received connection request\n2025-07-15 15:50:59.786 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:50:59.803 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7f62fe1f-c402-489b-8ce8-7b62db9dd429] socks forwarding established\n2025-07-15 15:50:59.841 [info] [command][fa2b5efa-331d-48d7-8f96-a656b9aad954] Process exited with code 0\n2025-07-15 15:50:59.841 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7f62fe1f-c402-489b-8ce8-7b62db9dd429] socks connection closed\n2025-07-15 15:50:59.842 [info] [command][fa2b5efa-331d-48d7-8f96-a656b9aad954] Socket close event received\n2025-07-15 15:50:59.859 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57056 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:51:59.846 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:51:59.847 [info] [command][2fdd6b3a-79f4-43b0-bf10-a737d6837b25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2fdd6b3a-79f4-43b0-bf10-a737d6837b25""}\n2025-07-15 15:51:59.848 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][55843947-2f8a-4083-a2d1-3ccaf43b3bdc] received connection request\n2025-07-15 15:51:59.849 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:51:59.865 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][55843947-2f8a-4083-a2d1-3ccaf43b3bdc] socks forwarding established\n2025-07-15 15:51:59.895 [info] [command][2fdd6b3a-79f4-43b0-bf10-a737d6837b25] Process exited with code 0\n2025-07-15 15:51:59.896 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][55843947-2f8a-4083-a2d1-3ccaf43b3bdc] socks connection closed\n2025-07-15 15:51:59.896 [info] [command][2fdd6b3a-79f4-43b0-bf10-a737d6837b25] Socket close event received\n2025-07-15 15:51:59.912 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57095 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:52:59.906 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:52:59.908 [info] [command][d574b7e6-ff98-4b06-9cdc-c44ae6e2e5be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d574b7e6-ff98-4b06-9cdc-c44ae6e2e5be""}\n2025-07-15 15:52:59.908 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][74f5c452-bd33-401c-afec-490e59b1c1db] received connection request\n2025-07-15 15:52:59.909 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:52:59.926 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][74f5c452-bd33-401c-afec-490e59b1c1db] socks forwarding established\n2025-07-15 15:53:00.032 [info] [command][d574b7e6-ff98-4b06-9cdc-c44ae6e2e5be] Process exited with code 0\n2025-07-15 15:53:00.033 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][74f5c452-bd33-401c-afec-490e59b1c1db] socks connection closed\n2025-07-15 15:53:00.033 [info] [command][d574b7e6-ff98-4b06-9cdc-c44ae6e2e5be] Socket close event received\n2025-07-15 15:53:00.050 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57110 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:54:00.043 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:54:00.045 [info] [command][6bf972d3-d32f-4761-932b-0f60b5037943] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6bf972d3-d32f-4761-932b-0f60b5037943""}\n2025-07-15 15:54:00.046 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5965a495-2879-4370-ba6a-ebdb2d4a1e66] received connection request\n2025-07-15 15:54:00.046 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:54:00.064 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5965a495-2879-4370-ba6a-ebdb2d4a1e66] socks forwarding established\n2025-07-15 15:54:00.096 [info] [command][6bf972d3-d32f-4761-932b-0f60b5037943] Process exited with code 0\n2025-07-15 15:54:00.096 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5965a495-2879-4370-ba6a-ebdb2d4a1e66] socks connection closed\n2025-07-15 15:54:00.096 [info] [command][6bf972d3-d32f-4761-932b-0f60b5037943] Socket close event received\n2025-07-15 15:54:00.112 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57140 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:55:00.101 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:55:00.103 [info] [command][4a1f3564-d6b0-4a63-97f7-ffb401bd3c55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4a1f3564-d6b0-4a63-97f7-ffb401bd3c55""}\n2025-07-15 15:55:00.104 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2aff182e-0544-4a46-a4fa-6abb07c9243a] received connection request\n2025-07-15 15:55:00.104 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:55:00.124 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2aff182e-0544-4a46-a4fa-6abb07c9243a] socks forwarding established\n2025-07-15 15:55:00.258 [info] [command][4a1f3564-d6b0-4a63-97f7-ffb401bd3c55] Process exited with code 0\n2025-07-15 15:55:00.258 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2aff182e-0544-4a46-a4fa-6abb07c9243a] socks connection closed\n2025-07-15 15:55:00.258 [info] [command][4a1f3564-d6b0-4a63-97f7-ffb401bd3c55] Socket close event received\n2025-07-15 15:55:00.275 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57157 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:56:00.259 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:56:00.261 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9bb1ff43-84a0-40fd-b7a8-4ffe162b36ae] received connection request\n2025-07-15 15:56:00.261 [info] [command][b9ae2c5d-3b71-4554-a9f8-c9530ee1a2b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b9ae2c5d-3b71-4554-a9f8-c9530ee1a2b8""}\n2025-07-15 15:56:00.261 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:56:00.280 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9bb1ff43-84a0-40fd-b7a8-4ffe162b36ae] socks forwarding established\n2025-07-15 15:56:00.352 [info] [command][b9ae2c5d-3b71-4554-a9f8-c9530ee1a2b8] Process exited with code 0\n2025-07-15 15:56:00.352 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9bb1ff43-84a0-40fd-b7a8-4ffe162b36ae] socks connection closed\n2025-07-15 15:56:00.352 [info] [command][b9ae2c5d-3b71-4554-a9f8-c9530ee1a2b8] Socket close event received\n2025-07-15 15:56:00.373 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57180 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:57:00.352 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:57:00.354 [info] [command][6b65e67b-9f9f-45c9-8f47-64c6dd84f9d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6b65e67b-9f9f-45c9-8f47-64c6dd84f9d7""}\n2025-07-15 15:57:00.355 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9e858053-911c-47b0-a5e4-c3710bee639f] received connection request\n2025-07-15 15:57:00.355 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:57:00.376 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9e858053-911c-47b0-a5e4-c3710bee639f] socks forwarding established\n2025-07-15 15:57:00.410 [info] [command][6b65e67b-9f9f-45c9-8f47-64c6dd84f9d7] Process exited with code 0\n2025-07-15 15:57:00.411 [info] [command][6b65e67b-9f9f-45c9-8f47-64c6dd84f9d7] Socket close event received\n2025-07-15 15:57:00.411 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9e858053-911c-47b0-a5e4-c3710bee639f] socks connection closed\n2025-07-15 15:57:00.438 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57215 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:58:00.416 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:58:00.418 [info] [command][b96e237e-e823-4d17-8e24-976851c1f66c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b96e237e-e823-4d17-8e24-976851c1f66c""}\n2025-07-15 15:58:00.419 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][cfeef327-2480-4101-9b29-3c3e702be731] received connection request\n2025-07-15 15:58:00.419 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:58:00.461 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cfeef327-2480-4101-9b29-3c3e702be731] socks forwarding established\n2025-07-15 15:58:00.536 [info] [command][b96e237e-e823-4d17-8e24-976851c1f66c] Process exited with code 0\n2025-07-15 15:58:00.537 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cfeef327-2480-4101-9b29-3c3e702be731] socks connection closed\n2025-07-15 15:58:00.537 [info] [command][b96e237e-e823-4d17-8e24-976851c1f66c] Socket close event received\n2025-07-15 15:58:00.610 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57230 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 15:59:00.542 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 15:59:00.544 [info] [command][0ecb0ce8-0f27-48a5-a7b4-c742ae5ccdba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0ecb0ce8-0f27-48a5-a7b4-c742ae5ccdba""}\n2025-07-15 15:59:00.545 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][efe2d4c7-e249-4ca7-9183-be20343d7609] received connection request\n2025-07-15 15:59:00.546 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 15:59:00.646 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][efe2d4c7-e249-4ca7-9183-be20343d7609] socks forwarding established\n2025-07-15 15:59:00.679 [info] [command][0ecb0ce8-0f27-48a5-a7b4-c742ae5ccdba] Process exited with code 0\n2025-07-15 15:59:00.680 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][efe2d4c7-e249-4ca7-9183-be20343d7609] socks connection closed\n2025-07-15 15:59:00.680 [info] [command][0ecb0ce8-0f27-48a5-a7b4-c742ae5ccdba] Socket close event received\n2025-07-15 15:59:00.696 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57266 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:00:00.684 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:00:00.685 [info] [command][bfe56fe5-82c3-4f13-a48c-c3f3427fcd92] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bfe56fe5-82c3-4f13-a48c-c3f3427fcd92""}\n2025-07-15 16:00:00.685 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f604bed5-3510-4d35-a289-aee6ffe9e27b] received connection request\n2025-07-15 16:00:00.686 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:00:00.710 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f604bed5-3510-4d35-a289-aee6ffe9e27b] socks forwarding established\n2025-07-15 16:00:00.751 [info] [command][bfe56fe5-82c3-4f13-a48c-c3f3427fcd92] Process exited with code 0\n2025-07-15 16:00:00.751 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f604bed5-3510-4d35-a289-aee6ffe9e27b] socks connection closed\n2025-07-15 16:00:00.751 [info] [command][bfe56fe5-82c3-4f13-a48c-c3f3427fcd92] Socket close event received\n2025-07-15 16:00:00.773 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57284 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:01:00.755 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:01:00.758 [info] [command][f0d00049-698f-488f-be85-756598ebae5a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f0d00049-698f-488f-be85-756598ebae5a""}\n2025-07-15 16:01:00.759 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c88f1a73-6a44-4070-a554-a51ac5606f58] received connection request\n2025-07-15 16:01:00.759 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:01:00.778 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c88f1a73-6a44-4070-a554-a51ac5606f58] socks forwarding established\n2025-07-15 16:01:00.815 [info] [command][f0d00049-698f-488f-be85-756598ebae5a] Process exited with code 0\n2025-07-15 16:01:00.816 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c88f1a73-6a44-4070-a554-a51ac5606f58] socks connection closed\n2025-07-15 16:01:00.816 [info] [command][f0d00049-698f-488f-be85-756598ebae5a] Socket close event received\n2025-07-15 16:01:00.834 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57303 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:02:00.821 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:02:00.823 [info] [command][444fb853-f02a-41d3-8afe-a202da313138] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""444fb853-f02a-41d3-8afe-a202da313138""}\n2025-07-15 16:02:00.824 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][12cd71c9-c901-4205-bd7f-172dee3e2deb] received connection request\n2025-07-15 16:02:00.824 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:02:00.975 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][12cd71c9-c901-4205-bd7f-172dee3e2deb] socks forwarding established\n2025-07-15 16:02:01.012 [info] [command][444fb853-f02a-41d3-8afe-a202da313138] Process exited with code 0\n2025-07-15 16:02:01.012 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][12cd71c9-c901-4205-bd7f-172dee3e2deb] socks connection closed\n2025-07-15 16:02:01.012 [info] [command][444fb853-f02a-41d3-8afe-a202da313138] Socket close event received\n2025-07-15 16:02:01.072 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57336 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:03:01.015 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:03:01.017 [info] [command][bd347237-16e0-4c7f-86e2-e27eb0b96852] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bd347237-16e0-4c7f-86e2-e27eb0b96852""}\n2025-07-15 16:03:01.018 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][aa7f360c-ddc5-4d2e-a4a6-fd72c4341c23] received connection request\n2025-07-15 16:03:01.019 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:03:01.102 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][aa7f360c-ddc5-4d2e-a4a6-fd72c4341c23] socks forwarding established\n2025-07-15 16:03:01.131 [info] [command][bd347237-16e0-4c7f-86e2-e27eb0b96852] Process exited with code 0\n2025-07-15 16:03:01.132 [info] [command][bd347237-16e0-4c7f-86e2-e27eb0b96852] Socket close event received\n2025-07-15 16:03:01.265 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][aa7f360c-ddc5-4d2e-a4a6-fd72c4341c23] socks connection closed\n2025-07-15 16:03:01.278 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57362 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:04:01.136 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:04:01.138 [info] [command][3c351b3d-d183-4494-8247-7a953d2a3c39] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3c351b3d-d183-4494-8247-7a953d2a3c39""}\n2025-07-15 16:04:01.138 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9051f2fd-9f28-4c22-9238-c8e9cee4e95e] received connection request\n2025-07-15 16:04:01.139 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:04:01.159 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9051f2fd-9f28-4c22-9238-c8e9cee4e95e] socks forwarding established\n2025-07-15 16:04:01.196 [info] [command][3c351b3d-d183-4494-8247-7a953d2a3c39] Process exited with code 0\n2025-07-15 16:04:01.196 [info] [command][3c351b3d-d183-4494-8247-7a953d2a3c39] Socket close event received\n2025-07-15 16:04:01.197 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9051f2fd-9f28-4c22-9238-c8e9cee4e95e] socks connection closed\n2025-07-15 16:04:01.230 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57400 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:05:01.201 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:05:01.202 [info] [command][48efbb4c-4b36-41d7-85f0-7abd0cbaa5e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""48efbb4c-4b36-41d7-85f0-7abd0cbaa5e3""}\n2025-07-15 16:05:01.203 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][91b8fc87-c281-44c3-a3ce-cf5379ecb420] received connection request\n2025-07-15 16:05:01.203 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:05:01.357 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][91b8fc87-c281-44c3-a3ce-cf5379ecb420] socks forwarding established\n2025-07-15 16:05:01.476 [info] [command][48efbb4c-4b36-41d7-85f0-7abd0cbaa5e3] Process exited with code 0\n2025-07-15 16:05:01.476 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][91b8fc87-c281-44c3-a3ce-cf5379ecb420] socks connection closed\n2025-07-15 16:05:01.476 [info] [command][48efbb4c-4b36-41d7-85f0-7abd0cbaa5e3] Socket close event received\n2025-07-15 16:05:01.499 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57424 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:06:01.481 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:06:01.484 [info] [command][cd732b52-19f5-4ccc-b273-c38914f60a3a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cd732b52-19f5-4ccc-b273-c38914f60a3a""}\n2025-07-15 16:06:01.486 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2af740fb-ee38-4b4f-af5b-fdb563743584] received connection request\n2025-07-15 16:06:01.486 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 16:06:01.487 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:06:01.635 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2af740fb-ee38-4b4f-af5b-fdb563743584] socks forwarding established\n2025-07-15 16:06:01.801 [info] [command][cd732b52-19f5-4ccc-b273-c38914f60a3a] Process exited with code 0\n2025-07-15 16:06:01.802 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2af740fb-ee38-4b4f-af5b-fdb563743584] socks connection closed\n2025-07-15 16:06:01.802 [info] [command][cd732b52-19f5-4ccc-b273-c38914f60a3a] Socket close event received\n2025-07-15 16:06:01.822 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57456 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:07:01.807 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:07:01.809 [info] [command][e4f086db-bc37-47ae-9633-c2425a9288fc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e4f086db-bc37-47ae-9633-c2425a9288fc""}\n2025-07-15 16:07:01.809 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][359695f0-98f4-47a8-bea7-ed8c6fd9457b] received connection request\n2025-07-15 16:07:01.810 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:07:01.965 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][359695f0-98f4-47a8-bea7-ed8c6fd9457b] socks forwarding established\n2025-07-15 16:07:02.027 [info] [command][e4f086db-bc37-47ae-9633-c2425a9288fc] Process exited with code 0\n2025-07-15 16:07:02.027 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][359695f0-98f4-47a8-bea7-ed8c6fd9457b] socks connection closed\n2025-07-15 16:07:02.027 [info] [command][e4f086db-bc37-47ae-9633-c2425a9288fc] Socket close event received\n2025-07-15 16:07:02.175 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57487 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:08:02.032 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:08:02.035 [info] [command][36aee8a7-48f3-4970-9b1f-0db661037a64] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""36aee8a7-48f3-4970-9b1f-0db661037a64""}\n2025-07-15 16:08:02.036 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e5822b49-0ccf-4b25-b05f-626bdfb8effa] received connection request\n2025-07-15 16:08:02.037 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:08:02.088 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e5822b49-0ccf-4b25-b05f-626bdfb8effa] socks forwarding established\n2025-07-15 16:08:02.251 [info] [command][36aee8a7-48f3-4970-9b1f-0db661037a64] Process exited with code 0\n2025-07-15 16:08:02.251 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e5822b49-0ccf-4b25-b05f-626bdfb8effa] socks connection closed\n2025-07-15 16:08:02.251 [info] [command][36aee8a7-48f3-4970-9b1f-0db661037a64] Socket close event received\n2025-07-15 16:08:02.273 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57501 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:09:02.257 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:09:02.259 [info] [command][ed68f0f2-bf87-4a7a-bfe1-9fef34bacf57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ed68f0f2-bf87-4a7a-bfe1-9fef34bacf57""}\n2025-07-15 16:09:02.260 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c39d70dc-5ff2-42c1-9f3d-b1f258d97db3] received connection request\n2025-07-15 16:09:02.261 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:09:02.350 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c39d70dc-5ff2-42c1-9f3d-b1f258d97db3] socks forwarding established\n2025-07-15 16:09:02.425 [info] [command][ed68f0f2-bf87-4a7a-bfe1-9fef34bacf57] Process exited with code 0\n2025-07-15 16:09:02.425 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c39d70dc-5ff2-42c1-9f3d-b1f258d97db3] socks connection closed\n2025-07-15 16:09:02.425 [info] [command][ed68f0f2-bf87-4a7a-bfe1-9fef34bacf57] Socket close event received\n2025-07-15 16:09:02.511 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57526 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:10:02.429 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:10:02.431 [info] [command][8d30c9f1-d192-4dd7-8fda-2069544493d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8d30c9f1-d192-4dd7-8fda-2069544493d1""}\n2025-07-15 16:10:02.432 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][092d1c42-7b2d-442a-83e8-4d4fdee3672b] received connection request\n2025-07-15 16:10:02.433 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:10:02.450 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][092d1c42-7b2d-442a-83e8-4d4fdee3672b] socks forwarding established\n2025-07-15 16:10:02.648 [info] [command][8d30c9f1-d192-4dd7-8fda-2069544493d1] Process exited with code 0\n2025-07-15 16:10:02.648 [info] [command][8d30c9f1-d192-4dd7-8fda-2069544493d1] Socket close event received\n2025-07-15 16:10:02.649 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][092d1c42-7b2d-442a-83e8-4d4fdee3672b] socks connection closed\n2025-07-15 16:10:02.667 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57542 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:11:02.653 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:11:02.655 [info] [command][fe494f16-81a2-4a92-8ee4-e6cdb7d5fed2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fe494f16-81a2-4a92-8ee4-e6cdb7d5fed2""}\n2025-07-15 16:11:02.655 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][448d98d2-449b-4b25-8854-1395d7154870] received connection request\n2025-07-15 16:11:02.655 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:11:02.743 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][448d98d2-449b-4b25-8854-1395d7154870] socks forwarding established\n2025-07-15 16:11:02.776 [info] [command][fe494f16-81a2-4a92-8ee4-e6cdb7d5fed2] Process exited with code 0\n2025-07-15 16:11:02.777 [info] [command][fe494f16-81a2-4a92-8ee4-e6cdb7d5fed2] Socket close event received\n2025-07-15 16:11:02.778 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][448d98d2-449b-4b25-8854-1395d7154870] socks connection closed\n2025-07-15 16:11:02.900 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57559 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:12:02.783 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:12:02.785 [info] [command][d69c02c8-7ca6-41e3-ace0-99ede828ac72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d69c02c8-7ca6-41e3-ace0-99ede828ac72""}\n2025-07-15 16:12:02.786 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f3d24abf-c55e-4ed5-9fa5-381f02a826ac] received connection request\n2025-07-15 16:12:02.787 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:12:02.820 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f3d24abf-c55e-4ed5-9fa5-381f02a826ac] socks forwarding established\n2025-07-15 16:12:02.857 [info] [command][d69c02c8-7ca6-41e3-ace0-99ede828ac72] Process exited with code 0\n2025-07-15 16:12:02.857 [info] [command][d69c02c8-7ca6-41e3-ace0-99ede828ac72] Socket close event received\n2025-07-15 16:12:02.858 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f3d24abf-c55e-4ed5-9fa5-381f02a826ac] socks connection closed\n2025-07-15 16:12:02.876 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57624 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:13:02.863 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:13:02.865 [info] [command][610daa0a-032c-4fad-9ce1-9041781c50df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""610daa0a-032c-4fad-9ce1-9041781c50df""}\n2025-07-15 16:13:02.866 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3895dd14-ccdb-446d-8975-1b8ce3a88e9a] received connection request\n2025-07-15 16:13:02.867 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:13:02.884 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3895dd14-ccdb-446d-8975-1b8ce3a88e9a] socks forwarding established\n2025-07-15 16:13:02.916 [info] [command][610daa0a-032c-4fad-9ce1-9041781c50df] Process exited with code 0\n2025-07-15 16:13:02.916 [info] [command][610daa0a-032c-4fad-9ce1-9041781c50df] Socket close event received\n2025-07-15 16:13:02.917 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3895dd14-ccdb-446d-8975-1b8ce3a88e9a] socks connection closed\n2025-07-15 16:13:02.933 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57646 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:14:02.922 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:14:02.925 [info] [command][f7dda43c-9ec6-4cd2-9167-4c392262905b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f7dda43c-9ec6-4cd2-9167-4c392262905b""}\n2025-07-15 16:14:02.926 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9436cadf-d26f-49fa-9299-c4413db65ba6] received connection request\n2025-07-15 16:14:02.927 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:14:03.024 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9436cadf-d26f-49fa-9299-c4413db65ba6] socks forwarding established\n2025-07-15 16:14:03.069 [info] [command][f7dda43c-9ec6-4cd2-9167-4c392262905b] Process exited with code 0\n2025-07-15 16:14:03.070 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9436cadf-d26f-49fa-9299-c4413db65ba6] socks connection closed\n2025-07-15 16:14:03.070 [info] [command][f7dda43c-9ec6-4cd2-9167-4c392262905b] Socket close event received\n2025-07-15 16:14:03.086 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57718 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:15:03.075 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:15:03.076 [info] [command][a1417f39-9607-4632-91d5-44c2e8424abc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a1417f39-9607-4632-91d5-44c2e8424abc""}\n2025-07-15 16:15:03.077 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9b20159e-74e3-402e-8b57-72a4b1675bce] received connection request\n2025-07-15 16:15:03.078 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:15:03.098 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9b20159e-74e3-402e-8b57-72a4b1675bce] socks forwarding established\n2025-07-15 16:15:03.130 [info] [command][a1417f39-9607-4632-91d5-44c2e8424abc] Process exited with code 0\n2025-07-15 16:15:03.131 [info] [command][a1417f39-9607-4632-91d5-44c2e8424abc] Socket close event received\n2025-07-15 16:15:03.147 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9b20159e-74e3-402e-8b57-72a4b1675bce] socks connection closed\n2025-07-15 16:15:03.148 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57744 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:16:03.136 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:16:03.138 [info] [command][db8b8d31-8600-4bb3-b484-571fbfddedcb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""db8b8d31-8600-4bb3-b484-571fbfddedcb""}\n2025-07-15 16:16:03.139 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][17af5785-b0d3-450d-87a7-4aedb0aa7ff3] received connection request\n2025-07-15 16:16:03.140 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:16:03.241 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][17af5785-b0d3-450d-87a7-4aedb0aa7ff3] socks forwarding established\n2025-07-15 16:16:03.278 [info] [command][db8b8d31-8600-4bb3-b484-571fbfddedcb] Process exited with code 0\n2025-07-15 16:16:03.279 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][17af5785-b0d3-450d-87a7-4aedb0aa7ff3] socks connection closed\n2025-07-15 16:16:03.279 [info] [command][db8b8d31-8600-4bb3-b484-571fbfddedcb] Socket close event received\n2025-07-15 16:16:03.295 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57770 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:17:03.282 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:17:03.284 [info] [command][c38d1094-7c03-492d-b6be-42d278fe782f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c38d1094-7c03-492d-b6be-42d278fe782f""}\n2025-07-15 16:17:03.284 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b8ccd20b-d83f-4ba8-aa0a-5c53b211770b] received connection request\n2025-07-15 16:17:03.284 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:17:03.309 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b8ccd20b-d83f-4ba8-aa0a-5c53b211770b] socks forwarding established\n2025-07-15 16:17:03.344 [info] [command][c38d1094-7c03-492d-b6be-42d278fe782f] Process exited with code 0\n2025-07-15 16:17:03.344 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b8ccd20b-d83f-4ba8-aa0a-5c53b211770b] socks connection closed\n2025-07-15 16:17:03.344 [info] [command][c38d1094-7c03-492d-b6be-42d278fe782f] Socket close event received\n2025-07-15 16:17:03.363 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57810 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:18:03.348 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:18:03.350 [info] [command][31cc530b-0bda-4a55-9d93-029809dafe56] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""31cc530b-0bda-4a55-9d93-029809dafe56""}\n2025-07-15 16:18:03.351 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f94befb9-601a-4840-9348-c3a1f8dd675c] received connection request\n2025-07-15 16:18:03.351 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:18:03.368 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f94befb9-601a-4840-9348-c3a1f8dd675c] socks forwarding established\n2025-07-15 16:18:03.402 [info] [command][31cc530b-0bda-4a55-9d93-029809dafe56] Process exited with code 0\n2025-07-15 16:18:03.402 [info] [command][31cc530b-0bda-4a55-9d93-029809dafe56] Socket close event received\n2025-07-15 16:18:03.403 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f94befb9-601a-4840-9348-c3a1f8dd675c] socks connection closed\n2025-07-15 16:18:03.420 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57824 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:19:03.406 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:19:03.409 [info] [command][a7ab6560-968a-4060-956a-296657af9480] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a7ab6560-968a-4060-956a-296657af9480""}\n2025-07-15 16:19:03.410 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9bbebf9c-f6b4-4c87-914f-39e9e375df93] received connection request\n2025-07-15 16:19:03.410 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:19:03.430 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9bbebf9c-f6b4-4c87-914f-39e9e375df93] socks forwarding established\n2025-07-15 16:19:03.465 [info] [command][a7ab6560-968a-4060-956a-296657af9480] Process exited with code 0\n2025-07-15 16:19:03.465 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9bbebf9c-f6b4-4c87-914f-39e9e375df93] socks connection closed\n2025-07-15 16:19:03.465 [info] [command][a7ab6560-968a-4060-956a-296657af9480] Socket close event received\n2025-07-15 16:19:03.483 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57859 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:20:03.466 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:20:03.468 [info] [command][b9b6bbd5-3cc6-4a08-bd39-d2f9e7a7750f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b9b6bbd5-3cc6-4a08-bd39-d2f9e7a7750f""}\n2025-07-15 16:20:03.468 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a696d47c-46c0-4be7-b657-5a8f0c415ad5] received connection request\n2025-07-15 16:20:03.469 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:20:03.590 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a696d47c-46c0-4be7-b657-5a8f0c415ad5] socks forwarding established\n2025-07-15 16:20:03.623 [info] [command][b9b6bbd5-3cc6-4a08-bd39-d2f9e7a7750f] Process exited with code 0\n2025-07-15 16:20:03.623 [info] [command][b9b6bbd5-3cc6-4a08-bd39-d2f9e7a7750f] Socket close event received\n2025-07-15 16:20:03.624 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a696d47c-46c0-4be7-b657-5a8f0c415ad5] socks connection closed\n2025-07-15 16:20:03.642 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57882 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:21:03.627 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:21:03.630 [info] [command][cd4d7552-bfb9-4920-a6ff-e0a7189e3192] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cd4d7552-bfb9-4920-a6ff-e0a7189e3192""}\n2025-07-15 16:21:03.631 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0eec60c2-92be-4787-996b-911bad241782] received connection request\n2025-07-15 16:21:03.632 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:21:03.653 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0eec60c2-92be-4787-996b-911bad241782] socks forwarding established\n2025-07-15 16:21:03.685 [info] [command][cd4d7552-bfb9-4920-a6ff-e0a7189e3192] Process exited with code 0\n2025-07-15 16:21:03.685 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0eec60c2-92be-4787-996b-911bad241782] socks connection closed\n2025-07-15 16:21:03.686 [info] [command][cd4d7552-bfb9-4920-a6ff-e0a7189e3192] Socket close event received\n2025-07-15 16:21:03.702 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57896 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:22:03.691 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:22:03.693 [info] [command][15beaed3-da1c-4d3a-92b0-9d74ec13dcff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""15beaed3-da1c-4d3a-92b0-9d74ec13dcff""}\n2025-07-15 16:22:03.693 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4b7674cb-f0c6-422f-b443-091aabfacfe3] received connection request\n2025-07-15 16:22:03.694 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 16:22:03.694 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:22:03.712 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4b7674cb-f0c6-422f-b443-091aabfacfe3] socks forwarding established\n2025-07-15 16:22:03.742 [info] [command][15beaed3-da1c-4d3a-92b0-9d74ec13dcff] Process exited with code 0\n2025-07-15 16:22:03.742 [info] [command][15beaed3-da1c-4d3a-92b0-9d74ec13dcff] Socket close event received\n2025-07-15 16:22:03.743 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4b7674cb-f0c6-422f-b443-091aabfacfe3] socks connection closed\n2025-07-15 16:22:03.770 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57937 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:23:03.748 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:23:03.751 [info] [command][81f3b34c-9cd7-494f-bb1e-982b3e2e2150] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""81f3b34c-9cd7-494f-bb1e-982b3e2e2150""}\n2025-07-15 16:23:03.751 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e08c9fb6-53e2-41e5-85a8-796f6d9c2c12] received connection request\n2025-07-15 16:23:03.752 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:23:03.769 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e08c9fb6-53e2-41e5-85a8-796f6d9c2c12] socks forwarding established\n2025-07-15 16:23:03.800 [info] [command][81f3b34c-9cd7-494f-bb1e-982b3e2e2150] Process exited with code 0\n2025-07-15 16:23:03.800 [info] [command][81f3b34c-9cd7-494f-bb1e-982b3e2e2150] Socket close event received\n2025-07-15 16:23:03.801 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e08c9fb6-53e2-41e5-85a8-796f6d9c2c12] socks connection closed\n2025-07-15 16:23:03.817 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57951 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:24:03.802 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:24:03.804 [info] [command][a7a042a2-562d-4e47-bb0a-d062f3043a61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a7a042a2-562d-4e47-bb0a-d062f3043a61""}\n2025-07-15 16:24:03.805 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][618b4843-1513-4917-b2d7-4a073d9c0f0f] received connection request\n2025-07-15 16:24:03.806 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:24:03.822 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][618b4843-1513-4917-b2d7-4a073d9c0f0f] socks forwarding established\n2025-07-15 16:24:03.853 [info] [command][a7a042a2-562d-4e47-bb0a-d062f3043a61] Process exited with code 0\n2025-07-15 16:24:03.854 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][618b4843-1513-4917-b2d7-4a073d9c0f0f] socks connection closed\n2025-07-15 16:24:03.854 [info] [command][a7a042a2-562d-4e47-bb0a-d062f3043a61] Socket close event received\n2025-07-15 16:24:03.870 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 57990 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:25:03.853 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:25:03.855 [info] [command][b0721f7f-2d31-4b59-8e1f-44910dd26901] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b0721f7f-2d31-4b59-8e1f-44910dd26901""}\n2025-07-15 16:25:03.855 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3d535dd3-72b7-40c6-b620-8a0a09e8e67d] received connection request\n2025-07-15 16:25:03.856 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 16:25:03.856 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:25:03.873 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d535dd3-72b7-40c6-b620-8a0a09e8e67d] socks forwarding established\n2025-07-15 16:25:03.903 [info] [command][b0721f7f-2d31-4b59-8e1f-44910dd26901] Process exited with code 0\n2025-07-15 16:25:03.903 [info] [command][b0721f7f-2d31-4b59-8e1f-44910dd26901] Socket close event received\n2025-07-15 16:25:03.903 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d535dd3-72b7-40c6-b620-8a0a09e8e67d] socks connection closed\n2025-07-15 16:25:03.920 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58008 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:26:03.907 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:26:03.910 [info] [command][79141b67-3255-4e5a-97fa-d52f501c9906] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""79141b67-3255-4e5a-97fa-d52f501c9906""}\n2025-07-15 16:26:03.911 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][231574a9-d56a-4e30-bff9-8aa5bf8242a9] received connection request\n2025-07-15 16:26:03.911 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:26:03.986 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][231574a9-d56a-4e30-bff9-8aa5bf8242a9] socks forwarding established\n2025-07-15 16:26:04.018 [info] [command][79141b67-3255-4e5a-97fa-d52f501c9906] Process exited with code 0\n2025-07-15 16:26:04.018 [info] [command][79141b67-3255-4e5a-97fa-d52f501c9906] Socket close event received\n2025-07-15 16:26:04.021 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][231574a9-d56a-4e30-bff9-8aa5bf8242a9] socks connection closed\n2025-07-15 16:26:04.037 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58158 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:27:04.022 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:27:04.025 [info] [command][d4e7947b-d88c-4eef-8368-35bb6e0cac3b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d4e7947b-d88c-4eef-8368-35bb6e0cac3b""}\n2025-07-15 16:27:04.026 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b0855eb5-33b1-46b8-82e8-c7567a01d579] received connection request\n2025-07-15 16:27:04.027 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:27:04.167 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b0855eb5-33b1-46b8-82e8-c7567a01d579] socks forwarding established\n2025-07-15 16:27:04.336 [info] [command][d4e7947b-d88c-4eef-8368-35bb6e0cac3b] Process exited with code 0\n2025-07-15 16:27:04.336 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b0855eb5-33b1-46b8-82e8-c7567a01d579] socks connection closed\n2025-07-15 16:27:04.336 [info] [command][d4e7947b-d88c-4eef-8368-35bb6e0cac3b] Socket close event received\n2025-07-15 16:27:04.355 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58198 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:28:04.340 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:28:04.342 [info] [command][028d08d5-7543-4573-a38e-82ae2d49a8f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""028d08d5-7543-4573-a38e-82ae2d49a8f6""}\n2025-07-15 16:28:04.342 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7fb457b5-e880-43c2-bf50-bf0f9d144105] received connection request\n2025-07-15 16:28:04.343 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:28:04.446 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7fb457b5-e880-43c2-bf50-bf0f9d144105] socks forwarding established\n2025-07-15 16:28:04.478 [info] [command][028d08d5-7543-4573-a38e-82ae2d49a8f6] Process exited with code 0\n2025-07-15 16:28:04.478 [info] [command][028d08d5-7543-4573-a38e-82ae2d49a8f6] Socket close event received\n2025-07-15 16:28:04.478 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7fb457b5-e880-43c2-bf50-bf0f9d144105] socks connection closed\n2025-07-15 16:28:04.511 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58221 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:29:04.480 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:29:04.483 [info] [command][8703952d-2e2d-4e68-81dc-43f39537eee4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8703952d-2e2d-4e68-81dc-43f39537eee4""}\n2025-07-15 16:29:04.483 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2d52fe16-3102-4d30-9e22-ca322b8cf7da] received connection request\n2025-07-15 16:29:04.484 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:29:04.550 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2d52fe16-3102-4d30-9e22-ca322b8cf7da] socks forwarding established\n2025-07-15 16:29:04.630 [info] [command][8703952d-2e2d-4e68-81dc-43f39537eee4] Process exited with code 0\n2025-07-15 16:29:04.631 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2d52fe16-3102-4d30-9e22-ca322b8cf7da] socks connection closed\n2025-07-15 16:29:04.631 [info] [command][8703952d-2e2d-4e68-81dc-43f39537eee4] Socket close event received\n2025-07-15 16:29:04.647 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58259 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:30:04.636 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:30:04.638 [info] [command][f32eefcc-1972-4e86-af86-edf801b489a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f32eefcc-1972-4e86-af86-edf801b489a7""}\n2025-07-15 16:30:04.639 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][162d5b27-03af-4399-890a-c800731a1c41] received connection request\n2025-07-15 16:30:04.640 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:30:04.675 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][162d5b27-03af-4399-890a-c800731a1c41] socks forwarding established\n2025-07-15 16:30:04.771 [info] [command][f32eefcc-1972-4e86-af86-edf801b489a7] Process exited with code 0\n2025-07-15 16:30:04.771 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][162d5b27-03af-4399-890a-c800731a1c41] socks connection closed\n2025-07-15 16:30:04.771 [info] [command][f32eefcc-1972-4e86-af86-edf801b489a7] Socket close event received\n2025-07-15 16:30:04.787 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58282 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:31:04.776 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:31:04.776 [info] [command][8e423ebb-8403-487e-9321-812f1656e25f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8e423ebb-8403-487e-9321-812f1656e25f""}\n2025-07-15 16:31:04.776 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6ac4a875-f579-4121-b42a-e5ee70729847] received connection request\n2025-07-15 16:31:04.777 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:31:04.864 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6ac4a875-f579-4121-b42a-e5ee70729847] socks forwarding established\n2025-07-15 16:31:04.984 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6ac4a875-f579-4121-b42a-e5ee70729847] socks connection closed\n2025-07-15 16:31:04.984 [info] [command][8e423ebb-8403-487e-9321-812f1656e25f] Process exited with code 0\n2025-07-15 16:31:04.984 [info] [command][8e423ebb-8403-487e-9321-812f1656e25f] Socket close event received\n2025-07-15 16:31:05.000 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58333 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:32:04.987 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:32:04.989 [info] [command][f8e5eebd-a92e-47ca-9d8b-5670c09314ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f8e5eebd-a92e-47ca-9d8b-5670c09314ec""}\n2025-07-15 16:32:04.990 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6354aa40-d7a9-490b-969e-0205b967a63b] received connection request\n2025-07-15 16:32:04.990 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:32:05.007 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6354aa40-d7a9-490b-969e-0205b967a63b] socks forwarding established\n2025-07-15 16:32:05.036 [info] [command][f8e5eebd-a92e-47ca-9d8b-5670c09314ec] Process exited with code 0\n2025-07-15 16:32:05.036 [info] [command][f8e5eebd-a92e-47ca-9d8b-5670c09314ec] Socket close event received\n2025-07-15 16:32:05.037 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6354aa40-d7a9-490b-969e-0205b967a63b] socks connection closed\n2025-07-15 16:32:05.146 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58380 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:33:05.042 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:33:05.044 [info] [command][0a3e37a5-047e-44ac-bbff-177eef608eec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0a3e37a5-047e-44ac-bbff-177eef608eec""}\n2025-07-15 16:33:05.045 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b07e8916-fdb6-4722-b019-0155f482c05e] received connection request\n2025-07-15 16:33:05.046 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:33:05.064 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b07e8916-fdb6-4722-b019-0155f482c05e] socks forwarding established\n2025-07-15 16:33:05.098 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b07e8916-fdb6-4722-b019-0155f482c05e] socks connection closed\n2025-07-15 16:33:05.098 [info] [command][0a3e37a5-047e-44ac-bbff-177eef608eec] Process exited with code 0\n2025-07-15 16:33:05.098 [info] [command][0a3e37a5-047e-44ac-bbff-177eef608eec] Socket close event received\n2025-07-15 16:33:05.116 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58408 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:34:05.104 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:34:05.107 [info] [command][5907ee82-f368-48bf-b8b3-8002c1e26dec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5907ee82-f368-48bf-b8b3-8002c1e26dec""}\n2025-07-15 16:34:05.107 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b69452e0-9276-40fa-848a-bb3e064f9859] received connection request\n2025-07-15 16:34:05.108 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:34:05.126 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b69452e0-9276-40fa-848a-bb3e064f9859] socks forwarding established\n2025-07-15 16:34:05.156 [info] [command][5907ee82-f368-48bf-b8b3-8002c1e26dec] Process exited with code 0\n2025-07-15 16:34:05.156 [info] [command][5907ee82-f368-48bf-b8b3-8002c1e26dec] Socket close event received\n2025-07-15 16:34:05.157 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b69452e0-9276-40fa-848a-bb3e064f9859] socks connection closed\n2025-07-15 16:34:05.173 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58454 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:35:05.158 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:35:05.160 [info] [command][a3b1a6fb-3585-4c80-8313-fbe849ea0e95] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a3b1a6fb-3585-4c80-8313-fbe849ea0e95""}\n2025-07-15 16:35:05.160 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6e516d6e-a0a8-47f8-8622-a967379ec844] received connection request\n2025-07-15 16:35:05.161 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:35:05.179 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6e516d6e-a0a8-47f8-8622-a967379ec844] socks forwarding established\n2025-07-15 16:35:05.210 [info] [command][a3b1a6fb-3585-4c80-8313-fbe849ea0e95] Process exited with code 0\n2025-07-15 16:35:05.210 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6e516d6e-a0a8-47f8-8622-a967379ec844] socks connection closed\n2025-07-15 16:35:05.211 [info] [command][a3b1a6fb-3585-4c80-8313-fbe849ea0e95] Socket close event received\n2025-07-15 16:35:05.228 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58486 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:36:05.212 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:36:05.215 [info] [command][43b5a513-c580-4275-bb5a-3ccf12dddaa8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""43b5a513-c580-4275-bb5a-3ccf12dddaa8""}\n2025-07-15 16:36:05.216 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][cd3f0304-378d-4c6d-a438-82d42c2753b5] received connection request\n2025-07-15 16:36:05.216 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:36:05.235 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cd3f0304-378d-4c6d-a438-82d42c2753b5] socks forwarding established\n2025-07-15 16:36:05.269 [info] [command][43b5a513-c580-4275-bb5a-3ccf12dddaa8] Process exited with code 0\n2025-07-15 16:36:05.270 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cd3f0304-378d-4c6d-a438-82d42c2753b5] socks connection closed\n2025-07-15 16:36:05.270 [info] [command][43b5a513-c580-4275-bb5a-3ccf12dddaa8] Socket close event received\n2025-07-15 16:36:05.286 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58530 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:37:05.275 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:37:05.279 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fb609765-fa13-4e81-8646-a531cf2caa9b] received connection request\n2025-07-15 16:37:05.279 [info] [command][82c5314c-cc4b-45d0-9e02-35f61ea713f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""82c5314c-cc4b-45d0-9e02-35f61ea713f8""}\n2025-07-15 16:37:05.279 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:37:05.296 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fb609765-fa13-4e81-8646-a531cf2caa9b] socks forwarding established\n2025-07-15 16:37:05.328 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fb609765-fa13-4e81-8646-a531cf2caa9b] socks connection closed\n2025-07-15 16:37:05.328 [info] [command][82c5314c-cc4b-45d0-9e02-35f61ea713f8] Process exited with code 0\n2025-07-15 16:37:05.329 [info] [command][82c5314c-cc4b-45d0-9e02-35f61ea713f8] Socket close event received\n2025-07-15 16:37:05.345 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58578 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:38:05.335 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:38:05.337 [info] [command][1edfb4cf-5c7c-45e6-9d94-7a98cc5b0ddd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1edfb4cf-5c7c-45e6-9d94-7a98cc5b0ddd""}\n2025-07-15 16:38:05.338 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1151d008-2776-414b-a3d6-1161963adb10] received connection request\n2025-07-15 16:38:05.339 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 16:38:05.339 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:38:05.439 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1151d008-2776-414b-a3d6-1161963adb10] socks forwarding established\n2025-07-15 16:38:05.480 [info] [command][1edfb4cf-5c7c-45e6-9d94-7a98cc5b0ddd] Process exited with code 0\n2025-07-15 16:38:05.481 [info] [command][1edfb4cf-5c7c-45e6-9d94-7a98cc5b0ddd] Socket close event received\n2025-07-15 16:38:05.617 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1151d008-2776-414b-a3d6-1161963adb10] socks connection closed\n2025-07-15 16:38:05.629 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58617 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:39:05.483 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:39:05.485 [info] [command][ab04c479-1f66-423b-b05a-2a726f03d236] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ab04c479-1f66-423b-b05a-2a726f03d236""}\n2025-07-15 16:39:05.486 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][149611ab-d350-49ba-9462-339b6830c1f3] received connection request\n2025-07-15 16:39:05.486 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:39:05.503 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][149611ab-d350-49ba-9462-339b6830c1f3] socks forwarding established\n2025-07-15 16:39:05.533 [info] [command][ab04c479-1f66-423b-b05a-2a726f03d236] Process exited with code 0\n2025-07-15 16:39:05.533 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][149611ab-d350-49ba-9462-339b6830c1f3] socks connection closed\n2025-07-15 16:39:05.533 [info] [command][ab04c479-1f66-423b-b05a-2a726f03d236] Socket close event received\n2025-07-15 16:39:05.553 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58653 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:40:05.537 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:40:05.539 [info] [command][250040cd-20e1-4a53-93f0-c9f6bc2c5a37] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""250040cd-20e1-4a53-93f0-c9f6bc2c5a37""}\n2025-07-15 16:40:05.539 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1a1fe7e3-c043-4c89-9651-f9ec75b78950] received connection request\n2025-07-15 16:40:05.539 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:40:05.560 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1a1fe7e3-c043-4c89-9651-f9ec75b78950] socks forwarding established\n2025-07-15 16:40:05.592 [info] [command][250040cd-20e1-4a53-93f0-c9f6bc2c5a37] Process exited with code 0\n2025-07-15 16:40:05.593 [info] [command][250040cd-20e1-4a53-93f0-c9f6bc2c5a37] Socket close event received\n2025-07-15 16:40:05.597 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1a1fe7e3-c043-4c89-9651-f9ec75b78950] socks connection closed\n2025-07-15 16:40:05.655 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58678 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:41:05.598 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:41:05.600 [info] [command][efbab32a-5412-404d-8292-91f4e98d0471] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""efbab32a-5412-404d-8292-91f4e98d0471""}\n2025-07-15 16:41:05.600 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2e21d346-4e4a-42a6-9a33-7aa4f41089c2] received connection request\n2025-07-15 16:41:05.601 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:41:05.621 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2e21d346-4e4a-42a6-9a33-7aa4f41089c2] socks forwarding established\n2025-07-15 16:41:05.790 [info] [command][efbab32a-5412-404d-8292-91f4e98d0471] Process exited with code 0\n2025-07-15 16:41:05.790 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2e21d346-4e4a-42a6-9a33-7aa4f41089c2] socks connection closed\n2025-07-15 16:41:05.790 [info] [command][efbab32a-5412-404d-8292-91f4e98d0471] Socket close event received\n2025-07-15 16:41:05.885 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58721 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:42:05.795 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:42:05.796 [info] [command][9cab56a9-1871-4fe4-a44a-fbcd65ce8754] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9cab56a9-1871-4fe4-a44a-fbcd65ce8754""}\n2025-07-15 16:42:05.797 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][52555ba8-9547-4a14-9286-333134a9230b] received connection request\n2025-07-15 16:42:05.797 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:42:05.826 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][52555ba8-9547-4a14-9286-333134a9230b] socks forwarding established\n2025-07-15 16:42:05.858 [info] [command][9cab56a9-1871-4fe4-a44a-fbcd65ce8754] Process exited with code 0\n2025-07-15 16:42:05.858 [info] [command][9cab56a9-1871-4fe4-a44a-fbcd65ce8754] Socket close event received\n2025-07-15 16:42:05.859 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][52555ba8-9547-4a14-9286-333134a9230b] socks connection closed\n2025-07-15 16:42:05.877 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58777 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:43:05.864 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:43:05.868 [info] [command][d3c8e676-33f9-43a5-b90f-22b184115e2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d3c8e676-33f9-43a5-b90f-22b184115e2e""}\n2025-07-15 16:43:05.869 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][19812249-ac8e-4277-9f73-7de75b8550e0] received connection request\n2025-07-15 16:43:05.870 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:43:05.891 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][19812249-ac8e-4277-9f73-7de75b8550e0] socks forwarding established\n2025-07-15 16:43:05.920 [info] [command][d3c8e676-33f9-43a5-b90f-22b184115e2e] Process exited with code 0\n2025-07-15 16:43:05.921 [info] [command][d3c8e676-33f9-43a5-b90f-22b184115e2e] Socket close event received\n2025-07-15 16:43:05.921 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][19812249-ac8e-4277-9f73-7de75b8550e0] socks connection closed\n2025-07-15 16:43:05.938 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58801 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:44:05.925 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:44:05.927 [info] [command][d083d71a-0077-4e39-a574-98eebbbf0fa5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d083d71a-0077-4e39-a574-98eebbbf0fa5""}\n2025-07-15 16:44:05.928 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][78a275f7-4e86-4d91-b87b-fc551a720c94] received connection request\n2025-07-15 16:44:05.929 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:44:06.079 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][78a275f7-4e86-4d91-b87b-fc551a720c94] socks forwarding established\n2025-07-15 16:44:06.114 [info] [command][d083d71a-0077-4e39-a574-98eebbbf0fa5] Process exited with code 0\n2025-07-15 16:44:06.114 [info] [command][d083d71a-0077-4e39-a574-98eebbbf0fa5] Socket close event received\n2025-07-15 16:44:06.115 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][78a275f7-4e86-4d91-b87b-fc551a720c94] socks connection closed\n2025-07-15 16:44:06.261 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58840 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:45:06.116 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:45:06.119 [info] [command][5ed282fa-40c7-48e3-9c87-bbfb708b40d9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5ed282fa-40c7-48e3-9c87-bbfb708b40d9""}\n2025-07-15 16:45:06.119 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3028d08f-541e-47fa-859e-dab6df38332f] received connection request\n2025-07-15 16:45:06.120 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:45:06.154 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3028d08f-541e-47fa-859e-dab6df38332f] socks forwarding established\n2025-07-15 16:45:06.320 [info] [command][5ed282fa-40c7-48e3-9c87-bbfb708b40d9] Process exited with code 0\n2025-07-15 16:45:06.321 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3028d08f-541e-47fa-859e-dab6df38332f] socks connection closed\n2025-07-15 16:45:06.321 [info] [command][5ed282fa-40c7-48e3-9c87-bbfb708b40d9] Socket close event received\n2025-07-15 16:45:06.338 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58870 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:46:06.326 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:46:06.329 [info] [command][2bc59a0a-b9da-4e94-af8f-1a699b483803] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2bc59a0a-b9da-4e94-af8f-1a699b483803""}\n2025-07-15 16:46:06.330 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a04d1cb7-3e69-4460-828c-fb4dbbe6c3dc] received connection request\n2025-07-15 16:46:06.332 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:46:19.067 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a04d1cb7-3e69-4460-828c-fb4dbbe6c3dc] socks forwarding established\n2025-07-15 16:46:19.153 [info] [command][2bc59a0a-b9da-4e94-af8f-1a699b483803] Process exited with code 0\n2025-07-15 16:46:19.154 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a04d1cb7-3e69-4460-828c-fb4dbbe6c3dc] socks connection closed\n2025-07-15 16:46:19.154 [info] [command][2bc59a0a-b9da-4e94-af8f-1a699b483803] Socket close event received\n2025-07-15 16:46:19.174 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58926 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:47:19.158 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:47:19.160 [info] [command][11c246cd-a0e1-482a-ad0a-aba6c4f88827] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""11c246cd-a0e1-482a-ad0a-aba6c4f88827""}\n2025-07-15 16:47:19.161 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6183e5d7-74af-4813-ae53-e265ec89f8e0] received connection request\n2025-07-15 16:47:19.161 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:47:19.188 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6183e5d7-74af-4813-ae53-e265ec89f8e0] socks forwarding established\n2025-07-15 16:47:19.248 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6183e5d7-74af-4813-ae53-e265ec89f8e0] socks connection closed\n2025-07-15 16:47:19.248 [info] [command][11c246cd-a0e1-482a-ad0a-aba6c4f88827] Process exited with code 0\n2025-07-15 16:47:19.249 [info] [command][11c246cd-a0e1-482a-ad0a-aba6c4f88827] Socket close event received\n2025-07-15 16:47:19.710 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 58991 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:48:19.253 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:48:19.256 [info] [command][5f7e22e4-53d3-4144-8472-21c3ef1c4301] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5f7e22e4-53d3-4144-8472-21c3ef1c4301""}\n2025-07-15 16:48:19.257 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d7fe43c9-636f-4739-b047-645ec4b228bb] received connection request\n2025-07-15 16:48:19.257 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:48:19.279 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d7fe43c9-636f-4739-b047-645ec4b228bb] socks forwarding established\n2025-07-15 16:48:19.324 [info] [command][5f7e22e4-53d3-4144-8472-21c3ef1c4301] Process exited with code 0\n2025-07-15 16:48:19.324 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d7fe43c9-636f-4739-b047-645ec4b228bb] socks connection closed\n2025-07-15 16:48:19.324 [info] [command][5f7e22e4-53d3-4144-8472-21c3ef1c4301] Socket close event received\n2025-07-15 16:48:19.344 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59024 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:49:19.326 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:49:19.328 [info] [command][cf680dcb-0040-4248-8e3e-fe85575a55e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cf680dcb-0040-4248-8e3e-fe85575a55e8""}\n2025-07-15 16:49:19.328 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7dc27a2d-d2a7-4d17-b571-d6feda6b962d] received connection request\n2025-07-15 16:49:19.328 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:49:19.351 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7dc27a2d-d2a7-4d17-b571-d6feda6b962d] socks forwarding established\n2025-07-15 16:49:19.381 [info] [command][cf680dcb-0040-4248-8e3e-fe85575a55e8] Process exited with code 0\n2025-07-15 16:49:19.382 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7dc27a2d-d2a7-4d17-b571-d6feda6b962d] socks connection closed\n2025-07-15 16:49:19.382 [info] [command][cf680dcb-0040-4248-8e3e-fe85575a55e8] Socket close event received\n2025-07-15 16:49:19.408 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59081 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:50:19.387 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:50:19.389 [info] [command][8835c057-f17f-4824-875b-ca73ec400232] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8835c057-f17f-4824-875b-ca73ec400232""}\n2025-07-15 16:50:19.390 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b1220fe8-8a36-4711-8f83-1228cf0bef80] received connection request\n2025-07-15 16:50:19.390 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:50:19.423 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b1220fe8-8a36-4711-8f83-1228cf0bef80] socks forwarding established\n2025-07-15 16:50:19.455 [info] [command][8835c057-f17f-4824-875b-ca73ec400232] Process exited with code 0\n2025-07-15 16:50:19.455 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b1220fe8-8a36-4711-8f83-1228cf0bef80] socks connection closed\n2025-07-15 16:50:19.455 [info] [command][8835c057-f17f-4824-875b-ca73ec400232] Socket close event received\n2025-07-15 16:50:19.476 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59110 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:51:19.457 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:51:19.458 [info] [command][3db202d8-8555-4460-92db-ebcae04fe3b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3db202d8-8555-4460-92db-ebcae04fe3b4""}\n2025-07-15 16:51:19.458 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][773b4cbb-4791-4357-a90c-d9de938ea52e] received connection request\n2025-07-15 16:51:19.459 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:51:19.476 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][773b4cbb-4791-4357-a90c-d9de938ea52e] socks forwarding established\n2025-07-15 16:51:19.505 [info] [command][3db202d8-8555-4460-92db-ebcae04fe3b4] Process exited with code 0\n2025-07-15 16:51:19.505 [info] [command][3db202d8-8555-4460-92db-ebcae04fe3b4] Socket close event received\n2025-07-15 16:51:19.506 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][773b4cbb-4791-4357-a90c-d9de938ea52e] socks connection closed\n2025-07-15 16:51:19.522 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59154 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:52:19.506 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:52:19.508 [info] [command][2ffc979d-2f35-4ef4-9443-9ff51eab0b77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2ffc979d-2f35-4ef4-9443-9ff51eab0b77""}\n2025-07-15 16:52:19.508 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c2800638-3e3a-4a0f-971c-7bdf40db0cc1] received connection request\n2025-07-15 16:52:19.509 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:52:19.525 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c2800638-3e3a-4a0f-971c-7bdf40db0cc1] socks forwarding established\n2025-07-15 16:52:19.559 [info] [command][2ffc979d-2f35-4ef4-9443-9ff51eab0b77] Process exited with code 0\n2025-07-15 16:52:19.559 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c2800638-3e3a-4a0f-971c-7bdf40db0cc1] socks connection closed\n2025-07-15 16:52:19.559 [info] [command][2ffc979d-2f35-4ef4-9443-9ff51eab0b77] Socket close event received\n2025-07-15 16:52:19.577 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59220 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:53:19.559 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:53:19.560 [info] [command][64d2000b-f8e1-490d-b9b4-f528866fd27d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""64d2000b-f8e1-490d-b9b4-f528866fd27d""}\n2025-07-15 16:53:19.560 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][cbd5790a-d0fc-4e85-9e46-9e1ae8c82cf8] received connection request\n2025-07-15 16:53:19.561 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 16:53:19.561 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:53:19.663 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cbd5790a-d0fc-4e85-9e46-9e1ae8c82cf8] socks forwarding established\n2025-07-15 16:53:19.784 [info] [command][64d2000b-f8e1-490d-b9b4-f528866fd27d] Process exited with code 0\n2025-07-15 16:53:19.785 [info] [command][64d2000b-f8e1-490d-b9b4-f528866fd27d] Socket close event received\n2025-07-15 16:53:19.785 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cbd5790a-d0fc-4e85-9e46-9e1ae8c82cf8] socks connection closed\n2025-07-15 16:53:19.803 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59275 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:54:19.790 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:54:19.793 [info] [command][6c0344d7-1066-4925-8e84-c8e6189c3910] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6c0344d7-1066-4925-8e84-c8e6189c3910""}\n2025-07-15 16:54:19.794 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b562016c-919e-491f-a05d-ba3280b54072] received connection request\n2025-07-15 16:54:19.794 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:54:19.811 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b562016c-919e-491f-a05d-ba3280b54072] socks forwarding established\n2025-07-15 16:54:19.905 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b562016c-919e-491f-a05d-ba3280b54072] socks connection closed\n2025-07-15 16:54:19.905 [info] [command][6c0344d7-1066-4925-8e84-c8e6189c3910] Process exited with code 0\n2025-07-15 16:54:19.906 [info] [command][6c0344d7-1066-4925-8e84-c8e6189c3910] Socket close event received\n2025-07-15 16:54:19.926 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59335 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:55:19.911 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:55:19.913 [info] [command][60b97b6b-e68d-41a0-baa9-112e47927793] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""60b97b6b-e68d-41a0-baa9-112e47927793""}\n2025-07-15 16:55:19.914 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][514d0643-d08f-4c11-9d0f-1da3f6cc7ec9] received connection request\n2025-07-15 16:55:19.915 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 16:55:19.915 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:55:19.932 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][514d0643-d08f-4c11-9d0f-1da3f6cc7ec9] socks forwarding established\n2025-07-15 16:55:19.963 [info] [command][60b97b6b-e68d-41a0-baa9-112e47927793] Process exited with code 0\n2025-07-15 16:55:19.963 [info] [command][60b97b6b-e68d-41a0-baa9-112e47927793] Socket close event received\n2025-07-15 16:55:19.964 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][514d0643-d08f-4c11-9d0f-1da3f6cc7ec9] socks connection closed\n2025-07-15 16:55:19.980 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59359 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:56:19.969 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:56:19.971 [info] [command][6f68d395-6181-427f-8962-c756360fa06e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6f68d395-6181-427f-8962-c756360fa06e""}\n2025-07-15 16:56:19.972 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][774a0dc9-0340-46cb-86ef-d0e4898cd238] received connection request\n2025-07-15 16:56:19.972 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:56:19.991 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][774a0dc9-0340-46cb-86ef-d0e4898cd238] socks forwarding established\n2025-07-15 16:56:20.093 [info] [command][6f68d395-6181-427f-8962-c756360fa06e] Process exited with code 0\n2025-07-15 16:56:20.094 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][774a0dc9-0340-46cb-86ef-d0e4898cd238] socks connection closed\n2025-07-15 16:56:20.094 [info] [command][6f68d395-6181-427f-8962-c756360fa06e] Socket close event received\n2025-07-15 16:56:20.111 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59421 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:57:20.099 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:57:20.100 [info] [command][ad5ce6ea-9cb2-40e3-a058-7438a1db25b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ad5ce6ea-9cb2-40e3-a058-7438a1db25b9""}\n2025-07-15 16:57:20.100 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4f97c3b9-2f7e-45b2-b8fe-834e7656f494] received connection request\n2025-07-15 16:57:20.101 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:57:20.118 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4f97c3b9-2f7e-45b2-b8fe-834e7656f494] socks forwarding established\n2025-07-15 16:57:20.149 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4f97c3b9-2f7e-45b2-b8fe-834e7656f494] socks connection closed\n2025-07-15 16:57:20.149 [info] [command][ad5ce6ea-9cb2-40e3-a058-7438a1db25b9] Process exited with code 0\n2025-07-15 16:57:20.149 [info] [command][ad5ce6ea-9cb2-40e3-a058-7438a1db25b9] Socket close event received\n2025-07-15 16:57:20.166 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59468 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:58:20.150 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:58:20.151 [info] [command][7e734097-3825-4e7c-bce2-d333d9c8a40b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7e734097-3825-4e7c-bce2-d333d9c8a40b""}\n2025-07-15 16:58:20.151 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][86c7b68a-ac5e-43b6-a129-f5caa8877336] received connection request\n2025-07-15 16:58:20.151 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:58:20.170 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][86c7b68a-ac5e-43b6-a129-f5caa8877336] socks forwarding established\n2025-07-15 16:58:20.199 [info] [command][7e734097-3825-4e7c-bce2-d333d9c8a40b] Process exited with code 0\n2025-07-15 16:58:20.199 [info] [command][7e734097-3825-4e7c-bce2-d333d9c8a40b] Socket close event received\n2025-07-15 16:58:20.200 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][86c7b68a-ac5e-43b6-a129-f5caa8877336] socks connection closed\n2025-07-15 16:58:20.217 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59522 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 16:59:20.205 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 16:59:20.208 [info] [command][95e75d4d-7f15-4eba-af47-1343a6ea4991] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""95e75d4d-7f15-4eba-af47-1343a6ea4991""}\n2025-07-15 16:59:20.209 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b6d23d0b-94ed-4501-8d3a-33fc4e0f0170] received connection request\n2025-07-15 16:59:20.210 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 16:59:20.273 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b6d23d0b-94ed-4501-8d3a-33fc4e0f0170] socks forwarding established\n2025-07-15 16:59:20.306 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b6d23d0b-94ed-4501-8d3a-33fc4e0f0170] socks connection closed\n2025-07-15 16:59:20.306 [info] [command][95e75d4d-7f15-4eba-af47-1343a6ea4991] Process exited with code 0\n2025-07-15 16:59:20.306 [info] [command][95e75d4d-7f15-4eba-af47-1343a6ea4991] Socket close event received\n2025-07-15 16:59:20.323 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59582 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:00:20.311 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:00:20.313 [info] [command][71a6c0f0-1c11-4606-a713-afaf2e988454] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""71a6c0f0-1c11-4606-a713-afaf2e988454""}\n2025-07-15 17:00:20.314 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][21ec4229-47de-4a30-aeb9-5cc56631beda] received connection request\n2025-07-15 17:00:20.315 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:00:20.332 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][21ec4229-47de-4a30-aeb9-5cc56631beda] socks forwarding established\n2025-07-15 17:00:20.364 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][21ec4229-47de-4a30-aeb9-5cc56631beda] socks connection closed\n2025-07-15 17:00:20.364 [info] [command][71a6c0f0-1c11-4606-a713-afaf2e988454] Process exited with code 0\n2025-07-15 17:00:20.364 [info] [command][71a6c0f0-1c11-4606-a713-afaf2e988454] Socket close event received\n2025-07-15 17:00:20.380 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59625 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:01:20.370 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:01:20.373 [info] [command][cea93492-d992-45b0-be8c-f0d3bfa70b47] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cea93492-d992-45b0-be8c-f0d3bfa70b47""}\n2025-07-15 17:01:20.374 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][dd34e3f6-d71f-46b8-bcf8-90842023a8de] received connection request\n2025-07-15 17:01:20.374 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:01:20.392 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][dd34e3f6-d71f-46b8-bcf8-90842023a8de] socks forwarding established\n2025-07-15 17:01:20.424 [info] [command][cea93492-d992-45b0-be8c-f0d3bfa70b47] Process exited with code 0\n2025-07-15 17:01:20.424 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][dd34e3f6-d71f-46b8-bcf8-90842023a8de] socks connection closed\n2025-07-15 17:01:20.424 [info] [command][cea93492-d992-45b0-be8c-f0d3bfa70b47] Socket close event received\n2025-07-15 17:01:20.440 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59682 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:02:20.427 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:02:20.429 [info] [command][75e86c19-6f18-415e-858f-8e77dd24cee7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""75e86c19-6f18-415e-858f-8e77dd24cee7""}\n2025-07-15 17:02:20.430 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5205ad4a-f6e6-4d35-ba52-7dba16d4317c] received connection request\n2025-07-15 17:02:20.430 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:02:20.499 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5205ad4a-f6e6-4d35-ba52-7dba16d4317c] socks forwarding established\n2025-07-15 17:02:20.531 [info] [command][75e86c19-6f18-415e-858f-8e77dd24cee7] Process exited with code 0\n2025-07-15 17:02:20.531 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5205ad4a-f6e6-4d35-ba52-7dba16d4317c] socks connection closed\n2025-07-15 17:02:20.531 [info] [command][75e86c19-6f18-415e-858f-8e77dd24cee7] Socket close event received\n2025-07-15 17:02:20.549 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59751 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:03:20.535 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:03:20.538 [info] [command][bfc46b1d-a7c2-4469-ab9f-3e6cf8262bdf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bfc46b1d-a7c2-4469-ab9f-3e6cf8262bdf""}\n2025-07-15 17:03:20.539 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0b77d20c-db61-4771-9e9f-9746b0225db5] received connection request\n2025-07-15 17:03:20.540 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:03:20.592 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0b77d20c-db61-4771-9e9f-9746b0225db5] socks forwarding established\n2025-07-15 17:03:20.678 [info] [command][bfc46b1d-a7c2-4469-ab9f-3e6cf8262bdf] Process exited with code 0\n2025-07-15 17:03:20.678 [info] [command][bfc46b1d-a7c2-4469-ab9f-3e6cf8262bdf] Socket close event received\n2025-07-15 17:03:20.679 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0b77d20c-db61-4771-9e9f-9746b0225db5] socks connection closed\n2025-07-15 17:03:20.697 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59796 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:04:20.679 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:04:20.681 [info] [command][f8823c20-5293-4a3a-a7c5-e420b2dece9d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f8823c20-5293-4a3a-a7c5-e420b2dece9d""}\n2025-07-15 17:04:20.682 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1f1033df-3215-4714-a453-ef6d9a4e824f] received connection request\n2025-07-15 17:04:20.683 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:04:20.700 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1f1033df-3215-4714-a453-ef6d9a4e824f] socks forwarding established\n2025-07-15 17:04:20.731 [info] [command][f8823c20-5293-4a3a-a7c5-e420b2dece9d] Process exited with code 0\n2025-07-15 17:04:20.731 [info] [command][f8823c20-5293-4a3a-a7c5-e420b2dece9d] Socket close event received\n2025-07-15 17:04:20.732 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1f1033df-3215-4714-a453-ef6d9a4e824f] socks connection closed\n2025-07-15 17:04:20.748 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59837 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:05:20.737 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:05:20.739 [info] [command][b3637f01-1fd9-47da-9b35-2994ac95932f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b3637f01-1fd9-47da-9b35-2994ac95932f""}\n2025-07-15 17:05:20.740 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][85c96f5e-37e2-4c2b-9554-ce5ec38246c9] received connection request\n2025-07-15 17:05:20.741 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:05:20.761 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][85c96f5e-37e2-4c2b-9554-ce5ec38246c9] socks forwarding established\n2025-07-15 17:05:20.879 [info] [command][b3637f01-1fd9-47da-9b35-2994ac95932f] Process exited with code 0\n2025-07-15 17:05:20.879 [info] [command][b3637f01-1fd9-47da-9b35-2994ac95932f] Socket close event received\n2025-07-15 17:05:20.880 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][85c96f5e-37e2-4c2b-9554-ce5ec38246c9] socks connection closed\n2025-07-15 17:05:20.897 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59873 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:06:20.880 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:06:20.883 [info] [command][369d6464-e43f-41b7-a66f-6b9f7c310489] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""369d6464-e43f-41b7-a66f-6b9f7c310489""}\n2025-07-15 17:06:20.884 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][134ab1c7-c3bf-4d99-b395-9b0bb7737815] received connection request\n2025-07-15 17:06:20.885 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:06:20.907 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][134ab1c7-c3bf-4d99-b395-9b0bb7737815] socks forwarding established\n2025-07-15 17:06:20.941 [info] [command][369d6464-e43f-41b7-a66f-6b9f7c310489] Process exited with code 0\n2025-07-15 17:06:20.941 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][134ab1c7-c3bf-4d99-b395-9b0bb7737815] socks connection closed\n2025-07-15 17:06:20.941 [info] [command][369d6464-e43f-41b7-a66f-6b9f7c310489] Socket close event received\n2025-07-15 17:06:20.959 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59914 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:07:20.943 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:07:20.946 [info] [command][35c1ebb5-2741-4ef1-a817-9a6672308ac2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""35c1ebb5-2741-4ef1-a817-9a6672308ac2""}\n2025-07-15 17:07:20.946 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b4f09570-3b06-434b-b143-79d64b89dbc2] received connection request\n2025-07-15 17:07:20.947 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:07:20.965 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b4f09570-3b06-434b-b143-79d64b89dbc2] socks forwarding established\n2025-07-15 17:07:20.998 [info] [command][35c1ebb5-2741-4ef1-a817-9a6672308ac2] Process exited with code 0\n2025-07-15 17:07:20.998 [info] [command][35c1ebb5-2741-4ef1-a817-9a6672308ac2] Socket close event received\n2025-07-15 17:07:21.002 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b4f09570-3b06-434b-b143-79d64b89dbc2] socks connection closed\n2025-07-15 17:07:21.018 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59951 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:08:21.003 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:08:21.006 [info] [command][b6d0dcdb-9d35-4854-84b4-0d12125829e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b6d0dcdb-9d35-4854-84b4-0d12125829e2""}\n2025-07-15 17:08:21.007 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8bb111b2-225f-48d4-947a-b9adfceb8f85] received connection request\n2025-07-15 17:08:21.007 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:08:21.102 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8bb111b2-225f-48d4-947a-b9adfceb8f85] socks forwarding established\n2025-07-15 17:08:21.138 [info] [command][b6d0dcdb-9d35-4854-84b4-0d12125829e2] Process exited with code 0\n2025-07-15 17:08:21.139 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8bb111b2-225f-48d4-947a-b9adfceb8f85] socks connection closed\n2025-07-15 17:08:21.139 [info] [command][b6d0dcdb-9d35-4854-84b4-0d12125829e2] Socket close event received\n2025-07-15 17:08:21.156 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 59971 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:09:21.140 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:09:21.142 [info] [command][aa06bb53-1942-4112-98af-62c87a19e12e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""aa06bb53-1942-4112-98af-62c87a19e12e""}\n2025-07-15 17:09:21.143 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][32f2b22b-9c3f-4ee6-b9a2-5a97448045f0] received connection request\n2025-07-15 17:09:21.144 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:09:21.163 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][32f2b22b-9c3f-4ee6-b9a2-5a97448045f0] socks forwarding established\n2025-07-15 17:09:21.194 [info] [command][aa06bb53-1942-4112-98af-62c87a19e12e] Process exited with code 0\n2025-07-15 17:09:21.194 [info] [command][aa06bb53-1942-4112-98af-62c87a19e12e] Socket close event received\n2025-07-15 17:09:21.195 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][32f2b22b-9c3f-4ee6-b9a2-5a97448045f0] socks connection closed\n2025-07-15 17:09:21.212 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60012 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:10:21.200 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:10:21.202 [info] [command][fa37ae22-8b4b-43d2-b723-622e1e78906b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fa37ae22-8b4b-43d2-b723-622e1e78906b""}\n2025-07-15 17:10:21.203 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4a09eebd-f5c6-476b-88af-5d48329764d1] received connection request\n2025-07-15 17:10:21.204 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:10:21.222 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4a09eebd-f5c6-476b-88af-5d48329764d1] socks forwarding established\n2025-07-15 17:10:21.257 [info] [command][fa37ae22-8b4b-43d2-b723-622e1e78906b] Process exited with code 0\n2025-07-15 17:10:21.257 [info] [command][fa37ae22-8b4b-43d2-b723-622e1e78906b] Socket close event received\n2025-07-15 17:10:21.258 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4a09eebd-f5c6-476b-88af-5d48329764d1] socks connection closed\n2025-07-15 17:10:21.275 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60038 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:11:21.261 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:11:21.263 [info] [command][c8c86eb0-ba51-4a38-a0b2-222a45a36e1d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c8c86eb0-ba51-4a38-a0b2-222a45a36e1d""}\n2025-07-15 17:11:21.263 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][21a7de42-071e-4e8b-9704-41ebc755c54e] received connection request\n2025-07-15 17:11:21.264 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:11:21.346 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][21a7de42-071e-4e8b-9704-41ebc755c54e] socks forwarding established\n2025-07-15 17:11:21.378 [info] [command][c8c86eb0-ba51-4a38-a0b2-222a45a36e1d] Process exited with code 0\n2025-07-15 17:11:21.378 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][21a7de42-071e-4e8b-9704-41ebc755c54e] socks connection closed\n2025-07-15 17:11:21.378 [info] [command][c8c86eb0-ba51-4a38-a0b2-222a45a36e1d] Socket close event received\n2025-07-15 17:11:21.443 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60103 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:12:21.383 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:12:21.385 [info] [command][13f16a42-0331-468e-920e-8b9e1f10b85f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""13f16a42-0331-468e-920e-8b9e1f10b85f""}\n2025-07-15 17:12:21.385 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][81cd0643-6489-4451-9c62-e03524f98d2f] received connection request\n2025-07-15 17:12:21.385 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:12:21.403 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][81cd0643-6489-4451-9c62-e03524f98d2f] socks forwarding established\n2025-07-15 17:12:21.436 [info] [command][13f16a42-0331-468e-920e-8b9e1f10b85f] Process exited with code 0\n2025-07-15 17:12:21.436 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][81cd0643-6489-4451-9c62-e03524f98d2f] socks connection closed\n2025-07-15 17:12:21.436 [info] [command][13f16a42-0331-468e-920e-8b9e1f10b85f] Socket close event received\n2025-07-15 17:12:21.456 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60146 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:13:21.437 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:13:21.439 [info] [command][a195059a-14a2-4526-9dd0-0778a0a81e4c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a195059a-14a2-4526-9dd0-0778a0a81e4c""}\n2025-07-15 17:13:21.439 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5ff20f3f-d90a-4543-ac00-71d20fedf21c] received connection request\n2025-07-15 17:13:21.440 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:13:21.502 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5ff20f3f-d90a-4543-ac00-71d20fedf21c] socks forwarding established\n2025-07-15 17:13:21.588 [info] [command][a195059a-14a2-4526-9dd0-0778a0a81e4c] Process exited with code 0\n2025-07-15 17:13:21.588 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5ff20f3f-d90a-4543-ac00-71d20fedf21c] socks connection closed\n2025-07-15 17:13:21.588 [info] [command][a195059a-14a2-4526-9dd0-0778a0a81e4c] Socket close event received\n2025-07-15 17:13:21.738 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60172 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:14:21.592 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:14:21.594 [info] [command][5ebe7046-4b3e-4191-bb09-00622efa89f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5ebe7046-4b3e-4191-bb09-00622efa89f5""}\n2025-07-15 17:14:21.594 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9f46b6e8-1543-47cb-9c5d-d71f98ffe1e6] received connection request\n2025-07-15 17:14:21.595 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:14:21.612 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9f46b6e8-1543-47cb-9c5d-d71f98ffe1e6] socks forwarding established\n2025-07-15 17:14:21.657 [info] [command][5ebe7046-4b3e-4191-bb09-00622efa89f5] Process exited with code 0\n2025-07-15 17:14:21.657 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9f46b6e8-1543-47cb-9c5d-d71f98ffe1e6] socks connection closed\n2025-07-15 17:14:21.657 [info] [command][5ebe7046-4b3e-4191-bb09-00622efa89f5] Socket close event received\n2025-07-15 17:14:21.674 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60218 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:15:21.661 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:15:21.663 [info] [command][d61d1863-7a6b-43de-a830-f2963aed6402] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d61d1863-7a6b-43de-a830-f2963aed6402""}\n2025-07-15 17:15:21.664 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6d7d844c-1101-4597-bb9d-2206ee37db7a] received connection request\n2025-07-15 17:15:21.665 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:15:21.683 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6d7d844c-1101-4597-bb9d-2206ee37db7a] socks forwarding established\n2025-07-15 17:15:21.715 [info] [command][d61d1863-7a6b-43de-a830-f2963aed6402] Process exited with code 0\n2025-07-15 17:15:21.716 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6d7d844c-1101-4597-bb9d-2206ee37db7a] socks connection closed\n2025-07-15 17:15:21.716 [info] [command][d61d1863-7a6b-43de-a830-f2963aed6402] Socket close event received\n2025-07-15 17:15:21.734 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60253 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:16:21.719 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:16:21.721 [info] [command][f44f5981-2814-418d-b3bd-8a1565a27b4f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f44f5981-2814-418d-b3bd-8a1565a27b4f""}\n2025-07-15 17:16:21.722 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0c7544da-8ae4-44d8-816f-deb132f5d5f2] received connection request\n2025-07-15 17:16:21.723 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:16:21.785 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0c7544da-8ae4-44d8-816f-deb132f5d5f2] socks forwarding established\n2025-07-15 17:16:21.817 [info] [command][f44f5981-2814-418d-b3bd-8a1565a27b4f] Process exited with code 0\n2025-07-15 17:16:21.817 [info] [command][f44f5981-2814-418d-b3bd-8a1565a27b4f] Socket close event received\n2025-07-15 17:16:21.818 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0c7544da-8ae4-44d8-816f-deb132f5d5f2] socks connection closed\n2025-07-15 17:16:21.963 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60298 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:17:21.823 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:17:21.824 [info] [command][3976acff-4b4f-4db1-b5ab-5b50d07f7383] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""3976acff-4b4f-4db1-b5ab-5b50d07f7383""}\n2025-07-15 17:17:21.825 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][aed16e8a-ef17-46a8-8581-768ae2855b35] received connection request\n2025-07-15 17:17:21.825 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:17:21.901 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][aed16e8a-ef17-46a8-8581-768ae2855b35] socks forwarding established\n2025-07-15 17:17:22.051 [info] [command][3976acff-4b4f-4db1-b5ab-5b50d07f7383] Process exited with code 0\n2025-07-15 17:17:22.052 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][aed16e8a-ef17-46a8-8581-768ae2855b35] socks connection closed\n2025-07-15 17:17:22.052 [info] [command][3976acff-4b4f-4db1-b5ab-5b50d07f7383] Socket close event received\n2025-07-15 17:17:22.356 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60332 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:18:22.057 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:18:22.058 [info] [command][b3271671-c95f-4ddd-992c-e5d7343c82d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b3271671-c95f-4ddd-992c-e5d7343c82d7""}\n2025-07-15 17:18:22.059 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6999fb36-1f0f-40a5-b1d7-b84f7aa63d7a] received connection request\n2025-07-15 17:18:22.059 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 17:18:22.059 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:18:22.175 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6999fb36-1f0f-40a5-b1d7-b84f7aa63d7a] socks forwarding established\n2025-07-15 17:18:22.244 [info] [command][b3271671-c95f-4ddd-992c-e5d7343c82d7] Process exited with code 0\n2025-07-15 17:18:22.245 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6999fb36-1f0f-40a5-b1d7-b84f7aa63d7a] socks connection closed\n2025-07-15 17:18:22.245 [info] [command][b3271671-c95f-4ddd-992c-e5d7343c82d7] Socket close event received\n2025-07-15 17:18:22.264 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60352 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:19:22.247 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:19:22.248 [info] [command][a7318830-b661-442e-b0de-b29fa33306ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a7318830-b661-442e-b0de-b29fa33306ed""}\n2025-07-15 17:19:22.249 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9a11571e-e68d-4ef9-8952-00e3f40850f7] received connection request\n2025-07-15 17:19:22.249 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:19:22.346 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9a11571e-e68d-4ef9-8952-00e3f40850f7] socks forwarding established\n2025-07-15 17:19:22.377 [info] [command][a7318830-b661-442e-b0de-b29fa33306ed] Process exited with code 0\n2025-07-15 17:19:22.377 [info] [command][a7318830-b661-442e-b0de-b29fa33306ed] Socket close event received\n2025-07-15 17:19:22.381 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9a11571e-e68d-4ef9-8952-00e3f40850f7] socks connection closed\n2025-07-15 17:19:22.445 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60395 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:20:22.381 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:20:22.384 [info] [command][8d5d4cfd-074f-4b67-8281-10b60a0362f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8d5d4cfd-074f-4b67-8281-10b60a0362f3""}\n2025-07-15 17:20:22.385 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f3879b3e-7f97-4fd1-8539-4434306ee4a0] received connection request\n2025-07-15 17:20:22.386 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:20:22.410 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f3879b3e-7f97-4fd1-8539-4434306ee4a0] socks forwarding established\n2025-07-15 17:20:22.440 [info] [command][8d5d4cfd-074f-4b67-8281-10b60a0362f3] Process exited with code 0\n2025-07-15 17:20:22.441 [info] [command][8d5d4cfd-074f-4b67-8281-10b60a0362f3] Socket close event received\n2025-07-15 17:20:22.441 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f3879b3e-7f97-4fd1-8539-4434306ee4a0] socks connection closed\n2025-07-15 17:20:22.460 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60430 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:21:22.447 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:21:22.449 [info] [command][7daf0022-c8f9-406f-8450-86c53f2839f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7daf0022-c8f9-406f-8450-86c53f2839f8""}\n2025-07-15 17:21:22.450 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][7615e6b3-80f2-4711-aede-40c5f232280a] received connection request\n2025-07-15 17:21:22.450 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:21:22.468 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7615e6b3-80f2-4711-aede-40c5f232280a] socks forwarding established\n2025-07-15 17:21:22.505 [info] [command][7daf0022-c8f9-406f-8450-86c53f2839f8] Process exited with code 0\n2025-07-15 17:21:22.505 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][7615e6b3-80f2-4711-aede-40c5f232280a] socks connection closed\n2025-07-15 17:21:22.506 [info] [command][7daf0022-c8f9-406f-8450-86c53f2839f8] Socket close event received\n2025-07-15 17:21:22.523 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60485 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:22:22.510 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:22:22.512 [info] [command][9cdc2bab-b8fb-4c3e-9fd1-23cc5eccd57f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9cdc2bab-b8fb-4c3e-9fd1-23cc5eccd57f""}\n2025-07-15 17:22:22.512 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][51605e4c-ec90-4c5d-b80a-3f4c6580b9f8] received connection request\n2025-07-15 17:22:22.513 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:22:22.529 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][51605e4c-ec90-4c5d-b80a-3f4c6580b9f8] socks forwarding established\n2025-07-15 17:22:22.559 [info] [command][9cdc2bab-b8fb-4c3e-9fd1-23cc5eccd57f] Process exited with code 0\n2025-07-15 17:22:22.559 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][51605e4c-ec90-4c5d-b80a-3f4c6580b9f8] socks connection closed\n2025-07-15 17:22:22.559 [info] [command][9cdc2bab-b8fb-4c3e-9fd1-23cc5eccd57f] Socket close event received\n2025-07-15 17:22:22.575 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60538 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:23:22.562 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:23:22.563 [info] [command][9a669a3b-c95b-48ab-a514-8bba29e3cd6f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9a669a3b-c95b-48ab-a514-8bba29e3cd6f""}\n2025-07-15 17:23:22.564 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c343a2ea-26fa-440e-8fe6-58eccf7d2fdd] received connection request\n2025-07-15 17:23:22.564 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 17:23:22.564 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:23:22.582 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c343a2ea-26fa-440e-8fe6-58eccf7d2fdd] socks forwarding established\n2025-07-15 17:23:22.611 [info] [command][9a669a3b-c95b-48ab-a514-8bba29e3cd6f] Process exited with code 0\n2025-07-15 17:23:22.611 [info] [command][9a669a3b-c95b-48ab-a514-8bba29e3cd6f] Socket close event received\n2025-07-15 17:23:22.612 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c343a2ea-26fa-440e-8fe6-58eccf7d2fdd] socks connection closed\n2025-07-15 17:23:22.628 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60566 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:24:22.618 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:24:22.619 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4df92855-e8c6-4804-9f7a-90f4d7af2170] received connection request\n2025-07-15 17:24:22.620 [info] [command][6f726001-e572-447a-ad16-3debc62a02cc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6f726001-e572-447a-ad16-3debc62a02cc""}\n2025-07-15 17:24:22.620 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:24:22.636 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4df92855-e8c6-4804-9f7a-90f4d7af2170] socks forwarding established\n2025-07-15 17:24:22.670 [info] [command][6f726001-e572-447a-ad16-3debc62a02cc] Process exited with code 0\n2025-07-15 17:24:22.670 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4df92855-e8c6-4804-9f7a-90f4d7af2170] socks connection closed\n2025-07-15 17:24:22.671 [info] [command][6f726001-e572-447a-ad16-3debc62a02cc] Socket close event received\n2025-07-15 17:24:22.687 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60625 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:25:22.675 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:25:22.678 [info] [command][9e7b70a6-1793-4184-b5a1-5afdf5d8c835] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9e7b70a6-1793-4184-b5a1-5afdf5d8c835""}\n2025-07-15 17:25:22.679 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][36909f22-865a-48c0-80ef-fb58b5c2c79d] received connection request\n2025-07-15 17:25:22.680 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:25:22.697 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][36909f22-865a-48c0-80ef-fb58b5c2c79d] socks forwarding established\n2025-07-15 17:25:22.735 [info] [command][9e7b70a6-1793-4184-b5a1-5afdf5d8c835] Process exited with code 0\n2025-07-15 17:25:22.735 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][36909f22-865a-48c0-80ef-fb58b5c2c79d] socks connection closed\n2025-07-15 17:25:22.735 [info] [command][9e7b70a6-1793-4184-b5a1-5afdf5d8c835] Socket close event received\n2025-07-15 17:25:22.751 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60687 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:26:22.740 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:26:22.742 [info] [command][e024e09a-89b7-40da-9d59-24b17c89f304] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e024e09a-89b7-40da-9d59-24b17c89f304""}\n2025-07-15 17:26:22.743 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e9f6fa67-4bdc-4e8e-a40e-6ea2a3e09472] received connection request\n2025-07-15 17:26:22.743 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:26:22.763 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e9f6fa67-4bdc-4e8e-a40e-6ea2a3e09472] socks forwarding established\n2025-07-15 17:26:22.794 [info] [command][e024e09a-89b7-40da-9d59-24b17c89f304] Process exited with code 0\n2025-07-15 17:26:22.794 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e9f6fa67-4bdc-4e8e-a40e-6ea2a3e09472] socks connection closed\n2025-07-15 17:26:22.794 [info] [command][e024e09a-89b7-40da-9d59-24b17c89f304] Socket close event received\n2025-07-15 17:26:22.810 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60734 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:27:22.796 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:27:22.798 [info] [command][132f0627-8878-43f2-b129-1524e2bf5014] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""132f0627-8878-43f2-b129-1524e2bf5014""}\n2025-07-15 17:27:22.799 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1749b0f0-836e-4f3b-a567-501b6c5443a3] received connection request\n2025-07-15 17:27:22.800 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:27:22.819 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1749b0f0-836e-4f3b-a567-501b6c5443a3] socks forwarding established\n2025-07-15 17:27:22.849 [info] [command][132f0627-8878-43f2-b129-1524e2bf5014] Process exited with code 0\n2025-07-15 17:27:22.850 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1749b0f0-836e-4f3b-a567-501b6c5443a3] socks connection closed\n2025-07-15 17:27:22.850 [info] [command][132f0627-8878-43f2-b129-1524e2bf5014] Socket close event received\n2025-07-15 17:27:22.868 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60775 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:28:22.855 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:28:22.858 [info] [command][33be13b7-f709-46ad-b0e4-7c144601380b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""33be13b7-f709-46ad-b0e4-7c144601380b""}\n2025-07-15 17:28:22.859 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][770c65a5-c97f-44e9-bb1a-489aa6231931] received connection request\n2025-07-15 17:28:22.860 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:28:22.884 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][770c65a5-c97f-44e9-bb1a-489aa6231931] socks forwarding established\n2025-07-15 17:28:22.916 [info] [command][33be13b7-f709-46ad-b0e4-7c144601380b] Process exited with code 0\n2025-07-15 17:28:22.916 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][770c65a5-c97f-44e9-bb1a-489aa6231931] socks connection closed\n2025-07-15 17:28:22.916 [info] [command][33be13b7-f709-46ad-b0e4-7c144601380b] Socket close event received\n2025-07-15 17:28:22.933 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60804 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:29:22.918 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:29:22.919 [info] [command][845a3284-d53e-4599-a70b-de6241bf81b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""845a3284-d53e-4599-a70b-de6241bf81b7""}\n2025-07-15 17:29:22.920 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ad001a92-d807-4317-9169-7dcc698b6280] received connection request\n2025-07-15 17:29:22.920 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:29:22.953 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ad001a92-d807-4317-9169-7dcc698b6280] socks forwarding established\n2025-07-15 17:29:22.985 [info] [command][845a3284-d53e-4599-a70b-de6241bf81b7] Process exited with code 0\n2025-07-15 17:29:22.985 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ad001a92-d807-4317-9169-7dcc698b6280] socks connection closed\n2025-07-15 17:29:22.985 [info] [command][845a3284-d53e-4599-a70b-de6241bf81b7] Socket close event received\n2025-07-15 17:29:23.001 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60850 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:30:22.987 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:30:22.989 [info] [command][41febb20-ea64-4af8-8403-fe394ff7b903] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""41febb20-ea64-4af8-8403-fe394ff7b903""}\n2025-07-15 17:30:22.990 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c4c4ed5b-5270-48d7-8e76-444d581ff170] received connection request\n2025-07-15 17:30:22.991 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:30:23.009 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c4c4ed5b-5270-48d7-8e76-444d581ff170] socks forwarding established\n2025-07-15 17:30:23.040 [info] [command][41febb20-ea64-4af8-8403-fe394ff7b903] Process exited with code 0\n2025-07-15 17:30:23.041 [info] [command][41febb20-ea64-4af8-8403-fe394ff7b903] Socket close event received\n2025-07-15 17:30:23.042 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c4c4ed5b-5270-48d7-8e76-444d581ff170] socks connection closed\n2025-07-15 17:30:23.058 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60878 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:31:23.045 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:31:23.046 [info] [command][a8f80eac-95fd-419f-81fa-3259bab34b0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a8f80eac-95fd-419f-81fa-3259bab34b0a""}\n2025-07-15 17:31:23.046 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f8b499a1-f9cf-42af-9d99-76865b28bc02] received connection request\n2025-07-15 17:31:23.046 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:31:23.063 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f8b499a1-f9cf-42af-9d99-76865b28bc02] socks forwarding established\n2025-07-15 17:31:23.093 [info] [command][a8f80eac-95fd-419f-81fa-3259bab34b0a] Process exited with code 0\n2025-07-15 17:31:23.093 [info] [command][a8f80eac-95fd-419f-81fa-3259bab34b0a] Socket close event received\n2025-07-15 17:31:23.093 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f8b499a1-f9cf-42af-9d99-76865b28bc02] socks connection closed\n2025-07-15 17:31:23.113 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60919 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:32:23.094 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:32:23.096 [info] [command][e30475c5-9e42-4976-9899-50e01a40f5d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e30475c5-9e42-4976-9899-50e01a40f5d1""}\n2025-07-15 17:32:23.096 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e8e4ce9f-1dfc-4f52-bd32-d5e4623e9f34] received connection request\n2025-07-15 17:32:23.096 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:32:23.128 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e8e4ce9f-1dfc-4f52-bd32-d5e4623e9f34] socks forwarding established\n2025-07-15 17:32:23.162 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e8e4ce9f-1dfc-4f52-bd32-d5e4623e9f34] socks connection closed\n2025-07-15 17:32:23.162 [info] [command][e30475c5-9e42-4976-9899-50e01a40f5d1] Process exited with code 0\n2025-07-15 17:32:23.162 [info] [command][e30475c5-9e42-4976-9899-50e01a40f5d1] Socket close event received\n2025-07-15 17:32:23.293 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60962 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:33:23.167 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:33:23.169 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3ade19e8-a3ff-4c46-94aa-2dcb2c399fe5] received connection request\n2025-07-15 17:33:23.169 [info] [command][c355bcdf-3756-4e77-8511-4185ca760b7d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c355bcdf-3756-4e77-8511-4185ca760b7d""}\n2025-07-15 17:33:23.169 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:33:23.322 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3ade19e8-a3ff-4c46-94aa-2dcb2c399fe5] socks forwarding established\n2025-07-15 17:33:23.358 [info] [command][c355bcdf-3756-4e77-8511-4185ca760b7d] Process exited with code 0\n2025-07-15 17:33:23.358 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3ade19e8-a3ff-4c46-94aa-2dcb2c399fe5] socks connection closed\n2025-07-15 17:33:23.359 [info] [command][c355bcdf-3756-4e77-8511-4185ca760b7d] Socket close event received\n2025-07-15 17:33:23.385 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 60980 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:34:23.359 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:34:23.361 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d3a590fb-2b09-4fe4-838b-9af2d609bccc] received connection request\n2025-07-15 17:34:23.362 [info] [command][7771241c-c297-408f-9a73-72ed80c0bb7d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7771241c-c297-408f-9a73-72ed80c0bb7d""}\n2025-07-15 17:34:23.362 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:34:23.383 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d3a590fb-2b09-4fe4-838b-9af2d609bccc] socks forwarding established\n2025-07-15 17:34:23.424 [info] [command][7771241c-c297-408f-9a73-72ed80c0bb7d] Process exited with code 0\n2025-07-15 17:34:23.425 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d3a590fb-2b09-4fe4-838b-9af2d609bccc] socks connection closed\n2025-07-15 17:34:23.425 [info] [command][7771241c-c297-408f-9a73-72ed80c0bb7d] Socket close event received\n2025-07-15 17:34:23.446 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61024 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:35:23.426 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:35:23.429 [info] [command][e43bdfc3-aac5-42ef-a915-ec2ff3157ed3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e43bdfc3-aac5-42ef-a915-ec2ff3157ed3""}\n2025-07-15 17:35:23.430 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e37e1309-2b0b-4ece-827b-2ebcfe18673e] received connection request\n2025-07-15 17:35:23.431 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:35:23.456 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e37e1309-2b0b-4ece-827b-2ebcfe18673e] socks forwarding established\n2025-07-15 17:35:23.489 [info] [command][e43bdfc3-aac5-42ef-a915-ec2ff3157ed3] Process exited with code 0\n2025-07-15 17:35:23.490 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e37e1309-2b0b-4ece-827b-2ebcfe18673e] socks connection closed\n2025-07-15 17:35:23.490 [info] [command][e43bdfc3-aac5-42ef-a915-ec2ff3157ed3] Socket close event received\n2025-07-15 17:35:23.507 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61054 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:36:23.494 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:36:23.497 [info] [command][79356118-225e-4a1b-9ac4-fcf2153247fb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""79356118-225e-4a1b-9ac4-fcf2153247fb""}\n2025-07-15 17:36:23.498 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ba64cac3-2762-4905-acee-23d274be7105] received connection request\n2025-07-15 17:36:23.498 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 17:36:23.499 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:36:23.516 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ba64cac3-2762-4905-acee-23d274be7105] socks forwarding established\n2025-07-15 17:36:23.550 [info] [command][79356118-225e-4a1b-9ac4-fcf2153247fb] Process exited with code 0\n2025-07-15 17:36:23.550 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ba64cac3-2762-4905-acee-23d274be7105] socks connection closed\n2025-07-15 17:36:23.550 [info] [command][79356118-225e-4a1b-9ac4-fcf2153247fb] Socket close event received\n2025-07-15 17:36:23.566 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61096 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:37:23.551 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:37:23.553 [info] [command][fc2e32a7-b96e-4908-9731-0832a800ced8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fc2e32a7-b96e-4908-9731-0832a800ced8""}\n2025-07-15 17:37:23.554 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1ccea9ce-1586-425f-b0e3-ca165438cf12] received connection request\n2025-07-15 17:37:23.554 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:37:23.576 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1ccea9ce-1586-425f-b0e3-ca165438cf12] socks forwarding established\n2025-07-15 17:37:23.612 [info] [command][fc2e32a7-b96e-4908-9731-0832a800ced8] Process exited with code 0\n2025-07-15 17:37:23.612 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1ccea9ce-1586-425f-b0e3-ca165438cf12] socks connection closed\n2025-07-15 17:37:23.612 [info] [command][fc2e32a7-b96e-4908-9731-0832a800ced8] Socket close event received\n2025-07-15 17:37:23.628 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61134 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:38:23.617 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:38:23.620 [info] [command][afe8aa15-72f5-4893-99f8-c43536791ebc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""afe8aa15-72f5-4893-99f8-c43536791ebc""}\n2025-07-15 17:38:23.621 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][181be748-105d-4100-a3c9-c68c9915d95d] received connection request\n2025-07-15 17:38:23.622 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:38:23.640 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][181be748-105d-4100-a3c9-c68c9915d95d] socks forwarding established\n2025-07-15 17:38:23.670 [info] [command][afe8aa15-72f5-4893-99f8-c43536791ebc] Process exited with code 0\n2025-07-15 17:38:23.671 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][181be748-105d-4100-a3c9-c68c9915d95d] socks connection closed\n2025-07-15 17:38:23.671 [info] [command][afe8aa15-72f5-4893-99f8-c43536791ebc] Socket close event received\n2025-07-15 17:38:23.689 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61158 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:39:23.674 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:39:23.677 [info] [command][51b1dcb7-0478-4291-b4fb-dce05d6fea88] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""51b1dcb7-0478-4291-b4fb-dce05d6fea88""}\n2025-07-15 17:39:23.678 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ccbef1f4-08aa-462d-9ce3-53f64fe3e3a5] received connection request\n2025-07-15 17:39:23.678 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:39:23.696 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ccbef1f4-08aa-462d-9ce3-53f64fe3e3a5] socks forwarding established\n2025-07-15 17:39:23.728 [info] [command][51b1dcb7-0478-4291-b4fb-dce05d6fea88] Process exited with code 0\n2025-07-15 17:39:23.728 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ccbef1f4-08aa-462d-9ce3-53f64fe3e3a5] socks connection closed\n2025-07-15 17:39:23.728 [info] [command][51b1dcb7-0478-4291-b4fb-dce05d6fea88] Socket close event received\n2025-07-15 17:39:23.745 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61201 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:40:23.732 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:40:23.734 [info] [command][46ca953e-1ee7-4be7-a6a5-fae9cf18252f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""46ca953e-1ee7-4be7-a6a5-fae9cf18252f""}\n2025-07-15 17:40:23.735 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][01a97761-010f-443c-8432-889be38506c3] received connection request\n2025-07-15 17:40:23.735 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:40:23.753 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][01a97761-010f-443c-8432-889be38506c3] socks forwarding established\n2025-07-15 17:40:23.782 [info] [command][46ca953e-1ee7-4be7-a6a5-fae9cf18252f] Process exited with code 0\n2025-07-15 17:40:23.783 [info] [command][46ca953e-1ee7-4be7-a6a5-fae9cf18252f] Socket close event received\n2025-07-15 17:40:23.783 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][01a97761-010f-443c-8432-889be38506c3] socks connection closed\n2025-07-15 17:40:23.799 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61226 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:41:23.784 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:41:23.787 [info] [command][285edf0d-6490-409f-8511-e0ae2e58f35d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""285edf0d-6490-409f-8511-e0ae2e58f35d""}\n2025-07-15 17:41:23.787 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][93c7d278-c13d-487d-96d0-60ae2be195cb] received connection request\n2025-07-15 17:41:23.788 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:41:23.821 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][93c7d278-c13d-487d-96d0-60ae2be195cb] socks forwarding established\n2025-07-15 17:41:23.850 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][93c7d278-c13d-487d-96d0-60ae2be195cb] socks connection closed\n2025-07-15 17:41:23.850 [info] [command][285edf0d-6490-409f-8511-e0ae2e58f35d] Process exited with code 0\n2025-07-15 17:41:23.851 [info] [command][285edf0d-6490-409f-8511-e0ae2e58f35d] Socket close event received\n2025-07-15 17:41:23.868 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61283 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:42:23.855 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:42:23.856 [info] [command][61078cef-d86e-479b-946c-963f47574325] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""61078cef-d86e-479b-946c-963f47574325""}\n2025-07-15 17:42:23.857 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fcae1938-3caa-48d4-ad5a-701999401ae6] received connection request\n2025-07-15 17:42:23.857 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:42:23.873 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fcae1938-3caa-48d4-ad5a-701999401ae6] socks forwarding established\n2025-07-15 17:42:23.901 [info] [command][61078cef-d86e-479b-946c-963f47574325] Process exited with code 0\n2025-07-15 17:42:23.901 [info] [command][61078cef-d86e-479b-946c-963f47574325] Socket close event received\n2025-07-15 17:42:23.903 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fcae1938-3caa-48d4-ad5a-701999401ae6] socks connection closed\n2025-07-15 17:42:23.917 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61335 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:43:23.903 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:43:23.905 [info] [command][1ba41098-44de-44ee-b2bb-175308c67fed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1ba41098-44de-44ee-b2bb-175308c67fed""}\n2025-07-15 17:43:23.905 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c8860ce9-9312-4c9b-b8f0-629d2363a305] received connection request\n2025-07-15 17:43:23.906 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:43:23.923 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c8860ce9-9312-4c9b-b8f0-629d2363a305] socks forwarding established\n2025-07-15 17:43:23.955 [info] [command][1ba41098-44de-44ee-b2bb-175308c67fed] Process exited with code 0\n2025-07-15 17:43:23.955 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c8860ce9-9312-4c9b-b8f0-629d2363a305] socks connection closed\n2025-07-15 17:43:23.955 [info] [command][1ba41098-44de-44ee-b2bb-175308c67fed] Socket close event received\n2025-07-15 17:43:23.974 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61383 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:44:23.959 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:44:23.961 [info] [command][70e01117-9739-4147-a296-cf93471687fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""70e01117-9739-4147-a296-cf93471687fe""}\n2025-07-15 17:44:23.962 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][42e44f94-4cfb-47c7-b52f-7c3ebc30b597] received connection request\n2025-07-15 17:44:23.962 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:44:23.983 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][42e44f94-4cfb-47c7-b52f-7c3ebc30b597] socks forwarding established\n2025-07-15 17:44:24.017 [info] [command][70e01117-9739-4147-a296-cf93471687fe] Process exited with code 0\n2025-07-15 17:44:24.018 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][42e44f94-4cfb-47c7-b52f-7c3ebc30b597] socks connection closed\n2025-07-15 17:44:24.018 [info] [command][70e01117-9739-4147-a296-cf93471687fe] Socket close event received\n2025-07-15 17:44:24.037 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61426 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:45:24.019 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:45:24.021 [info] [command][e0f5f8f0-0746-4899-b833-abe408779637] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e0f5f8f0-0746-4899-b833-abe408779637""}\n2025-07-15 17:45:24.022 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8faa5b52-98c5-45a9-ada4-45078c9d0df1] received connection request\n2025-07-15 17:45:24.023 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:45:24.046 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8faa5b52-98c5-45a9-ada4-45078c9d0df1] socks forwarding established\n2025-07-15 17:45:24.077 [info] [command][e0f5f8f0-0746-4899-b833-abe408779637] Process exited with code 0\n2025-07-15 17:45:24.077 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8faa5b52-98c5-45a9-ada4-45078c9d0df1] socks connection closed\n2025-07-15 17:45:24.077 [info] [command][e0f5f8f0-0746-4899-b833-abe408779637] Socket close event received\n2025-07-15 17:45:24.096 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61454 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:46:24.082 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:46:24.084 [info] [command][fb898120-109c-4af7-a2e8-5209e5796c44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fb898120-109c-4af7-a2e8-5209e5796c44""}\n2025-07-15 17:46:24.085 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1676f00d-0afd-42b3-8c22-c5e8abe17bdb] received connection request\n2025-07-15 17:46:24.085 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 17:46:24.085 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:46:24.102 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1676f00d-0afd-42b3-8c22-c5e8abe17bdb] socks forwarding established\n2025-07-15 17:46:24.133 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1676f00d-0afd-42b3-8c22-c5e8abe17bdb] socks connection closed\n2025-07-15 17:46:24.133 [info] [command][fb898120-109c-4af7-a2e8-5209e5796c44] Process exited with code 0\n2025-07-15 17:46:24.133 [info] [command][fb898120-109c-4af7-a2e8-5209e5796c44] Socket close event received\n2025-07-15 17:46:24.151 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61495 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:47:24.136 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:47:24.138 [info] [command][f8e393fd-fee4-44c3-b18e-3ca02eda2095] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f8e393fd-fee4-44c3-b18e-3ca02eda2095""}\n2025-07-15 17:47:24.139 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2f612e1a-ec00-49cb-a778-e9ccc0b2bb01] received connection request\n2025-07-15 17:47:24.140 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:47:24.168 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2f612e1a-ec00-49cb-a778-e9ccc0b2bb01] socks forwarding established\n2025-07-15 17:47:24.194 [info] [command][f8e393fd-fee4-44c3-b18e-3ca02eda2095] Process exited with code 0\n2025-07-15 17:47:24.194 [info] [command][f8e393fd-fee4-44c3-b18e-3ca02eda2095] Socket close event received\n2025-07-15 17:47:24.195 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2f612e1a-ec00-49cb-a778-e9ccc0b2bb01] socks connection closed\n2025-07-15 17:47:24.212 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61533 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:48:24.200 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:48:24.203 [info] [command][b2220d24-883b-4937-8d63-6ba5064ccb5e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b2220d24-883b-4937-8d63-6ba5064ccb5e""}\n2025-07-15 17:48:24.203 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9447240f-4d02-4206-9128-c5d9eafec30e] received connection request\n2025-07-15 17:48:24.204 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:48:24.221 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9447240f-4d02-4206-9128-c5d9eafec30e] socks forwarding established\n2025-07-15 17:48:24.254 [info] [command][b2220d24-883b-4937-8d63-6ba5064ccb5e] Process exited with code 0\n2025-07-15 17:48:24.255 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9447240f-4d02-4206-9128-c5d9eafec30e] socks connection closed\n2025-07-15 17:48:24.255 [info] [command][b2220d24-883b-4937-8d63-6ba5064ccb5e] Socket close event received\n2025-07-15 17:48:24.272 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61554 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:49:24.260 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:49:24.262 [info] [command][1ac65b4a-c6a0-4aee-9249-ca2fd02cc063] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1ac65b4a-c6a0-4aee-9249-ca2fd02cc063""}\n2025-07-15 17:49:24.263 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fb7993a6-bb24-454f-97db-45901de12caf] received connection request\n2025-07-15 17:49:24.263 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:49:24.280 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fb7993a6-bb24-454f-97db-45901de12caf] socks forwarding established\n2025-07-15 17:49:24.311 [info] [command][1ac65b4a-c6a0-4aee-9249-ca2fd02cc063] Process exited with code 0\n2025-07-15 17:49:24.312 [info] [command][1ac65b4a-c6a0-4aee-9249-ca2fd02cc063] Socket close event received\n2025-07-15 17:49:24.312 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fb7993a6-bb24-454f-97db-45901de12caf] socks connection closed\n2025-07-15 17:49:24.328 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61592 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:50:24.315 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:50:24.316 [info] [command][5cf0c7b4-882e-4535-b073-f5b39263966f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5cf0c7b4-882e-4535-b073-f5b39263966f""}\n2025-07-15 17:50:24.316 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f796ab71-1f13-4024-a498-0b4bcb200f3b] received connection request\n2025-07-15 17:50:24.316 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:50:24.338 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f796ab71-1f13-4024-a498-0b4bcb200f3b] socks forwarding established\n2025-07-15 17:50:24.372 [info] [command][5cf0c7b4-882e-4535-b073-f5b39263966f] Process exited with code 0\n2025-07-15 17:50:24.372 [info] [command][5cf0c7b4-882e-4535-b073-f5b39263966f] Socket close event received\n2025-07-15 17:50:24.373 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f796ab71-1f13-4024-a498-0b4bcb200f3b] socks connection closed\n2025-07-15 17:50:24.388 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61618 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:51:24.375 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:51:24.377 [info] [command][1bc4937c-3328-4880-9f56-4efc33803309] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1bc4937c-3328-4880-9f56-4efc33803309""}\n2025-07-15 17:51:24.378 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0db92a8e-15a8-451f-a7fb-e6e2f390729d] received connection request\n2025-07-15 17:51:24.379 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:51:24.458 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0db92a8e-15a8-451f-a7fb-e6e2f390729d] socks forwarding established\n2025-07-15 17:51:24.489 [info] [command][1bc4937c-3328-4880-9f56-4efc33803309] Process exited with code 0\n2025-07-15 17:51:24.489 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0db92a8e-15a8-451f-a7fb-e6e2f390729d] socks connection closed\n2025-07-15 17:51:24.489 [info] [command][1bc4937c-3328-4880-9f56-4efc33803309] Socket close event received\n2025-07-15 17:51:24.585 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61700 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:52:24.494 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:52:24.496 [info] [command][c55bdda1-fc1f-4fa0-9a3e-1cc7f46c2e8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c55bdda1-fc1f-4fa0-9a3e-1cc7f46c2e8f""}\n2025-07-15 17:52:24.497 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2eb86c98-d5ea-422b-b247-08bf6a79fddc] received connection request\n2025-07-15 17:52:24.497 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:52:24.601 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2eb86c98-d5ea-422b-b247-08bf6a79fddc] socks forwarding established\n2025-07-15 17:52:24.766 [info] [command][c55bdda1-fc1f-4fa0-9a3e-1cc7f46c2e8f] Process exited with code 0\n2025-07-15 17:52:24.766 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2eb86c98-d5ea-422b-b247-08bf6a79fddc] socks connection closed\n2025-07-15 17:52:24.766 [info] [command][c55bdda1-fc1f-4fa0-9a3e-1cc7f46c2e8f] Socket close event received\n2025-07-15 17:52:24.782 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61743 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:53:24.769 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:53:24.770 [info] [command][cab24f69-6c71-42d7-95fd-036b44c04baf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cab24f69-6c71-42d7-95fd-036b44c04baf""}\n2025-07-15 17:53:24.771 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ab97964c-eaef-4254-9286-7c84fc9fd6f1] received connection request\n2025-07-15 17:53:24.771 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:53:24.812 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ab97964c-eaef-4254-9286-7c84fc9fd6f1] socks forwarding established\n2025-07-15 17:53:24.843 [info] [command][cab24f69-6c71-42d7-95fd-036b44c04baf] Process exited with code 0\n2025-07-15 17:53:24.843 [info] [command][cab24f69-6c71-42d7-95fd-036b44c04baf] Socket close event received\n2025-07-15 17:53:24.847 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ab97964c-eaef-4254-9286-7c84fc9fd6f1] socks connection closed\n2025-07-15 17:53:24.884 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61762 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:54:24.847 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:54:24.849 [info] [command][8b9ea42e-5547-4c90-8ac2-3237c4d78807] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8b9ea42e-5547-4c90-8ac2-3237c4d78807""}\n2025-07-15 17:54:24.850 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9d72e15e-5eaf-4d76-b7af-05f20d397f95] received connection request\n2025-07-15 17:54:24.850 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:54:24.867 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9d72e15e-5eaf-4d76-b7af-05f20d397f95] socks forwarding established\n2025-07-15 17:54:24.901 [info] [command][8b9ea42e-5547-4c90-8ac2-3237c4d78807] Process exited with code 0\n2025-07-15 17:54:24.901 [info] [command][8b9ea42e-5547-4c90-8ac2-3237c4d78807] Socket close event received\n2025-07-15 17:54:24.902 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9d72e15e-5eaf-4d76-b7af-05f20d397f95] socks connection closed\n2025-07-15 17:54:24.920 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61801 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:55:24.906 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:55:24.908 [info] [command][8c1d4d03-467e-4c72-8980-b0f8f6910a70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""8c1d4d03-467e-4c72-8980-b0f8f6910a70""}\n2025-07-15 17:55:24.909 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][97d1d91d-85fd-43ff-94a4-25056da5bbb8] received connection request\n2025-07-15 17:55:24.909 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:55:24.927 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][97d1d91d-85fd-43ff-94a4-25056da5bbb8] socks forwarding established\n2025-07-15 17:55:24.958 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][97d1d91d-85fd-43ff-94a4-25056da5bbb8] socks connection closed\n2025-07-15 17:55:24.958 [info] [command][8c1d4d03-467e-4c72-8980-b0f8f6910a70] Process exited with code 0\n2025-07-15 17:55:24.958 [info] [command][8c1d4d03-467e-4c72-8980-b0f8f6910a70] Socket close event received\n2025-07-15 17:55:24.975 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61822 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:56:24.961 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:56:24.963 [info] [command][4d963eb8-d5ce-4937-b04c-f150a5b03f39] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4d963eb8-d5ce-4937-b04c-f150a5b03f39""}\n2025-07-15 17:56:24.963 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3dfe0401-97a1-4117-8a3a-250639506e76] received connection request\n2025-07-15 17:56:24.963 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 17:56:24.963 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:56:25.037 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3dfe0401-97a1-4117-8a3a-250639506e76] socks forwarding established\n2025-07-15 17:56:25.066 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3dfe0401-97a1-4117-8a3a-250639506e76] socks connection closed\n2025-07-15 17:56:25.067 [info] [command][4d963eb8-d5ce-4937-b04c-f150a5b03f39] Process exited with code 0\n2025-07-15 17:56:25.067 [info] [command][4d963eb8-d5ce-4937-b04c-f150a5b03f39] Socket close event received\n2025-07-15 17:56:25.217 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61868 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:57:25.076 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:57:25.079 [info] [command][562e1b38-8da4-4ce4-ae28-d2fc5c6058e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""562e1b38-8da4-4ce4-ae28-d2fc5c6058e9""}\n2025-07-15 17:57:25.080 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][57fdcae5-1560-4bab-8c53-515ec72c1698] received connection request\n2025-07-15 17:57:25.080 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:57:25.098 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][57fdcae5-1560-4bab-8c53-515ec72c1698] socks forwarding established\n2025-07-15 17:57:25.128 [info] [command][562e1b38-8da4-4ce4-ae28-d2fc5c6058e9] Process exited with code 0\n2025-07-15 17:57:25.128 [info] [command][562e1b38-8da4-4ce4-ae28-d2fc5c6058e9] Socket close event received\n2025-07-15 17:57:25.129 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][57fdcae5-1560-4bab-8c53-515ec72c1698] socks connection closed\n2025-07-15 17:57:25.145 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61907 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:58:25.131 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:58:25.132 [info] [command][4e7a969a-fc87-4a34-932e-3d99e9dc943e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4e7a969a-fc87-4a34-932e-3d99e9dc943e""}\n2025-07-15 17:58:25.133 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9557b02e-efc9-48e0-b358-50ef5c9eecdf] received connection request\n2025-07-15 17:58:25.134 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:58:25.152 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9557b02e-efc9-48e0-b358-50ef5c9eecdf] socks forwarding established\n2025-07-15 17:58:25.182 [info] [command][4e7a969a-fc87-4a34-932e-3d99e9dc943e] Process exited with code 0\n2025-07-15 17:58:25.182 [info] [command][4e7a969a-fc87-4a34-932e-3d99e9dc943e] Socket close event received\n2025-07-15 17:58:25.183 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9557b02e-efc9-48e0-b358-50ef5c9eecdf] socks connection closed\n2025-07-15 17:58:25.203 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61932 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 17:59:25.192 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 17:59:25.195 [info] [command][e78da6d1-0dd0-40a8-be00-f52cc636f7b2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e78da6d1-0dd0-40a8-be00-f52cc636f7b2""}\n2025-07-15 17:59:25.195 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b3fd6fa4-467d-427a-bab1-e7b88c3a1884] received connection request\n2025-07-15 17:59:25.196 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 17:59:25.213 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b3fd6fa4-467d-427a-bab1-e7b88c3a1884] socks forwarding established\n2025-07-15 17:59:25.244 [info] [command][e78da6d1-0dd0-40a8-be00-f52cc636f7b2] Process exited with code 0\n2025-07-15 17:59:25.244 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b3fd6fa4-467d-427a-bab1-e7b88c3a1884] socks connection closed\n2025-07-15 17:59:25.245 [info] [command][e78da6d1-0dd0-40a8-be00-f52cc636f7b2] Socket close event received\n2025-07-15 17:59:25.265 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61966 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:00:25.253 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:00:25.255 [info] [command][bb6f7ad0-0ba4-49e7-ab36-f1a82e1ccc07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""bb6f7ad0-0ba4-49e7-ab36-f1a82e1ccc07""}\n2025-07-15 18:00:25.255 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b839f4bb-101d-432f-a94e-3a662e7aa6d3] received connection request\n2025-07-15 18:00:25.256 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:00:25.371 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b839f4bb-101d-432f-a94e-3a662e7aa6d3] socks forwarding established\n2025-07-15 18:00:25.537 [info] [command][bb6f7ad0-0ba4-49e7-ab36-f1a82e1ccc07] Process exited with code 0\n2025-07-15 18:00:25.538 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b839f4bb-101d-432f-a94e-3a662e7aa6d3] socks connection closed\n2025-07-15 18:00:25.538 [info] [command][bb6f7ad0-0ba4-49e7-ab36-f1a82e1ccc07] Socket close event received\n2025-07-15 18:00:25.556 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 61986 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:01:25.542 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:01:25.544 [info] [command][f0aeb7c9-a908-4289-92e8-4660ec95c7b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f0aeb7c9-a908-4289-92e8-4660ec95c7b1""}\n2025-07-15 18:01:25.544 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1fdc4da3-7a6c-4f3b-99db-529b65d68248] received connection request\n2025-07-15 18:01:25.545 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:01:25.565 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1fdc4da3-7a6c-4f3b-99db-529b65d68248] socks forwarding established\n2025-07-15 18:01:25.597 [info] [command][f0aeb7c9-a908-4289-92e8-4660ec95c7b1] Process exited with code 0\n2025-07-15 18:01:25.597 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1fdc4da3-7a6c-4f3b-99db-529b65d68248] socks connection closed\n2025-07-15 18:01:25.598 [info] [command][f0aeb7c9-a908-4289-92e8-4660ec95c7b1] Socket close event received\n2025-07-15 18:01:25.614 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62040 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:02:25.599 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:02:25.600 [info] [command][5feccac1-c73b-40f3-8a7d-7601fe0dab56] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""5feccac1-c73b-40f3-8a7d-7601fe0dab56""}\n2025-07-15 18:02:25.600 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2e89743b-ddb2-45ca-a9bd-acf857a061c1] received connection request\n2025-07-15 18:02:25.600 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:02:25.626 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2e89743b-ddb2-45ca-a9bd-acf857a061c1] socks forwarding established\n2025-07-15 18:02:25.658 [info] [command][5feccac1-c73b-40f3-8a7d-7601fe0dab56] Process exited with code 0\n2025-07-15 18:02:25.658 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2e89743b-ddb2-45ca-a9bd-acf857a061c1] socks connection closed\n2025-07-15 18:02:25.658 [info] [command][5feccac1-c73b-40f3-8a7d-7601fe0dab56] Socket close event received\n2025-07-15 18:02:25.674 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62073 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:03:25.662 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:03:25.663 [info] [command][1f517653-bf8f-4d06-a7b7-0efcc3bbe1df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1f517653-bf8f-4d06-a7b7-0efcc3bbe1df""}\n2025-07-15 18:03:25.663 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2e56c748-3ca9-4ce1-9a68-1a60432e2160] received connection request\n2025-07-15 18:03:25.663 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:03:25.768 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2e56c748-3ca9-4ce1-9a68-1a60432e2160] socks forwarding established\n2025-07-15 18:03:25.799 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2e56c748-3ca9-4ce1-9a68-1a60432e2160] socks connection closed\n2025-07-15 18:03:25.799 [info] [command][1f517653-bf8f-4d06-a7b7-0efcc3bbe1df] Process exited with code 0\n2025-07-15 18:03:25.799 [info] [command][1f517653-bf8f-4d06-a7b7-0efcc3bbe1df] Socket close event received\n2025-07-15 18:03:25.816 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62100 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:04:25.805 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:04:25.808 [info] [command][d279c4d1-f36e-4db7-815e-f5fe7426bf17] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d279c4d1-f36e-4db7-815e-f5fe7426bf17""}\n2025-07-15 18:04:25.809 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][26d25556-e9ec-4492-8d86-8fa640a4ab2f] received connection request\n2025-07-15 18:04:25.809 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:04:25.827 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][26d25556-e9ec-4492-8d86-8fa640a4ab2f] socks forwarding established\n2025-07-15 18:04:25.858 [info] [command][d279c4d1-f36e-4db7-815e-f5fe7426bf17] Process exited with code 0\n2025-07-15 18:04:25.859 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][26d25556-e9ec-4492-8d86-8fa640a4ab2f] socks connection closed\n2025-07-15 18:04:25.859 [info] [command][d279c4d1-f36e-4db7-815e-f5fe7426bf17] Socket close event received\n2025-07-15 18:04:25.875 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62141 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:05:25.864 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:05:25.866 [info] [command][a6e390c1-40a4-4860-accb-7480102f0350] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a6e390c1-40a4-4860-accb-7480102f0350""}\n2025-07-15 18:05:25.867 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][2976afc0-25b5-4e23-8e7b-7f7a0c8d690e] received connection request\n2025-07-15 18:05:25.867 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:05:25.943 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2976afc0-25b5-4e23-8e7b-7f7a0c8d690e] socks forwarding established\n2025-07-15 18:05:25.977 [info] [command][a6e390c1-40a4-4860-accb-7480102f0350] Process exited with code 0\n2025-07-15 18:05:25.978 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][2976afc0-25b5-4e23-8e7b-7f7a0c8d690e] socks connection closed\n2025-07-15 18:05:25.978 [info] [command][a6e390c1-40a4-4860-accb-7480102f0350] Socket close event received\n2025-07-15 18:05:25.995 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62197 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:06:25.982 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:06:25.986 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e151f7fe-8f7f-4ec8-b048-11da123c6991] received connection request\n2025-07-15 18:06:25.986 [info] [command][60c030c0-8509-4c32-8b83-30f164c06625] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""60c030c0-8509-4c32-8b83-30f164c06625""}\n2025-07-15 18:06:25.987 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:06:26.006 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e151f7fe-8f7f-4ec8-b048-11da123c6991] socks forwarding established\n2025-07-15 18:06:26.036 [info] [command][60c030c0-8509-4c32-8b83-30f164c06625] Process exited with code 0\n2025-07-15 18:06:26.036 [info] [command][60c030c0-8509-4c32-8b83-30f164c06625] Socket close event received\n2025-07-15 18:06:26.036 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e151f7fe-8f7f-4ec8-b048-11da123c6991] socks connection closed\n2025-07-15 18:06:26.054 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62268 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:07:26.040 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:07:26.042 [info] [command][06959223-9139-4b80-99ad-397614bc7984] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""06959223-9139-4b80-99ad-397614bc7984""}\n2025-07-15 18:07:26.043 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e96e45ef-e3b5-4a12-a4bc-27fbf7aa02f9] received connection request\n2025-07-15 18:07:26.043 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:07:26.147 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e96e45ef-e3b5-4a12-a4bc-27fbf7aa02f9] socks forwarding established\n2025-07-15 18:07:26.178 [info] [command][06959223-9139-4b80-99ad-397614bc7984] Process exited with code 0\n2025-07-15 18:07:26.179 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e96e45ef-e3b5-4a12-a4bc-27fbf7aa02f9] socks connection closed\n2025-07-15 18:07:26.179 [info] [command][06959223-9139-4b80-99ad-397614bc7984] Socket close event received\n2025-07-15 18:07:26.202 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62322 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:08:26.183 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:08:26.185 [info] [command][2c7072f6-5591-41a7-9939-106162fcaa2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2c7072f6-5591-41a7-9939-106162fcaa2f""}\n2025-07-15 18:08:26.186 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d4928f99-9809-4fac-87b7-07da058bdd44] received connection request\n2025-07-15 18:08:26.186 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:08:26.203 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d4928f99-9809-4fac-87b7-07da058bdd44] socks forwarding established\n2025-07-15 18:08:26.234 [info] [command][2c7072f6-5591-41a7-9939-106162fcaa2f] Process exited with code 0\n2025-07-15 18:08:26.234 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d4928f99-9809-4fac-87b7-07da058bdd44] socks connection closed\n2025-07-15 18:08:26.234 [info] [command][2c7072f6-5591-41a7-9939-106162fcaa2f] Socket close event received\n2025-07-15 18:08:26.256 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62376 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:09:26.236 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:09:26.238 [info] [command][cb0315d2-15f6-4377-9250-0b3e5d94c6af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cb0315d2-15f6-4377-9250-0b3e5d94c6af""}\n2025-07-15 18:09:26.239 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][32e69369-2bee-4fe4-95da-a5d8ce8cd1f5] received connection request\n2025-07-15 18:09:26.239 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:09:26.257 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][32e69369-2bee-4fe4-95da-a5d8ce8cd1f5] socks forwarding established\n2025-07-15 18:09:26.288 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][32e69369-2bee-4fe4-95da-a5d8ce8cd1f5] socks connection closed\n2025-07-15 18:09:26.289 [info] [command][cb0315d2-15f6-4377-9250-0b3e5d94c6af] Process exited with code 0\n2025-07-15 18:09:26.289 [info] [command][cb0315d2-15f6-4377-9250-0b3e5d94c6af] Socket close event received\n2025-07-15 18:09:26.305 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62415 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:10:26.293 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:10:26.295 [info] [command][fb65bad2-d7bc-491b-b2a0-1974ed74c716] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fb65bad2-d7bc-491b-b2a0-1974ed74c716""}\n2025-07-15 18:10:26.295 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][c38ed5bc-cd7a-431c-9f8a-e90585ff7013] received connection request\n2025-07-15 18:10:26.296 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:10:26.391 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c38ed5bc-cd7a-431c-9f8a-e90585ff7013] socks forwarding established\n2025-07-15 18:10:26.428 [info] [command][fb65bad2-d7bc-491b-b2a0-1974ed74c716] Process exited with code 0\n2025-07-15 18:10:26.428 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][c38ed5bc-cd7a-431c-9f8a-e90585ff7013] socks connection closed\n2025-07-15 18:10:26.429 [info] [command][fb65bad2-d7bc-491b-b2a0-1974ed74c716] Socket close event received\n2025-07-15 18:10:26.453 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62450 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:11:26.428 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:11:26.430 [info] [command][2afbae7c-2955-4a5b-a0e3-5906ed4d43ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2afbae7c-2955-4a5b-a0e3-5906ed4d43ae""}\n2025-07-15 18:11:26.431 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][50623540-758f-4752-bbdc-81b1c1731373] received connection request\n2025-07-15 18:11:26.431 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:11:26.458 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][50623540-758f-4752-bbdc-81b1c1731373] socks forwarding established\n2025-07-15 18:11:26.489 [info] [command][2afbae7c-2955-4a5b-a0e3-5906ed4d43ae] Process exited with code 0\n2025-07-15 18:11:26.489 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][50623540-758f-4752-bbdc-81b1c1731373] socks connection closed\n2025-07-15 18:11:26.489 [info] [command][2afbae7c-2955-4a5b-a0e3-5906ed4d43ae] Socket close event received\n2025-07-15 18:11:26.507 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62526 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:12:26.492 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:12:26.494 [info] [command][7c56eba6-228d-4713-bfd2-0982fecab79c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7c56eba6-228d-4713-bfd2-0982fecab79c""}\n2025-07-15 18:12:26.495 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fcc9813b-9ecc-4cc7-a038-fef5bef73d1f] received connection request\n2025-07-15 18:12:26.495 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:12:26.535 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fcc9813b-9ecc-4cc7-a038-fef5bef73d1f] socks forwarding established\n2025-07-15 18:12:26.582 [info] [command][7c56eba6-228d-4713-bfd2-0982fecab79c] Process exited with code 0\n2025-07-15 18:12:26.583 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fcc9813b-9ecc-4cc7-a038-fef5bef73d1f] socks connection closed\n2025-07-15 18:12:26.583 [info] [command][7c56eba6-228d-4713-bfd2-0982fecab79c] Socket close event received\n2025-07-15 18:12:26.610 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62563 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:13:26.587 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:13:26.589 [info] [command][ddab8dde-6b6e-4a9e-8447-da7e1869668d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ddab8dde-6b6e-4a9e-8447-da7e1869668d""}\n2025-07-15 18:13:26.589 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][cf2b35fa-7526-43a4-a9cd-9a615342fb21] received connection request\n2025-07-15 18:13:26.590 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:13:26.607 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cf2b35fa-7526-43a4-a9cd-9a615342fb21] socks forwarding established\n2025-07-15 18:13:26.768 [info] [command][ddab8dde-6b6e-4a9e-8447-da7e1869668d] Process exited with code 0\n2025-07-15 18:13:26.769 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][cf2b35fa-7526-43a4-a9cd-9a615342fb21] socks connection closed\n2025-07-15 18:13:26.769 [info] [command][ddab8dde-6b6e-4a9e-8447-da7e1869668d] Socket close event received\n2025-07-15 18:13:26.790 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62586 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:14:26.774 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:14:26.777 [info] [command][fe5bd45e-384f-44fb-af0a-3382f91b7e35] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fe5bd45e-384f-44fb-af0a-3382f91b7e35""}\n2025-07-15 18:14:26.777 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a0bcc98e-8374-4fb9-b05a-ac6b5fc473e3] received connection request\n2025-07-15 18:14:26.778 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:14:26.796 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a0bcc98e-8374-4fb9-b05a-ac6b5fc473e3] socks forwarding established\n2025-07-15 18:14:26.827 [info] [command][fe5bd45e-384f-44fb-af0a-3382f91b7e35] Process exited with code 0\n2025-07-15 18:14:26.827 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a0bcc98e-8374-4fb9-b05a-ac6b5fc473e3] socks connection closed\n2025-07-15 18:14:26.828 [info] [command][fe5bd45e-384f-44fb-af0a-3382f91b7e35] Socket close event received\n2025-07-15 18:14:26.845 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62624 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:15:26.833 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:15:26.836 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][bcefdc55-871a-4d5e-8f39-94316956a8c1] received connection request\n2025-07-15 18:15:26.837 [info] [command][caebad79-ad58-4b8a-85be-1e325e407ca1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""caebad79-ad58-4b8a-85be-1e325e407ca1""}\n2025-07-15 18:15:26.837 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:15:26.879 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bcefdc55-871a-4d5e-8f39-94316956a8c1] socks forwarding established\n2025-07-15 18:15:26.913 [info] [command][caebad79-ad58-4b8a-85be-1e325e407ca1] Process exited with code 0\n2025-07-15 18:15:26.914 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][bcefdc55-871a-4d5e-8f39-94316956a8c1] socks connection closed\n2025-07-15 18:15:26.914 [info] [command][caebad79-ad58-4b8a-85be-1e325e407ca1] Socket close event received\n2025-07-15 18:15:26.937 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62651 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:16:26.915 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:16:26.917 [info] [command][92d64a5a-287b-4677-836b-ed7f614b3873] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""92d64a5a-287b-4677-836b-ed7f614b3873""}\n2025-07-15 18:16:26.918 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d9b9d467-6c87-4e0d-866e-17773c83bc6f] received connection request\n2025-07-15 18:16:26.918 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:16:26.987 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d9b9d467-6c87-4e0d-866e-17773c83bc6f] socks forwarding established\n2025-07-15 18:16:27.018 [info] [command][92d64a5a-287b-4677-836b-ed7f614b3873] Process exited with code 0\n2025-07-15 18:16:27.018 [info] [command][92d64a5a-287b-4677-836b-ed7f614b3873] Socket close event received\n2025-07-15 18:16:27.019 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d9b9d467-6c87-4e0d-866e-17773c83bc6f] socks connection closed\n2025-07-15 18:16:27.165 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62714 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:17:27.024 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:17:27.026 [info] [command][83556d35-7e04-43e0-87bf-03c939791d3f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""83556d35-7e04-43e0-87bf-03c939791d3f""}\n2025-07-15 18:17:27.027 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1a468870-b792-4fe5-8c0d-daa9c34fff85] received connection request\n2025-07-15 18:17:27.027 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:17:27.046 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1a468870-b792-4fe5-8c0d-daa9c34fff85] socks forwarding established\n2025-07-15 18:17:27.143 [info] [command][83556d35-7e04-43e0-87bf-03c939791d3f] Process exited with code 0\n2025-07-15 18:17:27.144 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1a468870-b792-4fe5-8c0d-daa9c34fff85] socks connection closed\n2025-07-15 18:17:27.144 [info] [command][83556d35-7e04-43e0-87bf-03c939791d3f] Socket close event received\n2025-07-15 18:17:27.160 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62759 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:18:27.144 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:18:27.146 [info] [command][98e1ed4a-6b07-40ed-ba23-0ed7d86c190d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""98e1ed4a-6b07-40ed-ba23-0ed7d86c190d""}\n2025-07-15 18:18:27.147 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][95b3988c-478d-4bd5-9239-a65a4ef5e408] received connection request\n2025-07-15 18:18:27.147 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:18:27.170 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][95b3988c-478d-4bd5-9239-a65a4ef5e408] socks forwarding established\n2025-07-15 18:18:27.338 [info] [command][98e1ed4a-6b07-40ed-ba23-0ed7d86c190d] Process exited with code 0\n2025-07-15 18:18:27.339 [info] [command][98e1ed4a-6b07-40ed-ba23-0ed7d86c190d] Socket close event received\n2025-07-15 18:18:27.340 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][95b3988c-478d-4bd5-9239-a65a4ef5e408] socks connection closed\n2025-07-15 18:18:27.371 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62783 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:19:27.344 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:19:27.346 [info] [command][7b21a77a-062a-4351-ae65-3cd233a3235c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7b21a77a-062a-4351-ae65-3cd233a3235c""}\n2025-07-15 18:19:27.346 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8daa22d0-2400-4998-a3b2-a777b6d2306f] received connection request\n2025-07-15 18:19:27.346 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:19:27.460 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8daa22d0-2400-4998-a3b2-a777b6d2306f] socks forwarding established\n2025-07-15 18:19:27.492 [info] [command][7b21a77a-062a-4351-ae65-3cd233a3235c] Process exited with code 0\n2025-07-15 18:19:27.492 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8daa22d0-2400-4998-a3b2-a777b6d2306f] socks connection closed\n2025-07-15 18:19:27.493 [info] [command][7b21a77a-062a-4351-ae65-3cd233a3235c] Socket close event received\n2025-07-15 18:19:27.584 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62819 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:20:27.495 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:20:27.497 [info] [command][b7d0f091-4e58-4150-9573-17895f1cb23c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""b7d0f091-4e58-4150-9573-17895f1cb23c""}\n2025-07-15 18:20:27.498 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a0891c2f-51ba-4664-92b4-63ebab3874ce] received connection request\n2025-07-15 18:20:27.499 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:20:27.645 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a0891c2f-51ba-4664-92b4-63ebab3874ce] socks forwarding established\n2025-07-15 18:20:27.677 [info] [command][b7d0f091-4e58-4150-9573-17895f1cb23c] Process exited with code 0\n2025-07-15 18:20:27.677 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a0891c2f-51ba-4664-92b4-63ebab3874ce] socks connection closed\n2025-07-15 18:20:27.677 [info] [command][b7d0f091-4e58-4150-9573-17895f1cb23c] Socket close event received\n2025-07-15 18:20:27.820 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62852 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:21:27.677 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:21:27.679 [info] [command][f94a68ff-a93f-4765-a5fd-36d742dcd9ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f94a68ff-a93f-4765-a5fd-36d742dcd9ea""}\n2025-07-15 18:21:27.679 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d75e1276-ccff-49fc-a9e5-d956d561a0c1] received connection request\n2025-07-15 18:21:27.680 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:21:27.697 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d75e1276-ccff-49fc-a9e5-d956d561a0c1] socks forwarding established\n2025-07-15 18:21:27.728 [info] [command][f94a68ff-a93f-4765-a5fd-36d742dcd9ea] Process exited with code 0\n2025-07-15 18:21:27.729 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d75e1276-ccff-49fc-a9e5-d956d561a0c1] socks connection closed\n2025-07-15 18:21:27.729 [info] [command][f94a68ff-a93f-4765-a5fd-36d742dcd9ea] Socket close event received\n2025-07-15 18:21:27.754 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62931 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:22:27.732 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:22:27.734 [info] [command][e0fa3a40-a2e7-4611-934d-b67e52373ac1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e0fa3a40-a2e7-4611-934d-b67e52373ac1""}\n2025-07-15 18:22:27.735 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][34f1d55d-cc5f-45db-a8ee-e89f83be7046] received connection request\n2025-07-15 18:22:27.736 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:22:27.756 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34f1d55d-cc5f-45db-a8ee-e89f83be7046] socks forwarding established\n2025-07-15 18:22:27.788 [info] [command][e0fa3a40-a2e7-4611-934d-b67e52373ac1] Process exited with code 0\n2025-07-15 18:22:27.788 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34f1d55d-cc5f-45db-a8ee-e89f83be7046] socks connection closed\n2025-07-15 18:22:27.788 [info] [command][e0fa3a40-a2e7-4611-934d-b67e52373ac1] Socket close event received\n2025-07-15 18:22:27.808 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62955 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:23:27.792 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:23:27.793 [info] [command][4550eef3-39d0-47c6-b0b7-c979ddc144f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4550eef3-39d0-47c6-b0b7-c979ddc144f3""}\n2025-07-15 18:23:27.794 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][dc270605-e906-4bf4-b865-2b7c73bf5df5] received connection request\n2025-07-15 18:23:27.794 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:23:27.813 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][dc270605-e906-4bf4-b865-2b7c73bf5df5] socks forwarding established\n2025-07-15 18:23:27.847 [info] [command][4550eef3-39d0-47c6-b0b7-c979ddc144f3] Process exited with code 0\n2025-07-15 18:23:27.847 [info] [command][4550eef3-39d0-47c6-b0b7-c979ddc144f3] Socket close event received\n2025-07-15 18:23:27.848 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][dc270605-e906-4bf4-b865-2b7c73bf5df5] socks connection closed\n2025-07-15 18:23:27.867 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 62986 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:24:27.852 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:24:27.854 [info] [command][f77f9e48-74cf-4138-babd-f91132a3a53d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f77f9e48-74cf-4138-babd-f91132a3a53d""}\n2025-07-15 18:24:27.854 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6bfa2d7d-00d3-481c-9167-2760260e38db] received connection request\n2025-07-15 18:24:27.854 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 18:24:27.854 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:24:27.872 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6bfa2d7d-00d3-481c-9167-2760260e38db] socks forwarding established\n2025-07-15 18:24:28.011 [info] [command][f77f9e48-74cf-4138-babd-f91132a3a53d] Process exited with code 0\n2025-07-15 18:24:28.011 [info] [command][f77f9e48-74cf-4138-babd-f91132a3a53d] Socket close event received\n2025-07-15 18:24:28.012 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6bfa2d7d-00d3-481c-9167-2760260e38db] socks connection closed\n2025-07-15 18:24:28.028 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63023 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:25:28.012 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:25:28.014 [info] [command][4a9a7a43-5303-412c-86b1-48485636ca91] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4a9a7a43-5303-412c-86b1-48485636ca91""}\n2025-07-15 18:25:28.014 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e984c6c8-67b0-4f0d-8600-c8794fab2932] received connection request\n2025-07-15 18:25:28.014 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:25:28.030 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e984c6c8-67b0-4f0d-8600-c8794fab2932] socks forwarding established\n2025-07-15 18:25:28.060 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e984c6c8-67b0-4f0d-8600-c8794fab2932] socks connection closed\n2025-07-15 18:25:28.061 [info] [command][4a9a7a43-5303-412c-86b1-48485636ca91] Process exited with code 0\n2025-07-15 18:25:28.061 [info] [command][4a9a7a43-5303-412c-86b1-48485636ca91] Socket close event received\n2025-07-15 18:25:28.090 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63081 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:26:28.062 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:26:28.064 [info] [command][57c118d1-e90c-432e-9abc-10127396b5c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""57c118d1-e90c-432e-9abc-10127396b5c1""}\n2025-07-15 18:26:28.065 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][34d1a0a4-558b-49f5-9cd1-70aefe9653e1] received connection request\n2025-07-15 18:26:28.065 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:26:28.083 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34d1a0a4-558b-49f5-9cd1-70aefe9653e1] socks forwarding established\n2025-07-15 18:26:28.119 [info] [command][57c118d1-e90c-432e-9abc-10127396b5c1] Process exited with code 0\n2025-07-15 18:26:28.119 [info] [command][57c118d1-e90c-432e-9abc-10127396b5c1] Socket close event received\n2025-07-15 18:26:28.119 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][34d1a0a4-558b-49f5-9cd1-70aefe9653e1] socks connection closed\n2025-07-15 18:26:28.140 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63142 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:27:28.124 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:27:28.126 [info] [command][792249a3-dafa-4b40-a905-cb8a5662a508] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""792249a3-dafa-4b40-a905-cb8a5662a508""}\n2025-07-15 18:27:28.126 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][5116c703-217b-4862-82d6-d7a820f8a4ad] received connection request\n2025-07-15 18:27:28.127 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:27:28.144 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5116c703-217b-4862-82d6-d7a820f8a4ad] socks forwarding established\n2025-07-15 18:27:28.179 [info] [command][792249a3-dafa-4b40-a905-cb8a5662a508] Process exited with code 0\n2025-07-15 18:27:28.179 [info] [command][792249a3-dafa-4b40-a905-cb8a5662a508] Socket close event received\n2025-07-15 18:27:28.180 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][5116c703-217b-4862-82d6-d7a820f8a4ad] socks connection closed\n2025-07-15 18:27:28.199 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63172 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:28:28.181 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:28:28.182 [info] [command][85a9dd08-9251-41d8-a067-d515dc1a0087] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""85a9dd08-9251-41d8-a067-d515dc1a0087""}\n2025-07-15 18:28:28.183 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][9b7a8ec1-5d26-4aa8-be32-206afa26d069] received connection request\n2025-07-15 18:28:28.183 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:28:28.220 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9b7a8ec1-5d26-4aa8-be32-206afa26d069] socks forwarding established\n2025-07-15 18:28:28.251 [info] [command][85a9dd08-9251-41d8-a067-d515dc1a0087] Process exited with code 0\n2025-07-15 18:28:28.252 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][9b7a8ec1-5d26-4aa8-be32-206afa26d069] socks connection closed\n2025-07-15 18:28:28.252 [info] [command][85a9dd08-9251-41d8-a067-d515dc1a0087] Socket close event received\n2025-07-15 18:28:28.270 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63203 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:29:28.257 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:29:28.261 [info] [command][48476221-1f2a-4de2-9f9b-38630210d391] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""48476221-1f2a-4de2-9f9b-38630210d391""}\n2025-07-15 18:29:28.261 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][3d77e775-9b19-48ba-9ce2-dea94c1d347f] received connection request\n2025-07-15 18:29:28.262 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:29:28.335 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d77e775-9b19-48ba-9ce2-dea94c1d347f] socks forwarding established\n2025-07-15 18:29:28.367 [info] [command][48476221-1f2a-4de2-9f9b-38630210d391] Process exited with code 0\n2025-07-15 18:29:28.367 [info] [command][48476221-1f2a-4de2-9f9b-38630210d391] Socket close event received\n2025-07-15 18:29:28.371 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][3d77e775-9b19-48ba-9ce2-dea94c1d347f] socks connection closed\n2025-07-15 18:29:28.409 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63251 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:30:28.373 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:30:28.375 [info] [command][d5c38ee5-e9f2-451e-9b6a-82e832adacc6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d5c38ee5-e9f2-451e-9b6a-82e832adacc6""}\n2025-07-15 18:30:28.376 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1d1e660c-5b7c-4259-a03d-ef0309e8f7cd] received connection request\n2025-07-15 18:30:28.377 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:30:28.399 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1d1e660c-5b7c-4259-a03d-ef0309e8f7cd] socks forwarding established\n2025-07-15 18:30:28.435 [info] [command][d5c38ee5-e9f2-451e-9b6a-82e832adacc6] Process exited with code 0\n2025-07-15 18:30:28.435 [info] [command][d5c38ee5-e9f2-451e-9b6a-82e832adacc6] Socket close event received\n2025-07-15 18:30:28.436 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1d1e660c-5b7c-4259-a03d-ef0309e8f7cd] socks connection closed\n2025-07-15 18:30:28.456 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63275 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:31:28.438 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:31:28.439 [info] [command][a7c3093e-534e-4344-aab9-1216db286db4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a7c3093e-534e-4344-aab9-1216db286db4""}\n2025-07-15 18:31:28.439 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][28094a4f-70ca-4113-b1d6-d662b2417ed6] received connection request\n2025-07-15 18:31:28.440 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:31:28.458 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][28094a4f-70ca-4113-b1d6-d662b2417ed6] socks forwarding established\n2025-07-15 18:31:28.582 [info] [command][a7c3093e-534e-4344-aab9-1216db286db4] Process exited with code 0\n2025-07-15 18:31:28.583 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][28094a4f-70ca-4113-b1d6-d662b2417ed6] socks connection closed\n2025-07-15 18:31:28.583 [info] [command][a7c3093e-534e-4344-aab9-1216db286db4] Socket close event received\n2025-07-15 18:31:28.605 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63347 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:32:28.587 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:32:28.589 [info] [command][2ea05a00-0c23-42ee-a56a-ef786ad41919] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2ea05a00-0c23-42ee-a56a-ef786ad41919""}\n2025-07-15 18:32:28.589 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][74b73425-1a31-4ba1-accc-e0aedd678da6] received connection request\n2025-07-15 18:32:28.590 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:32:28.621 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][74b73425-1a31-4ba1-accc-e0aedd678da6] socks forwarding established\n2025-07-15 18:32:28.758 [info] [command][2ea05a00-0c23-42ee-a56a-ef786ad41919] Process exited with code 0\n2025-07-15 18:32:28.758 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][74b73425-1a31-4ba1-accc-e0aedd678da6] socks connection closed\n2025-07-15 18:32:28.758 [info] [command][2ea05a00-0c23-42ee-a56a-ef786ad41919] Socket close event received\n2025-07-15 18:32:28.795 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63378 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:33:28.760 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:33:28.762 [info] [command][c2ec5e5a-bbe4-4fd7-a5af-4a38bbde5788] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c2ec5e5a-bbe4-4fd7-a5af-4a38bbde5788""}\n2025-07-15 18:33:28.763 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][4986bd07-18df-48f9-a6ae-82660915057b] received connection request\n2025-07-15 18:33:28.764 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:33:28.796 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4986bd07-18df-48f9-a6ae-82660915057b] socks forwarding established\n2025-07-15 18:33:28.833 [info] [command][c2ec5e5a-bbe4-4fd7-a5af-4a38bbde5788] Process exited with code 0\n2025-07-15 18:33:28.833 [info] [command][c2ec5e5a-bbe4-4fd7-a5af-4a38bbde5788] Socket close event received\n2025-07-15 18:33:28.846 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][4986bd07-18df-48f9-a6ae-82660915057b] socks connection closed\n2025-07-15 18:33:28.858 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63407 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:34:28.839 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:34:28.842 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][fcdc921c-4ec4-4b31-bf3d-432485c7ae8a] received connection request\n2025-07-15 18:34:28.843 [info] [command][deef97c1-d854-4a8f-8402-f6e8266fda08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""deef97c1-d854-4a8f-8402-f6e8266fda08""}\n2025-07-15 18:34:28.844 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:34:28.896 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fcdc921c-4ec4-4b31-bf3d-432485c7ae8a] socks forwarding established\n2025-07-15 18:34:28.956 [info] [command][deef97c1-d854-4a8f-8402-f6e8266fda08] Process exited with code 0\n2025-07-15 18:34:28.956 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][fcdc921c-4ec4-4b31-bf3d-432485c7ae8a] socks connection closed\n2025-07-15 18:34:28.956 [info] [command][deef97c1-d854-4a8f-8402-f6e8266fda08] Socket close event received\n2025-07-15 18:34:28.997 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63449 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:35:28.961 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:35:28.964 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6fb1c3c9-23af-4ebb-92fc-c0941ec3ebdd] received connection request\n2025-07-15 18:35:28.964 [info] [command][9de2a8c7-d0e1-4a4a-a80c-a014db51297b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9de2a8c7-d0e1-4a4a-a80c-a014db51297b""}\n2025-07-15 18:35:28.964 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:35:28.989 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6fb1c3c9-23af-4ebb-92fc-c0941ec3ebdd] socks forwarding established\n2025-07-15 18:35:29.054 [info] [command][9de2a8c7-d0e1-4a4a-a80c-a014db51297b] Process exited with code 0\n2025-07-15 18:35:29.054 [info] [command][9de2a8c7-d0e1-4a4a-a80c-a014db51297b] Socket close event received\n2025-07-15 18:35:29.061 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6fb1c3c9-23af-4ebb-92fc-c0941ec3ebdd] socks connection closed\n2025-07-15 18:35:29.089 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63486 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:36:29.056 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:36:29.057 [info] [command][c0bed129-f708-40e3-a4b4-f098d90d5503] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c0bed129-f708-40e3-a4b4-f098d90d5503""}\n2025-07-15 18:36:29.057 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][a400cc81-4599-4d92-99a6-95d4aec35bde] received connection request\n2025-07-15 18:36:29.057 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:36:29.082 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a400cc81-4599-4d92-99a6-95d4aec35bde] socks forwarding established\n2025-07-15 18:36:29.114 [info] [command][c0bed129-f708-40e3-a4b4-f098d90d5503] Process exited with code 0\n2025-07-15 18:36:29.114 [info] [command][c0bed129-f708-40e3-a4b4-f098d90d5503] Socket close event received\n2025-07-15 18:36:29.116 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][a400cc81-4599-4d92-99a6-95d4aec35bde] socks connection closed\n2025-07-15 18:36:29.134 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63542 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:37:29.115 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:37:29.116 [info] [command][fd6b253d-68b8-4f50-ae87-9f00659a9b07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""fd6b253d-68b8-4f50-ae87-9f00659a9b07""}\n2025-07-15 18:37:29.116 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1983539a-6961-45e1-bd50-31fbcac9a8de] received connection request\n2025-07-15 18:37:29.116 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 18:37:29.116 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:37:29.227 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1983539a-6961-45e1-bd50-31fbcac9a8de] socks forwarding established\n2025-07-15 18:37:29.258 [info] [command][fd6b253d-68b8-4f50-ae87-9f00659a9b07] Process exited with code 0\n2025-07-15 18:37:29.258 [info] [command][fd6b253d-68b8-4f50-ae87-9f00659a9b07] Socket close event received\n2025-07-15 18:37:29.260 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1983539a-6961-45e1-bd50-31fbcac9a8de] socks connection closed\n2025-07-15 18:37:29.276 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63568 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:38:29.264 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:38:29.266 [info] [command][c488bf0c-f920-436a-add2-7bbe42503b6b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c488bf0c-f920-436a-add2-7bbe42503b6b""}\n2025-07-15 18:38:29.266 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][01a563df-99ef-4beb-bc3a-785c51c48d23] received connection request\n2025-07-15 18:38:29.267 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:38:29.283 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][01a563df-99ef-4beb-bc3a-785c51c48d23] socks forwarding established\n2025-07-15 18:38:29.314 [info] [command][c488bf0c-f920-436a-add2-7bbe42503b6b] Process exited with code 0\n2025-07-15 18:38:29.315 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][01a563df-99ef-4beb-bc3a-785c51c48d23] socks connection closed\n2025-07-15 18:38:29.315 [info] [command][c488bf0c-f920-436a-add2-7bbe42503b6b] Socket close event received\n2025-07-15 18:38:29.332 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63589 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:39:29.320 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:39:29.321 [info] [command][a9af6817-16c8-4788-8333-e44970a12d3d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a9af6817-16c8-4788-8333-e44970a12d3d""}\n2025-07-15 18:39:29.322 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8182339d-7a08-4dab-8bf8-c5e276daa0be] received connection request\n2025-07-15 18:39:29.323 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:39:29.340 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8182339d-7a08-4dab-8bf8-c5e276daa0be] socks forwarding established\n2025-07-15 18:39:29.371 [info] [command][a9af6817-16c8-4788-8333-e44970a12d3d] Process exited with code 0\n2025-07-15 18:39:29.372 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8182339d-7a08-4dab-8bf8-c5e276daa0be] socks connection closed\n2025-07-15 18:39:29.372 [info] [command][a9af6817-16c8-4788-8333-e44970a12d3d] Socket close event received\n2025-07-15 18:39:29.388 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63641 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:40:29.377 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:40:29.378 [info] [command][cf25e7e9-63c8-46c1-9f72-5cb40256c1a1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cf25e7e9-63c8-46c1-9f72-5cb40256c1a1""}\n2025-07-15 18:40:29.379 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][505feab8-ddff-4c38-bbc1-3b1524a80531] received connection request\n2025-07-15 18:40:29.379 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:40:29.400 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][505feab8-ddff-4c38-bbc1-3b1524a80531] socks forwarding established\n2025-07-15 18:40:29.440 [info] [command][cf25e7e9-63c8-46c1-9f72-5cb40256c1a1] Process exited with code 0\n2025-07-15 18:40:29.441 [info] [command][cf25e7e9-63c8-46c1-9f72-5cb40256c1a1] Socket close event received\n2025-07-15 18:40:29.446 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][505feab8-ddff-4c38-bbc1-3b1524a80531] socks connection closed\n2025-07-15 18:40:29.552 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63672 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:41:29.443 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:41:29.445 [info] [command][0d231d3f-6a04-46ab-a3fa-a683c1fb0c25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0d231d3f-6a04-46ab-a3fa-a683c1fb0c25""}\n2025-07-15 18:41:29.446 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e1d96d91-e8ce-419f-8ca5-491579ca279e] received connection request\n2025-07-15 18:41:29.446 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:41:29.464 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e1d96d91-e8ce-419f-8ca5-491579ca279e] socks forwarding established\n2025-07-15 18:41:29.506 [info] [command][0d231d3f-6a04-46ab-a3fa-a683c1fb0c25] Process exited with code 0\n2025-07-15 18:41:29.507 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e1d96d91-e8ce-419f-8ca5-491579ca279e] socks connection closed\n2025-07-15 18:41:29.507 [info] [command][0d231d3f-6a04-46ab-a3fa-a683c1fb0c25] Socket close event received\n2025-07-15 18:41:29.527 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63738 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:42:29.507 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:42:29.517 [info] [command][69a3ecbd-deae-497e-90e1-3957cafe6df9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""69a3ecbd-deae-497e-90e1-3957cafe6df9""}\n2025-07-15 18:42:29.517 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e01772da-fe37-4747-848c-3721e28b506f] received connection request\n2025-07-15 18:42:29.518 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 18:42:29.519 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:42:29.541 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e01772da-fe37-4747-848c-3721e28b506f] socks forwarding established\n2025-07-15 18:42:29.572 [info] [command][69a3ecbd-deae-497e-90e1-3957cafe6df9] Process exited with code 0\n2025-07-15 18:42:29.572 [info] [command][69a3ecbd-deae-497e-90e1-3957cafe6df9] Socket close event received\n2025-07-15 18:42:29.573 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e01772da-fe37-4747-848c-3721e28b506f] socks connection closed\n2025-07-15 18:42:29.591 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63766 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:43:29.578 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:43:29.580 [info] [command][ddac8035-eb16-4dd7-8c39-0471beca2291] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""ddac8035-eb16-4dd7-8c39-0471beca2291""}\n2025-07-15 18:43:29.581 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e7b0b104-74c4-4938-8371-03e7f8e78aff] received connection request\n2025-07-15 18:43:29.581 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:43:29.663 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e7b0b104-74c4-4938-8371-03e7f8e78aff] socks forwarding established\n2025-07-15 18:43:29.694 [info] [command][ddac8035-eb16-4dd7-8c39-0471beca2291] Process exited with code 0\n2025-07-15 18:43:29.694 [info] [command][ddac8035-eb16-4dd7-8c39-0471beca2291] Socket close event received\n2025-07-15 18:43:29.695 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e7b0b104-74c4-4938-8371-03e7f8e78aff] socks connection closed\n2025-07-15 18:43:29.713 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63803 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:44:29.699 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:44:29.701 [info] [command][c0bff134-119e-44e5-90d7-3633c3a86b2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""c0bff134-119e-44e5-90d7-3633c3a86b2f""}\n2025-07-15 18:44:29.701 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][eabd250b-21c8-4c95-ac1b-e360c03e5d14] received connection request\n2025-07-15 18:44:29.701 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:44:29.746 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][eabd250b-21c8-4c95-ac1b-e360c03e5d14] socks forwarding established\n2025-07-15 18:44:29.776 [info] [command][c0bff134-119e-44e5-90d7-3633c3a86b2f] Process exited with code 0\n2025-07-15 18:44:29.776 [info] [command][c0bff134-119e-44e5-90d7-3633c3a86b2f] Socket close event received\n2025-07-15 18:44:29.778 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][eabd250b-21c8-4c95-ac1b-e360c03e5d14] socks connection closed\n2025-07-15 18:44:29.835 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63846 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:45:29.776 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:45:29.777 [info] [command][cb3fd1df-fb33-47c5-963e-9530b578e09f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""cb3fd1df-fb33-47c5-963e-9530b578e09f""}\n2025-07-15 18:45:29.777 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][31feb44a-9db4-4b8a-89ec-762552def28c] received connection request\n2025-07-15 18:45:29.778 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 18:45:29.778 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:45:29.794 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][31feb44a-9db4-4b8a-89ec-762552def28c] socks forwarding established\n2025-07-15 18:45:29.825 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][31feb44a-9db4-4b8a-89ec-762552def28c] socks connection closed\n2025-07-15 18:45:29.825 [info] [command][cb3fd1df-fb33-47c5-963e-9530b578e09f] Process exited with code 0\n2025-07-15 18:45:29.825 [info] [command][cb3fd1df-fb33-47c5-963e-9530b578e09f] Socket close event received\n2025-07-15 18:45:29.841 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63879 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:46:29.830 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:46:29.832 [info] [command][0998d2ea-6093-4a1c-b975-aca2cf598370] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0998d2ea-6093-4a1c-b975-aca2cf598370""}\n2025-07-15 18:46:29.833 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][03979f40-4bec-4f1c-a0df-9a3ba328841a] received connection request\n2025-07-15 18:46:29.834 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:46:29.883 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][03979f40-4bec-4f1c-a0df-9a3ba328841a] socks forwarding established\n2025-07-15 18:46:30.004 [info] [command][0998d2ea-6093-4a1c-b975-aca2cf598370] Process exited with code 0\n2025-07-15 18:46:30.005 [info] [command][0998d2ea-6093-4a1c-b975-aca2cf598370] Socket close event received\n2025-07-15 18:46:30.006 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][03979f40-4bec-4f1c-a0df-9a3ba328841a] socks connection closed\n2025-07-15 18:46:30.028 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63941 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:47:30.006 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:47:30.007 [info] [command][7a9cccd4-56b2-4cd0-bc13-834d876dc575] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7a9cccd4-56b2-4cd0-bc13-834d876dc575""}\n2025-07-15 18:47:30.008 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][ca5a1aa1-f2e8-4fbf-9be2-af8dd0082243] received connection request\n2025-07-15 18:47:30.008 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 18:47:30.008 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:47:30.030 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ca5a1aa1-f2e8-4fbf-9be2-af8dd0082243] socks forwarding established\n2025-07-15 18:47:30.061 [info] [command][7a9cccd4-56b2-4cd0-bc13-834d876dc575] Process exited with code 0\n2025-07-15 18:47:30.062 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][ca5a1aa1-f2e8-4fbf-9be2-af8dd0082243] socks connection closed\n2025-07-15 18:47:30.062 [info] [command][7a9cccd4-56b2-4cd0-bc13-834d876dc575] Socket close event received\n2025-07-15 18:47:30.082 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63962 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:48:30.064 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:48:30.065 [info] [command][df1de6f3-293d-4c29-93f3-4ba91c9f95f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""df1de6f3-293d-4c29-93f3-4ba91c9f95f7""}\n2025-07-15 18:48:30.066 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][37d3b81d-329c-4419-845a-cdae9e60a7f8] received connection request\n2025-07-15 18:48:30.067 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:48:30.194 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][37d3b81d-329c-4419-845a-cdae9e60a7f8] socks forwarding established\n2025-07-15 18:48:30.224 [info] [command][df1de6f3-293d-4c29-93f3-4ba91c9f95f7] Process exited with code 0\n2025-07-15 18:48:30.224 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][37d3b81d-329c-4419-845a-cdae9e60a7f8] socks connection closed\n2025-07-15 18:48:30.224 [info] [command][df1de6f3-293d-4c29-93f3-4ba91c9f95f7] Socket close event received\n2025-07-15 18:48:30.240 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 63993 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:49:30.225 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:49:30.227 [info] [command][e8c8e60b-5ff6-4190-af43-1940ee1b33f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""e8c8e60b-5ff6-4190-af43-1940ee1b33f0""}\n2025-07-15 18:49:30.228 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f1f74701-959e-428a-82e3-e80e76eed107] received connection request\n2025-07-15 18:49:30.229 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:49:30.249 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f1f74701-959e-428a-82e3-e80e76eed107] socks forwarding established\n2025-07-15 18:49:31.491 [info] [command][e8c8e60b-5ff6-4190-af43-1940ee1b33f0] Process exited with code 0\n2025-07-15 18:49:31.491 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f1f74701-959e-428a-82e3-e80e76eed107] socks connection closed\n2025-07-15 18:49:31.492 [info] [command][e8c8e60b-5ff6-4190-af43-1940ee1b33f0] Socket close event received\n2025-07-15 18:49:31.532 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64035 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:50:31.497 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:50:31.498 [info] [command][25e63174-d8f5-4530-b828-77524783f333] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""25e63174-d8f5-4530-b828-77524783f333""}\n2025-07-15 18:50:31.499 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][730cf894-3d2d-4bfc-95d4-0e3a1132bc05] received connection request\n2025-07-15 18:50:31.499 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:50:31.561 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][730cf894-3d2d-4bfc-95d4-0e3a1132bc05] socks forwarding established\n2025-07-15 18:50:31.676 [info] [command][25e63174-d8f5-4530-b828-77524783f333] Process exited with code 0\n2025-07-15 18:50:31.676 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][730cf894-3d2d-4bfc-95d4-0e3a1132bc05] socks connection closed\n2025-07-15 18:50:31.676 [info] [command][25e63174-d8f5-4530-b828-77524783f333] Socket close event received\n2025-07-15 18:50:31.694 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64077 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:51:31.681 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:51:31.684 [info] [command][76bf01b1-41ae-4c88-a411-f93c0b39563e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""76bf01b1-41ae-4c88-a411-f93c0b39563e""}\n2025-07-15 18:51:31.684 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][aef84dbc-85bc-44ee-9efe-c510e8268d54] received connection request\n2025-07-15 18:51:31.685 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:51:31.765 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][aef84dbc-85bc-44ee-9efe-c510e8268d54] socks forwarding established\n2025-07-15 18:51:31.794 [info] [command][76bf01b1-41ae-4c88-a411-f93c0b39563e] Process exited with code 0\n2025-07-15 18:51:31.795 [info] [command][76bf01b1-41ae-4c88-a411-f93c0b39563e] Socket close event received\n2025-07-15 18:51:31.796 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][aef84dbc-85bc-44ee-9efe-c510e8268d54] socks connection closed\n2025-07-15 18:51:31.943 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64124 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:52:31.795 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:52:31.798 [info] [command][02cf4b4b-c8d5-4f24-9c0e-47af5a0b0534] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""02cf4b4b-c8d5-4f24-9c0e-47af5a0b0534""}\n2025-07-15 18:52:31.799 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1f5acdfd-27c5-41a9-8acb-0fbb4347ee66] received connection request\n2025-07-15 18:52:31.799 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:52:31.819 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1f5acdfd-27c5-41a9-8acb-0fbb4347ee66] socks forwarding established\n2025-07-15 18:52:31.927 [info] [command][02cf4b4b-c8d5-4f24-9c0e-47af5a0b0534] Process exited with code 0\n2025-07-15 18:52:31.927 [info] [command][02cf4b4b-c8d5-4f24-9c0e-47af5a0b0534] Socket close event received\n2025-07-15 18:52:31.943 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1f5acdfd-27c5-41a9-8acb-0fbb4347ee66] socks connection closed\n2025-07-15 18:52:31.949 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64156 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:53:31.928 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:53:31.930 [info] [command][2f57794a-34b0-4551-8040-2b188608ffbc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""2f57794a-34b0-4551-8040-2b188608ffbc""}\n2025-07-15 18:53:31.931 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][0c57d7e3-a7e5-47dd-aed7-0d4276b310f0] received connection request\n2025-07-15 18:53:31.932 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:53:31.949 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0c57d7e3-a7e5-47dd-aed7-0d4276b310f0] socks forwarding established\n2025-07-15 18:53:31.981 [info] [command][2f57794a-34b0-4551-8040-2b188608ffbc] Process exited with code 0\n2025-07-15 18:53:31.982 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][0c57d7e3-a7e5-47dd-aed7-0d4276b310f0] socks connection closed\n2025-07-15 18:53:31.982 [info] [command][2f57794a-34b0-4551-8040-2b188608ffbc] Socket close event received\n2025-07-15 18:53:32.001 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64177 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:54:31.985 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:54:31.988 [info] [command][f5ed449f-216d-49df-bb29-04ee47747b93] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f5ed449f-216d-49df-bb29-04ee47747b93""}\n2025-07-15 18:54:31.989 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][44ba4f2f-6b4b-4932-941e-4baa4c5c6653] received connection request\n2025-07-15 18:54:31.989 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:54:32.007 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][44ba4f2f-6b4b-4932-941e-4baa4c5c6653] socks forwarding established\n2025-07-15 18:54:32.039 [info] [command][f5ed449f-216d-49df-bb29-04ee47747b93] Process exited with code 0\n2025-07-15 18:54:32.040 [info] [command][f5ed449f-216d-49df-bb29-04ee47747b93] Socket close event received\n2025-07-15 18:54:32.055 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][44ba4f2f-6b4b-4932-941e-4baa4c5c6653] socks connection closed\n2025-07-15 18:54:32.057 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64216 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:55:32.045 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:55:32.047 [info] [command][75d0f1be-47d7-4e6f-9033-954b46d29e3b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""75d0f1be-47d7-4e6f-9033-954b46d29e3b""}\n2025-07-15 18:55:32.048 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][766a9e96-fb53-47fe-a736-65ad090845a6] received connection request\n2025-07-15 18:55:32.048 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:55:32.064 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][766a9e96-fb53-47fe-a736-65ad090845a6] socks forwarding established\n2025-07-15 18:55:32.095 [info] [command][75d0f1be-47d7-4e6f-9033-954b46d29e3b] Process exited with code 0\n2025-07-15 18:55:32.096 [info] [command][75d0f1be-47d7-4e6f-9033-954b46d29e3b] Socket close event received\n2025-07-15 18:55:32.096 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][766a9e96-fb53-47fe-a736-65ad090845a6] socks connection closed\n2025-07-15 18:55:32.113 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64251 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:56:32.098 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:56:32.100 [info] [command][83fb8bed-0660-4333-8e2e-b22cc92e603f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""83fb8bed-0660-4333-8e2e-b22cc92e603f""}\n2025-07-15 18:56:32.101 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][20d80d05-9286-47db-9991-3455209b6185] received connection request\n2025-07-15 18:56:32.102 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:56:32.118 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][20d80d05-9286-47db-9991-3455209b6185] socks forwarding established\n2025-07-15 18:56:32.147 [info] [command][83fb8bed-0660-4333-8e2e-b22cc92e603f] Process exited with code 0\n2025-07-15 18:56:32.147 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][20d80d05-9286-47db-9991-3455209b6185] socks connection closed\n2025-07-15 18:56:32.147 [info] [command][83fb8bed-0660-4333-8e2e-b22cc92e603f] Socket close event received\n2025-07-15 18:56:32.164 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64294 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:57:32.149 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:57:32.151 [info] [command][87958461-a644-444d-b33b-7c92c43a9d5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""87958461-a644-444d-b33b-7c92c43a9d5b""}\n2025-07-15 18:57:32.152 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][6d431a04-abb2-4937-81fe-64c47c0d0e22] received connection request\n2025-07-15 18:57:32.153 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:57:32.170 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6d431a04-abb2-4937-81fe-64c47c0d0e22] socks forwarding established\n2025-07-15 18:57:32.202 [info] [command][87958461-a644-444d-b33b-7c92c43a9d5b] Process exited with code 0\n2025-07-15 18:57:32.203 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][6d431a04-abb2-4937-81fe-64c47c0d0e22] socks connection closed\n2025-07-15 18:57:32.203 [info] [command][87958461-a644-444d-b33b-7c92c43a9d5b] Socket close event received\n2025-07-15 18:57:32.221 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64332 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:58:32.206 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:58:32.208 [info] [command][28ed0574-4981-467c-9808-97717139f89d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""28ed0574-4981-467c-9808-97717139f89d""}\n2025-07-15 18:58:32.208 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d22fbf0c-0bb3-49e1-9a42-091c949c17e1] received connection request\n2025-07-15 18:58:32.209 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:58:32.379 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d22fbf0c-0bb3-49e1-9a42-091c949c17e1] socks forwarding established\n2025-07-15 18:58:32.414 [info] [command][28ed0574-4981-467c-9808-97717139f89d] Process exited with code 0\n2025-07-15 18:58:32.414 [info] [command][28ed0574-4981-467c-9808-97717139f89d] Socket close event received\n2025-07-15 18:58:32.415 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d22fbf0c-0bb3-49e1-9a42-091c949c17e1] socks connection closed\n2025-07-15 18:58:32.470 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64355 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 18:59:32.420 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 18:59:32.422 [info] [command][286816f9-16e4-4d3d-a0d0-5f2941cd4983] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""286816f9-16e4-4d3d-a0d0-5f2941cd4983""}\n2025-07-15 18:59:32.423 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8af8b1dc-3b99-4c6e-b4de-ece8259a3909] received connection request\n2025-07-15 18:59:32.424 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 18:59:32.442 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8af8b1dc-3b99-4c6e-b4de-ece8259a3909] socks forwarding established\n2025-07-15 18:59:32.474 [info] [command][286816f9-16e4-4d3d-a0d0-5f2941cd4983] Process exited with code 0\n2025-07-15 18:59:32.474 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8af8b1dc-3b99-4c6e-b4de-ece8259a3909] socks connection closed\n2025-07-15 18:59:32.474 [info] [command][286816f9-16e4-4d3d-a0d0-5f2941cd4983] Socket close event received\n2025-07-15 18:59:32.491 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64397 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:00:32.477 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:00:32.479 [info] [command][db9c3ce9-f757-4613-9f41-a44da6ddb20f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""db9c3ce9-f757-4613-9f41-a44da6ddb20f""}\n2025-07-15 19:00:32.480 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1f08d2fe-4e5a-4903-a928-b31d1d26af47] received connection request\n2025-07-15 19:00:32.481 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:00:32.555 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1f08d2fe-4e5a-4903-a928-b31d1d26af47] socks forwarding established\n2025-07-15 19:00:32.588 [info] [command][db9c3ce9-f757-4613-9f41-a44da6ddb20f] Process exited with code 0\n2025-07-15 19:00:32.589 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1f08d2fe-4e5a-4903-a928-b31d1d26af47] socks connection closed\n2025-07-15 19:00:32.589 [info] [command][db9c3ce9-f757-4613-9f41-a44da6ddb20f] Socket close event received\n2025-07-15 19:00:32.605 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64431 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:01:32.593 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:01:32.595 [info] [command][d87aff64-ef9b-4d8f-877b-93c45ec71352] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""d87aff64-ef9b-4d8f-877b-93c45ec71352""}\n2025-07-15 19:01:32.596 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][20680c94-10b1-40f1-96fc-220626dce2cb] received connection request\n2025-07-15 19:01:32.597 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:01:32.632 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][20680c94-10b1-40f1-96fc-220626dce2cb] socks forwarding established\n2025-07-15 19:01:32.663 [info] [command][d87aff64-ef9b-4d8f-877b-93c45ec71352] Process exited with code 0\n2025-07-15 19:01:32.663 [info] [command][d87aff64-ef9b-4d8f-877b-93c45ec71352] Socket close event received\n2025-07-15 19:01:32.663 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][20680c94-10b1-40f1-96fc-220626dce2cb] socks connection closed\n2025-07-15 19:01:32.686 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64477 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:02:32.665 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:02:32.667 [info] [command][91dd96ca-feb2-4055-ad10-956bb3858c01] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""91dd96ca-feb2-4055-ad10-956bb3858c01""}\n2025-07-15 19:02:32.668 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][18a3629e-2485-46d5-b9cb-81834eb5815f] received connection request\n2025-07-15 19:02:32.668 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:02:32.715 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][18a3629e-2485-46d5-b9cb-81834eb5815f] socks forwarding established\n2025-07-15 19:02:32.748 [info] [command][91dd96ca-feb2-4055-ad10-956bb3858c01] Process exited with code 0\n2025-07-15 19:02:32.748 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][18a3629e-2485-46d5-b9cb-81834eb5815f] socks connection closed\n2025-07-15 19:02:32.749 [info] [command][91dd96ca-feb2-4055-ad10-956bb3858c01] Socket close event received\n2025-07-15 19:02:32.766 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64519 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:03:32.754 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:03:32.756 [info] [command][212a1a21-e45b-4287-bffb-b919ff57d8c5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""212a1a21-e45b-4287-bffb-b919ff57d8c5""}\n2025-07-15 19:03:32.757 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][8bda0f0d-e8d3-47ac-ad7d-b2ed74d5393c] received connection request\n2025-07-15 19:03:32.758 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:03:32.779 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8bda0f0d-e8d3-47ac-ad7d-b2ed74d5393c] socks forwarding established\n2025-07-15 19:03:32.814 [info] [command][212a1a21-e45b-4287-bffb-b919ff57d8c5] Process exited with code 0\n2025-07-15 19:03:32.814 [info] [command][212a1a21-e45b-4287-bffb-b919ff57d8c5] Socket close event received\n2025-07-15 19:03:32.816 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][8bda0f0d-e8d3-47ac-ad7d-b2ed74d5393c] socks connection closed\n2025-07-15 19:03:32.848 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64546 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:04:32.815 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:04:32.817 [info] [command][6420cbb4-2671-4f3c-913b-f558f17ec7d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""6420cbb4-2671-4f3c-913b-f558f17ec7d1""}\n2025-07-15 19:04:32.818 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][1e908c8a-23f9-45c8-a1a5-235dfcc081c2] received connection request\n2025-07-15 19:04:32.818 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:04:32.836 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1e908c8a-23f9-45c8-a1a5-235dfcc081c2] socks forwarding established\n2025-07-15 19:04:32.866 [info] [command][6420cbb4-2671-4f3c-913b-f558f17ec7d1] Process exited with code 0\n2025-07-15 19:04:32.867 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][1e908c8a-23f9-45c8-a1a5-235dfcc081c2] socks connection closed\n2025-07-15 19:04:32.867 [info] [command][6420cbb4-2671-4f3c-913b-f558f17ec7d1] Socket close event received\n2025-07-15 19:04:32.884 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64592 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:05:32.869 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:05:32.870 [info] [command][0278bc49-dfce-4d05-8f45-f58225cfdf1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""0278bc49-dfce-4d05-8f45-f58225cfdf1e""}\n2025-07-15 19:05:32.870 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][123ed0be-07ec-40ec-849e-0411aec67e5b] received connection request\n2025-07-15 19:05:32.870 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:05:32.942 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][123ed0be-07ec-40ec-849e-0411aec67e5b] socks forwarding established\n2025-07-15 19:05:32.975 [info] [command][0278bc49-dfce-4d05-8f45-f58225cfdf1e] Process exited with code 0\n2025-07-15 19:05:32.976 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][123ed0be-07ec-40ec-849e-0411aec67e5b] socks connection closed\n2025-07-15 19:05:32.976 [info] [command][0278bc49-dfce-4d05-8f45-f58225cfdf1e] Socket close event received\n2025-07-15 19:05:33.120 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64635 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:06:32.980 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:06:32.981 [info] [command][7a6a3cdc-99e9-4cf0-ab1b-fabdb68f3a3b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7a6a3cdc-99e9-4cf0-ab1b-fabdb68f3a3b""}\n2025-07-15 19:06:32.982 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][48ab7dee-2c46-47aa-a57f-ed3ecce8d1d5] received connection request\n2025-07-15 19:06:32.983 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:06:33.005 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][48ab7dee-2c46-47aa-a57f-ed3ecce8d1d5] socks forwarding established\n2025-07-15 19:06:33.164 [info] [command][7a6a3cdc-99e9-4cf0-ab1b-fabdb68f3a3b] Process exited with code 0\n2025-07-15 19:06:33.164 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][48ab7dee-2c46-47aa-a57f-ed3ecce8d1d5] socks connection closed\n2025-07-15 19:06:33.164 [info] [command][7a6a3cdc-99e9-4cf0-ab1b-fabdb68f3a3b] Socket close event received\n2025-07-15 19:06:33.181 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64702 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:07:33.167 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:07:33.169 [info] [command][9fe5b094-3b45-417f-aea1-8b4c19b99cc4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""9fe5b094-3b45-417f-aea1-8b4c19b99cc4""}\n2025-07-15 19:07:33.169 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][e1bd6bca-0ee9-41c6-944d-b11b966c9db9] received connection request\n2025-07-15 19:07:33.170 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:07:33.231 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e1bd6bca-0ee9-41c6-944d-b11b966c9db9] socks forwarding established\n2025-07-15 19:07:33.261 [info] [command][9fe5b094-3b45-417f-aea1-8b4c19b99cc4] Process exited with code 0\n2025-07-15 19:07:33.261 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][e1bd6bca-0ee9-41c6-944d-b11b966c9db9] socks connection closed\n2025-07-15 19:07:33.261 [info] [command][9fe5b094-3b45-417f-aea1-8b4c19b99cc4] Socket close event received\n2025-07-15 19:07:33.327 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64738 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:08:33.266 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:08:33.267 [info] [command][1cc985aa-cf70-4212-ae55-207bcb91f834] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""1cc985aa-cf70-4212-ae55-207bcb91f834""}\n2025-07-15 19:08:33.267 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][d518edd8-e109-42ad-b657-248245a9fd66] received connection request\n2025-07-15 19:08:33.268 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 19:08:33.268 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:08:33.331 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d518edd8-e109-42ad-b657-248245a9fd66] socks forwarding established\n2025-07-15 19:08:33.360 [info] [command][1cc985aa-cf70-4212-ae55-207bcb91f834] Process exited with code 0\n2025-07-15 19:08:33.360 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][d518edd8-e109-42ad-b657-248245a9fd66] socks connection closed\n2025-07-15 19:08:33.360 [info] [command][1cc985aa-cf70-4212-ae55-207bcb91f834] Socket close event received\n2025-07-15 19:08:33.419 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64758 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:09:33.366 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:09:33.369 [info] [command][f697d44f-494f-46a2-9028-6aceaaad34e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""f697d44f-494f-46a2-9028-6aceaaad34e5""}\n2025-07-15 19:09:33.370 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][b06587fb-af76-4e33-9d22-09005295e9d3] received connection request\n2025-07-15 19:09:33.370 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:09:33.388 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b06587fb-af76-4e33-9d22-09005295e9d3] socks forwarding established\n2025-07-15 19:09:33.419 [info] [command][f697d44f-494f-46a2-9028-6aceaaad34e5] Process exited with code 0\n2025-07-15 19:09:33.419 [info] [command][f697d44f-494f-46a2-9028-6aceaaad34e5] Socket close event received\n2025-07-15 19:09:33.420 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][b06587fb-af76-4e33-9d22-09005295e9d3] socks connection closed\n2025-07-15 19:09:33.436 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64794 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:10:33.425 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:10:33.427 [info] [command][7fcb24f2-3db7-449b-8359-2f018e426e7d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""7fcb24f2-3db7-449b-8359-2f018e426e7d""}\n2025-07-15 19:10:33.428 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f7238d5a-7afd-400e-bf1a-3bcf07f9fb6a] received connection request\n2025-07-15 19:10:33.429 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:10:33.449 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f7238d5a-7afd-400e-bf1a-3bcf07f9fb6a] socks forwarding established\n2025-07-15 19:10:33.588 [info] [command][7fcb24f2-3db7-449b-8359-2f018e426e7d] Process exited with code 0\n2025-07-15 19:10:33.588 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f7238d5a-7afd-400e-bf1a-3bcf07f9fb6a] socks connection closed\n2025-07-15 19:10:33.588 [info] [command][7fcb24f2-3db7-449b-8359-2f018e426e7d] Socket close event received\n2025-07-15 19:10:33.605 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64826 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:11:33.592 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:11:33.593 [info] [command][88cff12f-e1b2-4988-9e85-a17d8d7da384] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""88cff12f-e1b2-4988-9e85-a17d8d7da384""}\n2025-07-15 19:11:33.593 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][f52c5ad1-1f6f-4f6d-9460-799c9e37cf3f] received connection request\n2025-07-15 19:11:33.593 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:11:33.610 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f52c5ad1-1f6f-4f6d-9460-799c9e37cf3f] socks forwarding established\n2025-07-15 19:11:33.641 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][f52c5ad1-1f6f-4f6d-9460-799c9e37cf3f] socks connection closed\n2025-07-15 19:11:33.641 [info] [command][88cff12f-e1b2-4988-9e85-a17d8d7da384] Process exited with code 0\n2025-07-15 19:11:33.642 [info] [command][88cff12f-e1b2-4988-9e85-a17d8d7da384] Socket close event received\n2025-07-15 19:11:33.659 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64868 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:12:33.644 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:12:33.645 [info] [command][4104b1b6-8e2e-4c73-a4d2-458608386e26] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""4104b1b6-8e2e-4c73-a4d2-458608386e26""}\n2025-07-15 19:12:33.645 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][17404b7b-cd86-4562-91f7-2c330d95f864] received connection request\n2025-07-15 19:12:33.645 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\n\n2025-07-15 19:12:33.646 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:12:33.664 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][17404b7b-cd86-4562-91f7-2c330d95f864] socks forwarding established\n2025-07-15 19:12:33.905 [info] [command][4104b1b6-8e2e-4c73-a4d2-458608386e26] Process exited with code 0\n2025-07-15 19:12:33.905 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][17404b7b-cd86-4562-91f7-2c330d95f864] socks connection closed\n2025-07-15 19:12:33.905 [info] [command][4104b1b6-8e2e-4c73-a4d2-458608386e26] Socket close event received\n2025-07-15 19:12:33.967 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64922 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:13:33.906 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:13:33.908 [info] [command][370f057e-682a-48f2-a187-b63082b3f4f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""370f057e-682a-48f2-a187-b63082b3f4f0""}\n2025-07-15 19:13:33.908 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:41109][23f51d7d-f37b-4e90-a1e8-10a569caaa1a] received connection request\n2025-07-15 19:13:33.909 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:13:33.926 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][23f51d7d-f37b-4e90-a1e8-10a569caaa1a] socks forwarding established\n2025-07-15 19:13:33.957 [info] [command][370f057e-682a-48f2-a187-b63082b3f4f0] Process exited with code 0\n2025-07-15 19:13:33.957 [info] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:65268 -> 127.0.0.1:41109][23f51d7d-f37b-4e90-a1e8-10a569caaa1a] socks connection closed\n2025-07-15 19:13:33.957 [info] [command][370f057e-682a-48f2-a187-b63082b3f4f0] Socket close event received\n2025-07-15 19:13:33.974 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65268 for 127.0.0.1 port 41109, connect from 127.0.0.1 port 64977 to 127.0.0.1 port 65268, nchannels 6\n\n2025-07-15 19:13:57.574 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-15 19:13:57.574 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-15 19:13:57.587 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:39145][b7984c36-eab5-4a46-bf11-64e6239f3073] received connection request\n2025-07-15 19:13:57.590 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:39145][96519220-ecd9-4633-a3cf-44f416bac5a4] received connection request\n2025-07-15 19:13:57.851 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\ndebug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:14:00.588 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-15 19:14:00.588 [error] Failed to connect to Cursor server at http://127.0.0.1:65313, attempt 1 of 3 This operation was aborted\n2025-07-15 19:14:00.589 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:39145][9d97f154-49bf-449f-a7c8-42db860f1a41] received connection request\n2025-07-15 19:14:00.589 [info] (ssh_tunnel) stderr: debug1: Connection to port 65268 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-15 19:14:00.687 [info] Terminating existing SSH process with pid: 42370\n2025-07-15 19:14:00.687 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-15 19:14:00.688 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-15 19:14:00.689 [error] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:65268 -> 127.0.0.1:39145][b7984c36-eab5-4a46-bf11-64e6239f3073] error while creating socks forwarding Socket closed\n2025-07-15 19:14:00.689 [error] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:65268 -> 127.0.0.1:39145][96519220-ecd9-4633-a3cf-44f416bac5a4] error while creating socks forwarding Socket closed\n2025-07-15 19:14:00.689 [error] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:65268 -> 127.0.0.1:39145][9d97f154-49bf-449f-a7c8-42db860f1a41] error while creating socks forwarding Socket closed\n2025-07-15 19:14:00.689 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:65268 -> 127.0.0.1:39145][1be7d995-21f4-4809-bef6-5d99408717d9] socks connection closed\n2025-07-15 19:14:00.689 [info] [forwarding][code][127.0.0.1:65313 -> 127.0.0.1:65268 -> 127.0.0.1:39145][4693c2ed-6e88-45ec-8cb2-2e545b136f2a] socks connection closed\n2025-07-15 19:14:00.689 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:14:00.692 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6044.sh"" | ssh -v -T -D 65014 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:14:00.692 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:14:00.692 [info] Waiting for server to install via process(56269)...\n2025-07-15 19:14:00.699 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-15 19:14:00.699 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:14:00.700 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 19:14:00.700 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:14:00.701 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:14:00.703 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:14:00.703 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:14:00.704 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:14:00.704 [info] Retrying connection in 5 seconds...\n2025-07-15 19:14:01.599 [error] Failed to connect to Cursor server at http://127.0.0.1:65313, attempt 2 of 3 This operation was aborted\n2025-07-15 19:14:02.605 [error] Failed to connect to Cursor server at http://127.0.0.1:65313, attempt 3 of 3 This operation was aborted\n2025-07-15 19:14:02.606 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-15 19:14:02.606 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-15 19:14:21.583 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6044.sh\n2025-07-15 19:14:21.589 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:14:21.595 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_96128.sh"" | ssh -v -T -D 65017 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:14:21.595 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:14:21.595 [info] Waiting for server to install via process(56280)...\n2025-07-15 19:14:21.606 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-15 19:14:21.606 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:14:21.606 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 19:14:21.607 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:14:21.607 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:14:21.608 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:14:21.609 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:14:21.609 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:14:21.609 [info] Retrying connection in 5 seconds...\n2025-07-15 19:14:26.613 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_96128.sh\n2025-07-15 19:14:26.613 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:14:26.620 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_24182.sh"" | ssh -v -T -D 65019 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:14:26.620 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:14:26.620 [info] Waiting for server to install via process(56288)...\n2025-07-15 19:14:26.642 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-15 19:14:26.642 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:14:26.642 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:14:26.642 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:14:26.643 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:14:26.644 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:14:26.644 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:14:26.644 [info] Retrying connection in 5 seconds...\n2025-07-15 19:14:31.651 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_24182.sh\n2025-07-15 19:14:31.653 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:14:31.656 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_67579.sh"" | ssh -v -T -D 65022 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:14:31.657 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:14:31.657 [info] Waiting for server to install via process(56295)...\n2025-07-15 19:14:31.681 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-15 19:14:31.681 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:14:31.682 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 19:14:31.682 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:14:31.682 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:14:31.685 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:14:31.685 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:14:31.686 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:14:31.686 [info] Retrying connection in 5 seconds...\n2025-07-15 19:14:39.412 [info] [remote-ssh] Pinging remote server on port 65314\n2025-07-15 19:14:39.413 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_67579.sh\n2025-07-15 19:14:39.414 [error] [forwarding][multiplex][127.0.0.1:65314 -> 127.0.0.1:undefined][4c1235af-037d-4850-896a-5afbf140cd88] remote server not configured\n2025-07-15 19:14:39.414 [info] [command][a643d8ad-2821-41d0-90d0-c63ddee63ae5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""dd18db9b-722d-4af0-b9fc-a967a56f0eb1"",""id"":""a643d8ad-2821-41d0-90d0-c63ddee63ae5""}\n2025-07-15 19:14:39.414 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:14:39.415 [error] [command][a643d8ad-2821-41d0-90d0-c63ddee63ae5] Socket error: Error: read ECONNRESET\n2025-07-15 19:14:39.415 [info] [command][a643d8ad-2821-41d0-90d0-c63ddee63ae5] Socket close event received\n2025-07-15 19:14:39.417 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_43452.sh"" | ssh -v -T -D 65025 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:14:39.417 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:14:39.417 [info] Waiting for server to install via process(56304)...\n2025-07-15 19:14:39.430 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-15 19:14:39.430 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:14:39.430 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 19:14:39.431 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:14:39.431 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:14:39.433 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:14:39.434 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:14:39.434 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:14:39.434 [info] Retrying connection in 5 seconds...\n2025-07-15 19:14:44.444 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_43452.sh\n2025-07-15 19:14:44.446 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:14:44.452 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_20823.sh"" | ssh -v -T -D 65027 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:14:44.453 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:14:44.453 [info] Waiting for server to install via process(56310)...\n2025-07-15 19:14:44.469 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-15 19:14:44.469 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:14:44.470 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 19:14:44.470 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:14:44.470 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:14:44.472 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:14:44.473 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:14:44.473 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:14:44.473 [info] Retrying connection in 5 seconds...\n2025-07-15 19:14:49.483 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_20823.sh\n2025-07-15 19:14:49.488 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:14:49.497 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_79102.sh"" | ssh -v -T -D 65031 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:14:49.497 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:14:49.497 [info] Waiting for server to install via process(56319)...\n2025-07-15 19:14:49.507 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-15 19:14:49.507 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:14:49.507 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 19:14:49.507 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:14:49.507 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:14:49.509 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:14:49.510 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:14:49.510 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:14:49.510 [info] Retrying connection in 5 seconds...\n2025-07-15 19:15:37.922 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_79102.sh\n2025-07-15 19:15:37.923 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:15:37.930 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3244.sh"" | ssh -v -T -D 65033 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:15:37.930 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:15:37.930 [info] Waiting for server to install via process(56327)...\n2025-07-15 19:15:37.941 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-15 19:15:37.942 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-15 19:15:37.942 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:15:37.942 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 19:15:37.943 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:15:37.943 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:15:37.946 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:15:37.946 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:15:37.947 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:15:37.947 [info] Retrying connection in 5 seconds...\n2025-07-15 19:15:42.957 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3244.sh\n2025-07-15 19:15:42.960 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:15:42.971 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_30510.sh"" | ssh -v -T -D 65036 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:15:42.971 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:15:42.971 [info] Waiting for server to install via process(56337)...\n2025-07-15 19:15:42.982 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-15 19:15:42.982 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:15:42.982 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 19:15:42.982 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:15:42.982 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:15:42.984 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:15:42.985 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:15:42.985 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:15:42.985 [info] Retrying connection in 5 seconds...\n2025-07-15 19:25:47.872 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_30510.sh\n2025-07-15 19:25:47.873 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-UNEyov/socket.sock\n2025-07-15 19:25:47.931 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_14958.sh"" | ssh -v -T -D 65037 horeka.scc.kit.edu bash --login -c bash\n2025-07-15 19:25:47.931 [info] Started installation script. Waiting for it to finish...\n2025-07-15 19:25:47.932 [info] Waiting for server to install via process(56344)...\n2025-07-15 19:25:47.941 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-15 19:25:47.941 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-15 19:25:47.941 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-15 19:25:47.941 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-15 19:25:47.941 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-15 19:25:47.943 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-15 19:25:47.944 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-15 19:25:47.944 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:25:47.944 [error] Failed to connect after 10 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-15 19:25:47.944 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_14958.sh\n2025-07-15 19:25:47.945 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 11:07:11.726 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-16 11:07:11.738 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 11:07:11.739 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-16 11:07:11.741 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 11:07:11.743 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_88832.sh"" | ssh -v -T -D 54879 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 11:07:11.743 [info] Started installation script. Waiting for it to finish...\n2025-07-16 11:07:11.743 [info] Waiting for server to install via process(59968)...\n2025-07-16 11:07:11.748 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 11:07:11.748 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 11:07:11.748 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 11:07:11.748 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 11:07:11.749 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 11:07:12.056 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-16 11:07:12.057 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-16 11:07:12.057 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-16 11:07:12.058 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\ndebug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-16 11:07:12.095 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-16 11:07:12.098 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-16 11:07:12.098 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT sent\n\n2025-07-16 11:07:12.111 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-16 11:07:12.112 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-16 11:07:12.138 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-16 11:07:12.140 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-16 11:07:12.140 [info] (ssh_tunnel) stderr: debug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-16 11:07:12.144 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\n\n2025-07-16 11:07:12.144 [info] (ssh_tunnel) stderr: debug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\ndebug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-16 11:07:12.216 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-16 11:07:12.236 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-16 11:07:12.239 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-16 11:07:12.239 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-16 11:07:12.834 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-16 11:07:12.858 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-16 11:07:16.102 [info] Askpass server received request: POST /\n2025-07-16 11:07:16.102 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-16 11:07:16.102 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-16 11:07:28.999 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-16 11:07:32.132 [info] Askpass server received request: POST /\n2025-07-16 11:07:32.132 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-16 11:07:32.132 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-16 11:07:35.805 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:54879 forwarded to remote address socks:0\n\n2025-07-16 11:07:35.806 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 54879.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 54879.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-16 11:07:36.363 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-16 11:07:36.365 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-16 11:07:36.377 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\n\n2025-07-16 11:07:36.378 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-16 11:07:36.379 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-16 11:07:39.121 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-16 11:07:39.240 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 11:07:39.250 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-16 11:07:39.290 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-16 11:07:39.303 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-16 11:07:39.409 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-16 11:07:39.418 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-16 11:07:39.437 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-16 11:07:39.452 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-16 11:07:39.504 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js 5af59a3f-6da2-4e66-b313-c39b8c9081bf\n\n2025-07-16 11:07:39.512 [info] (ssh_tunnel) stdout: Multiplex server started with PID 2440859 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-16 11:07:39.514 [info] (ssh_tunnel) stdout: Multiplex server token file found\n\n2025-07-16 11:07:39.521 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-16 11:07:40.112 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-16 11:07:40.154 [info] (ssh_tunnel) stdout: Code server script is not running\nCreating code server token file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 11:07:40.167 [info] (ssh_tunnel) stdout: Starting code server script /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2 &\n\n2025-07-16 11:07:40.174 [info] (ssh_tunnel) stdout: Code server started with PID 2440923 and wrote pid to file /run/user/996262/cursor-remote-code.pid.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 11:07:40.182 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 11:07:40.739 [info] (ssh_tunnel) stdout: ad03e32684c56721ea9b2a58: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\n\n2025-07-16 11:07:40.742 [info] (ssh_tunnel) stdout: errorMessage====\nisFatalError==false==\nmultiplexListeningOn==46131==\nmultiplexConnectionToken==5af59a3f-6da2-4e66-b313-c39b8c9081bf==\n\n2025-07-16 11:07:40.744 [info] (ssh_tunnel) stdout: codeListeningOn==36691==\ncodeConnectionToken==eec2fd76-3b12-4a3a-9f5f-ef00e4dedada==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\nad03e32684c56721ea9b2a58: end\nUnlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 11:07:40.745 [info] Server install command exit code: 0\n2025-07-16 11:07:40.745 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_88832.sh\n2025-07-16 11:07:40.746 [info] [forwarding][code] creating new forwarding server\n2025-07-16 11:07:40.747 [info] [forwarding][code] server listening on 54992\n2025-07-16 11:07:40.747 [info] [forwarding][code] Set up server\n2025-07-16 11:07:40.747 [info] [remote-ssh] codeListeningOn (remote=36691; local=54992) codeConnectionToken: eec2fd76-3b12-4a3a-9f5f-ef00e4dedada\n2025-07-16 11:07:40.747 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-16 11:07:40.747 [info] [forwarding][multiplex] server listening on 54993\n2025-07-16 11:07:40.747 [info] [forwarding][multiplex] Set up server\n2025-07-16 11:07:40.749 [info] [remote-ssh] multiplexListeningOn (remote=46131; local=54993) multiplexConnectionToken: 5af59a3f-6da2-4e66-b313-c39b8c9081bf\n2025-07-16 11:07:40.749 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:07:40.755 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c3fad03f-7dc1-4593-93e0-ab9e428294c3] received connection request\n2025-07-16 11:07:40.755 [info] [command][f5781b8b-7f95-433b-a33c-6c4d69a01ad7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f5781b8b-7f95-433b-a33c-6c4d69a01ad7""}\n2025-07-16 11:07:40.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:07:40.761 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:36691][837ae7db-bbd2-49e8-836a-b4a9769a234f] received connection request\n2025-07-16 11:07:40.764 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:07:40.781 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c3fad03f-7dc1-4593-93e0-ab9e428294c3] socks forwarding established\n2025-07-16 11:07:40.796 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:54879 -> 127.0.0.1:36691][837ae7db-bbd2-49e8-836a-b4a9769a234f] socks forwarding established\n2025-07-16 11:07:40.829 [info] [command][f5781b8b-7f95-433b-a33c-6c4d69a01ad7] Process exited with code 0\n2025-07-16 11:07:40.830 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c3fad03f-7dc1-4593-93e0-ab9e428294c3] socks connection closed\n2025-07-16 11:07:40.830 [info] [command][f5781b8b-7f95-433b-a33c-6c4d69a01ad7] Socket close event received\n2025-07-16 11:07:40.841 [info] Successfully connected to Cursor server at http://127.0.0.1:54992/version\n2025-07-16 11:07:40.841 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-16 11:07:40.842 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7bf95f94-0cc4-4824-a68e-837da35f8d91] received connection request\n2025-07-16 11:07:40.842 [info] [command][55ff39d2-3341-48e0-b94c-418a1cb61639] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""55ff39d2-3341-48e0-b94c-418a1cb61639""}\n2025-07-16 11:07:40.842 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:07:40.846 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54995 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:07:40.864 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7bf95f94-0cc4-4824-a68e-837da35f8d91] socks forwarding established\n2025-07-16 11:07:40.896 [info] [command][55ff39d2-3341-48e0-b94c-418a1cb61639] Process exited with code 0\n2025-07-16 11:07:40.896 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-16 11:07:40.896 [info] [remote-ssh] Resolved exec server. Socks port: 54879\n2025-07-16 11:07:40.896 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":54992,""connectionToken"":""eec2fd76-3b12-4a3a-9f5f-ef00e4dedada"",""extensionHostEnv"":{}}. Socks port: 54879\n2025-07-16 11:07:40.896 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7bf95f94-0cc4-4824-a68e-837da35f8d91] socks connection closed\n2025-07-16 11:07:40.896 [info] [command][55ff39d2-3341-48e0-b94c-418a1cb61639] Socket close event received\n2025-07-16 11:07:40.915 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54999 to 127.0.0.1 port 54879, nchannels 5\n\n2025-07-16 11:07:43.871 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 36691, connect from 127.0.0.1 port 54997 to 127.0.0.1 port 54879, nchannels 4\n\n2025-07-16 11:07:43.872 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:54879 -> 127.0.0.1:36691][837ae7db-bbd2-49e8-836a-b4a9769a234f] socks connection closed\n2025-07-16 11:07:53.020 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:36691][b208034b-ea47-489d-9a2f-a66c1a0bf91f] received connection request\n2025-07-16 11:07:53.021 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:07:53.121 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:54879 -> 127.0.0.1:36691][b208034b-ea47-489d-9a2f-a66c1a0bf91f] socks forwarding established\n2025-07-16 11:07:53.156 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:36691][3750a387-fd9f-49e7-aa49-114a943db93b] received connection request\n2025-07-16 11:07:53.156 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:07:53.299 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:54879 -> 127.0.0.1:36691][3750a387-fd9f-49e7-aa49-114a943db93b] socks forwarding established\n2025-07-16 11:07:53.719 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-16 11:08:00.075 [info] [tunnel-forwarding][127.0.0.1:8791 -> localhost:8791] server listening\n2025-07-16 11:08:40.832 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:08:40.833 [info] [command][0e5fd657-f9ef-48c8-ad92-b172c285bbd7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0e5fd657-f9ef-48c8-ad92-b172c285bbd7""}\n2025-07-16 11:08:40.834 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][46115b26-263b-49b3-b44d-c4c68c7dc5a7] received connection request\n2025-07-16 11:08:40.834 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:08:40.852 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][46115b26-263b-49b3-b44d-c4c68c7dc5a7] socks forwarding established\n2025-07-16 11:08:40.881 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][46115b26-263b-49b3-b44d-c4c68c7dc5a7] socks connection closed\n2025-07-16 11:08:40.882 [info] [command][0e5fd657-f9ef-48c8-ad92-b172c285bbd7] Process exited with code 0\n2025-07-16 11:08:40.882 [info] [command][0e5fd657-f9ef-48c8-ad92-b172c285bbd7] Socket close event received\n2025-07-16 11:08:40.900 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55157 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:09:40.887 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:09:40.889 [info] [command][28b40c6f-12c7-4ab9-b62f-05f3f994949f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""28b40c6f-12c7-4ab9-b62f-05f3f994949f""}\n2025-07-16 11:09:40.890 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d8d1a7c6-0f3d-4f19-a1a5-bd1ca48f698a] received connection request\n2025-07-16 11:09:40.890 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:09:40.908 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d8d1a7c6-0f3d-4f19-a1a5-bd1ca48f698a] socks forwarding established\n2025-07-16 11:09:40.938 [info] [command][28b40c6f-12c7-4ab9-b62f-05f3f994949f] Process exited with code 0\n2025-07-16 11:09:40.939 [info] [command][28b40c6f-12c7-4ab9-b62f-05f3f994949f] Socket close event received\n2025-07-16 11:09:40.940 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d8d1a7c6-0f3d-4f19-a1a5-bd1ca48f698a] socks connection closed\n2025-07-16 11:09:40.956 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55223 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:10:40.942 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:10:40.945 [info] [command][ff7f1a14-d46a-4050-a09c-5aca5212593b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ff7f1a14-d46a-4050-a09c-5aca5212593b""}\n2025-07-16 11:10:40.947 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][29580a0c-1562-4750-b16d-67bb84d4d42f] received connection request\n2025-07-16 11:10:40.948 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 11:10:40.948 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:10:40.966 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][29580a0c-1562-4750-b16d-67bb84d4d42f] socks forwarding established\n2025-07-16 11:10:40.997 [info] [command][ff7f1a14-d46a-4050-a09c-5aca5212593b] Process exited with code 0\n2025-07-16 11:10:40.998 [info] [command][ff7f1a14-d46a-4050-a09c-5aca5212593b] Socket close event received\n2025-07-16 11:10:40.999 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][29580a0c-1562-4750-b16d-67bb84d4d42f] socks connection closed\n2025-07-16 11:10:41.013 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55252 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:11:40.998 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:11:41.001 [info] [command][e8ddef2c-c75f-416a-9953-abafb18b652f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e8ddef2c-c75f-416a-9953-abafb18b652f""}\n2025-07-16 11:11:41.001 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4f4ce392-b7cb-4d2a-a676-f3ccf4369173] received connection request\n2025-07-16 11:11:41.002 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:11:41.025 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f4ce392-b7cb-4d2a-a676-f3ccf4369173] socks forwarding established\n2025-07-16 11:11:41.057 [info] [command][e8ddef2c-c75f-416a-9953-abafb18b652f] Process exited with code 0\n2025-07-16 11:11:41.057 [info] [command][e8ddef2c-c75f-416a-9953-abafb18b652f] Socket close event received\n2025-07-16 11:11:41.058 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f4ce392-b7cb-4d2a-a676-f3ccf4369173] socks connection closed\n2025-07-16 11:11:41.092 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55303 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:12:41.063 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:12:41.066 [info] [command][2374cbc8-e8fb-493b-9625-f55b9cb8b4c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2374cbc8-e8fb-493b-9625-f55b9cb8b4c7""}\n2025-07-16 11:12:41.067 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][40afb2a1-2996-4e38-afb3-8c0da3923a21] received connection request\n2025-07-16 11:12:41.068 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:12:41.113 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][40afb2a1-2996-4e38-afb3-8c0da3923a21] socks forwarding established\n2025-07-16 11:12:41.219 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][40afb2a1-2996-4e38-afb3-8c0da3923a21] socks connection closed\n2025-07-16 11:12:41.219 [info] [command][2374cbc8-e8fb-493b-9625-f55b9cb8b4c7] Process exited with code 0\n2025-07-16 11:12:41.220 [info] [command][2374cbc8-e8fb-493b-9625-f55b9cb8b4c7] Socket close event received\n2025-07-16 11:12:41.237 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55383 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:13:41.220 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:13:41.223 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][52bffefc-2ea8-4cb5-a4f9-1dc41f7b876d] received connection request\n2025-07-16 11:13:41.223 [info] [command][6612216f-6665-4fcc-a4ef-492849c2edf6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6612216f-6665-4fcc-a4ef-492849c2edf6""}\n2025-07-16 11:13:41.223 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:13:41.240 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][52bffefc-2ea8-4cb5-a4f9-1dc41f7b876d] socks forwarding established\n2025-07-16 11:13:41.269 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][52bffefc-2ea8-4cb5-a4f9-1dc41f7b876d] socks connection closed\n2025-07-16 11:13:41.269 [info] [command][6612216f-6665-4fcc-a4ef-492849c2edf6] Process exited with code 0\n2025-07-16 11:13:41.269 [info] [command][6612216f-6665-4fcc-a4ef-492849c2edf6] Socket close event received\n2025-07-16 11:13:41.286 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55417 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:14:41.273 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:14:41.276 [info] [command][d7d53d26-669d-47ec-b551-14eca7139922] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d7d53d26-669d-47ec-b551-14eca7139922""}\n2025-07-16 11:14:41.276 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8f66c399-1fe4-4973-aca3-262e9714aa17] received connection request\n2025-07-16 11:14:41.277 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:14:41.295 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8f66c399-1fe4-4973-aca3-262e9714aa17] socks forwarding established\n2025-07-16 11:14:41.324 [info] [command][d7d53d26-669d-47ec-b551-14eca7139922] Process exited with code 0\n2025-07-16 11:14:41.325 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8f66c399-1fe4-4973-aca3-262e9714aa17] socks connection closed\n2025-07-16 11:14:41.325 [info] [command][d7d53d26-669d-47ec-b551-14eca7139922] Socket close event received\n2025-07-16 11:14:41.342 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55457 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:15:41.326 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:15:41.329 [info] [command][bcd13cf6-cc2e-4b99-8446-c43742c4bf21] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bcd13cf6-cc2e-4b99-8446-c43742c4bf21""}\n2025-07-16 11:15:41.329 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f8682eb6-644b-4f05-ac03-0e80120ffe25] received connection request\n2025-07-16 11:15:41.330 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:15:41.347 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f8682eb6-644b-4f05-ac03-0e80120ffe25] socks forwarding established\n2025-07-16 11:15:41.377 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f8682eb6-644b-4f05-ac03-0e80120ffe25] socks connection closed\n2025-07-16 11:15:41.377 [info] [command][bcd13cf6-cc2e-4b99-8446-c43742c4bf21] Process exited with code 0\n2025-07-16 11:15:41.377 [info] [command][bcd13cf6-cc2e-4b99-8446-c43742c4bf21] Socket close event received\n2025-07-16 11:15:41.392 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55494 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:16:41.383 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:16:41.385 [info] [command][323afb0a-6ca2-4868-952a-47da1a272ff5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""323afb0a-6ca2-4868-952a-47da1a272ff5""}\n2025-07-16 11:16:41.386 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2c10d2ca-8de1-4e98-adda-db5cb99a4758] received connection request\n2025-07-16 11:16:41.386 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:16:41.403 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2c10d2ca-8de1-4e98-adda-db5cb99a4758] socks forwarding established\n2025-07-16 11:16:41.433 [info] [command][323afb0a-6ca2-4868-952a-47da1a272ff5] Process exited with code 0\n2025-07-16 11:16:41.433 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2c10d2ca-8de1-4e98-adda-db5cb99a4758] socks connection closed\n2025-07-16 11:16:41.433 [info] [command][323afb0a-6ca2-4868-952a-47da1a272ff5] Socket close event received\n2025-07-16 11:16:41.450 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55544 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:17:41.439 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:17:41.442 [info] [command][a30ad978-4bff-4a2d-8220-5ada3f68e478] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a30ad978-4bff-4a2d-8220-5ada3f68e478""}\n2025-07-16 11:17:41.443 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][fe91cd61-76e8-4b90-8710-b3f514b87aeb] received connection request\n2025-07-16 11:17:41.444 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:17:41.464 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fe91cd61-76e8-4b90-8710-b3f514b87aeb] socks forwarding established\n2025-07-16 11:17:41.499 [info] [command][a30ad978-4bff-4a2d-8220-5ada3f68e478] Process exited with code 0\n2025-07-16 11:17:41.499 [info] [command][a30ad978-4bff-4a2d-8220-5ada3f68e478] Socket close event received\n2025-07-16 11:17:41.500 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fe91cd61-76e8-4b90-8710-b3f514b87aeb] socks connection closed\n2025-07-16 11:17:41.518 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55610 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:18:41.504 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:18:41.507 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][aceed40a-6aaa-4785-9e4c-7d02c8c0e080] received connection request\n2025-07-16 11:18:41.508 [info] [command][f8f6db54-5e33-4954-b356-5940e88c346a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f8f6db54-5e33-4954-b356-5940e88c346a""}\n2025-07-16 11:18:41.508 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:18:41.591 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aceed40a-6aaa-4785-9e4c-7d02c8c0e080] socks forwarding established\n2025-07-16 11:18:41.621 [info] [command][f8f6db54-5e33-4954-b356-5940e88c346a] Process exited with code 0\n2025-07-16 11:18:41.621 [info] [command][f8f6db54-5e33-4954-b356-5940e88c346a] Socket close event received\n2025-07-16 11:18:41.621 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aceed40a-6aaa-4785-9e4c-7d02c8c0e080] socks connection closed\n2025-07-16 11:18:41.769 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55646 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:19:41.626 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:19:41.628 [info] [command][be8e9281-dcf3-4035-9061-489648250cdc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""be8e9281-dcf3-4035-9061-489648250cdc""}\n2025-07-16 11:19:41.629 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c9a467fd-8db8-4758-8f30-6a7d8ad7f988] received connection request\n2025-07-16 11:19:41.629 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:19:41.647 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c9a467fd-8db8-4758-8f30-6a7d8ad7f988] socks forwarding established\n2025-07-16 11:19:41.679 [info] [command][be8e9281-dcf3-4035-9061-489648250cdc] Process exited with code 0\n2025-07-16 11:19:41.679 [info] [command][be8e9281-dcf3-4035-9061-489648250cdc] Socket close event received\n2025-07-16 11:19:41.679 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c9a467fd-8db8-4758-8f30-6a7d8ad7f988] socks connection closed\n2025-07-16 11:19:41.696 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55679 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:20:41.680 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:20:41.683 [info] [command][ce4bdd4a-5656-4d32-a07a-186c96baafbd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ce4bdd4a-5656-4d32-a07a-186c96baafbd""}\n2025-07-16 11:20:41.683 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1f263d46-675b-45e6-bc6a-8a9a8b312ad0] received connection request\n2025-07-16 11:20:41.684 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:20:41.702 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1f263d46-675b-45e6-bc6a-8a9a8b312ad0] socks forwarding established\n2025-07-16 11:20:41.733 [info] [command][ce4bdd4a-5656-4d32-a07a-186c96baafbd] Process exited with code 0\n2025-07-16 11:20:41.733 [info] [command][ce4bdd4a-5656-4d32-a07a-186c96baafbd] Socket close event received\n2025-07-16 11:20:41.734 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1f263d46-675b-45e6-bc6a-8a9a8b312ad0] socks connection closed\n2025-07-16 11:20:41.753 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55716 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:21:41.738 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:21:41.741 [info] [command][b433e681-2c49-4318-aa29-e4cbd51da9ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b433e681-2c49-4318-aa29-e4cbd51da9ba""}\n2025-07-16 11:21:41.742 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d2c04c5d-2dbe-4a68-abad-0d41d28bea87] received connection request\n2025-07-16 11:21:41.743 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:21:41.762 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d2c04c5d-2dbe-4a68-abad-0d41d28bea87] socks forwarding established\n2025-07-16 11:21:41.794 [info] [command][b433e681-2c49-4318-aa29-e4cbd51da9ba] Process exited with code 0\n2025-07-16 11:21:41.794 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d2c04c5d-2dbe-4a68-abad-0d41d28bea87] socks connection closed\n2025-07-16 11:21:41.795 [info] [command][b433e681-2c49-4318-aa29-e4cbd51da9ba] Socket close event received\n2025-07-16 11:21:41.812 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55755 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:22:41.799 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:22:41.801 [info] [command][1c7ba2ee-ba04-4ec4-b964-1f18d0d15bc3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1c7ba2ee-ba04-4ec4-b964-1f18d0d15bc3""}\n2025-07-16 11:22:41.801 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][63138bd8-2716-4c2d-a549-93eaaf9269a9] received connection request\n2025-07-16 11:22:41.801 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 11:22:41.801 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:22:41.818 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][63138bd8-2716-4c2d-a549-93eaaf9269a9] socks forwarding established\n2025-07-16 11:22:41.847 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][63138bd8-2716-4c2d-a549-93eaaf9269a9] socks connection closed\n2025-07-16 11:22:41.847 [info] [command][1c7ba2ee-ba04-4ec4-b964-1f18d0d15bc3] Process exited with code 0\n2025-07-16 11:22:41.847 [info] [command][1c7ba2ee-ba04-4ec4-b964-1f18d0d15bc3] Socket close event received\n2025-07-16 11:22:41.863 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55802 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:23:41.853 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:23:41.855 [info] [command][6f7a5985-73cb-4630-8860-86d3d8e3842a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6f7a5985-73cb-4630-8860-86d3d8e3842a""}\n2025-07-16 11:23:41.857 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][def29ff2-2430-4a08-81d3-5cad05ef4a3b] received connection request\n2025-07-16 11:23:41.857 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:23:41.874 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][def29ff2-2430-4a08-81d3-5cad05ef4a3b] socks forwarding established\n2025-07-16 11:23:41.901 [info] [command][6f7a5985-73cb-4630-8860-86d3d8e3842a] Process exited with code 0\n2025-07-16 11:23:41.901 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][def29ff2-2430-4a08-81d3-5cad05ef4a3b] socks connection closed\n2025-07-16 11:23:41.901 [info] [command][6f7a5985-73cb-4630-8860-86d3d8e3842a] Socket close event received\n2025-07-16 11:23:41.919 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55828 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:24:41.902 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:24:41.903 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][27d247ba-6c97-4c66-a981-64e7d4595738] received connection request\n2025-07-16 11:24:41.903 [info] [command][68cebcbd-372d-4ae3-9416-eb593eed8e37] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""68cebcbd-372d-4ae3-9416-eb593eed8e37""}\n2025-07-16 11:24:41.903 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 11:24:41.904 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:24:41.969 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][27d247ba-6c97-4c66-a981-64e7d4595738] socks forwarding established\n2025-07-16 11:24:41.998 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][27d247ba-6c97-4c66-a981-64e7d4595738] socks connection closed\n2025-07-16 11:24:41.998 [info] [command][68cebcbd-372d-4ae3-9416-eb593eed8e37] Process exited with code 0\n2025-07-16 11:24:41.998 [info] [command][68cebcbd-372d-4ae3-9416-eb593eed8e37] Socket close event received\n2025-07-16 11:24:42.145 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55858 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:25:42.004 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:25:42.007 [info] [command][eb49a1f9-7242-44f5-bdab-b1dab3052caa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""eb49a1f9-7242-44f5-bdab-b1dab3052caa""}\n2025-07-16 11:25:42.007 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5327ede1-ff56-4d7c-b278-b92e76c38b56] received connection request\n2025-07-16 11:25:42.008 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:25:42.031 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5327ede1-ff56-4d7c-b278-b92e76c38b56] socks forwarding established\n2025-07-16 11:25:42.061 [info] [command][eb49a1f9-7242-44f5-bdab-b1dab3052caa] Process exited with code 0\n2025-07-16 11:25:42.062 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5327ede1-ff56-4d7c-b278-b92e76c38b56] socks connection closed\n2025-07-16 11:25:42.062 [info] [command][eb49a1f9-7242-44f5-bdab-b1dab3052caa] Socket close event received\n2025-07-16 11:25:42.080 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55893 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:26:42.063 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:26:42.065 [info] [command][536388b3-1527-4962-9b27-46d91d3af5f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""536388b3-1527-4962-9b27-46d91d3af5f5""}\n2025-07-16 11:26:42.065 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][fdc70f58-c0c1-404b-b007-e080c305e69d] received connection request\n2025-07-16 11:26:42.065 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:26:42.082 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fdc70f58-c0c1-404b-b007-e080c305e69d] socks forwarding established\n2025-07-16 11:26:42.112 [info] [command][536388b3-1527-4962-9b27-46d91d3af5f5] Process exited with code 0\n2025-07-16 11:26:42.113 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fdc70f58-c0c1-404b-b007-e080c305e69d] socks connection closed\n2025-07-16 11:26:42.113 [info] [command][536388b3-1527-4962-9b27-46d91d3af5f5] Socket close event received\n2025-07-16 11:26:42.131 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55939 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:27:42.118 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:27:42.120 [info] [command][63c0efee-6c2c-4d9b-b099-bc7989636e38] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""63c0efee-6c2c-4d9b-b099-bc7989636e38""}\n2025-07-16 11:27:42.120 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0a37ba03-1fd8-4df7-ba66-f2c6a24e1686] received connection request\n2025-07-16 11:27:42.120 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:27:42.137 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0a37ba03-1fd8-4df7-ba66-f2c6a24e1686] socks forwarding established\n2025-07-16 11:27:42.166 [info] [command][63c0efee-6c2c-4d9b-b099-bc7989636e38] Process exited with code 0\n2025-07-16 11:27:42.166 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0a37ba03-1fd8-4df7-ba66-f2c6a24e1686] socks connection closed\n2025-07-16 11:27:42.166 [info] [command][63c0efee-6c2c-4d9b-b099-bc7989636e38] Socket close event received\n2025-07-16 11:27:42.185 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56005 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:28:42.171 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:28:42.174 [info] [command][47649e09-019c-4eda-ab09-e22282e58ba8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""47649e09-019c-4eda-ab09-e22282e58ba8""}\n2025-07-16 11:28:42.176 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][59bbcbd8-9545-4d1a-a101-223aad9c9d0a] received connection request\n2025-07-16 11:28:42.177 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:28:42.204 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][59bbcbd8-9545-4d1a-a101-223aad9c9d0a] socks forwarding established\n2025-07-16 11:28:42.236 [info] [command][47649e09-019c-4eda-ab09-e22282e58ba8] Process exited with code 0\n2025-07-16 11:28:42.236 [info] [command][47649e09-019c-4eda-ab09-e22282e58ba8] Socket close event received\n2025-07-16 11:28:42.237 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][59bbcbd8-9545-4d1a-a101-223aad9c9d0a] socks connection closed\n2025-07-16 11:28:42.255 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56035 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:29:42.240 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:29:42.241 [info] [command][5d415962-42cc-4977-ac3c-bdad6622037a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5d415962-42cc-4977-ac3c-bdad6622037a""}\n2025-07-16 11:29:42.242 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][23bca81d-689d-40e6-a035-1f40b9bae44a] received connection request\n2025-07-16 11:29:42.242 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 11:29:42.242 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:29:42.259 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][23bca81d-689d-40e6-a035-1f40b9bae44a] socks forwarding established\n2025-07-16 11:29:42.287 [info] [command][5d415962-42cc-4977-ac3c-bdad6622037a] Process exited with code 0\n2025-07-16 11:29:42.287 [info] [command][5d415962-42cc-4977-ac3c-bdad6622037a] Socket close event received\n2025-07-16 11:29:42.288 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][23bca81d-689d-40e6-a035-1f40b9bae44a] socks connection closed\n2025-07-16 11:29:42.304 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56080 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:30:42.291 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:30:42.294 [info] [command][0fc6afad-bb2e-4b49-af04-406cbbd83581] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0fc6afad-bb2e-4b49-af04-406cbbd83581""}\n2025-07-16 11:30:42.295 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c7fb9f0b-65b4-46e5-a8c6-ca50cf37ef03] received connection request\n2025-07-16 11:30:42.296 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:30:42.315 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c7fb9f0b-65b4-46e5-a8c6-ca50cf37ef03] socks forwarding established\n2025-07-16 11:30:42.477 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c7fb9f0b-65b4-46e5-a8c6-ca50cf37ef03] socks connection closed\n2025-07-16 11:30:42.477 [info] [command][0fc6afad-bb2e-4b49-af04-406cbbd83581] Process exited with code 0\n2025-07-16 11:30:42.477 [info] [command][0fc6afad-bb2e-4b49-af04-406cbbd83581] Socket close event received\n2025-07-16 11:30:42.494 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56108 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:31:42.483 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:31:42.485 [info] [command][5a1c8528-13bd-4700-85bf-8b9b7e2f8423] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5a1c8528-13bd-4700-85bf-8b9b7e2f8423""}\n2025-07-16 11:31:42.485 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][43739f5a-16c5-4fe0-9b7c-7d814baf8006] received connection request\n2025-07-16 11:31:42.485 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:31:42.502 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43739f5a-16c5-4fe0-9b7c-7d814baf8006] socks forwarding established\n2025-07-16 11:31:42.532 [info] [command][5a1c8528-13bd-4700-85bf-8b9b7e2f8423] Process exited with code 0\n2025-07-16 11:31:42.533 [info] [command][5a1c8528-13bd-4700-85bf-8b9b7e2f8423] Socket close event received\n2025-07-16 11:31:42.533 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43739f5a-16c5-4fe0-9b7c-7d814baf8006] socks connection closed\n2025-07-16 11:31:42.549 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56162 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:32:42.538 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:32:42.540 [info] [command][f3024580-8252-4a04-8161-305da16c5213] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f3024580-8252-4a04-8161-305da16c5213""}\n2025-07-16 11:32:42.540 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0005c212-0504-4a35-a799-98f8ea97f06b] received connection request\n2025-07-16 11:32:42.541 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:32:42.558 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0005c212-0504-4a35-a799-98f8ea97f06b] socks forwarding established\n2025-07-16 11:32:42.586 [info] [command][f3024580-8252-4a04-8161-305da16c5213] Process exited with code 0\n2025-07-16 11:32:42.586 [info] [command][f3024580-8252-4a04-8161-305da16c5213] Socket close event received\n2025-07-16 11:32:42.587 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0005c212-0504-4a35-a799-98f8ea97f06b] socks connection closed\n2025-07-16 11:32:42.603 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56231 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:33:42.591 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:33:42.594 [info] [command][6f86a098-6eb6-476b-adf7-876c19666169] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6f86a098-6eb6-476b-adf7-876c19666169""}\n2025-07-16 11:33:42.594 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][24e9962f-35bd-47f2-873f-ae3f34b18df8] received connection request\n2025-07-16 11:33:42.594 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:33:42.611 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][24e9962f-35bd-47f2-873f-ae3f34b18df8] socks forwarding established\n2025-07-16 11:33:42.641 [info] [command][6f86a098-6eb6-476b-adf7-876c19666169] Process exited with code 0\n2025-07-16 11:33:42.641 [info] [command][6f86a098-6eb6-476b-adf7-876c19666169] Socket close event received\n2025-07-16 11:33:42.642 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][24e9962f-35bd-47f2-873f-ae3f34b18df8] socks connection closed\n2025-07-16 11:33:42.658 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56266 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:34:42.644 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:34:42.646 [info] [command][bafd6afa-2d1e-41f0-8bfb-6c413961829e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bafd6afa-2d1e-41f0-8bfb-6c413961829e""}\n2025-07-16 11:34:42.647 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][561e7a95-ed7f-4d73-a3cb-57a428973407] received connection request\n2025-07-16 11:34:42.648 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:34:42.664 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][561e7a95-ed7f-4d73-a3cb-57a428973407] socks forwarding established\n2025-07-16 11:34:42.695 [info] [command][bafd6afa-2d1e-41f0-8bfb-6c413961829e] Process exited with code 0\n2025-07-16 11:34:42.695 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][561e7a95-ed7f-4d73-a3cb-57a428973407] socks connection closed\n2025-07-16 11:34:42.695 [info] [command][bafd6afa-2d1e-41f0-8bfb-6c413961829e] Socket close event received\n2025-07-16 11:34:42.711 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56287 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:35:42.701 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:35:42.703 [info] [command][5d5eb676-0139-4245-9e09-62cf2b7f9923] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5d5eb676-0139-4245-9e09-62cf2b7f9923""}\n2025-07-16 11:35:42.704 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][01c98f71-4e3b-4eaf-98d4-59493058832e] received connection request\n2025-07-16 11:35:42.705 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:35:42.723 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][01c98f71-4e3b-4eaf-98d4-59493058832e] socks forwarding established\n2025-07-16 11:35:42.753 [info] [command][5d5eb676-0139-4245-9e09-62cf2b7f9923] Process exited with code 0\n2025-07-16 11:35:42.753 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][01c98f71-4e3b-4eaf-98d4-59493058832e] socks connection closed\n2025-07-16 11:35:42.753 [info] [command][5d5eb676-0139-4245-9e09-62cf2b7f9923] Socket close event received\n2025-07-16 11:35:42.770 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56310 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:36:42.758 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:36:42.760 [info] [command][3a80d687-296f-4035-9029-99d3228d6305] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3a80d687-296f-4035-9029-99d3228d6305""}\n2025-07-16 11:36:42.761 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][ec88cc1d-034f-49cc-a35d-27af956a0cf1] received connection request\n2025-07-16 11:36:42.762 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:36:42.796 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ec88cc1d-034f-49cc-a35d-27af956a0cf1] socks forwarding established\n2025-07-16 11:36:42.955 [info] [command][3a80d687-296f-4035-9029-99d3228d6305] Process exited with code 0\n2025-07-16 11:36:42.956 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ec88cc1d-034f-49cc-a35d-27af956a0cf1] socks connection closed\n2025-07-16 11:36:42.956 [info] [command][3a80d687-296f-4035-9029-99d3228d6305] Socket close event received\n2025-07-16 11:36:42.975 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56346 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:37:42.960 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:37:42.962 [info] [command][623359b9-8c87-4584-a63d-1958b34425b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""623359b9-8c87-4584-a63d-1958b34425b8""}\n2025-07-16 11:37:42.963 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6e6ef120-05c8-4376-8ff6-0ce5a98c4071] received connection request\n2025-07-16 11:37:42.964 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:37:43.010 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6e6ef120-05c8-4376-8ff6-0ce5a98c4071] socks forwarding established\n2025-07-16 11:37:43.045 [info] [command][623359b9-8c87-4584-a63d-1958b34425b8] Process exited with code 0\n2025-07-16 11:37:43.045 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6e6ef120-05c8-4376-8ff6-0ce5a98c4071] socks connection closed\n2025-07-16 11:37:43.045 [info] [command][623359b9-8c87-4584-a63d-1958b34425b8] Socket close event received\n2025-07-16 11:37:43.065 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56404 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:38:43.049 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:38:43.051 [info] [command][fb78f36f-70a6-4b09-893c-b42ff3d3ac09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fb78f36f-70a6-4b09-893c-b42ff3d3ac09""}\n2025-07-16 11:38:43.052 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][20d93671-de1a-4245-b9e9-dee50a635ad8] received connection request\n2025-07-16 11:38:43.053 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:38:43.196 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][20d93671-de1a-4245-b9e9-dee50a635ad8] socks forwarding established\n2025-07-16 11:38:43.231 [info] [command][fb78f36f-70a6-4b09-893c-b42ff3d3ac09] Process exited with code 0\n2025-07-16 11:38:43.232 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][20d93671-de1a-4245-b9e9-dee50a635ad8] socks connection closed\n2025-07-16 11:38:43.232 [info] [command][fb78f36f-70a6-4b09-893c-b42ff3d3ac09] Socket close event received\n2025-07-16 11:38:43.346 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56431 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:39:43.234 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:39:43.237 [info] [command][db3ce582-3102-47d0-91ac-f08d77724ad5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""db3ce582-3102-47d0-91ac-f08d77724ad5""}\n2025-07-16 11:39:43.238 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][73415d5c-a390-400c-8ffb-4823cf683b58] received connection request\n2025-07-16 11:39:43.238 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:39:43.257 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][73415d5c-a390-400c-8ffb-4823cf683b58] socks forwarding established\n2025-07-16 11:39:43.289 [info] [command][db3ce582-3102-47d0-91ac-f08d77724ad5] Process exited with code 0\n2025-07-16 11:39:43.290 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][73415d5c-a390-400c-8ffb-4823cf683b58] socks connection closed\n2025-07-16 11:39:43.290 [info] [command][db3ce582-3102-47d0-91ac-f08d77724ad5] Socket close event received\n2025-07-16 11:39:43.308 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56457 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:40:43.292 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:40:43.292 [info] [command][ed4d4b11-504b-4336-8a03-cadbb9b59770] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ed4d4b11-504b-4336-8a03-cadbb9b59770""}\n2025-07-16 11:40:43.293 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0b0ac47b-4246-4cbf-b7ec-760b73449cf5] received connection request\n2025-07-16 11:40:43.293 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:40:43.331 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0b0ac47b-4246-4cbf-b7ec-760b73449cf5] socks forwarding established\n2025-07-16 11:40:43.361 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0b0ac47b-4246-4cbf-b7ec-760b73449cf5] socks connection closed\n2025-07-16 11:40:43.361 [info] [command][ed4d4b11-504b-4336-8a03-cadbb9b59770] Process exited with code 0\n2025-07-16 11:40:43.361 [info] [command][ed4d4b11-504b-4336-8a03-cadbb9b59770] Socket close event received\n2025-07-16 11:40:43.379 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56485 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:41:43.363 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:41:43.366 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6d82ed61-186f-4f24-a307-8aafa70277cc] received connection request\n2025-07-16 11:41:43.367 [info] [command][9fc99e4e-d004-4ec8-952a-f717187c64a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9fc99e4e-d004-4ec8-952a-f717187c64a0""}\n2025-07-16 11:41:43.367 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:41:43.385 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6d82ed61-186f-4f24-a307-8aafa70277cc] socks forwarding established\n2025-07-16 11:41:43.418 [info] [command][9fc99e4e-d004-4ec8-952a-f717187c64a0] Process exited with code 0\n2025-07-16 11:41:43.419 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6d82ed61-186f-4f24-a307-8aafa70277cc] socks connection closed\n2025-07-16 11:41:43.419 [info] [command][9fc99e4e-d004-4ec8-952a-f717187c64a0] Socket close event received\n2025-07-16 11:41:43.438 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56525 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:42:43.420 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:42:43.421 [info] [command][ae21915e-78b3-4718-81d5-5d23a74e17ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ae21915e-78b3-4718-81d5-5d23a74e17ab""}\n2025-07-16 11:42:43.422 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][935f4bfb-cb9b-4730-8a90-3fe3429837a2] received connection request\n2025-07-16 11:42:43.422 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:42:43.439 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][935f4bfb-cb9b-4730-8a90-3fe3429837a2] socks forwarding established\n2025-07-16 11:42:43.468 [info] [command][ae21915e-78b3-4718-81d5-5d23a74e17ab] Process exited with code 0\n2025-07-16 11:42:43.468 [info] [command][ae21915e-78b3-4718-81d5-5d23a74e17ab] Socket close event received\n2025-07-16 11:42:43.469 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][935f4bfb-cb9b-4730-8a90-3fe3429837a2] socks connection closed\n2025-07-16 11:42:43.487 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56577 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:43:43.470 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:43:43.473 [info] [command][7ff3c7af-30a6-4a7b-be1e-139f83792211] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7ff3c7af-30a6-4a7b-be1e-139f83792211""}\n2025-07-16 11:43:43.474 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0acb904b-3a74-42c0-a514-5f3db7167b37] received connection request\n2025-07-16 11:43:43.475 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:43:43.493 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0acb904b-3a74-42c0-a514-5f3db7167b37] socks forwarding established\n2025-07-16 11:43:43.524 [info] [command][7ff3c7af-30a6-4a7b-be1e-139f83792211] Process exited with code 0\n2025-07-16 11:43:43.525 [info] [command][7ff3c7af-30a6-4a7b-be1e-139f83792211] Socket close event received\n2025-07-16 11:43:43.526 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0acb904b-3a74-42c0-a514-5f3db7167b37] socks connection closed\n2025-07-16 11:43:43.543 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56611 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:44:43.531 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:44:43.533 [info] [command][192923ce-e89d-4136-b0aa-3d09b602e99a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""192923ce-e89d-4136-b0aa-3d09b602e99a""}\n2025-07-16 11:44:43.534 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4f06b102-d99d-4a42-9de0-53272b336188] received connection request\n2025-07-16 11:44:43.534 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:44:43.552 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f06b102-d99d-4a42-9de0-53272b336188] socks forwarding established\n2025-07-16 11:44:43.584 [info] [command][192923ce-e89d-4136-b0aa-3d09b602e99a] Process exited with code 0\n2025-07-16 11:44:43.584 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f06b102-d99d-4a42-9de0-53272b336188] socks connection closed\n2025-07-16 11:44:43.584 [info] [command][192923ce-e89d-4136-b0aa-3d09b602e99a] Socket close event received\n2025-07-16 11:44:43.601 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56634 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:45:43.585 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:45:43.587 [info] [command][84eb14e9-3e2f-4301-a935-0b83b5a1aec7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""84eb14e9-3e2f-4301-a935-0b83b5a1aec7""}\n2025-07-16 11:45:43.587 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][cd3937df-0e47-49a6-a77a-e7809791149f] received connection request\n2025-07-16 11:45:43.587 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:45:43.605 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cd3937df-0e47-49a6-a77a-e7809791149f] socks forwarding established\n2025-07-16 11:45:43.633 [info] [command][84eb14e9-3e2f-4301-a935-0b83b5a1aec7] Process exited with code 0\n2025-07-16 11:45:43.633 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cd3937df-0e47-49a6-a77a-e7809791149f] socks connection closed\n2025-07-16 11:45:43.633 [info] [command][84eb14e9-3e2f-4301-a935-0b83b5a1aec7] Socket close event received\n2025-07-16 11:45:43.650 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56654 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:46:43.634 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:46:43.637 [info] [command][9de5282d-b00e-4607-88d2-530702445540] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9de5282d-b00e-4607-88d2-530702445540""}\n2025-07-16 11:46:43.638 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c4d7a2ca-c723-4c18-a8c4-75380d4bd5d6] received connection request\n2025-07-16 11:46:43.638 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:46:43.657 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c4d7a2ca-c723-4c18-a8c4-75380d4bd5d6] socks forwarding established\n2025-07-16 11:46:43.690 [info] [command][9de5282d-b00e-4607-88d2-530702445540] Process exited with code 0\n2025-07-16 11:46:43.690 [info] [command][9de5282d-b00e-4607-88d2-530702445540] Socket close event received\n2025-07-16 11:46:43.691 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c4d7a2ca-c723-4c18-a8c4-75380d4bd5d6] socks connection closed\n2025-07-16 11:46:43.709 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56705 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:47:43.691 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:47:43.693 [info] [command][cdabe10d-787d-4ee3-9257-95ae23ff666c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""cdabe10d-787d-4ee3-9257-95ae23ff666c""}\n2025-07-16 11:47:43.693 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c750d7be-4658-46b9-96c7-d6be76b63940] received connection request\n2025-07-16 11:47:43.693 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 11:47:43.693 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:47:43.712 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c750d7be-4658-46b9-96c7-d6be76b63940] socks forwarding established\n2025-07-16 11:47:43.742 [info] [command][cdabe10d-787d-4ee3-9257-95ae23ff666c] Process exited with code 0\n2025-07-16 11:47:43.743 [info] [command][cdabe10d-787d-4ee3-9257-95ae23ff666c] Socket close event received\n2025-07-16 11:47:43.743 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c750d7be-4658-46b9-96c7-d6be76b63940] socks connection closed\n2025-07-16 11:47:43.759 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56759 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:48:43.747 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:48:43.749 [info] [command][fcfd940a-9f9e-451b-a028-86ece881bb96] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fcfd940a-9f9e-451b-a028-86ece881bb96""}\n2025-07-16 11:48:43.750 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5858e970-f4ef-4509-b60c-da33ae22492a] received connection request\n2025-07-16 11:48:43.751 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:48:43.767 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5858e970-f4ef-4509-b60c-da33ae22492a] socks forwarding established\n2025-07-16 11:48:43.797 [info] [command][fcfd940a-9f9e-451b-a028-86ece881bb96] Process exited with code 0\n2025-07-16 11:48:43.798 [info] [command][fcfd940a-9f9e-451b-a028-86ece881bb96] Socket close event received\n2025-07-16 11:48:43.799 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5858e970-f4ef-4509-b60c-da33ae22492a] socks connection closed\n2025-07-16 11:48:43.817 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56782 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:49:43.799 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:49:43.800 [info] [command][4c23cdf8-57c7-4137-9bea-cf29515a38f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4c23cdf8-57c7-4137-9bea-cf29515a38f0""}\n2025-07-16 11:49:43.800 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a88b1c09-93bd-456b-b7f2-bdaac9ad8076] received connection request\n2025-07-16 11:49:43.800 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:49:43.817 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a88b1c09-93bd-456b-b7f2-bdaac9ad8076] socks forwarding established\n2025-07-16 11:49:43.846 [info] [command][4c23cdf8-57c7-4137-9bea-cf29515a38f0] Process exited with code 0\n2025-07-16 11:49:43.847 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a88b1c09-93bd-456b-b7f2-bdaac9ad8076] socks connection closed\n2025-07-16 11:49:43.847 [info] [command][4c23cdf8-57c7-4137-9bea-cf29515a38f0] Socket close event received\n2025-07-16 11:49:43.864 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56806 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:50:43.852 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:50:43.853 [info] [command][7689da06-c43d-445f-9395-3c39ec6df638] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7689da06-c43d-445f-9395-3c39ec6df638""}\n2025-07-16 11:50:43.854 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4138a384-b128-416a-a7b2-b4a313d38c16] received connection request\n2025-07-16 11:50:43.854 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:50:43.871 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4138a384-b128-416a-a7b2-b4a313d38c16] socks forwarding established\n2025-07-16 11:50:43.901 [info] [command][7689da06-c43d-445f-9395-3c39ec6df638] Process exited with code 0\n2025-07-16 11:50:43.901 [info] [command][7689da06-c43d-445f-9395-3c39ec6df638] Socket close event received\n2025-07-16 11:50:43.901 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4138a384-b128-416a-a7b2-b4a313d38c16] socks connection closed\n2025-07-16 11:50:43.918 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56843 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:51:43.907 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:51:43.909 [info] [command][ae5246eb-6982-40e3-85c6-9d4038a53881] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ae5246eb-6982-40e3-85c6-9d4038a53881""}\n2025-07-16 11:51:43.909 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3ca3bd68-1d71-4fbc-86d9-f078632a0459] received connection request\n2025-07-16 11:51:43.910 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:51:43.926 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3ca3bd68-1d71-4fbc-86d9-f078632a0459] socks forwarding established\n2025-07-16 11:51:43.955 [info] [command][ae5246eb-6982-40e3-85c6-9d4038a53881] Process exited with code 0\n2025-07-16 11:51:43.955 [info] [command][ae5246eb-6982-40e3-85c6-9d4038a53881] Socket close event received\n2025-07-16 11:51:43.970 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3ca3bd68-1d71-4fbc-86d9-f078632a0459] socks connection closed\n2025-07-16 11:51:43.977 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56917 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:52:43.961 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:52:43.962 [info] [command][ce84f162-4a59-43b0-ab5f-af9bbcab501e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ce84f162-4a59-43b0-ab5f-af9bbcab501e""}\n2025-07-16 11:52:43.963 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][903dac76-7c6a-4942-80b2-18a15f2258e0] received connection request\n2025-07-16 11:52:43.963 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:52:43.980 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][903dac76-7c6a-4942-80b2-18a15f2258e0] socks forwarding established\n2025-07-16 11:52:44.007 [info] [command][ce84f162-4a59-43b0-ab5f-af9bbcab501e] Process exited with code 0\n2025-07-16 11:52:44.007 [info] [command][ce84f162-4a59-43b0-ab5f-af9bbcab501e] Socket close event received\n2025-07-16 11:52:44.009 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][903dac76-7c6a-4942-80b2-18a15f2258e0] socks connection closed\n2025-07-16 11:52:44.025 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56983 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:53:44.013 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:53:44.016 [info] [command][56bbf43d-b946-4d3e-a7a6-02160fe17a7f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""56bbf43d-b946-4d3e-a7a6-02160fe17a7f""}\n2025-07-16 11:53:44.016 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][130d26bb-0819-4945-acf5-e41240117e3a] received connection request\n2025-07-16 11:53:44.017 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:53:44.034 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][130d26bb-0819-4945-acf5-e41240117e3a] socks forwarding established\n2025-07-16 11:53:44.066 [info] [command][56bbf43d-b946-4d3e-a7a6-02160fe17a7f] Process exited with code 0\n2025-07-16 11:53:44.066 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][130d26bb-0819-4945-acf5-e41240117e3a] socks connection closed\n2025-07-16 11:53:44.066 [info] [command][56bbf43d-b946-4d3e-a7a6-02160fe17a7f] Socket close event received\n2025-07-16 11:53:44.083 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57009 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:54:44.067 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:54:44.069 [info] [command][953b5cc0-4475-4672-ac44-cb29882f84b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""953b5cc0-4475-4672-ac44-cb29882f84b4""}\n2025-07-16 11:54:44.069 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][38b975cf-531a-4a3f-9d46-47d66a4bd1fa] received connection request\n2025-07-16 11:54:44.069 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:54:44.212 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][38b975cf-531a-4a3f-9d46-47d66a4bd1fa] socks forwarding established\n2025-07-16 11:54:44.377 [info] [command][953b5cc0-4475-4672-ac44-cb29882f84b4] Process exited with code 0\n2025-07-16 11:54:44.377 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][38b975cf-531a-4a3f-9d46-47d66a4bd1fa] socks connection closed\n2025-07-16 11:54:44.377 [info] [command][953b5cc0-4475-4672-ac44-cb29882f84b4] Socket close event received\n2025-07-16 11:54:44.395 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57036 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:55:44.381 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:55:44.382 [info] [command][e454e83e-82cf-412a-b680-41006c80c527] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e454e83e-82cf-412a-b680-41006c80c527""}\n2025-07-16 11:55:44.383 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0913aa0b-d190-4646-a9ca-196c4f41de3e] received connection request\n2025-07-16 11:55:44.383 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:55:44.508 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0913aa0b-d190-4646-a9ca-196c4f41de3e] socks forwarding established\n2025-07-16 11:55:44.537 [info] [command][e454e83e-82cf-412a-b680-41006c80c527] Process exited with code 0\n2025-07-16 11:55:44.537 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0913aa0b-d190-4646-a9ca-196c4f41de3e] socks connection closed\n2025-07-16 11:55:44.538 [info] [command][e454e83e-82cf-412a-b680-41006c80c527] Socket close event received\n2025-07-16 11:55:44.650 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57078 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:56:44.539 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:56:44.540 [info] [command][687a4a6f-5440-4d4d-9741-c20ee76d6954] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""687a4a6f-5440-4d4d-9741-c20ee76d6954""}\n2025-07-16 11:56:44.540 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][07c24eb6-3edf-464d-9fe4-edd8938d987a] received connection request\n2025-07-16 11:56:44.541 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:56:44.671 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][07c24eb6-3edf-464d-9fe4-edd8938d987a] socks forwarding established\n2025-07-16 11:56:44.749 [info] [command][687a4a6f-5440-4d4d-9741-c20ee76d6954] Process exited with code 0\n2025-07-16 11:56:44.749 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][07c24eb6-3edf-464d-9fe4-edd8938d987a] socks connection closed\n2025-07-16 11:56:44.749 [info] [command][687a4a6f-5440-4d4d-9741-c20ee76d6954] Socket close event received\n2025-07-16 11:56:44.794 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57142 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:57:44.755 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:57:44.757 [info] [command][fd50d0ca-1efe-45d8-b878-a117582f2eb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fd50d0ca-1efe-45d8-b878-a117582f2eb5""}\n2025-07-16 11:57:44.758 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][fb867c9b-c771-4c09-9045-1b8e1f28ad86] received connection request\n2025-07-16 11:57:44.759 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:57:44.779 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fb867c9b-c771-4c09-9045-1b8e1f28ad86] socks forwarding established\n2025-07-16 11:57:44.811 [info] [command][fd50d0ca-1efe-45d8-b878-a117582f2eb5] Process exited with code 0\n2025-07-16 11:57:44.811 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fb867c9b-c771-4c09-9045-1b8e1f28ad86] socks connection closed\n2025-07-16 11:57:44.811 [info] [command][fd50d0ca-1efe-45d8-b878-a117582f2eb5] Socket close event received\n2025-07-16 11:57:44.828 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57209 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:58:44.817 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:58:44.819 [info] [command][6c177f38-4adc-4282-b205-6d1f95782e6f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6c177f38-4adc-4282-b205-6d1f95782e6f""}\n2025-07-16 11:58:44.820 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4c3e682c-e619-40f5-83f7-a9ad474d8b8c] received connection request\n2025-07-16 11:58:44.820 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:58:44.841 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4c3e682c-e619-40f5-83f7-a9ad474d8b8c] socks forwarding established\n2025-07-16 11:58:44.879 [info] [command][6c177f38-4adc-4282-b205-6d1f95782e6f] Process exited with code 0\n2025-07-16 11:58:44.879 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4c3e682c-e619-40f5-83f7-a9ad474d8b8c] socks connection closed\n2025-07-16 11:58:44.879 [info] [command][6c177f38-4adc-4282-b205-6d1f95782e6f] Socket close event received\n2025-07-16 11:58:44.895 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57245 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 11:59:44.882 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 11:59:44.884 [info] [command][4bc9e47b-51b7-4d7f-821d-0038664f897a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4bc9e47b-51b7-4d7f-821d-0038664f897a""}\n2025-07-16 11:59:44.885 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c08b9fb1-1493-434d-b141-12a0d205ceab] received connection request\n2025-07-16 11:59:44.885 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 11:59:44.904 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c08b9fb1-1493-434d-b141-12a0d205ceab] socks forwarding established\n2025-07-16 11:59:44.935 [info] [command][4bc9e47b-51b7-4d7f-821d-0038664f897a] Process exited with code 0\n2025-07-16 11:59:44.935 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c08b9fb1-1493-434d-b141-12a0d205ceab] socks connection closed\n2025-07-16 11:59:44.935 [info] [command][4bc9e47b-51b7-4d7f-821d-0038664f897a] Socket close event received\n2025-07-16 11:59:45.077 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57278 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:00:44.940 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:00:44.942 [info] [command][45b59435-6e5c-4d60-8f85-f9557a78d643] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""45b59435-6e5c-4d60-8f85-f9557a78d643""}\n2025-07-16 12:00:44.943 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][03407dd0-04b3-42f5-9f38-1d0dc6deeffa] received connection request\n2025-07-16 12:00:44.943 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:00:44.961 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][03407dd0-04b3-42f5-9f38-1d0dc6deeffa] socks forwarding established\n2025-07-16 12:00:45.105 [info] [command][45b59435-6e5c-4d60-8f85-f9557a78d643] Process exited with code 0\n2025-07-16 12:00:45.105 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][03407dd0-04b3-42f5-9f38-1d0dc6deeffa] socks connection closed\n2025-07-16 12:00:45.106 [info] [command][45b59435-6e5c-4d60-8f85-f9557a78d643] Socket close event received\n2025-07-16 12:00:45.121 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57309 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:01:45.107 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:01:45.109 [info] [command][16516a03-ec77-4c5a-ab32-f2ecff2da482] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""16516a03-ec77-4c5a-ab32-f2ecff2da482""}\n2025-07-16 12:01:45.109 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][594294be-83d0-422a-87ca-b1462012e9f8] received connection request\n2025-07-16 12:01:45.110 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:01:45.134 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][594294be-83d0-422a-87ca-b1462012e9f8] socks forwarding established\n2025-07-16 12:01:45.169 [info] [command][16516a03-ec77-4c5a-ab32-f2ecff2da482] Process exited with code 0\n2025-07-16 12:01:45.169 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][594294be-83d0-422a-87ca-b1462012e9f8] socks connection closed\n2025-07-16 12:01:45.169 [info] [command][16516a03-ec77-4c5a-ab32-f2ecff2da482] Socket close event received\n2025-07-16 12:01:45.186 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57400 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:02:45.172 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:02:45.174 [info] [command][3385c3f3-eedb-43be-a182-b971e1a5a871] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3385c3f3-eedb-43be-a182-b971e1a5a871""}\n2025-07-16 12:02:45.175 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][ebdfdc22-7b04-4ba8-a208-28c2f8ef8651] received connection request\n2025-07-16 12:02:45.175 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:02:45.193 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ebdfdc22-7b04-4ba8-a208-28c2f8ef8651] socks forwarding established\n2025-07-16 12:02:45.223 [info] [command][3385c3f3-eedb-43be-a182-b971e1a5a871] Process exited with code 0\n2025-07-16 12:02:45.224 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ebdfdc22-7b04-4ba8-a208-28c2f8ef8651] socks connection closed\n2025-07-16 12:02:45.224 [info] [command][3385c3f3-eedb-43be-a182-b971e1a5a871] Socket close event received\n2025-07-16 12:02:45.242 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57449 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:03:45.228 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:03:45.230 [info] [command][9af53d3d-1c2f-45b3-9c18-5556f98a3d35] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9af53d3d-1c2f-45b3-9c18-5556f98a3d35""}\n2025-07-16 12:03:45.231 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9a92ad9d-ac62-4a82-8806-b1d3c90be177] received connection request\n2025-07-16 12:03:45.232 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:03:45.251 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9a92ad9d-ac62-4a82-8806-b1d3c90be177] socks forwarding established\n2025-07-16 12:03:45.398 [info] [command][9af53d3d-1c2f-45b3-9c18-5556f98a3d35] Process exited with code 0\n2025-07-16 12:03:45.398 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9a92ad9d-ac62-4a82-8806-b1d3c90be177] socks connection closed\n2025-07-16 12:03:45.398 [info] [command][9af53d3d-1c2f-45b3-9c18-5556f98a3d35] Socket close event received\n2025-07-16 12:03:45.414 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57479 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:04:45.403 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:04:45.405 [info] [command][b71deb7b-6fd7-414e-a20f-a3b71b9e672f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b71deb7b-6fd7-414e-a20f-a3b71b9e672f""}\n2025-07-16 12:04:45.405 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][ef9f16d8-23a0-4895-8470-a285392d923e] received connection request\n2025-07-16 12:04:45.406 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:04:45.481 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ef9f16d8-23a0-4895-8470-a285392d923e] socks forwarding established\n2025-07-16 12:04:45.649 [info] [command][b71deb7b-6fd7-414e-a20f-a3b71b9e672f] Process exited with code 0\n2025-07-16 12:04:45.649 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ef9f16d8-23a0-4895-8470-a285392d923e] socks connection closed\n2025-07-16 12:04:45.649 [info] [command][b71deb7b-6fd7-414e-a20f-a3b71b9e672f] Socket close event received\n2025-07-16 12:04:45.665 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57505 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:05:45.654 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:05:45.655 [info] [command][4ede7436-62e1-42be-ba8c-c714e81fad5e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4ede7436-62e1-42be-ba8c-c714e81fad5e""}\n2025-07-16 12:05:45.655 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a5918396-3bd1-4da2-8649-e77a4a262827] received connection request\n2025-07-16 12:05:45.656 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:05:45.673 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a5918396-3bd1-4da2-8649-e77a4a262827] socks forwarding established\n2025-07-16 12:05:45.821 [info] [command][4ede7436-62e1-42be-ba8c-c714e81fad5e] Process exited with code 0\n2025-07-16 12:05:45.822 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a5918396-3bd1-4da2-8649-e77a4a262827] socks connection closed\n2025-07-16 12:05:45.822 [info] [command][4ede7436-62e1-42be-ba8c-c714e81fad5e] Socket close event received\n2025-07-16 12:05:45.838 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57583 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:06:45.827 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:06:45.828 [info] [command][7b3a578e-e48d-4e3f-97d4-e3352139cb06] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7b3a578e-e48d-4e3f-97d4-e3352139cb06""}\n2025-07-16 12:06:45.829 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5d9ad1ae-4bf6-4361-9744-79ad94f64243] received connection request\n2025-07-16 12:06:45.830 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:06:45.851 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5d9ad1ae-4bf6-4361-9744-79ad94f64243] socks forwarding established\n2025-07-16 12:06:45.883 [info] [command][7b3a578e-e48d-4e3f-97d4-e3352139cb06] Process exited with code 0\n2025-07-16 12:06:45.883 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5d9ad1ae-4bf6-4361-9744-79ad94f64243] socks connection closed\n2025-07-16 12:06:45.883 [info] [command][7b3a578e-e48d-4e3f-97d4-e3352139cb06] Socket close event received\n2025-07-16 12:06:45.900 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57644 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:07:45.886 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:07:45.888 [info] [command][30617851-d8e2-4da6-abda-9812faba4723] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""30617851-d8e2-4da6-abda-9812faba4723""}\n2025-07-16 12:07:45.888 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d18941ac-2e63-45d2-a0b0-bb418af1d96c] received connection request\n2025-07-16 12:07:45.889 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:07:45.906 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d18941ac-2e63-45d2-a0b0-bb418af1d96c] socks forwarding established\n2025-07-16 12:07:45.935 [info] [command][30617851-d8e2-4da6-abda-9812faba4723] Process exited with code 0\n2025-07-16 12:07:45.935 [info] [command][30617851-d8e2-4da6-abda-9812faba4723] Socket close event received\n2025-07-16 12:07:45.936 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d18941ac-2e63-45d2-a0b0-bb418af1d96c] socks connection closed\n2025-07-16 12:07:45.952 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57705 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:08:45.941 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:08:45.942 [info] [command][cfe60360-931c-4001-8b40-ddea4ee0ac3c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""cfe60360-931c-4001-8b40-ddea4ee0ac3c""}\n2025-07-16 12:08:45.943 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][cf49fa6c-6710-4a52-a3d1-56280f6c34fc] received connection request\n2025-07-16 12:08:45.943 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:08:45.962 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cf49fa6c-6710-4a52-a3d1-56280f6c34fc] socks forwarding established\n2025-07-16 12:08:45.992 [info] [command][cfe60360-931c-4001-8b40-ddea4ee0ac3c] Process exited with code 0\n2025-07-16 12:08:45.992 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cf49fa6c-6710-4a52-a3d1-56280f6c34fc] socks connection closed\n2025-07-16 12:08:45.992 [info] [command][cfe60360-931c-4001-8b40-ddea4ee0ac3c] Socket close event received\n2025-07-16 12:08:46.010 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57729 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:09:45.993 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:09:45.994 [info] [command][f9221492-00cc-47de-9e95-eb82572658d9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f9221492-00cc-47de-9e95-eb82572658d9""}\n2025-07-16 12:09:45.994 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][57948971-c6bc-4321-90e8-fc52047bc56e] received connection request\n2025-07-16 12:09:45.994 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:09:46.010 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][57948971-c6bc-4321-90e8-fc52047bc56e] socks forwarding established\n2025-07-16 12:09:46.039 [info] [command][f9221492-00cc-47de-9e95-eb82572658d9] Process exited with code 0\n2025-07-16 12:09:46.040 [info] [command][f9221492-00cc-47de-9e95-eb82572658d9] Socket close event received\n2025-07-16 12:09:46.040 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][57948971-c6bc-4321-90e8-fc52047bc56e] socks connection closed\n2025-07-16 12:09:46.057 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57755 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:10:46.042 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:10:46.043 [info] [command][5f55c5eb-4441-4b5b-a043-051cc2f9dc27] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5f55c5eb-4441-4b5b-a043-051cc2f9dc27""}\n2025-07-16 12:10:46.044 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a9437cca-ac07-493a-9991-88a72d9d95db] received connection request\n2025-07-16 12:10:46.044 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:10:46.061 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a9437cca-ac07-493a-9991-88a72d9d95db] socks forwarding established\n2025-07-16 12:10:46.090 [info] [command][5f55c5eb-4441-4b5b-a043-051cc2f9dc27] Process exited with code 0\n2025-07-16 12:10:46.090 [info] [command][5f55c5eb-4441-4b5b-a043-051cc2f9dc27] Socket close event received\n2025-07-16 12:10:46.090 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a9437cca-ac07-493a-9991-88a72d9d95db] socks connection closed\n2025-07-16 12:10:46.106 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57786 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:11:46.094 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:11:46.096 [info] [command][8cbf22a6-8da8-4028-9204-170516de1008] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8cbf22a6-8da8-4028-9204-170516de1008""}\n2025-07-16 12:11:46.096 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f88824cd-0339-4a83-8604-cb1549b7ee3a] received connection request\n2025-07-16 12:11:46.096 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:11:46.112 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f88824cd-0339-4a83-8604-cb1549b7ee3a] socks forwarding established\n2025-07-16 12:11:46.142 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f88824cd-0339-4a83-8604-cb1549b7ee3a] socks connection closed\n2025-07-16 12:11:46.142 [info] [command][8cbf22a6-8da8-4028-9204-170516de1008] Process exited with code 0\n2025-07-16 12:11:46.142 [info] [command][8cbf22a6-8da8-4028-9204-170516de1008] Socket close event received\n2025-07-16 12:11:46.160 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57850 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:12:46.148 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:12:46.150 [info] [command][cdf4674b-7be5-4f15-90cb-835268811f77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""cdf4674b-7be5-4f15-90cb-835268811f77""}\n2025-07-16 12:12:46.151 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][affc8230-8e7f-46a4-811b-46d8ad6fd0ea] received connection request\n2025-07-16 12:12:46.152 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:12:46.173 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][affc8230-8e7f-46a4-811b-46d8ad6fd0ea] socks forwarding established\n2025-07-16 12:12:46.205 [info] [command][cdf4674b-7be5-4f15-90cb-835268811f77] Process exited with code 0\n2025-07-16 12:12:46.205 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][affc8230-8e7f-46a4-811b-46d8ad6fd0ea] socks connection closed\n2025-07-16 12:12:46.205 [info] [command][cdf4674b-7be5-4f15-90cb-835268811f77] Socket close event received\n2025-07-16 12:12:46.224 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57911 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:13:46.205 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:13:46.208 [info] [command][93b22469-43b7-4763-8cd2-78b09c8619a1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""93b22469-43b7-4763-8cd2-78b09c8619a1""}\n2025-07-16 12:13:46.208 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c424bd04-a1eb-4102-9f71-2d899766568a] received connection request\n2025-07-16 12:13:46.209 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:13:46.226 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c424bd04-a1eb-4102-9f71-2d899766568a] socks forwarding established\n2025-07-16 12:13:46.256 [info] [command][93b22469-43b7-4763-8cd2-78b09c8619a1] Process exited with code 0\n2025-07-16 12:13:46.257 [info] [command][93b22469-43b7-4763-8cd2-78b09c8619a1] Socket close event received\n2025-07-16 12:13:46.257 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c424bd04-a1eb-4102-9f71-2d899766568a] socks connection closed\n2025-07-16 12:13:46.276 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57947 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:14:46.259 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:14:46.260 [info] [command][facf0004-4cac-4515-b6ad-f903501965c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""facf0004-4cac-4515-b6ad-f903501965c9""}\n2025-07-16 12:14:46.260 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1c1d780e-7234-4704-aabc-68d51cc497f0] received connection request\n2025-07-16 12:14:46.260 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:14:46.276 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1c1d780e-7234-4704-aabc-68d51cc497f0] socks forwarding established\n2025-07-16 12:14:46.306 [info] [command][facf0004-4cac-4515-b6ad-f903501965c9] Process exited with code 0\n2025-07-16 12:14:46.306 [info] [command][facf0004-4cac-4515-b6ad-f903501965c9] Socket close event received\n2025-07-16 12:14:46.306 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1c1d780e-7234-4704-aabc-68d51cc497f0] socks connection closed\n2025-07-16 12:14:46.323 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58047 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:15:46.311 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:15:46.312 [info] [command][a40aa21f-8fae-4c1a-b1cf-3dbe3107603a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a40aa21f-8fae-4c1a-b1cf-3dbe3107603a""}\n2025-07-16 12:15:46.313 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b03d16ad-3738-47ed-aca5-34c072f396f9] received connection request\n2025-07-16 12:15:46.313 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:15:46.332 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b03d16ad-3738-47ed-aca5-34c072f396f9] socks forwarding established\n2025-07-16 12:15:46.363 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b03d16ad-3738-47ed-aca5-34c072f396f9] socks connection closed\n2025-07-16 12:15:46.363 [info] [command][a40aa21f-8fae-4c1a-b1cf-3dbe3107603a] Process exited with code 0\n2025-07-16 12:15:46.363 [info] [command][a40aa21f-8fae-4c1a-b1cf-3dbe3107603a] Socket close event received\n2025-07-16 12:15:46.383 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58078 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:16:46.367 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:16:46.369 [info] [command][abcef5c9-4293-40b5-8dc1-a966b467223b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""abcef5c9-4293-40b5-8dc1-a966b467223b""}\n2025-07-16 12:16:46.370 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][797e866d-64af-4019-a506-1426d579a2a4] received connection request\n2025-07-16 12:16:46.370 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:16:46.388 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][797e866d-64af-4019-a506-1426d579a2a4] socks forwarding established\n2025-07-16 12:16:46.417 [info] [command][abcef5c9-4293-40b5-8dc1-a966b467223b] Process exited with code 0\n2025-07-16 12:16:46.418 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][797e866d-64af-4019-a506-1426d579a2a4] socks connection closed\n2025-07-16 12:16:46.418 [info] [command][abcef5c9-4293-40b5-8dc1-a966b467223b] Socket close event received\n2025-07-16 12:16:46.436 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58113 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:17:46.423 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:17:46.423 [info] [command][553ed732-1e0b-43b5-864c-82e5327027ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""553ed732-1e0b-43b5-864c-82e5327027ff""}\n2025-07-16 12:17:46.424 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0f044d37-1956-4061-a5ba-833739c9ff59] received connection request\n2025-07-16 12:17:46.424 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:17:46.440 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0f044d37-1956-4061-a5ba-833739c9ff59] socks forwarding established\n2025-07-16 12:17:46.470 [info] [command][553ed732-1e0b-43b5-864c-82e5327027ff] Process exited with code 0\n2025-07-16 12:17:46.470 [info] [command][553ed732-1e0b-43b5-864c-82e5327027ff] Socket close event received\n2025-07-16 12:17:46.470 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0f044d37-1956-4061-a5ba-833739c9ff59] socks connection closed\n2025-07-16 12:17:46.496 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58169 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:18:46.472 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:18:46.473 [info] [command][2ecfc776-f3a9-4470-9003-5ebd86d301d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2ecfc776-f3a9-4470-9003-5ebd86d301d0""}\n2025-07-16 12:18:46.473 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a593ecba-85f1-424d-97ba-8bb4b5a40cf8] received connection request\n2025-07-16 12:18:46.474 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:18:46.490 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a593ecba-85f1-424d-97ba-8bb4b5a40cf8] socks forwarding established\n2025-07-16 12:18:46.519 [info] [command][2ecfc776-f3a9-4470-9003-5ebd86d301d0] Process exited with code 0\n2025-07-16 12:18:46.519 [info] [command][2ecfc776-f3a9-4470-9003-5ebd86d301d0] Socket close event received\n2025-07-16 12:18:46.522 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a593ecba-85f1-424d-97ba-8bb4b5a40cf8] socks connection closed\n2025-07-16 12:18:46.542 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58204 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:19:46.523 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:19:46.525 [info] [command][0991104e-4aff-47c1-9035-fb9e78776bcd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0991104e-4aff-47c1-9035-fb9e78776bcd""}\n2025-07-16 12:19:46.526 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][806b0f81-6c90-4f06-8927-11fdbb378a7e] received connection request\n2025-07-16 12:19:46.526 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:19:46.546 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][806b0f81-6c90-4f06-8927-11fdbb378a7e] socks forwarding established\n2025-07-16 12:19:46.576 [info] [command][0991104e-4aff-47c1-9035-fb9e78776bcd] Process exited with code 0\n2025-07-16 12:19:46.577 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][806b0f81-6c90-4f06-8927-11fdbb378a7e] socks connection closed\n2025-07-16 12:19:46.577 [info] [command][0991104e-4aff-47c1-9035-fb9e78776bcd] Socket close event received\n2025-07-16 12:19:46.594 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58256 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:20:46.582 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:20:46.584 [info] [command][3449ed34-e11d-4091-b2ec-1905a0945582] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3449ed34-e11d-4091-b2ec-1905a0945582""}\n2025-07-16 12:20:46.585 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c45c1e46-4667-41c2-8094-bf90dbdc9daf] received connection request\n2025-07-16 12:20:46.586 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:20:46.605 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c45c1e46-4667-41c2-8094-bf90dbdc9daf] socks forwarding established\n2025-07-16 12:20:46.639 [info] [command][3449ed34-e11d-4091-b2ec-1905a0945582] Process exited with code 0\n2025-07-16 12:20:46.639 [info] [command][3449ed34-e11d-4091-b2ec-1905a0945582] Socket close event received\n2025-07-16 12:20:46.640 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c45c1e46-4667-41c2-8094-bf90dbdc9daf] socks connection closed\n2025-07-16 12:20:46.657 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58279 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:21:46.645 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:21:46.647 [info] [command][d8caf60b-9b99-4ca7-8dd9-af5061dfbf55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d8caf60b-9b99-4ca7-8dd9-af5061dfbf55""}\n2025-07-16 12:21:46.648 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5eafbd46-039d-4067-9091-15aae8c3fd47] received connection request\n2025-07-16 12:21:46.648 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:21:46.671 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5eafbd46-039d-4067-9091-15aae8c3fd47] socks forwarding established\n2025-07-16 12:21:46.701 [info] [command][d8caf60b-9b99-4ca7-8dd9-af5061dfbf55] Process exited with code 0\n2025-07-16 12:21:46.701 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5eafbd46-039d-4067-9091-15aae8c3fd47] socks connection closed\n2025-07-16 12:21:46.702 [info] [command][d8caf60b-9b99-4ca7-8dd9-af5061dfbf55] Socket close event received\n2025-07-16 12:21:46.718 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58303 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:22:46.707 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:22:46.708 [info] [command][ab0c8ea1-acda-42f4-a94b-0b8c13911123] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ab0c8ea1-acda-42f4-a94b-0b8c13911123""}\n2025-07-16 12:22:46.709 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][aff586ed-6b8a-40ab-b451-2409f7b4e79e] received connection request\n2025-07-16 12:22:46.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:22:46.726 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aff586ed-6b8a-40ab-b451-2409f7b4e79e] socks forwarding established\n2025-07-16 12:22:46.755 [info] [command][ab0c8ea1-acda-42f4-a94b-0b8c13911123] Process exited with code 0\n2025-07-16 12:22:46.755 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aff586ed-6b8a-40ab-b451-2409f7b4e79e] socks connection closed\n2025-07-16 12:22:46.755 [info] [command][ab0c8ea1-acda-42f4-a94b-0b8c13911123] Socket close event received\n2025-07-16 12:22:46.776 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58351 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:23:46.757 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:23:46.760 [info] [command][0e233037-c726-4c21-a67d-44dd8050abda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0e233037-c726-4c21-a67d-44dd8050abda""}\n2025-07-16 12:23:46.761 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7086d224-28f3-4249-a511-75cb6b836cdc] received connection request\n2025-07-16 12:23:46.762 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:23:46.784 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7086d224-28f3-4249-a511-75cb6b836cdc] socks forwarding established\n2025-07-16 12:23:46.826 [info] [command][0e233037-c726-4c21-a67d-44dd8050abda] Process exited with code 0\n2025-07-16 12:23:46.826 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7086d224-28f3-4249-a511-75cb6b836cdc] socks connection closed\n2025-07-16 12:23:46.827 [info] [command][0e233037-c726-4c21-a67d-44dd8050abda] Socket close event received\n2025-07-16 12:23:46.844 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58378 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:24:46.828 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:24:46.828 [info] [command][b57ea4af-340a-4bae-95b4-701da559e2ee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b57ea4af-340a-4bae-95b4-701da559e2ee""}\n2025-07-16 12:24:46.828 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][62be247c-27c1-4e7c-bc20-7e736a839333] received connection request\n2025-07-16 12:24:46.829 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:24:46.847 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][62be247c-27c1-4e7c-bc20-7e736a839333] socks forwarding established\n2025-07-16 12:24:46.877 [info] [command][b57ea4af-340a-4bae-95b4-701da559e2ee] Process exited with code 0\n2025-07-16 12:24:46.877 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][62be247c-27c1-4e7c-bc20-7e736a839333] socks connection closed\n2025-07-16 12:24:46.877 [info] [command][b57ea4af-340a-4bae-95b4-701da559e2ee] Socket close event received\n2025-07-16 12:24:46.896 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58416 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:25:46.883 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:25:46.884 [info] [command][e2797236-5752-4741-a6f7-fb461ef0a1d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e2797236-5752-4741-a6f7-fb461ef0a1d2""}\n2025-07-16 12:25:46.885 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e38ed2dc-c517-4d3f-8cde-15366a993939] received connection request\n2025-07-16 12:25:46.885 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:25:46.904 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e38ed2dc-c517-4d3f-8cde-15366a993939] socks forwarding established\n2025-07-16 12:25:46.948 [info] [command][e2797236-5752-4741-a6f7-fb461ef0a1d2] Process exited with code 0\n2025-07-16 12:25:46.948 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e38ed2dc-c517-4d3f-8cde-15366a993939] socks connection closed\n2025-07-16 12:25:46.948 [info] [command][e2797236-5752-4741-a6f7-fb461ef0a1d2] Socket close event received\n2025-07-16 12:25:46.964 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58439 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:26:46.952 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:26:46.954 [info] [command][0e5d37e5-2bd3-4671-af96-1a7be1cd7199] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0e5d37e5-2bd3-4671-af96-1a7be1cd7199""}\n2025-07-16 12:26:46.955 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9d9cb46a-e7ce-414d-8d61-5f609ecd19ea] received connection request\n2025-07-16 12:26:46.955 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:26:46.973 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9d9cb46a-e7ce-414d-8d61-5f609ecd19ea] socks forwarding established\n2025-07-16 12:26:47.118 [info] [command][0e5d37e5-2bd3-4671-af96-1a7be1cd7199] Process exited with code 0\n2025-07-16 12:26:47.118 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9d9cb46a-e7ce-414d-8d61-5f609ecd19ea] socks connection closed\n2025-07-16 12:26:47.118 [info] [command][0e5d37e5-2bd3-4671-af96-1a7be1cd7199] Socket close event received\n2025-07-16 12:26:47.135 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58463 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:27:47.120 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:27:47.121 [info] [command][2a4fb21c-843f-49b9-810b-9acb2b3b7401] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2a4fb21c-843f-49b9-810b-9acb2b3b7401""}\n2025-07-16 12:27:47.122 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][73ab99f5-f952-423e-b595-ff4606d61752] received connection request\n2025-07-16 12:27:47.122 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:27:47.139 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][73ab99f5-f952-423e-b595-ff4606d61752] socks forwarding established\n2025-07-16 12:27:47.185 [info] [command][2a4fb21c-843f-49b9-810b-9acb2b3b7401] Process exited with code 0\n2025-07-16 12:27:47.186 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][73ab99f5-f952-423e-b595-ff4606d61752] socks connection closed\n2025-07-16 12:27:47.186 [info] [command][2a4fb21c-843f-49b9-810b-9acb2b3b7401] Socket close event received\n2025-07-16 12:27:47.201 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58517 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:28:47.191 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:28:47.193 [info] [command][541ead4d-c95f-4440-b543-256ccdeca20a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""541ead4d-c95f-4440-b543-256ccdeca20a""}\n2025-07-16 12:28:47.193 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7c652f5f-d883-49aa-8afd-2eb55132e8a6] received connection request\n2025-07-16 12:28:47.194 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:28:47.216 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7c652f5f-d883-49aa-8afd-2eb55132e8a6] socks forwarding established\n2025-07-16 12:28:47.246 [info] [command][541ead4d-c95f-4440-b543-256ccdeca20a] Process exited with code 0\n2025-07-16 12:28:47.246 [info] [command][541ead4d-c95f-4440-b543-256ccdeca20a] Socket close event received\n2025-07-16 12:28:47.247 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7c652f5f-d883-49aa-8afd-2eb55132e8a6] socks connection closed\n2025-07-16 12:28:47.264 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58548 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:29:47.249 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:29:47.250 [info] [command][62f7f35f-190f-4099-ad38-2e4456e6e95f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""62f7f35f-190f-4099-ad38-2e4456e6e95f""}\n2025-07-16 12:29:47.251 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a79f2c18-0ed6-4050-ab54-9906458dd76c] received connection request\n2025-07-16 12:29:47.251 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:29:47.269 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a79f2c18-0ed6-4050-ab54-9906458dd76c] socks forwarding established\n2025-07-16 12:29:47.297 [info] [command][62f7f35f-190f-4099-ad38-2e4456e6e95f] Process exited with code 0\n2025-07-16 12:29:47.298 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a79f2c18-0ed6-4050-ab54-9906458dd76c] socks connection closed\n2025-07-16 12:29:47.298 [info] [command][62f7f35f-190f-4099-ad38-2e4456e6e95f] Socket close event received\n2025-07-16 12:29:47.314 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58584 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:30:47.299 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:30:47.302 [info] [command][b0dbc216-7885-4e40-82a2-6539ae2c558a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b0dbc216-7885-4e40-82a2-6539ae2c558a""}\n2025-07-16 12:30:47.302 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][620089c7-8bf6-4764-a3dd-e63baeb51be4] received connection request\n2025-07-16 12:30:47.303 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:30:47.322 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][620089c7-8bf6-4764-a3dd-e63baeb51be4] socks forwarding established\n2025-07-16 12:30:47.353 [info] [command][b0dbc216-7885-4e40-82a2-6539ae2c558a] Process exited with code 0\n2025-07-16 12:30:47.353 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][620089c7-8bf6-4764-a3dd-e63baeb51be4] socks connection closed\n2025-07-16 12:30:47.353 [info] [command][b0dbc216-7885-4e40-82a2-6539ae2c558a] Socket close event received\n2025-07-16 12:30:47.370 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58613 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:31:47.363 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:31:47.365 [info] [command][cf557eb2-9d29-42ae-9cb2-8c36358fe20c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""cf557eb2-9d29-42ae-9cb2-8c36358fe20c""}\n2025-07-16 12:31:47.366 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6ae5019a-8a13-4079-bfc6-fc57f2e0f835] received connection request\n2025-07-16 12:31:47.366 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:31:47.383 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6ae5019a-8a13-4079-bfc6-fc57f2e0f835] socks forwarding established\n2025-07-16 12:31:47.412 [info] [command][cf557eb2-9d29-42ae-9cb2-8c36358fe20c] Process exited with code 0\n2025-07-16 12:31:47.412 [info] [command][cf557eb2-9d29-42ae-9cb2-8c36358fe20c] Socket close event received\n2025-07-16 12:31:47.413 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6ae5019a-8a13-4079-bfc6-fc57f2e0f835] socks connection closed\n2025-07-16 12:31:47.431 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58646 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:32:47.416 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:32:47.417 [info] [command][27d46b1f-3f2d-4c35-9cb3-f11f52ef3d7f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""27d46b1f-3f2d-4c35-9cb3-f11f52ef3d7f""}\n2025-07-16 12:32:47.418 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7538f5e5-c372-4594-bb3d-3ca3c40faecd] received connection request\n2025-07-16 12:32:47.418 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:32:47.435 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7538f5e5-c372-4594-bb3d-3ca3c40faecd] socks forwarding established\n2025-07-16 12:32:47.461 [info] [command][27d46b1f-3f2d-4c35-9cb3-f11f52ef3d7f] Process exited with code 0\n2025-07-16 12:32:47.461 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7538f5e5-c372-4594-bb3d-3ca3c40faecd] socks connection closed\n2025-07-16 12:32:47.461 [info] [command][27d46b1f-3f2d-4c35-9cb3-f11f52ef3d7f] Socket close event received\n2025-07-16 12:32:47.478 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58704 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:33:47.466 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:33:47.468 [info] [command][c7af9f47-7488-47f6-98cf-093a8dc458dd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c7af9f47-7488-47f6-98cf-093a8dc458dd""}\n2025-07-16 12:33:47.469 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5cab7ec7-1931-466c-8534-f6c0404017c4] received connection request\n2025-07-16 12:33:47.470 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:33:47.489 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5cab7ec7-1931-466c-8534-f6c0404017c4] socks forwarding established\n2025-07-16 12:33:47.576 [info] [command][c7af9f47-7488-47f6-98cf-093a8dc458dd] Process exited with code 0\n2025-07-16 12:33:47.576 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5cab7ec7-1931-466c-8534-f6c0404017c4] socks connection closed\n2025-07-16 12:33:47.576 [info] [command][c7af9f47-7488-47f6-98cf-093a8dc458dd] Socket close event received\n2025-07-16 12:33:47.594 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58741 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:34:47.584 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:34:47.586 [info] [command][70191892-8164-410a-87ae-543a8de80908] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""70191892-8164-410a-87ae-543a8de80908""}\n2025-07-16 12:34:47.587 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7e54a8fd-80e1-465e-9b30-f4928f8fe5f8] received connection request\n2025-07-16 12:34:47.587 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:34:47.604 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7e54a8fd-80e1-465e-9b30-f4928f8fe5f8] socks forwarding established\n2025-07-16 12:34:47.634 [info] [command][70191892-8164-410a-87ae-543a8de80908] Process exited with code 0\n2025-07-16 12:34:47.634 [info] [command][70191892-8164-410a-87ae-543a8de80908] Socket close event received\n2025-07-16 12:34:47.634 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7e54a8fd-80e1-465e-9b30-f4928f8fe5f8] socks connection closed\n2025-07-16 12:34:47.651 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58778 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:35:47.641 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:35:47.642 [info] [command][a96d45fa-32b0-4a22-8c27-f3432faca9ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a96d45fa-32b0-4a22-8c27-f3432faca9ac""}\n2025-07-16 12:35:47.643 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3ee4de5c-36ae-4348-877e-3dd075de03e3] received connection request\n2025-07-16 12:35:47.645 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:35:47.664 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3ee4de5c-36ae-4348-877e-3dd075de03e3] socks forwarding established\n2025-07-16 12:35:47.699 [info] [command][a96d45fa-32b0-4a22-8c27-f3432faca9ac] Process exited with code 0\n2025-07-16 12:35:47.699 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3ee4de5c-36ae-4348-877e-3dd075de03e3] socks connection closed\n2025-07-16 12:35:47.700 [info] [command][a96d45fa-32b0-4a22-8c27-f3432faca9ac] Socket close event received\n2025-07-16 12:35:47.716 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58803 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:36:47.699 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:36:47.701 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][de9b0721-a93f-4898-93c3-2d030873cf67] received connection request\n2025-07-16 12:36:47.702 [info] [command][de6be36e-2ea2-4bee-bf7c-8af994e98ad9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""de6be36e-2ea2-4bee-bf7c-8af994e98ad9""}\n2025-07-16 12:36:47.702 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:36:47.721 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][de9b0721-a93f-4898-93c3-2d030873cf67] socks forwarding established\n2025-07-16 12:36:47.751 [info] [command][de6be36e-2ea2-4bee-bf7c-8af994e98ad9] Process exited with code 0\n2025-07-16 12:36:47.751 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][de9b0721-a93f-4898-93c3-2d030873cf67] socks connection closed\n2025-07-16 12:36:47.752 [info] [command][de6be36e-2ea2-4bee-bf7c-8af994e98ad9] Socket close event received\n2025-07-16 12:36:47.769 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58826 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:37:47.759 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:37:47.761 [info] [command][cda96fca-ed11-4ae9-96fe-d42015352340] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""cda96fca-ed11-4ae9-96fe-d42015352340""}\n2025-07-16 12:37:47.761 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][09f6eb81-3744-4a9e-af2b-9557a2234ab2] received connection request\n2025-07-16 12:37:47.762 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:37:47.780 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][09f6eb81-3744-4a9e-af2b-9557a2234ab2] socks forwarding established\n2025-07-16 12:37:47.810 [info] [command][cda96fca-ed11-4ae9-96fe-d42015352340] Process exited with code 0\n2025-07-16 12:37:47.810 [info] [command][cda96fca-ed11-4ae9-96fe-d42015352340] Socket close event received\n2025-07-16 12:37:47.811 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][09f6eb81-3744-4a9e-af2b-9557a2234ab2] socks connection closed\n2025-07-16 12:37:47.828 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58880 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:38:47.820 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:38:47.822 [info] [command][4b1fd92f-bd8b-4930-9d52-f39f08878417] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4b1fd92f-bd8b-4930-9d52-f39f08878417""}\n2025-07-16 12:38:47.823 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b16dc23c-3346-4f75-ab8c-5ae2cfd679a3] received connection request\n2025-07-16 12:38:47.824 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:38:47.843 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b16dc23c-3346-4f75-ab8c-5ae2cfd679a3] socks forwarding established\n2025-07-16 12:38:47.877 [info] [command][4b1fd92f-bd8b-4930-9d52-f39f08878417] Process exited with code 0\n2025-07-16 12:38:47.877 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b16dc23c-3346-4f75-ab8c-5ae2cfd679a3] socks connection closed\n2025-07-16 12:38:47.878 [info] [command][4b1fd92f-bd8b-4930-9d52-f39f08878417] Socket close event received\n2025-07-16 12:38:47.895 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58906 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:39:47.880 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:39:47.881 [info] [command][ec551460-c7c3-48d3-a9f5-89ec5b3025a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ec551460-c7c3-48d3-a9f5-89ec5b3025a2""}\n2025-07-16 12:39:47.881 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d8653cd1-b5ab-4720-89e9-d08295f0b99f] received connection request\n2025-07-16 12:39:47.882 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:39:47.951 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d8653cd1-b5ab-4720-89e9-d08295f0b99f] socks forwarding established\n2025-07-16 12:39:48.014 [info] [command][ec551460-c7c3-48d3-a9f5-89ec5b3025a2] Process exited with code 0\n2025-07-16 12:39:48.015 [info] [command][ec551460-c7c3-48d3-a9f5-89ec5b3025a2] Socket close event received\n2025-07-16 12:39:48.015 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d8653cd1-b5ab-4720-89e9-d08295f0b99f] socks connection closed\n2025-07-16 12:39:48.127 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58941 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:40:48.022 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:40:48.023 [info] [command][3d1499d7-0aed-49b6-8d0c-046f2fb355eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3d1499d7-0aed-49b6-8d0c-046f2fb355eb""}\n2025-07-16 12:40:48.024 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6cf9661d-51c2-42db-a959-4d0758aee984] received connection request\n2025-07-16 12:40:48.025 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:40:48.042 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6cf9661d-51c2-42db-a959-4d0758aee984] socks forwarding established\n2025-07-16 12:40:48.074 [info] [command][3d1499d7-0aed-49b6-8d0c-046f2fb355eb] Process exited with code 0\n2025-07-16 12:40:48.074 [info] [command][3d1499d7-0aed-49b6-8d0c-046f2fb355eb] Socket close event received\n2025-07-16 12:40:48.075 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6cf9661d-51c2-42db-a959-4d0758aee984] socks connection closed\n2025-07-16 12:40:48.127 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58966 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:41:48.084 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:41:48.086 [info] [command][381d1243-da43-4c88-9bf9-8918e6508496] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""381d1243-da43-4c88-9bf9-8918e6508496""}\n2025-07-16 12:41:48.087 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9f0f00ad-0c32-42e9-a61b-8d9297a1dc32] received connection request\n2025-07-16 12:41:48.088 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:41:48.106 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9f0f00ad-0c32-42e9-a61b-8d9297a1dc32] socks forwarding established\n2025-07-16 12:41:48.138 [info] [command][381d1243-da43-4c88-9bf9-8918e6508496] Process exited with code 0\n2025-07-16 12:41:48.138 [info] [command][381d1243-da43-4c88-9bf9-8918e6508496] Socket close event received\n2025-07-16 12:41:48.139 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9f0f00ad-0c32-42e9-a61b-8d9297a1dc32] socks connection closed\n2025-07-16 12:41:48.157 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58992 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:42:48.145 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:42:48.146 [info] [command][6a72c39b-d2a2-43e0-86e8-09b6cc31fcf4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6a72c39b-d2a2-43e0-86e8-09b6cc31fcf4""}\n2025-07-16 12:42:48.147 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c6af95b7-9a69-4a90-a2f8-b95ed64a3a61] received connection request\n2025-07-16 12:42:48.148 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:42:48.166 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c6af95b7-9a69-4a90-a2f8-b95ed64a3a61] socks forwarding established\n2025-07-16 12:42:48.200 [info] [command][6a72c39b-d2a2-43e0-86e8-09b6cc31fcf4] Process exited with code 0\n2025-07-16 12:42:48.200 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c6af95b7-9a69-4a90-a2f8-b95ed64a3a61] socks connection closed\n2025-07-16 12:42:48.200 [info] [command][6a72c39b-d2a2-43e0-86e8-09b6cc31fcf4] Socket close event received\n2025-07-16 12:42:48.219 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59043 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:43:48.204 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:43:48.206 [info] [command][5aaafd58-29c6-4f71-8150-aaf90a82cfef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5aaafd58-29c6-4f71-8150-aaf90a82cfef""}\n2025-07-16 12:43:48.206 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][88a7bf66-815a-4f96-9a5b-16788b7785c4] received connection request\n2025-07-16 12:43:48.207 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:43:48.225 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][88a7bf66-815a-4f96-9a5b-16788b7785c4] socks forwarding established\n2025-07-16 12:43:48.263 [info] [command][5aaafd58-29c6-4f71-8150-aaf90a82cfef] Process exited with code 0\n2025-07-16 12:43:48.263 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][88a7bf66-815a-4f96-9a5b-16788b7785c4] socks connection closed\n2025-07-16 12:43:48.264 [info] [command][5aaafd58-29c6-4f71-8150-aaf90a82cfef] Socket close event received\n2025-07-16 12:43:48.281 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59068 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:44:48.273 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:44:48.275 [info] [command][80fc2de5-794d-4d3f-b772-d4d459f0ba02] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""80fc2de5-794d-4d3f-b772-d4d459f0ba02""}\n2025-07-16 12:44:48.275 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][64d0a8b0-c423-4734-8761-0bb7d6262579] received connection request\n2025-07-16 12:44:48.276 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:44:48.293 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][64d0a8b0-c423-4734-8761-0bb7d6262579] socks forwarding established\n2025-07-16 12:44:48.371 [info] [command][80fc2de5-794d-4d3f-b772-d4d459f0ba02] Process exited with code 0\n2025-07-16 12:44:48.372 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][64d0a8b0-c423-4734-8761-0bb7d6262579] socks connection closed\n2025-07-16 12:44:48.372 [info] [command][80fc2de5-794d-4d3f-b772-d4d459f0ba02] Socket close event received\n2025-07-16 12:44:48.391 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59108 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:45:48.378 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:45:48.380 [info] [command][b2e5eb46-db70-47dd-b791-39ad9ff0df61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b2e5eb46-db70-47dd-b791-39ad9ff0df61""}\n2025-07-16 12:45:48.380 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1dae15aa-d40e-4119-94c5-3de5b76bf5ef] received connection request\n2025-07-16 12:45:48.381 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:45:48.399 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1dae15aa-d40e-4119-94c5-3de5b76bf5ef] socks forwarding established\n2025-07-16 12:45:48.429 [info] [command][b2e5eb46-db70-47dd-b791-39ad9ff0df61] Process exited with code 0\n2025-07-16 12:45:48.429 [info] [command][b2e5eb46-db70-47dd-b791-39ad9ff0df61] Socket close event received\n2025-07-16 12:45:48.430 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1dae15aa-d40e-4119-94c5-3de5b76bf5ef] socks connection closed\n2025-07-16 12:45:48.448 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59130 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:46:48.440 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:46:48.441 [info] [command][9ce86cba-f4a1-423a-ae7d-2806e2d86389] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9ce86cba-f4a1-423a-ae7d-2806e2d86389""}\n2025-07-16 12:46:48.442 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5159dd5a-fad8-429e-91be-2fe24a216cff] received connection request\n2025-07-16 12:46:48.442 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 12:46:48.443 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:46:48.461 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5159dd5a-fad8-429e-91be-2fe24a216cff] socks forwarding established\n2025-07-16 12:46:48.491 [info] [command][9ce86cba-f4a1-423a-ae7d-2806e2d86389] Process exited with code 0\n2025-07-16 12:46:48.492 [info] [command][9ce86cba-f4a1-423a-ae7d-2806e2d86389] Socket close event received\n2025-07-16 12:46:48.492 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5159dd5a-fad8-429e-91be-2fe24a216cff] socks connection closed\n2025-07-16 12:46:48.509 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59155 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:47:48.499 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:47:48.500 [info] [command][b2959875-e93f-4183-9401-7d18f8905035] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b2959875-e93f-4183-9401-7d18f8905035""}\n2025-07-16 12:47:48.501 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f718697a-1efa-4415-a47a-09d08473a51e] received connection request\n2025-07-16 12:47:48.501 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:47:48.517 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f718697a-1efa-4415-a47a-09d08473a51e] socks forwarding established\n2025-07-16 12:47:48.547 [info] [command][b2959875-e93f-4183-9401-7d18f8905035] Process exited with code 0\n2025-07-16 12:47:48.547 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f718697a-1efa-4415-a47a-09d08473a51e] socks connection closed\n2025-07-16 12:47:48.547 [info] [command][b2959875-e93f-4183-9401-7d18f8905035] Socket close event received\n2025-07-16 12:47:48.565 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59206 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:48:48.559 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:48:48.560 [info] [command][efd3b561-1597-40db-a1b1-51c03973f887] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""efd3b561-1597-40db-a1b1-51c03973f887""}\n2025-07-16 12:48:48.561 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b4a841f4-9e11-449d-a44b-4d418294dbdb] received connection request\n2025-07-16 12:48:48.561 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:48:48.579 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b4a841f4-9e11-449d-a44b-4d418294dbdb] socks forwarding established\n2025-07-16 12:48:48.611 [info] [command][efd3b561-1597-40db-a1b1-51c03973f887] Process exited with code 0\n2025-07-16 12:48:48.612 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b4a841f4-9e11-449d-a44b-4d418294dbdb] socks connection closed\n2025-07-16 12:48:48.612 [info] [command][efd3b561-1597-40db-a1b1-51c03973f887] Socket close event received\n2025-07-16 12:48:48.630 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59234 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:49:48.614 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:49:48.615 [info] [command][5c85c512-12d6-45e4-bdf5-d3edfc3f8d66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5c85c512-12d6-45e4-bdf5-d3edfc3f8d66""}\n2025-07-16 12:49:48.616 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9199f7c0-d805-4f2c-8ca8-0be6fb883d37] received connection request\n2025-07-16 12:49:48.617 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:49:48.744 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9199f7c0-d805-4f2c-8ca8-0be6fb883d37] socks forwarding established\n2025-07-16 12:49:48.826 [info] [command][5c85c512-12d6-45e4-bdf5-d3edfc3f8d66] Process exited with code 0\n2025-07-16 12:49:48.827 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9199f7c0-d805-4f2c-8ca8-0be6fb883d37] socks connection closed\n2025-07-16 12:49:48.827 [info] [command][5c85c512-12d6-45e4-bdf5-d3edfc3f8d66] Socket close event received\n2025-07-16 12:49:48.843 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59271 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:50:48.837 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:50:48.839 [info] [command][474fa8cf-9551-422a-9239-4fb7487f2b5f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""474fa8cf-9551-422a-9239-4fb7487f2b5f""}\n2025-07-16 12:50:48.840 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8696cc14-21b8-4386-8251-34169a819800] received connection request\n2025-07-16 12:50:48.841 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:50:48.859 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8696cc14-21b8-4386-8251-34169a819800] socks forwarding established\n2025-07-16 12:50:48.888 [info] [command][474fa8cf-9551-422a-9239-4fb7487f2b5f] Process exited with code 0\n2025-07-16 12:50:48.889 [info] [command][474fa8cf-9551-422a-9239-4fb7487f2b5f] Socket close event received\n2025-07-16 12:50:49.022 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8696cc14-21b8-4386-8251-34169a819800] socks connection closed\n2025-07-16 12:50:49.035 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59292 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:51:48.895 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:51:48.898 [info] [command][01880828-9137-4470-bfd1-5e9ac82aba32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""01880828-9137-4470-bfd1-5e9ac82aba32""}\n2025-07-16 12:51:48.898 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4f3ada25-9c3f-43b4-adfd-befb506ec3cc] received connection request\n2025-07-16 12:51:48.899 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:51:48.990 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f3ada25-9c3f-43b4-adfd-befb506ec3cc] socks forwarding established\n2025-07-16 12:51:49.018 [info] [command][01880828-9137-4470-bfd1-5e9ac82aba32] Process exited with code 0\n2025-07-16 12:51:49.018 [info] [command][01880828-9137-4470-bfd1-5e9ac82aba32] Socket close event received\n2025-07-16 12:51:49.019 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f3ada25-9c3f-43b4-adfd-befb506ec3cc] socks connection closed\n2025-07-16 12:51:49.169 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59319 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:52:49.028 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:52:49.030 [info] [command][a388a758-a18e-492c-809c-00f7ef50137d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a388a758-a18e-492c-809c-00f7ef50137d""}\n2025-07-16 12:52:49.031 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][dde8ac63-27fc-4406-9942-46c48bbea6fe] received connection request\n2025-07-16 12:52:49.031 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:52:49.050 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dde8ac63-27fc-4406-9942-46c48bbea6fe] socks forwarding established\n2025-07-16 12:52:49.082 [info] [command][a388a758-a18e-492c-809c-00f7ef50137d] Process exited with code 0\n2025-07-16 12:52:49.083 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dde8ac63-27fc-4406-9942-46c48bbea6fe] socks connection closed\n2025-07-16 12:52:49.083 [info] [command][a388a758-a18e-492c-809c-00f7ef50137d] Socket close event received\n2025-07-16 12:52:49.101 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59370 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:53:49.091 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:53:49.094 [info] [command][ac5f9300-9a76-4718-948d-fe72139d1226] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ac5f9300-9a76-4718-948d-fe72139d1226""}\n2025-07-16 12:53:49.094 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][53948699-fd69-4b2e-8d0e-ba2d3b02ae7b] received connection request\n2025-07-16 12:53:49.095 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:53:49.113 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][53948699-fd69-4b2e-8d0e-ba2d3b02ae7b] socks forwarding established\n2025-07-16 12:53:49.213 [info] [command][ac5f9300-9a76-4718-948d-fe72139d1226] Process exited with code 0\n2025-07-16 12:53:49.214 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][53948699-fd69-4b2e-8d0e-ba2d3b02ae7b] socks connection closed\n2025-07-16 12:53:49.214 [info] [command][ac5f9300-9a76-4718-948d-fe72139d1226] Socket close event received\n2025-07-16 12:53:49.231 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59397 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:54:49.217 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:54:49.220 [info] [command][15ab236e-6ee0-4eb6-8ae6-55c99f79ffed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""15ab236e-6ee0-4eb6-8ae6-55c99f79ffed""}\n2025-07-16 12:54:49.221 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8b52e41d-f293-4a1d-9dad-89f645c16860] received connection request\n2025-07-16 12:54:49.222 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:54:49.270 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8b52e41d-f293-4a1d-9dad-89f645c16860] socks forwarding established\n2025-07-16 12:54:49.344 [info] [command][15ab236e-6ee0-4eb6-8ae6-55c99f79ffed] Process exited with code 0\n2025-07-16 12:54:49.344 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8b52e41d-f293-4a1d-9dad-89f645c16860] socks connection closed\n2025-07-16 12:54:49.344 [info] [command][15ab236e-6ee0-4eb6-8ae6-55c99f79ffed] Socket close event received\n2025-07-16 12:54:49.492 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59434 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:55:49.351 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:55:49.352 [info] [command][01c140b0-0042-47f7-a4a2-977855756ab3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""01c140b0-0042-47f7-a4a2-977855756ab3""}\n2025-07-16 12:55:49.353 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c00461fc-a8ca-4d1a-bbb5-14882a7976f0] received connection request\n2025-07-16 12:55:49.354 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:55:49.477 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c00461fc-a8ca-4d1a-bbb5-14882a7976f0] socks forwarding established\n2025-07-16 12:55:49.535 [info] [command][01c140b0-0042-47f7-a4a2-977855756ab3] Process exited with code 0\n2025-07-16 12:55:49.535 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c00461fc-a8ca-4d1a-bbb5-14882a7976f0] socks connection closed\n2025-07-16 12:55:49.535 [info] [command][01c140b0-0042-47f7-a4a2-977855756ab3] Socket close event received\n2025-07-16 12:55:49.631 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59459 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:56:49.541 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:56:49.543 [info] [command][dee92410-5d59-4529-82e6-c09a419ffe83] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""dee92410-5d59-4529-82e6-c09a419ffe83""}\n2025-07-16 12:56:49.544 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9d840c0e-3518-485f-a898-cffd0b3b3674] received connection request\n2025-07-16 12:56:49.545 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:56:49.564 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9d840c0e-3518-485f-a898-cffd0b3b3674] socks forwarding established\n2025-07-16 12:56:49.597 [info] [command][dee92410-5d59-4529-82e6-c09a419ffe83] Process exited with code 0\n2025-07-16 12:56:49.597 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9d840c0e-3518-485f-a898-cffd0b3b3674] socks connection closed\n2025-07-16 12:56:49.597 [info] [command][dee92410-5d59-4529-82e6-c09a419ffe83] Socket close event received\n2025-07-16 12:56:49.615 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59481 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:57:49.608 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:57:49.609 [info] [command][e3ceceb9-65df-438b-8bb7-0bb2c8d543fc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e3ceceb9-65df-438b-8bb7-0bb2c8d543fc""}\n2025-07-16 12:57:49.610 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c27f6fa8-ea17-44c0-92d8-8ee7ea2aca2c] received connection request\n2025-07-16 12:57:49.611 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:57:49.628 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c27f6fa8-ea17-44c0-92d8-8ee7ea2aca2c] socks forwarding established\n2025-07-16 12:57:49.658 [info] [command][e3ceceb9-65df-438b-8bb7-0bb2c8d543fc] Process exited with code 0\n2025-07-16 12:57:49.659 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c27f6fa8-ea17-44c0-92d8-8ee7ea2aca2c] socks connection closed\n2025-07-16 12:57:49.659 [info] [command][e3ceceb9-65df-438b-8bb7-0bb2c8d543fc] Socket close event received\n2025-07-16 12:57:49.675 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59538 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:58:49.661 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:58:49.663 [info] [command][a82e1fa5-8940-4cbe-b96f-9b2e9efcb45c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a82e1fa5-8940-4cbe-b96f-9b2e9efcb45c""}\n2025-07-16 12:58:49.664 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][738ad8eb-b771-4439-a262-022f97fc2b4a] received connection request\n2025-07-16 12:58:49.665 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:58:49.682 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][738ad8eb-b771-4439-a262-022f97fc2b4a] socks forwarding established\n2025-07-16 12:58:49.715 [info] [command][a82e1fa5-8940-4cbe-b96f-9b2e9efcb45c] Process exited with code 0\n2025-07-16 12:58:49.715 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][738ad8eb-b771-4439-a262-022f97fc2b4a] socks connection closed\n2025-07-16 12:58:49.716 [info] [command][a82e1fa5-8940-4cbe-b96f-9b2e9efcb45c] Socket close event received\n2025-07-16 12:58:49.733 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59570 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 12:59:49.720 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 12:59:49.721 [info] [command][4d8233a5-b688-44fd-97ac-155fefdf0648] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4d8233a5-b688-44fd-97ac-155fefdf0648""}\n2025-07-16 12:59:49.722 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9c27472f-160c-489e-af69-0e6bf95b7d46] received connection request\n2025-07-16 12:59:49.722 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 12:59:49.745 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9c27472f-160c-489e-af69-0e6bf95b7d46] socks forwarding established\n2025-07-16 12:59:49.773 [info] [command][4d8233a5-b688-44fd-97ac-155fefdf0648] Process exited with code 0\n2025-07-16 12:59:49.773 [info] [command][4d8233a5-b688-44fd-97ac-155fefdf0648] Socket close event received\n2025-07-16 12:59:49.774 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9c27472f-160c-489e-af69-0e6bf95b7d46] socks connection closed\n2025-07-16 12:59:49.792 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59613 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:00:49.774 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:00:49.775 [info] [command][451fc860-59b6-4bfc-af11-6303e91ca864] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""451fc860-59b6-4bfc-af11-6303e91ca864""}\n2025-07-16 13:00:49.776 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7b43082c-d979-40c3-a40a-14ee76559e50] received connection request\n2025-07-16 13:00:49.777 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:00:49.794 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7b43082c-d979-40c3-a40a-14ee76559e50] socks forwarding established\n2025-07-16 13:00:49.822 [info] [command][451fc860-59b6-4bfc-af11-6303e91ca864] Process exited with code 0\n2025-07-16 13:00:49.822 [info] [command][451fc860-59b6-4bfc-af11-6303e91ca864] Socket close event received\n2025-07-16 13:00:49.823 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7b43082c-d979-40c3-a40a-14ee76559e50] socks connection closed\n2025-07-16 13:00:49.839 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59646 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:01:49.828 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:01:49.829 [info] [command][d921c367-3c5a-475b-a286-064e2ffebba9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d921c367-3c5a-475b-a286-064e2ffebba9""}\n2025-07-16 13:01:49.830 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][09f18361-0539-46b4-867a-49613581ddf6] received connection request\n2025-07-16 13:01:49.831 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 13:01:49.831 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:01:49.851 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][09f18361-0539-46b4-867a-49613581ddf6] socks forwarding established\n2025-07-16 13:01:49.883 [info] [command][d921c367-3c5a-475b-a286-064e2ffebba9] Process exited with code 0\n2025-07-16 13:01:49.884 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][09f18361-0539-46b4-867a-49613581ddf6] socks connection closed\n2025-07-16 13:01:49.884 [info] [command][d921c367-3c5a-475b-a286-064e2ffebba9] Socket close event received\n2025-07-16 13:01:49.902 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59669 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:02:49.888 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:02:49.890 [info] [command][90ebe1fd-6c7d-4222-afb7-6d90b81df339] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""90ebe1fd-6c7d-4222-afb7-6d90b81df339""}\n2025-07-16 13:02:49.891 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][daad89e0-b4ba-4a0d-bb40-893d377d3a9f] received connection request\n2025-07-16 13:02:49.893 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:02:49.910 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][daad89e0-b4ba-4a0d-bb40-893d377d3a9f] socks forwarding established\n2025-07-16 13:02:49.940 [info] [command][90ebe1fd-6c7d-4222-afb7-6d90b81df339] Process exited with code 0\n2025-07-16 13:02:49.940 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][daad89e0-b4ba-4a0d-bb40-893d377d3a9f] socks connection closed\n2025-07-16 13:02:49.941 [info] [command][90ebe1fd-6c7d-4222-afb7-6d90b81df339] Socket close event received\n2025-07-16 13:02:49.957 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59726 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:03:49.941 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:03:49.942 [info] [command][68b63d6e-31f8-4059-95cd-fd73bb13de1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""68b63d6e-31f8-4059-95cd-fd73bb13de1a""}\n2025-07-16 13:03:49.943 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][818b1054-19ec-4307-b00b-7e63443f708d] received connection request\n2025-07-16 13:03:49.944 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:03:49.962 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][818b1054-19ec-4307-b00b-7e63443f708d] socks forwarding established\n2025-07-16 13:03:49.993 [info] [command][68b63d6e-31f8-4059-95cd-fd73bb13de1a] Process exited with code 0\n2025-07-16 13:03:49.993 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][818b1054-19ec-4307-b00b-7e63443f708d] socks connection closed\n2025-07-16 13:03:49.993 [info] [command][68b63d6e-31f8-4059-95cd-fd73bb13de1a] Socket close event received\n2025-07-16 13:03:50.011 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59753 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:04:49.998 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:04:50.000 [info] [command][a65ee799-522e-48a0-968e-6033f40e9ebb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a65ee799-522e-48a0-968e-6033f40e9ebb""}\n2025-07-16 13:04:50.001 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b93f7d4d-91f3-4d4f-8968-1acc672c35f8] received connection request\n2025-07-16 13:04:50.002 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:04:50.060 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b93f7d4d-91f3-4d4f-8968-1acc672c35f8] socks forwarding established\n2025-07-16 13:04:50.094 [info] [command][a65ee799-522e-48a0-968e-6033f40e9ebb] Process exited with code 0\n2025-07-16 13:04:50.094 [info] [command][a65ee799-522e-48a0-968e-6033f40e9ebb] Socket close event received\n2025-07-16 13:04:50.096 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b93f7d4d-91f3-4d4f-8968-1acc672c35f8] socks connection closed\n2025-07-16 13:04:50.120 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59793 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:05:50.095 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:05:50.098 [info] [command][25237617-c41c-4cbd-913b-005f905707b2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""25237617-c41c-4cbd-913b-005f905707b2""}\n2025-07-16 13:05:50.099 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b958395e-334a-41e9-bb32-1b59f8cb3e95] received connection request\n2025-07-16 13:05:50.099 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:05:50.117 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b958395e-334a-41e9-bb32-1b59f8cb3e95] socks forwarding established\n2025-07-16 13:05:50.149 [info] [command][25237617-c41c-4cbd-913b-005f905707b2] Process exited with code 0\n2025-07-16 13:05:50.149 [info] [command][25237617-c41c-4cbd-913b-005f905707b2] Socket close event received\n2025-07-16 13:05:50.150 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b958395e-334a-41e9-bb32-1b59f8cb3e95] socks connection closed\n2025-07-16 13:05:50.168 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59819 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:06:50.154 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:06:50.157 [info] [command][8359da61-2da2-4a5a-a3e6-71d47136690d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8359da61-2da2-4a5a-a3e6-71d47136690d""}\n2025-07-16 13:06:50.157 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][11305df6-ec36-4991-91df-3c2a103f54b5] received connection request\n2025-07-16 13:06:50.158 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:06:50.176 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][11305df6-ec36-4991-91df-3c2a103f54b5] socks forwarding established\n2025-07-16 13:06:50.207 [info] [command][8359da61-2da2-4a5a-a3e6-71d47136690d] Process exited with code 0\n2025-07-16 13:06:50.207 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][11305df6-ec36-4991-91df-3c2a103f54b5] socks connection closed\n2025-07-16 13:06:50.207 [info] [command][8359da61-2da2-4a5a-a3e6-71d47136690d] Socket close event received\n2025-07-16 13:06:50.225 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59845 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:07:50.212 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:07:50.214 [info] [command][db63ab80-761d-41b4-833d-25497a60bafe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""db63ab80-761d-41b4-833d-25497a60bafe""}\n2025-07-16 13:07:50.215 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c9dbd05d-4474-45e2-8227-a7c523b0b596] received connection request\n2025-07-16 13:07:50.215 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:07:50.233 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c9dbd05d-4474-45e2-8227-a7c523b0b596] socks forwarding established\n2025-07-16 13:07:50.265 [info] [command][db63ab80-761d-41b4-833d-25497a60bafe] Process exited with code 0\n2025-07-16 13:07:50.265 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c9dbd05d-4474-45e2-8227-a7c523b0b596] socks connection closed\n2025-07-16 13:07:50.266 [info] [command][db63ab80-761d-41b4-833d-25497a60bafe] Socket close event received\n2025-07-16 13:07:50.284 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59900 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:08:50.270 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:08:50.271 [info] [command][fda406e5-a7e0-428c-979c-0ceaa43942ee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fda406e5-a7e0-428c-979c-0ceaa43942ee""}\n2025-07-16 13:08:50.272 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][38611a87-0db5-4f2b-b475-b2c6d185fd21] received connection request\n2025-07-16 13:08:50.273 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:08:50.293 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][38611a87-0db5-4f2b-b475-b2c6d185fd21] socks forwarding established\n2025-07-16 13:08:50.323 [info] [command][fda406e5-a7e0-428c-979c-0ceaa43942ee] Process exited with code 0\n2025-07-16 13:08:50.323 [info] [command][fda406e5-a7e0-428c-979c-0ceaa43942ee] Socket close event received\n2025-07-16 13:08:50.324 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][38611a87-0db5-4f2b-b475-b2c6d185fd21] socks connection closed\n2025-07-16 13:08:50.343 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59929 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:09:50.326 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:09:50.327 [info] [command][d4e38698-3ab0-4e20-b8d7-0059c820c4a9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d4e38698-3ab0-4e20-b8d7-0059c820c4a9""}\n2025-07-16 13:09:50.328 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][84a31305-cfd8-4209-a655-0dcdd0addd76] received connection request\n2025-07-16 13:09:50.329 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:09:50.359 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][84a31305-cfd8-4209-a655-0dcdd0addd76] socks forwarding established\n2025-07-16 13:09:50.390 [info] [command][d4e38698-3ab0-4e20-b8d7-0059c820c4a9] Process exited with code 0\n2025-07-16 13:09:50.390 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][84a31305-cfd8-4209-a655-0dcdd0addd76] socks connection closed\n2025-07-16 13:09:50.390 [info] [command][d4e38698-3ab0-4e20-b8d7-0059c820c4a9] Socket close event received\n2025-07-16 13:09:50.508 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60000 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:10:50.391 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:10:50.392 [info] [command][074f7659-0a51-4159-a758-80efc29495c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""074f7659-0a51-4159-a758-80efc29495c8""}\n2025-07-16 13:10:50.393 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3d5c2c86-8b3b-439d-811d-4b8897a0786e] received connection request\n2025-07-16 13:10:50.393 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:10:50.412 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3d5c2c86-8b3b-439d-811d-4b8897a0786e] socks forwarding established\n2025-07-16 13:10:50.444 [info] [command][074f7659-0a51-4159-a758-80efc29495c8] Process exited with code 0\n2025-07-16 13:10:50.444 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3d5c2c86-8b3b-439d-811d-4b8897a0786e] socks connection closed\n2025-07-16 13:10:50.444 [info] [command][074f7659-0a51-4159-a758-80efc29495c8] Socket close event received\n2025-07-16 13:10:50.548 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60045 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:11:50.449 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:11:50.451 [info] [command][2f0a1b59-5d1c-46ee-85ed-49872ba4a3cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2f0a1b59-5d1c-46ee-85ed-49872ba4a3cd""}\n2025-07-16 13:11:50.452 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8258ffbe-a67d-4ff3-ad08-231e2899637e] received connection request\n2025-07-16 13:11:50.453 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 13:11:50.453 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:11:50.469 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8258ffbe-a67d-4ff3-ad08-231e2899637e] socks forwarding established\n2025-07-16 13:11:50.499 [info] [command][2f0a1b59-5d1c-46ee-85ed-49872ba4a3cd] Process exited with code 0\n2025-07-16 13:11:50.499 [info] [command][2f0a1b59-5d1c-46ee-85ed-49872ba4a3cd] Socket close event received\n2025-07-16 13:11:50.514 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8258ffbe-a67d-4ff3-ad08-231e2899637e] socks connection closed\n2025-07-16 13:11:50.515 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60084 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:12:50.504 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:12:50.508 [info] [command][3b9b27e5-f443-40da-80dc-72900293440c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3b9b27e5-f443-40da-80dc-72900293440c""}\n2025-07-16 13:12:50.508 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b6e3ff3b-e8e2-4810-b3d6-d20859831c00] received connection request\n2025-07-16 13:12:50.509 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:12:50.526 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b6e3ff3b-e8e2-4810-b3d6-d20859831c00] socks forwarding established\n2025-07-16 13:12:50.554 [info] [command][3b9b27e5-f443-40da-80dc-72900293440c] Process exited with code 0\n2025-07-16 13:12:50.554 [info] [command][3b9b27e5-f443-40da-80dc-72900293440c] Socket close event received\n2025-07-16 13:12:50.555 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b6e3ff3b-e8e2-4810-b3d6-d20859831c00] socks connection closed\n2025-07-16 13:12:50.571 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60139 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:13:50.559 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:13:50.561 [info] [command][3d80ca70-9b89-435e-bad1-f1383a75784c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3d80ca70-9b89-435e-bad1-f1383a75784c""}\n2025-07-16 13:13:50.562 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7e213587-7cfc-4eb7-9ebe-9cb7a1ba603a] received connection request\n2025-07-16 13:13:50.562 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:13:50.598 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7e213587-7cfc-4eb7-9ebe-9cb7a1ba603a] socks forwarding established\n2025-07-16 13:13:50.629 [info] [command][3d80ca70-9b89-435e-bad1-f1383a75784c] Process exited with code 0\n2025-07-16 13:13:50.630 [info] [command][3d80ca70-9b89-435e-bad1-f1383a75784c] Socket close event received\n2025-07-16 13:13:50.646 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60169 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:13:50.646 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7e213587-7cfc-4eb7-9ebe-9cb7a1ba603a] socks connection closed\n2025-07-16 13:14:50.632 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:14:50.634 [info] [command][e8572937-ca38-4fc2-93b8-cbf49eaa5419] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e8572937-ca38-4fc2-93b8-cbf49eaa5419""}\n2025-07-16 13:14:50.635 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][809169ea-eabf-4cd7-a990-990692558ab3] received connection request\n2025-07-16 13:14:50.636 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:14:50.653 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][809169ea-eabf-4cd7-a990-990692558ab3] socks forwarding established\n2025-07-16 13:14:50.682 [info] [command][e8572937-ca38-4fc2-93b8-cbf49eaa5419] Process exited with code 0\n2025-07-16 13:14:50.682 [info] [command][e8572937-ca38-4fc2-93b8-cbf49eaa5419] Socket close event received\n2025-07-16 13:14:50.683 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][809169ea-eabf-4cd7-a990-990692558ab3] socks connection closed\n2025-07-16 13:14:50.699 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60214 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:15:50.686 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:15:50.688 [info] [command][963e12f9-25d7-4219-a720-9cddd40ec00e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""963e12f9-25d7-4219-a720-9cddd40ec00e""}\n2025-07-16 13:15:50.689 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][52fb96bd-ce05-4a4c-9ef4-60ac48d78b71] received connection request\n2025-07-16 13:15:50.689 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:15:50.706 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][52fb96bd-ce05-4a4c-9ef4-60ac48d78b71] socks forwarding established\n2025-07-16 13:15:50.736 [info] [command][963e12f9-25d7-4219-a720-9cddd40ec00e] Process exited with code 0\n2025-07-16 13:15:50.736 [info] [command][963e12f9-25d7-4219-a720-9cddd40ec00e] Socket close event received\n2025-07-16 13:15:50.736 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][52fb96bd-ce05-4a4c-9ef4-60ac48d78b71] socks connection closed\n2025-07-16 13:15:50.753 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60239 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:16:50.742 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:16:50.744 [info] [command][51f70d8b-132c-4857-822c-096ed9d9a886] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""51f70d8b-132c-4857-822c-096ed9d9a886""}\n2025-07-16 13:16:50.745 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][68b6833b-b190-4366-b6ee-02d9649d98bc] received connection request\n2025-07-16 13:16:50.745 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:16:50.761 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][68b6833b-b190-4366-b6ee-02d9649d98bc] socks forwarding established\n2025-07-16 13:16:50.792 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][68b6833b-b190-4366-b6ee-02d9649d98bc] socks connection closed\n2025-07-16 13:16:50.793 [info] [command][51f70d8b-132c-4857-822c-096ed9d9a886] Process exited with code 0\n2025-07-16 13:16:50.793 [info] [command][51f70d8b-132c-4857-822c-096ed9d9a886] Socket close event received\n2025-07-16 13:16:50.809 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60266 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:17:50.798 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:17:50.800 [info] [command][f7152beb-efca-424a-8096-87219a4c4bb7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f7152beb-efca-424a-8096-87219a4c4bb7""}\n2025-07-16 13:17:50.801 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][95b96c95-f2b8-45cd-91c8-a0077889942e] received connection request\n2025-07-16 13:17:50.801 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:17:50.818 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][95b96c95-f2b8-45cd-91c8-a0077889942e] socks forwarding established\n2025-07-16 13:17:50.848 [info] [command][f7152beb-efca-424a-8096-87219a4c4bb7] Process exited with code 0\n2025-07-16 13:17:50.849 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][95b96c95-f2b8-45cd-91c8-a0077889942e] socks connection closed\n2025-07-16 13:17:50.849 [info] [command][f7152beb-efca-424a-8096-87219a4c4bb7] Socket close event received\n2025-07-16 13:17:50.866 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60329 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:18:50.854 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:18:50.856 [info] [command][0fb18028-d38a-46e0-ae57-b7b2fece58bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0fb18028-d38a-46e0-ae57-b7b2fece58bd""}\n2025-07-16 13:18:50.857 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d47b8504-92f5-40b9-818b-7b6058c01ba5] received connection request\n2025-07-16 13:18:50.857 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:18:50.874 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d47b8504-92f5-40b9-818b-7b6058c01ba5] socks forwarding established\n2025-07-16 13:18:50.904 [info] [command][0fb18028-d38a-46e0-ae57-b7b2fece58bd] Process exited with code 0\n2025-07-16 13:18:50.905 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d47b8504-92f5-40b9-818b-7b6058c01ba5] socks connection closed\n2025-07-16 13:18:50.905 [info] [command][0fb18028-d38a-46e0-ae57-b7b2fece58bd] Socket close event received\n2025-07-16 13:18:50.922 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60381 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:19:50.910 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:19:50.911 [info] [command][0e0369f2-7a6b-496c-a6ad-cc24e9c62937] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0e0369f2-7a6b-496c-a6ad-cc24e9c62937""}\n2025-07-16 13:19:50.911 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][660e21ca-2571-4397-8f1c-8441e3c7c05a] received connection request\n2025-07-16 13:19:50.912 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:19:50.972 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][660e21ca-2571-4397-8f1c-8441e3c7c05a] socks forwarding established\n2025-07-16 13:19:51.000 [info] [command][0e0369f2-7a6b-496c-a6ad-cc24e9c62937] Process exited with code 0\n2025-07-16 13:19:51.001 [info] [command][0e0369f2-7a6b-496c-a6ad-cc24e9c62937] Socket close event received\n2025-07-16 13:19:51.001 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][660e21ca-2571-4397-8f1c-8441e3c7c05a] socks connection closed\n2025-07-16 13:19:51.019 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60423 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:20:51.006 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:20:51.006 [info] [command][1da13919-33af-4daf-b502-5bb905b51d1d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1da13919-33af-4daf-b502-5bb905b51d1d""}\n2025-07-16 13:20:51.006 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][512ebc31-1fce-4b2c-80b1-7d9b63773901] received connection request\n2025-07-16 13:20:51.007 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:20:51.026 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][512ebc31-1fce-4b2c-80b1-7d9b63773901] socks forwarding established\n2025-07-16 13:20:51.056 [info] [command][1da13919-33af-4daf-b502-5bb905b51d1d] Process exited with code 0\n2025-07-16 13:20:51.057 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][512ebc31-1fce-4b2c-80b1-7d9b63773901] socks connection closed\n2025-07-16 13:20:51.057 [info] [command][1da13919-33af-4daf-b502-5bb905b51d1d] Socket close event received\n2025-07-16 13:20:51.074 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60446 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:21:51.057 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:21:51.058 [info] [command][1be87ad6-d9f8-451e-b29c-2676a32e5c39] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1be87ad6-d9f8-451e-b29c-2676a32e5c39""}\n2025-07-16 13:21:51.058 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c001e280-39b5-4879-907d-6300fb97b39a] received connection request\n2025-07-16 13:21:51.058 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:21:51.078 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c001e280-39b5-4879-907d-6300fb97b39a] socks forwarding established\n2025-07-16 13:21:51.107 [info] [command][1be87ad6-d9f8-451e-b29c-2676a32e5c39] Process exited with code 0\n2025-07-16 13:21:51.107 [info] [command][1be87ad6-d9f8-451e-b29c-2676a32e5c39] Socket close event received\n2025-07-16 13:21:51.107 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c001e280-39b5-4879-907d-6300fb97b39a] socks connection closed\n2025-07-16 13:21:51.125 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60484 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:22:51.113 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:22:51.114 [info] [command][f6a6947a-1384-4eb8-bcf8-52a996ede7a9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f6a6947a-1384-4eb8-bcf8-52a996ede7a9""}\n2025-07-16 13:22:51.114 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f0279b23-8d0c-4410-b813-46bd3e700e05] received connection request\n2025-07-16 13:22:51.114 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:22:51.131 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f0279b23-8d0c-4410-b813-46bd3e700e05] socks forwarding established\n2025-07-16 13:22:51.160 [info] [command][f6a6947a-1384-4eb8-bcf8-52a996ede7a9] Process exited with code 0\n2025-07-16 13:22:51.161 [info] [command][f6a6947a-1384-4eb8-bcf8-52a996ede7a9] Socket close event received\n2025-07-16 13:22:51.161 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f0279b23-8d0c-4410-b813-46bd3e700e05] socks connection closed\n2025-07-16 13:22:51.178 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60543 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:23:51.162 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:23:51.163 [info] [command][d6ac0a68-ffa6-47bb-8fbd-167c6a6b56a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d6ac0a68-ffa6-47bb-8fbd-167c6a6b56a5""}\n2025-07-16 13:23:51.163 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e531e7a6-300f-4c4d-bead-c0b8ec974234] received connection request\n2025-07-16 13:23:51.163 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 13:23:51.163 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:23:51.184 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e531e7a6-300f-4c4d-bead-c0b8ec974234] socks forwarding established\n2025-07-16 13:23:51.213 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e531e7a6-300f-4c4d-bead-c0b8ec974234] socks connection closed\n2025-07-16 13:23:51.213 [info] [command][d6ac0a68-ffa6-47bb-8fbd-167c6a6b56a5] Process exited with code 0\n2025-07-16 13:23:51.213 [info] [command][d6ac0a68-ffa6-47bb-8fbd-167c6a6b56a5] Socket close event received\n2025-07-16 13:23:51.230 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60566 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:24:51.215 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:24:51.216 [info] [command][791edc98-fbbd-4264-88ae-2aae73f749ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""791edc98-fbbd-4264-88ae-2aae73f749ae""}\n2025-07-16 13:24:51.216 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7fd257f5-14e7-42b1-a35b-fbab75a09a70] received connection request\n2025-07-16 13:24:51.217 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:24:51.234 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7fd257f5-14e7-42b1-a35b-fbab75a09a70] socks forwarding established\n2025-07-16 13:24:51.263 [info] [command][791edc98-fbbd-4264-88ae-2aae73f749ae] Process exited with code 0\n2025-07-16 13:24:51.264 [info] [command][791edc98-fbbd-4264-88ae-2aae73f749ae] Socket close event received\n2025-07-16 13:24:51.264 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7fd257f5-14e7-42b1-a35b-fbab75a09a70] socks connection closed\n2025-07-16 13:24:51.280 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60609 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:25:51.269 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:25:51.269 [info] [command][2818df3c-6361-446b-851e-a20396cbef11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2818df3c-6361-446b-851e-a20396cbef11""}\n2025-07-16 13:25:51.270 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8b7369ed-486e-4efa-9832-832e0fdd6317] received connection request\n2025-07-16 13:25:51.270 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:25:51.287 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8b7369ed-486e-4efa-9832-832e0fdd6317] socks forwarding established\n2025-07-16 13:25:51.317 [info] [command][2818df3c-6361-446b-851e-a20396cbef11] Process exited with code 0\n2025-07-16 13:25:51.317 [info] [command][2818df3c-6361-446b-851e-a20396cbef11] Socket close event received\n2025-07-16 13:25:51.318 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8b7369ed-486e-4efa-9832-832e0fdd6317] socks connection closed\n2025-07-16 13:25:51.332 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60647 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:26:51.322 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:26:51.324 [info] [command][7413a5ea-51d8-431c-a43e-2200f781887d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7413a5ea-51d8-431c-a43e-2200f781887d""}\n2025-07-16 13:26:51.325 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][23db3163-13f6-4268-b7c8-0d31c150ef7b] received connection request\n2025-07-16 13:26:51.325 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:26:51.345 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][23db3163-13f6-4268-b7c8-0d31c150ef7b] socks forwarding established\n2025-07-16 13:26:51.376 [info] [command][7413a5ea-51d8-431c-a43e-2200f781887d] Process exited with code 0\n2025-07-16 13:26:51.376 [info] [command][7413a5ea-51d8-431c-a43e-2200f781887d] Socket close event received\n2025-07-16 13:26:51.377 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][23db3163-13f6-4268-b7c8-0d31c150ef7b] socks connection closed\n2025-07-16 13:26:51.395 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60672 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:27:51.381 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:27:51.382 [info] [command][bb463d68-97a3-43af-98bc-68102a07b85f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bb463d68-97a3-43af-98bc-68102a07b85f""}\n2025-07-16 13:27:51.383 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][478f4bad-7958-45b9-a482-1da039f22c6a] received connection request\n2025-07-16 13:27:51.384 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:27:51.400 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][478f4bad-7958-45b9-a482-1da039f22c6a] socks forwarding established\n2025-07-16 13:27:51.429 [info] [command][bb463d68-97a3-43af-98bc-68102a07b85f] Process exited with code 0\n2025-07-16 13:27:51.429 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][478f4bad-7958-45b9-a482-1da039f22c6a] socks connection closed\n2025-07-16 13:27:51.430 [info] [command][bb463d68-97a3-43af-98bc-68102a07b85f] Socket close event received\n2025-07-16 13:27:51.446 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60743 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:28:51.435 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:28:51.436 [info] [command][3504d59b-ae8c-414b-9350-55c6ff11be1f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3504d59b-ae8c-414b-9350-55c6ff11be1f""}\n2025-07-16 13:28:51.437 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][980ad5f8-9f5a-4d33-afbc-d81b74652ecb] received connection request\n2025-07-16 13:28:51.438 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:28:51.455 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][980ad5f8-9f5a-4d33-afbc-d81b74652ecb] socks forwarding established\n2025-07-16 13:28:51.486 [info] [command][3504d59b-ae8c-414b-9350-55c6ff11be1f] Process exited with code 0\n2025-07-16 13:28:51.487 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][980ad5f8-9f5a-4d33-afbc-d81b74652ecb] socks connection closed\n2025-07-16 13:28:51.487 [info] [command][3504d59b-ae8c-414b-9350-55c6ff11be1f] Socket close event received\n2025-07-16 13:28:51.504 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60775 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:29:51.489 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:29:51.490 [info] [command][9822cde9-48bf-4ad3-aab9-21ae2b980b56] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9822cde9-48bf-4ad3-aab9-21ae2b980b56""}\n2025-07-16 13:29:51.491 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9b45c4df-d97e-406b-954b-a70f62f87fcc] received connection request\n2025-07-16 13:29:51.492 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:29:51.509 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9b45c4df-d97e-406b-954b-a70f62f87fcc] socks forwarding established\n2025-07-16 13:29:51.539 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9b45c4df-d97e-406b-954b-a70f62f87fcc] socks connection closed\n2025-07-16 13:29:51.539 [info] [command][9822cde9-48bf-4ad3-aab9-21ae2b980b56] Process exited with code 0\n2025-07-16 13:29:51.539 [info] [command][9822cde9-48bf-4ad3-aab9-21ae2b980b56] Socket close event received\n2025-07-16 13:29:51.556 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60817 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:30:51.544 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:30:51.547 [info] [command][d6b74d7f-3cd3-4ba8-8310-959787eb0138] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d6b74d7f-3cd3-4ba8-8310-959787eb0138""}\n2025-07-16 13:30:51.547 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b4a319ff-2d57-4e5e-8eb0-68ea6e11a2b0] received connection request\n2025-07-16 13:30:51.548 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:30:51.566 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b4a319ff-2d57-4e5e-8eb0-68ea6e11a2b0] socks forwarding established\n2025-07-16 13:30:51.601 [info] [command][d6b74d7f-3cd3-4ba8-8310-959787eb0138] Process exited with code 0\n2025-07-16 13:30:51.602 [info] [command][d6b74d7f-3cd3-4ba8-8310-959787eb0138] Socket close event received\n2025-07-16 13:30:51.602 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b4a319ff-2d57-4e5e-8eb0-68ea6e11a2b0] socks connection closed\n2025-07-16 13:30:51.618 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60860 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:31:51.604 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:31:51.605 [info] [command][7508f023-13d8-4937-b4a3-b0e2fe85f5d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7508f023-13d8-4937-b4a3-b0e2fe85f5d2""}\n2025-07-16 13:31:51.606 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3880c87f-0b82-4e2a-9157-07d0f1199115] received connection request\n2025-07-16 13:31:51.607 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:31:51.626 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3880c87f-0b82-4e2a-9157-07d0f1199115] socks forwarding established\n2025-07-16 13:31:51.658 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3880c87f-0b82-4e2a-9157-07d0f1199115] socks connection closed\n2025-07-16 13:31:51.659 [info] [command][7508f023-13d8-4937-b4a3-b0e2fe85f5d2] Process exited with code 0\n2025-07-16 13:31:51.659 [info] [command][7508f023-13d8-4937-b4a3-b0e2fe85f5d2] Socket close event received\n2025-07-16 13:31:51.675 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60882 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:32:51.667 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:32:51.669 [info] [command][ce128ba5-9e33-4281-9036-c442954a082c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ce128ba5-9e33-4281-9036-c442954a082c""}\n2025-07-16 13:32:51.670 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][03336659-8b52-4b33-8ec6-104741ab312c] received connection request\n2025-07-16 13:32:51.670 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:32:51.687 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][03336659-8b52-4b33-8ec6-104741ab312c] socks forwarding established\n2025-07-16 13:32:51.717 [info] [command][ce128ba5-9e33-4281-9036-c442954a082c] Process exited with code 0\n2025-07-16 13:32:51.717 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][03336659-8b52-4b33-8ec6-104741ab312c] socks connection closed\n2025-07-16 13:32:51.717 [info] [command][ce128ba5-9e33-4281-9036-c442954a082c] Socket close event received\n2025-07-16 13:32:51.734 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60944 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:33:51.723 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:33:51.725 [info] [command][fa3717fb-a10e-48ac-9798-000e503c258c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fa3717fb-a10e-48ac-9798-000e503c258c""}\n2025-07-16 13:33:51.726 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][323089ad-058c-4dd7-b9b2-e3321499ec18] received connection request\n2025-07-16 13:33:51.727 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:33:51.743 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][323089ad-058c-4dd7-b9b2-e3321499ec18] socks forwarding established\n2025-07-16 13:33:51.774 [info] [command][fa3717fb-a10e-48ac-9798-000e503c258c] Process exited with code 0\n2025-07-16 13:33:51.775 [info] [command][fa3717fb-a10e-48ac-9798-000e503c258c] Socket close event received\n2025-07-16 13:33:51.777 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][323089ad-058c-4dd7-b9b2-e3321499ec18] socks connection closed\n2025-07-16 13:33:51.791 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60987 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:34:51.777 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:34:51.780 [info] [command][43c1485a-b58e-4e64-893b-b4729ee1284c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""43c1485a-b58e-4e64-893b-b4729ee1284c""}\n2025-07-16 13:34:51.780 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][78ddec8c-4b8b-42e5-a504-4be0d13a12e7] received connection request\n2025-07-16 13:34:51.781 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:34:51.810 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][78ddec8c-4b8b-42e5-a504-4be0d13a12e7] socks forwarding established\n2025-07-16 13:34:51.840 [info] [command][43c1485a-b58e-4e64-893b-b4729ee1284c] Process exited with code 0\n2025-07-16 13:34:51.841 [info] [command][43c1485a-b58e-4e64-893b-b4729ee1284c] Socket close event received\n2025-07-16 13:34:51.841 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][78ddec8c-4b8b-42e5-a504-4be0d13a12e7] socks connection closed\n2025-07-16 13:34:51.859 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61026 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:35:51.845 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:35:51.847 [info] [command][63a5794d-d19f-4b84-8210-b7340d9a3a73] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""63a5794d-d19f-4b84-8210-b7340d9a3a73""}\n2025-07-16 13:35:51.848 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6b42aa6c-3762-4fd6-a1c7-fd8015a53953] received connection request\n2025-07-16 13:35:51.849 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:35:51.865 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6b42aa6c-3762-4fd6-a1c7-fd8015a53953] socks forwarding established\n2025-07-16 13:35:51.896 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6b42aa6c-3762-4fd6-a1c7-fd8015a53953] socks connection closed\n2025-07-16 13:35:51.897 [info] [command][63a5794d-d19f-4b84-8210-b7340d9a3a73] Process exited with code 0\n2025-07-16 13:35:51.897 [info] [command][63a5794d-d19f-4b84-8210-b7340d9a3a73] Socket close event received\n2025-07-16 13:35:51.912 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61053 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:36:51.898 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:36:51.899 [info] [command][8495b9fa-77a1-440e-9b36-7b973c5a2ff2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8495b9fa-77a1-440e-9b36-7b973c5a2ff2""}\n2025-07-16 13:36:51.900 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8a0ee9e7-f038-473f-b63b-1f040ec833bf] received connection request\n2025-07-16 13:36:51.900 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:36:51.917 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8a0ee9e7-f038-473f-b63b-1f040ec833bf] socks forwarding established\n2025-07-16 13:36:51.946 [info] [command][8495b9fa-77a1-440e-9b36-7b973c5a2ff2] Process exited with code 0\n2025-07-16 13:36:51.946 [info] [command][8495b9fa-77a1-440e-9b36-7b973c5a2ff2] Socket close event received\n2025-07-16 13:36:51.947 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8a0ee9e7-f038-473f-b63b-1f040ec833bf] socks connection closed\n2025-07-16 13:36:51.965 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61088 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:37:51.951 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:37:51.952 [info] [command][57b8889d-02a8-4089-a653-57293e5007a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""57b8889d-02a8-4089-a653-57293e5007a3""}\n2025-07-16 13:37:51.953 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f286198e-e371-4b68-a704-fd57ba85b076] received connection request\n2025-07-16 13:37:51.954 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:37:52.014 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f286198e-e371-4b68-a704-fd57ba85b076] socks forwarding established\n2025-07-16 13:37:52.044 [info] [command][57b8889d-02a8-4089-a653-57293e5007a3] Process exited with code 0\n2025-07-16 13:37:52.044 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f286198e-e371-4b68-a704-fd57ba85b076] socks connection closed\n2025-07-16 13:37:52.045 [info] [command][57b8889d-02a8-4089-a653-57293e5007a3] Socket close event received\n2025-07-16 13:37:52.061 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61141 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:38:52.050 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:38:52.052 [info] [command][81989d95-24a0-43ec-804b-4614eeccca11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""81989d95-24a0-43ec-804b-4614eeccca11""}\n2025-07-16 13:38:52.053 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][183baade-30a5-466e-b044-7f978953aafd] received connection request\n2025-07-16 13:38:52.053 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:38:52.073 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][183baade-30a5-466e-b044-7f978953aafd] socks forwarding established\n2025-07-16 13:38:52.101 [info] [command][81989d95-24a0-43ec-804b-4614eeccca11] Process exited with code 0\n2025-07-16 13:38:52.102 [info] [command][81989d95-24a0-43ec-804b-4614eeccca11] Socket close event received\n2025-07-16 13:38:52.102 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][183baade-30a5-466e-b044-7f978953aafd] socks connection closed\n2025-07-16 13:38:52.118 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61172 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:39:52.105 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:39:52.108 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][cb1227f0-4f84-48a2-a7c8-6ec394cfe4e8] received connection request\n2025-07-16 13:39:52.108 [info] [command][e34f9fb8-9ae2-4d89-9417-57c1d9f47ed7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e34f9fb8-9ae2-4d89-9417-57c1d9f47ed7""}\n2025-07-16 13:39:52.108 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:39:52.128 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cb1227f0-4f84-48a2-a7c8-6ec394cfe4e8] socks forwarding established\n2025-07-16 13:39:52.194 [info] [command][e34f9fb8-9ae2-4d89-9417-57c1d9f47ed7] Process exited with code 0\n2025-07-16 13:39:52.194 [info] [command][e34f9fb8-9ae2-4d89-9417-57c1d9f47ed7] Socket close event received\n2025-07-16 13:39:52.196 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cb1227f0-4f84-48a2-a7c8-6ec394cfe4e8] socks connection closed\n2025-07-16 13:39:52.299 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61210 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:40:52.194 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:40:52.195 [info] [command][ff39b797-66b7-47dd-b344-01aa9a85aa3e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ff39b797-66b7-47dd-b344-01aa9a85aa3e""}\n2025-07-16 13:40:52.195 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][bb3bab71-f5a7-422c-8ff6-f72a5a0e0b1b] received connection request\n2025-07-16 13:40:52.195 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:40:52.210 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bb3bab71-f5a7-422c-8ff6-f72a5a0e0b1b] socks forwarding established\n2025-07-16 13:40:52.239 [info] [command][ff39b797-66b7-47dd-b344-01aa9a85aa3e] Process exited with code 0\n2025-07-16 13:40:52.239 [info] [command][ff39b797-66b7-47dd-b344-01aa9a85aa3e] Socket close event received\n2025-07-16 13:40:52.239 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bb3bab71-f5a7-422c-8ff6-f72a5a0e0b1b] socks connection closed\n2025-07-16 13:40:52.255 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61233 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:41:52.243 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:41:52.246 [info] [command][328ec4be-19a8-43ef-8940-a320749bfcd0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""328ec4be-19a8-43ef-8940-a320749bfcd0""}\n2025-07-16 13:41:52.247 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][165246c1-3fde-433f-9ef8-7aecb21e8d8c] received connection request\n2025-07-16 13:41:52.247 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:41:52.264 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][165246c1-3fde-433f-9ef8-7aecb21e8d8c] socks forwarding established\n2025-07-16 13:41:52.293 [info] [command][328ec4be-19a8-43ef-8940-a320749bfcd0] Process exited with code 0\n2025-07-16 13:41:52.293 [info] [command][328ec4be-19a8-43ef-8940-a320749bfcd0] Socket close event received\n2025-07-16 13:41:52.294 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][165246c1-3fde-433f-9ef8-7aecb21e8d8c] socks connection closed\n2025-07-16 13:41:52.309 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61256 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:42:52.296 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:42:52.298 [info] [command][023fb4a1-6701-4f06-b835-25e16ec757a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""023fb4a1-6701-4f06-b835-25e16ec757a2""}\n2025-07-16 13:42:52.299 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5e4d76bd-e7da-4402-be49-8437dc5a06b2] received connection request\n2025-07-16 13:42:52.299 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:42:52.317 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5e4d76bd-e7da-4402-be49-8437dc5a06b2] socks forwarding established\n2025-07-16 13:42:52.420 [info] [command][023fb4a1-6701-4f06-b835-25e16ec757a2] Process exited with code 0\n2025-07-16 13:42:52.421 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5e4d76bd-e7da-4402-be49-8437dc5a06b2] socks connection closed\n2025-07-16 13:42:52.421 [info] [command][023fb4a1-6701-4f06-b835-25e16ec757a2] Socket close event received\n2025-07-16 13:42:52.440 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61308 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:43:52.425 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:43:52.426 [info] [command][6a7e78ec-e2b8-4f8b-a31d-98c0eb4cfb36] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6a7e78ec-e2b8-4f8b-a31d-98c0eb4cfb36""}\n2025-07-16 13:43:52.427 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][282d415b-29b3-4a75-b5a3-51d1ddcc8c24] received connection request\n2025-07-16 13:43:52.428 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:43:52.473 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][282d415b-29b3-4a75-b5a3-51d1ddcc8c24] socks forwarding established\n2025-07-16 13:43:52.503 [info] [command][6a7e78ec-e2b8-4f8b-a31d-98c0eb4cfb36] Process exited with code 0\n2025-07-16 13:43:52.503 [info] [command][6a7e78ec-e2b8-4f8b-a31d-98c0eb4cfb36] Socket close event received\n2025-07-16 13:43:52.504 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][282d415b-29b3-4a75-b5a3-51d1ddcc8c24] socks connection closed\n2025-07-16 13:43:52.523 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61335 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:44:52.508 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:44:52.509 [info] [command][24a57e93-0c2d-4a4f-8e34-58f43c0d6a0c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""24a57e93-0c2d-4a4f-8e34-58f43c0d6a0c""}\n2025-07-16 13:44:52.510 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0fa64259-893d-4612-8684-46164888d84e] received connection request\n2025-07-16 13:44:52.510 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:44:52.532 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0fa64259-893d-4612-8684-46164888d84e] socks forwarding established\n2025-07-16 13:44:52.562 [info] [command][24a57e93-0c2d-4a4f-8e34-58f43c0d6a0c] Process exited with code 0\n2025-07-16 13:44:52.563 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0fa64259-893d-4612-8684-46164888d84e] socks connection closed\n2025-07-16 13:44:52.563 [info] [command][24a57e93-0c2d-4a4f-8e34-58f43c0d6a0c] Socket close event received\n2025-07-16 13:44:52.582 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61373 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:45:52.574 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:45:52.575 [info] [command][de700c3c-421e-4a80-b5bd-61a6aee9706b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""de700c3c-421e-4a80-b5bd-61a6aee9706b""}\n2025-07-16 13:45:52.575 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][aabca979-1fb2-4f7b-b578-31b0e838533b] received connection request\n2025-07-16 13:45:52.575 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:45:52.592 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aabca979-1fb2-4f7b-b578-31b0e838533b] socks forwarding established\n2025-07-16 13:45:52.621 [info] [command][de700c3c-421e-4a80-b5bd-61a6aee9706b] Process exited with code 0\n2025-07-16 13:45:52.622 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aabca979-1fb2-4f7b-b578-31b0e838533b] socks connection closed\n2025-07-16 13:45:52.622 [info] [command][de700c3c-421e-4a80-b5bd-61a6aee9706b] Socket close event received\n2025-07-16 13:45:52.638 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61397 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:46:52.632 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:46:52.633 [info] [command][4b8bcffa-a82a-4fa6-983b-b40fcf6277ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4b8bcffa-a82a-4fa6-983b-b40fcf6277ab""}\n2025-07-16 13:46:52.634 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][74d42379-93e5-4998-9901-e55fae1f398d] received connection request\n2025-07-16 13:46:52.635 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:46:52.652 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][74d42379-93e5-4998-9901-e55fae1f398d] socks forwarding established\n2025-07-16 13:46:52.681 [info] [command][4b8bcffa-a82a-4fa6-983b-b40fcf6277ab] Process exited with code 0\n2025-07-16 13:46:52.681 [info] [command][4b8bcffa-a82a-4fa6-983b-b40fcf6277ab] Socket close event received\n2025-07-16 13:46:52.683 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][74d42379-93e5-4998-9901-e55fae1f398d] socks connection closed\n2025-07-16 13:46:52.700 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61423 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:47:52.688 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:47:52.689 [info] [command][ce7fc8ec-c5a6-476b-8f7b-d0618ef5d5d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ce7fc8ec-c5a6-476b-8f7b-d0618ef5d5d7""}\n2025-07-16 13:47:52.690 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c003c8dc-90af-4871-9217-2dbef39f2a39] received connection request\n2025-07-16 13:47:52.690 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:47:52.709 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c003c8dc-90af-4871-9217-2dbef39f2a39] socks forwarding established\n2025-07-16 13:47:52.744 [info] [command][ce7fc8ec-c5a6-476b-8f7b-d0618ef5d5d7] Process exited with code 0\n2025-07-16 13:47:52.744 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c003c8dc-90af-4871-9217-2dbef39f2a39] socks connection closed\n2025-07-16 13:47:52.744 [info] [command][ce7fc8ec-c5a6-476b-8f7b-d0618ef5d5d7] Socket close event received\n2025-07-16 13:47:52.841 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61476 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:48:52.755 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:48:52.756 [info] [command][fa5b40e9-be8a-42cb-8372-5e342d0ff841] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fa5b40e9-be8a-42cb-8372-5e342d0ff841""}\n2025-07-16 13:48:52.757 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d747eb65-d9ce-4372-b0cd-4165ef410dec] received connection request\n2025-07-16 13:48:52.757 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:48:52.775 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d747eb65-d9ce-4372-b0cd-4165ef410dec] socks forwarding established\n2025-07-16 13:48:52.805 [info] [command][fa5b40e9-be8a-42cb-8372-5e342d0ff841] Process exited with code 0\n2025-07-16 13:48:52.805 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d747eb65-d9ce-4372-b0cd-4165ef410dec] socks connection closed\n2025-07-16 13:48:52.805 [info] [command][fa5b40e9-be8a-42cb-8372-5e342d0ff841] Socket close event received\n2025-07-16 13:48:52.824 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61498 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:49:52.809 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:49:52.811 [info] [command][175e0ada-a756-4b11-937e-0172028f01ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""175e0ada-a756-4b11-937e-0172028f01ed""}\n2025-07-16 13:49:52.812 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][177d0c5f-89ab-46d7-a1a9-99242715be37] received connection request\n2025-07-16 13:49:52.813 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:49:52.830 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][177d0c5f-89ab-46d7-a1a9-99242715be37] socks forwarding established\n2025-07-16 13:49:52.861 [info] [command][175e0ada-a756-4b11-937e-0172028f01ed] Process exited with code 0\n2025-07-16 13:49:52.862 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][177d0c5f-89ab-46d7-a1a9-99242715be37] socks connection closed\n2025-07-16 13:49:52.862 [info] [command][175e0ada-a756-4b11-937e-0172028f01ed] Socket close event received\n2025-07-16 13:49:52.881 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61565 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:50:52.865 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:50:52.867 [info] [command][3696e7f4-afdf-40a1-b245-4e3dadc0f275] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3696e7f4-afdf-40a1-b245-4e3dadc0f275""}\n2025-07-16 13:50:52.867 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][87e1941d-efb6-4911-8bb9-2d755c71b6cf] received connection request\n2025-07-16 13:50:52.867 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:50:52.910 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][87e1941d-efb6-4911-8bb9-2d755c71b6cf] socks forwarding established\n2025-07-16 13:50:52.987 [info] [command][3696e7f4-afdf-40a1-b245-4e3dadc0f275] Process exited with code 0\n2025-07-16 13:50:52.987 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][87e1941d-efb6-4911-8bb9-2d755c71b6cf] socks connection closed\n2025-07-16 13:50:52.988 [info] [command][3696e7f4-afdf-40a1-b245-4e3dadc0f275] Socket close event received\n2025-07-16 13:50:53.100 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61615 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:51:52.993 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:51:52.995 [info] [command][4350a257-333b-4aeb-975f-07a07d4a43de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4350a257-333b-4aeb-975f-07a07d4a43de""}\n2025-07-16 13:51:52.996 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c95d4423-a058-4e48-af7d-778a3bb84c0b] received connection request\n2025-07-16 13:51:52.997 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:51:53.109 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c95d4423-a058-4e48-af7d-778a3bb84c0b] socks forwarding established\n2025-07-16 13:51:53.140 [info] [command][4350a257-333b-4aeb-975f-07a07d4a43de] Process exited with code 0\n2025-07-16 13:51:53.140 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c95d4423-a058-4e48-af7d-778a3bb84c0b] socks connection closed\n2025-07-16 13:51:53.140 [info] [command][4350a257-333b-4aeb-975f-07a07d4a43de] Socket close event received\n2025-07-16 13:51:53.157 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61680 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:52:53.143 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:52:53.145 [info] [command][16df7011-a335-4a45-b3d7-ec1e9356029f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""16df7011-a335-4a45-b3d7-ec1e9356029f""}\n2025-07-16 13:52:53.145 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c37a9f06-fc73-40b8-9222-425e8b11d015] received connection request\n2025-07-16 13:52:53.146 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:52:53.184 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c37a9f06-fc73-40b8-9222-425e8b11d015] socks forwarding established\n2025-07-16 13:52:53.221 [info] [command][16df7011-a335-4a45-b3d7-ec1e9356029f] Process exited with code 0\n2025-07-16 13:52:53.221 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c37a9f06-fc73-40b8-9222-425e8b11d015] socks connection closed\n2025-07-16 13:52:53.221 [info] [command][16df7011-a335-4a45-b3d7-ec1e9356029f] Socket close event received\n2025-07-16 13:52:53.242 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61730 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:53:53.222 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:53:53.223 [info] [command][b7a99836-3890-47d9-9a58-e4cbfc1922a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b7a99836-3890-47d9-9a58-e4cbfc1922a7""}\n2025-07-16 13:53:53.224 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e4ffabe2-5ba2-4269-a6f4-55e0d17a9412] received connection request\n2025-07-16 13:53:53.225 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:53:53.241 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e4ffabe2-5ba2-4269-a6f4-55e0d17a9412] socks forwarding established\n2025-07-16 13:53:53.267 [info] [command][b7a99836-3890-47d9-9a58-e4cbfc1922a7] Process exited with code 0\n2025-07-16 13:53:53.268 [info] [command][b7a99836-3890-47d9-9a58-e4cbfc1922a7] Socket close event received\n2025-07-16 13:53:53.269 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e4ffabe2-5ba2-4269-a6f4-55e0d17a9412] socks connection closed\n2025-07-16 13:53:53.285 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61763 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:54:53.269 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:54:53.272 [info] [command][487ed0d6-2357-477f-b8b0-a6d01b79efd7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""487ed0d6-2357-477f-b8b0-a6d01b79efd7""}\n2025-07-16 13:54:53.273 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f820ec2d-595a-4a82-826b-62b88ee204fb] received connection request\n2025-07-16 13:54:53.273 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:54:53.426 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f820ec2d-595a-4a82-826b-62b88ee204fb] socks forwarding established\n2025-07-16 13:54:53.462 [info] [command][487ed0d6-2357-477f-b8b0-a6d01b79efd7] Process exited with code 0\n2025-07-16 13:54:53.462 [info] [command][487ed0d6-2357-477f-b8b0-a6d01b79efd7] Socket close event received\n2025-07-16 13:54:53.463 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f820ec2d-595a-4a82-826b-62b88ee204fb] socks connection closed\n2025-07-16 13:54:53.482 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61809 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:55:53.464 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:55:53.466 [info] [command][a26eed2d-eda6-42b0-8ca5-c081423e38c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a26eed2d-eda6-42b0-8ca5-c081423e38c0""}\n2025-07-16 13:55:53.467 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][fa28dd97-5dbb-4f78-837d-60484974d24f] received connection request\n2025-07-16 13:55:53.467 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:55:53.484 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fa28dd97-5dbb-4f78-837d-60484974d24f] socks forwarding established\n2025-07-16 13:55:53.513 [info] [command][a26eed2d-eda6-42b0-8ca5-c081423e38c0] Process exited with code 0\n2025-07-16 13:55:53.513 [info] [command][a26eed2d-eda6-42b0-8ca5-c081423e38c0] Socket close event received\n2025-07-16 13:55:53.514 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fa28dd97-5dbb-4f78-837d-60484974d24f] socks connection closed\n2025-07-16 13:55:53.532 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61843 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:56:53.519 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:56:53.521 [info] [command][701dae3a-ddde-4007-8852-921d6f542f39] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""701dae3a-ddde-4007-8852-921d6f542f39""}\n2025-07-16 13:56:53.522 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][940209ba-bca5-488d-8438-bce5975db1af] received connection request\n2025-07-16 13:56:53.522 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:56:53.540 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][940209ba-bca5-488d-8438-bce5975db1af] socks forwarding established\n2025-07-16 13:56:53.570 [info] [command][701dae3a-ddde-4007-8852-921d6f542f39] Process exited with code 0\n2025-07-16 13:56:53.570 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][940209ba-bca5-488d-8438-bce5975db1af] socks connection closed\n2025-07-16 13:56:53.571 [info] [command][701dae3a-ddde-4007-8852-921d6f542f39] Socket close event received\n2025-07-16 13:56:53.587 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61868 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:57:53.573 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:57:53.575 [info] [command][d9e17fd6-c560-4301-8b6f-955c615f0d24] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d9e17fd6-c560-4301-8b6f-955c615f0d24""}\n2025-07-16 13:57:53.576 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][410a8052-3a04-47d2-8f76-dc43caab0919] received connection request\n2025-07-16 13:57:53.577 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:57:53.595 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][410a8052-3a04-47d2-8f76-dc43caab0919] socks forwarding established\n2025-07-16 13:57:53.625 [info] [command][d9e17fd6-c560-4301-8b6f-955c615f0d24] Process exited with code 0\n2025-07-16 13:57:53.625 [info] [command][d9e17fd6-c560-4301-8b6f-955c615f0d24] Socket close event received\n2025-07-16 13:57:53.626 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][410a8052-3a04-47d2-8f76-dc43caab0919] socks connection closed\n2025-07-16 13:57:53.643 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61929 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:58:53.627 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:58:53.630 [info] [command][2d6bbccb-4beb-42a8-9d16-a762c66b8e8a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2d6bbccb-4beb-42a8-9d16-a762c66b8e8a""}\n2025-07-16 13:58:53.630 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][04ccb259-85dc-483b-940d-526c690f1c06] received connection request\n2025-07-16 13:58:53.631 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:58:53.730 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][04ccb259-85dc-483b-940d-526c690f1c06] socks forwarding established\n2025-07-16 13:58:53.761 [info] [command][2d6bbccb-4beb-42a8-9d16-a762c66b8e8a] Process exited with code 0\n2025-07-16 13:58:53.761 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][04ccb259-85dc-483b-940d-526c690f1c06] socks connection closed\n2025-07-16 13:58:53.761 [info] [command][2d6bbccb-4beb-42a8-9d16-a762c66b8e8a] Socket close event received\n2025-07-16 13:58:53.780 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61958 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 13:59:53.763 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 13:59:53.766 [info] [command][0d96560f-6ba7-4521-9577-95b8456a8b90] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0d96560f-6ba7-4521-9577-95b8456a8b90""}\n2025-07-16 13:59:53.767 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][32a939f2-7c27-4e40-a553-32a2034a65fb] received connection request\n2025-07-16 13:59:53.767 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 13:59:53.784 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][32a939f2-7c27-4e40-a553-32a2034a65fb] socks forwarding established\n2025-07-16 13:59:53.900 [info] [command][0d96560f-6ba7-4521-9577-95b8456a8b90] Process exited with code 0\n2025-07-16 13:59:53.901 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][32a939f2-7c27-4e40-a553-32a2034a65fb] socks connection closed\n2025-07-16 13:59:53.901 [info] [command][0d96560f-6ba7-4521-9577-95b8456a8b90] Socket close event received\n2025-07-16 13:59:53.919 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62011 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:00:53.905 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:00:53.908 [info] [command][22bee5ef-02dd-45e1-a3a2-102fa847a83a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""22bee5ef-02dd-45e1-a3a2-102fa847a83a""}\n2025-07-16 14:00:53.909 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c6de4b44-eab7-44c2-b4ac-d45478e003bf] received connection request\n2025-07-16 14:00:53.909 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:00:53.927 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c6de4b44-eab7-44c2-b4ac-d45478e003bf] socks forwarding established\n2025-07-16 14:00:53.960 [info] [command][22bee5ef-02dd-45e1-a3a2-102fa847a83a] Process exited with code 0\n2025-07-16 14:00:53.961 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c6de4b44-eab7-44c2-b4ac-d45478e003bf] socks connection closed\n2025-07-16 14:00:53.961 [info] [command][22bee5ef-02dd-45e1-a3a2-102fa847a83a] Socket close event received\n2025-07-16 14:00:53.979 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62045 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:01:53.967 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:01:53.969 [info] [command][33343df6-b07e-47c7-aa37-5a9ec757f8a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""33343df6-b07e-47c7-aa37-5a9ec757f8a7""}\n2025-07-16 14:01:53.969 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f0998281-95d0-45d4-b625-19eab496d24c] received connection request\n2025-07-16 14:01:53.970 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:01:53.989 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f0998281-95d0-45d4-b625-19eab496d24c] socks forwarding established\n2025-07-16 14:01:54.019 [info] [command][33343df6-b07e-47c7-aa37-5a9ec757f8a7] Process exited with code 0\n2025-07-16 14:01:54.019 [info] [command][33343df6-b07e-47c7-aa37-5a9ec757f8a7] Socket close event received\n2025-07-16 14:01:54.020 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f0998281-95d0-45d4-b625-19eab496d24c] socks connection closed\n2025-07-16 14:01:54.038 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62092 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:02:54.021 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:02:54.023 [info] [command][8c83eff5-bb52-4712-9aca-e97bc131c230] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8c83eff5-bb52-4712-9aca-e97bc131c230""}\n2025-07-16 14:02:54.024 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e11c6763-0dc5-441c-bba0-a08e83177651] received connection request\n2025-07-16 14:02:54.025 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:02:54.044 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e11c6763-0dc5-441c-bba0-a08e83177651] socks forwarding established\n2025-07-16 14:02:54.074 [info] [command][8c83eff5-bb52-4712-9aca-e97bc131c230] Process exited with code 0\n2025-07-16 14:02:54.074 [info] [command][8c83eff5-bb52-4712-9aca-e97bc131c230] Socket close event received\n2025-07-16 14:02:54.074 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e11c6763-0dc5-441c-bba0-a08e83177651] socks connection closed\n2025-07-16 14:02:54.092 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62145 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:03:54.079 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:03:54.082 [info] [command][80ba1424-3c27-4b7f-9cac-e9fc08ba7b91] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""80ba1424-3c27-4b7f-9cac-e9fc08ba7b91""}\n2025-07-16 14:03:54.082 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][72ae284f-b745-4bde-8de8-69c7b7c563ab] received connection request\n2025-07-16 14:03:54.083 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:03:54.117 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][72ae284f-b745-4bde-8de8-69c7b7c563ab] socks forwarding established\n2025-07-16 14:03:54.149 [info] [command][80ba1424-3c27-4b7f-9cac-e9fc08ba7b91] Process exited with code 0\n2025-07-16 14:03:54.149 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][72ae284f-b745-4bde-8de8-69c7b7c563ab] socks connection closed\n2025-07-16 14:03:54.149 [info] [command][80ba1424-3c27-4b7f-9cac-e9fc08ba7b91] Socket close event received\n2025-07-16 14:03:54.168 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62169 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:04:54.154 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:04:54.157 [info] [command][064a24f8-bf72-4404-8c17-6619095fc6e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""064a24f8-bf72-4404-8c17-6619095fc6e6""}\n2025-07-16 14:04:54.158 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][852bcaeb-31a8-4c65-99fa-04b8d41ce32d] received connection request\n2025-07-16 14:04:54.158 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:04:54.181 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][852bcaeb-31a8-4c65-99fa-04b8d41ce32d] socks forwarding established\n2025-07-16 14:04:54.212 [info] [command][064a24f8-bf72-4404-8c17-6619095fc6e6] Process exited with code 0\n2025-07-16 14:04:54.212 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][852bcaeb-31a8-4c65-99fa-04b8d41ce32d] socks connection closed\n2025-07-16 14:04:54.212 [info] [command][064a24f8-bf72-4404-8c17-6619095fc6e6] Socket close event received\n2025-07-16 14:04:54.229 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62209 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:05:54.217 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:05:54.218 [info] [command][799f6acd-2105-4c7b-a2e6-836cd9650174] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""799f6acd-2105-4c7b-a2e6-836cd9650174""}\n2025-07-16 14:05:54.219 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][39da6f0e-5153-4db0-904b-5f078092a90c] received connection request\n2025-07-16 14:05:54.219 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 14:05:54.219 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:05:54.238 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][39da6f0e-5153-4db0-904b-5f078092a90c] socks forwarding established\n2025-07-16 14:05:54.269 [info] [command][799f6acd-2105-4c7b-a2e6-836cd9650174] Process exited with code 0\n2025-07-16 14:05:54.270 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][39da6f0e-5153-4db0-904b-5f078092a90c] socks connection closed\n2025-07-16 14:05:54.270 [info] [command][799f6acd-2105-4c7b-a2e6-836cd9650174] Socket close event received\n2025-07-16 14:05:54.288 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62232 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:06:54.275 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:06:54.278 [info] [command][ac650522-86de-4d34-9bde-462a1bfeea44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ac650522-86de-4d34-9bde-462a1bfeea44""}\n2025-07-16 14:06:54.279 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][df4c54dc-0a66-47c3-9535-c60b20a31e04] received connection request\n2025-07-16 14:06:54.280 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:06:54.375 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][df4c54dc-0a66-47c3-9535-c60b20a31e04] socks forwarding established\n2025-07-16 14:06:54.403 [info] [command][ac650522-86de-4d34-9bde-462a1bfeea44] Process exited with code 0\n2025-07-16 14:06:54.404 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][df4c54dc-0a66-47c3-9535-c60b20a31e04] socks connection closed\n2025-07-16 14:06:54.404 [info] [command][ac650522-86de-4d34-9bde-462a1bfeea44] Socket close event received\n2025-07-16 14:06:54.552 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62266 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:07:54.408 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:07:54.410 [info] [command][96d3b8b1-be70-4748-a550-b5901f07ad51] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""96d3b8b1-be70-4748-a550-b5901f07ad51""}\n2025-07-16 14:07:54.410 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][33a03535-bf96-449a-9489-8f36053c775d] received connection request\n2025-07-16 14:07:54.411 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:07:54.485 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][33a03535-bf96-449a-9489-8f36053c775d] socks forwarding established\n2025-07-16 14:07:54.650 [info] [command][96d3b8b1-be70-4748-a550-b5901f07ad51] Process exited with code 0\n2025-07-16 14:07:54.651 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][33a03535-bf96-449a-9489-8f36053c775d] socks connection closed\n2025-07-16 14:07:54.651 [info] [command][96d3b8b1-be70-4748-a550-b5901f07ad51] Socket close event received\n2025-07-16 14:07:54.672 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62340 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:08:54.655 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:08:54.657 [info] [command][4beb4c00-f496-4c56-882b-390d494c765c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4beb4c00-f496-4c56-882b-390d494c765c""}\n2025-07-16 14:08:54.658 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][251e45cb-1ac2-4a3c-b2e1-eca9ea829981] received connection request\n2025-07-16 14:08:54.659 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:08:54.747 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][251e45cb-1ac2-4a3c-b2e1-eca9ea829981] socks forwarding established\n2025-07-16 14:08:54.854 [info] [command][4beb4c00-f496-4c56-882b-390d494c765c] Process exited with code 0\n2025-07-16 14:08:54.854 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][251e45cb-1ac2-4a3c-b2e1-eca9ea829981] socks connection closed\n2025-07-16 14:08:54.855 [info] [command][4beb4c00-f496-4c56-882b-390d494c765c] Socket close event received\n2025-07-16 14:08:54.871 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62375 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:09:54.856 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:09:54.858 [info] [command][2fdba0ae-44ff-4546-8197-fca831782434] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2fdba0ae-44ff-4546-8197-fca831782434""}\n2025-07-16 14:09:54.858 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b7c5d3dc-6dd5-4b10-b819-a3b5fe8b4699] received connection request\n2025-07-16 14:09:54.858 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:09:55.036 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b7c5d3dc-6dd5-4b10-b819-a3b5fe8b4699] socks forwarding established\n2025-07-16 14:09:55.064 [info] [command][2fdba0ae-44ff-4546-8197-fca831782434] Process exited with code 0\n2025-07-16 14:09:55.064 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b7c5d3dc-6dd5-4b10-b819-a3b5fe8b4699] socks connection closed\n2025-07-16 14:09:55.064 [info] [command][2fdba0ae-44ff-4546-8197-fca831782434] Socket close event received\n2025-07-16 14:09:55.215 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62442 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:10:55.067 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:10:55.069 [info] [command][772a22cf-f8ff-4eaa-abb8-14b25a33a72f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""772a22cf-f8ff-4eaa-abb8-14b25a33a72f""}\n2025-07-16 14:10:55.070 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2482c0d4-3e4b-4b39-b5fa-cca925c52278] received connection request\n2025-07-16 14:10:55.071 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:10:55.098 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2482c0d4-3e4b-4b39-b5fa-cca925c52278] socks forwarding established\n2025-07-16 14:10:55.130 [info] [command][772a22cf-f8ff-4eaa-abb8-14b25a33a72f] Process exited with code 0\n2025-07-16 14:10:55.130 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2482c0d4-3e4b-4b39-b5fa-cca925c52278] socks connection closed\n2025-07-16 14:10:55.131 [info] [command][772a22cf-f8ff-4eaa-abb8-14b25a33a72f] Socket close event received\n2025-07-16 14:10:55.258 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62468 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:11:55.131 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:11:55.132 [info] [command][63de1345-3253-406d-a977-0dad1a34212e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""63de1345-3253-406d-a977-0dad1a34212e""}\n2025-07-16 14:11:55.132 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f0d640b3-7faf-4c75-929a-864b76ac9f04] received connection request\n2025-07-16 14:11:55.132 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:11:55.160 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f0d640b3-7faf-4c75-929a-864b76ac9f04] socks forwarding established\n2025-07-16 14:11:55.326 [info] [command][63de1345-3253-406d-a977-0dad1a34212e] Process exited with code 0\n2025-07-16 14:11:55.326 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f0d640b3-7faf-4c75-929a-864b76ac9f04] socks connection closed\n2025-07-16 14:11:55.327 [info] [command][63de1345-3253-406d-a977-0dad1a34212e] Socket close event received\n2025-07-16 14:11:55.356 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62494 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:12:55.330 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:12:55.331 [info] [command][453e4c91-3f4a-4dfe-9a74-085efec34692] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""453e4c91-3f4a-4dfe-9a74-085efec34692""}\n2025-07-16 14:12:55.332 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d0a2f5f8-3f5b-44ec-93ee-bdadbd2b7c33] received connection request\n2025-07-16 14:12:55.332 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:12:55.391 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d0a2f5f8-3f5b-44ec-93ee-bdadbd2b7c33] socks forwarding established\n2025-07-16 14:12:55.419 [info] [command][453e4c91-3f4a-4dfe-9a74-085efec34692] Process exited with code 0\n2025-07-16 14:12:55.420 [info] [command][453e4c91-3f4a-4dfe-9a74-085efec34692] Socket close event received\n2025-07-16 14:12:55.420 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d0a2f5f8-3f5b-44ec-93ee-bdadbd2b7c33] socks connection closed\n2025-07-16 14:12:55.436 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62558 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:13:55.420 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:13:55.422 [info] [command][bba9a161-3def-4e81-9f7a-0c5cd2e602be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bba9a161-3def-4e81-9f7a-0c5cd2e602be""}\n2025-07-16 14:13:55.422 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][34329b85-8ae3-4a81-870a-3ed24456a9d4] received connection request\n2025-07-16 14:13:55.423 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:13:55.442 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][34329b85-8ae3-4a81-870a-3ed24456a9d4] socks forwarding established\n2025-07-16 14:13:55.584 [info] [command][bba9a161-3def-4e81-9f7a-0c5cd2e602be] Process exited with code 0\n2025-07-16 14:13:55.584 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][34329b85-8ae3-4a81-870a-3ed24456a9d4] socks connection closed\n2025-07-16 14:13:55.584 [info] [command][bba9a161-3def-4e81-9f7a-0c5cd2e602be] Socket close event received\n2025-07-16 14:13:55.606 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62588 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:14:55.588 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:14:55.592 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][dc8e2e90-6694-48c4-98db-6f97c6d57ff0] received connection request\n2025-07-16 14:14:55.592 [info] [command][ebff51e3-673c-4f81-a6d3-211ceb178926] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ebff51e3-673c-4f81-a6d3-211ceb178926""}\n2025-07-16 14:14:55.594 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:14:55.614 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dc8e2e90-6694-48c4-98db-6f97c6d57ff0] socks forwarding established\n2025-07-16 14:14:55.765 [info] [command][ebff51e3-673c-4f81-a6d3-211ceb178926] Process exited with code 0\n2025-07-16 14:14:55.765 [info] [command][ebff51e3-673c-4f81-a6d3-211ceb178926] Socket close event received\n2025-07-16 14:14:55.766 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dc8e2e90-6694-48c4-98db-6f97c6d57ff0] socks connection closed\n2025-07-16 14:14:55.958 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62635 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:15:55.767 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:15:55.768 [info] [command][e7b26aeb-4c4b-4d15-90de-aaf9ffa99be3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e7b26aeb-4c4b-4d15-90de-aaf9ffa99be3""}\n2025-07-16 14:15:55.768 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][792b9655-3ce6-4ea4-aacc-0f3bf89798e9] received connection request\n2025-07-16 14:15:55.769 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:15:55.785 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][792b9655-3ce6-4ea4-aacc-0f3bf89798e9] socks forwarding established\n2025-07-16 14:15:55.814 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][792b9655-3ce6-4ea4-aacc-0f3bf89798e9] socks connection closed\n2025-07-16 14:15:55.814 [info] [command][e7b26aeb-4c4b-4d15-90de-aaf9ffa99be3] Process exited with code 0\n2025-07-16 14:15:55.814 [info] [command][e7b26aeb-4c4b-4d15-90de-aaf9ffa99be3] Socket close event received\n2025-07-16 14:15:55.830 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62667 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:16:55.817 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:16:55.819 [info] [command][21e25b06-c791-41d0-8d63-8bac22fb1817] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""21e25b06-c791-41d0-8d63-8bac22fb1817""}\n2025-07-16 14:16:55.820 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][460c2747-dfe0-4fc5-9e9a-3eb683944fbb] received connection request\n2025-07-16 14:16:55.820 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:16:55.850 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][460c2747-dfe0-4fc5-9e9a-3eb683944fbb] socks forwarding established\n2025-07-16 14:16:55.941 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][460c2747-dfe0-4fc5-9e9a-3eb683944fbb] socks connection closed\n2025-07-16 14:16:55.941 [info] [command][21e25b06-c791-41d0-8d63-8bac22fb1817] Process exited with code 0\n2025-07-16 14:16:55.941 [info] [command][21e25b06-c791-41d0-8d63-8bac22fb1817] Socket close event received\n2025-07-16 14:16:55.958 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62727 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:17:55.944 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:17:55.946 [info] [command][9290fbf8-b5ed-45cc-9c57-ca4e636f6971] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9290fbf8-b5ed-45cc-9c57-ca4e636f6971""}\n2025-07-16 14:17:55.946 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2a296e04-9244-463e-981a-f73db0ee1b95] received connection request\n2025-07-16 14:17:55.946 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:17:55.967 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2a296e04-9244-463e-981a-f73db0ee1b95] socks forwarding established\n2025-07-16 14:17:56.019 [info] [command][9290fbf8-b5ed-45cc-9c57-ca4e636f6971] Process exited with code 0\n2025-07-16 14:17:56.019 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2a296e04-9244-463e-981a-f73db0ee1b95] socks connection closed\n2025-07-16 14:17:56.019 [info] [command][9290fbf8-b5ed-45cc-9c57-ca4e636f6971] Socket close event received\n2025-07-16 14:17:56.035 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62771 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:18:56.024 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:18:56.026 [info] [command][3e3d6608-2eed-48c3-8905-9bd5ca6acdf9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3e3d6608-2eed-48c3-8905-9bd5ca6acdf9""}\n2025-07-16 14:18:56.027 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1a22cd98-81ec-4a83-8819-1b37e963ab59] received connection request\n2025-07-16 14:18:56.027 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:18:56.044 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1a22cd98-81ec-4a83-8819-1b37e963ab59] socks forwarding established\n2025-07-16 14:18:56.072 [info] [command][3e3d6608-2eed-48c3-8905-9bd5ca6acdf9] Process exited with code 0\n2025-07-16 14:18:56.072 [info] [command][3e3d6608-2eed-48c3-8905-9bd5ca6acdf9] Socket close event received\n2025-07-16 14:18:56.074 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1a22cd98-81ec-4a83-8819-1b37e963ab59] socks connection closed\n2025-07-16 14:18:56.090 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62801 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:19:56.075 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:19:56.078 [info] [command][4afa9c1d-de6d-4f27-8d7c-8e23603076a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4afa9c1d-de6d-4f27-8d7c-8e23603076a3""}\n2025-07-16 14:19:56.078 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][72ccf75f-68aa-4564-8ccf-91dd737a92b6] received connection request\n2025-07-16 14:19:56.079 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:19:56.116 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][72ccf75f-68aa-4564-8ccf-91dd737a92b6] socks forwarding established\n2025-07-16 14:19:56.147 [info] [command][4afa9c1d-de6d-4f27-8d7c-8e23603076a3] Process exited with code 0\n2025-07-16 14:19:56.148 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][72ccf75f-68aa-4564-8ccf-91dd737a92b6] socks connection closed\n2025-07-16 14:19:56.148 [info] [command][4afa9c1d-de6d-4f27-8d7c-8e23603076a3] Socket close event received\n2025-07-16 14:19:56.163 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62840 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:20:56.151 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:20:56.153 [info] [command][aee54606-e70d-4c32-95fb-7fbf76bf85aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""aee54606-e70d-4c32-95fb-7fbf76bf85aa""}\n2025-07-16 14:20:56.153 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][311c0872-e01c-4fec-ac3e-804dea558c4b] received connection request\n2025-07-16 14:20:56.153 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:20:56.172 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][311c0872-e01c-4fec-ac3e-804dea558c4b] socks forwarding established\n2025-07-16 14:20:56.204 [info] [command][aee54606-e70d-4c32-95fb-7fbf76bf85aa] Process exited with code 0\n2025-07-16 14:20:56.204 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][311c0872-e01c-4fec-ac3e-804dea558c4b] socks connection closed\n2025-07-16 14:20:56.204 [info] [command][aee54606-e70d-4c32-95fb-7fbf76bf85aa] Socket close event received\n2025-07-16 14:20:56.220 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62868 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:21:56.206 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:21:56.209 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a4e05d0d-e199-4112-a87e-3f231db7362b] received connection request\n2025-07-16 14:21:56.209 [info] [command][45f6d1da-d387-46d2-8337-e05dc9bfa5d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""45f6d1da-d387-46d2-8337-e05dc9bfa5d4""}\n2025-07-16 14:21:56.210 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:21:56.227 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a4e05d0d-e199-4112-a87e-3f231db7362b] socks forwarding established\n2025-07-16 14:21:56.259 [info] [command][45f6d1da-d387-46d2-8337-e05dc9bfa5d4] Process exited with code 0\n2025-07-16 14:21:56.259 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a4e05d0d-e199-4112-a87e-3f231db7362b] socks connection closed\n2025-07-16 14:21:56.260 [info] [command][45f6d1da-d387-46d2-8337-e05dc9bfa5d4] Socket close event received\n2025-07-16 14:21:56.354 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62906 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:22:56.264 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:22:56.266 [info] [command][5bf9212b-2a26-4ccc-ba4d-45a05200cb96] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5bf9212b-2a26-4ccc-ba4d-45a05200cb96""}\n2025-07-16 14:22:56.266 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][fc5e0cfd-5413-4f70-9b16-8bc8661d1bb5] received connection request\n2025-07-16 14:22:56.267 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:22:56.384 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fc5e0cfd-5413-4f70-9b16-8bc8661d1bb5] socks forwarding established\n2025-07-16 14:22:56.556 [info] [command][5bf9212b-2a26-4ccc-ba4d-45a05200cb96] Process exited with code 0\n2025-07-16 14:22:56.556 [info] [command][5bf9212b-2a26-4ccc-ba4d-45a05200cb96] Socket close event received\n2025-07-16 14:22:56.557 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fc5e0cfd-5413-4f70-9b16-8bc8661d1bb5] socks connection closed\n2025-07-16 14:22:56.573 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62955 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:23:56.561 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:23:56.564 [info] [command][a7fb99b3-df65-44ed-888c-c5f6f36eb8c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a7fb99b3-df65-44ed-888c-c5f6f36eb8c6""}\n2025-07-16 14:23:56.565 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][04031646-2b05-4219-8ffb-b0fde4c6cc4b] received connection request\n2025-07-16 14:23:56.566 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:23:56.626 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][04031646-2b05-4219-8ffb-b0fde4c6cc4b] socks forwarding established\n2025-07-16 14:23:56.659 [info] [command][a7fb99b3-df65-44ed-888c-c5f6f36eb8c6] Process exited with code 0\n2025-07-16 14:23:56.659 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][04031646-2b05-4219-8ffb-b0fde4c6cc4b] socks connection closed\n2025-07-16 14:23:56.659 [info] [command][a7fb99b3-df65-44ed-888c-c5f6f36eb8c6] Socket close event received\n2025-07-16 14:23:56.782 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 62990 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:24:56.664 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:24:56.665 [info] [command][0fc49c36-dd37-454f-a8c0-9a23be2a94f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0fc49c36-dd37-454f-a8c0-9a23be2a94f8""}\n2025-07-16 14:24:56.666 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][18f2f216-3498-4494-bc43-6e9c074cadc7] received connection request\n2025-07-16 14:24:56.666 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:24:56.688 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][18f2f216-3498-4494-bc43-6e9c074cadc7] socks forwarding established\n2025-07-16 14:24:56.718 [info] [command][0fc49c36-dd37-454f-a8c0-9a23be2a94f8] Process exited with code 0\n2025-07-16 14:24:56.719 [info] [command][0fc49c36-dd37-454f-a8c0-9a23be2a94f8] Socket close event received\n2025-07-16 14:24:56.852 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][18f2f216-3498-4494-bc43-6e9c074cadc7] socks connection closed\n2025-07-16 14:24:56.869 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63044 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:25:56.724 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:25:56.726 [info] [command][e26237a9-0d8c-4630-8491-d0a3872ee28f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e26237a9-0d8c-4630-8491-d0a3872ee28f""}\n2025-07-16 14:25:56.727 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][99cdfb17-f43b-4c01-b0da-aca34152eb66] received connection request\n2025-07-16 14:25:56.727 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:25:56.744 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][99cdfb17-f43b-4c01-b0da-aca34152eb66] socks forwarding established\n2025-07-16 14:25:56.772 [info] [command][e26237a9-0d8c-4630-8491-d0a3872ee28f] Process exited with code 0\n2025-07-16 14:25:56.773 [info] [command][e26237a9-0d8c-4630-8491-d0a3872ee28f] Socket close event received\n2025-07-16 14:25:56.773 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][99cdfb17-f43b-4c01-b0da-aca34152eb66] socks connection closed\n2025-07-16 14:25:56.791 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63074 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:26:56.774 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:26:56.777 [info] [command][c6a423a4-c486-47c9-a86d-193d715fe75d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c6a423a4-c486-47c9-a86d-193d715fe75d""}\n2025-07-16 14:26:56.778 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][edd5491f-ddb6-4098-ac2b-aa11dbce84f9] received connection request\n2025-07-16 14:26:56.778 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:26:56.815 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][edd5491f-ddb6-4098-ac2b-aa11dbce84f9] socks forwarding established\n2025-07-16 14:26:56.898 [info] [command][c6a423a4-c486-47c9-a86d-193d715fe75d] Process exited with code 0\n2025-07-16 14:26:56.899 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][edd5491f-ddb6-4098-ac2b-aa11dbce84f9] socks connection closed\n2025-07-16 14:26:56.899 [info] [command][c6a423a4-c486-47c9-a86d-193d715fe75d] Socket close event received\n2025-07-16 14:26:56.917 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63122 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:27:56.903 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:27:56.905 [info] [command][0d0628a6-cdc2-41cf-93e7-33ddaf32a61c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0d0628a6-cdc2-41cf-93e7-33ddaf32a61c""}\n2025-07-16 14:27:56.905 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][19149bf3-7790-4a35-aac2-20116535a772] received connection request\n2025-07-16 14:27:56.905 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:27:56.923 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][19149bf3-7790-4a35-aac2-20116535a772] socks forwarding established\n2025-07-16 14:27:56.952 [info] [command][0d0628a6-cdc2-41cf-93e7-33ddaf32a61c] Process exited with code 0\n2025-07-16 14:27:56.952 [info] [command][0d0628a6-cdc2-41cf-93e7-33ddaf32a61c] Socket close event received\n2025-07-16 14:27:56.953 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][19149bf3-7790-4a35-aac2-20116535a772] socks connection closed\n2025-07-16 14:27:56.970 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63166 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:28:56.957 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:28:56.958 [info] [command][02ebd1c4-0424-4b09-9841-961a1ca27880] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""02ebd1c4-0424-4b09-9841-961a1ca27880""}\n2025-07-16 14:28:56.959 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][124399ea-1550-4dd1-90f4-28affeb35ae7] received connection request\n2025-07-16 14:28:56.959 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:28:56.978 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][124399ea-1550-4dd1-90f4-28affeb35ae7] socks forwarding established\n2025-07-16 14:28:57.009 [info] [command][02ebd1c4-0424-4b09-9841-961a1ca27880] Process exited with code 0\n2025-07-16 14:28:57.009 [info] [command][02ebd1c4-0424-4b09-9841-961a1ca27880] Socket close event received\n2025-07-16 14:28:57.009 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][124399ea-1550-4dd1-90f4-28affeb35ae7] socks connection closed\n2025-07-16 14:28:57.026 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63194 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:29:57.014 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:29:57.016 [info] [command][41625fe9-4aaa-4c38-9456-a89668845286] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""41625fe9-4aaa-4c38-9456-a89668845286""}\n2025-07-16 14:29:57.017 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][23f7e9c9-768f-4a6b-83c7-0f2328cb2dff] received connection request\n2025-07-16 14:29:57.018 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:29:57.034 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][23f7e9c9-768f-4a6b-83c7-0f2328cb2dff] socks forwarding established\n2025-07-16 14:29:57.064 [info] [command][41625fe9-4aaa-4c38-9456-a89668845286] Process exited with code 0\n2025-07-16 14:29:57.065 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][23f7e9c9-768f-4a6b-83c7-0f2328cb2dff] socks connection closed\n2025-07-16 14:29:57.065 [info] [command][41625fe9-4aaa-4c38-9456-a89668845286] Socket close event received\n2025-07-16 14:29:57.081 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63241 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:30:57.069 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:30:57.071 [info] [command][fb716f8b-6b04-4985-bf38-d6b9be52c3fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fb716f8b-6b04-4985-bf38-d6b9be52c3fd""}\n2025-07-16 14:30:57.072 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][bf2c2682-a0df-4d08-9c8e-4266b9955328] received connection request\n2025-07-16 14:30:57.073 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:30:57.091 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bf2c2682-a0df-4d08-9c8e-4266b9955328] socks forwarding established\n2025-07-16 14:30:57.124 [info] [command][fb716f8b-6b04-4985-bf38-d6b9be52c3fd] Process exited with code 0\n2025-07-16 14:30:57.124 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bf2c2682-a0df-4d08-9c8e-4266b9955328] socks connection closed\n2025-07-16 14:30:57.124 [info] [command][fb716f8b-6b04-4985-bf38-d6b9be52c3fd] Socket close event received\n2025-07-16 14:30:57.141 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63288 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:31:57.129 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:31:57.132 [info] [command][fb896993-61bf-4449-b127-260901091522] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fb896993-61bf-4449-b127-260901091522""}\n2025-07-16 14:31:57.132 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3e2c0ba5-bdf3-4169-939e-fc4a3710723d] received connection request\n2025-07-16 14:31:57.132 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:31:57.151 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3e2c0ba5-bdf3-4169-939e-fc4a3710723d] socks forwarding established\n2025-07-16 14:31:57.181 [info] [command][fb896993-61bf-4449-b127-260901091522] Process exited with code 0\n2025-07-16 14:31:57.181 [info] [command][fb896993-61bf-4449-b127-260901091522] Socket close event received\n2025-07-16 14:31:57.182 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3e2c0ba5-bdf3-4169-939e-fc4a3710723d] socks connection closed\n2025-07-16 14:31:57.198 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63333 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:32:57.187 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:32:57.188 [info] [command][89b0d250-cc90-4636-a1ee-9df91a3816fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""89b0d250-cc90-4636-a1ee-9df91a3816fd""}\n2025-07-16 14:32:57.189 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d2d2b441-d9e3-452a-9013-0a64cc10269b] received connection request\n2025-07-16 14:32:57.189 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:32:57.205 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d2d2b441-d9e3-452a-9013-0a64cc10269b] socks forwarding established\n2025-07-16 14:32:57.235 [info] [command][89b0d250-cc90-4636-a1ee-9df91a3816fd] Process exited with code 0\n2025-07-16 14:32:57.236 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d2d2b441-d9e3-452a-9013-0a64cc10269b] socks connection closed\n2025-07-16 14:32:57.236 [info] [command][89b0d250-cc90-4636-a1ee-9df91a3816fd] Socket close event received\n2025-07-16 14:32:57.252 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63382 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:33:57.237 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:33:57.238 [info] [command][c0a78e8a-fec7-40a9-a95d-9a6d842df3d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c0a78e8a-fec7-40a9-a95d-9a6d842df3d4""}\n2025-07-16 14:33:57.238 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][faf11e8f-3a3c-4288-9f33-e7f22c9e4db0] received connection request\n2025-07-16 14:33:57.238 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 14:33:57.239 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:33:57.255 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][faf11e8f-3a3c-4288-9f33-e7f22c9e4db0] socks forwarding established\n2025-07-16 14:33:57.285 [info] [command][c0a78e8a-fec7-40a9-a95d-9a6d842df3d4] Process exited with code 0\n2025-07-16 14:33:57.285 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][faf11e8f-3a3c-4288-9f33-e7f22c9e4db0] socks connection closed\n2025-07-16 14:33:57.285 [info] [command][c0a78e8a-fec7-40a9-a95d-9a6d842df3d4] Socket close event received\n2025-07-16 14:33:57.301 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63405 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:34:57.289 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:34:57.290 [info] [command][8d9cb4c4-5ba3-42fb-88af-8b7b89401c0f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8d9cb4c4-5ba3-42fb-88af-8b7b89401c0f""}\n2025-07-16 14:34:57.291 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][457192b1-a469-4313-aa46-52f11a94ac5e] received connection request\n2025-07-16 14:34:57.292 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:34:57.309 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][457192b1-a469-4313-aa46-52f11a94ac5e] socks forwarding established\n2025-07-16 14:34:57.338 [info] [command][8d9cb4c4-5ba3-42fb-88af-8b7b89401c0f] Process exited with code 0\n2025-07-16 14:34:57.338 [info] [command][8d9cb4c4-5ba3-42fb-88af-8b7b89401c0f] Socket close event received\n2025-07-16 14:34:57.339 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][457192b1-a469-4313-aa46-52f11a94ac5e] socks connection closed\n2025-07-16 14:34:57.355 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63447 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:35:57.344 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:35:57.346 [info] [command][c0ced80a-91c5-4cb8-b73e-59853e0dcc12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c0ced80a-91c5-4cb8-b73e-59853e0dcc12""}\n2025-07-16 14:35:57.347 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a9aa8fff-b315-4ac3-a113-7b89c31f550c] received connection request\n2025-07-16 14:35:57.348 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:35:57.367 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a9aa8fff-b315-4ac3-a113-7b89c31f550c] socks forwarding established\n2025-07-16 14:35:57.399 [info] [command][c0ced80a-91c5-4cb8-b73e-59853e0dcc12] Process exited with code 0\n2025-07-16 14:35:57.399 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a9aa8fff-b315-4ac3-a113-7b89c31f550c] socks connection closed\n2025-07-16 14:35:57.399 [info] [command][c0ced80a-91c5-4cb8-b73e-59853e0dcc12] Socket close event received\n2025-07-16 14:35:57.416 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63503 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:36:57.404 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:36:57.406 [info] [command][bc2710d2-779c-4dd4-ab78-ba2589b9867f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bc2710d2-779c-4dd4-ab78-ba2589b9867f""}\n2025-07-16 14:36:57.408 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][89fd0295-e973-4854-a39b-0ee538de124d] received connection request\n2025-07-16 14:36:57.408 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:36:57.478 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][89fd0295-e973-4854-a39b-0ee538de124d] socks forwarding established\n2025-07-16 14:36:57.511 [info] [command][bc2710d2-779c-4dd4-ab78-ba2589b9867f] Process exited with code 0\n2025-07-16 14:36:57.511 [info] [command][bc2710d2-779c-4dd4-ab78-ba2589b9867f] Socket close event received\n2025-07-16 14:36:57.516 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][89fd0295-e973-4854-a39b-0ee538de124d] socks connection closed\n2025-07-16 14:36:57.575 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63569 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:37:57.516 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:37:57.518 [info] [command][963e0649-2338-4a92-8baf-f593e68862e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""963e0649-2338-4a92-8baf-f593e68862e7""}\n2025-07-16 14:37:57.519 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][fe6ba348-9ccf-4d75-a306-c48bd419cb6a] received connection request\n2025-07-16 14:37:57.520 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:37:57.538 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fe6ba348-9ccf-4d75-a306-c48bd419cb6a] socks forwarding established\n2025-07-16 14:37:57.567 [info] [command][963e0649-2338-4a92-8baf-f593e68862e7] Process exited with code 0\n2025-07-16 14:37:57.568 [info] [command][963e0649-2338-4a92-8baf-f593e68862e7] Socket close event received\n2025-07-16 14:37:57.568 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fe6ba348-9ccf-4d75-a306-c48bd419cb6a] socks connection closed\n2025-07-16 14:37:57.586 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63609 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:38:57.571 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:38:57.573 [info] [command][ec8a5fff-3813-4dcd-993e-782799844eae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ec8a5fff-3813-4dcd-993e-782799844eae""}\n2025-07-16 14:38:57.574 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][43fe9d8d-7a1f-49e8-90f2-24cf6afd89bd] received connection request\n2025-07-16 14:38:57.575 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:38:57.592 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43fe9d8d-7a1f-49e8-90f2-24cf6afd89bd] socks forwarding established\n2025-07-16 14:38:57.624 [info] [command][ec8a5fff-3813-4dcd-993e-782799844eae] Process exited with code 0\n2025-07-16 14:38:57.624 [info] [command][ec8a5fff-3813-4dcd-993e-782799844eae] Socket close event received\n2025-07-16 14:38:57.624 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43fe9d8d-7a1f-49e8-90f2-24cf6afd89bd] socks connection closed\n2025-07-16 14:38:57.640 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63628 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:39:57.627 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:39:57.629 [info] [command][c65e6422-defb-4974-a993-0faa45d9dfd3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c65e6422-defb-4974-a993-0faa45d9dfd3""}\n2025-07-16 14:39:57.630 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2b947ecc-ab09-4900-a9d3-2f112cc0ba91] received connection request\n2025-07-16 14:39:57.631 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:39:57.647 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2b947ecc-ab09-4900-a9d3-2f112cc0ba91] socks forwarding established\n2025-07-16 14:39:57.678 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2b947ecc-ab09-4900-a9d3-2f112cc0ba91] socks connection closed\n2025-07-16 14:39:57.679 [info] [command][c65e6422-defb-4974-a993-0faa45d9dfd3] Process exited with code 0\n2025-07-16 14:39:57.679 [info] [command][c65e6422-defb-4974-a993-0faa45d9dfd3] Socket close event received\n2025-07-16 14:39:57.698 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63670 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:40:57.680 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:40:57.681 [info] [command][d47ef32a-efad-44a2-b760-c53b2f3ed2fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d47ef32a-efad-44a2-b760-c53b2f3ed2fe""}\n2025-07-16 14:40:57.681 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7b9f3649-184f-48ca-ab9a-b7d5aae3a59f] received connection request\n2025-07-16 14:40:57.681 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:40:57.697 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7b9f3649-184f-48ca-ab9a-b7d5aae3a59f] socks forwarding established\n2025-07-16 14:40:57.727 [info] [command][d47ef32a-efad-44a2-b760-c53b2f3ed2fe] Process exited with code 0\n2025-07-16 14:40:57.727 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7b9f3649-184f-48ca-ab9a-b7d5aae3a59f] socks connection closed\n2025-07-16 14:40:57.727 [info] [command][d47ef32a-efad-44a2-b760-c53b2f3ed2fe] Socket close event received\n2025-07-16 14:40:57.744 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63701 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:41:57.731 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:41:57.734 [info] [command][666b3e71-0b33-4fe4-ab91-775cc28bbd90] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""666b3e71-0b33-4fe4-ab91-775cc28bbd90""}\n2025-07-16 14:41:57.734 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][961d6e03-e4aa-412d-9742-cbaf9d12fa63] received connection request\n2025-07-16 14:41:57.735 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:41:57.752 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][961d6e03-e4aa-412d-9742-cbaf9d12fa63] socks forwarding established\n2025-07-16 14:41:57.783 [info] [command][666b3e71-0b33-4fe4-ab91-775cc28bbd90] Process exited with code 0\n2025-07-16 14:41:57.783 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][961d6e03-e4aa-412d-9742-cbaf9d12fa63] socks connection closed\n2025-07-16 14:41:57.784 [info] [command][666b3e71-0b33-4fe4-ab91-775cc28bbd90] Socket close event received\n2025-07-16 14:41:57.799 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63742 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:42:57.789 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:42:57.792 [info] [command][c232d376-a1f0-4579-a560-f5675b8ec42a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c232d376-a1f0-4579-a560-f5675b8ec42a""}\n2025-07-16 14:42:57.793 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][19f95fb5-2d94-47c1-8d46-98be3a91b349] received connection request\n2025-07-16 14:42:57.793 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:42:57.810 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][19f95fb5-2d94-47c1-8d46-98be3a91b349] socks forwarding established\n2025-07-16 14:42:57.839 [info] [command][c232d376-a1f0-4579-a560-f5675b8ec42a] Process exited with code 0\n2025-07-16 14:42:57.839 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][19f95fb5-2d94-47c1-8d46-98be3a91b349] socks connection closed\n2025-07-16 14:42:57.840 [info] [command][c232d376-a1f0-4579-a560-f5675b8ec42a] Socket close event received\n2025-07-16 14:42:57.856 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63782 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:43:57.841 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:43:57.842 [info] [command][42f6d405-c717-41c8-867c-b4c164d8fa54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""42f6d405-c717-41c8-867c-b4c164d8fa54""}\n2025-07-16 14:43:57.842 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][43519bd6-f8a0-49b5-b76f-07585b3fc934] received connection request\n2025-07-16 14:43:57.843 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:43:57.860 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43519bd6-f8a0-49b5-b76f-07585b3fc934] socks forwarding established\n2025-07-16 14:43:57.889 [info] [command][42f6d405-c717-41c8-867c-b4c164d8fa54] Process exited with code 0\n2025-07-16 14:43:57.890 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43519bd6-f8a0-49b5-b76f-07585b3fc934] socks connection closed\n2025-07-16 14:43:57.890 [info] [command][42f6d405-c717-41c8-867c-b4c164d8fa54] Socket close event received\n2025-07-16 14:43:57.907 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63805 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:44:57.892 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:44:57.894 [info] [command][bf6dd6a1-2a37-41b6-b763-317035741c12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bf6dd6a1-2a37-41b6-b763-317035741c12""}\n2025-07-16 14:44:57.894 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][49002c90-b2d4-4c54-9459-442d6e92de59] received connection request\n2025-07-16 14:44:57.894 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:44:57.911 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][49002c90-b2d4-4c54-9459-442d6e92de59] socks forwarding established\n2025-07-16 14:44:57.939 [info] [command][bf6dd6a1-2a37-41b6-b763-317035741c12] Process exited with code 0\n2025-07-16 14:44:57.940 [info] [command][bf6dd6a1-2a37-41b6-b763-317035741c12] Socket close event received\n2025-07-16 14:44:57.940 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][49002c90-b2d4-4c54-9459-442d6e92de59] socks connection closed\n2025-07-16 14:44:57.956 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63868 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:45:57.940 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:45:57.941 [info] [command][4420e3ec-204d-43e9-a7dd-aea8fb33a3e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4420e3ec-204d-43e9-a7dd-aea8fb33a3e4""}\n2025-07-16 14:45:57.942 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c806c4cd-d33b-49ed-8606-0b291963b3b2] received connection request\n2025-07-16 14:45:57.942 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:45:57.963 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c806c4cd-d33b-49ed-8606-0b291963b3b2] socks forwarding established\n2025-07-16 14:45:58.006 [info] [command][4420e3ec-204d-43e9-a7dd-aea8fb33a3e4] Process exited with code 0\n2025-07-16 14:45:58.007 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c806c4cd-d33b-49ed-8606-0b291963b3b2] socks connection closed\n2025-07-16 14:45:58.007 [info] [command][4420e3ec-204d-43e9-a7dd-aea8fb33a3e4] Socket close event received\n2025-07-16 14:45:58.023 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63924 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:46:58.011 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:46:58.013 [info] [command][2c422af7-295c-4887-bfb1-9d405ca833b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2c422af7-295c-4887-bfb1-9d405ca833b6""}\n2025-07-16 14:46:58.013 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7d99650d-09ba-4b3c-b28a-6c38bd166811] received connection request\n2025-07-16 14:46:58.014 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:46:58.030 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7d99650d-09ba-4b3c-b28a-6c38bd166811] socks forwarding established\n2025-07-16 14:46:58.058 [info] [command][2c422af7-295c-4887-bfb1-9d405ca833b6] Process exited with code 0\n2025-07-16 14:46:58.059 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7d99650d-09ba-4b3c-b28a-6c38bd166811] socks connection closed\n2025-07-16 14:46:58.059 [info] [command][2c422af7-295c-4887-bfb1-9d405ca833b6] Socket close event received\n2025-07-16 14:46:58.075 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 63971 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:47:58.059 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:47:58.061 [info] [command][555f6a09-8369-4a9c-aa38-ea62027abba3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""555f6a09-8369-4a9c-aa38-ea62027abba3""}\n2025-07-16 14:47:58.061 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][71bbef2a-e292-406d-93d9-a9abeaf778e7] received connection request\n2025-07-16 14:47:58.061 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:47:58.077 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][71bbef2a-e292-406d-93d9-a9abeaf778e7] socks forwarding established\n2025-07-16 14:47:58.106 [info] [command][555f6a09-8369-4a9c-aa38-ea62027abba3] Process exited with code 0\n2025-07-16 14:47:58.106 [info] [command][555f6a09-8369-4a9c-aa38-ea62027abba3] Socket close event received\n2025-07-16 14:47:58.119 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][71bbef2a-e292-406d-93d9-a9abeaf778e7] socks connection closed\n2025-07-16 14:47:58.122 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64048 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:48:58.110 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:48:58.113 [info] [command][a7b2699f-2960-406b-9abb-0cb09afe11c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a7b2699f-2960-406b-9abb-0cb09afe11c9""}\n2025-07-16 14:48:58.114 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c8e8329d-3e25-4270-ba2f-873df8022e8f] received connection request\n2025-07-16 14:48:58.114 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:48:58.132 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c8e8329d-3e25-4270-ba2f-873df8022e8f] socks forwarding established\n2025-07-16 14:48:58.162 [info] [command][a7b2699f-2960-406b-9abb-0cb09afe11c9] Process exited with code 0\n2025-07-16 14:48:58.162 [info] [command][a7b2699f-2960-406b-9abb-0cb09afe11c9] Socket close event received\n2025-07-16 14:48:58.163 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c8e8329d-3e25-4270-ba2f-873df8022e8f] socks connection closed\n2025-07-16 14:48:58.181 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64072 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:49:58.164 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:49:58.167 [info] [command][c6a87de3-e08c-44fe-9c7e-ee52c7dca019] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c6a87de3-e08c-44fe-9c7e-ee52c7dca019""}\n2025-07-16 14:49:58.167 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][79e16a98-3293-4635-ac72-cbb8443fa404] received connection request\n2025-07-16 14:49:58.168 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:49:58.184 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][79e16a98-3293-4635-ac72-cbb8443fa404] socks forwarding established\n2025-07-16 14:49:58.215 [info] [command][c6a87de3-e08c-44fe-9c7e-ee52c7dca019] Process exited with code 0\n2025-07-16 14:49:58.216 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][79e16a98-3293-4635-ac72-cbb8443fa404] socks connection closed\n2025-07-16 14:49:58.216 [info] [command][c6a87de3-e08c-44fe-9c7e-ee52c7dca019] Socket close event received\n2025-07-16 14:49:58.231 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64121 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:50:58.216 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:50:58.219 [info] [command][bdb677ab-1a54-45b4-9f94-b2e1c26085e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bdb677ab-1a54-45b4-9f94-b2e1c26085e0""}\n2025-07-16 14:50:58.219 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][acff4092-05bb-456e-950c-103ac8cb6a08] received connection request\n2025-07-16 14:50:58.219 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:50:58.235 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][acff4092-05bb-456e-950c-103ac8cb6a08] socks forwarding established\n2025-07-16 14:50:58.263 [info] [command][bdb677ab-1a54-45b4-9f94-b2e1c26085e0] Process exited with code 0\n2025-07-16 14:50:58.263 [info] [command][bdb677ab-1a54-45b4-9f94-b2e1c26085e0] Socket close event received\n2025-07-16 14:50:58.264 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][acff4092-05bb-456e-950c-103ac8cb6a08] socks connection closed\n2025-07-16 14:50:58.281 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64169 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:51:58.269 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:51:58.271 [info] [command][7f4a7814-a283-4b8e-b44b-f9200c6be296] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7f4a7814-a283-4b8e-b44b-f9200c6be296""}\n2025-07-16 14:51:58.271 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][ab4534a8-ae74-4739-9031-a49b0aeb6fd7] received connection request\n2025-07-16 14:51:58.271 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:51:58.289 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ab4534a8-ae74-4739-9031-a49b0aeb6fd7] socks forwarding established\n2025-07-16 14:51:58.321 [info] [command][7f4a7814-a283-4b8e-b44b-f9200c6be296] Process exited with code 0\n2025-07-16 14:51:58.321 [info] [command][7f4a7814-a283-4b8e-b44b-f9200c6be296] Socket close event received\n2025-07-16 14:51:58.322 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ab4534a8-ae74-4739-9031-a49b0aeb6fd7] socks connection closed\n2025-07-16 14:51:58.338 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64211 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:52:58.325 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:52:58.327 [info] [command][a87cddf9-3dd7-4b9e-b1c3-045e1f9e9069] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a87cddf9-3dd7-4b9e-b1c3-045e1f9e9069""}\n2025-07-16 14:52:58.327 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3fc82ac7-eea7-4bce-a89c-226873658ca7] received connection request\n2025-07-16 14:52:58.327 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:52:58.344 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3fc82ac7-eea7-4bce-a89c-226873658ca7] socks forwarding established\n2025-07-16 14:52:58.373 [info] [command][a87cddf9-3dd7-4b9e-b1c3-045e1f9e9069] Process exited with code 0\n2025-07-16 14:52:58.374 [info] [command][a87cddf9-3dd7-4b9e-b1c3-045e1f9e9069] Socket close event received\n2025-07-16 14:52:58.374 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3fc82ac7-eea7-4bce-a89c-226873658ca7] socks connection closed\n2025-07-16 14:52:58.391 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64269 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:53:58.375 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:53:58.376 [info] [command][600669f7-bb8c-4060-96b1-57f17daf46d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""600669f7-bb8c-4060-96b1-57f17daf46d5""}\n2025-07-16 14:53:58.377 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1f4f7348-13c0-4bf8-a209-48a0414187df] received connection request\n2025-07-16 14:53:58.378 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 14:53:58.378 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:53:58.395 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1f4f7348-13c0-4bf8-a209-48a0414187df] socks forwarding established\n2025-07-16 14:53:58.426 [info] [command][600669f7-bb8c-4060-96b1-57f17daf46d5] Process exited with code 0\n2025-07-16 14:53:58.426 [info] [command][600669f7-bb8c-4060-96b1-57f17daf46d5] Socket close event received\n2025-07-16 14:53:58.428 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1f4f7348-13c0-4bf8-a209-48a0414187df] socks connection closed\n2025-07-16 14:53:58.446 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64294 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:54:58.431 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:54:58.433 [info] [command][645ed25e-cb68-41ed-bb85-eb41664400e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""645ed25e-cb68-41ed-bb85-eb41664400e0""}\n2025-07-16 14:54:58.433 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4152b105-14c3-4572-be25-2ed10286d337] received connection request\n2025-07-16 14:54:58.434 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:54:58.451 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4152b105-14c3-4572-be25-2ed10286d337] socks forwarding established\n2025-07-16 14:54:58.479 [info] [command][645ed25e-cb68-41ed-bb85-eb41664400e0] Process exited with code 0\n2025-07-16 14:54:58.480 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4152b105-14c3-4572-be25-2ed10286d337] socks connection closed\n2025-07-16 14:54:58.480 [info] [command][645ed25e-cb68-41ed-bb85-eb41664400e0] Socket close event received\n2025-07-16 14:54:58.497 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64349 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:55:58.484 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:55:58.485 [info] [command][a8bc4864-ca14-4728-a243-f80c0b9322c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a8bc4864-ca14-4728-a243-f80c0b9322c2""}\n2025-07-16 14:55:58.486 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e5e9edab-9ff7-4a5a-b296-9a735e89ed6e] received connection request\n2025-07-16 14:55:58.486 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:55:58.503 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e5e9edab-9ff7-4a5a-b296-9a735e89ed6e] socks forwarding established\n2025-07-16 14:55:58.534 [info] [command][a8bc4864-ca14-4728-a243-f80c0b9322c2] Process exited with code 0\n2025-07-16 14:55:58.534 [info] [command][a8bc4864-ca14-4728-a243-f80c0b9322c2] Socket close event received\n2025-07-16 14:55:58.534 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e5e9edab-9ff7-4a5a-b296-9a735e89ed6e] socks connection closed\n2025-07-16 14:55:58.550 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64378 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:56:58.538 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:56:58.539 [info] [command][3b255276-86f1-4a6b-8987-bd664f75e182] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3b255276-86f1-4a6b-8987-bd664f75e182""}\n2025-07-16 14:56:58.540 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1ced2ef7-b232-472d-b991-9ac43158f06c] received connection request\n2025-07-16 14:56:58.541 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:56:58.557 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1ced2ef7-b232-472d-b991-9ac43158f06c] socks forwarding established\n2025-07-16 14:56:58.586 [info] [command][3b255276-86f1-4a6b-8987-bd664f75e182] Process exited with code 0\n2025-07-16 14:56:58.587 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1ced2ef7-b232-472d-b991-9ac43158f06c] socks connection closed\n2025-07-16 14:56:58.587 [info] [command][3b255276-86f1-4a6b-8987-bd664f75e182] Socket close event received\n2025-07-16 14:56:58.603 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64419 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:57:58.592 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:57:58.594 [info] [command][69180dbd-9901-456d-98d5-07bfb8f6d7e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""69180dbd-9901-456d-98d5-07bfb8f6d7e2""}\n2025-07-16 14:57:58.595 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e1e9e9d9-5eb8-41a1-af4e-a5a9361fe0e2] received connection request\n2025-07-16 14:57:58.595 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:57:58.612 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e1e9e9d9-5eb8-41a1-af4e-a5a9361fe0e2] socks forwarding established\n2025-07-16 14:57:58.641 [info] [command][69180dbd-9901-456d-98d5-07bfb8f6d7e2] Process exited with code 0\n2025-07-16 14:57:58.641 [info] [command][69180dbd-9901-456d-98d5-07bfb8f6d7e2] Socket close event received\n2025-07-16 14:57:58.642 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e1e9e9d9-5eb8-41a1-af4e-a5a9361fe0e2] socks connection closed\n2025-07-16 14:57:58.657 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64472 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:58:58.642 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:58:58.643 [info] [command][1e5a15aa-6237-4be9-b4cc-516466d7d77e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1e5a15aa-6237-4be9-b4cc-516466d7d77e""}\n2025-07-16 14:58:58.644 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a561b993-e8ed-4fad-b94c-9892e5bd5bcd] received connection request\n2025-07-16 14:58:58.644 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:58:58.661 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a561b993-e8ed-4fad-b94c-9892e5bd5bcd] socks forwarding established\n2025-07-16 14:58:58.690 [info] [command][1e5a15aa-6237-4be9-b4cc-516466d7d77e] Process exited with code 0\n2025-07-16 14:58:58.690 [info] [command][1e5a15aa-6237-4be9-b4cc-516466d7d77e] Socket close event received\n2025-07-16 14:58:58.691 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a561b993-e8ed-4fad-b94c-9892e5bd5bcd] socks connection closed\n2025-07-16 14:58:58.706 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64496 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 14:59:58.695 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 14:59:58.697 [info] [command][e1987081-78d3-4474-a02f-fc2552ecc56e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e1987081-78d3-4474-a02f-fc2552ecc56e""}\n2025-07-16 14:59:58.698 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3ab96906-7052-40e8-8bd5-bbb5d95f7178] received connection request\n2025-07-16 14:59:58.698 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 14:59:58.714 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3ab96906-7052-40e8-8bd5-bbb5d95f7178] socks forwarding established\n2025-07-16 14:59:58.743 [info] [command][e1987081-78d3-4474-a02f-fc2552ecc56e] Process exited with code 0\n2025-07-16 14:59:58.743 [info] [command][e1987081-78d3-4474-a02f-fc2552ecc56e] Socket close event received\n2025-07-16 14:59:58.744 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3ab96906-7052-40e8-8bd5-bbb5d95f7178] socks connection closed\n2025-07-16 14:59:58.759 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64539 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:00:58.746 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:00:58.749 [info] [command][0d0519ec-aee7-462f-bf23-3a14c2c64fa9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0d0519ec-aee7-462f-bf23-3a14c2c64fa9""}\n2025-07-16 15:00:58.750 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b3b4741b-55d0-49e3-b73c-087448956697] received connection request\n2025-07-16 15:00:58.750 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:00:58.767 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b3b4741b-55d0-49e3-b73c-087448956697] socks forwarding established\n2025-07-16 15:00:58.797 [info] [command][0d0519ec-aee7-462f-bf23-3a14c2c64fa9] Process exited with code 0\n2025-07-16 15:00:58.798 [info] [command][0d0519ec-aee7-462f-bf23-3a14c2c64fa9] Socket close event received\n2025-07-16 15:00:58.798 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b3b4741b-55d0-49e3-b73c-087448956697] socks connection closed\n2025-07-16 15:00:58.815 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64570 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:01:58.802 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:01:58.805 [info] [command][1dfed42a-d978-4dec-9d35-34ca572a6f07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1dfed42a-d978-4dec-9d35-34ca572a6f07""}\n2025-07-16 15:01:58.805 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c5ef5293-4677-418a-bf41-65faa07d969f] received connection request\n2025-07-16 15:01:58.806 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:01:58.822 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c5ef5293-4677-418a-bf41-65faa07d969f] socks forwarding established\n2025-07-16 15:01:58.853 [info] [command][1dfed42a-d978-4dec-9d35-34ca572a6f07] Process exited with code 0\n2025-07-16 15:01:58.853 [info] [command][1dfed42a-d978-4dec-9d35-34ca572a6f07] Socket close event received\n2025-07-16 15:01:58.853 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c5ef5293-4677-418a-bf41-65faa07d969f] socks connection closed\n2025-07-16 15:01:58.871 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64608 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:02:58.864 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:02:58.865 [info] [command][e48a9e94-88be-4340-bb7d-2e7de0d41cf9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e48a9e94-88be-4340-bb7d-2e7de0d41cf9""}\n2025-07-16 15:02:58.866 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7a8c5150-3e8f-45cf-9a83-1525e8a693ff] received connection request\n2025-07-16 15:02:58.867 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:02:58.884 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7a8c5150-3e8f-45cf-9a83-1525e8a693ff] socks forwarding established\n2025-07-16 15:02:58.913 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7a8c5150-3e8f-45cf-9a83-1525e8a693ff] socks connection closed\n2025-07-16 15:02:58.914 [info] [command][e48a9e94-88be-4340-bb7d-2e7de0d41cf9] Process exited with code 0\n2025-07-16 15:02:58.914 [info] [command][e48a9e94-88be-4340-bb7d-2e7de0d41cf9] Socket close event received\n2025-07-16 15:02:58.936 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64641 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:03:58.918 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:03:58.920 [info] [command][a2137607-f806-4ce1-b976-3e69c596d9a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a2137607-f806-4ce1-b976-3e69c596d9a0""}\n2025-07-16 15:03:58.921 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][08c89675-5c2b-4283-9cfb-29cf365f9089] received connection request\n2025-07-16 15:03:58.921 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:03:58.937 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][08c89675-5c2b-4283-9cfb-29cf365f9089] socks forwarding established\n2025-07-16 15:03:58.968 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][08c89675-5c2b-4283-9cfb-29cf365f9089] socks connection closed\n2025-07-16 15:03:58.969 [info] [command][a2137607-f806-4ce1-b976-3e69c596d9a0] Process exited with code 0\n2025-07-16 15:03:58.969 [info] [command][a2137607-f806-4ce1-b976-3e69c596d9a0] Socket close event received\n2025-07-16 15:03:58.985 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64661 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:04:58.973 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:04:58.975 [info] [command][41fbdffd-7ab3-4510-a6cf-042fb0b7b3bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""41fbdffd-7ab3-4510-a6cf-042fb0b7b3bb""}\n2025-07-16 15:04:58.976 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a7bf4875-3488-4315-ab97-2fadd8f7f145] received connection request\n2025-07-16 15:04:58.977 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:04:58.996 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a7bf4875-3488-4315-ab97-2fadd8f7f145] socks forwarding established\n2025-07-16 15:04:59.029 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a7bf4875-3488-4315-ab97-2fadd8f7f145] socks connection closed\n2025-07-16 15:04:59.029 [info] [command][41fbdffd-7ab3-4510-a6cf-042fb0b7b3bb] Process exited with code 0\n2025-07-16 15:04:59.029 [info] [command][41fbdffd-7ab3-4510-a6cf-042fb0b7b3bb] Socket close event received\n2025-07-16 15:04:59.046 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64701 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:05:59.033 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:05:59.034 [info] [command][6e962277-629e-4f22-94d2-eac69fcb6248] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6e962277-629e-4f22-94d2-eac69fcb6248""}\n2025-07-16 15:05:59.035 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][cbd48f7f-1248-4cd9-baf2-2e6442a877d3] received connection request\n2025-07-16 15:05:59.035 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:05:59.052 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cbd48f7f-1248-4cd9-baf2-2e6442a877d3] socks forwarding established\n2025-07-16 15:05:59.083 [info] [command][6e962277-629e-4f22-94d2-eac69fcb6248] Process exited with code 0\n2025-07-16 15:05:59.083 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cbd48f7f-1248-4cd9-baf2-2e6442a877d3] socks connection closed\n2025-07-16 15:05:59.083 [info] [command][6e962277-629e-4f22-94d2-eac69fcb6248] Socket close event received\n2025-07-16 15:05:59.099 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64725 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:06:59.085 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:06:59.086 [info] [command][75f76f04-98d9-4aad-8e2c-4a48f725063a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""75f76f04-98d9-4aad-8e2c-4a48f725063a""}\n2025-07-16 15:06:59.087 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8ed65fed-8d93-4095-bd07-487121c5ee53] received connection request\n2025-07-16 15:06:59.088 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 15:06:59.089 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:06:59.113 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8ed65fed-8d93-4095-bd07-487121c5ee53] socks forwarding established\n2025-07-16 15:06:59.143 [info] [command][75f76f04-98d9-4aad-8e2c-4a48f725063a] Process exited with code 0\n2025-07-16 15:06:59.144 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8ed65fed-8d93-4095-bd07-487121c5ee53] socks connection closed\n2025-07-16 15:06:59.144 [info] [command][75f76f04-98d9-4aad-8e2c-4a48f725063a] Socket close event received\n2025-07-16 15:06:59.159 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64765 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:07:59.145 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:07:59.147 [info] [command][d6b99b9c-425c-4f2f-8c1b-f1785118aaa5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d6b99b9c-425c-4f2f-8c1b-f1785118aaa5""}\n2025-07-16 15:07:59.147 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b1327150-36dd-4bcd-a18c-6528114a4205] received connection request\n2025-07-16 15:07:59.148 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:07:59.166 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b1327150-36dd-4bcd-a18c-6528114a4205] socks forwarding established\n2025-07-16 15:07:59.197 [info] [command][d6b99b9c-425c-4f2f-8c1b-f1785118aaa5] Process exited with code 0\n2025-07-16 15:07:59.198 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b1327150-36dd-4bcd-a18c-6528114a4205] socks connection closed\n2025-07-16 15:07:59.198 [info] [command][d6b99b9c-425c-4f2f-8c1b-f1785118aaa5] Socket close event received\n2025-07-16 15:07:59.216 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64809 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:08:59.198 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:08:59.201 [info] [command][990e935d-480b-4044-a0ee-03f65aee32c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""990e935d-480b-4044-a0ee-03f65aee32c8""}\n2025-07-16 15:08:59.201 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e1c42c3f-5e17-43a9-9194-d3eca13d2711] received connection request\n2025-07-16 15:08:59.202 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:08:59.220 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e1c42c3f-5e17-43a9-9194-d3eca13d2711] socks forwarding established\n2025-07-16 15:08:59.252 [info] [command][990e935d-480b-4044-a0ee-03f65aee32c8] Process exited with code 0\n2025-07-16 15:08:59.253 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e1c42c3f-5e17-43a9-9194-d3eca13d2711] socks connection closed\n2025-07-16 15:08:59.253 [info] [command][990e935d-480b-4044-a0ee-03f65aee32c8] Socket close event received\n2025-07-16 15:08:59.269 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64846 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:09:59.258 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:09:59.259 [info] [command][37ccbe8f-0525-471b-9df4-7e640b8bc05e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""37ccbe8f-0525-471b-9df4-7e640b8bc05e""}\n2025-07-16 15:09:59.260 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6d694297-ea67-494f-b1d1-93504ca4b3ea] received connection request\n2025-07-16 15:09:59.260 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:09:59.277 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6d694297-ea67-494f-b1d1-93504ca4b3ea] socks forwarding established\n2025-07-16 15:09:59.305 [info] [command][37ccbe8f-0525-471b-9df4-7e640b8bc05e] Process exited with code 0\n2025-07-16 15:09:59.305 [info] [command][37ccbe8f-0525-471b-9df4-7e640b8bc05e] Socket close event received\n2025-07-16 15:09:59.306 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6d694297-ea67-494f-b1d1-93504ca4b3ea] socks connection closed\n2025-07-16 15:09:59.322 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64910 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:10:59.311 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:10:59.312 [info] [command][a237d785-db8a-425e-9baf-5b70893ccdd6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a237d785-db8a-425e-9baf-5b70893ccdd6""}\n2025-07-16 15:10:59.312 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6237ca09-a395-4e29-8aba-7bb8eae7e5a3] received connection request\n2025-07-16 15:10:59.312 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:10:59.331 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6237ca09-a395-4e29-8aba-7bb8eae7e5a3] socks forwarding established\n2025-07-16 15:10:59.446 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6237ca09-a395-4e29-8aba-7bb8eae7e5a3] socks connection closed\n2025-07-16 15:10:59.446 [info] [command][a237d785-db8a-425e-9baf-5b70893ccdd6] Process exited with code 0\n2025-07-16 15:10:59.446 [info] [command][a237d785-db8a-425e-9baf-5b70893ccdd6] Socket close event received\n2025-07-16 15:10:59.463 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64934 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:11:59.446 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:11:59.448 [info] [command][a53825b1-2b40-4247-9bdc-e85badde26ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a53825b1-2b40-4247-9bdc-e85badde26ba""}\n2025-07-16 15:11:59.449 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3780d13a-eaf9-4527-9293-97e609e94cec] received connection request\n2025-07-16 15:11:59.450 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:11:59.466 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3780d13a-eaf9-4527-9293-97e609e94cec] socks forwarding established\n2025-07-16 15:11:59.496 [info] [command][a53825b1-2b40-4247-9bdc-e85badde26ba] Process exited with code 0\n2025-07-16 15:11:59.497 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3780d13a-eaf9-4527-9293-97e609e94cec] socks connection closed\n2025-07-16 15:11:59.497 [info] [command][a53825b1-2b40-4247-9bdc-e85badde26ba] Socket close event received\n2025-07-16 15:11:59.513 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 64985 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:12:59.502 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:12:59.504 [info] [command][969a23ca-8bd1-42af-a5ef-2ae60090151c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""969a23ca-8bd1-42af-a5ef-2ae60090151c""}\n2025-07-16 15:12:59.505 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4380f48a-4117-4d3f-b7aa-34a3162466e3] received connection request\n2025-07-16 15:12:59.506 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:12:59.523 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4380f48a-4117-4d3f-b7aa-34a3162466e3] socks forwarding established\n2025-07-16 15:12:59.554 [info] [command][969a23ca-8bd1-42af-a5ef-2ae60090151c] Process exited with code 0\n2025-07-16 15:12:59.555 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4380f48a-4117-4d3f-b7aa-34a3162466e3] socks connection closed\n2025-07-16 15:12:59.555 [info] [command][969a23ca-8bd1-42af-a5ef-2ae60090151c] Socket close event received\n2025-07-16 15:12:59.571 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65020 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:13:59.557 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:13:59.559 [info] [command][ee15f5d0-33f2-4090-ae23-15115797615f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ee15f5d0-33f2-4090-ae23-15115797615f""}\n2025-07-16 15:13:59.559 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0ceb7ec2-219f-4cae-a727-636a2d482b13] received connection request\n2025-07-16 15:13:59.560 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:13:59.576 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0ceb7ec2-219f-4cae-a727-636a2d482b13] socks forwarding established\n2025-07-16 15:13:59.605 [info] [command][ee15f5d0-33f2-4090-ae23-15115797615f] Process exited with code 0\n2025-07-16 15:13:59.605 [info] [command][ee15f5d0-33f2-4090-ae23-15115797615f] Socket close event received\n2025-07-16 15:13:59.605 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0ceb7ec2-219f-4cae-a727-636a2d482b13] socks connection closed\n2025-07-16 15:13:59.621 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65052 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:14:59.607 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:14:59.609 [info] [command][8935c308-4e18-466f-afd8-587733b845d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8935c308-4e18-466f-afd8-587733b845d6""}\n2025-07-16 15:14:59.609 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1650ae30-e5b3-4e74-b805-e5b49e1b0900] received connection request\n2025-07-16 15:14:59.609 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:14:59.625 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1650ae30-e5b3-4e74-b805-e5b49e1b0900] socks forwarding established\n2025-07-16 15:14:59.654 [info] [command][8935c308-4e18-466f-afd8-587733b845d6] Process exited with code 0\n2025-07-16 15:14:59.654 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1650ae30-e5b3-4e74-b805-e5b49e1b0900] socks connection closed\n2025-07-16 15:14:59.655 [info] [command][8935c308-4e18-466f-afd8-587733b845d6] Socket close event received\n2025-07-16 15:14:59.671 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65113 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:15:59.655 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:15:59.656 [info] [command][37fc8148-9237-4ee8-81dd-f82aebc311d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""37fc8148-9237-4ee8-81dd-f82aebc311d2""}\n2025-07-16 15:15:59.657 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c9a37e00-2701-4877-8fa8-8c629c12aeb3] received connection request\n2025-07-16 15:15:59.657 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:15:59.674 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c9a37e00-2701-4877-8fa8-8c629c12aeb3] socks forwarding established\n2025-07-16 15:15:59.703 [info] [command][37fc8148-9237-4ee8-81dd-f82aebc311d2] Process exited with code 0\n2025-07-16 15:15:59.703 [info] [command][37fc8148-9237-4ee8-81dd-f82aebc311d2] Socket close event received\n2025-07-16 15:15:59.704 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c9a37e00-2701-4877-8fa8-8c629c12aeb3] socks connection closed\n2025-07-16 15:15:59.718 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65143 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:16:59.703 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:16:59.705 [info] [command][c1425676-dd7a-43f7-a434-01087e8f5f83] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c1425676-dd7a-43f7-a434-01087e8f5f83""}\n2025-07-16 15:16:59.706 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7feb9ad9-7252-469e-946f-d2f3a10dbbb5] received connection request\n2025-07-16 15:16:59.706 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:16:59.723 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7feb9ad9-7252-469e-946f-d2f3a10dbbb5] socks forwarding established\n2025-07-16 15:16:59.752 [info] [command][c1425676-dd7a-43f7-a434-01087e8f5f83] Process exited with code 0\n2025-07-16 15:16:59.752 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7feb9ad9-7252-469e-946f-d2f3a10dbbb5] socks connection closed\n2025-07-16 15:16:59.753 [info] [command][c1425676-dd7a-43f7-a434-01087e8f5f83] Socket close event received\n2025-07-16 15:16:59.768 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65181 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:17:59.757 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:17:59.759 [info] [command][af68292f-5334-470c-9599-39ae686e4321] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""af68292f-5334-470c-9599-39ae686e4321""}\n2025-07-16 15:17:59.759 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][bc0efe11-a8dd-4446-8dad-143f8036cbfd] received connection request\n2025-07-16 15:17:59.760 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:17:59.777 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bc0efe11-a8dd-4446-8dad-143f8036cbfd] socks forwarding established\n2025-07-16 15:17:59.805 [info] [command][af68292f-5334-470c-9599-39ae686e4321] Process exited with code 0\n2025-07-16 15:17:59.805 [info] [command][af68292f-5334-470c-9599-39ae686e4321] Socket close event received\n2025-07-16 15:17:59.806 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bc0efe11-a8dd-4446-8dad-143f8036cbfd] socks connection closed\n2025-07-16 15:17:59.822 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65221 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:18:59.810 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:18:59.812 [info] [command][8a2d98b0-2421-440e-895f-0e666b98646a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8a2d98b0-2421-440e-895f-0e666b98646a""}\n2025-07-16 15:18:59.813 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8c3d6663-5bb5-4268-813b-d6b7b9e43606] received connection request\n2025-07-16 15:18:59.814 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:18:59.831 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8c3d6663-5bb5-4268-813b-d6b7b9e43606] socks forwarding established\n2025-07-16 15:18:59.862 [info] [command][8a2d98b0-2421-440e-895f-0e666b98646a] Process exited with code 0\n2025-07-16 15:18:59.862 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8c3d6663-5bb5-4268-813b-d6b7b9e43606] socks connection closed\n2025-07-16 15:18:59.862 [info] [command][8a2d98b0-2421-440e-895f-0e666b98646a] Socket close event received\n2025-07-16 15:18:59.880 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65246 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:19:59.865 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:19:59.868 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4f36ee0c-2362-4378-a7bb-83b11e8541a9] received connection request\n2025-07-16 15:19:59.868 [info] [command][f282bac9-02f2-4426-8554-dceed755c829] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f282bac9-02f2-4426-8554-dceed755c829""}\n2025-07-16 15:19:59.868 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:19:59.885 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f36ee0c-2362-4378-a7bb-83b11e8541a9] socks forwarding established\n2025-07-16 15:19:59.915 [info] [command][f282bac9-02f2-4426-8554-dceed755c829] Process exited with code 0\n2025-07-16 15:19:59.915 [info] [command][f282bac9-02f2-4426-8554-dceed755c829] Socket close event received\n2025-07-16 15:19:59.915 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f36ee0c-2362-4378-a7bb-83b11e8541a9] socks connection closed\n2025-07-16 15:19:59.931 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65303 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:20:59.919 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:20:59.921 [info] [command][c549f19d-e764-462f-b73d-8911574c2da8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c549f19d-e764-462f-b73d-8911574c2da8""}\n2025-07-16 15:20:59.921 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3822e67c-db9c-4570-b1b3-fe19ec884ea5] received connection request\n2025-07-16 15:20:59.921 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:20:59.937 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3822e67c-db9c-4570-b1b3-fe19ec884ea5] socks forwarding established\n2025-07-16 15:20:59.967 [info] [command][c549f19d-e764-462f-b73d-8911574c2da8] Process exited with code 0\n2025-07-16 15:20:59.967 [info] [command][c549f19d-e764-462f-b73d-8911574c2da8] Socket close event received\n2025-07-16 15:20:59.967 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3822e67c-db9c-4570-b1b3-fe19ec884ea5] socks connection closed\n2025-07-16 15:20:59.983 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65352 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:21:59.972 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:21:59.974 [info] [command][c39b4206-b942-4606-ad18-025d8986f330] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c39b4206-b942-4606-ad18-025d8986f330""}\n2025-07-16 15:21:59.974 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f1bc178c-13fe-49ac-9ef6-11f1a61a7685] received connection request\n2025-07-16 15:21:59.975 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:21:59.993 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f1bc178c-13fe-49ac-9ef6-11f1a61a7685] socks forwarding established\n2025-07-16 15:22:00.025 [info] [command][c39b4206-b942-4606-ad18-025d8986f330] Process exited with code 0\n2025-07-16 15:22:00.026 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f1bc178c-13fe-49ac-9ef6-11f1a61a7685] socks connection closed\n2025-07-16 15:22:00.026 [info] [command][c39b4206-b942-4606-ad18-025d8986f330] Socket close event received\n2025-07-16 15:22:00.043 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65399 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:23:00.026 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:23:00.027 [info] [command][0af027ca-f4ac-4d18-8cd8-28fed4540424] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0af027ca-f4ac-4d18-8cd8-28fed4540424""}\n2025-07-16 15:23:00.027 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8cbcae79-fe0d-4ad1-b5a3-3f2f68b31ec1] received connection request\n2025-07-16 15:23:00.027 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:23:00.043 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8cbcae79-fe0d-4ad1-b5a3-3f2f68b31ec1] socks forwarding established\n2025-07-16 15:23:00.074 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8cbcae79-fe0d-4ad1-b5a3-3f2f68b31ec1] socks connection closed\n2025-07-16 15:23:00.074 [info] [command][0af027ca-f4ac-4d18-8cd8-28fed4540424] Process exited with code 0\n2025-07-16 15:23:00.074 [info] [command][0af027ca-f4ac-4d18-8cd8-28fed4540424] Socket close event received\n2025-07-16 15:23:00.092 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65436 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:24:00.080 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:24:00.082 [info] [command][cac68951-7c32-44a1-a8b6-650c6d34d7a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""cac68951-7c32-44a1-a8b6-650c6d34d7a7""}\n2025-07-16 15:24:00.083 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][72147021-1753-44af-9f40-3efb1b7b8653] received connection request\n2025-07-16 15:24:00.084 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:24:00.102 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][72147021-1753-44af-9f40-3efb1b7b8653] socks forwarding established\n2025-07-16 15:24:00.132 [info] [command][cac68951-7c32-44a1-a8b6-650c6d34d7a7] Process exited with code 0\n2025-07-16 15:24:00.133 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][72147021-1753-44af-9f40-3efb1b7b8653] socks connection closed\n2025-07-16 15:24:00.133 [info] [command][cac68951-7c32-44a1-a8b6-650c6d34d7a7] Socket close event received\n2025-07-16 15:24:00.150 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 65468 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:25:00.135 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:25:00.137 [info] [command][f523e1c5-6f70-4599-a884-4e2530bf2201] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f523e1c5-6f70-4599-a884-4e2530bf2201""}\n2025-07-16 15:25:00.138 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][251f546c-1d29-497f-be80-a4fbf24c1482] received connection request\n2025-07-16 15:25:00.138 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:25:00.156 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][251f546c-1d29-497f-be80-a4fbf24c1482] socks forwarding established\n2025-07-16 15:25:00.184 [info] [command][f523e1c5-6f70-4599-a884-4e2530bf2201] Process exited with code 0\n2025-07-16 15:25:00.185 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][251f546c-1d29-497f-be80-a4fbf24c1482] socks connection closed\n2025-07-16 15:25:00.185 [info] [command][f523e1c5-6f70-4599-a884-4e2530bf2201] Socket close event received\n2025-07-16 15:25:00.202 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49157 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:26:00.187 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:26:00.190 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][07d59da2-2df1-4831-9306-929454d3f1dc] received connection request\n2025-07-16 15:26:00.191 [info] [command][9442b784-7f2d-45f8-bf0f-0d9865608fb0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9442b784-7f2d-45f8-bf0f-0d9865608fb0""}\n2025-07-16 15:26:00.191 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:26:00.208 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][07d59da2-2df1-4831-9306-929454d3f1dc] socks forwarding established\n2025-07-16 15:26:00.237 [info] [command][9442b784-7f2d-45f8-bf0f-0d9865608fb0] Process exited with code 0\n2025-07-16 15:26:00.237 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][07d59da2-2df1-4831-9306-929454d3f1dc] socks connection closed\n2025-07-16 15:26:00.237 [info] [command][9442b784-7f2d-45f8-bf0f-0d9865608fb0] Socket close event received\n2025-07-16 15:26:00.254 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49196 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:27:00.239 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:27:00.241 [info] [command][47c72276-f052-4abf-aee6-d49027152fba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""47c72276-f052-4abf-aee6-d49027152fba""}\n2025-07-16 15:27:00.242 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][03b24171-ba15-45b4-a8dc-be326ed43595] received connection request\n2025-07-16 15:27:00.243 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:27:00.260 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][03b24171-ba15-45b4-a8dc-be326ed43595] socks forwarding established\n2025-07-16 15:27:00.291 [info] [command][47c72276-f052-4abf-aee6-d49027152fba] Process exited with code 0\n2025-07-16 15:27:00.291 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][03b24171-ba15-45b4-a8dc-be326ed43595] socks connection closed\n2025-07-16 15:27:00.291 [info] [command][47c72276-f052-4abf-aee6-d49027152fba] Socket close event received\n2025-07-16 15:27:00.309 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49248 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:28:00.298 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:28:00.300 [info] [command][c43dda0d-d274-4969-b431-c4c5fe19b6de] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c43dda0d-d274-4969-b431-c4c5fe19b6de""}\n2025-07-16 15:28:00.301 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][cc2f2cc3-9a9a-4c00-8803-4725fabee2f9] received connection request\n2025-07-16 15:28:00.302 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:28:00.318 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cc2f2cc3-9a9a-4c00-8803-4725fabee2f9] socks forwarding established\n2025-07-16 15:28:00.347 [info] [command][c43dda0d-d274-4969-b431-c4c5fe19b6de] Process exited with code 0\n2025-07-16 15:28:00.347 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cc2f2cc3-9a9a-4c00-8803-4725fabee2f9] socks connection closed\n2025-07-16 15:28:00.348 [info] [command][c43dda0d-d274-4969-b431-c4c5fe19b6de] Socket close event received\n2025-07-16 15:28:00.364 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49299 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:29:00.352 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:29:00.355 [info] [command][f04ba1ad-8db3-4656-b962-a1f03dfd893f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f04ba1ad-8db3-4656-b962-a1f03dfd893f""}\n2025-07-16 15:29:00.355 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d829006e-a9dd-4874-96f5-42aa60b10a7e] received connection request\n2025-07-16 15:29:00.356 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:29:00.373 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d829006e-a9dd-4874-96f5-42aa60b10a7e] socks forwarding established\n2025-07-16 15:29:00.403 [info] [command][f04ba1ad-8db3-4656-b962-a1f03dfd893f] Process exited with code 0\n2025-07-16 15:29:00.404 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d829006e-a9dd-4874-96f5-42aa60b10a7e] socks connection closed\n2025-07-16 15:29:00.404 [info] [command][f04ba1ad-8db3-4656-b962-a1f03dfd893f] Socket close event received\n2025-07-16 15:29:00.420 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49330 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:30:00.409 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:30:00.412 [info] [command][d9ceac52-8a5d-4db0-b9b5-5dffc0f87287] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d9ceac52-8a5d-4db0-b9b5-5dffc0f87287""}\n2025-07-16 15:30:00.413 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][56eeeb64-3649-4018-889e-fe62bffacf42] received connection request\n2025-07-16 15:30:00.414 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:30:00.431 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][56eeeb64-3649-4018-889e-fe62bffacf42] socks forwarding established\n2025-07-16 15:30:00.463 [info] [command][d9ceac52-8a5d-4db0-b9b5-5dffc0f87287] Process exited with code 0\n2025-07-16 15:30:00.463 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][56eeeb64-3649-4018-889e-fe62bffacf42] socks connection closed\n2025-07-16 15:30:00.463 [info] [command][d9ceac52-8a5d-4db0-b9b5-5dffc0f87287] Socket close event received\n2025-07-16 15:30:00.479 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49403 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:31:00.469 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:31:00.470 [info] [command][dd1494ee-5f12-43bd-93d6-283ed27d0a67] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""dd1494ee-5f12-43bd-93d6-283ed27d0a67""}\n2025-07-16 15:31:00.471 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][28cdf3be-7b99-46c2-a248-3c90ea9744ae] received connection request\n2025-07-16 15:31:00.471 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:31:00.488 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][28cdf3be-7b99-46c2-a248-3c90ea9744ae] socks forwarding established\n2025-07-16 15:31:00.517 [info] [command][dd1494ee-5f12-43bd-93d6-283ed27d0a67] Process exited with code 0\n2025-07-16 15:31:00.517 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][28cdf3be-7b99-46c2-a248-3c90ea9744ae] socks connection closed\n2025-07-16 15:31:00.517 [info] [command][dd1494ee-5f12-43bd-93d6-283ed27d0a67] Socket close event received\n2025-07-16 15:31:00.533 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49447 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:32:00.517 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:32:00.520 [info] [command][8c401c9e-ab37-4a5b-80ab-bc26e09db221] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8c401c9e-ab37-4a5b-80ab-bc26e09db221""}\n2025-07-16 15:32:00.520 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2d158747-9835-4222-ad29-dba38eb075cc] received connection request\n2025-07-16 15:32:00.520 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:32:00.537 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2d158747-9835-4222-ad29-dba38eb075cc] socks forwarding established\n2025-07-16 15:32:00.570 [info] [command][8c401c9e-ab37-4a5b-80ab-bc26e09db221] Process exited with code 0\n2025-07-16 15:32:00.570 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2d158747-9835-4222-ad29-dba38eb075cc] socks connection closed\n2025-07-16 15:32:00.570 [info] [command][8c401c9e-ab37-4a5b-80ab-bc26e09db221] Socket close event received\n2025-07-16 15:32:00.586 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49503 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:33:00.572 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:33:00.574 [info] [command][77465ded-2131-4373-95e2-bc3feb6ed9e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""77465ded-2131-4373-95e2-bc3feb6ed9e4""}\n2025-07-16 15:33:00.574 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][ad94a9f6-69fd-4d59-85f8-0e88b839f612] received connection request\n2025-07-16 15:33:00.574 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:33:00.591 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ad94a9f6-69fd-4d59-85f8-0e88b839f612] socks forwarding established\n2025-07-16 15:33:00.620 [info] [command][77465ded-2131-4373-95e2-bc3feb6ed9e4] Process exited with code 0\n2025-07-16 15:33:00.620 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ad94a9f6-69fd-4d59-85f8-0e88b839f612] socks connection closed\n2025-07-16 15:33:00.620 [info] [command][77465ded-2131-4373-95e2-bc3feb6ed9e4] Socket close event received\n2025-07-16 15:33:00.636 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49565 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:34:00.625 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:34:00.627 [info] [command][7e427af2-5c06-4849-959c-95c9a1333590] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7e427af2-5c06-4849-959c-95c9a1333590""}\n2025-07-16 15:34:00.628 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][86eb54e8-037c-4fce-b3f9-16300b012256] received connection request\n2025-07-16 15:34:00.629 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:34:00.645 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][86eb54e8-037c-4fce-b3f9-16300b012256] socks forwarding established\n2025-07-16 15:34:00.674 [info] [command][7e427af2-5c06-4849-959c-95c9a1333590] Process exited with code 0\n2025-07-16 15:34:00.674 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][86eb54e8-037c-4fce-b3f9-16300b012256] socks connection closed\n2025-07-16 15:34:00.674 [info] [command][7e427af2-5c06-4849-959c-95c9a1333590] Socket close event received\n2025-07-16 15:34:00.690 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49593 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:35:00.680 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:35:00.681 [info] [command][a2255323-3885-4d09-b652-55b79cd0f9d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a2255323-3885-4d09-b652-55b79cd0f9d2""}\n2025-07-16 15:35:00.681 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6b54ab92-28fd-480c-9311-1105d0015b99] received connection request\n2025-07-16 15:35:00.681 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:35:00.698 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6b54ab92-28fd-480c-9311-1105d0015b99] socks forwarding established\n2025-07-16 15:35:00.725 [info] [command][a2255323-3885-4d09-b652-55b79cd0f9d2] Process exited with code 0\n2025-07-16 15:35:00.725 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6b54ab92-28fd-480c-9311-1105d0015b99] socks connection closed\n2025-07-16 15:35:00.726 [info] [command][a2255323-3885-4d09-b652-55b79cd0f9d2] Socket close event received\n2025-07-16 15:35:00.742 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49653 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:36:00.727 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:36:00.729 [info] [command][5f7ec324-6c23-492b-9983-2378659f853f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5f7ec324-6c23-492b-9983-2378659f853f""}\n2025-07-16 15:36:00.729 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4240fb7f-ddee-4f3a-bd26-9b5e113fa8e9] received connection request\n2025-07-16 15:36:00.729 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:36:00.745 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4240fb7f-ddee-4f3a-bd26-9b5e113fa8e9] socks forwarding established\n2025-07-16 15:36:00.773 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4240fb7f-ddee-4f3a-bd26-9b5e113fa8e9] socks connection closed\n2025-07-16 15:36:00.773 [info] [command][5f7ec324-6c23-492b-9983-2378659f853f] Process exited with code 0\n2025-07-16 15:36:00.773 [info] [command][5f7ec324-6c23-492b-9983-2378659f853f] Socket close event received\n2025-07-16 15:36:00.789 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49693 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:37:00.774 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:37:00.775 [info] [command][89871d8b-d2a2-4531-ad57-c8303005996e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""89871d8b-d2a2-4531-ad57-c8303005996e""}\n2025-07-16 15:37:00.776 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][65bc024a-22a7-46ce-8707-fafd742beeea] received connection request\n2025-07-16 15:37:00.776 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:37:00.794 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][65bc024a-22a7-46ce-8707-fafd742beeea] socks forwarding established\n2025-07-16 15:37:00.825 [info] [command][89871d8b-d2a2-4531-ad57-c8303005996e] Process exited with code 0\n2025-07-16 15:37:00.826 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][65bc024a-22a7-46ce-8707-fafd742beeea] socks connection closed\n2025-07-16 15:37:00.826 [info] [command][89871d8b-d2a2-4531-ad57-c8303005996e] Socket close event received\n2025-07-16 15:37:00.844 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49746 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:38:00.830 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:38:00.832 [info] [command][51586f88-571f-4d38-bdfb-d1bf8400c0d9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""51586f88-571f-4d38-bdfb-d1bf8400c0d9""}\n2025-07-16 15:38:00.832 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][56cfd442-2525-4140-bc69-406fe7f27837] received connection request\n2025-07-16 15:38:00.832 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 15:38:00.832 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:38:00.848 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][56cfd442-2525-4140-bc69-406fe7f27837] socks forwarding established\n2025-07-16 15:38:00.877 [info] [command][51586f88-571f-4d38-bdfb-d1bf8400c0d9] Process exited with code 0\n2025-07-16 15:38:00.877 [info] [command][51586f88-571f-4d38-bdfb-d1bf8400c0d9] Socket close event received\n2025-07-16 15:38:00.877 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][56cfd442-2525-4140-bc69-406fe7f27837] socks connection closed\n2025-07-16 15:38:00.892 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49785 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:39:00.881 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:39:00.883 [info] [command][32bce6e5-bba4-4cfe-b590-fa5dd783a43a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""32bce6e5-bba4-4cfe-b590-fa5dd783a43a""}\n2025-07-16 15:39:00.883 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][69e7772f-b88b-464a-99ba-1e44005bf79f] received connection request\n2025-07-16 15:39:00.883 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:39:00.900 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][69e7772f-b88b-464a-99ba-1e44005bf79f] socks forwarding established\n2025-07-16 15:39:00.928 [info] [command][32bce6e5-bba4-4cfe-b590-fa5dd783a43a] Process exited with code 0\n2025-07-16 15:39:00.928 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][69e7772f-b88b-464a-99ba-1e44005bf79f] socks connection closed\n2025-07-16 15:39:00.928 [info] [command][32bce6e5-bba4-4cfe-b590-fa5dd783a43a] Socket close event received\n2025-07-16 15:39:00.943 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49809 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:40:00.929 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:40:00.931 [info] [command][19f5f42e-68d3-4947-a289-6329157f1912] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""19f5f42e-68d3-4947-a289-6329157f1912""}\n2025-07-16 15:40:00.932 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1cee6283-3be8-4887-aea7-1f036ca310d1] received connection request\n2025-07-16 15:40:00.933 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:40:00.950 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1cee6283-3be8-4887-aea7-1f036ca310d1] socks forwarding established\n2025-07-16 15:40:00.980 [info] [command][19f5f42e-68d3-4947-a289-6329157f1912] Process exited with code 0\n2025-07-16 15:40:00.980 [info] [command][19f5f42e-68d3-4947-a289-6329157f1912] Socket close event received\n2025-07-16 15:40:00.981 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1cee6283-3be8-4887-aea7-1f036ca310d1] socks connection closed\n2025-07-16 15:40:00.999 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49886 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:41:00.986 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:41:00.988 [info] [command][7f8d9296-1ca8-4c8b-9d9b-3bfe83baa6e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7f8d9296-1ca8-4c8b-9d9b-3bfe83baa6e1""}\n2025-07-16 15:41:00.989 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][24ea557d-5f06-4247-9817-3adbe1f3a51c] received connection request\n2025-07-16 15:41:00.990 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:41:01.007 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][24ea557d-5f06-4247-9817-3adbe1f3a51c] socks forwarding established\n2025-07-16 15:41:01.038 [info] [command][7f8d9296-1ca8-4c8b-9d9b-3bfe83baa6e1] Process exited with code 0\n2025-07-16 15:41:01.038 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][24ea557d-5f06-4247-9817-3adbe1f3a51c] socks connection closed\n2025-07-16 15:41:01.039 [info] [command][7f8d9296-1ca8-4c8b-9d9b-3bfe83baa6e1] Socket close event received\n2025-07-16 15:41:01.056 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49921 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:42:01.039 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:42:01.042 [info] [command][cdd08fcc-db50-4470-9ba0-4c026d7e9235] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""cdd08fcc-db50-4470-9ba0-4c026d7e9235""}\n2025-07-16 15:42:01.042 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5da24e28-53ab-449f-a23d-76dde84aaf74] received connection request\n2025-07-16 15:42:01.043 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:42:01.061 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5da24e28-53ab-449f-a23d-76dde84aaf74] socks forwarding established\n2025-07-16 15:42:01.172 [info] [command][cdd08fcc-db50-4470-9ba0-4c026d7e9235] Process exited with code 0\n2025-07-16 15:42:01.172 [info] [command][cdd08fcc-db50-4470-9ba0-4c026d7e9235] Socket close event received\n2025-07-16 15:42:01.173 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5da24e28-53ab-449f-a23d-76dde84aaf74] socks connection closed\n2025-07-16 15:42:01.189 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49961 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:43:01.173 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:43:01.176 [info] [command][f88d14a0-6d76-43ae-856f-074aa0e6c000] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f88d14a0-6d76-43ae-856f-074aa0e6c000""}\n2025-07-16 15:43:01.177 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][85e6c2e8-a800-4ddc-9b13-071963f4c710] received connection request\n2025-07-16 15:43:01.178 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:43:01.194 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][85e6c2e8-a800-4ddc-9b13-071963f4c710] socks forwarding established\n2025-07-16 15:43:01.218 [info] [command][f88d14a0-6d76-43ae-856f-074aa0e6c000] Process exited with code 0\n2025-07-16 15:43:01.219 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][85e6c2e8-a800-4ddc-9b13-071963f4c710] socks connection closed\n2025-07-16 15:43:01.219 [info] [command][f88d14a0-6d76-43ae-856f-074aa0e6c000] Socket close event received\n2025-07-16 15:43:01.236 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 49999 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:44:01.219 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:44:01.221 [info] [command][c92dec87-fb8e-4b59-bd35-313056044330] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c92dec87-fb8e-4b59-bd35-313056044330""}\n2025-07-16 15:44:01.222 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f73ebe4e-2ac3-4616-9a04-0394f036f959] received connection request\n2025-07-16 15:44:01.222 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:44:01.241 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f73ebe4e-2ac3-4616-9a04-0394f036f959] socks forwarding established\n2025-07-16 15:44:01.273 [info] [command][c92dec87-fb8e-4b59-bd35-313056044330] Process exited with code 0\n2025-07-16 15:44:01.274 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f73ebe4e-2ac3-4616-9a04-0394f036f959] socks connection closed\n2025-07-16 15:44:01.274 [info] [command][c92dec87-fb8e-4b59-bd35-313056044330] Socket close event received\n2025-07-16 15:44:01.291 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50022 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:45:01.279 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:45:01.281 [info] [command][4498b102-d267-4fd6-b0e6-ccc3bab2c787] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4498b102-d267-4fd6-b0e6-ccc3bab2c787""}\n2025-07-16 15:45:01.281 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][431d4cf2-3c2d-4152-a33b-90d8fe3e7718] received connection request\n2025-07-16 15:45:01.281 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:45:01.297 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][431d4cf2-3c2d-4152-a33b-90d8fe3e7718] socks forwarding established\n2025-07-16 15:45:01.326 [info] [command][4498b102-d267-4fd6-b0e6-ccc3bab2c787] Process exited with code 0\n2025-07-16 15:45:01.326 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][431d4cf2-3c2d-4152-a33b-90d8fe3e7718] socks connection closed\n2025-07-16 15:45:01.326 [info] [command][4498b102-d267-4fd6-b0e6-ccc3bab2c787] Socket close event received\n2025-07-16 15:45:01.342 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50067 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:46:01.330 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:46:01.334 [info] [command][5210b230-2125-4ad0-96a1-dfe4bc7334a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5210b230-2125-4ad0-96a1-dfe4bc7334a7""}\n2025-07-16 15:46:01.334 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][69ce753c-e7e4-4ac4-bc73-9a5e1f10d79b] received connection request\n2025-07-16 15:46:01.335 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:46:01.352 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][69ce753c-e7e4-4ac4-bc73-9a5e1f10d79b] socks forwarding established\n2025-07-16 15:46:01.381 [info] [command][5210b230-2125-4ad0-96a1-dfe4bc7334a7] Process exited with code 0\n2025-07-16 15:46:01.381 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][69ce753c-e7e4-4ac4-bc73-9a5e1f10d79b] socks connection closed\n2025-07-16 15:46:01.382 [info] [command][5210b230-2125-4ad0-96a1-dfe4bc7334a7] Socket close event received\n2025-07-16 15:46:01.398 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50109 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:47:01.384 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:47:01.387 [info] [command][1aefef2e-9c45-47f0-8b74-b5e71c3459fc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1aefef2e-9c45-47f0-8b74-b5e71c3459fc""}\n2025-07-16 15:47:01.388 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][91e92391-f6bb-41e7-a69f-e1976f1b86b3] received connection request\n2025-07-16 15:47:01.389 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:47:01.407 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][91e92391-f6bb-41e7-a69f-e1976f1b86b3] socks forwarding established\n2025-07-16 15:47:01.436 [info] [command][1aefef2e-9c45-47f0-8b74-b5e71c3459fc] Process exited with code 0\n2025-07-16 15:47:01.436 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][91e92391-f6bb-41e7-a69f-e1976f1b86b3] socks connection closed\n2025-07-16 15:47:01.436 [info] [command][1aefef2e-9c45-47f0-8b74-b5e71c3459fc] Socket close event received\n2025-07-16 15:47:01.453 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50159 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:48:01.441 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:48:01.443 [info] [command][b79e9742-ef0d-4de0-a380-003dd0c73937] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b79e9742-ef0d-4de0-a380-003dd0c73937""}\n2025-07-16 15:48:01.444 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e03d869f-c28a-48bc-a914-7f8ecb11745c] received connection request\n2025-07-16 15:48:01.444 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:48:01.460 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e03d869f-c28a-48bc-a914-7f8ecb11745c] socks forwarding established\n2025-07-16 15:48:01.490 [info] [command][b79e9742-ef0d-4de0-a380-003dd0c73937] Process exited with code 0\n2025-07-16 15:48:01.491 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e03d869f-c28a-48bc-a914-7f8ecb11745c] socks connection closed\n2025-07-16 15:48:01.491 [info] [command][b79e9742-ef0d-4de0-a380-003dd0c73937] Socket close event received\n2025-07-16 15:48:01.510 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50196 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:49:01.497 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:49:01.499 [info] [command][5e224a11-5a10-485f-a383-e4b0b9df8ae1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5e224a11-5a10-485f-a383-e4b0b9df8ae1""}\n2025-07-16 15:49:01.500 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][63c8d7dd-b961-4825-8ee6-46752b0ae3af] received connection request\n2025-07-16 15:49:01.500 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:49:01.516 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][63c8d7dd-b961-4825-8ee6-46752b0ae3af] socks forwarding established\n2025-07-16 15:49:01.544 [info] [command][5e224a11-5a10-485f-a383-e4b0b9df8ae1] Process exited with code 0\n2025-07-16 15:49:01.544 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][63c8d7dd-b961-4825-8ee6-46752b0ae3af] socks connection closed\n2025-07-16 15:49:01.545 [info] [command][5e224a11-5a10-485f-a383-e4b0b9df8ae1] Socket close event received\n2025-07-16 15:49:01.561 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50222 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:50:01.545 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:50:01.548 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][56db1bad-d878-4e25-ad12-c7ad55397bcf] received connection request\n2025-07-16 15:50:01.549 [info] [command][f12d5dd6-e547-4f27-8016-29bd343efc52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f12d5dd6-e547-4f27-8016-29bd343efc52""}\n2025-07-16 15:50:01.549 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:50:01.566 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][56db1bad-d878-4e25-ad12-c7ad55397bcf] socks forwarding established\n2025-07-16 15:50:01.595 [info] [command][f12d5dd6-e547-4f27-8016-29bd343efc52] Process exited with code 0\n2025-07-16 15:50:01.595 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][56db1bad-d878-4e25-ad12-c7ad55397bcf] socks connection closed\n2025-07-16 15:50:01.596 [info] [command][f12d5dd6-e547-4f27-8016-29bd343efc52] Socket close event received\n2025-07-16 15:50:01.611 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50269 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:51:01.600 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:51:01.603 [info] [command][baca1fe2-67ad-4cbc-9a26-6fe2b5bd5892] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""baca1fe2-67ad-4cbc-9a26-6fe2b5bd5892""}\n2025-07-16 15:51:01.604 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][718f622a-fb40-4e55-918b-48e6f5460bd4] received connection request\n2025-07-16 15:51:01.604 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:51:01.755 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][718f622a-fb40-4e55-918b-48e6f5460bd4] socks forwarding established\n2025-07-16 15:51:01.795 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][718f622a-fb40-4e55-918b-48e6f5460bd4] socks connection closed\n2025-07-16 15:51:01.795 [info] [command][baca1fe2-67ad-4cbc-9a26-6fe2b5bd5892] Process exited with code 0\n2025-07-16 15:51:01.795 [info] [command][baca1fe2-67ad-4cbc-9a26-6fe2b5bd5892] Socket close event received\n2025-07-16 15:51:01.944 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50319 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:52:01.800 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:52:01.803 [info] [command][3792b846-a072-451c-9778-d6d48dcdabd4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3792b846-a072-451c-9778-d6d48dcdabd4""}\n2025-07-16 15:52:01.804 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][81b22dcb-e7f3-48a9-984e-b02a2beb4768] received connection request\n2025-07-16 15:52:01.804 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:52:01.935 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][81b22dcb-e7f3-48a9-984e-b02a2beb4768] socks forwarding established\n2025-07-16 15:52:01.964 [info] [command][3792b846-a072-451c-9778-d6d48dcdabd4] Process exited with code 0\n2025-07-16 15:52:01.964 [info] [command][3792b846-a072-451c-9778-d6d48dcdabd4] Socket close event received\n2025-07-16 15:52:03.173 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][81b22dcb-e7f3-48a9-984e-b02a2beb4768] socks connection closed\n2025-07-16 15:52:03.173 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50364 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:53:01.970 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:53:01.971 [info] [command][3ef2be76-8664-4300-84a9-016c2e108a3f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3ef2be76-8664-4300-84a9-016c2e108a3f""}\n2025-07-16 15:53:01.972 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7f5a3c1d-1368-44cc-bb79-34c83e3f70e3] received connection request\n2025-07-16 15:53:01.972 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:53:01.988 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7f5a3c1d-1368-44cc-bb79-34c83e3f70e3] socks forwarding established\n2025-07-16 15:53:02.016 [info] [command][3ef2be76-8664-4300-84a9-016c2e108a3f] Process exited with code 0\n2025-07-16 15:53:02.016 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7f5a3c1d-1368-44cc-bb79-34c83e3f70e3] socks connection closed\n2025-07-16 15:53:02.016 [info] [command][3ef2be76-8664-4300-84a9-016c2e108a3f] Socket close event received\n2025-07-16 15:53:02.032 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50402 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:54:02.020 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:54:02.022 [info] [command][d33186bc-01f4-45f5-85ff-a0aa48d23380] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d33186bc-01f4-45f5-85ff-a0aa48d23380""}\n2025-07-16 15:54:02.022 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a7efe63a-8eae-4b3f-85f6-0aae71be1d4d] received connection request\n2025-07-16 15:54:02.023 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:54:02.169 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a7efe63a-8eae-4b3f-85f6-0aae71be1d4d] socks forwarding established\n2025-07-16 15:54:02.205 [info] [command][d33186bc-01f4-45f5-85ff-a0aa48d23380] Process exited with code 0\n2025-07-16 15:54:02.205 [info] [command][d33186bc-01f4-45f5-85ff-a0aa48d23380] Socket close event received\n2025-07-16 15:54:02.219 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a7efe63a-8eae-4b3f-85f6-0aae71be1d4d] socks connection closed\n2025-07-16 15:54:02.221 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50433 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:55:02.211 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:55:02.214 [info] [command][18e1b6f8-f1be-4407-bd72-fb376b573ef4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""18e1b6f8-f1be-4407-bd72-fb376b573ef4""}\n2025-07-16 15:55:02.214 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5cf526a8-cbda-4663-8a72-a2540b9cdb20] received connection request\n2025-07-16 15:55:02.215 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:55:02.363 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5cf526a8-cbda-4663-8a72-a2540b9cdb20] socks forwarding established\n2025-07-16 15:55:02.393 [info] [command][18e1b6f8-f1be-4407-bd72-fb376b573ef4] Process exited with code 0\n2025-07-16 15:55:02.393 [info] [command][18e1b6f8-f1be-4407-bd72-fb376b573ef4] Socket close event received\n2025-07-16 15:55:02.394 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5cf526a8-cbda-4663-8a72-a2540b9cdb20] socks connection closed\n2025-07-16 15:55:02.412 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50481 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:56:02.398 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:56:02.400 [info] [command][1a160e75-6267-46b3-ab7d-a9190e32b561] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1a160e75-6267-46b3-ab7d-a9190e32b561""}\n2025-07-16 15:56:02.401 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0e575343-2b68-4871-829b-fce7bfe96e81] received connection request\n2025-07-16 15:56:02.401 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:56:02.417 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0e575343-2b68-4871-829b-fce7bfe96e81] socks forwarding established\n2025-07-16 15:56:02.446 [info] [command][1a160e75-6267-46b3-ab7d-a9190e32b561] Process exited with code 0\n2025-07-16 15:56:02.447 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0e575343-2b68-4871-829b-fce7bfe96e81] socks connection closed\n2025-07-16 15:56:02.447 [info] [command][1a160e75-6267-46b3-ab7d-a9190e32b561] Socket close event received\n2025-07-16 15:56:02.464 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50510 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:57:02.451 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:57:02.453 [info] [command][b53ddb27-8972-41b0-9df2-4da833eae83b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b53ddb27-8972-41b0-9df2-4da833eae83b""}\n2025-07-16 15:57:02.454 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][384ab7e0-dcdd-4f04-92e3-e5d1f2959a5a] received connection request\n2025-07-16 15:57:02.455 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:57:02.472 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][384ab7e0-dcdd-4f04-92e3-e5d1f2959a5a] socks forwarding established\n2025-07-16 15:57:02.502 [info] [command][b53ddb27-8972-41b0-9df2-4da833eae83b] Process exited with code 0\n2025-07-16 15:57:02.502 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][384ab7e0-dcdd-4f04-92e3-e5d1f2959a5a] socks connection closed\n2025-07-16 15:57:02.502 [info] [command][b53ddb27-8972-41b0-9df2-4da833eae83b] Socket close event received\n2025-07-16 15:57:02.522 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50549 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:58:02.503 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:58:02.505 [info] [command][d6d6a70a-9d77-46ca-90d8-424c1f8477cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d6d6a70a-9d77-46ca-90d8-424c1f8477cb""}\n2025-07-16 15:58:02.505 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a625a595-ed97-494b-846f-5207d45cb423] received connection request\n2025-07-16 15:58:02.506 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:58:02.523 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a625a595-ed97-494b-846f-5207d45cb423] socks forwarding established\n2025-07-16 15:58:02.554 [info] [command][d6d6a70a-9d77-46ca-90d8-424c1f8477cb] Process exited with code 0\n2025-07-16 15:58:02.555 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a625a595-ed97-494b-846f-5207d45cb423] socks connection closed\n2025-07-16 15:58:02.555 [info] [command][d6d6a70a-9d77-46ca-90d8-424c1f8477cb] Socket close event received\n2025-07-16 15:58:02.572 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50592 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 15:59:02.558 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 15:59:02.559 [info] [command][d8c76df5-d307-42fe-8a35-7299ccbc179d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d8c76df5-d307-42fe-8a35-7299ccbc179d""}\n2025-07-16 15:59:02.560 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1306760a-fb3e-4677-8726-e2dff4f65b53] received connection request\n2025-07-16 15:59:02.560 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 15:59:02.577 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1306760a-fb3e-4677-8726-e2dff4f65b53] socks forwarding established\n2025-07-16 15:59:02.605 [info] [command][d8c76df5-d307-42fe-8a35-7299ccbc179d] Process exited with code 0\n2025-07-16 15:59:02.606 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1306760a-fb3e-4677-8726-e2dff4f65b53] socks connection closed\n2025-07-16 15:59:02.606 [info] [command][d8c76df5-d307-42fe-8a35-7299ccbc179d] Socket close event received\n2025-07-16 15:59:02.623 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50615 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:00:02.611 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:00:02.613 [info] [command][f191910b-2556-4742-8e4c-aea523f0303f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f191910b-2556-4742-8e4c-aea523f0303f""}\n2025-07-16 16:00:02.614 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][abfa6aec-e1ee-41fd-875f-bef1e210f295] received connection request\n2025-07-16 16:00:02.615 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:00:02.637 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][abfa6aec-e1ee-41fd-875f-bef1e210f295] socks forwarding established\n2025-07-16 16:00:02.666 [info] [command][f191910b-2556-4742-8e4c-aea523f0303f] Process exited with code 0\n2025-07-16 16:00:02.666 [info] [command][f191910b-2556-4742-8e4c-aea523f0303f] Socket close event received\n2025-07-16 16:00:02.673 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][abfa6aec-e1ee-41fd-875f-bef1e210f295] socks connection closed\n2025-07-16 16:00:02.683 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50663 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:01:02.668 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:01:02.671 [info] [command][d9a282bd-2ea6-4246-a728-7cf13cad4a8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d9a282bd-2ea6-4246-a728-7cf13cad4a8f""}\n2025-07-16 16:01:02.671 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][11b8d5f9-2fa1-4305-8cd5-f89ac81e89ad] received connection request\n2025-07-16 16:01:02.672 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:01:02.690 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][11b8d5f9-2fa1-4305-8cd5-f89ac81e89ad] socks forwarding established\n2025-07-16 16:01:02.718 [info] [command][d9a282bd-2ea6-4246-a728-7cf13cad4a8f] Process exited with code 0\n2025-07-16 16:01:02.719 [info] [command][d9a282bd-2ea6-4246-a728-7cf13cad4a8f] Socket close event received\n2025-07-16 16:01:02.720 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][11b8d5f9-2fa1-4305-8cd5-f89ac81e89ad] socks connection closed\n2025-07-16 16:01:02.737 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50696 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:02:02.724 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:02:02.726 [info] [command][62928e21-b9b0-46a7-99c0-023d61b9be9b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""62928e21-b9b0-46a7-99c0-023d61b9be9b""}\n2025-07-16 16:02:02.727 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][083fc3d3-ce80-4287-b605-e44979e75114] received connection request\n2025-07-16 16:02:02.727 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:02:02.769 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][083fc3d3-ce80-4287-b605-e44979e75114] socks forwarding established\n2025-07-16 16:02:02.803 [info] [command][62928e21-b9b0-46a7-99c0-023d61b9be9b] Process exited with code 0\n2025-07-16 16:02:02.803 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][083fc3d3-ce80-4287-b605-e44979e75114] socks connection closed\n2025-07-16 16:02:02.803 [info] [command][62928e21-b9b0-46a7-99c0-023d61b9be9b] Socket close event received\n2025-07-16 16:02:02.948 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50737 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:03:02.808 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:03:02.810 [info] [command][8a5247c3-b71d-4e79-aa68-c8e36028ccdb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8a5247c3-b71d-4e79-aa68-c8e36028ccdb""}\n2025-07-16 16:03:02.811 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][dcf06699-b7b1-4e4d-af44-ec193ee6712a] received connection request\n2025-07-16 16:03:02.812 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:03:02.829 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dcf06699-b7b1-4e4d-af44-ec193ee6712a] socks forwarding established\n2025-07-16 16:03:02.858 [info] [command][8a5247c3-b71d-4e79-aa68-c8e36028ccdb] Process exited with code 0\n2025-07-16 16:03:02.858 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dcf06699-b7b1-4e4d-af44-ec193ee6712a] socks connection closed\n2025-07-16 16:03:02.859 [info] [command][8a5247c3-b71d-4e79-aa68-c8e36028ccdb] Socket close event received\n2025-07-16 16:03:02.876 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50781 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:04:02.863 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:04:02.864 [info] [command][46b2908c-e7a6-48c4-9b1f-d0e285e1cef7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""46b2908c-e7a6-48c4-9b1f-d0e285e1cef7""}\n2025-07-16 16:04:02.864 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][00e6bb14-01cf-42e7-987b-e98d4893b9ac] received connection request\n2025-07-16 16:04:02.865 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:04:02.938 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][00e6bb14-01cf-42e7-987b-e98d4893b9ac] socks forwarding established\n2025-07-16 16:04:02.970 [info] [command][46b2908c-e7a6-48c4-9b1f-d0e285e1cef7] Process exited with code 0\n2025-07-16 16:04:02.970 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][00e6bb14-01cf-42e7-987b-e98d4893b9ac] socks connection closed\n2025-07-16 16:04:02.970 [info] [command][46b2908c-e7a6-48c4-9b1f-d0e285e1cef7] Socket close event received\n2025-07-16 16:04:02.987 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50809 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:05:02.975 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:05:02.978 [info] [command][fc1ea8cb-1adc-4b19-ad22-95dbba33eadf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fc1ea8cb-1adc-4b19-ad22-95dbba33eadf""}\n2025-07-16 16:05:02.979 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b609d919-0b19-4199-9427-5b8739c36617] received connection request\n2025-07-16 16:05:02.980 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:05:03.113 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b609d919-0b19-4199-9427-5b8739c36617] socks forwarding established\n2025-07-16 16:05:03.145 [info] [command][fc1ea8cb-1adc-4b19-ad22-95dbba33eadf] Process exited with code 0\n2025-07-16 16:05:03.145 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b609d919-0b19-4199-9427-5b8739c36617] socks connection closed\n2025-07-16 16:05:03.145 [info] [command][fc1ea8cb-1adc-4b19-ad22-95dbba33eadf] Socket close event received\n2025-07-16 16:05:03.289 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50871 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:06:03.151 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:06:03.155 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][87df00de-4c6e-4778-beee-1f8cdfa2b58d] received connection request\n2025-07-16 16:06:03.156 [info] [command][2a9aa7e1-cb0f-4590-ae66-3697ce738328] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2a9aa7e1-cb0f-4590-ae66-3697ce738328""}\n2025-07-16 16:06:03.159 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:06:03.180 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][87df00de-4c6e-4778-beee-1f8cdfa2b58d] socks forwarding established\n2025-07-16 16:06:03.323 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][87df00de-4c6e-4778-beee-1f8cdfa2b58d] socks connection closed\n2025-07-16 16:06:03.323 [info] [command][2a9aa7e1-cb0f-4590-ae66-3697ce738328] Process exited with code 0\n2025-07-16 16:06:03.323 [info] [command][2a9aa7e1-cb0f-4590-ae66-3697ce738328] Socket close event received\n2025-07-16 16:06:03.338 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50896 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:07:03.328 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:07:03.331 [info] [command][5b42c6e5-d1c6-4ad4-84be-4dacf2d3c8ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5b42c6e5-d1c6-4ad4-84be-4dacf2d3c8ca""}\n2025-07-16 16:07:03.331 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][88b57fae-5b8f-4081-9651-bda03c5dd47c] received connection request\n2025-07-16 16:07:03.333 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:07:03.435 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][88b57fae-5b8f-4081-9651-bda03c5dd47c] socks forwarding established\n2025-07-16 16:07:03.466 [info] [command][5b42c6e5-d1c6-4ad4-84be-4dacf2d3c8ca] Process exited with code 0\n2025-07-16 16:07:03.466 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][88b57fae-5b8f-4081-9651-bda03c5dd47c] socks connection closed\n2025-07-16 16:07:03.467 [info] [command][5b42c6e5-d1c6-4ad4-84be-4dacf2d3c8ca] Socket close event received\n2025-07-16 16:07:03.614 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 50957 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:08:03.467 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:08:03.469 [info] [command][f2925bae-bdad-49c0-b418-62af6b5972e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f2925bae-bdad-49c0-b418-62af6b5972e7""}\n2025-07-16 16:08:03.469 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][84b06f96-9419-4ebd-a134-96cbe6982528] received connection request\n2025-07-16 16:08:03.470 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:08:03.500 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][84b06f96-9419-4ebd-a134-96cbe6982528] socks forwarding established\n2025-07-16 16:08:03.531 [info] [command][f2925bae-bdad-49c0-b418-62af6b5972e7] Process exited with code 0\n2025-07-16 16:08:03.531 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][84b06f96-9419-4ebd-a134-96cbe6982528] socks connection closed\n2025-07-16 16:08:03.531 [info] [command][f2925bae-bdad-49c0-b418-62af6b5972e7] Socket close event received\n2025-07-16 16:08:03.548 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51005 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:09:03.536 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:09:03.538 [info] [command][1622a033-1249-4c4e-bb11-f99cd9e34e73] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1622a033-1249-4c4e-bb11-f99cd9e34e73""}\n2025-07-16 16:09:03.538 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][85738efd-a5f4-473e-996a-5aa8ddc9daad] received connection request\n2025-07-16 16:09:03.539 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:09:03.581 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][85738efd-a5f4-473e-996a-5aa8ddc9daad] socks forwarding established\n2025-07-16 16:09:03.611 [info] [command][1622a033-1249-4c4e-bb11-f99cd9e34e73] Process exited with code 0\n2025-07-16 16:09:03.611 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][85738efd-a5f4-473e-996a-5aa8ddc9daad] socks connection closed\n2025-07-16 16:09:03.611 [info] [command][1622a033-1249-4c4e-bb11-f99cd9e34e73] Socket close event received\n2025-07-16 16:09:03.631 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51063 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:10:03.617 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:10:03.619 [info] [command][f65bd4cc-b27a-44f8-a28f-479b0106d535] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f65bd4cc-b27a-44f8-a28f-479b0106d535""}\n2025-07-16 16:10:03.620 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7ae2df22-e745-49cb-a28a-91f1f6bd9018] received connection request\n2025-07-16 16:10:03.620 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 16:10:03.620 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:10:03.638 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7ae2df22-e745-49cb-a28a-91f1f6bd9018] socks forwarding established\n2025-07-16 16:10:03.778 [info] [command][f65bd4cc-b27a-44f8-a28f-479b0106d535] Process exited with code 0\n2025-07-16 16:10:03.779 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7ae2df22-e745-49cb-a28a-91f1f6bd9018] socks connection closed\n2025-07-16 16:10:03.779 [info] [command][f65bd4cc-b27a-44f8-a28f-479b0106d535] Socket close event received\n2025-07-16 16:10:03.794 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51130 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:11:03.781 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:11:03.783 [info] [command][e993603e-aa5d-4731-9b5e-042901da4234] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e993603e-aa5d-4731-9b5e-042901da4234""}\n2025-07-16 16:11:03.784 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8bfcc0b4-46f6-48e3-b53e-02ce7923bf6e] received connection request\n2025-07-16 16:11:03.784 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:11:03.801 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8bfcc0b4-46f6-48e3-b53e-02ce7923bf6e] socks forwarding established\n2025-07-16 16:11:03.834 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8bfcc0b4-46f6-48e3-b53e-02ce7923bf6e] socks connection closed\n2025-07-16 16:11:03.834 [info] [command][e993603e-aa5d-4731-9b5e-042901da4234] Process exited with code 0\n2025-07-16 16:11:03.834 [info] [command][e993603e-aa5d-4731-9b5e-042901da4234] Socket close event received\n2025-07-16 16:11:03.850 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51167 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:12:03.835 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:12:03.837 [info] [command][315064cf-8427-4bdc-a15b-8c4cb29964b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""315064cf-8427-4bdc-a15b-8c4cb29964b4""}\n2025-07-16 16:12:03.837 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b23feece-1334-41d9-8453-ebef2af1a60f] received connection request\n2025-07-16 16:12:03.838 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:12:03.855 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b23feece-1334-41d9-8453-ebef2af1a60f] socks forwarding established\n2025-07-16 16:12:03.888 [info] [command][315064cf-8427-4bdc-a15b-8c4cb29964b4] Process exited with code 0\n2025-07-16 16:12:03.888 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b23feece-1334-41d9-8453-ebef2af1a60f] socks connection closed\n2025-07-16 16:12:03.889 [info] [command][315064cf-8427-4bdc-a15b-8c4cb29964b4] Socket close event received\n2025-07-16 16:12:03.905 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51227 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:13:03.890 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:13:03.891 [info] [command][34396a99-1d5c-46bc-8978-9bf5b3ff5ce9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""34396a99-1d5c-46bc-8978-9bf5b3ff5ce9""}\n2025-07-16 16:13:03.892 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c93400e3-ea26-474a-b5fc-9ad8ad7f918c] received connection request\n2025-07-16 16:13:03.892 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:13:03.908 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c93400e3-ea26-474a-b5fc-9ad8ad7f918c] socks forwarding established\n2025-07-16 16:13:03.938 [info] [command][34396a99-1d5c-46bc-8978-9bf5b3ff5ce9] Process exited with code 0\n2025-07-16 16:13:03.938 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c93400e3-ea26-474a-b5fc-9ad8ad7f918c] socks connection closed\n2025-07-16 16:13:03.938 [info] [command][34396a99-1d5c-46bc-8978-9bf5b3ff5ce9] Socket close event received\n2025-07-16 16:13:03.956 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51276 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:14:03.943 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:14:03.943 [info] [command][26500ed8-c652-428a-a13b-16c00c5efd09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""26500ed8-c652-428a-a13b-16c00c5efd09""}\n2025-07-16 16:14:03.944 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6cd1928e-f8f3-4910-a083-d5c313319d37] received connection request\n2025-07-16 16:14:03.944 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:14:03.959 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6cd1928e-f8f3-4910-a083-d5c313319d37] socks forwarding established\n2025-07-16 16:14:03.988 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6cd1928e-f8f3-4910-a083-d5c313319d37] socks connection closed\n2025-07-16 16:14:03.988 [info] [command][26500ed8-c652-428a-a13b-16c00c5efd09] Process exited with code 0\n2025-07-16 16:14:03.988 [info] [command][26500ed8-c652-428a-a13b-16c00c5efd09] Socket close event received\n2025-07-16 16:14:04.003 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51332 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:15:03.994 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:15:03.996 [info] [command][d218c3b4-8e41-443e-811d-b3f294acc4e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d218c3b4-8e41-443e-811d-b3f294acc4e2""}\n2025-07-16 16:15:03.997 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c3ce1eed-d537-4974-850c-c52ea8207366] received connection request\n2025-07-16 16:15:03.998 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:15:04.015 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c3ce1eed-d537-4974-850c-c52ea8207366] socks forwarding established\n2025-07-16 16:15:04.045 [info] [command][d218c3b4-8e41-443e-811d-b3f294acc4e2] Process exited with code 0\n2025-07-16 16:15:04.045 [info] [command][d218c3b4-8e41-443e-811d-b3f294acc4e2] Socket close event received\n2025-07-16 16:15:04.046 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c3ce1eed-d537-4974-850c-c52ea8207366] socks connection closed\n2025-07-16 16:15:04.064 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51392 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:16:04.050 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:16:04.052 [info] [command][fcf029f2-6d69-4eb2-8d22-43404a78ffc2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fcf029f2-6d69-4eb2-8d22-43404a78ffc2""}\n2025-07-16 16:16:04.052 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][06d8c88f-df3f-425d-ba4d-e5546387be47] received connection request\n2025-07-16 16:16:04.052 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:16:04.070 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][06d8c88f-df3f-425d-ba4d-e5546387be47] socks forwarding established\n2025-07-16 16:16:04.099 [info] [command][fcf029f2-6d69-4eb2-8d22-43404a78ffc2] Process exited with code 0\n2025-07-16 16:16:04.099 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][06d8c88f-df3f-425d-ba4d-e5546387be47] socks connection closed\n2025-07-16 16:16:04.099 [info] [command][fcf029f2-6d69-4eb2-8d22-43404a78ffc2] Socket close event received\n2025-07-16 16:16:04.116 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51419 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:17:04.101 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:17:04.103 [info] [command][60ceb486-387c-4cd3-afd7-eea03d2daa33] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""60ceb486-387c-4cd3-afd7-eea03d2daa33""}\n2025-07-16 16:17:04.103 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][96ac5c1d-e257-4a4f-92cd-ad2dc9d58c23] received connection request\n2025-07-16 16:17:04.104 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:17:04.120 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][96ac5c1d-e257-4a4f-92cd-ad2dc9d58c23] socks forwarding established\n2025-07-16 16:17:04.150 [info] [command][60ceb486-387c-4cd3-afd7-eea03d2daa33] Process exited with code 0\n2025-07-16 16:17:04.150 [info] [command][60ceb486-387c-4cd3-afd7-eea03d2daa33] Socket close event received\n2025-07-16 16:17:04.151 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][96ac5c1d-e257-4a4f-92cd-ad2dc9d58c23] socks connection closed\n2025-07-16 16:17:04.167 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51464 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:18:04.156 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:18:04.159 [info] [command][38c54a05-dd8c-4f1a-b6b5-740d2570ed43] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""38c54a05-dd8c-4f1a-b6b5-740d2570ed43""}\n2025-07-16 16:18:04.160 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d66536c0-9de0-45df-a5a6-a805dfe7eee7] received connection request\n2025-07-16 16:18:04.161 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 16:18:04.161 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:18:04.179 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d66536c0-9de0-45df-a5a6-a805dfe7eee7] socks forwarding established\n2025-07-16 16:18:04.208 [info] [command][38c54a05-dd8c-4f1a-b6b5-740d2570ed43] Process exited with code 0\n2025-07-16 16:18:04.209 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d66536c0-9de0-45df-a5a6-a805dfe7eee7] socks connection closed\n2025-07-16 16:18:04.209 [info] [command][38c54a05-dd8c-4f1a-b6b5-740d2570ed43] Socket close event received\n2025-07-16 16:18:04.225 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51541 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:19:04.214 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:19:04.217 [info] [command][a75ba46a-9b98-4300-a498-86889da9840f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a75ba46a-9b98-4300-a498-86889da9840f""}\n2025-07-16 16:19:04.219 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][798f7ed7-4e3a-471d-b07d-3d6c866bd922] received connection request\n2025-07-16 16:19:04.221 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:19:04.238 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][798f7ed7-4e3a-471d-b07d-3d6c866bd922] socks forwarding established\n2025-07-16 16:19:04.269 [info] [command][a75ba46a-9b98-4300-a498-86889da9840f] Process exited with code 0\n2025-07-16 16:19:04.269 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][798f7ed7-4e3a-471d-b07d-3d6c866bd922] socks connection closed\n2025-07-16 16:19:04.269 [info] [command][a75ba46a-9b98-4300-a498-86889da9840f] Socket close event received\n2025-07-16 16:19:04.285 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51593 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:20:04.272 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:20:04.274 [info] [command][49c9723d-a353-49f7-901d-b0d8dbde2745] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""49c9723d-a353-49f7-901d-b0d8dbde2745""}\n2025-07-16 16:20:04.275 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][63deb85b-d96e-4e93-8a7a-f35b438a4d17] received connection request\n2025-07-16 16:20:04.275 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:20:04.290 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][63deb85b-d96e-4e93-8a7a-f35b438a4d17] socks forwarding established\n2025-07-16 16:20:04.316 [info] [command][49c9723d-a353-49f7-901d-b0d8dbde2745] Process exited with code 0\n2025-07-16 16:20:04.316 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][63deb85b-d96e-4e93-8a7a-f35b438a4d17] socks connection closed\n2025-07-16 16:20:04.316 [info] [command][49c9723d-a353-49f7-901d-b0d8dbde2745] Socket close event received\n2025-07-16 16:20:04.333 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51635 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:21:04.320 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:21:04.322 [info] [command][5391f9d5-b710-4b50-bbd7-9b0760f01cd1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5391f9d5-b710-4b50-bbd7-9b0760f01cd1""}\n2025-07-16 16:21:04.323 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d61a4f39-71a2-4275-9e2b-d207627afec1] received connection request\n2025-07-16 16:21:04.323 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:21:04.346 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d61a4f39-71a2-4275-9e2b-d207627afec1] socks forwarding established\n2025-07-16 16:21:04.373 [info] [command][5391f9d5-b710-4b50-bbd7-9b0760f01cd1] Process exited with code 0\n2025-07-16 16:21:04.373 [info] [command][5391f9d5-b710-4b50-bbd7-9b0760f01cd1] Socket close event received\n2025-07-16 16:21:04.374 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d61a4f39-71a2-4275-9e2b-d207627afec1] socks connection closed\n2025-07-16 16:21:04.522 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51662 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:22:04.375 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:22:04.376 [info] [command][7a901cfa-77d7-4f96-b958-5225d4a94dc7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7a901cfa-77d7-4f96-b958-5225d4a94dc7""}\n2025-07-16 16:22:04.376 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d7696b9a-e2c0-46bd-8c92-79b7b84cfa79] received connection request\n2025-07-16 16:22:04.376 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:22:04.392 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d7696b9a-e2c0-46bd-8c92-79b7b84cfa79] socks forwarding established\n2025-07-16 16:22:04.558 [info] [command][7a901cfa-77d7-4f96-b958-5225d4a94dc7] Process exited with code 0\n2025-07-16 16:22:04.558 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d7696b9a-e2c0-46bd-8c92-79b7b84cfa79] socks connection closed\n2025-07-16 16:22:04.559 [info] [command][7a901cfa-77d7-4f96-b958-5225d4a94dc7] Socket close event received\n2025-07-16 16:22:04.686 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51700 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:23:04.563 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:23:04.566 [info] [command][8337a047-1aa9-4745-9895-2c6f74b0ea4d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8337a047-1aa9-4745-9895-2c6f74b0ea4d""}\n2025-07-16 16:23:04.566 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e184d164-b22b-44e8-b087-6a1c80351ff7] received connection request\n2025-07-16 16:23:04.567 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:23:04.655 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e184d164-b22b-44e8-b087-6a1c80351ff7] socks forwarding established\n2025-07-16 16:23:04.684 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e184d164-b22b-44e8-b087-6a1c80351ff7] socks connection closed\n2025-07-16 16:23:04.684 [info] [command][8337a047-1aa9-4745-9895-2c6f74b0ea4d] Process exited with code 0\n2025-07-16 16:23:04.684 [info] [command][8337a047-1aa9-4745-9895-2c6f74b0ea4d] Socket close event received\n2025-07-16 16:23:04.832 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51753 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:24:04.690 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:24:04.692 [info] [command][70f4cc66-12bf-4ee0-b821-986b4aede77d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""70f4cc66-12bf-4ee0-b821-986b4aede77d""}\n2025-07-16 16:24:04.692 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][742b595f-1e52-4a34-be8f-1d39d8d297e1] received connection request\n2025-07-16 16:24:04.693 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 16:24:04.693 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:24:04.710 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][742b595f-1e52-4a34-be8f-1d39d8d297e1] socks forwarding established\n2025-07-16 16:24:04.745 [info] [command][70f4cc66-12bf-4ee0-b821-986b4aede77d] Process exited with code 0\n2025-07-16 16:24:04.745 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][742b595f-1e52-4a34-be8f-1d39d8d297e1] socks connection closed\n2025-07-16 16:24:04.745 [info] [command][70f4cc66-12bf-4ee0-b821-986b4aede77d] Socket close event received\n2025-07-16 16:24:04.763 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51775 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:25:04.751 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:25:04.754 [info] [command][f696772c-6f90-4162-9743-52c67d2a451e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f696772c-6f90-4162-9743-52c67d2a451e""}\n2025-07-16 16:25:04.755 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][aaa2666a-7c97-4348-b6a6-beec53d72d53] received connection request\n2025-07-16 16:25:04.755 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:25:04.772 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aaa2666a-7c97-4348-b6a6-beec53d72d53] socks forwarding established\n2025-07-16 16:25:04.804 [info] [command][f696772c-6f90-4162-9743-52c67d2a451e] Process exited with code 0\n2025-07-16 16:25:04.804 [info] [command][f696772c-6f90-4162-9743-52c67d2a451e] Socket close event received\n2025-07-16 16:25:04.805 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aaa2666a-7c97-4348-b6a6-beec53d72d53] socks connection closed\n2025-07-16 16:25:04.842 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51813 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:26:04.809 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:26:04.811 [info] [command][bccaefaf-cd1c-44b5-ac31-83f0a2a2fc6d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bccaefaf-cd1c-44b5-ac31-83f0a2a2fc6d""}\n2025-07-16 16:26:04.812 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a87ffe75-4f0d-497a-b45c-af6ab419c47f] received connection request\n2025-07-16 16:26:04.813 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:26:04.829 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a87ffe75-4f0d-497a-b45c-af6ab419c47f] socks forwarding established\n2025-07-16 16:26:04.856 [info] [command][bccaefaf-cd1c-44b5-ac31-83f0a2a2fc6d] Process exited with code 0\n2025-07-16 16:26:04.856 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a87ffe75-4f0d-497a-b45c-af6ab419c47f] socks connection closed\n2025-07-16 16:26:04.857 [info] [command][bccaefaf-cd1c-44b5-ac31-83f0a2a2fc6d] Socket close event received\n2025-07-16 16:26:04.874 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51844 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:27:04.862 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:27:04.864 [info] [command][93ea7ee1-53af-41ee-a4e4-b0c7d1c1f307] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""93ea7ee1-53af-41ee-a4e4-b0c7d1c1f307""}\n2025-07-16 16:27:04.865 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d9144c30-e53b-4610-9725-0186d50ce3c6] received connection request\n2025-07-16 16:27:04.866 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:27:04.884 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d9144c30-e53b-4610-9725-0186d50ce3c6] socks forwarding established\n2025-07-16 16:27:04.911 [info] [command][93ea7ee1-53af-41ee-a4e4-b0c7d1c1f307] Process exited with code 0\n2025-07-16 16:27:04.911 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d9144c30-e53b-4610-9725-0186d50ce3c6] socks connection closed\n2025-07-16 16:27:04.911 [info] [command][93ea7ee1-53af-41ee-a4e4-b0c7d1c1f307] Socket close event received\n2025-07-16 16:27:04.928 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51884 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:28:04.912 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:28:04.914 [info] [command][ed27d8a2-e5be-4b74-a2b3-a7a12e9ba66c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ed27d8a2-e5be-4b74-a2b3-a7a12e9ba66c""}\n2025-07-16 16:28:04.915 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][62e95245-4413-4d18-90b8-2656e16d191a] received connection request\n2025-07-16 16:28:04.915 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:28:04.932 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][62e95245-4413-4d18-90b8-2656e16d191a] socks forwarding established\n2025-07-16 16:28:04.960 [info] [command][ed27d8a2-e5be-4b74-a2b3-a7a12e9ba66c] Process exited with code 0\n2025-07-16 16:28:04.960 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][62e95245-4413-4d18-90b8-2656e16d191a] socks connection closed\n2025-07-16 16:28:04.961 [info] [command][ed27d8a2-e5be-4b74-a2b3-a7a12e9ba66c] Socket close event received\n2025-07-16 16:28:04.977 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51926 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:29:04.965 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:29:04.967 [info] [command][3d3bbcca-2d09-42fa-a844-cde407ba3980] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3d3bbcca-2d09-42fa-a844-cde407ba3980""}\n2025-07-16 16:29:04.968 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][505752b8-4912-4094-bb23-9590b719aaec] received connection request\n2025-07-16 16:29:04.969 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:29:04.989 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][505752b8-4912-4094-bb23-9590b719aaec] socks forwarding established\n2025-07-16 16:29:05.014 [info] [command][3d3bbcca-2d09-42fa-a844-cde407ba3980] Process exited with code 0\n2025-07-16 16:29:05.014 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][505752b8-4912-4094-bb23-9590b719aaec] socks connection closed\n2025-07-16 16:29:05.015 [info] [command][3d3bbcca-2d09-42fa-a844-cde407ba3980] Socket close event received\n2025-07-16 16:29:05.031 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 51955 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:30:05.020 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:30:05.021 [info] [command][9b57c8ae-989e-4047-834d-c5e80f1e75f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9b57c8ae-989e-4047-834d-c5e80f1e75f2""}\n2025-07-16 16:30:05.022 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e2a9500e-32c7-4586-961f-6b18e3bb21c9] received connection request\n2025-07-16 16:30:05.022 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:30:05.042 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e2a9500e-32c7-4586-961f-6b18e3bb21c9] socks forwarding established\n2025-07-16 16:30:05.070 [info] [command][9b57c8ae-989e-4047-834d-c5e80f1e75f2] Process exited with code 0\n2025-07-16 16:30:05.071 [info] [command][9b57c8ae-989e-4047-834d-c5e80f1e75f2] Socket close event received\n2025-07-16 16:30:05.071 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e2a9500e-32c7-4586-961f-6b18e3bb21c9] socks connection closed\n2025-07-16 16:30:05.087 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52010 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:31:05.077 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:31:05.078 [info] [command][5dea0146-4540-4849-820f-febccb28dc32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5dea0146-4540-4849-820f-febccb28dc32""}\n2025-07-16 16:31:05.079 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6db78e1a-dec7-4859-908c-2c4afbdad124] received connection request\n2025-07-16 16:31:05.079 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:31:05.099 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6db78e1a-dec7-4859-908c-2c4afbdad124] socks forwarding established\n2025-07-16 16:31:05.124 [info] [command][5dea0146-4540-4849-820f-febccb28dc32] Process exited with code 0\n2025-07-16 16:31:05.124 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6db78e1a-dec7-4859-908c-2c4afbdad124] socks connection closed\n2025-07-16 16:31:05.125 [info] [command][5dea0146-4540-4849-820f-febccb28dc32] Socket close event received\n2025-07-16 16:31:05.140 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52040 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:32:05.130 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:32:05.132 [info] [command][0e40f826-d832-4918-aa28-1ae8de0cb58f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0e40f826-d832-4918-aa28-1ae8de0cb58f""}\n2025-07-16 16:32:05.132 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7c06cd02-b513-4ea4-a1cd-2edeca8b8c95] received connection request\n2025-07-16 16:32:05.133 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:32:05.206 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7c06cd02-b513-4ea4-a1cd-2edeca8b8c95] socks forwarding established\n2025-07-16 16:32:05.317 [info] [command][0e40f826-d832-4918-aa28-1ae8de0cb58f] Process exited with code 0\n2025-07-16 16:32:05.318 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7c06cd02-b513-4ea4-a1cd-2edeca8b8c95] socks connection closed\n2025-07-16 16:32:05.318 [info] [command][0e40f826-d832-4918-aa28-1ae8de0cb58f] Socket close event received\n2025-07-16 16:32:05.343 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52085 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:33:05.320 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:33:05.322 [info] [command][6ccf6927-93fc-4c76-a636-136d9d5e9164] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6ccf6927-93fc-4c76-a636-136d9d5e9164""}\n2025-07-16 16:33:05.323 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][75c7e38c-2f7e-4d82-9304-d9015478be5a] received connection request\n2025-07-16 16:33:05.324 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:33:05.339 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][75c7e38c-2f7e-4d82-9304-d9015478be5a] socks forwarding established\n2025-07-16 16:33:05.368 [info] [command][6ccf6927-93fc-4c76-a636-136d9d5e9164] Process exited with code 0\n2025-07-16 16:33:05.368 [info] [command][6ccf6927-93fc-4c76-a636-136d9d5e9164] Socket close event received\n2025-07-16 16:33:05.369 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][75c7e38c-2f7e-4d82-9304-d9015478be5a] socks connection closed\n2025-07-16 16:33:05.384 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52139 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:34:05.375 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:34:05.377 [info] [command][4041ef07-497d-48ad-a930-05f338153e08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4041ef07-497d-48ad-a930-05f338153e08""}\n2025-07-16 16:34:05.378 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][75346b8d-a1de-4d8f-9f1d-4d4c9aa67df5] received connection request\n2025-07-16 16:34:05.379 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:34:05.398 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][75346b8d-a1de-4d8f-9f1d-4d4c9aa67df5] socks forwarding established\n2025-07-16 16:34:05.427 [info] [command][4041ef07-497d-48ad-a930-05f338153e08] Process exited with code 0\n2025-07-16 16:34:05.427 [info] [command][4041ef07-497d-48ad-a930-05f338153e08] Socket close event received\n2025-07-16 16:34:05.428 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][75346b8d-a1de-4d8f-9f1d-4d4c9aa67df5] socks connection closed\n2025-07-16 16:34:05.443 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52163 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:35:05.431 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:35:05.432 [info] [command][6cd5d88f-be51-408c-b7a1-34a520f2158a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6cd5d88f-be51-408c-b7a1-34a520f2158a""}\n2025-07-16 16:35:05.433 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][17617eb6-9a65-4857-a4b6-ba6bfe141944] received connection request\n2025-07-16 16:35:05.433 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:35:05.450 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][17617eb6-9a65-4857-a4b6-ba6bfe141944] socks forwarding established\n2025-07-16 16:35:05.479 [info] [command][6cd5d88f-be51-408c-b7a1-34a520f2158a] Process exited with code 0\n2025-07-16 16:35:05.479 [info] [command][6cd5d88f-be51-408c-b7a1-34a520f2158a] Socket close event received\n2025-07-16 16:35:05.479 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][17617eb6-9a65-4857-a4b6-ba6bfe141944] socks connection closed\n2025-07-16 16:35:05.496 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52211 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:36:05.484 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:36:05.487 [info] [command][75de035e-a42c-4892-ae01-5f3e00725a42] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""75de035e-a42c-4892-ae01-5f3e00725a42""}\n2025-07-16 16:36:05.488 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][665bb8ee-7a92-4730-8c5f-3729c43f48d0] received connection request\n2025-07-16 16:36:05.489 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:36:05.508 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][665bb8ee-7a92-4730-8c5f-3729c43f48d0] socks forwarding established\n2025-07-16 16:36:05.540 [info] [command][75de035e-a42c-4892-ae01-5f3e00725a42] Process exited with code 0\n2025-07-16 16:36:05.540 [info] [command][75de035e-a42c-4892-ae01-5f3e00725a42] Socket close event received\n2025-07-16 16:36:05.541 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][665bb8ee-7a92-4730-8c5f-3729c43f48d0] socks connection closed\n2025-07-16 16:36:05.557 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52233 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:37:05.550 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:37:05.552 [info] [command][3eab2fb8-5b4f-4080-a4ea-21ce981faaa8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3eab2fb8-5b4f-4080-a4ea-21ce981faaa8""}\n2025-07-16 16:37:05.553 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1516b8be-9894-465c-aa54-4852ae7036df] received connection request\n2025-07-16 16:37:05.554 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:37:05.570 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1516b8be-9894-465c-aa54-4852ae7036df] socks forwarding established\n2025-07-16 16:37:05.598 [info] [command][3eab2fb8-5b4f-4080-a4ea-21ce981faaa8] Process exited with code 0\n2025-07-16 16:37:05.599 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1516b8be-9894-465c-aa54-4852ae7036df] socks connection closed\n2025-07-16 16:37:05.599 [info] [command][3eab2fb8-5b4f-4080-a4ea-21ce981faaa8] Socket close event received\n2025-07-16 16:37:05.615 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52272 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:38:05.607 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:38:05.610 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c11352e5-ab92-4610-8ddc-4fe4d6225ce9] received connection request\n2025-07-16 16:38:05.610 [info] [command][c1527796-ab06-4f08-92e2-0e49d0ab80b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c1527796-ab06-4f08-92e2-0e49d0ab80b5""}\n2025-07-16 16:38:05.610 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:38:05.628 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c11352e5-ab92-4610-8ddc-4fe4d6225ce9] socks forwarding established\n2025-07-16 16:38:05.658 [info] [command][c1527796-ab06-4f08-92e2-0e49d0ab80b5] Process exited with code 0\n2025-07-16 16:38:05.659 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c11352e5-ab92-4610-8ddc-4fe4d6225ce9] socks connection closed\n2025-07-16 16:38:05.659 [info] [command][c1527796-ab06-4f08-92e2-0e49d0ab80b5] Socket close event received\n2025-07-16 16:38:05.676 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52305 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:39:05.669 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:39:05.670 [info] [command][22d433d4-234d-47fc-932f-ce3d31e52c5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""22d433d4-234d-47fc-932f-ce3d31e52c5b""}\n2025-07-16 16:39:05.671 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c4cf25e6-2102-4d9b-a36a-969a06c61e5d] received connection request\n2025-07-16 16:39:05.672 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:39:05.689 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c4cf25e6-2102-4d9b-a36a-969a06c61e5d] socks forwarding established\n2025-07-16 16:39:05.717 [info] [command][22d433d4-234d-47fc-932f-ce3d31e52c5b] Process exited with code 0\n2025-07-16 16:39:05.717 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c4cf25e6-2102-4d9b-a36a-969a06c61e5d] socks connection closed\n2025-07-16 16:39:05.717 [info] [command][22d433d4-234d-47fc-932f-ce3d31e52c5b] Socket close event received\n2025-07-16 16:39:05.736 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52329 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:40:05.721 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:40:05.722 [info] [command][0db57c66-cd1a-4f4a-ad64-5a8aef01eed3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0db57c66-cd1a-4f4a-ad64-5a8aef01eed3""}\n2025-07-16 16:40:05.723 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][092cb1a4-e889-47a0-acf5-ebf73f606288] received connection request\n2025-07-16 16:40:05.723 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 16:40:05.723 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:40:05.739 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][092cb1a4-e889-47a0-acf5-ebf73f606288] socks forwarding established\n2025-07-16 16:40:05.768 [info] [command][0db57c66-cd1a-4f4a-ad64-5a8aef01eed3] Process exited with code 0\n2025-07-16 16:40:05.768 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][092cb1a4-e889-47a0-acf5-ebf73f606288] socks connection closed\n2025-07-16 16:40:05.768 [info] [command][0db57c66-cd1a-4f4a-ad64-5a8aef01eed3] Socket close event received\n2025-07-16 16:40:05.784 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52407 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:41:05.767 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:41:05.769 [info] [command][45e3603b-d1da-4277-98f6-c8f0456273da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""45e3603b-d1da-4277-98f6-c8f0456273da""}\n2025-07-16 16:41:05.769 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d5c6c671-99d4-4485-be35-0026a99178e2] received connection request\n2025-07-16 16:41:05.769 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:41:05.785 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d5c6c671-99d4-4485-be35-0026a99178e2] socks forwarding established\n2025-07-16 16:41:05.814 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d5c6c671-99d4-4485-be35-0026a99178e2] socks connection closed\n2025-07-16 16:41:05.814 [info] [command][45e3603b-d1da-4277-98f6-c8f0456273da] Process exited with code 0\n2025-07-16 16:41:05.815 [info] [command][45e3603b-d1da-4277-98f6-c8f0456273da] Socket close event received\n2025-07-16 16:41:05.831 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52462 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:42:05.816 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:42:05.818 [info] [command][60735de3-49b6-4a51-8cdb-3b641119d72b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""60735de3-49b6-4a51-8cdb-3b641119d72b""}\n2025-07-16 16:42:05.819 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2c352e95-c474-40f1-b877-011661ecf9b3] received connection request\n2025-07-16 16:42:05.819 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:42:05.837 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2c352e95-c474-40f1-b877-011661ecf9b3] socks forwarding established\n2025-07-16 16:42:05.866 [info] [command][60735de3-49b6-4a51-8cdb-3b641119d72b] Process exited with code 0\n2025-07-16 16:42:05.867 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2c352e95-c474-40f1-b877-011661ecf9b3] socks connection closed\n2025-07-16 16:42:05.867 [info] [command][60735de3-49b6-4a51-8cdb-3b641119d72b] Socket close event received\n2025-07-16 16:42:05.885 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52528 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:43:05.872 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:43:05.874 [info] [command][53319e72-8332-4faf-ac04-ff3b51e07f47] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""53319e72-8332-4faf-ac04-ff3b51e07f47""}\n2025-07-16 16:43:05.874 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c9f2cdbc-7264-4e82-a28e-9193461a17c8] received connection request\n2025-07-16 16:43:05.875 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:43:05.892 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c9f2cdbc-7264-4e82-a28e-9193461a17c8] socks forwarding established\n2025-07-16 16:43:05.923 [info] [command][53319e72-8332-4faf-ac04-ff3b51e07f47] Process exited with code 0\n2025-07-16 16:43:05.923 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c9f2cdbc-7264-4e82-a28e-9193461a17c8] socks connection closed\n2025-07-16 16:43:05.923 [info] [command][53319e72-8332-4faf-ac04-ff3b51e07f47] Socket close event received\n2025-07-16 16:43:05.941 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52600 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:44:05.925 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:44:05.927 [info] [command][553fdcbd-1890-4fc9-b755-1266f48be770] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""553fdcbd-1890-4fc9-b755-1266f48be770""}\n2025-07-16 16:44:05.928 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5ae58df8-fb6d-43bb-ba56-c4999843310a] received connection request\n2025-07-16 16:44:05.929 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:44:05.946 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5ae58df8-fb6d-43bb-ba56-c4999843310a] socks forwarding established\n2025-07-16 16:44:05.976 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5ae58df8-fb6d-43bb-ba56-c4999843310a] socks connection closed\n2025-07-16 16:44:05.976 [info] [command][553fdcbd-1890-4fc9-b755-1266f48be770] Process exited with code 0\n2025-07-16 16:44:05.977 [info] [command][553fdcbd-1890-4fc9-b755-1266f48be770] Socket close event received\n2025-07-16 16:44:05.993 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52635 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:45:05.981 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:45:05.982 [info] [command][e0e3cc64-567e-4c3b-ac5f-6e49075c7f28] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e0e3cc64-567e-4c3b-ac5f-6e49075c7f28""}\n2025-07-16 16:45:05.982 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5e267573-5b42-49f4-aac9-68a2e550508a] received connection request\n2025-07-16 16:45:05.983 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 16:45:05.983 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:45:05.999 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5e267573-5b42-49f4-aac9-68a2e550508a] socks forwarding established\n2025-07-16 16:45:06.029 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5e267573-5b42-49f4-aac9-68a2e550508a] socks connection closed\n2025-07-16 16:45:06.029 [info] [command][e0e3cc64-567e-4c3b-ac5f-6e49075c7f28] Process exited with code 0\n2025-07-16 16:45:06.029 [info] [command][e0e3cc64-567e-4c3b-ac5f-6e49075c7f28] Socket close event received\n2025-07-16 16:45:06.045 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52696 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:46:06.032 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:46:06.033 [info] [command][90869469-d05e-4dbd-8644-a5167cf81a19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""90869469-d05e-4dbd-8644-a5167cf81a19""}\n2025-07-16 16:46:06.034 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7bc1ed66-a301-433e-b007-8ac76bfb8cab] received connection request\n2025-07-16 16:46:06.035 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:46:06.056 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7bc1ed66-a301-433e-b007-8ac76bfb8cab] socks forwarding established\n2025-07-16 16:46:06.085 [info] [command][90869469-d05e-4dbd-8644-a5167cf81a19] Process exited with code 0\n2025-07-16 16:46:06.086 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7bc1ed66-a301-433e-b007-8ac76bfb8cab] socks connection closed\n2025-07-16 16:46:06.086 [info] [command][90869469-d05e-4dbd-8644-a5167cf81a19] Socket close event received\n2025-07-16 16:46:06.102 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52748 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:47:06.091 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:47:06.092 [info] [command][b01b5b12-eb47-4019-80bd-ea18053fce64] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b01b5b12-eb47-4019-80bd-ea18053fce64""}\n2025-07-16 16:47:06.092 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4cca4552-8e6d-41e2-a9a3-cf8d5d3cf801] received connection request\n2025-07-16 16:47:06.092 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:47:06.109 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4cca4552-8e6d-41e2-a9a3-cf8d5d3cf801] socks forwarding established\n2025-07-16 16:47:06.138 [info] [command][b01b5b12-eb47-4019-80bd-ea18053fce64] Process exited with code 0\n2025-07-16 16:47:06.138 [info] [command][b01b5b12-eb47-4019-80bd-ea18053fce64] Socket close event received\n2025-07-16 16:47:06.138 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4cca4552-8e6d-41e2-a9a3-cf8d5d3cf801] socks connection closed\n2025-07-16 16:47:06.155 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52798 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:48:06.143 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:48:06.145 [info] [command][9964d446-a6da-4ad2-b7c0-7efbdbff6200] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9964d446-a6da-4ad2-b7c0-7efbdbff6200""}\n2025-07-16 16:48:06.145 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9cb65f0f-91be-4891-aba3-0d72ebda3140] received connection request\n2025-07-16 16:48:06.145 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:48:06.161 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9cb65f0f-91be-4891-aba3-0d72ebda3140] socks forwarding established\n2025-07-16 16:48:06.183 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9cb65f0f-91be-4891-aba3-0d72ebda3140] socks connection closed\n2025-07-16 16:48:06.183 [info] [command][9964d446-a6da-4ad2-b7c0-7efbdbff6200] Process exited with code 0\n2025-07-16 16:48:06.183 [info] [command][9964d446-a6da-4ad2-b7c0-7efbdbff6200] Socket close event received\n2025-07-16 16:48:06.198 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52861 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:49:06.189 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:49:06.191 [info] [command][69c11982-378c-4340-b588-ce235556c715] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""69c11982-378c-4340-b588-ce235556c715""}\n2025-07-16 16:49:06.191 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4c2cbcf3-5ac6-46c2-978b-8255ce774229] received connection request\n2025-07-16 16:49:06.192 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:49:06.214 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4c2cbcf3-5ac6-46c2-978b-8255ce774229] socks forwarding established\n2025-07-16 16:49:06.245 [info] [command][69c11982-378c-4340-b588-ce235556c715] Process exited with code 0\n2025-07-16 16:49:06.246 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4c2cbcf3-5ac6-46c2-978b-8255ce774229] socks connection closed\n2025-07-16 16:49:06.246 [info] [command][69c11982-378c-4340-b588-ce235556c715] Socket close event received\n2025-07-16 16:49:06.265 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52886 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:50:06.247 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:50:06.248 [info] [command][30dc63ea-2bb7-471b-8877-1e4e661de24e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""30dc63ea-2bb7-471b-8877-1e4e661de24e""}\n2025-07-16 16:50:06.248 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0a394454-5cf6-4623-be86-cca889aa61da] received connection request\n2025-07-16 16:50:06.248 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:50:06.268 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0a394454-5cf6-4623-be86-cca889aa61da] socks forwarding established\n2025-07-16 16:50:06.299 [info] [command][30dc63ea-2bb7-471b-8877-1e4e661de24e] Process exited with code 0\n2025-07-16 16:50:06.299 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0a394454-5cf6-4623-be86-cca889aa61da] socks connection closed\n2025-07-16 16:50:06.299 [info] [command][30dc63ea-2bb7-471b-8877-1e4e661de24e] Socket close event received\n2025-07-16 16:50:06.321 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 52936 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:51:06.305 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:51:06.306 [info] [command][0f93cfdc-5778-43b9-b7f8-8f7036742bd1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0f93cfdc-5778-43b9-b7f8-8f7036742bd1""}\n2025-07-16 16:51:06.307 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][697cf5be-d70f-4656-b305-cfae3a2c6bde] received connection request\n2025-07-16 16:51:06.307 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:51:06.444 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][697cf5be-d70f-4656-b305-cfae3a2c6bde] socks forwarding established\n2025-07-16 16:51:06.474 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][697cf5be-d70f-4656-b305-cfae3a2c6bde] socks connection closed\n2025-07-16 16:51:06.474 [info] [command][0f93cfdc-5778-43b9-b7f8-8f7036742bd1] Process exited with code 0\n2025-07-16 16:51:06.474 [info] [command][0f93cfdc-5778-43b9-b7f8-8f7036742bd1] Socket close event received\n2025-07-16 16:51:06.577 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53017 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:52:06.475 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:52:06.478 [info] [command][d76dc433-0007-4b67-8ee0-67e2b6f63a95] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d76dc433-0007-4b67-8ee0-67e2b6f63a95""}\n2025-07-16 16:52:06.478 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][20f624f9-a242-4c90-a027-fe9a2c604eda] received connection request\n2025-07-16 16:52:06.479 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:52:06.631 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][20f624f9-a242-4c90-a027-fe9a2c604eda] socks forwarding established\n2025-07-16 16:52:06.659 [info] [command][d76dc433-0007-4b67-8ee0-67e2b6f63a95] Process exited with code 0\n2025-07-16 16:52:06.660 [info] [command][d76dc433-0007-4b67-8ee0-67e2b6f63a95] Socket close event received\n2025-07-16 16:52:06.660 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][20f624f9-a242-4c90-a027-fe9a2c604eda] socks connection closed\n2025-07-16 16:52:06.805 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53087 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:53:06.663 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:53:06.665 [info] [command][915bfa30-f984-441c-8048-e27971f48589] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""915bfa30-f984-441c-8048-e27971f48589""}\n2025-07-16 16:53:06.665 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][479f3e15-9fd1-4c98-a5d2-5aef7f08a85b] received connection request\n2025-07-16 16:53:06.666 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:53:06.798 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][479f3e15-9fd1-4c98-a5d2-5aef7f08a85b] socks forwarding established\n2025-07-16 16:53:06.830 [info] [command][915bfa30-f984-441c-8048-e27971f48589] Process exited with code 0\n2025-07-16 16:53:06.837 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][479f3e15-9fd1-4c98-a5d2-5aef7f08a85b] socks connection closed\n2025-07-16 16:53:06.837 [info] [command][915bfa30-f984-441c-8048-e27971f48589] Socket close event received\n2025-07-16 16:53:06.856 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53128 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:54:06.835 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:54:06.837 [info] [command][0cdd5e5f-ed16-49de-9669-db0a762211ec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0cdd5e5f-ed16-49de-9669-db0a762211ec""}\n2025-07-16 16:54:06.838 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][401baf6f-c8cb-404e-81de-0a31f8800eed] received connection request\n2025-07-16 16:54:06.838 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 16:54:06.838 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:54:06.914 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][401baf6f-c8cb-404e-81de-0a31f8800eed] socks forwarding established\n2025-07-16 16:54:06.968 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][401baf6f-c8cb-404e-81de-0a31f8800eed] socks connection closed\n2025-07-16 16:54:06.969 [info] [command][0cdd5e5f-ed16-49de-9669-db0a762211ec] Process exited with code 0\n2025-07-16 16:54:06.969 [info] [command][0cdd5e5f-ed16-49de-9669-db0a762211ec] Socket close event received\n2025-07-16 16:54:07.065 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53202 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:55:06.972 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:55:06.974 [info] [command][df60fbde-5781-431a-8a2e-12a56cbd5584] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""df60fbde-5781-431a-8a2e-12a56cbd5584""}\n2025-07-16 16:55:06.974 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7fd5c11d-ed61-4a13-927a-2d44b7631331] received connection request\n2025-07-16 16:55:06.974 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:55:07.116 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7fd5c11d-ed61-4a13-927a-2d44b7631331] socks forwarding established\n2025-07-16 16:55:07.146 [info] [command][df60fbde-5781-431a-8a2e-12a56cbd5584] Process exited with code 0\n2025-07-16 16:55:07.146 [info] [command][df60fbde-5781-431a-8a2e-12a56cbd5584] Socket close event received\n2025-07-16 16:55:07.161 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7fd5c11d-ed61-4a13-927a-2d44b7631331] socks connection closed\n2025-07-16 16:55:07.163 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53277 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:56:07.149 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:56:07.150 [info] [command][0584e6ad-80d7-460b-ad8d-1529cd39716a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0584e6ad-80d7-460b-ad8d-1529cd39716a""}\n2025-07-16 16:56:07.150 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][93e32113-f391-4f67-9a76-b0dff957c5d1] received connection request\n2025-07-16 16:56:07.151 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:56:07.169 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][93e32113-f391-4f67-9a76-b0dff957c5d1] socks forwarding established\n2025-07-16 16:56:07.200 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][93e32113-f391-4f67-9a76-b0dff957c5d1] socks connection closed\n2025-07-16 16:56:07.200 [info] [command][0584e6ad-80d7-460b-ad8d-1529cd39716a] Process exited with code 0\n2025-07-16 16:56:07.200 [info] [command][0584e6ad-80d7-460b-ad8d-1529cd39716a] Socket close event received\n2025-07-16 16:56:07.216 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53322 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:57:07.207 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:57:07.209 [info] [command][fd148c96-5e69-4542-8461-10100f51f5c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fd148c96-5e69-4542-8461-10100f51f5c9""}\n2025-07-16 16:57:07.210 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6cd37b13-47dc-4eac-9e30-ceb44904a81b] received connection request\n2025-07-16 16:57:07.210 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:57:07.289 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6cd37b13-47dc-4eac-9e30-ceb44904a81b] socks forwarding established\n2025-07-16 16:57:07.457 [info] [command][fd148c96-5e69-4542-8461-10100f51f5c9] Process exited with code 0\n2025-07-16 16:57:07.458 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6cd37b13-47dc-4eac-9e30-ceb44904a81b] socks connection closed\n2025-07-16 16:57:07.458 [info] [command][fd148c96-5e69-4542-8461-10100f51f5c9] Socket close event received\n2025-07-16 16:57:07.482 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53393 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:58:07.459 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:58:07.461 [info] [command][edc5d61a-f22a-4421-a2c8-386a4355720c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""edc5d61a-f22a-4421-a2c8-386a4355720c""}\n2025-07-16 16:58:07.461 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][95a86859-ac18-4564-97a8-e94ee0ed48d1] received connection request\n2025-07-16 16:58:07.461 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:58:07.479 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][95a86859-ac18-4564-97a8-e94ee0ed48d1] socks forwarding established\n2025-07-16 16:58:07.511 [info] [command][edc5d61a-f22a-4421-a2c8-386a4355720c] Process exited with code 0\n2025-07-16 16:58:07.511 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][95a86859-ac18-4564-97a8-e94ee0ed48d1] socks connection closed\n2025-07-16 16:58:07.511 [info] [command][edc5d61a-f22a-4421-a2c8-386a4355720c] Socket close event received\n2025-07-16 16:58:07.530 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53476 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 16:59:07.516 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 16:59:07.518 [info] [command][9679ebdf-7310-444b-a160-aacee2eb6c3f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9679ebdf-7310-444b-a160-aacee2eb6c3f""}\n2025-07-16 16:59:07.519 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][eb1ab961-0f28-48eb-a8bc-204183f13a7b] received connection request\n2025-07-16 16:59:07.519 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 16:59:07.538 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][eb1ab961-0f28-48eb-a8bc-204183f13a7b] socks forwarding established\n2025-07-16 16:59:07.569 [info] [command][9679ebdf-7310-444b-a160-aacee2eb6c3f] Process exited with code 0\n2025-07-16 16:59:07.570 [info] [command][9679ebdf-7310-444b-a160-aacee2eb6c3f] Socket close event received\n2025-07-16 16:59:07.571 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][eb1ab961-0f28-48eb-a8bc-204183f13a7b] socks connection closed\n2025-07-16 16:59:07.588 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53555 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:00:07.572 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:00:07.573 [info] [command][aab6e259-bd1d-4143-8001-ab4390242ad1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""aab6e259-bd1d-4143-8001-ab4390242ad1""}\n2025-07-16 17:00:07.573 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][014d6b97-b8fa-4ff3-84e8-b9383288a8d5] received connection request\n2025-07-16 17:00:07.573 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:00:07.589 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][014d6b97-b8fa-4ff3-84e8-b9383288a8d5] socks forwarding established\n2025-07-16 17:00:07.618 [info] [command][aab6e259-bd1d-4143-8001-ab4390242ad1] Process exited with code 0\n2025-07-16 17:00:07.618 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][014d6b97-b8fa-4ff3-84e8-b9383288a8d5] socks connection closed\n2025-07-16 17:00:07.618 [info] [command][aab6e259-bd1d-4143-8001-ab4390242ad1] Socket close event received\n2025-07-16 17:00:07.634 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53607 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:01:07.624 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:01:07.626 [info] [command][d8b0c96e-6cf1-42ba-9c4a-5c75e9d0867d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d8b0c96e-6cf1-42ba-9c4a-5c75e9d0867d""}\n2025-07-16 17:01:07.626 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][60c63d7c-0eb9-488c-809c-af4551821cff] received connection request\n2025-07-16 17:01:07.627 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:01:07.646 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][60c63d7c-0eb9-488c-809c-af4551821cff] socks forwarding established\n2025-07-16 17:01:07.677 [info] [command][d8b0c96e-6cf1-42ba-9c4a-5c75e9d0867d] Process exited with code 0\n2025-07-16 17:01:07.678 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][60c63d7c-0eb9-488c-809c-af4551821cff] socks connection closed\n2025-07-16 17:01:07.678 [info] [command][d8b0c96e-6cf1-42ba-9c4a-5c75e9d0867d] Socket close event received\n2025-07-16 17:01:07.695 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53680 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:02:07.681 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:02:07.683 [info] [command][5867c534-e646-4851-8e45-5fd8512368da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5867c534-e646-4851-8e45-5fd8512368da""}\n2025-07-16 17:02:07.684 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1b78e031-6d32-42b4-9d2a-495b1b8e9317] received connection request\n2025-07-16 17:02:07.685 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:02:07.705 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1b78e031-6d32-42b4-9d2a-495b1b8e9317] socks forwarding established\n2025-07-16 17:02:07.737 [info] [command][5867c534-e646-4851-8e45-5fd8512368da] Process exited with code 0\n2025-07-16 17:02:07.738 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1b78e031-6d32-42b4-9d2a-495b1b8e9317] socks connection closed\n2025-07-16 17:02:07.738 [info] [command][5867c534-e646-4851-8e45-5fd8512368da] Socket close event received\n2025-07-16 17:02:07.756 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53770 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:03:07.739 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:03:07.742 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f9928910-6a45-464a-a316-286703b990cf] received connection request\n2025-07-16 17:03:07.743 [info] [command][aca634c0-edec-44dc-aefb-53dec0d3b5ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""aca634c0-edec-44dc-aefb-53dec0d3b5ef""}\n2025-07-16 17:03:07.743 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:03:07.766 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f9928910-6a45-464a-a316-286703b990cf] socks forwarding established\n2025-07-16 17:03:07.798 [info] [command][aca634c0-edec-44dc-aefb-53dec0d3b5ef] Process exited with code 0\n2025-07-16 17:03:07.799 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f9928910-6a45-464a-a316-286703b990cf] socks connection closed\n2025-07-16 17:03:07.799 [info] [command][aca634c0-edec-44dc-aefb-53dec0d3b5ef] Socket close event received\n2025-07-16 17:03:07.816 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53838 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:04:07.805 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:04:07.806 [info] [command][7bc212b2-98f5-4ef6-8888-be8ee79a3623] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7bc212b2-98f5-4ef6-8888-be8ee79a3623""}\n2025-07-16 17:04:07.806 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][adc542db-f495-479b-8a61-918af0e3b62a] received connection request\n2025-07-16 17:04:07.807 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:04:07.829 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][adc542db-f495-479b-8a61-918af0e3b62a] socks forwarding established\n2025-07-16 17:04:07.858 [info] [command][7bc212b2-98f5-4ef6-8888-be8ee79a3623] Process exited with code 0\n2025-07-16 17:04:07.858 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][adc542db-f495-479b-8a61-918af0e3b62a] socks connection closed\n2025-07-16 17:04:07.858 [info] [command][7bc212b2-98f5-4ef6-8888-be8ee79a3623] Socket close event received\n2025-07-16 17:04:07.876 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53865 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:05:07.861 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:05:07.862 [info] [command][21cb39e2-93b9-442c-abb6-522fb527912d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""21cb39e2-93b9-442c-abb6-522fb527912d""}\n2025-07-16 17:05:07.862 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4d3164c1-a72c-4a3e-aa23-c94c6db4ac0e] received connection request\n2025-07-16 17:05:07.863 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:05:07.989 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4d3164c1-a72c-4a3e-aa23-c94c6db4ac0e] socks forwarding established\n2025-07-16 17:05:08.027 [info] [command][21cb39e2-93b9-442c-abb6-522fb527912d] Process exited with code 0\n2025-07-16 17:05:08.027 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4d3164c1-a72c-4a3e-aa23-c94c6db4ac0e] socks connection closed\n2025-07-16 17:05:08.027 [info] [command][21cb39e2-93b9-442c-abb6-522fb527912d] Socket close event received\n2025-07-16 17:05:08.048 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53937 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:06:08.033 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:06:08.036 [info] [command][b36fba13-bda0-49f6-8576-32592bfba226] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b36fba13-bda0-49f6-8576-32592bfba226""}\n2025-07-16 17:06:08.037 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e307a280-1d4b-46fa-a2fb-2d61b7f32210] received connection request\n2025-07-16 17:06:08.037 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:06:08.055 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e307a280-1d4b-46fa-a2fb-2d61b7f32210] socks forwarding established\n2025-07-16 17:06:08.213 [info] [command][b36fba13-bda0-49f6-8576-32592bfba226] Process exited with code 0\n2025-07-16 17:06:08.213 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e307a280-1d4b-46fa-a2fb-2d61b7f32210] socks connection closed\n2025-07-16 17:06:08.213 [info] [command][b36fba13-bda0-49f6-8576-32592bfba226] Socket close event received\n2025-07-16 17:06:08.229 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 53982 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:07:08.219 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:07:08.220 [info] [command][7268c13e-5edd-4e3d-90d6-2dee977d86ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7268c13e-5edd-4e3d-90d6-2dee977d86ac""}\n2025-07-16 17:07:08.221 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][456f9cb6-e5a6-415f-b0e8-bdc05e1da083] received connection request\n2025-07-16 17:07:08.221 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:07:08.265 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][456f9cb6-e5a6-415f-b0e8-bdc05e1da083] socks forwarding established\n2025-07-16 17:07:08.295 [info] [command][7268c13e-5edd-4e3d-90d6-2dee977d86ac] Process exited with code 0\n2025-07-16 17:07:08.295 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][456f9cb6-e5a6-415f-b0e8-bdc05e1da083] socks connection closed\n2025-07-16 17:07:08.295 [info] [command][7268c13e-5edd-4e3d-90d6-2dee977d86ac] Socket close event received\n2025-07-16 17:07:08.441 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54021 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:08:08.296 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:08:08.299 [info] [command][23f3219b-3118-496f-89a3-918f69a66c2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""23f3219b-3118-496f-89a3-918f69a66c2b""}\n2025-07-16 17:08:08.299 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c2087d9a-dd18-41d2-a2f5-9d0247d0c950] received connection request\n2025-07-16 17:08:08.299 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:08:08.316 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c2087d9a-dd18-41d2-a2f5-9d0247d0c950] socks forwarding established\n2025-07-16 17:08:08.399 [info] [command][23f3219b-3118-496f-89a3-918f69a66c2b] Process exited with code 0\n2025-07-16 17:08:08.399 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c2087d9a-dd18-41d2-a2f5-9d0247d0c950] socks connection closed\n2025-07-16 17:08:08.399 [info] [command][23f3219b-3118-496f-89a3-918f69a66c2b] Socket close event received\n2025-07-16 17:08:08.416 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54063 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:09:08.403 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:09:08.404 [info] [command][34fb82ae-4e5a-49cd-8db0-e65274d947a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""34fb82ae-4e5a-49cd-8db0-e65274d947a2""}\n2025-07-16 17:09:08.404 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8231c929-e47d-42f3-a9cf-2eb1cb35d4a0] received connection request\n2025-07-16 17:09:08.404 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:09:08.539 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8231c929-e47d-42f3-a9cf-2eb1cb35d4a0] socks forwarding established\n2025-07-16 17:09:08.654 [info] [command][34fb82ae-4e5a-49cd-8db0-e65274d947a2] Process exited with code 0\n2025-07-16 17:09:08.655 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8231c929-e47d-42f3-a9cf-2eb1cb35d4a0] socks connection closed\n2025-07-16 17:09:08.655 [info] [command][34fb82ae-4e5a-49cd-8db0-e65274d947a2] Socket close event received\n2025-07-16 17:09:08.671 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54090 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:10:08.660 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:10:08.662 [info] [command][c6ce9f7b-df91-423d-b9ca-3d4a46ff5caa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c6ce9f7b-df91-423d-b9ca-3d4a46ff5caa""}\n2025-07-16 17:10:08.663 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a829294e-1c39-481d-987a-9a0e44b8903f] received connection request\n2025-07-16 17:10:08.663 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:10:08.680 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a829294e-1c39-481d-987a-9a0e44b8903f] socks forwarding established\n2025-07-16 17:10:08.712 [info] [command][c6ce9f7b-df91-423d-b9ca-3d4a46ff5caa] Process exited with code 0\n2025-07-16 17:10:08.712 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a829294e-1c39-481d-987a-9a0e44b8903f] socks connection closed\n2025-07-16 17:10:08.712 [info] [command][c6ce9f7b-df91-423d-b9ca-3d4a46ff5caa] Socket close event received\n2025-07-16 17:10:08.731 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54132 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:11:08.717 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:11:08.719 [info] [command][70bdbf8d-5a6d-445b-af88-429dba8fea9e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""70bdbf8d-5a6d-445b-af88-429dba8fea9e""}\n2025-07-16 17:11:08.720 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8aeb99bb-47e5-41e9-b383-4c1989c532cb] received connection request\n2025-07-16 17:11:08.720 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:11:08.738 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8aeb99bb-47e5-41e9-b383-4c1989c532cb] socks forwarding established\n2025-07-16 17:11:08.770 [info] [command][70bdbf8d-5a6d-445b-af88-429dba8fea9e] Process exited with code 0\n2025-07-16 17:11:08.770 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8aeb99bb-47e5-41e9-b383-4c1989c532cb] socks connection closed\n2025-07-16 17:11:08.770 [info] [command][70bdbf8d-5a6d-445b-af88-429dba8fea9e] Socket close event received\n2025-07-16 17:11:08.787 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54162 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:12:08.771 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:12:08.773 [info] [command][c43be51e-ae4f-47af-8f0b-c2f230683f45] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c43be51e-ae4f-47af-8f0b-c2f230683f45""}\n2025-07-16 17:12:08.773 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f9233b42-ae68-469b-946a-ea1a41ba2a73] received connection request\n2025-07-16 17:12:08.774 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:12:08.791 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f9233b42-ae68-469b-946a-ea1a41ba2a73] socks forwarding established\n2025-07-16 17:12:08.821 [info] [command][c43be51e-ae4f-47af-8f0b-c2f230683f45] Process exited with code 0\n2025-07-16 17:12:08.821 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f9233b42-ae68-469b-946a-ea1a41ba2a73] socks connection closed\n2025-07-16 17:12:08.822 [info] [command][c43be51e-ae4f-47af-8f0b-c2f230683f45] Socket close event received\n2025-07-16 17:12:08.839 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54201 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:13:08.827 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:13:08.828 [info] [command][820a269a-0518-4146-ab01-d00e4a2749e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""820a269a-0518-4146-ab01-d00e4a2749e8""}\n2025-07-16 17:13:08.829 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][352280ad-842c-4b6a-a713-165eeacf4214] received connection request\n2025-07-16 17:13:08.830 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:13:08.847 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][352280ad-842c-4b6a-a713-165eeacf4214] socks forwarding established\n2025-07-16 17:13:08.881 [info] [command][820a269a-0518-4146-ab01-d00e4a2749e8] Process exited with code 0\n2025-07-16 17:13:08.881 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][352280ad-842c-4b6a-a713-165eeacf4214] socks connection closed\n2025-07-16 17:13:08.881 [info] [command][820a269a-0518-4146-ab01-d00e4a2749e8] Socket close event received\n2025-07-16 17:13:08.898 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54253 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:14:08.886 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:14:08.888 [info] [command][264564c3-0633-4d13-a9c6-393aae48d65a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""264564c3-0633-4d13-a9c6-393aae48d65a""}\n2025-07-16 17:14:08.889 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][43bc38a5-8d10-41b3-bf88-c17535a90e88] received connection request\n2025-07-16 17:14:08.890 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:14:08.906 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43bc38a5-8d10-41b3-bf88-c17535a90e88] socks forwarding established\n2025-07-16 17:14:08.938 [info] [command][264564c3-0633-4d13-a9c6-393aae48d65a] Process exited with code 0\n2025-07-16 17:14:08.939 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43bc38a5-8d10-41b3-bf88-c17535a90e88] socks connection closed\n2025-07-16 17:14:08.939 [info] [command][264564c3-0633-4d13-a9c6-393aae48d65a] Socket close event received\n2025-07-16 17:14:08.956 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54281 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:15:08.944 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:15:08.946 [info] [command][e06c5c63-f12b-4959-a2c4-fb57519737ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e06c5c63-f12b-4959-a2c4-fb57519737ef""}\n2025-07-16 17:15:08.947 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3d99a507-1983-46bf-b1d6-bc4d7ad369d7] received connection request\n2025-07-16 17:15:08.947 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:15:08.965 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3d99a507-1983-46bf-b1d6-bc4d7ad369d7] socks forwarding established\n2025-07-16 17:15:08.994 [info] [command][e06c5c63-f12b-4959-a2c4-fb57519737ef] Process exited with code 0\n2025-07-16 17:15:08.994 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3d99a507-1983-46bf-b1d6-bc4d7ad369d7] socks connection closed\n2025-07-16 17:15:08.995 [info] [command][e06c5c63-f12b-4959-a2c4-fb57519737ef] Socket close event received\n2025-07-16 17:15:09.012 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54322 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:16:08.999 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:16:09.001 [info] [command][e50a9f4c-b3a4-4c02-97b4-cb5f8ad8e80b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e50a9f4c-b3a4-4c02-97b4-cb5f8ad8e80b""}\n2025-07-16 17:16:09.002 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][fdb27421-b6f4-4c69-893e-5f51f1b0f6db] received connection request\n2025-07-16 17:16:09.004 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:16:09.021 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fdb27421-b6f4-4c69-893e-5f51f1b0f6db] socks forwarding established\n2025-07-16 17:16:09.054 [info] [command][e50a9f4c-b3a4-4c02-97b4-cb5f8ad8e80b] Process exited with code 0\n2025-07-16 17:16:09.054 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fdb27421-b6f4-4c69-893e-5f51f1b0f6db] socks connection closed\n2025-07-16 17:16:09.054 [info] [command][e50a9f4c-b3a4-4c02-97b4-cb5f8ad8e80b] Socket close event received\n2025-07-16 17:16:09.072 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54350 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:17:09.059 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:17:09.061 [info] [command][9118870a-d456-4f71-9110-0a69464c615d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9118870a-d456-4f71-9110-0a69464c615d""}\n2025-07-16 17:17:09.062 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8a80e1f1-be97-4f5d-87a2-c136f5003bee] received connection request\n2025-07-16 17:17:09.062 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:17:09.079 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8a80e1f1-be97-4f5d-87a2-c136f5003bee] socks forwarding established\n2025-07-16 17:17:09.109 [info] [command][9118870a-d456-4f71-9110-0a69464c615d] Process exited with code 0\n2025-07-16 17:17:09.110 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8a80e1f1-be97-4f5d-87a2-c136f5003bee] socks connection closed\n2025-07-16 17:17:09.110 [info] [command][9118870a-d456-4f71-9110-0a69464c615d] Socket close event received\n2025-07-16 17:17:09.129 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54387 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:18:09.110 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:18:09.112 [info] [command][811a4981-575a-45d7-8397-6a529dcdea7e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""811a4981-575a-45d7-8397-6a529dcdea7e""}\n2025-07-16 17:18:09.112 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][049a2ff9-7dbf-4b6a-944e-1644e06e1f5a] received connection request\n2025-07-16 17:18:09.113 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:18:09.131 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][049a2ff9-7dbf-4b6a-944e-1644e06e1f5a] socks forwarding established\n2025-07-16 17:18:09.160 [info] [command][811a4981-575a-45d7-8397-6a529dcdea7e] Process exited with code 0\n2025-07-16 17:18:09.160 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][049a2ff9-7dbf-4b6a-944e-1644e06e1f5a] socks connection closed\n2025-07-16 17:18:09.161 [info] [command][811a4981-575a-45d7-8397-6a529dcdea7e] Socket close event received\n2025-07-16 17:18:09.178 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54432 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:19:09.166 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:19:09.168 [info] [command][c4082815-e3ec-4623-ab04-7070f427e89e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c4082815-e3ec-4623-ab04-7070f427e89e""}\n2025-07-16 17:19:09.169 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f76b7df6-6f64-4cff-9d0b-41d4efeacbe5] received connection request\n2025-07-16 17:19:09.169 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:19:09.186 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f76b7df6-6f64-4cff-9d0b-41d4efeacbe5] socks forwarding established\n2025-07-16 17:19:09.218 [info] [command][c4082815-e3ec-4623-ab04-7070f427e89e] Process exited with code 0\n2025-07-16 17:19:09.218 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f76b7df6-6f64-4cff-9d0b-41d4efeacbe5] socks connection closed\n2025-07-16 17:19:09.218 [info] [command][c4082815-e3ec-4623-ab04-7070f427e89e] Socket close event received\n2025-07-16 17:19:09.236 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54455 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:20:09.224 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:20:09.226 [info] [command][0ddb660e-48b3-4a89-9cd4-7eba4dd4c989] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0ddb660e-48b3-4a89-9cd4-7eba4dd4c989""}\n2025-07-16 17:20:09.226 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][859fa7bd-5997-42ed-82ab-41711aec12b8] received connection request\n2025-07-16 17:20:09.227 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:20:09.243 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][859fa7bd-5997-42ed-82ab-41711aec12b8] socks forwarding established\n2025-07-16 17:20:09.272 [info] [command][0ddb660e-48b3-4a89-9cd4-7eba4dd4c989] Process exited with code 0\n2025-07-16 17:20:09.272 [info] [command][0ddb660e-48b3-4a89-9cd4-7eba4dd4c989] Socket close event received\n2025-07-16 17:20:09.273 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][859fa7bd-5997-42ed-82ab-41711aec12b8] socks connection closed\n2025-07-16 17:20:09.288 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54493 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:21:09.275 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:21:09.277 [info] [command][6e4655c3-91ec-418c-ae27-381cb67e7892] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6e4655c3-91ec-418c-ae27-381cb67e7892""}\n2025-07-16 17:21:09.278 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f28919f9-ab6e-4683-8af6-801d11f65e36] received connection request\n2025-07-16 17:21:09.279 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:21:09.296 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f28919f9-ab6e-4683-8af6-801d11f65e36] socks forwarding established\n2025-07-16 17:21:09.323 [info] [command][6e4655c3-91ec-418c-ae27-381cb67e7892] Process exited with code 0\n2025-07-16 17:21:09.323 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f28919f9-ab6e-4683-8af6-801d11f65e36] socks connection closed\n2025-07-16 17:21:09.324 [info] [command][6e4655c3-91ec-418c-ae27-381cb67e7892] Socket close event received\n2025-07-16 17:21:09.339 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54519 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:22:09.326 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:22:09.328 [info] [command][4cc4cbff-55a4-4ee0-b297-317049868f81] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4cc4cbff-55a4-4ee0-b297-317049868f81""}\n2025-07-16 17:22:09.329 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][16e2d923-313f-40b7-afa9-d5c11f7f6b24] received connection request\n2025-07-16 17:22:09.330 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:22:09.350 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][16e2d923-313f-40b7-afa9-d5c11f7f6b24] socks forwarding established\n2025-07-16 17:22:09.455 [info] [command][4cc4cbff-55a4-4ee0-b297-317049868f81] Process exited with code 0\n2025-07-16 17:22:09.456 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][16e2d923-313f-40b7-afa9-d5c11f7f6b24] socks connection closed\n2025-07-16 17:22:09.456 [info] [command][4cc4cbff-55a4-4ee0-b297-317049868f81] Socket close event received\n2025-07-16 17:22:09.473 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54567 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:23:09.461 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:23:09.462 [info] [command][1cba2410-bb1e-4777-86a4-28cbc33625d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1cba2410-bb1e-4777-86a4-28cbc33625d4""}\n2025-07-16 17:23:09.462 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c3ff9e02-fc0a-4b44-a90e-6949b850b373] received connection request\n2025-07-16 17:23:09.463 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:23:09.485 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c3ff9e02-fc0a-4b44-a90e-6949b850b373] socks forwarding established\n2025-07-16 17:23:09.632 [info] [command][1cba2410-bb1e-4777-86a4-28cbc33625d4] Process exited with code 0\n2025-07-16 17:23:09.632 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c3ff9e02-fc0a-4b44-a90e-6949b850b373] socks connection closed\n2025-07-16 17:23:09.632 [info] [command][1cba2410-bb1e-4777-86a4-28cbc33625d4] Socket close event received\n2025-07-16 17:23:09.649 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54603 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:24:09.638 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:24:09.639 [info] [command][2403d39b-7b5c-41c6-9bd1-631548c37165] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2403d39b-7b5c-41c6-9bd1-631548c37165""}\n2025-07-16 17:24:09.640 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][bc27ee21-4dfc-416f-81f9-00e50b80e0fe] received connection request\n2025-07-16 17:24:09.641 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:24:09.681 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bc27ee21-4dfc-416f-81f9-00e50b80e0fe] socks forwarding established\n2025-07-16 17:24:09.710 [info] [command][2403d39b-7b5c-41c6-9bd1-631548c37165] Process exited with code 0\n2025-07-16 17:24:09.710 [info] [command][2403d39b-7b5c-41c6-9bd1-631548c37165] Socket close event received\n2025-07-16 17:24:09.711 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bc27ee21-4dfc-416f-81f9-00e50b80e0fe] socks connection closed\n2025-07-16 17:24:09.860 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54629 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:25:09.716 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:25:09.718 [info] [command][e882ea26-bca8-46bd-9fb3-8fc9abdbd9ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e882ea26-bca8-46bd-9fb3-8fc9abdbd9ed""}\n2025-07-16 17:25:09.719 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2964363d-beb0-45c7-888f-4cd6ca2f792f] received connection request\n2025-07-16 17:25:09.720 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:25:09.739 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2964363d-beb0-45c7-888f-4cd6ca2f792f] socks forwarding established\n2025-07-16 17:25:09.769 [info] [command][e882ea26-bca8-46bd-9fb3-8fc9abdbd9ed] Process exited with code 0\n2025-07-16 17:25:09.769 [info] [command][e882ea26-bca8-46bd-9fb3-8fc9abdbd9ed] Socket close event received\n2025-07-16 17:25:09.770 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2964363d-beb0-45c7-888f-4cd6ca2f792f] socks connection closed\n2025-07-16 17:25:09.787 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54675 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:26:09.770 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:26:09.772 [info] [command][81baed20-4bfc-4914-a6b8-4cee07c37abe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""81baed20-4bfc-4914-a6b8-4cee07c37abe""}\n2025-07-16 17:26:09.772 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8064dcc8-cc1c-47a7-bd9e-b56a50066a18] received connection request\n2025-07-16 17:26:09.772 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:26:09.791 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8064dcc8-cc1c-47a7-bd9e-b56a50066a18] socks forwarding established\n2025-07-16 17:26:09.826 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8064dcc8-cc1c-47a7-bd9e-b56a50066a18] socks connection closed\n2025-07-16 17:26:09.826 [info] [command][81baed20-4bfc-4914-a6b8-4cee07c37abe] Process exited with code 0\n2025-07-16 17:26:09.826 [info] [command][81baed20-4bfc-4914-a6b8-4cee07c37abe] Socket close event received\n2025-07-16 17:26:09.971 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54745 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:27:09.828 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:27:09.830 [info] [command][84782e61-4fca-4e51-aed5-dc884752d75d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""84782e61-4fca-4e51-aed5-dc884752d75d""}\n2025-07-16 17:27:09.830 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d0a4490f-4848-4766-9b82-85cb3160a4d3] received connection request\n2025-07-16 17:27:09.831 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:27:09.849 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d0a4490f-4848-4766-9b82-85cb3160a4d3] socks forwarding established\n2025-07-16 17:27:09.876 [info] [command][84782e61-4fca-4e51-aed5-dc884752d75d] Process exited with code 0\n2025-07-16 17:27:09.876 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d0a4490f-4848-4766-9b82-85cb3160a4d3] socks connection closed\n2025-07-16 17:27:09.876 [info] [command][84782e61-4fca-4e51-aed5-dc884752d75d] Socket close event received\n2025-07-16 17:27:09.893 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54807 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:28:09.877 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:28:09.878 [info] [command][e296bcf9-52a0-4e18-832e-62ced88528fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e296bcf9-52a0-4e18-832e-62ced88528fa""}\n2025-07-16 17:28:09.879 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9b64161e-f46c-4f85-970e-768cc8b02729] received connection request\n2025-07-16 17:28:09.879 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 17:28:09.879 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:28:09.895 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9b64161e-f46c-4f85-970e-768cc8b02729] socks forwarding established\n2025-07-16 17:28:09.924 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9b64161e-f46c-4f85-970e-768cc8b02729] socks connection closed\n2025-07-16 17:28:09.925 [info] [command][e296bcf9-52a0-4e18-832e-62ced88528fa] Process exited with code 0\n2025-07-16 17:28:09.925 [info] [command][e296bcf9-52a0-4e18-832e-62ced88528fa] Socket close event received\n2025-07-16 17:28:09.941 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54860 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:29:09.930 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:29:09.932 [info] [command][77def851-33d8-4137-a5d8-5b50f75bf765] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""77def851-33d8-4137-a5d8-5b50f75bf765""}\n2025-07-16 17:29:09.933 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1c154286-a26f-43c4-9ba3-60f20705f523] received connection request\n2025-07-16 17:29:09.933 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:29:10.027 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1c154286-a26f-43c4-9ba3-60f20705f523] socks forwarding established\n2025-07-16 17:29:10.061 [info] [command][77def851-33d8-4137-a5d8-5b50f75bf765] Process exited with code 0\n2025-07-16 17:29:10.061 [info] [command][77def851-33d8-4137-a5d8-5b50f75bf765] Socket close event received\n2025-07-16 17:29:10.062 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1c154286-a26f-43c4-9ba3-60f20705f523] socks connection closed\n2025-07-16 17:29:10.205 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54901 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:30:10.068 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:30:10.070 [info] [command][e20d63c9-8705-4955-9bc7-632b41ac13d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e20d63c9-8705-4955-9bc7-632b41ac13d7""}\n2025-07-16 17:30:10.071 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][eb18abce-4c5b-434e-808e-43dbbd87d402] received connection request\n2025-07-16 17:30:10.072 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:30:10.089 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][eb18abce-4c5b-434e-808e-43dbbd87d402] socks forwarding established\n2025-07-16 17:30:10.118 [info] [command][e20d63c9-8705-4955-9bc7-632b41ac13d7] Process exited with code 0\n2025-07-16 17:30:10.118 [info] [command][e20d63c9-8705-4955-9bc7-632b41ac13d7] Socket close event received\n2025-07-16 17:30:10.118 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][eb18abce-4c5b-434e-808e-43dbbd87d402] socks connection closed\n2025-07-16 17:30:10.136 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54943 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:31:10.119 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:31:10.120 [info] [command][45d99f25-6105-43fd-a4af-c1be2d942fe3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""45d99f25-6105-43fd-a4af-c1be2d942fe3""}\n2025-07-16 17:31:10.121 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][355b9389-4616-44ab-828d-a02f20c70636] received connection request\n2025-07-16 17:31:10.121 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:31:10.138 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][355b9389-4616-44ab-828d-a02f20c70636] socks forwarding established\n2025-07-16 17:31:10.170 [info] [command][45d99f25-6105-43fd-a4af-c1be2d942fe3] Process exited with code 0\n2025-07-16 17:31:10.170 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][355b9389-4616-44ab-828d-a02f20c70636] socks connection closed\n2025-07-16 17:31:10.171 [info] [command][45d99f25-6105-43fd-a4af-c1be2d942fe3] Socket close event received\n2025-07-16 17:31:10.187 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 54985 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:32:10.177 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:32:10.179 [info] [command][1475eff1-935d-4f0f-a251-f42921b920ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1475eff1-935d-4f0f-a251-f42921b920ea""}\n2025-07-16 17:32:10.180 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0dd61761-d523-417f-b397-e6293182ffb1] received connection request\n2025-07-16 17:32:10.181 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:32:10.198 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0dd61761-d523-417f-b397-e6293182ffb1] socks forwarding established\n2025-07-16 17:32:10.359 [info] [command][1475eff1-935d-4f0f-a251-f42921b920ea] Process exited with code 0\n2025-07-16 17:32:10.359 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0dd61761-d523-417f-b397-e6293182ffb1] socks connection closed\n2025-07-16 17:32:10.359 [info] [command][1475eff1-935d-4f0f-a251-f42921b920ea] Socket close event received\n2025-07-16 17:32:10.374 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55047 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:33:10.362 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:33:10.363 [info] [command][44bf8d3f-711d-47b8-8540-960149a4a5d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""44bf8d3f-711d-47b8-8540-960149a4a5d1""}\n2025-07-16 17:33:10.364 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][fa6d6244-8022-42ae-b440-912ced72b902] received connection request\n2025-07-16 17:33:10.365 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:33:10.489 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fa6d6244-8022-42ae-b440-912ced72b902] socks forwarding established\n2025-07-16 17:33:10.519 [info] [command][44bf8d3f-711d-47b8-8540-960149a4a5d1] Process exited with code 0\n2025-07-16 17:33:10.519 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fa6d6244-8022-42ae-b440-912ced72b902] socks connection closed\n2025-07-16 17:33:10.519 [info] [command][44bf8d3f-711d-47b8-8540-960149a4a5d1] Socket close event received\n2025-07-16 17:33:10.666 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55106 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:34:10.524 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:34:10.525 [info] [command][838bacf0-ce02-45df-9f3c-ad91210fc8d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""838bacf0-ce02-45df-9f3c-ad91210fc8d0""}\n2025-07-16 17:34:10.526 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][08bf201e-ca31-4fd9-9cd7-dfcc10deeda6] received connection request\n2025-07-16 17:34:10.526 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:34:10.544 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][08bf201e-ca31-4fd9-9cd7-dfcc10deeda6] socks forwarding established\n2025-07-16 17:34:10.572 [info] [command][838bacf0-ce02-45df-9f3c-ad91210fc8d0] Process exited with code 0\n2025-07-16 17:34:10.573 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][08bf201e-ca31-4fd9-9cd7-dfcc10deeda6] socks connection closed\n2025-07-16 17:34:10.573 [info] [command][838bacf0-ce02-45df-9f3c-ad91210fc8d0] Socket close event received\n2025-07-16 17:34:10.591 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55134 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:35:10.579 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:35:10.581 [info] [command][173c0a66-d320-4df0-ace1-f339b9a55f82] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""173c0a66-d320-4df0-ace1-f339b9a55f82""}\n2025-07-16 17:35:10.581 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][600ee74a-5de8-4f02-8ea9-1a881230ab86] received connection request\n2025-07-16 17:35:10.582 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:35:10.599 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][600ee74a-5de8-4f02-8ea9-1a881230ab86] socks forwarding established\n2025-07-16 17:35:10.741 [info] [command][173c0a66-d320-4df0-ace1-f339b9a55f82] Process exited with code 0\n2025-07-16 17:35:10.742 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][600ee74a-5de8-4f02-8ea9-1a881230ab86] socks connection closed\n2025-07-16 17:35:10.742 [info] [command][173c0a66-d320-4df0-ace1-f339b9a55f82] Socket close event received\n2025-07-16 17:35:10.757 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55178 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:36:10.747 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:36:10.748 [info] [command][c0d2a124-22e6-48e8-8373-5918b4fe1967] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c0d2a124-22e6-48e8-8373-5918b4fe1967""}\n2025-07-16 17:36:10.748 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a98a91ee-6f66-4936-8590-4b63e43aaeba] received connection request\n2025-07-16 17:36:10.748 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:36:10.859 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a98a91ee-6f66-4936-8590-4b63e43aaeba] socks forwarding established\n2025-07-16 17:36:10.984 [info] [command][c0d2a124-22e6-48e8-8373-5918b4fe1967] Process exited with code 0\n2025-07-16 17:36:10.984 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a98a91ee-6f66-4936-8590-4b63e43aaeba] socks connection closed\n2025-07-16 17:36:10.984 [info] [command][c0d2a124-22e6-48e8-8373-5918b4fe1967] Socket close event received\n2025-07-16 17:36:11.001 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55208 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:37:10.987 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:37:10.988 [info] [command][c025652d-de8b-4f57-84ef-aebe19c269f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c025652d-de8b-4f57-84ef-aebe19c269f3""}\n2025-07-16 17:37:10.988 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3771cf9e-0b8b-445e-8693-2043dd7a97c1] received connection request\n2025-07-16 17:37:10.988 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:37:11.007 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3771cf9e-0b8b-445e-8693-2043dd7a97c1] socks forwarding established\n2025-07-16 17:37:11.034 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3771cf9e-0b8b-445e-8693-2043dd7a97c1] socks connection closed\n2025-07-16 17:37:11.035 [info] [command][c025652d-de8b-4f57-84ef-aebe19c269f3] Process exited with code 0\n2025-07-16 17:37:11.035 [info] [command][c025652d-de8b-4f57-84ef-aebe19c269f3] Socket close event received\n2025-07-16 17:37:11.193 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55271 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:38:11.038 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:38:11.039 [info] [command][539ac862-53c1-4ff3-acba-84372c5189df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""539ac862-53c1-4ff3-acba-84372c5189df""}\n2025-07-16 17:38:11.040 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][eac51af2-affb-4357-a562-6f3e00e012d9] received connection request\n2025-07-16 17:38:11.040 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:38:11.166 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][eac51af2-affb-4357-a562-6f3e00e012d9] socks forwarding established\n2025-07-16 17:38:11.199 [info] [command][539ac862-53c1-4ff3-acba-84372c5189df] Process exited with code 0\n2025-07-16 17:38:11.199 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][eac51af2-affb-4357-a562-6f3e00e012d9] socks connection closed\n2025-07-16 17:38:11.199 [info] [command][539ac862-53c1-4ff3-acba-84372c5189df] Socket close event received\n2025-07-16 17:38:11.289 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55309 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:39:11.204 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:39:11.206 [info] [command][d0f5d4ff-bc7f-445c-869b-62c5789ec890] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d0f5d4ff-bc7f-445c-869b-62c5789ec890""}\n2025-07-16 17:39:11.207 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1bbb3fe8-722c-47bb-a3c9-32354395a9db] received connection request\n2025-07-16 17:39:11.207 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:39:11.314 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1bbb3fe8-722c-47bb-a3c9-32354395a9db] socks forwarding established\n2025-07-16 17:39:11.433 [info] [command][d0f5d4ff-bc7f-445c-869b-62c5789ec890] Process exited with code 0\n2025-07-16 17:39:11.433 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1bbb3fe8-722c-47bb-a3c9-32354395a9db] socks connection closed\n2025-07-16 17:39:11.433 [info] [command][d0f5d4ff-bc7f-445c-869b-62c5789ec890] Socket close event received\n2025-07-16 17:39:11.452 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55344 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:40:11.435 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:40:11.436 [info] [command][1d5486e5-f3d8-4fad-95e1-7acb853bd57d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1d5486e5-f3d8-4fad-95e1-7acb853bd57d""}\n2025-07-16 17:40:11.437 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][bf8ac048-ab58-4100-96d7-8a16effdb187] received connection request\n2025-07-16 17:40:11.437 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:40:11.533 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bf8ac048-ab58-4100-96d7-8a16effdb187] socks forwarding established\n2025-07-16 17:40:11.601 [info] [command][1d5486e5-f3d8-4fad-95e1-7acb853bd57d] Process exited with code 0\n2025-07-16 17:40:11.602 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bf8ac048-ab58-4100-96d7-8a16effdb187] socks connection closed\n2025-07-16 17:40:11.602 [info] [command][1d5486e5-f3d8-4fad-95e1-7acb853bd57d] Socket close event received\n2025-07-16 17:40:11.690 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55404 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:41:11.604 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:41:11.605 [info] [command][27e8be50-019d-483e-83ea-c2cd2eb20f34] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""27e8be50-019d-483e-83ea-c2cd2eb20f34""}\n2025-07-16 17:41:11.605 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][87497c49-3a2f-41eb-8b1f-0a960ea5d945] received connection request\n2025-07-16 17:41:11.606 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:41:11.623 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][87497c49-3a2f-41eb-8b1f-0a960ea5d945] socks forwarding established\n2025-07-16 17:41:11.651 [info] [command][27e8be50-019d-483e-83ea-c2cd2eb20f34] Process exited with code 0\n2025-07-16 17:41:11.651 [info] [command][27e8be50-019d-483e-83ea-c2cd2eb20f34] Socket close event received\n2025-07-16 17:41:11.652 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][87497c49-3a2f-41eb-8b1f-0a960ea5d945] socks connection closed\n2025-07-16 17:41:11.668 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55429 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:42:11.653 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:42:11.655 [info] [command][79392c1d-4115-41a9-aee2-1cee156bd0f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""79392c1d-4115-41a9-aee2-1cee156bd0f6""}\n2025-07-16 17:42:11.655 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1d109a81-f9f1-44e7-9bb1-565498dc95b7] received connection request\n2025-07-16 17:42:11.656 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:42:11.673 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1d109a81-f9f1-44e7-9bb1-565498dc95b7] socks forwarding established\n2025-07-16 17:42:11.696 [info] [command][79392c1d-4115-41a9-aee2-1cee156bd0f6] Process exited with code 0\n2025-07-16 17:42:11.696 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1d109a81-f9f1-44e7-9bb1-565498dc95b7] socks connection closed\n2025-07-16 17:42:11.696 [info] [command][79392c1d-4115-41a9-aee2-1cee156bd0f6] Socket close event received\n2025-07-16 17:42:11.714 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55475 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:43:11.698 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:43:11.700 [info] [command][387649ec-123a-4a44-bb6f-c3c56982dbfa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""387649ec-123a-4a44-bb6f-c3c56982dbfa""}\n2025-07-16 17:43:11.701 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][689c0571-8d4b-46b4-93c9-899dc38ff19a] received connection request\n2025-07-16 17:43:11.702 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:43:11.721 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][689c0571-8d4b-46b4-93c9-899dc38ff19a] socks forwarding established\n2025-07-16 17:43:11.751 [info] [command][387649ec-123a-4a44-bb6f-c3c56982dbfa] Process exited with code 0\n2025-07-16 17:43:11.751 [info] [command][387649ec-123a-4a44-bb6f-c3c56982dbfa] Socket close event received\n2025-07-16 17:43:11.752 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][689c0571-8d4b-46b4-93c9-899dc38ff19a] socks connection closed\n2025-07-16 17:43:11.770 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55508 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:44:11.755 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:44:11.756 [info] [command][d88eb2c3-cd18-4667-b64c-6062f9614c81] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d88eb2c3-cd18-4667-b64c-6062f9614c81""}\n2025-07-16 17:44:11.756 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][870753bf-e7bd-4107-a243-b978f8bb915b] received connection request\n2025-07-16 17:44:11.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:44:11.774 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][870753bf-e7bd-4107-a243-b978f8bb915b] socks forwarding established\n2025-07-16 17:44:11.797 [info] [command][d88eb2c3-cd18-4667-b64c-6062f9614c81] Process exited with code 0\n2025-07-16 17:44:11.797 [info] [command][d88eb2c3-cd18-4667-b64c-6062f9614c81] Socket close event received\n2025-07-16 17:44:11.799 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][870753bf-e7bd-4107-a243-b978f8bb915b] socks connection closed\n2025-07-16 17:44:11.814 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55556 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:45:11.798 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:45:11.800 [info] [command][070b2a6b-c16b-4447-bec9-a6dc3fc244fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""070b2a6b-c16b-4447-bec9-a6dc3fc244fe""}\n2025-07-16 17:45:11.801 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0ccb4236-1b4c-4363-b60a-063e6897bfae] received connection request\n2025-07-16 17:45:11.802 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:45:11.820 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0ccb4236-1b4c-4363-b60a-063e6897bfae] socks forwarding established\n2025-07-16 17:45:11.850 [info] [command][070b2a6b-c16b-4447-bec9-a6dc3fc244fe] Process exited with code 0\n2025-07-16 17:45:11.850 [info] [command][070b2a6b-c16b-4447-bec9-a6dc3fc244fe] Socket close event received\n2025-07-16 17:45:11.851 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0ccb4236-1b4c-4363-b60a-063e6897bfae] socks connection closed\n2025-07-16 17:45:11.870 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55604 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:46:11.853 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:46:11.855 [info] [command][57573b1f-691c-4533-8c66-714481d0ffe5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""57573b1f-691c-4533-8c66-714481d0ffe5""}\n2025-07-16 17:46:11.856 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][51b08585-6669-4bd0-93e1-7ea7cc3e65a1] received connection request\n2025-07-16 17:46:11.856 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:46:11.875 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][51b08585-6669-4bd0-93e1-7ea7cc3e65a1] socks forwarding established\n2025-07-16 17:46:11.906 [info] [command][57573b1f-691c-4533-8c66-714481d0ffe5] Process exited with code 0\n2025-07-16 17:46:11.906 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][51b08585-6669-4bd0-93e1-7ea7cc3e65a1] socks connection closed\n2025-07-16 17:46:11.906 [info] [command][57573b1f-691c-4533-8c66-714481d0ffe5] Socket close event received\n2025-07-16 17:46:11.925 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55634 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:47:11.911 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:47:11.912 [info] [command][db88d7ab-f03d-4bc8-b3a4-999b4fe6ea5d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""db88d7ab-f03d-4bc8-b3a4-999b4fe6ea5d""}\n2025-07-16 17:47:11.912 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f76cf401-7a71-496c-9f5a-e3b56ed38504] received connection request\n2025-07-16 17:47:11.913 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:47:11.930 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f76cf401-7a71-496c-9f5a-e3b56ed38504] socks forwarding established\n2025-07-16 17:47:11.956 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f76cf401-7a71-496c-9f5a-e3b56ed38504] socks connection closed\n2025-07-16 17:47:11.956 [info] [command][db88d7ab-f03d-4bc8-b3a4-999b4fe6ea5d] Process exited with code 0\n2025-07-16 17:47:11.956 [info] [command][db88d7ab-f03d-4bc8-b3a4-999b4fe6ea5d] Socket close event received\n2025-07-16 17:47:11.974 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55687 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:48:11.958 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:48:11.960 [info] [command][c29455f6-7d67-4d8a-8485-e18692d23d59] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c29455f6-7d67-4d8a-8485-e18692d23d59""}\n2025-07-16 17:48:11.960 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d1da8fce-0021-4c30-b57f-6053f6513883] received connection request\n2025-07-16 17:48:11.961 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:48:11.979 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d1da8fce-0021-4c30-b57f-6053f6513883] socks forwarding established\n2025-07-16 17:48:12.010 [info] [command][c29455f6-7d67-4d8a-8485-e18692d23d59] Process exited with code 0\n2025-07-16 17:48:12.010 [info] [command][c29455f6-7d67-4d8a-8485-e18692d23d59] Socket close event received\n2025-07-16 17:48:12.010 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d1da8fce-0021-4c30-b57f-6053f6513883] socks connection closed\n2025-07-16 17:48:12.026 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55718 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:49:12.010 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:49:12.013 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5c50712e-9d76-403d-bf4f-4e28b0381d1e] received connection request\n2025-07-16 17:49:12.013 [info] [command][df26a97d-9aa9-48ac-b6fb-c190887e7a73] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""df26a97d-9aa9-48ac-b6fb-c190887e7a73""}\n2025-07-16 17:49:12.014 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:49:12.039 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5c50712e-9d76-403d-bf4f-4e28b0381d1e] socks forwarding established\n2025-07-16 17:49:12.176 [info] [command][df26a97d-9aa9-48ac-b6fb-c190887e7a73] Process exited with code 0\n2025-07-16 17:49:12.176 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5c50712e-9d76-403d-bf4f-4e28b0381d1e] socks connection closed\n2025-07-16 17:49:12.176 [info] [command][df26a97d-9aa9-48ac-b6fb-c190887e7a73] Socket close event received\n2025-07-16 17:49:12.191 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55748 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:50:12.177 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:50:12.180 [info] [command][acd4bc6c-4855-42da-9f37-585f3d3781e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""acd4bc6c-4855-42da-9f37-585f3d3781e1""}\n2025-07-16 17:50:12.181 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d32a6fb5-791e-4ca1-b963-8311461947ac] received connection request\n2025-07-16 17:50:12.181 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:50:12.200 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d32a6fb5-791e-4ca1-b963-8311461947ac] socks forwarding established\n2025-07-16 17:50:12.232 [info] [command][acd4bc6c-4855-42da-9f37-585f3d3781e1] Process exited with code 0\n2025-07-16 17:50:12.233 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d32a6fb5-791e-4ca1-b963-8311461947ac] socks connection closed\n2025-07-16 17:50:12.233 [info] [command][acd4bc6c-4855-42da-9f37-585f3d3781e1] Socket close event received\n2025-07-16 17:50:12.249 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55790 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:51:12.235 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:51:12.237 [info] [command][53da41ef-9517-4773-82f2-f3da7cb22bc7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""53da41ef-9517-4773-82f2-f3da7cb22bc7""}\n2025-07-16 17:51:12.238 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][40180d31-97a9-483d-9d7c-7041f9b88a7c] received connection request\n2025-07-16 17:51:12.238 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:51:12.256 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][40180d31-97a9-483d-9d7c-7041f9b88a7c] socks forwarding established\n2025-07-16 17:51:12.285 [info] [command][53da41ef-9517-4773-82f2-f3da7cb22bc7] Process exited with code 0\n2025-07-16 17:51:12.286 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][40180d31-97a9-483d-9d7c-7041f9b88a7c] socks connection closed\n2025-07-16 17:51:12.286 [info] [command][53da41ef-9517-4773-82f2-f3da7cb22bc7] Socket close event received\n2025-07-16 17:51:12.303 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55819 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:52:12.288 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:52:12.290 [info] [command][44a1063e-d4a8-4bda-acf1-2de18fd0e3b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""44a1063e-d4a8-4bda-acf1-2de18fd0e3b1""}\n2025-07-16 17:52:12.291 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][147591fc-15c9-4d94-aa5f-32d59fba9f08] received connection request\n2025-07-16 17:52:12.292 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:52:12.310 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][147591fc-15c9-4d94-aa5f-32d59fba9f08] socks forwarding established\n2025-07-16 17:52:12.340 [info] [command][44a1063e-d4a8-4bda-acf1-2de18fd0e3b1] Process exited with code 0\n2025-07-16 17:52:12.341 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][147591fc-15c9-4d94-aa5f-32d59fba9f08] socks connection closed\n2025-07-16 17:52:12.341 [info] [command][44a1063e-d4a8-4bda-acf1-2de18fd0e3b1] Socket close event received\n2025-07-16 17:52:12.359 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55866 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:53:12.345 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:53:12.346 [info] [command][f4189ded-6b31-4b57-a016-aa5dcf34f209] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f4189ded-6b31-4b57-a016-aa5dcf34f209""}\n2025-07-16 17:53:12.347 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5b404a15-5d20-41aa-af95-76d450f46ea3] received connection request\n2025-07-16 17:53:12.347 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:53:12.364 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5b404a15-5d20-41aa-af95-76d450f46ea3] socks forwarding established\n2025-07-16 17:53:12.394 [info] [command][f4189ded-6b31-4b57-a016-aa5dcf34f209] Process exited with code 0\n2025-07-16 17:53:12.394 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5b404a15-5d20-41aa-af95-76d450f46ea3] socks connection closed\n2025-07-16 17:53:12.394 [info] [command][f4189ded-6b31-4b57-a016-aa5dcf34f209] Socket close event received\n2025-07-16 17:53:12.411 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55925 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:54:12.395 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:54:12.396 [info] [command][cf6e57c2-3f4a-4b79-a397-1dacd87707c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""cf6e57c2-3f4a-4b79-a397-1dacd87707c4""}\n2025-07-16 17:54:12.398 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][82918d08-eeeb-4637-8193-4a2462ffe149] received connection request\n2025-07-16 17:54:12.398 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 17:54:12.398 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:54:12.416 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][82918d08-eeeb-4637-8193-4a2462ffe149] socks forwarding established\n2025-07-16 17:54:12.444 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][82918d08-eeeb-4637-8193-4a2462ffe149] socks connection closed\n2025-07-16 17:54:12.444 [info] [command][cf6e57c2-3f4a-4b79-a397-1dacd87707c4] Process exited with code 0\n2025-07-16 17:54:12.444 [info] [command][cf6e57c2-3f4a-4b79-a397-1dacd87707c4] Socket close event received\n2025-07-16 17:54:12.459 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 55960 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:55:12.451 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:55:12.453 [info] [command][ca2e679a-5822-4208-89c1-6c21e5a35e47] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ca2e679a-5822-4208-89c1-6c21e5a35e47""}\n2025-07-16 17:55:12.454 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c8332f12-6983-48f6-827e-e0b9049e9b49] received connection request\n2025-07-16 17:55:12.455 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:55:12.472 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c8332f12-6983-48f6-827e-e0b9049e9b49] socks forwarding established\n2025-07-16 17:55:12.501 [info] [command][ca2e679a-5822-4208-89c1-6c21e5a35e47] Process exited with code 0\n2025-07-16 17:55:12.501 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c8332f12-6983-48f6-827e-e0b9049e9b49] socks connection closed\n2025-07-16 17:55:12.501 [info] [command][ca2e679a-5822-4208-89c1-6c21e5a35e47] Socket close event received\n2025-07-16 17:55:12.520 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56003 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:56:12.505 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:56:12.507 [info] [command][a65e4cd5-a4ad-4bfa-8aca-0caa214bbeb7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a65e4cd5-a4ad-4bfa-8aca-0caa214bbeb7""}\n2025-07-16 17:56:12.508 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c1ef9021-4ef3-4d2a-8755-a86b763e09d8] received connection request\n2025-07-16 17:56:12.510 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:56:12.528 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c1ef9021-4ef3-4d2a-8755-a86b763e09d8] socks forwarding established\n2025-07-16 17:56:12.552 [info] [command][a65e4cd5-a4ad-4bfa-8aca-0caa214bbeb7] Process exited with code 0\n2025-07-16 17:56:12.552 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c1ef9021-4ef3-4d2a-8755-a86b763e09d8] socks connection closed\n2025-07-16 17:56:12.553 [info] [command][a65e4cd5-a4ad-4bfa-8aca-0caa214bbeb7] Socket close event received\n2025-07-16 17:56:12.569 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56034 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:57:12.558 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:57:12.560 [info] [command][6de3a7f5-d545-4726-b8f5-e80112947e35] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6de3a7f5-d545-4726-b8f5-e80112947e35""}\n2025-07-16 17:57:12.561 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2e7f787a-2964-418b-a1b7-017078438a92] received connection request\n2025-07-16 17:57:12.561 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:57:12.580 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2e7f787a-2964-418b-a1b7-017078438a92] socks forwarding established\n2025-07-16 17:57:12.612 [info] [command][6de3a7f5-d545-4726-b8f5-e80112947e35] Process exited with code 0\n2025-07-16 17:57:12.612 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2e7f787a-2964-418b-a1b7-017078438a92] socks connection closed\n2025-07-16 17:57:12.612 [info] [command][6de3a7f5-d545-4726-b8f5-e80112947e35] Socket close event received\n2025-07-16 17:57:12.630 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56082 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:58:12.615 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:58:12.617 [info] [command][8b89fea3-0ae5-46a9-81f9-854f014d2026] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8b89fea3-0ae5-46a9-81f9-854f014d2026""}\n2025-07-16 17:58:12.617 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][07d4dc77-bcef-4a9a-ae90-88e32dd5652a] received connection request\n2025-07-16 17:58:12.617 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:58:12.635 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][07d4dc77-bcef-4a9a-ae90-88e32dd5652a] socks forwarding established\n2025-07-16 17:58:12.666 [info] [command][8b89fea3-0ae5-46a9-81f9-854f014d2026] Process exited with code 0\n2025-07-16 17:58:12.666 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][07d4dc77-bcef-4a9a-ae90-88e32dd5652a] socks connection closed\n2025-07-16 17:58:12.666 [info] [command][8b89fea3-0ae5-46a9-81f9-854f014d2026] Socket close event received\n2025-07-16 17:58:12.702 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56121 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 17:59:12.671 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 17:59:12.674 [info] [command][31bbc68c-7add-4e78-a1eb-6c6ef06e49d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""31bbc68c-7add-4e78-a1eb-6c6ef06e49d0""}\n2025-07-16 17:59:12.675 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][43690663-f1a7-4454-b37b-0be58ac22a1e] received connection request\n2025-07-16 17:59:12.676 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 17:59:12.676 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 17:59:12.695 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43690663-f1a7-4454-b37b-0be58ac22a1e] socks forwarding established\n2025-07-16 17:59:12.721 [info] [command][31bbc68c-7add-4e78-a1eb-6c6ef06e49d0] Process exited with code 0\n2025-07-16 17:59:12.721 [info] [command][31bbc68c-7add-4e78-a1eb-6c6ef06e49d0] Socket close event received\n2025-07-16 17:59:12.722 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43690663-f1a7-4454-b37b-0be58ac22a1e] socks connection closed\n2025-07-16 17:59:12.738 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56157 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:00:12.725 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:00:12.727 [info] [command][ea3c113b-00c9-44d7-ac2d-150eb070b53b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ea3c113b-00c9-44d7-ac2d-150eb070b53b""}\n2025-07-16 18:00:12.728 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][cfe53ac8-4ce4-4223-8a42-bcd4405a44b0] received connection request\n2025-07-16 18:00:12.728 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:00:12.747 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cfe53ac8-4ce4-4223-8a42-bcd4405a44b0] socks forwarding established\n2025-07-16 18:00:12.777 [info] [command][ea3c113b-00c9-44d7-ac2d-150eb070b53b] Process exited with code 0\n2025-07-16 18:00:12.778 [info] [command][ea3c113b-00c9-44d7-ac2d-150eb070b53b] Socket close event received\n2025-07-16 18:00:12.778 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][cfe53ac8-4ce4-4223-8a42-bcd4405a44b0] socks connection closed\n2025-07-16 18:00:12.795 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56204 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:01:12.779 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:01:12.781 [info] [command][88b6c66c-3676-4026-805e-b53ea4d7e178] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""88b6c66c-3676-4026-805e-b53ea4d7e178""}\n2025-07-16 18:01:12.781 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1f4b466c-8fb6-46e4-a565-da86a8ae7d96] received connection request\n2025-07-16 18:01:12.782 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:01:12.799 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1f4b466c-8fb6-46e4-a565-da86a8ae7d96] socks forwarding established\n2025-07-16 18:01:12.828 [info] [command][88b6c66c-3676-4026-805e-b53ea4d7e178] Process exited with code 0\n2025-07-16 18:01:12.828 [info] [command][88b6c66c-3676-4026-805e-b53ea4d7e178] Socket close event received\n2025-07-16 18:01:12.829 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1f4b466c-8fb6-46e4-a565-da86a8ae7d96] socks connection closed\n2025-07-16 18:01:12.844 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56280 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:02:12.829 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:02:12.831 [info] [command][dd818698-8a00-4da8-bc2c-925771b142c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""dd818698-8a00-4da8-bc2c-925771b142c7""}\n2025-07-16 18:02:12.831 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8d9c0d98-a338-47aa-87ce-8bc35ec18d10] received connection request\n2025-07-16 18:02:12.832 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 18:02:12.832 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:02:12.850 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8d9c0d98-a338-47aa-87ce-8bc35ec18d10] socks forwarding established\n2025-07-16 18:02:12.881 [info] [command][dd818698-8a00-4da8-bc2c-925771b142c7] Process exited with code 0\n2025-07-16 18:02:12.881 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8d9c0d98-a338-47aa-87ce-8bc35ec18d10] socks connection closed\n2025-07-16 18:02:12.881 [info] [command][dd818698-8a00-4da8-bc2c-925771b142c7] Socket close event received\n2025-07-16 18:02:12.898 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56346 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:03:12.882 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:03:12.882 [info] [command][e31d5a49-550f-4ae1-9db9-16d598f16ebe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e31d5a49-550f-4ae1-9db9-16d598f16ebe""}\n2025-07-16 18:03:12.883 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9de97c62-2e50-4428-9264-239d937fc26f] received connection request\n2025-07-16 18:03:12.883 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:03:12.900 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9de97c62-2e50-4428-9264-239d937fc26f] socks forwarding established\n2025-07-16 18:03:12.928 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9de97c62-2e50-4428-9264-239d937fc26f] socks connection closed\n2025-07-16 18:03:12.928 [info] [command][e31d5a49-550f-4ae1-9db9-16d598f16ebe] Process exited with code 0\n2025-07-16 18:03:12.928 [info] [command][e31d5a49-550f-4ae1-9db9-16d598f16ebe] Socket close event received\n2025-07-16 18:03:12.945 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56404 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:04:12.932 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:04:12.933 [info] [command][9a393431-c8dd-4b0b-9033-1a97f3924d7b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""9a393431-c8dd-4b0b-9033-1a97f3924d7b""}\n2025-07-16 18:04:12.933 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][73ab3504-dc3c-4864-9bef-e7ef23b0f7ec] received connection request\n2025-07-16 18:04:12.933 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:04:12.949 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][73ab3504-dc3c-4864-9bef-e7ef23b0f7ec] socks forwarding established\n2025-07-16 18:04:12.978 [info] [command][9a393431-c8dd-4b0b-9033-1a97f3924d7b] Process exited with code 0\n2025-07-16 18:04:12.979 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][73ab3504-dc3c-4864-9bef-e7ef23b0f7ec] socks connection closed\n2025-07-16 18:04:12.979 [info] [command][9a393431-c8dd-4b0b-9033-1a97f3924d7b] Socket close event received\n2025-07-16 18:04:12.998 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56436 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:05:12.980 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:05:12.983 [info] [command][e206738a-926d-4295-af91-d9bdca057c11] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e206738a-926d-4295-af91-d9bdca057c11""}\n2025-07-16 18:05:12.984 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][bee9fa71-8d21-4354-882c-e5f74f8fe121] received connection request\n2025-07-16 18:05:12.984 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:05:13.004 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bee9fa71-8d21-4354-882c-e5f74f8fe121] socks forwarding established\n2025-07-16 18:05:13.036 [info] [command][e206738a-926d-4295-af91-d9bdca057c11] Process exited with code 0\n2025-07-16 18:05:13.036 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][bee9fa71-8d21-4354-882c-e5f74f8fe121] socks connection closed\n2025-07-16 18:05:13.036 [info] [command][e206738a-926d-4295-af91-d9bdca057c11] Socket close event received\n2025-07-16 18:05:13.054 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56479 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:06:13.040 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:06:13.043 [info] [command][ace2bf19-6596-4169-aa94-7dafc5b47984] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ace2bf19-6596-4169-aa94-7dafc5b47984""}\n2025-07-16 18:06:13.043 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d0b69082-0b0f-4391-b7ca-ef9be9bee9d0] received connection request\n2025-07-16 18:06:13.044 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:06:13.060 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d0b69082-0b0f-4391-b7ca-ef9be9bee9d0] socks forwarding established\n2025-07-16 18:06:13.090 [info] [command][ace2bf19-6596-4169-aa94-7dafc5b47984] Process exited with code 0\n2025-07-16 18:06:13.091 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d0b69082-0b0f-4391-b7ca-ef9be9bee9d0] socks connection closed\n2025-07-16 18:06:13.091 [info] [command][ace2bf19-6596-4169-aa94-7dafc5b47984] Socket close event received\n2025-07-16 18:06:13.109 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56508 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:07:13.093 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:07:13.096 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7e55b520-2318-449c-bed5-d14b11123fe9] received connection request\n2025-07-16 18:07:13.096 [info] [command][395f12da-47a4-4cbf-b331-6f2b47a768c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""395f12da-47a4-4cbf-b331-6f2b47a768c1""}\n2025-07-16 18:07:13.096 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:07:13.116 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7e55b520-2318-449c-bed5-d14b11123fe9] socks forwarding established\n2025-07-16 18:07:13.146 [info] [command][395f12da-47a4-4cbf-b331-6f2b47a768c1] Process exited with code 0\n2025-07-16 18:07:13.147 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7e55b520-2318-449c-bed5-d14b11123fe9] socks connection closed\n2025-07-16 18:07:13.147 [info] [command][395f12da-47a4-4cbf-b331-6f2b47a768c1] Socket close event received\n2025-07-16 18:07:13.164 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56563 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:08:13.151 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:08:13.152 [info] [command][125eaa4e-db08-4fb8-8965-dd0aca3a4514] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""125eaa4e-db08-4fb8-8965-dd0aca3a4514""}\n2025-07-16 18:08:13.153 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][870c9632-4ba1-4d9e-89a8-03562f1ec4ba] received connection request\n2025-07-16 18:08:13.153 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:08:13.172 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][870c9632-4ba1-4d9e-89a8-03562f1ec4ba] socks forwarding established\n2025-07-16 18:08:13.202 [info] [command][125eaa4e-db08-4fb8-8965-dd0aca3a4514] Process exited with code 0\n2025-07-16 18:08:13.202 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][870c9632-4ba1-4d9e-89a8-03562f1ec4ba] socks connection closed\n2025-07-16 18:08:13.202 [info] [command][125eaa4e-db08-4fb8-8965-dd0aca3a4514] Socket close event received\n2025-07-16 18:08:13.220 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56595 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:09:13.203 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:09:13.206 [info] [command][1a58d51f-0cdc-4979-a410-25be327dd9fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1a58d51f-0cdc-4979-a410-25be327dd9fd""}\n2025-07-16 18:09:13.207 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9ec89f7c-3bd9-4697-967a-c19cd71d312d] received connection request\n2025-07-16 18:09:13.207 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:09:13.229 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9ec89f7c-3bd9-4697-967a-c19cd71d312d] socks forwarding established\n2025-07-16 18:09:13.258 [info] [command][1a58d51f-0cdc-4979-a410-25be327dd9fd] Process exited with code 0\n2025-07-16 18:09:13.258 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9ec89f7c-3bd9-4697-967a-c19cd71d312d] socks connection closed\n2025-07-16 18:09:13.259 [info] [command][1a58d51f-0cdc-4979-a410-25be327dd9fd] Socket close event received\n2025-07-16 18:09:13.278 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56626 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:10:13.263 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:10:13.265 [info] [command][caf24a9c-c993-4e03-b139-21fa428578da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""caf24a9c-c993-4e03-b139-21fa428578da""}\n2025-07-16 18:10:13.266 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d718534f-5927-403d-b151-9e2f8cb10b1f] received connection request\n2025-07-16 18:10:13.266 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:10:13.285 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d718534f-5927-403d-b151-9e2f8cb10b1f] socks forwarding established\n2025-07-16 18:10:13.314 [info] [command][caf24a9c-c993-4e03-b139-21fa428578da] Process exited with code 0\n2025-07-16 18:10:13.314 [info] [command][caf24a9c-c993-4e03-b139-21fa428578da] Socket close event received\n2025-07-16 18:10:13.330 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d718534f-5927-403d-b151-9e2f8cb10b1f] socks connection closed\n2025-07-16 18:10:13.331 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56680 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:11:13.316 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:11:13.317 [info] [command][817cbb7a-b11f-48db-b906-e827bbe09c98] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""817cbb7a-b11f-48db-b906-e827bbe09c98""}\n2025-07-16 18:11:13.317 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][680b1f94-d2e8-4c77-aab1-230a492be633] received connection request\n2025-07-16 18:11:13.318 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 18:11:13.318 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:11:13.338 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][680b1f94-d2e8-4c77-aab1-230a492be633] socks forwarding established\n2025-07-16 18:11:13.365 [info] [command][817cbb7a-b11f-48db-b906-e827bbe09c98] Process exited with code 0\n2025-07-16 18:11:13.365 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][680b1f94-d2e8-4c77-aab1-230a492be633] socks connection closed\n2025-07-16 18:11:13.366 [info] [command][817cbb7a-b11f-48db-b906-e827bbe09c98] Socket close event received\n2025-07-16 18:11:13.384 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56704 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:12:13.366 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:12:13.369 [info] [command][a5fa6730-7622-414b-818e-3e67abb9d7d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a5fa6730-7622-414b-818e-3e67abb9d7d1""}\n2025-07-16 18:12:13.370 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5e839b45-24eb-4b9d-9a7d-9ef1fd0cec88] received connection request\n2025-07-16 18:12:13.370 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:12:13.387 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5e839b45-24eb-4b9d-9a7d-9ef1fd0cec88] socks forwarding established\n2025-07-16 18:12:13.416 [info] [command][a5fa6730-7622-414b-818e-3e67abb9d7d1] Process exited with code 0\n2025-07-16 18:12:13.417 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5e839b45-24eb-4b9d-9a7d-9ef1fd0cec88] socks connection closed\n2025-07-16 18:12:13.417 [info] [command][a5fa6730-7622-414b-818e-3e67abb9d7d1] Socket close event received\n2025-07-16 18:12:13.434 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56763 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:13:13.418 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:13:13.421 [info] [command][7b770609-fb00-4aed-8f8c-8eb940084b54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7b770609-fb00-4aed-8f8c-8eb940084b54""}\n2025-07-16 18:13:13.422 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][422912b4-56fa-487c-b87e-dc547a29e168] received connection request\n2025-07-16 18:13:13.422 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:13:13.440 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][422912b4-56fa-487c-b87e-dc547a29e168] socks forwarding established\n2025-07-16 18:13:13.471 [info] [command][7b770609-fb00-4aed-8f8c-8eb940084b54] Process exited with code 0\n2025-07-16 18:13:13.471 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][422912b4-56fa-487c-b87e-dc547a29e168] socks connection closed\n2025-07-16 18:13:13.471 [info] [command][7b770609-fb00-4aed-8f8c-8eb940084b54] Socket close event received\n2025-07-16 18:13:13.489 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56790 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:14:13.473 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:14:13.475 [info] [command][bca98493-fe8b-447a-948d-ef4187810197] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bca98493-fe8b-447a-948d-ef4187810197""}\n2025-07-16 18:14:13.475 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2c11e4e3-7689-451e-9cf5-1c3264cd97de] received connection request\n2025-07-16 18:14:13.475 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:14:13.492 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2c11e4e3-7689-451e-9cf5-1c3264cd97de] socks forwarding established\n2025-07-16 18:14:13.523 [info] [command][bca98493-fe8b-447a-948d-ef4187810197] Process exited with code 0\n2025-07-16 18:14:13.523 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2c11e4e3-7689-451e-9cf5-1c3264cd97de] socks connection closed\n2025-07-16 18:14:13.523 [info] [command][bca98493-fe8b-447a-948d-ef4187810197] Socket close event received\n2025-07-16 18:14:13.541 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56817 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:15:13.525 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:15:13.527 [info] [command][4724b6a1-1096-4eaf-86ef-f35708b0c120] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4724b6a1-1096-4eaf-86ef-f35708b0c120""}\n2025-07-16 18:15:13.527 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][11f2ee01-c4b4-4a90-b784-17bc27f2acdf] received connection request\n2025-07-16 18:15:13.528 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:15:13.545 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][11f2ee01-c4b4-4a90-b784-17bc27f2acdf] socks forwarding established\n2025-07-16 18:15:13.576 [info] [command][4724b6a1-1096-4eaf-86ef-f35708b0c120] Process exited with code 0\n2025-07-16 18:15:13.576 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][11f2ee01-c4b4-4a90-b784-17bc27f2acdf] socks connection closed\n2025-07-16 18:15:13.576 [info] [command][4724b6a1-1096-4eaf-86ef-f35708b0c120] Socket close event received\n2025-07-16 18:15:13.592 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56874 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:16:13.581 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:16:13.584 [info] [command][0b9cc1f8-dbaa-49a9-9ef2-8f985098a295] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0b9cc1f8-dbaa-49a9-9ef2-8f985098a295""}\n2025-07-16 18:16:13.585 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][00027990-cc7a-422b-b230-20e5f31a9f96] received connection request\n2025-07-16 18:16:13.585 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:16:13.604 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][00027990-cc7a-422b-b230-20e5f31a9f96] socks forwarding established\n2025-07-16 18:16:13.634 [info] [command][0b9cc1f8-dbaa-49a9-9ef2-8f985098a295] Process exited with code 0\n2025-07-16 18:16:13.634 [info] [command][0b9cc1f8-dbaa-49a9-9ef2-8f985098a295] Socket close event received\n2025-07-16 18:16:13.634 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][00027990-cc7a-422b-b230-20e5f31a9f96] socks connection closed\n2025-07-16 18:16:13.651 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56905 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:17:13.636 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:17:13.637 [info] [command][f4062864-4007-472f-bf81-119b7962f013] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f4062864-4007-472f-bf81-119b7962f013""}\n2025-07-16 18:17:13.638 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7a9532d0-5e59-452f-b3a2-05456a4d1a3c] received connection request\n2025-07-16 18:17:13.638 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:17:13.655 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7a9532d0-5e59-452f-b3a2-05456a4d1a3c] socks forwarding established\n2025-07-16 18:17:13.683 [info] [command][f4062864-4007-472f-bf81-119b7962f013] Process exited with code 0\n2025-07-16 18:17:13.684 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7a9532d0-5e59-452f-b3a2-05456a4d1a3c] socks connection closed\n2025-07-16 18:17:13.684 [info] [command][f4062864-4007-472f-bf81-119b7962f013] Socket close event received\n2025-07-16 18:17:13.701 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 56968 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:18:13.685 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:18:13.686 [info] [command][1c3914d9-a9c7-4549-b443-1140478c14d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1c3914d9-a9c7-4549-b443-1140478c14d2""}\n2025-07-16 18:18:13.687 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c753f9da-e73c-408c-83a6-7255f9b8e1f2] received connection request\n2025-07-16 18:18:13.687 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:18:13.705 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c753f9da-e73c-408c-83a6-7255f9b8e1f2] socks forwarding established\n2025-07-16 18:18:13.733 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c753f9da-e73c-408c-83a6-7255f9b8e1f2] socks connection closed\n2025-07-16 18:18:13.733 [info] [command][1c3914d9-a9c7-4549-b443-1140478c14d2] Process exited with code 0\n2025-07-16 18:18:13.733 [info] [command][1c3914d9-a9c7-4549-b443-1140478c14d2] Socket close event received\n2025-07-16 18:18:13.750 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57011 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:19:13.737 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:19:13.740 [info] [command][197c2bdc-3275-438c-8e03-cfc62e4349ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""197c2bdc-3275-438c-8e03-cfc62e4349ae""}\n2025-07-16 18:19:13.741 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8d598e17-d478-4dd6-857b-ecb07613287b] received connection request\n2025-07-16 18:19:13.742 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 18:19:13.742 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:19:13.759 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8d598e17-d478-4dd6-857b-ecb07613287b] socks forwarding established\n2025-07-16 18:19:13.788 [info] [command][197c2bdc-3275-438c-8e03-cfc62e4349ae] Process exited with code 0\n2025-07-16 18:19:13.788 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8d598e17-d478-4dd6-857b-ecb07613287b] socks connection closed\n2025-07-16 18:19:13.789 [info] [command][197c2bdc-3275-438c-8e03-cfc62e4349ae] Socket close event received\n2025-07-16 18:19:13.806 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57055 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:20:13.790 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:20:13.793 [info] [command][2a516d9f-7fb7-4c70-860c-3a99216269a2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2a516d9f-7fb7-4c70-860c-3a99216269a2""}\n2025-07-16 18:20:13.793 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8f6e9867-b6e5-428c-b9a6-7a24baadc783] received connection request\n2025-07-16 18:20:13.794 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:20:13.812 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8f6e9867-b6e5-428c-b9a6-7a24baadc783] socks forwarding established\n2025-07-16 18:20:13.841 [info] [command][2a516d9f-7fb7-4c70-860c-3a99216269a2] Process exited with code 0\n2025-07-16 18:20:13.842 [info] [command][2a516d9f-7fb7-4c70-860c-3a99216269a2] Socket close event received\n2025-07-16 18:20:13.842 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8f6e9867-b6e5-428c-b9a6-7a24baadc783] socks connection closed\n2025-07-16 18:20:13.861 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57120 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:21:13.845 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:21:13.847 [info] [command][e080d88f-dbc3-42f6-bfc4-dc73e7de07c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e080d88f-dbc3-42f6-bfc4-dc73e7de07c7""}\n2025-07-16 18:21:13.848 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4ac00760-30fb-46a6-a3bc-b0fddea8a613] received connection request\n2025-07-16 18:21:13.848 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:21:13.869 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4ac00760-30fb-46a6-a3bc-b0fddea8a613] socks forwarding established\n2025-07-16 18:21:13.897 [info] [command][e080d88f-dbc3-42f6-bfc4-dc73e7de07c7] Process exited with code 0\n2025-07-16 18:21:13.897 [info] [command][e080d88f-dbc3-42f6-bfc4-dc73e7de07c7] Socket close event received\n2025-07-16 18:21:13.898 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4ac00760-30fb-46a6-a3bc-b0fddea8a613] socks connection closed\n2025-07-16 18:21:13.916 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57151 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:22:13.903 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:22:13.905 [info] [command][16447d78-fd6e-41f5-b972-82b54843eaed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""16447d78-fd6e-41f5-b972-82b54843eaed""}\n2025-07-16 18:22:13.905 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f6d6a449-adcf-495f-a882-082804c8c6b0] received connection request\n2025-07-16 18:22:13.906 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:22:13.924 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f6d6a449-adcf-495f-a882-082804c8c6b0] socks forwarding established\n2025-07-16 18:22:13.953 [info] [command][16447d78-fd6e-41f5-b972-82b54843eaed] Process exited with code 0\n2025-07-16 18:22:13.953 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f6d6a449-adcf-495f-a882-082804c8c6b0] socks connection closed\n2025-07-16 18:22:13.953 [info] [command][16447d78-fd6e-41f5-b972-82b54843eaed] Socket close event received\n2025-07-16 18:22:13.970 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57206 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:23:13.955 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:23:13.957 [info] [command][35555e61-5afb-4b6c-a8a8-b36a28d8768b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""35555e61-5afb-4b6c-a8a8-b36a28d8768b""}\n2025-07-16 18:23:13.958 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a0a9e23e-b673-4aca-a794-a26145241e1a] received connection request\n2025-07-16 18:23:13.958 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:23:13.976 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a0a9e23e-b673-4aca-a794-a26145241e1a] socks forwarding established\n2025-07-16 18:23:14.006 [info] [command][35555e61-5afb-4b6c-a8a8-b36a28d8768b] Process exited with code 0\n2025-07-16 18:23:14.007 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a0a9e23e-b673-4aca-a794-a26145241e1a] socks connection closed\n2025-07-16 18:23:14.007 [info] [command][35555e61-5afb-4b6c-a8a8-b36a28d8768b] Socket close event received\n2025-07-16 18:23:14.159 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57230 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:24:14.011 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:24:14.013 [info] [command][97929b4a-735f-48c0-9894-0a094a6f69b2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""97929b4a-735f-48c0-9894-0a094a6f69b2""}\n2025-07-16 18:24:14.014 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5e31680b-73e1-4d4d-9090-38f0168c2eec] received connection request\n2025-07-16 18:24:14.015 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:24:14.032 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5e31680b-73e1-4d4d-9090-38f0168c2eec] socks forwarding established\n2025-07-16 18:24:14.056 [info] [command][97929b4a-735f-48c0-9894-0a094a6f69b2] Process exited with code 0\n2025-07-16 18:24:14.056 [info] [command][97929b4a-735f-48c0-9894-0a094a6f69b2] Socket close event received\n2025-07-16 18:24:14.057 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5e31680b-73e1-4d4d-9090-38f0168c2eec] socks connection closed\n2025-07-16 18:24:14.076 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57268 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:25:14.057 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:25:14.059 [info] [command][592ebacd-8145-49b2-853e-2c94b13ecbf7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""592ebacd-8145-49b2-853e-2c94b13ecbf7""}\n2025-07-16 18:25:14.060 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5417c3bb-2c7c-4389-8138-4c49269f2a55] received connection request\n2025-07-16 18:25:14.060 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:25:14.077 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5417c3bb-2c7c-4389-8138-4c49269f2a55] socks forwarding established\n2025-07-16 18:25:14.108 [info] [command][592ebacd-8145-49b2-853e-2c94b13ecbf7] Process exited with code 0\n2025-07-16 18:25:14.108 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5417c3bb-2c7c-4389-8138-4c49269f2a55] socks connection closed\n2025-07-16 18:25:14.108 [info] [command][592ebacd-8145-49b2-853e-2c94b13ecbf7] Socket close event received\n2025-07-16 18:25:14.125 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57316 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:26:14.113 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:26:14.116 [info] [command][e18f50ca-fcbf-447d-8fd9-fcb8550e9f75] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""e18f50ca-fcbf-447d-8fd9-fcb8550e9f75""}\n2025-07-16 18:26:14.116 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1759d750-af5a-47c2-b4db-7ca80ab50d8f] received connection request\n2025-07-16 18:26:14.117 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:26:14.134 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1759d750-af5a-47c2-b4db-7ca80ab50d8f] socks forwarding established\n2025-07-16 18:26:14.163 [info] [command][e18f50ca-fcbf-447d-8fd9-fcb8550e9f75] Process exited with code 0\n2025-07-16 18:26:14.163 [info] [command][e18f50ca-fcbf-447d-8fd9-fcb8550e9f75] Socket close event received\n2025-07-16 18:26:14.164 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1759d750-af5a-47c2-b4db-7ca80ab50d8f] socks connection closed\n2025-07-16 18:26:14.181 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57357 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:27:14.168 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:27:14.171 [info] [command][dcfd4a57-7814-4869-a6a1-90306e11e8af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""dcfd4a57-7814-4869-a6a1-90306e11e8af""}\n2025-07-16 18:27:14.172 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][43433702-238f-4c00-9721-8b63a49ca975] received connection request\n2025-07-16 18:27:14.173 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:27:14.191 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43433702-238f-4c00-9721-8b63a49ca975] socks forwarding established\n2025-07-16 18:27:14.219 [info] [command][dcfd4a57-7814-4869-a6a1-90306e11e8af] Process exited with code 0\n2025-07-16 18:27:14.220 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][43433702-238f-4c00-9721-8b63a49ca975] socks connection closed\n2025-07-16 18:27:14.220 [info] [command][dcfd4a57-7814-4869-a6a1-90306e11e8af] Socket close event received\n2025-07-16 18:27:14.236 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57426 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:28:14.226 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:28:14.228 [info] [command][eb7765a8-707c-4ed1-84af-aa3c96286cee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""eb7765a8-707c-4ed1-84af-aa3c96286cee""}\n2025-07-16 18:28:14.228 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][811ec10d-3cf5-401d-aa39-bffc15bd90e0] received connection request\n2025-07-16 18:28:14.229 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:28:14.247 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][811ec10d-3cf5-401d-aa39-bffc15bd90e0] socks forwarding established\n2025-07-16 18:28:14.280 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][811ec10d-3cf5-401d-aa39-bffc15bd90e0] socks connection closed\n2025-07-16 18:28:14.280 [info] [command][eb7765a8-707c-4ed1-84af-aa3c96286cee] Process exited with code 0\n2025-07-16 18:28:14.281 [info] [command][eb7765a8-707c-4ed1-84af-aa3c96286cee] Socket close event received\n2025-07-16 18:28:14.298 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57467 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:29:14.287 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:29:14.289 [info] [command][b719f380-2681-4608-9e43-a54b6930cb5a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b719f380-2681-4608-9e43-a54b6930cb5a""}\n2025-07-16 18:29:14.290 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c6ef97d9-a15c-4566-b7a4-8d3ee0b8adec] received connection request\n2025-07-16 18:29:14.291 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:29:14.308 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c6ef97d9-a15c-4566-b7a4-8d3ee0b8adec] socks forwarding established\n2025-07-16 18:29:14.341 [info] [command][b719f380-2681-4608-9e43-a54b6930cb5a] Process exited with code 0\n2025-07-16 18:29:14.342 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c6ef97d9-a15c-4566-b7a4-8d3ee0b8adec] socks connection closed\n2025-07-16 18:29:14.342 [info] [command][b719f380-2681-4608-9e43-a54b6930cb5a] Socket close event received\n2025-07-16 18:29:14.360 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57491 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:30:14.345 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:30:14.348 [info] [command][3382f334-5293-451d-9285-a838b1e0139b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3382f334-5293-451d-9285-a838b1e0139b""}\n2025-07-16 18:30:14.349 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e1b8dc5c-594e-4ecf-94d7-716feb470e4b] received connection request\n2025-07-16 18:30:14.350 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:30:14.368 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e1b8dc5c-594e-4ecf-94d7-716feb470e4b] socks forwarding established\n2025-07-16 18:30:14.394 [info] [command][3382f334-5293-451d-9285-a838b1e0139b] Process exited with code 0\n2025-07-16 18:30:14.394 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e1b8dc5c-594e-4ecf-94d7-716feb470e4b] socks connection closed\n2025-07-16 18:30:14.394 [info] [command][3382f334-5293-451d-9285-a838b1e0139b] Socket close event received\n2025-07-16 18:30:14.413 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57527 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:31:14.399 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:31:14.402 [info] [command][051e20f3-8ee9-4d59-b0a4-7cf66121d8a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""051e20f3-8ee9-4d59-b0a4-7cf66121d8a3""}\n2025-07-16 18:31:14.403 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][dcde12e0-2aed-4116-8b08-c7cc08a6bd7a] received connection request\n2025-07-16 18:31:14.404 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:31:14.422 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dcde12e0-2aed-4116-8b08-c7cc08a6bd7a] socks forwarding established\n2025-07-16 18:31:14.454 [info] [command][051e20f3-8ee9-4d59-b0a4-7cf66121d8a3] Process exited with code 0\n2025-07-16 18:31:14.454 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dcde12e0-2aed-4116-8b08-c7cc08a6bd7a] socks connection closed\n2025-07-16 18:31:14.454 [info] [command][051e20f3-8ee9-4d59-b0a4-7cf66121d8a3] Socket close event received\n2025-07-16 18:31:14.472 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57582 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:32:14.455 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:32:14.458 [info] [command][a5b454fc-7904-400f-a4ca-8d58ab75bb8a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a5b454fc-7904-400f-a4ca-8d58ab75bb8a""}\n2025-07-16 18:32:14.458 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][dfbc25a0-700b-44fa-9a13-a6de12641d20] received connection request\n2025-07-16 18:32:14.459 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:32:14.523 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dfbc25a0-700b-44fa-9a13-a6de12641d20] socks forwarding established\n2025-07-16 18:32:14.554 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][dfbc25a0-700b-44fa-9a13-a6de12641d20] socks connection closed\n2025-07-16 18:32:14.555 [info] [command][a5b454fc-7904-400f-a4ca-8d58ab75bb8a] Process exited with code 0\n2025-07-16 18:32:14.555 [info] [command][a5b454fc-7904-400f-a4ca-8d58ab75bb8a] Socket close event received\n2025-07-16 18:32:14.575 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57634 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:33:14.560 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:33:14.563 [info] [command][c0d9411a-ae48-4522-b810-6eb064a28080] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c0d9411a-ae48-4522-b810-6eb064a28080""}\n2025-07-16 18:33:14.563 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][49895378-7a3f-43c2-bc1a-6d67315655cf] received connection request\n2025-07-16 18:33:14.563 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:33:14.582 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][49895378-7a3f-43c2-bc1a-6d67315655cf] socks forwarding established\n2025-07-16 18:33:14.748 [info] [command][c0d9411a-ae48-4522-b810-6eb064a28080] Process exited with code 0\n2025-07-16 18:33:14.748 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][49895378-7a3f-43c2-bc1a-6d67315655cf] socks connection closed\n2025-07-16 18:33:14.748 [info] [command][c0d9411a-ae48-4522-b810-6eb064a28080] Socket close event received\n2025-07-16 18:33:14.768 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57662 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:34:14.750 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:34:14.753 [info] [command][ba1fad0a-4743-49ed-88ff-46325093f185] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ba1fad0a-4743-49ed-88ff-46325093f185""}\n2025-07-16 18:34:14.755 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d1f313a6-9c9e-4d51-ab55-bff31f1fbe6b] received connection request\n2025-07-16 18:34:14.755 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:34:14.803 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d1f313a6-9c9e-4d51-ab55-bff31f1fbe6b] socks forwarding established\n2025-07-16 18:34:14.861 [info] [command][ba1fad0a-4743-49ed-88ff-46325093f185] Process exited with code 0\n2025-07-16 18:34:14.861 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d1f313a6-9c9e-4d51-ab55-bff31f1fbe6b] socks connection closed\n2025-07-16 18:34:14.862 [info] [command][ba1fad0a-4743-49ed-88ff-46325093f185] Socket close event received\n2025-07-16 18:34:14.959 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57688 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:35:14.867 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:35:14.869 [info] [command][41bc846f-52f3-481d-9414-33901f33ae77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""41bc846f-52f3-481d-9414-33901f33ae77""}\n2025-07-16 18:35:14.870 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][edd1ee12-455e-4178-8e9b-d2b312150e96] received connection request\n2025-07-16 18:35:14.870 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:35:14.913 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][edd1ee12-455e-4178-8e9b-d2b312150e96] socks forwarding established\n2025-07-16 18:35:14.968 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][edd1ee12-455e-4178-8e9b-d2b312150e96] socks connection closed\n2025-07-16 18:35:14.968 [info] [command][41bc846f-52f3-481d-9414-33901f33ae77] Process exited with code 0\n2025-07-16 18:35:14.968 [info] [command][41bc846f-52f3-481d-9414-33901f33ae77] Socket close event received\n2025-07-16 18:35:15.065 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57741 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:36:14.968 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:36:14.969 [info] [command][a0759a9b-664f-4b1b-9797-ab1e88963197] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a0759a9b-664f-4b1b-9797-ab1e88963197""}\n2025-07-16 18:36:14.969 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2f7e8424-84c6-4621-a116-2edab1a8fed3] received connection request\n2025-07-16 18:36:14.970 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:36:15.074 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2f7e8424-84c6-4621-a116-2edab1a8fed3] socks forwarding established\n2025-07-16 18:36:15.151 [info] [command][a0759a9b-664f-4b1b-9797-ab1e88963197] Process exited with code 0\n2025-07-16 18:36:15.152 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2f7e8424-84c6-4621-a116-2edab1a8fed3] socks connection closed\n2025-07-16 18:36:15.152 [info] [command][a0759a9b-664f-4b1b-9797-ab1e88963197] Socket close event received\n2025-07-16 18:36:15.171 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57769 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:37:15.156 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:37:15.158 [info] [command][801a77b0-feca-43b4-8ddf-a1e89b303c05] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""801a77b0-feca-43b4-8ddf-a1e89b303c05""}\n2025-07-16 18:37:15.159 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e2116c56-e784-4032-a875-8117927c8256] received connection request\n2025-07-16 18:37:15.159 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:37:15.178 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e2116c56-e784-4032-a875-8117927c8256] socks forwarding established\n2025-07-16 18:37:15.219 [info] [command][801a77b0-feca-43b4-8ddf-a1e89b303c05] Process exited with code 0\n2025-07-16 18:37:15.220 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e2116c56-e784-4032-a875-8117927c8256] socks connection closed\n2025-07-16 18:37:15.220 [info] [command][801a77b0-feca-43b4-8ddf-a1e89b303c05] Socket close event received\n2025-07-16 18:37:15.238 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57824 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:38:15.220 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:38:15.222 [info] [command][b7d7c4b7-c4f7-419d-99c3-39a4896b6cbb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b7d7c4b7-c4f7-419d-99c3-39a4896b6cbb""}\n2025-07-16 18:38:15.222 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1b8ec3fc-c129-4509-807e-82f0a87d460f] received connection request\n2025-07-16 18:38:15.222 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:38:15.289 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1b8ec3fc-c129-4509-807e-82f0a87d460f] socks forwarding established\n2025-07-16 18:38:15.366 [info] [command][b7d7c4b7-c4f7-419d-99c3-39a4896b6cbb] Process exited with code 0\n2025-07-16 18:38:15.366 [info] [command][b7d7c4b7-c4f7-419d-99c3-39a4896b6cbb] Socket close event received\n2025-07-16 18:38:15.381 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1b8ec3fc-c129-4509-807e-82f0a87d460f] socks connection closed\n2025-07-16 18:38:15.384 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57853 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:39:15.369 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:39:15.372 [info] [command][d2afd541-8e20-4faf-8aad-6e68d146fe0e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d2afd541-8e20-4faf-8aad-6e68d146fe0e""}\n2025-07-16 18:39:15.373 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0df0a5cd-578f-4be3-b9b5-84ff36f337eb] received connection request\n2025-07-16 18:39:15.373 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:39:15.435 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0df0a5cd-578f-4be3-b9b5-84ff36f337eb] socks forwarding established\n2025-07-16 18:39:15.511 [info] [command][d2afd541-8e20-4faf-8aad-6e68d146fe0e] Process exited with code 0\n2025-07-16 18:39:15.511 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0df0a5cd-578f-4be3-b9b5-84ff36f337eb] socks connection closed\n2025-07-16 18:39:15.511 [info] [command][d2afd541-8e20-4faf-8aad-6e68d146fe0e] Socket close event received\n2025-07-16 18:39:15.529 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57901 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:40:15.516 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:40:15.517 [info] [command][b678ca6a-1c6c-4bbf-a81e-ab1bd49358a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b678ca6a-1c6c-4bbf-a81e-ab1bd49358a6""}\n2025-07-16 18:40:15.517 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7439c182-7df6-4332-9c74-7eed3f9e125f] received connection request\n2025-07-16 18:40:15.518 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:40:15.536 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7439c182-7df6-4332-9c74-7eed3f9e125f] socks forwarding established\n2025-07-16 18:40:15.564 [info] [command][b678ca6a-1c6c-4bbf-a81e-ab1bd49358a6] Process exited with code 0\n2025-07-16 18:40:15.564 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7439c182-7df6-4332-9c74-7eed3f9e125f] socks connection closed\n2025-07-16 18:40:15.564 [info] [command][b678ca6a-1c6c-4bbf-a81e-ab1bd49358a6] Socket close event received\n2025-07-16 18:40:15.582 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57948 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:41:15.569 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:41:15.569 [info] [command][bf444fc0-76bc-4eb0-a2d0-81578e3b5dde] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bf444fc0-76bc-4eb0-a2d0-81578e3b5dde""}\n2025-07-16 18:41:15.570 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][05f68b7b-c291-4e9f-a4ea-84c13f5ef0a9] received connection request\n2025-07-16 18:41:15.570 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:41:15.587 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][05f68b7b-c291-4e9f-a4ea-84c13f5ef0a9] socks forwarding established\n2025-07-16 18:41:15.611 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][05f68b7b-c291-4e9f-a4ea-84c13f5ef0a9] socks connection closed\n2025-07-16 18:41:15.611 [info] [command][bf444fc0-76bc-4eb0-a2d0-81578e3b5dde] Process exited with code 0\n2025-07-16 18:41:15.611 [info] [command][bf444fc0-76bc-4eb0-a2d0-81578e3b5dde] Socket close event received\n2025-07-16 18:41:15.628 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 57982 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:42:15.612 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:42:15.616 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4f413259-ab66-41bd-881d-f5b14842d961] received connection request\n2025-07-16 18:42:15.616 [info] [command][218d78be-1928-4d0a-89c3-2b004c55940d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""218d78be-1928-4d0a-89c3-2b004c55940d""}\n2025-07-16 18:42:15.616 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:42:15.634 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f413259-ab66-41bd-881d-f5b14842d961] socks forwarding established\n2025-07-16 18:42:15.664 [info] [command][218d78be-1928-4d0a-89c3-2b004c55940d] Process exited with code 0\n2025-07-16 18:42:15.665 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4f413259-ab66-41bd-881d-f5b14842d961] socks connection closed\n2025-07-16 18:42:15.666 [info] [command][218d78be-1928-4d0a-89c3-2b004c55940d] Socket close event received\n2025-07-16 18:42:15.685 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58059 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:43:15.670 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:43:15.672 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][9956260e-83ce-4c1f-a23b-416b98ce5899] received connection request\n2025-07-16 18:43:15.673 [info] [command][5db73f53-ed04-41f2-884e-e79ab813e3b3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5db73f53-ed04-41f2-884e-e79ab813e3b3""}\n2025-07-16 18:43:15.673 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:43:15.691 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9956260e-83ce-4c1f-a23b-416b98ce5899] socks forwarding established\n2025-07-16 18:43:15.722 [info] [command][5db73f53-ed04-41f2-884e-e79ab813e3b3] Process exited with code 0\n2025-07-16 18:43:15.722 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][9956260e-83ce-4c1f-a23b-416b98ce5899] socks connection closed\n2025-07-16 18:43:15.722 [info] [command][5db73f53-ed04-41f2-884e-e79ab813e3b3] Socket close event received\n2025-07-16 18:43:15.739 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58093 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:44:15.727 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:44:15.729 [info] [command][3c6b66b9-15d6-4e97-912e-5f0f37b4067f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""3c6b66b9-15d6-4e97-912e-5f0f37b4067f""}\n2025-07-16 18:44:15.730 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1d865cef-2fe1-4fc8-b893-c25ea3a50c25] received connection request\n2025-07-16 18:44:15.731 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:44:15.748 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1d865cef-2fe1-4fc8-b893-c25ea3a50c25] socks forwarding established\n2025-07-16 18:44:15.778 [info] [command][3c6b66b9-15d6-4e97-912e-5f0f37b4067f] Process exited with code 0\n2025-07-16 18:44:15.778 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1d865cef-2fe1-4fc8-b893-c25ea3a50c25] socks connection closed\n2025-07-16 18:44:15.779 [info] [command][3c6b66b9-15d6-4e97-912e-5f0f37b4067f] Socket close event received\n2025-07-16 18:44:15.794 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58123 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:45:15.779 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:45:15.780 [info] [command][a74362b1-0edc-4558-9541-c3c77b2cd98e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a74362b1-0edc-4558-9541-c3c77b2cd98e""}\n2025-07-16 18:45:15.781 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][119db1b6-4797-4992-a930-d4346c3ec8e5] received connection request\n2025-07-16 18:45:15.781 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:45:15.797 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][119db1b6-4797-4992-a930-d4346c3ec8e5] socks forwarding established\n2025-07-16 18:45:15.818 [info] [command][a74362b1-0edc-4558-9541-c3c77b2cd98e] Process exited with code 0\n2025-07-16 18:45:15.818 [info] [command][a74362b1-0edc-4558-9541-c3c77b2cd98e] Socket close event received\n2025-07-16 18:45:15.818 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][119db1b6-4797-4992-a930-d4346c3ec8e5] socks connection closed\n2025-07-16 18:45:15.834 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58181 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:46:15.823 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:46:15.825 [info] [command][f057fc0b-7674-444d-9ae8-9f3dcbbd6d03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f057fc0b-7674-444d-9ae8-9f3dcbbd6d03""}\n2025-07-16 18:46:15.826 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a3ee23e0-8134-4c95-b93b-2be0b5cf4c99] received connection request\n2025-07-16 18:46:15.826 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:46:15.901 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a3ee23e0-8134-4c95-b93b-2be0b5cf4c99] socks forwarding established\n2025-07-16 18:46:15.929 [info] [command][f057fc0b-7674-444d-9ae8-9f3dcbbd6d03] Process exited with code 0\n2025-07-16 18:46:15.929 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a3ee23e0-8134-4c95-b93b-2be0b5cf4c99] socks connection closed\n2025-07-16 18:46:15.929 [info] [command][f057fc0b-7674-444d-9ae8-9f3dcbbd6d03] Socket close event received\n2025-07-16 18:46:16.040 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58231 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:47:15.931 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:47:15.933 [info] [command][83fd41a0-526a-454c-8fb3-55a684ed0087] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""83fd41a0-526a-454c-8fb3-55a684ed0087""}\n2025-07-16 18:47:15.933 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d5881061-a180-4288-ae8a-27f7017b47eb] received connection request\n2025-07-16 18:47:15.934 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:47:15.951 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d5881061-a180-4288-ae8a-27f7017b47eb] socks forwarding established\n2025-07-16 18:47:15.980 [info] [command][83fd41a0-526a-454c-8fb3-55a684ed0087] Process exited with code 0\n2025-07-16 18:47:15.980 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d5881061-a180-4288-ae8a-27f7017b47eb] socks connection closed\n2025-07-16 18:47:15.980 [info] [command][83fd41a0-526a-454c-8fb3-55a684ed0087] Socket close event received\n2025-07-16 18:47:15.997 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58333 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:48:15.983 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:48:15.985 [info] [command][2c0a79ce-b61d-47e0-98ac-bea487f3b3ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""2c0a79ce-b61d-47e0-98ac-bea487f3b3ba""}\n2025-07-16 18:48:15.986 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2f7a2b99-dd76-41ee-92ec-02c62adfd112] received connection request\n2025-07-16 18:48:15.986 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:48:16.004 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2f7a2b99-dd76-41ee-92ec-02c62adfd112] socks forwarding established\n2025-07-16 18:48:16.033 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2f7a2b99-dd76-41ee-92ec-02c62adfd112] socks connection closed\n2025-07-16 18:48:16.033 [info] [command][2c0a79ce-b61d-47e0-98ac-bea487f3b3ba] Process exited with code 0\n2025-07-16 18:48:16.033 [info] [command][2c0a79ce-b61d-47e0-98ac-bea487f3b3ba] Socket close event received\n2025-07-16 18:48:16.050 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58375 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:49:16.037 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:49:16.039 [info] [command][82a884bb-913b-4d12-b169-d85ae60cc011] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""82a884bb-913b-4d12-b169-d85ae60cc011""}\n2025-07-16 18:49:16.039 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][517c458e-12a1-4035-bb33-b5c258240dc7] received connection request\n2025-07-16 18:49:16.039 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:49:16.058 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][517c458e-12a1-4035-bb33-b5c258240dc7] socks forwarding established\n2025-07-16 18:49:16.084 [info] [command][82a884bb-913b-4d12-b169-d85ae60cc011] Process exited with code 0\n2025-07-16 18:49:16.085 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][517c458e-12a1-4035-bb33-b5c258240dc7] socks connection closed\n2025-07-16 18:49:16.085 [info] [command][82a884bb-913b-4d12-b169-d85ae60cc011] Socket close event received\n2025-07-16 18:49:16.102 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58409 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:50:16.089 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:50:16.092 [info] [command][65c33eb0-b6dc-4af4-9b03-ed5d7f2c5890] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""65c33eb0-b6dc-4af4-9b03-ed5d7f2c5890""}\n2025-07-16 18:50:16.093 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][aa0e200a-7bc3-4fc8-9519-42bf3b4117bf] received connection request\n2025-07-16 18:50:16.093 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:50:16.114 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aa0e200a-7bc3-4fc8-9519-42bf3b4117bf] socks forwarding established\n2025-07-16 18:50:16.141 [info] [command][65c33eb0-b6dc-4af4-9b03-ed5d7f2c5890] Process exited with code 0\n2025-07-16 18:50:16.141 [info] [command][65c33eb0-b6dc-4af4-9b03-ed5d7f2c5890] Socket close event received\n2025-07-16 18:50:16.142 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aa0e200a-7bc3-4fc8-9519-42bf3b4117bf] socks connection closed\n2025-07-16 18:50:16.159 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58465 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:51:16.145 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:51:16.146 [info] [command][8fca5094-1cde-41a7-97ed-58baf660f821] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8fca5094-1cde-41a7-97ed-58baf660f821""}\n2025-07-16 18:51:16.146 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][26123ea4-5557-4062-b85e-22718a43b2ed] received connection request\n2025-07-16 18:51:16.147 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:51:16.162 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][26123ea4-5557-4062-b85e-22718a43b2ed] socks forwarding established\n2025-07-16 18:51:16.190 [info] [command][8fca5094-1cde-41a7-97ed-58baf660f821] Process exited with code 0\n2025-07-16 18:51:16.190 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][26123ea4-5557-4062-b85e-22718a43b2ed] socks connection closed\n2025-07-16 18:51:16.191 [info] [command][8fca5094-1cde-41a7-97ed-58baf660f821] Socket close event received\n2025-07-16 18:51:16.208 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58506 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:52:16.196 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:52:16.198 [info] [command][aa3e77e6-4ee4-4c91-bae8-f8ce89219ff7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""aa3e77e6-4ee4-4c91-bae8-f8ce89219ff7""}\n2025-07-16 18:52:16.198 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][89155a24-906a-4884-bc93-f72f11569a7b] received connection request\n2025-07-16 18:52:16.199 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:52:16.217 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][89155a24-906a-4884-bc93-f72f11569a7b] socks forwarding established\n2025-07-16 18:52:16.250 [info] [command][aa3e77e6-4ee4-4c91-bae8-f8ce89219ff7] Process exited with code 0\n2025-07-16 18:52:16.251 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][89155a24-906a-4884-bc93-f72f11569a7b] socks connection closed\n2025-07-16 18:52:16.251 [info] [command][aa3e77e6-4ee4-4c91-bae8-f8ce89219ff7] Socket close event received\n2025-07-16 18:52:16.267 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58590 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:53:16.251 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:53:16.253 [info] [command][6d794823-085c-46eb-a67a-e4b77845d668] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6d794823-085c-46eb-a67a-e4b77845d668""}\n2025-07-16 18:53:16.254 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][345ab56d-ae17-46cb-a992-0d3767c6270c] received connection request\n2025-07-16 18:53:16.255 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:53:16.272 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][345ab56d-ae17-46cb-a992-0d3767c6270c] socks forwarding established\n2025-07-16 18:53:16.302 [info] [command][6d794823-085c-46eb-a67a-e4b77845d668] Process exited with code 0\n2025-07-16 18:53:16.303 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][345ab56d-ae17-46cb-a992-0d3767c6270c] socks connection closed\n2025-07-16 18:53:16.303 [info] [command][6d794823-085c-46eb-a67a-e4b77845d668] Socket close event received\n2025-07-16 18:53:16.320 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58618 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:54:16.308 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:54:16.310 [info] [command][0e773f32-036e-46ae-bda3-05d7844f7ab7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""0e773f32-036e-46ae-bda3-05d7844f7ab7""}\n2025-07-16 18:54:16.311 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e0799238-9fc5-4b70-9102-2361f4331071] received connection request\n2025-07-16 18:54:16.312 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:54:16.331 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e0799238-9fc5-4b70-9102-2361f4331071] socks forwarding established\n2025-07-16 18:54:16.360 [info] [command][0e773f32-036e-46ae-bda3-05d7844f7ab7] Process exited with code 0\n2025-07-16 18:54:16.361 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e0799238-9fc5-4b70-9102-2361f4331071] socks connection closed\n2025-07-16 18:54:16.361 [info] [command][0e773f32-036e-46ae-bda3-05d7844f7ab7] Socket close event received\n2025-07-16 18:54:16.378 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58652 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:55:16.361 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:55:16.363 [info] [command][52745036-1180-4244-ab45-3843af9d5cec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""52745036-1180-4244-ab45-3843af9d5cec""}\n2025-07-16 18:55:16.363 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][00ffc3fb-804c-48bb-9e1f-ca2b8a0966cc] received connection request\n2025-07-16 18:55:16.364 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:55:16.384 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][00ffc3fb-804c-48bb-9e1f-ca2b8a0966cc] socks forwarding established\n2025-07-16 18:55:16.415 [info] [command][52745036-1180-4244-ab45-3843af9d5cec] Process exited with code 0\n2025-07-16 18:55:16.416 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][00ffc3fb-804c-48bb-9e1f-ca2b8a0966cc] socks connection closed\n2025-07-16 18:55:16.416 [info] [command][52745036-1180-4244-ab45-3843af9d5cec] Socket close event received\n2025-07-16 18:55:16.433 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58697 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:56:16.421 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:56:16.424 [info] [command][dabf7df5-0415-4268-9a25-87a65939e879] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""dabf7df5-0415-4268-9a25-87a65939e879""}\n2025-07-16 18:56:16.424 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][24d39af4-677d-4831-9b23-460080cd63bc] received connection request\n2025-07-16 18:56:16.425 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:56:16.442 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][24d39af4-677d-4831-9b23-460080cd63bc] socks forwarding established\n2025-07-16 18:56:16.472 [info] [command][dabf7df5-0415-4268-9a25-87a65939e879] Process exited with code 0\n2025-07-16 18:56:16.473 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][24d39af4-677d-4831-9b23-460080cd63bc] socks connection closed\n2025-07-16 18:56:16.473 [info] [command][dabf7df5-0415-4268-9a25-87a65939e879] Socket close event received\n2025-07-16 18:56:16.489 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58733 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:57:16.478 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:57:16.481 [info] [command][12921361-4a58-48cb-83fd-e5269c5d7345] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""12921361-4a58-48cb-83fd-e5269c5d7345""}\n2025-07-16 18:57:16.482 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][820c135e-281c-4cbd-a258-09f99e10e16e] received connection request\n2025-07-16 18:57:16.482 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:57:16.664 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][820c135e-281c-4cbd-a258-09f99e10e16e] socks forwarding established\n2025-07-16 18:57:16.690 [info] [command][12921361-4a58-48cb-83fd-e5269c5d7345] Process exited with code 0\n2025-07-16 18:57:16.690 [info] [command][12921361-4a58-48cb-83fd-e5269c5d7345] Socket close event received\n2025-07-16 18:57:16.691 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][820c135e-281c-4cbd-a258-09f99e10e16e] socks connection closed\n2025-07-16 18:57:16.840 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58789 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:58:16.694 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:58:16.696 [info] [command][5ccc8146-b328-4698-a3a7-b3d0b0a946e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5ccc8146-b328-4698-a3a7-b3d0b0a946e5""}\n2025-07-16 18:58:16.697 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f82cdb5d-b085-44c8-8315-467198548866] received connection request\n2025-07-16 18:58:16.698 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:58:16.718 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f82cdb5d-b085-44c8-8315-467198548866] socks forwarding established\n2025-07-16 18:58:16.751 [info] [command][5ccc8146-b328-4698-a3a7-b3d0b0a946e5] Process exited with code 0\n2025-07-16 18:58:16.751 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f82cdb5d-b085-44c8-8315-467198548866] socks connection closed\n2025-07-16 18:58:16.751 [info] [command][5ccc8146-b328-4698-a3a7-b3d0b0a946e5] Socket close event received\n2025-07-16 18:58:16.769 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58839 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 18:59:16.752 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 18:59:16.755 [info] [command][66ee7d92-0aab-4d18-a7b6-365e391e3de9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""66ee7d92-0aab-4d18-a7b6-365e391e3de9""}\n2025-07-16 18:59:16.756 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][99c140c4-609f-4fbf-a089-e97197801254] received connection request\n2025-07-16 18:59:16.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 18:59:16.775 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][99c140c4-609f-4fbf-a089-e97197801254] socks forwarding established\n2025-07-16 18:59:16.804 [info] [command][66ee7d92-0aab-4d18-a7b6-365e391e3de9] Process exited with code 0\n2025-07-16 18:59:16.804 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][99c140c4-609f-4fbf-a089-e97197801254] socks connection closed\n2025-07-16 18:59:16.805 [info] [command][66ee7d92-0aab-4d18-a7b6-365e391e3de9] Socket close event received\n2025-07-16 18:59:16.822 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58864 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:00:16.810 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:00:16.812 [info] [command][15027ccf-7d69-415b-83ac-c994a03e34db] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""15027ccf-7d69-415b-83ac-c994a03e34db""}\n2025-07-16 19:00:16.813 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][69e8bd0b-6271-45db-9501-d3c5204ef10e] received connection request\n2025-07-16 19:00:16.813 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:00:16.830 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][69e8bd0b-6271-45db-9501-d3c5204ef10e] socks forwarding established\n2025-07-16 19:00:16.859 [info] [command][15027ccf-7d69-415b-83ac-c994a03e34db] Process exited with code 0\n2025-07-16 19:00:16.859 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][69e8bd0b-6271-45db-9501-d3c5204ef10e] socks connection closed\n2025-07-16 19:00:16.860 [info] [command][15027ccf-7d69-415b-83ac-c994a03e34db] Socket close event received\n2025-07-16 19:00:16.877 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58908 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:01:16.861 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:01:16.863 [info] [command][8e1d9b24-0ff5-4bde-a136-bf92ba550d7c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8e1d9b24-0ff5-4bde-a136-bf92ba550d7c""}\n2025-07-16 19:01:16.864 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d096292c-1135-456b-a0ff-1787d002ab33] received connection request\n2025-07-16 19:01:16.864 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:01:16.882 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d096292c-1135-456b-a0ff-1787d002ab33] socks forwarding established\n2025-07-16 19:01:16.913 [info] [command][8e1d9b24-0ff5-4bde-a136-bf92ba550d7c] Process exited with code 0\n2025-07-16 19:01:16.914 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d096292c-1135-456b-a0ff-1787d002ab33] socks connection closed\n2025-07-16 19:01:16.914 [info] [command][8e1d9b24-0ff5-4bde-a136-bf92ba550d7c] Socket close event received\n2025-07-16 19:01:16.932 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58940 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:02:16.918 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:02:16.919 [info] [command][c1a4045d-93bd-49c4-8046-e5e2a98b98a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c1a4045d-93bd-49c4-8046-e5e2a98b98a7""}\n2025-07-16 19:02:16.920 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8abf5c1c-b9f6-4281-b672-4e1acf80cc04] received connection request\n2025-07-16 19:02:16.920 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:02:16.944 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8abf5c1c-b9f6-4281-b672-4e1acf80cc04] socks forwarding established\n2025-07-16 19:02:16.975 [info] [command][c1a4045d-93bd-49c4-8046-e5e2a98b98a7] Process exited with code 0\n2025-07-16 19:02:16.975 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8abf5c1c-b9f6-4281-b672-4e1acf80cc04] socks connection closed\n2025-07-16 19:02:16.975 [info] [command][c1a4045d-93bd-49c4-8046-e5e2a98b98a7] Socket close event received\n2025-07-16 19:02:16.995 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 58988 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:03:16.977 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:03:16.979 [info] [command][01c98829-de1c-41b7-9803-e6295674ca41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""01c98829-de1c-41b7-9803-e6295674ca41""}\n2025-07-16 19:03:16.979 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][5727829e-7e6e-41ca-9338-2bbf873666d2] received connection request\n2025-07-16 19:03:16.980 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:03:16.998 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5727829e-7e6e-41ca-9338-2bbf873666d2] socks forwarding established\n2025-07-16 19:03:17.028 [info] [command][01c98829-de1c-41b7-9803-e6295674ca41] Process exited with code 0\n2025-07-16 19:03:17.028 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][5727829e-7e6e-41ca-9338-2bbf873666d2] socks connection closed\n2025-07-16 19:03:17.028 [info] [command][01c98829-de1c-41b7-9803-e6295674ca41] Socket close event received\n2025-07-16 19:03:17.048 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59009 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:04:17.033 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:04:17.035 [info] [command][96eb42ef-3047-43af-b4b2-7eb5bb181b74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""96eb42ef-3047-43af-b4b2-7eb5bb181b74""}\n2025-07-16 19:04:17.035 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7781fab2-3042-46b3-ba97-f40539b720c4] received connection request\n2025-07-16 19:04:17.036 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 19:04:17.036 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:04:17.055 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7781fab2-3042-46b3-ba97-f40539b720c4] socks forwarding established\n2025-07-16 19:04:17.086 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7781fab2-3042-46b3-ba97-f40539b720c4] socks connection closed\n2025-07-16 19:04:17.086 [info] [command][96eb42ef-3047-43af-b4b2-7eb5bb181b74] Process exited with code 0\n2025-07-16 19:04:17.087 [info] [command][96eb42ef-3047-43af-b4b2-7eb5bb181b74] Socket close event received\n2025-07-16 19:04:17.102 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59036 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:05:17.089 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:05:17.092 [info] [command][08b93276-e4b9-4ae8-956c-58e760a522fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""08b93276-e4b9-4ae8-956c-58e760a522fd""}\n2025-07-16 19:05:17.092 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][37cb3765-b9e3-4453-8544-2587eaf7cfba] received connection request\n2025-07-16 19:05:17.093 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:05:17.111 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][37cb3765-b9e3-4453-8544-2587eaf7cfba] socks forwarding established\n2025-07-16 19:05:17.141 [info] [command][08b93276-e4b9-4ae8-956c-58e760a522fd] Process exited with code 0\n2025-07-16 19:05:17.142 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][37cb3765-b9e3-4453-8544-2587eaf7cfba] socks connection closed\n2025-07-16 19:05:17.142 [info] [command][08b93276-e4b9-4ae8-956c-58e760a522fd] Socket close event received\n2025-07-16 19:05:17.160 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59100 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:06:17.145 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:06:17.146 [info] [command][8626fca8-8ee4-4a90-8552-d3377e08a2f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8626fca8-8ee4-4a90-8552-d3377e08a2f3""}\n2025-07-16 19:06:17.146 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d8c08704-58f6-4ae9-9085-1d267b083ab4] received connection request\n2025-07-16 19:06:17.147 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:06:17.163 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d8c08704-58f6-4ae9-9085-1d267b083ab4] socks forwarding established\n2025-07-16 19:06:17.192 [info] [command][8626fca8-8ee4-4a90-8552-d3377e08a2f3] Process exited with code 0\n2025-07-16 19:06:17.192 [info] [command][8626fca8-8ee4-4a90-8552-d3377e08a2f3] Socket close event received\n2025-07-16 19:06:17.208 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d8c08704-58f6-4ae9-9085-1d267b083ab4] socks connection closed\n2025-07-16 19:06:17.209 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59176 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:07:17.196 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:07:17.199 [info] [command][5ee2286d-8f4f-4435-8bd0-df83931ad98f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5ee2286d-8f4f-4435-8bd0-df83931ad98f""}\n2025-07-16 19:07:17.200 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][49a32904-48f7-4f76-98d1-33d9779663c8] received connection request\n2025-07-16 19:07:17.200 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:07:17.217 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][49a32904-48f7-4f76-98d1-33d9779663c8] socks forwarding established\n2025-07-16 19:07:17.248 [info] [command][5ee2286d-8f4f-4435-8bd0-df83931ad98f] Process exited with code 0\n2025-07-16 19:07:17.248 [info] [command][5ee2286d-8f4f-4435-8bd0-df83931ad98f] Socket close event received\n2025-07-16 19:07:17.249 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][49a32904-48f7-4f76-98d1-33d9779663c8] socks connection closed\n2025-07-16 19:07:17.266 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59238 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:08:17.249 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:08:17.250 [info] [command][61913fdb-a6c3-4279-9211-54b162882e09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""61913fdb-a6c3-4279-9211-54b162882e09""}\n2025-07-16 19:08:17.251 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][34edc8f8-f06c-466f-8d1f-c686fde8c945] received connection request\n2025-07-16 19:08:17.251 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:08:17.269 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][34edc8f8-f06c-466f-8d1f-c686fde8c945] socks forwarding established\n2025-07-16 19:08:17.299 [info] [command][61913fdb-a6c3-4279-9211-54b162882e09] Process exited with code 0\n2025-07-16 19:08:17.300 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][34edc8f8-f06c-466f-8d1f-c686fde8c945] socks connection closed\n2025-07-16 19:08:17.300 [info] [command][61913fdb-a6c3-4279-9211-54b162882e09] Socket close event received\n2025-07-16 19:08:17.316 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59261 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:09:17.303 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:09:17.305 [info] [command][700d7cdb-52e3-43ab-870c-1e26887369f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""700d7cdb-52e3-43ab-870c-1e26887369f3""}\n2025-07-16 19:09:17.306 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e2a9c232-4971-4b33-b0d7-d77829433be4] received connection request\n2025-07-16 19:09:17.306 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:09:17.323 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e2a9c232-4971-4b33-b0d7-d77829433be4] socks forwarding established\n2025-07-16 19:09:17.351 [info] [command][700d7cdb-52e3-43ab-870c-1e26887369f3] Process exited with code 0\n2025-07-16 19:09:17.352 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e2a9c232-4971-4b33-b0d7-d77829433be4] socks connection closed\n2025-07-16 19:09:17.352 [info] [command][700d7cdb-52e3-43ab-870c-1e26887369f3] Socket close event received\n2025-07-16 19:09:17.370 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59293 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:10:17.356 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:10:17.358 [info] [command][5884dacf-5c50-48fc-b8ec-627e5d7b860e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""5884dacf-5c50-48fc-b8ec-627e5d7b860e""}\n2025-07-16 19:10:17.359 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][d8986010-f9eb-499c-ba5b-c1980c0c36ac] received connection request\n2025-07-16 19:10:17.359 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:10:17.377 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d8986010-f9eb-499c-ba5b-c1980c0c36ac] socks forwarding established\n2025-07-16 19:10:17.497 [info] [command][5884dacf-5c50-48fc-b8ec-627e5d7b860e] Process exited with code 0\n2025-07-16 19:10:17.497 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][d8986010-f9eb-499c-ba5b-c1980c0c36ac] socks connection closed\n2025-07-16 19:10:17.497 [info] [command][5884dacf-5c50-48fc-b8ec-627e5d7b860e] Socket close event received\n2025-07-16 19:10:18.603 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59337 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:11:17.502 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:11:17.504 [info] [command][6a90614a-7f9c-4a99-a939-692eeebd265c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6a90614a-7f9c-4a99-a939-692eeebd265c""}\n2025-07-16 19:11:17.505 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][609ecf17-a944-4b3a-9b62-ab46387a106a] received connection request\n2025-07-16 19:11:17.505 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:11:17.523 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][609ecf17-a944-4b3a-9b62-ab46387a106a] socks forwarding established\n2025-07-16 19:11:17.552 [info] [command][6a90614a-7f9c-4a99-a939-692eeebd265c] Process exited with code 0\n2025-07-16 19:11:17.552 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][609ecf17-a944-4b3a-9b62-ab46387a106a] socks connection closed\n2025-07-16 19:11:17.553 [info] [command][6a90614a-7f9c-4a99-a939-692eeebd265c] Socket close event received\n2025-07-16 19:11:17.570 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59358 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:12:17.554 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:12:18.593 [info] [command][6d6824dd-d347-4395-9ef5-f0ed6c54784f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6d6824dd-d347-4395-9ef5-f0ed6c54784f""}\n2025-07-16 19:12:18.594 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][2e4c8805-8a9a-49fc-9135-59b5feb2537d] received connection request\n2025-07-16 19:12:18.595 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:12:18.615 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2e4c8805-8a9a-49fc-9135-59b5feb2537d] socks forwarding established\n2025-07-16 19:12:18.643 [info] [command][6d6824dd-d347-4395-9ef5-f0ed6c54784f] Process exited with code 0\n2025-07-16 19:12:18.644 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][2e4c8805-8a9a-49fc-9135-59b5feb2537d] socks connection closed\n2025-07-16 19:12:18.644 [info] [command][6d6824dd-d347-4395-9ef5-f0ed6c54784f] Socket close event received\n2025-07-16 19:12:18.661 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59414 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:13:18.649 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:13:18.652 [info] [command][b0bf0137-3502-457b-82a8-7c960e4ae9b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b0bf0137-3502-457b-82a8-7c960e4ae9b4""}\n2025-07-16 19:13:18.652 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c6e43b2d-e527-465e-b36b-f284d280d6f3] received connection request\n2025-07-16 19:13:18.653 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:13:18.670 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c6e43b2d-e527-465e-b36b-f284d280d6f3] socks forwarding established\n2025-07-16 19:13:18.699 [info] [command][b0bf0137-3502-457b-82a8-7c960e4ae9b4] Process exited with code 0\n2025-07-16 19:13:18.699 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c6e43b2d-e527-465e-b36b-f284d280d6f3] socks connection closed\n2025-07-16 19:13:18.699 [info] [command][b0bf0137-3502-457b-82a8-7c960e4ae9b4] Socket close event received\n2025-07-16 19:13:18.717 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59484 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:14:18.702 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:14:18.703 [info] [command][993aa359-096f-45ff-826d-371839c4a629] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""993aa359-096f-45ff-826d-371839c4a629""}\n2025-07-16 19:14:18.704 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][aa939823-b55e-41c2-9458-6450ff25862f] received connection request\n2025-07-16 19:14:18.704 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:14:18.722 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aa939823-b55e-41c2-9458-6450ff25862f] socks forwarding established\n2025-07-16 19:14:18.750 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][aa939823-b55e-41c2-9458-6450ff25862f] socks connection closed\n2025-07-16 19:14:18.750 [info] [command][993aa359-096f-45ff-826d-371839c4a629] Process exited with code 0\n2025-07-16 19:14:18.750 [info] [command][993aa359-096f-45ff-826d-371839c4a629] Socket close event received\n2025-07-16 19:14:18.767 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59514 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:15:18.753 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:15:18.756 [info] [command][46ce5ce8-74bc-405f-a5a7-641c39acf6a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""46ce5ce8-74bc-405f-a5a7-641c39acf6a3""}\n2025-07-16 19:15:18.757 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][6972ac00-16b5-4b3b-abe5-64269ff84ef8] received connection request\n2025-07-16 19:15:18.758 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:15:18.775 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6972ac00-16b5-4b3b-abe5-64269ff84ef8] socks forwarding established\n2025-07-16 19:15:18.797 [info] [command][46ce5ce8-74bc-405f-a5a7-641c39acf6a3] Process exited with code 0\n2025-07-16 19:15:18.797 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][6972ac00-16b5-4b3b-abe5-64269ff84ef8] socks connection closed\n2025-07-16 19:15:18.797 [info] [command][46ce5ce8-74bc-405f-a5a7-641c39acf6a3] Socket close event received\n2025-07-16 19:15:18.815 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59558 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:16:18.802 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:16:18.804 [info] [command][69c5f432-5291-4896-aaa6-1b49673c6237] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""69c5f432-5291-4896-aaa6-1b49673c6237""}\n2025-07-16 19:16:18.805 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][05b464b4-0893-4f9e-bf04-7d130fd8f06b] received connection request\n2025-07-16 19:16:18.805 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:16:18.822 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][05b464b4-0893-4f9e-bf04-7d130fd8f06b] socks forwarding established\n2025-07-16 19:16:18.853 [info] [command][69c5f432-5291-4896-aaa6-1b49673c6237] Process exited with code 0\n2025-07-16 19:16:18.854 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][05b464b4-0893-4f9e-bf04-7d130fd8f06b] socks connection closed\n2025-07-16 19:16:18.854 [info] [command][69c5f432-5291-4896-aaa6-1b49673c6237] Socket close event received\n2025-07-16 19:16:18.872 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59583 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:17:18.859 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:17:18.861 [info] [command][d6d5ba9d-65dd-4d2c-83f3-819d10365dee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d6d5ba9d-65dd-4d2c-83f3-819d10365dee""}\n2025-07-16 19:17:18.862 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][615661b8-8469-47c2-8975-0540e2c8b89f] received connection request\n2025-07-16 19:17:18.862 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:17:18.880 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][615661b8-8469-47c2-8975-0540e2c8b89f] socks forwarding established\n2025-07-16 19:17:18.910 [info] [command][d6d5ba9d-65dd-4d2c-83f3-819d10365dee] Process exited with code 0\n2025-07-16 19:17:18.910 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][615661b8-8469-47c2-8975-0540e2c8b89f] socks connection closed\n2025-07-16 19:17:18.910 [info] [command][d6d5ba9d-65dd-4d2c-83f3-819d10365dee] Socket close event received\n2025-07-16 19:17:18.926 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59667 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:18:18.915 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:18:18.917 [info] [command][d5a13a12-05ea-4e67-9e19-11b445427bc1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d5a13a12-05ea-4e67-9e19-11b445427bc1""}\n2025-07-16 19:18:18.917 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][959949b8-f830-4dbf-8166-3e44e61d52ab] received connection request\n2025-07-16 19:18:18.918 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:18:18.935 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][959949b8-f830-4dbf-8166-3e44e61d52ab] socks forwarding established\n2025-07-16 19:18:18.964 [info] [command][d5a13a12-05ea-4e67-9e19-11b445427bc1] Process exited with code 0\n2025-07-16 19:18:18.964 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][959949b8-f830-4dbf-8166-3e44e61d52ab] socks connection closed\n2025-07-16 19:18:18.964 [info] [command][d5a13a12-05ea-4e67-9e19-11b445427bc1] Socket close event received\n2025-07-16 19:18:18.982 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59698 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:19:18.970 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:19:18.972 [info] [command][c28cf896-8b8c-4bb5-b0c3-16437d2f5662] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c28cf896-8b8c-4bb5-b0c3-16437d2f5662""}\n2025-07-16 19:19:18.972 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][e1b702f6-72d9-4b93-8014-917d4f084d1f] received connection request\n2025-07-16 19:19:18.973 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:19:18.993 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e1b702f6-72d9-4b93-8014-917d4f084d1f] socks forwarding established\n2025-07-16 19:19:19.024 [info] [command][c28cf896-8b8c-4bb5-b0c3-16437d2f5662] Process exited with code 0\n2025-07-16 19:19:19.024 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][e1b702f6-72d9-4b93-8014-917d4f084d1f] socks connection closed\n2025-07-16 19:19:19.025 [info] [command][c28cf896-8b8c-4bb5-b0c3-16437d2f5662] Socket close event received\n2025-07-16 19:19:19.044 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59725 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:20:19.029 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:20:19.031 [info] [command][daf05f35-067c-4753-965a-ff5521430cdf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""daf05f35-067c-4753-965a-ff5521430cdf""}\n2025-07-16 19:20:19.032 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a33cb67a-3246-4dd9-8726-d968459f7380] received connection request\n2025-07-16 19:20:19.032 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:20:19.050 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a33cb67a-3246-4dd9-8726-d968459f7380] socks forwarding established\n2025-07-16 19:20:19.081 [info] [command][daf05f35-067c-4753-965a-ff5521430cdf] Process exited with code 0\n2025-07-16 19:20:19.081 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a33cb67a-3246-4dd9-8726-d968459f7380] socks connection closed\n2025-07-16 19:20:19.081 [info] [command][daf05f35-067c-4753-965a-ff5521430cdf] Socket close event received\n2025-07-16 19:20:19.099 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59770 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:21:19.086 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:21:19.088 [info] [command][d8298a51-abcd-4f53-bb78-d89045d4a0d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d8298a51-abcd-4f53-bb78-d89045d4a0d0""}\n2025-07-16 19:21:19.089 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7cd3ef9f-a27c-43de-9100-38b9e84d0363] received connection request\n2025-07-16 19:21:19.090 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 19:21:19.090 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:21:19.106 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7cd3ef9f-a27c-43de-9100-38b9e84d0363] socks forwarding established\n2025-07-16 19:21:19.136 [info] [command][d8298a51-abcd-4f53-bb78-d89045d4a0d0] Process exited with code 0\n2025-07-16 19:21:19.137 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7cd3ef9f-a27c-43de-9100-38b9e84d0363] socks connection closed\n2025-07-16 19:21:19.137 [info] [command][d8298a51-abcd-4f53-bb78-d89045d4a0d0] Socket close event received\n2025-07-16 19:21:19.154 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59808 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:22:19.139 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:22:19.142 [info] [command][531bb0fd-4654-4ea5-8b74-a3dc9b8af829] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""531bb0fd-4654-4ea5-8b74-a3dc9b8af829""}\n2025-07-16 19:22:19.143 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c5359a4f-aaa9-4ed2-8a61-d9c1b248a41e] received connection request\n2025-07-16 19:22:19.143 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:22:19.162 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c5359a4f-aaa9-4ed2-8a61-d9c1b248a41e] socks forwarding established\n2025-07-16 19:22:19.193 [info] [command][531bb0fd-4654-4ea5-8b74-a3dc9b8af829] Process exited with code 0\n2025-07-16 19:22:19.193 [info] [command][531bb0fd-4654-4ea5-8b74-a3dc9b8af829] Socket close event received\n2025-07-16 19:22:19.193 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c5359a4f-aaa9-4ed2-8a61-d9c1b248a41e] socks connection closed\n2025-07-16 19:22:19.211 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59865 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:23:19.198 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:23:19.200 [info] [command][83110169-1a78-4826-a1bb-47d063afa49b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""83110169-1a78-4826-a1bb-47d063afa49b""}\n2025-07-16 19:23:19.200 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][49e253d8-712a-4be2-bccd-d3c24f5cc79b] received connection request\n2025-07-16 19:23:19.201 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:23:19.217 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][49e253d8-712a-4be2-bccd-d3c24f5cc79b] socks forwarding established\n2025-07-16 19:23:19.250 [info] [command][83110169-1a78-4826-a1bb-47d063afa49b] Process exited with code 0\n2025-07-16 19:23:19.250 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][49e253d8-712a-4be2-bccd-d3c24f5cc79b] socks connection closed\n2025-07-16 19:23:19.251 [info] [command][83110169-1a78-4826-a1bb-47d063afa49b] Socket close event received\n2025-07-16 19:23:19.268 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59891 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:24:19.254 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:24:19.256 [info] [command][7bb33fd8-700c-4f98-9a1f-4d75caabbe27] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7bb33fd8-700c-4f98-9a1f-4d75caabbe27""}\n2025-07-16 19:24:19.257 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][12e25d9b-6613-4413-925a-543d9b981234] received connection request\n2025-07-16 19:24:19.257 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:24:19.275 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][12e25d9b-6613-4413-925a-543d9b981234] socks forwarding established\n2025-07-16 19:24:19.304 [info] [command][7bb33fd8-700c-4f98-9a1f-4d75caabbe27] Process exited with code 0\n2025-07-16 19:24:19.305 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][12e25d9b-6613-4413-925a-543d9b981234] socks connection closed\n2025-07-16 19:24:19.305 [info] [command][7bb33fd8-700c-4f98-9a1f-4d75caabbe27] Socket close event received\n2025-07-16 19:24:19.321 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59925 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:25:19.311 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:25:19.313 [info] [command][6b5c7e78-666a-4f4c-b0f4-23cd5a3bd9cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""6b5c7e78-666a-4f4c-b0f4-23cd5a3bd9cd""}\n2025-07-16 19:25:19.313 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][758027d6-e7b8-49a9-8fc8-d5203ba33516] received connection request\n2025-07-16 19:25:19.314 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:25:19.332 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][758027d6-e7b8-49a9-8fc8-d5203ba33516] socks forwarding established\n2025-07-16 19:25:19.363 [info] [command][6b5c7e78-666a-4f4c-b0f4-23cd5a3bd9cd] Process exited with code 0\n2025-07-16 19:25:19.364 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][758027d6-e7b8-49a9-8fc8-d5203ba33516] socks connection closed\n2025-07-16 19:25:19.364 [info] [command][6b5c7e78-666a-4f4c-b0f4-23cd5a3bd9cd] Socket close event received\n2025-07-16 19:25:19.383 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 59971 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:26:19.366 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:26:19.368 [info] [command][bb2a157b-12b3-443d-a9c5-99597cddd0ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bb2a157b-12b3-443d-a9c5-99597cddd0ab""}\n2025-07-16 19:26:19.368 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4166ce55-b043-44bd-a65b-9584c32ec526] received connection request\n2025-07-16 19:26:19.369 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:26:19.391 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4166ce55-b043-44bd-a65b-9584c32ec526] socks forwarding established\n2025-07-16 19:26:19.421 [info] [command][bb2a157b-12b3-443d-a9c5-99597cddd0ab] Process exited with code 0\n2025-07-16 19:26:19.421 [info] [command][bb2a157b-12b3-443d-a9c5-99597cddd0ab] Socket close event received\n2025-07-16 19:26:19.422 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4166ce55-b043-44bd-a65b-9584c32ec526] socks connection closed\n2025-07-16 19:26:19.438 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60001 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:27:19.423 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:27:19.425 [info] [command][94facf25-1f62-4bd4-b52c-4cf080005186] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""94facf25-1f62-4bd4-b52c-4cf080005186""}\n2025-07-16 19:27:19.425 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][ad6e1b5d-48fc-4f9c-b792-3b3dc74ae924] received connection request\n2025-07-16 19:27:19.426 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:27:19.443 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ad6e1b5d-48fc-4f9c-b792-3b3dc74ae924] socks forwarding established\n2025-07-16 19:27:19.492 [info] [command][94facf25-1f62-4bd4-b52c-4cf080005186] Process exited with code 0\n2025-07-16 19:27:19.493 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ad6e1b5d-48fc-4f9c-b792-3b3dc74ae924] socks connection closed\n2025-07-16 19:27:19.493 [info] [command][94facf25-1f62-4bd4-b52c-4cf080005186] Socket close event received\n2025-07-16 19:27:19.508 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60066 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:28:19.498 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:28:19.500 [info] [command][57524785-2bdd-44cb-869a-996c48a617fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""57524785-2bdd-44cb-869a-996c48a617fa""}\n2025-07-16 19:28:19.500 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][86048ddb-ff18-4902-be6a-bb0d0769cc86] received connection request\n2025-07-16 19:28:19.501 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:28:19.516 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][86048ddb-ff18-4902-be6a-bb0d0769cc86] socks forwarding established\n2025-07-16 19:28:19.541 [info] [command][57524785-2bdd-44cb-869a-996c48a617fa] Process exited with code 0\n2025-07-16 19:28:19.542 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][86048ddb-ff18-4902-be6a-bb0d0769cc86] socks connection closed\n2025-07-16 19:28:19.542 [info] [command][57524785-2bdd-44cb-869a-996c48a617fa] Socket close event received\n2025-07-16 19:28:19.557 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60101 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:29:19.547 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:29:19.549 [info] [command][bceba443-4287-426a-a40a-c148a51a2a12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""bceba443-4287-426a-a40a-c148a51a2a12""}\n2025-07-16 19:29:19.550 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][18f071cf-1e5d-4514-a13d-05ef3b038ad4] received connection request\n2025-07-16 19:29:19.551 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:29:19.569 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][18f071cf-1e5d-4514-a13d-05ef3b038ad4] socks forwarding established\n2025-07-16 19:29:19.598 [info] [command][bceba443-4287-426a-a40a-c148a51a2a12] Process exited with code 0\n2025-07-16 19:29:19.598 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][18f071cf-1e5d-4514-a13d-05ef3b038ad4] socks connection closed\n2025-07-16 19:29:19.598 [info] [command][bceba443-4287-426a-a40a-c148a51a2a12] Socket close event received\n2025-07-16 19:29:19.615 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60162 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:30:19.603 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:30:19.606 [info] [command][d9d6f649-4e23-4f0d-ad11-54b41e291374] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d9d6f649-4e23-4f0d-ad11-54b41e291374""}\n2025-07-16 19:30:19.606 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][492fb211-92ff-4d2e-b423-420d5cecbcc5] received connection request\n2025-07-16 19:30:19.606 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:30:19.623 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][492fb211-92ff-4d2e-b423-420d5cecbcc5] socks forwarding established\n2025-07-16 19:30:19.652 [info] [command][d9d6f649-4e23-4f0d-ad11-54b41e291374] Process exited with code 0\n2025-07-16 19:30:19.652 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][492fb211-92ff-4d2e-b423-420d5cecbcc5] socks connection closed\n2025-07-16 19:30:19.652 [info] [command][d9d6f649-4e23-4f0d-ad11-54b41e291374] Socket close event received\n2025-07-16 19:30:19.667 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60203 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:31:19.652 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:31:19.653 [info] [command][a37f7aa0-d5cf-436a-af8f-4be055e46d0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""a37f7aa0-d5cf-436a-af8f-4be055e46d0a""}\n2025-07-16 19:31:19.654 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c099f5a2-c9f5-44fd-ac1f-90539c4ae8a0] received connection request\n2025-07-16 19:31:19.654 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:31:19.670 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c099f5a2-c9f5-44fd-ac1f-90539c4ae8a0] socks forwarding established\n2025-07-16 19:31:19.699 [info] [command][a37f7aa0-d5cf-436a-af8f-4be055e46d0a] Process exited with code 0\n2025-07-16 19:31:19.700 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c099f5a2-c9f5-44fd-ac1f-90539c4ae8a0] socks connection closed\n2025-07-16 19:31:19.700 [info] [command][a37f7aa0-d5cf-436a-af8f-4be055e46d0a] Socket close event received\n2025-07-16 19:31:19.718 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60238 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:32:19.705 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:32:19.708 [info] [command][8ede451d-2501-43af-8010-a4cb8787130c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""8ede451d-2501-43af-8010-a4cb8787130c""}\n2025-07-16 19:32:19.708 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][975fe105-c44e-4435-8532-13dfab3c8e14] received connection request\n2025-07-16 19:32:19.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:32:19.726 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][975fe105-c44e-4435-8532-13dfab3c8e14] socks forwarding established\n2025-07-16 19:32:19.755 [info] [command][8ede451d-2501-43af-8010-a4cb8787130c] Process exited with code 0\n2025-07-16 19:32:19.755 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][975fe105-c44e-4435-8532-13dfab3c8e14] socks connection closed\n2025-07-16 19:32:19.756 [info] [command][8ede451d-2501-43af-8010-a4cb8787130c] Socket close event received\n2025-07-16 19:32:19.774 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60306 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:33:19.761 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:33:19.763 [info] [command][c72e032e-c72a-4966-93b0-1bcabcf2659c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""c72e032e-c72a-4966-93b0-1bcabcf2659c""}\n2025-07-16 19:33:19.764 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][f3243991-eca8-4ab1-961b-b0842b97a804] received connection request\n2025-07-16 19:33:19.764 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:33:19.781 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f3243991-eca8-4ab1-961b-b0842b97a804] socks forwarding established\n2025-07-16 19:33:19.811 [info] [command][c72e032e-c72a-4966-93b0-1bcabcf2659c] Process exited with code 0\n2025-07-16 19:33:19.811 [info] [command][c72e032e-c72a-4966-93b0-1bcabcf2659c] Socket close event received\n2025-07-16 19:33:19.811 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][f3243991-eca8-4ab1-961b-b0842b97a804] socks connection closed\n2025-07-16 19:33:19.828 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60338 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:34:19.816 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:34:19.819 [info] [command][7aa35671-e29e-4976-a232-5e74732e455c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7aa35671-e29e-4976-a232-5e74732e455c""}\n2025-07-16 19:34:19.820 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][72e9347a-ca5f-4b84-aa39-d69f7e89bb35] received connection request\n2025-07-16 19:34:19.821 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:34:19.838 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][72e9347a-ca5f-4b84-aa39-d69f7e89bb35] socks forwarding established\n2025-07-16 19:34:19.869 [info] [command][7aa35671-e29e-4976-a232-5e74732e455c] Process exited with code 0\n2025-07-16 19:34:19.870 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][72e9347a-ca5f-4b84-aa39-d69f7e89bb35] socks connection closed\n2025-07-16 19:34:19.870 [info] [command][7aa35671-e29e-4976-a232-5e74732e455c] Socket close event received\n2025-07-16 19:34:19.886 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60374 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:35:19.873 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:35:19.875 [info] [command][45b5f8e6-4b42-4ded-8051-b0d6876c3f91] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""45b5f8e6-4b42-4ded-8051-b0d6876c3f91""}\n2025-07-16 19:35:19.876 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][22056f73-bd18-475d-b9dc-5abe4f90b183] received connection request\n2025-07-16 19:35:19.877 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:35:19.896 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][22056f73-bd18-475d-b9dc-5abe4f90b183] socks forwarding established\n2025-07-16 19:35:19.928 [info] [command][45b5f8e6-4b42-4ded-8051-b0d6876c3f91] Process exited with code 0\n2025-07-16 19:35:19.928 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][22056f73-bd18-475d-b9dc-5abe4f90b183] socks connection closed\n2025-07-16 19:35:19.929 [info] [command][45b5f8e6-4b42-4ded-8051-b0d6876c3f91] Socket close event received\n2025-07-16 19:35:19.948 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60425 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:36:19.934 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:36:19.937 [info] [command][7d2c361d-42f6-4323-b70c-2942e25a39f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""7d2c361d-42f6-4323-b70c-2942e25a39f9""}\n2025-07-16 19:36:19.938 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8b400a8d-9450-44a5-861b-86356a108718] received connection request\n2025-07-16 19:36:19.938 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:36:19.956 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8b400a8d-9450-44a5-861b-86356a108718] socks forwarding established\n2025-07-16 19:36:19.984 [info] [command][7d2c361d-42f6-4323-b70c-2942e25a39f9] Process exited with code 0\n2025-07-16 19:36:19.985 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8b400a8d-9450-44a5-861b-86356a108718] socks connection closed\n2025-07-16 19:36:19.985 [info] [command][7d2c361d-42f6-4323-b70c-2942e25a39f9] Socket close event received\n2025-07-16 19:36:20.002 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60455 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:37:19.990 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:37:19.992 [info] [command][1114b1bf-6617-45b4-acc7-f005a3247cdb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""1114b1bf-6617-45b4-acc7-f005a3247cdb""}\n2025-07-16 19:37:19.993 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a1f71375-7819-46de-bf86-3b1991d21694] received connection request\n2025-07-16 19:37:19.993 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:37:20.014 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a1f71375-7819-46de-bf86-3b1991d21694] socks forwarding established\n2025-07-16 19:37:20.206 [info] [command][1114b1bf-6617-45b4-acc7-f005a3247cdb] Process exited with code 0\n2025-07-16 19:37:20.206 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a1f71375-7819-46de-bf86-3b1991d21694] socks connection closed\n2025-07-16 19:37:20.206 [info] [command][1114b1bf-6617-45b4-acc7-f005a3247cdb] Socket close event received\n2025-07-16 19:37:20.222 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60542 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:38:20.207 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:38:20.209 [info] [command][fbecbf3a-ebc4-40f7-9646-9876acff1e15] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""fbecbf3a-ebc4-40f7-9646-9876acff1e15""}\n2025-07-16 19:38:20.210 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][df17f7fa-27d5-4d65-a07b-8a043757a563] received connection request\n2025-07-16 19:38:20.211 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:38:20.229 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][df17f7fa-27d5-4d65-a07b-8a043757a563] socks forwarding established\n2025-07-16 19:38:20.260 [info] [command][fbecbf3a-ebc4-40f7-9646-9876acff1e15] Process exited with code 0\n2025-07-16 19:38:20.260 [info] [command][fbecbf3a-ebc4-40f7-9646-9876acff1e15] Socket close event received\n2025-07-16 19:38:20.260 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][df17f7fa-27d5-4d65-a07b-8a043757a563] socks connection closed\n2025-07-16 19:38:20.278 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60569 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:39:20.264 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:39:20.267 [info] [command][81e08568-dc0d-4d54-8aaf-4ade6f650acd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""81e08568-dc0d-4d54-8aaf-4ade6f650acd""}\n2025-07-16 19:39:20.268 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][b269f93f-d343-4ddf-bf55-3e85c43318dd] received connection request\n2025-07-16 19:39:20.268 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:39:20.286 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b269f93f-d343-4ddf-bf55-3e85c43318dd] socks forwarding established\n2025-07-16 19:39:20.330 [info] [command][81e08568-dc0d-4d54-8aaf-4ade6f650acd] Process exited with code 0\n2025-07-16 19:39:20.330 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][b269f93f-d343-4ddf-bf55-3e85c43318dd] socks connection closed\n2025-07-16 19:39:20.330 [info] [command][81e08568-dc0d-4d54-8aaf-4ade6f650acd] Socket close event received\n2025-07-16 19:39:20.346 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60595 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:40:20.334 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:40:20.336 [info] [command][d0da2e99-d9cf-4ab4-8130-ed9bc60aa48c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""d0da2e99-d9cf-4ab4-8130-ed9bc60aa48c""}\n2025-07-16 19:40:20.337 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c22457ed-7869-41f7-94dc-9b6484634360] received connection request\n2025-07-16 19:40:20.337 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:40:20.353 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c22457ed-7869-41f7-94dc-9b6484634360] socks forwarding established\n2025-07-16 19:40:20.471 [info] [command][d0da2e99-d9cf-4ab4-8130-ed9bc60aa48c] Process exited with code 0\n2025-07-16 19:40:20.471 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c22457ed-7869-41f7-94dc-9b6484634360] socks connection closed\n2025-07-16 19:40:20.471 [info] [command][d0da2e99-d9cf-4ab4-8130-ed9bc60aa48c] Socket close event received\n2025-07-16 19:40:20.488 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60633 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:41:20.472 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:41:20.474 [info] [command][24130912-4581-46ca-be82-083c0ba8e33e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""24130912-4581-46ca-be82-083c0ba8e33e""}\n2025-07-16 19:41:20.475 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][c24a3ec9-3b4a-4592-8fd7-63972aa762f3] received connection request\n2025-07-16 19:41:20.475 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:41:20.492 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c24a3ec9-3b4a-4592-8fd7-63972aa762f3] socks forwarding established\n2025-07-16 19:41:20.521 [info] [command][24130912-4581-46ca-be82-083c0ba8e33e] Process exited with code 0\n2025-07-16 19:41:20.521 [info] [command][24130912-4581-46ca-be82-083c0ba8e33e] Socket close event received\n2025-07-16 19:41:20.522 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][c24a3ec9-3b4a-4592-8fd7-63972aa762f3] socks connection closed\n2025-07-16 19:41:20.539 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60662 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:42:20.526 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:42:20.529 [info] [command][51b403d5-6fe8-45a0-ba93-c400cf4ad3fb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""51b403d5-6fe8-45a0-ba93-c400cf4ad3fb""}\n2025-07-16 19:42:20.530 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8708b76a-18de-439b-b138-697095afa1c8] received connection request\n2025-07-16 19:42:20.531 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:42:20.549 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8708b76a-18de-439b-b138-697095afa1c8] socks forwarding established\n2025-07-16 19:42:20.577 [info] [command][51b403d5-6fe8-45a0-ba93-c400cf4ad3fb] Process exited with code 0\n2025-07-16 19:42:20.577 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8708b76a-18de-439b-b138-697095afa1c8] socks connection closed\n2025-07-16 19:42:20.577 [info] [command][51b403d5-6fe8-45a0-ba93-c400cf4ad3fb] Socket close event received\n2025-07-16 19:42:20.594 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60719 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:43:20.582 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:43:20.584 [info] [command][f369df94-ce0e-4215-a767-1276c5329291] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f369df94-ce0e-4215-a767-1276c5329291""}\n2025-07-16 19:43:20.585 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][ad475968-32c8-46b8-9a4d-2c6749ba67c0] received connection request\n2025-07-16 19:43:20.586 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 19:43:20.592 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:43:20.609 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ad475968-32c8-46b8-9a4d-2c6749ba67c0] socks forwarding established\n2025-07-16 19:43:20.639 [info] [command][f369df94-ce0e-4215-a767-1276c5329291] Process exited with code 0\n2025-07-16 19:43:20.639 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ad475968-32c8-46b8-9a4d-2c6749ba67c0] socks connection closed\n2025-07-16 19:43:20.639 [info] [command][f369df94-ce0e-4215-a767-1276c5329291] Socket close event received\n2025-07-16 19:43:20.656 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60746 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:44:20.644 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:44:20.646 [info] [command][526ead67-b6e8-42c1-b132-590699597b29] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""526ead67-b6e8-42c1-b132-590699597b29""}\n2025-07-16 19:44:20.647 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][a5ab9d18-dfc4-4b4f-a26e-807d7171c9bb] received connection request\n2025-07-16 19:44:20.647 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:44:20.664 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a5ab9d18-dfc4-4b4f-a26e-807d7171c9bb] socks forwarding established\n2025-07-16 19:44:20.693 [info] [command][526ead67-b6e8-42c1-b132-590699597b29] Process exited with code 0\n2025-07-16 19:44:20.693 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][a5ab9d18-dfc4-4b4f-a26e-807d7171c9bb] socks connection closed\n2025-07-16 19:44:20.693 [info] [command][526ead67-b6e8-42c1-b132-590699597b29] Socket close event received\n2025-07-16 19:44:20.710 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60779 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:45:20.699 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:45:20.701 [info] [command][22be2a28-d422-4525-a166-d2cb0046f578] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""22be2a28-d422-4525-a166-d2cb0046f578""}\n2025-07-16 19:45:20.702 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][7013d24d-540e-4709-b6f5-e58f4a1776d9] received connection request\n2025-07-16 19:45:20.702 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:45:20.720 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7013d24d-540e-4709-b6f5-e58f4a1776d9] socks forwarding established\n2025-07-16 19:45:20.748 [info] [command][22be2a28-d422-4525-a166-d2cb0046f578] Process exited with code 0\n2025-07-16 19:45:20.749 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][7013d24d-540e-4709-b6f5-e58f4a1776d9] socks connection closed\n2025-07-16 19:45:20.749 [info] [command][22be2a28-d422-4525-a166-d2cb0046f578] Socket close event received\n2025-07-16 19:45:20.766 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60820 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:46:20.754 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:46:20.757 [info] [command][f2c30d6e-d7b0-422e-9600-bf2fdc43dae0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f2c30d6e-d7b0-422e-9600-bf2fdc43dae0""}\n2025-07-16 19:46:20.757 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][929d7dc6-a119-49df-bdff-eeb353813a92] received connection request\n2025-07-16 19:46:20.758 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:46:20.778 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][929d7dc6-a119-49df-bdff-eeb353813a92] socks forwarding established\n2025-07-16 19:46:20.811 [info] [command][f2c30d6e-d7b0-422e-9600-bf2fdc43dae0] Process exited with code 0\n2025-07-16 19:46:20.811 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][929d7dc6-a119-49df-bdff-eeb353813a92] socks connection closed\n2025-07-16 19:46:20.811 [info] [command][f2c30d6e-d7b0-422e-9600-bf2fdc43dae0] Socket close event received\n2025-07-16 19:46:20.828 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60844 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:47:20.813 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:47:20.815 [info] [command][f7cd2076-4fd0-4c42-aef2-564e135c7416] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f7cd2076-4fd0-4c42-aef2-564e135c7416""}\n2025-07-16 19:47:20.815 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][47db8fed-4d53-4535-b811-b0781dd79840] received connection request\n2025-07-16 19:47:20.815 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:47:20.831 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][47db8fed-4d53-4535-b811-b0781dd79840] socks forwarding established\n2025-07-16 19:47:20.863 [info] [command][f7cd2076-4fd0-4c42-aef2-564e135c7416] Process exited with code 0\n2025-07-16 19:47:20.863 [info] [command][f7cd2076-4fd0-4c42-aef2-564e135c7416] Socket close event received\n2025-07-16 19:47:20.864 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][47db8fed-4d53-4535-b811-b0781dd79840] socks connection closed\n2025-07-16 19:47:20.879 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60903 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:48:20.868 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:48:20.870 [info] [command][f58c79d3-74a8-43c5-a197-533fad8ccc8d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""f58c79d3-74a8-43c5-a197-533fad8ccc8d""}\n2025-07-16 19:48:20.871 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][ade314c7-0c7a-4d46-bc9a-977640519690] received connection request\n2025-07-16 19:48:20.872 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:48:20.893 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ade314c7-0c7a-4d46-bc9a-977640519690] socks forwarding established\n2025-07-16 19:48:20.921 [info] [command][f58c79d3-74a8-43c5-a197-533fad8ccc8d] Process exited with code 0\n2025-07-16 19:48:20.922 [info] [command][f58c79d3-74a8-43c5-a197-533fad8ccc8d] Socket close event received\n2025-07-16 19:48:20.922 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][ade314c7-0c7a-4d46-bc9a-977640519690] socks connection closed\n2025-07-16 19:48:20.939 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60925 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:49:20.922 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:49:20.924 [info] [command][85ce06d5-ba03-4fcc-a732-0b156649cb18] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""85ce06d5-ba03-4fcc-a732-0b156649cb18""}\n2025-07-16 19:49:20.924 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][41b76eea-0af9-47f2-b309-07612e1f79c0] received connection request\n2025-07-16 19:49:20.925 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:49:20.944 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][41b76eea-0af9-47f2-b309-07612e1f79c0] socks forwarding established\n2025-07-16 19:49:20.976 [info] [command][85ce06d5-ba03-4fcc-a732-0b156649cb18] Process exited with code 0\n2025-07-16 19:49:20.976 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][41b76eea-0af9-47f2-b309-07612e1f79c0] socks connection closed\n2025-07-16 19:49:20.976 [info] [command][85ce06d5-ba03-4fcc-a732-0b156649cb18] Socket close event received\n2025-07-16 19:49:20.993 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60954 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:50:20.976 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:50:20.979 [info] [command][cf36a275-3895-42b5-b8e3-2234e609f0a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""cf36a275-3895-42b5-b8e3-2234e609f0a5""}\n2025-07-16 19:50:20.980 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][8e802de2-4fcb-4a27-a830-863c116260a9] received connection request\n2025-07-16 19:50:20.980 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:50:20.997 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8e802de2-4fcb-4a27-a830-863c116260a9] socks forwarding established\n2025-07-16 19:50:21.026 [info] [command][cf36a275-3895-42b5-b8e3-2234e609f0a5] Process exited with code 0\n2025-07-16 19:50:21.027 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][8e802de2-4fcb-4a27-a830-863c116260a9] socks connection closed\n2025-07-16 19:50:21.027 [info] [command][cf36a275-3895-42b5-b8e3-2234e609f0a5] Socket close event received\n2025-07-16 19:50:21.044 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 60992 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:51:21.030 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:51:21.032 [info] [command][972cf636-37f8-4b6c-8a93-bbcf906dad13] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""972cf636-37f8-4b6c-8a93-bbcf906dad13""}\n2025-07-16 19:51:21.032 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][fb60cbce-1da5-4774-96c3-84ced430845a] received connection request\n2025-07-16 19:51:21.033 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:51:21.050 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fb60cbce-1da5-4774-96c3-84ced430845a] socks forwarding established\n2025-07-16 19:51:21.078 [info] [command][972cf636-37f8-4b6c-8a93-bbcf906dad13] Process exited with code 0\n2025-07-16 19:51:21.078 [info] [command][972cf636-37f8-4b6c-8a93-bbcf906dad13] Socket close event received\n2025-07-16 19:51:21.079 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][fb60cbce-1da5-4774-96c3-84ced430845a] socks connection closed\n2025-07-16 19:51:21.097 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61019 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:52:21.082 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:52:21.083 [info] [command][aca7f230-6dea-4b42-81d2-b2b5a73e79f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""aca7f230-6dea-4b42-81d2-b2b5a73e79f6""}\n2025-07-16 19:52:21.084 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][4e7a8aef-e260-4482-9426-6ae8cce13da6] received connection request\n2025-07-16 19:52:21.084 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:52:21.103 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4e7a8aef-e260-4482-9426-6ae8cce13da6] socks forwarding established\n2025-07-16 19:52:21.135 [info] [command][aca7f230-6dea-4b42-81d2-b2b5a73e79f6] Process exited with code 0\n2025-07-16 19:52:21.135 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][4e7a8aef-e260-4482-9426-6ae8cce13da6] socks connection closed\n2025-07-16 19:52:21.135 [info] [command][aca7f230-6dea-4b42-81d2-b2b5a73e79f6] Socket close event received\n2025-07-16 19:52:21.153 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61072 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:53:21.136 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:53:21.138 [info] [command][4b85e432-93ab-488b-b045-4dc073020c12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""4b85e432-93ab-488b-b045-4dc073020c12""}\n2025-07-16 19:53:21.139 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][3d4d8ed4-71bc-4378-b857-6ff0ae7736ba] received connection request\n2025-07-16 19:53:21.140 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:53:21.157 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3d4d8ed4-71bc-4378-b857-6ff0ae7736ba] socks forwarding established\n2025-07-16 19:53:21.187 [info] [command][4b85e432-93ab-488b-b045-4dc073020c12] Process exited with code 0\n2025-07-16 19:53:21.187 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][3d4d8ed4-71bc-4378-b857-6ff0ae7736ba] socks connection closed\n2025-07-16 19:53:21.187 [info] [command][4b85e432-93ab-488b-b045-4dc073020c12] Socket close event received\n2025-07-16 19:53:21.204 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61093 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:54:21.193 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:54:21.195 [info] [command][ee254f8f-ac3d-416d-ae71-52ac7ea8fcfc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ee254f8f-ac3d-416d-ae71-52ac7ea8fcfc""}\n2025-07-16 19:54:21.196 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][be9475bd-9677-44c7-81d5-51cbf6049efe] received connection request\n2025-07-16 19:54:21.196 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:54:21.215 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][be9475bd-9677-44c7-81d5-51cbf6049efe] socks forwarding established\n2025-07-16 19:54:21.247 [info] [command][ee254f8f-ac3d-416d-ae71-52ac7ea8fcfc] Process exited with code 0\n2025-07-16 19:54:21.248 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][be9475bd-9677-44c7-81d5-51cbf6049efe] socks connection closed\n2025-07-16 19:54:21.248 [info] [command][ee254f8f-ac3d-416d-ae71-52ac7ea8fcfc] Socket close event received\n2025-07-16 19:54:21.291 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61114 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:55:21.252 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:55:21.254 [info] [command][33a895cd-1231-4292-bfed-5678dd646130] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""33a895cd-1231-4292-bfed-5678dd646130""}\n2025-07-16 19:55:21.255 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][36bf7b0b-cb33-4d9b-ab0a-f0132cba2e03] received connection request\n2025-07-16 19:55:21.255 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 19:55:21.255 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:55:21.326 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][36bf7b0b-cb33-4d9b-ab0a-f0132cba2e03] socks forwarding established\n2025-07-16 19:55:21.349 [info] [command][33a895cd-1231-4292-bfed-5678dd646130] Process exited with code 0\n2025-07-16 19:55:21.350 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][36bf7b0b-cb33-4d9b-ab0a-f0132cba2e03] socks connection closed\n2025-07-16 19:55:21.350 [info] [command][33a895cd-1231-4292-bfed-5678dd646130] Socket close event received\n2025-07-16 19:55:21.367 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61182 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:56:21.351 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:56:21.353 [info] [command][b9117f10-c5ee-4c92-a681-0781903b6736] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b9117f10-c5ee-4c92-a681-0781903b6736""}\n2025-07-16 19:56:21.353 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][71a84d7b-81f0-49a6-9b81-f0d79cc19102] received connection request\n2025-07-16 19:56:21.354 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\n\n2025-07-16 19:56:21.354 [info] (ssh_tunnel) stderr: debug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:56:21.370 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][71a84d7b-81f0-49a6-9b81-f0d79cc19102] socks forwarding established\n2025-07-16 19:56:21.399 [info] [command][b9117f10-c5ee-4c92-a681-0781903b6736] Process exited with code 0\n2025-07-16 19:56:21.399 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][71a84d7b-81f0-49a6-9b81-f0d79cc19102] socks connection closed\n2025-07-16 19:56:21.399 [info] [command][b9117f10-c5ee-4c92-a681-0781903b6736] Socket close event received\n2025-07-16 19:56:21.416 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61210 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:57:21.401 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:57:21.404 [info] [command][b3ff646d-554d-4234-97f0-4681f3bc8f99] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""b3ff646d-554d-4234-97f0-4681f3bc8f99""}\n2025-07-16 19:57:21.405 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][46dea8b4-94f1-4da8-ac0e-3b8b3cf0a0b0] received connection request\n2025-07-16 19:57:21.406 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:57:21.423 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][46dea8b4-94f1-4da8-ac0e-3b8b3cf0a0b0] socks forwarding established\n2025-07-16 19:57:21.449 [info] [command][b3ff646d-554d-4234-97f0-4681f3bc8f99] Process exited with code 0\n2025-07-16 19:57:21.449 [info] [command][b3ff646d-554d-4234-97f0-4681f3bc8f99] Socket close event received\n2025-07-16 19:57:21.453 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][46dea8b4-94f1-4da8-ac0e-3b8b3cf0a0b0] socks connection closed\n2025-07-16 19:57:21.470 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61270 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:58:21.454 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:58:21.457 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][0ad092f9-e6e7-4140-a539-a1eea483031f] received connection request\n2025-07-16 19:58:21.458 [info] [command][ca953df7-f25a-40dd-a2d3-12a663a498a3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""ca953df7-f25a-40dd-a2d3-12a663a498a3""}\n2025-07-16 19:58:21.458 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:58:21.475 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0ad092f9-e6e7-4140-a539-a1eea483031f] socks forwarding established\n2025-07-16 19:58:21.500 [info] [command][ca953df7-f25a-40dd-a2d3-12a663a498a3] Process exited with code 0\n2025-07-16 19:58:21.500 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][0ad092f9-e6e7-4140-a539-a1eea483031f] socks connection closed\n2025-07-16 19:58:21.500 [info] [command][ca953df7-f25a-40dd-a2d3-12a663a498a3] Socket close event received\n2025-07-16 19:58:21.517 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61296 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 19:59:21.501 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 19:59:21.503 [info] [command][59ba80a2-2207-42d4-9e21-753fca20c2ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""59ba80a2-2207-42d4-9e21-753fca20c2ed""}\n2025-07-16 19:59:21.504 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:46131][1fe4cc77-c23d-4c2f-843c-59389881bf7c] received connection request\n2025-07-16 19:59:21.504 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 19:59:21.522 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1fe4cc77-c23d-4c2f-843c-59389881bf7c] socks forwarding established\n2025-07-16 19:59:21.554 [info] [command][59ba80a2-2207-42d4-9e21-753fca20c2ed] Process exited with code 0\n2025-07-16 19:59:21.555 [info] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:54879 -> 127.0.0.1:46131][1fe4cc77-c23d-4c2f-843c-59389881bf7c] socks connection closed\n2025-07-16 19:59:21.555 [info] [command][59ba80a2-2207-42d4-9e21-753fca20c2ed] Socket close event received\n2025-07-16 19:59:21.574 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54879 for 127.0.0.1 port 46131, connect from 127.0.0.1 port 61333 to 127.0.0.1 port 54879, nchannels 6\n\n2025-07-16 20:00:13.878 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-16 20:00:13.879 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-16 20:00:13.934 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:36691][828d2ce1-225d-4cd5-828e-8972baea257d] received connection request\n2025-07-16 20:00:13.934 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:36691][37e6c00b-4b41-46cb-acf7-770e2232960e] received connection request\n2025-07-16 20:00:13.944 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\ndebug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:00:16.880 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-16 20:00:16.880 [error] Failed to connect to Cursor server at http://127.0.0.1:54992, attempt 1 of 3 This operation was aborted\n2025-07-16 20:00:16.881 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:36691][e5d9ed78-c20f-489b-befa-a4feb5d5af47] received connection request\n2025-07-16 20:00:16.881 [info] (ssh_tunnel) stderr: debug1: Connection to port 54879 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:00:16.962 [info] Terminating existing SSH process with pid: 59968\n2025-07-16 20:00:16.962 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-16 20:00:16.962 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:00:16.962 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-16 20:00:16.963 [error] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:54879 -> 127.0.0.1:36691][828d2ce1-225d-4cd5-828e-8972baea257d] error while creating socks forwarding Socket closed\n2025-07-16 20:00:16.963 [error] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:54879 -> 127.0.0.1:36691][37e6c00b-4b41-46cb-acf7-770e2232960e] error while creating socks forwarding Socket closed\n2025-07-16 20:00:16.964 [error] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:54879 -> 127.0.0.1:36691][e5d9ed78-c20f-489b-befa-a4feb5d5af47] error while creating socks forwarding Socket closed\n2025-07-16 20:00:16.964 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:54879 -> 127.0.0.1:36691][b208034b-ea47-489d-9a2f-a66c1a0bf91f] socks connection closed\n2025-07-16 20:00:16.964 [info] [forwarding][code][127.0.0.1:54992 -> 127.0.0.1:54879 -> 127.0.0.1:36691][3750a387-fd9f-49e7-aa49-114a943db93b] socks connection closed\n2025-07-16 20:00:16.969 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_40531.sh"" | ssh -v -T -D 61384 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:00:16.969 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:00:16.969 [info] Waiting for server to install via process(75819)...\n2025-07-16 20:00:16.975 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:00:16.975 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:00:16.975 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:00:16.975 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:00:16.975 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:00:16.976 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:00:16.977 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:00:16.977 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:00:16.977 [info] Retrying connection in 5 seconds...\n2025-07-16 20:00:17.891 [error] Failed to connect to Cursor server at http://127.0.0.1:54992, attempt 2 of 3 This operation was aborted\n2025-07-16 20:00:18.901 [error] Failed to connect to Cursor server at http://127.0.0.1:54992, attempt 3 of 3 This operation was aborted\n2025-07-16 20:00:18.902 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-16 20:00:18.902 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-16 20:03:24.363 [info] [remote-ssh] Pinging remote server on port 54993\n2025-07-16 20:03:24.363 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_40531.sh\n2025-07-16 20:03:24.365 [error] [forwarding][multiplex][127.0.0.1:54993 -> 127.0.0.1:undefined][510480a3-d183-46da-b5df-50c494024f42] remote server not configured\n2025-07-16 20:03:24.365 [info] [command][81e37402-5f41-4903-8734-2f5524468df8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""5af59a3f-6da2-4e66-b313-c39b8c9081bf"",""id"":""81e37402-5f41-4903-8734-2f5524468df8""}\n2025-07-16 20:03:24.529 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:03:24.534 [error] [command][81e37402-5f41-4903-8734-2f5524468df8] Socket error: Error: read ECONNRESET\n2025-07-16 20:03:24.535 [info] [command][81e37402-5f41-4903-8734-2f5524468df8] Socket close event received\n2025-07-16 20:03:24.538 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_79637.sh"" | ssh -v -T -D 61387 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:03:24.538 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:03:24.538 [info] Waiting for server to install via process(75833)...\n2025-07-16 20:03:24.546 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:03:24.546 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:03:24.546 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:03:24.546 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\n\n2025-07-16 20:03:24.546 [info] (ssh_tunnel) stderr: debug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:03:24.546 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:03:24.546 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:03:24.548 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:03:24.548 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:03:24.549 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:03:24.549 [info] Retrying connection in 5 seconds...\n2025-07-16 20:03:29.558 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_79637.sh\n2025-07-16 20:03:29.559 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:03:29.563 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4947.sh"" | ssh -v -T -D 61389 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:03:29.564 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:03:29.564 [info] Waiting for server to install via process(75840)...\n2025-07-16 20:03:29.578 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:03:29.578 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:03:29.579 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:03:29.579 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:03:29.579 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:03:29.581 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:03:29.582 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:03:29.582 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:03:29.582 [info] Retrying connection in 5 seconds...\n2025-07-16 20:03:34.594 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4947.sh\n2025-07-16 20:03:34.595 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:03:34.622 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_78276.sh"" | ssh -v -T -D 61391 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:03:34.623 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:03:34.623 [info] Waiting for server to install via process(75851)...\n2025-07-16 20:03:34.692 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:03:34.692 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:03:34.692 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:03:34.694 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:03:34.697 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:03:35.644 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:03:35.669 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:03:35.669 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:03:35.669 [info] Retrying connection in 5 seconds...\n2025-07-16 20:03:40.690 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_78276.sh\n2025-07-16 20:03:40.692 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:03:40.710 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_72610.sh"" | ssh -v -T -D 61395 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:03:40.710 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:03:40.710 [info] Waiting for server to install via process(75856)...\n2025-07-16 20:03:41.111 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:03:41.112 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:03:41.118 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:03:41.119 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:03:41.170 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:03:41.176 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:03:41.177 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:03:41.177 [info] Retrying connection in 5 seconds...\n2025-07-16 20:04:21.854 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_72610.sh\n2025-07-16 20:04:21.935 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:04:21.938 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_12821.sh"" | ssh -v -T -D 61396 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:04:21.938 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:04:21.938 [info] Waiting for server to install via process(75866)...\n2025-07-16 20:04:21.948 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:04:21.948 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:04:21.948 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\n\n2025-07-16 20:04:21.948 [info] (ssh_tunnel) stderr: debug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:04:21.948 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:04:21.949 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:04:21.952 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:04:21.953 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:04:21.953 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:04:21.953 [info] Retrying connection in 5 seconds...\n2025-07-16 20:04:26.963 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_12821.sh\n2025-07-16 20:04:26.964 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:04:26.968 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44249.sh"" | ssh -v -T -D 61399 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:04:26.968 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:04:26.968 [info] Waiting for server to install via process(75876)...\n2025-07-16 20:04:26.986 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:04:26.986 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:04:26.987 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:04:26.987 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:04:26.987 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:04:26.990 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:04:26.990 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:04:26.991 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:04:26.991 [info] Retrying connection in 5 seconds...\n2025-07-16 20:04:31.996 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44249.sh\n2025-07-16 20:04:31.997 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:04:32.000 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_97790.sh"" | ssh -v -T -D 61401 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:04:32.000 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:04:32.000 [info] Waiting for server to install via process(75884)...\n2025-07-16 20:04:32.034 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:04:32.034 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:04:32.035 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:04:32.035 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:04:32.035 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\n\n2025-07-16 20:04:32.035 [info] (ssh_tunnel) stderr: debug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:04:32.038 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:04:32.040 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:04:32.040 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:04:32.040 [info] Retrying connection in 5 seconds...\n2025-07-16 20:04:37.046 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_97790.sh\n2025-07-16 20:04:37.046 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:04:37.048 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_10843.sh"" | ssh -v -T -D 61403 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:04:37.048 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:04:37.048 [info] Waiting for server to install via process(75892)...\n2025-07-16 20:04:37.058 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:04:37.058 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:04:37.058 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:04:37.058 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:04:37.058 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:04:37.060 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:04:37.061 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:04:37.061 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:04:37.061 [info] Retrying connection in 5 seconds...\n2025-07-16 20:04:42.064 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_10843.sh\n2025-07-16 20:04:42.064 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:04:42.067 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_63628.sh"" | ssh -v -T -D 61406 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:04:42.067 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:04:42.067 [info] Waiting for server to install via process(75900)...\n2025-07-16 20:04:42.076 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:04:42.076 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:04:42.076 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:04:42.076 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:04:42.076 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:04:42.079 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:04:42.079 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:04:42.079 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:04:42.079 [info] Retrying connection in 5 seconds...\n2025-07-16 20:04:47.090 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_63628.sh\n2025-07-16 20:04:47.090 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:04:47.092 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_28931.sh"" | ssh -v -T -D 61408 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:04:47.092 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:04:47.092 [info] Waiting for server to install via process(75907)...\n2025-07-16 20:04:47.102 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:04:47.102 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:04:47.102 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:04:47.102 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:04:47.102 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:04:47.104 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:04:47.105 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:04:47.105 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:04:47.105 [info] Retrying connection in 5 seconds...\n2025-07-16 20:04:52.115 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_28931.sh\n2025-07-16 20:04:52.116 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:04:52.120 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_75268.sh"" | ssh -v -T -D 61410 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:04:52.120 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:04:52.120 [info] Waiting for server to install via process(75916)...\n2025-07-16 20:04:52.133 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:04:52.133 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:04:52.133 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:04:52.133 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:04:52.133 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:04:52.135 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:04:52.136 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:04:52.136 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:04:52.136 [info] Retrying connection in 5 seconds...\n2025-07-16 20:11:57.472 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_75268.sh\n2025-07-16 20:11:57.473 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-2IWL4b/socket.sock\n2025-07-16 20:11:57.475 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_37330.sh"" | ssh -v -T -D 61412 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:11:57.476 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:11:57.476 [info] Waiting for server to install via process(75925)...\n2025-07-16 20:11:57.502 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:11:57.511 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\ndebug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:11:57.533 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:11:57.534 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:11:57.534 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:11:57.534 [error] Failed to connect after 13 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:11:57.534 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_37330.sh\n2025-07-16 20:11:57.535 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:18:05.797 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-16 20:18:05.812 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:18:05.813 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-16 20:18:05.815 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:18:05.817 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_72073.sh"" | ssh -v -T -D 62437 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:18:05.817 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:18:05.817 [info] Waiting for server to install via process(78328)...\n2025-07-16 20:18:05.823 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:18:05.823 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:18:05.823 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:18:05.824 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:18:05.824 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:18:05.824 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\n\n2025-07-16 20:18:05.824 [info] (ssh_tunnel) stderr: debug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:18:07.044 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-16 20:18:07.044 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\n\n2025-07-16 20:18:07.044 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\n\n2025-07-16 20:18:07.044 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\n\n2025-07-16 20:18:07.044 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\n\n2025-07-16 20:18:07.044 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-16 20:18:07.045 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-16 20:18:07.045 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-16 20:18:07.045 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-16 20:18:07.180 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-16 20:18:07.181 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-16 20:18:07.182 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-16 20:18:07.268 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-16 20:18:07.269 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-16 20:18:07.400 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-16 20:18:07.401 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-16 20:18:07.401 [info] (ssh_tunnel) stderr: debug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-16 20:18:07.403 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-16 20:18:07.403 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-16 20:18:07.666 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-16 20:18:07.806 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-16 20:18:07.825 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\ndebug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\n\n2025-07-16 20:18:07.825 [info] (ssh_tunnel) stderr: debug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-16 20:18:08.533 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\n\n2025-07-16 20:18:08.533 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-16 20:18:08.647 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-16 20:18:09.144 [info] Askpass server received request: POST /\n2025-07-16 20:18:09.145 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-16 20:18:09.145 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-16 20:18:31.230 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-16 20:18:31.366 [info] Askpass server received request: POST /\n2025-07-16 20:18:31.366 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-16 20:18:31.366 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-16 20:18:39.399 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:62437 forwarded to remote address socks:0\n\n2025-07-16 20:18:39.401 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 62437.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 62437.\n\n2025-07-16 20:18:39.401 [info] (ssh_tunnel) stderr: debug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\n\n2025-07-16 20:18:39.404 [info] (ssh_tunnel) stderr: debug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-16 20:18:39.706 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-16 20:18:39.714 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-16 20:18:39.723 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-16 20:18:39.833 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-16 20:18:42.779 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-16 20:18:42.945 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 20:18:42.961 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-16 20:18:42.991 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-16 20:18:43.005 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-16 20:18:43.120 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-16 20:18:43.142 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-16 20:18:43.160 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-16 20:18:43.173 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-16 20:18:43.205 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js d4890471-e324-4b10-90fa-db4a1cbbb176\nMultiplex server started with PID 1799982 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\nReading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-16 20:18:43.731 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-16 20:18:43.861 [info] (ssh_tunnel) stdout: Code server script is already running /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server. Running processes are 2440923 sh /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\nCode server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 20:18:43.888 [info] (ssh_tunnel) stdout: ea1bc2ded05bfd6843bb4479: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==35701==\nmultiplexConnectionToken==d4890471-e324-4b10-90fa-db4a1cbbb176==\ncodeListeningOn==36691==\ncodeConnectionToken==eec2fd76-3b12-4a3a-9f5f-ef00e4dedada==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\nea1bc2ded05bfd6843bb4479: end\n\n2025-07-16 20:18:43.889 [info] Server install command exit code: 0\n2025-07-16 20:18:43.889 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_72073.sh\n2025-07-16 20:18:43.896 [info] [forwarding][code] creating new forwarding server\n2025-07-16 20:18:43.896 [info] [forwarding][code] server listening on 62463\n2025-07-16 20:18:43.896 [info] [forwarding][code] Set up server\n2025-07-16 20:18:43.896 [info] [remote-ssh] codeListeningOn (remote=36691; local=62463) codeConnectionToken: eec2fd76-3b12-4a3a-9f5f-ef00e4dedada\n2025-07-16 20:18:43.896 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-16 20:18:43.896 [info] [forwarding][multiplex] server listening on 62464\n2025-07-16 20:18:43.896 [info] [forwarding][multiplex] Set up server\n2025-07-16 20:18:43.897 [info] [remote-ssh] multiplexListeningOn (remote=35701; local=62464) multiplexConnectionToken: d4890471-e324-4b10-90fa-db4a1cbbb176\n2025-07-16 20:18:43.897 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:18:43.904 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][85e1916a-459d-4cee-9b75-dd9cf9eba40c] received connection request\n2025-07-16 20:18:43.904 [info] [command][fbc56e59-abea-4248-b08f-937d0db3223c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""fbc56e59-abea-4248-b08f-937d0db3223c""}\n2025-07-16 20:18:43.911 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:18:43.911 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 20:18:43.930 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:36691][2de93cb0-6fef-41ac-ac00-6f5aebb416ec] received connection request\n2025-07-16 20:18:43.930 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:18:44.006 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][85e1916a-459d-4cee-9b75-dd9cf9eba40c] socks forwarding established\n2025-07-16 20:18:44.045 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62437 -> 127.0.0.1:36691][2de93cb0-6fef-41ac-ac00-6f5aebb416ec] socks forwarding established\n2025-07-16 20:18:44.173 [info] [command][fbc56e59-abea-4248-b08f-937d0db3223c] Process exited with code 0\n2025-07-16 20:18:44.174 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][85e1916a-459d-4cee-9b75-dd9cf9eba40c] socks connection closed\n2025-07-16 20:18:44.174 [info] [command][fbc56e59-abea-4248-b08f-937d0db3223c] Socket close event received\n2025-07-16 20:18:44.180 [info] Successfully connected to Cursor server at http://127.0.0.1:62463/version\n2025-07-16 20:18:44.180 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-16 20:18:44.180 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][a856f5ec-9b4a-457f-9aeb-7fafe99ba9de] received connection request\n2025-07-16 20:18:44.181 [info] [command][cff0df51-3515-4be6-9eac-a7c2af57224c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""cff0df51-3515-4be6-9eac-a7c2af57224c""}\n2025-07-16 20:18:44.181 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:18:44.306 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 62466 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:18:44.306 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][a856f5ec-9b4a-457f-9aeb-7fafe99ba9de] socks forwarding established\n2025-07-16 20:18:44.445 [info] [command][cff0df51-3515-4be6-9eac-a7c2af57224c] Process exited with code 0\n2025-07-16 20:18:44.445 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-16 20:18:44.446 [info] [remote-ssh] Resolved exec server. Socks port: 62437\n2025-07-16 20:18:44.446 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":62463,""connectionToken"":""eec2fd76-3b12-4a3a-9f5f-ef00e4dedada"",""extensionHostEnv"":{}}. Socks port: 62437\n2025-07-16 20:18:44.446 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][a856f5ec-9b4a-457f-9aeb-7fafe99ba9de] socks connection closed\n2025-07-16 20:18:44.446 [info] [command][cff0df51-3515-4be6-9eac-a7c2af57224c] Socket close event received\n2025-07-16 20:18:44.494 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:36691][201104a0-4d84-44f6-b0dc-2c7b90ae1870] received connection request\n2025-07-16 20:18:44.495 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:18:44.807 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 62470 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:18:44.813 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62437 -> 127.0.0.1:36691][201104a0-4d84-44f6-b0dc-2c7b90ae1870] socks forwarding established\n2025-07-16 20:18:45.158 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:36691][b6786db1-5384-4aec-9620-5484fcdf49e4] received connection request\n2025-07-16 20:18:45.158 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:18:45.260 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62437 -> 127.0.0.1:36691][b6786db1-5384-4aec-9620-5484fcdf49e4] socks forwarding established\n2025-07-16 20:18:46.587 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-16 20:18:48.579 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 36691, connect from 127.0.0.1 port 62468 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:18:48.579 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62437 -> 127.0.0.1:36691][2de93cb0-6fef-41ac-ac00-6f5aebb416ec] socks connection closed\n2025-07-16 20:18:52.862 [info] [tunnel-forwarding][127.0.0.1:8791 -> localhost:8791] server listening\n2025-07-16 20:19:44.176 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:19:44.177 [info] [command][dd138dd6-3f14-4655-9d13-e299f13a28ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""dd138dd6-3f14-4655-9d13-e299f13a28ca""}\n2025-07-16 20:19:44.178 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][61419de9-afa8-4efb-b6a4-bbe097fa61df] received connection request\n2025-07-16 20:19:44.179 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:19:44.285 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][61419de9-afa8-4efb-b6a4-bbe097fa61df] socks forwarding established\n2025-07-16 20:19:44.429 [info] [command][dd138dd6-3f14-4655-9d13-e299f13a28ca] Process exited with code 0\n2025-07-16 20:19:44.430 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][61419de9-afa8-4efb-b6a4-bbe097fa61df] socks connection closed\n2025-07-16 20:19:44.430 [info] [command][dd138dd6-3f14-4655-9d13-e299f13a28ca] Socket close event received\n2025-07-16 20:19:44.521 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 62860 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:20:44.433 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:20:44.434 [info] [command][6ad7565d-13ba-40da-b20d-eb4d27090c96] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""6ad7565d-13ba-40da-b20d-eb4d27090c96""}\n2025-07-16 20:20:44.435 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][75b1f3f6-9858-46a8-b852-41b503247488] received connection request\n2025-07-16 20:20:44.436 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:20:44.547 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][75b1f3f6-9858-46a8-b852-41b503247488] socks forwarding established\n2025-07-16 20:20:44.665 [info] [command][6ad7565d-13ba-40da-b20d-eb4d27090c96] Process exited with code 0\n2025-07-16 20:20:44.665 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][75b1f3f6-9858-46a8-b852-41b503247488] socks connection closed\n2025-07-16 20:20:44.665 [info] [command][6ad7565d-13ba-40da-b20d-eb4d27090c96] Socket close event received\n2025-07-16 20:20:44.777 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 62966 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:21:44.671 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:21:44.673 [info] [command][edc95574-87f1-4ab8-84f5-131a1b0bf52f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""edc95574-87f1-4ab8-84f5-131a1b0bf52f""}\n2025-07-16 20:21:44.674 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][d48e382b-ce3e-434c-901a-f45b99575961] received connection request\n2025-07-16 20:21:44.674 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\n\n2025-07-16 20:21:44.675 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:21:44.839 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][d48e382b-ce3e-434c-901a-f45b99575961] socks forwarding established\n2025-07-16 20:21:45.248 [info] [command][edc95574-87f1-4ab8-84f5-131a1b0bf52f] Process exited with code 0\n2025-07-16 20:21:45.249 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][d48e382b-ce3e-434c-901a-f45b99575961] socks connection closed\n2025-07-16 20:21:45.249 [info] [command][edc95574-87f1-4ab8-84f5-131a1b0bf52f] Socket close event received\n2025-07-16 20:21:45.428 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 63097 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:22:45.251 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:22:45.253 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][4346d960-866d-44ef-9b6d-027e48e11e89] received connection request\n2025-07-16 20:22:45.254 [info] [command][45c4e19b-f6fc-4089-81cc-cf7b2bcaeda8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""45c4e19b-f6fc-4089-81cc-cf7b2bcaeda8""}\n2025-07-16 20:22:45.254 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:22:46.038 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][4346d960-866d-44ef-9b6d-027e48e11e89] socks forwarding established\n2025-07-16 20:22:56.762 [info] [command][45c4e19b-f6fc-4089-81cc-cf7b2bcaeda8] Process exited with code 0\n2025-07-16 20:22:56.762 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][4346d960-866d-44ef-9b6d-027e48e11e89] socks connection closed\n2025-07-16 20:22:56.763 [info] [command][45c4e19b-f6fc-4089-81cc-cf7b2bcaeda8] Socket close event received\n2025-07-16 20:22:58.309 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 63210 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:23:56.768 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:23:56.769 [info] [command][51e01587-d97b-4d47-a179-86c3549b7f55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""51e01587-d97b-4d47-a179-86c3549b7f55""}\n2025-07-16 20:23:56.771 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][7ac775be-55b1-42c2-a32c-8659119c15e5] received connection request\n2025-07-16 20:23:56.771 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:23:56.905 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][7ac775be-55b1-42c2-a32c-8659119c15e5] socks forwarding established\n2025-07-16 20:23:57.078 [info] [command][51e01587-d97b-4d47-a179-86c3549b7f55] Process exited with code 0\n2025-07-16 20:23:57.079 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][7ac775be-55b1-42c2-a32c-8659119c15e5] socks connection closed\n2025-07-16 20:23:57.079 [info] [command][51e01587-d97b-4d47-a179-86c3549b7f55] Socket close event received\n2025-07-16 20:23:57.633 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 63365 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:24:57.084 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:24:57.086 [info] [command][0e10aea4-bdcd-4795-ac14-0fc54dc5b501] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""0e10aea4-bdcd-4795-ac14-0fc54dc5b501""}\n2025-07-16 20:24:57.087 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][951984fa-7575-4837-9fa9-ea78f5885314] received connection request\n2025-07-16 20:24:57.088 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:24:57.197 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][951984fa-7575-4837-9fa9-ea78f5885314] socks forwarding established\n2025-07-16 20:24:57.307 [info] [command][0e10aea4-bdcd-4795-ac14-0fc54dc5b501] Process exited with code 0\n2025-07-16 20:24:57.307 [info] [command][0e10aea4-bdcd-4795-ac14-0fc54dc5b501] Socket close event received\n2025-07-16 20:24:57.312 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][951984fa-7575-4837-9fa9-ea78f5885314] socks connection closed\n2025-07-16 20:24:57.389 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 63485 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:25:57.311 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:25:57.312 [info] [command][240266bc-cf08-4538-a0d3-7d5523c61eee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""240266bc-cf08-4538-a0d3-7d5523c61eee""}\n2025-07-16 20:25:57.313 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][a92e7b59-5a41-40e2-bbd1-d86221387b98] received connection request\n2025-07-16 20:25:57.314 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:25:57.394 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][a92e7b59-5a41-40e2-bbd1-d86221387b98] socks forwarding established\n2025-07-16 20:25:57.521 [info] [command][240266bc-cf08-4538-a0d3-7d5523c61eee] Process exited with code 0\n2025-07-16 20:25:57.522 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][a92e7b59-5a41-40e2-bbd1-d86221387b98] socks connection closed\n2025-07-16 20:25:57.522 [info] [command][240266bc-cf08-4538-a0d3-7d5523c61eee] Socket close event received\n2025-07-16 20:25:57.611 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 63548 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:26:57.522 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:26:57.523 [info] [command][6670040e-4b58-4dbe-8eae-7bb60de72341] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""6670040e-4b58-4dbe-8eae-7bb60de72341""}\n2025-07-16 20:26:57.523 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][547d31fe-f9b0-4ea6-897d-66608dd30520] received connection request\n2025-07-16 20:26:57.524 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:26:57.607 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][547d31fe-f9b0-4ea6-897d-66608dd30520] socks forwarding established\n2025-07-16 20:26:57.717 [info] [command][6670040e-4b58-4dbe-8eae-7bb60de72341] Process exited with code 0\n2025-07-16 20:26:57.717 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][547d31fe-f9b0-4ea6-897d-66608dd30520] socks connection closed\n2025-07-16 20:26:57.717 [info] [command][6670040e-4b58-4dbe-8eae-7bb60de72341] Socket close event received\n2025-07-16 20:26:57.812 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 63606 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:27:57.719 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:27:57.720 [info] [command][3b4c0424-9e69-4c17-8df8-25dc625d18ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""3b4c0424-9e69-4c17-8df8-25dc625d18ca""}\n2025-07-16 20:27:57.720 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][642d2f5c-21b1-4119-bdd6-ec749ae41fe9] received connection request\n2025-07-16 20:27:57.721 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:28:04.954 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][642d2f5c-21b1-4119-bdd6-ec749ae41fe9] socks forwarding established\n2025-07-16 20:28:09.576 [info] [command][3b4c0424-9e69-4c17-8df8-25dc625d18ca] Process exited with code 0\n2025-07-16 20:28:09.576 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][642d2f5c-21b1-4119-bdd6-ec749ae41fe9] socks connection closed\n2025-07-16 20:28:09.576 [info] [command][3b4c0424-9e69-4c17-8df8-25dc625d18ca] Socket close event received\n2025-07-16 20:28:11.454 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 63692 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:29:09.581 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:29:09.582 [info] [command][7049b2fa-868e-42f3-a3b2-fdfa7530b0f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""7049b2fa-868e-42f3-a3b2-fdfa7530b0f7""}\n2025-07-16 20:29:09.583 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][096c6596-f09f-4b8b-a419-bc38a11a3b45] received connection request\n2025-07-16 20:29:09.584 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:29:09.667 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][096c6596-f09f-4b8b-a419-bc38a11a3b45] socks forwarding established\n2025-07-16 20:29:09.762 [info] [command][7049b2fa-868e-42f3-a3b2-fdfa7530b0f7] Process exited with code 0\n2025-07-16 20:29:09.762 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][096c6596-f09f-4b8b-a419-bc38a11a3b45] socks connection closed\n2025-07-16 20:29:09.762 [info] [command][7049b2fa-868e-42f3-a3b2-fdfa7530b0f7] Socket close event received\n2025-07-16 20:29:09.845 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 63959 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:30:09.766 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:30:09.768 [info] [command][62b06eb1-2f27-4c53-a53c-dfd289e4fce9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""62b06eb1-2f27-4c53-a53c-dfd289e4fce9""}\n2025-07-16 20:30:09.769 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][82b0283b-b8fc-4660-85f1-b6aa9d96dfec] received connection request\n2025-07-16 20:30:09.769 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:30:09.862 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][82b0283b-b8fc-4660-85f1-b6aa9d96dfec] socks forwarding established\n2025-07-16 20:30:09.977 [info] [command][62b06eb1-2f27-4c53-a53c-dfd289e4fce9] Process exited with code 0\n2025-07-16 20:30:09.978 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][82b0283b-b8fc-4660-85f1-b6aa9d96dfec] socks connection closed\n2025-07-16 20:30:09.978 [info] [command][62b06eb1-2f27-4c53-a53c-dfd289e4fce9] Socket close event received\n2025-07-16 20:30:10.064 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 64020 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:31:09.983 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:31:09.984 [info] [command][34afab8d-c1d6-4cbf-8a95-fc77e8a8143b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""34afab8d-c1d6-4cbf-8a95-fc77e8a8143b""}\n2025-07-16 20:31:09.985 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:35701][177c8cb6-16cc-4a08-bdb4-18553a767352] received connection request\n2025-07-16 20:31:09.985 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:31:10.089 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][177c8cb6-16cc-4a08-bdb4-18553a767352] socks forwarding established\n2025-07-16 20:31:10.232 [info] [command][34afab8d-c1d6-4cbf-8a95-fc77e8a8143b] Process exited with code 0\n2025-07-16 20:31:10.232 [info] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:62437 -> 127.0.0.1:35701][177c8cb6-16cc-4a08-bdb4-18553a767352] socks connection closed\n2025-07-16 20:31:10.232 [info] [command][34afab8d-c1d6-4cbf-8a95-fc77e8a8143b] Socket close event received\n2025-07-16 20:31:10.328 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62437 for 127.0.0.1 port 35701, connect from 127.0.0.1 port 64080 to 127.0.0.1 port 62437, nchannels 6\n\n2025-07-16 20:31:35.477 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-16 20:31:35.477 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-16 20:31:35.481 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:36691][ae1aec02-35b2-4347-b17e-62cb3a67ac75] received connection request\n2025-07-16 20:31:35.487 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:36691][a8de09b9-eb26-4169-980d-e7ccd1e7d127] received connection request\n2025-07-16 20:31:35.487 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:31:35.491 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:31:38.486 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-16 20:31:38.487 [error] Failed to connect to Cursor server at http://127.0.0.1:62463, attempt 1 of 3 This operation was aborted\n2025-07-16 20:31:38.493 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:36691][fa0a4bda-6a5f-4f18-a96d-81d147a64819] received connection request\n2025-07-16 20:31:38.494 [info] (ssh_tunnel) stderr: debug1: Connection to port 62437 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:31:38.586 [info] Terminating existing SSH process with pid: 78328\n2025-07-16 20:31:38.586 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-16 20:31:38.586 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-16 20:31:38.586 [error] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62437 -> 127.0.0.1:36691][ae1aec02-35b2-4347-b17e-62cb3a67ac75] error while creating socks forwarding Socket closed\n2025-07-16 20:31:38.587 [error] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62437 -> 127.0.0.1:36691][a8de09b9-eb26-4169-980d-e7ccd1e7d127] error while creating socks forwarding Socket closed\n2025-07-16 20:31:38.587 [error] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62437 -> 127.0.0.1:36691][fa0a4bda-6a5f-4f18-a96d-81d147a64819] error while creating socks forwarding Socket closed\n2025-07-16 20:31:38.587 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62437 -> 127.0.0.1:36691][201104a0-4d84-44f6-b0dc-2c7b90ae1870] socks connection closed\n2025-07-16 20:31:38.587 [info] [forwarding][code][127.0.0.1:62463 -> 127.0.0.1:62437 -> 127.0.0.1:36691][b6786db1-5384-4aec-9620-5484fcdf49e4] socks connection closed\n2025-07-16 20:31:38.587 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:31:38.591 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4928.sh"" | ssh -v -T -D 64115 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:31:38.591 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:31:38.591 [info] Waiting for server to install via process(92008)...\n2025-07-16 20:31:38.613 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:31:38.613 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:31:38.613 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:31:38.613 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:31:38.614 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:31:38.615 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:31:38.615 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:31:38.616 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:31:38.616 [info] Retrying connection in 5 seconds...\n2025-07-16 20:31:39.492 [error] Failed to connect to Cursor server at http://127.0.0.1:62463, attempt 2 of 3 This operation was aborted\n2025-07-16 20:31:40.503 [error] Failed to connect to Cursor server at http://127.0.0.1:62463, attempt 3 of 3 This operation was aborted\n2025-07-16 20:31:40.506 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-16 20:31:40.506 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-16 20:32:29.359 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4928.sh\n2025-07-16 20:32:29.362 [info] [remote-ssh] Pinging remote server on port 62464\n2025-07-16 20:32:29.363 [info] [command][2d785155-7dd4-403a-bb90-a94b57091eca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d4890471-e324-4b10-90fa-db4a1cbbb176"",""id"":""2d785155-7dd4-403a-bb90-a94b57091eca""}\n2025-07-16 20:32:29.363 [error] [forwarding][multiplex][127.0.0.1:62464 -> 127.0.0.1:undefined][cf47fda8-e606-495c-b902-e35b1712a8e6] remote server not configured\n2025-07-16 20:32:29.363 [error] [command][2d785155-7dd4-403a-bb90-a94b57091eca] Socket error: Error: read ECONNRESET\n2025-07-16 20:32:29.363 [info] [command][2d785155-7dd4-403a-bb90-a94b57091eca] Socket close event received\n2025-07-16 20:32:29.370 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:32:29.382 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_58528.sh"" | ssh -v -T -D 64117 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:32:29.383 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:32:29.383 [info] Waiting for server to install via process(92014)...\n2025-07-16 20:32:29.543 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:32:29.544 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:32:29.544 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:32:29.544 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:32:29.545 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:32:29.552 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:32:29.552 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:32:29.552 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:32:29.552 [info] Retrying connection in 5 seconds...\n2025-07-16 20:32:34.558 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_58528.sh\n2025-07-16 20:32:34.559 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:32:34.562 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_22240.sh"" | ssh -v -T -D 64121 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:32:34.562 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:32:34.562 [info] Waiting for server to install via process(92034)...\n2025-07-16 20:32:34.579 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:32:34.579 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:32:34.579 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:32:34.579 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:32:34.579 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:32:34.580 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:32:34.581 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:32:34.581 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:32:34.581 [info] Retrying connection in 5 seconds...\n2025-07-16 20:32:39.585 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_22240.sh\n2025-07-16 20:32:39.586 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:32:39.590 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_83507.sh"" | ssh -v -T -D 64123 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:32:39.590 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:32:39.590 [info] Waiting for server to install via process(92051)...\n2025-07-16 20:32:39.603 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:32:39.603 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:32:39.603 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:32:39.603 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:32:39.603 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:32:39.604 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:32:39.604 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:32:39.604 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:32:39.604 [info] Retrying connection in 5 seconds...\n2025-07-16 20:32:44.611 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_83507.sh\n2025-07-16 20:32:44.612 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:32:44.619 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_81714.sh"" | ssh -v -T -D 64125 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:32:44.619 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:32:44.619 [info] Waiting for server to install via process(92072)...\n2025-07-16 20:32:44.627 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:32:44.627 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:32:44.628 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:32:44.628 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:32:44.628 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:32:44.628 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:32:44.629 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:32:44.629 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:32:44.629 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:32:44.629 [info] Retrying connection in 5 seconds...\n2025-07-16 20:32:49.631 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_81714.sh\n2025-07-16 20:32:49.632 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:32:49.633 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_53251.sh"" | ssh -v -T -D 64126 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:32:49.633 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:32:49.633 [info] Waiting for server to install via process(92083)...\n2025-07-16 20:32:49.639 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:32:49.639 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:32:49.639 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:32:49.639 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:32:49.639 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:32:49.640 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:32:49.640 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:32:49.640 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:32:49.640 [info] Retrying connection in 5 seconds...\n2025-07-16 20:32:54.640 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_53251.sh\n2025-07-16 20:32:54.641 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:32:54.644 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7304.sh"" | ssh -v -T -D 64127 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:32:54.644 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:32:54.644 [info] Waiting for server to install via process(92088)...\n2025-07-16 20:32:54.657 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:32:54.657 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:32:54.657 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:32:54.657 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:32:54.657 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:32:54.658 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:32:54.658 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:32:54.659 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:32:54.659 [info] Retrying connection in 5 seconds...\n2025-07-16 20:32:59.661 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7304.sh\n2025-07-16 20:32:59.662 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:32:59.663 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_74653.sh"" | ssh -v -T -D 64129 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:32:59.663 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:32:59.663 [info] Waiting for server to install via process(92093)...\n2025-07-16 20:32:59.671 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:32:59.671 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:32:59.671 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:32:59.671 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:32:59.672 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:32:59.672 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:32:59.672 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:32:59.672 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:32:59.672 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:04.678 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_74653.sh\n2025-07-16 20:33:04.678 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:04.680 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_14588.sh"" | ssh -v -T -D 64131 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:04.680 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:04.680 [info] Waiting for server to install via process(92109)...\n2025-07-16 20:33:04.689 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:33:04.689 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:33:04.689 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:04.689 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:04.689 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:04.689 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:04.690 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:04.690 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:04.690 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:04.690 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:09.691 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_14588.sh\n2025-07-16 20:33:09.692 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:09.696 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_659.sh"" | ssh -v -T -D 64132 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:09.696 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:09.696 [info] Waiting for server to install via process(92114)...\n2025-07-16 20:33:09.708 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:33:09.708 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:09.708 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:09.708 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:09.708 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:09.709 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:09.709 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:09.709 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:09.709 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:14.714 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_659.sh\n2025-07-16 20:33:14.715 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:14.717 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_60862.sh"" | ssh -v -T -D 64133 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:14.718 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:14.718 [info] Waiting for server to install via process(92118)...\n2025-07-16 20:33:14.736 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:33:14.736 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:33:14.736 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:14.736 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:14.736 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:14.736 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:14.737 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:14.737 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:14.738 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:14.738 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:19.745 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_60862.sh\n2025-07-16 20:33:19.746 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:19.749 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_94447.sh"" | ssh -v -T -D 64134 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:19.749 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:19.749 [info] Waiting for server to install via process(92123)...\n2025-07-16 20:33:19.756 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:33:19.756 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:19.756 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:19.756 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:19.756 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:19.762 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:19.763 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:19.763 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:19.763 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:24.767 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_94447.sh\n2025-07-16 20:33:24.767 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:24.770 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7186.sh"" | ssh -v -T -D 64135 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:24.770 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:24.770 [info] Waiting for server to install via process(92131)...\n2025-07-16 20:33:24.776 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:33:24.777 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:24.777 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:24.777 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:24.777 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:24.777 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:24.778 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:24.778 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:24.778 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:29.783 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7186.sh\n2025-07-16 20:33:29.784 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:29.787 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_65824.sh"" | ssh -v -T -D 64136 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:29.787 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:29.787 [info] Waiting for server to install via process(92138)...\n2025-07-16 20:33:29.801 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:33:29.801 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:33:29.801 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:29.801 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:29.801 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:29.802 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:29.802 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:29.803 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:29.803 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:29.803 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:34.805 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_65824.sh\n2025-07-16 20:33:34.805 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:34.807 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3437.sh"" | ssh -v -T -D 64137 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:34.807 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:34.807 [info] Waiting for server to install via process(92145)...\n2025-07-16 20:33:34.814 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:34.815 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:34.815 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:34.816 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:34.816 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:34.817 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:34.817 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:39.822 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3437.sh\n2025-07-16 20:33:39.823 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:39.826 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_52841.sh"" | ssh -v -T -D 64138 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:39.826 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:39.826 [info] Waiting for server to install via process(92158)...\n2025-07-16 20:33:39.841 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:33:39.842 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:39.842 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:39.842 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:39.842 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:39.842 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:39.843 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:39.843 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:39.843 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:44.843 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_52841.sh\n2025-07-16 20:33:44.844 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:44.849 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8177.sh"" | ssh -v -T -D 64140 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:44.849 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:44.849 [info] Waiting for server to install via process(92162)...\n2025-07-16 20:33:44.864 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:33:44.864 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:44.865 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:44.865 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:44.865 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:44.865 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:44.866 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:44.866 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:44.866 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:49.870 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8177.sh\n2025-07-16 20:33:49.871 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:49.874 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_31691.sh"" | ssh -v -T -D 64141 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:49.874 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:49.874 [info] Waiting for server to install via process(92171)...\n2025-07-16 20:33:49.894 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:33:49.894 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:33:49.894 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:49.894 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:49.894 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:49.894 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:49.895 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:49.895 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:49.895 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:49.895 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:54.896 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_31691.sh\n2025-07-16 20:33:54.896 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:54.899 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_19142.sh"" | ssh -v -T -D 64142 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:54.899 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:54.899 [info] Waiting for server to install via process(92180)...\n2025-07-16 20:33:54.906 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:33:54.906 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:54.906 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:54.906 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:54.906 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:54.907 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:54.908 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:54.908 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:54.908 [info] Retrying connection in 5 seconds...\n2025-07-16 20:33:59.910 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_19142.sh\n2025-07-16 20:33:59.911 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:33:59.919 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_84906.sh"" | ssh -v -T -D 64143 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:33:59.919 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:33:59.919 [info] Waiting for server to install via process(92185)...\n2025-07-16 20:33:59.967 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:33:59.968 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:33:59.968 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:33:59.968 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:33:59.968 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:33:59.968 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:33:59.969 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:33:59.969 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:33:59.969 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:33:59.969 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:04.974 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_84906.sh\n2025-07-16 20:34:04.974 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:04.977 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_27666.sh"" | ssh -v -T -D 64145 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:04.977 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:04.977 [info] Waiting for server to install via process(92193)...\n2025-07-16 20:34:04.986 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:34:04.986 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:04.986 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\n\n2025-07-16 20:34:04.986 [info] (ssh_tunnel) stderr: debug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:04.986 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:04.986 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:04.987 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:04.988 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:04.988 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:04.988 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:09.993 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_27666.sh\n2025-07-16 20:34:09.994 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:09.996 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_25460.sh"" | ssh -v -T -D 64146 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:09.996 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:09.996 [info] Waiting for server to install via process(92202)...\n2025-07-16 20:34:10.003 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:34:10.003 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:10.003 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:10.003 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:10.004 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:10.004 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:10.004 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:10.005 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:10.005 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:15.010 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_25460.sh\n2025-07-16 20:34:15.010 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:15.012 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_73052.sh"" | ssh -v -T -D 64147 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:15.012 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:15.012 [info] Waiting for server to install via process(92206)...\n2025-07-16 20:34:15.033 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:34:15.033 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:15.033 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:15.033 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:15.034 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:15.035 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:15.035 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:15.035 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:20.042 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_73052.sh\n2025-07-16 20:34:20.043 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:20.045 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_90599.sh"" | ssh -v -T -D 64148 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:20.045 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:20.045 [info] Waiting for server to install via process(92211)...\n2025-07-16 20:34:20.052 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:34:20.052 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:34:20.052 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:20.053 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:20.053 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:20.053 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:20.053 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:20.054 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:20.054 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:20.054 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:25.055 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_90599.sh\n2025-07-16 20:34:25.056 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:25.060 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_38896.sh"" | ssh -v -T -D 64149 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:25.060 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:25.060 [info] Waiting for server to install via process(92224)...\n2025-07-16 20:34:25.073 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:34:25.073 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:25.073 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:25.073 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:25.073 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:25.075 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:25.076 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:25.076 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:25.076 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:30.080 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_38896.sh\n2025-07-16 20:34:30.081 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:30.083 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_40067.sh"" | ssh -v -T -D 64150 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:30.083 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:30.083 [info] Waiting for server to install via process(92248)...\n2025-07-16 20:34:30.089 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:34:30.089 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:30.089 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:30.089 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:30.089 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:30.089 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:30.090 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:30.090 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:30.090 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:35.093 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_40067.sh\n2025-07-16 20:34:35.094 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:35.097 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_63970.sh"" | ssh -v -T -D 64151 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:35.098 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:35.098 [info] Waiting for server to install via process(92256)...\n2025-07-16 20:34:35.105 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:34:35.106 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:35.106 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:35.106 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:35.106 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:35.106 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:35.107 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:35.107 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:35.107 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:40.107 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_63970.sh\n2025-07-16 20:34:40.108 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:40.119 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7222.sh"" | ssh -v -T -D 64152 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:40.119 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:40.119 [info] Waiting for server to install via process(92261)...\n2025-07-16 20:34:40.125 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:34:40.126 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:40.126 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:40.126 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:40.126 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:40.126 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:40.127 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:40.127 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:40.127 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:45.128 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7222.sh\n2025-07-16 20:34:45.129 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:45.130 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44328.sh"" | ssh -v -T -D 64153 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:45.130 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:45.130 [info] Waiting for server to install via process(92266)...\n2025-07-16 20:34:45.137 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:34:45.137 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:34:45.137 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:45.137 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:45.137 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:45.137 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:45.138 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:45.138 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:45.138 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:45.138 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:50.141 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_44328.sh\n2025-07-16 20:34:50.142 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:50.146 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9195.sh"" | ssh -v -T -D 64154 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:50.146 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:50.146 [info] Waiting for server to install via process(92273)...\n2025-07-16 20:34:50.164 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:34:50.164 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:34:50.164 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:50.164 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:50.164 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:50.164 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:50.165 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:50.165 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:50.165 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:50.165 [info] Retrying connection in 5 seconds...\n2025-07-16 20:34:55.168 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_9195.sh\n2025-07-16 20:34:55.169 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:34:55.176 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_78626.sh"" | ssh -v -T -D 64155 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:34:55.176 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:34:55.176 [info] Waiting for server to install via process(92277)...\n2025-07-16 20:34:55.183 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:34:55.183 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:34:55.183 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:34:55.183 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:34:55.183 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:34:55.184 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:34:55.184 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:34:55.185 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:34:55.185 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:34:55.185 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:00.190 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_78626.sh\n2025-07-16 20:35:00.190 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:00.191 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_61405.sh"" | ssh -v -T -D 64156 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:00.192 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:00.192 [info] Waiting for server to install via process(92285)...\n2025-07-16 20:35:00.199 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:35:00.199 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:00.199 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:00.199 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:00.199 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:00.200 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:00.200 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:00.200 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:00.200 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:05.204 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_61405.sh\n2025-07-16 20:35:05.205 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:05.206 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8116.sh"" | ssh -v -T -D 64157 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:05.206 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:05.206 [info] Waiting for server to install via process(92295)...\n2025-07-16 20:35:05.212 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:35:05.212 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:35:05.212 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:05.212 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:05.212 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:05.212 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:05.213 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:05.213 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:05.214 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:05.214 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:10.219 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8116.sh\n2025-07-16 20:35:10.220 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:10.221 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_87570.sh"" | ssh -v -T -D 64159 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:10.221 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:10.221 [info] Waiting for server to install via process(92301)...\n2025-07-16 20:35:10.227 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:35:10.227 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:10.227 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:10.227 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:10.227 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:10.228 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:10.228 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:10.228 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:10.228 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:15.229 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_87570.sh\n2025-07-16 20:35:15.230 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:15.232 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4297.sh"" | ssh -v -T -D 64160 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:15.232 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:15.232 [info] Waiting for server to install via process(92309)...\n2025-07-16 20:35:15.238 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:35:15.238 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:35:15.238 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:15.238 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:15.238 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:15.238 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:15.239 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:15.239 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:15.239 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:15.239 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:20.242 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4297.sh\n2025-07-16 20:35:20.243 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:20.245 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_85332.sh"" | ssh -v -T -D 64161 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:20.245 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:20.245 [info] Waiting for server to install via process(92323)...\n2025-07-16 20:35:20.255 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:35:20.255 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:20.256 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:20.256 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:20.256 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:20.257 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:20.258 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:20.258 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:20.258 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:25.262 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_85332.sh\n2025-07-16 20:35:25.265 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:25.267 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_807.sh"" | ssh -v -T -D 64162 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:25.267 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:25.267 [info] Waiting for server to install via process(92340)...\n2025-07-16 20:35:25.272 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:35:25.272 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:35:25.272 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:25.273 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:25.273 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:25.273 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:25.273 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:25.274 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:25.274 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:25.274 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:30.276 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_807.sh\n2025-07-16 20:35:30.276 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:30.278 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_50400.sh"" | ssh -v -T -D 64163 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:30.278 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:30.278 [info] Waiting for server to install via process(92349)...\n2025-07-16 20:35:30.285 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:35:30.285 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:30.286 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:30.286 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:30.286 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:30.286 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:30.287 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:30.287 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:30.287 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:35.288 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_50400.sh\n2025-07-16 20:35:35.289 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:35.293 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_89336.sh"" | ssh -v -T -D 64164 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:35.294 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:35.294 [info] Waiting for server to install via process(92354)...\n2025-07-16 20:35:35.306 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:35:35.307 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:35.307 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:35.307 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:35.307 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:35.307 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:35.308 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:35.308 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:35.308 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:40.315 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_89336.sh\n2025-07-16 20:35:40.315 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:40.318 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35236.sh"" | ssh -v -T -D 64165 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:40.318 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:40.318 [info] Waiting for server to install via process(92359)...\n2025-07-16 20:35:40.338 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:35:40.338 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:40.338 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:40.338 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:40.339 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:40.339 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:40.340 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:40.340 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:40.340 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:45.345 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35236.sh\n2025-07-16 20:35:45.346 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:45.348 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_66867.sh"" | ssh -v -T -D 64166 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:45.348 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:45.348 [info] Waiting for server to install via process(92365)...\n2025-07-16 20:35:45.355 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:35:45.355 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:35:45.355 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:45.356 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:45.356 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:45.356 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:45.357 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:45.358 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:45.358 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:45.358 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:50.364 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_66867.sh\n2025-07-16 20:35:50.365 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:50.369 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_65574.sh"" | ssh -v -T -D 64167 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:50.369 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:50.369 [info] Waiting for server to install via process(92376)...\n2025-07-16 20:35:50.377 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:35:50.377 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:50.377 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:50.377 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:50.377 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:50.378 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:50.378 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:50.378 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:50.378 [info] Retrying connection in 5 seconds...\n2025-07-16 20:35:55.382 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_65574.sh\n2025-07-16 20:35:55.384 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:35:55.387 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_65731.sh"" | ssh -v -T -D 64168 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:35:55.387 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:35:55.387 [info] Waiting for server to install via process(92380)...\n2025-07-16 20:35:55.400 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:35:55.400 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:35:55.400 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:35:55.400 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:35:55.400 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:35:55.401 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:35:55.401 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:35:55.402 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:35:55.402 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:35:55.402 [info] Retrying connection in 5 seconds...\n2025-07-16 20:36:00.404 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_65731.sh\n2025-07-16 20:36:00.405 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:36:00.409 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_65363.sh"" | ssh -v -T -D 64169 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:36:00.409 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:36:00.409 [info] Waiting for server to install via process(92385)...\n2025-07-16 20:36:00.426 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:36:00.426 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:36:00.426 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:36:00.426 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:36:00.427 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:36:00.427 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:36:00.427 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:36:00.427 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:00.427 [info] Retrying connection in 5 seconds...\n2025-07-16 20:36:05.433 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_65363.sh\n2025-07-16 20:36:05.435 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:36:05.437 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_71163.sh"" | ssh -v -T -D 64170 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:36:05.437 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:36:05.437 [info] Waiting for server to install via process(92389)...\n2025-07-16 20:36:05.449 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:36:05.449 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:36:05.449 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:36:05.449 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:36:05.450 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:36:05.450 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:36:05.450 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:36:05.451 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:36:05.451 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:05.451 [info] Retrying connection in 5 seconds...\n2025-07-16 20:36:10.457 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_71163.sh\n2025-07-16 20:36:10.457 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:36:10.458 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2437.sh"" | ssh -v -T -D 64171 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:36:10.458 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:36:10.458 [info] Waiting for server to install via process(92395)...\n2025-07-16 20:36:10.464 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:36:10.464 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:36:10.465 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:36:10.465 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:36:10.465 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:36:10.465 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:36:10.466 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:36:10.466 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:10.466 [info] Retrying connection in 5 seconds...\n2025-07-16 20:36:15.468 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2437.sh\n2025-07-16 20:36:15.469 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:36:15.472 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_62178.sh"" | ssh -v -T -D 64172 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:36:15.472 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:36:15.472 [info] Waiting for server to install via process(92399)...\n2025-07-16 20:36:15.486 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:36:15.486 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:36:15.486 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:36:15.487 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:36:15.487 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:36:15.487 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:36:15.487 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:36:15.488 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:36:15.488 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:15.488 [info] Retrying connection in 5 seconds...\n2025-07-16 20:36:20.493 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_62178.sh\n2025-07-16 20:36:20.493 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:36:20.500 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_31975.sh"" | ssh -v -T -D 64173 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:36:20.500 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:36:20.500 [info] Waiting for server to install via process(92404)...\n2025-07-16 20:36:20.514 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:36:20.514 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:36:20.514 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:36:20.514 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:36:20.514 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:36:20.514 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:36:20.515 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:36:20.516 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:36:20.516 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:20.516 [info] Retrying connection in 5 seconds...\n2025-07-16 20:36:25.521 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_31975.sh\n2025-07-16 20:36:25.522 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:36:25.524 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_48008.sh"" | ssh -v -T -D 64174 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:36:25.524 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:36:25.524 [info] Waiting for server to install via process(92409)...\n2025-07-16 20:36:25.541 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:36:25.541 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:36:25.541 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:36:25.541 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:36:25.541 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:36:25.542 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:36:25.542 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:36:25.542 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:25.542 [info] Retrying connection in 5 seconds...\n2025-07-16 20:36:30.548 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_48008.sh\n2025-07-16 20:36:30.549 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:36:30.552 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_12831.sh"" | ssh -v -T -D 64175 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:36:30.553 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:36:30.553 [info] Waiting for server to install via process(92414)...\n2025-07-16 20:36:30.564 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:36:30.564 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:36:30.564 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:36:30.565 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:36:30.565 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:36:30.565 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:36:30.566 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:36:30.566 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:30.566 [info] Retrying connection in 5 seconds...\n2025-07-16 20:36:35.571 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_12831.sh\n2025-07-16 20:36:35.572 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:36:35.575 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_63021.sh"" | ssh -v -T -D 64176 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:36:35.575 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:36:35.575 [info] Waiting for server to install via process(92418)...\n2025-07-16 20:36:35.591 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-16 20:36:35.591 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:36:35.591 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:36:35.591 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:36:35.591 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:36:35.592 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:36:35.592 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:36:35.592 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:35.592 [info] Retrying connection in 5 seconds...\n2025-07-16 20:36:40.595 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_63021.sh\n2025-07-16 20:36:40.596 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-Ikhp3h/socket.sock\n2025-07-16 20:36:40.600 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_76875.sh"" | ssh -v -T -D 64177 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:36:40.601 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:36:40.601 [info] Waiting for server to install via process(92423)...\n2025-07-16 20:36:40.612 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 20:36:40.612 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:36:40.613 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:36:40.613 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:36:40.614 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 20:36:40.614 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 20:36:40.614 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:40.614 [error] Failed to connect after 52 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:36:40.614 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_76875.sh\n2025-07-16 20:36:40.615 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 20:57:05.374 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-16 20:57:05.390 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-tUEuR6/socket.sock\n2025-07-16 20:57:05.390 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-16 20:57:05.392 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-tUEuR6/socket.sock\n2025-07-16 20:57:05.395 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_64354.sh"" | ssh -v -T -D 65072 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 20:57:05.395 [info] Started installation script. Waiting for it to finish...\n2025-07-16 20:57:05.395 [info] Waiting for server to install via process(93351)...\n2025-07-16 20:57:05.403 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-16 20:57:05.403 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 20:57:05.403 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 20:57:05.403 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 20:57:05.404 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 20:57:05.657 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-16 20:57:05.657 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-16 20:57:05.658 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-16 20:57:05.658 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-16 20:57:05.658 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-16 20:57:05.768 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-16 20:57:05.770 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-16 20:57:05.770 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT sent\n\n2025-07-16 20:57:05.858 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-16 20:57:05.860 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-16 20:57:05.967 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-16 20:57:05.968 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-16 20:57:05.968 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-16 20:57:05.972 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-16 20:57:05.972 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-16 20:57:06.177 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-16 20:57:06.280 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-16 20:57:06.282 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-16 20:57:06.282 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-16 20:57:06.972 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-16 20:57:07.067 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-16 20:57:07.146 [info] Askpass server received request: POST /\n2025-07-16 20:57:07.146 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-16 20:57:07.146 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-16 20:57:11.925 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-16 20:57:12.051 [info] Askpass server received request: POST /\n2025-07-16 20:57:12.051 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-16 20:57:12.051 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-16 20:57:20.709 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:65072 forwarded to remote address socks:0\n\n2025-07-16 20:57:20.710 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 65072.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 65072.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-16 20:57:21.014 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-16 20:57:21.014 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-16 20:57:21.023 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\n\n2025-07-16 20:57:21.023 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-16 20:57:21.102 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-16 20:57:24.227 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-16 20:57:24.400 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 20:57:24.403 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-16 20:57:24.480 [info] (ssh_tunnel) stdout: v20.18.2\nChecking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-16 20:57:24.563 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-16 20:57:24.584 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-16 20:57:24.605 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-16 20:57:24.616 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-16 20:57:24.633 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js 7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b\n\n2025-07-16 20:57:24.645 [info] (ssh_tunnel) stdout: Multiplex server started with PID 2032028 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-16 20:57:24.646 [info] (ssh_tunnel) stdout: Reading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-16 20:57:24.646 [info] (ssh_tunnel) stdout: Multiplex server token file found\n\n2025-07-16 20:57:24.649 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-16 20:57:25.381 [info] (ssh_tunnel) stdout: Checking for code servers\nCode server script is already running /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server. Running processes are 2440923 sh /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\nCode server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n138e76a05057c13f8c0467be: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==35047==\nmultiplexConnectionToken==7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b==\ncodeListeningOn==36691==\ncodeConnectionToken==eec2fd76-3b12-4a3a-9f5f-ef00e4dedada==\n\n2025-07-16 20:57:25.381 [info] (ssh_tunnel) stdout: detectedPlatform==linux==\n\n2025-07-16 20:57:25.457 [info] (ssh_tunnel) stdout: arch==x64==\nSSH_AUTH_SOCK====\n138e76a05057c13f8c0467be: end\nUnlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-16 20:57:25.458 [info] Server install command exit code: 0\n2025-07-16 20:57:25.458 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_64354.sh\n2025-07-16 20:57:25.458 [info] [forwarding][code] creating new forwarding server\n2025-07-16 20:57:25.459 [info] [forwarding][code] server listening on 65120\n2025-07-16 20:57:25.459 [info] [forwarding][code] Set up server\n2025-07-16 20:57:25.459 [info] [remote-ssh] codeListeningOn (remote=36691; local=65120) codeConnectionToken: eec2fd76-3b12-4a3a-9f5f-ef00e4dedada\n2025-07-16 20:57:25.459 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-16 20:57:25.459 [info] [forwarding][multiplex] server listening on 65121\n2025-07-16 20:57:25.459 [info] [forwarding][multiplex] Set up server\n2025-07-16 20:57:25.460 [info] [remote-ssh] multiplexListeningOn (remote=35047; local=65121) multiplexConnectionToken: 7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b\n2025-07-16 20:57:25.460 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 20:57:25.463 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][0db28a64-823c-456e-86db-97070de95a0d] received connection request\n2025-07-16 20:57:25.464 [info] [command][46ecfe58-5c9e-45e2-a8d6-6af1e46214ee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""46ecfe58-5c9e-45e2-a8d6-6af1e46214ee""}\n2025-07-16 20:57:25.464 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:57:25.471 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:36691][2ce69d21-32fa-46bb-9c44-08af1427837f] received connection request\n2025-07-16 20:57:25.471 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:57:25.547 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][0db28a64-823c-456e-86db-97070de95a0d] socks forwarding established\n2025-07-16 20:57:25.547 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:65072 -> 127.0.0.1:36691][2ce69d21-32fa-46bb-9c44-08af1427837f] socks forwarding established\n2025-07-16 20:57:25.643 [info] [command][46ecfe58-5c9e-45e2-a8d6-6af1e46214ee] Process exited with code 0\n2025-07-16 20:57:25.643 [info] [command][46ecfe58-5c9e-45e2-a8d6-6af1e46214ee] Socket close event received\n2025-07-16 20:57:25.647 [info] Successfully connected to Cursor server at http://127.0.0.1:65120/version\n2025-07-16 20:57:25.647 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-16 20:57:25.648 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][426de3d8-20bb-4462-bc87-82c93fd01c03] received connection request\n2025-07-16 20:57:25.648 [info] [command][46054261-61ea-41f4-9045-295a3766ecbb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""46054261-61ea-41f4-9045-295a3766ecbb""}\n2025-07-16 20:57:25.648 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:57:25.649 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][0db28a64-823c-456e-86db-97070de95a0d] socks connection closed\n2025-07-16 20:57:25.779 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 65123 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 20:57:25.779 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][426de3d8-20bb-4462-bc87-82c93fd01c03] socks forwarding established\n2025-07-16 20:57:26.071 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][426de3d8-20bb-4462-bc87-82c93fd01c03] socks connection closed\n2025-07-16 20:57:26.072 [info] [command][46054261-61ea-41f4-9045-295a3766ecbb] Process exited with code 0\n2025-07-16 20:57:26.072 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-16 20:57:26.073 [info] [remote-ssh] Resolved exec server. Socks port: 65072\n2025-07-16 20:57:26.073 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":65120,""connectionToken"":""eec2fd76-3b12-4a3a-9f5f-ef00e4dedada"",""extensionHostEnv"":{}}. Socks port: 65072\n2025-07-16 20:57:26.073 [info] [command][46054261-61ea-41f4-9045-295a3766ecbb] Socket close event received\n2025-07-16 20:57:26.119 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:36691][350c2570-9370-4465-ae38-c0d3fb3659b0] received connection request\n2025-07-16 20:57:26.132 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:57:26.192 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 65127 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 20:57:26.287 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:65072 -> 127.0.0.1:36691][350c2570-9370-4465-ae38-c0d3fb3659b0] socks forwarding established\n2025-07-16 20:57:26.413 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:36691][56ed9ef7-8530-46e0-bb32-838931e6edd7] received connection request\n2025-07-16 20:57:26.413 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:57:26.561 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:65072 -> 127.0.0.1:36691][56ed9ef7-8530-46e0-bb32-838931e6edd7] socks forwarding established\n2025-07-16 20:57:27.047 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-16 20:57:28.754 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 36691, connect from 127.0.0.1 port 65125 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 20:57:28.755 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:65072 -> 127.0.0.1:36691][2ce69d21-32fa-46bb-9c44-08af1427837f] socks connection closed\n2025-07-16 20:57:32.809 [info] [tunnel-forwarding][127.0.0.1:8791 -> localhost:8791] server listening\n2025-07-16 20:58:25.645 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 20:58:25.647 [info] [command][06470c2e-0efd-4026-bbc7-2646169234aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""06470c2e-0efd-4026-bbc7-2646169234aa""}\n2025-07-16 20:58:25.647 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][501fd57e-36f1-4253-b017-67242cbff1f9] received connection request\n2025-07-16 20:58:25.647 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:58:25.739 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][501fd57e-36f1-4253-b017-67242cbff1f9] socks forwarding established\n2025-07-16 20:58:25.841 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][501fd57e-36f1-4253-b017-67242cbff1f9] socks connection closed\n2025-07-16 20:58:25.841 [info] [command][06470c2e-0efd-4026-bbc7-2646169234aa] Process exited with code 0\n2025-07-16 20:58:25.842 [info] [command][06470c2e-0efd-4026-bbc7-2646169234aa] Socket close event received\n2025-07-16 20:58:25.949 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 65254 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 20:59:25.844 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 20:59:25.846 [info] [command][8a7460d4-0212-4923-9f34-6e752b1a6ac9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""8a7460d4-0212-4923-9f34-6e752b1a6ac9""}\n2025-07-16 20:59:25.847 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][b75be73a-1754-4d40-9f35-d0215f313701] received connection request\n2025-07-16 20:59:25.847 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 20:59:25.923 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][b75be73a-1754-4d40-9f35-d0215f313701] socks forwarding established\n2025-07-16 20:59:26.015 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][b75be73a-1754-4d40-9f35-d0215f313701] socks connection closed\n2025-07-16 20:59:26.015 [info] [command][8a7460d4-0212-4923-9f34-6e752b1a6ac9] Process exited with code 0\n2025-07-16 20:59:26.015 [info] [command][8a7460d4-0212-4923-9f34-6e752b1a6ac9] Socket close event received\n2025-07-16 20:59:26.093 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 65359 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:00:26.018 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:00:26.020 [info] [command][4184d4e4-b762-4f6e-90c8-4c4ccf09450f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""4184d4e4-b762-4f6e-90c8-4c4ccf09450f""}\n2025-07-16 21:00:26.020 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][de523ac7-c139-45a1-bd25-14b5368b771b] received connection request\n2025-07-16 21:00:26.020 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:00:26.112 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][de523ac7-c139-45a1-bd25-14b5368b771b] socks forwarding established\n2025-07-16 21:00:26.211 [info] [command][4184d4e4-b762-4f6e-90c8-4c4ccf09450f] Process exited with code 0\n2025-07-16 21:00:26.212 [info] [command][4184d4e4-b762-4f6e-90c8-4c4ccf09450f] Socket close event received\n2025-07-16 21:00:26.212 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][de523ac7-c139-45a1-bd25-14b5368b771b] socks connection closed\n2025-07-16 21:00:26.337 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 65427 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:01:26.214 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:01:26.216 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][3af9787b-118d-4fc3-84c7-75ee59d5c38e] received connection request\n2025-07-16 21:01:26.216 [info] [command][204f4f60-ef82-4d47-8002-24828fc2819b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""204f4f60-ef82-4d47-8002-24828fc2819b""}\n2025-07-16 21:01:26.216 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:01:26.481 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][3af9787b-118d-4fc3-84c7-75ee59d5c38e] socks forwarding established\n2025-07-16 21:01:26.635 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][3af9787b-118d-4fc3-84c7-75ee59d5c38e] socks connection closed\n2025-07-16 21:01:26.635 [info] [command][204f4f60-ef82-4d47-8002-24828fc2819b] Process exited with code 0\n2025-07-16 21:01:26.635 [info] [command][204f4f60-ef82-4d47-8002-24828fc2819b] Socket close event received\n2025-07-16 21:01:26.762 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 65486 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:02:26.640 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:02:26.642 [info] [command][dfbb2ee8-e14e-47c9-95b6-89870c65834f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""dfbb2ee8-e14e-47c9-95b6-89870c65834f""}\n2025-07-16 21:02:26.643 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][4a0ca414-b99a-45b1-bc40-d9664985ee76] received connection request\n2025-07-16 21:02:26.643 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:02:26.729 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][4a0ca414-b99a-45b1-bc40-d9664985ee76] socks forwarding established\n2025-07-16 21:02:26.823 [info] [command][dfbb2ee8-e14e-47c9-95b6-89870c65834f] Process exited with code 0\n2025-07-16 21:02:26.823 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][4a0ca414-b99a-45b1-bc40-d9664985ee76] socks connection closed\n2025-07-16 21:02:26.823 [info] [command][dfbb2ee8-e14e-47c9-95b6-89870c65834f] Socket close event received\n2025-07-16 21:02:26.915 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 49190 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:03:26.829 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:03:26.830 [info] [command][17f9a6db-b800-46d0-9c3a-0b76e5a0135d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""17f9a6db-b800-46d0-9c3a-0b76e5a0135d""}\n2025-07-16 21:03:26.831 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][94b4fa18-e09e-48c4-90c2-ecbf8e9879f6] received connection request\n2025-07-16 21:03:26.831 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:03:26.924 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][94b4fa18-e09e-48c4-90c2-ecbf8e9879f6] socks forwarding established\n2025-07-16 21:03:27.019 [info] [command][17f9a6db-b800-46d0-9c3a-0b76e5a0135d] Process exited with code 0\n2025-07-16 21:03:27.019 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][94b4fa18-e09e-48c4-90c2-ecbf8e9879f6] socks connection closed\n2025-07-16 21:03:27.019 [info] [command][17f9a6db-b800-46d0-9c3a-0b76e5a0135d] Socket close event received\n2025-07-16 21:03:27.104 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 49241 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:04:27.022 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:04:27.025 [info] [command][3c1add31-bb7b-445c-881b-81e1de0177d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""3c1add31-bb7b-445c-881b-81e1de0177d8""}\n2025-07-16 21:04:27.025 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][f7376f31-bac2-4b57-b79c-bdd3d83e5c72] received connection request\n2025-07-16 21:04:27.026 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:04:27.103 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][f7376f31-bac2-4b57-b79c-bdd3d83e5c72] socks forwarding established\n2025-07-16 21:04:27.198 [info] [command][3c1add31-bb7b-445c-881b-81e1de0177d8] Process exited with code 0\n2025-07-16 21:04:27.198 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][f7376f31-bac2-4b57-b79c-bdd3d83e5c72] socks connection closed\n2025-07-16 21:04:27.198 [info] [command][3c1add31-bb7b-445c-881b-81e1de0177d8] Socket close event received\n2025-07-16 21:04:27.304 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 49277 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:05:27.200 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:05:27.202 [info] [command][71d1fb58-a0a7-40e7-841b-8a25db4a4451] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""71d1fb58-a0a7-40e7-841b-8a25db4a4451""}\n2025-07-16 21:05:27.203 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][45279e37-d352-4719-b52b-5ab2cddddcc1] received connection request\n2025-07-16 21:05:27.203 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:05:27.287 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][45279e37-d352-4719-b52b-5ab2cddddcc1] socks forwarding established\n2025-07-16 21:05:27.395 [info] [command][71d1fb58-a0a7-40e7-841b-8a25db4a4451] Process exited with code 0\n2025-07-16 21:05:27.396 [info] [command][71d1fb58-a0a7-40e7-841b-8a25db4a4451] Socket close event received\n2025-07-16 21:05:27.396 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][45279e37-d352-4719-b52b-5ab2cddddcc1] socks connection closed\n2025-07-16 21:05:27.480 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 49313 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:06:27.401 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:06:27.402 [info] [command][a1569b84-c00a-431d-a3cc-a5ce74df8a7d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""a1569b84-c00a-431d-a3cc-a5ce74df8a7d""}\n2025-07-16 21:06:27.402 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][b6ac6c3d-efd7-40de-9b31-e9ff27593815] received connection request\n2025-07-16 21:06:27.403 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:06:27.585 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][b6ac6c3d-efd7-40de-9b31-e9ff27593815] socks forwarding established\n2025-07-16 21:06:27.698 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][b6ac6c3d-efd7-40de-9b31-e9ff27593815] socks connection closed\n2025-07-16 21:06:27.698 [info] [command][a1569b84-c00a-431d-a3cc-a5ce74df8a7d] Process exited with code 0\n2025-07-16 21:06:27.698 [info] [command][a1569b84-c00a-431d-a3cc-a5ce74df8a7d] Socket close event received\n2025-07-16 21:06:27.795 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 49334 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:07:27.700 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:07:27.702 [info] [command][736cba58-83d3-49d5-ac1f-f1eb4fc0810a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""736cba58-83d3-49d5-ac1f-f1eb4fc0810a""}\n2025-07-16 21:07:27.702 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][5f030b38-3dd0-4f11-816b-74d8cc0d2ddd] received connection request\n2025-07-16 21:07:27.703 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:07:27.783 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][5f030b38-3dd0-4f11-816b-74d8cc0d2ddd] socks forwarding established\n2025-07-16 21:07:27.883 [info] [command][736cba58-83d3-49d5-ac1f-f1eb4fc0810a] Process exited with code 0\n2025-07-16 21:07:27.884 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][5f030b38-3dd0-4f11-816b-74d8cc0d2ddd] socks connection closed\n2025-07-16 21:07:27.884 [info] [command][736cba58-83d3-49d5-ac1f-f1eb4fc0810a] Socket close event received\n2025-07-16 21:07:27.979 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 49478 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:08:27.890 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:08:27.895 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:35047][bb367088-721b-419f-ae48-d113d4ff8c35] received connection request\n2025-07-16 21:08:27.896 [info] [command][41489931-ed2b-4e48-8dfd-2f926dc8ca22] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""41489931-ed2b-4e48-8dfd-2f926dc8ca22""}\n2025-07-16 21:08:27.896 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:08:28.013 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][bb367088-721b-419f-ae48-d113d4ff8c35] socks forwarding established\n2025-07-16 21:08:28.106 [info] [command][41489931-ed2b-4e48-8dfd-2f926dc8ca22] Process exited with code 0\n2025-07-16 21:08:28.106 [info] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:65072 -> 127.0.0.1:35047][bb367088-721b-419f-ae48-d113d4ff8c35] socks connection closed\n2025-07-16 21:08:28.106 [info] [command][41489931-ed2b-4e48-8dfd-2f926dc8ca22] Socket close event received\n2025-07-16 21:08:28.190 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 65072 for 127.0.0.1 port 35047, connect from 127.0.0.1 port 49507 to 127.0.0.1 port 65072, nchannels 6\n\n2025-07-16 21:09:18.631 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-16 21:09:18.631 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-16 21:09:18.638 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:36691][833a0f4a-464c-4fd2-9f3f-216740a4727a] received connection request\n2025-07-16 21:09:18.643 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:36691][7dae93db-bb5f-4083-8284-adc18c1419f9] received connection request\n2025-07-16 21:09:18.644 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\ndebug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:09:21.646 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-16 21:09:21.647 [error] Failed to connect to Cursor server at http://127.0.0.1:65120, attempt 1 of 3 This operation was aborted\n2025-07-16 21:09:21.650 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:36691][d97453c7-7db3-4ec3-afa2-3bb2193bf993] received connection request\n2025-07-16 21:09:21.651 [info] (ssh_tunnel) stderr: debug1: Connection to port 65072 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-16 21:09:21.735 [info] Terminating existing SSH process with pid: 93351\n2025-07-16 21:09:21.735 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-16 21:09:21.735 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-16 21:09:21.736 [error] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:65072 -> 127.0.0.1:36691][833a0f4a-464c-4fd2-9f3f-216740a4727a] error while creating socks forwarding Socket closed\n2025-07-16 21:09:21.736 [error] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:65072 -> 127.0.0.1:36691][7dae93db-bb5f-4083-8284-adc18c1419f9] error while creating socks forwarding Socket closed\n2025-07-16 21:09:21.736 [error] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:65072 -> 127.0.0.1:36691][d97453c7-7db3-4ec3-afa2-3bb2193bf993] error while creating socks forwarding Socket closed\n2025-07-16 21:09:21.736 [info] [forwarding][code][127.0.0.1:65120 -> 127.0.0.1:65072 -> 127.0.0.1:36691][350c2570-9370-4465-ae38-c0d3fb3659b0] socks connection closed\n2025-07-16 21:09:21.736 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-tUEuR6/socket.sock\n2025-07-16 21:09:21.739 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_71621.sh"" | ssh -v -T -D 49547 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 21:09:21.739 [info] Started installation script. Waiting for it to finish...\n2025-07-16 21:09:21.739 [info] Waiting for server to install via process(93780)...\n2025-07-16 21:09:21.746 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 21:09:21.746 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 21:09:21.747 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 21:09:21.747 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 21:09:21.747 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 21:09:21.749 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 21:09:21.749 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 21:09:21.749 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 21:09:21.749 [info] Retrying connection in 5 seconds...\n2025-07-16 21:09:22.650 [error] Failed to connect to Cursor server at http://127.0.0.1:65120, attempt 2 of 3 This operation was aborted\n2025-07-16 21:09:23.657 [error] Failed to connect to Cursor server at http://127.0.0.1:65120, attempt 3 of 3 This operation was aborted\n2025-07-16 21:09:23.657 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-16 21:09:23.657 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-16 21:26:24.662 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_71621.sh\n2025-07-16 21:26:24.662 [info] [remote-ssh] Pinging remote server on port 65121\n2025-07-16 21:26:24.664 [error] [forwarding][multiplex][127.0.0.1:65121 -> 127.0.0.1:undefined][031ed78b-4e21-4fa9-91f2-9ea49f31d5de] remote server not configured\n2025-07-16 21:26:24.664 [info] [command][3381c503-165b-49c3-9cf9-4625eea8e728] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""7511f3e9-c2ec-44cc-b8b4-ab99b6ad829b"",""id"":""3381c503-165b-49c3-9cf9-4625eea8e728""}\n2025-07-16 21:26:24.664 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-tUEuR6/socket.sock\n2025-07-16 21:26:24.665 [error] [command][3381c503-165b-49c3-9cf9-4625eea8e728] Socket error: Error: read ECONNRESET\n2025-07-16 21:26:24.665 [info] [command][3381c503-165b-49c3-9cf9-4625eea8e728] Socket close event received\n2025-07-16 21:26:24.667 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_27495.sh"" | ssh -v -T -D 49549 horeka.scc.kit.edu bash --login -c bash\n2025-07-16 21:26:24.667 [info] Started installation script. Waiting for it to finish...\n2025-07-16 21:26:24.667 [info] Waiting for server to install via process(93787)...\n2025-07-16 21:26:24.674 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-16 21:26:24.674 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-16 21:26:24.674 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-16 21:26:24.675 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-16 21:26:24.675 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-16 21:26:24.707 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-16 21:26:24.707 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-16 21:26:24.707 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 21:26:24.707 [error] Failed to connect after 2 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-16 21:26:24.707 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_27495.sh\n2025-07-16 21:26:24.708 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 11:40:07.177 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-17 11:40:07.201 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 11:40:07.203 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-17 11:40:07.205 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 11:40:07.208 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68485.sh"" | ssh -v -T -D 51185 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 11:40:07.208 [info] Started installation script. Waiting for it to finish...\n2025-07-17 11:40:07.208 [info] Waiting for server to install via process(95459)...\n2025-07-17 11:40:07.214 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-17 11:40:07.214 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-17 11:40:07.214 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 11:40:07.215 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\n\n2025-07-17 11:40:07.215 [info] (ssh_tunnel) stderr: debug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 11:40:07.216 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\n\n2025-07-17 11:40:07.216 [info] (ssh_tunnel) stderr: debug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 11:40:07.264 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-17 11:40:07.264 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-17 11:40:07.265 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-17 11:40:07.265 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-17 11:40:07.265 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-17 11:40:07.302 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\n\n2025-07-17 11:40:07.303 [info] (ssh_tunnel) stderr: debug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-17 11:40:07.304 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-17 11:40:07.304 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-17 11:40:07.317 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\n\n2025-07-17 11:40:07.317 [info] (ssh_tunnel) stderr: debug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-17 11:40:07.318 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-17 11:40:07.338 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-17 11:40:07.339 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-17 11:40:07.339 [info] (ssh_tunnel) stderr: debug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-17 11:40:07.342 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\n\n2025-07-17 11:40:07.342 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_NEWKEYS\ndebug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\n\n2025-07-17 11:40:07.342 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-17 11:40:07.415 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-17 11:40:07.434 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-17 11:40:07.439 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-17 11:40:07.439 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\n\n2025-07-17 11:40:07.439 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-17 11:40:08.031 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-17 11:40:08.051 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-17 11:40:11.161 [info] Askpass server received request: POST /\n2025-07-17 11:40:11.161 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-17 11:40:11.161 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-17 11:40:27.130 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-17 11:40:27.233 [info] Askpass server received request: POST /\n2025-07-17 11:40:27.233 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-17 11:40:27.233 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-17 11:40:31.146 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.20]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:51185 forwarded to remote address socks:0\n\n2025-07-17 11:40:31.146 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 51185.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 51185.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-17 11:40:31.429 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-17 11:40:31.434 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-17 11:40:31.448 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\n\n2025-07-17 11:40:31.448 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: no new or deprecated keys from server\ndebug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-17 11:40:33.999 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-17 11:40:34.157 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-17 11:40:34.250 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\nv20.18.2\n\n2025-07-17 11:40:34.263 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-17 11:40:34.448 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-17 11:40:34.449 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nCreating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\nWriting multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-17 11:40:34.477 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js bb33a6e4-921b-441a-9872-d9a1414f9632\n\n2025-07-17 11:40:34.485 [info] (ssh_tunnel) stdout: Multiplex server started with PID 2576084 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-17 11:40:34.485 [info] (ssh_tunnel) stdout: Multiplex server token file found\n\n2025-07-17 11:40:34.523 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-17 11:40:35.022 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-17 11:40:35.144 [info] (ssh_tunnel) stdout: Code server script is not running\n\n2025-07-17 11:40:35.154 [info] (ssh_tunnel) stdout: Creating code server token file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-17 11:40:35.166 [info] (ssh_tunnel) stdout: Starting code server script /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2 &\n\n2025-07-17 11:40:35.173 [info] (ssh_tunnel) stdout: Code server started with PID 2576117 and wrote pid to file /run/user/996262/cursor-remote-code.pid.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-17 11:40:35.180 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-17 11:40:35.730 [info] (ssh_tunnel) stdout: 09155de4e352e222f2a85973: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==36087==\nmultiplexConnectionToken==bb33a6e4-921b-441a-9872-d9a1414f9632==\ncodeListeningOn==39531==\ncodeConnectionToken==d409f712-8281-4a22-ba5e-6483fb1bd2f5==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n09155de4e352e222f2a85973: end\n\n2025-07-17 11:40:35.732 [info] Server install command exit code: 0\n2025-07-17 11:40:35.732 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_68485.sh\n2025-07-17 11:40:35.734 [info] [forwarding][code] creating new forwarding server\n2025-07-17 11:40:35.734 [info] [forwarding][code] server listening on 51221\n2025-07-17 11:40:35.735 [info] [forwarding][code] Set up server\n2025-07-17 11:40:35.735 [info] [remote-ssh] codeListeningOn (remote=39531; local=51221) codeConnectionToken: d409f712-8281-4a22-ba5e-6483fb1bd2f5\n2025-07-17 11:40:35.736 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-17 11:40:35.736 [info] [forwarding][multiplex] server listening on 51222\n2025-07-17 11:40:35.736 [info] [forwarding][multiplex] Set up server\n2025-07-17 11:40:35.739 [info] [remote-ssh] multiplexListeningOn (remote=36087; local=51222) multiplexConnectionToken: bb33a6e4-921b-441a-9872-d9a1414f9632\n2025-07-17 11:40:35.739 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:40:35.745 [info] [command][b105bd96-a3c5-4527-ae5c-9496b9542351] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b105bd96-a3c5-4527-ae5c-9496b9542351""}\n2025-07-17 11:40:35.746 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e301613f-8034-4dda-9f35-b966361ba40c] received connection request\n2025-07-17 11:40:35.747 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:40:35.757 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:39531][b6c38da2-0886-42c9-bd84-31b3cc1a0872] received connection request\n2025-07-17 11:40:35.758 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 11:40:35.758 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:40:35.843 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-17 11:40:35.844 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e301613f-8034-4dda-9f35-b966361ba40c] socks forwarding established\n2025-07-17 11:40:35.844 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:51185 -> 127.0.0.1:39531][b6c38da2-0886-42c9-bd84-31b3cc1a0872] socks forwarding established\n2025-07-17 11:40:35.893 [info] [command][b105bd96-a3c5-4527-ae5c-9496b9542351] Process exited with code 0\n2025-07-17 11:40:35.893 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e301613f-8034-4dda-9f35-b966361ba40c] socks connection closed\n2025-07-17 11:40:35.893 [info] [command][b105bd96-a3c5-4527-ae5c-9496b9542351] Socket close event received\n2025-07-17 11:40:35.909 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51224 to 127.0.0.1 port 51185, nchannels 5\n\n2025-07-17 11:40:35.927 [info] Successfully connected to Cursor server at http://127.0.0.1:51221/version\n2025-07-17 11:40:35.927 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-17 11:40:35.928 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][54227383-ecb6-4819-8e0b-80db2b26c606] received connection request\n2025-07-17 11:40:35.928 [info] [command][6912d69f-9978-4643-8bfd-fc4164f77a3a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6912d69f-9978-4643-8bfd-fc4164f77a3a""}\n2025-07-17 11:40:35.928 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:40:36.030 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][54227383-ecb6-4819-8e0b-80db2b26c606] socks forwarding established\n2025-07-17 11:40:36.064 [info] [command][6912d69f-9978-4643-8bfd-fc4164f77a3a] Process exited with code 0\n2025-07-17 11:40:36.064 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-17 11:40:36.065 [info] [remote-ssh] Resolved exec server. Socks port: 51185\n2025-07-17 11:40:36.065 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":51221,""connectionToken"":""d409f712-8281-4a22-ba5e-6483fb1bd2f5"",""extensionHostEnv"":{}}. Socks port: 51185\n2025-07-17 11:40:36.065 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][54227383-ecb6-4819-8e0b-80db2b26c606] socks connection closed\n2025-07-17 11:40:36.065 [info] [command][6912d69f-9978-4643-8bfd-fc4164f77a3a] Socket close event received\n2025-07-17 11:40:36.084 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51228 to 127.0.0.1 port 51185, nchannels 5\n\n2025-07-17 11:40:36.111 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:39531][eafe767a-af01-46b2-aacf-26f4316f79de] received connection request\n2025-07-17 11:40:36.111 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:40:36.130 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:51185 -> 127.0.0.1:39531][eafe767a-af01-46b2-aacf-26f4316f79de] socks forwarding established\n2025-07-17 11:40:36.168 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:39531][74738ebb-c1a5-4420-aa2c-b473df33055e] received connection request\n2025-07-17 11:40:36.168 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:40:36.182 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:51185 -> 127.0.0.1:39531][74738ebb-c1a5-4420-aa2c-b473df33055e] socks forwarding established\n2025-07-17 11:40:36.389 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-17 11:40:39.566 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 39531, connect from 127.0.0.1 port 51226 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:40:39.567 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:51185 -> 127.0.0.1:39531][b6c38da2-0886-42c9-bd84-31b3cc1a0872] socks connection closed\n2025-07-17 11:40:43.937 [info] [tunnel-forwarding][127.0.0.1:8791 -> localhost:8791] server listening\n2025-07-17 11:41:35.896 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:41:35.897 [info] [command][e7a0fb12-4d53-4d52-a8d5-411556a279d3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e7a0fb12-4d53-4d52-a8d5-411556a279d3""}\n2025-07-17 11:41:35.898 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f8566a48-011f-4e45-a5c4-329ec744f0b8] received connection request\n2025-07-17 11:41:35.898 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:41:35.914 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f8566a48-011f-4e45-a5c4-329ec744f0b8] socks forwarding established\n2025-07-17 11:41:35.950 [info] [command][e7a0fb12-4d53-4d52-a8d5-411556a279d3] Process exited with code 0\n2025-07-17 11:41:35.950 [info] [command][e7a0fb12-4d53-4d52-a8d5-411556a279d3] Socket close event received\n2025-07-17 11:41:35.951 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f8566a48-011f-4e45-a5c4-329ec744f0b8] socks connection closed\n2025-07-17 11:41:35.966 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51321 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:42:35.956 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:42:35.959 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e3456fd9-400c-46e0-8c9f-23fcdd65a059] received connection request\n2025-07-17 11:42:35.960 [info] [command][a0da5509-bbaf-40f9-934d-d9b4371cca8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a0da5509-bbaf-40f9-934d-d9b4371cca8f""}\n2025-07-17 11:42:35.962 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 11:42:35.963 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:42:35.978 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e3456fd9-400c-46e0-8c9f-23fcdd65a059] socks forwarding established\n2025-07-17 11:42:36.006 [info] [command][a0da5509-bbaf-40f9-934d-d9b4371cca8f] Process exited with code 0\n2025-07-17 11:42:36.006 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e3456fd9-400c-46e0-8c9f-23fcdd65a059] socks connection closed\n2025-07-17 11:42:36.006 [info] [command][a0da5509-bbaf-40f9-934d-d9b4371cca8f] Socket close event received\n2025-07-17 11:42:36.020 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51345 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:43:36.007 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:43:36.009 [info] [command][a395e1fb-50f7-4dc8-85b5-4eba1939a92d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a395e1fb-50f7-4dc8-85b5-4eba1939a92d""}\n2025-07-17 11:43:36.010 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6dbb6549-5812-4773-81a1-6c1c28f4072b] received connection request\n2025-07-17 11:43:36.011 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:43:36.131 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6dbb6549-5812-4773-81a1-6c1c28f4072b] socks forwarding established\n2025-07-17 11:43:36.160 [info] [command][a395e1fb-50f7-4dc8-85b5-4eba1939a92d] Process exited with code 0\n2025-07-17 11:43:36.160 [info] [command][a395e1fb-50f7-4dc8-85b5-4eba1939a92d] Socket close event received\n2025-07-17 11:43:36.297 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6dbb6549-5812-4773-81a1-6c1c28f4072b] socks connection closed\n2025-07-17 11:43:36.309 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51386 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:44:36.162 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:44:36.163 [info] [command][4b2b8372-94a8-44e2-ab6d-8c97a2726961] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4b2b8372-94a8-44e2-ab6d-8c97a2726961""}\n2025-07-17 11:44:36.165 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1052e66e-b774-45eb-9784-049030e5d24d] received connection request\n2025-07-17 11:44:36.165 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:44:36.181 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1052e66e-b774-45eb-9784-049030e5d24d] socks forwarding established\n2025-07-17 11:44:36.221 [info] [command][4b2b8372-94a8-44e2-ab6d-8c97a2726961] Process exited with code 0\n2025-07-17 11:44:36.221 [info] [command][4b2b8372-94a8-44e2-ab6d-8c97a2726961] Socket close event received\n2025-07-17 11:44:36.222 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1052e66e-b774-45eb-9784-049030e5d24d] socks connection closed\n2025-07-17 11:44:36.242 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51416 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:45:36.226 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:45:36.227 [info] [command][53107da3-2487-4c33-be9e-9b6856e861b2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""53107da3-2487-4c33-be9e-9b6856e861b2""}\n2025-07-17 11:45:36.228 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d2238df8-286f-46e5-984e-faf63506b776] received connection request\n2025-07-17 11:45:36.229 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:45:36.243 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d2238df8-286f-46e5-984e-faf63506b776] socks forwarding established\n2025-07-17 11:45:36.284 [info] [command][53107da3-2487-4c33-be9e-9b6856e861b2] Process exited with code 0\n2025-07-17 11:45:36.284 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d2238df8-286f-46e5-984e-faf63506b776] socks connection closed\n2025-07-17 11:45:36.284 [info] [command][53107da3-2487-4c33-be9e-9b6856e861b2] Socket close event received\n2025-07-17 11:45:36.298 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51476 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:46:36.288 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:46:36.289 [info] [command][a15e4601-201d-476a-9a84-0cc754672ceb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a15e4601-201d-476a-9a84-0cc754672ceb""}\n2025-07-17 11:46:36.290 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][57f50fa0-2dbd-4c96-a662-641eff93c07b] received connection request\n2025-07-17 11:46:36.290 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:46:36.312 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][57f50fa0-2dbd-4c96-a662-641eff93c07b] socks forwarding established\n2025-07-17 11:46:36.340 [info] [command][a15e4601-201d-476a-9a84-0cc754672ceb] Process exited with code 0\n2025-07-17 11:46:36.340 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][57f50fa0-2dbd-4c96-a662-641eff93c07b] socks connection closed\n2025-07-17 11:46:36.340 [info] [command][a15e4601-201d-476a-9a84-0cc754672ceb] Socket close event received\n2025-07-17 11:46:36.354 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51502 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:47:36.341 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:47:36.342 [info] [command][90cd1732-7dff-49c1-8312-a6b3850ff3df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""90cd1732-7dff-49c1-8312-a6b3850ff3df""}\n2025-07-17 11:47:36.343 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e2c618ed-fa47-4ec4-afa1-3acd22ae759a] received connection request\n2025-07-17 11:47:36.343 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:47:36.358 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e2c618ed-fa47-4ec4-afa1-3acd22ae759a] socks forwarding established\n2025-07-17 11:47:36.389 [info] [command][90cd1732-7dff-49c1-8312-a6b3850ff3df] Process exited with code 0\n2025-07-17 11:47:36.389 [info] [command][90cd1732-7dff-49c1-8312-a6b3850ff3df] Socket close event received\n2025-07-17 11:47:36.390 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e2c618ed-fa47-4ec4-afa1-3acd22ae759a] socks connection closed\n2025-07-17 11:47:36.404 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51529 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:48:36.391 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:48:36.393 [info] [command][a19009cc-1e3c-42c3-b5b1-ebc47e594767] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a19009cc-1e3c-42c3-b5b1-ebc47e594767""}\n2025-07-17 11:48:36.394 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ad2bef29-25e7-4463-8d5e-e63f2041d546] received connection request\n2025-07-17 11:48:36.395 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:48:36.409 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ad2bef29-25e7-4463-8d5e-e63f2041d546] socks forwarding established\n2025-07-17 11:48:36.439 [info] [command][a19009cc-1e3c-42c3-b5b1-ebc47e594767] Process exited with code 0\n2025-07-17 11:48:36.441 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ad2bef29-25e7-4463-8d5e-e63f2041d546] socks connection closed\n2025-07-17 11:48:36.441 [info] [command][a19009cc-1e3c-42c3-b5b1-ebc47e594767] Socket close event received\n2025-07-17 11:48:36.455 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51579 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:49:36.440 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:49:36.442 [info] [command][cc600446-667e-49ef-8611-3a5c8c22c27b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""cc600446-667e-49ef-8611-3a5c8c22c27b""}\n2025-07-17 11:49:36.443 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b78cc507-104a-4734-8208-c716ffad0045] received connection request\n2025-07-17 11:49:36.443 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:49:36.648 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b78cc507-104a-4734-8208-c716ffad0045] socks forwarding established\n2025-07-17 11:49:36.725 [info] [command][cc600446-667e-49ef-8611-3a5c8c22c27b] Process exited with code 0\n2025-07-17 11:49:36.725 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b78cc507-104a-4734-8208-c716ffad0045] socks connection closed\n2025-07-17 11:49:36.725 [info] [command][cc600446-667e-49ef-8611-3a5c8c22c27b] Socket close event received\n2025-07-17 11:49:36.739 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51613 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:50:36.728 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:50:36.730 [info] [command][43be9fe6-de6d-460a-90b8-0bc680b48c9c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""43be9fe6-de6d-460a-90b8-0bc680b48c9c""}\n2025-07-17 11:50:36.731 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c1563882-7b7a-4ea8-8a29-67480e40dad8] received connection request\n2025-07-17 11:50:36.733 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:50:36.748 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c1563882-7b7a-4ea8-8a29-67480e40dad8] socks forwarding established\n2025-07-17 11:50:36.776 [info] [command][43be9fe6-de6d-460a-90b8-0bc680b48c9c] Process exited with code 0\n2025-07-17 11:50:36.776 [info] [command][43be9fe6-de6d-460a-90b8-0bc680b48c9c] Socket close event received\n2025-07-17 11:50:36.789 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c1563882-7b7a-4ea8-8a29-67480e40dad8] socks connection closed\n2025-07-17 11:50:36.790 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51670 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:51:36.777 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:51:36.780 [info] [command][72cb585d-df03-4410-807c-ecf4a890c565] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""72cb585d-df03-4410-807c-ecf4a890c565""}\n2025-07-17 11:51:36.781 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9f071640-3feb-4427-a92a-3f0cddc81b4d] received connection request\n2025-07-17 11:51:36.781 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:51:36.809 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9f071640-3feb-4427-a92a-3f0cddc81b4d] socks forwarding established\n2025-07-17 11:51:36.880 [info] [command][72cb585d-df03-4410-807c-ecf4a890c565] Process exited with code 0\n2025-07-17 11:51:36.880 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9f071640-3feb-4427-a92a-3f0cddc81b4d] socks connection closed\n2025-07-17 11:51:36.880 [info] [command][72cb585d-df03-4410-807c-ecf4a890c565] Socket close event received\n2025-07-17 11:51:36.912 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51696 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:52:36.881 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:52:36.883 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1da4c2d8-4165-4a39-93b2-9db135e8360f] received connection request\n2025-07-17 11:52:36.883 [info] [command][d53852ca-13f5-45ab-a1b6-6534a06c1654] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""d53852ca-13f5-45ab-a1b6-6534a06c1654""}\n2025-07-17 11:52:36.883 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:52:36.898 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1da4c2d8-4165-4a39-93b2-9db135e8360f] socks forwarding established\n2025-07-17 11:52:36.928 [info] [command][d53852ca-13f5-45ab-a1b6-6534a06c1654] Process exited with code 0\n2025-07-17 11:52:36.929 [info] [command][d53852ca-13f5-45ab-a1b6-6534a06c1654] Socket close event received\n2025-07-17 11:52:36.940 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1da4c2d8-4165-4a39-93b2-9db135e8360f] socks connection closed\n2025-07-17 11:52:36.947 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51721 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:53:36.934 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:53:36.936 [info] [command][f6aeb48c-4565-44af-8c70-c4bd20614820] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f6aeb48c-4565-44af-8c70-c4bd20614820""}\n2025-07-17 11:53:36.936 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][fb918e74-d153-46a5-af31-d1b50ed621e9] received connection request\n2025-07-17 11:53:36.937 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:53:36.950 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fb918e74-d153-46a5-af31-d1b50ed621e9] socks forwarding established\n2025-07-17 11:53:36.980 [info] [command][f6aeb48c-4565-44af-8c70-c4bd20614820] Process exited with code 0\n2025-07-17 11:53:36.980 [info] [command][f6aeb48c-4565-44af-8c70-c4bd20614820] Socket close event received\n2025-07-17 11:53:36.993 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fb918e74-d153-46a5-af31-d1b50ed621e9] socks connection closed\n2025-07-17 11:53:36.994 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51759 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:54:36.984 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:54:36.985 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ede0c70e-0af7-4144-a3b9-721d0899eabd] received connection request\n2025-07-17 11:54:36.986 [info] [command][5940186b-b766-4e7c-af3c-f00cf4b7876a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5940186b-b766-4e7c-af3c-f00cf4b7876a""}\n2025-07-17 11:54:36.986 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:54:37.004 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ede0c70e-0af7-4144-a3b9-721d0899eabd] socks forwarding established\n2025-07-17 11:54:37.067 [info] [command][5940186b-b766-4e7c-af3c-f00cf4b7876a] Process exited with code 0\n2025-07-17 11:54:37.068 [info] [command][5940186b-b766-4e7c-af3c-f00cf4b7876a] Socket close event received\n2025-07-17 11:54:37.153 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ede0c70e-0af7-4144-a3b9-721d0899eabd] socks connection closed\n2025-07-17 11:54:37.162 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51784 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:55:37.069 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:55:37.071 [info] [command][70976138-3d23-40c8-98b1-adc0876ac0ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""70976138-3d23-40c8-98b1-adc0876ac0ab""}\n2025-07-17 11:55:37.071 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][0896d199-754c-43a8-a621-38cdcf6e554c] received connection request\n2025-07-17 11:55:37.072 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:55:37.086 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0896d199-754c-43a8-a621-38cdcf6e554c] socks forwarding established\n2025-07-17 11:55:37.114 [info] [command][70976138-3d23-40c8-98b1-adc0876ac0ab] Process exited with code 0\n2025-07-17 11:55:37.115 [info] [command][70976138-3d23-40c8-98b1-adc0876ac0ab] Socket close event received\n2025-07-17 11:55:37.128 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0896d199-754c-43a8-a621-38cdcf6e554c] socks connection closed\n2025-07-17 11:55:37.128 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51844 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:56:37.119 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:56:37.121 [info] [command][b2f5cb8f-110d-418c-9b7c-eb592709f106] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b2f5cb8f-110d-418c-9b7c-eb592709f106""}\n2025-07-17 11:56:37.121 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][016ec18a-031e-4c43-886f-5347875934e4] received connection request\n2025-07-17 11:56:37.122 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:56:37.136 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][016ec18a-031e-4c43-886f-5347875934e4] socks forwarding established\n2025-07-17 11:56:37.164 [info] [command][b2f5cb8f-110d-418c-9b7c-eb592709f106] Process exited with code 0\n2025-07-17 11:56:37.164 [info] [command][b2f5cb8f-110d-418c-9b7c-eb592709f106] Socket close event received\n2025-07-17 11:56:37.176 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][016ec18a-031e-4c43-886f-5347875934e4] socks connection closed\n2025-07-17 11:56:37.177 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51868 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:57:37.165 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:57:37.168 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6b230150-da5c-45d9-a89e-20fb07c8e637] received connection request\n2025-07-17 11:57:37.168 [info] [command][6c5e7093-0d44-4a04-9fcc-1efe37d34424] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6c5e7093-0d44-4a04-9fcc-1efe37d34424""}\n2025-07-17 11:57:37.168 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:57:37.183 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6b230150-da5c-45d9-a89e-20fb07c8e637] socks forwarding established\n2025-07-17 11:57:37.211 [info] [command][6c5e7093-0d44-4a04-9fcc-1efe37d34424] Process exited with code 0\n2025-07-17 11:57:37.211 [info] [command][6c5e7093-0d44-4a04-9fcc-1efe37d34424] Socket close event received\n2025-07-17 11:57:37.227 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51890 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:57:37.228 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6b230150-da5c-45d9-a89e-20fb07c8e637] socks connection closed\n2025-07-17 11:58:37.213 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:58:37.215 [info] [command][837153cd-ed0e-45f2-9f39-c61a024495ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""837153cd-ed0e-45f2-9f39-c61a024495ca""}\n2025-07-17 11:58:37.216 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][48718cbd-3610-4d70-81fe-83c562ef82c0] received connection request\n2025-07-17 11:58:37.217 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:58:37.277 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][48718cbd-3610-4d70-81fe-83c562ef82c0] socks forwarding established\n2025-07-17 11:58:37.384 [info] [command][837153cd-ed0e-45f2-9f39-c61a024495ca] Process exited with code 0\n2025-07-17 11:58:37.384 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][48718cbd-3610-4d70-81fe-83c562ef82c0] socks connection closed\n2025-07-17 11:58:37.384 [info] [command][837153cd-ed0e-45f2-9f39-c61a024495ca] Socket close event received\n2025-07-17 11:58:37.398 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51932 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 11:59:37.385 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 11:59:37.387 [info] [command][2a762d67-7a2c-4824-b600-3fd64f2c2464] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2a762d67-7a2c-4824-b600-3fd64f2c2464""}\n2025-07-17 11:59:37.388 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6a5f39fb-1f79-4a22-95f5-95cfecf1c558] received connection request\n2025-07-17 11:59:37.388 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 11:59:37.388 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 11:59:37.404 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6a5f39fb-1f79-4a22-95f5-95cfecf1c558] socks forwarding established\n2025-07-17 11:59:37.437 [info] [command][2a762d67-7a2c-4824-b600-3fd64f2c2464] Process exited with code 0\n2025-07-17 11:59:37.437 [info] [command][2a762d67-7a2c-4824-b600-3fd64f2c2464] Socket close event received\n2025-07-17 11:59:37.450 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6a5f39fb-1f79-4a22-95f5-95cfecf1c558] socks connection closed\n2025-07-17 11:59:37.450 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51955 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:00:37.450 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:00:37.451 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a9f2c8b8-6ebb-46de-bdee-e785e450c4c8] received connection request\n2025-07-17 12:00:37.451 [info] [command][818aaddd-e95e-48ea-9b8a-294217861af1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""818aaddd-e95e-48ea-9b8a-294217861af1""}\n2025-07-17 12:00:37.451 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:00:37.467 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a9f2c8b8-6ebb-46de-bdee-e785e450c4c8] socks forwarding established\n2025-07-17 12:00:37.519 [info] [command][818aaddd-e95e-48ea-9b8a-294217861af1] Process exited with code 0\n2025-07-17 12:00:37.519 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a9f2c8b8-6ebb-46de-bdee-e785e450c4c8] socks connection closed\n2025-07-17 12:00:37.519 [info] [command][818aaddd-e95e-48ea-9b8a-294217861af1] Socket close event received\n2025-07-17 12:00:37.558 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52021 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:01:37.520 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:01:37.523 [info] [command][dd51e23d-3a2d-4e93-bdbe-6bb564643de9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""dd51e23d-3a2d-4e93-bdbe-6bb564643de9""}\n2025-07-17 12:01:37.524 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][dc6337af-17d8-47b3-8c2d-4350229965e3] received connection request\n2025-07-17 12:01:37.525 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:01:37.610 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][dc6337af-17d8-47b3-8c2d-4350229965e3] socks forwarding established\n2025-07-17 12:01:37.643 [info] [command][dd51e23d-3a2d-4e93-bdbe-6bb564643de9] Process exited with code 0\n2025-07-17 12:01:37.643 [info] [command][dd51e23d-3a2d-4e93-bdbe-6bb564643de9] Socket close event received\n2025-07-17 12:01:37.659 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52044 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:01:37.659 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][dc6337af-17d8-47b3-8c2d-4350229965e3] socks connection closed\n2025-07-17 12:02:37.648 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:02:37.651 [info] [command][97f83cfc-e734-4724-96c0-970fd3960f31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""97f83cfc-e734-4724-96c0-970fd3960f31""}\n2025-07-17 12:02:37.651 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][665a4af3-564b-45ed-afd7-47af82cc1e10] received connection request\n2025-07-17 12:02:37.652 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:02:37.665 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][665a4af3-564b-45ed-afd7-47af82cc1e10] socks forwarding established\n2025-07-17 12:02:37.696 [info] [command][97f83cfc-e734-4724-96c0-970fd3960f31] Process exited with code 0\n2025-07-17 12:02:37.697 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][665a4af3-564b-45ed-afd7-47af82cc1e10] socks connection closed\n2025-07-17 12:02:37.698 [info] [command][97f83cfc-e734-4724-96c0-970fd3960f31] Socket close event received\n2025-07-17 12:02:37.712 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52068 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:03:37.702 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:03:37.705 [info] [command][56c9b464-627d-4238-ad3e-404f268e6dba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""56c9b464-627d-4238-ad3e-404f268e6dba""}\n2025-07-17 12:03:37.706 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][cf00418a-5e5c-4810-b727-73156d8f5d9e] received connection request\n2025-07-17 12:03:37.707 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:03:37.721 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cf00418a-5e5c-4810-b727-73156d8f5d9e] socks forwarding established\n2025-07-17 12:03:37.749 [info] [command][56c9b464-627d-4238-ad3e-404f268e6dba] Process exited with code 0\n2025-07-17 12:03:37.749 [info] [command][56c9b464-627d-4238-ad3e-404f268e6dba] Socket close event received\n2025-07-17 12:03:37.762 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cf00418a-5e5c-4810-b727-73156d8f5d9e] socks connection closed\n2025-07-17 12:03:37.763 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52110 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:04:37.752 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:04:37.754 [info] [command][2ae121f4-d32e-43c2-8a01-b883624ae519] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2ae121f4-d32e-43c2-8a01-b883624ae519""}\n2025-07-17 12:04:37.754 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][2db88c34-e89b-4b8a-9957-0465d10f77a5] received connection request\n2025-07-17 12:04:37.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:04:37.829 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2db88c34-e89b-4b8a-9957-0465d10f77a5] socks forwarding established\n2025-07-17 12:04:37.856 [info] [command][2ae121f4-d32e-43c2-8a01-b883624ae519] Process exited with code 0\n2025-07-17 12:04:37.857 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2db88c34-e89b-4b8a-9957-0465d10f77a5] socks connection closed\n2025-07-17 12:04:37.857 [info] [command][2ae121f4-d32e-43c2-8a01-b883624ae519] Socket close event received\n2025-07-17 12:04:37.997 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52133 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:05:37.859 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:05:37.860 [info] [command][50470af3-c2ff-4967-85cf-dc4bd12a2bcc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""50470af3-c2ff-4967-85cf-dc4bd12a2bcc""}\n2025-07-17 12:05:37.861 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4afa3bcf-be2d-49f3-9690-786d3df4427a] received connection request\n2025-07-17 12:05:37.861 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:05:37.876 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4afa3bcf-be2d-49f3-9690-786d3df4427a] socks forwarding established\n2025-07-17 12:05:37.907 [info] [command][50470af3-c2ff-4967-85cf-dc4bd12a2bcc] Process exited with code 0\n2025-07-17 12:05:37.907 [info] [command][50470af3-c2ff-4967-85cf-dc4bd12a2bcc] Socket close event received\n2025-07-17 12:05:37.907 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4afa3bcf-be2d-49f3-9690-786d3df4427a] socks connection closed\n2025-07-17 12:05:37.921 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52190 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:06:37.908 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:06:37.911 [info] [command][acb85215-ea91-418a-92f1-19e46b78c05a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""acb85215-ea91-418a-92f1-19e46b78c05a""}\n2025-07-17 12:06:37.912 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][44560199-a787-4e9f-bba3-71cf4400e3b5] received connection request\n2025-07-17 12:06:37.912 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:06:37.928 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][44560199-a787-4e9f-bba3-71cf4400e3b5] socks forwarding established\n2025-07-17 12:06:37.956 [info] [command][acb85215-ea91-418a-92f1-19e46b78c05a] Process exited with code 0\n2025-07-17 12:06:37.957 [info] [command][acb85215-ea91-418a-92f1-19e46b78c05a] Socket close event received\n2025-07-17 12:06:37.957 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][44560199-a787-4e9f-bba3-71cf4400e3b5] socks connection closed\n2025-07-17 12:06:37.973 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52214 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:07:37.959 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:07:37.961 [info] [command][463133c4-3829-46d7-b71b-e226df3a612b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""463133c4-3829-46d7-b71b-e226df3a612b""}\n2025-07-17 12:07:37.962 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][29e9afc5-7f2a-4675-8375-97e40a607d34] received connection request\n2025-07-17 12:07:37.962 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 12:07:37.962 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:07:37.998 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][29e9afc5-7f2a-4675-8375-97e40a607d34] socks forwarding established\n2025-07-17 12:07:38.029 [info] [command][463133c4-3829-46d7-b71b-e226df3a612b] Process exited with code 0\n2025-07-17 12:07:38.029 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][29e9afc5-7f2a-4675-8375-97e40a607d34] socks connection closed\n2025-07-17 12:07:38.029 [info] [command][463133c4-3829-46d7-b71b-e226df3a612b] Socket close event received\n2025-07-17 12:07:38.044 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52239 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:08:38.034 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:08:38.037 [info] [command][1af96ee2-229e-42c0-b68c-63647cf511b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1af96ee2-229e-42c0-b68c-63647cf511b1""}\n2025-07-17 12:08:38.037 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7e1410f2-4e39-49d6-a7b3-b2d731d42dba] received connection request\n2025-07-17 12:08:38.038 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:08:38.052 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7e1410f2-4e39-49d6-a7b3-b2d731d42dba] socks forwarding established\n2025-07-17 12:08:38.081 [info] [command][1af96ee2-229e-42c0-b68c-63647cf511b1] Process exited with code 0\n2025-07-17 12:08:38.081 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7e1410f2-4e39-49d6-a7b3-b2d731d42dba] socks connection closed\n2025-07-17 12:08:38.081 [info] [command][1af96ee2-229e-42c0-b68c-63647cf511b1] Socket close event received\n2025-07-17 12:08:38.104 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52273 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:09:38.086 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:09:38.089 [info] [command][72cc6782-be84-431d-9dc4-83c7af93d62d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""72cc6782-be84-431d-9dc4-83c7af93d62d""}\n2025-07-17 12:09:38.090 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e5170ee9-d849-4f8e-9577-35a775c0f1ea] received connection request\n2025-07-17 12:09:38.090 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:09:38.107 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e5170ee9-d849-4f8e-9577-35a775c0f1ea] socks forwarding established\n2025-07-17 12:09:38.132 [info] [command][72cc6782-be84-431d-9dc4-83c7af93d62d] Process exited with code 0\n2025-07-17 12:09:38.133 [info] [command][72cc6782-be84-431d-9dc4-83c7af93d62d] Socket close event received\n2025-07-17 12:09:38.133 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e5170ee9-d849-4f8e-9577-35a775c0f1ea] socks connection closed\n2025-07-17 12:09:38.148 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52299 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:10:38.137 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:10:38.139 [info] [command][db303124-e38e-4f91-a9aa-9ce85d162edc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""db303124-e38e-4f91-a9aa-9ce85d162edc""}\n2025-07-17 12:10:38.140 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][43c44606-e14b-40b9-bcc8-7485bbaa06f1] received connection request\n2025-07-17 12:10:38.140 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:10:38.232 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][43c44606-e14b-40b9-bcc8-7485bbaa06f1] socks forwarding established\n2025-07-17 12:10:38.260 [info] [command][db303124-e38e-4f91-a9aa-9ce85d162edc] Process exited with code 0\n2025-07-17 12:10:38.260 [info] [command][db303124-e38e-4f91-a9aa-9ce85d162edc] Socket close event received\n2025-07-17 12:10:38.264 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][43c44606-e14b-40b9-bcc8-7485bbaa06f1] socks connection closed\n2025-07-17 12:10:38.323 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52351 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:11:38.267 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:11:38.268 [info] [command][edc6ab4f-9c32-4b62-a410-3b42d0f401b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""edc6ab4f-9c32-4b62-a410-3b42d0f401b0""}\n2025-07-17 12:11:38.268 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8b6e18f5-25b7-4653-b5f1-a64f9dd91f04] received connection request\n2025-07-17 12:11:38.269 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:11:38.290 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8b6e18f5-25b7-4653-b5f1-a64f9dd91f04] socks forwarding established\n2025-07-17 12:11:38.316 [info] [command][edc6ab4f-9c32-4b62-a410-3b42d0f401b0] Process exited with code 0\n2025-07-17 12:11:38.316 [info] [command][edc6ab4f-9c32-4b62-a410-3b42d0f401b0] Socket close event received\n2025-07-17 12:11:38.328 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8b6e18f5-25b7-4653-b5f1-a64f9dd91f04] socks connection closed\n2025-07-17 12:11:38.330 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52385 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:12:38.320 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:12:38.323 [info] [command][afe51ad3-38b9-49f9-a3ce-ee9a7f91427e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""afe51ad3-38b9-49f9-a3ce-ee9a7f91427e""}\n2025-07-17 12:12:38.324 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e41d1edb-d1b1-4a0d-be01-f19a0f2e1352] received connection request\n2025-07-17 12:12:38.325 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:12:38.341 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e41d1edb-d1b1-4a0d-be01-f19a0f2e1352] socks forwarding established\n2025-07-17 12:12:38.370 [info] [command][afe51ad3-38b9-49f9-a3ce-ee9a7f91427e] Process exited with code 0\n2025-07-17 12:12:38.371 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e41d1edb-d1b1-4a0d-be01-f19a0f2e1352] socks connection closed\n2025-07-17 12:12:38.371 [info] [command][afe51ad3-38b9-49f9-a3ce-ee9a7f91427e] Socket close event received\n2025-07-17 12:12:38.384 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52407 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:13:38.374 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:13:38.377 [info] [command][69f30ed9-579e-4c3a-b250-005824b9dbf0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""69f30ed9-579e-4c3a-b250-005824b9dbf0""}\n2025-07-17 12:13:38.377 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][28242854-8f33-452f-95d3-e6a6396f6d99] received connection request\n2025-07-17 12:13:38.378 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:13:38.468 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][28242854-8f33-452f-95d3-e6a6396f6d99] socks forwarding established\n2025-07-17 12:13:38.498 [info] [command][69f30ed9-579e-4c3a-b250-005824b9dbf0] Process exited with code 0\n2025-07-17 12:13:38.499 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][28242854-8f33-452f-95d3-e6a6396f6d99] socks connection closed\n2025-07-17 12:13:38.499 [info] [command][69f30ed9-579e-4c3a-b250-005824b9dbf0] Socket close event received\n2025-07-17 12:13:38.514 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52442 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:14:38.500 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:14:38.503 [info] [command][6ea0ae3c-3987-4c10-9046-529304385462] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6ea0ae3c-3987-4c10-9046-529304385462""}\n2025-07-17 12:14:38.503 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][12a92977-ef32-43aa-8636-a3ed1eca511c] received connection request\n2025-07-17 12:14:38.504 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:14:38.519 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][12a92977-ef32-43aa-8636-a3ed1eca511c] socks forwarding established\n2025-07-17 12:14:38.549 [info] [command][6ea0ae3c-3987-4c10-9046-529304385462] Process exited with code 0\n2025-07-17 12:14:38.550 [info] [command][6ea0ae3c-3987-4c10-9046-529304385462] Socket close event received\n2025-07-17 12:14:38.551 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][12a92977-ef32-43aa-8636-a3ed1eca511c] socks connection closed\n2025-07-17 12:14:38.566 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52470 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:15:38.552 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:15:38.554 [info] [command][28e38a07-657c-4298-927f-c756a4d1c73d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""28e38a07-657c-4298-927f-c756a4d1c73d""}\n2025-07-17 12:15:38.555 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][edaefed6-08e5-4366-a0f1-f7782e1eb7de] received connection request\n2025-07-17 12:15:38.556 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:15:38.571 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][edaefed6-08e5-4366-a0f1-f7782e1eb7de] socks forwarding established\n2025-07-17 12:15:38.599 [info] [command][28e38a07-657c-4298-927f-c756a4d1c73d] Process exited with code 0\n2025-07-17 12:15:38.599 [info] [command][28e38a07-657c-4298-927f-c756a4d1c73d] Socket close event received\n2025-07-17 12:15:38.613 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][edaefed6-08e5-4366-a0f1-f7782e1eb7de] socks connection closed\n2025-07-17 12:15:38.614 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52529 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:16:38.605 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:16:38.607 [info] [command][0e363894-e852-4d97-9f34-ef27a8817a74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0e363894-e852-4d97-9f34-ef27a8817a74""}\n2025-07-17 12:16:38.608 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b8379657-5d94-4fc0-a584-331140c6c295] received connection request\n2025-07-17 12:16:38.609 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:16:38.626 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b8379657-5d94-4fc0-a584-331140c6c295] socks forwarding established\n2025-07-17 12:16:38.656 [info] [command][0e363894-e852-4d97-9f34-ef27a8817a74] Process exited with code 0\n2025-07-17 12:16:38.656 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b8379657-5d94-4fc0-a584-331140c6c295] socks connection closed\n2025-07-17 12:16:38.656 [info] [command][0e363894-e852-4d97-9f34-ef27a8817a74] Socket close event received\n2025-07-17 12:16:38.672 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52550 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:17:38.658 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:17:38.660 [info] [command][75d30c30-f025-45cc-9ce1-12b4b6e40172] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""75d30c30-f025-45cc-9ce1-12b4b6e40172""}\n2025-07-17 12:17:38.660 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][81551d1f-17a7-407a-ad17-dff575bacc4c] received connection request\n2025-07-17 12:17:38.661 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:17:38.675 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][81551d1f-17a7-407a-ad17-dff575bacc4c] socks forwarding established\n2025-07-17 12:17:38.704 [info] [command][75d30c30-f025-45cc-9ce1-12b4b6e40172] Process exited with code 0\n2025-07-17 12:17:38.704 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][81551d1f-17a7-407a-ad17-dff575bacc4c] socks connection closed\n2025-07-17 12:17:38.704 [info] [command][75d30c30-f025-45cc-9ce1-12b4b6e40172] Socket close event received\n2025-07-17 12:17:38.718 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52587 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:18:38.710 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:18:38.712 [info] [command][83f70c90-9749-4412-aec8-cb43e86287dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""83f70c90-9749-4412-aec8-cb43e86287dc""}\n2025-07-17 12:18:38.713 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a3bebbf2-e1d0-4896-9e79-fae5e0e3c527] received connection request\n2025-07-17 12:18:38.714 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:18:38.733 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a3bebbf2-e1d0-4896-9e79-fae5e0e3c527] socks forwarding established\n2025-07-17 12:18:38.770 [info] [command][83f70c90-9749-4412-aec8-cb43e86287dc] Process exited with code 0\n2025-07-17 12:18:38.770 [info] [command][83f70c90-9749-4412-aec8-cb43e86287dc] Socket close event received\n2025-07-17 12:18:38.771 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a3bebbf2-e1d0-4896-9e79-fae5e0e3c527] socks connection closed\n2025-07-17 12:18:38.788 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52629 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:19:38.775 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:19:38.776 [info] [command][53cbf1d3-746a-4574-be83-13e5d5739ec0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""53cbf1d3-746a-4574-be83-13e5d5739ec0""}\n2025-07-17 12:19:38.777 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1156c971-a984-4760-b32f-242c1d9f890b] received connection request\n2025-07-17 12:19:38.777 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:19:38.792 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1156c971-a984-4760-b32f-242c1d9f890b] socks forwarding established\n2025-07-17 12:19:38.822 [info] [command][53cbf1d3-746a-4574-be83-13e5d5739ec0] Process exited with code 0\n2025-07-17 12:19:38.823 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1156c971-a984-4760-b32f-242c1d9f890b] socks connection closed\n2025-07-17 12:19:38.823 [info] [command][53cbf1d3-746a-4574-be83-13e5d5739ec0] Socket close event received\n2025-07-17 12:19:38.837 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52673 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:20:38.823 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:20:38.825 [info] [command][9b18709f-ddca-4e5a-a7ee-de3106e29106] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9b18709f-ddca-4e5a-a7ee-de3106e29106""}\n2025-07-17 12:20:38.825 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b2b7d4e7-bc7b-4619-bbe6-330a4d21922f] received connection request\n2025-07-17 12:20:38.826 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:20:38.841 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b2b7d4e7-bc7b-4619-bbe6-330a4d21922f] socks forwarding established\n2025-07-17 12:20:38.870 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b2b7d4e7-bc7b-4619-bbe6-330a4d21922f] socks connection closed\n2025-07-17 12:20:38.870 [info] [command][9b18709f-ddca-4e5a-a7ee-de3106e29106] Process exited with code 0\n2025-07-17 12:20:38.870 [info] [command][9b18709f-ddca-4e5a-a7ee-de3106e29106] Socket close event received\n2025-07-17 12:20:38.883 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52726 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:21:38.873 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:21:38.875 [info] [command][8ccab46a-c6a4-46e2-adee-77d6b3126c50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8ccab46a-c6a4-46e2-adee-77d6b3126c50""}\n2025-07-17 12:21:38.876 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8676a7a2-acc1-4d38-8955-2f717fd16ae8] received connection request\n2025-07-17 12:21:38.876 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:21:38.892 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8676a7a2-acc1-4d38-8955-2f717fd16ae8] socks forwarding established\n2025-07-17 12:21:38.919 [info] [command][8ccab46a-c6a4-46e2-adee-77d6b3126c50] Process exited with code 0\n2025-07-17 12:21:38.920 [info] [command][8ccab46a-c6a4-46e2-adee-77d6b3126c50] Socket close event received\n2025-07-17 12:21:38.920 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8676a7a2-acc1-4d38-8955-2f717fd16ae8] socks connection closed\n2025-07-17 12:21:38.936 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52750 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:22:38.920 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:22:38.922 [info] [command][32c213e6-53a4-4530-b238-63327668503f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""32c213e6-53a4-4530-b238-63327668503f""}\n2025-07-17 12:22:38.923 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][0241967c-a8fd-4754-b9e8-328e44c832ef] received connection request\n2025-07-17 12:22:38.923 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:22:38.938 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0241967c-a8fd-4754-b9e8-328e44c832ef] socks forwarding established\n2025-07-17 12:22:38.967 [info] [command][32c213e6-53a4-4530-b238-63327668503f] Process exited with code 0\n2025-07-17 12:22:38.968 [info] [command][32c213e6-53a4-4530-b238-63327668503f] Socket close event received\n2025-07-17 12:22:38.968 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0241967c-a8fd-4754-b9e8-328e44c832ef] socks connection closed\n2025-07-17 12:22:38.982 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52789 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:23:38.973 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:23:38.975 [info] [command][b8091f6d-11ad-42d6-bf8e-226acc1bbb04] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b8091f6d-11ad-42d6-bf8e-226acc1bbb04""}\n2025-07-17 12:23:38.976 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9b8d74b4-050a-4146-a7fd-b59605d4284b] received connection request\n2025-07-17 12:23:38.976 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:23:38.991 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9b8d74b4-050a-4146-a7fd-b59605d4284b] socks forwarding established\n2025-07-17 12:23:39.018 [info] [command][b8091f6d-11ad-42d6-bf8e-226acc1bbb04] Process exited with code 0\n2025-07-17 12:23:39.018 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9b8d74b4-050a-4146-a7fd-b59605d4284b] socks connection closed\n2025-07-17 12:23:39.018 [info] [command][b8091f6d-11ad-42d6-bf8e-226acc1bbb04] Socket close event received\n2025-07-17 12:23:39.034 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52845 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:24:39.022 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:24:39.024 [info] [command][fce7cadd-c200-4f49-9ee4-c5df55259c21] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""fce7cadd-c200-4f49-9ee4-c5df55259c21""}\n2025-07-17 12:24:39.025 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e3d573ae-43e7-463f-8d56-b009831ee5fc] received connection request\n2025-07-17 12:24:39.026 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:24:39.045 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e3d573ae-43e7-463f-8d56-b009831ee5fc] socks forwarding established\n2025-07-17 12:24:39.167 [info] [command][fce7cadd-c200-4f49-9ee4-c5df55259c21] Process exited with code 0\n2025-07-17 12:24:39.167 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e3d573ae-43e7-463f-8d56-b009831ee5fc] socks connection closed\n2025-07-17 12:24:39.167 [info] [command][fce7cadd-c200-4f49-9ee4-c5df55259c21] Socket close event received\n2025-07-17 12:24:39.181 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52878 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:25:39.170 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:25:39.171 [info] [command][ecd1a910-c6f1-4082-9330-8f44e4220457] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ecd1a910-c6f1-4082-9330-8f44e4220457""}\n2025-07-17 12:25:39.172 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][013f52e7-71c4-43e3-99cb-f080c9d4297b] received connection request\n2025-07-17 12:25:39.173 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:25:39.191 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][013f52e7-71c4-43e3-99cb-f080c9d4297b] socks forwarding established\n2025-07-17 12:25:39.219 [info] [command][ecd1a910-c6f1-4082-9330-8f44e4220457] Process exited with code 0\n2025-07-17 12:25:39.219 [info] [command][ecd1a910-c6f1-4082-9330-8f44e4220457] Socket close event received\n2025-07-17 12:25:39.220 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][013f52e7-71c4-43e3-99cb-f080c9d4297b] socks connection closed\n2025-07-17 12:25:39.234 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52949 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:26:39.223 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:26:39.226 [info] [command][2663552e-303a-4051-b6ad-dfd954c935dd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2663552e-303a-4051-b6ad-dfd954c935dd""}\n2025-07-17 12:26:39.227 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][06ad2112-0ff5-4913-9c4e-9330a479260c] received connection request\n2025-07-17 12:26:39.227 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:26:39.247 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][06ad2112-0ff5-4913-9c4e-9330a479260c] socks forwarding established\n2025-07-17 12:26:39.277 [info] [command][2663552e-303a-4051-b6ad-dfd954c935dd] Process exited with code 0\n2025-07-17 12:26:39.278 [info] [command][2663552e-303a-4051-b6ad-dfd954c935dd] Socket close event received\n2025-07-17 12:26:39.279 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][06ad2112-0ff5-4913-9c4e-9330a479260c] socks connection closed\n2025-07-17 12:26:39.296 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52974 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:27:39.283 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:27:39.285 [info] [command][65560498-c2a9-48b2-97e8-2ba5f4a16300] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""65560498-c2a9-48b2-97e8-2ba5f4a16300""}\n2025-07-17 12:27:39.286 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][699caec6-3405-4dc8-b87d-63102eae6319] received connection request\n2025-07-17 12:27:39.286 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 12:27:39.287 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:27:39.302 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][699caec6-3405-4dc8-b87d-63102eae6319] socks forwarding established\n2025-07-17 12:27:39.330 [info] [command][65560498-c2a9-48b2-97e8-2ba5f4a16300] Process exited with code 0\n2025-07-17 12:27:39.331 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][699caec6-3405-4dc8-b87d-63102eae6319] socks connection closed\n2025-07-17 12:27:39.331 [info] [command][65560498-c2a9-48b2-97e8-2ba5f4a16300] Socket close event received\n2025-07-17 12:27:39.433 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 52999 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:28:39.337 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:28:39.339 [info] [command][5fcde77e-469d-46e6-8744-5972d822f8c3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5fcde77e-469d-46e6-8744-5972d822f8c3""}\n2025-07-17 12:28:39.340 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e73adaed-5a22-4f27-ba3b-22f6cea98b17] received connection request\n2025-07-17 12:28:39.342 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:28:39.359 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e73adaed-5a22-4f27-ba3b-22f6cea98b17] socks forwarding established\n2025-07-17 12:28:39.391 [info] [command][5fcde77e-469d-46e6-8744-5972d822f8c3] Process exited with code 0\n2025-07-17 12:28:39.392 [info] [command][5fcde77e-469d-46e6-8744-5972d822f8c3] Socket close event received\n2025-07-17 12:28:39.393 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e73adaed-5a22-4f27-ba3b-22f6cea98b17] socks connection closed\n2025-07-17 12:28:39.407 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53040 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:29:39.394 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:29:39.395 [info] [command][2a7e9888-6c66-4f61-9db0-4a00530ea609] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2a7e9888-6c66-4f61-9db0-4a00530ea609""}\n2025-07-17 12:29:39.396 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][31e95b64-2732-4857-bbac-966ba000a628] received connection request\n2025-07-17 12:29:39.396 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:29:39.410 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][31e95b64-2732-4857-bbac-966ba000a628] socks forwarding established\n2025-07-17 12:29:39.436 [info] [command][2a7e9888-6c66-4f61-9db0-4a00530ea609] Process exited with code 0\n2025-07-17 12:29:39.436 [info] [command][2a7e9888-6c66-4f61-9db0-4a00530ea609] Socket close event received\n2025-07-17 12:29:39.436 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][31e95b64-2732-4857-bbac-966ba000a628] socks connection closed\n2025-07-17 12:29:39.449 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53064 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:30:39.439 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:30:39.441 [info] [command][56b1b052-30ef-4813-a75e-ca9321acd747] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""56b1b052-30ef-4813-a75e-ca9321acd747""}\n2025-07-17 12:30:39.441 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][aeaaf2e1-998e-4ea9-a149-58df52a47f91] received connection request\n2025-07-17 12:30:39.442 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:30:39.456 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][aeaaf2e1-998e-4ea9-a149-58df52a47f91] socks forwarding established\n2025-07-17 12:30:39.483 [info] [command][56b1b052-30ef-4813-a75e-ca9321acd747] Process exited with code 0\n2025-07-17 12:30:39.483 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][aeaaf2e1-998e-4ea9-a149-58df52a47f91] socks connection closed\n2025-07-17 12:30:39.483 [info] [command][56b1b052-30ef-4813-a75e-ca9321acd747] Socket close event received\n2025-07-17 12:30:39.500 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53126 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:31:39.487 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:31:39.489 [info] [command][0fcdb178-c0e6-4b4b-bd81-9009c79c156d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0fcdb178-c0e6-4b4b-bd81-9009c79c156d""}\n2025-07-17 12:31:39.490 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6be1a8cb-b9b3-404b-826f-0f0cc0f1779b] received connection request\n2025-07-17 12:31:39.490 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:31:39.516 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6be1a8cb-b9b3-404b-826f-0f0cc0f1779b] socks forwarding established\n2025-07-17 12:31:39.543 [info] [command][0fcdb178-c0e6-4b4b-bd81-9009c79c156d] Process exited with code 0\n2025-07-17 12:31:39.543 [info] [command][0fcdb178-c0e6-4b4b-bd81-9009c79c156d] Socket close event received\n2025-07-17 12:31:39.546 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6be1a8cb-b9b3-404b-826f-0f0cc0f1779b] socks connection closed\n2025-07-17 12:31:39.556 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53157 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:32:39.549 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:32:39.551 [info] [command][7c9a5acd-e958-4fa3-b252-e30da113d2cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""7c9a5acd-e958-4fa3-b252-e30da113d2cb""}\n2025-07-17 12:32:39.552 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b75287fb-e3a1-45b4-bfaf-278ed135cf9a] received connection request\n2025-07-17 12:32:39.553 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:32:39.569 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b75287fb-e3a1-45b4-bfaf-278ed135cf9a] socks forwarding established\n2025-07-17 12:32:39.598 [info] [command][7c9a5acd-e958-4fa3-b252-e30da113d2cb] Process exited with code 0\n2025-07-17 12:32:39.598 [info] [command][7c9a5acd-e958-4fa3-b252-e30da113d2cb] Socket close event received\n2025-07-17 12:32:39.599 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b75287fb-e3a1-45b4-bfaf-278ed135cf9a] socks connection closed\n2025-07-17 12:32:39.614 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53190 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:33:39.604 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:33:39.607 [info] [command][2f5db508-d469-4473-b891-2321e7a9b3bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2f5db508-d469-4473-b891-2321e7a9b3bd""}\n2025-07-17 12:33:39.608 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][fa2c0c81-0669-4802-b106-fac857a6b4a5] received connection request\n2025-07-17 12:33:39.609 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:33:39.625 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fa2c0c81-0669-4802-b106-fac857a6b4a5] socks forwarding established\n2025-07-17 12:33:39.731 [info] [command][2f5db508-d469-4473-b891-2321e7a9b3bd] Process exited with code 0\n2025-07-17 12:33:39.731 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fa2c0c81-0669-4802-b106-fac857a6b4a5] socks connection closed\n2025-07-17 12:33:39.731 [info] [command][2f5db508-d469-4473-b891-2321e7a9b3bd] Socket close event received\n2025-07-17 12:33:39.747 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53233 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:34:39.736 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:34:39.740 [info] [command][b8cb2e58-8947-47a5-b6c4-3aaf9525f59c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b8cb2e58-8947-47a5-b6c4-3aaf9525f59c""}\n2025-07-17 12:34:39.740 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5e12d1a7-fd8b-4255-9769-6f865f6100b9] received connection request\n2025-07-17 12:34:39.741 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:34:39.757 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5e12d1a7-fd8b-4255-9769-6f865f6100b9] socks forwarding established\n2025-07-17 12:34:39.785 [info] [command][b8cb2e58-8947-47a5-b6c4-3aaf9525f59c] Process exited with code 0\n2025-07-17 12:34:39.785 [info] [command][b8cb2e58-8947-47a5-b6c4-3aaf9525f59c] Socket close event received\n2025-07-17 12:34:39.788 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5e12d1a7-fd8b-4255-9769-6f865f6100b9] socks connection closed\n2025-07-17 12:34:39.802 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53259 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:35:39.787 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:35:39.790 [info] [command][480d2638-f96d-4361-ba88-c09d68da6b0c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""480d2638-f96d-4361-ba88-c09d68da6b0c""}\n2025-07-17 12:35:39.790 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][876f3143-5e5c-457a-80bb-54a3bc151ef4] received connection request\n2025-07-17 12:35:39.791 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:35:39.807 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][876f3143-5e5c-457a-80bb-54a3bc151ef4] socks forwarding established\n2025-07-17 12:35:39.838 [info] [command][480d2638-f96d-4361-ba88-c09d68da6b0c] Process exited with code 0\n2025-07-17 12:35:39.838 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][876f3143-5e5c-457a-80bb-54a3bc151ef4] socks connection closed\n2025-07-17 12:35:39.838 [info] [command][480d2638-f96d-4361-ba88-c09d68da6b0c] Socket close event received\n2025-07-17 12:35:39.853 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53324 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:36:39.842 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:36:39.844 [info] [command][a3992b1e-926f-42e5-a033-7c00bece3dc6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a3992b1e-926f-42e5-a033-7c00bece3dc6""}\n2025-07-17 12:36:39.845 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][59e200c4-44e5-4a9f-8513-5fa9bfc1c7e6] received connection request\n2025-07-17 12:36:39.846 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:36:39.861 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][59e200c4-44e5-4a9f-8513-5fa9bfc1c7e6] socks forwarding established\n2025-07-17 12:36:39.890 [info] [command][a3992b1e-926f-42e5-a033-7c00bece3dc6] Process exited with code 0\n2025-07-17 12:36:39.891 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][59e200c4-44e5-4a9f-8513-5fa9bfc1c7e6] socks connection closed\n2025-07-17 12:36:39.891 [info] [command][a3992b1e-926f-42e5-a033-7c00bece3dc6] Socket close event received\n2025-07-17 12:36:39.908 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53350 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:37:39.892 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:37:39.893 [info] [command][dad864fd-06fd-4450-9421-e0a560df7577] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""dad864fd-06fd-4450-9421-e0a560df7577""}\n2025-07-17 12:37:39.893 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8ae4ad96-0a8c-4687-a2e4-e78f7ba3caf9] received connection request\n2025-07-17 12:37:39.894 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:37:39.909 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8ae4ad96-0a8c-4687-a2e4-e78f7ba3caf9] socks forwarding established\n2025-07-17 12:37:39.938 [info] [command][dad864fd-06fd-4450-9421-e0a560df7577] Process exited with code 0\n2025-07-17 12:37:39.938 [info] [command][dad864fd-06fd-4450-9421-e0a560df7577] Socket close event received\n2025-07-17 12:37:39.938 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8ae4ad96-0a8c-4687-a2e4-e78f7ba3caf9] socks connection closed\n2025-07-17 12:37:39.954 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53380 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:38:39.940 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:38:39.942 [info] [command][1c537845-47cd-4866-8ea7-2695f7e08821] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1c537845-47cd-4866-8ea7-2695f7e08821""}\n2025-07-17 12:38:39.943 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][78dd6213-bf22-4874-977d-cd90a595ff13] received connection request\n2025-07-17 12:38:39.943 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:38:39.959 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][78dd6213-bf22-4874-977d-cd90a595ff13] socks forwarding established\n2025-07-17 12:38:39.988 [info] [command][1c537845-47cd-4866-8ea7-2695f7e08821] Process exited with code 0\n2025-07-17 12:38:39.988 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][78dd6213-bf22-4874-977d-cd90a595ff13] socks connection closed\n2025-07-17 12:38:39.988 [info] [command][1c537845-47cd-4866-8ea7-2695f7e08821] Socket close event received\n2025-07-17 12:38:40.003 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53418 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:39:39.994 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:39:39.996 [info] [command][506eeefb-0c94-4fb5-a56b-2ff03c713cb2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""506eeefb-0c94-4fb5-a56b-2ff03c713cb2""}\n2025-07-17 12:39:39.996 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9816f811-f0f3-4d1c-93be-140c51049d56] received connection request\n2025-07-17 12:39:39.997 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:39:40.098 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9816f811-f0f3-4d1c-93be-140c51049d56] socks forwarding established\n2025-07-17 12:39:40.129 [info] [command][506eeefb-0c94-4fb5-a56b-2ff03c713cb2] Process exited with code 0\n2025-07-17 12:39:40.130 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9816f811-f0f3-4d1c-93be-140c51049d56] socks connection closed\n2025-07-17 12:39:40.130 [info] [command][506eeefb-0c94-4fb5-a56b-2ff03c713cb2] Socket close event received\n2025-07-17 12:39:40.146 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53442 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:40:40.135 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:40:40.137 [info] [command][67e82284-784b-447c-bf41-48bd4a7baf32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""67e82284-784b-447c-bf41-48bd4a7baf32""}\n2025-07-17 12:40:40.138 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d03d3ddf-01a1-4e90-966a-cc7b12998a26] received connection request\n2025-07-17 12:40:40.139 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:40:40.157 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d03d3ddf-01a1-4e90-966a-cc7b12998a26] socks forwarding established\n2025-07-17 12:40:40.187 [info] [command][67e82284-784b-447c-bf41-48bd4a7baf32] Process exited with code 0\n2025-07-17 12:40:40.187 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d03d3ddf-01a1-4e90-966a-cc7b12998a26] socks connection closed\n2025-07-17 12:40:40.187 [info] [command][67e82284-784b-447c-bf41-48bd4a7baf32] Socket close event received\n2025-07-17 12:40:40.203 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53504 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:41:40.192 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:41:40.194 [info] [command][4bceb93e-c5a8-4e74-a28d-f29b071b7fef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4bceb93e-c5a8-4e74-a28d-f29b071b7fef""}\n2025-07-17 12:41:40.195 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][82bb22e4-b263-498e-a5ba-4d29e0663eaa] received connection request\n2025-07-17 12:41:40.195 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:41:40.212 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][82bb22e4-b263-498e-a5ba-4d29e0663eaa] socks forwarding established\n2025-07-17 12:41:40.238 [info] [command][4bceb93e-c5a8-4e74-a28d-f29b071b7fef] Process exited with code 0\n2025-07-17 12:41:40.239 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][82bb22e4-b263-498e-a5ba-4d29e0663eaa] socks connection closed\n2025-07-17 12:41:40.239 [info] [command][4bceb93e-c5a8-4e74-a28d-f29b071b7fef] Socket close event received\n2025-07-17 12:41:40.254 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53526 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:42:40.244 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:42:40.246 [info] [command][844e57df-793f-4607-bea7-b4c0439838be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""844e57df-793f-4607-bea7-b4c0439838be""}\n2025-07-17 12:42:40.247 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1d2bb151-7156-410f-820e-f3340d1e3394] received connection request\n2025-07-17 12:42:40.248 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:42:40.262 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1d2bb151-7156-410f-820e-f3340d1e3394] socks forwarding established\n2025-07-17 12:42:40.288 [info] [command][844e57df-793f-4607-bea7-b4c0439838be] Process exited with code 0\n2025-07-17 12:42:40.288 [info] [command][844e57df-793f-4607-bea7-b4c0439838be] Socket close event received\n2025-07-17 12:42:40.289 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1d2bb151-7156-410f-820e-f3340d1e3394] socks connection closed\n2025-07-17 12:42:40.303 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53553 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:43:40.291 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:43:40.293 [info] [command][ea61f680-bedf-4282-93d3-bb423c293977] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ea61f680-bedf-4282-93d3-bb423c293977""}\n2025-07-17 12:43:40.294 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4aa530e7-f524-454f-a033-26b1cf881250] received connection request\n2025-07-17 12:43:40.294 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:43:40.310 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4aa530e7-f524-454f-a033-26b1cf881250] socks forwarding established\n2025-07-17 12:43:40.349 [info] [command][ea61f680-bedf-4282-93d3-bb423c293977] Process exited with code 0\n2025-07-17 12:43:40.350 [info] [command][ea61f680-bedf-4282-93d3-bb423c293977] Socket close event received\n2025-07-17 12:43:40.351 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4aa530e7-f524-454f-a033-26b1cf881250] socks connection closed\n2025-07-17 12:43:40.366 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53595 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:44:40.351 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:44:40.353 [info] [command][92c4e50e-21ff-4df6-bfe1-da9d2c493890] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""92c4e50e-21ff-4df6-bfe1-da9d2c493890""}\n2025-07-17 12:44:40.354 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][57c81ceb-e9da-4e60-93be-711d768314aa] received connection request\n2025-07-17 12:44:40.354 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:44:40.371 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][57c81ceb-e9da-4e60-93be-711d768314aa] socks forwarding established\n2025-07-17 12:44:40.402 [info] [command][92c4e50e-21ff-4df6-bfe1-da9d2c493890] Process exited with code 0\n2025-07-17 12:44:40.402 [info] [command][92c4e50e-21ff-4df6-bfe1-da9d2c493890] Socket close event received\n2025-07-17 12:44:40.403 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][57c81ceb-e9da-4e60-93be-711d768314aa] socks connection closed\n2025-07-17 12:44:40.419 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53622 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:45:40.407 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:45:40.409 [info] [command][0b5bce14-be34-4cc4-a346-f87cd069d283] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0b5bce14-be34-4cc4-a346-f87cd069d283""}\n2025-07-17 12:45:40.410 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6538e316-48f5-4682-aa55-3b9767bcec37] received connection request\n2025-07-17 12:45:40.410 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:45:40.424 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6538e316-48f5-4682-aa55-3b9767bcec37] socks forwarding established\n2025-07-17 12:45:40.457 [info] [command][0b5bce14-be34-4cc4-a346-f87cd069d283] Process exited with code 0\n2025-07-17 12:45:40.458 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6538e316-48f5-4682-aa55-3b9767bcec37] socks connection closed\n2025-07-17 12:45:40.458 [info] [command][0b5bce14-be34-4cc4-a346-f87cd069d283] Socket close event received\n2025-07-17 12:45:40.475 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53679 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:46:40.461 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:46:40.465 [info] [command][869ac4eb-3ce0-4a89-8d92-7fa8532bae63] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""869ac4eb-3ce0-4a89-8d92-7fa8532bae63""}\n2025-07-17 12:46:40.465 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c212c7e1-3c6f-455c-9b4c-e7591d29b8ae] received connection request\n2025-07-17 12:46:40.467 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:46:40.481 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c212c7e1-3c6f-455c-9b4c-e7591d29b8ae] socks forwarding established\n2025-07-17 12:46:40.510 [info] [command][869ac4eb-3ce0-4a89-8d92-7fa8532bae63] Process exited with code 0\n2025-07-17 12:46:40.510 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c212c7e1-3c6f-455c-9b4c-e7591d29b8ae] socks connection closed\n2025-07-17 12:46:40.510 [info] [command][869ac4eb-3ce0-4a89-8d92-7fa8532bae63] Socket close event received\n2025-07-17 12:46:40.524 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53700 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:47:40.511 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:47:40.514 [info] [command][f3db9a9e-9b2f-457d-88f3-402b8c191999] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f3db9a9e-9b2f-457d-88f3-402b8c191999""}\n2025-07-17 12:47:40.514 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][25828085-9332-4ff3-b5bd-ac2d7d5fe0e7] received connection request\n2025-07-17 12:47:40.514 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:47:40.571 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][25828085-9332-4ff3-b5bd-ac2d7d5fe0e7] socks forwarding established\n2025-07-17 12:47:40.602 [info] [command][f3db9a9e-9b2f-457d-88f3-402b8c191999] Process exited with code 0\n2025-07-17 12:47:40.602 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][25828085-9332-4ff3-b5bd-ac2d7d5fe0e7] socks connection closed\n2025-07-17 12:47:40.602 [info] [command][f3db9a9e-9b2f-457d-88f3-402b8c191999] Socket close event received\n2025-07-17 12:47:40.618 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53724 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:48:40.607 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:48:40.609 [info] [command][8a6a0845-ffb9-4e55-8291-fa74d8b0b792] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8a6a0845-ffb9-4e55-8291-fa74d8b0b792""}\n2025-07-17 12:48:40.610 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b9f3e5be-c27e-4fc6-bd44-db7567efd06f] received connection request\n2025-07-17 12:48:40.610 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:48:40.626 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b9f3e5be-c27e-4fc6-bd44-db7567efd06f] socks forwarding established\n2025-07-17 12:48:40.661 [info] [command][8a6a0845-ffb9-4e55-8291-fa74d8b0b792] Process exited with code 0\n2025-07-17 12:48:40.661 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b9f3e5be-c27e-4fc6-bd44-db7567efd06f] socks connection closed\n2025-07-17 12:48:40.661 [info] [command][8a6a0845-ffb9-4e55-8291-fa74d8b0b792] Socket close event received\n2025-07-17 12:48:40.678 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53762 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:49:40.665 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:49:40.668 [info] [command][5f3dbdf4-a505-4daf-b4e4-3981e68059e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5f3dbdf4-a505-4daf-b4e4-3981e68059e3""}\n2025-07-17 12:49:40.669 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][536df644-378d-4c00-ab0d-5ded73f630a7] received connection request\n2025-07-17 12:49:40.669 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:49:40.685 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][536df644-378d-4c00-ab0d-5ded73f630a7] socks forwarding established\n2025-07-17 12:49:40.716 [info] [command][5f3dbdf4-a505-4daf-b4e4-3981e68059e3] Process exited with code 0\n2025-07-17 12:49:40.717 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][536df644-378d-4c00-ab0d-5ded73f630a7] socks connection closed\n2025-07-17 12:49:40.717 [info] [command][5f3dbdf4-a505-4daf-b4e4-3981e68059e3] Socket close event received\n2025-07-17 12:49:40.731 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53790 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:50:40.722 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:50:40.724 [info] [command][0b60a964-52b4-40a2-8878-78aa9838c3b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0b60a964-52b4-40a2-8878-78aa9838c3b1""}\n2025-07-17 12:50:40.724 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][df7bb98b-bb12-4d4b-86fd-7a476bfe1b0f] received connection request\n2025-07-17 12:50:40.725 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:50:40.746 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][df7bb98b-bb12-4d4b-86fd-7a476bfe1b0f] socks forwarding established\n2025-07-17 12:50:40.785 [info] [command][0b60a964-52b4-40a2-8878-78aa9838c3b1] Process exited with code 0\n2025-07-17 12:50:40.785 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][df7bb98b-bb12-4d4b-86fd-7a476bfe1b0f] socks connection closed\n2025-07-17 12:50:40.786 [info] [command][0b60a964-52b4-40a2-8878-78aa9838c3b1] Socket close event received\n2025-07-17 12:50:40.801 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53844 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:51:40.790 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:51:40.793 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][30b983d6-bb5c-4182-90c6-ae09a563e9f6] received connection request\n2025-07-17 12:51:40.793 [info] [command][b9eb525a-c00c-4e10-aef4-02f952231162] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b9eb525a-c00c-4e10-aef4-02f952231162""}\n2025-07-17 12:51:40.793 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:51:40.807 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][30b983d6-bb5c-4182-90c6-ae09a563e9f6] socks forwarding established\n2025-07-17 12:51:40.836 [info] [command][b9eb525a-c00c-4e10-aef4-02f952231162] Process exited with code 0\n2025-07-17 12:51:40.836 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][30b983d6-bb5c-4182-90c6-ae09a563e9f6] socks connection closed\n2025-07-17 12:51:40.837 [info] [command][b9eb525a-c00c-4e10-aef4-02f952231162] Socket close event received\n2025-07-17 12:51:40.852 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53869 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:52:40.839 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:52:40.843 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][19a47f26-cc85-41a2-8ce5-4b5b7a4a5fc6] received connection request\n2025-07-17 12:52:40.843 [info] [command][9606514d-60fe-42f0-bbc4-4cbfa78cc431] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9606514d-60fe-42f0-bbc4-4cbfa78cc431""}\n2025-07-17 12:52:40.843 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:52:40.861 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][19a47f26-cc85-41a2-8ce5-4b5b7a4a5fc6] socks forwarding established\n2025-07-17 12:52:40.894 [info] [command][9606514d-60fe-42f0-bbc4-4cbfa78cc431] Process exited with code 0\n2025-07-17 12:52:40.894 [info] [command][9606514d-60fe-42f0-bbc4-4cbfa78cc431] Socket close event received\n2025-07-17 12:52:40.896 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][19a47f26-cc85-41a2-8ce5-4b5b7a4a5fc6] socks connection closed\n2025-07-17 12:52:40.909 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53891 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:53:40.898 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:53:40.901 [info] [command][0214be88-2543-4331-aec0-09f594b9949d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0214be88-2543-4331-aec0-09f594b9949d""}\n2025-07-17 12:53:40.902 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4d6466ca-3759-437d-9558-3dbd5f157d28] received connection request\n2025-07-17 12:53:40.903 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:53:40.917 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4d6466ca-3759-437d-9558-3dbd5f157d28] socks forwarding established\n2025-07-17 12:53:40.944 [info] [command][0214be88-2543-4331-aec0-09f594b9949d] Process exited with code 0\n2025-07-17 12:53:40.945 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4d6466ca-3759-437d-9558-3dbd5f157d28] socks connection closed\n2025-07-17 12:53:40.945 [info] [command][0214be88-2543-4331-aec0-09f594b9949d] Socket close event received\n2025-07-17 12:53:40.960 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53927 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:54:40.946 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:54:40.948 [info] [command][63aa5ee1-f1e7-4143-8e33-6fd9ad96c55c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""63aa5ee1-f1e7-4143-8e33-6fd9ad96c55c""}\n2025-07-17 12:54:40.948 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9fecaac2-362c-4047-9383-ca1cba9d651c] received connection request\n2025-07-17 12:54:40.948 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:54:41.040 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9fecaac2-362c-4047-9383-ca1cba9d651c] socks forwarding established\n2025-07-17 12:54:41.074 [info] [command][63aa5ee1-f1e7-4143-8e33-6fd9ad96c55c] Process exited with code 0\n2025-07-17 12:54:41.074 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9fecaac2-362c-4047-9383-ca1cba9d651c] socks connection closed\n2025-07-17 12:54:41.074 [info] [command][63aa5ee1-f1e7-4143-8e33-6fd9ad96c55c] Socket close event received\n2025-07-17 12:54:41.090 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 53952 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:55:41.078 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:55:41.080 [info] [command][4eaaa748-7464-4c97-8398-c25b7477ef3b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4eaaa748-7464-4c97-8398-c25b7477ef3b""}\n2025-07-17 12:55:41.081 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a87ce248-14f7-40c1-94e3-f47f0a429c86] received connection request\n2025-07-17 12:55:41.082 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:55:41.097 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a87ce248-14f7-40c1-94e3-f47f0a429c86] socks forwarding established\n2025-07-17 12:55:41.125 [info] [command][4eaaa748-7464-4c97-8398-c25b7477ef3b] Process exited with code 0\n2025-07-17 12:55:41.125 [info] [command][4eaaa748-7464-4c97-8398-c25b7477ef3b] Socket close event received\n2025-07-17 12:55:41.126 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a87ce248-14f7-40c1-94e3-f47f0a429c86] socks connection closed\n2025-07-17 12:55:41.141 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54011 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:56:41.130 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:56:41.132 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][286d2761-dc33-4ac7-9c7e-851db742bcc5] received connection request\n2025-07-17 12:56:41.133 [info] [command][5dfd9784-5503-4fe4-a238-c0259bef2bc4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5dfd9784-5503-4fe4-a238-c0259bef2bc4""}\n2025-07-17 12:56:41.133 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:56:41.151 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][286d2761-dc33-4ac7-9c7e-851db742bcc5] socks forwarding established\n2025-07-17 12:56:41.181 [info] [command][5dfd9784-5503-4fe4-a238-c0259bef2bc4] Process exited with code 0\n2025-07-17 12:56:41.181 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][286d2761-dc33-4ac7-9c7e-851db742bcc5] socks connection closed\n2025-07-17 12:56:41.181 [info] [command][5dfd9784-5503-4fe4-a238-c0259bef2bc4] Socket close event received\n2025-07-17 12:56:41.203 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54036 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:57:41.184 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:57:41.186 [info] [command][647eac89-7116-4da5-b71d-a344868ac014] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""647eac89-7116-4da5-b71d-a344868ac014""}\n2025-07-17 12:57:41.187 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][06d345c2-998e-4c04-981d-782e15d860e2] received connection request\n2025-07-17 12:57:41.188 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:57:41.206 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][06d345c2-998e-4c04-981d-782e15d860e2] socks forwarding established\n2025-07-17 12:57:41.251 [info] [command][647eac89-7116-4da5-b71d-a344868ac014] Process exited with code 0\n2025-07-17 12:57:41.252 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][06d345c2-998e-4c04-981d-782e15d860e2] socks connection closed\n2025-07-17 12:57:41.252 [info] [command][647eac89-7116-4da5-b71d-a344868ac014] Socket close event received\n2025-07-17 12:57:41.267 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54068 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:58:41.253 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:58:41.256 [info] [command][c01370a6-3ecb-46ed-a53b-fa31e7f103a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c01370a6-3ecb-46ed-a53b-fa31e7f103a0""}\n2025-07-17 12:58:41.257 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][510a9888-a28c-47ea-811f-5cefda132371] received connection request\n2025-07-17 12:58:41.258 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:58:41.273 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][510a9888-a28c-47ea-811f-5cefda132371] socks forwarding established\n2025-07-17 12:58:41.301 [info] [command][c01370a6-3ecb-46ed-a53b-fa31e7f103a0] Process exited with code 0\n2025-07-17 12:58:41.302 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][510a9888-a28c-47ea-811f-5cefda132371] socks connection closed\n2025-07-17 12:58:41.302 [info] [command][c01370a6-3ecb-46ed-a53b-fa31e7f103a0] Socket close event received\n2025-07-17 12:58:41.316 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54101 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 12:59:41.307 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 12:59:41.310 [info] [command][dc5c59aa-67d0-477c-96f6-5646d233d61a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""dc5c59aa-67d0-477c-96f6-5646d233d61a""}\n2025-07-17 12:59:41.311 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d1eb68a7-1cd9-4590-b8dc-0206c81965e0] received connection request\n2025-07-17 12:59:41.311 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 12:59:41.327 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d1eb68a7-1cd9-4590-b8dc-0206c81965e0] socks forwarding established\n2025-07-17 12:59:41.444 [info] [command][dc5c59aa-67d0-477c-96f6-5646d233d61a] Process exited with code 0\n2025-07-17 12:59:41.445 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d1eb68a7-1cd9-4590-b8dc-0206c81965e0] socks connection closed\n2025-07-17 12:59:41.445 [info] [command][dc5c59aa-67d0-477c-96f6-5646d233d61a] Socket close event received\n2025-07-17 12:59:41.465 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54125 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:00:41.450 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:00:41.451 [info] [command][77608d4a-9bfd-4dad-813f-96693f49817f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""77608d4a-9bfd-4dad-813f-96693f49817f""}\n2025-07-17 13:00:41.452 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1948e8fc-2a8f-4761-93c1-401dbec55650] received connection request\n2025-07-17 13:00:41.452 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:00:41.470 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1948e8fc-2a8f-4761-93c1-401dbec55650] socks forwarding established\n2025-07-17 13:00:41.497 [info] [command][77608d4a-9bfd-4dad-813f-96693f49817f] Process exited with code 0\n2025-07-17 13:00:41.497 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1948e8fc-2a8f-4761-93c1-401dbec55650] socks connection closed\n2025-07-17 13:00:41.497 [info] [command][77608d4a-9bfd-4dad-813f-96693f49817f] Socket close event received\n2025-07-17 13:00:41.511 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54173 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:01:41.498 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:01:41.500 [info] [command][2293fe3a-1059-44f1-a73b-75935b70f972] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2293fe3a-1059-44f1-a73b-75935b70f972""}\n2025-07-17 13:01:41.501 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c7fef2b7-9d11-4e39-ade2-7ba667a1f6dc] received connection request\n2025-07-17 13:01:41.501 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:01:41.517 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c7fef2b7-9d11-4e39-ade2-7ba667a1f6dc] socks forwarding established\n2025-07-17 13:01:41.546 [info] [command][2293fe3a-1059-44f1-a73b-75935b70f972] Process exited with code 0\n2025-07-17 13:01:41.547 [info] [command][2293fe3a-1059-44f1-a73b-75935b70f972] Socket close event received\n2025-07-17 13:01:41.547 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c7fef2b7-9d11-4e39-ade2-7ba667a1f6dc] socks connection closed\n2025-07-17 13:01:41.563 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54204 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:02:41.548 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:02:41.552 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a1ffaa04-00e0-443b-ba0d-fda013661bb2] received connection request\n2025-07-17 13:02:41.552 [info] [command][5eb7a52b-f1e0-485e-a822-4e019ca3a467] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5eb7a52b-f1e0-485e-a822-4e019ca3a467""}\n2025-07-17 13:02:41.552 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:02:41.569 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a1ffaa04-00e0-443b-ba0d-fda013661bb2] socks forwarding established\n2025-07-17 13:02:41.598 [info] [command][5eb7a52b-f1e0-485e-a822-4e019ca3a467] Process exited with code 0\n2025-07-17 13:02:41.599 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a1ffaa04-00e0-443b-ba0d-fda013661bb2] socks connection closed\n2025-07-17 13:02:41.599 [info] [command][5eb7a52b-f1e0-485e-a822-4e019ca3a467] Socket close event received\n2025-07-17 13:02:41.623 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54229 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:03:41.601 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:03:41.602 [info] [command][6aac535a-0c03-4226-9dd1-dbf3b58a2671] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6aac535a-0c03-4226-9dd1-dbf3b58a2671""}\n2025-07-17 13:03:41.603 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6ad73cd0-9333-41f9-843f-dce4df5fee7a] received connection request\n2025-07-17 13:03:41.603 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:03:41.619 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6ad73cd0-9333-41f9-843f-dce4df5fee7a] socks forwarding established\n2025-07-17 13:03:41.646 [info] [command][6aac535a-0c03-4226-9dd1-dbf3b58a2671] Process exited with code 0\n2025-07-17 13:03:41.646 [info] [command][6aac535a-0c03-4226-9dd1-dbf3b58a2671] Socket close event received\n2025-07-17 13:03:41.647 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6ad73cd0-9333-41f9-843f-dce4df5fee7a] socks connection closed\n2025-07-17 13:03:41.661 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54269 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:04:41.648 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:04:41.653 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b47fc0fb-b712-47dd-9d69-c4ed20991f8c] received connection request\n2025-07-17 13:04:41.654 [info] [command][d101c846-3b00-487d-89ad-fb119ba2af0f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""d101c846-3b00-487d-89ad-fb119ba2af0f""}\n2025-07-17 13:04:41.654 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:04:41.678 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b47fc0fb-b712-47dd-9d69-c4ed20991f8c] socks forwarding established\n2025-07-17 13:04:41.704 [info] [command][d101c846-3b00-487d-89ad-fb119ba2af0f] Process exited with code 0\n2025-07-17 13:04:41.704 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b47fc0fb-b712-47dd-9d69-c4ed20991f8c] socks connection closed\n2025-07-17 13:04:41.704 [info] [command][d101c846-3b00-487d-89ad-fb119ba2af0f] Socket close event received\n2025-07-17 13:04:41.718 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54296 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:05:41.707 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:05:41.708 [info] [command][db78764b-91f3-4e20-8cae-9c2ae36c2cb7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""db78764b-91f3-4e20-8cae-9c2ae36c2cb7""}\n2025-07-17 13:05:41.709 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][69d38c31-fc50-46f5-9d29-f3dcb205efad] received connection request\n2025-07-17 13:05:41.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:05:41.726 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][69d38c31-fc50-46f5-9d29-f3dcb205efad] socks forwarding established\n2025-07-17 13:05:41.754 [info] [command][db78764b-91f3-4e20-8cae-9c2ae36c2cb7] Process exited with code 0\n2025-07-17 13:05:41.754 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][69d38c31-fc50-46f5-9d29-f3dcb205efad] socks connection closed\n2025-07-17 13:05:41.754 [info] [command][db78764b-91f3-4e20-8cae-9c2ae36c2cb7] Socket close event received\n2025-07-17 13:05:41.773 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54353 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:06:41.756 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:06:41.759 [info] [command][706c1633-5eb5-4cfc-8cb2-ddf5a30c2c1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""706c1633-5eb5-4cfc-8cb2-ddf5a30c2c1a""}\n2025-07-17 13:06:41.760 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b2b230df-9153-42e0-aade-b93407d2d2ce] received connection request\n2025-07-17 13:06:41.760 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:06:41.775 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b2b230df-9153-42e0-aade-b93407d2d2ce] socks forwarding established\n2025-07-17 13:06:41.802 [info] [command][706c1633-5eb5-4cfc-8cb2-ddf5a30c2c1a] Process exited with code 0\n2025-07-17 13:06:41.802 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b2b230df-9153-42e0-aade-b93407d2d2ce] socks connection closed\n2025-07-17 13:06:41.802 [info] [command][706c1633-5eb5-4cfc-8cb2-ddf5a30c2c1a] Socket close event received\n2025-07-17 13:06:41.817 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54403 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:07:41.808 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:07:41.810 [info] [command][2abef6f8-982d-4aba-9dcb-8b920ebaed31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2abef6f8-982d-4aba-9dcb-8b920ebaed31""}\n2025-07-17 13:07:41.810 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][68d96883-4d86-4125-81e8-ff5f82cb7388] received connection request\n2025-07-17 13:07:41.811 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:07:41.827 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][68d96883-4d86-4125-81e8-ff5f82cb7388] socks forwarding established\n2025-07-17 13:07:41.855 [info] [command][2abef6f8-982d-4aba-9dcb-8b920ebaed31] Process exited with code 0\n2025-07-17 13:07:41.855 [info] [command][2abef6f8-982d-4aba-9dcb-8b920ebaed31] Socket close event received\n2025-07-17 13:07:41.856 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][68d96883-4d86-4125-81e8-ff5f82cb7388] socks connection closed\n2025-07-17 13:07:41.875 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54422 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:08:41.858 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:08:41.859 [info] [command][cab8b783-ce28-4168-88d3-af219632bb9f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""cab8b783-ce28-4168-88d3-af219632bb9f""}\n2025-07-17 13:08:41.860 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3fc38474-8420-4f1b-bada-448c0cf3d894] received connection request\n2025-07-17 13:08:41.860 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:08:41.877 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3fc38474-8420-4f1b-bada-448c0cf3d894] socks forwarding established\n2025-07-17 13:08:41.905 [info] [command][cab8b783-ce28-4168-88d3-af219632bb9f] Process exited with code 0\n2025-07-17 13:08:41.905 [info] [command][cab8b783-ce28-4168-88d3-af219632bb9f] Socket close event received\n2025-07-17 13:08:41.905 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3fc38474-8420-4f1b-bada-448c0cf3d894] socks connection closed\n2025-07-17 13:08:41.921 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54457 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:09:41.908 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:09:41.910 [info] [command][94740e08-3081-4608-a65e-857e59347788] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""94740e08-3081-4608-a65e-857e59347788""}\n2025-07-17 13:09:41.910 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6aa194ed-fd7e-4fef-bb5d-1e2390194dd2] received connection request\n2025-07-17 13:09:41.911 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:09:41.927 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6aa194ed-fd7e-4fef-bb5d-1e2390194dd2] socks forwarding established\n2025-07-17 13:09:41.955 [info] [command][94740e08-3081-4608-a65e-857e59347788] Process exited with code 0\n2025-07-17 13:09:41.955 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6aa194ed-fd7e-4fef-bb5d-1e2390194dd2] socks connection closed\n2025-07-17 13:09:41.956 [info] [command][94740e08-3081-4608-a65e-857e59347788] Socket close event received\n2025-07-17 13:09:41.970 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54491 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:10:41.957 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:10:41.959 [info] [command][97f05feb-4077-4356-ad46-486d7a13b5f1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""97f05feb-4077-4356-ad46-486d7a13b5f1""}\n2025-07-17 13:10:41.960 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][86c4ca8b-1b64-4365-85cd-34a36e98948a] received connection request\n2025-07-17 13:10:41.960 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:10:41.977 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][86c4ca8b-1b64-4365-85cd-34a36e98948a] socks forwarding established\n2025-07-17 13:10:42.008 [info] [command][97f05feb-4077-4356-ad46-486d7a13b5f1] Process exited with code 0\n2025-07-17 13:10:42.009 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][86c4ca8b-1b64-4365-85cd-34a36e98948a] socks connection closed\n2025-07-17 13:10:42.009 [info] [command][97f05feb-4077-4356-ad46-486d7a13b5f1] Socket close event received\n2025-07-17 13:10:42.025 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54563 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:11:42.009 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:11:42.011 [info] [command][b008b62b-f8ec-43da-9235-90a95ea862f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b008b62b-f8ec-43da-9235-90a95ea862f3""}\n2025-07-17 13:11:42.011 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][2dbc937a-1bf9-4233-82b7-63b25915eeea] received connection request\n2025-07-17 13:11:42.012 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:11:42.027 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2dbc937a-1bf9-4233-82b7-63b25915eeea] socks forwarding established\n2025-07-17 13:11:42.060 [info] [command][b008b62b-f8ec-43da-9235-90a95ea862f3] Process exited with code 0\n2025-07-17 13:11:42.060 [info] [command][b008b62b-f8ec-43da-9235-90a95ea862f3] Socket close event received\n2025-07-17 13:11:42.061 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2dbc937a-1bf9-4233-82b7-63b25915eeea] socks connection closed\n2025-07-17 13:11:42.077 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54580 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:12:42.065 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:12:42.068 [info] [command][bcb40ad7-60e4-4dbb-b78d-bfc67e71fd62] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""bcb40ad7-60e4-4dbb-b78d-bfc67e71fd62""}\n2025-07-17 13:12:42.069 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7b42bb5c-e329-4824-8b5c-91c7820b613a] received connection request\n2025-07-17 13:12:42.069 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:12:42.085 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7b42bb5c-e329-4824-8b5c-91c7820b613a] socks forwarding established\n2025-07-17 13:12:42.109 [info] [command][bcb40ad7-60e4-4dbb-b78d-bfc67e71fd62] Process exited with code 0\n2025-07-17 13:12:42.109 [info] [command][bcb40ad7-60e4-4dbb-b78d-bfc67e71fd62] Socket close event received\n2025-07-17 13:12:42.110 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7b42bb5c-e329-4824-8b5c-91c7820b613a] socks connection closed\n2025-07-17 13:12:42.124 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54602 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:13:42.113 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:13:42.115 [info] [command][3856401d-c663-45b2-9dce-bbbccfa4f5ad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""3856401d-c663-45b2-9dce-bbbccfa4f5ad""}\n2025-07-17 13:13:42.116 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9e8cc073-205c-4754-8c15-0bb67b002063] received connection request\n2025-07-17 13:13:42.117 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:13:42.200 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9e8cc073-205c-4754-8c15-0bb67b002063] socks forwarding established\n2025-07-17 13:13:42.230 [info] [command][3856401d-c663-45b2-9dce-bbbccfa4f5ad] Process exited with code 0\n2025-07-17 13:13:42.230 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9e8cc073-205c-4754-8c15-0bb67b002063] socks connection closed\n2025-07-17 13:13:42.230 [info] [command][3856401d-c663-45b2-9dce-bbbccfa4f5ad] Socket close event received\n2025-07-17 13:13:42.245 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54639 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:14:42.235 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:14:42.237 [info] [command][426261ff-1688-48f5-bd60-359412255c77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""426261ff-1688-48f5-bd60-359412255c77""}\n2025-07-17 13:14:42.238 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5d5f2af0-621c-4a1b-90a6-72d90cf67336] received connection request\n2025-07-17 13:14:42.238 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:14:42.253 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5d5f2af0-621c-4a1b-90a6-72d90cf67336] socks forwarding established\n2025-07-17 13:14:42.289 [info] [command][426261ff-1688-48f5-bd60-359412255c77] Process exited with code 0\n2025-07-17 13:14:42.289 [info] [command][426261ff-1688-48f5-bd60-359412255c77] Socket close event received\n2025-07-17 13:14:42.290 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5d5f2af0-621c-4a1b-90a6-72d90cf67336] socks connection closed\n2025-07-17 13:14:42.306 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54659 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:15:42.294 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:15:42.296 [info] [command][e7a1470c-12e9-4fe3-b2e8-11653343286c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e7a1470c-12e9-4fe3-b2e8-11653343286c""}\n2025-07-17 13:15:42.297 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c2343d76-4bfb-4429-983c-4db233a7777f] received connection request\n2025-07-17 13:15:42.298 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:15:42.313 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c2343d76-4bfb-4429-983c-4db233a7777f] socks forwarding established\n2025-07-17 13:15:42.342 [info] [command][e7a1470c-12e9-4fe3-b2e8-11653343286c] Process exited with code 0\n2025-07-17 13:15:42.343 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c2343d76-4bfb-4429-983c-4db233a7777f] socks connection closed\n2025-07-17 13:15:42.343 [info] [command][e7a1470c-12e9-4fe3-b2e8-11653343286c] Socket close event received\n2025-07-17 13:15:42.359 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54687 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:16:42.349 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:16:42.351 [info] [command][bb194e28-92bd-4210-96aa-57e533e9c511] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""bb194e28-92bd-4210-96aa-57e533e9c511""}\n2025-07-17 13:16:42.352 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f6e6f552-eb83-40a2-a916-063727c8aad5] received connection request\n2025-07-17 13:16:42.352 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:16:42.376 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f6e6f552-eb83-40a2-a916-063727c8aad5] socks forwarding established\n2025-07-17 13:16:42.404 [info] [command][bb194e28-92bd-4210-96aa-57e533e9c511] Process exited with code 0\n2025-07-17 13:16:42.404 [info] [command][bb194e28-92bd-4210-96aa-57e533e9c511] Socket close event received\n2025-07-17 13:16:42.405 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f6e6f552-eb83-40a2-a916-063727c8aad5] socks connection closed\n2025-07-17 13:16:42.425 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54736 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:17:42.404 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:17:42.407 [info] [command][5263e3f8-13fa-419f-9cf3-afc71e45e886] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5263e3f8-13fa-419f-9cf3-afc71e45e886""}\n2025-07-17 13:17:42.407 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4c570900-d3f5-4a93-8e27-46d68752d34b] received connection request\n2025-07-17 13:17:42.408 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:17:42.425 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4c570900-d3f5-4a93-8e27-46d68752d34b] socks forwarding established\n2025-07-17 13:17:42.454 [info] [command][5263e3f8-13fa-419f-9cf3-afc71e45e886] Process exited with code 0\n2025-07-17 13:17:42.454 [info] [command][5263e3f8-13fa-419f-9cf3-afc71e45e886] Socket close event received\n2025-07-17 13:17:42.455 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4c570900-d3f5-4a93-8e27-46d68752d34b] socks connection closed\n2025-07-17 13:17:42.471 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54762 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:18:42.463 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:18:42.465 [info] [command][8ff3eb3d-1d12-47fe-acd4-5d4e874dacf4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8ff3eb3d-1d12-47fe-acd4-5d4e874dacf4""}\n2025-07-17 13:18:42.466 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9866ee6e-efa0-4590-a9ba-63cffc5c438f] received connection request\n2025-07-17 13:18:42.467 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:18:42.515 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9866ee6e-efa0-4590-a9ba-63cffc5c438f] socks forwarding established\n2025-07-17 13:18:42.544 [info] [command][8ff3eb3d-1d12-47fe-acd4-5d4e874dacf4] Process exited with code 0\n2025-07-17 13:18:42.544 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9866ee6e-efa0-4590-a9ba-63cffc5c438f] socks connection closed\n2025-07-17 13:18:42.545 [info] [command][8ff3eb3d-1d12-47fe-acd4-5d4e874dacf4] Socket close event received\n2025-07-17 13:18:42.559 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54800 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:19:42.554 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:19:42.556 [info] [command][f952c08f-7377-4ae4-b599-ba8d9ad2a000] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f952c08f-7377-4ae4-b599-ba8d9ad2a000""}\n2025-07-17 13:19:42.557 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1e329611-d2e1-41e4-aee0-a032b9a0570e] received connection request\n2025-07-17 13:19:42.557 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:19:42.576 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1e329611-d2e1-41e4-aee0-a032b9a0570e] socks forwarding established\n2025-07-17 13:19:42.606 [info] [command][f952c08f-7377-4ae4-b599-ba8d9ad2a000] Process exited with code 0\n2025-07-17 13:19:42.606 [info] [command][f952c08f-7377-4ae4-b599-ba8d9ad2a000] Socket close event received\n2025-07-17 13:19:42.609 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1e329611-d2e1-41e4-aee0-a032b9a0570e] socks connection closed\n2025-07-17 13:19:42.632 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54834 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:20:42.610 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:20:42.612 [info] [command][691ec548-f225-49bf-a955-fce6833db383] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""691ec548-f225-49bf-a955-fce6833db383""}\n2025-07-17 13:20:42.613 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3238da69-3b87-429f-ae29-9498cdfa9301] received connection request\n2025-07-17 13:20:42.613 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:20:42.634 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3238da69-3b87-429f-ae29-9498cdfa9301] socks forwarding established\n2025-07-17 13:20:42.662 [info] [command][691ec548-f225-49bf-a955-fce6833db383] Process exited with code 0\n2025-07-17 13:20:42.662 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3238da69-3b87-429f-ae29-9498cdfa9301] socks connection closed\n2025-07-17 13:20:42.662 [info] [command][691ec548-f225-49bf-a955-fce6833db383] Socket close event received\n2025-07-17 13:20:42.676 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54861 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:21:42.666 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:21:42.668 [info] [command][d95994df-eda8-42d2-bccf-667c66107bf6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""d95994df-eda8-42d2-bccf-667c66107bf6""}\n2025-07-17 13:21:42.669 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e90d0fe5-9450-4c49-ab88-76cc057739a5] received connection request\n2025-07-17 13:21:42.669 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:21:42.687 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e90d0fe5-9450-4c49-ab88-76cc057739a5] socks forwarding established\n2025-07-17 13:21:42.714 [info] [command][d95994df-eda8-42d2-bccf-667c66107bf6] Process exited with code 0\n2025-07-17 13:21:42.714 [info] [command][d95994df-eda8-42d2-bccf-667c66107bf6] Socket close event received\n2025-07-17 13:21:42.714 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e90d0fe5-9450-4c49-ab88-76cc057739a5] socks connection closed\n2025-07-17 13:21:42.729 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54913 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:22:42.721 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:22:42.723 [info] [command][acde559a-da14-4448-8137-f00985a3d485] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""acde559a-da14-4448-8137-f00985a3d485""}\n2025-07-17 13:22:42.724 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e18c0617-cf30-45ab-b128-6fc3aabe80fe] received connection request\n2025-07-17 13:22:42.724 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:22:42.748 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e18c0617-cf30-45ab-b128-6fc3aabe80fe] socks forwarding established\n2025-07-17 13:22:42.775 [info] [command][acde559a-da14-4448-8137-f00985a3d485] Process exited with code 0\n2025-07-17 13:22:42.775 [info] [command][acde559a-da14-4448-8137-f00985a3d485] Socket close event received\n2025-07-17 13:22:42.776 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e18c0617-cf30-45ab-b128-6fc3aabe80fe] socks connection closed\n2025-07-17 13:22:42.790 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54932 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:23:42.782 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:23:42.784 [info] [command][ee4f2aef-0662-4502-856d-4867469ff31b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ee4f2aef-0662-4502-856d-4867469ff31b""}\n2025-07-17 13:23:42.785 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5e3e167f-43af-475a-bac7-0ef1d887aa99] received connection request\n2025-07-17 13:23:42.786 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:23:42.801 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5e3e167f-43af-475a-bac7-0ef1d887aa99] socks forwarding established\n2025-07-17 13:23:42.830 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5e3e167f-43af-475a-bac7-0ef1d887aa99] socks connection closed\n2025-07-17 13:23:42.831 [info] [command][ee4f2aef-0662-4502-856d-4867469ff31b] Process exited with code 0\n2025-07-17 13:23:42.831 [info] [command][ee4f2aef-0662-4502-856d-4867469ff31b] Socket close event received\n2025-07-17 13:23:42.847 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54969 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:24:42.840 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:24:42.842 [info] [command][ee9acb62-f945-4f73-8d0d-2a11e32dc5aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ee9acb62-f945-4f73-8d0d-2a11e32dc5aa""}\n2025-07-17 13:24:42.842 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ac1d9a28-2265-4256-b992-78c2d3e78682] received connection request\n2025-07-17 13:24:42.843 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:24:42.862 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ac1d9a28-2265-4256-b992-78c2d3e78682] socks forwarding established\n2025-07-17 13:24:42.893 [info] [command][ee9acb62-f945-4f73-8d0d-2a11e32dc5aa] Process exited with code 0\n2025-07-17 13:24:42.893 [info] [command][ee9acb62-f945-4f73-8d0d-2a11e32dc5aa] Socket close event received\n2025-07-17 13:24:42.893 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ac1d9a28-2265-4256-b992-78c2d3e78682] socks connection closed\n2025-07-17 13:24:42.911 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 54992 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:25:42.900 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:25:42.902 [info] [command][55c772fa-ff59-46d2-b9b0-9e4fe4ecba10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""55c772fa-ff59-46d2-b9b0-9e4fe4ecba10""}\n2025-07-17 13:25:42.902 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][81782993-f5bd-465d-8fb8-4be3b40b83fe] received connection request\n2025-07-17 13:25:42.903 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:25:42.924 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][81782993-f5bd-465d-8fb8-4be3b40b83fe] socks forwarding established\n2025-07-17 13:25:42.952 [info] [command][55c772fa-ff59-46d2-b9b0-9e4fe4ecba10] Process exited with code 0\n2025-07-17 13:25:42.953 [info] [command][55c772fa-ff59-46d2-b9b0-9e4fe4ecba10] Socket close event received\n2025-07-17 13:25:42.954 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][81782993-f5bd-465d-8fb8-4be3b40b83fe] socks connection closed\n2025-07-17 13:25:42.973 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55016 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:26:42.964 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:26:42.966 [info] [command][158f5e64-6d5f-4c5a-afa9-c0c2a446f40b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""158f5e64-6d5f-4c5a-afa9-c0c2a446f40b""}\n2025-07-17 13:26:42.967 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9bcab1bc-e7c3-43d6-8c64-4c46a26eec44] received connection request\n2025-07-17 13:26:42.967 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:26:42.983 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9bcab1bc-e7c3-43d6-8c64-4c46a26eec44] socks forwarding established\n2025-07-17 13:26:43.013 [info] [command][158f5e64-6d5f-4c5a-afa9-c0c2a446f40b] Process exited with code 0\n2025-07-17 13:26:43.013 [info] [command][158f5e64-6d5f-4c5a-afa9-c0c2a446f40b] Socket close event received\n2025-07-17 13:26:43.014 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9bcab1bc-e7c3-43d6-8c64-4c46a26eec44] socks connection closed\n2025-07-17 13:26:43.031 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55064 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:27:43.014 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:27:43.015 [info] [command][c96fb646-347d-4850-88ae-0683171b3fd1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c96fb646-347d-4850-88ae-0683171b3fd1""}\n2025-07-17 13:27:43.016 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b4a6275b-ff72-40f4-8ac2-fc6f3b3bf1ae] received connection request\n2025-07-17 13:27:43.017 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:27:43.033 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b4a6275b-ff72-40f4-8ac2-fc6f3b3bf1ae] socks forwarding established\n2025-07-17 13:27:43.062 [info] [command][c96fb646-347d-4850-88ae-0683171b3fd1] Process exited with code 0\n2025-07-17 13:27:43.062 [info] [command][c96fb646-347d-4850-88ae-0683171b3fd1] Socket close event received\n2025-07-17 13:27:43.063 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b4a6275b-ff72-40f4-8ac2-fc6f3b3bf1ae] socks connection closed\n2025-07-17 13:27:43.080 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55083 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:28:43.071 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:28:43.072 [info] [command][e949cef9-47f2-49ea-a032-a7ba8f8ef57c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e949cef9-47f2-49ea-a032-a7ba8f8ef57c""}\n2025-07-17 13:28:43.073 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6b3203b3-5464-4507-8da7-26c7d339be63] received connection request\n2025-07-17 13:28:43.073 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:28:43.095 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6b3203b3-5464-4507-8da7-26c7d339be63] socks forwarding established\n2025-07-17 13:28:43.126 [info] [command][e949cef9-47f2-49ea-a032-a7ba8f8ef57c] Process exited with code 0\n2025-07-17 13:28:43.127 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6b3203b3-5464-4507-8da7-26c7d339be63] socks connection closed\n2025-07-17 13:28:43.127 [info] [command][e949cef9-47f2-49ea-a032-a7ba8f8ef57c] Socket close event received\n2025-07-17 13:28:43.144 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55123 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:29:43.136 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:29:43.138 [info] [command][a43f0537-6aa4-4e9e-9af6-586807509c8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a43f0537-6aa4-4e9e-9af6-586807509c8f""}\n2025-07-17 13:29:43.138 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6561ddf5-9bc6-4b73-a657-ab428a315965] received connection request\n2025-07-17 13:29:43.139 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:29:43.155 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6561ddf5-9bc6-4b73-a657-ab428a315965] socks forwarding established\n2025-07-17 13:29:43.186 [info] [command][a43f0537-6aa4-4e9e-9af6-586807509c8f] Process exited with code 0\n2025-07-17 13:29:43.186 [info] [command][a43f0537-6aa4-4e9e-9af6-586807509c8f] Socket close event received\n2025-07-17 13:29:43.187 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6561ddf5-9bc6-4b73-a657-ab428a315965] socks connection closed\n2025-07-17 13:29:43.207 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55151 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:30:43.195 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:30:43.197 [info] [command][0ccd33ab-137f-4c94-953a-9c904fdf2736] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0ccd33ab-137f-4c94-953a-9c904fdf2736""}\n2025-07-17 13:30:43.198 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][214110e4-22a9-4535-bd1a-6b3b7957c7b9] received connection request\n2025-07-17 13:30:43.198 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:30:43.214 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][214110e4-22a9-4535-bd1a-6b3b7957c7b9] socks forwarding established\n2025-07-17 13:30:43.241 [info] [command][0ccd33ab-137f-4c94-953a-9c904fdf2736] Process exited with code 0\n2025-07-17 13:30:43.242 [info] [command][0ccd33ab-137f-4c94-953a-9c904fdf2736] Socket close event received\n2025-07-17 13:30:43.242 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][214110e4-22a9-4535-bd1a-6b3b7957c7b9] socks connection closed\n2025-07-17 13:30:43.257 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55171 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:31:43.247 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:31:43.249 [info] [command][58823212-6db1-4b75-a997-1c4905c6d51d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""58823212-6db1-4b75-a997-1c4905c6d51d""}\n2025-07-17 13:31:43.249 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d8c10999-4604-4549-a6ec-dc1221b4a6e6] received connection request\n2025-07-17 13:31:43.250 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:31:43.272 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d8c10999-4604-4549-a6ec-dc1221b4a6e6] socks forwarding established\n2025-07-17 13:31:43.304 [info] [command][58823212-6db1-4b75-a997-1c4905c6d51d] Process exited with code 0\n2025-07-17 13:31:43.304 [info] [command][58823212-6db1-4b75-a997-1c4905c6d51d] Socket close event received\n2025-07-17 13:31:43.305 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d8c10999-4604-4549-a6ec-dc1221b4a6e6] socks connection closed\n2025-07-17 13:31:43.320 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55216 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:32:43.311 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:32:43.312 [info] [command][ce070977-ca1c-45f9-b2a7-75021abaa8c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ce070977-ca1c-45f9-b2a7-75021abaa8c4""}\n2025-07-17 13:32:43.313 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e9d3b708-c029-431d-9358-7b86aa6e98a3] received connection request\n2025-07-17 13:32:43.314 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:32:43.329 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e9d3b708-c029-431d-9358-7b86aa6e98a3] socks forwarding established\n2025-07-17 13:32:43.364 [info] [command][ce070977-ca1c-45f9-b2a7-75021abaa8c4] Process exited with code 0\n2025-07-17 13:32:43.364 [info] [command][ce070977-ca1c-45f9-b2a7-75021abaa8c4] Socket close event received\n2025-07-17 13:32:43.365 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e9d3b708-c029-431d-9358-7b86aa6e98a3] socks connection closed\n2025-07-17 13:32:43.381 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55236 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:33:43.370 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:33:43.372 [info] [command][b2dbd326-5e64-4afb-909a-a96b458eab55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b2dbd326-5e64-4afb-909a-a96b458eab55""}\n2025-07-17 13:33:43.372 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8b501e64-a1ea-41ea-9d13-d656648113c0] received connection request\n2025-07-17 13:33:43.373 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:33:43.403 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8b501e64-a1ea-41ea-9d13-d656648113c0] socks forwarding established\n2025-07-17 13:33:43.453 [info] [command][b2dbd326-5e64-4afb-909a-a96b458eab55] Process exited with code 0\n2025-07-17 13:33:43.453 [info] [command][b2dbd326-5e64-4afb-909a-a96b458eab55] Socket close event received\n2025-07-17 13:33:43.465 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8b501e64-a1ea-41ea-9d13-d656648113c0] socks connection closed\n2025-07-17 13:33:43.487 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55276 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:34:43.459 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:34:43.460 [info] [command][4560bd8a-4fd3-46e6-9c60-d54f772d90db] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4560bd8a-4fd3-46e6-9c60-d54f772d90db""}\n2025-07-17 13:34:43.460 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][38be28ce-0f0d-4d6b-9e2e-852ac5d5d427] received connection request\n2025-07-17 13:34:43.461 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:34:43.476 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][38be28ce-0f0d-4d6b-9e2e-852ac5d5d427] socks forwarding established\n2025-07-17 13:34:43.512 [info] [command][4560bd8a-4fd3-46e6-9c60-d54f772d90db] Process exited with code 0\n2025-07-17 13:34:43.512 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][38be28ce-0f0d-4d6b-9e2e-852ac5d5d427] socks connection closed\n2025-07-17 13:34:43.512 [info] [command][4560bd8a-4fd3-46e6-9c60-d54f772d90db] Socket close event received\n2025-07-17 13:34:43.529 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55316 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:35:43.516 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:35:43.518 [info] [command][bd94b411-76ce-4e52-9d0f-c6b8ecdae49f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""bd94b411-76ce-4e52-9d0f-c6b8ecdae49f""}\n2025-07-17 13:35:43.518 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5a313815-61d6-41e1-8173-38a682882400] received connection request\n2025-07-17 13:35:43.518 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:35:43.540 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5a313815-61d6-41e1-8173-38a682882400] socks forwarding established\n2025-07-17 13:35:43.571 [info] [command][bd94b411-76ce-4e52-9d0f-c6b8ecdae49f] Process exited with code 0\n2025-07-17 13:35:43.571 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5a313815-61d6-41e1-8173-38a682882400] socks connection closed\n2025-07-17 13:35:43.571 [info] [command][bd94b411-76ce-4e52-9d0f-c6b8ecdae49f] Socket close event received\n2025-07-17 13:35:43.587 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55370 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:36:43.577 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:36:43.579 [info] [command][5dd02ec7-dcac-4050-8916-14f3388181ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5dd02ec7-dcac-4050-8916-14f3388181ed""}\n2025-07-17 13:36:43.580 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b3ac068b-4df3-4589-99a2-2a2f356e0cda] received connection request\n2025-07-17 13:36:43.580 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:36:43.650 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b3ac068b-4df3-4589-99a2-2a2f356e0cda] socks forwarding established\n2025-07-17 13:36:43.677 [info] [command][5dd02ec7-dcac-4050-8916-14f3388181ed] Process exited with code 0\n2025-07-17 13:36:43.678 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b3ac068b-4df3-4589-99a2-2a2f356e0cda] socks connection closed\n2025-07-17 13:36:43.678 [info] [command][5dd02ec7-dcac-4050-8916-14f3388181ed] Socket close event received\n2025-07-17 13:36:43.693 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55399 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:37:43.683 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:37:43.685 [info] [command][5d98906b-ba24-498a-8e1e-1c46d9a6fb3f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5d98906b-ba24-498a-8e1e-1c46d9a6fb3f""}\n2025-07-17 13:37:43.685 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e43e87b2-0a93-4fbe-9c6f-4d9f24dac4a7] received connection request\n2025-07-17 13:37:43.685 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:37:43.749 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e43e87b2-0a93-4fbe-9c6f-4d9f24dac4a7] socks forwarding established\n2025-07-17 13:37:43.778 [info] [command][5d98906b-ba24-498a-8e1e-1c46d9a6fb3f] Process exited with code 0\n2025-07-17 13:37:43.778 [info] [command][5d98906b-ba24-498a-8e1e-1c46d9a6fb3f] Socket close event received\n2025-07-17 13:37:43.778 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e43e87b2-0a93-4fbe-9c6f-4d9f24dac4a7] socks connection closed\n2025-07-17 13:37:43.797 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55455 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:38:43.782 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:38:43.785 [info] [command][dcc423fc-7454-40a8-b79a-96565750ef42] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""dcc423fc-7454-40a8-b79a-96565750ef42""}\n2025-07-17 13:38:43.786 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1142093f-51cd-4153-8db5-85410ac7893e] received connection request\n2025-07-17 13:38:43.787 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:38:43.806 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1142093f-51cd-4153-8db5-85410ac7893e] socks forwarding established\n2025-07-17 13:38:43.837 [info] [command][dcc423fc-7454-40a8-b79a-96565750ef42] Process exited with code 0\n2025-07-17 13:38:43.838 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1142093f-51cd-4153-8db5-85410ac7893e] socks connection closed\n2025-07-17 13:38:43.838 [info] [command][dcc423fc-7454-40a8-b79a-96565750ef42] Socket close event received\n2025-07-17 13:38:43.854 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55504 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:39:43.840 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:39:43.844 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][edf9a13c-3938-4576-b8ec-23bd342638a7] received connection request\n2025-07-17 13:39:43.845 [info] [command][91a3d949-0e92-4d8b-b8ce-32244617b6f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""91a3d949-0e92-4d8b-b8ce-32244617b6f6""}\n2025-07-17 13:39:43.845 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:39:43.866 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][edf9a13c-3938-4576-b8ec-23bd342638a7] socks forwarding established\n2025-07-17 13:39:43.894 [info] [command][91a3d949-0e92-4d8b-b8ce-32244617b6f6] Process exited with code 0\n2025-07-17 13:39:43.894 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][edf9a13c-3938-4576-b8ec-23bd342638a7] socks connection closed\n2025-07-17 13:39:43.894 [info] [command][91a3d949-0e92-4d8b-b8ce-32244617b6f6] Socket close event received\n2025-07-17 13:39:43.911 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55539 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:40:43.897 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:40:43.900 [info] [command][6a2b41b9-3a10-496b-9c86-d5a1b4e2c192] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6a2b41b9-3a10-496b-9c86-d5a1b4e2c192""}\n2025-07-17 13:40:43.901 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a5fa4e0c-dbb6-4afd-8c55-f089cce8ba2e] received connection request\n2025-07-17 13:40:43.901 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:40:43.919 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a5fa4e0c-dbb6-4afd-8c55-f089cce8ba2e] socks forwarding established\n2025-07-17 13:40:43.948 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a5fa4e0c-dbb6-4afd-8c55-f089cce8ba2e] socks connection closed\n2025-07-17 13:40:43.948 [info] [command][6a2b41b9-3a10-496b-9c86-d5a1b4e2c192] Process exited with code 0\n2025-07-17 13:40:43.949 [info] [command][6a2b41b9-3a10-496b-9c86-d5a1b4e2c192] Socket close event received\n2025-07-17 13:40:43.964 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55598 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:41:43.953 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:41:43.956 [info] [command][03e13744-cb2d-40d1-b3da-6aa34ec953df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""03e13744-cb2d-40d1-b3da-6aa34ec953df""}\n2025-07-17 13:41:43.957 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][54a12098-0025-48fe-950d-cd0bdca0a823] received connection request\n2025-07-17 13:41:43.957 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:41:44.058 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][54a12098-0025-48fe-950d-cd0bdca0a823] socks forwarding established\n2025-07-17 13:41:44.090 [info] [command][03e13744-cb2d-40d1-b3da-6aa34ec953df] Process exited with code 0\n2025-07-17 13:41:44.090 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][54a12098-0025-48fe-950d-cd0bdca0a823] socks connection closed\n2025-07-17 13:41:44.091 [info] [command][03e13744-cb2d-40d1-b3da-6aa34ec953df] Socket close event received\n2025-07-17 13:41:44.117 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55633 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:42:44.093 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:42:44.094 [info] [command][0ebab983-8617-4cce-a1c3-5beef0f38a04] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0ebab983-8617-4cce-a1c3-5beef0f38a04""}\n2025-07-17 13:42:44.095 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][623e5850-3430-49fd-9145-4c7bc81f0e87] received connection request\n2025-07-17 13:42:44.095 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:42:44.115 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][623e5850-3430-49fd-9145-4c7bc81f0e87] socks forwarding established\n2025-07-17 13:42:44.142 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][623e5850-3430-49fd-9145-4c7bc81f0e87] socks connection closed\n2025-07-17 13:42:44.142 [info] [command][0ebab983-8617-4cce-a1c3-5beef0f38a04] Process exited with code 0\n2025-07-17 13:42:44.142 [info] [command][0ebab983-8617-4cce-a1c3-5beef0f38a04] Socket close event received\n2025-07-17 13:42:44.156 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55652 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:43:44.148 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:43:44.150 [info] [command][58728fc3-55e4-4ccd-b928-2ff26dbe9384] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""58728fc3-55e4-4ccd-b928-2ff26dbe9384""}\n2025-07-17 13:43:44.150 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][acbaec5a-105d-455b-9909-ef0f25321271] received connection request\n2025-07-17 13:43:44.150 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:43:44.165 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][acbaec5a-105d-455b-9909-ef0f25321271] socks forwarding established\n2025-07-17 13:43:44.198 [info] [command][58728fc3-55e4-4ccd-b928-2ff26dbe9384] Process exited with code 0\n2025-07-17 13:43:44.198 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][acbaec5a-105d-455b-9909-ef0f25321271] socks connection closed\n2025-07-17 13:43:44.198 [info] [command][58728fc3-55e4-4ccd-b928-2ff26dbe9384] Socket close event received\n2025-07-17 13:43:44.212 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55690 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:44:44.202 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:44:44.205 [info] [command][d42c3355-a89d-479b-b286-73f05674c8ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""d42c3355-a89d-479b-b286-73f05674c8ed""}\n2025-07-17 13:44:44.206 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][21fe5a27-37a8-4cda-9349-9b9cf44b67e9] received connection request\n2025-07-17 13:44:44.206 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:44:44.294 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][21fe5a27-37a8-4cda-9349-9b9cf44b67e9] socks forwarding established\n2025-07-17 13:44:44.348 [info] [command][d42c3355-a89d-479b-b286-73f05674c8ed] Process exited with code 0\n2025-07-17 13:44:44.349 [info] [command][d42c3355-a89d-479b-b286-73f05674c8ed] Socket close event received\n2025-07-17 13:44:44.364 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][21fe5a27-37a8-4cda-9349-9b9cf44b67e9] socks connection closed\n2025-07-17 13:44:44.478 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55728 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:45:44.354 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:45:44.356 [info] [command][941e8888-10f7-44d0-8c28-7cfd4ea66e54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""941e8888-10f7-44d0-8c28-7cfd4ea66e54""}\n2025-07-17 13:45:44.357 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][84ff285d-27c2-4ba0-b127-49a63efa08ba] received connection request\n2025-07-17 13:45:44.358 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:45:44.372 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][84ff285d-27c2-4ba0-b127-49a63efa08ba] socks forwarding established\n2025-07-17 13:45:44.403 [info] [command][941e8888-10f7-44d0-8c28-7cfd4ea66e54] Process exited with code 0\n2025-07-17 13:45:44.403 [info] [command][941e8888-10f7-44d0-8c28-7cfd4ea66e54] Socket close event received\n2025-07-17 13:45:44.404 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][84ff285d-27c2-4ba0-b127-49a63efa08ba] socks connection closed\n2025-07-17 13:45:44.421 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55779 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:46:44.404 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:46:44.406 [info] [command][932d8f78-705d-4a98-b85f-29a8af1c0b8c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""932d8f78-705d-4a98-b85f-29a8af1c0b8c""}\n2025-07-17 13:46:44.407 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][56b3a26b-8720-45b9-b6ca-481f2c57ea6c] received connection request\n2025-07-17 13:46:44.407 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:46:44.423 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][56b3a26b-8720-45b9-b6ca-481f2c57ea6c] socks forwarding established\n2025-07-17 13:46:44.452 [info] [command][932d8f78-705d-4a98-b85f-29a8af1c0b8c] Process exited with code 0\n2025-07-17 13:46:44.453 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][56b3a26b-8720-45b9-b6ca-481f2c57ea6c] socks connection closed\n2025-07-17 13:46:44.453 [info] [command][932d8f78-705d-4a98-b85f-29a8af1c0b8c] Socket close event received\n2025-07-17 13:46:44.469 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55811 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:47:44.457 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:47:44.458 [info] [command][59606852-5366-4a59-9496-9e0c238d86cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""59606852-5366-4a59-9496-9e0c238d86cb""}\n2025-07-17 13:47:44.459 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a0bbc943-3288-45e7-82a6-1908f0f0ce39] received connection request\n2025-07-17 13:47:44.459 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:47:44.587 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a0bbc943-3288-45e7-82a6-1908f0f0ce39] socks forwarding established\n2025-07-17 13:47:44.618 [info] [command][59606852-5366-4a59-9496-9e0c238d86cb] Process exited with code 0\n2025-07-17 13:47:44.618 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a0bbc943-3288-45e7-82a6-1908f0f0ce39] socks connection closed\n2025-07-17 13:47:44.618 [info] [command][59606852-5366-4a59-9496-9e0c238d86cb] Socket close event received\n2025-07-17 13:47:44.635 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55856 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:48:44.623 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:48:44.625 [info] [command][f363e95c-4b4b-4b92-96fa-4ed5225b154c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f363e95c-4b4b-4b92-96fa-4ed5225b154c""}\n2025-07-17 13:48:44.626 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][37bfa93d-a610-407b-ab5f-7262b6347d42] received connection request\n2025-07-17 13:48:44.627 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:48:44.643 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][37bfa93d-a610-407b-ab5f-7262b6347d42] socks forwarding established\n2025-07-17 13:48:44.671 [info] [command][f363e95c-4b4b-4b92-96fa-4ed5225b154c] Process exited with code 0\n2025-07-17 13:48:44.671 [info] [command][f363e95c-4b4b-4b92-96fa-4ed5225b154c] Socket close event received\n2025-07-17 13:48:44.673 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][37bfa93d-a610-407b-ab5f-7262b6347d42] socks connection closed\n2025-07-17 13:48:44.689 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55903 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:49:44.673 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:49:44.674 [info] [command][8f864786-31f2-428d-9211-b594ad79f329] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8f864786-31f2-428d-9211-b594ad79f329""}\n2025-07-17 13:49:44.674 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bfb12831-971b-427b-964e-fb50ddfa867e] received connection request\n2025-07-17 13:49:44.674 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:49:44.689 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bfb12831-971b-427b-964e-fb50ddfa867e] socks forwarding established\n2025-07-17 13:49:44.717 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bfb12831-971b-427b-964e-fb50ddfa867e] socks connection closed\n2025-07-17 13:49:44.717 [info] [command][8f864786-31f2-428d-9211-b594ad79f329] Process exited with code 0\n2025-07-17 13:49:44.717 [info] [command][8f864786-31f2-428d-9211-b594ad79f329] Socket close event received\n2025-07-17 13:49:44.734 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 55943 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:50:44.721 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:50:44.723 [info] [command][96b37b4c-805e-483e-a947-87168a66cdf5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""96b37b4c-805e-483e-a947-87168a66cdf5""}\n2025-07-17 13:50:44.724 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9652574e-4afb-4a66-bb61-6e4543ea3c40] received connection request\n2025-07-17 13:50:44.725 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:50:44.743 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9652574e-4afb-4a66-bb61-6e4543ea3c40] socks forwarding established\n2025-07-17 13:50:44.773 [info] [command][96b37b4c-805e-483e-a947-87168a66cdf5] Process exited with code 0\n2025-07-17 13:50:44.773 [info] [command][96b37b4c-805e-483e-a947-87168a66cdf5] Socket close event received\n2025-07-17 13:50:44.774 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9652574e-4afb-4a66-bb61-6e4543ea3c40] socks connection closed\n2025-07-17 13:50:44.789 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56009 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:51:44.775 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:51:44.776 [info] [command][15977a50-e467-47fb-bbc7-61cad6e62754] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""15977a50-e467-47fb-bbc7-61cad6e62754""}\n2025-07-17 13:51:44.776 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f2640e36-f94c-4633-bc59-d3f925f02899] received connection request\n2025-07-17 13:51:44.776 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:51:44.794 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f2640e36-f94c-4633-bc59-d3f925f02899] socks forwarding established\n2025-07-17 13:51:44.899 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f2640e36-f94c-4633-bc59-d3f925f02899] socks connection closed\n2025-07-17 13:51:44.899 [info] [command][15977a50-e467-47fb-bbc7-61cad6e62754] Process exited with code 0\n2025-07-17 13:51:44.899 [info] [command][15977a50-e467-47fb-bbc7-61cad6e62754] Socket close event received\n2025-07-17 13:51:44.914 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56059 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:52:44.905 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:52:44.907 [info] [command][175fae1e-5052-43c8-8d06-2922b5897a97] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""175fae1e-5052-43c8-8d06-2922b5897a97""}\n2025-07-17 13:52:44.907 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][048993a6-563a-46bf-b1c5-764498beedbd] received connection request\n2025-07-17 13:52:44.907 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:52:44.922 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][048993a6-563a-46bf-b1c5-764498beedbd] socks forwarding established\n2025-07-17 13:52:44.951 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][048993a6-563a-46bf-b1c5-764498beedbd] socks connection closed\n2025-07-17 13:52:44.951 [info] [command][175fae1e-5052-43c8-8d06-2922b5897a97] Process exited with code 0\n2025-07-17 13:52:44.951 [info] [command][175fae1e-5052-43c8-8d06-2922b5897a97] Socket close event received\n2025-07-17 13:52:44.980 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56083 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:53:44.957 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:53:44.958 [info] [command][4174811b-cb0a-4dfb-9b0e-009422e7f491] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4174811b-cb0a-4dfb-9b0e-009422e7f491""}\n2025-07-17 13:53:44.958 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e62b4b4c-9b6b-4d8d-9483-eb2be279e691] received connection request\n2025-07-17 13:53:44.959 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:53:44.973 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e62b4b4c-9b6b-4d8d-9483-eb2be279e691] socks forwarding established\n2025-07-17 13:53:45.000 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e62b4b4c-9b6b-4d8d-9483-eb2be279e691] socks connection closed\n2025-07-17 13:53:45.000 [info] [command][4174811b-cb0a-4dfb-9b0e-009422e7f491] Process exited with code 0\n2025-07-17 13:53:45.000 [info] [command][4174811b-cb0a-4dfb-9b0e-009422e7f491] Socket close event received\n2025-07-17 13:53:45.015 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56129 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:54:45.006 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:54:45.006 [info] [command][824b4ae6-f1cf-4a3a-9985-2ab2db3e377b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""824b4ae6-f1cf-4a3a-9985-2ab2db3e377b""}\n2025-07-17 13:54:45.007 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f3c21a5f-a279-473f-94b1-5212900f2ecd] received connection request\n2025-07-17 13:54:45.007 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:54:45.072 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f3c21a5f-a279-473f-94b1-5212900f2ecd] socks forwarding established\n2025-07-17 13:54:45.100 [info] [command][824b4ae6-f1cf-4a3a-9985-2ab2db3e377b] Process exited with code 0\n2025-07-17 13:54:45.101 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f3c21a5f-a279-473f-94b1-5212900f2ecd] socks connection closed\n2025-07-17 13:54:45.101 [info] [command][824b4ae6-f1cf-4a3a-9985-2ab2db3e377b] Socket close event received\n2025-07-17 13:54:45.125 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56166 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:55:45.101 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:55:45.103 [info] [command][074db1a8-9b51-4d2d-871e-1c61fe4f3ee0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""074db1a8-9b51-4d2d-871e-1c61fe4f3ee0""}\n2025-07-17 13:55:45.103 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][49f32b0f-e7e6-4e43-bc21-fb917d2bffa3] received connection request\n2025-07-17 13:55:45.103 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:55:45.118 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][49f32b0f-e7e6-4e43-bc21-fb917d2bffa3] socks forwarding established\n2025-07-17 13:55:45.153 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][49f32b0f-e7e6-4e43-bc21-fb917d2bffa3] socks connection closed\n2025-07-17 13:55:45.153 [info] [command][074db1a8-9b51-4d2d-871e-1c61fe4f3ee0] Process exited with code 0\n2025-07-17 13:55:45.153 [info] [command][074db1a8-9b51-4d2d-871e-1c61fe4f3ee0] Socket close event received\n2025-07-17 13:55:45.167 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56225 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:56:45.159 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:56:45.163 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][274b27fe-0d27-4bd7-b17a-2ef5fb6cc2d3] received connection request\n2025-07-17 13:56:45.163 [info] [command][56d4dcce-e55a-4b77-b5e6-4918141d280b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""56d4dcce-e55a-4b77-b5e6-4918141d280b""}\n2025-07-17 13:56:45.164 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:56:45.180 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][274b27fe-0d27-4bd7-b17a-2ef5fb6cc2d3] socks forwarding established\n2025-07-17 13:56:45.207 [info] [command][56d4dcce-e55a-4b77-b5e6-4918141d280b] Process exited with code 0\n2025-07-17 13:56:45.207 [info] [command][56d4dcce-e55a-4b77-b5e6-4918141d280b] Socket close event received\n2025-07-17 13:56:45.207 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][274b27fe-0d27-4bd7-b17a-2ef5fb6cc2d3] socks connection closed\n2025-07-17 13:56:45.223 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56257 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:57:45.209 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:57:45.212 [info] [command][4b429f86-7bfe-40f8-9d97-f509532b5b22] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4b429f86-7bfe-40f8-9d97-f509532b5b22""}\n2025-07-17 13:57:45.212 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8757c342-6431-4864-82e9-4a910e0d1f15] received connection request\n2025-07-17 13:57:45.212 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:57:45.228 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8757c342-6431-4864-82e9-4a910e0d1f15] socks forwarding established\n2025-07-17 13:57:45.277 [info] [command][4b429f86-7bfe-40f8-9d97-f509532b5b22] Process exited with code 0\n2025-07-17 13:57:45.278 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8757c342-6431-4864-82e9-4a910e0d1f15] socks connection closed\n2025-07-17 13:57:45.279 [info] [command][4b429f86-7bfe-40f8-9d97-f509532b5b22] Socket close event received\n2025-07-17 13:57:45.294 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56286 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:58:45.282 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:58:45.285 [info] [command][71850210-395e-4698-9b28-f6f7e7fbabd2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""71850210-395e-4698-9b28-f6f7e7fbabd2""}\n2025-07-17 13:58:45.285 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f02f91ae-76ef-4f3c-a8b9-2782a68852f5] received connection request\n2025-07-17 13:58:45.286 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:58:45.328 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f02f91ae-76ef-4f3c-a8b9-2782a68852f5] socks forwarding established\n2025-07-17 13:58:45.358 [info] [command][71850210-395e-4698-9b28-f6f7e7fbabd2] Process exited with code 0\n2025-07-17 13:58:45.358 [info] [command][71850210-395e-4698-9b28-f6f7e7fbabd2] Socket close event received\n2025-07-17 13:58:45.359 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f02f91ae-76ef-4f3c-a8b9-2782a68852f5] socks connection closed\n2025-07-17 13:58:45.377 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56319 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 13:59:45.364 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 13:59:45.366 [info] [command][67fcbfb2-de03-47be-9867-d3181ac3e197] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""67fcbfb2-de03-47be-9867-d3181ac3e197""}\n2025-07-17 13:59:45.367 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][19b05332-bbca-4dce-a940-58d39b92225d] received connection request\n2025-07-17 13:59:45.368 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 13:59:45.384 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][19b05332-bbca-4dce-a940-58d39b92225d] socks forwarding established\n2025-07-17 13:59:45.412 [info] [command][67fcbfb2-de03-47be-9867-d3181ac3e197] Process exited with code 0\n2025-07-17 13:59:45.412 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][19b05332-bbca-4dce-a940-58d39b92225d] socks connection closed\n2025-07-17 13:59:45.412 [info] [command][67fcbfb2-de03-47be-9867-d3181ac3e197] Socket close event received\n2025-07-17 13:59:45.428 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56345 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:00:45.415 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:00:45.416 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][69f9b9b9-284a-400e-931c-5d73cafb70f8] received connection request\n2025-07-17 14:00:45.416 [info] [command][489d537e-455a-4462-a89f-7f506c07e0f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""489d537e-455a-4462-a89f-7f506c07e0f4""}\n2025-07-17 14:00:45.416 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:00:45.431 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][69f9b9b9-284a-400e-931c-5d73cafb70f8] socks forwarding established\n2025-07-17 14:00:45.548 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][69f9b9b9-284a-400e-931c-5d73cafb70f8] socks connection closed\n2025-07-17 14:00:45.548 [info] [command][489d537e-455a-4462-a89f-7f506c07e0f4] Process exited with code 0\n2025-07-17 14:00:45.548 [info] [command][489d537e-455a-4462-a89f-7f506c07e0f4] Socket close event received\n2025-07-17 14:00:45.563 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56398 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:01:45.554 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:01:45.557 [info] [command][b77a44c4-80d7-446d-b324-e740ab9f8623] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b77a44c4-80d7-446d-b324-e740ab9f8623""}\n2025-07-17 14:01:45.558 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][fbdfe427-8760-4be6-942b-5232b9cab4b7] received connection request\n2025-07-17 14:01:45.559 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:01:45.585 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fbdfe427-8760-4be6-942b-5232b9cab4b7] socks forwarding established\n2025-07-17 14:01:45.616 [info] [command][b77a44c4-80d7-446d-b324-e740ab9f8623] Process exited with code 0\n2025-07-17 14:01:45.616 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fbdfe427-8760-4be6-942b-5232b9cab4b7] socks connection closed\n2025-07-17 14:01:45.617 [info] [command][b77a44c4-80d7-446d-b324-e740ab9f8623] Socket close event received\n2025-07-17 14:01:45.632 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56419 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:02:45.622 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:02:45.624 [info] [command][e1a233b0-b5d6-4d62-8f4a-2398e965003e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e1a233b0-b5d6-4d62-8f4a-2398e965003e""}\n2025-07-17 14:02:45.624 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a28dea31-8478-4a08-b923-c37e7d98fa40] received connection request\n2025-07-17 14:02:45.624 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:02:45.640 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a28dea31-8478-4a08-b923-c37e7d98fa40] socks forwarding established\n2025-07-17 14:02:45.667 [info] [command][e1a233b0-b5d6-4d62-8f4a-2398e965003e] Process exited with code 0\n2025-07-17 14:02:45.667 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a28dea31-8478-4a08-b923-c37e7d98fa40] socks connection closed\n2025-07-17 14:02:45.668 [info] [command][e1a233b0-b5d6-4d62-8f4a-2398e965003e] Socket close event received\n2025-07-17 14:02:45.682 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56442 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:03:45.671 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:03:45.673 [info] [command][22a49d91-21a3-4779-a60a-5e781c6a0f60] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""22a49d91-21a3-4779-a60a-5e781c6a0f60""}\n2025-07-17 14:03:45.675 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][af9af5c8-44fe-485e-8df8-7b302debe766] received connection request\n2025-07-17 14:03:45.675 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:03:45.689 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][af9af5c8-44fe-485e-8df8-7b302debe766] socks forwarding established\n2025-07-17 14:03:45.721 [info] [command][22a49d91-21a3-4779-a60a-5e781c6a0f60] Process exited with code 0\n2025-07-17 14:03:45.722 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][af9af5c8-44fe-485e-8df8-7b302debe766] socks connection closed\n2025-07-17 14:03:45.722 [info] [command][22a49d91-21a3-4779-a60a-5e781c6a0f60] Socket close event received\n2025-07-17 14:03:45.741 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56480 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:04:45.725 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:04:45.725 [info] [command][8f32e133-2b4c-4300-8980-fb28685d2085] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8f32e133-2b4c-4300-8980-fb28685d2085""}\n2025-07-17 14:04:45.726 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8dba3dab-1189-4904-ae00-5b84f4ee8b6f] received connection request\n2025-07-17 14:04:45.726 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:04:45.744 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8dba3dab-1189-4904-ae00-5b84f4ee8b6f] socks forwarding established\n2025-07-17 14:04:45.773 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8dba3dab-1189-4904-ae00-5b84f4ee8b6f] socks connection closed\n2025-07-17 14:04:45.774 [info] [command][8f32e133-2b4c-4300-8980-fb28685d2085] Process exited with code 0\n2025-07-17 14:04:45.774 [info] [command][8f32e133-2b4c-4300-8980-fb28685d2085] Socket close event received\n2025-07-17 14:04:45.874 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56507 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:05:45.777 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:05:45.777 [info] [command][70aee75f-4b27-4000-a487-89a057c331d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""70aee75f-4b27-4000-a487-89a057c331d4""}\n2025-07-17 14:05:45.777 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ddd2925c-b41e-4a12-93a3-d6d80f36bedb] received connection request\n2025-07-17 14:05:45.778 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:05:45.792 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ddd2925c-b41e-4a12-93a3-d6d80f36bedb] socks forwarding established\n2025-07-17 14:05:45.826 [info] [command][70aee75f-4b27-4000-a487-89a057c331d4] Process exited with code 0\n2025-07-17 14:05:45.826 [info] [command][70aee75f-4b27-4000-a487-89a057c331d4] Socket close event received\n2025-07-17 14:05:45.827 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ddd2925c-b41e-4a12-93a3-d6d80f36bedb] socks connection closed\n2025-07-17 14:05:45.840 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56560 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:06:45.831 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:06:45.834 [info] [command][d2f5afd6-2bce-4182-b9d0-a80f4f701061] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""d2f5afd6-2bce-4182-b9d0-a80f4f701061""}\n2025-07-17 14:06:45.836 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][63c06ba9-2719-4e80-8549-80eec4ac9140] received connection request\n2025-07-17 14:06:45.837 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:06:45.855 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][63c06ba9-2719-4e80-8549-80eec4ac9140] socks forwarding established\n2025-07-17 14:06:45.883 [info] [command][d2f5afd6-2bce-4182-b9d0-a80f4f701061] Process exited with code 0\n2025-07-17 14:06:45.884 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][63c06ba9-2719-4e80-8549-80eec4ac9140] socks connection closed\n2025-07-17 14:06:45.884 [info] [command][d2f5afd6-2bce-4182-b9d0-a80f4f701061] Socket close event received\n2025-07-17 14:06:45.898 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56591 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:07:45.888 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:07:45.889 [info] [command][ccd91a1d-fe72-4933-b9fd-51bbfc74f8e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ccd91a1d-fe72-4933-b9fd-51bbfc74f8e4""}\n2025-07-17 14:07:45.889 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a214f641-7d26-4e5c-9a8b-0440f974ebec] received connection request\n2025-07-17 14:07:45.890 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:07:45.916 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a214f641-7d26-4e5c-9a8b-0440f974ebec] socks forwarding established\n2025-07-17 14:07:46.023 [info] [command][ccd91a1d-fe72-4933-b9fd-51bbfc74f8e4] Process exited with code 0\n2025-07-17 14:07:46.023 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a214f641-7d26-4e5c-9a8b-0440f974ebec] socks connection closed\n2025-07-17 14:07:46.023 [info] [command][ccd91a1d-fe72-4933-b9fd-51bbfc74f8e4] Socket close event received\n2025-07-17 14:07:46.040 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56613 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:08:46.028 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:08:46.030 [info] [command][8e90e438-02cb-431f-bea2-edbaedd6093e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8e90e438-02cb-431f-bea2-edbaedd6093e""}\n2025-07-17 14:08:46.030 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3b813019-1d46-45f5-a315-80265ea06d78] received connection request\n2025-07-17 14:08:46.030 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:08:46.058 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3b813019-1d46-45f5-a315-80265ea06d78] socks forwarding established\n2025-07-17 14:08:46.085 [info] [command][8e90e438-02cb-431f-bea2-edbaedd6093e] Process exited with code 0\n2025-07-17 14:08:46.085 [info] [command][8e90e438-02cb-431f-bea2-edbaedd6093e] Socket close event received\n2025-07-17 14:08:46.086 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3b813019-1d46-45f5-a315-80265ea06d78] socks connection closed\n2025-07-17 14:08:46.117 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56671 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:09:46.090 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:09:46.091 [info] [command][52936474-385b-42c6-ba6f-5eb66f62c84e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""52936474-385b-42c6-ba6f-5eb66f62c84e""}\n2025-07-17 14:09:46.092 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][279d40e9-c0e8-40f5-9811-3e318e824dcb] received connection request\n2025-07-17 14:09:46.092 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:09:46.113 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][279d40e9-c0e8-40f5-9811-3e318e824dcb] socks forwarding established\n2025-07-17 14:09:46.142 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][279d40e9-c0e8-40f5-9811-3e318e824dcb] socks connection closed\n2025-07-17 14:09:46.142 [info] [command][52936474-385b-42c6-ba6f-5eb66f62c84e] Process exited with code 0\n2025-07-17 14:09:46.142 [info] [command][52936474-385b-42c6-ba6f-5eb66f62c84e] Socket close event received\n2025-07-17 14:09:46.156 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56699 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:10:46.142 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:10:46.143 [info] [command][473b460e-67e8-4def-91b4-6703daa82b9e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""473b460e-67e8-4def-91b4-6703daa82b9e""}\n2025-07-17 14:10:46.143 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e272c618-fd43-4651-9f9e-0b05107e2f0a] received connection request\n2025-07-17 14:10:46.144 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:10:46.163 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e272c618-fd43-4651-9f9e-0b05107e2f0a] socks forwarding established\n2025-07-17 14:10:46.189 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e272c618-fd43-4651-9f9e-0b05107e2f0a] socks connection closed\n2025-07-17 14:10:46.189 [info] [command][473b460e-67e8-4def-91b4-6703daa82b9e] Process exited with code 0\n2025-07-17 14:10:46.189 [info] [command][473b460e-67e8-4def-91b4-6703daa82b9e] Socket close event received\n2025-07-17 14:10:46.203 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56754 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:11:46.192 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:11:46.193 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][060a0556-a3d2-4f79-b935-6a27f96628f6] received connection request\n2025-07-17 14:11:46.194 [info] [command][a0852a7d-d6aa-4210-a495-c9c18163ab39] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a0852a7d-d6aa-4210-a495-c9c18163ab39""}\n2025-07-17 14:11:46.194 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:11:46.209 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][060a0556-a3d2-4f79-b935-6a27f96628f6] socks forwarding established\n2025-07-17 14:11:46.238 [info] [command][a0852a7d-d6aa-4210-a495-c9c18163ab39] Process exited with code 0\n2025-07-17 14:11:46.239 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][060a0556-a3d2-4f79-b935-6a27f96628f6] socks connection closed\n2025-07-17 14:11:46.239 [info] [command][a0852a7d-d6aa-4210-a495-c9c18163ab39] Socket close event received\n2025-07-17 14:11:46.255 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56778 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:12:46.244 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:12:46.247 [info] [command][c09fe54f-79d2-4367-8c1c-783f663f621d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c09fe54f-79d2-4367-8c1c-783f663f621d""}\n2025-07-17 14:12:46.249 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e49d29d2-3b1c-43cd-986d-bb9f11fc6dc1] received connection request\n2025-07-17 14:12:46.250 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:12:46.271 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e49d29d2-3b1c-43cd-986d-bb9f11fc6dc1] socks forwarding established\n2025-07-17 14:12:46.308 [info] [command][c09fe54f-79d2-4367-8c1c-783f663f621d] Process exited with code 0\n2025-07-17 14:12:46.309 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e49d29d2-3b1c-43cd-986d-bb9f11fc6dc1] socks connection closed\n2025-07-17 14:12:46.309 [info] [command][c09fe54f-79d2-4367-8c1c-783f663f621d] Socket close event received\n2025-07-17 14:12:46.324 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56803 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:13:46.313 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:13:46.316 [info] [command][e6069d9d-0468-4c36-84be-7bb709d444c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e6069d9d-0468-4c36-84be-7bb709d444c1""}\n2025-07-17 14:13:46.317 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8d3895c8-617a-466c-a6d6-3fc7a1ed20e4] received connection request\n2025-07-17 14:13:46.318 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:13:46.332 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8d3895c8-617a-466c-a6d6-3fc7a1ed20e4] socks forwarding established\n2025-07-17 14:13:46.365 [info] [command][e6069d9d-0468-4c36-84be-7bb709d444c1] Process exited with code 0\n2025-07-17 14:13:46.365 [info] [command][e6069d9d-0468-4c36-84be-7bb709d444c1] Socket close event received\n2025-07-17 14:13:46.367 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8d3895c8-617a-466c-a6d6-3fc7a1ed20e4] socks connection closed\n2025-07-17 14:13:46.384 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56840 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:14:46.370 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:14:46.372 [info] [command][58a8ff5c-7bd4-422e-bb18-5614d49ebb72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""58a8ff5c-7bd4-422e-bb18-5614d49ebb72""}\n2025-07-17 14:14:46.372 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][abbc336f-e6af-4846-a59b-1afa69d037cd] received connection request\n2025-07-17 14:14:46.373 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:14:46.389 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][abbc336f-e6af-4846-a59b-1afa69d037cd] socks forwarding established\n2025-07-17 14:14:46.417 [info] [command][58a8ff5c-7bd4-422e-bb18-5614d49ebb72] Process exited with code 0\n2025-07-17 14:14:46.418 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][abbc336f-e6af-4846-a59b-1afa69d037cd] socks connection closed\n2025-07-17 14:14:46.418 [info] [command][58a8ff5c-7bd4-422e-bb18-5614d49ebb72] Socket close event received\n2025-07-17 14:14:46.437 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56874 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:15:46.423 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:15:46.424 [info] [command][a8f04940-6626-4f47-bf0c-3350391631f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a8f04940-6626-4f47-bf0c-3350391631f0""}\n2025-07-17 14:15:46.425 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bc32a3dc-4c25-49b2-8829-13735d568708] received connection request\n2025-07-17 14:15:46.425 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:15:46.515 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bc32a3dc-4c25-49b2-8829-13735d568708] socks forwarding established\n2025-07-17 14:15:46.547 [info] [command][a8f04940-6626-4f47-bf0c-3350391631f0] Process exited with code 0\n2025-07-17 14:15:46.547 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bc32a3dc-4c25-49b2-8829-13735d568708] socks connection closed\n2025-07-17 14:15:46.548 [info] [command][a8f04940-6626-4f47-bf0c-3350391631f0] Socket close event received\n2025-07-17 14:15:46.569 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56961 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:16:46.553 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:16:46.555 [info] [command][3af097aa-9c69-487c-9021-fd7fe0019703] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""3af097aa-9c69-487c-9021-fd7fe0019703""}\n2025-07-17 14:16:46.555 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7d60d59b-8993-4d43-af6d-728348ebb1f3] received connection request\n2025-07-17 14:16:46.556 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:16:46.572 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7d60d59b-8993-4d43-af6d-728348ebb1f3] socks forwarding established\n2025-07-17 14:16:46.598 [info] [command][3af097aa-9c69-487c-9021-fd7fe0019703] Process exited with code 0\n2025-07-17 14:16:46.598 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7d60d59b-8993-4d43-af6d-728348ebb1f3] socks connection closed\n2025-07-17 14:16:46.599 [info] [command][3af097aa-9c69-487c-9021-fd7fe0019703] Socket close event received\n2025-07-17 14:16:46.615 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 56992 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:17:46.600 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:17:46.601 [info] [command][fa30bc1b-4961-4660-8c7e-c47b230da76b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""fa30bc1b-4961-4660-8c7e-c47b230da76b""}\n2025-07-17 14:17:46.602 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d36f6f22-c4dc-4533-a148-9a2e921aa955] received connection request\n2025-07-17 14:17:46.602 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:17:46.624 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d36f6f22-c4dc-4533-a148-9a2e921aa955] socks forwarding established\n2025-07-17 14:17:46.676 [info] [command][fa30bc1b-4961-4660-8c7e-c47b230da76b] Process exited with code 0\n2025-07-17 14:17:46.676 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d36f6f22-c4dc-4533-a148-9a2e921aa955] socks connection closed\n2025-07-17 14:17:46.676 [info] [command][fa30bc1b-4961-4660-8c7e-c47b230da76b] Socket close event received\n2025-07-17 14:17:46.698 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57037 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:18:46.678 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:18:46.680 [info] [command][2f8ab3af-074d-453b-8c12-9b9dd24276f1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2f8ab3af-074d-453b-8c12-9b9dd24276f1""}\n2025-07-17 14:18:46.681 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b9245dd3-719b-4c0c-b74e-8244adabc801] received connection request\n2025-07-17 14:18:46.681 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:18:46.777 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b9245dd3-719b-4c0c-b74e-8244adabc801] socks forwarding established\n2025-07-17 14:18:46.807 [info] [command][2f8ab3af-074d-453b-8c12-9b9dd24276f1] Process exited with code 0\n2025-07-17 14:18:46.808 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b9245dd3-719b-4c0c-b74e-8244adabc801] socks connection closed\n2025-07-17 14:18:46.808 [info] [command][2f8ab3af-074d-453b-8c12-9b9dd24276f1] Socket close event received\n2025-07-17 14:18:46.824 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57087 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:19:46.810 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:19:46.812 [info] [command][6d426c5f-1d41-4da8-bd3b-ba7abe6f6e56] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6d426c5f-1d41-4da8-bd3b-ba7abe6f6e56""}\n2025-07-17 14:19:46.813 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][13443f68-81f3-4ddc-bbd1-9536960e803c] received connection request\n2025-07-17 14:19:46.813 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 14:19:46.813 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:19:46.831 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][13443f68-81f3-4ddc-bbd1-9536960e803c] socks forwarding established\n2025-07-17 14:19:46.860 [info] [command][6d426c5f-1d41-4da8-bd3b-ba7abe6f6e56] Process exited with code 0\n2025-07-17 14:19:46.860 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][13443f68-81f3-4ddc-bbd1-9536960e803c] socks connection closed\n2025-07-17 14:19:46.860 [info] [command][6d426c5f-1d41-4da8-bd3b-ba7abe6f6e56] Socket close event received\n2025-07-17 14:19:46.876 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57136 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:20:46.866 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:20:46.868 [info] [command][ca78fb9b-3631-4c75-a472-7b529296470a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ca78fb9b-3631-4c75-a472-7b529296470a""}\n2025-07-17 14:20:46.869 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e6b973e8-b55e-4433-955a-eaf720c2a284] received connection request\n2025-07-17 14:20:46.870 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:20:46.885 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e6b973e8-b55e-4433-955a-eaf720c2a284] socks forwarding established\n2025-07-17 14:20:46.925 [info] [command][ca78fb9b-3631-4c75-a472-7b529296470a] Process exited with code 0\n2025-07-17 14:20:46.925 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e6b973e8-b55e-4433-955a-eaf720c2a284] socks connection closed\n2025-07-17 14:20:46.926 [info] [command][ca78fb9b-3631-4c75-a472-7b529296470a] Socket close event received\n2025-07-17 14:20:46.944 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57202 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:21:46.931 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:21:46.933 [info] [command][9322b07b-a10c-4513-b7a4-ae55072da7bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9322b07b-a10c-4513-b7a4-ae55072da7bf""}\n2025-07-17 14:21:46.933 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][39a8c2f5-c3b4-45e7-98bb-a9ba9602e6ca] received connection request\n2025-07-17 14:21:46.934 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:21:46.954 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][39a8c2f5-c3b4-45e7-98bb-a9ba9602e6ca] socks forwarding established\n2025-07-17 14:21:46.982 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][39a8c2f5-c3b4-45e7-98bb-a9ba9602e6ca] socks connection closed\n2025-07-17 14:21:46.982 [info] [command][9322b07b-a10c-4513-b7a4-ae55072da7bf] Process exited with code 0\n2025-07-17 14:21:46.982 [info] [command][9322b07b-a10c-4513-b7a4-ae55072da7bf] Socket close event received\n2025-07-17 14:21:46.997 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57228 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:22:46.984 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:22:46.987 [info] [command][b0994a18-5a28-4594-af36-e250d96f2816] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b0994a18-5a28-4594-af36-e250d96f2816""}\n2025-07-17 14:22:46.988 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][05ae783d-0e51-45a6-92df-371f9fd8ae15] received connection request\n2025-07-17 14:22:46.989 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:22:47.010 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][05ae783d-0e51-45a6-92df-371f9fd8ae15] socks forwarding established\n2025-07-17 14:22:47.038 [info] [command][b0994a18-5a28-4594-af36-e250d96f2816] Process exited with code 0\n2025-07-17 14:22:47.039 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][05ae783d-0e51-45a6-92df-371f9fd8ae15] socks connection closed\n2025-07-17 14:22:47.039 [info] [command][b0994a18-5a28-4594-af36-e250d96f2816] Socket close event received\n2025-07-17 14:22:47.055 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57268 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:23:47.041 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:23:47.044 [info] [command][9dbbb69d-3dfa-431b-a07c-5353c1be6900] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9dbbb69d-3dfa-431b-a07c-5353c1be6900""}\n2025-07-17 14:23:47.045 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ab20b7f9-1d8d-4ba5-81c4-5463804e8137] received connection request\n2025-07-17 14:23:47.046 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:23:47.065 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ab20b7f9-1d8d-4ba5-81c4-5463804e8137] socks forwarding established\n2025-07-17 14:23:47.094 [info] [command][9dbbb69d-3dfa-431b-a07c-5353c1be6900] Process exited with code 0\n2025-07-17 14:23:47.095 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ab20b7f9-1d8d-4ba5-81c4-5463804e8137] socks connection closed\n2025-07-17 14:23:47.095 [info] [command][9dbbb69d-3dfa-431b-a07c-5353c1be6900] Socket close event received\n2025-07-17 14:23:47.111 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57316 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:24:47.096 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:24:47.098 [info] [command][c9b7df24-a3f6-4169-82e6-18170cb9f7cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c9b7df24-a3f6-4169-82e6-18170cb9f7cd""}\n2025-07-17 14:24:47.099 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4b169519-5bdb-4e5d-a4ce-bf553d0de66b] received connection request\n2025-07-17 14:24:47.100 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:24:47.184 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4b169519-5bdb-4e5d-a4ce-bf553d0de66b] socks forwarding established\n2025-07-17 14:24:47.215 [info] [command][c9b7df24-a3f6-4169-82e6-18170cb9f7cd] Process exited with code 0\n2025-07-17 14:24:47.215 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4b169519-5bdb-4e5d-a4ce-bf553d0de66b] socks connection closed\n2025-07-17 14:24:47.215 [info] [command][c9b7df24-a3f6-4169-82e6-18170cb9f7cd] Socket close event received\n2025-07-17 14:24:47.239 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57361 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:25:47.219 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:25:47.221 [info] [command][24892826-2f04-4ba1-ae2c-22d7429f5ab9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""24892826-2f04-4ba1-ae2c-22d7429f5ab9""}\n2025-07-17 14:25:47.224 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][48b12517-1bf5-441d-a801-f1820dc3e88d] received connection request\n2025-07-17 14:25:47.225 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 14:25:47.225 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:25:47.242 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][48b12517-1bf5-441d-a801-f1820dc3e88d] socks forwarding established\n2025-07-17 14:25:47.274 [info] [command][24892826-2f04-4ba1-ae2c-22d7429f5ab9] Process exited with code 0\n2025-07-17 14:25:47.275 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][48b12517-1bf5-441d-a801-f1820dc3e88d] socks connection closed\n2025-07-17 14:25:47.275 [info] [command][24892826-2f04-4ba1-ae2c-22d7429f5ab9] Socket close event received\n2025-07-17 14:25:47.292 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57421 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:26:47.277 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:26:47.278 [info] [command][1d7ecf9b-f0ed-4561-936d-46fc950317f1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1d7ecf9b-f0ed-4561-936d-46fc950317f1""}\n2025-07-17 14:26:47.278 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ee031356-f088-4aca-9a81-f3fced70afdc] received connection request\n2025-07-17 14:26:47.278 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:26:47.293 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ee031356-f088-4aca-9a81-f3fced70afdc] socks forwarding established\n2025-07-17 14:26:47.322 [info] [command][1d7ecf9b-f0ed-4561-936d-46fc950317f1] Process exited with code 0\n2025-07-17 14:26:47.322 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ee031356-f088-4aca-9a81-f3fced70afdc] socks connection closed\n2025-07-17 14:26:47.322 [info] [command][1d7ecf9b-f0ed-4561-936d-46fc950317f1] Socket close event received\n2025-07-17 14:26:47.337 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57464 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:27:47.323 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:27:47.326 [info] [command][18681863-24be-4747-b44f-7743a38f66fb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""18681863-24be-4747-b44f-7743a38f66fb""}\n2025-07-17 14:27:47.327 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3d03b064-cf89-4bf5-b54e-f918e8923686] received connection request\n2025-07-17 14:27:47.327 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:27:47.390 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3d03b064-cf89-4bf5-b54e-f918e8923686] socks forwarding established\n2025-07-17 14:27:47.421 [info] [command][18681863-24be-4747-b44f-7743a38f66fb] Process exited with code 0\n2025-07-17 14:27:47.421 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3d03b064-cf89-4bf5-b54e-f918e8923686] socks connection closed\n2025-07-17 14:27:47.421 [info] [command][18681863-24be-4747-b44f-7743a38f66fb] Socket close event received\n2025-07-17 14:27:47.438 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57491 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:28:47.427 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:28:47.429 [info] [command][9369e261-b2c5-4fcc-90d8-24e67d67f3b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9369e261-b2c5-4fcc-90d8-24e67d67f3b8""}\n2025-07-17 14:28:47.430 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e4ed9b93-d8c9-46be-b344-379d942f400d] received connection request\n2025-07-17 14:28:47.431 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:28:47.450 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e4ed9b93-d8c9-46be-b344-379d942f400d] socks forwarding established\n2025-07-17 14:28:47.479 [info] [command][9369e261-b2c5-4fcc-90d8-24e67d67f3b8] Process exited with code 0\n2025-07-17 14:28:47.480 [info] [command][9369e261-b2c5-4fcc-90d8-24e67d67f3b8] Socket close event received\n2025-07-17 14:28:47.480 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e4ed9b93-d8c9-46be-b344-379d942f400d] socks connection closed\n2025-07-17 14:28:47.496 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57537 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:29:47.481 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:29:47.483 [info] [command][fa78ae2c-945d-4b0e-890c-a44bda955a80] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""fa78ae2c-945d-4b0e-890c-a44bda955a80""}\n2025-07-17 14:29:47.483 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a3f21969-b8ed-48cd-8da3-a9a8a36146ad] received connection request\n2025-07-17 14:29:47.484 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:29:47.499 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a3f21969-b8ed-48cd-8da3-a9a8a36146ad] socks forwarding established\n2025-07-17 14:29:47.530 [info] [command][fa78ae2c-945d-4b0e-890c-a44bda955a80] Process exited with code 0\n2025-07-17 14:29:47.530 [info] [command][fa78ae2c-945d-4b0e-890c-a44bda955a80] Socket close event received\n2025-07-17 14:29:47.531 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a3f21969-b8ed-48cd-8da3-a9a8a36146ad] socks connection closed\n2025-07-17 14:29:47.546 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57565 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:30:47.535 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:30:47.538 [info] [command][60750e35-9c8a-47c2-9dcc-b37582f63f53] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""60750e35-9c8a-47c2-9dcc-b37582f63f53""}\n2025-07-17 14:30:47.539 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][189ecde9-6162-41da-8022-5fa55bf8dfb9] received connection request\n2025-07-17 14:30:47.540 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:30:47.558 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][189ecde9-6162-41da-8022-5fa55bf8dfb9] socks forwarding established\n2025-07-17 14:30:47.590 [info] [command][60750e35-9c8a-47c2-9dcc-b37582f63f53] Process exited with code 0\n2025-07-17 14:30:47.590 [info] [command][60750e35-9c8a-47c2-9dcc-b37582f63f53] Socket close event received\n2025-07-17 14:30:47.591 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][189ecde9-6162-41da-8022-5fa55bf8dfb9] socks connection closed\n2025-07-17 14:30:47.605 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57626 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:31:47.592 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:31:47.595 [info] [command][201c7b9e-57f9-4687-b1bd-3fca9b7f8000] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""201c7b9e-57f9-4687-b1bd-3fca9b7f8000""}\n2025-07-17 14:31:47.596 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3074b3b0-5824-430c-be0b-d08f705df27a] received connection request\n2025-07-17 14:31:47.596 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:31:47.613 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3074b3b0-5824-430c-be0b-d08f705df27a] socks forwarding established\n2025-07-17 14:31:47.642 [info] [command][201c7b9e-57f9-4687-b1bd-3fca9b7f8000] Process exited with code 0\n2025-07-17 14:31:47.642 [info] [command][201c7b9e-57f9-4687-b1bd-3fca9b7f8000] Socket close event received\n2025-07-17 14:31:47.644 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3074b3b0-5824-430c-be0b-d08f705df27a] socks connection closed\n2025-07-17 14:31:47.657 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57656 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:32:47.646 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:32:47.648 [info] [command][1dc2c53a-b2ba-44e7-a9e2-34bc318c600b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1dc2c53a-b2ba-44e7-a9e2-34bc318c600b""}\n2025-07-17 14:32:47.648 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][225b3774-ed3d-4ea5-8b5e-110de5de9bfd] received connection request\n2025-07-17 14:32:47.649 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:32:47.702 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][225b3774-ed3d-4ea5-8b5e-110de5de9bfd] socks forwarding established\n2025-07-17 14:32:47.730 [info] [command][1dc2c53a-b2ba-44e7-a9e2-34bc318c600b] Process exited with code 0\n2025-07-17 14:32:47.730 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][225b3774-ed3d-4ea5-8b5e-110de5de9bfd] socks connection closed\n2025-07-17 14:32:47.730 [info] [command][1dc2c53a-b2ba-44e7-a9e2-34bc318c600b] Socket close event received\n2025-07-17 14:32:47.748 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57683 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:33:47.736 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:33:47.737 [info] [command][c2b86e7f-3c8d-4390-ad0d-b165b9253afe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c2b86e7f-3c8d-4390-ad0d-b165b9253afe""}\n2025-07-17 14:33:47.737 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][67c52286-2425-4d33-a2c3-d917d12b0558] received connection request\n2025-07-17 14:33:47.738 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:33:47.754 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][67c52286-2425-4d33-a2c3-d917d12b0558] socks forwarding established\n2025-07-17 14:33:47.783 [info] [command][c2b86e7f-3c8d-4390-ad0d-b165b9253afe] Process exited with code 0\n2025-07-17 14:33:47.784 [info] [command][c2b86e7f-3c8d-4390-ad0d-b165b9253afe] Socket close event received\n2025-07-17 14:33:47.785 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][67c52286-2425-4d33-a2c3-d917d12b0558] socks connection closed\n2025-07-17 14:33:47.801 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57728 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:34:47.790 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:34:47.792 [info] [command][9cf99000-5985-4d65-a47c-7cc2092096eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9cf99000-5985-4d65-a47c-7cc2092096eb""}\n2025-07-17 14:34:47.793 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][0bfb45bc-e9da-4500-b680-ae84e5e88dad] received connection request\n2025-07-17 14:34:47.794 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:34:47.811 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0bfb45bc-e9da-4500-b680-ae84e5e88dad] socks forwarding established\n2025-07-17 14:34:47.838 [info] [command][9cf99000-5985-4d65-a47c-7cc2092096eb] Process exited with code 0\n2025-07-17 14:34:47.838 [info] [command][9cf99000-5985-4d65-a47c-7cc2092096eb] Socket close event received\n2025-07-17 14:34:47.839 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0bfb45bc-e9da-4500-b680-ae84e5e88dad] socks connection closed\n2025-07-17 14:34:47.858 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57769 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:35:47.844 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:35:47.846 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][0d761dd0-4d41-42fb-b848-7676917c7cc1] received connection request\n2025-07-17 14:35:47.847 [info] [command][ba1b625d-6bc2-4293-aa67-cc2db7332182] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ba1b625d-6bc2-4293-aa67-cc2db7332182""}\n2025-07-17 14:35:47.847 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:35:47.867 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0d761dd0-4d41-42fb-b848-7676917c7cc1] socks forwarding established\n2025-07-17 14:35:47.894 [info] [command][ba1b625d-6bc2-4293-aa67-cc2db7332182] Process exited with code 0\n2025-07-17 14:35:47.894 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0d761dd0-4d41-42fb-b848-7676917c7cc1] socks connection closed\n2025-07-17 14:35:47.894 [info] [command][ba1b625d-6bc2-4293-aa67-cc2db7332182] Socket close event received\n2025-07-17 14:35:47.912 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57852 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:36:47.896 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:36:47.898 [info] [command][176a8947-1450-4afc-8fff-134ce5561255] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""176a8947-1450-4afc-8fff-134ce5561255""}\n2025-07-17 14:36:47.899 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9da7ec58-3ccc-4227-b55d-40c82ed65931] received connection request\n2025-07-17 14:36:47.900 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:36:47.915 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9da7ec58-3ccc-4227-b55d-40c82ed65931] socks forwarding established\n2025-07-17 14:36:47.957 [info] [command][176a8947-1450-4afc-8fff-134ce5561255] Process exited with code 0\n2025-07-17 14:36:47.958 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9da7ec58-3ccc-4227-b55d-40c82ed65931] socks connection closed\n2025-07-17 14:36:47.958 [info] [command][176a8947-1450-4afc-8fff-134ce5561255] Socket close event received\n2025-07-17 14:36:47.974 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57903 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:37:47.961 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:37:47.964 [info] [command][4861aab2-69ea-4113-b1f0-58c64ef3cff5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4861aab2-69ea-4113-b1f0-58c64ef3cff5""}\n2025-07-17 14:37:47.965 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5005978c-934b-4074-a0d0-db878065682b] received connection request\n2025-07-17 14:37:47.966 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 14:37:47.966 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:37:47.983 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5005978c-934b-4074-a0d0-db878065682b] socks forwarding established\n2025-07-17 14:37:48.011 [info] [command][4861aab2-69ea-4113-b1f0-58c64ef3cff5] Process exited with code 0\n2025-07-17 14:37:48.011 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5005978c-934b-4074-a0d0-db878065682b] socks connection closed\n2025-07-17 14:37:48.011 [info] [command][4861aab2-69ea-4113-b1f0-58c64ef3cff5] Socket close event received\n2025-07-17 14:37:48.026 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57933 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:38:48.016 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:38:48.019 [info] [command][c9b1f159-0fc0-43a0-9747-ea403d0da453] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c9b1f159-0fc0-43a0-9747-ea403d0da453""}\n2025-07-17 14:38:48.020 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b9a6a0c4-f53a-4e03-8661-744925da27f1] received connection request\n2025-07-17 14:38:48.020 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:38:48.037 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b9a6a0c4-f53a-4e03-8661-744925da27f1] socks forwarding established\n2025-07-17 14:38:48.150 [info] [command][c9b1f159-0fc0-43a0-9747-ea403d0da453] Process exited with code 0\n2025-07-17 14:38:48.150 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b9a6a0c4-f53a-4e03-8661-744925da27f1] socks connection closed\n2025-07-17 14:38:48.150 [info] [command][c9b1f159-0fc0-43a0-9747-ea403d0da453] Socket close event received\n2025-07-17 14:38:48.167 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 57996 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:39:48.156 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:39:48.158 [info] [command][73eabea7-7047-43dc-bcc2-82ef9b0fd59f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""73eabea7-7047-43dc-bcc2-82ef9b0fd59f""}\n2025-07-17 14:39:48.159 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a0d91698-cd12-44b2-a2e7-58fe3ca211d1] received connection request\n2025-07-17 14:39:48.159 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:39:48.174 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a0d91698-cd12-44b2-a2e7-58fe3ca211d1] socks forwarding established\n2025-07-17 14:39:48.207 [info] [command][73eabea7-7047-43dc-bcc2-82ef9b0fd59f] Process exited with code 0\n2025-07-17 14:39:48.207 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a0d91698-cd12-44b2-a2e7-58fe3ca211d1] socks connection closed\n2025-07-17 14:39:48.207 [info] [command][73eabea7-7047-43dc-bcc2-82ef9b0fd59f] Socket close event received\n2025-07-17 14:39:48.222 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58039 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:40:48.210 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:40:48.211 [info] [command][1e31ce3c-b04d-4a37-89dc-33caae8134ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1e31ce3c-b04d-4a37-89dc-33caae8134ba""}\n2025-07-17 14:40:48.212 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1c5c5488-7f19-4ad0-87a1-1599451fe25e] received connection request\n2025-07-17 14:40:48.212 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:40:48.227 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1c5c5488-7f19-4ad0-87a1-1599451fe25e] socks forwarding established\n2025-07-17 14:40:48.262 [info] [command][1e31ce3c-b04d-4a37-89dc-33caae8134ba] Process exited with code 0\n2025-07-17 14:40:48.262 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1c5c5488-7f19-4ad0-87a1-1599451fe25e] socks connection closed\n2025-07-17 14:40:48.263 [info] [command][1e31ce3c-b04d-4a37-89dc-33caae8134ba] Socket close event received\n2025-07-17 14:40:48.276 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58169 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:41:48.265 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:41:48.267 [info] [command][18af09d5-fbe5-4e27-820e-3622a2e049e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""18af09d5-fbe5-4e27-820e-3622a2e049e1""}\n2025-07-17 14:41:48.268 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bc9078d1-4bc1-4cc5-b020-786e9d81fe6d] received connection request\n2025-07-17 14:41:48.268 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:41:48.284 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bc9078d1-4bc1-4cc5-b020-786e9d81fe6d] socks forwarding established\n2025-07-17 14:41:48.314 [info] [command][18af09d5-fbe5-4e27-820e-3622a2e049e1] Process exited with code 0\n2025-07-17 14:41:48.314 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bc9078d1-4bc1-4cc5-b020-786e9d81fe6d] socks connection closed\n2025-07-17 14:41:48.314 [info] [command][18af09d5-fbe5-4e27-820e-3622a2e049e1] Socket close event received\n2025-07-17 14:41:48.330 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58208 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:42:48.319 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:42:48.321 [info] [command][83fa66aa-ade9-4c99-b1cb-9890b9c52a47] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""83fa66aa-ade9-4c99-b1cb-9890b9c52a47""}\n2025-07-17 14:42:48.321 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][00a3c2d6-e5fa-4091-ba50-0200c99a4ce0] received connection request\n2025-07-17 14:42:48.322 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:42:48.338 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][00a3c2d6-e5fa-4091-ba50-0200c99a4ce0] socks forwarding established\n2025-07-17 14:42:48.370 [info] [command][83fa66aa-ade9-4c99-b1cb-9890b9c52a47] Process exited with code 0\n2025-07-17 14:42:48.371 [info] [command][83fa66aa-ade9-4c99-b1cb-9890b9c52a47] Socket close event received\n2025-07-17 14:42:48.383 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][00a3c2d6-e5fa-4091-ba50-0200c99a4ce0] socks connection closed\n2025-07-17 14:42:48.384 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58250 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:43:48.377 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:43:48.379 [info] [command][caa83877-3936-4605-a885-f114378f128c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""caa83877-3936-4605-a885-f114378f128c""}\n2025-07-17 14:43:48.380 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6bfedc8d-8854-42c8-b4ad-8887607fc489] received connection request\n2025-07-17 14:43:48.381 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:43:48.396 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6bfedc8d-8854-42c8-b4ad-8887607fc489] socks forwarding established\n2025-07-17 14:43:48.426 [info] [command][caa83877-3936-4605-a885-f114378f128c] Process exited with code 0\n2025-07-17 14:43:48.426 [info] [command][caa83877-3936-4605-a885-f114378f128c] Socket close event received\n2025-07-17 14:43:48.438 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6bfedc8d-8854-42c8-b4ad-8887607fc489] socks connection closed\n2025-07-17 14:43:48.443 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58298 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:44:48.429 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:44:48.431 [info] [command][9753d827-6458-40b1-b7ee-e87815413ace] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9753d827-6458-40b1-b7ee-e87815413ace""}\n2025-07-17 14:44:48.431 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f10471c9-7df7-4f6e-be92-2d3783b6529e] received connection request\n2025-07-17 14:44:48.431 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 14:44:48.431 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:44:48.447 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f10471c9-7df7-4f6e-be92-2d3783b6529e] socks forwarding established\n2025-07-17 14:44:48.477 [info] [command][9753d827-6458-40b1-b7ee-e87815413ace] Process exited with code 0\n2025-07-17 14:44:48.477 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f10471c9-7df7-4f6e-be92-2d3783b6529e] socks connection closed\n2025-07-17 14:44:48.477 [info] [command][9753d827-6458-40b1-b7ee-e87815413ace] Socket close event received\n2025-07-17 14:44:48.493 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58332 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:45:48.482 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:45:48.484 [info] [command][91d60e97-0acf-49a7-a453-6e6da716903f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""91d60e97-0acf-49a7-a453-6e6da716903f""}\n2025-07-17 14:45:48.485 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][cdc3e16c-8e8c-4fa0-969d-9c31a19d20d9] received connection request\n2025-07-17 14:45:48.486 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:45:48.503 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cdc3e16c-8e8c-4fa0-969d-9c31a19d20d9] socks forwarding established\n2025-07-17 14:45:48.532 [info] [command][91d60e97-0acf-49a7-a453-6e6da716903f] Process exited with code 0\n2025-07-17 14:45:48.532 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cdc3e16c-8e8c-4fa0-969d-9c31a19d20d9] socks connection closed\n2025-07-17 14:45:48.533 [info] [command][91d60e97-0acf-49a7-a453-6e6da716903f] Socket close event received\n2025-07-17 14:45:48.550 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58398 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:46:48.538 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:46:48.541 [info] [command][a644ea22-461f-4042-aa55-d7c0536bfc38] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a644ea22-461f-4042-aa55-d7c0536bfc38""}\n2025-07-17 14:46:48.543 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][0d478b21-1e45-4ada-bb98-332c1c1a556c] received connection request\n2025-07-17 14:46:48.543 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:46:48.560 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0d478b21-1e45-4ada-bb98-332c1c1a556c] socks forwarding established\n2025-07-17 14:46:48.589 [info] [command][a644ea22-461f-4042-aa55-d7c0536bfc38] Process exited with code 0\n2025-07-17 14:46:48.590 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0d478b21-1e45-4ada-bb98-332c1c1a556c] socks connection closed\n2025-07-17 14:46:48.590 [info] [command][a644ea22-461f-4042-aa55-d7c0536bfc38] Socket close event received\n2025-07-17 14:46:48.607 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58433 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:47:48.594 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:47:48.596 [info] [command][29478e73-176b-434e-9510-954e4080aeb8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""29478e73-176b-434e-9510-954e4080aeb8""}\n2025-07-17 14:47:48.596 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5c9d791d-8919-44d2-828d-bb1ab18cb6bd] received connection request\n2025-07-17 14:47:48.596 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:47:48.690 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5c9d791d-8919-44d2-828d-bb1ab18cb6bd] socks forwarding established\n2025-07-17 14:47:48.719 [info] [command][29478e73-176b-434e-9510-954e4080aeb8] Process exited with code 0\n2025-07-17 14:47:48.719 [info] [command][29478e73-176b-434e-9510-954e4080aeb8] Socket close event received\n2025-07-17 14:47:48.732 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5c9d791d-8919-44d2-828d-bb1ab18cb6bd] socks connection closed\n2025-07-17 14:47:48.734 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58456 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:48:48.724 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:48:48.726 [info] [command][27519d06-885e-4081-bb2b-a3aa0fa55ed3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""27519d06-885e-4081-bb2b-a3aa0fa55ed3""}\n2025-07-17 14:48:48.727 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d45cbf2f-d4fe-4847-aab9-bbeb8ace8b81] received connection request\n2025-07-17 14:48:48.727 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:48:48.762 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d45cbf2f-d4fe-4847-aab9-bbeb8ace8b81] socks forwarding established\n2025-07-17 14:48:48.789 [info] [command][27519d06-885e-4081-bb2b-a3aa0fa55ed3] Process exited with code 0\n2025-07-17 14:48:48.790 [info] [command][27519d06-885e-4081-bb2b-a3aa0fa55ed3] Socket close event received\n2025-07-17 14:48:48.803 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d45cbf2f-d4fe-4847-aab9-bbeb8ace8b81] socks connection closed\n2025-07-17 14:48:48.804 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58528 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:49:48.792 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:49:48.794 [info] [command][442ff1de-5373-41b5-b524-decc7e326464] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""442ff1de-5373-41b5-b524-decc7e326464""}\n2025-07-17 14:49:48.795 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a7c498d8-7233-4542-aa85-a19aea8a9183] received connection request\n2025-07-17 14:49:48.796 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:49:48.811 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a7c498d8-7233-4542-aa85-a19aea8a9183] socks forwarding established\n2025-07-17 14:49:48.841 [info] [command][442ff1de-5373-41b5-b524-decc7e326464] Process exited with code 0\n2025-07-17 14:49:48.842 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a7c498d8-7233-4542-aa85-a19aea8a9183] socks connection closed\n2025-07-17 14:49:48.842 [info] [command][442ff1de-5373-41b5-b524-decc7e326464] Socket close event received\n2025-07-17 14:49:48.859 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58560 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:50:48.844 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:50:48.846 [info] [command][999756d7-c7ca-4de9-af37-5845175d06dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""999756d7-c7ca-4de9-af37-5845175d06dc""}\n2025-07-17 14:50:48.846 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ae0e3e14-c880-4cdb-93ad-61682d677213] received connection request\n2025-07-17 14:50:48.847 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:50:48.937 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ae0e3e14-c880-4cdb-93ad-61682d677213] socks forwarding established\n2025-07-17 14:50:48.973 [info] [command][999756d7-c7ca-4de9-af37-5845175d06dc] Process exited with code 0\n2025-07-17 14:50:48.974 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ae0e3e14-c880-4cdb-93ad-61682d677213] socks connection closed\n2025-07-17 14:50:48.974 [info] [command][999756d7-c7ca-4de9-af37-5845175d06dc] Socket close event received\n2025-07-17 14:50:48.998 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58691 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:51:48.980 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:51:48.982 [info] [command][bd418a88-63d2-47bc-90b2-ffc4f5093c83] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""bd418a88-63d2-47bc-90b2-ffc4f5093c83""}\n2025-07-17 14:51:48.983 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c78ca8eb-384a-4fdf-87df-e6342ea37235] received connection request\n2025-07-17 14:51:48.984 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 14:51:48.984 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:51:49.002 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c78ca8eb-384a-4fdf-87df-e6342ea37235] socks forwarding established\n2025-07-17 14:51:49.035 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c78ca8eb-384a-4fdf-87df-e6342ea37235] socks connection closed\n2025-07-17 14:51:49.035 [info] [command][bd418a88-63d2-47bc-90b2-ffc4f5093c83] Process exited with code 0\n2025-07-17 14:51:49.035 [info] [command][bd418a88-63d2-47bc-90b2-ffc4f5093c83] Socket close event received\n2025-07-17 14:51:49.051 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58744 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:52:49.039 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:52:49.040 [info] [command][1274cc99-558d-45f8-8866-82a9e6d201b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1274cc99-558d-45f8-8866-82a9e6d201b0""}\n2025-07-17 14:52:49.041 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3876226e-4bdc-40f8-a378-691982dd856c] received connection request\n2025-07-17 14:52:49.041 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:52:49.058 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3876226e-4bdc-40f8-a378-691982dd856c] socks forwarding established\n2025-07-17 14:52:49.087 [info] [command][1274cc99-558d-45f8-8866-82a9e6d201b0] Process exited with code 0\n2025-07-17 14:52:49.088 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3876226e-4bdc-40f8-a378-691982dd856c] socks connection closed\n2025-07-17 14:52:49.088 [info] [command][1274cc99-558d-45f8-8866-82a9e6d201b0] Socket close event received\n2025-07-17 14:52:49.103 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58805 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:53:49.088 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:53:49.090 [info] [command][587a9944-14ae-4406-acad-6fe0ae69149e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""587a9944-14ae-4406-acad-6fe0ae69149e""}\n2025-07-17 14:53:49.090 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7dbcfdfb-dc99-4d13-9114-b1d4f0abe596] received connection request\n2025-07-17 14:53:49.091 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:53:49.105 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7dbcfdfb-dc99-4d13-9114-b1d4f0abe596] socks forwarding established\n2025-07-17 14:53:49.133 [info] [command][587a9944-14ae-4406-acad-6fe0ae69149e] Process exited with code 0\n2025-07-17 14:53:49.133 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7dbcfdfb-dc99-4d13-9114-b1d4f0abe596] socks connection closed\n2025-07-17 14:53:49.133 [info] [command][587a9944-14ae-4406-acad-6fe0ae69149e] Socket close event received\n2025-07-17 14:53:49.148 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58851 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:54:49.134 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:54:49.138 [info] [command][e182b7a6-ae52-4303-8834-49ac48d6ce92] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e182b7a6-ae52-4303-8834-49ac48d6ce92""}\n2025-07-17 14:54:49.138 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][90839e43-f64d-4693-af35-75b695cd70e8] received connection request\n2025-07-17 14:54:49.139 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:54:49.155 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][90839e43-f64d-4693-af35-75b695cd70e8] socks forwarding established\n2025-07-17 14:54:49.185 [info] [command][e182b7a6-ae52-4303-8834-49ac48d6ce92] Process exited with code 0\n2025-07-17 14:54:49.186 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][90839e43-f64d-4693-af35-75b695cd70e8] socks connection closed\n2025-07-17 14:54:49.186 [info] [command][e182b7a6-ae52-4303-8834-49ac48d6ce92] Socket close event received\n2025-07-17 14:54:49.203 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58889 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:55:49.187 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:55:49.189 [info] [command][b93e7762-53b1-4c73-b78b-7b249ec19012] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b93e7762-53b1-4c73-b78b-7b249ec19012""}\n2025-07-17 14:55:49.190 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4a66cb94-35a7-4b77-995d-38e0437e3f41] received connection request\n2025-07-17 14:55:49.191 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:55:49.206 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4a66cb94-35a7-4b77-995d-38e0437e3f41] socks forwarding established\n2025-07-17 14:55:49.238 [info] [command][b93e7762-53b1-4c73-b78b-7b249ec19012] Process exited with code 0\n2025-07-17 14:55:49.238 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4a66cb94-35a7-4b77-995d-38e0437e3f41] socks connection closed\n2025-07-17 14:55:49.238 [info] [command][b93e7762-53b1-4c73-b78b-7b249ec19012] Socket close event received\n2025-07-17 14:55:49.254 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58955 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:56:49.244 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:56:49.246 [info] [command][41abc181-7896-4f77-bf1d-714e26e6d080] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""41abc181-7896-4f77-bf1d-714e26e6d080""}\n2025-07-17 14:56:49.247 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8368b147-3262-44bd-9a29-5b56a8f2f023] received connection request\n2025-07-17 14:56:49.248 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:56:49.291 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8368b147-3262-44bd-9a29-5b56a8f2f023] socks forwarding established\n2025-07-17 14:56:49.367 [info] [command][41abc181-7896-4f77-bf1d-714e26e6d080] Process exited with code 0\n2025-07-17 14:56:49.368 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8368b147-3262-44bd-9a29-5b56a8f2f023] socks connection closed\n2025-07-17 14:56:49.368 [info] [command][41abc181-7896-4f77-bf1d-714e26e6d080] Socket close event received\n2025-07-17 14:56:49.417 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 58985 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:57:49.373 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:57:49.376 [info] [command][7c5440d7-312a-4dfa-8d3c-7349deb6a3ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""7c5440d7-312a-4dfa-8d3c-7349deb6a3ab""}\n2025-07-17 14:57:49.377 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5ae5b127-9c07-40ad-9082-7e16bad159eb] received connection request\n2025-07-17 14:57:49.378 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:57:49.406 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5ae5b127-9c07-40ad-9082-7e16bad159eb] socks forwarding established\n2025-07-17 14:57:49.450 [info] [command][7c5440d7-312a-4dfa-8d3c-7349deb6a3ab] Process exited with code 0\n2025-07-17 14:57:49.450 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5ae5b127-9c07-40ad-9082-7e16bad159eb] socks connection closed\n2025-07-17 14:57:49.451 [info] [command][7c5440d7-312a-4dfa-8d3c-7349deb6a3ab] Socket close event received\n2025-07-17 14:57:49.497 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59057 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:58:49.455 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:58:49.456 [info] [command][9f48fed3-cbd4-48d4-86a5-ffc18e253bf7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9f48fed3-cbd4-48d4-86a5-ffc18e253bf7""}\n2025-07-17 14:58:49.456 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][631d66dd-8e46-4c06-8109-61bb79cb04fc] received connection request\n2025-07-17 14:58:49.457 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:58:49.473 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][631d66dd-8e46-4c06-8109-61bb79cb04fc] socks forwarding established\n2025-07-17 14:58:49.504 [info] [command][9f48fed3-cbd4-48d4-86a5-ffc18e253bf7] Process exited with code 0\n2025-07-17 14:58:49.504 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][631d66dd-8e46-4c06-8109-61bb79cb04fc] socks connection closed\n2025-07-17 14:58:49.504 [info] [command][9f48fed3-cbd4-48d4-86a5-ffc18e253bf7] Socket close event received\n2025-07-17 14:58:49.520 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59125 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 14:59:49.506 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 14:59:49.509 [info] [command][a1e9a9e1-060f-4511-886f-eb996585d1ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a1e9a9e1-060f-4511-886f-eb996585d1ed""}\n2025-07-17 14:59:49.510 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1d998c2c-2de8-413f-a20c-9608881e2a1f] received connection request\n2025-07-17 14:59:49.510 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 14:59:49.525 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1d998c2c-2de8-413f-a20c-9608881e2a1f] socks forwarding established\n2025-07-17 14:59:49.554 [info] [command][a1e9a9e1-060f-4511-886f-eb996585d1ed] Process exited with code 0\n2025-07-17 14:59:49.554 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1d998c2c-2de8-413f-a20c-9608881e2a1f] socks connection closed\n2025-07-17 14:59:49.555 [info] [command][a1e9a9e1-060f-4511-886f-eb996585d1ed] Socket close event received\n2025-07-17 14:59:49.577 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59162 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:00:49.559 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:00:49.562 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][08a00245-1412-46dd-b422-8372a69486bd] received connection request\n2025-07-17 15:00:49.563 [info] [command][9776599f-2889-4a6e-9503-40dafd5d039a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9776599f-2889-4a6e-9503-40dafd5d039a""}\n2025-07-17 15:00:49.563 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:00:49.601 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][08a00245-1412-46dd-b422-8372a69486bd] socks forwarding established\n2025-07-17 15:00:49.645 [info] [command][9776599f-2889-4a6e-9503-40dafd5d039a] Process exited with code 0\n2025-07-17 15:00:49.646 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][08a00245-1412-46dd-b422-8372a69486bd] socks connection closed\n2025-07-17 15:00:49.646 [info] [command][9776599f-2889-4a6e-9503-40dafd5d039a] Socket close event received\n2025-07-17 15:00:49.674 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59223 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:01:49.647 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:01:49.649 [info] [command][40e76541-f64b-4bf4-ad8d-b101c4cf2b78] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""40e76541-f64b-4bf4-ad8d-b101c4cf2b78""}\n2025-07-17 15:01:49.650 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][319f1763-10e1-49e2-9218-e094ed30c0eb] received connection request\n2025-07-17 15:01:49.650 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 15:01:49.650 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:01:49.675 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][319f1763-10e1-49e2-9218-e094ed30c0eb] socks forwarding established\n2025-07-17 15:01:49.724 [info] [command][40e76541-f64b-4bf4-ad8d-b101c4cf2b78] Process exited with code 0\n2025-07-17 15:01:49.725 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][319f1763-10e1-49e2-9218-e094ed30c0eb] socks connection closed\n2025-07-17 15:01:49.725 [info] [command][40e76541-f64b-4bf4-ad8d-b101c4cf2b78] Socket close event received\n2025-07-17 15:01:49.750 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59249 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:02:49.729 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:02:49.731 [info] [command][1051de40-d656-49a1-b10d-e044c82cff07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1051de40-d656-49a1-b10d-e044c82cff07""}\n2025-07-17 15:02:49.732 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][254d463c-e8b7-42d5-bba6-191d43698132] received connection request\n2025-07-17 15:02:49.733 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:02:49.749 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][254d463c-e8b7-42d5-bba6-191d43698132] socks forwarding established\n2025-07-17 15:02:49.785 [info] [command][1051de40-d656-49a1-b10d-e044c82cff07] Process exited with code 0\n2025-07-17 15:02:49.786 [info] [command][1051de40-d656-49a1-b10d-e044c82cff07] Socket close event received\n2025-07-17 15:02:49.787 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][254d463c-e8b7-42d5-bba6-191d43698132] socks connection closed\n2025-07-17 15:02:49.821 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59284 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:03:49.791 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:03:49.793 [info] [command][ede57081-94af-4000-9cf4-74301d2333f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ede57081-94af-4000-9cf4-74301d2333f6""}\n2025-07-17 15:03:49.794 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][2063a8b0-d336-4141-a16d-52fa2cc9ef82] received connection request\n2025-07-17 15:03:49.795 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:03:49.812 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2063a8b0-d336-4141-a16d-52fa2cc9ef82] socks forwarding established\n2025-07-17 15:03:49.845 [info] [command][ede57081-94af-4000-9cf4-74301d2333f6] Process exited with code 0\n2025-07-17 15:03:49.845 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2063a8b0-d336-4141-a16d-52fa2cc9ef82] socks connection closed\n2025-07-17 15:03:49.845 [info] [command][ede57081-94af-4000-9cf4-74301d2333f6] Socket close event received\n2025-07-17 15:03:49.862 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59328 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:04:49.851 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:04:49.854 [info] [command][f7b10604-1042-445d-b50a-1b5ab286951f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f7b10604-1042-445d-b50a-1b5ab286951f""}\n2025-07-17 15:04:49.854 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][569476f3-a5a0-422d-9584-5f3043f4f293] received connection request\n2025-07-17 15:04:49.855 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:04:49.900 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][569476f3-a5a0-422d-9584-5f3043f4f293] socks forwarding established\n2025-07-17 15:04:49.945 [info] [command][f7b10604-1042-445d-b50a-1b5ab286951f] Process exited with code 0\n2025-07-17 15:04:49.945 [info] [command][f7b10604-1042-445d-b50a-1b5ab286951f] Socket close event received\n2025-07-17 15:04:49.950 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][569476f3-a5a0-422d-9584-5f3043f4f293] socks connection closed\n2025-07-17 15:04:49.970 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59365 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:05:49.952 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:05:49.954 [info] [command][f78abf0e-6b01-4ab7-b219-196cc0b1608e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f78abf0e-6b01-4ab7-b219-196cc0b1608e""}\n2025-07-17 15:05:49.956 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7c77b932-028e-41f8-9e88-5e02a4396e9d] received connection request\n2025-07-17 15:05:49.956 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:05:49.972 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7c77b932-028e-41f8-9e88-5e02a4396e9d] socks forwarding established\n2025-07-17 15:05:49.999 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7c77b932-028e-41f8-9e88-5e02a4396e9d] socks connection closed\n2025-07-17 15:05:49.999 [info] [command][f78abf0e-6b01-4ab7-b219-196cc0b1608e] Process exited with code 0\n2025-07-17 15:05:49.999 [info] [command][f78abf0e-6b01-4ab7-b219-196cc0b1608e] Socket close event received\n2025-07-17 15:05:50.013 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59430 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:06:50.000 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:06:50.003 [info] [command][6b6d137b-89da-40e2-8650-b56b8902517e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6b6d137b-89da-40e2-8650-b56b8902517e""}\n2025-07-17 15:06:50.004 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5ad9934e-52c2-4985-8735-552ddf51674b] received connection request\n2025-07-17 15:06:50.005 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:06:50.025 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5ad9934e-52c2-4985-8735-552ddf51674b] socks forwarding established\n2025-07-17 15:06:50.142 [info] [command][6b6d137b-89da-40e2-8650-b56b8902517e] Process exited with code 0\n2025-07-17 15:06:50.142 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5ad9934e-52c2-4985-8735-552ddf51674b] socks connection closed\n2025-07-17 15:06:50.143 [info] [command][6b6d137b-89da-40e2-8650-b56b8902517e] Socket close event received\n2025-07-17 15:06:50.172 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59465 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:07:50.147 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:07:50.150 [info] [command][b94c513d-4544-49bd-8106-e57660a88d7c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b94c513d-4544-49bd-8106-e57660a88d7c""}\n2025-07-17 15:07:50.151 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][43b65761-5760-46e9-82a9-87314b7e656b] received connection request\n2025-07-17 15:07:50.152 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:07:50.195 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][43b65761-5760-46e9-82a9-87314b7e656b] socks forwarding established\n2025-07-17 15:07:50.232 [info] [command][b94c513d-4544-49bd-8106-e57660a88d7c] Process exited with code 0\n2025-07-17 15:07:50.232 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][43b65761-5760-46e9-82a9-87314b7e656b] socks connection closed\n2025-07-17 15:07:50.232 [info] [command][b94c513d-4544-49bd-8106-e57660a88d7c] Socket close event received\n2025-07-17 15:07:50.274 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59497 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:08:50.238 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:08:50.242 [info] [command][56ae6127-66bb-4a2d-b124-d0557815c1a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""56ae6127-66bb-4a2d-b124-d0557815c1a5""}\n2025-07-17 15:08:50.243 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][86b2f0d4-f01e-40be-86e4-4236ab596ff1] received connection request\n2025-07-17 15:08:50.244 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:08:50.357 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][86b2f0d4-f01e-40be-86e4-4236ab596ff1] socks forwarding established\n2025-07-17 15:08:50.387 [info] [command][56ae6127-66bb-4a2d-b124-d0557815c1a5] Process exited with code 0\n2025-07-17 15:08:50.387 [info] [command][56ae6127-66bb-4a2d-b124-d0557815c1a5] Socket close event received\n2025-07-17 15:08:50.391 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][86b2f0d4-f01e-40be-86e4-4236ab596ff1] socks connection closed\n2025-07-17 15:08:50.448 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59540 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:09:50.393 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:09:50.396 [info] [command][ec6a2629-4a28-422d-8ec7-427594017f79] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ec6a2629-4a28-422d-8ec7-427594017f79""}\n2025-07-17 15:09:50.397 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c422bbed-ce0a-43cc-9f12-09321430d745] received connection request\n2025-07-17 15:09:50.397 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:09:50.412 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c422bbed-ce0a-43cc-9f12-09321430d745] socks forwarding established\n2025-07-17 15:09:50.441 [info] [command][ec6a2629-4a28-422d-8ec7-427594017f79] Process exited with code 0\n2025-07-17 15:09:50.442 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c422bbed-ce0a-43cc-9f12-09321430d745] socks connection closed\n2025-07-17 15:09:50.443 [info] [command][ec6a2629-4a28-422d-8ec7-427594017f79] Socket close event received\n2025-07-17 15:09:50.459 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59568 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:10:50.445 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:10:50.447 [info] [command][fe26216a-3eca-4974-9d03-ce9df6204954] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""fe26216a-3eca-4974-9d03-ce9df6204954""}\n2025-07-17 15:10:50.448 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][195bc227-52af-4f88-8912-522616484ea4] received connection request\n2025-07-17 15:10:50.449 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:10:50.466 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][195bc227-52af-4f88-8912-522616484ea4] socks forwarding established\n2025-07-17 15:10:50.500 [info] [command][fe26216a-3eca-4974-9d03-ce9df6204954] Process exited with code 0\n2025-07-17 15:10:50.500 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][195bc227-52af-4f88-8912-522616484ea4] socks connection closed\n2025-07-17 15:10:50.500 [info] [command][fe26216a-3eca-4974-9d03-ce9df6204954] Socket close event received\n2025-07-17 15:10:50.515 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59620 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:11:50.505 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:11:50.508 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][32cdd95e-c937-4409-ad4d-86672a2c9f20] received connection request\n2025-07-17 15:11:50.508 [info] [command][e258f81a-7c47-4473-b75d-cdfe781bb157] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e258f81a-7c47-4473-b75d-cdfe781bb157""}\n2025-07-17 15:11:50.509 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:11:50.525 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][32cdd95e-c937-4409-ad4d-86672a2c9f20] socks forwarding established\n2025-07-17 15:11:50.552 [info] [command][e258f81a-7c47-4473-b75d-cdfe781bb157] Process exited with code 0\n2025-07-17 15:11:50.552 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][32cdd95e-c937-4409-ad4d-86672a2c9f20] socks connection closed\n2025-07-17 15:11:50.552 [info] [command][e258f81a-7c47-4473-b75d-cdfe781bb157] Socket close event received\n2025-07-17 15:11:50.569 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59641 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:12:50.555 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:12:50.558 [info] [command][e9998af0-0337-4c3a-8a53-96265d5783a9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e9998af0-0337-4c3a-8a53-96265d5783a9""}\n2025-07-17 15:12:50.559 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][2f069042-2c35-4ce3-bafd-7cec41788ddf] received connection request\n2025-07-17 15:12:50.560 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:12:50.577 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2f069042-2c35-4ce3-bafd-7cec41788ddf] socks forwarding established\n2025-07-17 15:12:50.608 [info] [command][e9998af0-0337-4c3a-8a53-96265d5783a9] Process exited with code 0\n2025-07-17 15:12:50.608 [info] [command][e9998af0-0337-4c3a-8a53-96265d5783a9] Socket close event received\n2025-07-17 15:12:50.610 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2f069042-2c35-4ce3-bafd-7cec41788ddf] socks connection closed\n2025-07-17 15:12:50.624 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59670 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:13:50.613 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:13:50.616 [info] [command][8b3e104c-c7cb-45eb-97bf-b1d992aa6f71] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8b3e104c-c7cb-45eb-97bf-b1d992aa6f71""}\n2025-07-17 15:13:50.617 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][93b9c53e-bbb9-4ab2-a23f-8a11a0d4cddb] received connection request\n2025-07-17 15:13:50.618 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:13:50.641 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][93b9c53e-bbb9-4ab2-a23f-8a11a0d4cddb] socks forwarding established\n2025-07-17 15:13:50.683 [info] [command][8b3e104c-c7cb-45eb-97bf-b1d992aa6f71] Process exited with code 0\n2025-07-17 15:13:50.683 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][93b9c53e-bbb9-4ab2-a23f-8a11a0d4cddb] socks connection closed\n2025-07-17 15:13:50.684 [info] [command][8b3e104c-c7cb-45eb-97bf-b1d992aa6f71] Socket close event received\n2025-07-17 15:13:50.798 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59704 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:14:50.684 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:14:50.685 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][85a68fbd-31f5-434d-8b44-a50d110b1862] received connection request\n2025-07-17 15:14:50.686 [info] [command][03b4ed63-3ffd-4a17-a8d6-fff76ae54629] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""03b4ed63-3ffd-4a17-a8d6-fff76ae54629""}\n2025-07-17 15:14:50.686 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:14:50.707 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][85a68fbd-31f5-434d-8b44-a50d110b1862] socks forwarding established\n2025-07-17 15:14:50.742 [info] [command][03b4ed63-3ffd-4a17-a8d6-fff76ae54629] Process exited with code 0\n2025-07-17 15:14:50.743 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][85a68fbd-31f5-434d-8b44-a50d110b1862] socks connection closed\n2025-07-17 15:14:50.743 [info] [command][03b4ed63-3ffd-4a17-a8d6-fff76ae54629] Socket close event received\n2025-07-17 15:14:50.769 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59749 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:15:50.746 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:15:50.748 [info] [command][b16a1583-8382-4fee-9c94-525c3fef077b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b16a1583-8382-4fee-9c94-525c3fef077b""}\n2025-07-17 15:15:50.749 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][234c1004-7e47-4858-bf20-9a59e1f8d22b] received connection request\n2025-07-17 15:15:50.750 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:15:50.765 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][234c1004-7e47-4858-bf20-9a59e1f8d22b] socks forwarding established\n2025-07-17 15:15:50.793 [info] [command][b16a1583-8382-4fee-9c94-525c3fef077b] Process exited with code 0\n2025-07-17 15:15:50.793 [info] [command][b16a1583-8382-4fee-9c94-525c3fef077b] Socket close event received\n2025-07-17 15:15:50.805 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][234c1004-7e47-4858-bf20-9a59e1f8d22b] socks connection closed\n2025-07-17 15:15:50.814 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59800 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:16:50.794 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:16:50.797 [info] [command][3cae08e4-d404-4c34-a228-8dfef6b0ca1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""3cae08e4-d404-4c34-a228-8dfef6b0ca1e""}\n2025-07-17 15:16:50.798 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c767038f-5bc3-489c-a073-2f12c4c6382b] received connection request\n2025-07-17 15:16:50.799 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:16:50.815 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c767038f-5bc3-489c-a073-2f12c4c6382b] socks forwarding established\n2025-07-17 15:16:50.850 [info] [command][3cae08e4-d404-4c34-a228-8dfef6b0ca1e] Process exited with code 0\n2025-07-17 15:16:50.851 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c767038f-5bc3-489c-a073-2f12c4c6382b] socks connection closed\n2025-07-17 15:16:50.851 [info] [command][3cae08e4-d404-4c34-a228-8dfef6b0ca1e] Socket close event received\n2025-07-17 15:16:50.866 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59826 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:17:50.851 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:17:50.854 [info] [command][a64342e6-9453-40d4-b6e4-3e79c60842ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a64342e6-9453-40d4-b6e4-3e79c60842ff""}\n2025-07-17 15:17:50.855 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][45810c7b-604f-4c34-9ed4-fe0307a95e4a] received connection request\n2025-07-17 15:17:50.855 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:17:50.871 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][45810c7b-604f-4c34-9ed4-fe0307a95e4a] socks forwarding established\n2025-07-17 15:17:50.898 [info] [command][a64342e6-9453-40d4-b6e4-3e79c60842ff] Process exited with code 0\n2025-07-17 15:17:50.898 [info] [command][a64342e6-9453-40d4-b6e4-3e79c60842ff] Socket close event received\n2025-07-17 15:17:50.899 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][45810c7b-604f-4c34-9ed4-fe0307a95e4a] socks connection closed\n2025-07-17 15:17:50.913 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59865 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:18:50.904 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:18:50.907 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7672e4cb-c8b9-4739-b439-67e097ebce33] received connection request\n2025-07-17 15:18:50.907 [info] [command][aed24605-7408-44f9-968e-5ef18ccd5a12] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""aed24605-7408-44f9-968e-5ef18ccd5a12""}\n2025-07-17 15:18:50.907 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:18:50.926 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7672e4cb-c8b9-4739-b439-67e097ebce33] socks forwarding established\n2025-07-17 15:18:50.955 [info] [command][aed24605-7408-44f9-968e-5ef18ccd5a12] Process exited with code 0\n2025-07-17 15:18:50.955 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7672e4cb-c8b9-4739-b439-67e097ebce33] socks connection closed\n2025-07-17 15:18:50.955 [info] [command][aed24605-7408-44f9-968e-5ef18ccd5a12] Socket close event received\n2025-07-17 15:18:50.972 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59909 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:19:50.960 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:19:50.963 [info] [command][b0c622fb-0b0a-45c0-994d-46f713993a43] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b0c622fb-0b0a-45c0-994d-46f713993a43""}\n2025-07-17 15:19:50.964 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e82ce56b-a244-424d-a3a9-99620a14becd] received connection request\n2025-07-17 15:19:50.965 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:19:51.007 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e82ce56b-a244-424d-a3a9-99620a14becd] socks forwarding established\n2025-07-17 15:19:51.041 [info] [command][b0c622fb-0b0a-45c0-994d-46f713993a43] Process exited with code 0\n2025-07-17 15:19:51.041 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e82ce56b-a244-424d-a3a9-99620a14becd] socks connection closed\n2025-07-17 15:19:51.041 [info] [command][b0c622fb-0b0a-45c0-994d-46f713993a43] Socket close event received\n2025-07-17 15:19:51.059 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 59943 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:20:51.042 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:20:51.045 [info] [command][537d69ac-d8a1-4c5b-b400-842cb68e5b20] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""537d69ac-d8a1-4c5b-b400-842cb68e5b20""}\n2025-07-17 15:20:51.046 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][279b1923-c6ba-42e3-a414-3a1f9a6a5511] received connection request\n2025-07-17 15:20:51.046 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:20:51.063 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][279b1923-c6ba-42e3-a414-3a1f9a6a5511] socks forwarding established\n2025-07-17 15:20:51.092 [info] [command][537d69ac-d8a1-4c5b-b400-842cb68e5b20] Process exited with code 0\n2025-07-17 15:20:51.092 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][279b1923-c6ba-42e3-a414-3a1f9a6a5511] socks connection closed\n2025-07-17 15:20:51.092 [info] [command][537d69ac-d8a1-4c5b-b400-842cb68e5b20] Socket close event received\n2025-07-17 15:20:51.112 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60001 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:21:51.098 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:21:51.100 [info] [command][a4e0d70c-43c3-4243-8803-9f8a946c643b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a4e0d70c-43c3-4243-8803-9f8a946c643b""}\n2025-07-17 15:21:51.100 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][aeda65a1-c6dc-4ee4-9a73-7e52c8b09b30] received connection request\n2025-07-17 15:21:51.101 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:21:51.117 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][aeda65a1-c6dc-4ee4-9a73-7e52c8b09b30] socks forwarding established\n2025-07-17 15:21:51.147 [info] [command][a4e0d70c-43c3-4243-8803-9f8a946c643b] Process exited with code 0\n2025-07-17 15:21:51.147 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][aeda65a1-c6dc-4ee4-9a73-7e52c8b09b30] socks connection closed\n2025-07-17 15:21:51.147 [info] [command][a4e0d70c-43c3-4243-8803-9f8a946c643b] Socket close event received\n2025-07-17 15:21:51.164 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60029 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:22:51.153 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:22:51.156 [info] [command][75c0bc0e-34f2-4712-afdd-a9f5bc84a1d5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""75c0bc0e-34f2-4712-afdd-a9f5bc84a1d5""}\n2025-07-17 15:22:51.156 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d900f7d2-0cf4-4ebf-a531-c9c524ad87f6] received connection request\n2025-07-17 15:22:51.157 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:22:51.175 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d900f7d2-0cf4-4ebf-a531-c9c524ad87f6] socks forwarding established\n2025-07-17 15:22:51.204 [info] [command][75c0bc0e-34f2-4712-afdd-a9f5bc84a1d5] Process exited with code 0\n2025-07-17 15:22:51.204 [info] [command][75c0bc0e-34f2-4712-afdd-a9f5bc84a1d5] Socket close event received\n2025-07-17 15:22:51.205 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d900f7d2-0cf4-4ebf-a531-c9c524ad87f6] socks connection closed\n2025-07-17 15:22:51.226 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60057 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:23:51.210 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:23:51.213 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][655822b4-f74a-43a6-a4e0-a108cdde9399] received connection request\n2025-07-17 15:23:51.214 [info] [command][c0cf7bc8-c19d-4b46-8524-66972b4dda26] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c0cf7bc8-c19d-4b46-8524-66972b4dda26""}\n2025-07-17 15:23:51.215 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:23:51.230 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][655822b4-f74a-43a6-a4e0-a108cdde9399] socks forwarding established\n2025-07-17 15:23:51.259 [info] [command][c0cf7bc8-c19d-4b46-8524-66972b4dda26] Process exited with code 0\n2025-07-17 15:23:51.259 [info] [command][c0cf7bc8-c19d-4b46-8524-66972b4dda26] Socket close event received\n2025-07-17 15:23:51.260 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][655822b4-f74a-43a6-a4e0-a108cdde9399] socks connection closed\n2025-07-17 15:23:51.280 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60100 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:24:51.261 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:24:51.264 [info] [command][0bfa2c32-ed66-4522-af2a-09c5d15d968b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0bfa2c32-ed66-4522-af2a-09c5d15d968b""}\n2025-07-17 15:24:51.265 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e8733945-11d2-46f7-9a5d-5f91d120de1a] received connection request\n2025-07-17 15:24:51.266 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:24:51.287 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e8733945-11d2-46f7-9a5d-5f91d120de1a] socks forwarding established\n2025-07-17 15:24:51.317 [info] [command][0bfa2c32-ed66-4522-af2a-09c5d15d968b] Process exited with code 0\n2025-07-17 15:24:51.317 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e8733945-11d2-46f7-9a5d-5f91d120de1a] socks connection closed\n2025-07-17 15:24:51.317 [info] [command][0bfa2c32-ed66-4522-af2a-09c5d15d968b] Socket close event received\n2025-07-17 15:24:51.334 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60132 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:25:51.317 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:25:51.320 [info] [command][1f9d3f90-7265-46be-bb8e-f710c81e3a18] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1f9d3f90-7265-46be-bb8e-f710c81e3a18""}\n2025-07-17 15:25:51.321 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f29fa7ea-1390-4c77-9aaa-f072bfd229a1] received connection request\n2025-07-17 15:25:51.321 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:25:51.337 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f29fa7ea-1390-4c77-9aaa-f072bfd229a1] socks forwarding established\n2025-07-17 15:25:51.366 [info] [command][1f9d3f90-7265-46be-bb8e-f710c81e3a18] Process exited with code 0\n2025-07-17 15:25:51.366 [info] [command][1f9d3f90-7265-46be-bb8e-f710c81e3a18] Socket close event received\n2025-07-17 15:25:51.369 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f29fa7ea-1390-4c77-9aaa-f072bfd229a1] socks connection closed\n2025-07-17 15:25:51.385 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60196 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:26:51.368 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:26:51.371 [info] [command][173c10c1-58c1-45e0-a6bb-0c6af5db9a44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""173c10c1-58c1-45e0-a6bb-0c6af5db9a44""}\n2025-07-17 15:26:51.372 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a0bb7fc7-fa31-41bb-8dc4-37f8dfa73407] received connection request\n2025-07-17 15:26:51.372 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:26:51.394 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a0bb7fc7-fa31-41bb-8dc4-37f8dfa73407] socks forwarding established\n2025-07-17 15:26:51.424 [info] [command][173c10c1-58c1-45e0-a6bb-0c6af5db9a44] Process exited with code 0\n2025-07-17 15:26:51.424 [info] [command][173c10c1-58c1-45e0-a6bb-0c6af5db9a44] Socket close event received\n2025-07-17 15:26:51.425 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a0bb7fc7-fa31-41bb-8dc4-37f8dfa73407] socks connection closed\n2025-07-17 15:26:51.442 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60221 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:27:51.432 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:27:51.434 [info] [command][b9d931db-cfdd-4dad-89cc-c32ce593056d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b9d931db-cfdd-4dad-89cc-c32ce593056d""}\n2025-07-17 15:27:51.435 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][fbb36f6a-0534-42a5-937c-60cb23472112] received connection request\n2025-07-17 15:27:51.436 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:27:51.451 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fbb36f6a-0534-42a5-937c-60cb23472112] socks forwarding established\n2025-07-17 15:27:51.480 [info] [command][b9d931db-cfdd-4dad-89cc-c32ce593056d] Process exited with code 0\n2025-07-17 15:27:51.481 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fbb36f6a-0534-42a5-937c-60cb23472112] socks connection closed\n2025-07-17 15:27:51.481 [info] [command][b9d931db-cfdd-4dad-89cc-c32ce593056d] Socket close event received\n2025-07-17 15:27:51.497 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60264 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:28:51.491 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:28:51.494 [info] [command][368000e2-82f6-45b3-94dc-12b20b93f70f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""368000e2-82f6-45b3-94dc-12b20b93f70f""}\n2025-07-17 15:28:51.495 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7a340ee4-e22d-49ff-9822-b3071b412eeb] received connection request\n2025-07-17 15:28:51.495 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:28:51.510 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7a340ee4-e22d-49ff-9822-b3071b412eeb] socks forwarding established\n2025-07-17 15:28:51.539 [info] [command][368000e2-82f6-45b3-94dc-12b20b93f70f] Process exited with code 0\n2025-07-17 15:28:51.539 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7a340ee4-e22d-49ff-9822-b3071b412eeb] socks connection closed\n2025-07-17 15:28:51.539 [info] [command][368000e2-82f6-45b3-94dc-12b20b93f70f] Socket close event received\n2025-07-17 15:28:51.556 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60302 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:29:51.541 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:29:51.542 [info] [command][bd455c1b-93b2-4f17-908a-673519a49e77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""bd455c1b-93b2-4f17-908a-673519a49e77""}\n2025-07-17 15:29:51.543 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][718480ab-1adf-42ba-9710-d907f463357d] received connection request\n2025-07-17 15:29:51.543 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:29:51.564 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][718480ab-1adf-42ba-9710-d907f463357d] socks forwarding established\n2025-07-17 15:29:51.596 [info] [command][bd455c1b-93b2-4f17-908a-673519a49e77] Process exited with code 0\n2025-07-17 15:29:51.597 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][718480ab-1adf-42ba-9710-d907f463357d] socks connection closed\n2025-07-17 15:29:51.597 [info] [command][bd455c1b-93b2-4f17-908a-673519a49e77] Socket close event received\n2025-07-17 15:29:51.622 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60347 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:30:51.601 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:30:51.602 [info] [command][359f0ad2-e643-433f-be0a-c1a3a85e4685] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""359f0ad2-e643-433f-be0a-c1a3a85e4685""}\n2025-07-17 15:30:51.603 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f3cb524e-1be0-4475-87b3-436e4c4b6eab] received connection request\n2025-07-17 15:30:51.603 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:30:51.618 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f3cb524e-1be0-4475-87b3-436e4c4b6eab] socks forwarding established\n2025-07-17 15:30:51.656 [info] [command][359f0ad2-e643-433f-be0a-c1a3a85e4685] Process exited with code 0\n2025-07-17 15:30:51.656 [info] [command][359f0ad2-e643-433f-be0a-c1a3a85e4685] Socket close event received\n2025-07-17 15:30:51.676 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60404 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:30:51.677 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f3cb524e-1be0-4475-87b3-436e4c4b6eab] socks connection closed\n2025-07-17 15:31:51.657 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:31:51.659 [info] [command][8d4505e7-8481-4ee2-b677-29f51bb75900] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8d4505e7-8481-4ee2-b677-29f51bb75900""}\n2025-07-17 15:31:51.659 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][76364e47-fc37-4f4c-a0e6-3c8a9fa497b0] received connection request\n2025-07-17 15:31:51.659 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:31:51.760 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][76364e47-fc37-4f4c-a0e6-3c8a9fa497b0] socks forwarding established\n2025-07-17 15:31:51.790 [info] [command][8d4505e7-8481-4ee2-b677-29f51bb75900] Process exited with code 0\n2025-07-17 15:31:51.791 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][76364e47-fc37-4f4c-a0e6-3c8a9fa497b0] socks connection closed\n2025-07-17 15:31:51.791 [info] [command][8d4505e7-8481-4ee2-b677-29f51bb75900] Socket close event received\n2025-07-17 15:31:51.807 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60428 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:32:51.794 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:32:51.797 [info] [command][a2fc7406-3236-42db-9c4c-e49fc4c7d935] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a2fc7406-3236-42db-9c4c-e49fc4c7d935""}\n2025-07-17 15:32:51.798 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7c39f101-56e4-45dc-a001-f8c24560eec9] received connection request\n2025-07-17 15:32:51.799 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:32:51.813 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7c39f101-56e4-45dc-a001-f8c24560eec9] socks forwarding established\n2025-07-17 15:32:51.841 [info] [command][a2fc7406-3236-42db-9c4c-e49fc4c7d935] Process exited with code 0\n2025-07-17 15:32:51.841 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7c39f101-56e4-45dc-a001-f8c24560eec9] socks connection closed\n2025-07-17 15:32:51.841 [info] [command][a2fc7406-3236-42db-9c4c-e49fc4c7d935] Socket close event received\n2025-07-17 15:32:51.857 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60494 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:33:51.847 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:33:51.849 [info] [command][b30ad540-1d28-4bc6-950b-a9cca101872a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b30ad540-1d28-4bc6-950b-a9cca101872a""}\n2025-07-17 15:33:51.850 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][23346f6e-496b-478c-b5fb-c5462d564c65] received connection request\n2025-07-17 15:33:51.851 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:33:51.872 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][23346f6e-496b-478c-b5fb-c5462d564c65] socks forwarding established\n2025-07-17 15:33:51.902 [info] [command][b30ad540-1d28-4bc6-950b-a9cca101872a] Process exited with code 0\n2025-07-17 15:33:51.902 [info] [command][b30ad540-1d28-4bc6-950b-a9cca101872a] Socket close event received\n2025-07-17 15:33:51.903 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][23346f6e-496b-478c-b5fb-c5462d564c65] socks connection closed\n2025-07-17 15:33:51.920 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60533 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:34:51.904 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:34:51.908 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d5607e1a-4851-4f74-a9cb-e6d2bef84bcc] received connection request\n2025-07-17 15:34:51.908 [info] [command][a65f2ff5-b627-461c-b594-279c71e8ed44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a65f2ff5-b627-461c-b594-279c71e8ed44""}\n2025-07-17 15:34:51.908 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:34:51.924 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d5607e1a-4851-4f74-a9cb-e6d2bef84bcc] socks forwarding established\n2025-07-17 15:34:51.953 [info] [command][a65f2ff5-b627-461c-b594-279c71e8ed44] Process exited with code 0\n2025-07-17 15:34:51.954 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d5607e1a-4851-4f74-a9cb-e6d2bef84bcc] socks connection closed\n2025-07-17 15:34:51.954 [info] [command][a65f2ff5-b627-461c-b594-279c71e8ed44] Socket close event received\n2025-07-17 15:34:51.974 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60572 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:35:51.959 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:35:51.961 [info] [command][95e324ee-43cc-4ab3-80e8-6ef42619b7d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""95e324ee-43cc-4ab3-80e8-6ef42619b7d6""}\n2025-07-17 15:35:51.961 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c6894819-06db-4428-a8f4-5be2f9c9b7d0] received connection request\n2025-07-17 15:35:51.961 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:35:51.976 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c6894819-06db-4428-a8f4-5be2f9c9b7d0] socks forwarding established\n2025-07-17 15:35:52.004 [info] [command][95e324ee-43cc-4ab3-80e8-6ef42619b7d6] Process exited with code 0\n2025-07-17 15:35:52.004 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c6894819-06db-4428-a8f4-5be2f9c9b7d0] socks connection closed\n2025-07-17 15:35:52.004 [info] [command][95e324ee-43cc-4ab3-80e8-6ef42619b7d6] Socket close event received\n2025-07-17 15:35:52.021 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60642 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:36:52.006 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:36:52.008 [info] [command][6d32cdf0-1161-4e16-afe2-1f80f2047327] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6d32cdf0-1161-4e16-afe2-1f80f2047327""}\n2025-07-17 15:36:52.009 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5a0108ac-f656-4086-808e-8fcc0680237b] received connection request\n2025-07-17 15:36:52.010 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:36:52.027 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5a0108ac-f656-4086-808e-8fcc0680237b] socks forwarding established\n2025-07-17 15:36:52.057 [info] [command][6d32cdf0-1161-4e16-afe2-1f80f2047327] Process exited with code 0\n2025-07-17 15:36:52.057 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5a0108ac-f656-4086-808e-8fcc0680237b] socks connection closed\n2025-07-17 15:36:52.057 [info] [command][6d32cdf0-1161-4e16-afe2-1f80f2047327] Socket close event received\n2025-07-17 15:36:52.157 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60690 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:37:52.058 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:37:52.059 [info] [command][93a2a651-e5c6-4f3b-8da2-437486595fd5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""93a2a651-e5c6-4f3b-8da2-437486595fd5""}\n2025-07-17 15:37:52.060 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][78dcedd7-59e6-4116-ae11-1fc888e7eef1] received connection request\n2025-07-17 15:37:52.061 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:37:52.082 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][78dcedd7-59e6-4116-ae11-1fc888e7eef1] socks forwarding established\n2025-07-17 15:37:52.110 [info] [command][93a2a651-e5c6-4f3b-8da2-437486595fd5] Process exited with code 0\n2025-07-17 15:37:52.110 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][78dcedd7-59e6-4116-ae11-1fc888e7eef1] socks connection closed\n2025-07-17 15:37:52.110 [info] [command][93a2a651-e5c6-4f3b-8da2-437486595fd5] Socket close event received\n2025-07-17 15:37:52.125 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60712 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:38:52.113 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:38:52.116 [info] [command][ef09197c-8c9b-4119-80e4-971fcc11b5e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ef09197c-8c9b-4119-80e4-971fcc11b5e9""}\n2025-07-17 15:38:52.117 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5ead4741-2889-45ab-8042-6923a6d6f5ee] received connection request\n2025-07-17 15:38:52.118 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:38:52.136 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5ead4741-2889-45ab-8042-6923a6d6f5ee] socks forwarding established\n2025-07-17 15:38:52.163 [info] [command][ef09197c-8c9b-4119-80e4-971fcc11b5e9] Process exited with code 0\n2025-07-17 15:38:52.164 [info] [command][ef09197c-8c9b-4119-80e4-971fcc11b5e9] Socket close event received\n2025-07-17 15:38:52.165 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5ead4741-2889-45ab-8042-6923a6d6f5ee] socks connection closed\n2025-07-17 15:38:52.179 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60773 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:39:52.168 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:39:52.172 [info] [command][ffc60820-545d-4b40-b1fb-4c1ad4d9e6ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ffc60820-545d-4b40-b1fb-4c1ad4d9e6ca""}\n2025-07-17 15:39:52.173 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3f9426e6-b7c1-43c2-9952-dd64fd4b39d4] received connection request\n2025-07-17 15:39:52.173 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:39:52.192 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3f9426e6-b7c1-43c2-9952-dd64fd4b39d4] socks forwarding established\n2025-07-17 15:39:52.223 [info] [command][ffc60820-545d-4b40-b1fb-4c1ad4d9e6ca] Process exited with code 0\n2025-07-17 15:39:52.224 [info] [command][ffc60820-545d-4b40-b1fb-4c1ad4d9e6ca] Socket close event received\n2025-07-17 15:39:52.224 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3f9426e6-b7c1-43c2-9952-dd64fd4b39d4] socks connection closed\n2025-07-17 15:39:52.241 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60804 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:40:52.230 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:40:52.232 [info] [command][72c16112-a89f-4414-a00f-bdc92683afb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""72c16112-a89f-4414-a00f-bdc92683afb5""}\n2025-07-17 15:40:52.232 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][66215a98-af94-4566-9630-75da9394b449] received connection request\n2025-07-17 15:40:52.232 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:40:52.247 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][66215a98-af94-4566-9630-75da9394b449] socks forwarding established\n2025-07-17 15:40:52.287 [info] [command][72c16112-a89f-4414-a00f-bdc92683afb5] Process exited with code 0\n2025-07-17 15:40:52.287 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][66215a98-af94-4566-9630-75da9394b449] socks connection closed\n2025-07-17 15:40:52.287 [info] [command][72c16112-a89f-4414-a00f-bdc92683afb5] Socket close event received\n2025-07-17 15:40:52.302 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60853 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:41:52.290 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:41:52.292 [info] [command][224eac5d-3dab-4c89-97bb-569ac2196f4e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""224eac5d-3dab-4c89-97bb-569ac2196f4e""}\n2025-07-17 15:41:52.293 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ec0bbd25-2d44-4712-b93b-22f85acafad4] received connection request\n2025-07-17 15:41:52.294 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:41:52.343 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ec0bbd25-2d44-4712-b93b-22f85acafad4] socks forwarding established\n2025-07-17 15:41:52.379 [info] [command][224eac5d-3dab-4c89-97bb-569ac2196f4e] Process exited with code 0\n2025-07-17 15:41:52.379 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ec0bbd25-2d44-4712-b93b-22f85acafad4] socks connection closed\n2025-07-17 15:41:52.380 [info] [command][224eac5d-3dab-4c89-97bb-569ac2196f4e] Socket close event received\n2025-07-17 15:41:52.474 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60880 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:42:52.385 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:42:52.402 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][11d78e68-0f8e-4b6e-a3d7-a4cf2d0916f7] received connection request\n2025-07-17 15:42:52.402 [info] [command][9d1e8bd2-93ff-45ef-b6c8-dfac2f1d353a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9d1e8bd2-93ff-45ef-b6c8-dfac2f1d353a""}\n2025-07-17 15:42:52.402 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:42:52.417 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][11d78e68-0f8e-4b6e-a3d7-a4cf2d0916f7] socks forwarding established\n2025-07-17 15:42:52.460 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][11d78e68-0f8e-4b6e-a3d7-a4cf2d0916f7] socks connection closed\n2025-07-17 15:42:52.460 [info] [command][9d1e8bd2-93ff-45ef-b6c8-dfac2f1d353a] Process exited with code 0\n2025-07-17 15:42:52.461 [info] [command][9d1e8bd2-93ff-45ef-b6c8-dfac2f1d353a] Socket close event received\n2025-07-17 15:42:52.477 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60913 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:43:52.464 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:43:52.465 [info] [command][3484179f-c1fd-4773-b70f-5472e5620399] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""3484179f-c1fd-4773-b70f-5472e5620399""}\n2025-07-17 15:43:52.465 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][79fb3f6e-99b5-4753-bab3-6b4fff115446] received connection request\n2025-07-17 15:43:52.465 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 15:43:52.465 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:43:52.479 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][79fb3f6e-99b5-4753-bab3-6b4fff115446] socks forwarding established\n2025-07-17 15:43:52.506 [info] [command][3484179f-c1fd-4773-b70f-5472e5620399] Process exited with code 0\n2025-07-17 15:43:52.506 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][79fb3f6e-99b5-4753-bab3-6b4fff115446] socks connection closed\n2025-07-17 15:43:52.506 [info] [command][3484179f-c1fd-4773-b70f-5472e5620399] Socket close event received\n2025-07-17 15:43:52.520 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60961 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:44:52.512 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:44:52.514 [info] [command][e0a6c550-9d13-404a-926b-222fe40308ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e0a6c550-9d13-404a-926b-222fe40308ef""}\n2025-07-17 15:44:52.515 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d9a3a363-aaca-498d-8a4c-38d731ec364b] received connection request\n2025-07-17 15:44:52.516 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:44:52.532 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d9a3a363-aaca-498d-8a4c-38d731ec364b] socks forwarding established\n2025-07-17 15:44:52.559 [info] [command][e0a6c550-9d13-404a-926b-222fe40308ef] Process exited with code 0\n2025-07-17 15:44:52.559 [info] [command][e0a6c550-9d13-404a-926b-222fe40308ef] Socket close event received\n2025-07-17 15:44:52.562 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d9a3a363-aaca-498d-8a4c-38d731ec364b] socks connection closed\n2025-07-17 15:44:52.575 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 60998 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:45:52.564 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:45:52.566 [info] [command][fc869ba3-67b2-4bd9-b581-524e191f8748] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""fc869ba3-67b2-4bd9-b581-524e191f8748""}\n2025-07-17 15:45:52.566 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ac269c5d-aca6-45c6-9d14-86e6ea4cbc0c] received connection request\n2025-07-17 15:45:52.567 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:45:52.582 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ac269c5d-aca6-45c6-9d14-86e6ea4cbc0c] socks forwarding established\n2025-07-17 15:45:52.616 [info] [command][fc869ba3-67b2-4bd9-b581-524e191f8748] Process exited with code 0\n2025-07-17 15:45:52.616 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ac269c5d-aca6-45c6-9d14-86e6ea4cbc0c] socks connection closed\n2025-07-17 15:45:52.617 [info] [command][fc869ba3-67b2-4bd9-b581-524e191f8748] Socket close event received\n2025-07-17 15:45:52.712 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61074 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:46:52.622 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:46:52.626 [info] [command][649c0e4c-4884-496c-81b0-bc6ef11a232d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""649c0e4c-4884-496c-81b0-bc6ef11a232d""}\n2025-07-17 15:46:52.626 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1bf2d670-115f-4830-92a2-f105b15829f7] received connection request\n2025-07-17 15:46:52.629 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:46:52.648 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1bf2d670-115f-4830-92a2-f105b15829f7] socks forwarding established\n2025-07-17 15:46:52.677 [info] [command][649c0e4c-4884-496c-81b0-bc6ef11a232d] Process exited with code 0\n2025-07-17 15:46:52.678 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1bf2d670-115f-4830-92a2-f105b15829f7] socks connection closed\n2025-07-17 15:46:52.679 [info] [command][649c0e4c-4884-496c-81b0-bc6ef11a232d] Socket close event received\n2025-07-17 15:46:52.699 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61103 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:47:52.681 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:47:52.684 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][47c478f4-b3c1-4af4-8637-c199cdd91053] received connection request\n2025-07-17 15:47:52.684 [info] [command][468d5fdb-c93b-4343-9a01-ffa06ebead77] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""468d5fdb-c93b-4343-9a01-ffa06ebead77""}\n2025-07-17 15:47:52.686 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:47:52.703 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][47c478f4-b3c1-4af4-8637-c199cdd91053] socks forwarding established\n2025-07-17 15:47:52.730 [info] [command][468d5fdb-c93b-4343-9a01-ffa06ebead77] Process exited with code 0\n2025-07-17 15:47:52.731 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][47c478f4-b3c1-4af4-8637-c199cdd91053] socks connection closed\n2025-07-17 15:47:52.731 [info] [command][468d5fdb-c93b-4343-9a01-ffa06ebead77] Socket close event received\n2025-07-17 15:47:52.745 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61140 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:48:52.731 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:48:52.733 [info] [command][2e26aa9c-9a40-42a5-871b-33a6495a7595] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2e26aa9c-9a40-42a5-871b-33a6495a7595""}\n2025-07-17 15:48:52.734 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bdae7f0c-f6f6-498c-858c-7d4a429af0ce] received connection request\n2025-07-17 15:48:52.735 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 15:48:52.735 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:48:52.819 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bdae7f0c-f6f6-498c-858c-7d4a429af0ce] socks forwarding established\n2025-07-17 15:48:52.849 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bdae7f0c-f6f6-498c-858c-7d4a429af0ce] socks connection closed\n2025-07-17 15:48:52.850 [info] [command][2e26aa9c-9a40-42a5-871b-33a6495a7595] Process exited with code 0\n2025-07-17 15:48:52.850 [info] [command][2e26aa9c-9a40-42a5-871b-33a6495a7595] Socket close event received\n2025-07-17 15:48:52.864 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61188 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:49:52.855 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:49:52.857 [info] [command][facd9bab-4b64-439b-a743-2f62efbb779e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""facd9bab-4b64-439b-a743-2f62efbb779e""}\n2025-07-17 15:49:52.858 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][af9922de-5c80-485d-b674-2ea7b6924822] received connection request\n2025-07-17 15:49:52.858 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 15:49:52.859 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:49:52.880 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][af9922de-5c80-485d-b674-2ea7b6924822] socks forwarding established\n2025-07-17 15:49:52.934 [info] [command][facd9bab-4b64-439b-a743-2f62efbb779e] Process exited with code 0\n2025-07-17 15:49:52.934 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][af9922de-5c80-485d-b674-2ea7b6924822] socks connection closed\n2025-07-17 15:49:52.934 [info] [command][facd9bab-4b64-439b-a743-2f62efbb779e] Socket close event received\n2025-07-17 15:49:52.961 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61225 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:50:52.938 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:50:52.940 [info] [command][2a088342-1d93-4ea0-b016-1d2611172274] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2a088342-1d93-4ea0-b016-1d2611172274""}\n2025-07-17 15:50:52.941 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][30cd4ed8-a8be-4549-a799-b6c148d46e9f] received connection request\n2025-07-17 15:50:52.942 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:50:52.958 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][30cd4ed8-a8be-4549-a799-b6c148d46e9f] socks forwarding established\n2025-07-17 15:50:52.986 [info] [command][2a088342-1d93-4ea0-b016-1d2611172274] Process exited with code 0\n2025-07-17 15:50:52.987 [info] [command][2a088342-1d93-4ea0-b016-1d2611172274] Socket close event received\n2025-07-17 15:50:52.987 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][30cd4ed8-a8be-4549-a799-b6c148d46e9f] socks connection closed\n2025-07-17 15:50:53.004 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61288 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:51:52.992 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:51:52.995 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][afd89d35-d182-4730-9847-a145bae412c7] received connection request\n2025-07-17 15:51:52.995 [info] [command][8debb12f-2d6e-4db0-9c44-22c569372ba6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8debb12f-2d6e-4db0-9c44-22c569372ba6""}\n2025-07-17 15:51:52.995 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:51:53.018 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][afd89d35-d182-4730-9847-a145bae412c7] socks forwarding established\n2025-07-17 15:51:53.046 [info] [command][8debb12f-2d6e-4db0-9c44-22c569372ba6] Process exited with code 0\n2025-07-17 15:51:53.046 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][afd89d35-d182-4730-9847-a145bae412c7] socks connection closed\n2025-07-17 15:51:53.046 [info] [command][8debb12f-2d6e-4db0-9c44-22c569372ba6] Socket close event received\n2025-07-17 15:51:53.062 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61317 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:52:53.050 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:52:53.053 [info] [command][bfdaecad-072f-42f8-b059-f09cdbdfa563] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""bfdaecad-072f-42f8-b059-f09cdbdfa563""}\n2025-07-17 15:52:53.054 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bfdec9dd-09ba-4ae2-9125-42c50efa6d33] received connection request\n2025-07-17 15:52:53.054 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:52:53.071 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bfdec9dd-09ba-4ae2-9125-42c50efa6d33] socks forwarding established\n2025-07-17 15:52:53.100 [info] [command][bfdaecad-072f-42f8-b059-f09cdbdfa563] Process exited with code 0\n2025-07-17 15:52:53.100 [info] [command][bfdaecad-072f-42f8-b059-f09cdbdfa563] Socket close event received\n2025-07-17 15:52:53.101 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bfdec9dd-09ba-4ae2-9125-42c50efa6d33] socks connection closed\n2025-07-17 15:52:53.118 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61347 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:53:53.107 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:53:53.109 [info] [command][a3d42e31-dbcb-471a-bedd-85606dcf27a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a3d42e31-dbcb-471a-bedd-85606dcf27a5""}\n2025-07-17 15:53:53.110 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][21421b4e-a4f9-472d-a381-eab45bb2a5bc] received connection request\n2025-07-17 15:53:53.111 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:53:53.131 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][21421b4e-a4f9-472d-a381-eab45bb2a5bc] socks forwarding established\n2025-07-17 15:53:53.156 [info] [command][a3d42e31-dbcb-471a-bedd-85606dcf27a5] Process exited with code 0\n2025-07-17 15:53:53.157 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][21421b4e-a4f9-472d-a381-eab45bb2a5bc] socks connection closed\n2025-07-17 15:53:53.158 [info] [command][a3d42e31-dbcb-471a-bedd-85606dcf27a5] Socket close event received\n2025-07-17 15:53:53.179 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61408 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:54:53.159 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:54:53.161 [info] [command][9f9ef7f3-dae3-4396-9ad0-879aa9c54bd0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9f9ef7f3-dae3-4396-9ad0-879aa9c54bd0""}\n2025-07-17 15:54:53.161 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][107df4bc-dd2f-4537-a403-d9000d98efa0] received connection request\n2025-07-17 15:54:53.162 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:54:53.177 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][107df4bc-dd2f-4537-a403-d9000d98efa0] socks forwarding established\n2025-07-17 15:54:53.208 [info] [command][9f9ef7f3-dae3-4396-9ad0-879aa9c54bd0] Process exited with code 0\n2025-07-17 15:54:53.208 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][107df4bc-dd2f-4537-a403-d9000d98efa0] socks connection closed\n2025-07-17 15:54:53.208 [info] [command][9f9ef7f3-dae3-4396-9ad0-879aa9c54bd0] Socket close event received\n2025-07-17 15:54:53.224 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61446 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:55:53.214 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:55:53.215 [info] [command][73e5ace7-be4f-43bf-88c9-6f1b9cda9bd8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""73e5ace7-be4f-43bf-88c9-6f1b9cda9bd8""}\n2025-07-17 15:55:53.216 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8dd6b01e-280b-4cab-8e6a-5ba3ed5f5eb1] received connection request\n2025-07-17 15:55:53.217 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:55:53.233 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8dd6b01e-280b-4cab-8e6a-5ba3ed5f5eb1] socks forwarding established\n2025-07-17 15:55:53.264 [info] [command][73e5ace7-be4f-43bf-88c9-6f1b9cda9bd8] Process exited with code 0\n2025-07-17 15:55:53.264 [info] [command][73e5ace7-be4f-43bf-88c9-6f1b9cda9bd8] Socket close event received\n2025-07-17 15:55:53.265 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8dd6b01e-280b-4cab-8e6a-5ba3ed5f5eb1] socks connection closed\n2025-07-17 15:55:53.279 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61511 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:56:53.270 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:56:53.275 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4d884ff2-a6d9-48ce-987d-3b0a76b966ee] received connection request\n2025-07-17 15:56:53.275 [info] [command][8285df18-bae7-4cfd-af22-4b0748618f76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8285df18-bae7-4cfd-af22-4b0748618f76""}\n2025-07-17 15:56:53.276 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:56:53.299 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4d884ff2-a6d9-48ce-987d-3b0a76b966ee] socks forwarding established\n2025-07-17 15:56:53.330 [info] [command][8285df18-bae7-4cfd-af22-4b0748618f76] Process exited with code 0\n2025-07-17 15:56:53.330 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4d884ff2-a6d9-48ce-987d-3b0a76b966ee] socks connection closed\n2025-07-17 15:56:53.330 [info] [command][8285df18-bae7-4cfd-af22-4b0748618f76] Socket close event received\n2025-07-17 15:56:53.346 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61540 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:57:53.333 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:57:53.336 [info] [command][633cab4a-5bb4-43e8-8e3d-e8d191e90cc5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""633cab4a-5bb4-43e8-8e3d-e8d191e90cc5""}\n2025-07-17 15:57:53.337 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d33c5f0f-4c33-44f6-bc99-db458bbaea8c] received connection request\n2025-07-17 15:57:53.338 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:57:53.362 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d33c5f0f-4c33-44f6-bc99-db458bbaea8c] socks forwarding established\n2025-07-17 15:57:53.390 [info] [command][633cab4a-5bb4-43e8-8e3d-e8d191e90cc5] Process exited with code 0\n2025-07-17 15:57:53.390 [info] [command][633cab4a-5bb4-43e8-8e3d-e8d191e90cc5] Socket close event received\n2025-07-17 15:57:53.391 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d33c5f0f-4c33-44f6-bc99-db458bbaea8c] socks connection closed\n2025-07-17 15:57:53.407 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61573 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:58:53.393 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:58:53.396 [info] [command][c25c0a25-a1e1-4c3c-9520-a8caed46911b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c25c0a25-a1e1-4c3c-9520-a8caed46911b""}\n2025-07-17 15:58:53.397 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][934938d7-243b-426d-a08f-8feba747c4b2] received connection request\n2025-07-17 15:58:53.397 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:58:53.413 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][934938d7-243b-426d-a08f-8feba747c4b2] socks forwarding established\n2025-07-17 15:58:53.441 [info] [command][c25c0a25-a1e1-4c3c-9520-a8caed46911b] Process exited with code 0\n2025-07-17 15:58:53.441 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][934938d7-243b-426d-a08f-8feba747c4b2] socks connection closed\n2025-07-17 15:58:53.442 [info] [command][c25c0a25-a1e1-4c3c-9520-a8caed46911b] Socket close event received\n2025-07-17 15:58:53.455 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61607 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 15:59:53.448 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 15:59:53.450 [info] [command][bad98345-963c-4930-b794-9819d8e086d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""bad98345-963c-4930-b794-9819d8e086d8""}\n2025-07-17 15:59:53.451 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][84c6fef7-d116-402a-b106-00f17405b9cd] received connection request\n2025-07-17 15:59:53.452 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 15:59:53.525 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][84c6fef7-d116-402a-b106-00f17405b9cd] socks forwarding established\n2025-07-17 15:59:53.553 [info] [command][bad98345-963c-4930-b794-9819d8e086d8] Process exited with code 0\n2025-07-17 15:59:53.554 [info] [command][bad98345-963c-4930-b794-9819d8e086d8] Socket close event received\n2025-07-17 15:59:53.554 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][84c6fef7-d116-402a-b106-00f17405b9cd] socks connection closed\n2025-07-17 15:59:53.573 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61640 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:00:53.560 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:00:53.563 [info] [command][11adc200-a624-4769-b547-8fd6d4cd6f8e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""11adc200-a624-4769-b547-8fd6d4cd6f8e""}\n2025-07-17 16:00:53.564 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][af8baab7-ea69-4082-891c-91959811279e] received connection request\n2025-07-17 16:00:53.564 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:00:53.588 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][af8baab7-ea69-4082-891c-91959811279e] socks forwarding established\n2025-07-17 16:00:53.620 [info] [command][11adc200-a624-4769-b547-8fd6d4cd6f8e] Process exited with code 0\n2025-07-17 16:00:53.621 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][af8baab7-ea69-4082-891c-91959811279e] socks connection closed\n2025-07-17 16:00:53.622 [info] [command][11adc200-a624-4769-b547-8fd6d4cd6f8e] Socket close event received\n2025-07-17 16:00:53.645 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61712 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:01:53.625 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:01:53.627 [info] [command][e48d8592-605a-4138-96cf-10ce28a5c017] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e48d8592-605a-4138-96cf-10ce28a5c017""}\n2025-07-17 16:01:53.628 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][1ce99ad4-1da1-419d-b59a-9b970daedf21] received connection request\n2025-07-17 16:01:53.629 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 16:01:53.629 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:01:53.644 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1ce99ad4-1da1-419d-b59a-9b970daedf21] socks forwarding established\n2025-07-17 16:01:53.671 [info] [command][e48d8592-605a-4138-96cf-10ce28a5c017] Process exited with code 0\n2025-07-17 16:01:53.672 [info] [command][e48d8592-605a-4138-96cf-10ce28a5c017] Socket close event received\n2025-07-17 16:01:53.673 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][1ce99ad4-1da1-419d-b59a-9b970daedf21] socks connection closed\n2025-07-17 16:01:53.687 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61753 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:02:53.678 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:02:53.682 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][0d4db7f8-7622-4701-8cf4-5b6b7fa08e1f] received connection request\n2025-07-17 16:02:53.682 [info] [command][d69bde3e-8beb-4a47-a016-a5f5d4e2c9f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""d69bde3e-8beb-4a47-a016-a5f5d4e2c9f2""}\n2025-07-17 16:02:53.683 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:02:53.701 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0d4db7f8-7622-4701-8cf4-5b6b7fa08e1f] socks forwarding established\n2025-07-17 16:02:53.818 [info] [command][d69bde3e-8beb-4a47-a016-a5f5d4e2c9f2] Process exited with code 0\n2025-07-17 16:02:53.819 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0d4db7f8-7622-4701-8cf4-5b6b7fa08e1f] socks connection closed\n2025-07-17 16:02:53.819 [info] [command][d69bde3e-8beb-4a47-a016-a5f5d4e2c9f2] Socket close event received\n2025-07-17 16:02:53.837 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61799 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:03:53.820 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:03:53.824 [info] [command][88a151fb-edec-429b-a6b3-4266ee0c3f62] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""88a151fb-edec-429b-a6b3-4266ee0c3f62""}\n2025-07-17 16:03:53.825 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ed3f0591-9ce4-4591-81cd-21beb677a75d] received connection request\n2025-07-17 16:03:53.825 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:03:53.841 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ed3f0591-9ce4-4591-81cd-21beb677a75d] socks forwarding established\n2025-07-17 16:03:53.870 [info] [command][88a151fb-edec-429b-a6b3-4266ee0c3f62] Process exited with code 0\n2025-07-17 16:03:53.870 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ed3f0591-9ce4-4591-81cd-21beb677a75d] socks connection closed\n2025-07-17 16:03:53.870 [info] [command][88a151fb-edec-429b-a6b3-4266ee0c3f62] Socket close event received\n2025-07-17 16:03:53.886 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61831 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:04:53.876 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:04:53.878 [info] [command][70b8d993-a3b7-405b-93c7-47b35cc35cd1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""70b8d993-a3b7-405b-93c7-47b35cc35cd1""}\n2025-07-17 16:04:53.878 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][21496219-5c67-485f-9865-7f8085979e35] received connection request\n2025-07-17 16:04:53.878 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:04:53.894 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][21496219-5c67-485f-9865-7f8085979e35] socks forwarding established\n2025-07-17 16:04:53.923 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][21496219-5c67-485f-9865-7f8085979e35] socks connection closed\n2025-07-17 16:04:53.923 [info] [command][70b8d993-a3b7-405b-93c7-47b35cc35cd1] Process exited with code 0\n2025-07-17 16:04:53.923 [info] [command][70b8d993-a3b7-405b-93c7-47b35cc35cd1] Socket close event received\n2025-07-17 16:04:53.939 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61869 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:05:53.928 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:05:53.930 [info] [command][f99bd836-5a43-4537-90b8-eefbf77b3bc9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f99bd836-5a43-4537-90b8-eefbf77b3bc9""}\n2025-07-17 16:05:53.931 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e24f1e2f-f2fa-4825-96ad-62565339949d] received connection request\n2025-07-17 16:05:53.932 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:05:53.949 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e24f1e2f-f2fa-4825-96ad-62565339949d] socks forwarding established\n2025-07-17 16:05:53.985 [info] [command][f99bd836-5a43-4537-90b8-eefbf77b3bc9] Process exited with code 0\n2025-07-17 16:05:53.985 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e24f1e2f-f2fa-4825-96ad-62565339949d] socks connection closed\n2025-07-17 16:05:53.985 [info] [command][f99bd836-5a43-4537-90b8-eefbf77b3bc9] Socket close event received\n2025-07-17 16:05:54.002 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61933 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:06:53.991 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:06:53.994 [info] [command][a865e15d-d691-43bd-92a8-cf0529301ea3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a865e15d-d691-43bd-92a8-cf0529301ea3""}\n2025-07-17 16:06:53.995 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][50bbbaa0-7b69-41d2-bae9-8877fb457d9d] received connection request\n2025-07-17 16:06:53.996 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:06:54.013 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][50bbbaa0-7b69-41d2-bae9-8877fb457d9d] socks forwarding established\n2025-07-17 16:06:54.044 [info] [command][a865e15d-d691-43bd-92a8-cf0529301ea3] Process exited with code 0\n2025-07-17 16:06:54.045 [info] [command][a865e15d-d691-43bd-92a8-cf0529301ea3] Socket close event received\n2025-07-17 16:06:54.045 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][50bbbaa0-7b69-41d2-bae9-8877fb457d9d] socks connection closed\n2025-07-17 16:06:54.059 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 61962 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:07:54.045 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:07:54.046 [info] [command][f316b32b-e171-4063-97e3-1ec92f8e5ebf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f316b32b-e171-4063-97e3-1ec92f8e5ebf""}\n2025-07-17 16:07:54.046 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][26d66e98-11c4-478e-b5d5-e13f0a91ca61] received connection request\n2025-07-17 16:07:54.046 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:07:54.072 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][26d66e98-11c4-478e-b5d5-e13f0a91ca61] socks forwarding established\n2025-07-17 16:07:54.104 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][26d66e98-11c4-478e-b5d5-e13f0a91ca61] socks connection closed\n2025-07-17 16:07:54.104 [info] [command][f316b32b-e171-4063-97e3-1ec92f8e5ebf] Process exited with code 0\n2025-07-17 16:07:54.104 [info] [command][f316b32b-e171-4063-97e3-1ec92f8e5ebf] Socket close event received\n2025-07-17 16:07:54.118 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62004 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:08:54.108 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:08:54.110 [info] [command][b00b98d5-e111-45ea-9202-efb9707f5799] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b00b98d5-e111-45ea-9202-efb9707f5799""}\n2025-07-17 16:08:54.111 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][20951fea-c0da-4012-8d4d-91f76c504add] received connection request\n2025-07-17 16:08:54.111 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:08:54.131 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][20951fea-c0da-4012-8d4d-91f76c504add] socks forwarding established\n2025-07-17 16:08:54.162 [info] [command][b00b98d5-e111-45ea-9202-efb9707f5799] Process exited with code 0\n2025-07-17 16:08:54.162 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][20951fea-c0da-4012-8d4d-91f76c504add] socks connection closed\n2025-07-17 16:08:54.163 [info] [command][b00b98d5-e111-45ea-9202-efb9707f5799] Socket close event received\n2025-07-17 16:08:54.180 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62051 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:09:54.167 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:09:54.169 [info] [command][217158ee-d985-414e-9591-0e30e5c87a4c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""217158ee-d985-414e-9591-0e30e5c87a4c""}\n2025-07-17 16:09:54.170 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bae21013-94e6-4388-b91a-c4e812fa68c4] received connection request\n2025-07-17 16:09:54.171 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:09:54.189 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bae21013-94e6-4388-b91a-c4e812fa68c4] socks forwarding established\n2025-07-17 16:09:54.219 [info] [command][217158ee-d985-414e-9591-0e30e5c87a4c] Process exited with code 0\n2025-07-17 16:09:54.220 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bae21013-94e6-4388-b91a-c4e812fa68c4] socks connection closed\n2025-07-17 16:09:54.220 [info] [command][217158ee-d985-414e-9591-0e30e5c87a4c] Socket close event received\n2025-07-17 16:09:54.235 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62091 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:10:54.226 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:10:54.229 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f873b9c5-6b4f-42e0-9e5b-470e3c1bc0cb] received connection request\n2025-07-17 16:10:54.229 [info] [command][ecd5ca0b-0dac-4da6-977c-cba7e1fc707c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ecd5ca0b-0dac-4da6-977c-cba7e1fc707c""}\n2025-07-17 16:10:54.230 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:10:54.247 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f873b9c5-6b4f-42e0-9e5b-470e3c1bc0cb] socks forwarding established\n2025-07-17 16:10:54.276 [info] [command][ecd5ca0b-0dac-4da6-977c-cba7e1fc707c] Process exited with code 0\n2025-07-17 16:10:54.276 [info] [command][ecd5ca0b-0dac-4da6-977c-cba7e1fc707c] Socket close event received\n2025-07-17 16:10:54.288 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f873b9c5-6b4f-42e0-9e5b-470e3c1bc0cb] socks connection closed\n2025-07-17 16:10:54.295 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62152 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:11:54.278 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:11:54.281 [info] [command][44e2d58f-e082-4249-99ec-9827ed6b60b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""44e2d58f-e082-4249-99ec-9827ed6b60b0""}\n2025-07-17 16:11:54.281 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][0877eb61-c203-4cf9-97f9-3491e0f0486a] received connection request\n2025-07-17 16:11:54.282 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:11:54.331 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0877eb61-c203-4cf9-97f9-3491e0f0486a] socks forwarding established\n2025-07-17 16:11:54.357 [info] [command][44e2d58f-e082-4249-99ec-9827ed6b60b0] Process exited with code 0\n2025-07-17 16:11:54.358 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0877eb61-c203-4cf9-97f9-3491e0f0486a] socks connection closed\n2025-07-17 16:11:54.358 [info] [command][44e2d58f-e082-4249-99ec-9827ed6b60b0] Socket close event received\n2025-07-17 16:11:54.375 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62188 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:12:54.361 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:12:54.363 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d85c999e-418e-4417-bb69-6052d997b816] received connection request\n2025-07-17 16:12:54.363 [info] [command][d8b45bee-10e0-4ea3-8c86-9799e4e744b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""d8b45bee-10e0-4ea3-8c86-9799e4e744b4""}\n2025-07-17 16:12:54.363 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:12:54.380 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d85c999e-418e-4417-bb69-6052d997b816] socks forwarding established\n2025-07-17 16:12:54.410 [info] [command][d8b45bee-10e0-4ea3-8c86-9799e4e744b4] Process exited with code 0\n2025-07-17 16:12:54.410 [info] [command][d8b45bee-10e0-4ea3-8c86-9799e4e744b4] Socket close event received\n2025-07-17 16:12:54.411 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d85c999e-418e-4417-bb69-6052d997b816] socks connection closed\n2025-07-17 16:12:54.426 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62234 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:13:54.411 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:13:54.413 [info] [command][14c14af4-820b-494f-a485-4b9f6fac7e20] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""14c14af4-820b-494f-a485-4b9f6fac7e20""}\n2025-07-17 16:13:54.413 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b8c39c67-a818-47da-ad6c-0b3c059ad1c2] received connection request\n2025-07-17 16:13:54.414 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:13:54.429 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b8c39c67-a818-47da-ad6c-0b3c059ad1c2] socks forwarding established\n2025-07-17 16:13:54.460 [info] [command][14c14af4-820b-494f-a485-4b9f6fac7e20] Process exited with code 0\n2025-07-17 16:13:54.460 [info] [command][14c14af4-820b-494f-a485-4b9f6fac7e20] Socket close event received\n2025-07-17 16:13:54.461 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b8c39c67-a818-47da-ad6c-0b3c059ad1c2] socks connection closed\n2025-07-17 16:13:54.479 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62288 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:14:54.466 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:14:54.468 [info] [command][dd7cb4e8-2973-4132-b6cf-4fbb1f1531c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""dd7cb4e8-2973-4132-b6cf-4fbb1f1531c6""}\n2025-07-17 16:14:54.468 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5fc02e55-eea0-4e18-a1b2-3a64790cb067] received connection request\n2025-07-17 16:14:54.469 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 16:14:54.469 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:14:54.484 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5fc02e55-eea0-4e18-a1b2-3a64790cb067] socks forwarding established\n2025-07-17 16:14:54.512 [info] [command][dd7cb4e8-2973-4132-b6cf-4fbb1f1531c6] Process exited with code 0\n2025-07-17 16:14:54.512 [info] [command][dd7cb4e8-2973-4132-b6cf-4fbb1f1531c6] Socket close event received\n2025-07-17 16:14:54.512 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5fc02e55-eea0-4e18-a1b2-3a64790cb067] socks connection closed\n2025-07-17 16:14:54.527 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62321 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:15:54.515 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:15:54.517 [info] [command][52f7ebb1-831b-47f4-91f5-0b06187a442a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""52f7ebb1-831b-47f4-91f5-0b06187a442a""}\n2025-07-17 16:15:54.518 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4be515bb-dcc4-4cba-ad22-6a6889287f89] received connection request\n2025-07-17 16:15:54.518 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:15:54.537 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4be515bb-dcc4-4cba-ad22-6a6889287f89] socks forwarding established\n2025-07-17 16:15:54.570 [info] [command][52f7ebb1-831b-47f4-91f5-0b06187a442a] Process exited with code 0\n2025-07-17 16:15:54.570 [info] [command][52f7ebb1-831b-47f4-91f5-0b06187a442a] Socket close event received\n2025-07-17 16:15:54.571 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4be515bb-dcc4-4cba-ad22-6a6889287f89] socks connection closed\n2025-07-17 16:15:54.587 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62384 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:16:54.572 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:16:54.577 [info] [command][9ba29d8c-384b-4352-806a-f4aa71298aee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9ba29d8c-384b-4352-806a-f4aa71298aee""}\n2025-07-17 16:16:54.577 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][379e8c4d-3864-47b7-89ca-5db4680a4c83] received connection request\n2025-07-17 16:16:54.577 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 16:16:54.578 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:16:54.593 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][379e8c4d-3864-47b7-89ca-5db4680a4c83] socks forwarding established\n2025-07-17 16:16:54.623 [info] [command][9ba29d8c-384b-4352-806a-f4aa71298aee] Process exited with code 0\n2025-07-17 16:16:54.624 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][379e8c4d-3864-47b7-89ca-5db4680a4c83] socks connection closed\n2025-07-17 16:16:54.624 [info] [command][9ba29d8c-384b-4352-806a-f4aa71298aee] Socket close event received\n2025-07-17 16:16:54.641 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62419 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:17:54.624 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:17:54.626 [info] [command][1aa239f7-fe42-4cda-80ad-8497a29701d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1aa239f7-fe42-4cda-80ad-8497a29701d4""}\n2025-07-17 16:17:54.627 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][72d8215a-e378-4f00-ad36-8b80f57a87ba] received connection request\n2025-07-17 16:17:54.627 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:17:54.642 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][72d8215a-e378-4f00-ad36-8b80f57a87ba] socks forwarding established\n2025-07-17 16:17:54.670 [info] [command][1aa239f7-fe42-4cda-80ad-8497a29701d4] Process exited with code 0\n2025-07-17 16:17:54.671 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][72d8215a-e378-4f00-ad36-8b80f57a87ba] socks connection closed\n2025-07-17 16:17:54.671 [info] [command][1aa239f7-fe42-4cda-80ad-8497a29701d4] Socket close event received\n2025-07-17 16:17:54.690 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62462 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:18:54.677 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:18:54.678 [info] [command][8a4b8e23-a99a-4c6a-87b2-1773c6910550] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8a4b8e23-a99a-4c6a-87b2-1773c6910550""}\n2025-07-17 16:18:54.678 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ed06574f-5d58-4945-9ebd-8053e7f4d948] received connection request\n2025-07-17 16:18:54.679 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:18:54.694 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ed06574f-5d58-4945-9ebd-8053e7f4d948] socks forwarding established\n2025-07-17 16:18:54.726 [info] [command][8a4b8e23-a99a-4c6a-87b2-1773c6910550] Process exited with code 0\n2025-07-17 16:18:54.726 [info] [command][8a4b8e23-a99a-4c6a-87b2-1773c6910550] Socket close event received\n2025-07-17 16:18:54.726 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ed06574f-5d58-4945-9ebd-8053e7f4d948] socks connection closed\n2025-07-17 16:18:54.743 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62496 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:19:54.731 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:19:54.733 [info] [command][da204c28-3c93-476f-baef-5d38c842814e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""da204c28-3c93-476f-baef-5d38c842814e""}\n2025-07-17 16:19:54.734 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5464281e-fbdc-4233-81f7-e29344a96f5a] received connection request\n2025-07-17 16:19:54.734 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:19:54.750 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5464281e-fbdc-4233-81f7-e29344a96f5a] socks forwarding established\n2025-07-17 16:19:54.781 [info] [command][da204c28-3c93-476f-baef-5d38c842814e] Process exited with code 0\n2025-07-17 16:19:54.781 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5464281e-fbdc-4233-81f7-e29344a96f5a] socks connection closed\n2025-07-17 16:19:54.781 [info] [command][da204c28-3c93-476f-baef-5d38c842814e] Socket close event received\n2025-07-17 16:19:54.887 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62538 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:20:54.781 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:20:54.783 [info] [command][b00c09f3-c7f2-4efa-a0fc-0c16bf1b71bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b00c09f3-c7f2-4efa-a0fc-0c16bf1b71bb""}\n2025-07-17 16:20:54.784 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][754fefc2-dfc5-443f-b9a2-667580bab5d0] received connection request\n2025-07-17 16:20:54.785 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:20:54.800 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][754fefc2-dfc5-443f-b9a2-667580bab5d0] socks forwarding established\n2025-07-17 16:20:54.829 [info] [command][b00c09f3-c7f2-4efa-a0fc-0c16bf1b71bb] Process exited with code 0\n2025-07-17 16:20:54.829 [info] [command][b00c09f3-c7f2-4efa-a0fc-0c16bf1b71bb] Socket close event received\n2025-07-17 16:20:54.830 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][754fefc2-dfc5-443f-b9a2-667580bab5d0] socks connection closed\n2025-07-17 16:20:54.844 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62601 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:21:54.830 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:21:54.833 [info] [command][4acfc8f6-e77e-4027-acd4-b7151cd1da6e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4acfc8f6-e77e-4027-acd4-b7151cd1da6e""}\n2025-07-17 16:21:54.834 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c6bd5c6d-6230-4f96-9e86-e14fdca85d06] received connection request\n2025-07-17 16:21:54.834 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:21:54.850 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c6bd5c6d-6230-4f96-9e86-e14fdca85d06] socks forwarding established\n2025-07-17 16:21:54.884 [info] [command][4acfc8f6-e77e-4027-acd4-b7151cd1da6e] Process exited with code 0\n2025-07-17 16:21:54.884 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c6bd5c6d-6230-4f96-9e86-e14fdca85d06] socks connection closed\n2025-07-17 16:21:54.884 [info] [command][4acfc8f6-e77e-4027-acd4-b7151cd1da6e] Socket close event received\n2025-07-17 16:21:54.899 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62627 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:22:54.889 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:22:54.891 [info] [command][fe38fde2-558d-4c6d-a332-84f173dda87f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""fe38fde2-558d-4c6d-a332-84f173dda87f""}\n2025-07-17 16:22:54.892 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8c9d03a9-0b21-4ffe-8c6c-605b16111ac3] received connection request\n2025-07-17 16:22:54.893 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:22:54.907 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8c9d03a9-0b21-4ffe-8c6c-605b16111ac3] socks forwarding established\n2025-07-17 16:22:54.934 [info] [command][fe38fde2-558d-4c6d-a332-84f173dda87f] Process exited with code 0\n2025-07-17 16:22:54.934 [info] [command][fe38fde2-558d-4c6d-a332-84f173dda87f] Socket close event received\n2025-07-17 16:22:54.936 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8c9d03a9-0b21-4ffe-8c6c-605b16111ac3] socks connection closed\n2025-07-17 16:22:54.953 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62658 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:23:54.940 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:23:54.942 [info] [command][092ce1a3-a95f-45b1-9d4f-218e5f167938] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""092ce1a3-a95f-45b1-9d4f-218e5f167938""}\n2025-07-17 16:23:54.942 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d1316768-a9a2-4bac-a65a-cd66781e81f7] received connection request\n2025-07-17 16:23:54.943 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:23:54.959 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d1316768-a9a2-4bac-a65a-cd66781e81f7] socks forwarding established\n2025-07-17 16:23:54.989 [info] [command][092ce1a3-a95f-45b1-9d4f-218e5f167938] Process exited with code 0\n2025-07-17 16:23:54.989 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d1316768-a9a2-4bac-a65a-cd66781e81f7] socks connection closed\n2025-07-17 16:23:54.989 [info] [command][092ce1a3-a95f-45b1-9d4f-218e5f167938] Socket close event received\n2025-07-17 16:23:55.005 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62698 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:24:54.992 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:24:54.995 [info] [command][e39d05f8-0ef2-41c5-a682-5b7c16d518ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e39d05f8-0ef2-41c5-a682-5b7c16d518ae""}\n2025-07-17 16:24:54.996 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][29fa356f-4ce5-470f-8a0a-1c6086e3bab1] received connection request\n2025-07-17 16:24:54.997 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:24:55.018 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][29fa356f-4ce5-470f-8a0a-1c6086e3bab1] socks forwarding established\n2025-07-17 16:24:55.045 [info] [command][e39d05f8-0ef2-41c5-a682-5b7c16d518ae] Process exited with code 0\n2025-07-17 16:24:55.045 [info] [command][e39d05f8-0ef2-41c5-a682-5b7c16d518ae] Socket close event received\n2025-07-17 16:24:55.047 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][29fa356f-4ce5-470f-8a0a-1c6086e3bab1] socks connection closed\n2025-07-17 16:24:55.062 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62745 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:25:55.051 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:25:55.054 [info] [command][01d7d650-d2ff-467d-8276-92a3b9bc66a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""01d7d650-d2ff-467d-8276-92a3b9bc66a0""}\n2025-07-17 16:25:55.054 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4c414035-e662-4f7a-8212-2be879b15423] received connection request\n2025-07-17 16:25:55.055 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:25:55.071 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4c414035-e662-4f7a-8212-2be879b15423] socks forwarding established\n2025-07-17 16:25:55.098 [info] [command][01d7d650-d2ff-467d-8276-92a3b9bc66a0] Process exited with code 0\n2025-07-17 16:25:55.098 [info] [command][01d7d650-d2ff-467d-8276-92a3b9bc66a0] Socket close event received\n2025-07-17 16:25:55.100 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4c414035-e662-4f7a-8212-2be879b15423] socks connection closed\n2025-07-17 16:25:55.115 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62803 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:26:55.103 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:26:55.105 [info] [command][5567f347-88af-429f-8311-fb9c32e5e0b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5567f347-88af-429f-8311-fb9c32e5e0b7""}\n2025-07-17 16:26:55.106 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8d5104a5-1f3e-40c3-83be-77a4f4e28773] received connection request\n2025-07-17 16:26:55.106 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:26:55.172 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8d5104a5-1f3e-40c3-83be-77a4f4e28773] socks forwarding established\n2025-07-17 16:26:55.208 [info] [command][5567f347-88af-429f-8311-fb9c32e5e0b7] Process exited with code 0\n2025-07-17 16:26:55.208 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8d5104a5-1f3e-40c3-83be-77a4f4e28773] socks connection closed\n2025-07-17 16:26:55.208 [info] [command][5567f347-88af-429f-8311-fb9c32e5e0b7] Socket close event received\n2025-07-17 16:26:55.225 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62842 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:27:55.212 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:27:55.215 [info] [command][46607b28-d1e3-4dba-a84a-f9b3d4ec6561] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""46607b28-d1e3-4dba-a84a-f9b3d4ec6561""}\n2025-07-17 16:27:55.216 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][fd95208e-5e29-403c-8201-125ecf1bd2e2] received connection request\n2025-07-17 16:27:55.216 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:27:55.233 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fd95208e-5e29-403c-8201-125ecf1bd2e2] socks forwarding established\n2025-07-17 16:27:55.263 [info] [command][46607b28-d1e3-4dba-a84a-f9b3d4ec6561] Process exited with code 0\n2025-07-17 16:27:55.263 [info] [command][46607b28-d1e3-4dba-a84a-f9b3d4ec6561] Socket close event received\n2025-07-17 16:27:55.264 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fd95208e-5e29-403c-8201-125ecf1bd2e2] socks connection closed\n2025-07-17 16:27:55.279 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62879 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:28:55.264 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:28:55.267 [info] [command][9112d4af-4c4c-4a23-895a-3fea159c8f09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9112d4af-4c4c-4a23-895a-3fea159c8f09""}\n2025-07-17 16:28:55.267 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][48e57994-d84d-44d9-a530-96a209fedbaa] received connection request\n2025-07-17 16:28:55.267 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:28:55.322 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][48e57994-d84d-44d9-a530-96a209fedbaa] socks forwarding established\n2025-07-17 16:28:55.349 [info] [command][9112d4af-4c4c-4a23-895a-3fea159c8f09] Process exited with code 0\n2025-07-17 16:28:55.349 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][48e57994-d84d-44d9-a530-96a209fedbaa] socks connection closed\n2025-07-17 16:28:55.349 [info] [command][9112d4af-4c4c-4a23-895a-3fea159c8f09] Socket close event received\n2025-07-17 16:28:55.363 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62937 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:29:55.352 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:29:55.354 [info] [command][9fb3e11b-c918-499d-baa6-89b5582e05a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9fb3e11b-c918-499d-baa6-89b5582e05a8""}\n2025-07-17 16:29:55.355 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ccfb2fd7-6025-48dc-889f-7ff05b8f466e] received connection request\n2025-07-17 16:29:55.356 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:29:55.373 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ccfb2fd7-6025-48dc-889f-7ff05b8f466e] socks forwarding established\n2025-07-17 16:29:55.405 [info] [command][9fb3e11b-c918-499d-baa6-89b5582e05a8] Process exited with code 0\n2025-07-17 16:29:55.406 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ccfb2fd7-6025-48dc-889f-7ff05b8f466e] socks connection closed\n2025-07-17 16:29:55.406 [info] [command][9fb3e11b-c918-499d-baa6-89b5582e05a8] Socket close event received\n2025-07-17 16:29:55.421 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 62965 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:30:55.411 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:30:55.413 [info] [command][086ca13d-d54e-48ce-b265-c64ecdf74656] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""086ca13d-d54e-48ce-b265-c64ecdf74656""}\n2025-07-17 16:30:55.414 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3cd7a202-648a-47b8-8244-f8515f4c0657] received connection request\n2025-07-17 16:30:55.414 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:30:55.431 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3cd7a202-648a-47b8-8244-f8515f4c0657] socks forwarding established\n2025-07-17 16:30:55.458 [info] [command][086ca13d-d54e-48ce-b265-c64ecdf74656] Process exited with code 0\n2025-07-17 16:30:55.459 [info] [command][086ca13d-d54e-48ce-b265-c64ecdf74656] Socket close event received\n2025-07-17 16:30:55.459 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3cd7a202-648a-47b8-8244-f8515f4c0657] socks connection closed\n2025-07-17 16:30:55.478 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63025 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:31:55.464 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:31:55.466 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][80671ac4-777a-4ba5-9810-352206fa6681] received connection request\n2025-07-17 16:31:55.466 [info] [command][a052bc60-a75c-4964-be76-128254c9592a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a052bc60-a75c-4964-be76-128254c9592a""}\n2025-07-17 16:31:55.466 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:31:55.484 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][80671ac4-777a-4ba5-9810-352206fa6681] socks forwarding established\n2025-07-17 16:31:55.514 [info] [command][a052bc60-a75c-4964-be76-128254c9592a] Process exited with code 0\n2025-07-17 16:31:55.515 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][80671ac4-777a-4ba5-9810-352206fa6681] socks connection closed\n2025-07-17 16:31:55.515 [info] [command][a052bc60-a75c-4964-be76-128254c9592a] Socket close event received\n2025-07-17 16:31:55.530 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63086 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:32:55.517 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:32:55.518 [info] [command][c843d471-2c57-4df3-b8e2-6d295d7c785e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c843d471-2c57-4df3-b8e2-6d295d7c785e""}\n2025-07-17 16:32:55.519 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][25386739-488d-46fc-95ed-11034a7a362c] received connection request\n2025-07-17 16:32:55.519 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:32:55.537 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][25386739-488d-46fc-95ed-11034a7a362c] socks forwarding established\n2025-07-17 16:32:55.567 [info] [command][c843d471-2c57-4df3-b8e2-6d295d7c785e] Process exited with code 0\n2025-07-17 16:32:55.567 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][25386739-488d-46fc-95ed-11034a7a362c] socks connection closed\n2025-07-17 16:32:55.567 [info] [command][c843d471-2c57-4df3-b8e2-6d295d7c785e] Socket close event received\n2025-07-17 16:32:55.584 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63120 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:33:55.571 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:33:55.573 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d4081266-476b-4f19-a097-6fc4a2506f06] received connection request\n2025-07-17 16:33:55.574 [info] [command][95ae91cf-c267-424c-b979-5b4a9be4f6da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""95ae91cf-c267-424c-b979-5b4a9be4f6da""}\n2025-07-17 16:33:55.574 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:33:55.589 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d4081266-476b-4f19-a097-6fc4a2506f06] socks forwarding established\n2025-07-17 16:33:55.616 [info] [command][95ae91cf-c267-424c-b979-5b4a9be4f6da] Process exited with code 0\n2025-07-17 16:33:55.616 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d4081266-476b-4f19-a097-6fc4a2506f06] socks connection closed\n2025-07-17 16:33:55.616 [info] [command][95ae91cf-c267-424c-b979-5b4a9be4f6da] Socket close event received\n2025-07-17 16:33:55.630 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63159 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:34:55.621 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:34:55.622 [info] [command][e3017866-a2e2-41e3-8c7a-d3fb52c6656c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e3017866-a2e2-41e3-8c7a-d3fb52c6656c""}\n2025-07-17 16:34:55.622 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][0737a94d-65ac-4b37-b9f2-47ae9cac0e4a] received connection request\n2025-07-17 16:34:55.623 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:34:55.644 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0737a94d-65ac-4b37-b9f2-47ae9cac0e4a] socks forwarding established\n2025-07-17 16:34:55.671 [info] [command][e3017866-a2e2-41e3-8c7a-d3fb52c6656c] Process exited with code 0\n2025-07-17 16:34:55.671 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0737a94d-65ac-4b37-b9f2-47ae9cac0e4a] socks connection closed\n2025-07-17 16:34:55.672 [info] [command][e3017866-a2e2-41e3-8c7a-d3fb52c6656c] Socket close event received\n2025-07-17 16:34:55.685 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63215 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:35:55.676 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:35:55.678 [info] [command][673d2943-828f-4fd6-9920-9c5d9c2cfefa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""673d2943-828f-4fd6-9920-9c5d9c2cfefa""}\n2025-07-17 16:35:55.680 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bfdade87-2d37-4172-8830-c3bb04cf7005] received connection request\n2025-07-17 16:35:55.680 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:35:55.725 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bfdade87-2d37-4172-8830-c3bb04cf7005] socks forwarding established\n2025-07-17 16:35:55.764 [info] [command][673d2943-828f-4fd6-9920-9c5d9c2cfefa] Process exited with code 0\n2025-07-17 16:35:55.764 [info] [command][673d2943-828f-4fd6-9920-9c5d9c2cfefa] Socket close event received\n2025-07-17 16:35:55.765 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bfdade87-2d37-4172-8830-c3bb04cf7005] socks connection closed\n2025-07-17 16:35:55.797 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63289 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:36:55.769 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:36:55.771 [info] [command][1cfa4bcd-0600-4715-b54d-75012c7c87f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1cfa4bcd-0600-4715-b54d-75012c7c87f3""}\n2025-07-17 16:36:55.771 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ce9cd495-e08c-4186-9fb9-39be0a921074] received connection request\n2025-07-17 16:36:55.771 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 16:36:55.772 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:36:55.795 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ce9cd495-e08c-4186-9fb9-39be0a921074] socks forwarding established\n2025-07-17 16:36:55.821 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ce9cd495-e08c-4186-9fb9-39be0a921074] socks connection closed\n2025-07-17 16:36:55.821 [info] [command][1cfa4bcd-0600-4715-b54d-75012c7c87f3] Process exited with code 0\n2025-07-17 16:36:55.821 [info] [command][1cfa4bcd-0600-4715-b54d-75012c7c87f3] Socket close event received\n2025-07-17 16:36:55.835 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63335 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:37:55.825 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:37:55.827 [info] [command][9be28b4f-c9ae-4c89-a1c1-7effded4e7f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9be28b4f-c9ae-4c89-a1c1-7effded4e7f9""}\n2025-07-17 16:37:55.828 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bc40dd60-fe44-48e1-a251-0a8d64c7a79a] received connection request\n2025-07-17 16:37:55.829 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:37:55.843 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bc40dd60-fe44-48e1-a251-0a8d64c7a79a] socks forwarding established\n2025-07-17 16:37:55.873 [info] [command][9be28b4f-c9ae-4c89-a1c1-7effded4e7f9] Process exited with code 0\n2025-07-17 16:37:55.873 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bc40dd60-fe44-48e1-a251-0a8d64c7a79a] socks connection closed\n2025-07-17 16:37:55.873 [info] [command][9be28b4f-c9ae-4c89-a1c1-7effded4e7f9] Socket close event received\n2025-07-17 16:37:55.886 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63382 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:38:55.878 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:38:55.881 [info] [command][2b659035-5af9-4daa-a5b7-50f293784d74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2b659035-5af9-4daa-a5b7-50f293784d74""}\n2025-07-17 16:38:55.882 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][54ea3e5a-dea5-45eb-b8a2-22c32899c01c] received connection request\n2025-07-17 16:38:55.882 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:38:55.911 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][54ea3e5a-dea5-45eb-b8a2-22c32899c01c] socks forwarding established\n2025-07-17 16:38:56.019 [info] [command][2b659035-5af9-4daa-a5b7-50f293784d74] Process exited with code 0\n2025-07-17 16:38:56.019 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][54ea3e5a-dea5-45eb-b8a2-22c32899c01c] socks connection closed\n2025-07-17 16:38:56.019 [info] [command][2b659035-5af9-4daa-a5b7-50f293784d74] Socket close event received\n2025-07-17 16:38:56.034 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63407 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:39:56.022 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:39:56.025 [info] [command][95912e45-6fa6-4536-9e69-332d763635e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""95912e45-6fa6-4536-9e69-332d763635e1""}\n2025-07-17 16:39:56.025 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][2ccbed5d-e278-4b13-a517-9d2006d71ef8] received connection request\n2025-07-17 16:39:56.026 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:39:56.042 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2ccbed5d-e278-4b13-a517-9d2006d71ef8] socks forwarding established\n2025-07-17 16:39:56.069 [info] [command][95912e45-6fa6-4536-9e69-332d763635e1] Process exited with code 0\n2025-07-17 16:39:56.069 [info] [command][95912e45-6fa6-4536-9e69-332d763635e1] Socket close event received\n2025-07-17 16:39:56.069 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2ccbed5d-e278-4b13-a517-9d2006d71ef8] socks connection closed\n2025-07-17 16:39:56.086 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63449 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:40:56.071 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:40:56.074 [info] [command][877ccaee-cb64-40f9-80ee-76529b0d9622] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""877ccaee-cb64-40f9-80ee-76529b0d9622""}\n2025-07-17 16:40:56.075 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][39e7d363-5d4b-44f8-856f-970459b71b87] received connection request\n2025-07-17 16:40:56.075 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:40:56.089 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][39e7d363-5d4b-44f8-856f-970459b71b87] socks forwarding established\n2025-07-17 16:40:56.123 [info] [command][877ccaee-cb64-40f9-80ee-76529b0d9622] Process exited with code 0\n2025-07-17 16:40:56.123 [info] [command][877ccaee-cb64-40f9-80ee-76529b0d9622] Socket close event received\n2025-07-17 16:40:56.133 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][39e7d363-5d4b-44f8-856f-970459b71b87] socks connection closed\n2025-07-17 16:40:56.138 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63550 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:41:56.125 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:41:56.126 [info] [command][c99e6fd4-03d8-4a11-98b0-928d9c6fe946] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c99e6fd4-03d8-4a11-98b0-928d9c6fe946""}\n2025-07-17 16:41:56.127 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][cb23a2a4-7e69-49e9-a56d-f76ea9f87eda] received connection request\n2025-07-17 16:41:56.127 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:41:56.143 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cb23a2a4-7e69-49e9-a56d-f76ea9f87eda] socks forwarding established\n2025-07-17 16:41:56.169 [info] [command][c99e6fd4-03d8-4a11-98b0-928d9c6fe946] Process exited with code 0\n2025-07-17 16:41:56.169 [info] [command][c99e6fd4-03d8-4a11-98b0-928d9c6fe946] Socket close event received\n2025-07-17 16:41:56.170 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cb23a2a4-7e69-49e9-a56d-f76ea9f87eda] socks connection closed\n2025-07-17 16:41:56.184 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63619 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:42:56.174 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:42:56.175 [info] [command][c4e8fa85-8019-400f-8257-8983c05a1bef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c4e8fa85-8019-400f-8257-8983c05a1bef""}\n2025-07-17 16:42:56.175 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][369bdf78-790d-4c0c-bf55-2415a75df571] received connection request\n2025-07-17 16:42:56.176 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 16:42:56.176 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:42:56.190 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][369bdf78-790d-4c0c-bf55-2415a75df571] socks forwarding established\n2025-07-17 16:42:56.217 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][369bdf78-790d-4c0c-bf55-2415a75df571] socks connection closed\n2025-07-17 16:42:56.217 [info] [command][c4e8fa85-8019-400f-8257-8983c05a1bef] Process exited with code 0\n2025-07-17 16:42:56.217 [info] [command][c4e8fa85-8019-400f-8257-8983c05a1bef] Socket close event received\n2025-07-17 16:42:56.230 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63698 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:43:56.220 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:43:56.223 [info] [command][a0743912-3944-4901-9b80-78e6ee6e585c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a0743912-3944-4901-9b80-78e6ee6e585c""}\n2025-07-17 16:43:56.223 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f71b15dd-8c45-4aa3-ae1a-8b80f6b386c8] received connection request\n2025-07-17 16:43:56.223 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:43:56.249 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f71b15dd-8c45-4aa3-ae1a-8b80f6b386c8] socks forwarding established\n2025-07-17 16:43:56.284 [info] [command][a0743912-3944-4901-9b80-78e6ee6e585c] Process exited with code 0\n2025-07-17 16:43:56.284 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f71b15dd-8c45-4aa3-ae1a-8b80f6b386c8] socks connection closed\n2025-07-17 16:43:56.284 [info] [command][a0743912-3944-4901-9b80-78e6ee6e585c] Socket close event received\n2025-07-17 16:43:56.434 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63769 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:44:56.285 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:44:56.287 [info] [command][c4ce547d-c8e2-494e-9cab-2a39e079673f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c4ce547d-c8e2-494e-9cab-2a39e079673f""}\n2025-07-17 16:44:56.288 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][775cdb02-41ca-4ead-bd22-0d884db6b0d6] received connection request\n2025-07-17 16:44:56.288 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:44:56.305 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][775cdb02-41ca-4ead-bd22-0d884db6b0d6] socks forwarding established\n2025-07-17 16:44:56.333 [info] [command][c4ce547d-c8e2-494e-9cab-2a39e079673f] Process exited with code 0\n2025-07-17 16:44:56.333 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][775cdb02-41ca-4ead-bd22-0d884db6b0d6] socks connection closed\n2025-07-17 16:44:56.333 [info] [command][c4ce547d-c8e2-494e-9cab-2a39e079673f] Socket close event received\n2025-07-17 16:44:56.347 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63856 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:45:56.337 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:45:56.340 [info] [command][3d4d3c31-c671-4089-b171-1587db44c517] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""3d4d3c31-c671-4089-b171-1587db44c517""}\n2025-07-17 16:45:56.341 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8490da4a-74d5-42eb-84a7-6cca8a0f19bf] received connection request\n2025-07-17 16:45:56.342 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:45:56.369 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8490da4a-74d5-42eb-84a7-6cca8a0f19bf] socks forwarding established\n2025-07-17 16:45:56.397 [info] [command][3d4d3c31-c671-4089-b171-1587db44c517] Process exited with code 0\n2025-07-17 16:45:56.397 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8490da4a-74d5-42eb-84a7-6cca8a0f19bf] socks connection closed\n2025-07-17 16:45:56.398 [info] [command][3d4d3c31-c671-4089-b171-1587db44c517] Socket close event received\n2025-07-17 16:45:56.412 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63921 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:46:56.401 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:46:56.403 [info] [command][7ce575f2-a775-4fcf-822e-dba75772dce6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""7ce575f2-a775-4fcf-822e-dba75772dce6""}\n2025-07-17 16:46:56.404 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][86e95650-e341-4602-8cb6-16614b1bd615] received connection request\n2025-07-17 16:46:56.404 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:46:56.423 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][86e95650-e341-4602-8cb6-16614b1bd615] socks forwarding established\n2025-07-17 16:46:56.449 [info] [command][7ce575f2-a775-4fcf-822e-dba75772dce6] Process exited with code 0\n2025-07-17 16:46:56.449 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][86e95650-e341-4602-8cb6-16614b1bd615] socks connection closed\n2025-07-17 16:46:56.449 [info] [command][7ce575f2-a775-4fcf-822e-dba75772dce6] Socket close event received\n2025-07-17 16:46:56.464 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63945 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:47:56.454 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:47:56.456 [info] [command][e0e5c7db-39b0-4b34-b1d3-523a9c45f4f1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""e0e5c7db-39b0-4b34-b1d3-523a9c45f4f1""}\n2025-07-17 16:47:56.456 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][87a0f358-e241-4024-a723-a4a07090199c] received connection request\n2025-07-17 16:47:56.457 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:47:56.472 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][87a0f358-e241-4024-a723-a4a07090199c] socks forwarding established\n2025-07-17 16:47:56.499 [info] [command][e0e5c7db-39b0-4b34-b1d3-523a9c45f4f1] Process exited with code 0\n2025-07-17 16:47:56.499 [info] [command][e0e5c7db-39b0-4b34-b1d3-523a9c45f4f1] Socket close event received\n2025-07-17 16:47:56.499 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][87a0f358-e241-4024-a723-a4a07090199c] socks connection closed\n2025-07-17 16:47:56.514 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 63979 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:48:56.504 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:48:56.509 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a698ca6a-da42-414d-95ea-6e9237c8b263] received connection request\n2025-07-17 16:48:56.509 [info] [command][786d1d9e-e737-432d-acad-0f2bf1813b8b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""786d1d9e-e737-432d-acad-0f2bf1813b8b""}\n2025-07-17 16:48:56.510 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:48:56.526 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a698ca6a-da42-414d-95ea-6e9237c8b263] socks forwarding established\n2025-07-17 16:48:56.554 [info] [command][786d1d9e-e737-432d-acad-0f2bf1813b8b] Process exited with code 0\n2025-07-17 16:48:56.554 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a698ca6a-da42-414d-95ea-6e9237c8b263] socks connection closed\n2025-07-17 16:48:56.554 [info] [command][786d1d9e-e737-432d-acad-0f2bf1813b8b] Socket close event received\n2025-07-17 16:48:56.569 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64018 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:49:56.560 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:49:56.562 [info] [command][88bbce20-6f62-4d45-98ff-e708692515d9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""88bbce20-6f62-4d45-98ff-e708692515d9""}\n2025-07-17 16:49:56.564 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][83f50300-d2bc-49aa-9c55-139b808f4b14] received connection request\n2025-07-17 16:49:56.564 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 16:49:56.566 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:49:56.590 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][83f50300-d2bc-49aa-9c55-139b808f4b14] socks forwarding established\n2025-07-17 16:49:56.619 [info] [command][88bbce20-6f62-4d45-98ff-e708692515d9] Process exited with code 0\n2025-07-17 16:49:56.619 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][83f50300-d2bc-49aa-9c55-139b808f4b14] socks connection closed\n2025-07-17 16:49:56.619 [info] [command][88bbce20-6f62-4d45-98ff-e708692515d9] Socket close event received\n2025-07-17 16:49:56.649 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64070 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:50:56.622 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:50:56.626 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][da7518dc-fb12-4d0b-a19c-6223993c6ad4] received connection request\n2025-07-17 16:50:56.627 [info] [command][d4d4f7b6-274c-4788-85c4-7819b5c8b04f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""d4d4f7b6-274c-4788-85c4-7819b5c8b04f""}\n2025-07-17 16:50:56.628 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:50:56.676 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][da7518dc-fb12-4d0b-a19c-6223993c6ad4] socks forwarding established\n2025-07-17 16:50:56.704 [info] [command][d4d4f7b6-274c-4788-85c4-7819b5c8b04f] Process exited with code 0\n2025-07-17 16:50:56.704 [info] [command][d4d4f7b6-274c-4788-85c4-7819b5c8b04f] Socket close event received\n2025-07-17 16:50:56.705 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][da7518dc-fb12-4d0b-a19c-6223993c6ad4] socks connection closed\n2025-07-17 16:50:56.718 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64156 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:51:56.709 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:51:56.711 [info] [command][84e25576-1586-4038-b219-de4bd023acf5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""84e25576-1586-4038-b219-de4bd023acf5""}\n2025-07-17 16:51:56.711 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3af912b5-b4ac-4481-bcca-45f0c99c6e88] received connection request\n2025-07-17 16:51:56.712 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:51:56.726 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3af912b5-b4ac-4481-bcca-45f0c99c6e88] socks forwarding established\n2025-07-17 16:51:56.754 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3af912b5-b4ac-4481-bcca-45f0c99c6e88] socks connection closed\n2025-07-17 16:51:56.754 [info] [command][84e25576-1586-4038-b219-de4bd023acf5] Process exited with code 0\n2025-07-17 16:51:56.754 [info] [command][84e25576-1586-4038-b219-de4bd023acf5] Socket close event received\n2025-07-17 16:51:56.769 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64188 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:52:56.757 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:52:56.759 [info] [command][ccf7f2f1-8615-4aec-b090-4f4173391575] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ccf7f2f1-8615-4aec-b090-4f4173391575""}\n2025-07-17 16:52:56.760 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][2775a25b-86ed-432a-9466-d8b00dc3ae3b] received connection request\n2025-07-17 16:52:56.760 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:52:56.779 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2775a25b-86ed-432a-9466-d8b00dc3ae3b] socks forwarding established\n2025-07-17 16:52:56.812 [info] [command][ccf7f2f1-8615-4aec-b090-4f4173391575] Process exited with code 0\n2025-07-17 16:52:56.812 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2775a25b-86ed-432a-9466-d8b00dc3ae3b] socks connection closed\n2025-07-17 16:52:56.813 [info] [command][ccf7f2f1-8615-4aec-b090-4f4173391575] Socket close event received\n2025-07-17 16:52:56.831 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64233 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:53:56.814 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:53:56.816 [info] [command][3e47e1f7-05a7-49bb-846e-d931577fd5c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""3e47e1f7-05a7-49bb-846e-d931577fd5c2""}\n2025-07-17 16:53:56.817 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7dd73d2a-8771-47aa-8bb3-40e17e1b83fc] received connection request\n2025-07-17 16:53:56.817 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:53:56.963 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7dd73d2a-8771-47aa-8bb3-40e17e1b83fc] socks forwarding established\n2025-07-17 16:53:56.997 [info] [command][3e47e1f7-05a7-49bb-846e-d931577fd5c2] Process exited with code 0\n2025-07-17 16:53:56.998 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7dd73d2a-8771-47aa-8bb3-40e17e1b83fc] socks connection closed\n2025-07-17 16:53:56.998 [info] [command][3e47e1f7-05a7-49bb-846e-d931577fd5c2] Socket close event received\n2025-07-17 16:53:57.013 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64261 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:54:56.999 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:54:57.001 [info] [command][c13c0ad5-51a8-4cb1-b310-9da4fb57f982] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c13c0ad5-51a8-4cb1-b310-9da4fb57f982""}\n2025-07-17 16:54:57.002 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5c8dc413-87b7-43a5-bde4-a99f48ed3e8b] received connection request\n2025-07-17 16:54:57.003 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:54:57.018 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5c8dc413-87b7-43a5-bde4-a99f48ed3e8b] socks forwarding established\n2025-07-17 16:54:57.043 [info] [command][c13c0ad5-51a8-4cb1-b310-9da4fb57f982] Process exited with code 0\n2025-07-17 16:54:57.043 [info] [command][c13c0ad5-51a8-4cb1-b310-9da4fb57f982] Socket close event received\n2025-07-17 16:54:57.044 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5c8dc413-87b7-43a5-bde4-a99f48ed3e8b] socks connection closed\n2025-07-17 16:54:57.059 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64302 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:55:57.044 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:55:57.047 [info] [command][5c55a9d7-2b6e-451d-b24e-8ab28ae71c34] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5c55a9d7-2b6e-451d-b24e-8ab28ae71c34""}\n2025-07-17 16:55:57.048 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][604807de-16fd-484e-8c3f-baa0b4a351c7] received connection request\n2025-07-17 16:55:57.049 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:55:57.065 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][604807de-16fd-484e-8c3f-baa0b4a351c7] socks forwarding established\n2025-07-17 16:55:57.100 [info] [command][5c55a9d7-2b6e-451d-b24e-8ab28ae71c34] Process exited with code 0\n2025-07-17 16:55:57.101 [info] [command][5c55a9d7-2b6e-451d-b24e-8ab28ae71c34] Socket close event received\n2025-07-17 16:55:57.102 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][604807de-16fd-484e-8c3f-baa0b4a351c7] socks connection closed\n2025-07-17 16:55:57.118 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64369 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:56:57.105 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:56:57.106 [info] [command][33fd320d-70f0-49e1-a284-04c0e81d1009] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""33fd320d-70f0-49e1-a284-04c0e81d1009""}\n2025-07-17 16:56:57.107 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][630d59b5-9a35-4213-ad8e-f68170f82c9c] received connection request\n2025-07-17 16:56:57.107 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:56:57.157 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][630d59b5-9a35-4213-ad8e-f68170f82c9c] socks forwarding established\n2025-07-17 16:56:57.188 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][630d59b5-9a35-4213-ad8e-f68170f82c9c] socks connection closed\n2025-07-17 16:56:57.188 [info] [command][33fd320d-70f0-49e1-a284-04c0e81d1009] Process exited with code 0\n2025-07-17 16:56:57.188 [info] [command][33fd320d-70f0-49e1-a284-04c0e81d1009] Socket close event received\n2025-07-17 16:56:57.203 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64403 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:57:57.192 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:57:57.196 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bffa1564-bd47-45ae-885a-a12fe0d3b6dc] received connection request\n2025-07-17 16:57:57.197 [info] [command][eab5275f-4f42-4af2-a175-469d406700c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""eab5275f-4f42-4af2-a175-469d406700c9""}\n2025-07-17 16:57:57.197 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:57:57.213 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bffa1564-bd47-45ae-885a-a12fe0d3b6dc] socks forwarding established\n2025-07-17 16:57:57.239 [info] [command][eab5275f-4f42-4af2-a175-469d406700c9] Process exited with code 0\n2025-07-17 16:57:57.239 [info] [command][eab5275f-4f42-4af2-a175-469d406700c9] Socket close event received\n2025-07-17 16:57:57.240 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bffa1564-bd47-45ae-885a-a12fe0d3b6dc] socks connection closed\n2025-07-17 16:57:57.256 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64440 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:58:57.240 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:58:57.242 [info] [command][3a9028f9-c685-408c-95d7-1b5bc69c9d6e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""3a9028f9-c685-408c-95d7-1b5bc69c9d6e""}\n2025-07-17 16:58:57.242 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4722b3a1-09fd-44fc-94f8-e4c89c3c49c3] received connection request\n2025-07-17 16:58:57.242 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:58:57.256 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4722b3a1-09fd-44fc-94f8-e4c89c3c49c3] socks forwarding established\n2025-07-17 16:58:57.284 [info] [command][3a9028f9-c685-408c-95d7-1b5bc69c9d6e] Process exited with code 0\n2025-07-17 16:58:57.284 [info] [command][3a9028f9-c685-408c-95d7-1b5bc69c9d6e] Socket close event received\n2025-07-17 16:58:57.285 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4722b3a1-09fd-44fc-94f8-e4c89c3c49c3] socks connection closed\n2025-07-17 16:58:57.299 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64467 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 16:59:57.286 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 16:59:57.289 [info] [command][4c8b330e-bc89-4d33-9817-82bb0e72a28b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4c8b330e-bc89-4d33-9817-82bb0e72a28b""}\n2025-07-17 16:59:57.289 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][54b73b18-2e92-42d5-8b5a-cf21dc9fcfe3] received connection request\n2025-07-17 16:59:57.290 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 16:59:57.320 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][54b73b18-2e92-42d5-8b5a-cf21dc9fcfe3] socks forwarding established\n2025-07-17 16:59:57.347 [info] [command][4c8b330e-bc89-4d33-9817-82bb0e72a28b] Process exited with code 0\n2025-07-17 16:59:57.348 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][54b73b18-2e92-42d5-8b5a-cf21dc9fcfe3] socks connection closed\n2025-07-17 16:59:57.348 [info] [command][4c8b330e-bc89-4d33-9817-82bb0e72a28b] Socket close event received\n2025-07-17 16:59:57.363 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64493 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:00:57.353 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:00:57.356 [info] [command][23254a66-e821-4dd1-9911-37f4dd56d96f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""23254a66-e821-4dd1-9911-37f4dd56d96f""}\n2025-07-17 17:00:57.357 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7a8ae7b6-5744-4cb0-9612-c9ac3fdc48f3] received connection request\n2025-07-17 17:00:57.359 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:00:57.378 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7a8ae7b6-5744-4cb0-9612-c9ac3fdc48f3] socks forwarding established\n2025-07-17 17:00:57.406 [info] [command][23254a66-e821-4dd1-9911-37f4dd56d96f] Process exited with code 0\n2025-07-17 17:00:57.406 [info] [command][23254a66-e821-4dd1-9911-37f4dd56d96f] Socket close event received\n2025-07-17 17:00:57.409 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7a8ae7b6-5744-4cb0-9612-c9ac3fdc48f3] socks connection closed\n2025-07-17 17:00:57.427 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64546 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:01:57.411 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:01:57.414 [info] [command][3baddd40-c498-4c62-aaf9-fbdeff0333fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""3baddd40-c498-4c62-aaf9-fbdeff0333fa""}\n2025-07-17 17:01:57.415 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][90bf90a7-f084-4222-a460-c3a5fef61809] received connection request\n2025-07-17 17:01:57.416 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:01:57.432 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][90bf90a7-f084-4222-a460-c3a5fef61809] socks forwarding established\n2025-07-17 17:01:57.460 [info] [command][3baddd40-c498-4c62-aaf9-fbdeff0333fa] Process exited with code 0\n2025-07-17 17:01:57.461 [info] [command][3baddd40-c498-4c62-aaf9-fbdeff0333fa] Socket close event received\n2025-07-17 17:01:57.461 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][90bf90a7-f084-4222-a460-c3a5fef61809] socks connection closed\n2025-07-17 17:01:57.477 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64579 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:02:57.466 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:02:57.470 [info] [command][caea9f03-e742-4316-92bd-c6c39683c2d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""caea9f03-e742-4316-92bd-c6c39683c2d2""}\n2025-07-17 17:02:57.471 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6c4eae17-50bf-4f15-bc96-ee80cadd8a37] received connection request\n2025-07-17 17:02:57.473 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 17:02:57.473 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:02:57.489 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6c4eae17-50bf-4f15-bc96-ee80cadd8a37] socks forwarding established\n2025-07-17 17:02:57.517 [info] [command][caea9f03-e742-4316-92bd-c6c39683c2d2] Process exited with code 0\n2025-07-17 17:02:57.517 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6c4eae17-50bf-4f15-bc96-ee80cadd8a37] socks connection closed\n2025-07-17 17:02:57.517 [info] [command][caea9f03-e742-4316-92bd-c6c39683c2d2] Socket close event received\n2025-07-17 17:02:57.532 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64640 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:03:57.523 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:03:57.524 [info] [command][677cd553-d91e-4c96-ad26-ce06a0817ae4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""677cd553-d91e-4c96-ad26-ce06a0817ae4""}\n2025-07-17 17:03:57.525 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][20bdbd2b-cc87-40e8-bd30-e31a3f864bd0] received connection request\n2025-07-17 17:03:57.525 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:03:57.541 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][20bdbd2b-cc87-40e8-bd30-e31a3f864bd0] socks forwarding established\n2025-07-17 17:03:57.569 [info] [command][677cd553-d91e-4c96-ad26-ce06a0817ae4] Process exited with code 0\n2025-07-17 17:03:57.569 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][20bdbd2b-cc87-40e8-bd30-e31a3f864bd0] socks connection closed\n2025-07-17 17:03:57.570 [info] [command][677cd553-d91e-4c96-ad26-ce06a0817ae4] Socket close event received\n2025-07-17 17:03:57.585 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64672 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:04:57.572 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:04:57.574 [info] [command][102f15f2-0231-48e7-b6aa-77b2d15fe00f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""102f15f2-0231-48e7-b6aa-77b2d15fe00f""}\n2025-07-17 17:04:57.575 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c0ef633d-a3d8-4057-82b0-9d0eec3cadf8] received connection request\n2025-07-17 17:04:57.575 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:04:57.592 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c0ef633d-a3d8-4057-82b0-9d0eec3cadf8] socks forwarding established\n2025-07-17 17:04:57.622 [info] [command][102f15f2-0231-48e7-b6aa-77b2d15fe00f] Process exited with code 0\n2025-07-17 17:04:57.622 [info] [command][102f15f2-0231-48e7-b6aa-77b2d15fe00f] Socket close event received\n2025-07-17 17:04:57.623 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c0ef633d-a3d8-4057-82b0-9d0eec3cadf8] socks connection closed\n2025-07-17 17:04:57.640 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64698 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:05:57.626 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:05:57.628 [info] [command][1de8af94-9d62-4eed-983c-64d04122c84a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1de8af94-9d62-4eed-983c-64d04122c84a""}\n2025-07-17 17:05:57.629 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c1c39e94-5450-4971-ba7e-d6b209615d3c] received connection request\n2025-07-17 17:05:57.630 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:05:57.647 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c1c39e94-5450-4971-ba7e-d6b209615d3c] socks forwarding established\n2025-07-17 17:05:57.676 [info] [command][1de8af94-9d62-4eed-983c-64d04122c84a] Process exited with code 0\n2025-07-17 17:05:57.677 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c1c39e94-5450-4971-ba7e-d6b209615d3c] socks connection closed\n2025-07-17 17:05:57.677 [info] [command][1de8af94-9d62-4eed-983c-64d04122c84a] Socket close event received\n2025-07-17 17:05:57.693 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64763 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:06:57.682 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:06:57.685 [info] [command][f139519f-ef13-49cd-acbb-2e2a5cc19349] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f139519f-ef13-49cd-acbb-2e2a5cc19349""}\n2025-07-17 17:06:57.685 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][767bf0ee-ec8c-48c2-a96e-6ef998135be4] received connection request\n2025-07-17 17:06:57.686 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 17:06:57.687 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:06:57.704 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][767bf0ee-ec8c-48c2-a96e-6ef998135be4] socks forwarding established\n2025-07-17 17:06:57.732 [info] [command][f139519f-ef13-49cd-acbb-2e2a5cc19349] Process exited with code 0\n2025-07-17 17:06:57.732 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][767bf0ee-ec8c-48c2-a96e-6ef998135be4] socks connection closed\n2025-07-17 17:06:57.732 [info] [command][f139519f-ef13-49cd-acbb-2e2a5cc19349] Socket close event received\n2025-07-17 17:06:57.749 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64791 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:07:57.737 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:07:57.740 [info] [command][f1842034-5b76-4f59-9971-c8aefe60f569] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f1842034-5b76-4f59-9971-c8aefe60f569""}\n2025-07-17 17:07:57.741 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f7a5912f-dcbc-4968-a996-a12623df8619] received connection request\n2025-07-17 17:07:57.741 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:07:57.757 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f7a5912f-dcbc-4968-a996-a12623df8619] socks forwarding established\n2025-07-17 17:07:57.786 [info] [command][f1842034-5b76-4f59-9971-c8aefe60f569] Process exited with code 0\n2025-07-17 17:07:57.786 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f7a5912f-dcbc-4968-a996-a12623df8619] socks connection closed\n2025-07-17 17:07:57.786 [info] [command][f1842034-5b76-4f59-9971-c8aefe60f569] Socket close event received\n2025-07-17 17:07:57.801 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64829 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:08:57.787 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:08:57.789 [info] [command][0cbc45a4-2a1f-489f-b351-e3a4655e9fd6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0cbc45a4-2a1f-489f-b351-e3a4655e9fd6""}\n2025-07-17 17:08:57.790 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b7ef3799-d37b-4f56-8809-041ff91d62d0] received connection request\n2025-07-17 17:08:57.791 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:08:57.863 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b7ef3799-d37b-4f56-8809-041ff91d62d0] socks forwarding established\n2025-07-17 17:08:57.893 [info] [command][0cbc45a4-2a1f-489f-b351-e3a4655e9fd6] Process exited with code 0\n2025-07-17 17:08:57.893 [info] [command][0cbc45a4-2a1f-489f-b351-e3a4655e9fd6] Socket close event received\n2025-07-17 17:08:57.894 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b7ef3799-d37b-4f56-8809-041ff91d62d0] socks connection closed\n2025-07-17 17:08:57.909 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64860 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:09:57.901 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:09:57.904 [info] [command][c993f9a9-7926-4274-adc3-d27e44ac7158] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c993f9a9-7926-4274-adc3-d27e44ac7158""}\n2025-07-17 17:09:57.905 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3beb2c0f-95c9-404f-b985-7ff6f9b8f6d8] received connection request\n2025-07-17 17:09:57.906 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:09:57.921 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3beb2c0f-95c9-404f-b985-7ff6f9b8f6d8] socks forwarding established\n2025-07-17 17:09:57.948 [info] [command][c993f9a9-7926-4274-adc3-d27e44ac7158] Process exited with code 0\n2025-07-17 17:09:57.949 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3beb2c0f-95c9-404f-b985-7ff6f9b8f6d8] socks connection closed\n2025-07-17 17:09:57.950 [info] [command][c993f9a9-7926-4274-adc3-d27e44ac7158] Socket close event received\n2025-07-17 17:09:57.966 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64883 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:10:57.952 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:10:57.954 [info] [command][303fda4e-3f3f-4980-98c3-fea3f4fc7ca6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""303fda4e-3f3f-4980-98c3-fea3f4fc7ca6""}\n2025-07-17 17:10:57.955 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][55b494f5-0868-47ed-a757-8ae41d3bf93f] received connection request\n2025-07-17 17:10:57.955 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:10:57.971 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][55b494f5-0868-47ed-a757-8ae41d3bf93f] socks forwarding established\n2025-07-17 17:10:58.000 [info] [command][303fda4e-3f3f-4980-98c3-fea3f4fc7ca6] Process exited with code 0\n2025-07-17 17:10:58.001 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][55b494f5-0868-47ed-a757-8ae41d3bf93f] socks connection closed\n2025-07-17 17:10:58.001 [info] [command][303fda4e-3f3f-4980-98c3-fea3f4fc7ca6] Socket close event received\n2025-07-17 17:10:58.018 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64941 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:11:58.007 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:11:58.009 [info] [command][2a8e5943-8774-4d7e-be68-e1bf65e8cce7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2a8e5943-8774-4d7e-be68-e1bf65e8cce7""}\n2025-07-17 17:11:58.010 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][09d675a4-8130-456b-b53b-e77bb1ff7f2c] received connection request\n2025-07-17 17:11:58.011 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:11:58.107 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][09d675a4-8130-456b-b53b-e77bb1ff7f2c] socks forwarding established\n2025-07-17 17:11:58.163 [info] [command][2a8e5943-8774-4d7e-be68-e1bf65e8cce7] Process exited with code 0\n2025-07-17 17:11:58.163 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][09d675a4-8130-456b-b53b-e77bb1ff7f2c] socks connection closed\n2025-07-17 17:11:58.164 [info] [command][2a8e5943-8774-4d7e-be68-e1bf65e8cce7] Socket close event received\n2025-07-17 17:11:58.178 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 64964 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:12:58.167 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:12:58.170 [info] [command][175a3ec8-c946-48ff-9648-c845deb56779] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""175a3ec8-c946-48ff-9648-c845deb56779""}\n2025-07-17 17:12:58.170 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][194f0169-1f19-49a0-865b-f605e5f1f122] received connection request\n2025-07-17 17:12:58.171 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:12:58.189 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][194f0169-1f19-49a0-865b-f605e5f1f122] socks forwarding established\n2025-07-17 17:12:58.218 [info] [command][175a3ec8-c946-48ff-9648-c845deb56779] Process exited with code 0\n2025-07-17 17:12:58.218 [info] [command][175a3ec8-c946-48ff-9648-c845deb56779] Socket close event received\n2025-07-17 17:12:58.220 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][194f0169-1f19-49a0-865b-f605e5f1f122] socks connection closed\n2025-07-17 17:12:58.238 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65000 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:13:58.221 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:13:58.225 [info] [command][6f4a66fa-f1f1-4789-937e-db801c0e1b96] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6f4a66fa-f1f1-4789-937e-db801c0e1b96""}\n2025-07-17 17:13:58.225 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][696538aa-c7ff-4811-94c0-a473933d5a1c] received connection request\n2025-07-17 17:13:58.226 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:13:58.243 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][696538aa-c7ff-4811-94c0-a473933d5a1c] socks forwarding established\n2025-07-17 17:13:58.271 [info] [command][6f4a66fa-f1f1-4789-937e-db801c0e1b96] Process exited with code 0\n2025-07-17 17:13:58.271 [info] [command][6f4a66fa-f1f1-4789-937e-db801c0e1b96] Socket close event received\n2025-07-17 17:13:58.273 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][696538aa-c7ff-4811-94c0-a473933d5a1c] socks connection closed\n2025-07-17 17:13:58.291 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65026 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:14:58.274 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:14:58.276 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a57aa6ba-5519-443e-a3ae-56ec1784e6cd] received connection request\n2025-07-17 17:14:58.276 [info] [command][c496cd9a-5975-4197-b513-6bb9dcf8f52b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c496cd9a-5975-4197-b513-6bb9dcf8f52b""}\n2025-07-17 17:14:58.276 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:14:58.291 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a57aa6ba-5519-443e-a3ae-56ec1784e6cd] socks forwarding established\n2025-07-17 17:14:58.331 [info] [command][c496cd9a-5975-4197-b513-6bb9dcf8f52b] Process exited with code 0\n2025-07-17 17:14:58.332 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a57aa6ba-5519-443e-a3ae-56ec1784e6cd] socks connection closed\n2025-07-17 17:14:58.332 [info] [command][c496cd9a-5975-4197-b513-6bb9dcf8f52b] Socket close event received\n2025-07-17 17:14:58.348 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65052 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:15:58.336 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:15:58.338 [info] [command][7dc7e920-e5fe-4885-83f2-0dd1c96ae6f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""7dc7e920-e5fe-4885-83f2-0dd1c96ae6f0""}\n2025-07-17 17:15:58.339 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9b1b7e9d-ff49-4852-9c06-018d5cd80f83] received connection request\n2025-07-17 17:15:58.340 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:15:58.354 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9b1b7e9d-ff49-4852-9c06-018d5cd80f83] socks forwarding established\n2025-07-17 17:15:58.384 [info] [command][7dc7e920-e5fe-4885-83f2-0dd1c96ae6f0] Process exited with code 0\n2025-07-17 17:15:58.384 [info] [command][7dc7e920-e5fe-4885-83f2-0dd1c96ae6f0] Socket close event received\n2025-07-17 17:15:58.384 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9b1b7e9d-ff49-4852-9c06-018d5cd80f83] socks connection closed\n2025-07-17 17:15:58.400 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65134 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:16:58.387 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:16:58.389 [info] [command][c6a55d99-0720-440c-8e3f-e9a103fdb3eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c6a55d99-0720-440c-8e3f-e9a103fdb3eb""}\n2025-07-17 17:16:58.390 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][884d687b-4789-4830-be72-d5a69d726701] received connection request\n2025-07-17 17:16:58.391 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:16:58.406 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][884d687b-4789-4830-be72-d5a69d726701] socks forwarding established\n2025-07-17 17:16:58.435 [info] [command][c6a55d99-0720-440c-8e3f-e9a103fdb3eb] Process exited with code 0\n2025-07-17 17:16:58.436 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][884d687b-4789-4830-be72-d5a69d726701] socks connection closed\n2025-07-17 17:16:58.436 [info] [command][c6a55d99-0720-440c-8e3f-e9a103fdb3eb] Socket close event received\n2025-07-17 17:16:58.452 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65198 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:17:58.441 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:17:58.443 [info] [command][f4936852-aaa5-4c7b-82b4-12210ed52fb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f4936852-aaa5-4c7b-82b4-12210ed52fb5""}\n2025-07-17 17:17:58.444 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][45f64d31-506b-4108-88ef-86d3204702a9] received connection request\n2025-07-17 17:17:58.445 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:17:58.493 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][45f64d31-506b-4108-88ef-86d3204702a9] socks forwarding established\n2025-07-17 17:17:58.523 [info] [command][f4936852-aaa5-4c7b-82b4-12210ed52fb5] Process exited with code 0\n2025-07-17 17:17:58.523 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][45f64d31-506b-4108-88ef-86d3204702a9] socks connection closed\n2025-07-17 17:17:58.524 [info] [command][f4936852-aaa5-4c7b-82b4-12210ed52fb5] Socket close event received\n2025-07-17 17:17:58.540 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65247 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:18:58.527 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:18:58.528 [info] [command][75bb7110-40fb-47a7-b4e1-7c197d51e3aa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""75bb7110-40fb-47a7-b4e1-7c197d51e3aa""}\n2025-07-17 17:18:58.529 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][91309b19-b1c5-43bb-b3cf-7a1d7ec0a453] received connection request\n2025-07-17 17:18:58.529 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 17:18:58.530 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:18:58.546 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][91309b19-b1c5-43bb-b3cf-7a1d7ec0a453] socks forwarding established\n2025-07-17 17:18:58.573 [info] [command][75bb7110-40fb-47a7-b4e1-7c197d51e3aa] Process exited with code 0\n2025-07-17 17:18:58.573 [info] [command][75bb7110-40fb-47a7-b4e1-7c197d51e3aa] Socket close event received\n2025-07-17 17:18:58.593 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][91309b19-b1c5-43bb-b3cf-7a1d7ec0a453] socks connection closed\n2025-07-17 17:18:58.594 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65285 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:19:58.574 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:19:58.577 [info] [command][964d353b-ec4d-401d-9ffc-d06a88abdea7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""964d353b-ec4d-401d-9ffc-d06a88abdea7""}\n2025-07-17 17:19:58.578 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][e1921b14-992a-4f52-9051-3ab29049d4f2] received connection request\n2025-07-17 17:19:58.579 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:19:58.595 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e1921b14-992a-4f52-9051-3ab29049d4f2] socks forwarding established\n2025-07-17 17:19:58.622 [info] [command][964d353b-ec4d-401d-9ffc-d06a88abdea7] Process exited with code 0\n2025-07-17 17:19:58.623 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][e1921b14-992a-4f52-9051-3ab29049d4f2] socks connection closed\n2025-07-17 17:19:58.623 [info] [command][964d353b-ec4d-401d-9ffc-d06a88abdea7] Socket close event received\n2025-07-17 17:19:58.638 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65325 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:20:58.626 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:20:58.629 [info] [command][64db9188-5b04-4ed7-adf4-8353d8d56351] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""64db9188-5b04-4ed7-adf4-8353d8d56351""}\n2025-07-17 17:20:58.630 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][dd4c597d-ed73-4e5f-b406-bfb200b32656] received connection request\n2025-07-17 17:20:58.630 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 17:20:58.630 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:20:58.659 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][dd4c597d-ed73-4e5f-b406-bfb200b32656] socks forwarding established\n2025-07-17 17:20:58.692 [info] [command][64db9188-5b04-4ed7-adf4-8353d8d56351] Process exited with code 0\n2025-07-17 17:20:58.693 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][dd4c597d-ed73-4e5f-b406-bfb200b32656] socks connection closed\n2025-07-17 17:20:58.693 [info] [command][64db9188-5b04-4ed7-adf4-8353d8d56351] Socket close event received\n2025-07-17 17:20:58.711 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65387 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:21:58.698 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:21:58.700 [info] [command][348675de-cc61-4aed-bada-bc3e2f4192ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""348675de-cc61-4aed-bada-bc3e2f4192ae""}\n2025-07-17 17:21:58.701 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f2ee3624-542f-4e28-b670-083ccfbcdc2a] received connection request\n2025-07-17 17:21:58.701 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:21:58.717 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f2ee3624-542f-4e28-b670-083ccfbcdc2a] socks forwarding established\n2025-07-17 17:21:58.743 [info] [command][348675de-cc61-4aed-bada-bc3e2f4192ae] Process exited with code 0\n2025-07-17 17:21:58.743 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f2ee3624-542f-4e28-b670-083ccfbcdc2a] socks connection closed\n2025-07-17 17:21:58.744 [info] [command][348675de-cc61-4aed-bada-bc3e2f4192ae] Socket close event received\n2025-07-17 17:21:58.757 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65424 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:22:58.749 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:22:58.751 [info] [command][da9c8287-0981-4480-af32-2975b09df861] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""da9c8287-0981-4480-af32-2975b09df861""}\n2025-07-17 17:22:58.752 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][f508cdf3-7d6d-42f3-9fed-2b9b596c4766] received connection request\n2025-07-17 17:22:58.753 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:22:58.771 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f508cdf3-7d6d-42f3-9fed-2b9b596c4766] socks forwarding established\n2025-07-17 17:22:58.799 [info] [command][da9c8287-0981-4480-af32-2975b09df861] Process exited with code 0\n2025-07-17 17:22:58.799 [info] [command][da9c8287-0981-4480-af32-2975b09df861] Socket close event received\n2025-07-17 17:22:58.799 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][f508cdf3-7d6d-42f3-9fed-2b9b596c4766] socks connection closed\n2025-07-17 17:22:58.814 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65470 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:23:58.799 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:23:58.801 [info] [command][747c3590-2e34-444f-b10c-180ec51fd937] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""747c3590-2e34-444f-b10c-180ec51fd937""}\n2025-07-17 17:23:58.802 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][8e4a3f76-d327-4778-a4cb-8d8223f5c286] received connection request\n2025-07-17 17:23:58.802 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:23:58.843 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8e4a3f76-d327-4778-a4cb-8d8223f5c286] socks forwarding established\n2025-07-17 17:23:58.885 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][8e4a3f76-d327-4778-a4cb-8d8223f5c286] socks connection closed\n2025-07-17 17:23:58.885 [info] [command][747c3590-2e34-444f-b10c-180ec51fd937] Process exited with code 0\n2025-07-17 17:23:58.885 [info] [command][747c3590-2e34-444f-b10c-180ec51fd937] Socket close event received\n2025-07-17 17:23:58.916 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65497 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:24:58.886 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:24:58.888 [info] [command][5eb4860e-a8b3-4aa6-aa03-b36904f68cd5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5eb4860e-a8b3-4aa6-aa03-b36904f68cd5""}\n2025-07-17 17:24:58.888 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][df0fdf60-4736-4cc5-8de5-521c516f34fd] received connection request\n2025-07-17 17:24:58.888 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 17:24:58.888 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:24:58.934 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][df0fdf60-4736-4cc5-8de5-521c516f34fd] socks forwarding established\n2025-07-17 17:24:59.042 [info] [command][5eb4860e-a8b3-4aa6-aa03-b36904f68cd5] Process exited with code 0\n2025-07-17 17:24:59.043 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][df0fdf60-4736-4cc5-8de5-521c516f34fd] socks connection closed\n2025-07-17 17:24:59.043 [info] [command][5eb4860e-a8b3-4aa6-aa03-b36904f68cd5] Socket close event received\n2025-07-17 17:24:59.092 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 65531 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:25:59.048 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:25:59.050 [info] [command][dd78c02c-3618-4bff-99ce-dce941707c9c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""dd78c02c-3618-4bff-99ce-dce941707c9c""}\n2025-07-17 17:25:59.051 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c60a7bbc-cad2-4b9f-b1d2-208059b3aefc] received connection request\n2025-07-17 17:25:59.052 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:25:59.068 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c60a7bbc-cad2-4b9f-b1d2-208059b3aefc] socks forwarding established\n2025-07-17 17:25:59.101 [info] [command][dd78c02c-3618-4bff-99ce-dce941707c9c] Process exited with code 0\n2025-07-17 17:25:59.101 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c60a7bbc-cad2-4b9f-b1d2-208059b3aefc] socks connection closed\n2025-07-17 17:25:59.101 [info] [command][dd78c02c-3618-4bff-99ce-dce941707c9c] Socket close event received\n2025-07-17 17:25:59.116 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49212 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:26:59.105 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:26:59.108 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][5bdfedc6-6427-42e7-98e1-258d579c2fc5] received connection request\n2025-07-17 17:26:59.109 [info] [command][a22dcf02-9ec8-48b9-af55-82fa753e8cf6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a22dcf02-9ec8-48b9-af55-82fa753e8cf6""}\n2025-07-17 17:26:59.109 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:26:59.128 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5bdfedc6-6427-42e7-98e1-258d579c2fc5] socks forwarding established\n2025-07-17 17:26:59.155 [info] [command][a22dcf02-9ec8-48b9-af55-82fa753e8cf6] Process exited with code 0\n2025-07-17 17:26:59.155 [info] [command][a22dcf02-9ec8-48b9-af55-82fa753e8cf6] Socket close event received\n2025-07-17 17:26:59.157 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][5bdfedc6-6427-42e7-98e1-258d579c2fc5] socks connection closed\n2025-07-17 17:26:59.172 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49248 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:27:59.158 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:27:59.160 [info] [command][890bd39e-1fcb-40a1-b4e8-260deb8ba819] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""890bd39e-1fcb-40a1-b4e8-260deb8ba819""}\n2025-07-17 17:27:59.160 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][69e06a8c-f432-4771-8b96-3f9d04a261d9] received connection request\n2025-07-17 17:27:59.160 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:27:59.191 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][69e06a8c-f432-4771-8b96-3f9d04a261d9] socks forwarding established\n2025-07-17 17:27:59.222 [info] [command][890bd39e-1fcb-40a1-b4e8-260deb8ba819] Process exited with code 0\n2025-07-17 17:27:59.222 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][69e06a8c-f432-4771-8b96-3f9d04a261d9] socks connection closed\n2025-07-17 17:27:59.222 [info] [command][890bd39e-1fcb-40a1-b4e8-260deb8ba819] Socket close event received\n2025-07-17 17:27:59.238 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49287 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:28:59.228 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:28:59.230 [info] [command][8feac4b1-8265-4914-b006-bb53cbe592d9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8feac4b1-8265-4914-b006-bb53cbe592d9""}\n2025-07-17 17:28:59.231 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][06018833-949a-48f8-93b0-bc41dc30c060] received connection request\n2025-07-17 17:28:59.232 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:28:59.663 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][06018833-949a-48f8-93b0-bc41dc30c060] socks forwarding established\n2025-07-17 17:28:59.697 [info] [command][8feac4b1-8265-4914-b006-bb53cbe592d9] Process exited with code 0\n2025-07-17 17:28:59.698 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][06018833-949a-48f8-93b0-bc41dc30c060] socks connection closed\n2025-07-17 17:28:59.698 [info] [command][8feac4b1-8265-4914-b006-bb53cbe592d9] Socket close event received\n2025-07-17 17:28:59.713 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49314 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:29:59.702 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:29:59.705 [info] [command][8d8aff8f-8767-4d94-a424-d5ce2674d38c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8d8aff8f-8767-4d94-a424-d5ce2674d38c""}\n2025-07-17 17:29:59.706 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7cdb008b-2049-4b52-901a-619a0f56f4a9] received connection request\n2025-07-17 17:29:59.707 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:29:59.796 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7cdb008b-2049-4b52-901a-619a0f56f4a9] socks forwarding established\n2025-07-17 17:29:59.824 [info] [command][8d8aff8f-8767-4d94-a424-d5ce2674d38c] Process exited with code 0\n2025-07-17 17:29:59.825 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7cdb008b-2049-4b52-901a-619a0f56f4a9] socks connection closed\n2025-07-17 17:29:59.825 [info] [command][8d8aff8f-8767-4d94-a424-d5ce2674d38c] Socket close event received\n2025-07-17 17:29:59.839 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49343 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:30:59.832 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:30:59.836 [info] [command][cc97f9e1-d63a-4b52-a3c9-493586a73b8e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""cc97f9e1-d63a-4b52-a3c9-493586a73b8e""}\n2025-07-17 17:30:59.837 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][057bdb84-fe5a-46fb-83df-84464b35f3f0] received connection request\n2025-07-17 17:30:59.838 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:30:59.852 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][057bdb84-fe5a-46fb-83df-84464b35f3f0] socks forwarding established\n2025-07-17 17:30:59.880 [info] [command][cc97f9e1-d63a-4b52-a3c9-493586a73b8e] Process exited with code 0\n2025-07-17 17:30:59.880 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][057bdb84-fe5a-46fb-83df-84464b35f3f0] socks connection closed\n2025-07-17 17:30:59.880 [info] [command][cc97f9e1-d63a-4b52-a3c9-493586a73b8e] Socket close event received\n2025-07-17 17:30:59.895 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49398 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:31:59.889 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:31:59.891 [info] [command][eac53592-0873-46a0-831a-a980b6f4fea7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""eac53592-0873-46a0-831a-a980b6f4fea7""}\n2025-07-17 17:31:59.892 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][fc0c10cf-28aa-42f6-bc94-a8cf304ffb98] received connection request\n2025-07-17 17:31:59.893 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:31:59.908 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fc0c10cf-28aa-42f6-bc94-a8cf304ffb98] socks forwarding established\n2025-07-17 17:31:59.938 [info] [command][eac53592-0873-46a0-831a-a980b6f4fea7] Process exited with code 0\n2025-07-17 17:31:59.938 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fc0c10cf-28aa-42f6-bc94-a8cf304ffb98] socks connection closed\n2025-07-17 17:31:59.939 [info] [command][eac53592-0873-46a0-831a-a980b6f4fea7] Socket close event received\n2025-07-17 17:31:59.954 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49430 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:32:59.939 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:32:59.942 [info] [command][f3a669bb-a93a-451c-b242-6da36bbb2ac5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f3a669bb-a93a-451c-b242-6da36bbb2ac5""}\n2025-07-17 17:32:59.942 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][983da5fd-19fd-45cf-9316-5b775d4d5550] received connection request\n2025-07-17 17:32:59.943 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:32:59.960 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][983da5fd-19fd-45cf-9316-5b775d4d5550] socks forwarding established\n2025-07-17 17:32:59.991 [info] [command][f3a669bb-a93a-451c-b242-6da36bbb2ac5] Process exited with code 0\n2025-07-17 17:32:59.992 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][983da5fd-19fd-45cf-9316-5b775d4d5550] socks connection closed\n2025-07-17 17:32:59.992 [info] [command][f3a669bb-a93a-451c-b242-6da36bbb2ac5] Socket close event received\n2025-07-17 17:33:00.007 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49469 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:33:59.996 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:33:59.998 [info] [command][ec664004-2464-47f9-93f9-f385a37c343a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ec664004-2464-47f9-93f9-f385a37c343a""}\n2025-07-17 17:33:59.998 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][0f3e7db8-062e-4194-a2ae-a7e38a713fe3] received connection request\n2025-07-17 17:33:59.999 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:34:00.014 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0f3e7db8-062e-4194-a2ae-a7e38a713fe3] socks forwarding established\n2025-07-17 17:34:00.043 [info] [command][ec664004-2464-47f9-93f9-f385a37c343a] Process exited with code 0\n2025-07-17 17:34:00.044 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][0f3e7db8-062e-4194-a2ae-a7e38a713fe3] socks connection closed\n2025-07-17 17:34:00.044 [info] [command][ec664004-2464-47f9-93f9-f385a37c343a] Socket close event received\n2025-07-17 17:34:00.059 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49494 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:35:00.050 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:35:00.051 [info] [command][c48cbea0-11db-4818-8ad1-4f0c562b7ba5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c48cbea0-11db-4818-8ad1-4f0c562b7ba5""}\n2025-07-17 17:35:00.053 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][48a44e25-604d-49d4-bce2-208c56312e21] received connection request\n2025-07-17 17:35:00.053 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:35:00.069 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][48a44e25-604d-49d4-bce2-208c56312e21] socks forwarding established\n2025-07-17 17:35:00.097 [info] [command][c48cbea0-11db-4818-8ad1-4f0c562b7ba5] Process exited with code 0\n2025-07-17 17:35:00.097 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][48a44e25-604d-49d4-bce2-208c56312e21] socks connection closed\n2025-07-17 17:35:00.097 [info] [command][c48cbea0-11db-4818-8ad1-4f0c562b7ba5] Socket close event received\n2025-07-17 17:35:00.111 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49521 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:36:00.099 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:36:00.102 [info] [command][d165250d-e21c-4531-9f9e-835d7f859432] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""d165250d-e21c-4531-9f9e-835d7f859432""}\n2025-07-17 17:36:00.102 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][41cb6b34-e731-47b1-865f-5e186cf32ce4] received connection request\n2025-07-17 17:36:00.103 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:36:00.133 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][41cb6b34-e731-47b1-865f-5e186cf32ce4] socks forwarding established\n2025-07-17 17:36:00.165 [info] [command][d165250d-e21c-4531-9f9e-835d7f859432] Process exited with code 0\n2025-07-17 17:36:00.165 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][41cb6b34-e731-47b1-865f-5e186cf32ce4] socks connection closed\n2025-07-17 17:36:00.166 [info] [command][d165250d-e21c-4531-9f9e-835d7f859432] Socket close event received\n2025-07-17 17:36:00.182 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49581 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:37:00.171 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:37:00.173 [info] [command][bae478f4-cf6d-46af-b127-ad681fde8892] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""bae478f4-cf6d-46af-b127-ad681fde8892""}\n2025-07-17 17:37:00.174 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3f0a8a42-0e2d-4d63-a252-367f90e7260a] received connection request\n2025-07-17 17:37:00.175 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:37:00.191 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3f0a8a42-0e2d-4d63-a252-367f90e7260a] socks forwarding established\n2025-07-17 17:37:00.224 [info] [command][bae478f4-cf6d-46af-b127-ad681fde8892] Process exited with code 0\n2025-07-17 17:37:00.224 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3f0a8a42-0e2d-4d63-a252-367f90e7260a] socks connection closed\n2025-07-17 17:37:00.224 [info] [command][bae478f4-cf6d-46af-b127-ad681fde8892] Socket close event received\n2025-07-17 17:37:00.240 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49609 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:38:00.229 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:38:00.231 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d5dca474-1418-4ee7-be6e-58edea9cd318] received connection request\n2025-07-17 17:38:00.232 [info] [command][861f0efb-83b6-4e91-9046-2e7a9b446e30] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""861f0efb-83b6-4e91-9046-2e7a9b446e30""}\n2025-07-17 17:38:00.232 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:38:00.248 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d5dca474-1418-4ee7-be6e-58edea9cd318] socks forwarding established\n2025-07-17 17:38:00.280 [info] [command][861f0efb-83b6-4e91-9046-2e7a9b446e30] Process exited with code 0\n2025-07-17 17:38:00.281 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d5dca474-1418-4ee7-be6e-58edea9cd318] socks connection closed\n2025-07-17 17:38:00.281 [info] [command][861f0efb-83b6-4e91-9046-2e7a9b446e30] Socket close event received\n2025-07-17 17:38:00.300 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49648 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:39:00.280 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:39:00.284 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ba15faee-be2a-408a-abe0-ce9639a32740] received connection request\n2025-07-17 17:39:00.284 [info] [command][923de903-6263-4115-9f94-0cef7efd5dbc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""923de903-6263-4115-9f94-0cef7efd5dbc""}\n2025-07-17 17:39:00.284 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:39:00.302 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ba15faee-be2a-408a-abe0-ce9639a32740] socks forwarding established\n2025-07-17 17:39:00.332 [info] [command][923de903-6263-4115-9f94-0cef7efd5dbc] Process exited with code 0\n2025-07-17 17:39:00.333 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ba15faee-be2a-408a-abe0-ce9639a32740] socks connection closed\n2025-07-17 17:39:00.333 [info] [command][923de903-6263-4115-9f94-0cef7efd5dbc] Socket close event received\n2025-07-17 17:39:00.349 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49672 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:40:00.337 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:40:00.339 [info] [command][6e413b4b-987d-4ba3-9019-975c62da7886] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6e413b4b-987d-4ba3-9019-975c62da7886""}\n2025-07-17 17:40:00.339 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6e441bfb-69ef-4529-b208-70f4c59cb36a] received connection request\n2025-07-17 17:40:00.339 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:40:00.353 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6e441bfb-69ef-4529-b208-70f4c59cb36a] socks forwarding established\n2025-07-17 17:40:00.381 [info] [command][6e413b4b-987d-4ba3-9019-975c62da7886] Process exited with code 0\n2025-07-17 17:40:00.382 [info] [command][6e413b4b-987d-4ba3-9019-975c62da7886] Socket close event received\n2025-07-17 17:40:00.382 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6e441bfb-69ef-4529-b208-70f4c59cb36a] socks connection closed\n2025-07-17 17:40:00.395 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49700 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:41:00.387 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:41:00.389 [info] [command][8eade286-b44a-416a-9ddc-fef6f7d93943] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8eade286-b44a-416a-9ddc-fef6f7d93943""}\n2025-07-17 17:41:00.389 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ded75eb7-e9ab-475e-9647-e70782cbe541] received connection request\n2025-07-17 17:41:00.390 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:41:00.407 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ded75eb7-e9ab-475e-9647-e70782cbe541] socks forwarding established\n2025-07-17 17:41:00.449 [info] [command][8eade286-b44a-416a-9ddc-fef6f7d93943] Process exited with code 0\n2025-07-17 17:41:00.449 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ded75eb7-e9ab-475e-9647-e70782cbe541] socks connection closed\n2025-07-17 17:41:00.449 [info] [command][8eade286-b44a-416a-9ddc-fef6f7d93943] Socket close event received\n2025-07-17 17:41:00.466 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49756 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:42:00.451 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:42:00.453 [info] [command][18cf521b-f52d-4141-b92c-548f7cd26b76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""18cf521b-f52d-4141-b92c-548f7cd26b76""}\n2025-07-17 17:42:00.453 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][d14eaafb-fcd7-4bf5-b9ca-236ed22300ef] received connection request\n2025-07-17 17:42:00.454 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:42:00.474 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d14eaafb-fcd7-4bf5-b9ca-236ed22300ef] socks forwarding established\n2025-07-17 17:42:00.500 [info] [command][18cf521b-f52d-4141-b92c-548f7cd26b76] Process exited with code 0\n2025-07-17 17:42:00.500 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][d14eaafb-fcd7-4bf5-b9ca-236ed22300ef] socks connection closed\n2025-07-17 17:42:00.500 [info] [command][18cf521b-f52d-4141-b92c-548f7cd26b76] Socket close event received\n2025-07-17 17:42:00.515 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49778 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:43:00.506 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:43:00.507 [info] [command][ade0c52a-f2d0-42b6-9713-a663bd942779] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ade0c52a-f2d0-42b6-9713-a663bd942779""}\n2025-07-17 17:43:00.507 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6492d796-0358-43a3-a62c-14eb59ce4986] received connection request\n2025-07-17 17:43:00.507 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 17:43:00.508 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:43:00.523 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6492d796-0358-43a3-a62c-14eb59ce4986] socks forwarding established\n2025-07-17 17:43:00.558 [info] [command][ade0c52a-f2d0-42b6-9713-a663bd942779] Process exited with code 0\n2025-07-17 17:43:00.559 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6492d796-0358-43a3-a62c-14eb59ce4986] socks connection closed\n2025-07-17 17:43:00.559 [info] [command][ade0c52a-f2d0-42b6-9713-a663bd942779] Socket close event received\n2025-07-17 17:43:00.577 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49820 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:44:00.559 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:44:00.562 [info] [command][7fc01477-6d2d-4f00-86ca-f4aad9ffb8f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""7fc01477-6d2d-4f00-86ca-f4aad9ffb8f9""}\n2025-07-17 17:44:00.563 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][105fec90-f6df-4246-a438-ef830f6d33a6] received connection request\n2025-07-17 17:44:00.563 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:44:00.687 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][105fec90-f6df-4246-a438-ef830f6d33a6] socks forwarding established\n2025-07-17 17:44:00.722 [info] [command][7fc01477-6d2d-4f00-86ca-f4aad9ffb8f9] Process exited with code 0\n2025-07-17 17:44:00.723 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][105fec90-f6df-4246-a438-ef830f6d33a6] socks connection closed\n2025-07-17 17:44:00.723 [info] [command][7fc01477-6d2d-4f00-86ca-f4aad9ffb8f9] Socket close event received\n2025-07-17 17:44:00.742 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49842 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:45:00.725 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:45:00.728 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][2ccbc814-ae96-4f89-8b42-13d21afaa80f] received connection request\n2025-07-17 17:45:00.729 [info] [command][4e3269d5-a2c7-4672-a73f-bee975053987] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4e3269d5-a2c7-4672-a73f-bee975053987""}\n2025-07-17 17:45:00.729 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:45:00.748 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2ccbc814-ae96-4f89-8b42-13d21afaa80f] socks forwarding established\n2025-07-17 17:45:00.776 [info] [command][4e3269d5-a2c7-4672-a73f-bee975053987] Process exited with code 0\n2025-07-17 17:45:00.776 [info] [command][4e3269d5-a2c7-4672-a73f-bee975053987] Socket close event received\n2025-07-17 17:45:00.777 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2ccbc814-ae96-4f89-8b42-13d21afaa80f] socks connection closed\n2025-07-17 17:45:00.792 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49872 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:46:00.782 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:46:00.785 [info] [command][8fdc9636-f650-4bc9-aedc-8bc8e9c86e6d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8fdc9636-f650-4bc9-aedc-8bc8e9c86e6d""}\n2025-07-17 17:46:00.786 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][59bbad22-6a6c-4776-b6ea-0782d2dd81d2] received connection request\n2025-07-17 17:46:00.786 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:46:00.802 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][59bbad22-6a6c-4776-b6ea-0782d2dd81d2] socks forwarding established\n2025-07-17 17:46:00.834 [info] [command][8fdc9636-f650-4bc9-aedc-8bc8e9c86e6d] Process exited with code 0\n2025-07-17 17:46:00.834 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][59bbad22-6a6c-4776-b6ea-0782d2dd81d2] socks connection closed\n2025-07-17 17:46:00.834 [info] [command][8fdc9636-f650-4bc9-aedc-8bc8e9c86e6d] Socket close event received\n2025-07-17 17:46:00.849 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49924 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:47:00.838 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:47:00.839 [info] [command][62f8277b-c6d8-4ec7-998d-199a997fb97b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""62f8277b-c6d8-4ec7-998d-199a997fb97b""}\n2025-07-17 17:47:00.840 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][fc05c099-1553-47fd-8668-5e15ab8caa0e] received connection request\n2025-07-17 17:47:00.842 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\n\n2025-07-17 17:47:00.842 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:47:00.857 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fc05c099-1553-47fd-8668-5e15ab8caa0e] socks forwarding established\n2025-07-17 17:47:00.887 [info] [command][62f8277b-c6d8-4ec7-998d-199a997fb97b] Process exited with code 0\n2025-07-17 17:47:00.887 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fc05c099-1553-47fd-8668-5e15ab8caa0e] socks connection closed\n2025-07-17 17:47:00.887 [info] [command][62f8277b-c6d8-4ec7-998d-199a997fb97b] Socket close event received\n2025-07-17 17:47:00.902 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49946 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:48:00.897 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:48:00.899 [info] [command][2a65f808-95b7-4a9e-9c6d-44112b767dba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2a65f808-95b7-4a9e-9c6d-44112b767dba""}\n2025-07-17 17:48:00.900 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][33173701-fe9e-431d-ad0c-53cc4ec433b2] received connection request\n2025-07-17 17:48:00.900 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:48:00.916 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][33173701-fe9e-431d-ad0c-53cc4ec433b2] socks forwarding established\n2025-07-17 17:48:00.944 [info] [command][2a65f808-95b7-4a9e-9c6d-44112b767dba] Process exited with code 0\n2025-07-17 17:48:00.944 [info] [command][2a65f808-95b7-4a9e-9c6d-44112b767dba] Socket close event received\n2025-07-17 17:48:00.944 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][33173701-fe9e-431d-ad0c-53cc4ec433b2] socks connection closed\n2025-07-17 17:48:00.960 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 49986 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:49:00.946 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:49:00.948 [info] [command][c565d0bb-55c3-4f5c-b0e9-48a6a8125b18] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c565d0bb-55c3-4f5c-b0e9-48a6a8125b18""}\n2025-07-17 17:49:00.949 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][14fa8310-7a95-43b2-92f7-ccb7ee03bdfe] received connection request\n2025-07-17 17:49:00.950 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:49:00.964 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][14fa8310-7a95-43b2-92f7-ccb7ee03bdfe] socks forwarding established\n2025-07-17 17:49:00.992 [info] [command][c565d0bb-55c3-4f5c-b0e9-48a6a8125b18] Process exited with code 0\n2025-07-17 17:49:00.994 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][14fa8310-7a95-43b2-92f7-ccb7ee03bdfe] socks connection closed\n2025-07-17 17:49:00.994 [info] [command][c565d0bb-55c3-4f5c-b0e9-48a6a8125b18] Socket close event received\n2025-07-17 17:49:01.011 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50010 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:50:01.003 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:50:01.006 [info] [command][ec030634-9ba7-4346-9b9a-400e35d9a689] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""ec030634-9ba7-4346-9b9a-400e35d9a689""}\n2025-07-17 17:50:01.007 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][293db168-ae05-4b6e-a400-b223fc477759] received connection request\n2025-07-17 17:50:01.008 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:50:01.051 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][293db168-ae05-4b6e-a400-b223fc477759] socks forwarding established\n2025-07-17 17:50:01.097 [info] [command][ec030634-9ba7-4346-9b9a-400e35d9a689] Process exited with code 0\n2025-07-17 17:50:01.097 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][293db168-ae05-4b6e-a400-b223fc477759] socks connection closed\n2025-07-17 17:50:01.098 [info] [command][ec030634-9ba7-4346-9b9a-400e35d9a689] Socket close event received\n2025-07-17 17:50:01.139 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50035 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:51:01.107 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:51:01.109 [info] [command][6eee6711-6449-41aa-82a8-9fdc646eb600] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""6eee6711-6449-41aa-82a8-9fdc646eb600""}\n2025-07-17 17:51:01.109 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][636f81d6-06b2-466e-b958-cbdb5a93b51c] received connection request\n2025-07-17 17:51:01.110 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:51:01.130 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][636f81d6-06b2-466e-b958-cbdb5a93b51c] socks forwarding established\n2025-07-17 17:51:01.159 [info] [command][6eee6711-6449-41aa-82a8-9fdc646eb600] Process exited with code 0\n2025-07-17 17:51:01.160 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][636f81d6-06b2-466e-b958-cbdb5a93b51c] socks connection closed\n2025-07-17 17:51:01.160 [info] [command][6eee6711-6449-41aa-82a8-9fdc646eb600] Socket close event received\n2025-07-17 17:51:01.181 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50100 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:52:01.169 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:52:01.171 [info] [command][c316b659-933f-45f4-8b22-63215f672fe0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c316b659-933f-45f4-8b22-63215f672fe0""}\n2025-07-17 17:52:01.172 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][4aeda4f8-fe7c-463e-96bb-b347ce0e2fdb] received connection request\n2025-07-17 17:52:01.172 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:52:01.189 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4aeda4f8-fe7c-463e-96bb-b347ce0e2fdb] socks forwarding established\n2025-07-17 17:52:01.216 [info] [command][c316b659-933f-45f4-8b22-63215f672fe0] Process exited with code 0\n2025-07-17 17:52:01.217 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][4aeda4f8-fe7c-463e-96bb-b347ce0e2fdb] socks connection closed\n2025-07-17 17:52:01.217 [info] [command][c316b659-933f-45f4-8b22-63215f672fe0] Socket close event received\n2025-07-17 17:52:01.235 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50131 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:53:01.219 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:53:01.221 [info] [command][41de7675-2655-4e7e-b958-85b94319c14b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""41de7675-2655-4e7e-b958-85b94319c14b""}\n2025-07-17 17:53:01.222 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3a187870-d136-449d-84d6-d80986e4f533] received connection request\n2025-07-17 17:53:01.222 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:53:01.240 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3a187870-d136-449d-84d6-d80986e4f533] socks forwarding established\n2025-07-17 17:53:01.268 [info] [command][41de7675-2655-4e7e-b958-85b94319c14b] Process exited with code 0\n2025-07-17 17:53:01.269 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3a187870-d136-449d-84d6-d80986e4f533] socks connection closed\n2025-07-17 17:53:01.269 [info] [command][41de7675-2655-4e7e-b958-85b94319c14b] Socket close event received\n2025-07-17 17:53:01.285 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50153 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:54:01.278 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:54:01.281 [info] [command][0827ca85-a4f8-401a-844d-7deb49307fa8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0827ca85-a4f8-401a-844d-7deb49307fa8""}\n2025-07-17 17:54:01.281 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ba1c4eab-7b68-4725-a0c0-63106159b1dc] received connection request\n2025-07-17 17:54:01.282 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:54:01.298 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ba1c4eab-7b68-4725-a0c0-63106159b1dc] socks forwarding established\n2025-07-17 17:54:01.325 [info] [command][0827ca85-a4f8-401a-844d-7deb49307fa8] Process exited with code 0\n2025-07-17 17:54:01.325 [info] [command][0827ca85-a4f8-401a-844d-7deb49307fa8] Socket close event received\n2025-07-17 17:54:01.326 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ba1c4eab-7b68-4725-a0c0-63106159b1dc] socks connection closed\n2025-07-17 17:54:01.346 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50191 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:55:01.329 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:55:01.331 [info] [command][938a3535-1fe9-406d-969e-dcd288a6d7c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""938a3535-1fe9-406d-969e-dcd288a6d7c8""}\n2025-07-17 17:55:01.331 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][07bd1476-519d-47f8-a427-dd4b32158b73] received connection request\n2025-07-17 17:55:01.332 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:55:01.353 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][07bd1476-519d-47f8-a427-dd4b32158b73] socks forwarding established\n2025-07-17 17:55:01.379 [info] [command][938a3535-1fe9-406d-969e-dcd288a6d7c8] Process exited with code 0\n2025-07-17 17:55:01.379 [info] [command][938a3535-1fe9-406d-969e-dcd288a6d7c8] Socket close event received\n2025-07-17 17:55:01.380 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][07bd1476-519d-47f8-a427-dd4b32158b73] socks connection closed\n2025-07-17 17:55:01.395 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50218 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:56:01.390 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:56:01.392 [info] [command][0af785f9-059f-40da-a89e-083c08bec325] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0af785f9-059f-40da-a89e-083c08bec325""}\n2025-07-17 17:56:01.392 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6fa88e8b-659d-4515-a106-35eaf4ecd4eb] received connection request\n2025-07-17 17:56:01.393 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:56:01.411 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6fa88e8b-659d-4515-a106-35eaf4ecd4eb] socks forwarding established\n2025-07-17 17:56:01.439 [info] [command][0af785f9-059f-40da-a89e-083c08bec325] Process exited with code 0\n2025-07-17 17:56:01.440 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6fa88e8b-659d-4515-a106-35eaf4ecd4eb] socks connection closed\n2025-07-17 17:56:01.440 [info] [command][0af785f9-059f-40da-a89e-083c08bec325] Socket close event received\n2025-07-17 17:56:01.455 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50252 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:57:01.450 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:57:01.452 [info] [command][2a27b1b3-3653-4d88-a7d5-13be841b1a3a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2a27b1b3-3653-4d88-a7d5-13be841b1a3a""}\n2025-07-17 17:57:01.453 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c613d112-cd6a-490e-a9d4-4d74db570cc8] received connection request\n2025-07-17 17:57:01.454 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:57:01.471 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c613d112-cd6a-490e-a9d4-4d74db570cc8] socks forwarding established\n2025-07-17 17:57:01.502 [info] [command][2a27b1b3-3653-4d88-a7d5-13be841b1a3a] Process exited with code 0\n2025-07-17 17:57:01.502 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c613d112-cd6a-490e-a9d4-4d74db570cc8] socks connection closed\n2025-07-17 17:57:01.502 [info] [command][2a27b1b3-3653-4d88-a7d5-13be841b1a3a] Socket close event received\n2025-07-17 17:57:01.518 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50296 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:58:01.511 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:58:01.512 [info] [command][9bba2c02-0376-4da7-9395-0c92f3adf346] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9bba2c02-0376-4da7-9395-0c92f3adf346""}\n2025-07-17 17:58:01.513 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][cce32b78-908f-4e63-966f-d7f8582bacac] received connection request\n2025-07-17 17:58:01.514 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:58:01.535 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cce32b78-908f-4e63-966f-d7f8582bacac] socks forwarding established\n2025-07-17 17:58:01.585 [info] [command][9bba2c02-0376-4da7-9395-0c92f3adf346] Process exited with code 0\n2025-07-17 17:58:01.586 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cce32b78-908f-4e63-966f-d7f8582bacac] socks connection closed\n2025-07-17 17:58:01.586 [info] [command][9bba2c02-0376-4da7-9395-0c92f3adf346] Socket close event received\n2025-07-17 17:58:01.622 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50321 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 17:59:01.589 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 17:59:01.592 [info] [command][fcff64f0-3a22-4101-a086-4a610532597e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""fcff64f0-3a22-4101-a086-4a610532597e""}\n2025-07-17 17:59:01.593 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][be0b090f-00ba-4ede-9e54-a14f5e02d6e8] received connection request\n2025-07-17 17:59:01.594 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 17:59:01.609 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][be0b090f-00ba-4ede-9e54-a14f5e02d6e8] socks forwarding established\n2025-07-17 17:59:01.638 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][be0b090f-00ba-4ede-9e54-a14f5e02d6e8] socks connection closed\n2025-07-17 17:59:01.638 [info] [command][fcff64f0-3a22-4101-a086-4a610532597e] Process exited with code 0\n2025-07-17 17:59:01.638 [info] [command][fcff64f0-3a22-4101-a086-4a610532597e] Socket close event received\n2025-07-17 17:59:01.654 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50358 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:00:01.649 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:00:01.652 [info] [command][561a0324-5b03-4e1c-98c0-1ebb0cae6be8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""561a0324-5b03-4e1c-98c0-1ebb0cae6be8""}\n2025-07-17 18:00:01.652 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ab2d4d50-c091-476d-8129-532181ff157d] received connection request\n2025-07-17 18:00:01.653 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:00:01.668 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ab2d4d50-c091-476d-8129-532181ff157d] socks forwarding established\n2025-07-17 18:00:01.701 [info] [command][561a0324-5b03-4e1c-98c0-1ebb0cae6be8] Process exited with code 0\n2025-07-17 18:00:01.701 [info] [command][561a0324-5b03-4e1c-98c0-1ebb0cae6be8] Socket close event received\n2025-07-17 18:00:01.702 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ab2d4d50-c091-476d-8129-532181ff157d] socks connection closed\n2025-07-17 18:00:01.717 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50380 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:01:01.707 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:01:01.708 [info] [command][790715ec-73c2-4d7b-93dc-052c8224ee53] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""790715ec-73c2-4d7b-93dc-052c8224ee53""}\n2025-07-17 18:01:01.709 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][2dd691a2-a148-43d3-a170-7a9268853244] received connection request\n2025-07-17 18:01:01.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:01:01.725 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2dd691a2-a148-43d3-a170-7a9268853244] socks forwarding established\n2025-07-17 18:01:01.752 [info] [command][790715ec-73c2-4d7b-93dc-052c8224ee53] Process exited with code 0\n2025-07-17 18:01:01.752 [info] [command][790715ec-73c2-4d7b-93dc-052c8224ee53] Socket close event received\n2025-07-17 18:01:01.754 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][2dd691a2-a148-43d3-a170-7a9268853244] socks connection closed\n2025-07-17 18:01:01.774 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50407 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:02:01.754 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:02:01.756 [info] [command][2867b996-4da2-4b1d-958e-32b8f30128f3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""2867b996-4da2-4b1d-958e-32b8f30128f3""}\n2025-07-17 18:02:01.757 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][c6c56316-fef7-4941-8b51-d5d5273ddae2] received connection request\n2025-07-17 18:02:01.758 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:02:01.773 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c6c56316-fef7-4941-8b51-d5d5273ddae2] socks forwarding established\n2025-07-17 18:02:01.802 [info] [command][2867b996-4da2-4b1d-958e-32b8f30128f3] Process exited with code 0\n2025-07-17 18:02:01.803 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][c6c56316-fef7-4941-8b51-d5d5273ddae2] socks connection closed\n2025-07-17 18:02:01.803 [info] [command][2867b996-4da2-4b1d-958e-32b8f30128f3] Socket close event received\n2025-07-17 18:02:01.818 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50460 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:03:01.813 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:03:01.814 [info] [command][0234cc1d-1b75-40c0-ae96-1809bf8db895] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""0234cc1d-1b75-40c0-ae96-1809bf8db895""}\n2025-07-17 18:03:01.816 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][451ede0d-312d-46ad-90a4-b077a15516a1] received connection request\n2025-07-17 18:03:01.817 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:03:01.832 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][451ede0d-312d-46ad-90a4-b077a15516a1] socks forwarding established\n2025-07-17 18:03:01.855 [info] [command][0234cc1d-1b75-40c0-ae96-1809bf8db895] Process exited with code 0\n2025-07-17 18:03:01.855 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][451ede0d-312d-46ad-90a4-b077a15516a1] socks connection closed\n2025-07-17 18:03:01.856 [info] [command][0234cc1d-1b75-40c0-ae96-1809bf8db895] Socket close event received\n2025-07-17 18:03:01.872 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50481 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:04:01.857 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:04:01.859 [info] [command][33d78583-3c7f-45c5-8cd6-381032bba4f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""33d78583-3c7f-45c5-8cd6-381032bba4f6""}\n2025-07-17 18:04:01.859 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][3f903532-7704-4ee4-ad04-b3520da79716] received connection request\n2025-07-17 18:04:01.860 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:04:01.876 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3f903532-7704-4ee4-ad04-b3520da79716] socks forwarding established\n2025-07-17 18:04:01.900 [info] [command][33d78583-3c7f-45c5-8cd6-381032bba4f6] Process exited with code 0\n2025-07-17 18:04:01.901 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][3f903532-7704-4ee4-ad04-b3520da79716] socks connection closed\n2025-07-17 18:04:01.901 [info] [command][33d78583-3c7f-45c5-8cd6-381032bba4f6] Socket close event received\n2025-07-17 18:04:01.916 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50527 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:05:01.909 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:05:01.910 [info] [command][be27e0e2-ae71-4eaf-bbd1-c236c59f1f75] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""be27e0e2-ae71-4eaf-bbd1-c236c59f1f75""}\n2025-07-17 18:05:01.911 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][cd2f0942-27fd-4b6c-a9f9-5a96397c756b] received connection request\n2025-07-17 18:05:01.912 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:05:01.927 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cd2f0942-27fd-4b6c-a9f9-5a96397c756b] socks forwarding established\n2025-07-17 18:05:01.951 [info] [command][be27e0e2-ae71-4eaf-bbd1-c236c59f1f75] Process exited with code 0\n2025-07-17 18:05:01.952 [info] [command][be27e0e2-ae71-4eaf-bbd1-c236c59f1f75] Socket close event received\n2025-07-17 18:05:01.952 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][cd2f0942-27fd-4b6c-a9f9-5a96397c756b] socks connection closed\n2025-07-17 18:05:01.968 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50550 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:06:01.962 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:06:01.965 [info] [command][1d33ed9c-102b-4934-8c40-24fd4f25f1ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""1d33ed9c-102b-4934-8c40-24fd4f25f1ea""}\n2025-07-17 18:06:01.965 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][66efa302-2aa0-4f88-ba9c-3fd8dba8358f] received connection request\n2025-07-17 18:06:01.966 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:06:01.983 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][66efa302-2aa0-4f88-ba9c-3fd8dba8358f] socks forwarding established\n2025-07-17 18:06:02.023 [info] [command][1d33ed9c-102b-4934-8c40-24fd4f25f1ea] Process exited with code 0\n2025-07-17 18:06:02.023 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][66efa302-2aa0-4f88-ba9c-3fd8dba8358f] socks connection closed\n2025-07-17 18:06:02.023 [info] [command][1d33ed9c-102b-4934-8c40-24fd4f25f1ea] Socket close event received\n2025-07-17 18:06:02.039 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50578 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:07:02.033 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:07:02.034 [info] [command][30e8a1b1-5e3f-4e91-906b-ae374bd5251d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""30e8a1b1-5e3f-4e91-906b-ae374bd5251d""}\n2025-07-17 18:07:02.035 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][7e08945a-6666-4977-92b6-d2c6ec785912] received connection request\n2025-07-17 18:07:02.036 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:07:02.053 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7e08945a-6666-4977-92b6-d2c6ec785912] socks forwarding established\n2025-07-17 18:07:02.084 [info] [command][30e8a1b1-5e3f-4e91-906b-ae374bd5251d] Process exited with code 0\n2025-07-17 18:07:02.085 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][7e08945a-6666-4977-92b6-d2c6ec785912] socks connection closed\n2025-07-17 18:07:02.085 [info] [command][30e8a1b1-5e3f-4e91-906b-ae374bd5251d] Socket close event received\n2025-07-17 18:07:02.101 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50628 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:08:02.095 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:08:02.097 [info] [command][9c8deadf-fd3f-4b2e-acdb-1a6f745d59d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9c8deadf-fd3f-4b2e-acdb-1a6f745d59d4""}\n2025-07-17 18:08:02.098 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][69b16cf8-c76f-43c0-b404-ac032dc63124] received connection request\n2025-07-17 18:08:02.098 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:08:02.116 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][69b16cf8-c76f-43c0-b404-ac032dc63124] socks forwarding established\n2025-07-17 18:08:02.145 [info] [command][9c8deadf-fd3f-4b2e-acdb-1a6f745d59d4] Process exited with code 0\n2025-07-17 18:08:02.146 [info] [command][9c8deadf-fd3f-4b2e-acdb-1a6f745d59d4] Socket close event received\n2025-07-17 18:08:02.146 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][69b16cf8-c76f-43c0-b404-ac032dc63124] socks connection closed\n2025-07-17 18:08:02.163 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50655 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:09:02.151 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:09:02.152 [info] [command][f6a5a2c1-7aa0-47e4-881e-d986855a01f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""f6a5a2c1-7aa0-47e4-881e-d986855a01f4""}\n2025-07-17 18:09:02.153 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][fe0a05ea-08fe-4887-a8da-1f8b5de576cb] received connection request\n2025-07-17 18:09:02.153 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:09:02.170 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fe0a05ea-08fe-4887-a8da-1f8b5de576cb] socks forwarding established\n2025-07-17 18:09:02.198 [info] [command][f6a5a2c1-7aa0-47e4-881e-d986855a01f4] Process exited with code 0\n2025-07-17 18:09:02.198 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fe0a05ea-08fe-4887-a8da-1f8b5de576cb] socks connection closed\n2025-07-17 18:09:02.198 [info] [command][f6a5a2c1-7aa0-47e4-881e-d986855a01f4] Socket close event received\n2025-07-17 18:09:02.214 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50690 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:10:02.206 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:10:02.209 [info] [command][337acc07-765a-4827-a997-7c6c01ca7ed5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""337acc07-765a-4827-a997-7c6c01ca7ed5""}\n2025-07-17 18:10:02.210 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][9e6915d5-eb42-46e2-bbda-846fd0a71a2e] received connection request\n2025-07-17 18:10:02.210 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:10:02.240 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9e6915d5-eb42-46e2-bbda-846fd0a71a2e] socks forwarding established\n2025-07-17 18:10:02.285 [info] [command][337acc07-765a-4827-a997-7c6c01ca7ed5] Process exited with code 0\n2025-07-17 18:10:02.286 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][9e6915d5-eb42-46e2-bbda-846fd0a71a2e] socks connection closed\n2025-07-17 18:10:02.286 [info] [command][337acc07-765a-4827-a997-7c6c01ca7ed5] Socket close event received\n2025-07-17 18:10:02.310 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50711 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:11:02.291 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:11:02.294 [info] [command][118cc0db-4adc-4e77-9e87-90309509d848] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""118cc0db-4adc-4e77-9e87-90309509d848""}\n2025-07-17 18:11:02.294 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][6bf07c14-2443-48ea-827a-5522633c29c4] received connection request\n2025-07-17 18:11:02.296 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:11:02.348 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6bf07c14-2443-48ea-827a-5522633c29c4] socks forwarding established\n2025-07-17 18:11:02.402 [info] [command][118cc0db-4adc-4e77-9e87-90309509d848] Process exited with code 0\n2025-07-17 18:11:02.402 [info] [command][118cc0db-4adc-4e77-9e87-90309509d848] Socket close event received\n2025-07-17 18:11:02.421 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][6bf07c14-2443-48ea-827a-5522633c29c4] socks connection closed\n2025-07-17 18:11:02.455 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50736 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:12:02.413 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:12:02.415 [info] [command][8ae936d2-20ba-496b-a91d-46870d6deb8b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8ae936d2-20ba-496b-a91d-46870d6deb8b""}\n2025-07-17 18:12:02.416 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][36f09ac7-fb36-4303-9be4-65b50b6e92d7] received connection request\n2025-07-17 18:12:02.416 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:12:02.480 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][36f09ac7-fb36-4303-9be4-65b50b6e92d7] socks forwarding established\n2025-07-17 18:12:02.555 [info] [command][8ae936d2-20ba-496b-a91d-46870d6deb8b] Process exited with code 0\n2025-07-17 18:12:02.556 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][36f09ac7-fb36-4303-9be4-65b50b6e92d7] socks connection closed\n2025-07-17 18:12:02.556 [info] [command][8ae936d2-20ba-496b-a91d-46870d6deb8b] Socket close event received\n2025-07-17 18:12:02.590 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50791 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:13:02.562 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:13:02.565 [info] [command][5a15fda9-2c87-46af-8b1c-99c63ffbb941] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""5a15fda9-2c87-46af-8b1c-99c63ffbb941""}\n2025-07-17 18:13:02.566 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][fdf904d1-579f-4bf3-9f92-e2d80f046e81] received connection request\n2025-07-17 18:13:02.567 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:13:02.619 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fdf904d1-579f-4bf3-9f92-e2d80f046e81] socks forwarding established\n2025-07-17 18:13:02.683 [info] [command][5a15fda9-2c87-46af-8b1c-99c63ffbb941] Process exited with code 0\n2025-07-17 18:13:02.684 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][fdf904d1-579f-4bf3-9f92-e2d80f046e81] socks connection closed\n2025-07-17 18:13:02.684 [info] [command][5a15fda9-2c87-46af-8b1c-99c63ffbb941] Socket close event received\n2025-07-17 18:13:02.739 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50818 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:14:02.695 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:14:02.697 [info] [command][9fdef4f7-e0b2-4d67-b839-01cc53788e5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""9fdef4f7-e0b2-4d67-b839-01cc53788e5b""}\n2025-07-17 18:14:02.698 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][168293c3-f79f-406b-b726-f73281bccd7b] received connection request\n2025-07-17 18:14:02.699 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:14:02.733 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][168293c3-f79f-406b-b726-f73281bccd7b] socks forwarding established\n2025-07-17 18:14:02.782 [info] [command][9fdef4f7-e0b2-4d67-b839-01cc53788e5b] Process exited with code 0\n2025-07-17 18:14:02.783 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][168293c3-f79f-406b-b726-f73281bccd7b] socks connection closed\n2025-07-17 18:14:02.783 [info] [command][9fdef4f7-e0b2-4d67-b839-01cc53788e5b] Socket close event received\n2025-07-17 18:14:02.810 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50875 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:15:02.793 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:15:02.795 [info] [command][8588193d-0be1-4b6f-ad20-b09fdbdc380a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""8588193d-0be1-4b6f-ad20-b09fdbdc380a""}\n2025-07-17 18:15:02.795 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][ef7315dc-c105-486a-a5ab-376c44f5091e] received connection request\n2025-07-17 18:15:02.796 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:15:02.813 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ef7315dc-c105-486a-a5ab-376c44f5091e] socks forwarding established\n2025-07-17 18:15:02.839 [info] [command][8588193d-0be1-4b6f-ad20-b09fdbdc380a] Process exited with code 0\n2025-07-17 18:15:02.840 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][ef7315dc-c105-486a-a5ab-376c44f5091e] socks connection closed\n2025-07-17 18:15:02.840 [info] [command][8588193d-0be1-4b6f-ad20-b09fdbdc380a] Socket close event received\n2025-07-17 18:15:02.855 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50898 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:16:02.847 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:16:02.849 [info] [command][c6eb9a67-6dcc-4a5a-a774-7e3792356e1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""c6eb9a67-6dcc-4a5a-a774-7e3792356e1a""}\n2025-07-17 18:16:02.849 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][b94441d9-7061-453e-82a5-20104b325eb5] received connection request\n2025-07-17 18:16:02.850 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:16:02.865 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b94441d9-7061-453e-82a5-20104b325eb5] socks forwarding established\n2025-07-17 18:16:02.893 [info] [command][c6eb9a67-6dcc-4a5a-a774-7e3792356e1a] Process exited with code 0\n2025-07-17 18:16:02.894 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][b94441d9-7061-453e-82a5-20104b325eb5] socks connection closed\n2025-07-17 18:16:02.894 [info] [command][c6eb9a67-6dcc-4a5a-a774-7e3792356e1a] Socket close event received\n2025-07-17 18:16:02.912 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50927 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:17:02.904 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:17:02.905 [info] [command][b0b70a9c-24ef-47e5-abed-dc293f96d99f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b0b70a9c-24ef-47e5-abed-dc293f96d99f""}\n2025-07-17 18:17:02.905 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bff8f7dd-0eb2-40c1-a9a1-1d9392c45dd4] received connection request\n2025-07-17 18:17:02.906 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:17:02.925 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bff8f7dd-0eb2-40c1-a9a1-1d9392c45dd4] socks forwarding established\n2025-07-17 18:17:02.956 [info] [command][b0b70a9c-24ef-47e5-abed-dc293f96d99f] Process exited with code 0\n2025-07-17 18:17:02.956 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bff8f7dd-0eb2-40c1-a9a1-1d9392c45dd4] socks connection closed\n2025-07-17 18:17:02.956 [info] [command][b0b70a9c-24ef-47e5-abed-dc293f96d99f] Socket close event received\n2025-07-17 18:17:02.972 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 50982 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:18:02.962 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:18:02.964 [info] [command][4aa9f156-2580-4f74-9b79-fea940a91180] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""4aa9f156-2580-4f74-9b79-fea940a91180""}\n2025-07-17 18:18:02.964 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][72985a76-49a2-4431-95d0-581fac82b381] received connection request\n2025-07-17 18:18:02.965 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:18:02.981 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][72985a76-49a2-4431-95d0-581fac82b381] socks forwarding established\n2025-07-17 18:18:03.010 [info] [command][4aa9f156-2580-4f74-9b79-fea940a91180] Process exited with code 0\n2025-07-17 18:18:03.011 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][72985a76-49a2-4431-95d0-581fac82b381] socks connection closed\n2025-07-17 18:18:03.012 [info] [command][4aa9f156-2580-4f74-9b79-fea940a91180] Socket close event received\n2025-07-17 18:18:03.027 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51006 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:19:03.018 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:19:03.020 [info] [command][727d17c8-3cb2-49f2-967c-88f2b59bd02c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""727d17c8-3cb2-49f2-967c-88f2b59bd02c""}\n2025-07-17 18:19:03.021 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][61e9daf2-0065-4f12-b506-cc0fdd290b7b] received connection request\n2025-07-17 18:19:03.022 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:19:03.064 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][61e9daf2-0065-4f12-b506-cc0fdd290b7b] socks forwarding established\n2025-07-17 18:19:03.091 [info] [command][727d17c8-3cb2-49f2-967c-88f2b59bd02c] Process exited with code 0\n2025-07-17 18:19:03.091 [info] [command][727d17c8-3cb2-49f2-967c-88f2b59bd02c] Socket close event received\n2025-07-17 18:19:03.093 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][61e9daf2-0065-4f12-b506-cc0fdd290b7b] socks connection closed\n2025-07-17 18:19:03.108 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51064 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:20:03.101 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:20:03.103 [info] [command][40814746-fabc-4bce-84b5-3a5d08f55de9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""40814746-fabc-4bce-84b5-3a5d08f55de9""}\n2025-07-17 18:20:03.104 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][a92e2ffc-5946-41a7-9398-aed93716e920] received connection request\n2025-07-17 18:20:03.104 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:20:03.119 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a92e2ffc-5946-41a7-9398-aed93716e920] socks forwarding established\n2025-07-17 18:20:03.149 [info] [command][40814746-fabc-4bce-84b5-3a5d08f55de9] Process exited with code 0\n2025-07-17 18:20:03.149 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][a92e2ffc-5946-41a7-9398-aed93716e920] socks connection closed\n2025-07-17 18:20:03.150 [info] [command][40814746-fabc-4bce-84b5-3a5d08f55de9] Socket close event received\n2025-07-17 18:20:03.164 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51096 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:21:03.160 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:21:03.163 [info] [command][b5669528-72b5-4444-b1f3-b2127182f457] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""b5669528-72b5-4444-b1f3-b2127182f457""}\n2025-07-17 18:21:03.163 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:36087][bcfe61de-9d81-4f59-b480-1fdc694fc5dd] received connection request\n2025-07-17 18:21:03.164 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:21:03.179 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bcfe61de-9d81-4f59-b480-1fdc694fc5dd] socks forwarding established\n2025-07-17 18:21:03.209 [info] [command][b5669528-72b5-4444-b1f3-b2127182f457] Process exited with code 0\n2025-07-17 18:21:03.210 [info] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:51185 -> 127.0.0.1:36087][bcfe61de-9d81-4f59-b480-1fdc694fc5dd] socks connection closed\n2025-07-17 18:21:03.210 [info] [command][b5669528-72b5-4444-b1f3-b2127182f457] Socket close event received\n2025-07-17 18:21:03.227 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 51185 for 127.0.0.1 port 36087, connect from 127.0.0.1 port 51119 to 127.0.0.1 port 51185, nchannels 6\n\n2025-07-17 18:21:12.555 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:39531][b9608c13-4282-42e1-8b5e-c77ca188c59a] received connection request\n2025-07-17 18:21:12.585 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-17 18:21:12.585 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-17 18:21:12.592 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:21:12.600 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:39531][785bb909-797b-4641-877f-78d81665eb2d] received connection request\n2025-07-17 18:21:12.619 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:21:15.594 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-17 18:21:15.595 [error] Failed to connect to Cursor server at http://127.0.0.1:51221, attempt 1 of 3 This operation was aborted\n2025-07-17 18:21:15.604 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:39531][5934c196-ad0c-4da2-9a1f-eb5de5ba2456] received connection request\n2025-07-17 18:21:15.605 [info] (ssh_tunnel) stderr: debug1: Connection to port 51185 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-17 18:21:15.661 [info] Terminating existing SSH process with pid: 95459\n2025-07-17 18:21:15.661 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-17 18:21:15.662 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-17 18:21:15.662 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:21:15.664 [error] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:51185 -> 127.0.0.1:39531][b9608c13-4282-42e1-8b5e-c77ca188c59a] error while creating socks forwarding Socket closed\n2025-07-17 18:21:15.664 [error] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:51185 -> 127.0.0.1:39531][785bb909-797b-4641-877f-78d81665eb2d] error while creating socks forwarding Socket closed\n2025-07-17 18:21:15.664 [error] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:51185 -> 127.0.0.1:39531][5934c196-ad0c-4da2-9a1f-eb5de5ba2456] error while creating socks forwarding Socket closed\n2025-07-17 18:21:15.664 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:51185 -> 127.0.0.1:39531][eafe767a-af01-46b2-aacf-26f4316f79de] socks connection closed\n2025-07-17 18:21:15.664 [info] [forwarding][code][127.0.0.1:51221 -> 127.0.0.1:51185 -> 127.0.0.1:39531][74738ebb-c1a5-4420-aa2c-b473df33055e] socks connection closed\n2025-07-17 18:21:15.666 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_70602.sh"" | ssh -v -T -D 51176 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:21:15.666 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:21:15.666 [info] Waiting for server to install via process(8432)...\n2025-07-17 18:21:15.672 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:21:15.672 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-17 18:21:15.673 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:21:15.674 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:21:15.674 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:21:15.675 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:21:15.677 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:21:15.678 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:21:15.678 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:21:15.678 [info] Retrying connection in 5 seconds...\n2025-07-17 18:21:16.601 [error] Failed to connect to Cursor server at http://127.0.0.1:51221, attempt 2 of 3 This operation was aborted\n2025-07-17 18:21:17.608 [error] Failed to connect to Cursor server at http://127.0.0.1:51221, attempt 3 of 3 This operation was aborted\n2025-07-17 18:21:17.608 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-17 18:21:17.609 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-17 18:22:30.213 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_70602.sh\n2025-07-17 18:22:30.214 [info] [remote-ssh] Pinging remote server on port 51222\n2025-07-17 18:22:30.216 [error] [forwarding][multiplex][127.0.0.1:51222 -> 127.0.0.1:undefined][5969fb28-3985-428e-93bc-bfc5e5befb03] remote server not configured\n2025-07-17 18:22:30.216 [info] [command][a7fa58df-35b8-4f5e-ac13-71541227ee17] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""bb33a6e4-921b-441a-9872-d9a1414f9632"",""id"":""a7fa58df-35b8-4f5e-ac13-71541227ee17""}\n2025-07-17 18:22:30.219 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:22:30.219 [error] [command][a7fa58df-35b8-4f5e-ac13-71541227ee17] Socket error: Error: read ECONNRESET\n2025-07-17 18:22:30.220 [info] [command][a7fa58df-35b8-4f5e-ac13-71541227ee17] Socket close event received\n2025-07-17 18:22:30.222 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_76860.sh"" | ssh -v -T -D 51178 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:22:30.222 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:22:30.222 [info] Waiting for server to install via process(8443)...\n2025-07-17 18:22:30.235 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-17 18:22:30.235 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:22:30.235 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:22:30.235 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:22:30.238 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:22:30.239 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:22:30.239 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:22:30.239 [info] Retrying connection in 5 seconds...\n2025-07-17 18:22:35.238 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_76860.sh\n2025-07-17 18:22:35.239 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:22:35.243 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_59684.sh"" | ssh -v -T -D 51179 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:22:35.243 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:22:35.243 [info] Waiting for server to install via process(8455)...\n2025-07-17 18:22:35.267 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:22:35.267 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-17 18:22:35.267 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:22:35.271 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\ndebug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:22:35.278 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:22:35.279 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:22:35.279 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:22:35.279 [info] Retrying connection in 5 seconds...\n2025-07-17 18:22:40.287 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_59684.sh\n2025-07-17 18:22:40.288 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:22:40.289 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_16478.sh"" | ssh -v -T -D 51180 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:22:40.290 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:22:40.290 [info] Waiting for server to install via process(8461)...\n2025-07-17 18:22:40.296 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-17 18:22:40.296 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:22:40.297 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:22:40.297 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:22:40.297 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:22:40.298 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:22:40.298 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:22:40.298 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:22:40.298 [info] Retrying connection in 5 seconds...\n2025-07-17 18:22:45.305 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_16478.sh\n2025-07-17 18:22:45.307 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:22:45.312 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_99311.sh"" | ssh -v -T -D 51181 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:22:45.312 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:22:45.312 [info] Waiting for server to install via process(8465)...\n2025-07-17 18:22:45.329 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:22:45.329 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:22:45.329 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:22:45.329 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:22:45.329 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:22:45.331 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:22:45.332 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:22:45.333 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:22:45.333 [info] Retrying connection in 5 seconds...\n2025-07-17 18:22:50.342 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_99311.sh\n2025-07-17 18:22:50.343 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:22:50.346 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_87601.sh"" | ssh -v -T -D 51183 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:22:50.346 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:22:50.346 [info] Waiting for server to install via process(8470)...\n2025-07-17 18:22:50.357 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:22:50.357 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:22:50.357 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:22:50.357 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:22:50.358 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:22:50.359 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:22:50.360 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:22:50.360 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:22:50.360 [info] Retrying connection in 5 seconds...\n2025-07-17 18:23:54.931 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_87601.sh\n2025-07-17 18:23:54.932 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:23:54.936 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_99012.sh"" | ssh -v -T -D 51184 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:23:54.936 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:23:54.936 [info] Waiting for server to install via process(8474)...\n2025-07-17 18:23:54.953 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-17 18:23:54.953 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:23:54.954 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:23:54.954 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:23:54.954 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:23:54.956 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:23:54.957 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:23:54.957 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:23:54.957 [info] Retrying connection in 5 seconds...\n2025-07-17 18:23:59.958 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_99012.sh\n2025-07-17 18:23:59.961 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:23:59.966 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_20303.sh"" | ssh -v -T -D 51187 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:23:59.967 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:23:59.967 [info] Waiting for server to install via process(8483)...\n2025-07-17 18:23:59.984 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-17 18:23:59.985 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:23:59.985 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:23:59.985 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:23:59.985 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:23:59.986 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:23:59.987 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:23:59.987 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:23:59.987 [info] Retrying connection in 5 seconds...\n2025-07-17 18:24:04.997 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_20303.sh\n2025-07-17 18:24:04.998 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:24:05.003 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_53376.sh"" | ssh -v -T -D 51189 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:24:05.003 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:24:05.004 [info] Waiting for server to install via process(8488)...\n2025-07-17 18:24:05.021 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-17 18:24:05.021 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:24:05.022 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:24:05.022 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:24:05.022 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:24:05.024 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:24:05.025 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:24:05.025 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:24:05.025 [info] Retrying connection in 5 seconds...\n2025-07-17 18:24:10.035 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_53376.sh\n2025-07-17 18:24:10.035 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:24:10.040 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_81110.sh"" | ssh -v -T -D 51190 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:24:10.040 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:24:10.040 [info] Waiting for server to install via process(8492)...\n2025-07-17 18:24:10.057 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:24:10.057 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:24:10.057 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:24:10.057 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:24:10.057 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:24:10.060 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:24:10.061 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:24:10.061 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:24:10.061 [info] Retrying connection in 5 seconds...\n2025-07-17 18:24:15.063 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_81110.sh\n2025-07-17 18:24:15.064 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:24:15.069 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_39921.sh"" | ssh -v -T -D 51191 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:24:15.069 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:24:15.069 [info] Waiting for server to install via process(8497)...\n2025-07-17 18:24:15.087 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-17 18:24:15.087 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:24:15.088 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:24:15.088 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:24:15.088 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:24:15.090 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:24:15.091 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:24:15.091 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:24:15.091 [info] Retrying connection in 5 seconds...\n2025-07-17 18:24:20.100 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_39921.sh\n2025-07-17 18:24:20.101 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:24:20.105 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_86679.sh"" | ssh -v -T -D 51193 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:24:20.105 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:24:20.105 [info] Waiting for server to install via process(8501)...\n2025-07-17 18:24:20.118 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-17 18:24:20.118 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:24:20.119 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:24:20.119 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:24:20.119 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:24:20.120 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:24:20.121 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:24:20.121 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:24:20.121 [info] Retrying connection in 5 seconds...\n2025-07-17 18:24:25.126 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_86679.sh\n2025-07-17 18:24:25.127 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:24:25.132 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_51442.sh"" | ssh -v -T -D 51194 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:24:25.132 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:24:25.132 [info] Waiting for server to install via process(8506)...\n2025-07-17 18:24:25.150 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:24:25.150 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:24:25.150 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:24:25.150 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:24:25.151 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:24:25.162 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:24:25.162 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:24:25.163 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:24:25.163 [info] Retrying connection in 5 seconds...\n2025-07-17 18:24:30.167 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_51442.sh\n2025-07-17 18:24:30.168 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:24:30.172 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_37160.sh"" | ssh -v -T -D 51195 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:24:30.173 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:24:30.173 [info] Waiting for server to install via process(8510)...\n2025-07-17 18:24:30.193 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-17 18:24:30.193 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:24:30.193 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:24:30.193 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:24:30.194 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:24:30.196 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:24:30.196 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:24:30.196 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:24:30.196 [info] Retrying connection in 5 seconds...\n2025-07-17 18:24:35.204 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_37160.sh\n2025-07-17 18:24:35.205 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:24:35.210 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_34452.sh"" | ssh -v -T -D 51196 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:24:35.210 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:24:35.210 [info] Waiting for server to install via process(8516)...\n2025-07-17 18:24:35.229 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:24:35.229 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:24:35.229 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:24:35.229 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:24:35.230 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:24:35.232 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:24:35.232 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:24:35.233 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:24:35.233 [info] Retrying connection in 5 seconds...\n2025-07-17 18:24:40.240 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_34452.sh\n2025-07-17 18:24:40.241 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:24:40.247 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_97906.sh"" | ssh -v -T -D 51197 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:24:40.247 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:24:40.247 [info] Waiting for server to install via process(8524)...\n2025-07-17 18:24:40.265 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-17 18:24:40.265 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:24:40.266 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:24:40.266 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:24:40.266 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:24:40.268 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:24:40.268 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:24:40.269 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:24:40.269 [info] Retrying connection in 5 seconds...\n2025-07-17 18:25:48.343 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_97906.sh\n2025-07-17 18:25:48.344 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:25:48.345 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_48386.sh"" | ssh -v -T -D 51198 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:25:48.345 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:25:48.345 [info] Waiting for server to install via process(8530)...\n2025-07-17 18:25:48.353 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:25:48.353 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:25:48.354 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:25:48.354 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:25:48.354 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:25:48.355 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:25:48.355 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:25:48.356 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:25:48.356 [info] Retrying connection in 5 seconds...\n2025-07-17 18:25:53.364 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_48386.sh\n2025-07-17 18:25:53.366 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:25:53.370 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_28835.sh"" | ssh -v -T -D 51200 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:25:53.371 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:25:53.371 [info] Waiting for server to install via process(8535)...\n2025-07-17 18:25:53.386 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:25:53.386 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:25:53.387 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:25:53.387 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:25:53.387 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:25:53.389 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:25:53.390 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:25:53.390 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:25:53.390 [info] Retrying connection in 5 seconds...\n2025-07-17 18:39:31.707 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_28835.sh\n2025-07-17 18:39:31.710 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-AYwADx/socket.sock\n2025-07-17 18:39:31.716 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_69478.sh"" | ssh -v -T -D 51201 horeka.scc.kit.edu bash --login -c bash\n2025-07-17 18:39:31.716 [info] Started installation script. Waiting for it to finish...\n2025-07-17 18:39:31.716 [info] Waiting for server to install via process(8539)...\n2025-07-17 18:39:31.725 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-17 18:39:31.725 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-17 18:39:31.725 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-17 18:39:31.725 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-17 18:39:31.725 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-17 18:39:31.727 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-17 18:39:31.727 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-17 18:39:31.728 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:39:31.728 [error] Failed to connect after 19 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-17 18:39:31.728 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_69478.sh\n2025-07-17 18:39:31.728 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 09:48:44.609 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-18 09:48:44.624 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-9VhPKr/socket.sock\n2025-07-18 09:48:44.625 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 09:48:44.627 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-9VhPKr/socket.sock\n2025-07-18 09:48:44.629 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_93888.sh"" | ssh -v -T -D 54336 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 09:48:44.629 [info] Started installation script. Waiting for it to finish...\n2025-07-18 09:48:44.629 [info] Waiting for server to install via process(11452)...\n2025-07-18 09:48:44.635 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-18 09:48:44.635 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 09:48:44.635 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 09:48:44.635 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 09:48:44.636 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\n\n2025-07-18 09:48:44.636 [info] (ssh_tunnel) stderr: debug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 09:48:45.143 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 09:48:45.143 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 09:48:45.143 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-18 09:48:45.144 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-18 09:48:45.144 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 09:48:45.251 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 09:48:45.253 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-18 09:48:45.253 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 09:48:45.387 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 09:48:45.388 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 09:48:45.493 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 09:48:45.494 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\n\n2025-07-18 09:48:45.494 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 09:48:45.498 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-18 09:48:45.498 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\n\n2025-07-18 09:48:45.498 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 09:48:45.708 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 09:48:45.794 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 09:48:45.797 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-18 09:48:45.797 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 09:48:46.459 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\n\n2025-07-18 09:48:46.460 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 09:48:46.552 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 09:48:47.102 [info] Askpass server received request: POST /\n2025-07-18 09:48:47.103 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 09:48:47.103 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 09:48:54.326 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 09:48:54.431 [info] Askpass server received request: POST /\n2025-07-18 09:48:54.431 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-18 09:48:54.432 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-18 09:48:58.717 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:54336 forwarded to remote address socks:0\n\n2025-07-18 09:48:58.719 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 54336.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 54336.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\n\n2025-07-18 09:48:58.720 [info] (ssh_tunnel) stderr: debug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-18 09:48:59.411 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-18 09:48:59.417 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-18 09:48:59.426 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-18 09:48:59.564 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-18 09:49:03.238 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-18 09:49:03.401 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 09:49:03.412 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-18 09:49:03.477 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-18 09:49:03.496 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-18 09:49:03.644 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-18 09:49:03.655 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 09:49:03.673 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-18 09:49:03.711 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-18 09:49:03.743 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js 96efe026-aae4-459b-a581-903c8f622879\n\n2025-07-18 09:49:03.754 [info] (ssh_tunnel) stdout: Multiplex server started with PID 3079864 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\n\n2025-07-18 09:49:03.761 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 09:49:04.292 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-18 09:49:04.429 [info] (ssh_tunnel) stdout: Code server script is not running\nCreating code server token file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 09:49:04.446 [info] (ssh_tunnel) stdout: Starting code server script /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2 &\n\n2025-07-18 09:49:04.452 [info] (ssh_tunnel) stdout: Code server started with PID 3080454 and wrote pid to file /run/user/996262/cursor-remote-code.pid.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 09:49:04.458 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 09:49:05.084 [info] (ssh_tunnel) stdout: 381bbfd36f2828695ea5575c: start\n\n2025-07-18 09:49:05.084 [info] (ssh_tunnel) stdout: exitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==38043==\nmultiplexConnectionToken==96efe026-aae4-459b-a581-903c8f622879==\ncodeListeningOn==46063==\ncodeConnectionToken==f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b==\ndetectedPlatform==linux==\narch==x64==\n\n2025-07-18 09:49:05.181 [info] (ssh_tunnel) stdout: SSH_AUTH_SOCK====\n381bbfd36f2828695ea5575c: end\nUnlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 09:49:05.182 [info] Server install command exit code: 0\n2025-07-18 09:49:05.182 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_93888.sh\n2025-07-18 09:49:05.187 [info] [forwarding][code] creating new forwarding server\n2025-07-18 09:49:05.187 [info] [forwarding][code] server listening on 54357\n2025-07-18 09:49:05.187 [info] [forwarding][code] Set up server\n2025-07-18 09:49:05.187 [info] [remote-ssh] codeListeningOn (remote=46063; local=54357) codeConnectionToken: f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b\n2025-07-18 09:49:05.187 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-18 09:49:05.187 [info] [forwarding][multiplex] server listening on 54358\n2025-07-18 09:49:05.187 [info] [forwarding][multiplex] Set up server\n2025-07-18 09:49:05.188 [info] [remote-ssh] multiplexListeningOn (remote=38043; local=54358) multiplexConnectionToken: 96efe026-aae4-459b-a581-903c8f622879\n2025-07-18 09:49:05.188 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:49:05.195 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][2a1662d8-905b-43fe-b276-3ea638605674] received connection request\n2025-07-18 09:49:05.195 [info] [command][7495e8ac-c001-4e97-bc11-cf10271190cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""7495e8ac-c001-4e97-bc11-cf10271190cd""}\n2025-07-18 09:49:05.206 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:49:05.255 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:46063][efedd123-49b3-47e3-bfd8-e4ac1cbc3c34] received connection request\n2025-07-18 09:49:05.256 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:49:05.294 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][2a1662d8-905b-43fe-b276-3ea638605674] socks forwarding established\n2025-07-18 09:49:05.341 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:54336 -> 127.0.0.1:46063][efedd123-49b3-47e3-bfd8-e4ac1cbc3c34] socks forwarding established\n2025-07-18 09:49:05.420 [info] [command][7495e8ac-c001-4e97-bc11-cf10271190cd] Process exited with code 0\n2025-07-18 09:49:05.420 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][2a1662d8-905b-43fe-b276-3ea638605674] socks connection closed\n2025-07-18 09:49:05.420 [info] [command][7495e8ac-c001-4e97-bc11-cf10271190cd] Socket close event received\n2025-07-18 09:49:05.445 [info] Successfully connected to Cursor server at http://127.0.0.1:54357/version\n2025-07-18 09:49:05.445 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-18 09:49:05.446 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][b930bef5-aa2a-4a4a-be8f-859b1d588d78] received connection request\n2025-07-18 09:49:05.446 [info] [command][f1ed3f58-b47c-46b7-b6c9-43674e170fa8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""f1ed3f58-b47c-46b7-b6c9-43674e170fa8""}\n2025-07-18 09:49:05.446 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:49:05.521 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 54360 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:49:05.534 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][b930bef5-aa2a-4a4a-be8f-859b1d588d78] socks forwarding established\n2025-07-18 09:49:05.644 [info] [command][f1ed3f58-b47c-46b7-b6c9-43674e170fa8] Process exited with code 0\n2025-07-18 09:49:05.644 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-18 09:49:05.645 [info] [remote-ssh] Resolved exec server. Socks port: 54336\n2025-07-18 09:49:05.645 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":54357,""connectionToken"":""f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b"",""extensionHostEnv"":{}}. Socks port: 54336\n2025-07-18 09:49:05.646 [info] [command][f1ed3f58-b47c-46b7-b6c9-43674e170fa8] Socket close event received\n2025-07-18 09:49:05.647 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][b930bef5-aa2a-4a4a-be8f-859b1d588d78] socks connection closed\n2025-07-18 09:49:05.697 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:46063][3a3db5ed-0de3-4894-b475-ab48545de7fc] received connection request\n2025-07-18 09:49:05.697 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:49:05.734 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 54364 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:49:05.785 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:54336 -> 127.0.0.1:46063][3a3db5ed-0de3-4894-b475-ab48545de7fc] socks forwarding established\n2025-07-18 09:49:05.902 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:46063][f7852c77-ddc2-43ee-bf57-6ce229f83d9b] received connection request\n2025-07-18 09:49:05.902 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:49:05.995 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:54336 -> 127.0.0.1:46063][f7852c77-ddc2-43ee-bf57-6ce229f83d9b] socks forwarding established\n2025-07-18 09:49:06.436 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-18 09:49:08.562 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 46063, connect from 127.0.0.1 port 54362 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:49:08.562 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:54336 -> 127.0.0.1:46063][efedd123-49b3-47e3-bfd8-e4ac1cbc3c34] socks connection closed\n2025-07-18 09:50:05.423 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:50:05.430 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][0f3a2313-d702-4fc3-955f-d3089fd2314e] received connection request\n2025-07-18 09:50:05.431 [info] [command][d13a9c54-7ebb-408b-8475-4d412011a1ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""d13a9c54-7ebb-408b-8475-4d412011a1ce""}\n2025-07-18 09:50:05.431 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:50:05.550 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][0f3a2313-d702-4fc3-955f-d3089fd2314e] socks forwarding established\n2025-07-18 09:50:05.713 [info] [command][d13a9c54-7ebb-408b-8475-4d412011a1ce] Process exited with code 0\n2025-07-18 09:50:05.713 [info] [command][d13a9c54-7ebb-408b-8475-4d412011a1ce] Socket close event received\n2025-07-18 09:50:05.717 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][0f3a2313-d702-4fc3-955f-d3089fd2314e] socks connection closed\n2025-07-18 09:50:05.833 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 54593 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:51:05.716 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:51:05.719 [info] [command][8186dc13-6fb5-4835-b036-97eba1c7576a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""8186dc13-6fb5-4835-b036-97eba1c7576a""}\n2025-07-18 09:51:05.719 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][b9025262-2d9c-49e1-b543-9bb4200f7f70] received connection request\n2025-07-18 09:51:05.720 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:51:05.831 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][b9025262-2d9c-49e1-b543-9bb4200f7f70] socks forwarding established\n2025-07-18 09:51:05.951 [info] [command][8186dc13-6fb5-4835-b036-97eba1c7576a] Process exited with code 0\n2025-07-18 09:51:05.951 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][b9025262-2d9c-49e1-b543-9bb4200f7f70] socks connection closed\n2025-07-18 09:51:05.951 [info] [command][8186dc13-6fb5-4835-b036-97eba1c7576a] Socket close event received\n2025-07-18 09:51:06.046 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 54630 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:52:05.954 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:52:05.956 [info] [command][d13989a3-d08c-4d3a-9bb3-fb9ac31e5467] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""d13989a3-d08c-4d3a-9bb3-fb9ac31e5467""}\n2025-07-18 09:52:05.956 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][7dd24f78-5cb4-45b4-ab38-aa8a63c0910f] received connection request\n2025-07-18 09:52:05.958 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\n\n2025-07-18 09:52:05.958 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:52:06.075 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][7dd24f78-5cb4-45b4-ab38-aa8a63c0910f] socks forwarding established\n2025-07-18 09:52:06.211 [info] [command][d13989a3-d08c-4d3a-9bb3-fb9ac31e5467] Process exited with code 0\n2025-07-18 09:52:06.211 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][7dd24f78-5cb4-45b4-ab38-aa8a63c0910f] socks connection closed\n2025-07-18 09:52:06.212 [info] [command][d13989a3-d08c-4d3a-9bb3-fb9ac31e5467] Socket close event received\n2025-07-18 09:52:06.317 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 54693 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:53:06.214 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:53:06.217 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][c399b833-606c-48e1-8e33-a9a995ad1ece] received connection request\n2025-07-18 09:53:06.218 [info] [command][310235bd-a376-4d2e-b434-6149e363fa0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""310235bd-a376-4d2e-b434-6149e363fa0a""}\n2025-07-18 09:53:06.218 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:53:07.011 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][c399b833-606c-48e1-8e33-a9a995ad1ece] socks forwarding established\n2025-07-18 09:53:07.353 [info] [command][310235bd-a376-4d2e-b434-6149e363fa0a] Process exited with code 0\n2025-07-18 09:53:07.354 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][c399b833-606c-48e1-8e33-a9a995ad1ece] socks connection closed\n2025-07-18 09:53:07.354 [info] [command][310235bd-a376-4d2e-b434-6149e363fa0a] Socket close event received\n2025-07-18 09:53:07.530 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 54742 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:54:07.354 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:54:07.356 [info] [command][862dd2af-ac58-4b14-a5ae-b7677ac10e10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""862dd2af-ac58-4b14-a5ae-b7677ac10e10""}\n2025-07-18 09:54:07.357 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][648a9be8-c58e-4073-999f-ee80cc816e99] received connection request\n2025-07-18 09:54:07.357 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:54:07.635 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][648a9be8-c58e-4073-999f-ee80cc816e99] socks forwarding established\n2025-07-18 09:54:07.762 [info] [command][862dd2af-ac58-4b14-a5ae-b7677ac10e10] Process exited with code 0\n2025-07-18 09:54:07.763 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][648a9be8-c58e-4073-999f-ee80cc816e99] socks connection closed\n2025-07-18 09:54:07.763 [info] [command][862dd2af-ac58-4b14-a5ae-b7677ac10e10] Socket close event received\n2025-07-18 09:54:07.900 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 54910 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:55:07.765 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:55:07.766 [info] [command][598747f5-cc54-4560-abd7-fc2327beaabe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""598747f5-cc54-4560-abd7-fc2327beaabe""}\n2025-07-18 09:55:07.766 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][7c547132-8079-4f80-a8ae-d93448c5f098] received connection request\n2025-07-18 09:55:07.767 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:55:07.849 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][7c547132-8079-4f80-a8ae-d93448c5f098] socks forwarding established\n2025-07-18 09:55:07.947 [info] [command][598747f5-cc54-4560-abd7-fc2327beaabe] Process exited with code 0\n2025-07-18 09:55:07.947 [info] [command][598747f5-cc54-4560-abd7-fc2327beaabe] Socket close event received\n2025-07-18 09:55:07.948 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][7c547132-8079-4f80-a8ae-d93448c5f098] socks connection closed\n2025-07-18 09:55:08.046 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 54996 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:56:07.947 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:56:07.950 [info] [command][8be7c402-da87-4e5b-a0c7-c4a305154977] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""8be7c402-da87-4e5b-a0c7-c4a305154977""}\n2025-07-18 09:56:07.951 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][991f6413-0cf5-4a43-a701-13d0eb076c7b] received connection request\n2025-07-18 09:56:07.952 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:56:08.388 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][991f6413-0cf5-4a43-a701-13d0eb076c7b] socks forwarding established\n2025-07-18 09:56:08.852 [info] [command][8be7c402-da87-4e5b-a0c7-c4a305154977] Process exited with code 0\n2025-07-18 09:56:08.853 [info] [command][8be7c402-da87-4e5b-a0c7-c4a305154977] Socket close event received\n2025-07-18 09:56:08.878 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][991f6413-0cf5-4a43-a701-13d0eb076c7b] socks connection closed\n2025-07-18 09:56:09.481 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55031 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:57:08.857 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:57:08.859 [info] [command][b4b1fdff-dd08-4e2f-9777-e3e2a47702a1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""b4b1fdff-dd08-4e2f-9777-e3e2a47702a1""}\n2025-07-18 09:57:08.860 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][37cd0cd6-9823-4793-aec9-bcf9950f5fe6] received connection request\n2025-07-18 09:57:08.860 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:57:08.953 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][37cd0cd6-9823-4793-aec9-bcf9950f5fe6] socks forwarding established\n2025-07-18 09:57:09.058 [info] [command][b4b1fdff-dd08-4e2f-9777-e3e2a47702a1] Process exited with code 0\n2025-07-18 09:57:09.058 [info] [command][b4b1fdff-dd08-4e2f-9777-e3e2a47702a1] Socket close event received\n2025-07-18 09:57:09.058 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][37cd0cd6-9823-4793-aec9-bcf9950f5fe6] socks connection closed\n2025-07-18 09:57:09.157 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55087 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:58:09.062 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:58:09.065 [info] [command][bc240126-ebe7-449c-b9e2-eb3d76fa179a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""bc240126-ebe7-449c-b9e2-eb3d76fa179a""}\n2025-07-18 09:58:09.066 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][48da62d4-7c56-4e1e-89a9-a2c235ecdcc3] received connection request\n2025-07-18 09:58:09.066 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:58:09.328 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][48da62d4-7c56-4e1e-89a9-a2c235ecdcc3] socks forwarding established\n2025-07-18 09:58:09.499 [info] [command][bc240126-ebe7-449c-b9e2-eb3d76fa179a] Process exited with code 0\n2025-07-18 09:58:09.499 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][48da62d4-7c56-4e1e-89a9-a2c235ecdcc3] socks connection closed\n2025-07-18 09:58:09.500 [info] [command][bc240126-ebe7-449c-b9e2-eb3d76fa179a] Socket close event received\n2025-07-18 09:58:09.675 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55123 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 09:59:09.503 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 09:59:09.505 [info] [command][0efea972-50ed-4a2d-9b5d-2d5f2c76dde6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""0efea972-50ed-4a2d-9b5d-2d5f2c76dde6""}\n2025-07-18 09:59:09.506 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][57f016f1-3018-423f-a45b-1449780b98e0] received connection request\n2025-07-18 09:59:09.506 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 09:59:09.616 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][57f016f1-3018-423f-a45b-1449780b98e0] socks forwarding established\n2025-07-18 09:59:09.752 [info] [command][0efea972-50ed-4a2d-9b5d-2d5f2c76dde6] Process exited with code 0\n2025-07-18 09:59:09.752 [info] [command][0efea972-50ed-4a2d-9b5d-2d5f2c76dde6] Socket close event received\n2025-07-18 09:59:09.756 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][57f016f1-3018-423f-a45b-1449780b98e0] socks connection closed\n2025-07-18 09:59:09.876 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55173 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:00:09.758 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:00:09.760 [info] [command][8caadb97-5fd0-4b44-8377-dd792b105fe0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""8caadb97-5fd0-4b44-8377-dd792b105fe0""}\n2025-07-18 10:00:09.761 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][d762e823-38b1-462d-9331-3b0d8e04558b] received connection request\n2025-07-18 10:00:09.762 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:00:09.864 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][d762e823-38b1-462d-9331-3b0d8e04558b] socks forwarding established\n2025-07-18 10:00:09.988 [info] [command][8caadb97-5fd0-4b44-8377-dd792b105fe0] Process exited with code 0\n2025-07-18 10:00:09.989 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][d762e823-38b1-462d-9331-3b0d8e04558b] socks connection closed\n2025-07-18 10:00:09.989 [info] [command][8caadb97-5fd0-4b44-8377-dd792b105fe0] Socket close event received\n2025-07-18 10:00:10.093 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55282 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:01:09.992 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:01:09.994 [info] [command][95bcd8e3-f8b4-4dc2-8c98-46a711e398bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""95bcd8e3-f8b4-4dc2-8c98-46a711e398bb""}\n2025-07-18 10:01:09.994 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][7c68f2d7-35b7-4423-ae98-d96c3e73c941] received connection request\n2025-07-18 10:01:09.995 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:01:10.087 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][7c68f2d7-35b7-4423-ae98-d96c3e73c941] socks forwarding established\n2025-07-18 10:01:10.190 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][7c68f2d7-35b7-4423-ae98-d96c3e73c941] socks connection closed\n2025-07-18 10:01:10.190 [info] [command][95bcd8e3-f8b4-4dc2-8c98-46a711e398bb] Process exited with code 0\n2025-07-18 10:01:10.190 [info] [command][95bcd8e3-f8b4-4dc2-8c98-46a711e398bb] Socket close event received\n2025-07-18 10:01:10.283 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55305 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:02:10.191 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:02:10.192 [info] [command][8c2049fc-cd53-4a0f-82d1-7a560c59b120] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""8c2049fc-cd53-4a0f-82d1-7a560c59b120""}\n2025-07-18 10:02:10.193 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][86394e6c-cd34-403f-bf83-decf94f6ac63] received connection request\n2025-07-18 10:02:10.193 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\n\n2025-07-18 10:02:10.193 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:02:10.283 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][86394e6c-cd34-403f-bf83-decf94f6ac63] socks forwarding established\n2025-07-18 10:02:10.381 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][86394e6c-cd34-403f-bf83-decf94f6ac63] socks connection closed\n2025-07-18 10:02:10.381 [info] [command][8c2049fc-cd53-4a0f-82d1-7a560c59b120] Process exited with code 0\n2025-07-18 10:02:10.381 [info] [command][8c2049fc-cd53-4a0f-82d1-7a560c59b120] Socket close event received\n2025-07-18 10:02:10.482 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55354 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:03:10.386 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:03:10.387 [info] [command][fc9fa3c8-b845-44dd-a9e5-2af78de36e10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""fc9fa3c8-b845-44dd-a9e5-2af78de36e10""}\n2025-07-18 10:03:10.388 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][cc8fa093-e7e9-4835-bf91-a67688203e58] received connection request\n2025-07-18 10:03:10.388 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\n\n2025-07-18 10:03:10.388 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:03:10.486 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][cc8fa093-e7e9-4835-bf91-a67688203e58] socks forwarding established\n2025-07-18 10:03:10.596 [info] [command][fc9fa3c8-b845-44dd-a9e5-2af78de36e10] Process exited with code 0\n2025-07-18 10:03:10.596 [info] [command][fc9fa3c8-b845-44dd-a9e5-2af78de36e10] Socket close event received\n2025-07-18 10:03:10.616 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][cc8fa093-e7e9-4835-bf91-a67688203e58] socks connection closed\n2025-07-18 10:03:10.680 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55390 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:04:10.601 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:04:10.603 [info] [command][512eb4fb-66eb-43c7-8263-c4a74d9c8375] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""512eb4fb-66eb-43c7-8263-c4a74d9c8375""}\n2025-07-18 10:04:10.604 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][aa436807-d67a-43c7-8a46-0c083d983159] received connection request\n2025-07-18 10:04:10.605 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:04:10.893 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][aa436807-d67a-43c7-8a46-0c083d983159] socks forwarding established\n2025-07-18 10:04:11.076 [info] [command][512eb4fb-66eb-43c7-8263-c4a74d9c8375] Process exited with code 0\n2025-07-18 10:04:11.077 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][aa436807-d67a-43c7-8a46-0c083d983159] socks connection closed\n2025-07-18 10:04:11.077 [info] [command][512eb4fb-66eb-43c7-8263-c4a74d9c8375] Socket close event received\n2025-07-18 10:04:11.248 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55447 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:05:11.080 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:05:11.082 [info] [command][5976e54c-69f8-4284-9eee-b5bd3b3cdaac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""5976e54c-69f8-4284-9eee-b5bd3b3cdaac""}\n2025-07-18 10:05:11.083 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][cf43bb28-e17e-4aa6-9286-298a7bf00e46] received connection request\n2025-07-18 10:05:11.083 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:05:11.290 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][cf43bb28-e17e-4aa6-9286-298a7bf00e46] socks forwarding established\n2025-07-18 10:05:11.515 [info] [command][5976e54c-69f8-4284-9eee-b5bd3b3cdaac] Process exited with code 0\n2025-07-18 10:05:11.516 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][cf43bb28-e17e-4aa6-9286-298a7bf00e46] socks connection closed\n2025-07-18 10:05:11.516 [info] [command][5976e54c-69f8-4284-9eee-b5bd3b3cdaac] Socket close event received\n2025-07-18 10:05:11.691 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55504 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:06:11.519 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:06:11.520 [info] [command][2bb180de-5d09-4dbb-8052-948d15f07565] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""2bb180de-5d09-4dbb-8052-948d15f07565""}\n2025-07-18 10:06:11.521 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][989918bf-321b-46e6-b18a-b2a1a19d5f02] received connection request\n2025-07-18 10:06:11.521 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:06:11.616 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][989918bf-321b-46e6-b18a-b2a1a19d5f02] socks forwarding established\n2025-07-18 10:06:11.725 [info] [command][2bb180de-5d09-4dbb-8052-948d15f07565] Process exited with code 0\n2025-07-18 10:06:11.725 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][989918bf-321b-46e6-b18a-b2a1a19d5f02] socks connection closed\n2025-07-18 10:06:11.725 [info] [command][2bb180de-5d09-4dbb-8052-948d15f07565] Socket close event received\n2025-07-18 10:06:11.815 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55526 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:07:11.726 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:07:11.729 [info] [command][05d2a54a-c254-4a85-bf2d-5d8683320120] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""05d2a54a-c254-4a85-bf2d-5d8683320120""}\n2025-07-18 10:07:11.729 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][8eff7458-7103-4afb-af0d-1e55548c0594] received connection request\n2025-07-18 10:07:11.730 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\n\n2025-07-18 10:07:11.730 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:07:11.832 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][8eff7458-7103-4afb-af0d-1e55548c0594] socks forwarding established\n2025-07-18 10:07:11.942 [info] [command][05d2a54a-c254-4a85-bf2d-5d8683320120] Process exited with code 0\n2025-07-18 10:07:11.943 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][8eff7458-7103-4afb-af0d-1e55548c0594] socks connection closed\n2025-07-18 10:07:11.943 [info] [command][05d2a54a-c254-4a85-bf2d-5d8683320120] Socket close event received\n2025-07-18 10:07:12.037 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55569 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:08:11.945 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:08:11.946 [info] [command][1c65a7d9-cbcc-4a0f-b32c-a3ce0384d26a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""1c65a7d9-cbcc-4a0f-b32c-a3ce0384d26a""}\n2025-07-18 10:08:11.947 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][8237f805-38e8-4f52-9969-650e178c45dd] received connection request\n2025-07-18 10:08:11.948 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:08:12.039 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][8237f805-38e8-4f52-9969-650e178c45dd] socks forwarding established\n2025-07-18 10:08:12.149 [info] [command][1c65a7d9-cbcc-4a0f-b32c-a3ce0384d26a] Process exited with code 0\n2025-07-18 10:08:12.149 [info] [command][1c65a7d9-cbcc-4a0f-b32c-a3ce0384d26a] Socket close event received\n2025-07-18 10:08:12.152 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][8237f805-38e8-4f52-9969-650e178c45dd] socks connection closed\n2025-07-18 10:08:12.243 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55601 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:09:12.152 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:09:12.153 [info] [command][0863d405-ece5-450f-a820-591811fafce8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""0863d405-ece5-450f-a820-591811fafce8""}\n2025-07-18 10:09:12.153 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][e66cefa9-5975-42e2-a881-e8539ef173fa] received connection request\n2025-07-18 10:09:12.154 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:09:12.241 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][e66cefa9-5975-42e2-a881-e8539ef173fa] socks forwarding established\n2025-07-18 10:09:12.388 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][e66cefa9-5975-42e2-a881-e8539ef173fa] socks connection closed\n2025-07-18 10:09:12.388 [info] [command][0863d405-ece5-450f-a820-591811fafce8] Process exited with code 0\n2025-07-18 10:09:12.388 [info] [command][0863d405-ece5-450f-a820-591811fafce8] Socket close event received\n2025-07-18 10:09:12.481 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55655 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:10:12.391 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:10:12.392 [info] [command][ec1a7a2f-1a6d-4b3d-93c9-f9f80a921f57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""ec1a7a2f-1a6d-4b3d-93c9-f9f80a921f57""}\n2025-07-18 10:10:12.393 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][5559a875-bdf8-410d-993c-7f77c230206c] received connection request\n2025-07-18 10:10:12.394 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:10:12.686 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][5559a875-bdf8-410d-993c-7f77c230206c] socks forwarding established\n2025-07-18 10:10:12.865 [info] [command][ec1a7a2f-1a6d-4b3d-93c9-f9f80a921f57] Process exited with code 0\n2025-07-18 10:10:12.866 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][5559a875-bdf8-410d-993c-7f77c230206c] socks connection closed\n2025-07-18 10:10:12.866 [info] [command][ec1a7a2f-1a6d-4b3d-93c9-f9f80a921f57] Socket close event received\n2025-07-18 10:10:12.972 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55727 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:11:12.870 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:11:12.872 [info] [command][1f09bbe9-aa7f-44d2-ba13-d04ef8ac84ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""1f09bbe9-aa7f-44d2-ba13-d04ef8ac84ab""}\n2025-07-18 10:11:12.873 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][7340fb5c-65b2-4c46-95c2-1cb68167ce63] received connection request\n2025-07-18 10:11:12.873 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:11:13.178 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][7340fb5c-65b2-4c46-95c2-1cb68167ce63] socks forwarding established\n2025-07-18 10:11:13.473 [info] [command][1f09bbe9-aa7f-44d2-ba13-d04ef8ac84ab] Process exited with code 0\n2025-07-18 10:11:13.473 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][7340fb5c-65b2-4c46-95c2-1cb68167ce63] socks connection closed\n2025-07-18 10:11:13.473 [info] [command][1f09bbe9-aa7f-44d2-ba13-d04ef8ac84ab] Socket close event received\n2025-07-18 10:11:13.874 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55762 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:12:13.474 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:12:13.476 [info] [command][aa8e8f6d-d821-4963-8e63-d3e80e6ba9ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""aa8e8f6d-d821-4963-8e63-d3e80e6ba9ef""}\n2025-07-18 10:12:13.476 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][26f60f7b-d3b3-498a-bec0-fb26f520e3e2] received connection request\n2025-07-18 10:12:13.476 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:12:13.581 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][26f60f7b-d3b3-498a-bec0-fb26f520e3e2] socks forwarding established\n2025-07-18 10:12:13.688 [info] [command][aa8e8f6d-d821-4963-8e63-d3e80e6ba9ef] Process exited with code 0\n2025-07-18 10:12:13.688 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][26f60f7b-d3b3-498a-bec0-fb26f520e3e2] socks connection closed\n2025-07-18 10:12:13.688 [info] [command][aa8e8f6d-d821-4963-8e63-d3e80e6ba9ef] Socket close event received\n2025-07-18 10:12:13.796 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55821 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:13:13.688 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:13:13.692 [info] [command][dde71ae5-5607-49e4-bb43-f3747db417f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""dde71ae5-5607-49e4-bb43-f3747db417f6""}\n2025-07-18 10:13:13.692 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][d2de4626-9345-4a3e-8b62-43fedfb5c864] received connection request\n2025-07-18 10:13:13.692 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:13:13.792 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][d2de4626-9345-4a3e-8b62-43fedfb5c864] socks forwarding established\n2025-07-18 10:13:13.906 [info] [command][dde71ae5-5607-49e4-bb43-f3747db417f6] Process exited with code 0\n2025-07-18 10:13:13.907 [info] [command][dde71ae5-5607-49e4-bb43-f3747db417f6] Socket close event received\n2025-07-18 10:13:13.907 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][d2de4626-9345-4a3e-8b62-43fedfb5c864] socks connection closed\n2025-07-18 10:13:14.012 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55847 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:14:13.908 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:14:13.910 [info] [command][8afee7a3-5085-4c52-b364-711425bb4a4b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""8afee7a3-5085-4c52-b364-711425bb4a4b""}\n2025-07-18 10:14:13.911 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][9cd67e93-e878-4ec4-9d26-f8fc204b14c2] received connection request\n2025-07-18 10:14:13.911 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:14:14.015 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][9cd67e93-e878-4ec4-9d26-f8fc204b14c2] socks forwarding established\n2025-07-18 10:14:14.159 [info] [command][8afee7a3-5085-4c52-b364-711425bb4a4b] Process exited with code 0\n2025-07-18 10:14:14.160 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][9cd67e93-e878-4ec4-9d26-f8fc204b14c2] socks connection closed\n2025-07-18 10:14:14.160 [info] [command][8afee7a3-5085-4c52-b364-711425bb4a4b] Socket close event received\n2025-07-18 10:14:14.282 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55896 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:15:14.159 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:15:14.161 [info] [command][095e0d4d-2e10-4073-8cd6-3629fe69114d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""095e0d4d-2e10-4073-8cd6-3629fe69114d""}\n2025-07-18 10:15:14.162 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][654efe77-84a0-462b-9d10-88d26ca8a947] received connection request\n2025-07-18 10:15:14.162 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:15:14.285 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][654efe77-84a0-462b-9d10-88d26ca8a947] socks forwarding established\n2025-07-18 10:15:14.413 [info] [command][095e0d4d-2e10-4073-8cd6-3629fe69114d] Process exited with code 0\n2025-07-18 10:15:14.413 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][654efe77-84a0-462b-9d10-88d26ca8a947] socks connection closed\n2025-07-18 10:15:14.413 [info] [command][095e0d4d-2e10-4073-8cd6-3629fe69114d] Socket close event received\n2025-07-18 10:15:14.520 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55956 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:16:14.417 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:16:14.420 [info] [command][e2830ca2-2d10-40a7-b368-05786344a10b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""e2830ca2-2d10-40a7-b368-05786344a10b""}\n2025-07-18 10:16:14.421 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][1db1c6bc-f2ae-4da3-a1fa-400ee95df5a0] received connection request\n2025-07-18 10:16:14.422 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:16:14.522 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][1db1c6bc-f2ae-4da3-a1fa-400ee95df5a0] socks forwarding established\n2025-07-18 10:16:14.648 [info] [command][e2830ca2-2d10-40a7-b368-05786344a10b] Process exited with code 0\n2025-07-18 10:16:14.648 [info] [command][e2830ca2-2d10-40a7-b368-05786344a10b] Socket close event received\n2025-07-18 10:16:14.651 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][1db1c6bc-f2ae-4da3-a1fa-400ee95df5a0] socks connection closed\n2025-07-18 10:16:14.744 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 55985 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:17:14.648 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:17:14.650 [info] [command][fb9d4f36-c334-40d3-be1e-c6eeec8889ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""fb9d4f36-c334-40d3-be1e-c6eeec8889ce""}\n2025-07-18 10:17:14.652 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][00df27aa-bb15-4253-9660-165d0d7e518e] received connection request\n2025-07-18 10:17:14.652 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:17:14.889 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][00df27aa-bb15-4253-9660-165d0d7e518e] socks forwarding established\n2025-07-18 10:17:15.061 [info] [command][fb9d4f36-c334-40d3-be1e-c6eeec8889ce] Process exited with code 0\n2025-07-18 10:17:15.062 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][00df27aa-bb15-4253-9660-165d0d7e518e] socks connection closed\n2025-07-18 10:17:15.062 [info] [command][fb9d4f36-c334-40d3-be1e-c6eeec8889ce] Socket close event received\n2025-07-18 10:17:15.236 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 56032 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:18:15.064 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:18:15.066 [info] [command][f806cd5b-d939-4235-b834-b7db0ce7b699] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""f806cd5b-d939-4235-b834-b7db0ce7b699""}\n2025-07-18 10:18:15.067 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][a2e3fe81-bdc5-442e-9221-cc74c6235add] received connection request\n2025-07-18 10:18:15.067 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:18:15.251 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][a2e3fe81-bdc5-442e-9221-cc74c6235add] socks forwarding established\n2025-07-18 10:18:15.382 [info] [command][f806cd5b-d939-4235-b834-b7db0ce7b699] Process exited with code 0\n2025-07-18 10:18:15.383 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][a2e3fe81-bdc5-442e-9221-cc74c6235add] socks connection closed\n2025-07-18 10:18:15.383 [info] [command][f806cd5b-d939-4235-b834-b7db0ce7b699] Socket close event received\n2025-07-18 10:18:15.485 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 54336 for 127.0.0.1 port 38043, connect from 127.0.0.1 port 56094 to 127.0.0.1 port 54336, nchannels 6\n\n2025-07-18 10:19:15.386 [info] [remote-ssh] Pinging remote server on port 54358\n2025-07-18 10:19:15.388 [info] [command][df35a9f5-d2b0-49cd-b0f9-f0b21777ca0c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""96efe026-aae4-459b-a581-903c8f622879"",""id"":""df35a9f5-d2b0-49cd-b0f9-f0b21777ca0c""}\n2025-07-18 10:19:15.389 [info] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:38043][25670ac5-4af4-4589-bfd5-8eacc5a390d2] received connection request\n2025-07-18 10:19:15.390 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:19:34.903 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-18 10:19:34.903 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-18 10:19:34.912 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:46063][e7cf507d-27e9-4956-9c2f-166a49b79b91] received connection request\n2025-07-18 10:19:34.912 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:19:37.912 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-18 10:19:37.912 [error] Failed to connect to Cursor server at http://127.0.0.1:54357, attempt 1 of 3 This operation was aborted\n2025-07-18 10:19:37.916 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:46063][b2be5c16-35ed-4750-ae86-42044b998023] received connection request\n2025-07-18 10:19:37.916 [info] (ssh_tunnel) stderr: debug1: Connection to port 54336 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:19:37.993 [info] Terminating existing SSH process with pid: 11452\n2025-07-18 10:19:37.994 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 10:19:37.999 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-18 10:19:37.999 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:54336 -> 127.0.0.1:46063][3a3db5ed-0de3-4894-b475-ab48545de7fc] socks connection closed\n2025-07-18 10:19:37.999 [error] [forwarding][multiplex][127.0.0.1:54358 -> 127.0.0.1:54336 -> 127.0.0.1:38043][25670ac5-4af4-4589-bfd5-8eacc5a390d2] error while creating socks forwarding Socket closed\n2025-07-18 10:19:37.999 [info] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:54336 -> 127.0.0.1:46063][f7852c77-ddc2-43ee-bf57-6ce229f83d9b] socks connection closed\n2025-07-18 10:19:37.999 [error] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:54336 -> 127.0.0.1:46063][e7cf507d-27e9-4956-9c2f-166a49b79b91] error while creating socks forwarding Socket closed\n2025-07-18 10:19:37.999 [error] [forwarding][code][127.0.0.1:54357 -> 127.0.0.1:54336 -> 127.0.0.1:46063][b2be5c16-35ed-4750-ae86-42044b998023] error while creating socks forwarding Socket closed\n2025-07-18 10:19:38.000 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-9VhPKr/socket.sock\n2025-07-18 10:19:38.000 [info] [command][df35a9f5-d2b0-49cd-b0f9-f0b21777ca0c] Socket end event received\n2025-07-18 10:19:38.000 [info] [command][df35a9f5-d2b0-49cd-b0f9-f0b21777ca0c] Socket close event received\n2025-07-18 10:19:38.003 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_54890.sh"" | ssh -v -T -D 56813 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:19:38.003 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:19:38.003 [info] Waiting for server to install via process(12277)...\n2025-07-18 10:19:38.010 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 10:19:38.010 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:19:38.011 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:19:38.011 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:19:38.012 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:19:38.915 [error] Failed to connect to Cursor server at http://127.0.0.1:54357, attempt 2 of 3 This operation was aborted\n2025-07-18 10:19:39.919 [error] Failed to connect to Cursor server at http://127.0.0.1:54357, attempt 3 of 3 This operation was aborted\n2025-07-18 10:19:39.919 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-18 10:19:39.919 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-18 10:20:20.622 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 10:20:20.633 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:20:20.634 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:20:20.634 [info] Retrying connection in 5 seconds...\n2025-07-18 10:20:25.635 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_54890.sh\n2025-07-18 10:20:25.636 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.21/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-9VhPKr/socket.sock\n2025-07-18 10:20:25.638 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35198.sh"" | ssh -v -T -D 57297 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:20:25.638 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:20:25.638 [info] Waiting for server to install via process(12323)...\n2025-07-18 10:20:25.652 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 10:20:25.652 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-18 10:20:25.653 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:20:25.653 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\n\n2025-07-18 10:20:25.653 [info] (ssh_tunnel) stderr: debug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:20:25.653 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:20:25.654 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:20:26.161 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 10:20:26.161 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\n\n2025-07-18 10:20:26.161 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\n\n2025-07-18 10:20:26.162 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 10:20:26.162 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-18 10:20:26.162 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\n\n2025-07-18 10:20:26.162 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-18 10:20:26.162 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 10:20:26.485 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 10:20:26.486 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-18 10:20:26.486 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 10:20:26.785 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 10:20:26.785 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 10:20:27.135 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 10:20:27.137 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 10:20:27.140 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-18 10:20:27.140 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 10:20:27.804 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 10:20:28.164 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 10:20:28.167 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-18 10:20:28.167 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 10:20:29.175 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 10:20:30.217 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 10:20:30.320 [info] Askpass server received request: POST /\n2025-07-18 10:20:30.321 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 10:20:30.321 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 10:26:54.738 [info] (ssh_tunnel) stderr: Connection closed by 141.52.43.19 port 22\n\n2025-07-18 10:26:54.739 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:26:54.740 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:26:54.740 [error] Failed to connect after 2 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:26:54.740 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35198.sh\n2025-07-18 10:26:54.741 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:27:01.124 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-18 10:27:01.139 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:27:01.140 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 10:27:01.142 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:27:01.144 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_27961.sh"" | ssh -v -T -D 57741 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:27:01.144 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:27:01.144 [info] Waiting for server to install via process(12527)...\n2025-07-18 10:27:01.150 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 10:27:01.150 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:27:01.150 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:27:01.150 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:27:01.151 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:27:01.246 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 10:27:01.246 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 10:27:01.247 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-18 10:27:01.247 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-18 10:27:01.247 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 10:27:01.347 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 10:27:01.349 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-18 10:27:01.349 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 10:27:01.459 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 10:27:01.459 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 10:27:01.551 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 10:27:01.553 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-18 10:27:01.553 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 10:27:01.558 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-18 10:27:01.558 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 10:27:01.801 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 10:27:01.902 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 10:27:01.907 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-18 10:27:01.908 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\n\n2025-07-18 10:27:01.908 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 10:27:02.571 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\n\n2025-07-18 10:27:02.571 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 10:27:02.684 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 10:27:03.154 [info] Askpass server received request: POST /\n2025-07-18 10:27:03.154 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 10:27:03.154 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 10:27:12.919 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 10:27:13.016 [info] Askpass server received request: POST /\n2025-07-18 10:27:13.016 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-18 10:27:13.016 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-18 10:27:17.141 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:57741 forwarded to remote address socks:0\n\n2025-07-18 10:27:17.142 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 57741.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 57741.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-18 10:27:17.449 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-18 10:27:17.450 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-18 10:27:17.457 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-18 10:27:17.547 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-18 10:27:20.807 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-18 10:27:20.991 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 10:27:21.002 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-18 10:27:21.042 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-18 10:27:21.086 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-18 10:27:21.244 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-18 10:27:21.271 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 10:27:21.312 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-18 10:27:21.317 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-18 10:27:21.329 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js c2616ebb-f11e-4a07-8459-b65dbf14a974\n\n2025-07-18 10:27:21.340 [info] (ssh_tunnel) stdout: Multiplex server started with PID 666054 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\n\n2025-07-18 10:27:21.354 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 10:27:21.882 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-18 10:27:22.092 [info] (ssh_tunnel) stdout: Code server script is already running /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server. Running processes are 3080454 sh /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\n\n2025-07-18 10:27:22.094 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 10:27:22.121 [info] (ssh_tunnel) stdout: e5ab9a809bf2d1dc432941ad: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==34919==\nmultiplexConnectionToken==c2616ebb-f11e-4a07-8459-b65dbf14a974==\ncodeListeningOn==46063==\ncodeConnectionToken==f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\ne5ab9a809bf2d1dc432941ad: end\n\n2025-07-18 10:27:22.122 [info] Server install command exit code: 0\n2025-07-18 10:27:22.122 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_27961.sh\n2025-07-18 10:27:22.128 [info] [forwarding][code] creating new forwarding server\n2025-07-18 10:27:22.129 [info] [forwarding][code] server listening on 127.0.0.1:57755\n2025-07-18 10:27:22.129 [info] [forwarding][code] Set up server\n2025-07-18 10:27:22.129 [info] [remote-ssh] codeListeningOn (remote=[object Object]; local=[object Object]) codeConnectionToken: f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b\n2025-07-18 10:27:22.129 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-18 10:27:22.129 [info] [forwarding][multiplex] server listening on 127.0.0.1:57756\n2025-07-18 10:27:22.129 [info] [forwarding][multiplex] Set up server\n2025-07-18 10:27:22.130 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: c2616ebb-f11e-4a07-8459-b65dbf14a974\n2025-07-18 10:27:22.130 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:27:22.158 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][7f9459d7-a5c7-4f55-a6e1-a6f04824702e] received connection request\n2025-07-18 10:27:22.159 [info] [command][d982336e-b0b6-4be2-86e7-e62451e776e9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""d982336e-b0b6-4be2-86e7-e62451e776e9""}\n2025-07-18 10:27:22.159 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:27:22.159 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 10:27:22.174 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:46063][ef0e4f73-e79c-4aec-bf3b-66f4e14a6197] received connection request\n2025-07-18 10:27:22.176 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:27:22.267 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][7f9459d7-a5c7-4f55-a6e1-a6f04824702e] socks forwarding established\n2025-07-18 10:27:22.270 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:57741 -> 127.0.0.1:46063][ef0e4f73-e79c-4aec-bf3b-66f4e14a6197] socks forwarding established\n2025-07-18 10:27:22.393 [info] [command][d982336e-b0b6-4be2-86e7-e62451e776e9] Process exited with code 0\n2025-07-18 10:27:22.393 [info] [command][d982336e-b0b6-4be2-86e7-e62451e776e9] Socket close event received\n2025-07-18 10:27:22.396 [info] Successfully connected to Cursor server at http://127.0.0.1:57755/version\n2025-07-18 10:27:22.396 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-18 10:27:22.397 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][ca942896-8548-461f-9e04-be1d66c91489] received connection request\n2025-07-18 10:27:22.397 [info] [command][52edef19-a31d-42e6-bed2-e35cfeb2370e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""52edef19-a31d-42e6-bed2-e35cfeb2370e""}\n2025-07-18 10:27:22.397 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:27:22.400 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][7f9459d7-a5c7-4f55-a6e1-a6f04824702e] socks connection closed\n2025-07-18 10:27:22.521 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 57758 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:27:22.521 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][ca942896-8548-461f-9e04-be1d66c91489] socks forwarding established\n2025-07-18 10:27:22.642 [info] [command][52edef19-a31d-42e6-bed2-e35cfeb2370e] Process exited with code 0\n2025-07-18 10:27:22.643 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-18 10:27:22.643 [info] [remote-ssh] Resolved exec server. Socks port: 57741\n2025-07-18 10:27:22.643 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":57755,""connectionToken"":""f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b"",""extensionHostEnv"":{}}. Socks port: 57741\n2025-07-18 10:27:22.643 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][ca942896-8548-461f-9e04-be1d66c91489] socks connection closed\n2025-07-18 10:27:22.643 [info] [command][52edef19-a31d-42e6-bed2-e35cfeb2370e] Socket close event received\n2025-07-18 10:27:22.707 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:46063][d0eca1b6-ade4-433c-8350-990f91798de7] received connection request\n2025-07-18 10:27:22.707 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\n\n2025-07-18 10:27:22.707 [info] (ssh_tunnel) stderr: debug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:27:22.764 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 57762 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:27:22.858 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:57741 -> 127.0.0.1:46063][d0eca1b6-ade4-433c-8350-990f91798de7] socks forwarding established\n2025-07-18 10:27:23.199 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:46063][1f52bd5f-f084-432a-b928-428700559d62] received connection request\n2025-07-18 10:27:23.200 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:27:23.337 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:57741 -> 127.0.0.1:46063][1f52bd5f-f084-432a-b928-428700559d62] socks forwarding established\n2025-07-18 10:27:23.933 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-18 10:27:25.769 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 46063, connect from 127.0.0.1 port 57760 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:27:25.769 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:57741 -> 127.0.0.1:46063][ef0e4f73-e79c-4aec-bf3b-66f4e14a6197] socks connection closed\n2025-07-18 10:27:33.081 [info] [tunnel-forwarding][localhost:8791 -> localhost:8791] server listening\n2025-07-18 10:27:33.081 [info] Cross binding to [::1]:8791. Originally bound to 127.0.0.1:8791\n2025-07-18 10:27:33.081 [info] [tunnel-forwarding][::1:8791 -> localhost:8791] server listening\n2025-07-18 10:28:22.397 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:28:22.398 [info] [command][d461fca1-171c-483f-8989-6ec4d9b42655] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""d461fca1-171c-483f-8989-6ec4d9b42655""}\n2025-07-18 10:28:22.398 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][c9e1f767-29c7-48c9-b1f1-da305e0901e2] received connection request\n2025-07-18 10:28:22.399 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:28:22.819 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][c9e1f767-29c7-48c9-b1f1-da305e0901e2] socks forwarding established\n2025-07-18 10:28:22.999 [info] [command][d461fca1-171c-483f-8989-6ec4d9b42655] Process exited with code 0\n2025-07-18 10:28:23.000 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][c9e1f767-29c7-48c9-b1f1-da305e0901e2] socks connection closed\n2025-07-18 10:28:23.000 [info] [command][d461fca1-171c-483f-8989-6ec4d9b42655] Socket close event received\n2025-07-18 10:28:23.176 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58006 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:29:23.003 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:29:23.005 [info] [command][11922909-9978-4289-8177-b8db36a45f7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""11922909-9978-4289-8177-b8db36a45f7a""}\n2025-07-18 10:29:23.005 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][53638a62-d83a-4034-ab7e-51d0580ecf29] received connection request\n2025-07-18 10:29:23.005 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:29:23.128 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][53638a62-d83a-4034-ab7e-51d0580ecf29] socks forwarding established\n2025-07-18 10:29:23.238 [info] [command][11922909-9978-4289-8177-b8db36a45f7a] Process exited with code 0\n2025-07-18 10:29:23.238 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][53638a62-d83a-4034-ab7e-51d0580ecf29] socks connection closed\n2025-07-18 10:29:23.238 [info] [command][11922909-9978-4289-8177-b8db36a45f7a] Socket close event received\n2025-07-18 10:29:23.332 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58030 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:30:23.242 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:30:23.244 [info] [command][5bcb2165-95f8-44d5-86e1-2ec943318288] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""5bcb2165-95f8-44d5-86e1-2ec943318288""}\n2025-07-18 10:30:23.245 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][c83b256f-928b-4497-b752-694de42a8b3c] received connection request\n2025-07-18 10:30:23.246 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:30:23.334 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][c83b256f-928b-4497-b752-694de42a8b3c] socks forwarding established\n2025-07-18 10:30:23.438 [info] [command][5bcb2165-95f8-44d5-86e1-2ec943318288] Process exited with code 0\n2025-07-18 10:30:23.438 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][c83b256f-928b-4497-b752-694de42a8b3c] socks connection closed\n2025-07-18 10:30:23.438 [info] [command][5bcb2165-95f8-44d5-86e1-2ec943318288] Socket close event received\n2025-07-18 10:30:23.547 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58125 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:31:23.440 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:31:23.444 [info] [command][60277f49-38af-4805-a8cc-6153d3855b55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""60277f49-38af-4805-a8cc-6153d3855b55""}\n2025-07-18 10:31:23.445 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][bc2a0e72-069e-4d3f-965c-cff7c9b1af08] received connection request\n2025-07-18 10:31:23.446 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:31:23.557 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][bc2a0e72-069e-4d3f-965c-cff7c9b1af08] socks forwarding established\n2025-07-18 10:31:23.681 [info] [command][60277f49-38af-4805-a8cc-6153d3855b55] Process exited with code 0\n2025-07-18 10:31:23.682 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][bc2a0e72-069e-4d3f-965c-cff7c9b1af08] socks connection closed\n2025-07-18 10:31:23.682 [info] [command][60277f49-38af-4805-a8cc-6153d3855b55] Socket close event received\n2025-07-18 10:31:23.784 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58154 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:32:23.686 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:32:23.688 [info] [command][c6224451-73ed-4a88-b2ec-7058b5706f3c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""c6224451-73ed-4a88-b2ec-7058b5706f3c""}\n2025-07-18 10:32:23.688 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][4fdf49f8-4d90-4be8-80d1-07f3840b2735] received connection request\n2025-07-18 10:32:23.689 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:32:23.796 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][4fdf49f8-4d90-4be8-80d1-07f3840b2735] socks forwarding established\n2025-07-18 10:32:23.904 [info] [command][c6224451-73ed-4a88-b2ec-7058b5706f3c] Process exited with code 0\n2025-07-18 10:32:23.905 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][4fdf49f8-4d90-4be8-80d1-07f3840b2735] socks connection closed\n2025-07-18 10:32:23.905 [info] [command][c6224451-73ed-4a88-b2ec-7058b5706f3c] Socket close event received\n2025-07-18 10:32:24.000 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58415 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:33:23.906 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:33:23.909 [info] [command][e416e201-c607-4490-b314-d21d5f279562] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""e416e201-c607-4490-b314-d21d5f279562""}\n2025-07-18 10:33:23.909 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][ed7f1a85-d4d0-45be-a09e-326faeb822ff] received connection request\n2025-07-18 10:33:23.910 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:33:24.006 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][ed7f1a85-d4d0-45be-a09e-326faeb822ff] socks forwarding established\n2025-07-18 10:33:24.124 [info] [command][e416e201-c607-4490-b314-d21d5f279562] Process exited with code 0\n2025-07-18 10:33:24.124 [info] [command][e416e201-c607-4490-b314-d21d5f279562] Socket close event received\n2025-07-18 10:33:24.124 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][ed7f1a85-d4d0-45be-a09e-326faeb822ff] socks connection closed\n2025-07-18 10:33:24.213 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58477 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:34:24.128 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:34:24.130 [info] [command][e755a578-7185-4311-aa1b-074619edf856] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""e755a578-7185-4311-aa1b-074619edf856""}\n2025-07-18 10:34:24.130 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][a63f4075-5f95-436d-b073-4f4440e5e971] received connection request\n2025-07-18 10:34:24.131 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:34:24.347 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][a63f4075-5f95-436d-b073-4f4440e5e971] socks forwarding established\n2025-07-18 10:34:24.480 [info] [command][e755a578-7185-4311-aa1b-074619edf856] Process exited with code 0\n2025-07-18 10:34:24.481 [info] [command][e755a578-7185-4311-aa1b-074619edf856] Socket close event received\n2025-07-18 10:34:24.485 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][a63f4075-5f95-436d-b073-4f4440e5e971] socks connection closed\n2025-07-18 10:34:24.691 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58498 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:35:24.485 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:35:24.488 [info] [command][b149ddc0-605a-45b9-b262-16d3c33cdaf8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""b149ddc0-605a-45b9-b262-16d3c33cdaf8""}\n2025-07-18 10:35:24.489 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][9bf29a5b-0f28-4ca0-8073-4c5750a11b34] received connection request\n2025-07-18 10:35:24.489 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:35:24.586 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][9bf29a5b-0f28-4ca0-8073-4c5750a11b34] socks forwarding established\n2025-07-18 10:35:24.822 [info] [command][b149ddc0-605a-45b9-b262-16d3c33cdaf8] Process exited with code 0\n2025-07-18 10:35:24.822 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][9bf29a5b-0f28-4ca0-8073-4c5750a11b34] socks connection closed\n2025-07-18 10:35:24.822 [info] [command][b149ddc0-605a-45b9-b262-16d3c33cdaf8] Socket close event received\n2025-07-18 10:35:24.993 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58534 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:36:24.824 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:36:24.828 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][b3918447-6b57-4e29-8e32-99a1a87c8d14] received connection request\n2025-07-18 10:36:24.829 [info] [command][994fec91-66e5-45b0-9e0f-042b848f639e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""994fec91-66e5-45b0-9e0f-042b848f639e""}\n2025-07-18 10:36:24.829 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:36:24.944 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][b3918447-6b57-4e29-8e32-99a1a87c8d14] socks forwarding established\n2025-07-18 10:36:25.064 [info] [command][994fec91-66e5-45b0-9e0f-042b848f639e] Process exited with code 0\n2025-07-18 10:36:25.064 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][b3918447-6b57-4e29-8e32-99a1a87c8d14] socks connection closed\n2025-07-18 10:36:25.064 [info] [command][994fec91-66e5-45b0-9e0f-042b848f639e] Socket close event received\n2025-07-18 10:36:25.184 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58578 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:37:25.065 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:37:25.068 [info] [command][b7c9e1db-2872-44af-83e2-3c451ac27a08] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""b7c9e1db-2872-44af-83e2-3c451ac27a08""}\n2025-07-18 10:37:25.069 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][0865a256-db6b-42fb-839a-78dbc0318781] received connection request\n2025-07-18 10:37:25.069 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:37:25.191 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][0865a256-db6b-42fb-839a-78dbc0318781] socks forwarding established\n2025-07-18 10:37:25.303 [info] [command][b7c9e1db-2872-44af-83e2-3c451ac27a08] Process exited with code 0\n2025-07-18 10:37:25.304 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][0865a256-db6b-42fb-839a-78dbc0318781] socks connection closed\n2025-07-18 10:37:25.304 [info] [command][b7c9e1db-2872-44af-83e2-3c451ac27a08] Socket close event received\n2025-07-18 10:37:25.395 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58645 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:38:25.304 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:38:25.306 [info] [command][64616260-f5e5-499e-8a02-4e9878e69d95] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""64616260-f5e5-499e-8a02-4e9878e69d95""}\n2025-07-18 10:38:25.307 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][c62c150c-db63-4c8c-86ae-df62eb232c49] received connection request\n2025-07-18 10:38:25.307 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:38:25.443 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][c62c150c-db63-4c8c-86ae-df62eb232c49] socks forwarding established\n2025-07-18 10:38:25.548 [info] [command][64616260-f5e5-499e-8a02-4e9878e69d95] Process exited with code 0\n2025-07-18 10:38:25.549 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][c62c150c-db63-4c8c-86ae-df62eb232c49] socks connection closed\n2025-07-18 10:38:25.549 [info] [command][64616260-f5e5-499e-8a02-4e9878e69d95] Socket close event received\n2025-07-18 10:38:25.634 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58679 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:39:25.549 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:39:25.551 [info] [command][e74f6318-763d-4d96-880a-9d6e73561089] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""e74f6318-763d-4d96-880a-9d6e73561089""}\n2025-07-18 10:39:25.551 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][3cba288b-96b9-4dee-bcd6-827b29bfa72c] received connection request\n2025-07-18 10:39:25.552 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:39:27.992 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][3cba288b-96b9-4dee-bcd6-827b29bfa72c] socks forwarding established\n2025-07-18 10:39:28.165 [info] [command][e74f6318-763d-4d96-880a-9d6e73561089] Process exited with code 0\n2025-07-18 10:39:28.165 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][3cba288b-96b9-4dee-bcd6-827b29bfa72c] socks connection closed\n2025-07-18 10:39:28.165 [info] [command][e74f6318-763d-4d96-880a-9d6e73561089] Socket close event received\n2025-07-18 10:39:28.316 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58715 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:40:28.169 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:40:28.172 [info] [command][aa608d3e-5f55-41d5-8b63-f20d87853a97] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""aa608d3e-5f55-41d5-8b63-f20d87853a97""}\n2025-07-18 10:40:28.173 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][dfd7efcc-31d5-4bc4-951d-52d827eecac3] received connection request\n2025-07-18 10:40:28.173 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:40:28.503 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][dfd7efcc-31d5-4bc4-951d-52d827eecac3] socks forwarding established\n2025-07-18 10:40:28.633 [info] [command][aa608d3e-5f55-41d5-8b63-f20d87853a97] Process exited with code 0\n2025-07-18 10:40:28.634 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][dfd7efcc-31d5-4bc4-951d-52d827eecac3] socks connection closed\n2025-07-18 10:40:28.634 [info] [command][aa608d3e-5f55-41d5-8b63-f20d87853a97] Socket close event received\n2025-07-18 10:40:28.730 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58776 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:41:28.633 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:41:28.636 [info] [command][2e1e3cef-d06a-4801-924e-628d248b085c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""2e1e3cef-d06a-4801-924e-628d248b085c""}\n2025-07-18 10:41:28.637 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][a31f1a5b-d412-47ad-950c-2ab260cefabe] received connection request\n2025-07-18 10:41:28.637 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:41:28.919 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][a31f1a5b-d412-47ad-950c-2ab260cefabe] socks forwarding established\n2025-07-18 10:41:29.380 [info] [command][2e1e3cef-d06a-4801-924e-628d248b085c] Process exited with code 0\n2025-07-18 10:41:29.381 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][a31f1a5b-d412-47ad-950c-2ab260cefabe] socks connection closed\n2025-07-18 10:41:29.381 [info] [command][2e1e3cef-d06a-4801-924e-628d248b085c] Socket close event received\n2025-07-18 10:41:30.078 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58869 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:42:29.385 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:42:29.387 [info] [command][9a8e86a1-eb96-402a-8e68-f483dea0b114] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""9a8e86a1-eb96-402a-8e68-f483dea0b114""}\n2025-07-18 10:42:29.388 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][d4f53688-449e-467c-8984-18e0eeb8d68e] received connection request\n2025-07-18 10:42:29.388 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:42:29.486 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][d4f53688-449e-467c-8984-18e0eeb8d68e] socks forwarding established\n2025-07-18 10:42:29.607 [info] [command][9a8e86a1-eb96-402a-8e68-f483dea0b114] Process exited with code 0\n2025-07-18 10:42:29.608 [info] [command][9a8e86a1-eb96-402a-8e68-f483dea0b114] Socket close event received\n2025-07-18 10:42:29.611 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][d4f53688-449e-467c-8984-18e0eeb8d68e] socks connection closed\n2025-07-18 10:42:29.706 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 58980 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:43:29.612 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:43:29.614 [info] [command][28bb20e1-a9fb-4456-898e-e367770034af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""28bb20e1-a9fb-4456-898e-e367770034af""}\n2025-07-18 10:43:29.615 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][6b6fb5cb-8981-4505-a1bc-865838cc9105] received connection request\n2025-07-18 10:43:29.616 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:43:29.706 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][6b6fb5cb-8981-4505-a1bc-865838cc9105] socks forwarding established\n2025-07-18 10:43:29.839 [info] [command][28bb20e1-a9fb-4456-898e-e367770034af] Process exited with code 0\n2025-07-18 10:43:29.840 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][6b6fb5cb-8981-4505-a1bc-865838cc9105] socks connection closed\n2025-07-18 10:43:29.840 [info] [command][28bb20e1-a9fb-4456-898e-e367770034af] Socket close event received\n2025-07-18 10:43:29.948 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 59051 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:44:29.843 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:44:29.844 [info] [command][b9380927-92a7-4c3b-bf5c-3e19b7cb191c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""b9380927-92a7-4c3b-bf5c-3e19b7cb191c""}\n2025-07-18 10:44:29.845 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][54b37d6d-652f-4aa2-aa66-d08f3815ef7f] received connection request\n2025-07-18 10:44:29.846 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:44:30.146 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][54b37d6d-652f-4aa2-aa66-d08f3815ef7f] socks forwarding established\n2025-07-18 10:44:30.321 [info] [command][b9380927-92a7-4c3b-bf5c-3e19b7cb191c] Process exited with code 0\n2025-07-18 10:44:30.321 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][54b37d6d-652f-4aa2-aa66-d08f3815ef7f] socks connection closed\n2025-07-18 10:44:30.321 [info] [command][b9380927-92a7-4c3b-bf5c-3e19b7cb191c] Socket close event received\n2025-07-18 10:44:30.500 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 59094 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:45:30.325 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:45:30.327 [info] [command][24c764da-5612-4742-9200-5e43c842fee9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""24c764da-5612-4742-9200-5e43c842fee9""}\n2025-07-18 10:45:30.327 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:34919][cbf3b60d-5d65-4cbb-88fd-d9c488eabf0a] received connection request\n2025-07-18 10:45:30.328 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:45:30.452 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][cbf3b60d-5d65-4cbb-88fd-d9c488eabf0a] socks forwarding established\n2025-07-18 10:45:30.579 [info] [command][24c764da-5612-4742-9200-5e43c842fee9] Process exited with code 0\n2025-07-18 10:45:30.579 [info] [forwarding][multiplex][127.0.0.1:57756 -> 127.0.0.1:57741 -> 127.0.0.1:34919][cbf3b60d-5d65-4cbb-88fd-d9c488eabf0a] socks connection closed\n2025-07-18 10:45:30.579 [info] [command][24c764da-5612-4742-9200-5e43c842fee9] Socket close event received\n2025-07-18 10:45:30.698 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 57741 for 127.0.0.1 port 34919, connect from 127.0.0.1 port 59167 to 127.0.0.1 port 57741, nchannels 6\n\n2025-07-18 10:45:37.067 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-18 10:45:37.067 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-18 10:45:37.184 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:46063][b7759d9b-8af1-4acb-ad49-cf4880f919cc] received connection request\n2025-07-18 10:45:37.190 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:46063][d7c126a3-623d-4072-b0d3-412eaee6146c] received connection request\n2025-07-18 10:45:37.198 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\ndebug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:45:40.080 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-18 10:45:40.081 [error] Failed to connect to Cursor server at http://127.0.0.1:57755, attempt 1 of 3 This operation was aborted\n2025-07-18 10:45:40.090 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:46063][a4081c48-09cd-488f-b40b-299ef11d5d97] received connection request\n2025-07-18 10:45:40.091 [info] (ssh_tunnel) stderr: debug1: Connection to port 57741 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:45:40.292 [info] Terminating existing SSH process with pid: 12527\n2025-07-18 10:45:40.293 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 10:45:40.293 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-18 10:45:40.293 [error] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:57741 -> 127.0.0.1:46063][a4081c48-09cd-488f-b40b-299ef11d5d97] error while creating socks forwarding Socket closed\n2025-07-18 10:45:40.293 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:45:40.294 [error] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:57741 -> 127.0.0.1:46063][b7759d9b-8af1-4acb-ad49-cf4880f919cc] error while creating socks forwarding Socket closed\n2025-07-18 10:45:40.294 [error] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:57741 -> 127.0.0.1:46063][d7c126a3-623d-4072-b0d3-412eaee6146c] error while creating socks forwarding Socket closed\n2025-07-18 10:45:40.294 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:57741 -> 127.0.0.1:46063][d0eca1b6-ade4-433c-8350-990f91798de7] socks connection closed\n2025-07-18 10:45:40.294 [info] [forwarding][code][127.0.0.1:57755 -> 127.0.0.1:57741 -> 127.0.0.1:46063][1f52bd5f-f084-432a-b928-428700559d62] socks connection closed\n2025-07-18 10:45:40.297 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_76559.sh"" | ssh -v -T -D 59183 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:45:40.297 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:45:40.297 [info] Waiting for server to install via process(13083)...\n2025-07-18 10:45:40.356 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 10:45:40.356 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:45:40.357 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:45:40.357 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:45:40.357 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:45:40.358 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 10:45:40.359 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:45:40.359 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:45:40.359 [info] Retrying connection in 5 seconds...\n2025-07-18 10:45:41.087 [error] Failed to connect to Cursor server at http://127.0.0.1:57755, attempt 2 of 3 This operation was aborted\n2025-07-18 10:45:42.106 [error] Failed to connect to Cursor server at http://127.0.0.1:57755, attempt 3 of 3 This operation was aborted\n2025-07-18 10:45:42.107 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-18 10:45:42.107 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-18 10:49:18.955 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_76559.sh\n2025-07-18 10:49:18.956 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:57756\n2025-07-18 10:49:18.957 [error] [forwarding][multiplex][127.0.0.1:57756 -> unknown}][16769f16-4542-4bdd-9f46-8679ab46d763] remote server not configured\n2025-07-18 10:49:18.958 [info] [command][fe36c4ab-5bae-4dec-b134-facb15f78330] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c2616ebb-f11e-4a07-8459-b65dbf14a974"",""id"":""fe36c4ab-5bae-4dec-b134-facb15f78330""}\n2025-07-18 10:49:18.958 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:49:18.958 [error] [command][fe36c4ab-5bae-4dec-b134-facb15f78330] Socket error: Error: read ECONNRESET\n2025-07-18 10:49:18.959 [info] [command][fe36c4ab-5bae-4dec-b134-facb15f78330] Socket close event received\n2025-07-18 10:49:18.976 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3680.sh"" | ssh -v -T -D 59185 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:49:18.976 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:49:18.976 [info] Waiting for server to install via process(13097)...\n2025-07-18 10:49:19.118 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:49:19.125 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\ndebug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:49:19.144 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 10:49:19.144 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:49:19.144 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:49:19.144 [info] Retrying connection in 5 seconds...\n2025-07-18 10:49:24.150 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_3680.sh\n2025-07-18 10:49:24.151 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:49:24.154 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_25668.sh"" | ssh -v -T -D 59190 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:49:24.154 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:49:24.154 [info] Waiting for server to install via process(13132)...\n2025-07-18 10:49:24.170 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 10:49:24.170 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:49:24.171 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:49:24.171 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:49:24.172 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:49:24.172 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 10:49:24.173 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:49:24.173 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:49:24.173 [info] Retrying connection in 5 seconds...\n2025-07-18 10:49:29.176 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_25668.sh\n2025-07-18 10:49:29.177 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:49:29.180 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_38903.sh"" | ssh -v -T -D 59191 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:49:29.181 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:49:29.181 [info] Waiting for server to install via process(13137)...\n2025-07-18 10:49:29.200 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-18 10:49:29.200 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:49:29.201 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:49:29.201 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:49:29.201 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:49:29.202 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 10:49:29.203 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:49:29.203 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:49:29.203 [info] Retrying connection in 5 seconds...\n2025-07-18 10:49:34.206 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_38903.sh\n2025-07-18 10:49:34.206 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:49:34.208 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_61936.sh"" | ssh -v -T -D 59192 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:49:34.209 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:49:34.209 [info] Waiting for server to install via process(13150)...\n2025-07-18 10:49:34.240 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-18 10:49:34.240 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:49:34.241 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\ndebug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:49:34.243 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 10:49:34.244 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:49:34.244 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:49:34.244 [info] Retrying connection in 5 seconds...\n2025-07-18 10:49:39.248 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_61936.sh\n2025-07-18 10:49:39.249 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:49:39.250 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_86421.sh"" | ssh -v -T -D 59193 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:49:39.250 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:49:39.250 [info] Waiting for server to install via process(13158)...\n2025-07-18 10:49:39.258 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-18 10:49:39.258 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:49:39.259 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:49:39.259 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:49:39.259 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:49:39.260 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 10:49:39.261 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:49:39.261 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:49:39.261 [info] Retrying connection in 5 seconds...\n2025-07-18 10:49:44.266 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_86421.sh\n2025-07-18 10:49:44.268 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:49:44.270 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1557.sh"" | ssh -v -T -D 59194 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:49:44.271 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:49:44.271 [info] Waiting for server to install via process(13165)...\n2025-07-18 10:49:44.285 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-18 10:49:44.285 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:49:44.285 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:49:44.285 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:49:44.286 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:49:44.286 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 10:49:44.287 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:49:44.287 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:49:44.287 [info] Retrying connection in 5 seconds...\n2025-07-18 10:49:49.291 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_1557.sh\n2025-07-18 10:49:49.292 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:49:49.296 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_21450.sh"" | ssh -v -T -D 59213 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:49:49.296 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:49:49.297 [info] Waiting for server to install via process(13180)...\n2025-07-18 10:49:49.308 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-18 10:49:49.308 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-18 10:49:49.308 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:49:49.310 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\n\n2025-07-18 10:49:49.310 [info] (ssh_tunnel) stderr: debug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\ndebug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:49:49.310 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:49:50.635 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 10:49:50.652 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:49:50.653 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:49:50.653 [info] Retrying connection in 5 seconds...\n2025-07-18 10:49:55.658 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_21450.sh\n2025-07-18 10:49:55.658 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-nrCTbA/socket.sock\n2025-07-18 10:49:55.661 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_15987.sh"" | ssh -v -T -D 59314 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:49:55.661 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:49:55.661 [info] Waiting for server to install via process(13202)...\n2025-07-18 10:49:55.673 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-18 10:49:55.673 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:49:55.673 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:49:55.673 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:49:55.674 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:49:56.152 [info] (ssh_tunnel) stderr: debug1: Connection established.\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\n\n2025-07-18 10:49:56.152 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 10:49:56.153 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\ndebug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 10:49:56.470 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 10:49:56.472 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-18 10:49:56.472 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 10:49:56.663 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 10:49:56.664 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 10:49:56.827 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 10:49:56.829 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 10:49:56.834 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-18 10:49:56.834 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 10:49:57.192 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 10:49:57.338 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 10:49:57.356 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\ndebug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \n\n2025-07-18 10:49:57.356 [info] (ssh_tunnel) stderr: debug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 10:49:58.123 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 10:49:58.256 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 10:49:58.366 [info] Askpass server received request: POST /\n2025-07-18 10:49:58.366 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 10:49:58.366 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 10:52:37.325 [info] (ssh_tunnel) stderr: Connection closed by 141.52.43.19 port 22\n\n2025-07-18 10:52:37.326 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 10:52:37.326 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:52:37.326 [error] Failed to connect after 9 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:52:37.326 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_15987.sh\n2025-07-18 10:52:37.327 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 10:52:45.440 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-18 10:52:45.454 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-mNNS0K/socket.sock\n2025-07-18 10:52:45.455 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 10:52:45.457 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-mNNS0K/socket.sock\n2025-07-18 10:52:45.459 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_93923.sh"" | ssh -v -T -D 59755 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 10:52:45.459 [info] Started installation script. Waiting for it to finish...\n2025-07-18 10:52:45.459 [info] Waiting for server to install via process(13347)...\n2025-07-18 10:52:45.465 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 10:52:45.466 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 10:52:45.466 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 10:52:45.466 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 10:52:45.466 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 10:52:45.620 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 10:52:45.621 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\n\n2025-07-18 10:52:45.621 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 10:52:45.623 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-18 10:52:45.623 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-18 10:52:45.623 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 10:52:45.726 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 10:52:45.727 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\n\n2025-07-18 10:52:45.727 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 10:52:45.821 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\n\n2025-07-18 10:52:45.821 [info] (ssh_tunnel) stderr: debug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 10:52:45.822 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 10:52:45.922 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\n\n2025-07-18 10:52:45.923 [info] (ssh_tunnel) stderr: debug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 10:52:45.924 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-18 10:52:45.924 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 10:52:45.928 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\ndebug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 10:52:46.160 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 10:52:46.264 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 10:52:46.269 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-18 10:52:46.270 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 10:52:46.939 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\n\n2025-07-18 10:52:46.939 [info] (ssh_tunnel) stderr: debug1: Next authentication method: keyboard-interactive\n\n2025-07-18 10:52:47.040 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 10:52:47.178 [info] Askpass server received request: POST /\n2025-07-18 10:52:47.178 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 10:52:47.178 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 10:52:51.090 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 10:52:51.190 [info] Askpass server received request: POST /\n2025-07-18 10:52:51.190 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-18 10:52:51.190 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-18 10:52:56.660 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.20]:22) using ""keyboard-interactive"".\n\n2025-07-18 10:52:56.661 [info] (ssh_tunnel) stderr: debug1: Local connections to LOCALHOST:59755 forwarded to remote address socks:0\ndebug1: Local forwarding listening on ::1 port 59755.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 59755.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\n\n2025-07-18 10:52:56.662 [info] (ssh_tunnel) stderr: debug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-18 10:52:56.980 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-18 10:52:56.981 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-18 10:52:57.047 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-18 10:52:57.067 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-18 10:53:03.065 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-18 10:53:03.214 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 10:53:03.240 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-18 10:53:03.303 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-18 10:53:03.444 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-18 10:53:03.478 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-18 10:53:03.624 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nCreating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\nWriting multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\nStarting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js 196baa0c-1824-4771-8334-ad2cd8b9c561\nMultiplex server started with PID 3927893 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\n\n2025-07-18 10:53:03.624 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 10:53:04.281 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-18 10:53:04.283 [info] (ssh_tunnel) stdout: Code server script is not running\nCreating code server token file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2\nStarting code server script /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2 &\nCode server started with PID 3927944 and wrote pid to file /run/user/996262/cursor-remote-code.pid.6466bb070dac1873f8109b0fb795a5a2\nCode server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 10:53:04.820 [info] (ssh_tunnel) stdout: a79e1128690107cf2accd43b: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==34959==\nmultiplexConnectionToken==196baa0c-1824-4771-8334-ad2cd8b9c561==\ncodeListeningOn==43977==\ncodeConnectionToken==70eb145a-e6c5-4ab0-b258-d4237fe3d23a==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\na79e1128690107cf2accd43b: end\n\n2025-07-18 10:53:04.822 [info] Server install command exit code: 0\n2025-07-18 10:53:04.822 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_93923.sh\n2025-07-18 10:53:04.823 [info] [forwarding][code] creating new forwarding server\n2025-07-18 10:53:04.824 [info] [forwarding][code] server listening on 127.0.0.1:59798\n2025-07-18 10:53:04.824 [info] [forwarding][code] Set up server\n2025-07-18 10:53:04.824 [info] [remote-ssh] codeListeningOn (remote=[object Object]; local=[object Object]) codeConnectionToken: 70eb145a-e6c5-4ab0-b258-d4237fe3d23a\n2025-07-18 10:53:04.824 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-18 10:53:04.824 [info] [forwarding][multiplex] server listening on 127.0.0.1:59799\n2025-07-18 10:53:04.824 [info] [forwarding][multiplex] Set up server\n2025-07-18 10:53:04.826 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: 196baa0c-1824-4771-8334-ad2cd8b9c561\n2025-07-18 10:53:04.826 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 10:53:04.830 [info] [command][0b5b7321-09f0-405e-8f25-572adc749c71] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""0b5b7321-09f0-405e-8f25-572adc749c71""}\n2025-07-18 10:53:04.831 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][d84cf67f-bd33-44b3-baf5-20bc98a9cf87] received connection request\n2025-07-18 10:53:04.832 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:53:04.836 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 10:53:04.929 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:43977][55f0f6c2-270c-4a88-a120-329abfde0831] received connection request\n2025-07-18 10:53:04.939 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\n\n2025-07-18 10:53:04.939 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:53:04.998 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][d84cf67f-bd33-44b3-baf5-20bc98a9cf87] socks forwarding established\n2025-07-18 10:53:05.155 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:59755 -> 127.0.0.1:43977][55f0f6c2-270c-4a88-a120-329abfde0831] socks forwarding established\n2025-07-18 10:53:05.156 [info] [command][0b5b7321-09f0-405e-8f25-572adc749c71] Process exited with code 0\n2025-07-18 10:53:05.156 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][d84cf67f-bd33-44b3-baf5-20bc98a9cf87] socks connection closed\n2025-07-18 10:53:05.156 [info] [command][0b5b7321-09f0-405e-8f25-572adc749c71] Socket close event received\n2025-07-18 10:53:05.332 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 59801 to 127.0.0.1 port 59755, nchannels 5\n\n2025-07-18 10:53:05.336 [info] Successfully connected to Cursor server at http://127.0.0.1:59798/version\n2025-07-18 10:53:05.336 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-18 10:53:05.337 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][e9c98ff3-f041-4d63-82a8-b220dc8d7105] received connection request\n2025-07-18 10:53:05.337 [info] [command][cd782697-637b-456e-92f3-f36b3f7d9f07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""cd782697-637b-456e-92f3-f36b3f7d9f07""}\n2025-07-18 10:53:05.337 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:53:05.512 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][e9c98ff3-f041-4d63-82a8-b220dc8d7105] socks forwarding established\n2025-07-18 10:53:05.642 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][e9c98ff3-f041-4d63-82a8-b220dc8d7105] socks connection closed\n2025-07-18 10:53:05.643 [info] [command][cd782697-637b-456e-92f3-f36b3f7d9f07] Process exited with code 0\n2025-07-18 10:53:05.643 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-18 10:53:05.643 [info] [remote-ssh] Resolved exec server. Socks port: 59755\n2025-07-18 10:53:05.643 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":59798,""connectionToken"":""70eb145a-e6c5-4ab0-b258-d4237fe3d23a"",""extensionHostEnv"":{}}. Socks port: 59755\n2025-07-18 10:53:05.644 [info] [command][cd782697-637b-456e-92f3-f36b3f7d9f07] Socket close event received\n2025-07-18 10:53:05.706 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:43977][b9a72481-4d72-4ff6-a2aa-93dca564b1cb] received connection request\n2025-07-18 10:53:05.707 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:53:05.849 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 59819 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 10:53:05.850 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:59755 -> 127.0.0.1:43977][b9a72481-4d72-4ff6-a2aa-93dca564b1cb] socks forwarding established\n2025-07-18 10:53:06.041 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:43977][c63184b3-e027-400d-8930-d797e6b7ba95] received connection request\n2025-07-18 10:53:06.041 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:53:06.213 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:59755 -> 127.0.0.1:43977][c63184b3-e027-400d-8930-d797e6b7ba95] socks forwarding established\n2025-07-18 10:53:06.682 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-18 10:53:08.470 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 43977, connect from 127.0.0.1 port 59803 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 10:53:08.470 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:59755 -> 127.0.0.1:43977][55f0f6c2-270c-4a88-a120-329abfde0831] socks connection closed\n2025-07-18 10:53:14.932 [info] [tunnel-forwarding][localhost:8791 -> localhost:8791] server listening\n2025-07-18 10:53:14.932 [info] Cross binding to [::1]:8791. Originally bound to 127.0.0.1:8791\n2025-07-18 10:53:14.932 [info] [tunnel-forwarding][::1:8791 -> localhost:8791] server listening\n2025-07-18 10:54:05.158 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 10:54:05.159 [info] [command][929a923b-0742-41a0-a32c-c7b21c357ccf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""929a923b-0742-41a0-a32c-c7b21c357ccf""}\n2025-07-18 10:54:05.159 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][b930c1db-9360-401f-994b-20d98f180c4c] received connection request\n2025-07-18 10:54:05.160 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:54:05.306 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][b930c1db-9360-401f-994b-20d98f180c4c] socks forwarding established\n2025-07-18 10:54:05.444 [info] [command][929a923b-0742-41a0-a32c-c7b21c357ccf] Process exited with code 0\n2025-07-18 10:54:05.444 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][b930c1db-9360-401f-994b-20d98f180c4c] socks connection closed\n2025-07-18 10:54:05.444 [info] [command][929a923b-0742-41a0-a32c-c7b21c357ccf] Socket close event received\n2025-07-18 10:54:05.560 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 59951 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 10:55:05.445 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 10:55:05.448 [info] [command][859b2195-0e99-4c27-a369-6c62614b658a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""859b2195-0e99-4c27-a369-6c62614b658a""}\n2025-07-18 10:55:05.449 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][b114a200-208f-48a9-831e-c7ac21565a5f] received connection request\n2025-07-18 10:55:05.450 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\n\n2025-07-18 10:55:05.450 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:55:05.563 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][b114a200-208f-48a9-831e-c7ac21565a5f] socks forwarding established\n2025-07-18 10:55:05.715 [info] [command][859b2195-0e99-4c27-a369-6c62614b658a] Process exited with code 0\n2025-07-18 10:55:05.716 [info] [command][859b2195-0e99-4c27-a369-6c62614b658a] Socket close event received\n2025-07-18 10:55:05.717 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][b114a200-208f-48a9-831e-c7ac21565a5f] socks connection closed\n2025-07-18 10:55:05.847 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 59988 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 10:56:05.720 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 10:56:05.722 [info] [command][07909752-5a5a-4519-9d2b-db3d8881c26a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""07909752-5a5a-4519-9d2b-db3d8881c26a""}\n2025-07-18 10:56:05.723 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][dea4280c-4044-4dde-a738-3f44bc95ada9] received connection request\n2025-07-18 10:56:05.724 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:56:05.853 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][dea4280c-4044-4dde-a738-3f44bc95ada9] socks forwarding established\n2025-07-18 10:56:06.012 [info] [command][07909752-5a5a-4519-9d2b-db3d8881c26a] Process exited with code 0\n2025-07-18 10:56:06.013 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][dea4280c-4044-4dde-a738-3f44bc95ada9] socks connection closed\n2025-07-18 10:56:06.013 [info] [command][07909752-5a5a-4519-9d2b-db3d8881c26a] Socket close event received\n2025-07-18 10:56:06.139 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60051 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 10:57:06.014 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 10:57:06.016 [info] [command][7437a2ef-5b80-465c-8d5c-676d2ed14876] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""7437a2ef-5b80-465c-8d5c-676d2ed14876""}\n2025-07-18 10:57:06.016 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][1fa0f17c-0f79-4a6c-bd8f-d6e70146c532] received connection request\n2025-07-18 10:57:06.017 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:57:06.115 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][1fa0f17c-0f79-4a6c-bd8f-d6e70146c532] socks forwarding established\n2025-07-18 10:57:06.231 [info] [command][7437a2ef-5b80-465c-8d5c-676d2ed14876] Process exited with code 0\n2025-07-18 10:57:06.231 [info] [command][7437a2ef-5b80-465c-8d5c-676d2ed14876] Socket close event received\n2025-07-18 10:57:06.231 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][1fa0f17c-0f79-4a6c-bd8f-d6e70146c532] socks connection closed\n2025-07-18 10:57:06.317 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60086 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 10:58:06.230 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 10:58:06.232 [info] [command][3f4762ac-f932-49b6-9f98-0de5e97afbb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""3f4762ac-f932-49b6-9f98-0de5e97afbb5""}\n2025-07-18 10:58:06.232 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][06b7cb15-77f3-4f19-a4fb-33073014ba67] received connection request\n2025-07-18 10:58:06.233 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:58:06.366 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][06b7cb15-77f3-4f19-a4fb-33073014ba67] socks forwarding established\n2025-07-18 10:58:06.525 [info] [command][3f4762ac-f932-49b6-9f98-0de5e97afbb5] Process exited with code 0\n2025-07-18 10:58:06.525 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][06b7cb15-77f3-4f19-a4fb-33073014ba67] socks connection closed\n2025-07-18 10:58:06.526 [info] [command][3f4762ac-f932-49b6-9f98-0de5e97afbb5] Socket close event received\n2025-07-18 10:58:06.617 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60135 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 10:59:06.528 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 10:59:06.530 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][c1fcac9f-2640-448d-b200-9718540805ee] received connection request\n2025-07-18 10:59:06.530 [info] [command][e5c5a98f-06b3-4788-90fa-b05cfa4c31df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""e5c5a98f-06b3-4788-90fa-b05cfa4c31df""}\n2025-07-18 10:59:06.530 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 10:59:06.631 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][c1fcac9f-2640-448d-b200-9718540805ee] socks forwarding established\n2025-07-18 10:59:06.771 [info] [command][e5c5a98f-06b3-4788-90fa-b05cfa4c31df] Process exited with code 0\n2025-07-18 10:59:06.772 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][c1fcac9f-2640-448d-b200-9718540805ee] socks connection closed\n2025-07-18 10:59:06.772 [info] [command][e5c5a98f-06b3-4788-90fa-b05cfa4c31df] Socket close event received\n2025-07-18 10:59:06.946 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60168 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:00:06.776 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:00:06.777 [info] [command][96158d29-4381-4367-951c-fe0a0eec374e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""96158d29-4381-4367-951c-fe0a0eec374e""}\n2025-07-18 11:00:06.779 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][c1a38f81-50b7-49c0-adbd-eb1ae9bc4156] received connection request\n2025-07-18 11:00:06.779 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:00:06.952 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][c1a38f81-50b7-49c0-adbd-eb1ae9bc4156] socks forwarding established\n2025-07-18 11:00:07.161 [info] [command][96158d29-4381-4367-951c-fe0a0eec374e] Process exited with code 0\n2025-07-18 11:00:07.161 [info] [command][96158d29-4381-4367-951c-fe0a0eec374e] Socket close event received\n2025-07-18 11:00:07.162 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][c1a38f81-50b7-49c0-adbd-eb1ae9bc4156] socks connection closed\n2025-07-18 11:00:07.446 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60206 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:01:07.164 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:01:07.165 [info] [command][98aef412-5f88-4e60-bce1-e5a686856dfb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""98aef412-5f88-4e60-bce1-e5a686856dfb""}\n2025-07-18 11:01:07.166 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][bb65fdd3-4a83-4d0e-8a8c-9b2d25139aa7] received connection request\n2025-07-18 11:01:07.166 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:01:07.409 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][bb65fdd3-4a83-4d0e-8a8c-9b2d25139aa7] socks forwarding established\n2025-07-18 11:01:07.565 [info] [command][98aef412-5f88-4e60-bce1-e5a686856dfb] Process exited with code 0\n2025-07-18 11:01:07.565 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][bb65fdd3-4a83-4d0e-8a8c-9b2d25139aa7] socks connection closed\n2025-07-18 11:01:07.566 [info] [command][98aef412-5f88-4e60-bce1-e5a686856dfb] Socket close event received\n2025-07-18 11:01:07.687 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60253 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:02:07.570 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:02:07.572 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][01ea5855-c22c-4258-9790-8b5358fe4811] received connection request\n2025-07-18 11:02:07.572 [info] [command][f6b98b56-2e50-44f9-80de-68fe459c9659] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""f6b98b56-2e50-44f9-80de-68fe459c9659""}\n2025-07-18 11:02:07.572 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:02:07.739 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][01ea5855-c22c-4258-9790-8b5358fe4811] socks forwarding established\n2025-07-18 11:02:07.920 [info] [command][f6b98b56-2e50-44f9-80de-68fe459c9659] Process exited with code 0\n2025-07-18 11:02:07.921 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][01ea5855-c22c-4258-9790-8b5358fe4811] socks connection closed\n2025-07-18 11:02:07.921 [info] [command][f6b98b56-2e50-44f9-80de-68fe459c9659] Socket close event received\n2025-07-18 11:02:08.034 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60278 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:03:07.923 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:03:07.926 [info] [command][5648fc2a-8555-4f15-8ef2-26fad02b6060] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""5648fc2a-8555-4f15-8ef2-26fad02b6060""}\n2025-07-18 11:03:07.926 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][38c97b80-4310-4eb7-8dfa-a1b859094d16] received connection request\n2025-07-18 11:03:07.927 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:03:08.038 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][38c97b80-4310-4eb7-8dfa-a1b859094d16] socks forwarding established\n2025-07-18 11:03:08.145 [info] [command][5648fc2a-8555-4f15-8ef2-26fad02b6060] Process exited with code 0\n2025-07-18 11:03:08.145 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][38c97b80-4310-4eb7-8dfa-a1b859094d16] socks connection closed\n2025-07-18 11:03:08.145 [info] [command][5648fc2a-8555-4f15-8ef2-26fad02b6060] Socket close event received\n2025-07-18 11:03:08.241 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60403 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:04:08.147 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:04:08.149 [info] [command][fb97c138-e2b7-4e71-85c5-4cbeb909ab2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""fb97c138-e2b7-4e71-85c5-4cbeb909ab2f""}\n2025-07-18 11:04:08.150 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][09b6bfc2-b697-4c00-bde2-853c82fc478e] received connection request\n2025-07-18 11:04:08.150 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:04:08.250 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][09b6bfc2-b697-4c00-bde2-853c82fc478e] socks forwarding established\n2025-07-18 11:04:08.371 [info] [command][fb97c138-e2b7-4e71-85c5-4cbeb909ab2f] Process exited with code 0\n2025-07-18 11:04:08.372 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][09b6bfc2-b697-4c00-bde2-853c82fc478e] socks connection closed\n2025-07-18 11:04:08.372 [info] [command][fb97c138-e2b7-4e71-85c5-4cbeb909ab2f] Socket close event received\n2025-07-18 11:04:08.480 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60442 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:05:08.376 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:05:08.378 [info] [command][a54d5321-f4aa-468f-bae0-b816eb08f21b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""a54d5321-f4aa-468f-bae0-b816eb08f21b""}\n2025-07-18 11:05:08.379 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][10f9ede6-72d0-4ba9-a130-b627dca5a244] received connection request\n2025-07-18 11:05:08.379 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:05:08.641 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][10f9ede6-72d0-4ba9-a130-b627dca5a244] socks forwarding established\n2025-07-18 11:05:08.987 [info] [command][a54d5321-f4aa-468f-bae0-b816eb08f21b] Process exited with code 0\n2025-07-18 11:05:08.987 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][10f9ede6-72d0-4ba9-a130-b627dca5a244] socks connection closed\n2025-07-18 11:05:08.987 [info] [command][a54d5321-f4aa-468f-bae0-b816eb08f21b] Socket close event received\n2025-07-18 11:05:09.313 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60480 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:06:08.989 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:06:08.991 [info] [command][e542ce56-7b39-4a2a-9139-cfe73e93f816] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""e542ce56-7b39-4a2a-9139-cfe73e93f816""}\n2025-07-18 11:06:08.991 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][275c4f85-19b6-43b8-9bc9-1d265217fc19] received connection request\n2025-07-18 11:06:08.991 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\n\n2025-07-18 11:06:08.992 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:06:09.119 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][275c4f85-19b6-43b8-9bc9-1d265217fc19] socks forwarding established\n2025-07-18 11:06:09.242 [info] [command][e542ce56-7b39-4a2a-9139-cfe73e93f816] Process exited with code 0\n2025-07-18 11:06:09.242 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][275c4f85-19b6-43b8-9bc9-1d265217fc19] socks connection closed\n2025-07-18 11:06:09.242 [info] [command][e542ce56-7b39-4a2a-9139-cfe73e93f816] Socket close event received\n2025-07-18 11:06:09.339 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60535 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:07:09.246 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:07:09.250 [info] [command][fe62da7f-5aae-47a5-8dcb-5cacec4ca376] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""fe62da7f-5aae-47a5-8dcb-5cacec4ca376""}\n2025-07-18 11:07:09.250 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][34fa3cca-184f-49da-839d-6277d40a99f7] received connection request\n2025-07-18 11:07:09.251 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:07:09.364 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][34fa3cca-184f-49da-839d-6277d40a99f7] socks forwarding established\n2025-07-18 11:07:09.522 [info] [command][fe62da7f-5aae-47a5-8dcb-5cacec4ca376] Process exited with code 0\n2025-07-18 11:07:09.523 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][34fa3cca-184f-49da-839d-6277d40a99f7] socks connection closed\n2025-07-18 11:07:09.523 [info] [command][fe62da7f-5aae-47a5-8dcb-5cacec4ca376] Socket close event received\n2025-07-18 11:07:09.624 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60562 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:08:09.525 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:08:09.527 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][d9ea495f-999a-4712-9d27-3f50f823e810] received connection request\n2025-07-18 11:08:09.527 [info] [command][50ac4cd7-0b91-4779-94f5-398b667a0cac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""50ac4cd7-0b91-4779-94f5-398b667a0cac""}\n2025-07-18 11:08:09.529 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:08:09.692 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][d9ea495f-999a-4712-9d27-3f50f823e810] socks forwarding established\n2025-07-18 11:08:09.841 [info] [command][50ac4cd7-0b91-4779-94f5-398b667a0cac] Process exited with code 0\n2025-07-18 11:08:09.841 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][d9ea495f-999a-4712-9d27-3f50f823e810] socks connection closed\n2025-07-18 11:08:09.841 [info] [command][50ac4cd7-0b91-4779-94f5-398b667a0cac] Socket close event received\n2025-07-18 11:08:09.978 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60657 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:09:09.843 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:09:09.845 [info] [command][d37381c7-3b90-456c-b944-dfea3ba2137f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""d37381c7-3b90-456c-b944-dfea3ba2137f""}\n2025-07-18 11:09:09.846 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][e728c8d6-1c7a-4c06-9b5c-e938f777ae3a] received connection request\n2025-07-18 11:09:09.847 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:09:09.950 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][e728c8d6-1c7a-4c06-9b5c-e938f777ae3a] socks forwarding established\n2025-07-18 11:09:10.090 [info] [command][d37381c7-3b90-456c-b944-dfea3ba2137f] Process exited with code 0\n2025-07-18 11:09:10.091 [info] [command][d37381c7-3b90-456c-b944-dfea3ba2137f] Socket close event received\n2025-07-18 11:09:10.091 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][e728c8d6-1c7a-4c06-9b5c-e938f777ae3a] socks connection closed\n2025-07-18 11:09:10.204 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60695 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:10:10.094 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:10:10.096 [info] [command][5bebb2a3-e9a5-49bb-a8b4-aef4c4c7fcd6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""5bebb2a3-e9a5-49bb-a8b4-aef4c4c7fcd6""}\n2025-07-18 11:10:10.096 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][28665978-e75b-41bb-9510-0d28bce65395] received connection request\n2025-07-18 11:10:10.096 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:10:10.194 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][28665978-e75b-41bb-9510-0d28bce65395] socks forwarding established\n2025-07-18 11:10:10.332 [info] [command][5bebb2a3-e9a5-49bb-a8b4-aef4c4c7fcd6] Process exited with code 0\n2025-07-18 11:10:10.332 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][28665978-e75b-41bb-9510-0d28bce65395] socks connection closed\n2025-07-18 11:10:10.332 [info] [command][5bebb2a3-e9a5-49bb-a8b4-aef4c4c7fcd6] Socket close event received\n2025-07-18 11:10:10.445 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60722 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:11:10.332 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:11:10.335 [info] [command][189f7839-50cd-4554-8101-799761e4cb17] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""189f7839-50cd-4554-8101-799761e4cb17""}\n2025-07-18 11:11:10.336 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][44a1371c-58e5-4107-bd79-c21588c395ac] received connection request\n2025-07-18 11:11:10.336 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:11:10.465 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][44a1371c-58e5-4107-bd79-c21588c395ac] socks forwarding established\n2025-07-18 11:11:10.584 [info] [command][189f7839-50cd-4554-8101-799761e4cb17] Process exited with code 0\n2025-07-18 11:11:10.584 [info] [command][189f7839-50cd-4554-8101-799761e4cb17] Socket close event received\n2025-07-18 11:11:10.585 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][44a1371c-58e5-4107-bd79-c21588c395ac] socks connection closed\n2025-07-18 11:11:10.692 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60772 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:12:10.588 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:12:10.591 [info] [command][e6842059-fd0e-4a1a-83e3-18eef8b7f93d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""e6842059-fd0e-4a1a-83e3-18eef8b7f93d""}\n2025-07-18 11:12:10.591 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][15de753f-81b7-4b92-b6b2-fda521351ea2] received connection request\n2025-07-18 11:12:10.592 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:12:10.717 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][15de753f-81b7-4b92-b6b2-fda521351ea2] socks forwarding established\n2025-07-18 11:12:10.902 [info] [command][e6842059-fd0e-4a1a-83e3-18eef8b7f93d] Process exited with code 0\n2025-07-18 11:12:10.902 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][15de753f-81b7-4b92-b6b2-fda521351ea2] socks connection closed\n2025-07-18 11:12:10.902 [info] [command][e6842059-fd0e-4a1a-83e3-18eef8b7f93d] Socket close event received\n2025-07-18 11:12:11.042 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60801 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:13:10.903 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:13:10.905 [info] [command][31ed3a68-a0ab-4f29-ade6-e2ca09f68ec0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""31ed3a68-a0ab-4f29-ade6-e2ca09f68ec0""}\n2025-07-18 11:13:10.906 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][29ba0e90-a7b6-4484-a15e-69fb3d03df4a] received connection request\n2025-07-18 11:13:10.907 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:13:11.020 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][29ba0e90-a7b6-4484-a15e-69fb3d03df4a] socks forwarding established\n2025-07-18 11:13:11.160 [info] [command][31ed3a68-a0ab-4f29-ade6-e2ca09f68ec0] Process exited with code 0\n2025-07-18 11:13:11.160 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][29ba0e90-a7b6-4484-a15e-69fb3d03df4a] socks connection closed\n2025-07-18 11:13:11.161 [info] [command][31ed3a68-a0ab-4f29-ade6-e2ca09f68ec0] Socket close event received\n2025-07-18 11:13:11.269 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60898 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:14:11.161 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:14:11.164 [info] [command][bdbd82ce-ea3c-4134-bd50-1647d0c4f80e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""bdbd82ce-ea3c-4134-bd50-1647d0c4f80e""}\n2025-07-18 11:14:11.164 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][564fbfb8-7fdc-4f9a-9c10-f6607fe41da2] received connection request\n2025-07-18 11:14:11.165 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:14:11.303 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][564fbfb8-7fdc-4f9a-9c10-f6607fe41da2] socks forwarding established\n2025-07-18 11:14:11.469 [info] [command][bdbd82ce-ea3c-4134-bd50-1647d0c4f80e] Process exited with code 0\n2025-07-18 11:14:11.469 [info] [command][bdbd82ce-ea3c-4134-bd50-1647d0c4f80e] Socket close event received\n2025-07-18 11:14:11.473 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][564fbfb8-7fdc-4f9a-9c10-f6607fe41da2] socks connection closed\n2025-07-18 11:14:11.597 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 60925 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:15:11.470 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:15:11.472 [info] [command][f8fc3d90-b293-45a4-90f0-e4056527ebbc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""f8fc3d90-b293-45a4-90f0-e4056527ebbc""}\n2025-07-18 11:15:11.472 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][6d8aa2e0-555d-48f3-925a-9ffdbdd3d54b] received connection request\n2025-07-18 11:15:11.473 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:15:11.669 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][6d8aa2e0-555d-48f3-925a-9ffdbdd3d54b] socks forwarding established\n2025-07-18 11:15:11.815 [info] [command][f8fc3d90-b293-45a4-90f0-e4056527ebbc] Process exited with code 0\n2025-07-18 11:15:11.816 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][6d8aa2e0-555d-48f3-925a-9ffdbdd3d54b] socks connection closed\n2025-07-18 11:15:11.816 [info] [command][f8fc3d90-b293-45a4-90f0-e4056527ebbc] Socket close event received\n2025-07-18 11:15:11.927 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61002 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:16:11.819 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:16:11.821 [info] [command][59ea4f3f-ec3f-4685-b8fa-ff683b6dc390] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""59ea4f3f-ec3f-4685-b8fa-ff683b6dc390""}\n2025-07-18 11:16:11.822 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][312386f1-6140-4927-b235-54d94d66bde3] received connection request\n2025-07-18 11:16:11.823 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\n\n2025-07-18 11:16:11.823 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:16:11.968 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][312386f1-6140-4927-b235-54d94d66bde3] socks forwarding established\n2025-07-18 11:16:12.273 [info] [command][59ea4f3f-ec3f-4685-b8fa-ff683b6dc390] Process exited with code 0\n2025-07-18 11:16:12.273 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][312386f1-6140-4927-b235-54d94d66bde3] socks connection closed\n2025-07-18 11:16:12.274 [info] [command][59ea4f3f-ec3f-4685-b8fa-ff683b6dc390] Socket close event received\n2025-07-18 11:16:12.442 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61098 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:17:12.278 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:17:12.282 [info] [command][9119e589-f21a-41e7-9bb8-048ce833fc31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""9119e589-f21a-41e7-9bb8-048ce833fc31""}\n2025-07-18 11:17:12.282 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][ed9a3a0b-ce4a-438a-aefb-60605c84926f] received connection request\n2025-07-18 11:17:12.283 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:17:12.368 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][ed9a3a0b-ce4a-438a-aefb-60605c84926f] socks forwarding established\n2025-07-18 11:17:12.489 [info] [command][9119e589-f21a-41e7-9bb8-048ce833fc31] Process exited with code 0\n2025-07-18 11:17:12.489 [info] [command][9119e589-f21a-41e7-9bb8-048ce833fc31] Socket close event received\n2025-07-18 11:17:12.491 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][ed9a3a0b-ce4a-438a-aefb-60605c84926f] socks connection closed\n2025-07-18 11:17:12.590 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61136 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:18:12.489 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:18:12.491 [info] [command][b50b279a-b10f-4ad0-a940-25d16663aa40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""b50b279a-b10f-4ad0-a940-25d16663aa40""}\n2025-07-18 11:18:12.492 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][f344ae36-4712-4e7c-98c5-c41f6abc4a23] received connection request\n2025-07-18 11:18:12.492 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:18:12.604 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][f344ae36-4712-4e7c-98c5-c41f6abc4a23] socks forwarding established\n2025-07-18 11:18:12.719 [info] [command][b50b279a-b10f-4ad0-a940-25d16663aa40] Process exited with code 0\n2025-07-18 11:18:12.720 [info] [command][b50b279a-b10f-4ad0-a940-25d16663aa40] Socket close event received\n2025-07-18 11:18:12.720 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][f344ae36-4712-4e7c-98c5-c41f6abc4a23] socks connection closed\n2025-07-18 11:18:12.822 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61195 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:19:12.720 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:19:12.722 [info] [command][785f07e3-eedf-4352-a9ca-612afc597f70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""785f07e3-eedf-4352-a9ca-612afc597f70""}\n2025-07-18 11:19:12.723 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][70d06c56-7107-41f4-a8fb-e91ff9cbbb84] received connection request\n2025-07-18 11:19:12.723 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:19:13.006 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][70d06c56-7107-41f4-a8fb-e91ff9cbbb84] socks forwarding established\n2025-07-18 11:19:13.130 [info] [command][785f07e3-eedf-4352-a9ca-612afc597f70] Process exited with code 0\n2025-07-18 11:19:13.130 [info] [command][785f07e3-eedf-4352-a9ca-612afc597f70] Socket close event received\n2025-07-18 11:19:13.140 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][70d06c56-7107-41f4-a8fb-e91ff9cbbb84] socks connection closed\n2025-07-18 11:19:13.236 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61224 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:20:13.134 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:20:13.136 [info] [command][bcf43fb2-826a-4e49-8fe2-e53ba093ee80] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""bcf43fb2-826a-4e49-8fe2-e53ba093ee80""}\n2025-07-18 11:20:13.137 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][baab9eec-f618-470b-a855-92341b0fb515] received connection request\n2025-07-18 11:20:13.138 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:20:13.242 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][baab9eec-f618-470b-a855-92341b0fb515] socks forwarding established\n2025-07-18 11:20:13.359 [info] [command][bcf43fb2-826a-4e49-8fe2-e53ba093ee80] Process exited with code 0\n2025-07-18 11:20:13.359 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][baab9eec-f618-470b-a855-92341b0fb515] socks connection closed\n2025-07-18 11:20:13.360 [info] [command][bcf43fb2-826a-4e49-8fe2-e53ba093ee80] Socket close event received\n2025-07-18 11:20:13.466 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61274 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:21:13.360 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:21:13.362 [info] [command][6721220d-6023-4e6f-adae-aae49e64cd1c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""6721220d-6023-4e6f-adae-aae49e64cd1c""}\n2025-07-18 11:21:13.363 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][aabfb8eb-1345-499d-854a-e59daca6b215] received connection request\n2025-07-18 11:21:13.363 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:21:13.459 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][aabfb8eb-1345-499d-854a-e59daca6b215] socks forwarding established\n2025-07-18 11:21:13.586 [info] [command][6721220d-6023-4e6f-adae-aae49e64cd1c] Process exited with code 0\n2025-07-18 11:21:13.586 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][aabfb8eb-1345-499d-854a-e59daca6b215] socks connection closed\n2025-07-18 11:21:13.586 [info] [command][6721220d-6023-4e6f-adae-aae49e64cd1c] Socket close event received\n2025-07-18 11:21:13.817 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61339 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:22:13.590 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:22:13.592 [info] [command][7c14df52-b2ff-4104-bef1-c56f882e4887] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""7c14df52-b2ff-4104-bef1-c56f882e4887""}\n2025-07-18 11:22:13.592 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][1b703f95-9f2d-447a-b9bb-b31a8fa52e1c] received connection request\n2025-07-18 11:22:13.592 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:22:13.686 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][1b703f95-9f2d-447a-b9bb-b31a8fa52e1c] socks forwarding established\n2025-07-18 11:22:13.831 [info] [command][7c14df52-b2ff-4104-bef1-c56f882e4887] Process exited with code 0\n2025-07-18 11:22:13.831 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][1b703f95-9f2d-447a-b9bb-b31a8fa52e1c] socks connection closed\n2025-07-18 11:22:13.831 [info] [command][7c14df52-b2ff-4104-bef1-c56f882e4887] Socket close event received\n2025-07-18 11:22:14.048 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61375 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:23:13.834 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:23:13.837 [info] [command][af99695f-c2c7-41eb-b5bf-4514ae4613e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""af99695f-c2c7-41eb-b5bf-4514ae4613e4""}\n2025-07-18 11:23:13.839 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][efa61798-3d33-4847-bbfc-4278641cf216] received connection request\n2025-07-18 11:23:13.839 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:23:13.928 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][efa61798-3d33-4847-bbfc-4278641cf216] socks forwarding established\n2025-07-18 11:23:14.055 [info] [command][af99695f-c2c7-41eb-b5bf-4514ae4613e4] Process exited with code 0\n2025-07-18 11:23:14.056 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][efa61798-3d33-4847-bbfc-4278641cf216] socks connection closed\n2025-07-18 11:23:14.056 [info] [command][af99695f-c2c7-41eb-b5bf-4514ae4613e4] Socket close event received\n2025-07-18 11:23:14.143 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61442 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:24:14.058 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:24:14.060 [info] [command][4e9447d9-a8b0-44d8-bb51-90d9b8c043c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""4e9447d9-a8b0-44d8-bb51-90d9b8c043c1""}\n2025-07-18 11:24:14.061 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][1b8cb8ee-16db-4841-84a9-76072b72a579] received connection request\n2025-07-18 11:24:14.061 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:24:14.195 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][1b8cb8ee-16db-4841-84a9-76072b72a579] socks forwarding established\n2025-07-18 11:24:14.319 [info] [command][4e9447d9-a8b0-44d8-bb51-90d9b8c043c1] Process exited with code 0\n2025-07-18 11:24:14.320 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][1b8cb8ee-16db-4841-84a9-76072b72a579] socks connection closed\n2025-07-18 11:24:14.321 [info] [command][4e9447d9-a8b0-44d8-bb51-90d9b8c043c1] Socket close event received\n2025-07-18 11:24:14.426 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61471 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:25:14.323 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:25:14.326 [info] [command][25251fb1-242f-4c21-8dd9-ba521fef1c95] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""25251fb1-242f-4c21-8dd9-ba521fef1c95""}\n2025-07-18 11:25:14.327 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][a2f1b3e5-5c14-4294-9a2f-c98fcdd54fab] received connection request\n2025-07-18 11:25:14.327 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:25:14.423 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][a2f1b3e5-5c14-4294-9a2f-c98fcdd54fab] socks forwarding established\n2025-07-18 11:25:14.552 [info] [command][25251fb1-242f-4c21-8dd9-ba521fef1c95] Process exited with code 0\n2025-07-18 11:25:14.553 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][a2f1b3e5-5c14-4294-9a2f-c98fcdd54fab] socks connection closed\n2025-07-18 11:25:14.553 [info] [command][25251fb1-242f-4c21-8dd9-ba521fef1c95] Socket close event received\n2025-07-18 11:25:14.710 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61514 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:26:14.557 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:26:14.559 [info] [command][0fcd6da9-da68-4fcf-a534-1ba1d36c95e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""0fcd6da9-da68-4fcf-a534-1ba1d36c95e0""}\n2025-07-18 11:26:14.560 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][0a4a7b20-7f7c-46b2-928b-e9d9efe0644d] received connection request\n2025-07-18 11:26:14.560 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:26:14.689 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][0a4a7b20-7f7c-46b2-928b-e9d9efe0644d] socks forwarding established\n2025-07-18 11:26:14.822 [info] [command][0fcd6da9-da68-4fcf-a534-1ba1d36c95e0] Process exited with code 0\n2025-07-18 11:26:14.822 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][0a4a7b20-7f7c-46b2-928b-e9d9efe0644d] socks connection closed\n2025-07-18 11:26:14.823 [info] [command][0fcd6da9-da68-4fcf-a534-1ba1d36c95e0] Socket close event received\n2025-07-18 11:26:14.916 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61572 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:27:14.822 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:27:14.825 [info] [command][35918d4f-8464-4480-bf3f-d6ed146395cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""35918d4f-8464-4480-bf3f-d6ed146395cd""}\n2025-07-18 11:27:14.826 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][98e967b3-e050-4efd-bdda-c81bf7952b58] received connection request\n2025-07-18 11:27:14.826 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:27:14.938 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][98e967b3-e050-4efd-bdda-c81bf7952b58] socks forwarding established\n2025-07-18 11:27:15.080 [info] [command][35918d4f-8464-4480-bf3f-d6ed146395cd] Process exited with code 0\n2025-07-18 11:27:15.081 [info] [command][35918d4f-8464-4480-bf3f-d6ed146395cd] Socket close event received\n2025-07-18 11:27:15.082 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][98e967b3-e050-4efd-bdda-c81bf7952b58] socks connection closed\n2025-07-18 11:27:15.196 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61608 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:28:15.082 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:28:15.084 [info] [command][bf468c3c-fd52-42b9-bd38-77fbf5c08331] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""bf468c3c-fd52-42b9-bd38-77fbf5c08331""}\n2025-07-18 11:28:15.085 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:34959][6d6bf92b-9ce5-42ea-b832-7f4719f25645] received connection request\n2025-07-18 11:28:15.085 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:28:15.749 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][6d6bf92b-9ce5-42ea-b832-7f4719f25645] socks forwarding established\n2025-07-18 11:28:16.407 [info] [command][bf468c3c-fd52-42b9-bd38-77fbf5c08331] Process exited with code 0\n2025-07-18 11:28:16.408 [info] [forwarding][multiplex][127.0.0.1:59799 -> 127.0.0.1:59755 -> 127.0.0.1:34959][6d6bf92b-9ce5-42ea-b832-7f4719f25645] socks connection closed\n2025-07-18 11:28:16.408 [info] [command][bf468c3c-fd52-42b9-bd38-77fbf5c08331] Socket close event received\n2025-07-18 11:28:16.816 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 59755 for 127.0.0.1 port 34959, connect from 127.0.0.1 port 61741 to 127.0.0.1 port 59755, nchannels 6\n\n2025-07-18 11:29:00.669 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:43977][a9ac24c2-c243-4cd6-99f3-2f2094345a43] received connection request\n2025-07-18 11:29:00.674 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-18 11:29:00.674 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-18 11:29:00.683 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\n\n2025-07-18 11:29:00.715 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:43977][9d9b42d0-9d4f-43fd-accb-411c5bbfe67a] received connection request\n2025-07-18 11:29:00.736 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\ndebug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:29:03.684 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-18 11:29:03.684 [error] Failed to connect to Cursor server at http://127.0.0.1:59798, attempt 1 of 3 This operation was aborted\n2025-07-18 11:29:03.689 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:43977][803ad4cc-4d63-49d1-ac6f-a4b2799791cc] received connection request\n2025-07-18 11:29:03.690 [info] (ssh_tunnel) stderr: debug1: Connection to port 59755 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 11:29:03.773 [info] Terminating existing SSH process with pid: 13347\n2025-07-18 11:29:03.773 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 11:29:03.783 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-18 11:29:03.784 [error] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:59755 -> 127.0.0.1:43977][a9ac24c2-c243-4cd6-99f3-2f2094345a43] error while creating socks forwarding Socket closed\n2025-07-18 11:29:03.784 [error] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:59755 -> 127.0.0.1:43977][9d9b42d0-9d4f-43fd-accb-411c5bbfe67a] error while creating socks forwarding Socket closed\n2025-07-18 11:29:03.784 [error] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:59755 -> 127.0.0.1:43977][803ad4cc-4d63-49d1-ac6f-a4b2799791cc] error while creating socks forwarding Socket closed\n2025-07-18 11:29:03.784 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:59755 -> 127.0.0.1:43977][c63184b3-e027-400d-8930-d797e6b7ba95] socks connection closed\n2025-07-18 11:29:03.784 [info] [forwarding][code][127.0.0.1:59798 -> 127.0.0.1:59755 -> 127.0.0.1:43977][b9a72481-4d72-4ff6-a2aa-93dca564b1cb] socks connection closed\n2025-07-18 11:29:03.784 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-mNNS0K/socket.sock\n2025-07-18 11:29:03.788 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35145.sh"" | ssh -v -T -D 61776 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 11:29:03.788 [info] Started installation script. Waiting for it to finish...\n2025-07-18 11:29:03.788 [info] Waiting for server to install via process(14496)...\n2025-07-18 11:29:03.794 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-18 11:29:03.794 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 11:29:03.795 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 11:29:03.795 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 11:29:03.795 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 11:29:03.798 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 11:29:03.798 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 11:29:03.799 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 11:29:03.799 [info] Retrying connection in 5 seconds...\n2025-07-18 11:29:04.696 [error] Failed to connect to Cursor server at http://127.0.0.1:59798, attempt 2 of 3 This operation was aborted\n2025-07-18 11:29:05.707 [error] Failed to connect to Cursor server at http://127.0.0.1:59798, attempt 3 of 3 This operation was aborted\n2025-07-18 11:29:05.707 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-18 11:29:05.707 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-18 11:44:27.991 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35145.sh\n2025-07-18 11:44:27.993 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:59799\n2025-07-18 11:44:28.004 [error] [forwarding][multiplex][127.0.0.1:59799 -> unknown}][d8ae80c9-ebdf-4f0f-8e53-f779c155a321] remote server not configured\n2025-07-18 11:44:28.004 [info] [command][5ac8b961-ae85-4cfc-ab45-3cd30ec15505] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""196baa0c-1824-4771-8334-ad2cd8b9c561"",""id"":""5ac8b961-ae85-4cfc-ab45-3cd30ec15505""}\n2025-07-18 11:44:28.005 [error] [command][5ac8b961-ae85-4cfc-ab45-3cd30ec15505] Socket error: Error: read ECONNRESET\n2025-07-18 11:44:28.005 [info] [command][5ac8b961-ae85-4cfc-ab45-3cd30ec15505] Socket close event received\n2025-07-18 11:44:28.006 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-mNNS0K/socket.sock\n2025-07-18 11:44:28.008 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_74608.sh"" | ssh -v -T -D 61778 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 11:44:28.008 [info] Started installation script. Waiting for it to finish...\n2025-07-18 11:44:28.008 [info] Waiting for server to install via process(14511)...\n2025-07-18 11:44:28.016 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-18 11:44:28.016 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 11:44:28.016 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 11:44:28.016 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 11:44:28.017 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 11:44:28.022 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-18 11:44:28.022 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 11:44:28.023 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 11:44:28.023 [error] Failed to connect after 2 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 11:44:28.023 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_74608.sh\n2025-07-18 11:44:28.023 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 12:05:45.031 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-18 12:05:45.043 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-L5bXGT/socket.sock\n2025-07-18 12:05:45.044 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 12:05:45.046 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-L5bXGT/socket.sock\n2025-07-18 12:05:45.048 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_56479.sh"" | ssh -v -T -D 62916 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 12:05:45.048 [info] Started installation script. Waiting for it to finish...\n2025-07-18 12:05:45.048 [info] Waiting for server to install via process(15048)...\n2025-07-18 12:05:45.054 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 12:05:45.054 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 12:05:45.055 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 12:05:45.055 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 12:05:45.055 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 12:05:45.345 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 12:05:45.345 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 12:05:45.347 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-18 12:05:45.347 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\ndebug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 12:05:45.491 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 12:05:45.493 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\n\n2025-07-18 12:05:45.494 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 12:05:45.595 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 12:05:45.599 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 12:05:45.717 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\n\n2025-07-18 12:05:45.718 [info] (ssh_tunnel) stderr: debug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 12:05:45.719 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 12:05:45.723 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-18 12:05:45.724 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 12:05:45.992 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 12:05:46.109 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 12:05:46.111 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-18 12:05:46.111 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 12:05:46.987 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\n\n2025-07-18 12:05:46.987 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 12:05:47.159 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:05:47.246 [info] Askpass server received request: POST /\n2025-07-18 12:05:47.246 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 12:05:47.246 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 12:05:58.753 [error] Password authentication cancelled\n2025-07-18 12:05:58.755 [info] (ssh_tunnel) stderr: Server returned status code: 500\n\n2025-07-18 12:06:08.310 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\n\n2025-07-18 12:06:11.317 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:06:11.489 [info] Askpass server received request: POST /\n2025-07-18 12:06:11.489 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 12:06:11.489 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 12:06:38.812 [error] Password authentication cancelled\n2025-07-18 12:06:38.815 [info] (ssh_tunnel) stderr: Server returned status code: 500\n\n2025-07-18 12:06:40.955 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\n\n2025-07-18 12:06:41.081 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:06:41.155 [info] Askpass server received request: POST /\n2025-07-18 12:06:41.155 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 12:06:41.155 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 12:06:42.339 [error] Password authentication cancelled\n2025-07-18 12:06:42.343 [info] (ssh_tunnel) stderr: Server returned status code: 500\n\n2025-07-18 12:06:44.294 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: No more authentication methods to try.\ntum_dbd0378@horeka.scc.kit.edu: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive).\n\n2025-07-18 12:06:44.296 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-18 12:06:44.297 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 12:06:44.297 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_56479.sh\n2025-07-18 12:06:44.298 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-18 12:06:49.434 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-18 12:06:49.445 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-7vLbpQ/socket.sock\n2025-07-18 12:06:49.446 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 12:06:49.448 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-7vLbpQ/socket.sock\n2025-07-18 12:06:49.450 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_10921.sh"" | ssh -v -T -D 63087 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 12:06:49.450 [info] Started installation script. Waiting for it to finish...\n2025-07-18 12:06:49.450 [info] Waiting for server to install via process(15114)...\n2025-07-18 12:06:49.455 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-18 12:06:49.455 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 12:06:49.456 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 12:06:49.456 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 12:06:49.456 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 12:06:49.590 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 12:06:49.590 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 12:06:49.591 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-18 12:06:49.591 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-18 12:06:49.591 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 12:06:49.710 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 12:06:49.712 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-18 12:06:49.712 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 12:06:49.821 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 12:06:49.822 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 12:06:49.941 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 12:06:49.942 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-18 12:06:49.943 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 12:06:49.948 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-18 12:06:49.948 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 12:06:50.222 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 12:06:50.351 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 12:06:50.354 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-18 12:06:50.354 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 12:06:51.058 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 12:06:51.163 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:06:51.240 [info] Askpass server received request: POST /\n2025-07-18 12:06:51.240 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 12:06:51.240 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 12:07:00.335 [error] Password authentication cancelled\n2025-07-18 12:07:00.337 [info] (ssh_tunnel) stderr: Server returned status code: 500\n\n2025-07-18 12:07:02.569 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\n\n2025-07-18 12:07:02.683 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:07:02.755 [info] Askpass server received request: POST /\n2025-07-18 12:07:02.755 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 12:07:02.755 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 12:07:04.156 [error] Password authentication cancelled\n2025-07-18 12:07:04.158 [info] (ssh_tunnel) stderr: Server returned status code: 500\n\n2025-07-18 12:07:06.440 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-18 12:07:06.451 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qKaxiL/socket.sock\n2025-07-18 12:07:06.452 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 12:07:06.453 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qKaxiL/socket.sock\n2025-07-18 12:07:06.455 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_79674.sh"" | ssh -v -T -D 63100 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 12:07:06.455 [info] Started installation script. Waiting for it to finish...\n2025-07-18 12:07:06.455 [info] Waiting for server to install via process(15146)...\n2025-07-18 12:07:06.461 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-18 12:07:06.461 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 12:07:06.461 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 12:07:06.461 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 12:07:06.461 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 12:07:06.571 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 12:07:06.571 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\n\n2025-07-18 12:07:06.571 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\ndebug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 12:07:06.746 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 12:07:06.748 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-18 12:07:06.748 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 12:07:06.880 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 12:07:06.881 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 12:07:07.183 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 12:07:07.184 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\n\n2025-07-18 12:07:07.184 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 12:07:07.188 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\n\n2025-07-18 12:07:07.188 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\ndebug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 12:07:08.433 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 12:07:09.658 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 12:07:09.661 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-18 12:07:09.662 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 12:07:10.883 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\n\n2025-07-18 12:07:10.884 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 12:07:11.034 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:07:11.164 [info] Askpass server received request: POST /\n2025-07-18 12:07:11.164 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 12:07:11.164 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 12:07:21.735 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:07:21.825 [info] Askpass server received request: POST /\n2025-07-18 12:07:21.825 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-18 12:07:21.825 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-18 12:07:31.952 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:63100 forwarded to remote address socks:0\n\n2025-07-18 12:07:31.952 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 63100.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 63100.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-18 12:07:32.271 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-18 12:07:32.272 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-18 12:07:32.279 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-18 12:07:32.360 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-18 12:07:36.154 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-18 12:07:36.343 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 12:07:36.349 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\n\n2025-07-18 12:07:36.354 [info] (ssh_tunnel) stdout: Checking node executable\n\n2025-07-18 12:07:36.398 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-18 12:07:36.422 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-18 12:07:36.601 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-18 12:07:36.618 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 12:07:36.647 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-18 12:07:36.665 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-18 12:07:36.678 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js d9bf2059-1e02-4847-bce3-8e6477467546\n\n2025-07-18 12:07:36.688 [info] (ssh_tunnel) stdout: Multiplex server started with PID 2757735 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\n\n2025-07-18 12:07:36.696 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 12:07:37.438 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-18 12:07:37.440 [info] (ssh_tunnel) stdout: Code server script is already running /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server. Running processes are 3080454 sh /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\n\n2025-07-18 12:07:37.441 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\nbf751d07eddfee27db48a5a3: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==36367==\nmultiplexConnectionToken==d9bf2059-1e02-4847-bce3-8e6477467546==\ncodeListeningOn==46063==\ncodeConnectionToken==f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\nbf751d07eddfee27db48a5a3: end\nUnlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 12:07:37.446 [info] Server install command exit code: 0\n2025-07-18 12:07:37.447 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_79674.sh\n2025-07-18 12:07:37.449 [info] [forwarding][code] creating new forwarding server\n2025-07-18 12:07:37.450 [info] [forwarding][code] server listening on 127.0.0.1:63127\n2025-07-18 12:07:37.450 [info] [forwarding][code] Set up server\n2025-07-18 12:07:37.450 [info] [remote-ssh] codeListeningOn (remote=[object Object]; local=[object Object]) codeConnectionToken: f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b\n2025-07-18 12:07:37.450 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-18 12:07:37.450 [info] [forwarding][multiplex] server listening on 127.0.0.1:63128\n2025-07-18 12:07:37.450 [info] [forwarding][multiplex] Set up server\n2025-07-18 12:07:37.451 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: d9bf2059-1e02-4847-bce3-8e6477467546\n2025-07-18 12:07:37.451 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:07:37.455 [info] [command][25258917-ce25-4df2-a72a-da66c5fa0807] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""25258917-ce25-4df2-a72a-da66c5fa0807""}\n2025-07-18 12:07:37.456 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][c671e8fb-86dd-4f2c-9295-f98171aa7fa0] received connection request\n2025-07-18 12:07:37.456 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:07:37.502 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:46063][38fd0bed-9960-4c99-82d7-bf3890435f86] received connection request\n2025-07-18 12:07:37.503 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:07:37.565 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][c671e8fb-86dd-4f2c-9295-f98171aa7fa0] socks forwarding established\n2025-07-18 12:07:37.603 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:63100 -> 127.0.0.1:46063][38fd0bed-9960-4c99-82d7-bf3890435f86] socks forwarding established\n2025-07-18 12:07:37.696 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][c671e8fb-86dd-4f2c-9295-f98171aa7fa0] socks connection closed\n2025-07-18 12:07:37.696 [info] [command][25258917-ce25-4df2-a72a-da66c5fa0807] Process exited with code 0\n2025-07-18 12:07:37.697 [info] [command][25258917-ce25-4df2-a72a-da66c5fa0807] Socket close event received\n2025-07-18 12:07:37.719 [info] Successfully connected to Cursor server at http://127.0.0.1:63127/version\n2025-07-18 12:07:37.719 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-18 12:07:37.720 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][3891e8be-938e-4414-857c-12001c937bd6] received connection request\n2025-07-18 12:07:37.720 [info] [command][442a7c0a-c6fb-4e7a-a01b-b0acde78bf78] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""442a7c0a-c6fb-4e7a-a01b-b0acde78bf78""}\n2025-07-18 12:07:37.720 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:07:37.782 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 63130 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:07:37.806 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][3891e8be-938e-4414-857c-12001c937bd6] socks forwarding established\n2025-07-18 12:07:37.936 [info] [command][442a7c0a-c6fb-4e7a-a01b-b0acde78bf78] Process exited with code 0\n2025-07-18 12:07:37.936 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-18 12:07:37.937 [info] [remote-ssh] Resolved exec server. Socks port: 63100\n2025-07-18 12:07:37.937 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":63127,""connectionToken"":""f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b"",""extensionHostEnv"":{}}. Socks port: 63100\n2025-07-18 12:07:37.937 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][3891e8be-938e-4414-857c-12001c937bd6] socks connection closed\n2025-07-18 12:07:37.937 [info] [command][442a7c0a-c6fb-4e7a-a01b-b0acde78bf78] Socket close event received\n2025-07-18 12:07:38.004 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:46063][3437ca0e-325d-48a3-aee2-b73e6d463d11] received connection request\n2025-07-18 12:07:38.006 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:07:38.037 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 63135 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:07:38.119 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:63100 -> 127.0.0.1:46063][3437ca0e-325d-48a3-aee2-b73e6d463d11] socks forwarding established\n2025-07-18 12:07:38.234 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:46063][8963cd47-68cb-494a-8ea4-04f6f73d586e] received connection request\n2025-07-18 12:07:38.234 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:07:38.329 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:63100 -> 127.0.0.1:46063][8963cd47-68cb-494a-8ea4-04f6f73d586e] socks forwarding established\n2025-07-18 12:07:38.767 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-18 12:07:40.811 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 46063, connect from 127.0.0.1 port 63132 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:07:40.812 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:63100 -> 127.0.0.1:46063][38fd0bed-9960-4c99-82d7-bf3890435f86] socks connection closed\n2025-07-18 12:07:44.757 [info] [tunnel-forwarding][localhost:8791 -> localhost:8791] server listening\n2025-07-18 12:07:44.757 [info] Cross binding to [::1]:8791. Originally bound to 127.0.0.1:8791\n2025-07-18 12:07:44.757 [info] [tunnel-forwarding][::1:8791 -> localhost:8791] server listening\n2025-07-18 12:08:37.695 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:08:37.696 [info] [command][2e945b5b-0570-49bb-88a8-229df6b5388f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""2e945b5b-0570-49bb-88a8-229df6b5388f""}\n2025-07-18 12:08:37.696 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][3c56a3fe-0aea-4930-840b-b893d8d58a12] received connection request\n2025-07-18 12:08:37.696 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:08:37.793 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][3c56a3fe-0aea-4930-840b-b893d8d58a12] socks forwarding established\n2025-07-18 12:08:37.914 [info] [command][2e945b5b-0570-49bb-88a8-229df6b5388f] Process exited with code 0\n2025-07-18 12:08:37.914 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][3c56a3fe-0aea-4930-840b-b893d8d58a12] socks connection closed\n2025-07-18 12:08:37.914 [info] [command][2e945b5b-0570-49bb-88a8-229df6b5388f] Socket close event received\n2025-07-18 12:08:38.009 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 63237 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:09:37.918 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:09:37.919 [info] [command][502f22a4-f427-4d0b-9197-2bd478826cf3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""502f22a4-f427-4d0b-9197-2bd478826cf3""}\n2025-07-18 12:09:37.920 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][36e240c6-f240-450c-85fe-21edb67ada7f] received connection request\n2025-07-18 12:09:37.920 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:09:39.537 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][36e240c6-f240-450c-85fe-21edb67ada7f] socks forwarding established\n2025-07-18 12:09:39.636 [info] [command][502f22a4-f427-4d0b-9197-2bd478826cf3] Process exited with code 0\n2025-07-18 12:09:39.636 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][36e240c6-f240-450c-85fe-21edb67ada7f] socks connection closed\n2025-07-18 12:09:39.637 [info] [command][502f22a4-f427-4d0b-9197-2bd478826cf3] Socket close event received\n2025-07-18 12:09:39.746 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 63274 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:10:39.638 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:10:39.640 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][e8d6d286-433c-43c5-a6d7-e0a6272c2176] received connection request\n2025-07-18 12:10:39.640 [info] [command][5627c328-8218-4db4-be95-6ed9fef8e0c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""5627c328-8218-4db4-be95-6ed9fef8e0c8""}\n2025-07-18 12:10:39.640 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:10:39.739 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][e8d6d286-433c-43c5-a6d7-e0a6272c2176] socks forwarding established\n2025-07-18 12:10:39.843 [info] [command][5627c328-8218-4db4-be95-6ed9fef8e0c8] Process exited with code 0\n2025-07-18 12:10:39.843 [info] [command][5627c328-8218-4db4-be95-6ed9fef8e0c8] Socket close event received\n2025-07-18 12:10:39.845 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][e8d6d286-433c-43c5-a6d7-e0a6272c2176] socks connection closed\n2025-07-18 12:10:39.984 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 63310 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:11:39.848 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:11:39.850 [info] [command][003ed73f-efea-4943-acfe-0cc8642c66d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""003ed73f-efea-4943-acfe-0cc8642c66d4""}\n2025-07-18 12:11:39.851 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][bfc89755-3b0f-451f-b72b-f26dc19b87ee] received connection request\n2025-07-18 12:11:39.851 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:11:40.574 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][bfc89755-3b0f-451f-b72b-f26dc19b87ee] socks forwarding established\n2025-07-18 12:11:41.059 [info] [command][003ed73f-efea-4943-acfe-0cc8642c66d4] Process exited with code 0\n2025-07-18 12:11:41.059 [info] [command][003ed73f-efea-4943-acfe-0cc8642c66d4] Socket close event received\n2025-07-18 12:11:41.062 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][bfc89755-3b0f-451f-b72b-f26dc19b87ee] socks connection closed\n2025-07-18 12:11:41.367 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 63397 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:12:41.062 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:12:41.063 [info] [command][5fd46547-f924-4bca-b75e-27a4a8c466fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""5fd46547-f924-4bca-b75e-27a4a8c466fa""}\n2025-07-18 12:12:41.064 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][11ea8574-39fa-4215-bd98-2e04349fa146] received connection request\n2025-07-18 12:12:41.065 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:13:01.173 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][11ea8574-39fa-4215-bd98-2e04349fa146] socks forwarding established\n2025-07-18 12:13:04.398 [info] [command][5fd46547-f924-4bca-b75e-27a4a8c466fa] Process exited with code 0\n2025-07-18 12:13:04.398 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][11ea8574-39fa-4215-bd98-2e04349fa146] socks connection closed\n2025-07-18 12:13:04.398 [info] [command][5fd46547-f924-4bca-b75e-27a4a8c466fa] Socket close event received\n2025-07-18 12:13:06.557 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 63886 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:14:04.401 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:14:04.403 [info] [command][6a33351d-4c98-448f-bef5-226a010b0d0e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""6a33351d-4c98-448f-bef5-226a010b0d0e""}\n2025-07-18 12:14:04.404 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][059f4c4c-6b84-4a5e-a8f3-6aab9a70f63e] received connection request\n2025-07-18 12:14:04.404 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:14:04.490 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][059f4c4c-6b84-4a5e-a8f3-6aab9a70f63e] socks forwarding established\n2025-07-18 12:14:04.587 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][059f4c4c-6b84-4a5e-a8f3-6aab9a70f63e] socks connection closed\n2025-07-18 12:14:04.587 [info] [command][6a33351d-4c98-448f-bef5-226a010b0d0e] Process exited with code 0\n2025-07-18 12:14:04.587 [info] [command][6a33351d-4c98-448f-bef5-226a010b0d0e] Socket close event received\n2025-07-18 12:14:04.670 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 64323 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:15:04.592 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:15:04.595 [info] [command][dbe039f3-e36e-43d5-9a10-5982b85f67a1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""dbe039f3-e36e-43d5-9a10-5982b85f67a1""}\n2025-07-18 12:15:04.596 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][15aaa184-e749-43e3-a90e-721cefcc9a1f] received connection request\n2025-07-18 12:15:04.596 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:15:04.695 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][15aaa184-e749-43e3-a90e-721cefcc9a1f] socks forwarding established\n2025-07-18 12:15:04.817 [info] [command][dbe039f3-e36e-43d5-9a10-5982b85f67a1] Process exited with code 0\n2025-07-18 12:15:04.817 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][15aaa184-e749-43e3-a90e-721cefcc9a1f] socks connection closed\n2025-07-18 12:15:04.817 [info] [command][dbe039f3-e36e-43d5-9a10-5982b85f67a1] Socket close event received\n2025-07-18 12:15:04.934 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 64345 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:16:04.817 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:16:04.818 [info] [command][e88c573f-216c-410a-ab4e-f26eaf7f6a89] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""e88c573f-216c-410a-ab4e-f26eaf7f6a89""}\n2025-07-18 12:16:04.819 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:36367][3d8858c3-093c-4fc9-9c4f-89618a8a0a83] received connection request\n2025-07-18 12:16:04.819 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:16:07.059 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][3d8858c3-093c-4fc9-9c4f-89618a8a0a83] socks forwarding established\n2025-07-18 12:16:08.633 [info] [command][e88c573f-216c-410a-ab4e-f26eaf7f6a89] Process exited with code 0\n2025-07-18 12:16:08.633 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:63100 -> 127.0.0.1:36367][3d8858c3-093c-4fc9-9c4f-89618a8a0a83] socks connection closed\n2025-07-18 12:16:08.633 [info] [command][e88c573f-216c-410a-ab4e-f26eaf7f6a89] Socket close event received\n2025-07-18 12:16:08.972 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 63100 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 64579 to 127.0.0.1 port 63100, nchannels 6\n\n2025-07-18 12:16:43.344 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-18 12:16:43.344 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-18 12:16:43.348 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:46063][02845163-c508-4bf1-87e1-1172989088b0] received connection request\n2025-07-18 12:16:43.348 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:16:46.350 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-18 12:16:46.350 [error] Failed to connect to Cursor server at http://127.0.0.1:63127, attempt 1 of 3 This operation was aborted\n2025-07-18 12:16:46.353 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:46063][ebbd1c79-c659-4efb-90ca-44af02117708] received connection request\n2025-07-18 12:16:46.354 [info] (ssh_tunnel) stderr: debug1: Connection to port 63100 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:16:46.417 [info] Terminating existing SSH process with pid: 15146\n2025-07-18 12:16:46.417 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 12:16:46.417 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-qKaxiL/socket.sock\n2025-07-18 12:16:46.422 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-18 12:16:46.422 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:63100 -> 127.0.0.1:46063][3437ca0e-325d-48a3-aee2-b73e6d463d11] socks connection closed\n2025-07-18 12:16:46.422 [error] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:63100 -> 127.0.0.1:46063][02845163-c508-4bf1-87e1-1172989088b0] error while creating socks forwarding Socket closed\n2025-07-18 12:16:46.422 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:63100 -> 127.0.0.1:46063][8963cd47-68cb-494a-8ea4-04f6f73d586e] socks connection closed\n2025-07-18 12:16:46.422 [error] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:63100 -> 127.0.0.1:46063][ebbd1c79-c659-4efb-90ca-44af02117708] error while creating socks forwarding Socket closed\n2025-07-18 12:16:46.426 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_53497.sh"" | ssh -v -T -D 64803 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 12:16:46.426 [info] Started installation script. Waiting for it to finish...\n2025-07-18 12:16:46.426 [info] Waiting for server to install via process(15443)...\n2025-07-18 12:16:46.433 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 12:16:46.433 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 12:16:46.433 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 12:16:46.433 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 12:16:46.433 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 12:16:47.354 [error] Failed to connect to Cursor server at http://127.0.0.1:63127, attempt 2 of 3 This operation was aborted\n2025-07-18 12:16:48.038 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 12:16:48.038 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 12:16:48.040 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-18 12:16:48.040 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-18 12:16:48.040 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 12:16:48.356 [error] Failed to connect to Cursor server at http://127.0.0.1:63127, attempt 3 of 3 This operation was aborted\n2025-07-18 12:16:48.356 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-18 12:16:48.356 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-18 12:16:48.466 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 12:16:48.468 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-18 12:16:48.468 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 12:16:48.585 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 12:16:48.588 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 12:16:49.226 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 12:16:49.227 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 12:16:49.232 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-18 12:16:49.232 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 12:16:49.622 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 12:16:49.924 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 12:16:49.929 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-18 12:16:49.929 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 12:16:50.610 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 12:16:50.738 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:16:50.835 [info] Askpass server received request: POST /\n2025-07-18 12:16:50.835 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 12:16:50.835 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 12:17:05.870 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:17:05.949 [info] Askpass server received request: POST /\n2025-07-18 12:17:05.950 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-18 12:17:05.950 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-18 12:17:08.635 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:17:08.637 [info] [command][a1f0c4ed-7066-434a-8e81-ebc17629c78e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""a1f0c4ed-7066-434a-8e81-ebc17629c78e""}\n2025-07-18 12:17:08.637 [error] [forwarding][multiplex][127.0.0.1:63128 -> unknown}][f0a78b2d-eda6-4f7c-b0a0-76142c0da87f] remote server not configured\n2025-07-18 12:17:08.638 [error] [command][a1f0c4ed-7066-434a-8e81-ebc17629c78e] Socket error: Error: read ECONNRESET\n2025-07-18 12:17:08.638 [info] [command][a1f0c4ed-7066-434a-8e81-ebc17629c78e] Socket close event received\n2025-07-18 12:17:23.251 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.20]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:64803 forwarded to remote address socks:0\n\n2025-07-18 12:17:23.252 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 64803.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 64803.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-18 12:17:23.541 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-18 12:17:23.542 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-18 12:17:23.551 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-18 12:17:23.676 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-18 12:17:28.811 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-18 12:17:28.957 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 12:17:28.975 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-18 12:17:29.015 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-18 12:17:29.173 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\nRunning multiplex server: \n\n2025-07-18 12:17:29.204 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 12:17:29.205 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-18 12:17:29.348 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-18 12:17:29.350 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js c8a681e7-f45c-4d17-9357-d0ea4ef9192c\nMultiplex server started with PID 4009493 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\nReading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 12:17:29.804 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-18 12:17:29.973 [info] (ssh_tunnel) stdout: Code server script is already running /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server. Running processes are 3927944 sh /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\n\n2025-07-18 12:17:29.974 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 12:17:29.975 [info] (ssh_tunnel) stdout: 762da018be1eb026ea4ab486: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==45025==\nmultiplexConnectionToken==c8a681e7-f45c-4d17-9357-d0ea4ef9192c==\ncodeListeningOn==43977==\ncodeConnectionToken==70eb145a-e6c5-4ab0-b258-d4237fe3d23a==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n762da018be1eb026ea4ab486: end\n\n2025-07-18 12:17:29.978 [info] Server install command exit code: 0\n2025-07-18 12:17:29.978 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_53497.sh\n2025-07-18 12:17:29.981 [info] [forwarding][code] returning existing forwarding server listening on local port 63127\n2025-07-18 12:17:29.982 [info] [remote-ssh] codeListeningOn (remote=[object Object]; local=[object Object]) codeConnectionToken: 70eb145a-e6c5-4ab0-b258-d4237fe3d23a\n2025-07-18 12:17:29.982 [info] [forwarding][multiplex] returning existing forwarding server listening on local port 63128\n2025-07-18 12:17:29.982 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: c8a681e7-f45c-4d17-9357-d0ea4ef9192c\n2025-07-18 12:17:29.982 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:63128\n2025-07-18 12:17:29.986 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:45025][2e3e323a-b7c4-4f4f-8fb4-c7f3fcfc5fe7] received connection request\n2025-07-18 12:17:29.986 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:43977][b2025cf6-dd11-4739-978a-c343707aa44f] received connection request\n2025-07-18 12:17:29.986 [info] [command][5d0b5330-b690-416c-8982-92c3ac7a2ab5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c8a681e7-f45c-4d17-9357-d0ea4ef9192c"",""id"":""5d0b5330-b690-416c-8982-92c3ac7a2ab5""}\n2025-07-18 12:17:29.989 [info] (ssh_tunnel) stderr: debug1: Connection to port 64803 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\ndebug1: Connection to port 64803 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:17:29.994 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 12:17:29.998 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-18 12:17:30.116 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:64803 -> 127.0.0.1:45025][2e3e323a-b7c4-4f4f-8fb4-c7f3fcfc5fe7] socks forwarding established\n2025-07-18 12:17:30.128 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:64803 -> 127.0.0.1:43977][b2025cf6-dd11-4739-978a-c343707aa44f] socks forwarding established\n2025-07-18 12:17:30.322 [info] [command][5d0b5330-b690-416c-8982-92c3ac7a2ab5] Process exited with code 0\n2025-07-18 12:17:30.326 [info] Successfully connected to Cursor server at http://127.0.0.1:63127/version\n2025-07-18 12:17:30.326 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-18 12:17:30.328 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:64803 -> 127.0.0.1:45025][2e3e323a-b7c4-4f4f-8fb4-c7f3fcfc5fe7] socks connection closed\n2025-07-18 12:17:30.328 [info] [command][5d0b5330-b690-416c-8982-92c3ac7a2ab5] Socket close event received\n2025-07-18 12:17:30.330 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:45025][b6320f8b-f9df-4f2f-8adc-654f61b8d5f4] received connection request\n2025-07-18 12:17:30.330 [info] [command][2462c303-b6eb-4003-8076-0f006b1b4887] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""c8a681e7-f45c-4d17-9357-d0ea4ef9192c"",""id"":""2462c303-b6eb-4003-8076-0f006b1b4887""}\n2025-07-18 12:17:30.330 [info] (ssh_tunnel) stderr: debug1: Connection to port 64803 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:17:30.458 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 64803 for 127.0.0.1 port 45025, connect from 127.0.0.1 port 64950 to 127.0.0.1 port 64803, nchannels 6\n\n2025-07-18 12:17:30.474 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:64803 -> 127.0.0.1:45025][b6320f8b-f9df-4f2f-8adc-654f61b8d5f4] socks forwarding established\n2025-07-18 12:17:30.781 [info] [command][2462c303-b6eb-4003-8076-0f006b1b4887] Process exited with code 0\n2025-07-18 12:17:30.781 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-18 12:17:30.782 [info] [remote-ssh] Resolved exec server. Socks port: 64803\n2025-07-18 12:17:30.782 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":63127,""connectionToken"":""70eb145a-e6c5-4ab0-b258-d4237fe3d23a"",""extensionHostEnv"":{}}. Socks port: 64803\n2025-07-18 12:17:30.783 [info] [forwarding][multiplex][127.0.0.1:63128 -> 127.0.0.1:64803 -> 127.0.0.1:45025][b6320f8b-f9df-4f2f-8adc-654f61b8d5f4] socks connection closed\n2025-07-18 12:17:30.783 [info] [command][2462c303-b6eb-4003-8076-0f006b1b4887] Socket close event received\n2025-07-18 12:17:30.858 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:43977][866a8ef4-f52a-4f57-988d-ad4fe83d93af] received connection request\n2025-07-18 12:17:30.858 [info] (ssh_tunnel) stderr: debug1: Connection to port 64803 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:17:30.956 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 64803 for 127.0.0.1 port 45025, connect from 127.0.0.1 port 64953 to 127.0.0.1 port 64803, nchannels 6\n\n2025-07-18 12:17:31.058 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:64803 -> 127.0.0.1:43977][866a8ef4-f52a-4f57-988d-ad4fe83d93af] socks forwarding established\n2025-07-18 12:17:31.322 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:43977][8fae8bde-35d3-47b9-a516-067860e29cb6] received connection request\n2025-07-18 12:17:31.322 [info] (ssh_tunnel) stderr: debug1: Connection to port 64803 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:17:31.481 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:64803 -> 127.0.0.1:43977][8fae8bde-35d3-47b9-a516-067860e29cb6] socks forwarding established\n2025-07-18 12:17:31.667 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:64803 -> 127.0.0.1:43977][866a8ef4-f52a-4f57-988d-ad4fe83d93af] socks connection closed\n2025-07-18 12:17:31.829 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 64803 for 127.0.0.1 port 43977, connect from 127.0.0.1 port 64955 to 127.0.0.1 port 64803, nchannels 6\n\n2025-07-18 12:17:32.209 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:64803 -> 127.0.0.1:43977][8fae8bde-35d3-47b9-a516-067860e29cb6] socks connection closed\n2025-07-18 12:17:32.533 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 64803 for 127.0.0.1 port 43977, connect from 127.0.0.1 port 64957 to 127.0.0.1 port 64803, nchannels 5\n\n2025-07-18 12:17:33.537 [info] [forwarding][code][127.0.0.1:63127 -> 127.0.0.1:64803 -> 127.0.0.1:43977][b2025cf6-dd11-4739-978a-c343707aa44f] socks connection closed\n2025-07-18 12:17:33.537 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 64803 for 127.0.0.1 port 43977, connect from 127.0.0.1 port 64951 to 127.0.0.1 port 64803, nchannels 4\n\n2025-07-18 12:17:36.597 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-18 12:17:36.610 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-b2i3wK/socket.sock\n2025-07-18 12:17:36.611 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 12:17:36.613 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-b2i3wK/socket.sock\n2025-07-18 12:17:36.615 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_42011.sh"" | ssh -v -T -D 64961 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 12:17:36.615 [info] Started installation script. Waiting for it to finish...\n2025-07-18 12:17:36.615 [info] Waiting for server to install via process(15499)...\n2025-07-18 12:17:36.621 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 12:17:36.621 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 12:17:36.621 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 12:17:36.621 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 12:17:36.622 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 12:17:36.714 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 12:17:36.714 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 12:17:36.715 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-18 12:17:36.715 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-18 12:17:36.715 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 12:17:36.844 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 12:17:36.846 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-18 12:17:36.846 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 12:17:37.017 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 12:17:37.017 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 12:17:37.127 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-18 12:17:37.129 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-18 12:17:37.129 [info] (ssh_tunnel) stderr: debug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 12:17:37.133 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\n\n2025-07-18 12:17:37.133 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_NEWKEYS\ndebug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 12:17:37.396 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 12:17:37.532 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 12:17:37.542 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\ndebug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\n\n2025-07-18 12:17:37.545 [info] (ssh_tunnel) stderr: debug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 12:17:38.220 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\n\n2025-07-18 12:17:38.220 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 12:17:39.703 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:17:39.806 [info] Askpass server received request: POST /\n2025-07-18 12:17:39.807 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 12:17:39.807 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-18 12:18:03.532 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:18:03.634 [info] Askpass server received request: POST /\n2025-07-18 12:18:03.634 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-18 12:18:03.634 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-18 12:18:07.126 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:64961 forwarded to remote address socks:0\ndebug1: Local forwarding listening on ::1 port 64961.\n\n2025-07-18 12:18:07.127 [info] (ssh_tunnel) stderr: debug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 64961.\n\n2025-07-18 12:18:07.127 [info] (ssh_tunnel) stderr: debug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\n\n2025-07-18 12:18:07.127 [info] (ssh_tunnel) stderr: debug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-18 12:18:07.448 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-18 12:18:07.449 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-18 12:18:07.456 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-18 12:18:07.727 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-18 12:18:11.571 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-18 12:18:11.752 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 12:18:11.775 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-18 12:18:11.797 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-18 12:18:11.919 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-18 12:18:12.086 [info] (ssh_tunnel) stdout: Running multiplex server: 2757735 /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js d9bf2059-1e02-4847-bce3-8e6477467546\n\n2025-07-18 12:18:12.087 [info] (ssh_tunnel) stdout: Multiplex server script is already running /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js. Running processes are 2757735 /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js d9bf2059-1e02-4847-bce3-8e6477467546\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\n\n2025-07-18 12:18:12.099 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-18 12:18:12.100 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-18 12:18:12.246 [info] (ssh_tunnel) stdout: Code server script is already running /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server. Running processes are 3080454 sh /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\n\n2025-07-18 12:18:12.246 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 12:18:12.279 [info] (ssh_tunnel) stdout: a6987ae5bea6f061e7c47b85: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==36367==\nmultiplexConnectionToken==d9bf2059-1e02-4847-bce3-8e6477467546==\ncodeListeningOn==46063==\ncodeConnectionToken==f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n\n2025-07-18 12:18:12.281 [info] (ssh_tunnel) stdout: a6987ae5bea6f061e7c47b85: end\n\n2025-07-18 12:18:12.282 [info] Server install command exit code: 0\n2025-07-18 12:18:12.282 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_42011.sh\n2025-07-18 12:18:12.283 [info] [forwarding][code] creating new forwarding server\n2025-07-18 12:18:12.284 [info] [forwarding][code] server listening on 127.0.0.1:65022\n2025-07-18 12:18:12.284 [info] [forwarding][code] Set up server\n2025-07-18 12:18:12.284 [info] [remote-ssh] codeListeningOn (remote=[object Object]; local=[object Object]) codeConnectionToken: f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b\n2025-07-18 12:18:12.284 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-18 12:18:12.284 [info] [forwarding][multiplex] server listening on 127.0.0.1:65023\n2025-07-18 12:18:12.284 [info] [forwarding][multiplex] Set up server\n2025-07-18 12:18:12.286 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: d9bf2059-1e02-4847-bce3-8e6477467546\n2025-07-18 12:18:12.286 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:65023\n2025-07-18 12:18:12.290 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-18 12:18:12.291 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:36367][726c2285-c0ec-47aa-8bb7-497a9ff851af] received connection request\n2025-07-18 12:18:12.292 [info] [command][d0ac24e0-bbea-4f54-9e4b-1b655ce38b62] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""d0ac24e0-bbea-4f54-9e4b-1b655ce38b62""}\n2025-07-18 12:18:12.292 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:18:12.302 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:46063][83ffca3c-8e23-4769-be5e-3f25f4592dcf] received connection request\n2025-07-18 12:18:12.302 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:18:12.412 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:64961 -> 127.0.0.1:36367][726c2285-c0ec-47aa-8bb7-497a9ff851af] socks forwarding established\n2025-07-18 12:18:12.413 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:64961 -> 127.0.0.1:46063][83ffca3c-8e23-4769-be5e-3f25f4592dcf] socks forwarding established\n2025-07-18 12:18:12.550 [info] Successfully connected to Cursor server at http://127.0.0.1:65022/version\n2025-07-18 12:18:12.550 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-18 12:18:12.552 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:36367][4b55a5f1-f2d4-4b5c-aa45-5678f22e2665] received connection request\n2025-07-18 12:18:12.552 [info] [command][d0ac24e0-bbea-4f54-9e4b-1b655ce38b62] Process exited with code 0\n2025-07-18 12:18:12.553 [info] [command][07cd43e3-cfa7-4e7c-bffb-2077b394741a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""07cd43e3-cfa7-4e7c-bffb-2077b394741a""}\n2025-07-18 12:18:12.553 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:64961 -> 127.0.0.1:36367][726c2285-c0ec-47aa-8bb7-497a9ff851af] socks connection closed\n2025-07-18 12:18:12.553 [info] [command][d0ac24e0-bbea-4f54-9e4b-1b655ce38b62] Socket close event received\n2025-07-18 12:18:12.553 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:18:12.696 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 64961 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 65025 to 127.0.0.1 port 64961, nchannels 6\n\n2025-07-18 12:18:12.697 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:64961 -> 127.0.0.1:36367][4b55a5f1-f2d4-4b5c-aa45-5678f22e2665] socks forwarding established\n2025-07-18 12:18:12.822 [info] [command][07cd43e3-cfa7-4e7c-bffb-2077b394741a] Process exited with code 0\n2025-07-18 12:18:12.822 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-18 12:18:12.823 [info] [remote-ssh] Resolved exec server. Socks port: 64961\n2025-07-18 12:18:12.823 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":65022,""connectionToken"":""f814ed7c-eb99-4d9b-b0ae-6e0a20a0733b"",""extensionHostEnv"":{}}. Socks port: 64961\n2025-07-18 12:18:12.824 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:64961 -> 127.0.0.1:36367][4b55a5f1-f2d4-4b5c-aa45-5678f22e2665] socks connection closed\n2025-07-18 12:18:12.824 [info] [command][07cd43e3-cfa7-4e7c-bffb-2077b394741a] Socket close event received\n2025-07-18 12:18:12.860 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:46063][06e0395d-f280-442e-af18-468e01c24bbb] received connection request\n2025-07-18 12:18:12.860 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:18:12.931 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 64961 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 65029 to 127.0.0.1 port 64961, nchannels 6\n\n2025-07-18 12:18:12.957 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:64961 -> 127.0.0.1:46063][06e0395d-f280-442e-af18-468e01c24bbb] socks forwarding established\n2025-07-18 12:18:13.129 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:46063][fbae4458-d432-484c-8fe2-7af3e315a2d7] received connection request\n2025-07-18 12:18:13.130 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:18:13.244 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:64961 -> 127.0.0.1:46063][fbae4458-d432-484c-8fe2-7af3e315a2d7] socks forwarding established\n2025-07-18 12:18:13.746 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-18 12:18:17.548 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 64961 for 127.0.0.1 port 46063, connect from 127.0.0.1 port 65027 to 127.0.0.1 port 64961, nchannels 6\n\n2025-07-18 12:18:17.549 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:64961 -> 127.0.0.1:46063][83ffca3c-8e23-4769-be5e-3f25f4592dcf] socks connection closed\n2025-07-18 12:18:23.121 [info] [tunnel-forwarding][localhost:8791 -> localhost:8791] server listening\n2025-07-18 12:18:23.121 [info] Cross binding to [::1]:8791. Originally bound to 127.0.0.1:8791\n2025-07-18 12:18:23.121 [info] [tunnel-forwarding][::1:8791 -> localhost:8791] server listening\n2025-07-18 12:19:12.556 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:65023\n2025-07-18 12:19:12.560 [info] [command][de7693ba-fb15-416d-be23-cbf4745087d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""de7693ba-fb15-416d-be23-cbf4745087d4""}\n2025-07-18 12:19:12.561 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:36367][ed177241-9791-4877-9197-d7b21e936001] received connection request\n2025-07-18 12:19:12.561 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:19:12.687 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:64961 -> 127.0.0.1:36367][ed177241-9791-4877-9197-d7b21e936001] socks forwarding established\n2025-07-18 12:19:12.818 [info] [command][de7693ba-fb15-416d-be23-cbf4745087d4] Process exited with code 0\n2025-07-18 12:19:12.818 [info] [command][de7693ba-fb15-416d-be23-cbf4745087d4] Socket close event received\n2025-07-18 12:19:12.821 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:64961 -> 127.0.0.1:36367][ed177241-9791-4877-9197-d7b21e936001] socks connection closed\n2025-07-18 12:19:12.916 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 64961 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 65467 to 127.0.0.1 port 64961, nchannels 6\n\n2025-07-18 12:20:12.822 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:65023\n2025-07-18 12:20:12.825 [info] [command][a04b49bf-a63e-4cba-9b31-b4360ad5f31b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""a04b49bf-a63e-4cba-9b31-b4360ad5f31b""}\n2025-07-18 12:20:12.826 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:36367][9b562b5b-9fab-4c26-a7d3-71105319c737] received connection request\n2025-07-18 12:20:12.826 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:20:12.917 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:64961 -> 127.0.0.1:36367][9b562b5b-9fab-4c26-a7d3-71105319c737] socks forwarding established\n2025-07-18 12:20:13.041 [info] [command][a04b49bf-a63e-4cba-9b31-b4360ad5f31b] Process exited with code 0\n2025-07-18 12:20:13.041 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:64961 -> 127.0.0.1:36367][9b562b5b-9fab-4c26-a7d3-71105319c737] socks connection closed\n2025-07-18 12:20:13.042 [info] [command][a04b49bf-a63e-4cba-9b31-b4360ad5f31b] Socket close event received\n2025-07-18 12:20:13.147 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 64961 for 127.0.0.1 port 36367, connect from 127.0.0.1 port 65509 to 127.0.0.1 port 64961, nchannels 6\n\n2025-07-18 12:21:13.045 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:65023\n2025-07-18 12:21:13.048 [info] [command][82c207b3-e984-4945-835a-825f42d89272] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""d9bf2059-1e02-4847-bce3-8e6477467546"",""id"":""82c207b3-e984-4945-835a-825f42d89272""}\n2025-07-18 12:21:13.048 [info] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:36367][0cda2afc-43af-4fd0-99af-4a9650739eb2] received connection request\n2025-07-18 12:21:13.049 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:21:33.832 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:46063][d0949262-2d0f-4983-9930-86d83ee7571b] received connection request\n2025-07-18 12:21:33.833 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:21:37.172 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-18 12:21:37.172 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-18 12:21:37.176 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:46063][f2c187cb-e00c-491d-b6c7-6080808cea98] received connection request\n2025-07-18 12:21:37.177 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:21:40.177 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-18 12:21:40.177 [error] Failed to connect to Cursor server at http://127.0.0.1:65022, attempt 1 of 3 This operation was aborted\n2025-07-18 12:21:40.181 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:46063][8341f49a-52b5-4ba1-ad90-deb2a578ec1b] received connection request\n2025-07-18 12:21:40.182 [info] (ssh_tunnel) stderr: debug1: Connection to port 64961 forwarding to socks port 0 requested.\ndebug1: channel 8: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-18 12:21:40.239 [info] Terminating existing SSH process with pid: 15499\n2025-07-18 12:21:40.239 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-18 12:21:40.239 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-18 12:21:40.239 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:64961 -> 127.0.0.1:46063][06e0395d-f280-442e-af18-468e01c24bbb] socks connection closed\n2025-07-18 12:21:40.240 [error] [forwarding][multiplex][127.0.0.1:65023 -> 127.0.0.1:64961 -> 127.0.0.1:36367][0cda2afc-43af-4fd0-99af-4a9650739eb2] error while creating socks forwarding Socket closed\n2025-07-18 12:21:40.240 [info] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:64961 -> 127.0.0.1:46063][fbae4458-d432-484c-8fe2-7af3e315a2d7] socks connection closed\n2025-07-18 12:21:40.240 [error] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:64961 -> 127.0.0.1:46063][d0949262-2d0f-4983-9930-86d83ee7571b] error while creating socks forwarding Socket closed\n2025-07-18 12:21:40.240 [error] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:64961 -> 127.0.0.1:46063][f2c187cb-e00c-491d-b6c7-6080808cea98] error while creating socks forwarding Socket closed\n2025-07-18 12:21:40.240 [error] [forwarding][code][127.0.0.1:65022 -> 127.0.0.1:64961 -> 127.0.0.1:46063][8341f49a-52b5-4ba1-ad90-deb2a578ec1b] error while creating socks forwarding Socket closed\n2025-07-18 12:21:40.240 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-b2i3wK/socket.sock\n2025-07-18 12:21:40.240 [info] [command][82c207b3-e984-4945-835a-825f42d89272] Socket end event received\n2025-07-18 12:21:40.240 [info] [command][82c207b3-e984-4945-835a-825f42d89272] Socket close event received\n2025-07-18 12:21:40.243 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2028.sh"" | ssh -v -T -D 49461 horeka.scc.kit.edu bash --login -c bash\n2025-07-18 12:21:40.243 [info] Started installation script. Waiting for it to finish...\n2025-07-18 12:21:40.243 [info] Waiting for server to install via process(15644)...\n2025-07-18 12:21:40.249 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-18 12:21:40.249 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-18 12:21:40.250 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-18 12:21:40.250 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-18 12:21:40.250 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-18 12:21:41.181 [error] Failed to connect to Cursor server at http://127.0.0.1:65022, attempt 2 of 3 This operation was aborted\n2025-07-18 12:21:42.190 [error] Failed to connect to Cursor server at http://127.0.0.1:65022, attempt 3 of 3 This operation was aborted\n2025-07-18 12:21:42.190 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-18 12:21:42.190 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-18 12:21:51.508 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-18 12:21:51.509 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-18 12:21:51.510 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-18 12:21:51.510 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\ndebug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-18 12:21:58.836 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-18 12:21:58.838 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\n\n2025-07-18 12:21:58.838 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-18 12:22:02.254 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-18 12:22:02.254 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-18 12:22:03.615 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\ndebug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-18 12:22:03.616 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-18 12:22:03.616 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-18 12:22:04.931 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-18 12:22:05.232 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-18 12:22:05.238 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-18 12:22:05.238 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\n\n2025-07-18 12:22:05.238 [info] (ssh_tunnel) stderr: debug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-18 12:22:06.072 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-18 12:22:06.300 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-18 12:22:06.405 [info] Askpass server received request: POST /\n2025-07-18 12:22:06.406 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-18 12:22:06.406 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-19 08:59:26.345 [error] Password authentication cancelled\n2025-07-19 08:59:26.366 [info] (ssh_tunnel) stderr: Server returned status code: 500\n\n2025-07-19 08:59:26.378 [info] (ssh_tunnel) stderr: ssh_dispatch_run_fatal: Connection to 141.52.43.20 port 22: Broken pipe\n\n2025-07-19 08:59:26.384 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-19 08:59:26.385 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-19 08:59:26.385 [error] Failed to connect after 1 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-19 08:59:26.385 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_2028.sh\n2025-07-19 08:59:26.386 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-19 08:59:30.812 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-19 08:59:30.825 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-6bnp9t/socket.sock\n2025-07-19 08:59:30.826 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-19 08:59:30.828 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-6bnp9t/socket.sock\n2025-07-19 08:59:30.830 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_10436.sh"" | ssh -v -T -D 62745 horeka.scc.kit.edu bash --login -c bash\n2025-07-19 08:59:30.830 [info] Started installation script. Waiting for it to finish...\n2025-07-19 08:59:30.830 [info] Waiting for server to install via process(22650)...\n2025-07-19 08:59:30.836 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-19 08:59:30.836 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-19 08:59:30.837 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-19 08:59:30.837 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-19 08:59:30.837 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-19 08:59:31.246 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-19 08:59:31.246 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-19 08:59:31.252 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\n\n2025-07-19 08:59:31.252 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\ndebug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-19 08:59:31.333 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-19 08:59:31.335 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-19 08:59:31.335 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT sent\n\n2025-07-19 08:59:31.492 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-19 08:59:31.493 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-19 08:59:31.645 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-19 08:59:31.651 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-19 08:59:31.654 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\n\n2025-07-19 08:59:31.654 [info] (ssh_tunnel) stderr: debug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-19 08:59:31.654 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\n\n2025-07-19 08:59:31.654 [info] (ssh_tunnel) stderr: debug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-19 08:59:31.824 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-19 08:59:31.922 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-19 08:59:31.925 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-19 08:59:31.925 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \n\n2025-07-19 08:59:31.925 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\n\n2025-07-19 08:59:31.925 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-19 08:59:32.531 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-19 08:59:32.568 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-19 08:59:32.823 [info] Askpass server received request: POST /\n2025-07-19 08:59:32.823 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-19 08:59:32.823 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-19 08:59:48.407 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-19 08:59:48.510 [info] Askpass server received request: POST /\n2025-07-19 08:59:48.510 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-19 08:59:48.510 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-19 08:59:57.370 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\n\n2025-07-19 08:59:57.372 [info] (ssh_tunnel) stderr: debug1: Local connections to LOCALHOST:62745 forwarded to remote address socks:0\ndebug1: Local forwarding listening on ::1 port 62745.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 62745.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\ndebug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-19 08:59:58.034 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-19 08:59:58.035 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-19 08:59:58.042 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\n\n2025-07-19 08:59:58.042 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-19 08:59:58.197 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-19 09:00:01.081 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-19 09:00:01.251 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-19 09:00:01.268 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\n\n2025-07-19 09:00:01.334 [info] (ssh_tunnel) stdout: v20.18.2\n\n2025-07-19 09:00:01.492 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-19 09:00:01.586 [info] (ssh_tunnel) stdout: Running multiplex server: \n\n2025-07-19 09:00:01.596 [info] (ssh_tunnel) stdout: Creating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-19 09:00:01.616 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-19 09:00:01.643 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-19 09:00:01.786 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js 574757b8-1b27-4211-b523-61121ad825f0\n\n2025-07-19 09:00:01.793 [info] (ssh_tunnel) stdout: Multiplex server started with PID 864346 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-19 09:00:01.794 [info] (ssh_tunnel) stdout: Multiplex server token file found\n\n2025-07-19 09:00:01.802 [info] (ssh_tunnel) stdout: Reading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-19 09:00:02.335 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-19 09:00:02.427 [info] (ssh_tunnel) stdout: Code server script is not running\nCreating code server token file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-19 09:00:02.440 [info] (ssh_tunnel) stdout: Starting code server script /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2 &\n\n2025-07-19 09:00:02.446 [info] (ssh_tunnel) stdout: Code server started with PID 864386 and wrote pid to file /run/user/996262/cursor-remote-code.pid.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-19 09:00:02.456 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-19 09:00:02.998 [info] (ssh_tunnel) stdout: 05fcc381f0a24d4c658916bc: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==46011==\nmultiplexConnectionToken==574757b8-1b27-4211-b523-61121ad825f0==\ncodeListeningOn==34135==\ncodeConnectionToken==6f7dedd2-3909-463d-b8e4-f85a9da2f87d==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n05fcc381f0a24d4c658916bc: end\n\n2025-07-19 09:00:02.999 [info] Server install command exit code: 0\n2025-07-19 09:00:02.999 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_10436.sh\n2025-07-19 09:00:03.000 [info] [forwarding][code] creating new forwarding server\n2025-07-19 09:00:03.001 [info] [forwarding][code] server listening on 127.0.0.1:62785\n2025-07-19 09:00:03.001 [info] [forwarding][code] Set up server\n2025-07-19 09:00:03.001 [info] [remote-ssh] codeListeningOn (remote=[object Object]; local=[object Object]) codeConnectionToken: 6f7dedd2-3909-463d-b8e4-f85a9da2f87d\n2025-07-19 09:00:03.001 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-19 09:00:03.001 [info] [forwarding][multiplex] server listening on 127.0.0.1:62786\n2025-07-19 09:00:03.001 [info] [forwarding][multiplex] Set up server\n2025-07-19 09:00:03.003 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: 574757b8-1b27-4211-b523-61121ad825f0\n2025-07-19 09:00:03.003 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:00:03.007 [info] [command][082c1967-75d5-44bc-97d9-fd0a1a3e0722] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""082c1967-75d5-44bc-97d9-fd0a1a3e0722""}\n2025-07-19 09:00:03.008 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9fada376-a960-4f8e-a5de-8a00585e4f61] received connection request\n2025-07-19 09:00:03.009 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:00:03.014 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-19 09:00:03.029 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:34135][c65eb5e8-5919-4f44-b959-e64d9d64e8bf] received connection request\n2025-07-19 09:00:03.030 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:00:03.045 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9fada376-a960-4f8e-a5de-8a00585e4f61] socks forwarding established\n2025-07-19 09:00:03.069 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][c65eb5e8-5919-4f44-b959-e64d9d64e8bf] socks forwarding established\n2025-07-19 09:00:03.128 [info] [command][082c1967-75d5-44bc-97d9-fd0a1a3e0722] Process exited with code 0\n2025-07-19 09:00:03.128 [info] [command][082c1967-75d5-44bc-97d9-fd0a1a3e0722] Socket close event received\n2025-07-19 09:00:03.132 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9fada376-a960-4f8e-a5de-8a00585e4f61] socks connection closed\n2025-07-19 09:00:03.159 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 62788 to 127.0.0.1 port 62745, nchannels 5\n\n2025-07-19 09:00:03.233 [info] Successfully connected to Cursor server at http://127.0.0.1:62785/version\n2025-07-19 09:00:03.233 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-19 09:00:03.233 [info] [command][6e0e3a1d-b5d6-4451-9525-357220ae29c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""6e0e3a1d-b5d6-4451-9525-357220ae29c9""}\n2025-07-19 09:00:03.233 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][da182f56-27a3-4985-9cfc-7978b23429dd] received connection request\n2025-07-19 09:00:03.234 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:00:03.267 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][da182f56-27a3-4985-9cfc-7978b23429dd] socks forwarding established\n2025-07-19 09:00:03.307 [info] [command][6e0e3a1d-b5d6-4451-9525-357220ae29c9] Process exited with code 0\n2025-07-19 09:00:03.307 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-19 09:00:03.308 [info] [remote-ssh] Resolved exec server. Socks port: 62745\n2025-07-19 09:00:03.308 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":62785,""connectionToken"":""6f7dedd2-3909-463d-b8e4-f85a9da2f87d"",""extensionHostEnv"":{}}. Socks port: 62745\n2025-07-19 09:00:03.308 [info] [command][6e0e3a1d-b5d6-4451-9525-357220ae29c9] Socket close event received\n2025-07-19 09:00:03.309 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][da182f56-27a3-4985-9cfc-7978b23429dd] socks connection closed\n2025-07-19 09:00:03.337 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 62792 to 127.0.0.1 port 62745, nchannels 5\n\n2025-07-19 09:00:03.371 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:34135][c0bbe234-1008-4f82-9006-5e57fa6fba8d] received connection request\n2025-07-19 09:00:03.373 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:00:03.401 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][c0bbe234-1008-4f82-9006-5e57fa6fba8d] socks forwarding established\n2025-07-19 09:00:03.446 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:34135][e0a5e9d2-f7d6-4b91-8a0d-628324bb3e2f] received connection request\n2025-07-19 09:00:03.446 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:00:03.485 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][e0a5e9d2-f7d6-4b91-8a0d-628324bb3e2f] socks forwarding established\n2025-07-19 09:00:03.655 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-19 09:00:06.265 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 34135, connect from 127.0.0.1 port 62790 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:00:06.265 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][c65eb5e8-5919-4f44-b959-e64d9d64e8bf] socks connection closed\n2025-07-19 09:00:09.673 [info] [tunnel-forwarding][localhost:8791 -> localhost:8791] server listening\n2025-07-19 09:00:09.673 [info] Cross binding to [::1]:8791. Originally bound to 127.0.0.1:8791\n2025-07-19 09:00:09.673 [info] [tunnel-forwarding][::1:8791 -> localhost:8791] server listening\n2025-07-19 09:01:03.130 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:01:03.132 [info] [command][a0b24d7e-2bcb-414c-ac15-90bbda2c21df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a0b24d7e-2bcb-414c-ac15-90bbda2c21df""}\n2025-07-19 09:01:03.133 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][fd372e31-c05f-4ec1-8e1f-dc390a547c20] received connection request\n2025-07-19 09:01:03.133 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:01:03.160 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fd372e31-c05f-4ec1-8e1f-dc390a547c20] socks forwarding established\n2025-07-19 09:01:03.201 [info] [command][a0b24d7e-2bcb-414c-ac15-90bbda2c21df] Process exited with code 0\n2025-07-19 09:01:03.201 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fd372e31-c05f-4ec1-8e1f-dc390a547c20] socks connection closed\n2025-07-19 09:01:03.201 [info] [command][a0b24d7e-2bcb-414c-ac15-90bbda2c21df] Socket close event received\n2025-07-19 09:01:03.228 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 62929 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:02:03.202 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:02:03.207 [info] [command][efd75a70-a458-451b-907d-a2eb9eaaa5ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""efd75a70-a458-451b-907d-a2eb9eaaa5ff""}\n2025-07-19 09:02:03.207 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][673b9db7-7346-440f-a98a-67b43bb4c63f] received connection request\n2025-07-19 09:02:03.208 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:02:03.299 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][673b9db7-7346-440f-a98a-67b43bb4c63f] socks forwarding established\n2025-07-19 09:02:03.474 [info] [command][efd75a70-a458-451b-907d-a2eb9eaaa5ff] Process exited with code 0\n2025-07-19 09:02:03.474 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][673b9db7-7346-440f-a98a-67b43bb4c63f] socks connection closed\n2025-07-19 09:02:03.474 [info] [command][efd75a70-a458-451b-907d-a2eb9eaaa5ff] Socket close event received\n2025-07-19 09:02:03.647 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 62979 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:03:03.479 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:03:03.482 [info] [command][e0ac56d7-8bb4-4035-99f2-8e7d5466e9f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e0ac56d7-8bb4-4035-99f2-8e7d5466e9f2""}\n2025-07-19 09:03:03.483 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][37d2efd1-d95b-4650-bf7d-28a6f8665b9a] received connection request\n2025-07-19 09:03:03.483 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:03:03.512 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][37d2efd1-d95b-4650-bf7d-28a6f8665b9a] socks forwarding established\n2025-07-19 09:03:03.555 [info] [command][e0ac56d7-8bb4-4035-99f2-8e7d5466e9f2] Process exited with code 0\n2025-07-19 09:03:03.556 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][37d2efd1-d95b-4650-bf7d-28a6f8665b9a] socks connection closed\n2025-07-19 09:03:03.556 [info] [command][e0ac56d7-8bb4-4035-99f2-8e7d5466e9f2] Socket close event received\n2025-07-19 09:03:03.582 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63025 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:04:03.560 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:04:03.562 [info] [command][80b17e1f-f6c0-49f9-88f7-7db3dae10b9f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""80b17e1f-f6c0-49f9-88f7-7db3dae10b9f""}\n2025-07-19 09:04:03.563 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][1c94f74a-3e50-459e-aaf2-029dc01a43e8] received connection request\n2025-07-19 09:04:03.563 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:04:03.596 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1c94f74a-3e50-459e-aaf2-029dc01a43e8] socks forwarding established\n2025-07-19 09:04:03.642 [info] [command][80b17e1f-f6c0-49f9-88f7-7db3dae10b9f] Process exited with code 0\n2025-07-19 09:04:03.643 [info] [command][80b17e1f-f6c0-49f9-88f7-7db3dae10b9f] Socket close event received\n2025-07-19 09:04:03.675 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63061 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:04:03.675 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1c94f74a-3e50-459e-aaf2-029dc01a43e8] socks connection closed\n2025-07-19 09:05:03.648 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:05:03.650 [info] [command][08e34d28-0f89-4608-9f60-8310d4b8c536] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""08e34d28-0f89-4608-9f60-8310d4b8c536""}\n2025-07-19 09:05:03.651 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5e6bea7f-139e-4b65-a77e-2ca56fdcf82f] received connection request\n2025-07-19 09:05:03.651 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:05:03.752 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5e6bea7f-139e-4b65-a77e-2ca56fdcf82f] socks forwarding established\n2025-07-19 09:05:03.817 [info] [command][08e34d28-0f89-4608-9f60-8310d4b8c536] Process exited with code 0\n2025-07-19 09:05:03.817 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5e6bea7f-139e-4b65-a77e-2ca56fdcf82f] socks connection closed\n2025-07-19 09:05:03.817 [info] [command][08e34d28-0f89-4608-9f60-8310d4b8c536] Socket close event received\n2025-07-19 09:05:03.846 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63107 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:06:03.821 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:06:03.824 [info] [command][c8e8c40c-3fa1-41cb-978f-4c42d657ce0d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c8e8c40c-3fa1-41cb-978f-4c42d657ce0d""}\n2025-07-19 09:06:03.824 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6b37e09d-374b-44ec-aaa9-d96c1ba6bd1e] received connection request\n2025-07-19 09:06:03.825 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:06:03.854 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6b37e09d-374b-44ec-aaa9-d96c1ba6bd1e] socks forwarding established\n2025-07-19 09:06:03.899 [info] [command][c8e8c40c-3fa1-41cb-978f-4c42d657ce0d] Process exited with code 0\n2025-07-19 09:06:03.899 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6b37e09d-374b-44ec-aaa9-d96c1ba6bd1e] socks connection closed\n2025-07-19 09:06:03.899 [info] [command][c8e8c40c-3fa1-41cb-978f-4c42d657ce0d] Socket close event received\n2025-07-19 09:06:03.927 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63141 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:07:03.904 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:07:03.907 [info] [command][0210200a-e11c-4065-a2ef-24bb0eac68b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""0210200a-e11c-4065-a2ef-24bb0eac68b6""}\n2025-07-19 09:07:03.909 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][97e4e7d2-f11d-429e-baa8-236d0a4799c7] received connection request\n2025-07-19 09:07:03.910 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:07:03.942 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][97e4e7d2-f11d-429e-baa8-236d0a4799c7] socks forwarding established\n2025-07-19 09:07:03.982 [info] [command][0210200a-e11c-4065-a2ef-24bb0eac68b6] Process exited with code 0\n2025-07-19 09:07:03.983 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][97e4e7d2-f11d-429e-baa8-236d0a4799c7] socks connection closed\n2025-07-19 09:07:03.983 [info] [command][0210200a-e11c-4065-a2ef-24bb0eac68b6] Socket close event received\n2025-07-19 09:07:04.010 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63175 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:08:03.984 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:08:03.986 [info] [command][d1968f99-4c7d-4355-8fe0-d787e000f89f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""d1968f99-4c7d-4355-8fe0-d787e000f89f""}\n2025-07-19 09:08:03.987 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d4f82ae9-d8f7-4fa8-b037-9e44b9316900] received connection request\n2025-07-19 09:08:03.987 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:08:04.018 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d4f82ae9-d8f7-4fa8-b037-9e44b9316900] socks forwarding established\n2025-07-19 09:08:04.056 [info] [command][d1968f99-4c7d-4355-8fe0-d787e000f89f] Process exited with code 0\n2025-07-19 09:08:04.056 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d4f82ae9-d8f7-4fa8-b037-9e44b9316900] socks connection closed\n2025-07-19 09:08:04.056 [info] [command][d1968f99-4c7d-4355-8fe0-d787e000f89f] Socket close event received\n2025-07-19 09:08:04.085 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63209 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:09:04.057 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:09:04.060 [info] [command][ac40e91b-14d3-46d7-8a9c-6ca769722c64] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ac40e91b-14d3-46d7-8a9c-6ca769722c64""}\n2025-07-19 09:09:04.061 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][da8a8373-6dc1-47c1-97b3-de78dab8a7e4] received connection request\n2025-07-19 09:09:04.062 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:09:04.094 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][da8a8373-6dc1-47c1-97b3-de78dab8a7e4] socks forwarding established\n2025-07-19 09:09:04.135 [info] [command][ac40e91b-14d3-46d7-8a9c-6ca769722c64] Process exited with code 0\n2025-07-19 09:09:04.135 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][da8a8373-6dc1-47c1-97b3-de78dab8a7e4] socks connection closed\n2025-07-19 09:09:04.135 [info] [command][ac40e91b-14d3-46d7-8a9c-6ca769722c64] Socket close event received\n2025-07-19 09:09:04.163 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63230 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:10:04.139 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:10:04.142 [info] [command][3b7db140-d395-41ea-9392-8229feded5d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3b7db140-d395-41ea-9392-8229feded5d8""}\n2025-07-19 09:10:04.143 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][4a4cea50-c951-4a36-b60e-00810504c57b] received connection request\n2025-07-19 09:10:04.144 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:10:04.174 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4a4cea50-c951-4a36-b60e-00810504c57b] socks forwarding established\n2025-07-19 09:10:04.216 [info] [command][3b7db140-d395-41ea-9392-8229feded5d8] Process exited with code 0\n2025-07-19 09:10:04.217 [info] [command][3b7db140-d395-41ea-9392-8229feded5d8] Socket close event received\n2025-07-19 09:10:04.217 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4a4cea50-c951-4a36-b60e-00810504c57b] socks connection closed\n2025-07-19 09:10:04.243 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63274 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:11:04.221 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:11:04.223 [info] [command][88666aba-c688-4909-8090-eec8354581a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""88666aba-c688-4909-8090-eec8354581a6""}\n2025-07-19 09:11:04.224 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][13f735c1-40f0-48ee-a04c-f8692b50717c] received connection request\n2025-07-19 09:11:04.225 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:11:04.253 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][13f735c1-40f0-48ee-a04c-f8692b50717c] socks forwarding established\n2025-07-19 09:11:04.300 [info] [command][88666aba-c688-4909-8090-eec8354581a6] Process exited with code 0\n2025-07-19 09:11:04.300 [info] [command][88666aba-c688-4909-8090-eec8354581a6] Socket close event received\n2025-07-19 09:11:04.300 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][13f735c1-40f0-48ee-a04c-f8692b50717c] socks connection closed\n2025-07-19 09:11:04.327 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63307 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:12:04.305 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:12:04.308 [info] [command][3ef5b8fd-75de-4e2f-a627-58321493e9f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3ef5b8fd-75de-4e2f-a627-58321493e9f2""}\n2025-07-19 09:12:04.309 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][85bae996-6ff3-4bf3-8f48-8e1ed3d21164] received connection request\n2025-07-19 09:12:04.309 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:12:04.340 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][85bae996-6ff3-4bf3-8f48-8e1ed3d21164] socks forwarding established\n2025-07-19 09:12:04.392 [info] [command][3ef5b8fd-75de-4e2f-a627-58321493e9f2] Process exited with code 0\n2025-07-19 09:12:04.392 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][85bae996-6ff3-4bf3-8f48-8e1ed3d21164] socks connection closed\n2025-07-19 09:12:04.392 [info] [command][3ef5b8fd-75de-4e2f-a627-58321493e9f2] Socket close event received\n2025-07-19 09:12:04.424 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63329 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:13:04.393 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:13:04.395 [info] [command][ba36bf19-5e0f-4cc0-811a-8244bb545698] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ba36bf19-5e0f-4cc0-811a-8244bb545698""}\n2025-07-19 09:13:04.396 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][1d764b01-041a-49dc-9214-cf50df56c3a0] received connection request\n2025-07-19 09:13:04.396 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:13:04.434 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1d764b01-041a-49dc-9214-cf50df56c3a0] socks forwarding established\n2025-07-19 09:13:04.493 [info] [command][ba36bf19-5e0f-4cc0-811a-8244bb545698] Process exited with code 0\n2025-07-19 09:13:04.493 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1d764b01-041a-49dc-9214-cf50df56c3a0] socks connection closed\n2025-07-19 09:13:04.493 [info] [command][ba36bf19-5e0f-4cc0-811a-8244bb545698] Socket close event received\n2025-07-19 09:13:04.526 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63368 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:14:04.498 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:14:04.499 [info] [command][a2b7c638-fdc7-41f7-8129-afef8137b2c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a2b7c638-fdc7-41f7-8129-afef8137b2c0""}\n2025-07-19 09:14:04.500 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][be90d256-1514-4eac-840e-d7cc68a58d09] received connection request\n2025-07-19 09:14:04.500 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:14:04.536 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][be90d256-1514-4eac-840e-d7cc68a58d09] socks forwarding established\n2025-07-19 09:14:04.579 [info] [command][a2b7c638-fdc7-41f7-8129-afef8137b2c0] Process exited with code 0\n2025-07-19 09:14:04.579 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][be90d256-1514-4eac-840e-d7cc68a58d09] socks connection closed\n2025-07-19 09:14:04.579 [info] [command][a2b7c638-fdc7-41f7-8129-afef8137b2c0] Socket close event received\n2025-07-19 09:14:04.610 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63396 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:15:04.584 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:15:04.586 [info] [command][e3b4ed03-69b4-48ca-a05f-3ac5e69f39f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e3b4ed03-69b4-48ca-a05f-3ac5e69f39f7""}\n2025-07-19 09:15:04.587 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][771aa4f2-e2af-493f-bb87-2fdbf71c66ca] received connection request\n2025-07-19 09:15:04.588 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:15:04.646 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][771aa4f2-e2af-493f-bb87-2fdbf71c66ca] socks forwarding established\n2025-07-19 09:15:04.702 [info] [command][e3b4ed03-69b4-48ca-a05f-3ac5e69f39f7] Process exited with code 0\n2025-07-19 09:15:04.704 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][771aa4f2-e2af-493f-bb87-2fdbf71c66ca] socks connection closed\n2025-07-19 09:15:04.704 [info] [command][e3b4ed03-69b4-48ca-a05f-3ac5e69f39f7] Socket close event received\n2025-07-19 09:15:04.861 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63429 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:16:04.703 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:16:04.705 [info] [command][17691463-edbc-4916-96bb-fd836af71eda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""17691463-edbc-4916-96bb-fd836af71eda""}\n2025-07-19 09:16:04.706 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ba8b8577-f75f-4915-8395-7303bab26817] received connection request\n2025-07-19 09:16:04.706 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:16:04.734 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ba8b8577-f75f-4915-8395-7303bab26817] socks forwarding established\n2025-07-19 09:16:04.777 [info] [command][17691463-edbc-4916-96bb-fd836af71eda] Process exited with code 0\n2025-07-19 09:16:04.778 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ba8b8577-f75f-4915-8395-7303bab26817] socks connection closed\n2025-07-19 09:16:04.778 [info] [command][17691463-edbc-4916-96bb-fd836af71eda] Socket close event received\n2025-07-19 09:16:04.809 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63464 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:17:04.777 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:17:04.779 [info] [command][5a3d89a8-f337-4001-8245-10bbba187707] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""5a3d89a8-f337-4001-8245-10bbba187707""}\n2025-07-19 09:17:04.780 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][af33fb93-7662-45b1-a189-8bda221f0b17] received connection request\n2025-07-19 09:17:04.781 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:17:04.819 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][af33fb93-7662-45b1-a189-8bda221f0b17] socks forwarding established\n2025-07-19 09:17:04.871 [info] [command][5a3d89a8-f337-4001-8245-10bbba187707] Process exited with code 0\n2025-07-19 09:17:04.871 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][af33fb93-7662-45b1-a189-8bda221f0b17] socks connection closed\n2025-07-19 09:17:04.871 [info] [command][5a3d89a8-f337-4001-8245-10bbba187707] Socket close event received\n2025-07-19 09:17:04.903 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63486 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:18:04.876 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:18:04.877 [info] [command][cfea913a-d9e8-43fa-a05a-b6118cd5dedf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""cfea913a-d9e8-43fa-a05a-b6118cd5dedf""}\n2025-07-19 09:18:04.878 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][c4e61acd-a419-4e9f-94ae-f2f9022f0ac2] received connection request\n2025-07-19 09:18:04.878 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:18:05.034 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c4e61acd-a419-4e9f-94ae-f2f9022f0ac2] socks forwarding established\n2025-07-19 09:18:05.189 [info] [command][cfea913a-d9e8-43fa-a05a-b6118cd5dedf] Process exited with code 0\n2025-07-19 09:18:05.189 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c4e61acd-a419-4e9f-94ae-f2f9022f0ac2] socks connection closed\n2025-07-19 09:18:05.190 [info] [command][cfea913a-d9e8-43fa-a05a-b6118cd5dedf] Socket close event received\n2025-07-19 09:18:05.220 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63518 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:19:05.195 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:19:05.197 [info] [command][33ec7e57-4427-4519-9403-15649ce14b2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""33ec7e57-4427-4519-9403-15649ce14b2f""}\n2025-07-19 09:19:05.197 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5cb31286-f637-4a7d-a692-11408723d00d] received connection request\n2025-07-19 09:19:05.198 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:19:05.229 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5cb31286-f637-4a7d-a692-11408723d00d] socks forwarding established\n2025-07-19 09:19:05.288 [info] [command][33ec7e57-4427-4519-9403-15649ce14b2f] Process exited with code 0\n2025-07-19 09:19:05.289 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5cb31286-f637-4a7d-a692-11408723d00d] socks connection closed\n2025-07-19 09:19:05.289 [info] [command][33ec7e57-4427-4519-9403-15649ce14b2f] Socket close event received\n2025-07-19 09:19:05.322 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63537 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:20:05.290 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:20:05.292 [info] [command][fff370df-a69e-436b-907f-54029cb29217] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""fff370df-a69e-436b-907f-54029cb29217""}\n2025-07-19 09:20:05.293 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][963d5a1a-18ce-428a-bc7d-10811908295e] received connection request\n2025-07-19 09:20:05.294 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:20:05.327 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][963d5a1a-18ce-428a-bc7d-10811908295e] socks forwarding established\n2025-07-19 09:20:05.370 [info] [command][fff370df-a69e-436b-907f-54029cb29217] Process exited with code 0\n2025-07-19 09:20:05.371 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][963d5a1a-18ce-428a-bc7d-10811908295e] socks connection closed\n2025-07-19 09:20:05.371 [info] [command][fff370df-a69e-436b-907f-54029cb29217] Socket close event received\n2025-07-19 09:20:05.402 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63581 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:21:05.373 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:21:05.375 [info] [command][04e09dd7-016f-43db-b959-7b7eac7344cc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""04e09dd7-016f-43db-b959-7b7eac7344cc""}\n2025-07-19 09:21:05.375 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6188f58d-5197-45b4-aca4-1dc4ddb4d9f2] received connection request\n2025-07-19 09:21:05.375 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:21:05.605 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6188f58d-5197-45b4-aca4-1dc4ddb4d9f2] socks forwarding established\n2025-07-19 09:21:05.759 [info] [command][04e09dd7-016f-43db-b959-7b7eac7344cc] Process exited with code 0\n2025-07-19 09:21:05.759 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6188f58d-5197-45b4-aca4-1dc4ddb4d9f2] socks connection closed\n2025-07-19 09:21:05.760 [info] [command][04e09dd7-016f-43db-b959-7b7eac7344cc] Socket close event received\n2025-07-19 09:21:05.791 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63615 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:22:05.768 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:22:05.770 [info] [command][d5156dd1-3f67-418c-a293-863da0d1a882] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""d5156dd1-3f67-418c-a293-863da0d1a882""}\n2025-07-19 09:22:05.771 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][75b61ba5-e973-4acc-88fd-7c66308861cb] received connection request\n2025-07-19 09:22:05.771 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:22:05.801 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][75b61ba5-e973-4acc-88fd-7c66308861cb] socks forwarding established\n2025-07-19 09:22:05.844 [info] [command][d5156dd1-3f67-418c-a293-863da0d1a882] Process exited with code 0\n2025-07-19 09:22:05.844 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][75b61ba5-e973-4acc-88fd-7c66308861cb] socks connection closed\n2025-07-19 09:22:05.845 [info] [command][d5156dd1-3f67-418c-a293-863da0d1a882] Socket close event received\n2025-07-19 09:22:05.871 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63680 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:23:05.848 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:23:05.850 [info] [command][d5cdf194-df8d-4de2-8320-ea5cbfaf1108] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""d5cdf194-df8d-4de2-8320-ea5cbfaf1108""}\n2025-07-19 09:23:05.851 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][847c9751-7c0d-498c-8bf0-78d7bd703a53] received connection request\n2025-07-19 09:23:05.851 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:23:05.878 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][847c9751-7c0d-498c-8bf0-78d7bd703a53] socks forwarding established\n2025-07-19 09:23:05.918 [info] [command][d5cdf194-df8d-4de2-8320-ea5cbfaf1108] Process exited with code 0\n2025-07-19 09:23:05.918 [info] [command][d5cdf194-df8d-4de2-8320-ea5cbfaf1108] Socket close event received\n2025-07-19 09:23:05.919 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][847c9751-7c0d-498c-8bf0-78d7bd703a53] socks connection closed\n2025-07-19 09:23:05.945 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63765 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:24:05.922 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:24:05.924 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][4aaa96d1-145e-421d-9f2e-6d0d8222d227] received connection request\n2025-07-19 09:24:05.925 [info] [command][21464921-8ded-4753-85f1-0d2b09574324] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""21464921-8ded-4753-85f1-0d2b09574324""}\n2025-07-19 09:24:05.925 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:24:06.045 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4aaa96d1-145e-421d-9f2e-6d0d8222d227] socks forwarding established\n2025-07-19 09:24:06.161 [info] [command][21464921-8ded-4753-85f1-0d2b09574324] Process exited with code 0\n2025-07-19 09:24:06.161 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4aaa96d1-145e-421d-9f2e-6d0d8222d227] socks connection closed\n2025-07-19 09:24:06.161 [info] [command][21464921-8ded-4753-85f1-0d2b09574324] Socket close event received\n2025-07-19 09:24:06.300 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63787 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:25:06.165 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:25:06.168 [info] [command][5a6a82cb-da99-4b19-b172-be2f8f790a28] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""5a6a82cb-da99-4b19-b172-be2f8f790a28""}\n2025-07-19 09:25:06.169 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][424ad378-9a99-492b-9100-52dbc4edd58e] received connection request\n2025-07-19 09:25:06.169 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:25:06.201 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][424ad378-9a99-492b-9100-52dbc4edd58e] socks forwarding established\n2025-07-19 09:25:06.238 [info] [command][5a6a82cb-da99-4b19-b172-be2f8f790a28] Process exited with code 0\n2025-07-19 09:25:06.239 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][424ad378-9a99-492b-9100-52dbc4edd58e] socks connection closed\n2025-07-19 09:25:06.239 [info] [command][5a6a82cb-da99-4b19-b172-be2f8f790a28] Socket close event received\n2025-07-19 09:25:06.268 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63840 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:26:06.242 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:26:06.247 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e0c94bf9-e282-444d-82df-41a837352f1a] received connection request\n2025-07-19 09:26:06.247 [info] [command][adfbbb05-dbb2-44a4-9b7b-f040aff662ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""adfbbb05-dbb2-44a4-9b7b-f040aff662ed""}\n2025-07-19 09:26:06.247 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:26:06.277 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e0c94bf9-e282-444d-82df-41a837352f1a] socks forwarding established\n2025-07-19 09:26:06.317 [info] [command][adfbbb05-dbb2-44a4-9b7b-f040aff662ed] Process exited with code 0\n2025-07-19 09:26:06.317 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e0c94bf9-e282-444d-82df-41a837352f1a] socks connection closed\n2025-07-19 09:26:06.317 [info] [command][adfbbb05-dbb2-44a4-9b7b-f040aff662ed] Socket close event received\n2025-07-19 09:26:06.344 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63895 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:27:06.320 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:27:06.323 [info] [command][706d2607-8c9a-44bf-a009-5d8706f22ec5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""706d2607-8c9a-44bf-a009-5d8706f22ec5""}\n2025-07-19 09:27:06.323 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][7d409359-1046-49bd-a30d-5d69b67ac02e] received connection request\n2025-07-19 09:27:06.324 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:27:06.366 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7d409359-1046-49bd-a30d-5d69b67ac02e] socks forwarding established\n2025-07-19 09:27:06.408 [info] [command][706d2607-8c9a-44bf-a009-5d8706f22ec5] Process exited with code 0\n2025-07-19 09:27:06.409 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7d409359-1046-49bd-a30d-5d69b67ac02e] socks connection closed\n2025-07-19 09:27:06.409 [info] [command][706d2607-8c9a-44bf-a009-5d8706f22ec5] Socket close event received\n2025-07-19 09:27:06.435 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63924 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:28:06.410 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:28:06.412 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][09165a83-07e1-4147-8d96-28af87556458] received connection request\n2025-07-19 09:28:06.413 [info] [command][c04f70c7-432d-4380-a45c-76bd7dd0d782] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c04f70c7-432d-4380-a45c-76bd7dd0d782""}\n2025-07-19 09:28:06.413 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:28:06.441 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][09165a83-07e1-4147-8d96-28af87556458] socks forwarding established\n2025-07-19 09:28:06.485 [info] [command][c04f70c7-432d-4380-a45c-76bd7dd0d782] Process exited with code 0\n2025-07-19 09:28:06.485 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][09165a83-07e1-4147-8d96-28af87556458] socks connection closed\n2025-07-19 09:28:06.485 [info] [command][c04f70c7-432d-4380-a45c-76bd7dd0d782] Socket close event received\n2025-07-19 09:28:06.515 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63958 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:29:06.491 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:29:06.494 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][78f576a0-c40e-463f-8b69-0f3b0fc73f13] received connection request\n2025-07-19 09:29:06.494 [info] [command][d21f6941-ebd8-4a1e-941a-f918ead23562] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""d21f6941-ebd8-4a1e-941a-f918ead23562""}\n2025-07-19 09:29:06.495 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:29:06.527 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][78f576a0-c40e-463f-8b69-0f3b0fc73f13] socks forwarding established\n2025-07-19 09:29:06.573 [info] [command][d21f6941-ebd8-4a1e-941a-f918ead23562] Process exited with code 0\n2025-07-19 09:29:06.573 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][78f576a0-c40e-463f-8b69-0f3b0fc73f13] socks connection closed\n2025-07-19 09:29:06.573 [info] [command][d21f6941-ebd8-4a1e-941a-f918ead23562] Socket close event received\n2025-07-19 09:29:06.600 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 63976 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:30:06.575 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:30:06.577 [info] [command][368b56ec-eb33-42ea-901f-69a23b7f51f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""368b56ec-eb33-42ea-901f-69a23b7f51f4""}\n2025-07-19 09:30:06.578 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][aeb02ddc-b35f-4bc4-bc31-991f1620de36] received connection request\n2025-07-19 09:30:06.578 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 09:30:06.578 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:30:06.609 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][aeb02ddc-b35f-4bc4-bc31-991f1620de36] socks forwarding established\n2025-07-19 09:30:06.650 [info] [command][368b56ec-eb33-42ea-901f-69a23b7f51f4] Process exited with code 0\n2025-07-19 09:30:06.651 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][aeb02ddc-b35f-4bc4-bc31-991f1620de36] socks connection closed\n2025-07-19 09:30:06.651 [info] [command][368b56ec-eb33-42ea-901f-69a23b7f51f4] Socket close event received\n2025-07-19 09:30:06.677 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64027 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:31:06.655 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:31:06.658 [info] [command][48c49e16-4a72-4e2b-8c69-5a68761bc10e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""48c49e16-4a72-4e2b-8c69-5a68761bc10e""}\n2025-07-19 09:31:06.659 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][8baec6ea-f014-4fd6-b71c-1a30fd20f4b4] received connection request\n2025-07-19 09:31:06.659 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 09:31:06.660 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:31:06.693 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8baec6ea-f014-4fd6-b71c-1a30fd20f4b4] socks forwarding established\n2025-07-19 09:31:06.729 [info] [command][48c49e16-4a72-4e2b-8c69-5a68761bc10e] Process exited with code 0\n2025-07-19 09:31:06.729 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8baec6ea-f014-4fd6-b71c-1a30fd20f4b4] socks connection closed\n2025-07-19 09:31:06.730 [info] [command][48c49e16-4a72-4e2b-8c69-5a68761bc10e] Socket close event received\n2025-07-19 09:31:06.755 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64079 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:32:06.734 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:32:06.737 [info] [command][422d47ba-0c14-4e82-a33f-5ffedc8aa0cb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""422d47ba-0c14-4e82-a33f-5ffedc8aa0cb""}\n2025-07-19 09:32:06.738 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2502875c-bf48-45c6-9867-6ef05b1b18c2] received connection request\n2025-07-19 09:32:06.738 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:32:06.770 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2502875c-bf48-45c6-9867-6ef05b1b18c2] socks forwarding established\n2025-07-19 09:32:06.812 [info] [command][422d47ba-0c14-4e82-a33f-5ffedc8aa0cb] Process exited with code 0\n2025-07-19 09:32:06.813 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2502875c-bf48-45c6-9867-6ef05b1b18c2] socks connection closed\n2025-07-19 09:32:06.813 [info] [command][422d47ba-0c14-4e82-a33f-5ffedc8aa0cb] Socket close event received\n2025-07-19 09:32:06.840 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64109 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:33:06.814 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:33:06.816 [info] [command][78a15aa4-a8ba-4836-ad97-e2b186370415] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""78a15aa4-a8ba-4836-ad97-e2b186370415""}\n2025-07-19 09:33:06.817 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][85f5c60e-aa7d-479c-b407-b36d41465867] received connection request\n2025-07-19 09:33:06.817 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:33:06.848 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][85f5c60e-aa7d-479c-b407-b36d41465867] socks forwarding established\n2025-07-19 09:33:06.890 [info] [command][78a15aa4-a8ba-4836-ad97-e2b186370415] Process exited with code 0\n2025-07-19 09:33:06.891 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][85f5c60e-aa7d-479c-b407-b36d41465867] socks connection closed\n2025-07-19 09:33:06.891 [info] [command][78a15aa4-a8ba-4836-ad97-e2b186370415] Socket close event received\n2025-07-19 09:33:06.919 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64147 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:34:06.896 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:34:06.898 [info] [command][34f1ca23-c3f0-47ac-b26d-38876fd7f4a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""34f1ca23-c3f0-47ac-b26d-38876fd7f4a7""}\n2025-07-19 09:34:06.898 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][cdca80e3-3faf-430a-a503-951283fb1a2e] received connection request\n2025-07-19 09:34:06.898 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:34:07.030 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cdca80e3-3faf-430a-a503-951283fb1a2e] socks forwarding established\n2025-07-19 09:34:07.154 [info] [command][34f1ca23-c3f0-47ac-b26d-38876fd7f4a7] Process exited with code 0\n2025-07-19 09:34:07.155 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cdca80e3-3faf-430a-a503-951283fb1a2e] socks connection closed\n2025-07-19 09:34:07.155 [info] [command][34f1ca23-c3f0-47ac-b26d-38876fd7f4a7] Socket close event received\n2025-07-19 09:34:07.181 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64175 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:35:07.161 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:35:07.163 [info] [command][8e277093-ccc3-453d-a3ba-39703d4fdcda] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8e277093-ccc3-453d-a3ba-39703d4fdcda""}\n2025-07-19 09:35:07.164 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][1b55ac7b-94d1-4f41-98e6-43e598d6e720] received connection request\n2025-07-19 09:35:07.164 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:35:07.199 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1b55ac7b-94d1-4f41-98e6-43e598d6e720] socks forwarding established\n2025-07-19 09:35:07.240 [info] [command][8e277093-ccc3-453d-a3ba-39703d4fdcda] Process exited with code 0\n2025-07-19 09:35:07.241 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1b55ac7b-94d1-4f41-98e6-43e598d6e720] socks connection closed\n2025-07-19 09:35:07.241 [info] [command][8e277093-ccc3-453d-a3ba-39703d4fdcda] Socket close event received\n2025-07-19 09:35:07.267 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64216 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:36:07.241 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:36:07.244 [info] [command][3aa229d8-62af-4634-a0cf-1e4ea165dd76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3aa229d8-62af-4634-a0cf-1e4ea165dd76""}\n2025-07-19 09:36:07.245 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][90aa52fc-41a4-4dac-a5b2-b9fea3a18202] received connection request\n2025-07-19 09:36:07.245 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:36:07.276 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][90aa52fc-41a4-4dac-a5b2-b9fea3a18202] socks forwarding established\n2025-07-19 09:36:07.319 [info] [command][3aa229d8-62af-4634-a0cf-1e4ea165dd76] Process exited with code 0\n2025-07-19 09:36:07.319 [info] [command][3aa229d8-62af-4634-a0cf-1e4ea165dd76] Socket close event received\n2025-07-19 09:36:07.343 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][90aa52fc-41a4-4dac-a5b2-b9fea3a18202] socks connection closed\n2025-07-19 09:36:07.346 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64257 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:37:07.324 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:37:07.325 [info] [command][70e0c5f9-6cc4-4a2d-9c12-2190dabb69ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""70e0c5f9-6cc4-4a2d-9c12-2190dabb69ca""}\n2025-07-19 09:37:07.326 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9d171531-8647-43c1-9328-12fa5101b054] received connection request\n2025-07-19 09:37:07.327 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 09:37:07.329 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:37:07.429 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9d171531-8647-43c1-9328-12fa5101b054] socks forwarding established\n2025-07-19 09:37:07.492 [info] [command][70e0c5f9-6cc4-4a2d-9c12-2190dabb69ca] Process exited with code 0\n2025-07-19 09:37:07.492 [info] [command][70e0c5f9-6cc4-4a2d-9c12-2190dabb69ca] Socket close event received\n2025-07-19 09:37:07.630 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9d171531-8647-43c1-9328-12fa5101b054] socks connection closed\n2025-07-19 09:37:07.652 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64278 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:38:07.497 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:38:07.499 [info] [command][9da78b16-07d3-4742-bb4d-e172d3ab61c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""9da78b16-07d3-4742-bb4d-e172d3ab61c2""}\n2025-07-19 09:38:07.500 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ca832635-fef2-491e-869e-9344d036b1f0] received connection request\n2025-07-19 09:38:07.500 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:38:07.529 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ca832635-fef2-491e-869e-9344d036b1f0] socks forwarding established\n2025-07-19 09:38:07.573 [info] [command][9da78b16-07d3-4742-bb4d-e172d3ab61c2] Process exited with code 0\n2025-07-19 09:38:07.573 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ca832635-fef2-491e-869e-9344d036b1f0] socks connection closed\n2025-07-19 09:38:07.573 [info] [command][9da78b16-07d3-4742-bb4d-e172d3ab61c2] Socket close event received\n2025-07-19 09:38:07.599 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64313 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:39:07.578 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:39:07.580 [info] [command][7509639a-d6c8-4b74-aaac-bb6bc22842a1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""7509639a-d6c8-4b74-aaac-bb6bc22842a1""}\n2025-07-19 09:39:07.581 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2bb5abb9-17c5-4ece-859f-2dca576319c7] received connection request\n2025-07-19 09:39:07.581 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:39:07.619 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2bb5abb9-17c5-4ece-859f-2dca576319c7] socks forwarding established\n2025-07-19 09:39:07.671 [info] [command][7509639a-d6c8-4b74-aaac-bb6bc22842a1] Process exited with code 0\n2025-07-19 09:39:07.671 [info] [command][7509639a-d6c8-4b74-aaac-bb6bc22842a1] Socket close event received\n2025-07-19 09:39:07.697 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2bb5abb9-17c5-4ece-859f-2dca576319c7] socks connection closed\n2025-07-19 09:39:07.698 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64335 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:40:07.674 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:40:07.676 [info] [command][118bbac2-f038-4aea-933d-a46e8c5c4dc7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""118bbac2-f038-4aea-933d-a46e8c5c4dc7""}\n2025-07-19 09:40:07.677 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][bf763d5b-e5e2-4471-9116-8ccee02418b1] received connection request\n2025-07-19 09:40:07.678 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:40:07.837 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bf763d5b-e5e2-4471-9116-8ccee02418b1] socks forwarding established\n2025-07-19 09:40:07.991 [info] [command][118bbac2-f038-4aea-933d-a46e8c5c4dc7] Process exited with code 0\n2025-07-19 09:40:07.991 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bf763d5b-e5e2-4471-9116-8ccee02418b1] socks connection closed\n2025-07-19 09:40:07.992 [info] [command][118bbac2-f038-4aea-933d-a46e8c5c4dc7] Socket close event received\n2025-07-19 09:40:08.025 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64400 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:41:07.992 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:41:07.994 [info] [command][1ce32247-2e32-48c0-bc5e-54cfbab5759a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1ce32247-2e32-48c0-bc5e-54cfbab5759a""}\n2025-07-19 09:41:07.994 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2d110be4-b7b8-4891-abeb-70118b10d5b0] received connection request\n2025-07-19 09:41:07.994 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 09:41:07.994 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:41:08.029 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2d110be4-b7b8-4891-abeb-70118b10d5b0] socks forwarding established\n2025-07-19 09:41:08.069 [info] [command][1ce32247-2e32-48c0-bc5e-54cfbab5759a] Process exited with code 0\n2025-07-19 09:41:08.069 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2d110be4-b7b8-4891-abeb-70118b10d5b0] socks connection closed\n2025-07-19 09:41:08.069 [info] [command][1ce32247-2e32-48c0-bc5e-54cfbab5759a] Socket close event received\n2025-07-19 09:41:08.109 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64440 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:42:08.074 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:42:08.076 [info] [command][8cce8ad1-a2a9-436c-9748-7b800a6c8708] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8cce8ad1-a2a9-436c-9748-7b800a6c8708""}\n2025-07-19 09:42:08.076 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][fb9442df-e450-4d2c-ac8e-a5d62949ccd4] received connection request\n2025-07-19 09:42:08.076 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:42:08.105 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fb9442df-e450-4d2c-ac8e-a5d62949ccd4] socks forwarding established\n2025-07-19 09:42:08.146 [info] [command][8cce8ad1-a2a9-436c-9748-7b800a6c8708] Process exited with code 0\n2025-07-19 09:42:08.146 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fb9442df-e450-4d2c-ac8e-a5d62949ccd4] socks connection closed\n2025-07-19 09:42:08.146 [info] [command][8cce8ad1-a2a9-436c-9748-7b800a6c8708] Socket close event received\n2025-07-19 09:42:08.173 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64478 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:43:08.149 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:43:08.151 [info] [command][7a83ab29-ad8d-4a50-884c-fc4af38c4b07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""7a83ab29-ad8d-4a50-884c-fc4af38c4b07""}\n2025-07-19 09:43:08.151 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d359566b-5a5f-4926-bed2-543cb6bbc4d3] received connection request\n2025-07-19 09:43:08.152 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:43:08.284 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d359566b-5a5f-4926-bed2-543cb6bbc4d3] socks forwarding established\n2025-07-19 09:43:08.439 [info] [command][7a83ab29-ad8d-4a50-884c-fc4af38c4b07] Process exited with code 0\n2025-07-19 09:43:08.439 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d359566b-5a5f-4926-bed2-543cb6bbc4d3] socks connection closed\n2025-07-19 09:43:08.439 [info] [command][7a83ab29-ad8d-4a50-884c-fc4af38c4b07] Socket close event received\n2025-07-19 09:43:08.466 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64530 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:44:08.439 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:44:08.440 [info] [command][49d61402-1540-4f36-adaa-593786b6cf69] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""49d61402-1540-4f36-adaa-593786b6cf69""}\n2025-07-19 09:44:08.441 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][34faeb9f-a91b-49f4-8264-f97004ab1a18] received connection request\n2025-07-19 09:44:08.441 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:44:08.469 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][34faeb9f-a91b-49f4-8264-f97004ab1a18] socks forwarding established\n2025-07-19 09:44:08.508 [info] [command][49d61402-1540-4f36-adaa-593786b6cf69] Process exited with code 0\n2025-07-19 09:44:08.508 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][34faeb9f-a91b-49f4-8264-f97004ab1a18] socks connection closed\n2025-07-19 09:44:08.508 [info] [command][49d61402-1540-4f36-adaa-593786b6cf69] Socket close event received\n2025-07-19 09:44:08.535 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64556 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:45:08.508 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:45:08.510 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][85304b1f-5db9-4b87-9d62-92c5d2d53d12] received connection request\n2025-07-19 09:45:08.510 [info] [command][bb4d76c9-803c-4923-9762-ff378183b6df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""bb4d76c9-803c-4923-9762-ff378183b6df""}\n2025-07-19 09:45:08.510 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:45:08.538 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][85304b1f-5db9-4b87-9d62-92c5d2d53d12] socks forwarding established\n2025-07-19 09:45:08.576 [info] [command][bb4d76c9-803c-4923-9762-ff378183b6df] Process exited with code 0\n2025-07-19 09:45:08.576 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][85304b1f-5db9-4b87-9d62-92c5d2d53d12] socks connection closed\n2025-07-19 09:45:08.576 [info] [command][bb4d76c9-803c-4923-9762-ff378183b6df] Socket close event received\n2025-07-19 09:45:08.603 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64619 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:46:08.581 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:46:08.583 [info] [command][10adda4b-7f9d-45ca-a97b-f862a7b83c9e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""10adda4b-7f9d-45ca-a97b-f862a7b83c9e""}\n2025-07-19 09:46:08.584 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][25dc0d6e-c2b0-416c-8892-bcb331816e21] received connection request\n2025-07-19 09:46:08.584 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:46:08.736 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][25dc0d6e-c2b0-416c-8892-bcb331816e21] socks forwarding established\n2025-07-19 09:46:08.894 [info] [command][10adda4b-7f9d-45ca-a97b-f862a7b83c9e] Process exited with code 0\n2025-07-19 09:46:08.894 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][25dc0d6e-c2b0-416c-8892-bcb331816e21] socks connection closed\n2025-07-19 09:46:08.895 [info] [command][10adda4b-7f9d-45ca-a97b-f862a7b83c9e] Socket close event received\n2025-07-19 09:46:09.056 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64682 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:47:08.897 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:47:08.899 [info] [command][2f374775-b528-483c-ac5c-ead4bd6060bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""2f374775-b528-483c-ac5c-ead4bd6060bf""}\n2025-07-19 09:47:08.900 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f3a5b59a-c8ee-4f2c-a64b-9ff91a1e05bc] received connection request\n2025-07-19 09:47:08.900 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:47:08.927 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f3a5b59a-c8ee-4f2c-a64b-9ff91a1e05bc] socks forwarding established\n2025-07-19 09:47:08.964 [info] [command][2f374775-b528-483c-ac5c-ead4bd6060bf] Process exited with code 0\n2025-07-19 09:47:08.965 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f3a5b59a-c8ee-4f2c-a64b-9ff91a1e05bc] socks connection closed\n2025-07-19 09:47:08.965 [info] [command][2f374775-b528-483c-ac5c-ead4bd6060bf] Socket close event received\n2025-07-19 09:47:08.991 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64703 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:48:08.966 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:48:08.968 [info] [command][07854a2e-3323-471b-9f1f-dd5184cf1d2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""07854a2e-3323-471b-9f1f-dd5184cf1d2b""}\n2025-07-19 09:48:08.969 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e1bf15e3-98d6-4996-ba4b-e3c490a9b142] received connection request\n2025-07-19 09:48:08.969 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:48:08.997 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e1bf15e3-98d6-4996-ba4b-e3c490a9b142] socks forwarding established\n2025-07-19 09:48:09.038 [info] [command][07854a2e-3323-471b-9f1f-dd5184cf1d2b] Process exited with code 0\n2025-07-19 09:48:09.038 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e1bf15e3-98d6-4996-ba4b-e3c490a9b142] socks connection closed\n2025-07-19 09:48:09.038 [info] [command][07854a2e-3323-471b-9f1f-dd5184cf1d2b] Socket close event received\n2025-07-19 09:48:09.064 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64742 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:49:09.044 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:49:09.048 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][fd32b734-84b3-4140-911a-841f3ea48ed2] received connection request\n2025-07-19 09:49:09.048 [info] [command][7ea4b6d1-acc1-4c3e-be7d-d21cefda0a57] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""7ea4b6d1-acc1-4c3e-be7d-d21cefda0a57""}\n2025-07-19 09:49:09.048 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:49:09.168 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fd32b734-84b3-4140-911a-841f3ea48ed2] socks forwarding established\n2025-07-19 09:49:09.324 [info] [command][7ea4b6d1-acc1-4c3e-be7d-d21cefda0a57] Process exited with code 0\n2025-07-19 09:49:09.324 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fd32b734-84b3-4140-911a-841f3ea48ed2] socks connection closed\n2025-07-19 09:49:09.324 [info] [command][7ea4b6d1-acc1-4c3e-be7d-d21cefda0a57] Socket close event received\n2025-07-19 09:49:09.482 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64794 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:50:09.328 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:50:09.329 [info] [command][d753d9d5-1f06-458c-b2b5-1b1439823a21] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""d753d9d5-1f06-458c-b2b5-1b1439823a21""}\n2025-07-19 09:50:09.330 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][dc6d0ab1-a579-4840-9882-b55ae252bf91] received connection request\n2025-07-19 09:50:09.330 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:50:09.357 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][dc6d0ab1-a579-4840-9882-b55ae252bf91] socks forwarding established\n2025-07-19 09:50:09.399 [info] [command][d753d9d5-1f06-458c-b2b5-1b1439823a21] Process exited with code 0\n2025-07-19 09:50:09.399 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][dc6d0ab1-a579-4840-9882-b55ae252bf91] socks connection closed\n2025-07-19 09:50:09.399 [info] [command][d753d9d5-1f06-458c-b2b5-1b1439823a21] Socket close event received\n2025-07-19 09:50:09.428 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64829 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:51:09.400 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:51:09.403 [info] [command][8c887577-0deb-4155-8387-00b4baf4ea25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8c887577-0deb-4155-8387-00b4baf4ea25""}\n2025-07-19 09:51:09.404 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a43d906f-9d93-46d5-8817-4e7f8b6c224f] received connection request\n2025-07-19 09:51:09.404 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:51:09.433 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a43d906f-9d93-46d5-8817-4e7f8b6c224f] socks forwarding established\n2025-07-19 09:51:09.475 [info] [command][8c887577-0deb-4155-8387-00b4baf4ea25] Process exited with code 0\n2025-07-19 09:51:09.475 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a43d906f-9d93-46d5-8817-4e7f8b6c224f] socks connection closed\n2025-07-19 09:51:09.477 [info] [command][8c887577-0deb-4155-8387-00b4baf4ea25] Socket close event received\n2025-07-19 09:51:09.504 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64877 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:52:09.476 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:52:09.478 [info] [command][88bd5618-c9ef-49b7-ae26-8d094048bcae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""88bd5618-c9ef-49b7-ae26-8d094048bcae""}\n2025-07-19 09:52:09.478 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][4416f160-99ac-4adb-8cef-6e001e7210ce] received connection request\n2025-07-19 09:52:09.479 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:52:09.509 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4416f160-99ac-4adb-8cef-6e001e7210ce] socks forwarding established\n2025-07-19 09:52:09.553 [info] [command][88bd5618-c9ef-49b7-ae26-8d094048bcae] Process exited with code 0\n2025-07-19 09:52:09.553 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4416f160-99ac-4adb-8cef-6e001e7210ce] socks connection closed\n2025-07-19 09:52:09.553 [info] [command][88bd5618-c9ef-49b7-ae26-8d094048bcae] Socket close event received\n2025-07-19 09:52:09.580 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64902 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:53:09.561 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:53:09.563 [info] [command][2e56c6c9-606b-4646-8841-b1faec856f00] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""2e56c6c9-606b-4646-8841-b1faec856f00""}\n2025-07-19 09:53:09.563 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9eed5c5a-5139-444e-9918-d4966a2c29ed] received connection request\n2025-07-19 09:53:09.563 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 09:53:09.563 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:53:09.591 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9eed5c5a-5139-444e-9918-d4966a2c29ed] socks forwarding established\n2025-07-19 09:53:09.641 [info] [command][2e56c6c9-606b-4646-8841-b1faec856f00] Process exited with code 0\n2025-07-19 09:53:09.642 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9eed5c5a-5139-444e-9918-d4966a2c29ed] socks connection closed\n2025-07-19 09:53:09.642 [info] [command][2e56c6c9-606b-4646-8841-b1faec856f00] Socket close event received\n2025-07-19 09:53:09.671 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64963 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:54:09.647 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:54:09.648 [info] [command][1a742920-1464-4909-a19b-5778964fbf90] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1a742920-1464-4909-a19b-5778964fbf90""}\n2025-07-19 09:54:09.649 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][cdf1cd7c-25aa-4eb4-9cd8-e0ccf41907f9] received connection request\n2025-07-19 09:54:09.649 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:54:09.676 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cdf1cd7c-25aa-4eb4-9cd8-e0ccf41907f9] socks forwarding established\n2025-07-19 09:54:09.717 [info] [command][1a742920-1464-4909-a19b-5778964fbf90] Process exited with code 0\n2025-07-19 09:54:09.717 [info] [command][1a742920-1464-4909-a19b-5778964fbf90] Socket close event received\n2025-07-19 09:54:09.744 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 64996 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:54:09.744 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cdf1cd7c-25aa-4eb4-9cd8-e0ccf41907f9] socks connection closed\n2025-07-19 09:55:09.723 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:55:09.724 [info] [command][78987954-6dbc-4d43-b4ee-0f74eaa28262] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""78987954-6dbc-4d43-b4ee-0f74eaa28262""}\n2025-07-19 09:55:09.724 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][fe505d12-006f-48bf-ab28-098820483699] received connection request\n2025-07-19 09:55:09.724 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 09:55:09.724 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:55:09.752 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fe505d12-006f-48bf-ab28-098820483699] socks forwarding established\n2025-07-19 09:55:09.794 [info] [command][78987954-6dbc-4d43-b4ee-0f74eaa28262] Process exited with code 0\n2025-07-19 09:55:09.794 [info] [command][78987954-6dbc-4d43-b4ee-0f74eaa28262] Socket close event received\n2025-07-19 09:55:09.819 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fe505d12-006f-48bf-ab28-098820483699] socks connection closed\n2025-07-19 09:55:09.823 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65041 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:56:09.800 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:56:09.802 [info] [command][c853aac1-2eda-42b3-ad04-f75066af5f9d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c853aac1-2eda-42b3-ad04-f75066af5f9d""}\n2025-07-19 09:56:09.803 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][707cfe19-b7b1-4bf7-8b9a-278093cc11e3] received connection request\n2025-07-19 09:56:09.803 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:56:09.834 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][707cfe19-b7b1-4bf7-8b9a-278093cc11e3] socks forwarding established\n2025-07-19 09:56:09.878 [info] [command][c853aac1-2eda-42b3-ad04-f75066af5f9d] Process exited with code 0\n2025-07-19 09:56:09.878 [info] [command][c853aac1-2eda-42b3-ad04-f75066af5f9d] Socket close event received\n2025-07-19 09:56:09.903 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][707cfe19-b7b1-4bf7-8b9a-278093cc11e3] socks connection closed\n2025-07-19 09:56:09.909 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65075 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:57:09.883 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:57:09.886 [info] [command][1e441e28-93af-45b1-b224-2c5c35b680ad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1e441e28-93af-45b1-b224-2c5c35b680ad""}\n2025-07-19 09:57:09.887 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][18744794-ac9d-4dd2-a1a9-4fd3d30dca59] received connection request\n2025-07-19 09:57:09.887 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:57:09.917 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][18744794-ac9d-4dd2-a1a9-4fd3d30dca59] socks forwarding established\n2025-07-19 09:57:09.959 [info] [command][1e441e28-93af-45b1-b224-2c5c35b680ad] Process exited with code 0\n2025-07-19 09:57:09.959 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][18744794-ac9d-4dd2-a1a9-4fd3d30dca59] socks connection closed\n2025-07-19 09:57:09.960 [info] [command][1e441e28-93af-45b1-b224-2c5c35b680ad] Socket close event received\n2025-07-19 09:57:09.986 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65097 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:58:09.959 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:58:09.961 [info] [command][e1e2d0de-6964-4781-81a0-adc52c778f85] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e1e2d0de-6964-4781-81a0-adc52c778f85""}\n2025-07-19 09:58:09.961 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][588ec47e-1038-4365-ad19-6c72a5b9614e] received connection request\n2025-07-19 09:58:09.961 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:58:09.987 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][588ec47e-1038-4365-ad19-6c72a5b9614e] socks forwarding established\n2025-07-19 09:58:10.028 [info] [command][e1e2d0de-6964-4781-81a0-adc52c778f85] Process exited with code 0\n2025-07-19 09:58:10.028 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][588ec47e-1038-4365-ad19-6c72a5b9614e] socks connection closed\n2025-07-19 09:58:10.028 [info] [command][e1e2d0de-6964-4781-81a0-adc52c778f85] Socket close event received\n2025-07-19 09:58:10.055 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65151 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 09:59:10.033 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 09:59:10.036 [info] [command][84c8f42c-7c14-41c9-be19-e740292bdb9b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""84c8f42c-7c14-41c9-be19-e740292bdb9b""}\n2025-07-19 09:59:10.037 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][adbb3625-a931-4962-ab4e-a27c63765083] received connection request\n2025-07-19 09:59:10.038 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 09:59:10.096 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][adbb3625-a931-4962-ab4e-a27c63765083] socks forwarding established\n2025-07-19 09:59:10.139 [info] [command][84c8f42c-7c14-41c9-be19-e740292bdb9b] Process exited with code 0\n2025-07-19 09:59:10.139 [info] [command][84c8f42c-7c14-41c9-be19-e740292bdb9b] Socket close event received\n2025-07-19 09:59:10.140 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][adbb3625-a931-4962-ab4e-a27c63765083] socks connection closed\n2025-07-19 09:59:10.168 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65169 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:00:10.144 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:00:10.146 [info] [command][634ea8fe-7fb1-4159-b57b-6852d77f2bf6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""634ea8fe-7fb1-4159-b57b-6852d77f2bf6""}\n2025-07-19 10:00:10.146 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][90239136-c29b-4622-835a-0f64e7162fcb] received connection request\n2025-07-19 10:00:10.147 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:00:10.176 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][90239136-c29b-4622-835a-0f64e7162fcb] socks forwarding established\n2025-07-19 10:00:10.216 [info] [command][634ea8fe-7fb1-4159-b57b-6852d77f2bf6] Process exited with code 0\n2025-07-19 10:00:10.216 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][90239136-c29b-4622-835a-0f64e7162fcb] socks connection closed\n2025-07-19 10:00:10.216 [info] [command][634ea8fe-7fb1-4159-b57b-6852d77f2bf6] Socket close event received\n2025-07-19 10:00:10.243 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65204 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:01:10.220 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:01:10.225 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e40689f3-7786-4e7f-b303-e88d02906fdc] received connection request\n2025-07-19 10:01:10.226 [info] [command][612b4b1b-39e9-4279-b065-d9e3f850ea70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""612b4b1b-39e9-4279-b065-d9e3f850ea70""}\n2025-07-19 10:01:10.227 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:01:10.254 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e40689f3-7786-4e7f-b303-e88d02906fdc] socks forwarding established\n2025-07-19 10:01:10.372 [info] [command][612b4b1b-39e9-4279-b065-d9e3f850ea70] Process exited with code 0\n2025-07-19 10:01:10.373 [info] [command][612b4b1b-39e9-4279-b065-d9e3f850ea70] Socket close event received\n2025-07-19 10:01:10.374 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e40689f3-7786-4e7f-b303-e88d02906fdc] socks connection closed\n2025-07-19 10:01:10.416 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65257 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:02:10.372 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:02:10.374 [info] [command][246e19f8-98e9-4df9-b823-9d898c8a905e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""246e19f8-98e9-4df9-b823-9d898c8a905e""}\n2025-07-19 10:02:10.374 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][1a937eb2-d5a4-426c-a5d5-f0288d0dee71] received connection request\n2025-07-19 10:02:10.375 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:02:10.401 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1a937eb2-d5a4-426c-a5d5-f0288d0dee71] socks forwarding established\n2025-07-19 10:02:10.442 [info] [command][246e19f8-98e9-4df9-b823-9d898c8a905e] Process exited with code 0\n2025-07-19 10:02:10.442 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1a937eb2-d5a4-426c-a5d5-f0288d0dee71] socks connection closed\n2025-07-19 10:02:10.442 [info] [command][246e19f8-98e9-4df9-b823-9d898c8a905e] Socket close event received\n2025-07-19 10:02:10.469 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65296 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:03:10.446 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:03:10.447 [info] [command][9659ac09-029c-4edf-94fe-22128e239031] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""9659ac09-029c-4edf-94fe-22128e239031""}\n2025-07-19 10:03:10.448 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][32334030-1298-46f0-8b37-47bc05575a18] received connection request\n2025-07-19 10:03:10.448 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 10:03:10.448 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:03:10.475 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][32334030-1298-46f0-8b37-47bc05575a18] socks forwarding established\n2025-07-19 10:03:10.521 [info] [command][9659ac09-029c-4edf-94fe-22128e239031] Process exited with code 0\n2025-07-19 10:03:10.522 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][32334030-1298-46f0-8b37-47bc05575a18] socks connection closed\n2025-07-19 10:03:10.522 [info] [command][9659ac09-029c-4edf-94fe-22128e239031] Socket close event received\n2025-07-19 10:03:10.548 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65348 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:04:10.524 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:04:10.525 [info] [command][8bd26d75-6f8e-4567-bbb7-4c9ab3f9ea00] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8bd26d75-6f8e-4567-bbb7-4c9ab3f9ea00""}\n2025-07-19 10:04:10.526 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][15e1f74c-fd20-41c5-a5c4-fb655da4ff61] received connection request\n2025-07-19 10:04:10.526 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:04:10.555 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][15e1f74c-fd20-41c5-a5c4-fb655da4ff61] socks forwarding established\n2025-07-19 10:04:10.595 [info] [command][8bd26d75-6f8e-4567-bbb7-4c9ab3f9ea00] Process exited with code 0\n2025-07-19 10:04:10.595 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][15e1f74c-fd20-41c5-a5c4-fb655da4ff61] socks connection closed\n2025-07-19 10:04:10.595 [info] [command][8bd26d75-6f8e-4567-bbb7-4c9ab3f9ea00] Socket close event received\n2025-07-19 10:04:10.622 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65386 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:05:10.600 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:05:10.602 [info] [command][8ffb8d6b-042e-4608-b6bc-77b01ba884dd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8ffb8d6b-042e-4608-b6bc-77b01ba884dd""}\n2025-07-19 10:05:10.603 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a4d5fe57-9b7a-4144-a02c-2b7c2a4e30dd] received connection request\n2025-07-19 10:05:10.603 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:05:10.631 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a4d5fe57-9b7a-4144-a02c-2b7c2a4e30dd] socks forwarding established\n2025-07-19 10:05:10.675 [info] [command][8ffb8d6b-042e-4608-b6bc-77b01ba884dd] Process exited with code 0\n2025-07-19 10:05:10.675 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a4d5fe57-9b7a-4144-a02c-2b7c2a4e30dd] socks connection closed\n2025-07-19 10:05:10.675 [info] [command][8ffb8d6b-042e-4608-b6bc-77b01ba884dd] Socket close event received\n2025-07-19 10:05:10.702 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65431 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:06:10.680 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:06:10.684 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b81ebd14-1e8c-46e5-9d2b-16d829cc7add] received connection request\n2025-07-19 10:06:10.685 [info] [command][c4c318de-0968-4d97-8b41-77943d14ec2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c4c318de-0968-4d97-8b41-77943d14ec2a""}\n2025-07-19 10:06:10.685 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:06:10.716 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b81ebd14-1e8c-46e5-9d2b-16d829cc7add] socks forwarding established\n2025-07-19 10:06:10.759 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b81ebd14-1e8c-46e5-9d2b-16d829cc7add] socks connection closed\n2025-07-19 10:06:10.760 [info] [command][c4c318de-0968-4d97-8b41-77943d14ec2a] Process exited with code 0\n2025-07-19 10:06:10.760 [info] [command][c4c318de-0968-4d97-8b41-77943d14ec2a] Socket close event received\n2025-07-19 10:06:10.786 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65471 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:07:10.765 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:07:10.767 [info] [command][1c809b4c-68fd-47aa-9d61-2b76cb7b5c1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1c809b4c-68fd-47aa-9d61-2b76cb7b5c1e""}\n2025-07-19 10:07:10.767 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][562bafa7-cf17-4c17-8b49-327e0a585350] received connection request\n2025-07-19 10:07:10.767 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:07:10.794 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][562bafa7-cf17-4c17-8b49-327e0a585350] socks forwarding established\n2025-07-19 10:07:10.837 [info] [command][1c809b4c-68fd-47aa-9d61-2b76cb7b5c1e] Process exited with code 0\n2025-07-19 10:07:10.837 [info] [command][1c809b4c-68fd-47aa-9d61-2b76cb7b5c1e] Socket close event received\n2025-07-19 10:07:10.837 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][562bafa7-cf17-4c17-8b49-327e0a585350] socks connection closed\n2025-07-19 10:07:10.865 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 65511 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:08:10.838 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:08:10.839 [info] [command][f873407d-2788-49a6-949d-bc28efd7fa7e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f873407d-2788-49a6-949d-bc28efd7fa7e""}\n2025-07-19 10:08:10.839 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][4503ac9e-d4b8-4cd7-87a1-dbb2d7e172df] received connection request\n2025-07-19 10:08:10.839 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:08:10.866 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4503ac9e-d4b8-4cd7-87a1-dbb2d7e172df] socks forwarding established\n2025-07-19 10:08:10.908 [info] [command][f873407d-2788-49a6-949d-bc28efd7fa7e] Process exited with code 0\n2025-07-19 10:08:10.908 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4503ac9e-d4b8-4cd7-87a1-dbb2d7e172df] socks connection closed\n2025-07-19 10:08:10.908 [info] [command][f873407d-2788-49a6-949d-bc28efd7fa7e] Socket close event received\n2025-07-19 10:08:10.935 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49180 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:08:35.373 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:34135][5172bd8b-a36b-41cd-bc99-152f826b76a7] received connection request\n2025-07-19 10:08:35.373 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:08:35.402 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][5172bd8b-a36b-41cd-bc99-152f826b76a7] socks forwarding established\n2025-07-19 10:08:37.287 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 34135, connect from 127.0.0.1 port 49199 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:08:37.287 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][5172bd8b-a36b-41cd-bc99-152f826b76a7] socks connection closed\n2025-07-19 10:09:10.912 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:09:10.916 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][0207bee0-d09f-41d7-8708-b2b40d634d13] received connection request\n2025-07-19 10:09:10.916 [info] [command][e976a416-b127-4505-852c-b596f6a97be3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e976a416-b127-4505-852c-b596f6a97be3""}\n2025-07-19 10:09:10.916 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:09:10.945 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0207bee0-d09f-41d7-8708-b2b40d634d13] socks forwarding established\n2025-07-19 10:09:10.989 [info] [command][e976a416-b127-4505-852c-b596f6a97be3] Process exited with code 0\n2025-07-19 10:09:10.989 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0207bee0-d09f-41d7-8708-b2b40d634d13] socks connection closed\n2025-07-19 10:09:10.989 [info] [command][e976a416-b127-4505-852c-b596f6a97be3] Socket close event received\n2025-07-19 10:09:11.017 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49215 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:10:10.990 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:10:10.991 [info] [command][318492bc-17a0-4f17-8537-bd3828766c43] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""318492bc-17a0-4f17-8537-bd3828766c43""}\n2025-07-19 10:10:10.992 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][36042a4d-3950-4b37-b06e-0bd43f38d193] received connection request\n2025-07-19 10:10:10.992 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 10:10:10.992 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:10:11.027 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][36042a4d-3950-4b37-b06e-0bd43f38d193] socks forwarding established\n2025-07-19 10:10:11.071 [info] [command][318492bc-17a0-4f17-8537-bd3828766c43] Process exited with code 0\n2025-07-19 10:10:11.071 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][36042a4d-3950-4b37-b06e-0bd43f38d193] socks connection closed\n2025-07-19 10:10:11.071 [info] [command][318492bc-17a0-4f17-8537-bd3828766c43] Socket close event received\n2025-07-19 10:10:11.097 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49272 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:11:11.074 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:11:11.076 [info] [command][ec5b69db-7d3b-48e6-a3fe-9e9192097269] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ec5b69db-7d3b-48e6-a3fe-9e9192097269""}\n2025-07-19 10:11:11.076 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5f2f268d-41d4-4171-a32a-884b15db617b] received connection request\n2025-07-19 10:11:11.077 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:11:11.113 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5f2f268d-41d4-4171-a32a-884b15db617b] socks forwarding established\n2025-07-19 10:11:11.153 [info] [command][ec5b69db-7d3b-48e6-a3fe-9e9192097269] Process exited with code 0\n2025-07-19 10:11:11.153 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5f2f268d-41d4-4171-a32a-884b15db617b] socks connection closed\n2025-07-19 10:11:11.153 [info] [command][ec5b69db-7d3b-48e6-a3fe-9e9192097269] Socket close event received\n2025-07-19 10:11:11.180 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49306 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:12:11.157 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:12:11.158 [info] [command][341b5df4-ae12-4c2b-930b-5dbca2266b2b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""341b5df4-ae12-4c2b-930b-5dbca2266b2b""}\n2025-07-19 10:12:11.159 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][00e91050-4950-4072-a72e-6e25b986c5c9] received connection request\n2025-07-19 10:12:11.159 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 10:12:11.159 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:12:11.189 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][00e91050-4950-4072-a72e-6e25b986c5c9] socks forwarding established\n2025-07-19 10:12:11.232 [info] [command][341b5df4-ae12-4c2b-930b-5dbca2266b2b] Process exited with code 0\n2025-07-19 10:12:11.233 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][00e91050-4950-4072-a72e-6e25b986c5c9] socks connection closed\n2025-07-19 10:12:11.233 [info] [command][341b5df4-ae12-4c2b-930b-5dbca2266b2b] Socket close event received\n2025-07-19 10:12:11.261 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49347 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:13:11.238 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:13:11.240 [info] [command][e925653a-3575-4a7d-9c45-ad80713f8f95] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e925653a-3575-4a7d-9c45-ad80713f8f95""}\n2025-07-19 10:13:11.240 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][659cb5cf-03c7-4737-9c56-6420a34549fb] received connection request\n2025-07-19 10:13:11.240 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 10:13:11.240 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:13:11.267 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][659cb5cf-03c7-4737-9c56-6420a34549fb] socks forwarding established\n2025-07-19 10:13:11.311 [info] [command][e925653a-3575-4a7d-9c45-ad80713f8f95] Process exited with code 0\n2025-07-19 10:13:11.311 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][659cb5cf-03c7-4737-9c56-6420a34549fb] socks connection closed\n2025-07-19 10:13:11.311 [info] [command][e925653a-3575-4a7d-9c45-ad80713f8f95] Socket close event received\n2025-07-19 10:13:11.337 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49410 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:14:11.315 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:14:11.317 [info] [command][7f8d8cfa-f42d-4985-a087-f145fb472652] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""7f8d8cfa-f42d-4985-a087-f145fb472652""}\n2025-07-19 10:14:11.317 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b936319d-45f9-44fb-bf3a-cd25cb4af7b8] received connection request\n2025-07-19 10:14:11.317 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:14:11.385 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b936319d-45f9-44fb-bf3a-cd25cb4af7b8] socks forwarding established\n2025-07-19 10:14:11.474 [info] [command][7f8d8cfa-f42d-4985-a087-f145fb472652] Process exited with code 0\n2025-07-19 10:14:11.474 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b936319d-45f9-44fb-bf3a-cd25cb4af7b8] socks connection closed\n2025-07-19 10:14:11.474 [info] [command][7f8d8cfa-f42d-4985-a087-f145fb472652] Socket close event received\n2025-07-19 10:14:11.499 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49444 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:15:11.479 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:15:11.480 [info] [command][6c39ec3e-87d2-4b01-92c1-266c0994cb69] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""6c39ec3e-87d2-4b01-92c1-266c0994cb69""}\n2025-07-19 10:15:11.481 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a7d464ac-deba-4437-8f9f-f8c4753343b3] received connection request\n2025-07-19 10:15:11.481 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:15:11.510 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a7d464ac-deba-4437-8f9f-f8c4753343b3] socks forwarding established\n2025-07-19 10:15:11.547 [info] [command][6c39ec3e-87d2-4b01-92c1-266c0994cb69] Process exited with code 0\n2025-07-19 10:15:11.547 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a7d464ac-deba-4437-8f9f-f8c4753343b3] socks connection closed\n2025-07-19 10:15:11.547 [info] [command][6c39ec3e-87d2-4b01-92c1-266c0994cb69] Socket close event received\n2025-07-19 10:15:11.575 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49492 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:16:11.553 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:16:11.560 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2170c8be-59e5-4a31-8c37-4b2197ea42d9] received connection request\n2025-07-19 10:16:11.560 [info] [command][b516a602-0c24-43ea-a90c-0f965504f744] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""b516a602-0c24-43ea-a90c-0f965504f744""}\n2025-07-19 10:16:11.560 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:16:11.592 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2170c8be-59e5-4a31-8c37-4b2197ea42d9] socks forwarding established\n2025-07-19 10:16:11.638 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2170c8be-59e5-4a31-8c37-4b2197ea42d9] socks connection closed\n2025-07-19 10:16:11.638 [info] [command][b516a602-0c24-43ea-a90c-0f965504f744] Process exited with code 0\n2025-07-19 10:16:11.639 [info] [command][b516a602-0c24-43ea-a90c-0f965504f744] Socket close event received\n2025-07-19 10:16:11.666 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49566 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:17:11.639 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:17:11.641 [info] [command][92f942a5-dd72-43a4-9b94-7322afeb8a7e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""92f942a5-dd72-43a4-9b94-7322afeb8a7e""}\n2025-07-19 10:17:11.642 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ea1de64d-3738-44bd-8c6c-6c7254651d9c] received connection request\n2025-07-19 10:17:11.642 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:17:11.797 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ea1de64d-3738-44bd-8c6c-6c7254651d9c] socks forwarding established\n2025-07-19 10:17:11.949 [info] [command][92f942a5-dd72-43a4-9b94-7322afeb8a7e] Process exited with code 0\n2025-07-19 10:17:11.949 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ea1de64d-3738-44bd-8c6c-6c7254651d9c] socks connection closed\n2025-07-19 10:17:11.949 [info] [command][92f942a5-dd72-43a4-9b94-7322afeb8a7e] Socket close event received\n2025-07-19 10:17:12.013 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49615 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:18:11.954 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:18:11.958 [info] [command][334da982-2be9-4025-8aac-9d57ccae1d10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""334da982-2be9-4025-8aac-9d57ccae1d10""}\n2025-07-19 10:18:11.959 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9a60175d-5806-4b9f-bed9-06ee6ae7ebe7] received connection request\n2025-07-19 10:18:11.959 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:18:11.988 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9a60175d-5806-4b9f-bed9-06ee6ae7ebe7] socks forwarding established\n2025-07-19 10:18:12.028 [info] [command][334da982-2be9-4025-8aac-9d57ccae1d10] Process exited with code 0\n2025-07-19 10:18:12.028 [info] [command][334da982-2be9-4025-8aac-9d57ccae1d10] Socket close event received\n2025-07-19 10:18:12.029 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9a60175d-5806-4b9f-bed9-06ee6ae7ebe7] socks connection closed\n2025-07-19 10:18:12.058 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49653 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:19:12.030 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:19:12.033 [info] [command][ab03c3dc-0164-4597-99d4-1710a1fd2061] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ab03c3dc-0164-4597-99d4-1710a1fd2061""}\n2025-07-19 10:19:12.033 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][8c7d40e4-fd5d-4c6e-964f-771236034e34] received connection request\n2025-07-19 10:19:12.034 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 10:19:12.034 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:19:12.060 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8c7d40e4-fd5d-4c6e-964f-771236034e34] socks forwarding established\n2025-07-19 10:19:12.101 [info] [command][ab03c3dc-0164-4597-99d4-1710a1fd2061] Process exited with code 0\n2025-07-19 10:19:12.101 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8c7d40e4-fd5d-4c6e-964f-771236034e34] socks connection closed\n2025-07-19 10:19:12.101 [info] [command][ab03c3dc-0164-4597-99d4-1710a1fd2061] Socket close event received\n2025-07-19 10:19:12.129 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49681 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:20:12.106 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:20:12.108 [info] [command][709101db-53ad-484e-a8ba-0d064a9ed705] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""709101db-53ad-484e-a8ba-0d064a9ed705""}\n2025-07-19 10:20:12.108 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][293603dd-8a8e-4fd4-92ef-61edd9ea5312] received connection request\n2025-07-19 10:20:12.108 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:20:12.166 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][293603dd-8a8e-4fd4-92ef-61edd9ea5312] socks forwarding established\n2025-07-19 10:20:12.338 [info] [command][709101db-53ad-484e-a8ba-0d064a9ed705] Process exited with code 0\n2025-07-19 10:20:12.338 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][293603dd-8a8e-4fd4-92ef-61edd9ea5312] socks connection closed\n2025-07-19 10:20:12.338 [info] [command][709101db-53ad-484e-a8ba-0d064a9ed705] Socket close event received\n2025-07-19 10:20:12.480 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49730 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:21:12.339 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:21:12.341 [info] [command][c7ee300f-d6fd-409a-90bd-374738401b86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c7ee300f-d6fd-409a-90bd-374738401b86""}\n2025-07-19 10:21:12.341 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ae891135-c688-4df3-882d-d47c4da9ee2d] received connection request\n2025-07-19 10:21:12.341 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:21:12.368 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ae891135-c688-4df3-882d-d47c4da9ee2d] socks forwarding established\n2025-07-19 10:21:12.414 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ae891135-c688-4df3-882d-d47c4da9ee2d] socks connection closed\n2025-07-19 10:21:12.414 [info] [command][c7ee300f-d6fd-409a-90bd-374738401b86] Process exited with code 0\n2025-07-19 10:21:12.414 [info] [command][c7ee300f-d6fd-409a-90bd-374738401b86] Socket close event received\n2025-07-19 10:21:12.440 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49799 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:22:12.416 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:22:12.418 [info] [command][67d7415d-42b6-4afa-9322-d538f9fdd46f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""67d7415d-42b6-4afa-9322-d538f9fdd46f""}\n2025-07-19 10:22:12.418 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][c36b507d-bb43-433a-9c00-cc60deb5fdf3] received connection request\n2025-07-19 10:22:12.419 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 10:22:12.419 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:22:12.448 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c36b507d-bb43-433a-9c00-cc60deb5fdf3] socks forwarding established\n2025-07-19 10:22:12.489 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c36b507d-bb43-433a-9c00-cc60deb5fdf3] socks connection closed\n2025-07-19 10:22:12.490 [info] [command][67d7415d-42b6-4afa-9322-d538f9fdd46f] Process exited with code 0\n2025-07-19 10:22:12.490 [info] [command][67d7415d-42b6-4afa-9322-d538f9fdd46f] Socket close event received\n2025-07-19 10:22:12.516 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49840 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:23:12.494 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:23:12.496 [info] [command][13e4c7b9-a259-4ae2-b943-1df5cfa3979b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""13e4c7b9-a259-4ae2-b943-1df5cfa3979b""}\n2025-07-19 10:23:12.496 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][0d2cd46a-8d1c-44f9-93f7-aa31fda3a55d] received connection request\n2025-07-19 10:23:12.497 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:23:12.652 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0d2cd46a-8d1c-44f9-93f7-aa31fda3a55d] socks forwarding established\n2025-07-19 10:23:12.804 [info] [command][13e4c7b9-a259-4ae2-b943-1df5cfa3979b] Process exited with code 0\n2025-07-19 10:23:12.804 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0d2cd46a-8d1c-44f9-93f7-aa31fda3a55d] socks connection closed\n2025-07-19 10:23:12.804 [info] [command][13e4c7b9-a259-4ae2-b943-1df5cfa3979b] Socket close event received\n2025-07-19 10:23:12.870 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49904 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:24:12.808 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:24:12.810 [info] [command][2dacfc52-78c7-4899-b78d-4d8df2c53d2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""2dacfc52-78c7-4899-b78d-4d8df2c53d2a""}\n2025-07-19 10:24:12.810 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][732e5b67-aa4d-4530-8571-6b4f6a4fcf86] received connection request\n2025-07-19 10:24:12.811 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:24:12.840 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][732e5b67-aa4d-4530-8571-6b4f6a4fcf86] socks forwarding established\n2025-07-19 10:24:12.882 [info] [command][2dacfc52-78c7-4899-b78d-4d8df2c53d2a] Process exited with code 0\n2025-07-19 10:24:12.882 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][732e5b67-aa4d-4530-8571-6b4f6a4fcf86] socks connection closed\n2025-07-19 10:24:12.882 [info] [command][2dacfc52-78c7-4899-b78d-4d8df2c53d2a] Socket close event received\n2025-07-19 10:24:12.908 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49946 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:25:12.888 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:25:12.890 [info] [command][f044d447-ab05-4ccc-86d4-3385c98fdb32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f044d447-ab05-4ccc-86d4-3385c98fdb32""}\n2025-07-19 10:25:12.890 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][7c516440-7d5a-440f-8adf-fc6ebf2c3041] received connection request\n2025-07-19 10:25:12.890 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:25:12.918 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7c516440-7d5a-440f-8adf-fc6ebf2c3041] socks forwarding established\n2025-07-19 10:25:12.960 [info] [command][f044d447-ab05-4ccc-86d4-3385c98fdb32] Process exited with code 0\n2025-07-19 10:25:12.961 [info] [command][f044d447-ab05-4ccc-86d4-3385c98fdb32] Socket close event received\n2025-07-19 10:25:12.962 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7c516440-7d5a-440f-8adf-fc6ebf2c3041] socks connection closed\n2025-07-19 10:25:12.991 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 49992 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:26:12.966 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:26:12.967 [info] [command][52993a77-b116-4de8-ae9c-06952d4140f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""52993a77-b116-4de8-ae9c-06952d4140f9""}\n2025-07-19 10:26:12.967 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][750b2b20-3391-4dfc-ac8b-929138b503b7] received connection request\n2025-07-19 10:26:12.968 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:26:13.066 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][750b2b20-3391-4dfc-ac8b-929138b503b7] socks forwarding established\n2025-07-19 10:26:13.130 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][750b2b20-3391-4dfc-ac8b-929138b503b7] socks connection closed\n2025-07-19 10:26:13.130 [info] [command][52993a77-b116-4de8-ae9c-06952d4140f9] Process exited with code 0\n2025-07-19 10:26:13.130 [info] [command][52993a77-b116-4de8-ae9c-06952d4140f9] Socket close event received\n2025-07-19 10:26:13.289 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50048 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:27:13.135 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:27:13.137 [info] [command][93e649e6-8911-4830-b406-444e9716f3c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""93e649e6-8911-4830-b406-444e9716f3c1""}\n2025-07-19 10:27:13.138 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][8c5cbc2b-6ba1-4098-a18a-833b0538b996] received connection request\n2025-07-19 10:27:13.138 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:27:13.168 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8c5cbc2b-6ba1-4098-a18a-833b0538b996] socks forwarding established\n2025-07-19 10:27:13.209 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8c5cbc2b-6ba1-4098-a18a-833b0538b996] socks connection closed\n2025-07-19 10:27:13.209 [info] [command][93e649e6-8911-4830-b406-444e9716f3c1] Process exited with code 0\n2025-07-19 10:27:13.209 [info] [command][93e649e6-8911-4830-b406-444e9716f3c1] Socket close event received\n2025-07-19 10:27:13.235 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50088 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:28:13.210 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:28:13.211 [info] [command][df7e09d9-482e-42db-bab0-b81321a3c877] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""df7e09d9-482e-42db-bab0-b81321a3c877""}\n2025-07-19 10:28:13.212 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f3b19ff1-61ca-4356-a839-d0936a450a28] received connection request\n2025-07-19 10:28:13.212 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:28:13.241 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f3b19ff1-61ca-4356-a839-d0936a450a28] socks forwarding established\n2025-07-19 10:28:13.281 [info] [command][df7e09d9-482e-42db-bab0-b81321a3c877] Process exited with code 0\n2025-07-19 10:28:13.281 [info] [command][df7e09d9-482e-42db-bab0-b81321a3c877] Socket close event received\n2025-07-19 10:28:13.318 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f3b19ff1-61ca-4356-a839-d0936a450a28] socks connection closed\n2025-07-19 10:28:13.327 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50125 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:29:13.285 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:29:13.286 [info] [command][f24a2722-4a79-4d46-ac3f-d4133994901a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f24a2722-4a79-4d46-ac3f-d4133994901a""}\n2025-07-19 10:29:13.287 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][0d09e6d2-0628-4324-876d-6af884bf2a5d] received connection request\n2025-07-19 10:29:13.288 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:29:13.337 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0d09e6d2-0628-4324-876d-6af884bf2a5d] socks forwarding established\n2025-07-19 10:29:13.491 [info] [command][f24a2722-4a79-4d46-ac3f-d4133994901a] Process exited with code 0\n2025-07-19 10:29:13.492 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0d09e6d2-0628-4324-876d-6af884bf2a5d] socks connection closed\n2025-07-19 10:29:13.492 [info] [command][f24a2722-4a79-4d46-ac3f-d4133994901a] Socket close event received\n2025-07-19 10:29:13.518 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50150 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:30:13.492 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:30:13.494 [info] [command][62ad6870-076b-43f3-a74d-57afaa8941ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""62ad6870-076b-43f3-a74d-57afaa8941ff""}\n2025-07-19 10:30:13.495 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][848ffcab-66c2-4e6b-9bec-2076fd6af8ac] received connection request\n2025-07-19 10:30:13.496 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:30:13.528 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][848ffcab-66c2-4e6b-9bec-2076fd6af8ac] socks forwarding established\n2025-07-19 10:30:13.570 [info] [command][62ad6870-076b-43f3-a74d-57afaa8941ff] Process exited with code 0\n2025-07-19 10:30:13.571 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][848ffcab-66c2-4e6b-9bec-2076fd6af8ac] socks connection closed\n2025-07-19 10:30:13.571 [info] [command][62ad6870-076b-43f3-a74d-57afaa8941ff] Socket close event received\n2025-07-19 10:30:13.599 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50194 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:31:13.575 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:31:13.581 [info] [command][1774e83f-7229-4878-8adc-1399cbdb3c51] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1774e83f-7229-4878-8adc-1399cbdb3c51""}\n2025-07-19 10:31:13.582 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][1bb3865f-774d-4012-b6f3-4c1e4adc9477] received connection request\n2025-07-19 10:31:13.583 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:31:13.610 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1bb3865f-774d-4012-b6f3-4c1e4adc9477] socks forwarding established\n2025-07-19 10:31:13.648 [info] [command][1774e83f-7229-4878-8adc-1399cbdb3c51] Process exited with code 0\n2025-07-19 10:31:13.649 [info] [command][1774e83f-7229-4878-8adc-1399cbdb3c51] Socket close event received\n2025-07-19 10:31:13.649 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1bb3865f-774d-4012-b6f3-4c1e4adc9477] socks connection closed\n2025-07-19 10:31:13.676 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50226 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:32:13.651 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:32:13.652 [info] [command][1ecd3704-6388-43c8-8720-2466c4501617] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1ecd3704-6388-43c8-8720-2466c4501617""}\n2025-07-19 10:32:13.653 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5642217c-77ce-4fb3-8e6f-86053583c145] received connection request\n2025-07-19 10:32:13.653 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:32:13.707 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5642217c-77ce-4fb3-8e6f-86053583c145] socks forwarding established\n2025-07-19 10:32:13.860 [info] [command][1ecd3704-6388-43c8-8720-2466c4501617] Process exited with code 0\n2025-07-19 10:32:13.860 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5642217c-77ce-4fb3-8e6f-86053583c145] socks connection closed\n2025-07-19 10:32:13.860 [info] [command][1ecd3704-6388-43c8-8720-2466c4501617] Socket close event received\n2025-07-19 10:32:13.886 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50258 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:33:13.861 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:33:13.862 [info] [command][16d7f8ea-4522-42d9-be46-12749338221f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""16d7f8ea-4522-42d9-be46-12749338221f""}\n2025-07-19 10:33:13.863 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][7aa14de3-e11e-44a8-8d62-4f2318fe1b2a] received connection request\n2025-07-19 10:33:13.864 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:33:13.895 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7aa14de3-e11e-44a8-8d62-4f2318fe1b2a] socks forwarding established\n2025-07-19 10:33:13.932 [info] [command][16d7f8ea-4522-42d9-be46-12749338221f] Process exited with code 0\n2025-07-19 10:33:13.932 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7aa14de3-e11e-44a8-8d62-4f2318fe1b2a] socks connection closed\n2025-07-19 10:33:13.932 [info] [command][16d7f8ea-4522-42d9-be46-12749338221f] Socket close event received\n2025-07-19 10:33:13.959 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50317 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:34:13.938 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:34:13.940 [info] [command][a88f41fe-05ac-4c5f-9e91-891081749ed2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a88f41fe-05ac-4c5f-9e91-891081749ed2""}\n2025-07-19 10:34:13.941 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][bf2fe90c-e75d-4b89-a171-02e9bf7c5764] received connection request\n2025-07-19 10:34:13.942 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:34:13.974 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bf2fe90c-e75d-4b89-a171-02e9bf7c5764] socks forwarding established\n2025-07-19 10:34:14.017 [info] [command][a88f41fe-05ac-4c5f-9e91-891081749ed2] Process exited with code 0\n2025-07-19 10:34:14.018 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bf2fe90c-e75d-4b89-a171-02e9bf7c5764] socks connection closed\n2025-07-19 10:34:14.018 [info] [command][a88f41fe-05ac-4c5f-9e91-891081749ed2] Socket close event received\n2025-07-19 10:34:14.046 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50340 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:35:14.022 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:35:14.024 [info] [command][13253464-f1bf-4929-a541-b851426c6bdf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""13253464-f1bf-4929-a541-b851426c6bdf""}\n2025-07-19 10:35:14.025 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6e69863a-80e9-494d-8517-92431f3d731e] received connection request\n2025-07-19 10:35:14.026 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:35:14.172 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6e69863a-80e9-494d-8517-92431f3d731e] socks forwarding established\n2025-07-19 10:35:14.212 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6e69863a-80e9-494d-8517-92431f3d731e] socks connection closed\n2025-07-19 10:35:14.213 [info] [command][13253464-f1bf-4929-a541-b851426c6bdf] Process exited with code 0\n2025-07-19 10:35:14.213 [info] [command][13253464-f1bf-4929-a541-b851426c6bdf] Socket close event received\n2025-07-19 10:35:14.350 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50383 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:36:14.218 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:36:14.220 [info] [command][b8572f08-17c5-4131-8df8-e3d34508ab3a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""b8572f08-17c5-4131-8df8-e3d34508ab3a""}\n2025-07-19 10:36:14.220 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e63d8672-5822-449f-9850-0e940f22a1fa] received connection request\n2025-07-19 10:36:14.220 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 10:36:14.220 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:36:14.250 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e63d8672-5822-449f-9850-0e940f22a1fa] socks forwarding established\n2025-07-19 10:36:14.290 [info] [command][b8572f08-17c5-4131-8df8-e3d34508ab3a] Process exited with code 0\n2025-07-19 10:36:14.290 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e63d8672-5822-449f-9850-0e940f22a1fa] socks connection closed\n2025-07-19 10:36:14.290 [info] [command][b8572f08-17c5-4131-8df8-e3d34508ab3a] Socket close event received\n2025-07-19 10:36:14.317 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50428 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:37:14.291 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:37:14.293 [info] [command][b62f5358-7a08-4e59-b5d7-d937b9c45d86] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""b62f5358-7a08-4e59-b5d7-d937b9c45d86""}\n2025-07-19 10:37:14.294 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d8cf3a8a-9f67-4f2d-be79-9ab1149c9e37] received connection request\n2025-07-19 10:37:14.294 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:37:14.331 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d8cf3a8a-9f67-4f2d-be79-9ab1149c9e37] socks forwarding established\n2025-07-19 10:37:14.377 [info] [command][b62f5358-7a08-4e59-b5d7-d937b9c45d86] Process exited with code 0\n2025-07-19 10:37:14.377 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d8cf3a8a-9f67-4f2d-be79-9ab1149c9e37] socks connection closed\n2025-07-19 10:37:14.377 [info] [command][b62f5358-7a08-4e59-b5d7-d937b9c45d86] Socket close event received\n2025-07-19 10:37:14.405 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50454 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:38:14.381 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:38:14.384 [info] [command][4d453ca0-1e85-4967-86c1-b8f59aaa5dcf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""4d453ca0-1e85-4967-86c1-b8f59aaa5dcf""}\n2025-07-19 10:38:14.385 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][3c3d7abb-f6e5-4147-813c-7c2267500db4] received connection request\n2025-07-19 10:38:14.385 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:38:14.527 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3c3d7abb-f6e5-4147-813c-7c2267500db4] socks forwarding established\n2025-07-19 10:38:14.701 [info] [command][4d453ca0-1e85-4967-86c1-b8f59aaa5dcf] Process exited with code 0\n2025-07-19 10:38:14.702 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3c3d7abb-f6e5-4147-813c-7c2267500db4] socks connection closed\n2025-07-19 10:38:14.702 [info] [command][4d453ca0-1e85-4967-86c1-b8f59aaa5dcf] Socket close event received\n2025-07-19 10:38:14.730 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50492 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:39:14.706 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:39:14.709 [info] [command][f33603a9-0bfc-4dab-93a8-6510f2d81da0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f33603a9-0bfc-4dab-93a8-6510f2d81da0""}\n2025-07-19 10:39:14.709 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][44061f97-2d73-4061-ad82-a464e5b000ce] received connection request\n2025-07-19 10:39:14.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:39:14.740 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][44061f97-2d73-4061-ad82-a464e5b000ce] socks forwarding established\n2025-07-19 10:39:14.826 [info] [command][f33603a9-0bfc-4dab-93a8-6510f2d81da0] Process exited with code 0\n2025-07-19 10:39:14.826 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][44061f97-2d73-4061-ad82-a464e5b000ce] socks connection closed\n2025-07-19 10:39:14.826 [info] [command][f33603a9-0bfc-4dab-93a8-6510f2d81da0] Socket close event received\n2025-07-19 10:39:14.854 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50515 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:40:14.829 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:40:14.831 [info] [command][3fc3e6d7-d0ec-4865-ae21-4cc9b085bfdb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3fc3e6d7-d0ec-4865-ae21-4cc9b085bfdb""}\n2025-07-19 10:40:14.832 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][94764b23-98ac-456b-abf6-b35b763b4830] received connection request\n2025-07-19 10:40:14.832 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:40:14.860 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][94764b23-98ac-456b-abf6-b35b763b4830] socks forwarding established\n2025-07-19 10:40:14.896 [info] [command][3fc3e6d7-d0ec-4865-ae21-4cc9b085bfdb] Process exited with code 0\n2025-07-19 10:40:14.897 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][94764b23-98ac-456b-abf6-b35b763b4830] socks connection closed\n2025-07-19 10:40:14.897 [info] [command][3fc3e6d7-d0ec-4865-ae21-4cc9b085bfdb] Socket close event received\n2025-07-19 10:40:14.922 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50573 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:41:14.901 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:41:14.903 [info] [command][c4b90f64-175c-434a-8202-a59266713290] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c4b90f64-175c-434a-8202-a59266713290""}\n2025-07-19 10:41:14.905 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e46d96a1-afd3-401c-9870-936b158e78e8] received connection request\n2025-07-19 10:41:14.905 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:41:15.035 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e46d96a1-afd3-401c-9870-936b158e78e8] socks forwarding established\n2025-07-19 10:41:15.189 [info] [command][c4b90f64-175c-434a-8202-a59266713290] Process exited with code 0\n2025-07-19 10:41:15.189 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e46d96a1-afd3-401c-9870-936b158e78e8] socks connection closed\n2025-07-19 10:41:15.189 [info] [command][c4b90f64-175c-434a-8202-a59266713290] Socket close event received\n2025-07-19 10:41:15.215 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50610 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:42:15.194 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:42:15.196 [info] [command][62ee3b08-f812-4a08-906c-9f277dd2396a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""62ee3b08-f812-4a08-906c-9f277dd2396a""}\n2025-07-19 10:42:15.197 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][4ce7a48b-23a1-4263-915e-49f7fac9acab] received connection request\n2025-07-19 10:42:15.197 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:42:15.225 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4ce7a48b-23a1-4263-915e-49f7fac9acab] socks forwarding established\n2025-07-19 10:42:15.270 [info] [command][62ee3b08-f812-4a08-906c-9f277dd2396a] Process exited with code 0\n2025-07-19 10:42:15.271 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4ce7a48b-23a1-4263-915e-49f7fac9acab] socks connection closed\n2025-07-19 10:42:15.271 [info] [command][62ee3b08-f812-4a08-906c-9f277dd2396a] Socket close event received\n2025-07-19 10:42:15.298 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50641 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:43:15.273 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:43:15.275 [info] [command][ef82a906-94f1-40aa-b93b-f003d1d225f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ef82a906-94f1-40aa-b93b-f003d1d225f7""}\n2025-07-19 10:43:15.276 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][50d0ddd1-47ea-4101-9ff5-e578657d5018] received connection request\n2025-07-19 10:43:15.276 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:43:15.305 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][50d0ddd1-47ea-4101-9ff5-e578657d5018] socks forwarding established\n2025-07-19 10:43:15.343 [info] [command][ef82a906-94f1-40aa-b93b-f003d1d225f7] Process exited with code 0\n2025-07-19 10:43:15.343 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][50d0ddd1-47ea-4101-9ff5-e578657d5018] socks connection closed\n2025-07-19 10:43:15.344 [info] [command][ef82a906-94f1-40aa-b93b-f003d1d225f7] Socket close event received\n2025-07-19 10:43:15.373 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50677 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:44:15.346 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:44:15.348 [info] [command][78be3787-86b6-4042-a584-e58a2a38a244] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""78be3787-86b6-4042-a584-e58a2a38a244""}\n2025-07-19 10:44:15.348 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][7b13487f-a3e3-4b11-ab41-eb19dd43afc7] received connection request\n2025-07-19 10:44:15.348 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:44:15.545 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7b13487f-a3e3-4b11-ab41-eb19dd43afc7] socks forwarding established\n2025-07-19 10:44:15.722 [info] [command][78be3787-86b6-4042-a584-e58a2a38a244] Process exited with code 0\n2025-07-19 10:44:15.723 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7b13487f-a3e3-4b11-ab41-eb19dd43afc7] socks connection closed\n2025-07-19 10:44:15.723 [info] [command][78be3787-86b6-4042-a584-e58a2a38a244] Socket close event received\n2025-07-19 10:44:15.749 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50733 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:45:15.725 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:45:15.728 [info] [command][068722cb-ec8c-44ec-9ada-c4cc9b6209ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""068722cb-ec8c-44ec-9ada-c4cc9b6209ea""}\n2025-07-19 10:45:15.729 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][bec57df6-76ea-4253-bb84-dd280e61f1b8] received connection request\n2025-07-19 10:45:15.729 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:45:15.759 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bec57df6-76ea-4253-bb84-dd280e61f1b8] socks forwarding established\n2025-07-19 10:45:15.803 [info] [command][068722cb-ec8c-44ec-9ada-c4cc9b6209ea] Process exited with code 0\n2025-07-19 10:45:15.803 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bec57df6-76ea-4253-bb84-dd280e61f1b8] socks connection closed\n2025-07-19 10:45:15.803 [info] [command][068722cb-ec8c-44ec-9ada-c4cc9b6209ea] Socket close event received\n2025-07-19 10:45:15.833 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50793 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:46:15.808 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:46:15.810 [info] [command][f73d8e37-4d32-4e42-8c68-11e19f631b76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f73d8e37-4d32-4e42-8c68-11e19f631b76""}\n2025-07-19 10:46:15.810 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f2f300ef-b001-4455-b4b8-e9e351d14e57] received connection request\n2025-07-19 10:46:15.811 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:46:15.838 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f2f300ef-b001-4455-b4b8-e9e351d14e57] socks forwarding established\n2025-07-19 10:46:15.879 [info] [command][f73d8e37-4d32-4e42-8c68-11e19f631b76] Process exited with code 0\n2025-07-19 10:46:15.879 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f2f300ef-b001-4455-b4b8-e9e351d14e57] socks connection closed\n2025-07-19 10:46:15.879 [info] [command][f73d8e37-4d32-4e42-8c68-11e19f631b76] Socket close event received\n2025-07-19 10:46:15.906 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50833 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:47:15.883 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:47:15.885 [info] [command][59d655ba-25a8-4a46-a48d-2dbb8a4dc6ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""59d655ba-25a8-4a46-a48d-2dbb8a4dc6ae""}\n2025-07-19 10:47:15.886 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][518b76c6-ede1-400b-b0ec-2d9f455605c4] received connection request\n2025-07-19 10:47:15.886 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 10:47:15.886 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:47:15.937 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][518b76c6-ede1-400b-b0ec-2d9f455605c4] socks forwarding established\n2025-07-19 10:47:16.091 [info] [command][59d655ba-25a8-4a46-a48d-2dbb8a4dc6ae] Process exited with code 0\n2025-07-19 10:47:16.091 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][518b76c6-ede1-400b-b0ec-2d9f455605c4] socks connection closed\n2025-07-19 10:47:16.091 [info] [command][59d655ba-25a8-4a46-a48d-2dbb8a4dc6ae] Socket close event received\n2025-07-19 10:47:16.117 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50872 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:48:16.099 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:48:16.101 [info] [command][f85d58de-a482-4e09-9464-651426d66249] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f85d58de-a482-4e09-9464-651426d66249""}\n2025-07-19 10:48:16.102 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][10dec634-d69f-4e5c-a2ec-142e6a6ebd13] received connection request\n2025-07-19 10:48:16.102 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:48:16.130 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][10dec634-d69f-4e5c-a2ec-142e6a6ebd13] socks forwarding established\n2025-07-19 10:48:16.168 [info] [command][f85d58de-a482-4e09-9464-651426d66249] Process exited with code 0\n2025-07-19 10:48:16.169 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][10dec634-d69f-4e5c-a2ec-142e6a6ebd13] socks connection closed\n2025-07-19 10:48:16.169 [info] [command][f85d58de-a482-4e09-9464-651426d66249] Socket close event received\n2025-07-19 10:48:16.195 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50914 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:49:16.172 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:49:16.174 [info] [command][8696daaf-89e9-4de3-8cc8-2b6250cb4fd4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8696daaf-89e9-4de3-8cc8-2b6250cb4fd4""}\n2025-07-19 10:49:16.175 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][63f25e1f-724c-41f6-8e92-77a697d34a74] received connection request\n2025-07-19 10:49:16.175 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:49:16.209 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][63f25e1f-724c-41f6-8e92-77a697d34a74] socks forwarding established\n2025-07-19 10:49:16.251 [info] [command][8696daaf-89e9-4de3-8cc8-2b6250cb4fd4] Process exited with code 0\n2025-07-19 10:49:16.252 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][63f25e1f-724c-41f6-8e92-77a697d34a74] socks connection closed\n2025-07-19 10:49:16.252 [info] [command][8696daaf-89e9-4de3-8cc8-2b6250cb4fd4] Socket close event received\n2025-07-19 10:49:16.278 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 50927 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:50:16.256 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:50:16.259 [info] [command][c68d721f-97b8-4728-8408-df3eeb234131] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c68d721f-97b8-4728-8408-df3eeb234131""}\n2025-07-19 10:50:16.260 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b8f1490d-a603-42a7-aa6e-b761074aeea0] received connection request\n2025-07-19 10:50:16.261 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:50:16.348 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b8f1490d-a603-42a7-aa6e-b761074aeea0] socks forwarding established\n2025-07-19 10:50:16.502 [info] [command][c68d721f-97b8-4728-8408-df3eeb234131] Process exited with code 0\n2025-07-19 10:50:16.502 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b8f1490d-a603-42a7-aa6e-b761074aeea0] socks connection closed\n2025-07-19 10:50:16.503 [info] [command][c68d721f-97b8-4728-8408-df3eeb234131] Socket close event received\n2025-07-19 10:50:16.532 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51026 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:51:16.504 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:51:16.506 [info] [command][da3d092f-2591-4025-b8dc-93b65cf8ce23] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""da3d092f-2591-4025-b8dc-93b65cf8ce23""}\n2025-07-19 10:51:16.507 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][cad2020b-7ea5-4042-9d37-03f44b2beebb] received connection request\n2025-07-19 10:51:16.507 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:51:16.534 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cad2020b-7ea5-4042-9d37-03f44b2beebb] socks forwarding established\n2025-07-19 10:51:16.576 [info] [command][da3d092f-2591-4025-b8dc-93b65cf8ce23] Process exited with code 0\n2025-07-19 10:51:16.577 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cad2020b-7ea5-4042-9d37-03f44b2beebb] socks connection closed\n2025-07-19 10:51:16.577 [info] [command][da3d092f-2591-4025-b8dc-93b65cf8ce23] Socket close event received\n2025-07-19 10:51:16.603 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51113 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:52:16.578 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:52:16.579 [info] [command][02df7b96-67d5-4e3b-a7a6-8ef4ea974fe3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""02df7b96-67d5-4e3b-a7a6-8ef4ea974fe3""}\n2025-07-19 10:52:16.579 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ce1ace74-c835-47fa-9e29-9a3365d10e28] received connection request\n2025-07-19 10:52:16.580 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:52:16.606 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ce1ace74-c835-47fa-9e29-9a3365d10e28] socks forwarding established\n2025-07-19 10:52:16.647 [info] [command][02df7b96-67d5-4e3b-a7a6-8ef4ea974fe3] Process exited with code 0\n2025-07-19 10:52:16.647 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ce1ace74-c835-47fa-9e29-9a3365d10e28] socks connection closed\n2025-07-19 10:52:16.647 [info] [command][02df7b96-67d5-4e3b-a7a6-8ef4ea974fe3] Socket close event received\n2025-07-19 10:52:16.675 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51201 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:53:16.647 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:53:16.649 [info] [command][a6fafc62-bc3d-4539-821e-d818d29826d7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a6fafc62-bc3d-4539-821e-d818d29826d7""}\n2025-07-19 10:53:16.650 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][3b2c0122-88e5-436e-8653-e9973445352a] received connection request\n2025-07-19 10:53:16.650 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:53:16.688 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3b2c0122-88e5-436e-8653-e9973445352a] socks forwarding established\n2025-07-19 10:53:16.835 [info] [command][a6fafc62-bc3d-4539-821e-d818d29826d7] Process exited with code 0\n2025-07-19 10:53:16.835 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3b2c0122-88e5-436e-8653-e9973445352a] socks connection closed\n2025-07-19 10:53:16.835 [info] [command][a6fafc62-bc3d-4539-821e-d818d29826d7] Socket close event received\n2025-07-19 10:53:16.862 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51239 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:54:16.839 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:54:16.841 [info] [command][863c37d4-2fa8-42d7-92d6-0e045d5f7fea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""863c37d4-2fa8-42d7-92d6-0e045d5f7fea""}\n2025-07-19 10:54:16.842 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][53acfde1-4750-4bbd-ae62-3f30d86992d7] received connection request\n2025-07-19 10:54:16.842 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:54:16.873 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][53acfde1-4750-4bbd-ae62-3f30d86992d7] socks forwarding established\n2025-07-19 10:54:16.912 [info] [command][863c37d4-2fa8-42d7-92d6-0e045d5f7fea] Process exited with code 0\n2025-07-19 10:54:16.912 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][53acfde1-4750-4bbd-ae62-3f30d86992d7] socks connection closed\n2025-07-19 10:54:16.912 [info] [command][863c37d4-2fa8-42d7-92d6-0e045d5f7fea] Socket close event received\n2025-07-19 10:54:16.938 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51260 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:55:16.912 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:55:16.915 [info] [command][fd9a78d2-93c7-498c-8edf-aa2d08a50183] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""fd9a78d2-93c7-498c-8edf-aa2d08a50183""}\n2025-07-19 10:55:16.916 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6817b738-5a0d-4c32-a2ea-73c1a83423a4] received connection request\n2025-07-19 10:55:16.916 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 10:55:16.917 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:55:16.945 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6817b738-5a0d-4c32-a2ea-73c1a83423a4] socks forwarding established\n2025-07-19 10:55:16.987 [info] [command][fd9a78d2-93c7-498c-8edf-aa2d08a50183] Process exited with code 0\n2025-07-19 10:55:16.988 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6817b738-5a0d-4c32-a2ea-73c1a83423a4] socks connection closed\n2025-07-19 10:55:16.989 [info] [command][fd9a78d2-93c7-498c-8edf-aa2d08a50183] Socket close event received\n2025-07-19 10:55:17.016 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51299 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:56:16.989 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:56:16.991 [info] [command][14b7d19d-d562-4361-aaff-701bdae7a94d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""14b7d19d-d562-4361-aaff-701bdae7a94d""}\n2025-07-19 10:56:16.992 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][49bdb30a-3657-40b8-918a-3be64744dfbf] received connection request\n2025-07-19 10:56:16.992 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:56:17.033 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][49bdb30a-3657-40b8-918a-3be64744dfbf] socks forwarding established\n2025-07-19 10:56:17.190 [info] [command][14b7d19d-d562-4361-aaff-701bdae7a94d] Process exited with code 0\n2025-07-19 10:56:17.190 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][49bdb30a-3657-40b8-918a-3be64744dfbf] socks connection closed\n2025-07-19 10:56:17.191 [info] [command][14b7d19d-d562-4361-aaff-701bdae7a94d] Socket close event received\n2025-07-19 10:56:17.221 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51334 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:57:17.195 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:57:17.197 [info] [command][e89cf3c3-213f-40b7-b73a-5cb954c05adf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e89cf3c3-213f-40b7-b73a-5cb954c05adf""}\n2025-07-19 10:57:17.198 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6e510da8-6742-47d8-bbfe-7ed035129e2a] received connection request\n2025-07-19 10:57:17.198 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:57:17.227 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6e510da8-6742-47d8-bbfe-7ed035129e2a] socks forwarding established\n2025-07-19 10:57:17.268 [info] [command][e89cf3c3-213f-40b7-b73a-5cb954c05adf] Process exited with code 0\n2025-07-19 10:57:17.268 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6e510da8-6742-47d8-bbfe-7ed035129e2a] socks connection closed\n2025-07-19 10:57:17.268 [info] [command][e89cf3c3-213f-40b7-b73a-5cb954c05adf] Socket close event received\n2025-07-19 10:57:17.295 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51364 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:58:17.268 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:58:17.270 [info] [command][a7d8d538-c8b4-42c8-8fdc-fec9119374e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a7d8d538-c8b4-42c8-8fdc-fec9119374e7""}\n2025-07-19 10:58:17.270 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][88c98157-a068-4e97-a21d-872c8afdb4fd] received connection request\n2025-07-19 10:58:17.271 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:58:17.301 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][88c98157-a068-4e97-a21d-872c8afdb4fd] socks forwarding established\n2025-07-19 10:58:17.341 [info] [command][a7d8d538-c8b4-42c8-8fdc-fec9119374e7] Process exited with code 0\n2025-07-19 10:58:17.341 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][88c98157-a068-4e97-a21d-872c8afdb4fd] socks connection closed\n2025-07-19 10:58:17.341 [info] [command][a7d8d538-c8b4-42c8-8fdc-fec9119374e7] Socket close event received\n2025-07-19 10:58:17.368 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51399 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 10:59:17.342 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 10:59:17.344 [info] [command][b30d2f10-11db-4c48-b0da-c158252c2641] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""b30d2f10-11db-4c48-b0da-c158252c2641""}\n2025-07-19 10:59:17.344 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e333d74e-5526-412b-8eeb-834086bf27fc] received connection request\n2025-07-19 10:59:17.344 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 10:59:17.454 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e333d74e-5526-412b-8eeb-834086bf27fc] socks forwarding established\n2025-07-19 10:59:17.495 [info] [command][b30d2f10-11db-4c48-b0da-c158252c2641] Process exited with code 0\n2025-07-19 10:59:17.495 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e333d74e-5526-412b-8eeb-834086bf27fc] socks connection closed\n2025-07-19 10:59:17.495 [info] [command][b30d2f10-11db-4c48-b0da-c158252c2641] Socket close event received\n2025-07-19 10:59:17.654 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51416 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:00:17.504 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:00:17.506 [info] [command][34f5fc93-0228-4ebc-a042-855978ef671e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""34f5fc93-0228-4ebc-a042-855978ef671e""}\n2025-07-19 11:00:17.507 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][eb32423c-5159-46ff-afca-5aceb7f1ea23] received connection request\n2025-07-19 11:00:17.507 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:00:17.539 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][eb32423c-5159-46ff-afca-5aceb7f1ea23] socks forwarding established\n2025-07-19 11:00:17.581 [info] [command][34f5fc93-0228-4ebc-a042-855978ef671e] Process exited with code 0\n2025-07-19 11:00:17.582 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][eb32423c-5159-46ff-afca-5aceb7f1ea23] socks connection closed\n2025-07-19 11:00:17.582 [info] [command][34f5fc93-0228-4ebc-a042-855978ef671e] Socket close event received\n2025-07-19 11:00:17.610 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51450 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:01:17.589 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:01:17.590 [info] [command][3dd17365-c006-4559-9b3a-831a3ebfbd75] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3dd17365-c006-4559-9b3a-831a3ebfbd75""}\n2025-07-19 11:01:17.590 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][60868845-af50-4ce7-9304-6a2eb1bbc3b9] received connection request\n2025-07-19 11:01:17.591 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:01:17.619 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][60868845-af50-4ce7-9304-6a2eb1bbc3b9] socks forwarding established\n2025-07-19 11:01:17.660 [info] [command][3dd17365-c006-4559-9b3a-831a3ebfbd75] Process exited with code 0\n2025-07-19 11:01:17.660 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][60868845-af50-4ce7-9304-6a2eb1bbc3b9] socks connection closed\n2025-07-19 11:01:17.660 [info] [command][3dd17365-c006-4559-9b3a-831a3ebfbd75] Socket close event received\n2025-07-19 11:01:17.688 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51484 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:02:17.665 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:02:17.667 [info] [command][0b5026b5-82fd-4831-a9b8-d91170539d90] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""0b5026b5-82fd-4831-a9b8-d91170539d90""}\n2025-07-19 11:02:17.667 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ac6b40f3-a572-4fb9-902e-2a08c9ff7710] received connection request\n2025-07-19 11:02:17.667 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:02:17.776 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ac6b40f3-a572-4fb9-902e-2a08c9ff7710] socks forwarding established\n2025-07-19 11:02:17.869 [info] [command][0b5026b5-82fd-4831-a9b8-d91170539d90] Process exited with code 0\n2025-07-19 11:02:17.869 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ac6b40f3-a572-4fb9-902e-2a08c9ff7710] socks connection closed\n2025-07-19 11:02:17.869 [info] [command][0b5026b5-82fd-4831-a9b8-d91170539d90] Socket close event received\n2025-07-19 11:02:17.896 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51515 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:03:17.873 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:03:17.877 [info] [command][774dc30b-8136-434b-8f54-e1a214b40c58] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""774dc30b-8136-434b-8f54-e1a214b40c58""}\n2025-07-19 11:03:17.878 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][32d842b2-e90e-49fc-9e53-55d5d8681da9] received connection request\n2025-07-19 11:03:17.878 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:03:17.906 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][32d842b2-e90e-49fc-9e53-55d5d8681da9] socks forwarding established\n2025-07-19 11:03:17.947 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][32d842b2-e90e-49fc-9e53-55d5d8681da9] socks connection closed\n2025-07-19 11:03:17.947 [info] [command][774dc30b-8136-434b-8f54-e1a214b40c58] Process exited with code 0\n2025-07-19 11:03:17.947 [info] [command][774dc30b-8136-434b-8f54-e1a214b40c58] Socket close event received\n2025-07-19 11:03:17.972 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51553 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:04:17.958 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:04:17.960 [info] [command][8c38a50f-d957-4a89-8c4f-84da2a4344dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8c38a50f-d957-4a89-8c4f-84da2a4344dc""}\n2025-07-19 11:04:17.961 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6e414e53-81d5-4913-9cfa-a277c2f737a7] received connection request\n2025-07-19 11:04:17.961 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:04:17.992 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6e414e53-81d5-4913-9cfa-a277c2f737a7] socks forwarding established\n2025-07-19 11:04:18.032 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6e414e53-81d5-4913-9cfa-a277c2f737a7] socks connection closed\n2025-07-19 11:04:18.033 [info] [command][8c38a50f-d957-4a89-8c4f-84da2a4344dc] Process exited with code 0\n2025-07-19 11:04:18.033 [info] [command][8c38a50f-d957-4a89-8c4f-84da2a4344dc] Socket close event received\n2025-07-19 11:04:18.059 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51568 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:05:18.035 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:05:18.037 [info] [command][b491d9b5-469f-4366-aa16-7f349d57f8f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""b491d9b5-469f-4366-aa16-7f349d57f8f4""}\n2025-07-19 11:05:18.038 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d621f625-e4ec-47ff-9dd5-8e99d63597f5] received connection request\n2025-07-19 11:05:18.038 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:05:18.070 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d621f625-e4ec-47ff-9dd5-8e99d63597f5] socks forwarding established\n2025-07-19 11:05:18.113 [info] [command][b491d9b5-469f-4366-aa16-7f349d57f8f4] Process exited with code 0\n2025-07-19 11:05:18.113 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d621f625-e4ec-47ff-9dd5-8e99d63597f5] socks connection closed\n2025-07-19 11:05:18.113 [info] [command][b491d9b5-469f-4366-aa16-7f349d57f8f4] Socket close event received\n2025-07-19 11:05:18.141 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51601 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:06:18.119 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:06:18.121 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][860ab120-b217-497a-b4c3-3d992a8fd212] received connection request\n2025-07-19 11:06:18.121 [info] [command][9f09ba6a-f7f7-476e-8c03-cb7fde43fb59] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""9f09ba6a-f7f7-476e-8c03-cb7fde43fb59""}\n2025-07-19 11:06:18.122 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:06:18.150 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][860ab120-b217-497a-b4c3-3d992a8fd212] socks forwarding established\n2025-07-19 11:06:18.194 [info] [command][9f09ba6a-f7f7-476e-8c03-cb7fde43fb59] Process exited with code 0\n2025-07-19 11:06:18.194 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][860ab120-b217-497a-b4c3-3d992a8fd212] socks connection closed\n2025-07-19 11:06:18.195 [info] [command][9f09ba6a-f7f7-476e-8c03-cb7fde43fb59] Socket close event received\n2025-07-19 11:06:18.223 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51637 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:07:18.204 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:07:18.207 [info] [command][97358c0c-dacc-4f26-95b6-e4dbea831efd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""97358c0c-dacc-4f26-95b6-e4dbea831efd""}\n2025-07-19 11:07:18.208 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2ca06665-59a5-4a37-8a10-d5af01aff195] received connection request\n2025-07-19 11:07:18.208 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:07:18.236 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2ca06665-59a5-4a37-8a10-d5af01aff195] socks forwarding established\n2025-07-19 11:07:18.277 [info] [command][97358c0c-dacc-4f26-95b6-e4dbea831efd] Process exited with code 0\n2025-07-19 11:07:18.278 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2ca06665-59a5-4a37-8a10-d5af01aff195] socks connection closed\n2025-07-19 11:07:18.278 [info] [command][97358c0c-dacc-4f26-95b6-e4dbea831efd] Socket close event received\n2025-07-19 11:07:18.305 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51662 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:08:18.287 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:08:18.290 [info] [command][3645ed41-f257-42b8-87a5-edcab7537752] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3645ed41-f257-42b8-87a5-edcab7537752""}\n2025-07-19 11:08:18.290 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f846f6ce-55f6-4b1e-a951-2e3ac02a3941] received connection request\n2025-07-19 11:08:18.291 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:08:18.321 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f846f6ce-55f6-4b1e-a951-2e3ac02a3941] socks forwarding established\n2025-07-19 11:08:18.365 [info] [command][3645ed41-f257-42b8-87a5-edcab7537752] Process exited with code 0\n2025-07-19 11:08:18.366 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f846f6ce-55f6-4b1e-a951-2e3ac02a3941] socks connection closed\n2025-07-19 11:08:18.366 [info] [command][3645ed41-f257-42b8-87a5-edcab7537752] Socket close event received\n2025-07-19 11:08:18.391 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51686 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:09:18.370 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:09:18.373 [info] [command][0c5b7b7a-d2ee-42ee-9e29-6d40db9c3392] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""0c5b7b7a-d2ee-42ee-9e29-6d40db9c3392""}\n2025-07-19 11:09:18.373 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d73f2308-ed91-43ad-a89a-61bdd27441ae] received connection request\n2025-07-19 11:09:18.374 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:09:18.464 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d73f2308-ed91-43ad-a89a-61bdd27441ae] socks forwarding established\n2025-07-19 11:09:18.596 [info] [command][0c5b7b7a-d2ee-42ee-9e29-6d40db9c3392] Process exited with code 0\n2025-07-19 11:09:18.596 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d73f2308-ed91-43ad-a89a-61bdd27441ae] socks connection closed\n2025-07-19 11:09:18.597 [info] [command][0c5b7b7a-d2ee-42ee-9e29-6d40db9c3392] Socket close event received\n2025-07-19 11:09:18.645 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51718 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:10:18.603 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:10:18.606 [info] [command][ccc3ca17-fa2f-4c77-8a00-51f80be3366d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ccc3ca17-fa2f-4c77-8a00-51f80be3366d""}\n2025-07-19 11:10:18.606 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][af81502a-df10-4bb1-a398-9a211ea23031] received connection request\n2025-07-19 11:10:18.607 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:10:18.635 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][af81502a-df10-4bb1-a398-9a211ea23031] socks forwarding established\n2025-07-19 11:10:18.677 [info] [command][ccc3ca17-fa2f-4c77-8a00-51f80be3366d] Process exited with code 0\n2025-07-19 11:10:18.678 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][af81502a-df10-4bb1-a398-9a211ea23031] socks connection closed\n2025-07-19 11:10:18.678 [info] [command][ccc3ca17-fa2f-4c77-8a00-51f80be3366d] Socket close event received\n2025-07-19 11:10:18.705 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51752 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:11:18.687 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:11:18.689 [info] [command][1f86df08-f5bb-4205-8677-ff984209af83] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1f86df08-f5bb-4205-8677-ff984209af83""}\n2025-07-19 11:11:18.690 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][4f0ecb3c-a3a9-417d-b9a0-b1222bd8f214] received connection request\n2025-07-19 11:11:18.690 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:11:18.720 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4f0ecb3c-a3a9-417d-b9a0-b1222bd8f214] socks forwarding established\n2025-07-19 11:11:18.760 [info] [command][1f86df08-f5bb-4205-8677-ff984209af83] Process exited with code 0\n2025-07-19 11:11:18.761 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4f0ecb3c-a3a9-417d-b9a0-b1222bd8f214] socks connection closed\n2025-07-19 11:11:18.761 [info] [command][1f86df08-f5bb-4205-8677-ff984209af83] Socket close event received\n2025-07-19 11:11:18.791 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51791 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:12:18.770 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:12:18.772 [info] [command][4f4e9b2c-4766-4129-8e86-24af6bcb5ff1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""4f4e9b2c-4766-4129-8e86-24af6bcb5ff1""}\n2025-07-19 11:12:18.773 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e8c0d64c-e10b-4c31-b804-f0cd32317616] received connection request\n2025-07-19 11:12:18.773 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:12:18.829 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e8c0d64c-e10b-4c31-b804-f0cd32317616] socks forwarding established\n2025-07-19 11:12:18.972 [info] [command][4f4e9b2c-4766-4129-8e86-24af6bcb5ff1] Process exited with code 0\n2025-07-19 11:12:18.972 [info] [command][4f4e9b2c-4766-4129-8e86-24af6bcb5ff1] Socket close event received\n2025-07-19 11:12:18.973 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e8c0d64c-e10b-4c31-b804-f0cd32317616] socks connection closed\n2025-07-19 11:12:19.001 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51813 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:13:18.983 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:13:18.985 [info] [command][89f9a650-1177-4f2b-b55b-859a0140ee81] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""89f9a650-1177-4f2b-b55b-859a0140ee81""}\n2025-07-19 11:13:18.986 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][47d76b77-24b2-4bde-aa16-6b34b9f85018] received connection request\n2025-07-19 11:13:18.986 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:13:19.015 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][47d76b77-24b2-4bde-aa16-6b34b9f85018] socks forwarding established\n2025-07-19 11:13:19.053 [info] [command][89f9a650-1177-4f2b-b55b-859a0140ee81] Process exited with code 0\n2025-07-19 11:13:19.054 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][47d76b77-24b2-4bde-aa16-6b34b9f85018] socks connection closed\n2025-07-19 11:13:19.054 [info] [command][89f9a650-1177-4f2b-b55b-859a0140ee81] Socket close event received\n2025-07-19 11:13:19.081 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51838 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:14:19.063 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:14:19.066 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][0493aba5-b37e-491f-9bf2-e5d1b5d7ee2a] received connection request\n2025-07-19 11:14:19.066 [info] [command][c154f4bf-e116-40f2-8222-1a4f4b59bafe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c154f4bf-e116-40f2-8222-1a4f4b59bafe""}\n2025-07-19 11:14:19.067 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:14:19.097 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0493aba5-b37e-491f-9bf2-e5d1b5d7ee2a] socks forwarding established\n2025-07-19 11:14:19.141 [info] [command][c154f4bf-e116-40f2-8222-1a4f4b59bafe] Process exited with code 0\n2025-07-19 11:14:19.141 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0493aba5-b37e-491f-9bf2-e5d1b5d7ee2a] socks connection closed\n2025-07-19 11:14:19.142 [info] [command][c154f4bf-e116-40f2-8222-1a4f4b59bafe] Socket close event received\n2025-07-19 11:14:19.168 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51873 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:15:19.150 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:15:19.152 [info] [command][c582c394-4ff1-4e79-9a2a-d1c5f0d5b256] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c582c394-4ff1-4e79-9a2a-d1c5f0d5b256""}\n2025-07-19 11:15:19.153 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][3114320d-96dc-4811-8386-04751f067487] received connection request\n2025-07-19 11:15:19.154 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:15:19.184 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3114320d-96dc-4811-8386-04751f067487] socks forwarding established\n2025-07-19 11:15:19.224 [info] [command][c582c394-4ff1-4e79-9a2a-d1c5f0d5b256] Process exited with code 0\n2025-07-19 11:15:19.224 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3114320d-96dc-4811-8386-04751f067487] socks connection closed\n2025-07-19 11:15:19.224 [info] [command][c582c394-4ff1-4e79-9a2a-d1c5f0d5b256] Socket close event received\n2025-07-19 11:15:19.253 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51907 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:16:19.225 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:16:19.227 [info] [command][7490ece9-0687-4c7b-b866-6158266ffd2d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""7490ece9-0687-4c7b-b866-6158266ffd2d""}\n2025-07-19 11:16:19.227 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][8b3f80d8-01ef-472b-a2b4-30786223e780] received connection request\n2025-07-19 11:16:19.227 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:16:19.256 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8b3f80d8-01ef-472b-a2b4-30786223e780] socks forwarding established\n2025-07-19 11:16:19.300 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8b3f80d8-01ef-472b-a2b4-30786223e780] socks connection closed\n2025-07-19 11:16:19.301 [info] [command][7490ece9-0687-4c7b-b866-6158266ffd2d] Process exited with code 0\n2025-07-19 11:16:19.301 [info] [command][7490ece9-0687-4c7b-b866-6158266ffd2d] Socket close event received\n2025-07-19 11:16:19.328 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51939 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:17:19.301 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:17:19.304 [info] [command][4e903304-ae70-499c-9205-2af565468473] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""4e903304-ae70-499c-9205-2af565468473""}\n2025-07-19 11:17:19.304 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][1f521388-adfe-4ce8-a578-35d012d1cf3e] received connection request\n2025-07-19 11:17:19.305 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:17:19.334 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1f521388-adfe-4ce8-a578-35d012d1cf3e] socks forwarding established\n2025-07-19 11:17:19.375 [info] [command][4e903304-ae70-499c-9205-2af565468473] Process exited with code 0\n2025-07-19 11:17:19.376 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1f521388-adfe-4ce8-a578-35d012d1cf3e] socks connection closed\n2025-07-19 11:17:19.376 [info] [command][4e903304-ae70-499c-9205-2af565468473] Socket close event received\n2025-07-19 11:17:19.405 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51961 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:18:19.379 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:18:19.381 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][3a7b584a-7567-4858-b389-d4c30d4b15f8] received connection request\n2025-07-19 11:18:19.381 [info] [command][54070d52-6c5b-4e77-82d2-c4f9ab7025b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""54070d52-6c5b-4e77-82d2-c4f9ab7025b8""}\n2025-07-19 11:18:19.382 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:18:19.410 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3a7b584a-7567-4858-b389-d4c30d4b15f8] socks forwarding established\n2025-07-19 11:18:19.451 [info] [command][54070d52-6c5b-4e77-82d2-c4f9ab7025b8] Process exited with code 0\n2025-07-19 11:18:19.452 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3a7b584a-7567-4858-b389-d4c30d4b15f8] socks connection closed\n2025-07-19 11:18:19.452 [info] [command][54070d52-6c5b-4e77-82d2-c4f9ab7025b8] Socket close event received\n2025-07-19 11:18:19.478 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 51980 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:19:19.454 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:19:19.456 [info] [command][8e953d21-2d85-4e04-aa94-de9a515c224b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8e953d21-2d85-4e04-aa94-de9a515c224b""}\n2025-07-19 11:19:19.457 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2cbd4ec0-1670-4966-aaef-bb0e20638027] received connection request\n2025-07-19 11:19:19.457 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:19:19.618 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2cbd4ec0-1670-4966-aaef-bb0e20638027] socks forwarding established\n2025-07-19 11:19:19.691 [info] [command][8e953d21-2d85-4e04-aa94-de9a515c224b] Process exited with code 0\n2025-07-19 11:19:19.691 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2cbd4ec0-1670-4966-aaef-bb0e20638027] socks connection closed\n2025-07-19 11:19:19.691 [info] [command][8e953d21-2d85-4e04-aa94-de9a515c224b] Socket close event received\n2025-07-19 11:19:19.798 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52011 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:20:19.691 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:20:19.693 [info] [command][0f2fd1b3-2508-4e2e-9455-248fadf7a98a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""0f2fd1b3-2508-4e2e-9455-248fadf7a98a""}\n2025-07-19 11:20:19.694 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][4aac7b8b-cbb0-4215-baa4-8a502b369685] received connection request\n2025-07-19 11:20:19.694 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:20:19.723 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4aac7b8b-cbb0-4215-baa4-8a502b369685] socks forwarding established\n2025-07-19 11:20:19.765 [info] [command][0f2fd1b3-2508-4e2e-9455-248fadf7a98a] Process exited with code 0\n2025-07-19 11:20:19.765 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][4aac7b8b-cbb0-4215-baa4-8a502b369685] socks connection closed\n2025-07-19 11:20:19.765 [info] [command][0f2fd1b3-2508-4e2e-9455-248fadf7a98a] Socket close event received\n2025-07-19 11:20:19.794 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52050 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:21:19.770 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:21:19.771 [info] [command][a5ab967f-0931-4dbe-934e-b856e40aee5d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a5ab967f-0931-4dbe-934e-b856e40aee5d""}\n2025-07-19 11:21:19.772 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][94eb7335-f15f-4ab6-ac23-e831fd357f2e] received connection request\n2025-07-19 11:21:19.772 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:21:19.806 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][94eb7335-f15f-4ab6-ac23-e831fd357f2e] socks forwarding established\n2025-07-19 11:21:19.850 [info] [command][a5ab967f-0931-4dbe-934e-b856e40aee5d] Process exited with code 0\n2025-07-19 11:21:19.850 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][94eb7335-f15f-4ab6-ac23-e831fd357f2e] socks connection closed\n2025-07-19 11:21:19.851 [info] [command][a5ab967f-0931-4dbe-934e-b856e40aee5d] Socket close event received\n2025-07-19 11:21:19.879 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52096 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:22:19.860 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:22:19.863 [info] [command][a91a6959-8bad-4401-8259-ef4599e5323a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a91a6959-8bad-4401-8259-ef4599e5323a""}\n2025-07-19 11:22:19.864 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6c4fe360-72c9-49c9-b605-20a44248ccaf] received connection request\n2025-07-19 11:22:19.865 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:22:19.979 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6c4fe360-72c9-49c9-b605-20a44248ccaf] socks forwarding established\n2025-07-19 11:22:20.230 [info] [command][a91a6959-8bad-4401-8259-ef4599e5323a] Process exited with code 0\n2025-07-19 11:22:20.231 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6c4fe360-72c9-49c9-b605-20a44248ccaf] socks connection closed\n2025-07-19 11:22:20.231 [info] [command][a91a6959-8bad-4401-8259-ef4599e5323a] Socket close event received\n2025-07-19 11:22:20.258 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52119 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:23:20.234 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:23:20.236 [info] [command][e81920ef-433b-43a3-8582-7ac08ef2a233] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e81920ef-433b-43a3-8582-7ac08ef2a233""}\n2025-07-19 11:23:20.237 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e3296cc5-ea00-4066-bd84-1dffd9044018] received connection request\n2025-07-19 11:23:20.238 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:23:20.265 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e3296cc5-ea00-4066-bd84-1dffd9044018] socks forwarding established\n2025-07-19 11:23:20.308 [info] [command][e81920ef-433b-43a3-8582-7ac08ef2a233] Process exited with code 0\n2025-07-19 11:23:20.308 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e3296cc5-ea00-4066-bd84-1dffd9044018] socks connection closed\n2025-07-19 11:23:20.308 [info] [command][e81920ef-433b-43a3-8582-7ac08ef2a233] Socket close event received\n2025-07-19 11:23:20.337 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52182 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:24:20.313 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:24:20.315 [info] [command][d32811d8-67d8-405b-84c0-9a9caea57ef1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""d32811d8-67d8-405b-84c0-9a9caea57ef1""}\n2025-07-19 11:24:20.315 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][bfdc272a-5e16-4cc1-9ab1-ee7abb51723f] received connection request\n2025-07-19 11:24:20.317 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:24:20.345 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bfdc272a-5e16-4cc1-9ab1-ee7abb51723f] socks forwarding established\n2025-07-19 11:24:20.387 [info] [command][d32811d8-67d8-405b-84c0-9a9caea57ef1] Process exited with code 0\n2025-07-19 11:24:20.387 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bfdc272a-5e16-4cc1-9ab1-ee7abb51723f] socks connection closed\n2025-07-19 11:24:20.387 [info] [command][d32811d8-67d8-405b-84c0-9a9caea57ef1] Socket close event received\n2025-07-19 11:24:20.412 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52213 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:25:20.390 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:25:20.392 [info] [command][39789ba1-945c-4929-a463-5aa38b79d049] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""39789ba1-945c-4929-a463-5aa38b79d049""}\n2025-07-19 11:25:20.392 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d0604c20-a47a-41ce-b7d8-f5eb10931092] received connection request\n2025-07-19 11:25:20.392 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:25:20.422 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d0604c20-a47a-41ce-b7d8-f5eb10931092] socks forwarding established\n2025-07-19 11:25:20.469 [info] [command][39789ba1-945c-4929-a463-5aa38b79d049] Process exited with code 0\n2025-07-19 11:25:20.469 [info] [command][39789ba1-945c-4929-a463-5aa38b79d049] Socket close event received\n2025-07-19 11:25:20.469 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d0604c20-a47a-41ce-b7d8-f5eb10931092] socks connection closed\n2025-07-19 11:25:20.513 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52262 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:26:20.474 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:26:20.477 [info] [command][b64c4616-5239-4920-9030-8b9852923e41] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""b64c4616-5239-4920-9030-8b9852923e41""}\n2025-07-19 11:26:20.477 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a2096656-0f29-42e5-a713-46bce6adba43] received connection request\n2025-07-19 11:26:20.478 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:26:20.505 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a2096656-0f29-42e5-a713-46bce6adba43] socks forwarding established\n2025-07-19 11:26:20.545 [info] [command][b64c4616-5239-4920-9030-8b9852923e41] Process exited with code 0\n2025-07-19 11:26:20.545 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a2096656-0f29-42e5-a713-46bce6adba43] socks connection closed\n2025-07-19 11:26:20.545 [info] [command][b64c4616-5239-4920-9030-8b9852923e41] Socket close event received\n2025-07-19 11:26:20.571 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52297 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:27:20.545 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:27:20.545 [info] [command][597cbc76-9372-4931-8daf-e003eb3580da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""597cbc76-9372-4931-8daf-e003eb3580da""}\n2025-07-19 11:27:20.546 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f291ffb7-5ab3-48ce-8036-e27e49e81f68] received connection request\n2025-07-19 11:27:20.546 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 11:27:20.546 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:27:20.573 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f291ffb7-5ab3-48ce-8036-e27e49e81f68] socks forwarding established\n2025-07-19 11:27:20.613 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f291ffb7-5ab3-48ce-8036-e27e49e81f68] socks connection closed\n2025-07-19 11:27:20.613 [info] [command][597cbc76-9372-4931-8daf-e003eb3580da] Process exited with code 0\n2025-07-19 11:27:20.614 [info] [command][597cbc76-9372-4931-8daf-e003eb3580da] Socket close event received\n2025-07-19 11:27:20.640 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52339 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:28:20.617 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:28:20.619 [info] [command][c108c893-fbbf-40c0-9136-ae153aa29456] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c108c893-fbbf-40c0-9136-ae153aa29456""}\n2025-07-19 11:28:20.619 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6be53603-4096-42dc-8d27-a8c803140480] received connection request\n2025-07-19 11:28:20.620 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:28:20.651 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6be53603-4096-42dc-8d27-a8c803140480] socks forwarding established\n2025-07-19 11:28:20.690 [info] [command][c108c893-fbbf-40c0-9136-ae153aa29456] Process exited with code 0\n2025-07-19 11:28:20.691 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6be53603-4096-42dc-8d27-a8c803140480] socks connection closed\n2025-07-19 11:28:20.691 [info] [command][c108c893-fbbf-40c0-9136-ae153aa29456] Socket close event received\n2025-07-19 11:28:20.718 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52382 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:29:20.694 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:29:20.696 [info] [command][cdf19b2a-94d2-4b16-8219-d6e4197b23ca] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""cdf19b2a-94d2-4b16-8219-d6e4197b23ca""}\n2025-07-19 11:29:20.697 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][dbf0f545-047e-4f79-a67a-12f21e3fab58] received connection request\n2025-07-19 11:29:20.698 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:29:20.726 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][dbf0f545-047e-4f79-a67a-12f21e3fab58] socks forwarding established\n2025-07-19 11:29:20.764 [info] [command][cdf19b2a-94d2-4b16-8219-d6e4197b23ca] Process exited with code 0\n2025-07-19 11:29:20.765 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][dbf0f545-047e-4f79-a67a-12f21e3fab58] socks connection closed\n2025-07-19 11:29:20.765 [info] [command][cdf19b2a-94d2-4b16-8219-d6e4197b23ca] Socket close event received\n2025-07-19 11:29:20.791 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52408 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:30:20.769 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:30:20.772 [info] [command][079f1864-e38f-495c-8a2b-95f9d97eec38] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""079f1864-e38f-495c-8a2b-95f9d97eec38""}\n2025-07-19 11:30:20.772 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][37ece984-7649-4922-b84a-b3638e969e94] received connection request\n2025-07-19 11:30:20.773 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:30:20.802 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][37ece984-7649-4922-b84a-b3638e969e94] socks forwarding established\n2025-07-19 11:30:20.842 [info] [command][079f1864-e38f-495c-8a2b-95f9d97eec38] Process exited with code 0\n2025-07-19 11:30:20.842 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][37ece984-7649-4922-b84a-b3638e969e94] socks connection closed\n2025-07-19 11:30:20.842 [info] [command][079f1864-e38f-495c-8a2b-95f9d97eec38] Socket close event received\n2025-07-19 11:30:20.878 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52466 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:31:20.846 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:31:20.848 [info] [command][8d8807bd-2d33-4a78-a376-cc2fa0df5dac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8d8807bd-2d33-4a78-a376-cc2fa0df5dac""}\n2025-07-19 11:31:20.849 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6955119b-39e9-4ba3-a45c-0f0989c951e7] received connection request\n2025-07-19 11:31:20.849 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:31:20.885 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6955119b-39e9-4ba3-a45c-0f0989c951e7] socks forwarding established\n2025-07-19 11:31:20.926 [info] [command][8d8807bd-2d33-4a78-a376-cc2fa0df5dac] Process exited with code 0\n2025-07-19 11:31:20.926 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6955119b-39e9-4ba3-a45c-0f0989c951e7] socks connection closed\n2025-07-19 11:31:20.926 [info] [command][8d8807bd-2d33-4a78-a376-cc2fa0df5dac] Socket close event received\n2025-07-19 11:31:20.953 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52504 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:32:20.927 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:32:20.930 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f261cf58-65f8-4f26-b4ab-a4d570d19634] received connection request\n2025-07-19 11:32:20.930 [info] [command][03fee56a-f166-49c6-a5b5-c893b8437e25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""03fee56a-f166-49c6-a5b5-c893b8437e25""}\n2025-07-19 11:32:20.931 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:32:21.018 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f261cf58-65f8-4f26-b4ab-a4d570d19634] socks forwarding established\n2025-07-19 11:32:21.090 [info] [command][03fee56a-f166-49c6-a5b5-c893b8437e25] Process exited with code 0\n2025-07-19 11:32:21.090 [info] [command][03fee56a-f166-49c6-a5b5-c893b8437e25] Socket close event received\n2025-07-19 11:32:21.090 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f261cf58-65f8-4f26-b4ab-a4d570d19634] socks connection closed\n2025-07-19 11:32:21.162 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52542 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:33:21.093 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:33:21.095 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][161a1833-4cf7-4dca-902d-0a6ade9df5bb] received connection request\n2025-07-19 11:33:21.096 [info] [command][ccb312c4-f1aa-421d-8b2e-ad678950bd2d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ccb312c4-f1aa-421d-8b2e-ad678950bd2d""}\n2025-07-19 11:33:21.096 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:33:21.123 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][161a1833-4cf7-4dca-902d-0a6ade9df5bb] socks forwarding established\n2025-07-19 11:33:21.164 [info] [command][ccb312c4-f1aa-421d-8b2e-ad678950bd2d] Process exited with code 0\n2025-07-19 11:33:21.164 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][161a1833-4cf7-4dca-902d-0a6ade9df5bb] socks connection closed\n2025-07-19 11:33:21.164 [info] [command][ccb312c4-f1aa-421d-8b2e-ad678950bd2d] Socket close event received\n2025-07-19 11:33:21.191 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52584 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:34:21.169 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:34:21.171 [info] [command][ea5332b6-efe1-4468-94b8-42c4dd429693] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ea5332b6-efe1-4468-94b8-42c4dd429693""}\n2025-07-19 11:34:21.172 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][71056433-6eed-45c9-a3db-5e68e04fd6aa] received connection request\n2025-07-19 11:34:21.172 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:34:21.200 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][71056433-6eed-45c9-a3db-5e68e04fd6aa] socks forwarding established\n2025-07-19 11:34:21.243 [info] [command][ea5332b6-efe1-4468-94b8-42c4dd429693] Process exited with code 0\n2025-07-19 11:34:21.244 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][71056433-6eed-45c9-a3db-5e68e04fd6aa] socks connection closed\n2025-07-19 11:34:21.244 [info] [command][ea5332b6-efe1-4468-94b8-42c4dd429693] Socket close event received\n2025-07-19 11:34:21.270 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52613 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:35:21.244 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:35:21.246 [info] [command][e8d4a9eb-8fb8-4eb7-b471-38d549ac8bc5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e8d4a9eb-8fb8-4eb7-b471-38d549ac8bc5""}\n2025-07-19 11:35:21.247 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][bdf8b104-d3fb-4483-997e-c2a622267aaf] received connection request\n2025-07-19 11:35:21.247 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:35:21.279 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bdf8b104-d3fb-4483-997e-c2a622267aaf] socks forwarding established\n2025-07-19 11:35:21.431 [info] [command][e8d4a9eb-8fb8-4eb7-b471-38d549ac8bc5] Process exited with code 0\n2025-07-19 11:35:21.431 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bdf8b104-d3fb-4483-997e-c2a622267aaf] socks connection closed\n2025-07-19 11:35:21.431 [info] [command][e8d4a9eb-8fb8-4eb7-b471-38d549ac8bc5] Socket close event received\n2025-07-19 11:35:21.542 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52652 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:36:21.436 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:36:21.438 [info] [command][6b1e975d-7416-4691-a0e2-ac32be525075] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""6b1e975d-7416-4691-a0e2-ac32be525075""}\n2025-07-19 11:36:21.438 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][7d4a4185-1e19-44b2-bc4c-2cdaeaf29270] received connection request\n2025-07-19 11:36:21.439 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:36:21.469 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7d4a4185-1e19-44b2-bc4c-2cdaeaf29270] socks forwarding established\n2025-07-19 11:36:21.510 [info] [command][6b1e975d-7416-4691-a0e2-ac32be525075] Process exited with code 0\n2025-07-19 11:36:21.511 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7d4a4185-1e19-44b2-bc4c-2cdaeaf29270] socks connection closed\n2025-07-19 11:36:21.511 [info] [command][6b1e975d-7416-4691-a0e2-ac32be525075] Socket close event received\n2025-07-19 11:36:21.538 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52694 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:37:21.513 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:37:21.515 [info] [command][d50c4600-b4d1-4794-9502-f1a50fc127a9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""d50c4600-b4d1-4794-9502-f1a50fc127a9""}\n2025-07-19 11:37:21.516 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a1498f88-d394-4c88-8b38-2b71f086c69a] received connection request\n2025-07-19 11:37:21.517 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:37:21.547 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a1498f88-d394-4c88-8b38-2b71f086c69a] socks forwarding established\n2025-07-19 11:37:21.588 [info] [command][d50c4600-b4d1-4794-9502-f1a50fc127a9] Process exited with code 0\n2025-07-19 11:37:21.588 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a1498f88-d394-4c88-8b38-2b71f086c69a] socks connection closed\n2025-07-19 11:37:21.588 [info] [command][d50c4600-b4d1-4794-9502-f1a50fc127a9] Socket close event received\n2025-07-19 11:37:21.615 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52719 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:38:21.589 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:38:21.591 [info] [command][3fa4015d-d8e2-4224-b6d3-ca76a7598d1c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3fa4015d-d8e2-4224-b6d3-ca76a7598d1c""}\n2025-07-19 11:38:21.591 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][cf01bc26-0e5a-4f09-ae86-a86a7b0afa24] received connection request\n2025-07-19 11:38:21.592 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:38:21.659 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cf01bc26-0e5a-4f09-ae86-a86a7b0afa24] socks forwarding established\n2025-07-19 11:38:21.813 [info] [command][3fa4015d-d8e2-4224-b6d3-ca76a7598d1c] Process exited with code 0\n2025-07-19 11:38:21.813 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cf01bc26-0e5a-4f09-ae86-a86a7b0afa24] socks connection closed\n2025-07-19 11:38:21.813 [info] [command][3fa4015d-d8e2-4224-b6d3-ca76a7598d1c] Socket close event received\n2025-07-19 11:38:21.842 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52754 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:39:21.816 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:39:21.817 [info] [command][e1e6cb16-687b-4f78-a8bb-5e91617b652b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e1e6cb16-687b-4f78-a8bb-5e91617b652b""}\n2025-07-19 11:39:21.817 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9ae6f16e-8705-4520-bddb-37bc48732c9c] received connection request\n2025-07-19 11:39:21.818 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:39:21.846 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9ae6f16e-8705-4520-bddb-37bc48732c9c] socks forwarding established\n2025-07-19 11:39:21.880 [info] [command][e1e6cb16-687b-4f78-a8bb-5e91617b652b] Process exited with code 0\n2025-07-19 11:39:21.880 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9ae6f16e-8705-4520-bddb-37bc48732c9c] socks connection closed\n2025-07-19 11:39:21.881 [info] [command][e1e6cb16-687b-4f78-a8bb-5e91617b652b] Socket close event received\n2025-07-19 11:39:21.907 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52779 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:40:21.881 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:40:21.882 [info] [command][9e23a249-5221-494a-bfc7-ddbdad6b6323] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""9e23a249-5221-494a-bfc7-ddbdad6b6323""}\n2025-07-19 11:40:21.882 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d6840870-7ddd-4a88-a36f-53ac6993eb35] received connection request\n2025-07-19 11:40:21.883 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:40:21.910 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d6840870-7ddd-4a88-a36f-53ac6993eb35] socks forwarding established\n2025-07-19 11:40:21.951 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d6840870-7ddd-4a88-a36f-53ac6993eb35] socks connection closed\n2025-07-19 11:40:21.951 [info] [command][9e23a249-5221-494a-bfc7-ddbdad6b6323] Process exited with code 0\n2025-07-19 11:40:21.951 [info] [command][9e23a249-5221-494a-bfc7-ddbdad6b6323] Socket close event received\n2025-07-19 11:40:21.978 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52836 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:41:21.955 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:41:21.958 [info] [command][c8f9dad0-2883-4008-9070-e35c71309bd1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c8f9dad0-2883-4008-9070-e35c71309bd1""}\n2025-07-19 11:41:21.958 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][efc5b24d-0455-444a-b316-2272472475c6] received connection request\n2025-07-19 11:41:21.959 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:41:22.013 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][efc5b24d-0455-444a-b316-2272472475c6] socks forwarding established\n2025-07-19 11:41:22.164 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][efc5b24d-0455-444a-b316-2272472475c6] socks connection closed\n2025-07-19 11:41:22.164 [info] [command][c8f9dad0-2883-4008-9070-e35c71309bd1] Process exited with code 0\n2025-07-19 11:41:22.164 [info] [command][c8f9dad0-2883-4008-9070-e35c71309bd1] Socket close event received\n2025-07-19 11:41:22.193 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52870 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:42:22.169 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:42:22.171 [info] [command][e614f9e4-df6a-42c7-a727-7847437792db] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e614f9e4-df6a-42c7-a727-7847437792db""}\n2025-07-19 11:42:22.171 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2d9d906d-ff42-4f42-a54e-6e8ce3505427] received connection request\n2025-07-19 11:42:22.172 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:42:22.202 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2d9d906d-ff42-4f42-a54e-6e8ce3505427] socks forwarding established\n2025-07-19 11:42:22.245 [info] [command][e614f9e4-df6a-42c7-a727-7847437792db] Process exited with code 0\n2025-07-19 11:42:22.246 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2d9d906d-ff42-4f42-a54e-6e8ce3505427] socks connection closed\n2025-07-19 11:42:22.246 [info] [command][e614f9e4-df6a-42c7-a727-7847437792db] Socket close event received\n2025-07-19 11:42:22.272 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52894 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:43:22.251 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:43:22.253 [info] [command][13c0fc95-02cf-45d6-81e1-cc617ff6cc87] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""13c0fc95-02cf-45d6-81e1-cc617ff6cc87""}\n2025-07-19 11:43:22.254 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][c69c97c7-6453-44b8-ab04-39e61353b836] received connection request\n2025-07-19 11:43:22.254 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:43:22.282 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c69c97c7-6453-44b8-ab04-39e61353b836] socks forwarding established\n2025-07-19 11:43:22.322 [info] [command][13c0fc95-02cf-45d6-81e1-cc617ff6cc87] Process exited with code 0\n2025-07-19 11:43:22.322 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c69c97c7-6453-44b8-ab04-39e61353b836] socks connection closed\n2025-07-19 11:43:22.322 [info] [command][13c0fc95-02cf-45d6-81e1-cc617ff6cc87] Socket close event received\n2025-07-19 11:43:22.350 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 52995 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:44:22.323 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:44:22.324 [info] [command][6f337b7f-c215-4edb-9b08-459c28da4c40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""6f337b7f-c215-4edb-9b08-459c28da4c40""}\n2025-07-19 11:44:22.324 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2d177ec4-4099-4765-9897-2a269c0b3fbd] received connection request\n2025-07-19 11:44:22.325 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:44:22.359 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2d177ec4-4099-4765-9897-2a269c0b3fbd] socks forwarding established\n2025-07-19 11:44:22.512 [info] [command][6f337b7f-c215-4edb-9b08-459c28da4c40] Process exited with code 0\n2025-07-19 11:44:22.513 [info] [command][6f337b7f-c215-4edb-9b08-459c28da4c40] Socket close event received\n2025-07-19 11:44:22.513 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2d177ec4-4099-4765-9897-2a269c0b3fbd] socks connection closed\n2025-07-19 11:44:22.541 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53017 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:45:22.518 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:45:22.520 [info] [command][1be05c95-fd84-4d34-9170-f654f520430e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1be05c95-fd84-4d34-9170-f654f520430e""}\n2025-07-19 11:45:22.520 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][8b9377f3-3187-427d-b708-982b2bb6c166] received connection request\n2025-07-19 11:45:22.520 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:45:22.551 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8b9377f3-3187-427d-b708-982b2bb6c166] socks forwarding established\n2025-07-19 11:45:22.594 [info] [command][1be05c95-fd84-4d34-9170-f654f520430e] Process exited with code 0\n2025-07-19 11:45:22.595 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8b9377f3-3187-427d-b708-982b2bb6c166] socks connection closed\n2025-07-19 11:45:22.595 [info] [command][1be05c95-fd84-4d34-9170-f654f520430e] Socket close event received\n2025-07-19 11:45:22.624 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53064 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:46:22.595 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:46:22.597 [info] [command][0f37703b-6c0b-4b66-9da1-08c8c3fa644f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""0f37703b-6c0b-4b66-9da1-08c8c3fa644f""}\n2025-07-19 11:46:22.597 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][c64df7d3-27ae-4a9a-9c4b-a28fd9900a32] received connection request\n2025-07-19 11:46:22.598 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:46:22.631 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c64df7d3-27ae-4a9a-9c4b-a28fd9900a32] socks forwarding established\n2025-07-19 11:46:22.670 [info] [command][0f37703b-6c0b-4b66-9da1-08c8c3fa644f] Process exited with code 0\n2025-07-19 11:46:22.671 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c64df7d3-27ae-4a9a-9c4b-a28fd9900a32] socks connection closed\n2025-07-19 11:46:22.671 [info] [command][0f37703b-6c0b-4b66-9da1-08c8c3fa644f] Socket close event received\n2025-07-19 11:46:22.697 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53119 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:47:22.673 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:47:22.676 [info] [command][8dc2d8c7-f1b0-4b55-86d1-fcdbd1db1ed7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8dc2d8c7-f1b0-4b55-86d1-fcdbd1db1ed7""}\n2025-07-19 11:47:22.676 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f0c10a83-5886-4e3b-b9fa-e5716e574794] received connection request\n2025-07-19 11:47:22.677 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:47:22.704 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f0c10a83-5886-4e3b-b9fa-e5716e574794] socks forwarding established\n2025-07-19 11:47:22.876 [info] [command][8dc2d8c7-f1b0-4b55-86d1-fcdbd1db1ed7] Process exited with code 0\n2025-07-19 11:47:22.876 [info] [command][8dc2d8c7-f1b0-4b55-86d1-fcdbd1db1ed7] Socket close event received\n2025-07-19 11:47:22.876 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f0c10a83-5886-4e3b-b9fa-e5716e574794] socks connection closed\n2025-07-19 11:47:23.017 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53149 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:48:22.879 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:48:22.882 [info] [command][f6cd98b8-5568-41ca-bd27-54987f2f9bfd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f6cd98b8-5568-41ca-bd27-54987f2f9bfd""}\n2025-07-19 11:48:22.882 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5943bb14-2461-4b96-96e2-3f227b25d802] received connection request\n2025-07-19 11:48:22.882 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:48:22.912 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5943bb14-2461-4b96-96e2-3f227b25d802] socks forwarding established\n2025-07-19 11:48:22.953 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5943bb14-2461-4b96-96e2-3f227b25d802] socks connection closed\n2025-07-19 11:48:22.953 [info] [command][f6cd98b8-5568-41ca-bd27-54987f2f9bfd] Process exited with code 0\n2025-07-19 11:48:22.953 [info] [command][f6cd98b8-5568-41ca-bd27-54987f2f9bfd] Socket close event received\n2025-07-19 11:48:22.982 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53183 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:49:22.955 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:49:22.958 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a25eecf4-07b2-4423-b05c-2134d49f0b86] received connection request\n2025-07-19 11:49:22.958 [info] [command][a850d1f8-fb9a-451f-bced-632a4080946d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a850d1f8-fb9a-451f-bced-632a4080946d""}\n2025-07-19 11:49:22.958 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:49:22.986 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a25eecf4-07b2-4423-b05c-2134d49f0b86] socks forwarding established\n2025-07-19 11:49:23.030 [info] [command][a850d1f8-fb9a-451f-bced-632a4080946d] Process exited with code 0\n2025-07-19 11:49:23.031 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a25eecf4-07b2-4423-b05c-2134d49f0b86] socks connection closed\n2025-07-19 11:49:23.031 [info] [command][a850d1f8-fb9a-451f-bced-632a4080946d] Socket close event received\n2025-07-19 11:49:23.057 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53213 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:50:23.036 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:50:23.038 [info] [command][07fc7ed7-1aab-4ff5-87e0-cf958e1a0721] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""07fc7ed7-1aab-4ff5-87e0-cf958e1a0721""}\n2025-07-19 11:50:23.038 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b2af15a3-a90f-4189-a5c4-f5228698941d] received connection request\n2025-07-19 11:50:23.039 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:50:23.183 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b2af15a3-a90f-4189-a5c4-f5228698941d] socks forwarding established\n2025-07-19 11:50:23.308 [info] [command][07fc7ed7-1aab-4ff5-87e0-cf958e1a0721] Process exited with code 0\n2025-07-19 11:50:23.309 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b2af15a3-a90f-4189-a5c4-f5228698941d] socks connection closed\n2025-07-19 11:50:23.309 [info] [command][07fc7ed7-1aab-4ff5-87e0-cf958e1a0721] Socket close event received\n2025-07-19 11:50:23.422 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53251 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:51:23.313 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:51:23.316 [info] [command][2695afbf-4fcd-4a35-8d71-98bf5b8d179d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""2695afbf-4fcd-4a35-8d71-98bf5b8d179d""}\n2025-07-19 11:51:23.316 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f248921f-3cb6-41f8-8c04-b7648379c68f] received connection request\n2025-07-19 11:51:23.316 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:51:23.345 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f248921f-3cb6-41f8-8c04-b7648379c68f] socks forwarding established\n2025-07-19 11:51:23.390 [info] [command][2695afbf-4fcd-4a35-8d71-98bf5b8d179d] Process exited with code 0\n2025-07-19 11:51:23.390 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f248921f-3cb6-41f8-8c04-b7648379c68f] socks connection closed\n2025-07-19 11:51:23.390 [info] [command][2695afbf-4fcd-4a35-8d71-98bf5b8d179d] Socket close event received\n2025-07-19 11:51:23.416 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53290 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:52:23.391 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:52:23.394 [info] [command][32da92ba-e31b-476c-adc1-b85bb247a5e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""32da92ba-e31b-476c-adc1-b85bb247a5e0""}\n2025-07-19 11:52:23.395 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][de7b7c86-6d8e-4f78-9ff3-db76a5a54443] received connection request\n2025-07-19 11:52:23.395 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 11:52:23.395 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:52:23.423 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][de7b7c86-6d8e-4f78-9ff3-db76a5a54443] socks forwarding established\n2025-07-19 11:52:23.464 [info] [command][32da92ba-e31b-476c-adc1-b85bb247a5e0] Process exited with code 0\n2025-07-19 11:52:23.464 [info] [command][32da92ba-e31b-476c-adc1-b85bb247a5e0] Socket close event received\n2025-07-19 11:52:23.465 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][de7b7c86-6d8e-4f78-9ff3-db76a5a54443] socks connection closed\n2025-07-19 11:52:23.493 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53314 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:53:23.465 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:53:23.466 [info] [command][d73cdcde-f627-483c-a1c3-bdc420ba1031] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""d73cdcde-f627-483c-a1c3-bdc420ba1031""}\n2025-07-19 11:53:23.466 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][7da7d9b8-85bb-46e0-891e-0d73bf1098de] received connection request\n2025-07-19 11:53:23.466 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:53:23.528 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7da7d9b8-85bb-46e0-891e-0d73bf1098de] socks forwarding established\n2025-07-19 11:53:23.579 [info] [command][d73cdcde-f627-483c-a1c3-bdc420ba1031] Process exited with code 0\n2025-07-19 11:53:23.579 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7da7d9b8-85bb-46e0-891e-0d73bf1098de] socks connection closed\n2025-07-19 11:53:23.579 [info] [command][d73cdcde-f627-483c-a1c3-bdc420ba1031] Socket close event received\n2025-07-19 11:53:23.607 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53358 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:54:23.584 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:54:23.585 [info] [command][cf071adf-77ea-4b45-a6f1-61b6f79c59e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""cf071adf-77ea-4b45-a6f1-61b6f79c59e5""}\n2025-07-19 11:54:23.585 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][8bbc4be6-5176-4f5f-ac7c-ba2716737bcd] received connection request\n2025-07-19 11:54:23.586 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:54:23.615 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8bbc4be6-5176-4f5f-ac7c-ba2716737bcd] socks forwarding established\n2025-07-19 11:54:23.656 [info] [command][cf071adf-77ea-4b45-a6f1-61b6f79c59e5] Process exited with code 0\n2025-07-19 11:54:23.657 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8bbc4be6-5176-4f5f-ac7c-ba2716737bcd] socks connection closed\n2025-07-19 11:54:23.657 [info] [command][cf071adf-77ea-4b45-a6f1-61b6f79c59e5] Socket close event received\n2025-07-19 11:54:23.685 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53381 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:55:23.658 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:55:23.660 [info] [command][fb104248-f046-4988-885b-573bb7702544] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""fb104248-f046-4988-885b-573bb7702544""}\n2025-07-19 11:55:23.660 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a3c6ed1f-dd35-4545-97a7-140b4c46efa7] received connection request\n2025-07-19 11:55:23.661 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:55:23.689 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a3c6ed1f-dd35-4545-97a7-140b4c46efa7] socks forwarding established\n2025-07-19 11:55:23.730 [info] [command][fb104248-f046-4988-885b-573bb7702544] Process exited with code 0\n2025-07-19 11:55:23.731 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a3c6ed1f-dd35-4545-97a7-140b4c46efa7] socks connection closed\n2025-07-19 11:55:23.731 [info] [command][fb104248-f046-4988-885b-573bb7702544] Socket close event received\n2025-07-19 11:55:23.761 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53459 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:56:23.731 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:56:23.735 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b0df5cab-d9e5-41df-bd09-17709870a75a] received connection request\n2025-07-19 11:56:23.735 [info] [command][4d424dca-b9b3-4e91-8d1e-6e6ef15bf38c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""4d424dca-b9b3-4e91-8d1e-6e6ef15bf38c""}\n2025-07-19 11:56:23.736 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:56:23.795 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b0df5cab-d9e5-41df-bd09-17709870a75a] socks forwarding established\n2025-07-19 11:56:23.848 [info] [command][4d424dca-b9b3-4e91-8d1e-6e6ef15bf38c] Process exited with code 0\n2025-07-19 11:56:23.849 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b0df5cab-d9e5-41df-bd09-17709870a75a] socks connection closed\n2025-07-19 11:56:23.849 [info] [command][4d424dca-b9b3-4e91-8d1e-6e6ef15bf38c] Socket close event received\n2025-07-19 11:56:23.886 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53543 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:57:23.853 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:57:23.854 [info] [command][7ef7c9a0-1473-4ddd-8b64-f2cacfb09eeb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""7ef7c9a0-1473-4ddd-8b64-f2cacfb09eeb""}\n2025-07-19 11:57:23.855 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d5bd8206-089b-4aaf-9a75-e25ae7a693b9] received connection request\n2025-07-19 11:57:23.855 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:57:23.882 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d5bd8206-089b-4aaf-9a75-e25ae7a693b9] socks forwarding established\n2025-07-19 11:57:23.929 [info] [command][7ef7c9a0-1473-4ddd-8b64-f2cacfb09eeb] Process exited with code 0\n2025-07-19 11:57:23.929 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d5bd8206-089b-4aaf-9a75-e25ae7a693b9] socks connection closed\n2025-07-19 11:57:23.929 [info] [command][7ef7c9a0-1473-4ddd-8b64-f2cacfb09eeb] Socket close event received\n2025-07-19 11:57:23.955 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53565 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:58:23.934 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:58:23.936 [info] [command][6a5bb64a-91fc-4c28-a556-d032cc137daf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""6a5bb64a-91fc-4c28-a556-d032cc137daf""}\n2025-07-19 11:58:23.936 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][408916d9-ea4c-4510-ad0f-a33856e85686] received connection request\n2025-07-19 11:58:23.937 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:58:23.966 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][408916d9-ea4c-4510-ad0f-a33856e85686] socks forwarding established\n2025-07-19 11:58:24.005 [info] [command][6a5bb64a-91fc-4c28-a556-d032cc137daf] Process exited with code 0\n2025-07-19 11:58:24.006 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][408916d9-ea4c-4510-ad0f-a33856e85686] socks connection closed\n2025-07-19 11:58:24.006 [info] [command][6a5bb64a-91fc-4c28-a556-d032cc137daf] Socket close event received\n2025-07-19 11:58:24.036 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53598 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 11:59:24.007 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 11:59:24.009 [info] [command][ee62238d-0415-45de-b710-b1f9e2d9e930] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ee62238d-0415-45de-b710-b1f9e2d9e930""}\n2025-07-19 11:59:24.010 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][af78bdca-c603-4c89-a849-87749a38590f] received connection request\n2025-07-19 11:59:24.010 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 11:59:24.038 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][af78bdca-c603-4c89-a849-87749a38590f] socks forwarding established\n2025-07-19 11:59:24.078 [info] [command][ee62238d-0415-45de-b710-b1f9e2d9e930] Process exited with code 0\n2025-07-19 11:59:24.078 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][af78bdca-c603-4c89-a849-87749a38590f] socks connection closed\n2025-07-19 11:59:24.078 [info] [command][ee62238d-0415-45de-b710-b1f9e2d9e930] Socket close event received\n2025-07-19 11:59:24.104 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53633 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:00:24.082 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:00:24.085 [info] [command][f85386c2-9fd1-454c-b253-ac0721694599] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f85386c2-9fd1-454c-b253-ac0721694599""}\n2025-07-19 12:00:24.086 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9e2d966d-032a-468c-a51a-5dc11560aa46] received connection request\n2025-07-19 12:00:24.086 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:00:24.113 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9e2d966d-032a-468c-a51a-5dc11560aa46] socks forwarding established\n2025-07-19 12:00:24.153 [info] [command][f85386c2-9fd1-454c-b253-ac0721694599] Process exited with code 0\n2025-07-19 12:00:24.153 [info] [command][f85386c2-9fd1-454c-b253-ac0721694599] Socket close event received\n2025-07-19 12:00:24.154 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9e2d966d-032a-468c-a51a-5dc11560aa46] socks connection closed\n2025-07-19 12:00:24.180 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53669 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:01:24.156 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:01:24.159 [info] [command][267870a5-af00-4982-83a0-705d6507459c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""267870a5-af00-4982-83a0-705d6507459c""}\n2025-07-19 12:01:24.159 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][891873ba-efd5-4a5d-b652-0b46f7b7226f] received connection request\n2025-07-19 12:01:24.159 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:01:24.190 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][891873ba-efd5-4a5d-b652-0b46f7b7226f] socks forwarding established\n2025-07-19 12:01:24.231 [info] [command][267870a5-af00-4982-83a0-705d6507459c] Process exited with code 0\n2025-07-19 12:01:24.231 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][891873ba-efd5-4a5d-b652-0b46f7b7226f] socks connection closed\n2025-07-19 12:01:24.231 [info] [command][267870a5-af00-4982-83a0-705d6507459c] Socket close event received\n2025-07-19 12:01:24.257 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53702 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:02:24.237 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:02:24.241 [info] [command][dc680bf5-986e-48a2-ad79-67d9301b21e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""dc680bf5-986e-48a2-ad79-67d9301b21e7""}\n2025-07-19 12:02:24.241 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2369f435-add8-4283-b48d-3cb09d5993f3] received connection request\n2025-07-19 12:02:24.242 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:02:24.274 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2369f435-add8-4283-b48d-3cb09d5993f3] socks forwarding established\n2025-07-19 12:02:24.315 [info] [command][dc680bf5-986e-48a2-ad79-67d9301b21e7] Process exited with code 0\n2025-07-19 12:02:24.315 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2369f435-add8-4283-b48d-3cb09d5993f3] socks connection closed\n2025-07-19 12:02:24.315 [info] [command][dc680bf5-986e-48a2-ad79-67d9301b21e7] Socket close event received\n2025-07-19 12:02:24.342 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53731 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:03:24.321 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:03:24.323 [info] [command][c3358dee-c5d4-4745-8772-79baee4e469a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c3358dee-c5d4-4745-8772-79baee4e469a""}\n2025-07-19 12:03:24.324 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f49b1b96-a4a4-4dc5-9aba-424cee86ea2e] received connection request\n2025-07-19 12:03:24.324 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:03:24.449 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f49b1b96-a4a4-4dc5-9aba-424cee86ea2e] socks forwarding established\n2025-07-19 12:03:24.490 [info] [command][c3358dee-c5d4-4745-8772-79baee4e469a] Process exited with code 0\n2025-07-19 12:03:24.490 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f49b1b96-a4a4-4dc5-9aba-424cee86ea2e] socks connection closed\n2025-07-19 12:03:24.490 [info] [command][c3358dee-c5d4-4745-8772-79baee4e469a] Socket close event received\n2025-07-19 12:03:24.516 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53792 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:04:24.494 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:04:24.496 [info] [command][98c1d676-b183-458d-83d6-7c1f63192e17] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""98c1d676-b183-458d-83d6-7c1f63192e17""}\n2025-07-19 12:04:24.496 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9cbddd66-83cf-4fa0-880d-8abc4f4889bb] received connection request\n2025-07-19 12:04:24.496 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:04:24.525 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9cbddd66-83cf-4fa0-880d-8abc4f4889bb] socks forwarding established\n2025-07-19 12:04:24.567 [info] [command][98c1d676-b183-458d-83d6-7c1f63192e17] Process exited with code 0\n2025-07-19 12:04:24.568 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9cbddd66-83cf-4fa0-880d-8abc4f4889bb] socks connection closed\n2025-07-19 12:04:24.568 [info] [command][98c1d676-b183-458d-83d6-7c1f63192e17] Socket close event received\n2025-07-19 12:04:24.604 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53818 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:05:24.568 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:05:24.570 [info] [command][b9e73d38-11fd-41bd-9da9-8dddec45e027] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""b9e73d38-11fd-41bd-9da9-8dddec45e027""}\n2025-07-19 12:05:24.570 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][1964091d-67e2-4098-8bf6-c78e5e5dc592] received connection request\n2025-07-19 12:05:24.570 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:05:24.603 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1964091d-67e2-4098-8bf6-c78e5e5dc592] socks forwarding established\n2025-07-19 12:05:24.645 [info] [command][b9e73d38-11fd-41bd-9da9-8dddec45e027] Process exited with code 0\n2025-07-19 12:05:24.645 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1964091d-67e2-4098-8bf6-c78e5e5dc592] socks connection closed\n2025-07-19 12:05:24.646 [info] [command][b9e73d38-11fd-41bd-9da9-8dddec45e027] Socket close event received\n2025-07-19 12:05:24.672 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53859 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:06:24.651 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:06:24.654 [info] [command][b79fa87c-e3ac-426c-ae74-36f4043045c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""b79fa87c-e3ac-426c-ae74-36f4043045c8""}\n2025-07-19 12:06:24.654 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2feaf2de-f115-43ec-8717-12ba5804ec24] received connection request\n2025-07-19 12:06:24.654 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 12:06:24.654 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:06:24.796 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2feaf2de-f115-43ec-8717-12ba5804ec24] socks forwarding established\n2025-07-19 12:06:24.864 [info] [command][b79fa87c-e3ac-426c-ae74-36f4043045c8] Process exited with code 0\n2025-07-19 12:06:24.865 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2feaf2de-f115-43ec-8717-12ba5804ec24] socks connection closed\n2025-07-19 12:06:24.865 [info] [command][b79fa87c-e3ac-426c-ae74-36f4043045c8] Socket close event received\n2025-07-19 12:06:24.975 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53898 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:07:24.866 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:07:24.868 [info] [command][41ffe873-385f-4928-a383-91446b3f4c8a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""41ffe873-385f-4928-a383-91446b3f4c8a""}\n2025-07-19 12:07:24.870 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][043b20e1-0a5a-450b-8ebb-f7d48e29c6a7] received connection request\n2025-07-19 12:07:24.870 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:07:24.897 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][043b20e1-0a5a-450b-8ebb-f7d48e29c6a7] socks forwarding established\n2025-07-19 12:07:24.939 [info] [command][41ffe873-385f-4928-a383-91446b3f4c8a] Process exited with code 0\n2025-07-19 12:07:24.939 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][043b20e1-0a5a-450b-8ebb-f7d48e29c6a7] socks connection closed\n2025-07-19 12:07:24.939 [info] [command][41ffe873-385f-4928-a383-91446b3f4c8a] Socket close event received\n2025-07-19 12:07:24.966 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53920 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:08:24.944 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:08:24.947 [info] [command][a10e8561-2e98-4bdc-ba0f-b362baaa0188] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a10e8561-2e98-4bdc-ba0f-b362baaa0188""}\n2025-07-19 12:08:24.947 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][0f70c240-da8f-47fd-88b4-086e60dbb22a] received connection request\n2025-07-19 12:08:24.948 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:08:24.975 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0f70c240-da8f-47fd-88b4-086e60dbb22a] socks forwarding established\n2025-07-19 12:08:25.020 [info] [command][a10e8561-2e98-4bdc-ba0f-b362baaa0188] Process exited with code 0\n2025-07-19 12:08:25.020 [info] [command][a10e8561-2e98-4bdc-ba0f-b362baaa0188] Socket close event received\n2025-07-19 12:08:25.021 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0f70c240-da8f-47fd-88b4-086e60dbb22a] socks connection closed\n2025-07-19 12:08:25.051 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 53962 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:09:25.024 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:09:25.026 [info] [command][06185810-98ca-4aea-bad5-51a0fdd77106] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""06185810-98ca-4aea-bad5-51a0fdd77106""}\n2025-07-19 12:09:25.027 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5039d145-b322-4607-8183-4d040478d47c] received connection request\n2025-07-19 12:09:25.027 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:09:25.056 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5039d145-b322-4607-8183-4d040478d47c] socks forwarding established\n2025-07-19 12:09:25.100 [info] [command][06185810-98ca-4aea-bad5-51a0fdd77106] Process exited with code 0\n2025-07-19 12:09:25.100 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5039d145-b322-4607-8183-4d040478d47c] socks connection closed\n2025-07-19 12:09:25.100 [info] [command][06185810-98ca-4aea-bad5-51a0fdd77106] Socket close event received\n2025-07-19 12:09:25.127 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54003 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:10:25.102 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:10:25.104 [info] [command][a833bcd9-c249-44b8-acf5-df14f781d021] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a833bcd9-c249-44b8-acf5-df14f781d021""}\n2025-07-19 12:10:25.104 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][790729a8-660a-4f5d-867b-42944634b24a] received connection request\n2025-07-19 12:10:25.105 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:10:25.134 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][790729a8-660a-4f5d-867b-42944634b24a] socks forwarding established\n2025-07-19 12:10:25.175 [info] [command][a833bcd9-c249-44b8-acf5-df14f781d021] Process exited with code 0\n2025-07-19 12:10:25.175 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][790729a8-660a-4f5d-867b-42944634b24a] socks connection closed\n2025-07-19 12:10:25.175 [info] [command][a833bcd9-c249-44b8-acf5-df14f781d021] Socket close event received\n2025-07-19 12:10:25.203 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54045 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:11:25.175 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:11:25.177 [info] [command][566278fc-1704-491f-b487-3d22ddeca7c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""566278fc-1704-491f-b487-3d22ddeca7c1""}\n2025-07-19 12:11:25.178 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][0cb77b2a-6818-4c77-926a-ab24a75b7986] received connection request\n2025-07-19 12:11:25.178 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:11:25.208 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0cb77b2a-6818-4c77-926a-ab24a75b7986] socks forwarding established\n2025-07-19 12:11:25.251 [info] [command][566278fc-1704-491f-b487-3d22ddeca7c1] Process exited with code 0\n2025-07-19 12:11:25.251 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0cb77b2a-6818-4c77-926a-ab24a75b7986] socks connection closed\n2025-07-19 12:11:25.251 [info] [command][566278fc-1704-491f-b487-3d22ddeca7c1] Socket close event received\n2025-07-19 12:11:25.277 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54081 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:12:25.255 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:12:25.258 [info] [command][01e53dce-e55e-417a-84e5-3dd38cfc63ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""01e53dce-e55e-417a-84e5-3dd38cfc63ce""}\n2025-07-19 12:12:25.259 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][0a8f55ba-0cd8-4e6e-95b5-589f9406283e] received connection request\n2025-07-19 12:12:25.260 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:12:25.288 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0a8f55ba-0cd8-4e6e-95b5-589f9406283e] socks forwarding established\n2025-07-19 12:12:25.333 [info] [command][01e53dce-e55e-417a-84e5-3dd38cfc63ce] Process exited with code 0\n2025-07-19 12:12:25.333 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][0a8f55ba-0cd8-4e6e-95b5-589f9406283e] socks connection closed\n2025-07-19 12:12:25.334 [info] [command][01e53dce-e55e-417a-84e5-3dd38cfc63ce] Socket close event received\n2025-07-19 12:12:25.360 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54117 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:13:25.335 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:13:25.336 [info] [command][3910d37a-6604-4ceb-9b40-5c96bed09796] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3910d37a-6604-4ceb-9b40-5c96bed09796""}\n2025-07-19 12:13:25.337 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][dfef1809-e87f-4584-862a-24ac61ba4cba] received connection request\n2025-07-19 12:13:25.337 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 12:13:25.337 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:13:25.364 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][dfef1809-e87f-4584-862a-24ac61ba4cba] socks forwarding established\n2025-07-19 12:13:25.406 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][dfef1809-e87f-4584-862a-24ac61ba4cba] socks connection closed\n2025-07-19 12:13:25.406 [info] [command][3910d37a-6604-4ceb-9b40-5c96bed09796] Process exited with code 0\n2025-07-19 12:13:25.406 [info] [command][3910d37a-6604-4ceb-9b40-5c96bed09796] Socket close event received\n2025-07-19 12:13:25.432 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54155 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:14:25.408 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:14:25.409 [info] [command][a069e1e3-2e2c-4233-9eb9-19e348693571] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a069e1e3-2e2c-4233-9eb9-19e348693571""}\n2025-07-19 12:14:25.410 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][bd196925-9965-4061-b828-cc342f4b8266] received connection request\n2025-07-19 12:14:25.410 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:14:25.443 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bd196925-9965-4061-b828-cc342f4b8266] socks forwarding established\n2025-07-19 12:14:25.490 [info] [command][a069e1e3-2e2c-4233-9eb9-19e348693571] Process exited with code 0\n2025-07-19 12:14:25.490 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bd196925-9965-4061-b828-cc342f4b8266] socks connection closed\n2025-07-19 12:14:25.490 [info] [command][a069e1e3-2e2c-4233-9eb9-19e348693571] Socket close event received\n2025-07-19 12:14:25.517 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54196 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:15:25.491 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:15:25.495 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][df076044-ae57-403c-9906-0f4759a10a45] received connection request\n2025-07-19 12:15:25.495 [info] [command][a157aa4a-2907-4136-b238-d37d5e50eb3c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a157aa4a-2907-4136-b238-d37d5e50eb3c""}\n2025-07-19 12:15:25.497 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:15:25.528 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][df076044-ae57-403c-9906-0f4759a10a45] socks forwarding established\n2025-07-19 12:15:25.569 [info] [command][a157aa4a-2907-4136-b238-d37d5e50eb3c] Process exited with code 0\n2025-07-19 12:15:25.569 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][df076044-ae57-403c-9906-0f4759a10a45] socks connection closed\n2025-07-19 12:15:25.569 [info] [command][a157aa4a-2907-4136-b238-d37d5e50eb3c] Socket close event received\n2025-07-19 12:15:25.598 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54235 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:16:25.570 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:16:25.572 [info] [command][6c298594-eee8-4f33-a2ac-8b748bf10043] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""6c298594-eee8-4f33-a2ac-8b748bf10043""}\n2025-07-19 12:16:25.573 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][589a7fd2-28d9-40d7-80cc-7114df4ce919] received connection request\n2025-07-19 12:16:25.574 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:16:25.647 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][589a7fd2-28d9-40d7-80cc-7114df4ce919] socks forwarding established\n2025-07-19 12:16:25.769 [info] [command][6c298594-eee8-4f33-a2ac-8b748bf10043] Process exited with code 0\n2025-07-19 12:16:25.769 [info] [command][6c298594-eee8-4f33-a2ac-8b748bf10043] Socket close event received\n2025-07-19 12:16:25.853 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][589a7fd2-28d9-40d7-80cc-7114df4ce919] socks connection closed\n2025-07-19 12:16:25.880 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54288 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:17:25.769 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:17:25.772 [info] [command][385455c3-640d-49ec-a3a0-03f2246e3dd7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""385455c3-640d-49ec-a3a0-03f2246e3dd7""}\n2025-07-19 12:17:25.773 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][df5e1494-54b5-439a-9d6a-597caf7b37d7] received connection request\n2025-07-19 12:17:25.773 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:17:25.802 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][df5e1494-54b5-439a-9d6a-597caf7b37d7] socks forwarding established\n2025-07-19 12:17:25.843 [info] [command][385455c3-640d-49ec-a3a0-03f2246e3dd7] Process exited with code 0\n2025-07-19 12:17:25.843 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][df5e1494-54b5-439a-9d6a-597caf7b37d7] socks connection closed\n2025-07-19 12:17:25.843 [info] [command][385455c3-640d-49ec-a3a0-03f2246e3dd7] Socket close event received\n2025-07-19 12:17:25.870 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54318 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:18:25.849 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:18:25.850 [info] [command][cfb86315-aa48-4575-8f21-ec5b1656d29a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""cfb86315-aa48-4575-8f21-ec5b1656d29a""}\n2025-07-19 12:18:25.851 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][8d07d75a-ea4d-4131-8da7-8417cb3223de] received connection request\n2025-07-19 12:18:25.851 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:18:25.879 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8d07d75a-ea4d-4131-8da7-8417cb3223de] socks forwarding established\n2025-07-19 12:18:25.921 [info] [command][cfb86315-aa48-4575-8f21-ec5b1656d29a] Process exited with code 0\n2025-07-19 12:18:25.921 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8d07d75a-ea4d-4131-8da7-8417cb3223de] socks connection closed\n2025-07-19 12:18:25.921 [info] [command][cfb86315-aa48-4575-8f21-ec5b1656d29a] Socket close event received\n2025-07-19 12:18:25.947 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54358 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:19:25.923 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:19:25.926 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][3069a8d5-cc30-4a43-b270-ff8c525cf93c] received connection request\n2025-07-19 12:19:25.926 [info] [command][52febaf2-94ed-4baf-b2d6-57a679144818] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""52febaf2-94ed-4baf-b2d6-57a679144818""}\n2025-07-19 12:19:25.926 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:19:26.078 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3069a8d5-cc30-4a43-b270-ff8c525cf93c] socks forwarding established\n2025-07-19 12:19:26.119 [info] [command][52febaf2-94ed-4baf-b2d6-57a679144818] Process exited with code 0\n2025-07-19 12:19:26.119 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3069a8d5-cc30-4a43-b270-ff8c525cf93c] socks connection closed\n2025-07-19 12:19:26.119 [info] [command][52febaf2-94ed-4baf-b2d6-57a679144818] Socket close event received\n2025-07-19 12:19:26.280 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54386 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:20:26.125 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:20:26.126 [info] [command][b9c8e51c-63d5-4c5e-83fd-ab97a53d49fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""b9c8e51c-63d5-4c5e-83fd-ab97a53d49fd""}\n2025-07-19 12:20:26.126 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][324322a5-c9bc-43c3-afa4-168be4b4a438] received connection request\n2025-07-19 12:20:26.127 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 12:20:26.127 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:20:26.158 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][324322a5-c9bc-43c3-afa4-168be4b4a438] socks forwarding established\n2025-07-19 12:20:26.198 [info] [command][b9c8e51c-63d5-4c5e-83fd-ab97a53d49fd] Process exited with code 0\n2025-07-19 12:20:26.198 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][324322a5-c9bc-43c3-afa4-168be4b4a438] socks connection closed\n2025-07-19 12:20:26.198 [info] [command][b9c8e51c-63d5-4c5e-83fd-ab97a53d49fd] Socket close event received\n2025-07-19 12:20:26.226 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54434 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:21:26.200 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:21:26.203 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][3af2d3ba-7130-459c-8fa6-aa5d72181515] received connection request\n2025-07-19 12:21:26.203 [info] [command][4adda5f9-2ce6-4ae1-894b-3d2816448bf1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""4adda5f9-2ce6-4ae1-894b-3d2816448bf1""}\n2025-07-19 12:21:26.203 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:21:26.238 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3af2d3ba-7130-459c-8fa6-aa5d72181515] socks forwarding established\n2025-07-19 12:21:26.279 [info] [command][4adda5f9-2ce6-4ae1-894b-3d2816448bf1] Process exited with code 0\n2025-07-19 12:21:26.279 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3af2d3ba-7130-459c-8fa6-aa5d72181515] socks connection closed\n2025-07-19 12:21:26.279 [info] [command][4adda5f9-2ce6-4ae1-894b-3d2816448bf1] Socket close event received\n2025-07-19 12:21:26.307 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54471 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:22:26.283 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:22:26.285 [info] [command][15d71baf-aa57-4d3c-9d26-c657ec7e2147] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""15d71baf-aa57-4d3c-9d26-c657ec7e2147""}\n2025-07-19 12:22:26.286 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][04a2d36f-a9ae-4707-a8b5-49d31174667f] received connection request\n2025-07-19 12:22:26.286 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:22:26.437 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][04a2d36f-a9ae-4707-a8b5-49d31174667f] socks forwarding established\n2025-07-19 12:22:26.551 [info] [command][15d71baf-aa57-4d3c-9d26-c657ec7e2147] Process exited with code 0\n2025-07-19 12:22:26.551 [info] [command][15d71baf-aa57-4d3c-9d26-c657ec7e2147] Socket close event received\n2025-07-19 12:22:26.581 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54492 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:22:26.582 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][04a2d36f-a9ae-4707-a8b5-49d31174667f] socks connection closed\n2025-07-19 12:23:26.557 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:23:26.559 [info] [command][91acca25-353b-430d-a3c2-ff94eab3be1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""91acca25-353b-430d-a3c2-ff94eab3be1e""}\n2025-07-19 12:23:26.560 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][35514a62-1234-424c-a99e-cb45c1480b92] received connection request\n2025-07-19 12:23:26.560 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:23:26.596 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][35514a62-1234-424c-a99e-cb45c1480b92] socks forwarding established\n2025-07-19 12:23:26.638 [info] [command][91acca25-353b-430d-a3c2-ff94eab3be1e] Process exited with code 0\n2025-07-19 12:23:26.638 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][35514a62-1234-424c-a99e-cb45c1480b92] socks connection closed\n2025-07-19 12:23:26.638 [info] [command][91acca25-353b-430d-a3c2-ff94eab3be1e] Socket close event received\n2025-07-19 12:23:26.670 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54546 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:24:26.641 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:24:26.643 [info] [command][4d3e27f2-6aeb-414c-af32-555be5d625b1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""4d3e27f2-6aeb-414c-af32-555be5d625b1""}\n2025-07-19 12:24:26.643 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][75571985-72b2-4ebb-96b6-fbf0a7de51f9] received connection request\n2025-07-19 12:24:26.643 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:24:26.678 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][75571985-72b2-4ebb-96b6-fbf0a7de51f9] socks forwarding established\n2025-07-19 12:24:26.723 [info] [command][4d3e27f2-6aeb-414c-af32-555be5d625b1] Process exited with code 0\n2025-07-19 12:24:26.723 [info] [command][4d3e27f2-6aeb-414c-af32-555be5d625b1] Socket close event received\n2025-07-19 12:24:26.757 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][75571985-72b2-4ebb-96b6-fbf0a7de51f9] socks connection closed\n2025-07-19 12:24:26.758 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54579 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:25:26.729 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:25:26.731 [info] [command][0185da0b-fcbf-41ca-9b60-502a217aa02c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""0185da0b-fcbf-41ca-9b60-502a217aa02c""}\n2025-07-19 12:25:26.732 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][80a46941-3e13-4ffb-8c2b-ebb9d764762d] received connection request\n2025-07-19 12:25:26.732 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:25:26.852 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][80a46941-3e13-4ffb-8c2b-ebb9d764762d] socks forwarding established\n2025-07-19 12:25:27.007 [info] [command][0185da0b-fcbf-41ca-9b60-502a217aa02c] Process exited with code 0\n2025-07-19 12:25:27.007 [info] [command][0185da0b-fcbf-41ca-9b60-502a217aa02c] Socket close event received\n2025-07-19 12:25:27.038 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54626 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:25:27.039 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][80a46941-3e13-4ffb-8c2b-ebb9d764762d] socks connection closed\n2025-07-19 12:26:27.012 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:26:27.015 [info] [command][ec9e422f-c76d-422d-9661-888d349d4b1a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ec9e422f-c76d-422d-9661-888d349d4b1a""}\n2025-07-19 12:26:27.016 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2d3e675d-434d-4100-8396-d4fbbd9bee78] received connection request\n2025-07-19 12:26:27.016 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:26:27.054 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2d3e675d-434d-4100-8396-d4fbbd9bee78] socks forwarding established\n2025-07-19 12:26:27.104 [info] [command][ec9e422f-c76d-422d-9661-888d349d4b1a] Process exited with code 0\n2025-07-19 12:26:27.104 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2d3e675d-434d-4100-8396-d4fbbd9bee78] socks connection closed\n2025-07-19 12:26:27.104 [info] [command][ec9e422f-c76d-422d-9661-888d349d4b1a] Socket close event received\n2025-07-19 12:26:27.140 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54667 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:27:27.109 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:27:27.111 [info] [command][ffcac875-d932-4782-844b-9dcd469c61df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ffcac875-d932-4782-844b-9dcd469c61df""}\n2025-07-19 12:27:27.112 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b9eb4bfb-f0d8-44ee-96c8-79f0daed4f6e] received connection request\n2025-07-19 12:27:27.112 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:27:27.144 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b9eb4bfb-f0d8-44ee-96c8-79f0daed4f6e] socks forwarding established\n2025-07-19 12:27:27.188 [info] [command][ffcac875-d932-4782-844b-9dcd469c61df] Process exited with code 0\n2025-07-19 12:27:27.188 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b9eb4bfb-f0d8-44ee-96c8-79f0daed4f6e] socks connection closed\n2025-07-19 12:27:27.188 [info] [command][ffcac875-d932-4782-844b-9dcd469c61df] Socket close event received\n2025-07-19 12:27:27.221 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54693 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:28:27.191 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:28:27.194 [info] [command][da8d2cef-dc82-4fe0-b270-bacde491cc1e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""da8d2cef-dc82-4fe0-b270-bacde491cc1e""}\n2025-07-19 12:28:27.195 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b80d6771-7bea-4916-85d7-90ce9596c77f] received connection request\n2025-07-19 12:28:27.195 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:28:27.353 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b80d6771-7bea-4916-85d7-90ce9596c77f] socks forwarding established\n2025-07-19 12:28:27.540 [info] [command][da8d2cef-dc82-4fe0-b270-bacde491cc1e] Process exited with code 0\n2025-07-19 12:28:27.540 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b80d6771-7bea-4916-85d7-90ce9596c77f] socks connection closed\n2025-07-19 12:28:27.540 [info] [command][da8d2cef-dc82-4fe0-b270-bacde491cc1e] Socket close event received\n2025-07-19 12:28:27.706 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54736 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:29:27.541 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:29:27.542 [info] [command][ef64bf04-9276-48fc-a46e-1e961872d09c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ef64bf04-9276-48fc-a46e-1e961872d09c""}\n2025-07-19 12:29:27.542 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5f719edc-bce5-4841-990c-e293e030a77b] received connection request\n2025-07-19 12:29:27.542 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:29:27.572 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5f719edc-bce5-4841-990c-e293e030a77b] socks forwarding established\n2025-07-19 12:29:27.616 [info] [command][ef64bf04-9276-48fc-a46e-1e961872d09c] Process exited with code 0\n2025-07-19 12:29:27.616 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5f719edc-bce5-4841-990c-e293e030a77b] socks connection closed\n2025-07-19 12:29:27.616 [info] [command][ef64bf04-9276-48fc-a46e-1e961872d09c] Socket close event received\n2025-07-19 12:29:27.648 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54761 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:30:27.617 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:30:27.620 [info] [command][29f37218-1aa4-49b3-910d-e29aa2b87754] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""29f37218-1aa4-49b3-910d-e29aa2b87754""}\n2025-07-19 12:30:27.620 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a6f31e8d-4363-445e-bea3-55a7d5698158] received connection request\n2025-07-19 12:30:27.621 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:30:27.652 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a6f31e8d-4363-445e-bea3-55a7d5698158] socks forwarding established\n2025-07-19 12:30:27.694 [info] [command][29f37218-1aa4-49b3-910d-e29aa2b87754] Process exited with code 0\n2025-07-19 12:30:27.694 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a6f31e8d-4363-445e-bea3-55a7d5698158] socks connection closed\n2025-07-19 12:30:27.694 [info] [command][29f37218-1aa4-49b3-910d-e29aa2b87754] Socket close event received\n2025-07-19 12:30:27.725 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54802 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:31:27.700 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:31:27.703 [info] [command][ae056b16-6abd-4843-b538-e356aae173c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ae056b16-6abd-4843-b538-e356aae173c2""}\n2025-07-19 12:31:27.704 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][6a0a39ca-0bb4-49c8-9fae-b0fdd60ca600] received connection request\n2025-07-19 12:31:27.704 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:31:27.733 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6a0a39ca-0bb4-49c8-9fae-b0fdd60ca600] socks forwarding established\n2025-07-19 12:31:27.885 [info] [command][ae056b16-6abd-4843-b538-e356aae173c2] Process exited with code 0\n2025-07-19 12:31:27.886 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][6a0a39ca-0bb4-49c8-9fae-b0fdd60ca600] socks connection closed\n2025-07-19 12:31:27.886 [info] [command][ae056b16-6abd-4843-b538-e356aae173c2] Socket close event received\n2025-07-19 12:31:27.916 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54847 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:32:27.889 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:32:27.891 [info] [command][23ed8816-3c30-40bf-b6c2-093aaf5bb794] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""23ed8816-3c30-40bf-b6c2-093aaf5bb794""}\n2025-07-19 12:32:27.891 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f9eb23ff-808a-4b29-9e56-d3aa4109987e] received connection request\n2025-07-19 12:32:27.892 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:32:27.921 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f9eb23ff-808a-4b29-9e56-d3aa4109987e] socks forwarding established\n2025-07-19 12:32:27.969 [info] [command][23ed8816-3c30-40bf-b6c2-093aaf5bb794] Process exited with code 0\n2025-07-19 12:32:27.969 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f9eb23ff-808a-4b29-9e56-d3aa4109987e] socks connection closed\n2025-07-19 12:32:27.970 [info] [command][23ed8816-3c30-40bf-b6c2-093aaf5bb794] Socket close event received\n2025-07-19 12:32:27.996 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54883 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:33:27.975 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:33:27.976 [info] [command][be61a5ef-4bbe-4152-a6d8-8751e38182f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""be61a5ef-4bbe-4152-a6d8-8751e38182f2""}\n2025-07-19 12:33:27.976 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][cbbe9a63-cb95-4287-939d-e25e70817b9b] received connection request\n2025-07-19 12:33:27.977 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:33:28.006 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cbbe9a63-cb95-4287-939d-e25e70817b9b] socks forwarding established\n2025-07-19 12:33:28.050 [info] [command][be61a5ef-4bbe-4152-a6d8-8751e38182f2] Process exited with code 0\n2025-07-19 12:33:28.050 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cbbe9a63-cb95-4287-939d-e25e70817b9b] socks connection closed\n2025-07-19 12:33:28.050 [info] [command][be61a5ef-4bbe-4152-a6d8-8751e38182f2] Socket close event received\n2025-07-19 12:33:28.078 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54922 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:34:28.051 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:34:28.053 [info] [command][a81e765f-a01a-4d19-ba18-2e03e8573f8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a81e765f-a01a-4d19-ba18-2e03e8573f8f""}\n2025-07-19 12:34:28.054 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][dd3fb149-5604-4acb-8118-aaf61cf4230f] received connection request\n2025-07-19 12:34:28.054 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:34:28.128 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][dd3fb149-5604-4acb-8118-aaf61cf4230f] socks forwarding established\n2025-07-19 12:34:28.286 [info] [command][a81e765f-a01a-4d19-ba18-2e03e8573f8f] Process exited with code 0\n2025-07-19 12:34:28.286 [info] [command][a81e765f-a01a-4d19-ba18-2e03e8573f8f] Socket close event received\n2025-07-19 12:34:28.288 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][dd3fb149-5604-4acb-8118-aaf61cf4230f] socks connection closed\n2025-07-19 12:34:28.443 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54946 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:35:28.292 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:35:28.295 [info] [command][a3aaee41-0859-4130-89c9-5d577bc57b79] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a3aaee41-0859-4130-89c9-5d577bc57b79""}\n2025-07-19 12:35:28.296 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][bd81fab3-14aa-4c04-837d-326e84327bc3] received connection request\n2025-07-19 12:35:28.296 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:35:28.327 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bd81fab3-14aa-4c04-837d-326e84327bc3] socks forwarding established\n2025-07-19 12:35:28.369 [info] [command][a3aaee41-0859-4130-89c9-5d577bc57b79] Process exited with code 0\n2025-07-19 12:35:28.369 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bd81fab3-14aa-4c04-837d-326e84327bc3] socks connection closed\n2025-07-19 12:35:28.369 [info] [command][a3aaee41-0859-4130-89c9-5d577bc57b79] Socket close event received\n2025-07-19 12:35:28.395 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 54979 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:36:28.369 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:36:28.370 [info] [command][ce43d449-da45-49a8-be3f-32e18e44bfae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ce43d449-da45-49a8-be3f-32e18e44bfae""}\n2025-07-19 12:36:28.371 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][35fa33d6-9be2-4943-86ca-8cbc206abc05] received connection request\n2025-07-19 12:36:28.371 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:36:28.398 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][35fa33d6-9be2-4943-86ca-8cbc206abc05] socks forwarding established\n2025-07-19 12:36:28.437 [info] [command][ce43d449-da45-49a8-be3f-32e18e44bfae] Process exited with code 0\n2025-07-19 12:36:28.437 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][35fa33d6-9be2-4943-86ca-8cbc206abc05] socks connection closed\n2025-07-19 12:36:28.437 [info] [command][ce43d449-da45-49a8-be3f-32e18e44bfae] Socket close event received\n2025-07-19 12:36:28.465 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55032 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:37:28.442 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:37:28.446 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][277ab0a9-3c6a-4b6c-97ce-f4534d257aaf] received connection request\n2025-07-19 12:37:28.447 [info] [command][570e5c7b-e04d-4a78-ad1a-f71538bd3ebc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""570e5c7b-e04d-4a78-ad1a-f71538bd3ebc""}\n2025-07-19 12:37:28.447 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:37:28.531 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][277ab0a9-3c6a-4b6c-97ce-f4534d257aaf] socks forwarding established\n2025-07-19 12:37:28.704 [info] [command][570e5c7b-e04d-4a78-ad1a-f71538bd3ebc] Process exited with code 0\n2025-07-19 12:37:28.704 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][277ab0a9-3c6a-4b6c-97ce-f4534d257aaf] socks connection closed\n2025-07-19 12:37:28.704 [info] [command][570e5c7b-e04d-4a78-ad1a-f71538bd3ebc] Socket close event received\n2025-07-19 12:37:28.730 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55059 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:38:28.705 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:38:28.708 [info] [command][e4aae6ef-1318-4e60-9db9-260477a974a6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e4aae6ef-1318-4e60-9db9-260477a974a6""}\n2025-07-19 12:38:28.708 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][04da628d-b6b5-4953-9e85-4426ce677cc1] received connection request\n2025-07-19 12:38:28.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:38:28.741 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][04da628d-b6b5-4953-9e85-4426ce677cc1] socks forwarding established\n2025-07-19 12:38:28.782 [info] [command][e4aae6ef-1318-4e60-9db9-260477a974a6] Process exited with code 0\n2025-07-19 12:38:28.782 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][04da628d-b6b5-4953-9e85-4426ce677cc1] socks connection closed\n2025-07-19 12:38:28.782 [info] [command][e4aae6ef-1318-4e60-9db9-260477a974a6] Socket close event received\n2025-07-19 12:38:28.810 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55094 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:39:28.785 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:39:28.786 [info] [command][8cf0fefd-9bda-4a2a-9f32-5f0a9f2399e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8cf0fefd-9bda-4a2a-9f32-5f0a9f2399e4""}\n2025-07-19 12:39:28.786 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][197b03c2-95de-408f-9041-bca193aa7566] received connection request\n2025-07-19 12:39:28.786 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:39:28.818 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][197b03c2-95de-408f-9041-bca193aa7566] socks forwarding established\n2025-07-19 12:39:28.857 [info] [command][8cf0fefd-9bda-4a2a-9f32-5f0a9f2399e4] Process exited with code 0\n2025-07-19 12:39:28.858 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][197b03c2-95de-408f-9041-bca193aa7566] socks connection closed\n2025-07-19 12:39:28.858 [info] [command][8cf0fefd-9bda-4a2a-9f32-5f0a9f2399e4] Socket close event received\n2025-07-19 12:39:28.889 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55130 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:40:28.862 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:40:28.864 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][78fd9b89-60b2-4780-8d0a-d8646be0959f] received connection request\n2025-07-19 12:40:28.864 [info] [command][19033772-73e3-45a2-81ca-54bcc8a5772e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""19033772-73e3-45a2-81ca-54bcc8a5772e""}\n2025-07-19 12:40:28.864 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:40:28.897 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][78fd9b89-60b2-4780-8d0a-d8646be0959f] socks forwarding established\n2025-07-19 12:40:28.936 [info] [command][19033772-73e3-45a2-81ca-54bcc8a5772e] Process exited with code 0\n2025-07-19 12:40:28.936 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][78fd9b89-60b2-4780-8d0a-d8646be0959f] socks connection closed\n2025-07-19 12:40:28.936 [info] [command][19033772-73e3-45a2-81ca-54bcc8a5772e] Socket close event received\n2025-07-19 12:40:28.962 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55186 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:41:28.941 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:41:28.944 [info] [command][bbacf820-3e9e-4b8d-88c6-3a8b0c850acf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""bbacf820-3e9e-4b8d-88c6-3a8b0c850acf""}\n2025-07-19 12:41:28.944 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9f34dff7-6f03-4ebb-8d4b-c1497d9cadb1] received connection request\n2025-07-19 12:41:28.945 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:41:29.060 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9f34dff7-6f03-4ebb-8d4b-c1497d9cadb1] socks forwarding established\n2025-07-19 12:41:29.218 [info] [command][bbacf820-3e9e-4b8d-88c6-3a8b0c850acf] Process exited with code 0\n2025-07-19 12:41:29.218 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9f34dff7-6f03-4ebb-8d4b-c1497d9cadb1] socks connection closed\n2025-07-19 12:41:29.218 [info] [command][bbacf820-3e9e-4b8d-88c6-3a8b0c850acf] Socket close event received\n2025-07-19 12:41:29.332 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55244 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:42:29.220 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:42:29.224 [info] [command][2289863e-d71e-4961-8fd5-4f03d0095ebe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""2289863e-d71e-4961-8fd5-4f03d0095ebe""}\n2025-07-19 12:42:29.225 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][37393356-9b70-40e0-9b86-268882a3aa4f] received connection request\n2025-07-19 12:42:29.225 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:42:29.252 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][37393356-9b70-40e0-9b86-268882a3aa4f] socks forwarding established\n2025-07-19 12:42:29.292 [info] [command][2289863e-d71e-4961-8fd5-4f03d0095ebe] Process exited with code 0\n2025-07-19 12:42:29.293 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][37393356-9b70-40e0-9b86-268882a3aa4f] socks connection closed\n2025-07-19 12:42:29.293 [info] [command][2289863e-d71e-4961-8fd5-4f03d0095ebe] Socket close event received\n2025-07-19 12:42:29.321 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55277 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:43:29.298 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:43:29.300 [info] [command][4b48cebc-aa95-4e44-bf36-fe9fdaf61ecc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""4b48cebc-aa95-4e44-bf36-fe9fdaf61ecc""}\n2025-07-19 12:43:29.300 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][c593f128-299e-445a-8214-d7d114e68b1e] received connection request\n2025-07-19 12:43:29.301 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:43:29.330 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c593f128-299e-445a-8214-d7d114e68b1e] socks forwarding established\n2025-07-19 12:43:29.374 [info] [command][4b48cebc-aa95-4e44-bf36-fe9fdaf61ecc] Process exited with code 0\n2025-07-19 12:43:29.375 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c593f128-299e-445a-8214-d7d114e68b1e] socks connection closed\n2025-07-19 12:43:29.375 [info] [command][4b48cebc-aa95-4e44-bf36-fe9fdaf61ecc] Socket close event received\n2025-07-19 12:43:29.402 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55317 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:44:29.376 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:44:29.377 [info] [command][73277cf5-e867-4a88-8c52-8856dc549b21] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""73277cf5-e867-4a88-8c52-8856dc549b21""}\n2025-07-19 12:44:29.378 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][40b1ebb1-7fd4-4c94-a9a3-9c31dc32a667] received connection request\n2025-07-19 12:44:29.378 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:44:29.435 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][40b1ebb1-7fd4-4c94-a9a3-9c31dc32a667] socks forwarding established\n2025-07-19 12:44:29.589 [info] [command][73277cf5-e867-4a88-8c52-8856dc549b21] Process exited with code 0\n2025-07-19 12:44:29.589 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][40b1ebb1-7fd4-4c94-a9a3-9c31dc32a667] socks connection closed\n2025-07-19 12:44:29.589 [info] [command][73277cf5-e867-4a88-8c52-8856dc549b21] Socket close event received\n2025-07-19 12:44:29.615 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55364 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:45:29.592 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:45:29.593 [info] [command][a864d5ba-f4e0-460e-b8a4-6e2764c8a91a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a864d5ba-f4e0-460e-b8a4-6e2764c8a91a""}\n2025-07-19 12:45:29.593 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][fe6e2a0c-da0b-4a79-83ec-fd1268d4f668] received connection request\n2025-07-19 12:45:29.594 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:45:29.623 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fe6e2a0c-da0b-4a79-83ec-fd1268d4f668] socks forwarding established\n2025-07-19 12:45:29.661 [info] [command][a864d5ba-f4e0-460e-b8a4-6e2764c8a91a] Process exited with code 0\n2025-07-19 12:45:29.661 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fe6e2a0c-da0b-4a79-83ec-fd1268d4f668] socks connection closed\n2025-07-19 12:45:29.661 [info] [command][a864d5ba-f4e0-460e-b8a4-6e2764c8a91a] Socket close event received\n2025-07-19 12:45:29.689 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55407 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:46:29.662 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:46:29.663 [info] [command][cbe45659-b802-4f90-82b2-e5c5a7b2bdaa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""cbe45659-b802-4f90-82b2-e5c5a7b2bdaa""}\n2025-07-19 12:46:29.663 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][c49345ca-af3c-4936-ab70-f9cab84c45c3] received connection request\n2025-07-19 12:46:29.665 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:46:29.692 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c49345ca-af3c-4936-ab70-f9cab84c45c3] socks forwarding established\n2025-07-19 12:46:29.738 [info] [command][cbe45659-b802-4f90-82b2-e5c5a7b2bdaa] Process exited with code 0\n2025-07-19 12:46:29.738 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][c49345ca-af3c-4936-ab70-f9cab84c45c3] socks connection closed\n2025-07-19 12:46:29.739 [info] [command][cbe45659-b802-4f90-82b2-e5c5a7b2bdaa] Socket close event received\n2025-07-19 12:46:29.767 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55444 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:47:29.744 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:47:29.745 [info] [command][878e9f5a-a13a-43aa-81e6-57ff3f5ff676] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""878e9f5a-a13a-43aa-81e6-57ff3f5ff676""}\n2025-07-19 12:47:29.745 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][168d39eb-8d0b-4f1b-a0d3-20265aa54a31] received connection request\n2025-07-19 12:47:29.745 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 12:47:29.745 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:47:29.897 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][168d39eb-8d0b-4f1b-a0d3-20265aa54a31] socks forwarding established\n2025-07-19 12:47:29.938 [info] [command][878e9f5a-a13a-43aa-81e6-57ff3f5ff676] Process exited with code 0\n2025-07-19 12:47:29.938 [info] [command][878e9f5a-a13a-43aa-81e6-57ff3f5ff676] Socket close event received\n2025-07-19 12:47:29.939 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][168d39eb-8d0b-4f1b-a0d3-20265aa54a31] socks connection closed\n2025-07-19 12:47:30.097 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55467 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:48:29.938 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:48:29.940 [info] [command][3e9f4613-3dcf-4697-a29a-780538fb6210] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3e9f4613-3dcf-4697-a29a-780538fb6210""}\n2025-07-19 12:48:29.941 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][7c2fca18-e436-4038-89f1-aa7d1d27309b] received connection request\n2025-07-19 12:48:29.941 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:48:29.970 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7c2fca18-e436-4038-89f1-aa7d1d27309b] socks forwarding established\n2025-07-19 12:48:30.022 [info] [command][3e9f4613-3dcf-4697-a29a-780538fb6210] Process exited with code 0\n2025-07-19 12:48:30.023 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7c2fca18-e436-4038-89f1-aa7d1d27309b] socks connection closed\n2025-07-19 12:48:30.024 [info] [command][3e9f4613-3dcf-4697-a29a-780538fb6210] Socket close event received\n2025-07-19 12:48:30.052 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55538 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:49:30.023 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:49:30.024 [info] [command][3a25cbae-7c56-453e-8467-07373ec7b447] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3a25cbae-7c56-453e-8467-07373ec7b447""}\n2025-07-19 12:49:30.024 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][61d63f56-0916-4293-9e4e-2164f4f8be1a] received connection request\n2025-07-19 12:49:30.025 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:49:30.054 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][61d63f56-0916-4293-9e4e-2164f4f8be1a] socks forwarding established\n2025-07-19 12:49:30.098 [info] [command][3a25cbae-7c56-453e-8467-07373ec7b447] Process exited with code 0\n2025-07-19 12:49:30.099 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][61d63f56-0916-4293-9e4e-2164f4f8be1a] socks connection closed\n2025-07-19 12:49:30.099 [info] [command][3a25cbae-7c56-453e-8467-07373ec7b447] Socket close event received\n2025-07-19 12:49:30.127 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55597 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:50:30.102 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:50:30.105 [info] [command][25e7d425-6ed6-4e06-8aec-c7c8220734ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""25e7d425-6ed6-4e06-8aec-c7c8220734ba""}\n2025-07-19 12:50:30.105 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][546bd734-f47d-4df4-85ef-47a0dfefcc01] received connection request\n2025-07-19 12:50:30.105 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 12:50:30.105 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:50:30.186 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][546bd734-f47d-4df4-85ef-47a0dfefcc01] socks forwarding established\n2025-07-19 12:50:30.341 [info] [command][25e7d425-6ed6-4e06-8aec-c7c8220734ba] Process exited with code 0\n2025-07-19 12:50:30.341 [info] [command][25e7d425-6ed6-4e06-8aec-c7c8220734ba] Socket close event received\n2025-07-19 12:50:30.342 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][546bd734-f47d-4df4-85ef-47a0dfefcc01] socks connection closed\n2025-07-19 12:50:30.371 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55640 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:51:30.342 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:51:30.345 [info] [command][f0fbd7c7-e5cd-4d08-be2f-2169d2044843] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f0fbd7c7-e5cd-4d08-be2f-2169d2044843""}\n2025-07-19 12:51:30.346 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][3cc3a203-7e82-47d7-8381-fe3c4546cb8f] received connection request\n2025-07-19 12:51:30.346 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:51:30.375 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3cc3a203-7e82-47d7-8381-fe3c4546cb8f] socks forwarding established\n2025-07-19 12:51:30.419 [info] [command][f0fbd7c7-e5cd-4d08-be2f-2169d2044843] Process exited with code 0\n2025-07-19 12:51:30.419 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3cc3a203-7e82-47d7-8381-fe3c4546cb8f] socks connection closed\n2025-07-19 12:51:30.420 [info] [command][f0fbd7c7-e5cd-4d08-be2f-2169d2044843] Socket close event received\n2025-07-19 12:51:30.446 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55672 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:52:30.424 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:52:30.426 [info] [command][ad07e740-ab54-4765-adeb-b9ee14a907e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ad07e740-ab54-4765-adeb-b9ee14a907e0""}\n2025-07-19 12:52:30.427 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][bd22360c-9cb1-408f-aa58-e570ff753849] received connection request\n2025-07-19 12:52:30.427 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:52:30.455 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bd22360c-9cb1-408f-aa58-e570ff753849] socks forwarding established\n2025-07-19 12:52:30.493 [info] [command][ad07e740-ab54-4765-adeb-b9ee14a907e0] Process exited with code 0\n2025-07-19 12:52:30.493 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bd22360c-9cb1-408f-aa58-e570ff753849] socks connection closed\n2025-07-19 12:52:30.493 [info] [command][ad07e740-ab54-4765-adeb-b9ee14a907e0] Socket close event received\n2025-07-19 12:52:30.520 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55694 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:53:30.497 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:53:30.500 [info] [command][03bba8e1-3221-429c-a9c1-f2f176191811] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""03bba8e1-3221-429c-a9c1-f2f176191811""}\n2025-07-19 12:53:30.501 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][84a967c4-7168-4a44-9044-29c067a95099] received connection request\n2025-07-19 12:53:30.501 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:53:30.536 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][84a967c4-7168-4a44-9044-29c067a95099] socks forwarding established\n2025-07-19 12:53:30.692 [info] [command][03bba8e1-3221-429c-a9c1-f2f176191811] Process exited with code 0\n2025-07-19 12:53:30.693 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][84a967c4-7168-4a44-9044-29c067a95099] socks connection closed\n2025-07-19 12:53:30.693 [info] [command][03bba8e1-3221-429c-a9c1-f2f176191811] Socket close event received\n2025-07-19 12:53:30.721 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55734 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:54:30.705 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:54:30.706 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][13f93069-1f16-407a-bc7d-4cabad4f34d3] received connection request\n2025-07-19 12:54:30.707 [info] [command][33453627-98e8-471b-8094-781ee479b796] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""33453627-98e8-471b-8094-781ee479b796""}\n2025-07-19 12:54:30.707 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 12:54:30.707 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:54:30.735 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][13f93069-1f16-407a-bc7d-4cabad4f34d3] socks forwarding established\n2025-07-19 12:54:30.776 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][13f93069-1f16-407a-bc7d-4cabad4f34d3] socks connection closed\n2025-07-19 12:54:30.776 [info] [command][33453627-98e8-471b-8094-781ee479b796] Process exited with code 0\n2025-07-19 12:54:30.776 [info] [command][33453627-98e8-471b-8094-781ee479b796] Socket close event received\n2025-07-19 12:54:30.802 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55765 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:55:30.781 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:55:30.783 [info] [command][80a7668d-0f0e-4499-a38b-97170d2c6718] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""80a7668d-0f0e-4499-a38b-97170d2c6718""}\n2025-07-19 12:55:30.784 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e5d40583-6fb4-4eef-8a16-92e5d5973453] received connection request\n2025-07-19 12:55:30.784 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:55:30.814 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e5d40583-6fb4-4eef-8a16-92e5d5973453] socks forwarding established\n2025-07-19 12:55:30.856 [info] [command][80a7668d-0f0e-4499-a38b-97170d2c6718] Process exited with code 0\n2025-07-19 12:55:30.857 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e5d40583-6fb4-4eef-8a16-92e5d5973453] socks connection closed\n2025-07-19 12:55:30.857 [info] [command][80a7668d-0f0e-4499-a38b-97170d2c6718] Socket close event received\n2025-07-19 12:55:30.884 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55802 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:56:30.864 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:56:30.868 [info] [command][c6dc8348-8b3f-4669-a8be-c57572b8ed2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c6dc8348-8b3f-4669-a8be-c57572b8ed2a""}\n2025-07-19 12:56:30.868 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][649f122a-d499-482a-841f-631039cb8393] received connection request\n2025-07-19 12:56:30.869 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:56:31.026 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][649f122a-d499-482a-841f-631039cb8393] socks forwarding established\n2025-07-19 12:56:31.207 [info] [command][c6dc8348-8b3f-4669-a8be-c57572b8ed2a] Process exited with code 0\n2025-07-19 12:56:31.207 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][649f122a-d499-482a-841f-631039cb8393] socks connection closed\n2025-07-19 12:56:31.207 [info] [command][c6dc8348-8b3f-4669-a8be-c57572b8ed2a] Socket close event received\n2025-07-19 12:56:31.368 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55841 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:57:31.213 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:57:31.216 [info] [command][07bd1c6b-6f07-4f7c-a756-f3f6bb72c27e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""07bd1c6b-6f07-4f7c-a756-f3f6bb72c27e""}\n2025-07-19 12:57:31.217 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b508c22a-aba1-4103-b280-ecc231c18b41] received connection request\n2025-07-19 12:57:31.218 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:57:31.245 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b508c22a-aba1-4103-b280-ecc231c18b41] socks forwarding established\n2025-07-19 12:57:31.288 [info] [command][07bd1c6b-6f07-4f7c-a756-f3f6bb72c27e] Process exited with code 0\n2025-07-19 12:57:31.289 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b508c22a-aba1-4103-b280-ecc231c18b41] socks connection closed\n2025-07-19 12:57:31.289 [info] [command][07bd1c6b-6f07-4f7c-a756-f3f6bb72c27e] Socket close event received\n2025-07-19 12:57:31.316 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55861 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:58:31.294 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:58:31.297 [info] [command][1e450be6-78cd-4a31-b85a-26f514b34200] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1e450be6-78cd-4a31-b85a-26f514b34200""}\n2025-07-19 12:58:31.297 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d12fc467-ed1f-4b20-bb5c-34b0fe1d0971] received connection request\n2025-07-19 12:58:31.297 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:58:31.327 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d12fc467-ed1f-4b20-bb5c-34b0fe1d0971] socks forwarding established\n2025-07-19 12:58:31.367 [info] [command][1e450be6-78cd-4a31-b85a-26f514b34200] Process exited with code 0\n2025-07-19 12:58:31.367 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d12fc467-ed1f-4b20-bb5c-34b0fe1d0971] socks connection closed\n2025-07-19 12:58:31.367 [info] [command][1e450be6-78cd-4a31-b85a-26f514b34200] Socket close event received\n2025-07-19 12:58:31.396 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55898 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 12:59:31.385 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 12:59:31.387 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][51feb364-b6d7-4003-964e-4e0c7973c8e7] received connection request\n2025-07-19 12:59:31.388 [info] [command][8d438c36-f019-48da-9a83-b89da187f1ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8d438c36-f019-48da-9a83-b89da187f1ac""}\n2025-07-19 12:59:31.388 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 12:59:31.460 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][51feb364-b6d7-4003-964e-4e0c7973c8e7] socks forwarding established\n2025-07-19 12:59:31.764 [info] [command][8d438c36-f019-48da-9a83-b89da187f1ac] Process exited with code 0\n2025-07-19 12:59:31.764 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][51feb364-b6d7-4003-964e-4e0c7973c8e7] socks connection closed\n2025-07-19 12:59:31.764 [info] [command][8d438c36-f019-48da-9a83-b89da187f1ac] Socket close event received\n2025-07-19 12:59:31.790 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 55945 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:00:31.769 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:00:31.772 [info] [command][400efabf-6fd2-4343-983b-b90e32eed959] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""400efabf-6fd2-4343-983b-b90e32eed959""}\n2025-07-19 13:00:31.773 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][726436bd-7a27-4416-b22a-e8212f05b26a] received connection request\n2025-07-19 13:00:31.774 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:00:31.804 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][726436bd-7a27-4416-b22a-e8212f05b26a] socks forwarding established\n2025-07-19 13:00:31.846 [info] [command][400efabf-6fd2-4343-983b-b90e32eed959] Process exited with code 0\n2025-07-19 13:00:31.847 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][726436bd-7a27-4416-b22a-e8212f05b26a] socks connection closed\n2025-07-19 13:00:31.847 [info] [command][400efabf-6fd2-4343-983b-b90e32eed959] Socket close event received\n2025-07-19 13:00:31.874 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56009 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:01:31.852 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:01:31.854 [info] [command][0cfaf9ca-142e-4e06-870e-849817092cf6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""0cfaf9ca-142e-4e06-870e-849817092cf6""}\n2025-07-19 13:01:31.855 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f3409208-81af-48d5-8f5c-9d6edf934372] received connection request\n2025-07-19 13:01:31.856 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:01:31.884 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f3409208-81af-48d5-8f5c-9d6edf934372] socks forwarding established\n2025-07-19 13:01:31.925 [info] [command][0cfaf9ca-142e-4e06-870e-849817092cf6] Process exited with code 0\n2025-07-19 13:01:31.925 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f3409208-81af-48d5-8f5c-9d6edf934372] socks connection closed\n2025-07-19 13:01:31.926 [info] [command][0cfaf9ca-142e-4e06-870e-849817092cf6] Socket close event received\n2025-07-19 13:01:31.954 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56026 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:02:31.931 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:02:31.932 [info] [command][c1fc49a0-7fa9-4608-b28f-f133ac9a98a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c1fc49a0-7fa9-4608-b28f-f133ac9a98a7""}\n2025-07-19 13:02:31.933 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ca607935-f6a9-4adf-948a-3f0480bd10ef] received connection request\n2025-07-19 13:02:31.933 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:02:31.965 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ca607935-f6a9-4adf-948a-3f0480bd10ef] socks forwarding established\n2025-07-19 13:02:32.024 [info] [command][c1fc49a0-7fa9-4608-b28f-f133ac9a98a7] Process exited with code 0\n2025-07-19 13:02:32.024 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ca607935-f6a9-4adf-948a-3f0480bd10ef] socks connection closed\n2025-07-19 13:02:32.025 [info] [command][c1fc49a0-7fa9-4608-b28f-f133ac9a98a7] Socket close event received\n2025-07-19 13:02:32.130 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56049 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:03:32.027 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:03:32.030 [info] [command][f10b41f2-8e0c-4ae0-976b-84f6580cec94] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f10b41f2-8e0c-4ae0-976b-84f6580cec94""}\n2025-07-19 13:03:32.031 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5cef64e1-203c-4cd8-bf67-9d4e3c1decc5] received connection request\n2025-07-19 13:03:32.031 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:03:32.060 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5cef64e1-203c-4cd8-bf67-9d4e3c1decc5] socks forwarding established\n2025-07-19 13:03:32.106 [info] [command][f10b41f2-8e0c-4ae0-976b-84f6580cec94] Process exited with code 0\n2025-07-19 13:03:32.106 [info] [command][f10b41f2-8e0c-4ae0-976b-84f6580cec94] Socket close event received\n2025-07-19 13:03:32.132 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5cef64e1-203c-4cd8-bf67-9d4e3c1decc5] socks connection closed\n2025-07-19 13:03:32.134 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56076 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:04:32.109 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:04:32.111 [info] [command][6064d2b6-8c05-4b47-8885-99a12143a8e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""6064d2b6-8c05-4b47-8885-99a12143a8e3""}\n2025-07-19 13:04:32.112 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][261e40ed-b0b6-48fe-92df-e4c7771aa623] received connection request\n2025-07-19 13:04:32.113 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:04:32.145 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][261e40ed-b0b6-48fe-92df-e4c7771aa623] socks forwarding established\n2025-07-19 13:04:32.192 [info] [command][6064d2b6-8c05-4b47-8885-99a12143a8e3] Process exited with code 0\n2025-07-19 13:04:32.192 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][261e40ed-b0b6-48fe-92df-e4c7771aa623] socks connection closed\n2025-07-19 13:04:32.193 [info] [command][6064d2b6-8c05-4b47-8885-99a12143a8e3] Socket close event received\n2025-07-19 13:04:32.221 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56114 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:05:32.193 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:05:32.195 [info] [command][9f88dc3b-2bb7-4447-ab73-ffc868ef4fcc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""9f88dc3b-2bb7-4447-ab73-ffc868ef4fcc""}\n2025-07-19 13:05:32.196 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][30500d6b-d807-4659-8dd9-d40286bdd80f] received connection request\n2025-07-19 13:05:32.196 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:05:32.226 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][30500d6b-d807-4659-8dd9-d40286bdd80f] socks forwarding established\n2025-07-19 13:05:32.267 [info] [command][9f88dc3b-2bb7-4447-ab73-ffc868ef4fcc] Process exited with code 0\n2025-07-19 13:05:32.267 [info] [command][9f88dc3b-2bb7-4447-ab73-ffc868ef4fcc] Socket close event received\n2025-07-19 13:05:32.292 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][30500d6b-d807-4659-8dd9-d40286bdd80f] socks connection closed\n2025-07-19 13:05:32.293 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56151 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:06:32.270 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:06:32.272 [info] [command][1f83e837-9eb9-4d03-98f4-3735c2b3e717] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1f83e837-9eb9-4d03-98f4-3735c2b3e717""}\n2025-07-19 13:06:32.273 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b3c21489-8164-4c04-bd19-df8182443fdd] received connection request\n2025-07-19 13:06:32.273 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:06:32.311 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b3c21489-8164-4c04-bd19-df8182443fdd] socks forwarding established\n2025-07-19 13:06:32.390 [info] [command][1f83e837-9eb9-4d03-98f4-3735c2b3e717] Process exited with code 0\n2025-07-19 13:06:32.391 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b3c21489-8164-4c04-bd19-df8182443fdd] socks connection closed\n2025-07-19 13:06:32.391 [info] [command][1f83e837-9eb9-4d03-98f4-3735c2b3e717] Socket close event received\n2025-07-19 13:06:32.428 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56182 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:07:32.395 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:07:32.397 [info] [command][9a9c4954-30d8-4098-834e-16a4e59f1b44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""9a9c4954-30d8-4098-834e-16a4e59f1b44""}\n2025-07-19 13:07:32.398 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d7c2a9d0-15bf-45b9-ab6a-9de9707069c4] received connection request\n2025-07-19 13:07:32.399 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:07:32.427 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d7c2a9d0-15bf-45b9-ab6a-9de9707069c4] socks forwarding established\n2025-07-19 13:07:32.468 [info] [command][9a9c4954-30d8-4098-834e-16a4e59f1b44] Process exited with code 0\n2025-07-19 13:07:32.468 [info] [command][9a9c4954-30d8-4098-834e-16a4e59f1b44] Socket close event received\n2025-07-19 13:07:32.494 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d7c2a9d0-15bf-45b9-ab6a-9de9707069c4] socks connection closed\n2025-07-19 13:07:32.495 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56203 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:08:32.478 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:08:32.480 [info] [command][5649e18f-2ac5-4b45-adc2-0c41d501edc6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""5649e18f-2ac5-4b45-adc2-0c41d501edc6""}\n2025-07-19 13:08:32.481 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][41fa07d7-eeed-4bd2-8d0b-0b9c34665f99] received connection request\n2025-07-19 13:08:32.482 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 13:08:32.483 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:08:32.512 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][41fa07d7-eeed-4bd2-8d0b-0b9c34665f99] socks forwarding established\n2025-07-19 13:08:32.553 [info] [command][5649e18f-2ac5-4b45-adc2-0c41d501edc6] Process exited with code 0\n2025-07-19 13:08:32.553 [info] [command][5649e18f-2ac5-4b45-adc2-0c41d501edc6] Socket close event received\n2025-07-19 13:08:32.578 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][41fa07d7-eeed-4bd2-8d0b-0b9c34665f99] socks connection closed\n2025-07-19 13:08:32.579 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56224 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:09:32.563 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:09:32.565 [info] [command][e39f8693-3b16-4240-a2d7-1217971b00c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e39f8693-3b16-4240-a2d7-1217971b00c8""}\n2025-07-19 13:09:32.566 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e0387b24-47f2-4242-a2bf-13000a741c78] received connection request\n2025-07-19 13:09:32.566 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:09:32.598 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e0387b24-47f2-4242-a2bf-13000a741c78] socks forwarding established\n2025-07-19 13:09:32.665 [info] [command][e39f8693-3b16-4240-a2d7-1217971b00c8] Process exited with code 0\n2025-07-19 13:09:32.665 [info] [command][e39f8693-3b16-4240-a2d7-1217971b00c8] Socket close event received\n2025-07-19 13:09:32.800 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e0387b24-47f2-4242-a2bf-13000a741c78] socks connection closed\n2025-07-19 13:09:32.820 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56261 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:10:32.668 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:10:32.670 [info] [command][3093ec80-b7d8-46cb-9047-ef90666ed8ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3093ec80-b7d8-46cb-9047-ef90666ed8ab""}\n2025-07-19 13:10:32.671 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][521f358e-e64a-4dc0-a84a-d5db24d590ac] received connection request\n2025-07-19 13:10:32.672 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:10:32.705 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][521f358e-e64a-4dc0-a84a-d5db24d590ac] socks forwarding established\n2025-07-19 13:10:32.747 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][521f358e-e64a-4dc0-a84a-d5db24d590ac] socks connection closed\n2025-07-19 13:10:32.748 [info] [command][3093ec80-b7d8-46cb-9047-ef90666ed8ab] Process exited with code 0\n2025-07-19 13:10:32.748 [info] [command][3093ec80-b7d8-46cb-9047-ef90666ed8ab] Socket close event received\n2025-07-19 13:10:32.776 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56299 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:11:32.753 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:11:32.755 [info] [command][1a2fef4a-17ac-4a56-a897-d5b4683aa069] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1a2fef4a-17ac-4a56-a897-d5b4683aa069""}\n2025-07-19 13:11:32.756 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f45535d0-9f38-46b7-98bb-8bd31eb79c61] received connection request\n2025-07-19 13:11:32.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:11:32.786 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f45535d0-9f38-46b7-98bb-8bd31eb79c61] socks forwarding established\n2025-07-19 13:11:32.853 [info] [command][1a2fef4a-17ac-4a56-a897-d5b4683aa069] Process exited with code 0\n2025-07-19 13:11:32.854 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f45535d0-9f38-46b7-98bb-8bd31eb79c61] socks connection closed\n2025-07-19 13:11:32.854 [info] [command][1a2fef4a-17ac-4a56-a897-d5b4683aa069] Socket close event received\n2025-07-19 13:11:32.883 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56337 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:12:32.855 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:12:32.857 [info] [command][d32b7e68-aba7-4dbd-9c94-5b7e99f5a076] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""d32b7e68-aba7-4dbd-9c94-5b7e99f5a076""}\n2025-07-19 13:12:32.858 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9aff5e34-e72f-4917-b94c-0526c3a5e0a5] received connection request\n2025-07-19 13:12:32.858 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:12:32.892 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9aff5e34-e72f-4917-b94c-0526c3a5e0a5] socks forwarding established\n2025-07-19 13:12:32.932 [info] [command][d32b7e68-aba7-4dbd-9c94-5b7e99f5a076] Process exited with code 0\n2025-07-19 13:12:32.932 [info] [command][d32b7e68-aba7-4dbd-9c94-5b7e99f5a076] Socket close event received\n2025-07-19 13:12:32.960 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56357 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:12:32.961 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9aff5e34-e72f-4917-b94c-0526c3a5e0a5] socks connection closed\n2025-07-19 13:13:32.941 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:13:32.944 [info] [command][83b75e0d-8446-463d-9084-cb33491f88d2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""83b75e0d-8446-463d-9084-cb33491f88d2""}\n2025-07-19 13:13:32.945 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][3dcbe7fa-7af1-464e-8755-2f4c8d08dc5e] received connection request\n2025-07-19 13:13:32.946 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:13:32.993 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3dcbe7fa-7af1-464e-8755-2f4c8d08dc5e] socks forwarding established\n2025-07-19 13:13:33.157 [info] [command][83b75e0d-8446-463d-9084-cb33491f88d2] Process exited with code 0\n2025-07-19 13:13:33.158 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3dcbe7fa-7af1-464e-8755-2f4c8d08dc5e] socks connection closed\n2025-07-19 13:13:33.158 [info] [command][83b75e0d-8446-463d-9084-cb33491f88d2] Socket close event received\n2025-07-19 13:13:33.185 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56380 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:14:33.165 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:14:33.167 [info] [command][16d6ac53-cc11-4fce-81e8-723fbbe6762b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""16d6ac53-cc11-4fce-81e8-723fbbe6762b""}\n2025-07-19 13:14:33.168 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][1629da2b-a0ca-4fff-b888-96a5b4f27054] received connection request\n2025-07-19 13:14:33.169 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:14:33.201 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1629da2b-a0ca-4fff-b888-96a5b4f27054] socks forwarding established\n2025-07-19 13:14:33.268 [info] [command][16d6ac53-cc11-4fce-81e8-723fbbe6762b] Process exited with code 0\n2025-07-19 13:14:33.268 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1629da2b-a0ca-4fff-b888-96a5b4f27054] socks connection closed\n2025-07-19 13:14:33.268 [info] [command][16d6ac53-cc11-4fce-81e8-723fbbe6762b] Socket close event received\n2025-07-19 13:14:33.294 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56446 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:15:33.277 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:15:33.278 [info] [command][562e392b-f709-437a-9d79-15febe75e519] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""562e392b-f709-437a-9d79-15febe75e519""}\n2025-07-19 13:15:33.279 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][829ac8aa-29de-42d9-a786-28dae98e3cb6] received connection request\n2025-07-19 13:15:33.280 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:15:33.312 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][829ac8aa-29de-42d9-a786-28dae98e3cb6] socks forwarding established\n2025-07-19 13:15:33.353 [info] [command][562e392b-f709-437a-9d79-15febe75e519] Process exited with code 0\n2025-07-19 13:15:33.353 [info] [command][562e392b-f709-437a-9d79-15febe75e519] Socket close event received\n2025-07-19 13:15:33.378 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][829ac8aa-29de-42d9-a786-28dae98e3cb6] socks connection closed\n2025-07-19 13:15:33.381 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56479 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:16:33.364 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:16:33.366 [info] [command][5700361b-814b-42f2-9a7b-a79c9cf0cab5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""5700361b-814b-42f2-9a7b-a79c9cf0cab5""}\n2025-07-19 13:16:33.367 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ee9adbae-9825-448f-83de-479090bf3094] received connection request\n2025-07-19 13:16:33.367 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:16:33.412 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ee9adbae-9825-448f-83de-479090bf3094] socks forwarding established\n2025-07-19 13:16:33.483 [info] [command][5700361b-814b-42f2-9a7b-a79c9cf0cab5] Process exited with code 0\n2025-07-19 13:16:33.484 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ee9adbae-9825-448f-83de-479090bf3094] socks connection closed\n2025-07-19 13:16:33.484 [info] [command][5700361b-814b-42f2-9a7b-a79c9cf0cab5] Socket close event received\n2025-07-19 13:16:33.511 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56516 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:17:33.485 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:17:33.488 [info] [command][505dc525-ec6a-4596-bf62-e29df27badb6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""505dc525-ec6a-4596-bf62-e29df27badb6""}\n2025-07-19 13:17:33.489 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5a7800f4-0d66-4f3a-93e3-21d15797e8d6] received connection request\n2025-07-19 13:17:33.490 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:17:33.524 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5a7800f4-0d66-4f3a-93e3-21d15797e8d6] socks forwarding established\n2025-07-19 13:17:33.566 [info] [command][505dc525-ec6a-4596-bf62-e29df27badb6] Process exited with code 0\n2025-07-19 13:17:33.566 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5a7800f4-0d66-4f3a-93e3-21d15797e8d6] socks connection closed\n2025-07-19 13:17:33.566 [info] [command][505dc525-ec6a-4596-bf62-e29df27badb6] Socket close event received\n2025-07-19 13:17:33.594 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56535 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:18:33.572 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:18:33.574 [info] [command][68ce4d11-8ddc-4847-b61e-f17b92d68624] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""68ce4d11-8ddc-4847-b61e-f17b92d68624""}\n2025-07-19 13:18:33.575 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][8634ca3f-f4e5-4796-bc3c-4f210e82e6dd] received connection request\n2025-07-19 13:18:33.576 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:18:33.609 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8634ca3f-f4e5-4796-bc3c-4f210e82e6dd] socks forwarding established\n2025-07-19 13:18:33.652 [info] [command][68ce4d11-8ddc-4847-b61e-f17b92d68624] Process exited with code 0\n2025-07-19 13:18:33.652 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8634ca3f-f4e5-4796-bc3c-4f210e82e6dd] socks connection closed\n2025-07-19 13:18:33.652 [info] [command][68ce4d11-8ddc-4847-b61e-f17b92d68624] Socket close event received\n2025-07-19 13:18:33.685 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56558 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:19:33.657 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:19:33.659 [info] [command][6894d82a-3ae6-4c47-bf70-8a1ef2b2aaa3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""6894d82a-3ae6-4c47-bf70-8a1ef2b2aaa3""}\n2025-07-19 13:19:33.659 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a9861370-8fb5-4691-a372-60703c2750fb] received connection request\n2025-07-19 13:19:33.659 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:19:33.687 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a9861370-8fb5-4691-a372-60703c2750fb] socks forwarding established\n2025-07-19 13:19:33.750 [info] [command][6894d82a-3ae6-4c47-bf70-8a1ef2b2aaa3] Process exited with code 0\n2025-07-19 13:19:33.751 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a9861370-8fb5-4691-a372-60703c2750fb] socks connection closed\n2025-07-19 13:19:33.751 [info] [command][6894d82a-3ae6-4c47-bf70-8a1ef2b2aaa3] Socket close event received\n2025-07-19 13:19:33.777 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56610 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:20:33.753 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:20:33.755 [info] [command][1592be47-a897-4e0e-818f-40d543e583f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""1592be47-a897-4e0e-818f-40d543e583f6""}\n2025-07-19 13:20:33.756 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e0ca2062-c69c-4e95-b91e-2c81578ac306] received connection request\n2025-07-19 13:20:33.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 13:20:33.757 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:20:33.868 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e0ca2062-c69c-4e95-b91e-2c81578ac306] socks forwarding established\n2025-07-19 13:20:33.955 [info] [command][1592be47-a897-4e0e-818f-40d543e583f6] Process exited with code 0\n2025-07-19 13:20:33.955 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e0ca2062-c69c-4e95-b91e-2c81578ac306] socks connection closed\n2025-07-19 13:20:33.955 [info] [command][1592be47-a897-4e0e-818f-40d543e583f6] Socket close event received\n2025-07-19 13:20:34.115 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56650 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:21:33.961 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:21:33.963 [info] [command][3249ed03-0530-4dc3-9705-da7967fe8118] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""3249ed03-0530-4dc3-9705-da7967fe8118""}\n2025-07-19 13:21:33.964 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][84158834-ca1b-4271-b4c3-7ecb0bd028f7] received connection request\n2025-07-19 13:21:33.965 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:21:33.999 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][84158834-ca1b-4271-b4c3-7ecb0bd028f7] socks forwarding established\n2025-07-19 13:21:34.067 [info] [command][3249ed03-0530-4dc3-9705-da7967fe8118] Process exited with code 0\n2025-07-19 13:21:34.067 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][84158834-ca1b-4271-b4c3-7ecb0bd028f7] socks connection closed\n2025-07-19 13:21:34.067 [info] [command][3249ed03-0530-4dc3-9705-da7967fe8118] Socket close event received\n2025-07-19 13:21:34.095 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56686 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:22:34.072 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:22:34.074 [info] [command][a0d2b562-c73f-4bc6-9a4d-7fe4ceef8fd7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a0d2b562-c73f-4bc6-9a4d-7fe4ceef8fd7""}\n2025-07-19 13:22:34.075 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][bc80ccf8-73a6-48b3-8a93-2acb3f95d15a] received connection request\n2025-07-19 13:22:34.075 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:22:34.111 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bc80ccf8-73a6-48b3-8a93-2acb3f95d15a] socks forwarding established\n2025-07-19 13:22:34.157 [info] [command][a0d2b562-c73f-4bc6-9a4d-7fe4ceef8fd7] Process exited with code 0\n2025-07-19 13:22:34.157 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][bc80ccf8-73a6-48b3-8a93-2acb3f95d15a] socks connection closed\n2025-07-19 13:22:34.157 [info] [command][a0d2b562-c73f-4bc6-9a4d-7fe4ceef8fd7] Socket close event received\n2025-07-19 13:22:34.187 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56740 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:23:34.162 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:23:34.164 [info] [command][6c87de3f-a892-4dce-8613-f9979ff4e742] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""6c87de3f-a892-4dce-8613-f9979ff4e742""}\n2025-07-19 13:23:34.165 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][8bb29f67-8d71-4cab-b56d-25ac08947297] received connection request\n2025-07-19 13:23:34.168 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:23:34.330 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8bb29f67-8d71-4cab-b56d-25ac08947297] socks forwarding established\n2025-07-19 13:23:34.508 [info] [command][6c87de3f-a892-4dce-8613-f9979ff4e742] Process exited with code 0\n2025-07-19 13:23:34.509 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][8bb29f67-8d71-4cab-b56d-25ac08947297] socks connection closed\n2025-07-19 13:23:34.509 [info] [command][6c87de3f-a892-4dce-8613-f9979ff4e742] Socket close event received\n2025-07-19 13:23:34.681 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56787 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:24:34.513 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:24:34.515 [info] [command][db8ca275-6167-4e0a-ae4f-7c1ab59518fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""db8ca275-6167-4e0a-ae4f-7c1ab59518fe""}\n2025-07-19 13:24:34.516 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][7798a829-2bc5-4444-995d-141a28fba4c1] received connection request\n2025-07-19 13:24:34.517 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:24:34.547 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7798a829-2bc5-4444-995d-141a28fba4c1] socks forwarding established\n2025-07-19 13:24:34.600 [info] [command][db8ca275-6167-4e0a-ae4f-7c1ab59518fe] Process exited with code 0\n2025-07-19 13:24:34.601 [info] [command][db8ca275-6167-4e0a-ae4f-7c1ab59518fe] Socket close event received\n2025-07-19 13:24:34.609 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][7798a829-2bc5-4444-995d-141a28fba4c1] socks connection closed\n2025-07-19 13:24:34.634 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56805 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:25:34.606 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:25:34.609 [info] [command][43166bdc-966d-4e06-b38a-a75c8a05a4bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""43166bdc-966d-4e06-b38a-a75c8a05a4bb""}\n2025-07-19 13:25:34.610 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][007e50a1-8d44-45d5-81bf-d434455ef015] received connection request\n2025-07-19 13:25:34.610 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:25:34.648 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][007e50a1-8d44-45d5-81bf-d434455ef015] socks forwarding established\n2025-07-19 13:25:34.687 [info] [command][43166bdc-966d-4e06-b38a-a75c8a05a4bb] Process exited with code 0\n2025-07-19 13:25:34.687 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][007e50a1-8d44-45d5-81bf-d434455ef015] socks connection closed\n2025-07-19 13:25:34.688 [info] [command][43166bdc-966d-4e06-b38a-a75c8a05a4bb] Socket close event received\n2025-07-19 13:25:34.722 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56844 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:26:34.693 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:26:34.695 [info] [command][ea5e73a3-a405-4c2a-bc20-c551f6833b7c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ea5e73a3-a405-4c2a-bc20-c551f6833b7c""}\n2025-07-19 13:26:34.696 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][cb064120-d20f-44b9-830f-e4a8071bd1d4] received connection request\n2025-07-19 13:26:34.696 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:26:34.806 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cb064120-d20f-44b9-830f-e4a8071bd1d4] socks forwarding established\n2025-07-19 13:26:34.873 [info] [command][ea5e73a3-a405-4c2a-bc20-c551f6833b7c] Process exited with code 0\n2025-07-19 13:26:34.873 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][cb064120-d20f-44b9-830f-e4a8071bd1d4] socks connection closed\n2025-07-19 13:26:34.873 [info] [command][ea5e73a3-a405-4c2a-bc20-c551f6833b7c] Socket close event received\n2025-07-19 13:26:35.054 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56886 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:27:34.878 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:27:34.880 [info] [command][17b44721-4942-4a6b-b807-0cb88cbb1a40] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""17b44721-4942-4a6b-b807-0cb88cbb1a40""}\n2025-07-19 13:27:34.881 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][2b494e5e-9941-4488-ad96-198659c870e9] received connection request\n2025-07-19 13:27:34.881 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:27:34.950 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2b494e5e-9941-4488-ad96-198659c870e9] socks forwarding established\n2025-07-19 13:27:34.998 [info] [command][17b44721-4942-4a6b-b807-0cb88cbb1a40] Process exited with code 0\n2025-07-19 13:27:34.999 [info] [command][17b44721-4942-4a6b-b807-0cb88cbb1a40] Socket close event received\n2025-07-19 13:27:35.029 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56915 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:27:35.030 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][2b494e5e-9941-4488-ad96-198659c870e9] socks connection closed\n2025-07-19 13:28:35.002 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:28:35.004 [info] [command][2978bc7c-2949-42fe-9955-6a29bb795318] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""2978bc7c-2949-42fe-9955-6a29bb795318""}\n2025-07-19 13:28:35.005 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][86f4e3b5-cb54-490b-9cc2-e7a9bb6c58d8] received connection request\n2025-07-19 13:28:35.006 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:28:35.040 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][86f4e3b5-cb54-490b-9cc2-e7a9bb6c58d8] socks forwarding established\n2025-07-19 13:28:35.081 [info] [command][2978bc7c-2949-42fe-9955-6a29bb795318] Process exited with code 0\n2025-07-19 13:28:35.081 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][86f4e3b5-cb54-490b-9cc2-e7a9bb6c58d8] socks connection closed\n2025-07-19 13:28:35.081 [info] [command][2978bc7c-2949-42fe-9955-6a29bb795318] Socket close event received\n2025-07-19 13:28:35.108 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56936 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:29:35.089 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:29:35.091 [info] [command][696dd82c-0848-491b-9983-78004f0754be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""696dd82c-0848-491b-9983-78004f0754be""}\n2025-07-19 13:29:35.092 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ef79b7e9-978b-455b-8ee2-5f94f3523cb0] received connection request\n2025-07-19 13:29:35.092 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:29:35.125 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ef79b7e9-978b-455b-8ee2-5f94f3523cb0] socks forwarding established\n2025-07-19 13:29:35.165 [info] [command][696dd82c-0848-491b-9983-78004f0754be] Process exited with code 0\n2025-07-19 13:29:35.165 [info] [command][696dd82c-0848-491b-9983-78004f0754be] Socket close event received\n2025-07-19 13:29:35.190 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ef79b7e9-978b-455b-8ee2-5f94f3523cb0] socks connection closed\n2025-07-19 13:29:35.191 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 56967 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:30:35.168 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:30:35.170 [info] [command][594409d5-5637-4300-8d2d-a61fa0899d25] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""594409d5-5637-4300-8d2d-a61fa0899d25""}\n2025-07-19 13:30:35.171 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][42ecedcc-066d-4722-99c1-b93dfd1db95f] received connection request\n2025-07-19 13:30:35.171 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:30:35.202 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][42ecedcc-066d-4722-99c1-b93dfd1db95f] socks forwarding established\n2025-07-19 13:30:35.244 [info] [command][594409d5-5637-4300-8d2d-a61fa0899d25] Process exited with code 0\n2025-07-19 13:30:35.244 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][42ecedcc-066d-4722-99c1-b93dfd1db95f] socks connection closed\n2025-07-19 13:30:35.244 [info] [command][594409d5-5637-4300-8d2d-a61fa0899d25] Socket close event received\n2025-07-19 13:30:35.270 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57008 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:31:35.250 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:31:35.252 [info] [command][28f86517-269f-4fe1-a408-57be7900cc1c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""28f86517-269f-4fe1-a408-57be7900cc1c""}\n2025-07-19 13:31:35.253 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][570b3ff4-bd56-4a22-9754-5d72c8f47ea8] received connection request\n2025-07-19 13:31:35.253 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:31:35.340 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][570b3ff4-bd56-4a22-9754-5d72c8f47ea8] socks forwarding established\n2025-07-19 13:31:35.382 [info] [command][28f86517-269f-4fe1-a408-57be7900cc1c] Process exited with code 0\n2025-07-19 13:31:35.383 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][570b3ff4-bd56-4a22-9754-5d72c8f47ea8] socks connection closed\n2025-07-19 13:31:35.383 [info] [command][28f86517-269f-4fe1-a408-57be7900cc1c] Socket close event received\n2025-07-19 13:31:35.512 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57041 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:32:35.392 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:32:35.394 [info] [command][a232ca67-71e4-4a12-ab81-4ffb966f9f79] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""a232ca67-71e4-4a12-ab81-4ffb966f9f79""}\n2025-07-19 13:32:35.394 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][32f1747d-bc4a-4955-a1d1-e3c70bc7b062] received connection request\n2025-07-19 13:32:35.394 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\n\n2025-07-19 13:32:35.394 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:32:35.423 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][32f1747d-bc4a-4955-a1d1-e3c70bc7b062] socks forwarding established\n2025-07-19 13:32:35.464 [info] [command][a232ca67-71e4-4a12-ab81-4ffb966f9f79] Process exited with code 0\n2025-07-19 13:32:35.465 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][32f1747d-bc4a-4955-a1d1-e3c70bc7b062] socks connection closed\n2025-07-19 13:32:35.465 [info] [command][a232ca67-71e4-4a12-ab81-4ffb966f9f79] Socket close event received\n2025-07-19 13:32:35.492 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57059 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:33:35.475 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:33:35.477 [info] [command][0535907b-6d5d-4704-94fe-8c2f935357a9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""0535907b-6d5d-4704-94fe-8c2f935357a9""}\n2025-07-19 13:33:35.478 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][5a14d080-9ab9-4b15-8f91-439b0b770b39] received connection request\n2025-07-19 13:33:35.479 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:33:35.506 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5a14d080-9ab9-4b15-8f91-439b0b770b39] socks forwarding established\n2025-07-19 13:33:35.548 [info] [command][0535907b-6d5d-4704-94fe-8c2f935357a9] Process exited with code 0\n2025-07-19 13:33:35.548 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][5a14d080-9ab9-4b15-8f91-439b0b770b39] socks connection closed\n2025-07-19 13:33:35.548 [info] [command][0535907b-6d5d-4704-94fe-8c2f935357a9] Socket close event received\n2025-07-19 13:33:35.574 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57080 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:34:35.557 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:34:35.559 [info] [command][8480aecd-8400-4491-95f0-df498b1863d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""8480aecd-8400-4491-95f0-df498b1863d0""}\n2025-07-19 13:34:35.560 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][f8ff59a1-5010-4beb-9bb7-96e7e7f4c9e6] received connection request\n2025-07-19 13:34:35.560 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:34:35.615 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f8ff59a1-5010-4beb-9bb7-96e7e7f4c9e6] socks forwarding established\n2025-07-19 13:34:35.771 [info] [command][8480aecd-8400-4491-95f0-df498b1863d0] Process exited with code 0\n2025-07-19 13:34:35.771 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][f8ff59a1-5010-4beb-9bb7-96e7e7f4c9e6] socks connection closed\n2025-07-19 13:34:35.771 [info] [command][8480aecd-8400-4491-95f0-df498b1863d0] Socket close event received\n2025-07-19 13:34:35.799 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57112 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:35:35.781 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:35:35.782 [info] [command][2126c75f-de1c-449f-89d5-221f4e1a1cbe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""2126c75f-de1c-449f-89d5-221f4e1a1cbe""}\n2025-07-19 13:35:35.783 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9dee4306-971d-4bfb-8500-54adbc8f90ec] received connection request\n2025-07-19 13:35:35.784 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:35:35.812 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9dee4306-971d-4bfb-8500-54adbc8f90ec] socks forwarding established\n2025-07-19 13:35:35.852 [info] [command][2126c75f-de1c-449f-89d5-221f4e1a1cbe] Process exited with code 0\n2025-07-19 13:35:35.853 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9dee4306-971d-4bfb-8500-54adbc8f90ec] socks connection closed\n2025-07-19 13:35:35.853 [info] [command][2126c75f-de1c-449f-89d5-221f4e1a1cbe] Socket close event received\n2025-07-19 13:35:35.880 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57145 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:36:35.854 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:36:35.856 [info] [command][e489c4b6-dec5-4316-8be4-0a98f4a50dff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""e489c4b6-dec5-4316-8be4-0a98f4a50dff""}\n2025-07-19 13:36:35.857 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][ebbc784f-a440-46f7-b682-31be2945422b] received connection request\n2025-07-19 13:36:35.857 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:36:35.884 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ebbc784f-a440-46f7-b682-31be2945422b] socks forwarding established\n2025-07-19 13:36:35.927 [info] [command][e489c4b6-dec5-4316-8be4-0a98f4a50dff] Process exited with code 0\n2025-07-19 13:36:35.927 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][ebbc784f-a440-46f7-b682-31be2945422b] socks connection closed\n2025-07-19 13:36:35.927 [info] [command][e489c4b6-dec5-4316-8be4-0a98f4a50dff] Socket close event received\n2025-07-19 13:36:35.954 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57174 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:37:35.932 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:37:35.933 [info] [command][ee3aa390-3a2b-4815-8675-24bf671a1f8b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ee3aa390-3a2b-4815-8675-24bf671a1f8b""}\n2025-07-19 13:37:35.933 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][9f8689af-c6be-4efd-b861-55dcb9190f9d] received connection request\n2025-07-19 13:37:35.934 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:37:35.963 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9f8689af-c6be-4efd-b861-55dcb9190f9d] socks forwarding established\n2025-07-19 13:37:36.001 [info] [command][ee3aa390-3a2b-4815-8675-24bf671a1f8b] Process exited with code 0\n2025-07-19 13:37:36.001 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][9f8689af-c6be-4efd-b861-55dcb9190f9d] socks connection closed\n2025-07-19 13:37:36.001 [info] [command][ee3aa390-3a2b-4815-8675-24bf671a1f8b] Socket close event received\n2025-07-19 13:37:36.028 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57202 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:38:36.011 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:38:36.013 [info] [command][c195f5c3-3de8-4649-bb51-47d0f3772345] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c195f5c3-3de8-4649-bb51-47d0f3772345""}\n2025-07-19 13:38:36.014 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][fbc2fac2-309c-4447-ae1b-609676d5c873] received connection request\n2025-07-19 13:38:36.014 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:38:36.044 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fbc2fac2-309c-4447-ae1b-609676d5c873] socks forwarding established\n2025-07-19 13:38:36.084 [info] [command][c195f5c3-3de8-4649-bb51-47d0f3772345] Process exited with code 0\n2025-07-19 13:38:36.084 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][fbc2fac2-309c-4447-ae1b-609676d5c873] socks connection closed\n2025-07-19 13:38:36.084 [info] [command][c195f5c3-3de8-4649-bb51-47d0f3772345] Socket close event received\n2025-07-19 13:38:36.114 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57222 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:39:36.095 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:39:36.097 [info] [command][821f7646-0183-43d6-82d8-ee6853ec559f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""821f7646-0183-43d6-82d8-ee6853ec559f""}\n2025-07-19 13:39:36.098 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][e7b552e3-0f97-4fc6-83ef-a78ce9661e2a] received connection request\n2025-07-19 13:39:36.098 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:39:36.126 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e7b552e3-0f97-4fc6-83ef-a78ce9661e2a] socks forwarding established\n2025-07-19 13:39:36.166 [info] [command][821f7646-0183-43d6-82d8-ee6853ec559f] Process exited with code 0\n2025-07-19 13:39:36.167 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][e7b552e3-0f97-4fc6-83ef-a78ce9661e2a] socks connection closed\n2025-07-19 13:39:36.167 [info] [command][821f7646-0183-43d6-82d8-ee6853ec559f] Socket close event received\n2025-07-19 13:39:36.196 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57260 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:40:36.168 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:40:36.170 [info] [command][13a2b28a-c9cd-478c-a189-cce9ca588fdd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""13a2b28a-c9cd-478c-a189-cce9ca588fdd""}\n2025-07-19 13:40:36.171 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][1e3157b5-68bb-4d0f-9d0c-f2fb09e471ac] received connection request\n2025-07-19 13:40:36.172 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:40:36.201 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1e3157b5-68bb-4d0f-9d0c-f2fb09e471ac] socks forwarding established\n2025-07-19 13:40:36.243 [info] [command][13a2b28a-c9cd-478c-a189-cce9ca588fdd] Process exited with code 0\n2025-07-19 13:40:36.243 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][1e3157b5-68bb-4d0f-9d0c-f2fb09e471ac] socks connection closed\n2025-07-19 13:40:36.243 [info] [command][13a2b28a-c9cd-478c-a189-cce9ca588fdd] Socket close event received\n2025-07-19 13:40:36.268 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57293 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:41:36.243 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:41:36.245 [info] [command][92c7dd3e-e572-4c57-bdae-828e994fd0d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""92c7dd3e-e572-4c57-bdae-828e994fd0d1""}\n2025-07-19 13:41:36.246 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][d311f263-892a-4b12-9fe2-55effc60012d] received connection request\n2025-07-19 13:41:36.247 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:41:36.277 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d311f263-892a-4b12-9fe2-55effc60012d] socks forwarding established\n2025-07-19 13:41:36.322 [info] [command][92c7dd3e-e572-4c57-bdae-828e994fd0d1] Process exited with code 0\n2025-07-19 13:41:36.323 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][d311f263-892a-4b12-9fe2-55effc60012d] socks connection closed\n2025-07-19 13:41:36.323 [info] [command][92c7dd3e-e572-4c57-bdae-828e994fd0d1] Socket close event received\n2025-07-19 13:41:36.449 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57334 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:42:36.328 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:42:36.330 [info] [command][ed55d484-22e0-4fc3-a9b3-d96128ad7518] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""ed55d484-22e0-4fc3-a9b3-d96128ad7518""}\n2025-07-19 13:42:36.331 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][38f498ea-b028-4421-a833-fc2845512751] received connection request\n2025-07-19 13:42:36.332 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:42:36.361 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][38f498ea-b028-4421-a833-fc2845512751] socks forwarding established\n2025-07-19 13:42:36.408 [info] [command][ed55d484-22e0-4fc3-a9b3-d96128ad7518] Process exited with code 0\n2025-07-19 13:42:36.408 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][38f498ea-b028-4421-a833-fc2845512751] socks connection closed\n2025-07-19 13:42:36.408 [info] [command][ed55d484-22e0-4fc3-a9b3-d96128ad7518] Socket close event received\n2025-07-19 13:42:36.433 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57370 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:43:36.416 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:43:36.418 [info] [command][dcf8883e-494f-4248-b3e9-ff2bf1c03ed1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""dcf8883e-494f-4248-b3e9-ff2bf1c03ed1""}\n2025-07-19 13:43:36.418 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][397e86fb-8496-4a6f-9489-d3c18d3a99bf] received connection request\n2025-07-19 13:43:36.419 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:43:36.539 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][397e86fb-8496-4a6f-9489-d3c18d3a99bf] socks forwarding established\n2025-07-19 13:43:36.693 [info] [command][dcf8883e-494f-4248-b3e9-ff2bf1c03ed1] Process exited with code 0\n2025-07-19 13:43:36.694 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][397e86fb-8496-4a6f-9489-d3c18d3a99bf] socks connection closed\n2025-07-19 13:43:36.694 [info] [command][dcf8883e-494f-4248-b3e9-ff2bf1c03ed1] Socket close event received\n2025-07-19 13:43:36.720 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57391 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:44:36.694 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:44:36.695 [info] [command][c1a136a7-786f-4351-a9f4-8bea055506e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""c1a136a7-786f-4351-a9f4-8bea055506e7""}\n2025-07-19 13:44:36.696 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][b50cf0a6-e636-47a9-aa1c-d0899046cb4e] received connection request\n2025-07-19 13:44:36.696 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:44:36.725 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b50cf0a6-e636-47a9-aa1c-d0899046cb4e] socks forwarding established\n2025-07-19 13:44:36.766 [info] [command][c1a136a7-786f-4351-a9f4-8bea055506e7] Process exited with code 0\n2025-07-19 13:44:36.767 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][b50cf0a6-e636-47a9-aa1c-d0899046cb4e] socks connection closed\n2025-07-19 13:44:36.767 [info] [command][c1a136a7-786f-4351-a9f4-8bea055506e7] Socket close event received\n2025-07-19 13:44:36.796 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57427 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:45:36.776 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:45:36.778 [info] [command][f01f7784-2597-4f1d-b514-42af0a0253b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""f01f7784-2597-4f1d-b514-42af0a0253b0""}\n2025-07-19 13:45:36.779 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][3e57b22d-c235-4552-a263-d89fd7726aae] received connection request\n2025-07-19 13:45:36.780 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:45:36.810 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3e57b22d-c235-4552-a263-d89fd7726aae] socks forwarding established\n2025-07-19 13:45:36.850 [info] [command][f01f7784-2597-4f1d-b514-42af0a0253b0] Process exited with code 0\n2025-07-19 13:45:36.850 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][3e57b22d-c235-4552-a263-d89fd7726aae] socks connection closed\n2025-07-19 13:45:36.850 [info] [command][f01f7784-2597-4f1d-b514-42af0a0253b0] Socket close event received\n2025-07-19 13:45:36.877 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57465 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:46:36.854 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 13:46:36.856 [info] [command][7446d04a-a186-436b-8cf9-f9db53e89ed7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""7446d04a-a186-436b-8cf9-f9db53e89ed7""}\n2025-07-19 13:46:36.857 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:46011][a643f9c3-2f92-4fc7-8a90-815fadac5221] received connection request\n2025-07-19 13:46:36.858 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:46:36.902 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a643f9c3-2f92-4fc7-8a90-815fadac5221] socks forwarding established\n2025-07-19 13:46:36.965 [info] [command][7446d04a-a186-436b-8cf9-f9db53e89ed7] Process exited with code 0\n2025-07-19 13:46:36.965 [info] [forwarding][multiplex][127.0.0.1:62786 -> 127.0.0.1:62745 -> 127.0.0.1:46011][a643f9c3-2f92-4fc7-8a90-815fadac5221] socks connection closed\n2025-07-19 13:46:36.965 [info] [command][7446d04a-a186-436b-8cf9-f9db53e89ed7] Socket close event received\n2025-07-19 13:46:36.992 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 62745 for 127.0.0.1 port 46011, connect from 127.0.0.1 port 57497 to 127.0.0.1 port 62745, nchannels 6\n\n2025-07-19 13:46:56.592 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-19 13:46:56.592 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-19 13:46:56.599 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:34135][92a93c4c-3631-48b4-b3a2-63075964f7f6] received connection request\n2025-07-19 13:46:56.599 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:46:59.613 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-19 13:46:59.614 [error] Failed to connect to Cursor server at http://127.0.0.1:62785, attempt 1 of 3 This operation was aborted\n2025-07-19 13:46:59.617 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:34135][3435027c-1e75-44f1-8788-c5b8c70a52f8] received connection request\n2025-07-19 13:46:59.618 [info] (ssh_tunnel) stderr: debug1: Connection to port 62745 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 13:46:59.731 [info] Terminating existing SSH process with pid: 22650\n2025-07-19 13:46:59.731 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-19 13:46:59.732 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-6bnp9t/socket.sock\n2025-07-19 13:46:59.732 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-19 13:46:59.733 [error] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][3435027c-1e75-44f1-8788-c5b8c70a52f8] error while creating socks forwarding Socket closed\n2025-07-19 13:46:59.733 [error] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][92a93c4c-3631-48b4-b3a2-63075964f7f6] error while creating socks forwarding Socket closed\n2025-07-19 13:46:59.733 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][c0bbe234-1008-4f82-9006-5e57fa6fba8d] socks connection closed\n2025-07-19 13:46:59.733 [info] [forwarding][code][127.0.0.1:62785 -> 127.0.0.1:62745 -> 127.0.0.1:34135][e0a5e9d2-f7d6-4b91-8a0d-628324bb3e2f] socks connection closed\n2025-07-19 13:46:59.736 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_47661.sh"" | ssh -v -T -D 57512 horeka.scc.kit.edu bash --login -c bash\n2025-07-19 13:46:59.736 [info] Started installation script. Waiting for it to finish...\n2025-07-19 13:46:59.736 [info] Waiting for server to install via process(31698)...\n2025-07-19 13:46:59.741 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-19 13:46:59.741 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-19 13:46:59.743 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-19 13:46:59.743 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-19 13:46:59.743 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\n\n2025-07-19 13:46:59.743 [info] (ssh_tunnel) stderr: debug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-19 13:46:59.744 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-19 13:46:59.745 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-19 13:46:59.745 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-19 13:46:59.745 [info] Retrying connection in 5 seconds...\n2025-07-19 13:47:00.616 [error] Failed to connect to Cursor server at http://127.0.0.1:62785, attempt 2 of 3 This operation was aborted\n2025-07-19 13:47:01.625 [error] Failed to connect to Cursor server at http://127.0.0.1:62785, attempt 3 of 3 This operation was aborted\n2025-07-19 13:47:01.625 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-19 13:47:01.625 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-19 14:03:04.938 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_47661.sh\n2025-07-19 14:03:04.938 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:62786\n2025-07-19 14:03:04.938 [error] [forwarding][multiplex][127.0.0.1:62786 -> unknown}][2c53b5ca-74de-4f36-a4b3-4b8f746ffc5a] remote server not configured\n2025-07-19 14:03:04.938 [info] [command][de3221bf-6e48-4593-a9f0-fcdaeb4fdde1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""574757b8-1b27-4211-b523-61121ad825f0"",""id"":""de3221bf-6e48-4593-a9f0-fcdaeb4fdde1""}\n2025-07-19 14:03:04.939 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-6bnp9t/socket.sock\n2025-07-19 14:03:04.939 [error] [command][de3221bf-6e48-4593-a9f0-fcdaeb4fdde1] Socket error: Error: read ECONNRESET\n2025-07-19 14:03:04.939 [info] [command][de3221bf-6e48-4593-a9f0-fcdaeb4fdde1] Socket close event received\n2025-07-19 14:03:04.941 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_25750.sh"" | ssh -v -T -D 57514 horeka.scc.kit.edu bash --login -c bash\n2025-07-19 14:03:04.941 [info] Started installation script. Waiting for it to finish...\n2025-07-19 14:03:04.941 [info] Waiting for server to install via process(31705)...\n2025-07-19 14:03:04.947 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-19 14:03:04.947 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-19 14:03:04.947 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-19 14:03:04.947 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-19 14:03:04.947 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-19 14:03:04.947 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-19 14:03:04.949 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-19 14:03:04.949 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-19 14:03:04.949 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-19 14:03:04.949 [error] Failed to connect after 2 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-19 14:03:04.949 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_25750.sh\n2025-07-19 14:03:04.949 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-19 16:11:23.289 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-19 16:11:23.305 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-19 16:11:23.305 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-19 16:11:23.307 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-19 16:11:23.310 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_15249.sh"" | ssh -v -T -D 58205 horeka.scc.kit.edu bash --login -c bash\n2025-07-19 16:11:23.310 [info] Started installation script. Waiting for it to finish...\n2025-07-19 16:11:23.310 [info] Waiting for server to install via process(32272)...\n2025-07-19 16:11:23.315 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-19 16:11:23.315 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-19 16:11:23.316 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-19 16:11:23.316 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-19 16:11:23.317 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\n\n2025-07-19 16:11:23.317 [info] (ssh_tunnel) stderr: debug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-19 16:11:23.412 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-19 16:11:23.412 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\n\n2025-07-19 16:11:23.412 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-19 16:11:23.413 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-19 16:11:23.413 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-19 16:11:23.413 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-19 16:11:23.465 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-19 16:11:23.469 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-19 16:11:23.469 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-19 16:11:23.497 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\n\n2025-07-19 16:11:23.497 [info] (ssh_tunnel) stderr: debug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-19 16:11:23.498 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-19 16:11:23.540 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-19 16:11:23.541 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-19 16:11:23.541 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-19 16:11:23.546 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-19 16:11:23.546 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-19 16:11:23.653 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-19 16:11:23.689 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-19 16:11:23.694 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\ndebug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \n\n2025-07-19 16:11:23.694 [info] (ssh_tunnel) stderr: debug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-19 16:11:24.304 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\n\n2025-07-19 16:11:24.304 [info] (ssh_tunnel) stderr: debug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-19 16:11:24.343 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-19 16:11:24.535 [info] Askpass server received request: POST /\n2025-07-19 16:11:24.535 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-19 16:11:24.535 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-19 16:12:03.861 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-19 16:12:03.956 [info] Askpass server received request: POST /\n2025-07-19 16:12:03.956 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-19 16:12:03.956 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-19 16:12:11.464 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:58205 forwarded to remote address socks:0\n\n2025-07-19 16:12:11.465 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 58205.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 58205.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\n\n2025-07-19 16:12:11.465 [info] (ssh_tunnel) stderr: debug1: channel 2: new session [client-session] (inactive timeout: 0)\ndebug1: Requesting no-more-sessions@openssh.com\n\n2025-07-19 16:12:11.466 [info] (ssh_tunnel) stderr: debug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-19 16:12:11.890 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-19 16:12:11.891 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-19 16:12:11.899 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\ndebug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-19 16:12:11.957 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-19 16:12:14.688 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-19 16:12:14.851 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-19 16:12:14.943 [info] (ssh_tunnel) stdout: Server script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\nv20.18.2\nChecking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-19 16:12:15.110 [info] (ssh_tunnel) stdout: Running multiplex server: \nCreating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-19 16:12:15.113 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-19 16:12:15.127 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-19 16:12:15.149 [info] (ssh_tunnel) stdout: Starting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js 3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5\n\n2025-07-19 16:12:15.173 [info] (ssh_tunnel) stdout: Multiplex server started with PID 3466401 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\nReading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-19 16:12:15.698 [info] (ssh_tunnel) stdout: Checking for code servers\n\n2025-07-19 16:12:15.852 [info] (ssh_tunnel) stdout: Code server script is already running /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server. Running processes are 864386 sh /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms\n\n2025-07-19 16:12:15.858 [info] (ssh_tunnel) stdout: Code server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-19 16:12:15.909 [info] (ssh_tunnel) stdout: 4e28f65d0467f49ace4fd676: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==38205==\nmultiplexConnectionToken==3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5==\ncodeListeningOn==34135==\ncodeConnectionToken==6f7dedd2-3909-463d-b8e4-f85a9da2f87d==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\n4e28f65d0467f49ace4fd676: end\n\n2025-07-19 16:12:15.910 [info] Server install command exit code: 0\n2025-07-19 16:12:15.910 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_15249.sh\n2025-07-19 16:12:15.912 [info] [forwarding][code] creating new forwarding server\n2025-07-19 16:12:15.912 [info] [forwarding][code] server listening on 127.0.0.1:58258\n2025-07-19 16:12:15.912 [info] [forwarding][code] Set up server\n2025-07-19 16:12:15.912 [info] [remote-ssh] codeListeningOn (remote=[object Object]; local=[object Object]) codeConnectionToken: 6f7dedd2-3909-463d-b8e4-f85a9da2f87d\n2025-07-19 16:12:15.912 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-19 16:12:15.912 [info] [forwarding][multiplex] server listening on 127.0.0.1:58259\n2025-07-19 16:12:15.912 [info] [forwarding][multiplex] Set up server\n2025-07-19 16:12:15.913 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: 3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5\n2025-07-19 16:12:15.913 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:12:15.915 [info] (ssh_tunnel) stdout: Unlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-19 16:12:15.915 [info] [command][1d5ed8fb-139d-4138-94b2-8776cbf164ac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1d5ed8fb-139d-4138-94b2-8776cbf164ac""}\n2025-07-19 16:12:15.916 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0723ec2f-3856-4b93-949c-3420b9ccb1e0] received connection request\n2025-07-19 16:12:15.916 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:12:15.927 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:34135][1cc8e06f-3da9-4ded-ba9a-5230469d6ffa] received connection request\n2025-07-19 16:12:15.927 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:12:15.978 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0723ec2f-3856-4b93-949c-3420b9ccb1e0] socks forwarding established\n2025-07-19 16:12:15.978 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][1cc8e06f-3da9-4ded-ba9a-5230469d6ffa] socks forwarding established\n2025-07-19 16:12:16.015 [info] Successfully connected to Cursor server at http://127.0.0.1:58258/version\n2025-07-19 16:12:16.015 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-19 16:12:16.016 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ecac9c4b-6cdf-4e87-9778-402b6903f6b7] received connection request\n2025-07-19 16:12:16.016 [info] [command][799bf6ee-a089-4f46-851b-0ba0fa3ca766] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""799bf6ee-a089-4f46-851b-0ba0fa3ca766""}\n2025-07-19 16:12:16.016 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:12:16.042 [info] [command][1d5ed8fb-139d-4138-94b2-8776cbf164ac] Process exited with code 0\n2025-07-19 16:12:16.042 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0723ec2f-3856-4b93-949c-3420b9ccb1e0] socks connection closed\n2025-07-19 16:12:16.042 [info] [command][1d5ed8fb-139d-4138-94b2-8776cbf164ac] Socket close event received\n2025-07-19 16:12:16.058 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ecac9c4b-6cdf-4e87-9778-402b6903f6b7] socks forwarding established\n2025-07-19 16:12:16.074 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58261 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:12:16.105 [info] [command][799bf6ee-a089-4f46-851b-0ba0fa3ca766] Process exited with code 0\n2025-07-19 16:12:16.106 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-19 16:12:16.106 [info] [remote-ssh] Resolved exec server. Socks port: 58205\n2025-07-19 16:12:16.106 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":58258,""connectionToken"":""6f7dedd2-3909-463d-b8e4-f85a9da2f87d"",""extensionHostEnv"":{}}. Socks port: 58205\n2025-07-19 16:12:16.106 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ecac9c4b-6cdf-4e87-9778-402b6903f6b7] socks connection closed\n2025-07-19 16:12:16.106 [info] [command][799bf6ee-a089-4f46-851b-0ba0fa3ca766] Socket close event received\n2025-07-19 16:12:16.136 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58265 to 127.0.0.1 port 58205, nchannels 5\n\n2025-07-19 16:12:16.171 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:34135][a09a6874-3e64-4f2c-bb31-642b537e041c] received connection request\n2025-07-19 16:12:16.173 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:12:16.208 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][a09a6874-3e64-4f2c-bb31-642b537e041c] socks forwarding established\n2025-07-19 16:12:16.256 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:34135][392059d8-b4c3-46c2-88c5-8dc7f6270339] received connection request\n2025-07-19 16:12:16.257 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:12:16.287 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][392059d8-b4c3-46c2-88c5-8dc7f6270339] socks forwarding established\n2025-07-19 16:12:16.488 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-19 16:12:19.050 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 34135, connect from 127.0.0.1 port 58263 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:12:19.050 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][1cc8e06f-3da9-4ded-ba9a-5230469d6ffa] socks connection closed\n2025-07-19 16:12:21.567 [info] [tunnel-forwarding][localhost:8791 -> localhost:8791] server listening\n2025-07-19 16:12:21.567 [info] Cross binding to [::1]:8791. Originally bound to 127.0.0.1:8791\n2025-07-19 16:12:21.567 [info] [tunnel-forwarding][::1:8791 -> localhost:8791] server listening\n2025-07-19 16:12:25.234 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:34135][8ba5a56f-fde5-4fbb-9c43-c410a9a36f12] received connection request\n2025-07-19 16:12:25.234 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:12:25.265 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][8ba5a56f-fde5-4fbb-9c43-c410a9a36f12] socks forwarding established\n2025-07-19 16:12:31.308 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][8ba5a56f-fde5-4fbb-9c43-c410a9a36f12] socks connection closed\n2025-07-19 16:12:31.340 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 34135, connect from 127.0.0.1 port 58341 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:13:16.043 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:13:16.043 [info] [command][421a67d8-37cf-4171-8020-9f903a520a02] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""421a67d8-37cf-4171-8020-9f903a520a02""}\n2025-07-19 16:13:16.043 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a732bdfd-3f60-4a44-97a1-6c9a3d74b179] received connection request\n2025-07-19 16:13:16.044 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:13:16.076 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a732bdfd-3f60-4a44-97a1-6c9a3d74b179] socks forwarding established\n2025-07-19 16:13:16.122 [info] [command][421a67d8-37cf-4171-8020-9f903a520a02] Process exited with code 0\n2025-07-19 16:13:16.123 [info] [command][421a67d8-37cf-4171-8020-9f903a520a02] Socket close event received\n2025-07-19 16:13:16.123 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a732bdfd-3f60-4a44-97a1-6c9a3d74b179] socks connection closed\n2025-07-19 16:13:16.234 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58430 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:14:16.125 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:14:16.126 [info] [command][a5ab82c2-da45-495a-86df-3f91e2388239] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a5ab82c2-da45-495a-86df-3f91e2388239""}\n2025-07-19 16:14:16.127 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][79d74d4b-6584-4bcb-be3d-3cead87e1a65] received connection request\n2025-07-19 16:14:16.128 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:14:16.160 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][79d74d4b-6584-4bcb-be3d-3cead87e1a65] socks forwarding established\n2025-07-19 16:14:16.207 [info] [command][a5ab82c2-da45-495a-86df-3f91e2388239] Process exited with code 0\n2025-07-19 16:14:16.208 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][79d74d4b-6584-4bcb-be3d-3cead87e1a65] socks connection closed\n2025-07-19 16:14:16.208 [info] [command][a5ab82c2-da45-495a-86df-3f91e2388239] Socket close event received\n2025-07-19 16:14:16.238 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58487 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:15:16.209 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:15:16.211 [info] [command][bafa2cdc-6243-4489-bb2b-d717c11fce5b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""bafa2cdc-6243-4489-bb2b-d717c11fce5b""}\n2025-07-19 16:15:16.213 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][821e165e-317a-4cb2-9c33-ed79465a7b72] received connection request\n2025-07-19 16:15:16.214 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:15:16.246 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][821e165e-317a-4cb2-9c33-ed79465a7b72] socks forwarding established\n2025-07-19 16:15:16.290 [info] [command][bafa2cdc-6243-4489-bb2b-d717c11fce5b] Process exited with code 0\n2025-07-19 16:15:16.291 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][821e165e-317a-4cb2-9c33-ed79465a7b72] socks connection closed\n2025-07-19 16:15:16.291 [info] [command][bafa2cdc-6243-4489-bb2b-d717c11fce5b] Socket close event received\n2025-07-19 16:15:16.320 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58518 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:16:16.294 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:16:16.296 [info] [command][a1d1824f-d0ff-462d-8a14-40bc84207e6c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a1d1824f-d0ff-462d-8a14-40bc84207e6c""}\n2025-07-19 16:16:16.296 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][dfcf3b19-8368-4289-be54-3a37ee4245e0] received connection request\n2025-07-19 16:16:16.296 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 16:16:16.296 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:16:16.328 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dfcf3b19-8368-4289-be54-3a37ee4245e0] socks forwarding established\n2025-07-19 16:16:16.370 [info] [command][a1d1824f-d0ff-462d-8a14-40bc84207e6c] Process exited with code 0\n2025-07-19 16:16:16.371 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dfcf3b19-8368-4289-be54-3a37ee4245e0] socks connection closed\n2025-07-19 16:16:16.371 [info] [command][a1d1824f-d0ff-462d-8a14-40bc84207e6c] Socket close event received\n2025-07-19 16:16:16.401 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58574 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:17:16.372 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:17:16.375 [info] [command][9b58006c-f845-40c9-acd9-4ee89299453e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9b58006c-f845-40c9-acd9-4ee89299453e""}\n2025-07-19 16:17:16.375 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][bdc9f5a6-0037-4821-b9c2-bebe830237e7] received connection request\n2025-07-19 16:17:16.376 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:17:16.443 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bdc9f5a6-0037-4821-b9c2-bebe830237e7] socks forwarding established\n2025-07-19 16:17:16.585 [info] [command][9b58006c-f845-40c9-acd9-4ee89299453e] Process exited with code 0\n2025-07-19 16:17:16.585 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bdc9f5a6-0037-4821-b9c2-bebe830237e7] socks connection closed\n2025-07-19 16:17:16.586 [info] [command][9b58006c-f845-40c9-acd9-4ee89299453e] Socket close event received\n2025-07-19 16:17:16.616 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58626 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:18:16.590 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:18:16.593 [info] [command][21c31163-1fcb-451b-889b-20ee47ff6d91] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""21c31163-1fcb-451b-889b-20ee47ff6d91""}\n2025-07-19 16:18:16.593 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][051e7b26-38da-44af-8cca-11ddf68e83a0] received connection request\n2025-07-19 16:18:16.594 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:18:16.634 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][051e7b26-38da-44af-8cca-11ddf68e83a0] socks forwarding established\n2025-07-19 16:18:16.680 [info] [command][21c31163-1fcb-451b-889b-20ee47ff6d91] Process exited with code 0\n2025-07-19 16:18:16.681 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][051e7b26-38da-44af-8cca-11ddf68e83a0] socks connection closed\n2025-07-19 16:18:16.681 [info] [command][21c31163-1fcb-451b-889b-20ee47ff6d91] Socket close event received\n2025-07-19 16:18:16.778 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58653 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:19:16.681 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:19:16.683 [info] [command][79fb9ed4-c9dc-407a-b7b6-50d8edab1629] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""79fb9ed4-c9dc-407a-b7b6-50d8edab1629""}\n2025-07-19 16:19:16.684 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2499ac47-39cb-46bf-9059-9329fa88026d] received connection request\n2025-07-19 16:19:16.684 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:19:16.715 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2499ac47-39cb-46bf-9059-9329fa88026d] socks forwarding established\n2025-07-19 16:19:16.753 [info] [command][79fb9ed4-c9dc-407a-b7b6-50d8edab1629] Process exited with code 0\n2025-07-19 16:19:16.754 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2499ac47-39cb-46bf-9059-9329fa88026d] socks connection closed\n2025-07-19 16:19:16.754 [info] [command][79fb9ed4-c9dc-407a-b7b6-50d8edab1629] Socket close event received\n2025-07-19 16:19:16.783 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58693 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:20:16.757 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:20:16.759 [info] [command][d1fa474d-aee6-4dfb-ba55-42619eec2e0f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d1fa474d-aee6-4dfb-ba55-42619eec2e0f""}\n2025-07-19 16:20:16.760 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8b74b79c-d9a6-43cb-8787-485635e0d156] received connection request\n2025-07-19 16:20:16.761 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:20:16.849 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8b74b79c-d9a6-43cb-8787-485635e0d156] socks forwarding established\n2025-07-19 16:20:16.936 [info] [command][d1fa474d-aee6-4dfb-ba55-42619eec2e0f] Process exited with code 0\n2025-07-19 16:20:16.937 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8b74b79c-d9a6-43cb-8787-485635e0d156] socks connection closed\n2025-07-19 16:20:16.937 [info] [command][d1fa474d-aee6-4dfb-ba55-42619eec2e0f] Socket close event received\n2025-07-19 16:20:16.969 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58723 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:21:16.937 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:21:16.939 [info] [command][1442270c-fa13-415d-8621-f8f9fbcf2ac2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1442270c-fa13-415d-8621-f8f9fbcf2ac2""}\n2025-07-19 16:21:16.940 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][aff3db0f-f8fd-418c-ad9d-9913b9d9831d] received connection request\n2025-07-19 16:21:16.940 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 16:21:16.940 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:21:16.973 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][aff3db0f-f8fd-418c-ad9d-9913b9d9831d] socks forwarding established\n2025-07-19 16:21:17.018 [info] [command][1442270c-fa13-415d-8621-f8f9fbcf2ac2] Process exited with code 0\n2025-07-19 16:21:17.018 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][aff3db0f-f8fd-418c-ad9d-9913b9d9831d] socks connection closed\n2025-07-19 16:21:17.018 [info] [command][1442270c-fa13-415d-8621-f8f9fbcf2ac2] Socket close event received\n2025-07-19 16:21:17.141 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58751 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:22:17.024 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:22:17.027 [info] [command][11ebb88b-64ec-4df7-8f5b-3f72374c2331] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""11ebb88b-64ec-4df7-8f5b-3f72374c2331""}\n2025-07-19 16:22:17.028 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7803669c-9798-4352-93d2-279529457022] received connection request\n2025-07-19 16:22:17.029 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 16:22:17.029 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:22:17.065 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7803669c-9798-4352-93d2-279529457022] socks forwarding established\n2025-07-19 16:22:17.109 [info] [command][11ebb88b-64ec-4df7-8f5b-3f72374c2331] Process exited with code 0\n2025-07-19 16:22:17.109 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7803669c-9798-4352-93d2-279529457022] socks connection closed\n2025-07-19 16:22:17.110 [info] [command][11ebb88b-64ec-4df7-8f5b-3f72374c2331] Socket close event received\n2025-07-19 16:22:17.142 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58790 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:23:17.115 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:23:17.117 [info] [command][7839c551-3545-438d-98e8-a77a0def02f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7839c551-3545-438d-98e8-a77a0def02f4""}\n2025-07-19 16:23:17.118 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1aa468f4-1de9-4c80-a76f-7dba5ef52bec] received connection request\n2025-07-19 16:23:17.118 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:23:17.150 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1aa468f4-1de9-4c80-a76f-7dba5ef52bec] socks forwarding established\n2025-07-19 16:23:17.197 [info] [command][7839c551-3545-438d-98e8-a77a0def02f4] Process exited with code 0\n2025-07-19 16:23:17.198 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1aa468f4-1de9-4c80-a76f-7dba5ef52bec] socks connection closed\n2025-07-19 16:23:17.198 [info] [command][7839c551-3545-438d-98e8-a77a0def02f4] Socket close event received\n2025-07-19 16:23:17.227 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58811 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:24:17.202 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:24:17.205 [info] [command][cbf5951e-5bab-4985-a472-3aa6de008677] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""cbf5951e-5bab-4985-a472-3aa6de008677""}\n2025-07-19 16:24:17.206 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][bc2d3d5f-5fea-4b77-8b47-5c525fe1f78b] received connection request\n2025-07-19 16:24:17.206 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:24:17.237 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bc2d3d5f-5fea-4b77-8b47-5c525fe1f78b] socks forwarding established\n2025-07-19 16:24:17.283 [info] [command][cbf5951e-5bab-4985-a472-3aa6de008677] Process exited with code 0\n2025-07-19 16:24:17.284 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bc2d3d5f-5fea-4b77-8b47-5c525fe1f78b] socks connection closed\n2025-07-19 16:24:17.284 [info] [command][cbf5951e-5bab-4985-a472-3aa6de008677] Socket close event received\n2025-07-19 16:24:17.314 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58844 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:25:17.289 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:25:17.292 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][068ea113-5147-4a89-b4b7-6fd25c99f2b6] received connection request\n2025-07-19 16:25:17.292 [info] [command][77e948d0-69d1-4b66-aec0-a7638df09811] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""77e948d0-69d1-4b66-aec0-a7638df09811""}\n2025-07-19 16:25:17.293 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 16:25:17.293 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:25:17.324 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][068ea113-5147-4a89-b4b7-6fd25c99f2b6] socks forwarding established\n2025-07-19 16:25:17.369 [info] [command][77e948d0-69d1-4b66-aec0-a7638df09811] Process exited with code 0\n2025-07-19 16:25:17.369 [info] [command][77e948d0-69d1-4b66-aec0-a7638df09811] Socket close event received\n2025-07-19 16:25:17.370 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][068ea113-5147-4a89-b4b7-6fd25c99f2b6] socks connection closed\n2025-07-19 16:25:17.400 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58863 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:26:17.374 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:26:17.376 [info] [command][e1bee493-7ea2-484b-b908-d4568ea2165d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e1bee493-7ea2-484b-b908-d4568ea2165d""}\n2025-07-19 16:26:17.377 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][73f779f3-5cc6-45a0-9550-4cb66b9c844f] received connection request\n2025-07-19 16:26:17.378 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:26:17.408 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][73f779f3-5cc6-45a0-9550-4cb66b9c844f] socks forwarding established\n2025-07-19 16:26:17.452 [info] [command][e1bee493-7ea2-484b-b908-d4568ea2165d] Process exited with code 0\n2025-07-19 16:26:17.453 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][73f779f3-5cc6-45a0-9550-4cb66b9c844f] socks connection closed\n2025-07-19 16:26:17.453 [info] [command][e1bee493-7ea2-484b-b908-d4568ea2165d] Socket close event received\n2025-07-19 16:26:17.483 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58890 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:27:17.457 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:27:17.459 [info] [command][862fe480-d68f-4224-9770-3f1d765c2e64] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""862fe480-d68f-4224-9770-3f1d765c2e64""}\n2025-07-19 16:27:17.460 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0982a210-c4ed-4eb9-899f-63d5e42f769b] received connection request\n2025-07-19 16:27:17.460 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:27:17.525 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0982a210-c4ed-4eb9-899f-63d5e42f769b] socks forwarding established\n2025-07-19 16:27:17.570 [info] [command][862fe480-d68f-4224-9770-3f1d765c2e64] Process exited with code 0\n2025-07-19 16:27:17.570 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0982a210-c4ed-4eb9-899f-63d5e42f769b] socks connection closed\n2025-07-19 16:27:17.570 [info] [command][862fe480-d68f-4224-9770-3f1d765c2e64] Socket close event received\n2025-07-19 16:27:17.602 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58928 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:28:17.574 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:28:17.576 [info] [command][2140b330-c043-4f27-a12b-0f81a7a75547] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2140b330-c043-4f27-a12b-0f81a7a75547""}\n2025-07-19 16:28:17.576 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1903b167-4202-4398-ad63-43a88ec5a2fe] received connection request\n2025-07-19 16:28:17.577 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:28:17.615 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1903b167-4202-4398-ad63-43a88ec5a2fe] socks forwarding established\n2025-07-19 16:28:17.658 [info] [command][2140b330-c043-4f27-a12b-0f81a7a75547] Process exited with code 0\n2025-07-19 16:28:17.659 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1903b167-4202-4398-ad63-43a88ec5a2fe] socks connection closed\n2025-07-19 16:28:17.659 [info] [command][2140b330-c043-4f27-a12b-0f81a7a75547] Socket close event received\n2025-07-19 16:28:17.690 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 58958 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:29:17.664 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:29:17.665 [info] [command][63e4b49c-8620-4e24-a6db-d28a0ab59b3b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""63e4b49c-8620-4e24-a6db-d28a0ab59b3b""}\n2025-07-19 16:29:17.666 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][410f5a17-13af-461d-906c-0ee5b9b1a08b] received connection request\n2025-07-19 16:29:17.666 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:29:17.736 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][410f5a17-13af-461d-906c-0ee5b9b1a08b] socks forwarding established\n2025-07-19 16:29:17.780 [info] [command][63e4b49c-8620-4e24-a6db-d28a0ab59b3b] Process exited with code 0\n2025-07-19 16:29:17.781 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][410f5a17-13af-461d-906c-0ee5b9b1a08b] socks connection closed\n2025-07-19 16:29:17.781 [info] [command][63e4b49c-8620-4e24-a6db-d28a0ab59b3b] Socket close event received\n2025-07-19 16:29:17.811 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59008 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:30:17.786 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:30:17.789 [info] [command][0bce4123-c2ba-418d-9943-c2ec1fb3cd65] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0bce4123-c2ba-418d-9943-c2ec1fb3cd65""}\n2025-07-19 16:30:17.790 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4414aeec-bcc0-4bfd-a465-beea1ad5c189] received connection request\n2025-07-19 16:30:17.790 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:30:17.908 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4414aeec-bcc0-4bfd-a465-beea1ad5c189] socks forwarding established\n2025-07-19 16:30:17.953 [info] [command][0bce4123-c2ba-418d-9943-c2ec1fb3cd65] Process exited with code 0\n2025-07-19 16:30:17.953 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4414aeec-bcc0-4bfd-a465-beea1ad5c189] socks connection closed\n2025-07-19 16:30:17.953 [info] [command][0bce4123-c2ba-418d-9943-c2ec1fb3cd65] Socket close event received\n2025-07-19 16:30:17.986 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59058 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:31:17.955 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:31:17.958 [info] [command][e5da77a7-0966-4027-a938-7ff107520646] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e5da77a7-0966-4027-a938-7ff107520646""}\n2025-07-19 16:31:17.958 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d8b19e35-3d00-4ecb-be77-879f5e61f8f0] received connection request\n2025-07-19 16:31:17.959 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:31:18.033 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d8b19e35-3d00-4ecb-be77-879f5e61f8f0] socks forwarding established\n2025-07-19 16:31:18.151 [info] [command][e5da77a7-0966-4027-a938-7ff107520646] Process exited with code 0\n2025-07-19 16:31:18.151 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d8b19e35-3d00-4ecb-be77-879f5e61f8f0] socks connection closed\n2025-07-19 16:31:18.151 [info] [command][e5da77a7-0966-4027-a938-7ff107520646] Socket close event received\n2025-07-19 16:31:18.222 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59096 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:32:18.156 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:32:18.158 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0bafac54-4143-4290-89af-6acbc6d757d1] received connection request\n2025-07-19 16:32:18.158 [info] [command][56562339-eec8-4f57-9f4b-0815646212e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""56562339-eec8-4f57-9f4b-0815646212e5""}\n2025-07-19 16:32:18.159 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:32:18.190 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0bafac54-4143-4290-89af-6acbc6d757d1] socks forwarding established\n2025-07-19 16:32:18.240 [info] [command][56562339-eec8-4f57-9f4b-0815646212e5] Process exited with code 0\n2025-07-19 16:32:18.240 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0bafac54-4143-4290-89af-6acbc6d757d1] socks connection closed\n2025-07-19 16:32:18.240 [info] [command][56562339-eec8-4f57-9f4b-0815646212e5] Socket close event received\n2025-07-19 16:32:18.344 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59143 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:33:18.242 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:33:18.244 [info] [command][966365f5-6404-42c3-a2f4-f0f19bfc183a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""966365f5-6404-42c3-a2f4-f0f19bfc183a""}\n2025-07-19 16:33:18.245 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][87ee4f27-9053-4913-80d7-bb7af559c207] received connection request\n2025-07-19 16:33:18.246 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:33:18.284 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][87ee4f27-9053-4913-80d7-bb7af559c207] socks forwarding established\n2025-07-19 16:33:18.329 [info] [command][966365f5-6404-42c3-a2f4-f0f19bfc183a] Process exited with code 0\n2025-07-19 16:33:18.329 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][87ee4f27-9053-4913-80d7-bb7af559c207] socks connection closed\n2025-07-19 16:33:18.329 [info] [command][966365f5-6404-42c3-a2f4-f0f19bfc183a] Socket close event received\n2025-07-19 16:33:18.362 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59201 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:34:18.333 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:34:18.335 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0a917092-6d42-4ea7-bff8-bd53bc28e865] received connection request\n2025-07-19 16:34:18.336 [info] [command][1c48cb81-0d62-4957-9b45-65fcaf76302f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1c48cb81-0d62-4957-9b45-65fcaf76302f""}\n2025-07-19 16:34:18.336 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:34:18.447 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0a917092-6d42-4ea7-bff8-bd53bc28e865] socks forwarding established\n2025-07-19 16:34:18.598 [info] [command][1c48cb81-0d62-4957-9b45-65fcaf76302f] Process exited with code 0\n2025-07-19 16:34:18.598 [info] [command][1c48cb81-0d62-4957-9b45-65fcaf76302f] Socket close event received\n2025-07-19 16:34:18.599 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0a917092-6d42-4ea7-bff8-bd53bc28e865] socks connection closed\n2025-07-19 16:34:18.705 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59244 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:35:18.603 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:35:18.605 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f01f6fd9-6016-4e27-848c-73a621528bb2] received connection request\n2025-07-19 16:35:18.605 [info] [command][db555a24-d109-4936-8d98-023ea744211f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""db555a24-d109-4936-8d98-023ea744211f""}\n2025-07-19 16:35:18.605 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:35:18.686 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f01f6fd9-6016-4e27-848c-73a621528bb2] socks forwarding established\n2025-07-19 16:35:18.838 [info] [command][db555a24-d109-4936-8d98-023ea744211f] Process exited with code 0\n2025-07-19 16:35:18.839 [info] [command][db555a24-d109-4936-8d98-023ea744211f] Socket close event received\n2025-07-19 16:35:18.839 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f01f6fd9-6016-4e27-848c-73a621528bb2] socks connection closed\n2025-07-19 16:35:19.009 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59268 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:36:18.843 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:36:18.846 [info] [command][0d32d113-0d15-455b-b594-ee18ff833a19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0d32d113-0d15-455b-b594-ee18ff833a19""}\n2025-07-19 16:36:18.847 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7f3d7ff6-f1f0-4b9c-9240-b8a66e5f0a07] received connection request\n2025-07-19 16:36:18.847 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:36:18.876 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7f3d7ff6-f1f0-4b9c-9240-b8a66e5f0a07] socks forwarding established\n2025-07-19 16:36:18.920 [info] [command][0d32d113-0d15-455b-b594-ee18ff833a19] Process exited with code 0\n2025-07-19 16:36:18.920 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7f3d7ff6-f1f0-4b9c-9240-b8a66e5f0a07] socks connection closed\n2025-07-19 16:36:18.920 [info] [command][0d32d113-0d15-455b-b594-ee18ff833a19] Socket close event received\n2025-07-19 16:36:18.950 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59304 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:37:18.924 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:37:18.926 [info] [command][846ed4c9-e17c-4c2f-9db8-a3b0cdc2d5ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""846ed4c9-e17c-4c2f-9db8-a3b0cdc2d5ed""}\n2025-07-19 16:37:18.927 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][caf08682-c0f0-46ea-a4a0-8d23c43f36b5] received connection request\n2025-07-19 16:37:18.928 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:37:18.961 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][caf08682-c0f0-46ea-a4a0-8d23c43f36b5] socks forwarding established\n2025-07-19 16:37:19.006 [info] [command][846ed4c9-e17c-4c2f-9db8-a3b0cdc2d5ed] Process exited with code 0\n2025-07-19 16:37:19.006 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][caf08682-c0f0-46ea-a4a0-8d23c43f36b5] socks connection closed\n2025-07-19 16:37:19.007 [info] [command][846ed4c9-e17c-4c2f-9db8-a3b0cdc2d5ed] Socket close event received\n2025-07-19 16:37:19.036 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59345 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:38:19.013 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:38:19.015 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][cb0fff3b-54f8-45ee-84e6-5b27cd49a693] received connection request\n2025-07-19 16:38:19.016 [info] [command][fcc91569-8f8c-4981-a7bf-c530db54dc32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fcc91569-8f8c-4981-a7bf-c530db54dc32""}\n2025-07-19 16:38:19.016 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:38:19.121 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cb0fff3b-54f8-45ee-84e6-5b27cd49a693] socks forwarding established\n2025-07-19 16:38:19.167 [info] [command][fcc91569-8f8c-4981-a7bf-c530db54dc32] Process exited with code 0\n2025-07-19 16:38:19.167 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cb0fff3b-54f8-45ee-84e6-5b27cd49a693] socks connection closed\n2025-07-19 16:38:19.167 [info] [command][fcc91569-8f8c-4981-a7bf-c530db54dc32] Socket close event received\n2025-07-19 16:38:19.201 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59366 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:39:19.172 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:39:19.175 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d7c55bb2-367c-4587-b6bf-3956e5a01887] received connection request\n2025-07-19 16:39:19.175 [info] [command][35214730-003d-41fc-91dd-4bfaaaa3a92b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""35214730-003d-41fc-91dd-4bfaaaa3a92b""}\n2025-07-19 16:39:19.175 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:39:19.208 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d7c55bb2-367c-4587-b6bf-3956e5a01887] socks forwarding established\n2025-07-19 16:39:19.252 [info] [command][35214730-003d-41fc-91dd-4bfaaaa3a92b] Process exited with code 0\n2025-07-19 16:39:19.252 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d7c55bb2-367c-4587-b6bf-3956e5a01887] socks connection closed\n2025-07-19 16:39:19.253 [info] [command][35214730-003d-41fc-91dd-4bfaaaa3a92b] Socket close event received\n2025-07-19 16:39:19.281 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59417 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:40:19.258 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:40:19.259 [info] [command][33dd8e24-c933-4c22-98a5-384d7e068e6b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""33dd8e24-c933-4c22-98a5-384d7e068e6b""}\n2025-07-19 16:40:19.259 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4d4723c7-9b27-40cc-b040-6248c41d6f26] received connection request\n2025-07-19 16:40:19.260 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:40:19.290 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4d4723c7-9b27-40cc-b040-6248c41d6f26] socks forwarding established\n2025-07-19 16:40:19.335 [info] [command][33dd8e24-c933-4c22-98a5-384d7e068e6b] Process exited with code 0\n2025-07-19 16:40:19.335 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4d4723c7-9b27-40cc-b040-6248c41d6f26] socks connection closed\n2025-07-19 16:40:19.335 [info] [command][33dd8e24-c933-4c22-98a5-384d7e068e6b] Socket close event received\n2025-07-19 16:40:19.365 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59442 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:41:19.340 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:41:19.343 [info] [command][59dffe68-3ddf-497c-9a5a-74b89aee9747] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""59dffe68-3ddf-497c-9a5a-74b89aee9747""}\n2025-07-19 16:41:19.344 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9201e09b-32c0-45fd-bc80-59c295612624] received connection request\n2025-07-19 16:41:19.344 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:41:19.377 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9201e09b-32c0-45fd-bc80-59c295612624] socks forwarding established\n2025-07-19 16:41:19.421 [info] [command][59dffe68-3ddf-497c-9a5a-74b89aee9747] Process exited with code 0\n2025-07-19 16:41:19.421 [info] [command][59dffe68-3ddf-497c-9a5a-74b89aee9747] Socket close event received\n2025-07-19 16:41:19.422 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9201e09b-32c0-45fd-bc80-59c295612624] socks connection closed\n2025-07-19 16:41:19.455 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59475 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:42:19.426 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:42:19.427 [info] [command][4628a30a-e1e1-4a9f-b469-5ab062cde909] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4628a30a-e1e1-4a9f-b469-5ab062cde909""}\n2025-07-19 16:42:19.428 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][64deac32-0fd3-4542-854f-ef9b21c0280e] received connection request\n2025-07-19 16:42:19.428 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:42:19.460 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][64deac32-0fd3-4542-854f-ef9b21c0280e] socks forwarding established\n2025-07-19 16:42:19.505 [info] [command][4628a30a-e1e1-4a9f-b469-5ab062cde909] Process exited with code 0\n2025-07-19 16:42:19.505 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][64deac32-0fd3-4542-854f-ef9b21c0280e] socks connection closed\n2025-07-19 16:42:19.506 [info] [command][4628a30a-e1e1-4a9f-b469-5ab062cde909] Socket close event received\n2025-07-19 16:42:19.536 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59524 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:43:19.509 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:43:19.512 [info] [command][8aa10b94-2305-44d4-abce-d2717d811363] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8aa10b94-2305-44d4-abce-d2717d811363""}\n2025-07-19 16:43:19.512 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][754b7598-fc2f-40f9-92b9-22ff0b24f1dd] received connection request\n2025-07-19 16:43:19.513 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:43:19.546 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][754b7598-fc2f-40f9-92b9-22ff0b24f1dd] socks forwarding established\n2025-07-19 16:43:19.591 [info] [command][8aa10b94-2305-44d4-abce-d2717d811363] Process exited with code 0\n2025-07-19 16:43:19.592 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][754b7598-fc2f-40f9-92b9-22ff0b24f1dd] socks connection closed\n2025-07-19 16:43:19.592 [info] [command][8aa10b94-2305-44d4-abce-d2717d811363] Socket close event received\n2025-07-19 16:43:19.621 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59548 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:44:19.596 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:44:19.598 [info] [command][d6941304-d918-4bb5-a63f-1c5b55f95532] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d6941304-d918-4bb5-a63f-1c5b55f95532""}\n2025-07-19 16:44:19.598 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a93714f9-400b-4219-8f56-0f62838cfcb6] received connection request\n2025-07-19 16:44:19.599 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:44:19.633 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a93714f9-400b-4219-8f56-0f62838cfcb6] socks forwarding established\n2025-07-19 16:44:19.679 [info] [command][d6941304-d918-4bb5-a63f-1c5b55f95532] Process exited with code 0\n2025-07-19 16:44:19.679 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a93714f9-400b-4219-8f56-0f62838cfcb6] socks connection closed\n2025-07-19 16:44:19.679 [info] [command][d6941304-d918-4bb5-a63f-1c5b55f95532] Socket close event received\n2025-07-19 16:44:19.711 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59595 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:45:19.684 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:45:19.687 [info] [command][38f88e1e-650a-4a66-b39e-918d80f9d722] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""38f88e1e-650a-4a66-b39e-918d80f9d722""}\n2025-07-19 16:45:19.687 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fef3abd8-da3a-4d9d-9d7d-1180bca693b6] received connection request\n2025-07-19 16:45:19.688 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:45:19.856 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fef3abd8-da3a-4d9d-9d7d-1180bca693b6] socks forwarding established\n2025-07-19 16:45:19.941 [info] [command][38f88e1e-650a-4a66-b39e-918d80f9d722] Process exited with code 0\n2025-07-19 16:45:19.942 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fef3abd8-da3a-4d9d-9d7d-1180bca693b6] socks connection closed\n2025-07-19 16:45:19.943 [info] [command][38f88e1e-650a-4a66-b39e-918d80f9d722] Socket close event received\n2025-07-19 16:45:20.106 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59623 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:46:19.942 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:46:19.945 [info] [command][b9317e6a-83e6-47be-a0af-b8c173f6864d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b9317e6a-83e6-47be-a0af-b8c173f6864d""}\n2025-07-19 16:46:19.946 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ccbd717c-c9ad-4d2a-bdba-dc050c6a5b58] received connection request\n2025-07-19 16:46:19.946 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:46:20.013 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ccbd717c-c9ad-4d2a-bdba-dc050c6a5b58] socks forwarding established\n2025-07-19 16:46:20.060 [info] [command][b9317e6a-83e6-47be-a0af-b8c173f6864d] Process exited with code 0\n2025-07-19 16:46:20.060 [info] [command][b9317e6a-83e6-47be-a0af-b8c173f6864d] Socket close event received\n2025-07-19 16:46:20.060 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ccbd717c-c9ad-4d2a-bdba-dc050c6a5b58] socks connection closed\n2025-07-19 16:46:20.094 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59657 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:47:20.064 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:47:20.066 [info] [command][b70712e0-4de4-4281-b147-7fbfd26446d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b70712e0-4de4-4281-b147-7fbfd26446d0""}\n2025-07-19 16:47:20.067 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][cdf00bcc-fe6e-405f-b7b5-a392263e7416] received connection request\n2025-07-19 16:47:20.067 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:47:20.102 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cdf00bcc-fe6e-405f-b7b5-a392263e7416] socks forwarding established\n2025-07-19 16:47:20.146 [info] [command][b70712e0-4de4-4281-b147-7fbfd26446d0] Process exited with code 0\n2025-07-19 16:47:20.147 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cdf00bcc-fe6e-405f-b7b5-a392263e7416] socks connection closed\n2025-07-19 16:47:20.147 [info] [command][b70712e0-4de4-4281-b147-7fbfd26446d0] Socket close event received\n2025-07-19 16:47:20.176 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59724 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:48:20.152 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:48:20.154 [info] [command][e9525124-5b5e-403c-a3b3-747c4a5dd8af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e9525124-5b5e-403c-a3b3-747c4a5dd8af""}\n2025-07-19 16:48:20.154 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][997887f7-e195-4a34-bab2-78883753a8fe] received connection request\n2025-07-19 16:48:20.155 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:48:20.188 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][997887f7-e195-4a34-bab2-78883753a8fe] socks forwarding established\n2025-07-19 16:48:20.297 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][997887f7-e195-4a34-bab2-78883753a8fe] socks connection closed\n2025-07-19 16:48:20.298 [info] [command][e9525124-5b5e-403c-a3b3-747c4a5dd8af] Process exited with code 0\n2025-07-19 16:48:20.298 [info] [command][e9525124-5b5e-403c-a3b3-747c4a5dd8af] Socket close event received\n2025-07-19 16:48:20.330 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59752 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:49:20.304 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:49:20.308 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][72cbda83-0d8e-4c03-8b55-63ac9c1eff7e] received connection request\n2025-07-19 16:49:20.308 [info] [command][c0e0474f-ef87-45d1-ba59-4772bda92052] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c0e0474f-ef87-45d1-ba59-4772bda92052""}\n2025-07-19 16:49:20.308 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:49:20.343 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][72cbda83-0d8e-4c03-8b55-63ac9c1eff7e] socks forwarding established\n2025-07-19 16:49:20.387 [info] [command][c0e0474f-ef87-45d1-ba59-4772bda92052] Process exited with code 0\n2025-07-19 16:49:20.387 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][72cbda83-0d8e-4c03-8b55-63ac9c1eff7e] socks connection closed\n2025-07-19 16:49:20.387 [info] [command][c0e0474f-ef87-45d1-ba59-4772bda92052] Socket close event received\n2025-07-19 16:49:20.416 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59796 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:50:20.389 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:50:20.391 [info] [command][5de640ec-251e-423d-be10-802db4bb0c3d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5de640ec-251e-423d-be10-802db4bb0c3d""}\n2025-07-19 16:50:20.392 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8009eb26-c3ab-4821-87d2-bfea1bc4d1ac] received connection request\n2025-07-19 16:50:20.393 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:50:20.542 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8009eb26-c3ab-4821-87d2-bfea1bc4d1ac] socks forwarding established\n2025-07-19 16:50:20.716 [info] [command][5de640ec-251e-423d-be10-802db4bb0c3d] Process exited with code 0\n2025-07-19 16:50:20.717 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8009eb26-c3ab-4821-87d2-bfea1bc4d1ac] socks connection closed\n2025-07-19 16:50:20.717 [info] [command][5de640ec-251e-423d-be10-802db4bb0c3d] Socket close event received\n2025-07-19 16:50:20.747 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59836 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:51:20.717 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:51:20.720 [info] [command][f1e9fe6f-814a-4cbb-8256-044c2d872d0b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f1e9fe6f-814a-4cbb-8256-044c2d872d0b""}\n2025-07-19 16:51:20.720 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9cc731aa-c057-4a7f-8254-5072fdb8bee6] received connection request\n2025-07-19 16:51:20.721 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:51:20.752 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9cc731aa-c057-4a7f-8254-5072fdb8bee6] socks forwarding established\n2025-07-19 16:51:20.811 [info] [command][f1e9fe6f-814a-4cbb-8256-044c2d872d0b] Process exited with code 0\n2025-07-19 16:51:20.811 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9cc731aa-c057-4a7f-8254-5072fdb8bee6] socks connection closed\n2025-07-19 16:51:20.812 [info] [command][f1e9fe6f-814a-4cbb-8256-044c2d872d0b] Socket close event received\n2025-07-19 16:51:20.884 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59881 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:52:20.815 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:52:20.816 [info] [command][16c11c7e-bd90-4ecf-9f5b-cc705b59bc19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""16c11c7e-bd90-4ecf-9f5b-cc705b59bc19""}\n2025-07-19 16:52:20.816 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][cf601733-9677-47c9-9fd6-e4abd63cf4c4] received connection request\n2025-07-19 16:52:20.817 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:52:20.851 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cf601733-9677-47c9-9fd6-e4abd63cf4c4] socks forwarding established\n2025-07-19 16:52:20.919 [info] [command][16c11c7e-bd90-4ecf-9f5b-cc705b59bc19] Process exited with code 0\n2025-07-19 16:52:20.920 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cf601733-9677-47c9-9fd6-e4abd63cf4c4] socks connection closed\n2025-07-19 16:52:20.920 [info] [command][16c11c7e-bd90-4ecf-9f5b-cc705b59bc19] Socket close event received\n2025-07-19 16:52:20.995 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59931 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:53:20.922 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:53:20.925 [info] [command][9af81483-c2ed-417f-8b75-14a6fac40896] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9af81483-c2ed-417f-8b75-14a6fac40896""}\n2025-07-19 16:53:20.925 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fa42b6cb-a22e-4e93-a8f1-dd8900630575] received connection request\n2025-07-19 16:53:20.925 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:53:20.958 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fa42b6cb-a22e-4e93-a8f1-dd8900630575] socks forwarding established\n2025-07-19 16:53:21.005 [info] [command][9af81483-c2ed-417f-8b75-14a6fac40896] Process exited with code 0\n2025-07-19 16:53:21.005 [info] [command][9af81483-c2ed-417f-8b75-14a6fac40896] Socket close event received\n2025-07-19 16:53:21.007 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fa42b6cb-a22e-4e93-a8f1-dd8900630575] socks connection closed\n2025-07-19 16:53:21.039 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 59965 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:54:21.010 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:54:21.011 [info] [command][1c25ad92-9f0b-4e78-ab38-ce147fe2f687] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1c25ad92-9f0b-4e78-ab38-ce147fe2f687""}\n2025-07-19 16:54:21.011 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8aec18d6-bdd4-46e2-b25e-b4174d74665b] received connection request\n2025-07-19 16:54:21.011 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:54:21.043 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8aec18d6-bdd4-46e2-b25e-b4174d74665b] socks forwarding established\n2025-07-19 16:54:21.088 [info] [command][1c25ad92-9f0b-4e78-ab38-ce147fe2f687] Process exited with code 0\n2025-07-19 16:54:21.089 [info] [command][1c25ad92-9f0b-4e78-ab38-ce147fe2f687] Socket close event received\n2025-07-19 16:54:21.089 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8aec18d6-bdd4-46e2-b25e-b4174d74665b] socks connection closed\n2025-07-19 16:54:21.119 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60016 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:55:21.093 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:55:21.096 [info] [command][e6841136-d2fd-4ead-a4b3-25fa17d26dfe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e6841136-d2fd-4ead-a4b3-25fa17d26dfe""}\n2025-07-19 16:55:21.097 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][39d30122-5d04-47be-bdbc-752f4da53053] received connection request\n2025-07-19 16:55:21.097 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:55:21.164 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][39d30122-5d04-47be-bdbc-752f4da53053] socks forwarding established\n2025-07-19 16:55:21.210 [info] [command][e6841136-d2fd-4ead-a4b3-25fa17d26dfe] Process exited with code 0\n2025-07-19 16:55:21.210 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][39d30122-5d04-47be-bdbc-752f4da53053] socks connection closed\n2025-07-19 16:55:21.210 [info] [command][e6841136-d2fd-4ead-a4b3-25fa17d26dfe] Socket close event received\n2025-07-19 16:55:21.240 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60045 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:56:21.212 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:56:21.214 [info] [command][d6b5bcc1-28e9-421a-89b6-74cb968194e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d6b5bcc1-28e9-421a-89b6-74cb968194e3""}\n2025-07-19 16:56:21.215 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6fc305bc-8b71-4a1e-8645-9b96e17b8f05] received connection request\n2025-07-19 16:56:21.215 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:56:21.246 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6fc305bc-8b71-4a1e-8645-9b96e17b8f05] socks forwarding established\n2025-07-19 16:56:21.289 [info] [command][d6b5bcc1-28e9-421a-89b6-74cb968194e3] Process exited with code 0\n2025-07-19 16:56:21.289 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6fc305bc-8b71-4a1e-8645-9b96e17b8f05] socks connection closed\n2025-07-19 16:56:21.289 [info] [command][d6b5bcc1-28e9-421a-89b6-74cb968194e3] Socket close event received\n2025-07-19 16:56:21.318 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60094 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:57:21.293 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:57:21.296 [info] [command][b5bdd221-d1c9-441c-adbe-726a8f4e4986] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b5bdd221-d1c9-441c-adbe-726a8f4e4986""}\n2025-07-19 16:57:21.296 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d028f986-e627-4333-908f-798711e247f7] received connection request\n2025-07-19 16:57:21.297 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:57:21.328 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d028f986-e627-4333-908f-798711e247f7] socks forwarding established\n2025-07-19 16:57:21.372 [info] [command][b5bdd221-d1c9-441c-adbe-726a8f4e4986] Process exited with code 0\n2025-07-19 16:57:21.372 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d028f986-e627-4333-908f-798711e247f7] socks connection closed\n2025-07-19 16:57:21.372 [info] [command][b5bdd221-d1c9-441c-adbe-726a8f4e4986] Socket close event received\n2025-07-19 16:57:21.401 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60135 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:58:21.377 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:58:21.379 [info] [command][903b2be3-4e5f-4834-935e-1ee267d54284] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""903b2be3-4e5f-4834-935e-1ee267d54284""}\n2025-07-19 16:58:21.380 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][39bed09f-3d0d-4027-a7b2-42817ceb5ffb] received connection request\n2025-07-19 16:58:21.381 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:58:21.413 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][39bed09f-3d0d-4027-a7b2-42817ceb5ffb] socks forwarding established\n2025-07-19 16:58:21.459 [info] [command][903b2be3-4e5f-4834-935e-1ee267d54284] Process exited with code 0\n2025-07-19 16:58:21.459 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][39bed09f-3d0d-4027-a7b2-42817ceb5ffb] socks connection closed\n2025-07-19 16:58:21.459 [info] [command][903b2be3-4e5f-4834-935e-1ee267d54284] Socket close event received\n2025-07-19 16:58:21.555 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60166 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 16:59:21.463 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 16:59:21.468 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][bcd64a58-880a-46a4-a7b6-fe19f6f6a289] received connection request\n2025-07-19 16:59:21.469 [info] [command][c0a4bf8f-7ea4-4adf-8c61-7d552b7d4b4f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c0a4bf8f-7ea4-4adf-8c61-7d552b7d4b4f""}\n2025-07-19 16:59:21.469 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 16:59:21.503 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bcd64a58-880a-46a4-a7b6-fe19f6f6a289] socks forwarding established\n2025-07-19 16:59:21.544 [info] [command][c0a4bf8f-7ea4-4adf-8c61-7d552b7d4b4f] Process exited with code 0\n2025-07-19 16:59:21.545 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bcd64a58-880a-46a4-a7b6-fe19f6f6a289] socks connection closed\n2025-07-19 16:59:21.545 [info] [command][c0a4bf8f-7ea4-4adf-8c61-7d552b7d4b4f] Socket close event received\n2025-07-19 16:59:21.576 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60205 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:00:21.548 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:00:21.551 [info] [command][d6b1a81d-3d0a-4e77-b25a-84893359fafe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d6b1a81d-3d0a-4e77-b25a-84893359fafe""}\n2025-07-19 17:00:21.552 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ea553387-4076-4a27-9b1c-cea396fda315] received connection request\n2025-07-19 17:00:21.552 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:00:21.584 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ea553387-4076-4a27-9b1c-cea396fda315] socks forwarding established\n2025-07-19 17:00:21.632 [info] [command][d6b1a81d-3d0a-4e77-b25a-84893359fafe] Process exited with code 0\n2025-07-19 17:00:21.632 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ea553387-4076-4a27-9b1c-cea396fda315] socks connection closed\n2025-07-19 17:00:21.633 [info] [command][d6b1a81d-3d0a-4e77-b25a-84893359fafe] Socket close event received\n2025-07-19 17:00:21.662 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60226 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:01:21.635 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:01:21.637 [info] [command][0c394521-cf37-4c0c-9f8a-51c68d011ca0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0c394521-cf37-4c0c-9f8a-51c68d011ca0""}\n2025-07-19 17:01:21.638 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5a74c5cc-1e6e-4eb0-85c7-2e65051e85b0] received connection request\n2025-07-19 17:01:21.638 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:01:21.670 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5a74c5cc-1e6e-4eb0-85c7-2e65051e85b0] socks forwarding established\n2025-07-19 17:01:21.713 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5a74c5cc-1e6e-4eb0-85c7-2e65051e85b0] socks connection closed\n2025-07-19 17:01:21.713 [info] [command][0c394521-cf37-4c0c-9f8a-51c68d011ca0] Process exited with code 0\n2025-07-19 17:01:21.713 [info] [command][0c394521-cf37-4c0c-9f8a-51c68d011ca0] Socket close event received\n2025-07-19 17:01:21.831 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60261 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:02:21.714 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:02:21.716 [info] [command][7558385b-0503-40a9-9d11-52b11af7b1e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7558385b-0503-40a9-9d11-52b11af7b1e3""}\n2025-07-19 17:02:21.716 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c71778ab-0497-4e02-a4dd-3ac63bffa3d8] received connection request\n2025-07-19 17:02:21.716 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:02:21.837 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c71778ab-0497-4e02-a4dd-3ac63bffa3d8] socks forwarding established\n2025-07-19 17:02:21.882 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c71778ab-0497-4e02-a4dd-3ac63bffa3d8] socks connection closed\n2025-07-19 17:02:21.882 [info] [command][7558385b-0503-40a9-9d11-52b11af7b1e3] Process exited with code 0\n2025-07-19 17:02:21.883 [info] [command][7558385b-0503-40a9-9d11-52b11af7b1e3] Socket close event received\n2025-07-19 17:02:21.914 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60298 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:03:21.887 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:03:21.888 [info] [command][9eb15725-9678-4904-84a0-bef340823a85] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9eb15725-9678-4904-84a0-bef340823a85""}\n2025-07-19 17:03:21.888 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][33281654-00d0-4989-9455-6783a52b1302] received connection request\n2025-07-19 17:03:21.888 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:03:21.923 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][33281654-00d0-4989-9455-6783a52b1302] socks forwarding established\n2025-07-19 17:03:22.040 [info] [command][9eb15725-9678-4904-84a0-bef340823a85] Process exited with code 0\n2025-07-19 17:03:22.040 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][33281654-00d0-4989-9455-6783a52b1302] socks connection closed\n2025-07-19 17:03:22.040 [info] [command][9eb15725-9678-4904-84a0-bef340823a85] Socket close event received\n2025-07-19 17:03:22.071 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60323 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:04:22.042 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:04:22.044 [info] [command][cbe9f48b-7611-4f0e-8276-63c94884265c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""cbe9f48b-7611-4f0e-8276-63c94884265c""}\n2025-07-19 17:04:22.044 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6d2a05e7-0eb7-4a74-9926-2652676959e4] received connection request\n2025-07-19 17:04:22.045 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:04:22.077 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6d2a05e7-0eb7-4a74-9926-2652676959e4] socks forwarding established\n2025-07-19 17:04:22.205 [info] [command][cbe9f48b-7611-4f0e-8276-63c94884265c] Process exited with code 0\n2025-07-19 17:04:22.206 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6d2a05e7-0eb7-4a74-9926-2652676959e4] socks connection closed\n2025-07-19 17:04:22.206 [info] [command][cbe9f48b-7611-4f0e-8276-63c94884265c] Socket close event received\n2025-07-19 17:04:22.235 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60364 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:05:22.211 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:05:22.213 [info] [command][e0ed498d-f5e6-4c12-a12e-a2ef0c9f43bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e0ed498d-f5e6-4c12-a12e-a2ef0c9f43bb""}\n2025-07-19 17:05:22.214 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2c19aa90-008f-424c-a601-05e69a551f42] received connection request\n2025-07-19 17:05:22.215 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:05:22.248 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2c19aa90-008f-424c-a601-05e69a551f42] socks forwarding established\n2025-07-19 17:05:22.293 [info] [command][e0ed498d-f5e6-4c12-a12e-a2ef0c9f43bb] Process exited with code 0\n2025-07-19 17:05:22.293 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2c19aa90-008f-424c-a601-05e69a551f42] socks connection closed\n2025-07-19 17:05:22.293 [info] [command][e0ed498d-f5e6-4c12-a12e-a2ef0c9f43bb] Socket close event received\n2025-07-19 17:05:22.323 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60387 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:06:22.298 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:06:22.301 [info] [command][571cbfd2-5971-4e93-b00d-af740dcd463c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""571cbfd2-5971-4e93-b00d-af740dcd463c""}\n2025-07-19 17:06:22.301 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1b291609-3b80-4074-8c70-1f3accd684a6] received connection request\n2025-07-19 17:06:22.304 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:06:22.343 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1b291609-3b80-4074-8c70-1f3accd684a6] socks forwarding established\n2025-07-19 17:06:22.403 [info] [command][571cbfd2-5971-4e93-b00d-af740dcd463c] Process exited with code 0\n2025-07-19 17:06:22.403 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1b291609-3b80-4074-8c70-1f3accd684a6] socks connection closed\n2025-07-19 17:06:22.403 [info] [command][571cbfd2-5971-4e93-b00d-af740dcd463c] Socket close event received\n2025-07-19 17:06:22.435 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60438 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:07:22.408 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:07:22.411 [info] [command][7a7f6038-6711-4e61-8c9a-ea5633f4f7d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7a7f6038-6711-4e61-8c9a-ea5633f4f7d4""}\n2025-07-19 17:07:22.411 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][74e12a0e-178f-4412-8c5c-2623e8aece7c] received connection request\n2025-07-19 17:07:22.412 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:07:22.443 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][74e12a0e-178f-4412-8c5c-2623e8aece7c] socks forwarding established\n2025-07-19 17:07:22.490 [info] [command][7a7f6038-6711-4e61-8c9a-ea5633f4f7d4] Process exited with code 0\n2025-07-19 17:07:22.491 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][74e12a0e-178f-4412-8c5c-2623e8aece7c] socks connection closed\n2025-07-19 17:07:22.491 [info] [command][7a7f6038-6711-4e61-8c9a-ea5633f4f7d4] Socket close event received\n2025-07-19 17:07:22.523 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60494 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:08:22.492 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:08:22.494 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1ef97b8c-28c6-4630-b3aa-066b479ae5fb] received connection request\n2025-07-19 17:08:22.495 [info] [command][7e741f29-ad9d-48e9-a629-56c8ad01a368] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7e741f29-ad9d-48e9-a629-56c8ad01a368""}\n2025-07-19 17:08:22.495 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:08:22.532 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1ef97b8c-28c6-4630-b3aa-066b479ae5fb] socks forwarding established\n2025-07-19 17:08:22.577 [info] [command][7e741f29-ad9d-48e9-a629-56c8ad01a368] Process exited with code 0\n2025-07-19 17:08:22.577 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1ef97b8c-28c6-4630-b3aa-066b479ae5fb] socks connection closed\n2025-07-19 17:08:22.577 [info] [command][7e741f29-ad9d-48e9-a629-56c8ad01a368] Socket close event received\n2025-07-19 17:08:22.608 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60544 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:09:22.583 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:09:22.585 [info] [command][eb7882a3-03d4-4e54-95d5-b4a90e7d0b6b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""eb7882a3-03d4-4e54-95d5-b4a90e7d0b6b""}\n2025-07-19 17:09:22.585 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e0ab60ee-1cce-4b38-bed7-557848c63cc8] received connection request\n2025-07-19 17:09:22.586 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:09:22.617 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e0ab60ee-1cce-4b38-bed7-557848c63cc8] socks forwarding established\n2025-07-19 17:09:22.663 [info] [command][eb7882a3-03d4-4e54-95d5-b4a90e7d0b6b] Process exited with code 0\n2025-07-19 17:09:22.663 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e0ab60ee-1cce-4b38-bed7-557848c63cc8] socks connection closed\n2025-07-19 17:09:22.663 [info] [command][eb7882a3-03d4-4e54-95d5-b4a90e7d0b6b] Socket close event received\n2025-07-19 17:09:22.694 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60588 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:10:22.667 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:10:22.670 [info] [command][6be6cf6a-73f5-4d3a-9ad8-4dbe1547b240] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6be6cf6a-73f5-4d3a-9ad8-4dbe1547b240""}\n2025-07-19 17:10:22.670 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b2cc308d-5ccf-4286-8020-eb07a0a26f85] received connection request\n2025-07-19 17:10:22.671 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:10:22.703 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b2cc308d-5ccf-4286-8020-eb07a0a26f85] socks forwarding established\n2025-07-19 17:10:22.748 [info] [command][6be6cf6a-73f5-4d3a-9ad8-4dbe1547b240] Process exited with code 0\n2025-07-19 17:10:22.749 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b2cc308d-5ccf-4286-8020-eb07a0a26f85] socks connection closed\n2025-07-19 17:10:22.749 [info] [command][6be6cf6a-73f5-4d3a-9ad8-4dbe1547b240] Socket close event received\n2025-07-19 17:10:22.783 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60614 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:11:22.749 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:11:22.750 [info] [command][0aad517b-d56d-472c-b7d0-0a35dba3772f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0aad517b-d56d-472c-b7d0-0a35dba3772f""}\n2025-07-19 17:11:22.751 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e1c9d179-9b97-4521-8dab-d2bc8ff18881] received connection request\n2025-07-19 17:11:22.751 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:11:22.782 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e1c9d179-9b97-4521-8dab-d2bc8ff18881] socks forwarding established\n2025-07-19 17:11:22.820 [info] [command][0aad517b-d56d-472c-b7d0-0a35dba3772f] Process exited with code 0\n2025-07-19 17:11:22.821 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e1c9d179-9b97-4521-8dab-d2bc8ff18881] socks connection closed\n2025-07-19 17:11:22.821 [info] [command][0aad517b-d56d-472c-b7d0-0a35dba3772f] Socket close event received\n2025-07-19 17:11:22.850 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60661 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:12:22.823 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:12:22.828 [info] [command][48dd1084-f77a-408d-bdcb-eeda2a408f50] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""48dd1084-f77a-408d-bdcb-eeda2a408f50""}\n2025-07-19 17:12:22.828 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][add2ba97-226b-4a8b-9078-8c3209c86fbf] received connection request\n2025-07-19 17:12:22.829 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:12:22.861 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][add2ba97-226b-4a8b-9078-8c3209c86fbf] socks forwarding established\n2025-07-19 17:12:22.902 [info] [command][48dd1084-f77a-408d-bdcb-eeda2a408f50] Process exited with code 0\n2025-07-19 17:12:22.903 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][add2ba97-226b-4a8b-9078-8c3209c86fbf] socks connection closed\n2025-07-19 17:12:22.903 [info] [command][48dd1084-f77a-408d-bdcb-eeda2a408f50] Socket close event received\n2025-07-19 17:12:22.937 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60690 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:13:22.903 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:13:22.905 [info] [command][98f2441f-0024-4ae2-ad72-db71a883243f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""98f2441f-0024-4ae2-ad72-db71a883243f""}\n2025-07-19 17:13:22.906 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ce85735a-fa15-4ba0-a7a8-b371ff875116] received connection request\n2025-07-19 17:13:22.906 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:13:23.012 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ce85735a-fa15-4ba0-a7a8-b371ff875116] socks forwarding established\n2025-07-19 17:13:23.231 [info] [command][98f2441f-0024-4ae2-ad72-db71a883243f] Process exited with code 0\n2025-07-19 17:13:23.231 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ce85735a-fa15-4ba0-a7a8-b371ff875116] socks connection closed\n2025-07-19 17:13:23.232 [info] [command][98f2441f-0024-4ae2-ad72-db71a883243f] Socket close event received\n2025-07-19 17:13:23.262 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60714 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:14:23.236 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:14:23.248 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fbeda8f2-2183-4609-bb71-fd34276c0862] received connection request\n2025-07-19 17:14:23.249 [info] [command][117b06e5-98cf-41a4-a993-76bd5fdbcc8f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""117b06e5-98cf-41a4-a993-76bd5fdbcc8f""}\n2025-07-19 17:14:23.250 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:14:23.281 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fbeda8f2-2183-4609-bb71-fd34276c0862] socks forwarding established\n2025-07-19 17:14:23.331 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fbeda8f2-2183-4609-bb71-fd34276c0862] socks connection closed\n2025-07-19 17:14:23.331 [info] [command][117b06e5-98cf-41a4-a993-76bd5fdbcc8f] Process exited with code 0\n2025-07-19 17:14:23.331 [info] [command][117b06e5-98cf-41a4-a993-76bd5fdbcc8f] Socket close event received\n2025-07-19 17:14:23.362 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60757 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:15:23.334 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:15:23.335 [info] [command][d31f4780-59f1-4c88-b143-d066b9fee2ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d31f4780-59f1-4c88-b143-d066b9fee2ba""}\n2025-07-19 17:15:23.336 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][504acd8c-ed88-46d6-a16c-d63b79c70ef2] received connection request\n2025-07-19 17:15:23.336 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 17:15:23.336 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:15:23.369 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][504acd8c-ed88-46d6-a16c-d63b79c70ef2] socks forwarding established\n2025-07-19 17:15:23.415 [info] [command][d31f4780-59f1-4c88-b143-d066b9fee2ba] Process exited with code 0\n2025-07-19 17:15:23.415 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][504acd8c-ed88-46d6-a16c-d63b79c70ef2] socks connection closed\n2025-07-19 17:15:23.415 [info] [command][d31f4780-59f1-4c88-b143-d066b9fee2ba] Socket close event received\n2025-07-19 17:15:23.533 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60787 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:16:23.420 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:16:23.422 [info] [command][94ef2de9-81f0-4ab4-87fd-cd5e3e1f0860] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""94ef2de9-81f0-4ab4-87fd-cd5e3e1f0860""}\n2025-07-19 17:16:23.422 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d72e5db6-05b0-4369-b7a8-89da35751dd2] received connection request\n2025-07-19 17:16:23.422 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:16:23.456 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d72e5db6-05b0-4369-b7a8-89da35751dd2] socks forwarding established\n2025-07-19 17:16:23.505 [info] [command][94ef2de9-81f0-4ab4-87fd-cd5e3e1f0860] Process exited with code 0\n2025-07-19 17:16:23.506 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d72e5db6-05b0-4369-b7a8-89da35751dd2] socks connection closed\n2025-07-19 17:16:23.506 [info] [command][94ef2de9-81f0-4ab4-87fd-cd5e3e1f0860] Socket close event received\n2025-07-19 17:16:23.537 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60826 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:17:23.507 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:17:23.508 [info] [command][6798e023-b879-4e26-9299-57a134e654e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6798e023-b879-4e26-9299-57a134e654e7""}\n2025-07-19 17:17:23.509 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8d037ee9-acde-40b4-a543-ce850c96b19c] received connection request\n2025-07-19 17:17:23.509 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 17:17:23.509 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:17:23.539 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8d037ee9-acde-40b4-a543-ce850c96b19c] socks forwarding established\n2025-07-19 17:17:23.583 [info] [command][6798e023-b879-4e26-9299-57a134e654e7] Process exited with code 0\n2025-07-19 17:17:23.583 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8d037ee9-acde-40b4-a543-ce850c96b19c] socks connection closed\n2025-07-19 17:17:23.583 [info] [command][6798e023-b879-4e26-9299-57a134e654e7] Socket close event received\n2025-07-19 17:17:23.613 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60861 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:18:23.585 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:18:23.586 [info] [command][3728edd8-721c-4c1a-b19a-57b39f284574] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3728edd8-721c-4c1a-b19a-57b39f284574""}\n2025-07-19 17:18:23.587 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a213d4c3-10de-40c7-9350-52b4780055c9] received connection request\n2025-07-19 17:18:23.587 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:18:23.622 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a213d4c3-10de-40c7-9350-52b4780055c9] socks forwarding established\n2025-07-19 17:18:23.670 [info] [command][3728edd8-721c-4c1a-b19a-57b39f284574] Process exited with code 0\n2025-07-19 17:18:23.670 [info] [command][3728edd8-721c-4c1a-b19a-57b39f284574] Socket close event received\n2025-07-19 17:18:23.672 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a213d4c3-10de-40c7-9350-52b4780055c9] socks connection closed\n2025-07-19 17:18:23.705 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60883 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:19:23.671 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:19:23.672 [info] [command][e15e77c9-cdc7-48d0-a5fb-1aecc4e39e5d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e15e77c9-cdc7-48d0-a5fb-1aecc4e39e5d""}\n2025-07-19 17:19:23.673 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][bc07878b-a1db-4fa6-ad1e-919d7e414ce5] received connection request\n2025-07-19 17:19:23.673 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:19:23.748 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bc07878b-a1db-4fa6-ad1e-919d7e414ce5] socks forwarding established\n2025-07-19 17:19:23.970 [info] [command][e15e77c9-cdc7-48d0-a5fb-1aecc4e39e5d] Process exited with code 0\n2025-07-19 17:19:23.970 [info] [command][e15e77c9-cdc7-48d0-a5fb-1aecc4e39e5d] Socket close event received\n2025-07-19 17:19:23.971 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bc07878b-a1db-4fa6-ad1e-919d7e414ce5] socks connection closed\n2025-07-19 17:19:24.045 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60922 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:20:23.975 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:20:23.978 [info] [command][880f65a3-8a6a-45b5-a8c7-c29f3204b2dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""880f65a3-8a6a-45b5-a8c7-c29f3204b2dc""}\n2025-07-19 17:20:23.978 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ef2d793b-2da9-4f67-99e5-3f0b7baae4c0] received connection request\n2025-07-19 17:20:23.979 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:20:24.011 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ef2d793b-2da9-4f67-99e5-3f0b7baae4c0] socks forwarding established\n2025-07-19 17:20:24.050 [info] [command][880f65a3-8a6a-45b5-a8c7-c29f3204b2dc] Process exited with code 0\n2025-07-19 17:20:24.051 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ef2d793b-2da9-4f67-99e5-3f0b7baae4c0] socks connection closed\n2025-07-19 17:20:24.051 [info] [command][880f65a3-8a6a-45b5-a8c7-c29f3204b2dc] Socket close event received\n2025-07-19 17:20:24.081 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60950 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:21:24.050 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:21:24.053 [info] [command][b237b5f0-3246-4559-8d9f-94b6cb9be7c5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b237b5f0-3246-4559-8d9f-94b6cb9be7c5""}\n2025-07-19 17:21:24.054 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][eb40a9bc-51f2-4d9b-bfae-143807a23573] received connection request\n2025-07-19 17:21:24.054 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:21:24.156 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][eb40a9bc-51f2-4d9b-bfae-143807a23573] socks forwarding established\n2025-07-19 17:21:24.307 [info] [command][b237b5f0-3246-4559-8d9f-94b6cb9be7c5] Process exited with code 0\n2025-07-19 17:21:24.308 [info] [command][b237b5f0-3246-4559-8d9f-94b6cb9be7c5] Socket close event received\n2025-07-19 17:21:24.308 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][eb40a9bc-51f2-4d9b-bfae-143807a23573] socks connection closed\n2025-07-19 17:21:24.339 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 60996 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:22:24.313 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:22:24.316 [info] [command][6dca3e11-b873-4cdc-a325-cbef1f737f75] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6dca3e11-b873-4cdc-a325-cbef1f737f75""}\n2025-07-19 17:22:24.317 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][09f4da3a-864a-42bd-909e-4d0fec036690] received connection request\n2025-07-19 17:22:24.317 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:22:24.361 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][09f4da3a-864a-42bd-909e-4d0fec036690] socks forwarding established\n2025-07-19 17:22:24.438 [info] [command][6dca3e11-b873-4cdc-a325-cbef1f737f75] Process exited with code 0\n2025-07-19 17:22:24.439 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][09f4da3a-864a-42bd-909e-4d0fec036690] socks connection closed\n2025-07-19 17:22:24.439 [info] [command][6dca3e11-b873-4cdc-a325-cbef1f737f75] Socket close event received\n2025-07-19 17:22:24.479 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61040 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:23:24.439 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:23:24.441 [info] [command][ba0a2440-e1d3-4025-98e4-767b530872ee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ba0a2440-e1d3-4025-98e4-767b530872ee""}\n2025-07-19 17:23:24.442 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a07477d8-c32f-48b8-823e-707d2864c261] received connection request\n2025-07-19 17:23:24.442 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:23:24.476 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a07477d8-c32f-48b8-823e-707d2864c261] socks forwarding established\n2025-07-19 17:23:24.526 [info] [command][ba0a2440-e1d3-4025-98e4-767b530872ee] Process exited with code 0\n2025-07-19 17:23:24.526 [info] [command][ba0a2440-e1d3-4025-98e4-767b530872ee] Socket close event received\n2025-07-19 17:23:24.526 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a07477d8-c32f-48b8-823e-707d2864c261] socks connection closed\n2025-07-19 17:23:24.561 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61062 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:24:24.531 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:24:24.533 [info] [command][70ddc663-79e2-420d-97ab-eb91f7469830] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""70ddc663-79e2-420d-97ab-eb91f7469830""}\n2025-07-19 17:24:24.534 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4e00a64b-f3e3-4afe-a795-b96ac2099762] received connection request\n2025-07-19 17:24:24.535 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:24:24.567 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4e00a64b-f3e3-4afe-a795-b96ac2099762] socks forwarding established\n2025-07-19 17:24:24.614 [info] [command][70ddc663-79e2-420d-97ab-eb91f7469830] Process exited with code 0\n2025-07-19 17:24:24.614 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4e00a64b-f3e3-4afe-a795-b96ac2099762] socks connection closed\n2025-07-19 17:24:24.614 [info] [command][70ddc663-79e2-420d-97ab-eb91f7469830] Socket close event received\n2025-07-19 17:24:24.648 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61096 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:25:24.624 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:25:24.627 [info] [command][10e739a0-cb73-414a-95be-77ae582ce318] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""10e739a0-cb73-414a-95be-77ae582ce318""}\n2025-07-19 17:25:24.628 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c36e143b-5077-462c-875c-c2072fc37bb4] received connection request\n2025-07-19 17:25:24.628 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:25:24.665 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c36e143b-5077-462c-875c-c2072fc37bb4] socks forwarding established\n2025-07-19 17:25:24.708 [info] [command][10e739a0-cb73-414a-95be-77ae582ce318] Process exited with code 0\n2025-07-19 17:25:24.708 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c36e143b-5077-462c-875c-c2072fc37bb4] socks connection closed\n2025-07-19 17:25:24.708 [info] [command][10e739a0-cb73-414a-95be-77ae582ce318] Socket close event received\n2025-07-19 17:25:24.739 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61120 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:26:24.710 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:26:24.712 [info] [command][d8116144-22f6-4878-a373-4e5859a90d35] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d8116144-22f6-4878-a373-4e5859a90d35""}\n2025-07-19 17:26:24.713 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][26a26897-a730-4cc9-870a-e6eed4789189] received connection request\n2025-07-19 17:26:24.713 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:26:24.860 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][26a26897-a730-4cc9-870a-e6eed4789189] socks forwarding established\n2025-07-19 17:26:24.928 [info] [command][d8116144-22f6-4878-a373-4e5859a90d35] Process exited with code 0\n2025-07-19 17:26:24.928 [info] [command][d8116144-22f6-4878-a373-4e5859a90d35] Socket close event received\n2025-07-19 17:26:24.928 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][26a26897-a730-4cc9-870a-e6eed4789189] socks connection closed\n2025-07-19 17:26:25.044 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61159 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:27:24.929 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:27:24.930 [info] [command][fe344375-2d00-437b-b07e-1dc1124e79bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fe344375-2d00-437b-b07e-1dc1124e79bf""}\n2025-07-19 17:27:24.931 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][90dd4d81-1662-44f1-8f34-3ab783211087] received connection request\n2025-07-19 17:27:24.931 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:27:24.965 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][90dd4d81-1662-44f1-8f34-3ab783211087] socks forwarding established\n2025-07-19 17:27:25.005 [info] [command][fe344375-2d00-437b-b07e-1dc1124e79bf] Process exited with code 0\n2025-07-19 17:27:25.005 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][90dd4d81-1662-44f1-8f34-3ab783211087] socks connection closed\n2025-07-19 17:27:25.006 [info] [command][fe344375-2d00-437b-b07e-1dc1124e79bf] Socket close event received\n2025-07-19 17:27:25.036 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61190 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:28:25.014 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:28:25.016 [info] [command][d3ac5145-2daf-49d5-8a88-7a9c30d18c2e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d3ac5145-2daf-49d5-8a88-7a9c30d18c2e""}\n2025-07-19 17:28:25.016 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][17903a77-43e6-4561-bc89-ab86231430f9] received connection request\n2025-07-19 17:28:25.017 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:28:25.048 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][17903a77-43e6-4561-bc89-ab86231430f9] socks forwarding established\n2025-07-19 17:28:25.093 [info] [command][d3ac5145-2daf-49d5-8a88-7a9c30d18c2e] Process exited with code 0\n2025-07-19 17:28:25.094 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][17903a77-43e6-4561-bc89-ab86231430f9] socks connection closed\n2025-07-19 17:28:25.094 [info] [command][d3ac5145-2daf-49d5-8a88-7a9c30d18c2e] Socket close event received\n2025-07-19 17:28:25.124 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61222 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:29:25.099 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:29:25.101 [info] [command][7a26c0da-a775-4c91-a853-b6bd9da10137] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7a26c0da-a775-4c91-a853-b6bd9da10137""}\n2025-07-19 17:29:25.101 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3c5d5937-f542-4b76-9b0f-0888f9a0d0f7] received connection request\n2025-07-19 17:29:25.102 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:29:25.135 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3c5d5937-f542-4b76-9b0f-0888f9a0d0f7] socks forwarding established\n2025-07-19 17:29:25.284 [info] [command][7a26c0da-a775-4c91-a853-b6bd9da10137] Process exited with code 0\n2025-07-19 17:29:25.285 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3c5d5937-f542-4b76-9b0f-0888f9a0d0f7] socks connection closed\n2025-07-19 17:29:25.285 [info] [command][7a26c0da-a775-4c91-a853-b6bd9da10137] Socket close event received\n2025-07-19 17:29:25.399 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61262 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:30:25.289 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:30:25.291 [info] [command][a31912bc-c7c0-40e7-b27e-7a0525734d8c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a31912bc-c7c0-40e7-b27e-7a0525734d8c""}\n2025-07-19 17:30:25.292 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][962df0e5-4a6f-4a1b-8952-adf835317779] received connection request\n2025-07-19 17:30:25.293 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:30:25.326 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][962df0e5-4a6f-4a1b-8952-adf835317779] socks forwarding established\n2025-07-19 17:30:25.372 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][962df0e5-4a6f-4a1b-8952-adf835317779] socks connection closed\n2025-07-19 17:30:25.372 [info] [command][a31912bc-c7c0-40e7-b27e-7a0525734d8c] Process exited with code 0\n2025-07-19 17:30:25.372 [info] [command][a31912bc-c7c0-40e7-b27e-7a0525734d8c] Socket close event received\n2025-07-19 17:30:25.404 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61288 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:31:25.376 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:31:25.377 [info] [command][887c01ad-c101-4fa3-82f6-892f051b95c3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""887c01ad-c101-4fa3-82f6-892f051b95c3""}\n2025-07-19 17:31:25.377 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][48c1bde4-7233-44f7-ba05-8810ad9e4c1a] received connection request\n2025-07-19 17:31:25.377 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 17:31:25.377 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:31:25.410 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][48c1bde4-7233-44f7-ba05-8810ad9e4c1a] socks forwarding established\n2025-07-19 17:31:25.452 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][48c1bde4-7233-44f7-ba05-8810ad9e4c1a] socks connection closed\n2025-07-19 17:31:25.452 [info] [command][887c01ad-c101-4fa3-82f6-892f051b95c3] Process exited with code 0\n2025-07-19 17:31:25.452 [info] [command][887c01ad-c101-4fa3-82f6-892f051b95c3] Socket close event received\n2025-07-19 17:31:25.481 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61305 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:32:25.456 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:32:25.459 [info] [command][ccbdf22b-87eb-44ee-a8c1-a5e0b5f898d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ccbdf22b-87eb-44ee-a8c1-a5e0b5f898d4""}\n2025-07-19 17:32:25.460 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d266046d-b89d-4c28-b574-b7246f4cd31b] received connection request\n2025-07-19 17:32:25.460 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:32:25.506 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d266046d-b89d-4c28-b574-b7246f4cd31b] socks forwarding established\n2025-07-19 17:32:25.653 [info] [command][ccbdf22b-87eb-44ee-a8c1-a5e0b5f898d4] Process exited with code 0\n2025-07-19 17:32:25.654 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d266046d-b89d-4c28-b574-b7246f4cd31b] socks connection closed\n2025-07-19 17:32:25.654 [info] [command][ccbdf22b-87eb-44ee-a8c1-a5e0b5f898d4] Socket close event received\n2025-07-19 17:32:25.685 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61350 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:33:25.657 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:33:25.660 [info] [command][8f7bade2-a0e3-4a1d-9f15-75b958db98e0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8f7bade2-a0e3-4a1d-9f15-75b958db98e0""}\n2025-07-19 17:33:25.661 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][55530397-f329-43de-a261-b67a3f97b031] received connection request\n2025-07-19 17:33:25.661 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:33:25.693 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][55530397-f329-43de-a261-b67a3f97b031] socks forwarding established\n2025-07-19 17:33:25.739 [info] [command][8f7bade2-a0e3-4a1d-9f15-75b958db98e0] Process exited with code 0\n2025-07-19 17:33:25.740 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][55530397-f329-43de-a261-b67a3f97b031] socks connection closed\n2025-07-19 17:33:25.740 [info] [command][8f7bade2-a0e3-4a1d-9f15-75b958db98e0] Socket close event received\n2025-07-19 17:33:25.769 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61375 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:34:25.749 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:34:25.751 [info] [command][9aba0e6c-8240-4629-beb6-768613217fff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9aba0e6c-8240-4629-beb6-768613217fff""}\n2025-07-19 17:34:25.751 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][24a3a488-6133-4d41-bb4e-d296c343bd9a] received connection request\n2025-07-19 17:34:25.752 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:34:25.784 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][24a3a488-6133-4d41-bb4e-d296c343bd9a] socks forwarding established\n2025-07-19 17:34:25.831 [info] [command][9aba0e6c-8240-4629-beb6-768613217fff] Process exited with code 0\n2025-07-19 17:34:25.831 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][24a3a488-6133-4d41-bb4e-d296c343bd9a] socks connection closed\n2025-07-19 17:34:25.831 [info] [command][9aba0e6c-8240-4629-beb6-768613217fff] Socket close event received\n2025-07-19 17:34:25.862 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61398 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:35:25.837 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:35:25.839 [info] [command][5ecd68ea-636b-47e9-82e6-8bed296f537a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5ecd68ea-636b-47e9-82e6-8bed296f537a""}\n2025-07-19 17:35:25.840 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c6d18c91-de8a-49e2-bf49-37c7acab94af] received connection request\n2025-07-19 17:35:25.841 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:35:25.877 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c6d18c91-de8a-49e2-bf49-37c7acab94af] socks forwarding established\n2025-07-19 17:35:25.921 [info] [command][5ecd68ea-636b-47e9-82e6-8bed296f537a] Process exited with code 0\n2025-07-19 17:35:25.921 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c6d18c91-de8a-49e2-bf49-37c7acab94af] socks connection closed\n2025-07-19 17:35:25.922 [info] [command][5ecd68ea-636b-47e9-82e6-8bed296f537a] Socket close event received\n2025-07-19 17:35:25.951 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61438 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:36:25.930 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:36:25.933 [info] [command][dc57ed7a-8661-4eb5-8db6-3cb336ffe915] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""dc57ed7a-8661-4eb5-8db6-3cb336ffe915""}\n2025-07-19 17:36:25.933 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5c2b285e-ed3f-400a-9ff0-44aa0a826243] received connection request\n2025-07-19 17:36:25.934 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:36:25.966 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5c2b285e-ed3f-400a-9ff0-44aa0a826243] socks forwarding established\n2025-07-19 17:36:26.008 [info] [command][dc57ed7a-8661-4eb5-8db6-3cb336ffe915] Process exited with code 0\n2025-07-19 17:36:26.009 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5c2b285e-ed3f-400a-9ff0-44aa0a826243] socks connection closed\n2025-07-19 17:36:26.009 [info] [command][dc57ed7a-8661-4eb5-8db6-3cb336ffe915] Socket close event received\n2025-07-19 17:36:26.039 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61456 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:37:26.015 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:37:26.017 [info] [command][be9d1c1f-9e9e-4b29-8963-218b7dcd8d63] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""be9d1c1f-9e9e-4b29-8963-218b7dcd8d63""}\n2025-07-19 17:37:26.017 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fe7ccb82-5a59-40e6-8329-b80aab1d50c3] received connection request\n2025-07-19 17:37:26.018 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:37:26.049 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fe7ccb82-5a59-40e6-8329-b80aab1d50c3] socks forwarding established\n2025-07-19 17:37:26.094 [info] [command][be9d1c1f-9e9e-4b29-8963-218b7dcd8d63] Process exited with code 0\n2025-07-19 17:37:26.094 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fe7ccb82-5a59-40e6-8329-b80aab1d50c3] socks connection closed\n2025-07-19 17:37:26.094 [info] [command][be9d1c1f-9e9e-4b29-8963-218b7dcd8d63] Socket close event received\n2025-07-19 17:37:26.123 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61502 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:38:26.098 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:38:26.099 [info] [command][d8ce7be2-1c56-4320-9b4f-7d2fc5a4a751] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d8ce7be2-1c56-4320-9b4f-7d2fc5a4a751""}\n2025-07-19 17:38:26.100 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6fca459b-1e8c-4120-ac4b-3b96a8fadb33] received connection request\n2025-07-19 17:38:26.100 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:38:26.133 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6fca459b-1e8c-4120-ac4b-3b96a8fadb33] socks forwarding established\n2025-07-19 17:38:26.180 [info] [command][d8ce7be2-1c56-4320-9b4f-7d2fc5a4a751] Process exited with code 0\n2025-07-19 17:38:26.180 [info] [command][d8ce7be2-1c56-4320-9b4f-7d2fc5a4a751] Socket close event received\n2025-07-19 17:38:26.181 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6fca459b-1e8c-4120-ac4b-3b96a8fadb33] socks connection closed\n2025-07-19 17:38:26.212 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61525 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:39:26.191 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:39:26.193 [info] [command][62a18777-bd59-4443-b759-77f771eb9fd5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""62a18777-bd59-4443-b759-77f771eb9fd5""}\n2025-07-19 17:39:26.194 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b7b00ff9-de77-4219-90d9-8729a80baa2c] received connection request\n2025-07-19 17:39:26.195 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:39:26.289 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b7b00ff9-de77-4219-90d9-8729a80baa2c] socks forwarding established\n2025-07-19 17:39:26.417 [info] [command][62a18777-bd59-4443-b759-77f771eb9fd5] Process exited with code 0\n2025-07-19 17:39:26.417 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b7b00ff9-de77-4219-90d9-8729a80baa2c] socks connection closed\n2025-07-19 17:39:26.418 [info] [command][62a18777-bd59-4443-b759-77f771eb9fd5] Socket close event received\n2025-07-19 17:39:26.447 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61543 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:40:26.425 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:40:26.428 [info] [command][7e9066ea-beaa-460d-94ed-e76ce1b1ebfa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7e9066ea-beaa-460d-94ed-e76ce1b1ebfa""}\n2025-07-19 17:40:26.429 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4f70721e-d3af-42d8-90f4-513eb4071f45] received connection request\n2025-07-19 17:40:26.430 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:40:26.463 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4f70721e-d3af-42d8-90f4-513eb4071f45] socks forwarding established\n2025-07-19 17:40:26.512 [info] [command][7e9066ea-beaa-460d-94ed-e76ce1b1ebfa] Process exited with code 0\n2025-07-19 17:40:26.512 [info] [command][7e9066ea-beaa-460d-94ed-e76ce1b1ebfa] Socket close event received\n2025-07-19 17:40:26.513 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4f70721e-d3af-42d8-90f4-513eb4071f45] socks connection closed\n2025-07-19 17:40:26.545 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61577 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:41:26.521 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:41:26.523 [info] [command][fb87c327-f6b2-42e7-8884-365429f9f6af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fb87c327-f6b2-42e7-8884-365429f9f6af""}\n2025-07-19 17:41:26.523 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6faa02d6-1250-43e1-a891-dffbaf89db68] received connection request\n2025-07-19 17:41:26.524 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:41:26.555 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6faa02d6-1250-43e1-a891-dffbaf89db68] socks forwarding established\n2025-07-19 17:41:26.598 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6faa02d6-1250-43e1-a891-dffbaf89db68] socks connection closed\n2025-07-19 17:41:26.599 [info] [command][fb87c327-f6b2-42e7-8884-365429f9f6af] Process exited with code 0\n2025-07-19 17:41:26.599 [info] [command][fb87c327-f6b2-42e7-8884-365429f9f6af] Socket close event received\n2025-07-19 17:41:26.629 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61596 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:42:26.608 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:42:26.609 [info] [command][b5569fa2-5d9d-4ae6-bf37-571c772adf6d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b5569fa2-5d9d-4ae6-bf37-571c772adf6d""}\n2025-07-19 17:42:26.610 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b8afa4f5-563d-45b9-9a00-abec7bf07bf7] received connection request\n2025-07-19 17:42:26.613 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:42:26.765 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b8afa4f5-563d-45b9-9a00-abec7bf07bf7] socks forwarding established\n2025-07-19 17:42:26.916 [info] [command][b5569fa2-5d9d-4ae6-bf37-571c772adf6d] Process exited with code 0\n2025-07-19 17:42:26.917 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b8afa4f5-563d-45b9-9a00-abec7bf07bf7] socks connection closed\n2025-07-19 17:42:26.917 [info] [command][b5569fa2-5d9d-4ae6-bf37-571c772adf6d] Socket close event received\n2025-07-19 17:42:26.948 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61642 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:43:26.927 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:43:26.929 [info] [command][a14b52cb-67b1-4bbb-b718-4760142406eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a14b52cb-67b1-4bbb-b718-4760142406eb""}\n2025-07-19 17:43:26.930 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][335986fb-1e68-45d7-b0ad-214f56cebdad] received connection request\n2025-07-19 17:43:26.932 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:43:26.965 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][335986fb-1e68-45d7-b0ad-214f56cebdad] socks forwarding established\n2025-07-19 17:43:27.012 [info] [command][a14b52cb-67b1-4bbb-b718-4760142406eb] Process exited with code 0\n2025-07-19 17:43:27.013 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][335986fb-1e68-45d7-b0ad-214f56cebdad] socks connection closed\n2025-07-19 17:43:27.013 [info] [command][a14b52cb-67b1-4bbb-b718-4760142406eb] Socket close event received\n2025-07-19 17:43:27.043 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61660 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:44:27.015 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:44:27.018 [info] [command][791f8b6d-3c96-4ec2-b2b8-160e67e2dc74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""791f8b6d-3c96-4ec2-b2b8-160e67e2dc74""}\n2025-07-19 17:44:27.020 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][caf1f8dc-40c9-4657-a7f4-72e20461d892] received connection request\n2025-07-19 17:44:27.020 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:44:27.055 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][caf1f8dc-40c9-4657-a7f4-72e20461d892] socks forwarding established\n2025-07-19 17:44:27.104 [info] [command][791f8b6d-3c96-4ec2-b2b8-160e67e2dc74] Process exited with code 0\n2025-07-19 17:44:27.105 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][caf1f8dc-40c9-4657-a7f4-72e20461d892] socks connection closed\n2025-07-19 17:44:27.105 [info] [command][791f8b6d-3c96-4ec2-b2b8-160e67e2dc74] Socket close event received\n2025-07-19 17:44:27.135 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61680 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:45:27.113 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:45:27.115 [info] [command][edbc7250-f092-4921-82ed-a829b78d7c0e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""edbc7250-f092-4921-82ed-a829b78d7c0e""}\n2025-07-19 17:45:27.116 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][54799c41-d199-4cae-a09c-893be7c239bd] received connection request\n2025-07-19 17:45:27.117 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:45:27.178 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][54799c41-d199-4cae-a09c-893be7c239bd] socks forwarding established\n2025-07-19 17:45:27.328 [info] [command][edbc7250-f092-4921-82ed-a829b78d7c0e] Process exited with code 0\n2025-07-19 17:45:27.329 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][54799c41-d199-4cae-a09c-893be7c239bd] socks connection closed\n2025-07-19 17:45:27.329 [info] [command][edbc7250-f092-4921-82ed-a829b78d7c0e] Socket close event received\n2025-07-19 17:45:27.361 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61716 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:46:27.333 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:46:27.335 [info] [command][ffad439d-7536-4b06-8794-5286e35886ad] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ffad439d-7536-4b06-8794-5286e35886ad""}\n2025-07-19 17:46:27.336 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9bc67bbf-a397-49f9-9a8a-f7964dde6e0f] received connection request\n2025-07-19 17:46:27.337 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:46:27.368 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9bc67bbf-a397-49f9-9a8a-f7964dde6e0f] socks forwarding established\n2025-07-19 17:46:27.413 [info] [command][ffad439d-7536-4b06-8794-5286e35886ad] Process exited with code 0\n2025-07-19 17:46:27.414 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9bc67bbf-a397-49f9-9a8a-f7964dde6e0f] socks connection closed\n2025-07-19 17:46:27.414 [info] [command][ffad439d-7536-4b06-8794-5286e35886ad] Socket close event received\n2025-07-19 17:46:27.445 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61735 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:47:27.415 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:47:27.415 [info] [command][f1a925a5-038e-4c63-9bcb-e6c597230b48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f1a925a5-038e-4c63-9bcb-e6c597230b48""}\n2025-07-19 17:47:27.416 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][19f82fcf-73ca-4943-b343-107f199b798d] received connection request\n2025-07-19 17:47:27.416 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:47:27.445 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][19f82fcf-73ca-4943-b343-107f199b798d] socks forwarding established\n2025-07-19 17:47:27.486 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][19f82fcf-73ca-4943-b343-107f199b798d] socks connection closed\n2025-07-19 17:47:27.486 [info] [command][f1a925a5-038e-4c63-9bcb-e6c597230b48] Process exited with code 0\n2025-07-19 17:47:27.486 [info] [command][f1a925a5-038e-4c63-9bcb-e6c597230b48] Socket close event received\n2025-07-19 17:47:27.517 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61780 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:48:27.494 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:48:27.497 [info] [command][f975d1a3-5e37-48d7-8161-d66d307b2353] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f975d1a3-5e37-48d7-8161-d66d307b2353""}\n2025-07-19 17:48:27.498 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fa7900b8-6cf2-4e8b-b518-78d50001476e] received connection request\n2025-07-19 17:48:27.498 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:48:27.531 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fa7900b8-6cf2-4e8b-b518-78d50001476e] socks forwarding established\n2025-07-19 17:48:27.576 [info] [command][f975d1a3-5e37-48d7-8161-d66d307b2353] Process exited with code 0\n2025-07-19 17:48:27.576 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fa7900b8-6cf2-4e8b-b518-78d50001476e] socks connection closed\n2025-07-19 17:48:27.576 [info] [command][f975d1a3-5e37-48d7-8161-d66d307b2353] Socket close event received\n2025-07-19 17:48:27.606 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61798 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:49:27.580 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:49:27.582 [info] [command][15d50df6-dea2-483a-95f0-2f333b04eed7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""15d50df6-dea2-483a-95f0-2f333b04eed7""}\n2025-07-19 17:49:27.583 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5f487d36-361f-4253-93f2-047d3f2e9b28] received connection request\n2025-07-19 17:49:27.584 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:49:27.616 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5f487d36-361f-4253-93f2-047d3f2e9b28] socks forwarding established\n2025-07-19 17:49:27.657 [info] [command][15d50df6-dea2-483a-95f0-2f333b04eed7] Process exited with code 0\n2025-07-19 17:49:27.658 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5f487d36-361f-4253-93f2-047d3f2e9b28] socks connection closed\n2025-07-19 17:49:27.658 [info] [command][15d50df6-dea2-483a-95f0-2f333b04eed7] Socket close event received\n2025-07-19 17:49:27.688 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61822 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:50:27.659 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:50:27.662 [info] [command][b8f57a86-8aa7-4185-9cdd-51f9fbc2c5dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b8f57a86-8aa7-4185-9cdd-51f9fbc2c5dc""}\n2025-07-19 17:50:27.662 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][afc4d1f5-be56-42fa-b5da-c86fe1eb1fe3] received connection request\n2025-07-19 17:50:27.663 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:50:27.696 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][afc4d1f5-be56-42fa-b5da-c86fe1eb1fe3] socks forwarding established\n2025-07-19 17:50:27.740 [info] [command][b8f57a86-8aa7-4185-9cdd-51f9fbc2c5dc] Process exited with code 0\n2025-07-19 17:50:27.741 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][afc4d1f5-be56-42fa-b5da-c86fe1eb1fe3] socks connection closed\n2025-07-19 17:50:27.741 [info] [command][b8f57a86-8aa7-4185-9cdd-51f9fbc2c5dc] Socket close event received\n2025-07-19 17:50:27.770 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61854 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:51:27.751 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:51:27.753 [info] [command][6b6247af-06e4-4c85-b42c-a64e57bfb4f6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6b6247af-06e4-4c85-b42c-a64e57bfb4f6""}\n2025-07-19 17:51:27.754 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][183c271b-4e2d-45e4-ab30-89cf8bbdd295] received connection request\n2025-07-19 17:51:27.755 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:51:27.794 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][183c271b-4e2d-45e4-ab30-89cf8bbdd295] socks forwarding established\n2025-07-19 17:51:27.839 [info] [command][6b6247af-06e4-4c85-b42c-a64e57bfb4f6] Process exited with code 0\n2025-07-19 17:51:27.839 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][183c271b-4e2d-45e4-ab30-89cf8bbdd295] socks connection closed\n2025-07-19 17:51:27.840 [info] [command][6b6247af-06e4-4c85-b42c-a64e57bfb4f6] Socket close event received\n2025-07-19 17:51:27.871 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61878 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:52:27.842 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:52:27.844 [info] [command][d4758cd1-c423-4ae6-9673-ceeb64237fc1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d4758cd1-c423-4ae6-9673-ceeb64237fc1""}\n2025-07-19 17:52:27.845 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c31fd042-70e4-4fd4-9334-f5af7ceb3db5] received connection request\n2025-07-19 17:52:27.845 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:52:27.943 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c31fd042-70e4-4fd4-9334-f5af7ceb3db5] socks forwarding established\n2025-07-19 17:52:27.985 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c31fd042-70e4-4fd4-9334-f5af7ceb3db5] socks connection closed\n2025-07-19 17:52:27.986 [info] [command][d4758cd1-c423-4ae6-9673-ceeb64237fc1] Process exited with code 0\n2025-07-19 17:52:27.986 [info] [command][d4758cd1-c423-4ae6-9673-ceeb64237fc1] Socket close event received\n2025-07-19 17:52:28.096 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61925 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:53:27.996 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:53:27.998 [info] [command][1002e39a-24cc-45c0-9b18-4ebf4afd2295] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1002e39a-24cc-45c0-9b18-4ebf4afd2295""}\n2025-07-19 17:53:27.998 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][336773ea-d043-42c8-8791-99cc35d81f23] received connection request\n2025-07-19 17:53:27.999 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:53:28.033 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][336773ea-d043-42c8-8791-99cc35d81f23] socks forwarding established\n2025-07-19 17:53:28.117 [info] [command][1002e39a-24cc-45c0-9b18-4ebf4afd2295] Process exited with code 0\n2025-07-19 17:53:28.117 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][336773ea-d043-42c8-8791-99cc35d81f23] socks connection closed\n2025-07-19 17:53:28.117 [info] [command][1002e39a-24cc-45c0-9b18-4ebf4afd2295] Socket close event received\n2025-07-19 17:53:28.150 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61943 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:54:28.123 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:54:28.124 [info] [command][38ab8dac-0976-4ae1-8790-73b101116ae2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""38ab8dac-0976-4ae1-8790-73b101116ae2""}\n2025-07-19 17:54:28.125 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f4be7b7a-0780-4ec6-80a5-25dab17d8e51] received connection request\n2025-07-19 17:54:28.126 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:54:28.164 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f4be7b7a-0780-4ec6-80a5-25dab17d8e51] socks forwarding established\n2025-07-19 17:54:28.208 [info] [command][38ab8dac-0976-4ae1-8790-73b101116ae2] Process exited with code 0\n2025-07-19 17:54:28.208 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f4be7b7a-0780-4ec6-80a5-25dab17d8e51] socks connection closed\n2025-07-19 17:54:28.208 [info] [command][38ab8dac-0976-4ae1-8790-73b101116ae2] Socket close event received\n2025-07-19 17:54:28.243 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61961 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:55:28.214 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:55:28.217 [info] [command][6746097e-abba-4784-aa13-7725ec9e397d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6746097e-abba-4784-aa13-7725ec9e397d""}\n2025-07-19 17:55:28.218 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d69adaf5-7375-4278-b0e0-8303c0390288] received connection request\n2025-07-19 17:55:28.219 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:55:28.251 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d69adaf5-7375-4278-b0e0-8303c0390288] socks forwarding established\n2025-07-19 17:55:28.398 [info] [command][6746097e-abba-4784-aa13-7725ec9e397d] Process exited with code 0\n2025-07-19 17:55:28.398 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d69adaf5-7375-4278-b0e0-8303c0390288] socks connection closed\n2025-07-19 17:55:28.398 [info] [command][6746097e-abba-4784-aa13-7725ec9e397d] Socket close event received\n2025-07-19 17:55:28.428 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 61999 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:56:28.399 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:56:28.399 [info] [command][2364d499-f41b-47db-a61a-06d001b30e9a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2364d499-f41b-47db-a61a-06d001b30e9a""}\n2025-07-19 17:56:28.400 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7ccd951b-0300-4943-9975-ec1987b56892] received connection request\n2025-07-19 17:56:28.400 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:56:28.431 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7ccd951b-0300-4943-9975-ec1987b56892] socks forwarding established\n2025-07-19 17:56:28.475 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7ccd951b-0300-4943-9975-ec1987b56892] socks connection closed\n2025-07-19 17:56:28.475 [info] [command][2364d499-f41b-47db-a61a-06d001b30e9a] Process exited with code 0\n2025-07-19 17:56:28.475 [info] [command][2364d499-f41b-47db-a61a-06d001b30e9a] Socket close event received\n2025-07-19 17:56:28.508 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62032 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:57:28.479 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:57:28.480 [info] [command][5a24e225-6f3c-4b1c-9036-d04dd46435e2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5a24e225-6f3c-4b1c-9036-d04dd46435e2""}\n2025-07-19 17:57:28.480 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4db5bb0f-b0d8-4f9e-a128-b882d3d84783] received connection request\n2025-07-19 17:57:28.480 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:57:28.509 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4db5bb0f-b0d8-4f9e-a128-b882d3d84783] socks forwarding established\n2025-07-19 17:57:28.552 [info] [command][5a24e225-6f3c-4b1c-9036-d04dd46435e2] Process exited with code 0\n2025-07-19 17:57:28.553 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4db5bb0f-b0d8-4f9e-a128-b882d3d84783] socks connection closed\n2025-07-19 17:57:28.553 [info] [command][5a24e225-6f3c-4b1c-9036-d04dd46435e2] Socket close event received\n2025-07-19 17:57:28.582 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62072 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:58:28.562 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:58:28.566 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][dab3c956-64e3-4c9a-b967-8d3c72474535] received connection request\n2025-07-19 17:58:28.566 [info] [command][3168817d-d29a-474a-865b-f8b452d87583] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3168817d-d29a-474a-865b-f8b452d87583""}\n2025-07-19 17:58:28.566 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:58:28.739 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dab3c956-64e3-4c9a-b967-8d3c72474535] socks forwarding established\n2025-07-19 17:58:28.931 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dab3c956-64e3-4c9a-b967-8d3c72474535] socks connection closed\n2025-07-19 17:58:28.931 [info] [command][3168817d-d29a-474a-865b-f8b452d87583] Process exited with code 0\n2025-07-19 17:58:28.932 [info] [command][3168817d-d29a-474a-865b-f8b452d87583] Socket close event received\n2025-07-19 17:58:29.086 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62095 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 17:59:28.942 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 17:59:28.943 [info] [command][40a0f234-d865-476e-afa1-82d979534086] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""40a0f234-d865-476e-afa1-82d979534086""}\n2025-07-19 17:59:28.944 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][00a7f2c6-0abd-45fa-8e9b-c443c73a4841] received connection request\n2025-07-19 17:59:28.945 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 17:59:28.975 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][00a7f2c6-0abd-45fa-8e9b-c443c73a4841] socks forwarding established\n2025-07-19 17:59:29.018 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][00a7f2c6-0abd-45fa-8e9b-c443c73a4841] socks connection closed\n2025-07-19 17:59:29.019 [info] [command][40a0f234-d865-476e-afa1-82d979534086] Process exited with code 0\n2025-07-19 17:59:29.019 [info] [command][40a0f234-d865-476e-afa1-82d979534086] Socket close event received\n2025-07-19 17:59:29.051 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62127 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:00:29.029 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:00:29.030 [info] [command][66b23b42-ef9b-40b7-9676-42bb97682f99] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""66b23b42-ef9b-40b7-9676-42bb97682f99""}\n2025-07-19 18:00:29.031 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fdacb0a1-24ff-448c-9a2e-4505e737f406] received connection request\n2025-07-19 18:00:29.031 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:00:29.067 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fdacb0a1-24ff-448c-9a2e-4505e737f406] socks forwarding established\n2025-07-19 18:00:29.114 [info] [command][66b23b42-ef9b-40b7-9676-42bb97682f99] Process exited with code 0\n2025-07-19 18:00:29.114 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fdacb0a1-24ff-448c-9a2e-4505e737f406] socks connection closed\n2025-07-19 18:00:29.114 [info] [command][66b23b42-ef9b-40b7-9676-42bb97682f99] Socket close event received\n2025-07-19 18:00:29.144 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62149 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:01:29.114 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:01:29.115 [info] [command][592c65c5-6f78-4844-984f-99c70a44e903] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""592c65c5-6f78-4844-984f-99c70a44e903""}\n2025-07-19 18:01:29.115 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6e8b5cbc-b861-44d4-8657-719a560bf929] received connection request\n2025-07-19 18:01:29.116 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:01:29.148 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6e8b5cbc-b861-44d4-8657-719a560bf929] socks forwarding established\n2025-07-19 18:01:29.208 [info] [command][592c65c5-6f78-4844-984f-99c70a44e903] Process exited with code 0\n2025-07-19 18:01:29.209 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6e8b5cbc-b861-44d4-8657-719a560bf929] socks connection closed\n2025-07-19 18:01:29.209 [info] [command][592c65c5-6f78-4844-984f-99c70a44e903] Socket close event received\n2025-07-19 18:01:29.238 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62190 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:02:29.218 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:02:29.221 [info] [command][59b9dee7-54e4-49c3-a332-1a3f3bd55c3f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""59b9dee7-54e4-49c3-a332-1a3f3bd55c3f""}\n2025-07-19 18:02:29.221 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9582681a-6c6c-4434-ada4-f9de05d9456f] received connection request\n2025-07-19 18:02:29.222 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:02:29.254 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9582681a-6c6c-4434-ada4-f9de05d9456f] socks forwarding established\n2025-07-19 18:02:29.300 [info] [command][59b9dee7-54e4-49c3-a332-1a3f3bd55c3f] Process exited with code 0\n2025-07-19 18:02:29.300 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9582681a-6c6c-4434-ada4-f9de05d9456f] socks connection closed\n2025-07-19 18:02:29.300 [info] [command][59b9dee7-54e4-49c3-a332-1a3f3bd55c3f] Socket close event received\n2025-07-19 18:02:29.331 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62214 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:03:29.310 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:03:29.313 [info] [command][bc83c905-e4b2-48a2-af2e-c266aec9b384] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""bc83c905-e4b2-48a2-af2e-c266aec9b384""}\n2025-07-19 18:03:29.313 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7127938e-0219-4130-9aa1-eccb8d599560] received connection request\n2025-07-19 18:03:29.314 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:03:29.346 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7127938e-0219-4130-9aa1-eccb8d599560] socks forwarding established\n2025-07-19 18:03:29.392 [info] [command][bc83c905-e4b2-48a2-af2e-c266aec9b384] Process exited with code 0\n2025-07-19 18:03:29.392 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7127938e-0219-4130-9aa1-eccb8d599560] socks connection closed\n2025-07-19 18:03:29.392 [info] [command][bc83c905-e4b2-48a2-af2e-c266aec9b384] Socket close event received\n2025-07-19 18:03:29.424 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62235 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:04:29.399 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:04:29.401 [info] [command][899cf54b-8d79-4f2b-af81-b4ecdc73f3c6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""899cf54b-8d79-4f2b-af81-b4ecdc73f3c6""}\n2025-07-19 18:04:29.402 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1f3be2a6-a788-4fda-9920-86bfcac130ca] received connection request\n2025-07-19 18:04:29.402 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:04:29.435 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1f3be2a6-a788-4fda-9920-86bfcac130ca] socks forwarding established\n2025-07-19 18:04:29.477 [info] [command][899cf54b-8d79-4f2b-af81-b4ecdc73f3c6] Process exited with code 0\n2025-07-19 18:04:29.478 [info] [command][899cf54b-8d79-4f2b-af81-b4ecdc73f3c6] Socket close event received\n2025-07-19 18:04:29.480 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1f3be2a6-a788-4fda-9920-86bfcac130ca] socks connection closed\n2025-07-19 18:04:29.510 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62267 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:05:29.484 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:05:29.486 [info] [command][92e2baa8-8358-4565-848c-076c35ec87cd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""92e2baa8-8358-4565-848c-076c35ec87cd""}\n2025-07-19 18:05:29.487 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6ede588a-fbde-404e-9a8e-299f5c449767] received connection request\n2025-07-19 18:05:29.487 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:05:29.618 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6ede588a-fbde-404e-9a8e-299f5c449767] socks forwarding established\n2025-07-19 18:05:29.663 [info] [command][92e2baa8-8358-4565-848c-076c35ec87cd] Process exited with code 0\n2025-07-19 18:05:29.663 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6ede588a-fbde-404e-9a8e-299f5c449767] socks connection closed\n2025-07-19 18:05:29.663 [info] [command][92e2baa8-8358-4565-848c-076c35ec87cd] Socket close event received\n2025-07-19 18:05:29.694 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62297 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:06:29.672 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:06:29.674 [info] [command][d35cc94c-04d1-4230-bad2-2017e314dcec] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d35cc94c-04d1-4230-bad2-2017e314dcec""}\n2025-07-19 18:06:29.675 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5f169901-757f-4def-a181-748456ace923] received connection request\n2025-07-19 18:06:29.676 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:06:29.709 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5f169901-757f-4def-a181-748456ace923] socks forwarding established\n2025-07-19 18:06:29.754 [info] [command][d35cc94c-04d1-4230-bad2-2017e314dcec] Process exited with code 0\n2025-07-19 18:06:29.755 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5f169901-757f-4def-a181-748456ace923] socks connection closed\n2025-07-19 18:06:29.755 [info] [command][d35cc94c-04d1-4230-bad2-2017e314dcec] Socket close event received\n2025-07-19 18:06:29.785 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62343 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:07:29.765 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:07:29.767 [info] [command][2e449c6a-0ed9-4496-b83b-ec4a9f4acc80] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2e449c6a-0ed9-4496-b83b-ec4a9f4acc80""}\n2025-07-19 18:07:29.768 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a00f49ac-eaae-4b55-a5ac-52abbc695f02] received connection request\n2025-07-19 18:07:29.768 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:07:29.802 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a00f49ac-eaae-4b55-a5ac-52abbc695f02] socks forwarding established\n2025-07-19 18:07:29.848 [info] [command][2e449c6a-0ed9-4496-b83b-ec4a9f4acc80] Process exited with code 0\n2025-07-19 18:07:29.848 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a00f49ac-eaae-4b55-a5ac-52abbc695f02] socks connection closed\n2025-07-19 18:07:29.848 [info] [command][2e449c6a-0ed9-4496-b83b-ec4a9f4acc80] Socket close event received\n2025-07-19 18:07:29.879 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62363 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:08:29.855 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:08:29.856 [info] [command][5e91e454-042e-4bd0-879e-1cd4560140ce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5e91e454-042e-4bd0-879e-1cd4560140ce""}\n2025-07-19 18:08:29.857 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f9f61c07-a42d-4361-858a-d364dcec4025] received connection request\n2025-07-19 18:08:29.857 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:08:29.945 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f9f61c07-a42d-4361-858a-d364dcec4025] socks forwarding established\n2025-07-19 18:08:30.097 [info] [command][5e91e454-042e-4bd0-879e-1cd4560140ce] Process exited with code 0\n2025-07-19 18:08:30.097 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f9f61c07-a42d-4361-858a-d364dcec4025] socks connection closed\n2025-07-19 18:08:30.097 [info] [command][5e91e454-042e-4bd0-879e-1cd4560140ce] Socket close event received\n2025-07-19 18:08:30.215 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62384 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:09:30.107 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:09:30.109 [info] [command][e209011a-d192-4eab-b987-7f28e2a4afb8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e209011a-d192-4eab-b987-7f28e2a4afb8""}\n2025-07-19 18:09:30.109 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e056aed9-8180-416d-b52e-33eb971705de] received connection request\n2025-07-19 18:09:30.110 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:09:30.141 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e056aed9-8180-416d-b52e-33eb971705de] socks forwarding established\n2025-07-19 18:09:30.189 [info] [command][e209011a-d192-4eab-b987-7f28e2a4afb8] Process exited with code 0\n2025-07-19 18:09:30.189 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e056aed9-8180-416d-b52e-33eb971705de] socks connection closed\n2025-07-19 18:09:30.189 [info] [command][e209011a-d192-4eab-b987-7f28e2a4afb8] Socket close event received\n2025-07-19 18:09:30.221 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62418 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:10:30.199 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:10:30.201 [info] [command][2608cef4-207e-400b-b6e4-6999caf192e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2608cef4-207e-400b-b6e4-6999caf192e7""}\n2025-07-19 18:10:30.202 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6000edce-2d75-4ed4-a62f-9b568f536c57] received connection request\n2025-07-19 18:10:30.202 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:10:30.239 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6000edce-2d75-4ed4-a62f-9b568f536c57] socks forwarding established\n2025-07-19 18:10:30.283 [info] [command][2608cef4-207e-400b-b6e4-6999caf192e7] Process exited with code 0\n2025-07-19 18:10:30.284 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6000edce-2d75-4ed4-a62f-9b568f536c57] socks connection closed\n2025-07-19 18:10:30.284 [info] [command][2608cef4-207e-400b-b6e4-6999caf192e7] Socket close event received\n2025-07-19 18:10:30.314 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62441 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:11:30.284 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:11:30.286 [info] [command][ab4bebc1-858e-4705-aeac-eb6703c8121e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ab4bebc1-858e-4705-aeac-eb6703c8121e""}\n2025-07-19 18:11:30.286 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][76eab9c1-5990-40d7-abe8-c8f17e34af0b] received connection request\n2025-07-19 18:11:30.287 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 18:11:30.288 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:11:30.381 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][76eab9c1-5990-40d7-abe8-c8f17e34af0b] socks forwarding established\n2025-07-19 18:11:30.534 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][76eab9c1-5990-40d7-abe8-c8f17e34af0b] socks connection closed\n2025-07-19 18:11:30.535 [info] [command][ab4bebc1-858e-4705-aeac-eb6703c8121e] Process exited with code 0\n2025-07-19 18:11:30.535 [info] [command][ab4bebc1-858e-4705-aeac-eb6703c8121e] Socket close event received\n2025-07-19 18:11:30.563 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62492 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:12:30.543 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:12:30.545 [info] [command][41bccb57-6444-4167-8127-34e7da7a7158] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""41bccb57-6444-4167-8127-34e7da7a7158""}\n2025-07-19 18:12:30.546 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2e586873-50fd-476f-84bb-9e1fa52425bd] received connection request\n2025-07-19 18:12:30.547 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:12:30.579 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2e586873-50fd-476f-84bb-9e1fa52425bd] socks forwarding established\n2025-07-19 18:12:30.626 [info] [command][41bccb57-6444-4167-8127-34e7da7a7158] Process exited with code 0\n2025-07-19 18:12:30.626 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2e586873-50fd-476f-84bb-9e1fa52425bd] socks connection closed\n2025-07-19 18:12:30.626 [info] [command][41bccb57-6444-4167-8127-34e7da7a7158] Socket close event received\n2025-07-19 18:12:30.656 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62510 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:13:30.628 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:13:30.630 [info] [command][9742ee98-4ab7-49be-9f1e-2bf55b876c7c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9742ee98-4ab7-49be-9f1e-2bf55b876c7c""}\n2025-07-19 18:13:30.631 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2fce6f9d-950a-4dba-93a3-9ce16b0711bd] received connection request\n2025-07-19 18:13:30.631 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:13:30.669 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2fce6f9d-950a-4dba-93a3-9ce16b0711bd] socks forwarding established\n2025-07-19 18:13:30.710 [info] [command][9742ee98-4ab7-49be-9f1e-2bf55b876c7c] Process exited with code 0\n2025-07-19 18:13:30.710 [info] [command][9742ee98-4ab7-49be-9f1e-2bf55b876c7c] Socket close event received\n2025-07-19 18:13:30.711 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2fce6f9d-950a-4dba-93a3-9ce16b0711bd] socks connection closed\n2025-07-19 18:13:30.740 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62531 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:14:30.720 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:14:30.722 [info] [command][85472351-78fe-40ce-9f45-564131587303] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""85472351-78fe-40ce-9f45-564131587303""}\n2025-07-19 18:14:30.722 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9922ba49-9002-4b2a-a1f6-96fcb8482a2e] received connection request\n2025-07-19 18:14:30.723 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:14:30.754 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9922ba49-9002-4b2a-a1f6-96fcb8482a2e] socks forwarding established\n2025-07-19 18:14:30.797 [info] [command][85472351-78fe-40ce-9f45-564131587303] Process exited with code 0\n2025-07-19 18:14:30.797 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9922ba49-9002-4b2a-a1f6-96fcb8482a2e] socks connection closed\n2025-07-19 18:14:30.797 [info] [command][85472351-78fe-40ce-9f45-564131587303] Socket close event received\n2025-07-19 18:14:30.828 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62562 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:15:30.797 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:15:30.800 [info] [command][86974c5f-728c-4f61-a455-2366440deea0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""86974c5f-728c-4f61-a455-2366440deea0""}\n2025-07-19 18:15:30.801 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f55826a0-9884-401f-97e2-1b36e0c0bb2d] received connection request\n2025-07-19 18:15:30.802 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:15:30.835 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f55826a0-9884-401f-97e2-1b36e0c0bb2d] socks forwarding established\n2025-07-19 18:15:30.887 [info] [command][86974c5f-728c-4f61-a455-2366440deea0] Process exited with code 0\n2025-07-19 18:15:30.887 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f55826a0-9884-401f-97e2-1b36e0c0bb2d] socks connection closed\n2025-07-19 18:15:30.887 [info] [command][86974c5f-728c-4f61-a455-2366440deea0] Socket close event received\n2025-07-19 18:15:30.919 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62582 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:16:30.893 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:16:30.894 [info] [command][7a965c09-6800-493e-9f14-8c66696e3582] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7a965c09-6800-493e-9f14-8c66696e3582""}\n2025-07-19 18:16:30.895 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][12121a03-d925-4ab3-b451-d55e2eb1ae7a] received connection request\n2025-07-19 18:16:30.896 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:16:30.930 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][12121a03-d925-4ab3-b451-d55e2eb1ae7a] socks forwarding established\n2025-07-19 18:16:30.977 [info] [command][7a965c09-6800-493e-9f14-8c66696e3582] Process exited with code 0\n2025-07-19 18:16:30.977 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][12121a03-d925-4ab3-b451-d55e2eb1ae7a] socks connection closed\n2025-07-19 18:16:30.978 [info] [command][7a965c09-6800-493e-9f14-8c66696e3582] Socket close event received\n2025-07-19 18:16:31.011 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62630 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:17:30.988 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:17:30.989 [info] [command][d3c24764-8e00-48ad-87bc-f341de3afe10] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d3c24764-8e00-48ad-87bc-f341de3afe10""}\n2025-07-19 18:17:30.990 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][80fcf59a-73b9-4ecd-ac06-fd2eb6c5a931] received connection request\n2025-07-19 18:17:30.991 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:17:31.026 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][80fcf59a-73b9-4ecd-ac06-fd2eb6c5a931] socks forwarding established\n2025-07-19 18:17:31.072 [info] [command][d3c24764-8e00-48ad-87bc-f341de3afe10] Process exited with code 0\n2025-07-19 18:17:31.073 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][80fcf59a-73b9-4ecd-ac06-fd2eb6c5a931] socks connection closed\n2025-07-19 18:17:31.073 [info] [command][d3c24764-8e00-48ad-87bc-f341de3afe10] Socket close event received\n2025-07-19 18:17:31.105 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62648 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:18:31.083 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:18:31.086 [info] [command][3f6c7b77-d6d7-4e69-85c3-b95f33ed7f47] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3f6c7b77-d6d7-4e69-85c3-b95f33ed7f47""}\n2025-07-19 18:18:31.086 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6fd5d431-c302-4af5-b7d7-3a677bf5f5a8] received connection request\n2025-07-19 18:18:31.087 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:18:31.124 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6fd5d431-c302-4af5-b7d7-3a677bf5f5a8] socks forwarding established\n2025-07-19 18:18:31.172 [info] [command][3f6c7b77-d6d7-4e69-85c3-b95f33ed7f47] Process exited with code 0\n2025-07-19 18:18:31.172 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6fd5d431-c302-4af5-b7d7-3a677bf5f5a8] socks connection closed\n2025-07-19 18:18:31.173 [info] [command][3f6c7b77-d6d7-4e69-85c3-b95f33ed7f47] Socket close event received\n2025-07-19 18:18:31.203 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62679 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:19:31.175 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:19:31.176 [info] [command][8f5e4d58-a98f-44af-9265-80219987423a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8f5e4d58-a98f-44af-9265-80219987423a""}\n2025-07-19 18:19:31.177 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b1fa5763-5abf-4812-b71e-965afd3017f2] received connection request\n2025-07-19 18:19:31.178 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:19:31.211 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b1fa5763-5abf-4812-b71e-965afd3017f2] socks forwarding established\n2025-07-19 18:19:31.257 [info] [command][8f5e4d58-a98f-44af-9265-80219987423a] Process exited with code 0\n2025-07-19 18:19:31.257 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b1fa5763-5abf-4812-b71e-965afd3017f2] socks connection closed\n2025-07-19 18:19:31.257 [info] [command][8f5e4d58-a98f-44af-9265-80219987423a] Socket close event received\n2025-07-19 18:19:31.287 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62716 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:20:31.258 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:20:31.260 [info] [command][4c9d6375-0166-428e-a142-4f8525d1e079] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4c9d6375-0166-428e-a142-4f8525d1e079""}\n2025-07-19 18:20:31.261 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7f5b51a7-ad9a-46c7-b7fb-0b9df7b660f1] received connection request\n2025-07-19 18:20:31.262 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:20:31.295 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7f5b51a7-ad9a-46c7-b7fb-0b9df7b660f1] socks forwarding established\n2025-07-19 18:20:31.340 [info] [command][4c9d6375-0166-428e-a142-4f8525d1e079] Process exited with code 0\n2025-07-19 18:20:31.341 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7f5b51a7-ad9a-46c7-b7fb-0b9df7b660f1] socks connection closed\n2025-07-19 18:20:31.341 [info] [command][4c9d6375-0166-428e-a142-4f8525d1e079] Socket close event received\n2025-07-19 18:20:31.372 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62739 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:21:31.342 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:21:31.345 [info] [command][1a36288d-362e-4b8d-84d9-5f35dc630691] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1a36288d-362e-4b8d-84d9-5f35dc630691""}\n2025-07-19 18:21:31.346 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][19d0f8e0-3691-4c89-b770-0c6d1cdfb64e] received connection request\n2025-07-19 18:21:31.348 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:21:31.468 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][19d0f8e0-3691-4c89-b770-0c6d1cdfb64e] socks forwarding established\n2025-07-19 18:21:31.529 [info] [command][1a36288d-362e-4b8d-84d9-5f35dc630691] Process exited with code 0\n2025-07-19 18:21:31.529 [info] [command][1a36288d-362e-4b8d-84d9-5f35dc630691] Socket close event received\n2025-07-19 18:21:31.530 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][19d0f8e0-3691-4c89-b770-0c6d1cdfb64e] socks connection closed\n2025-07-19 18:21:31.690 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62788 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:22:31.537 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:22:31.540 [info] [command][22aca897-a37f-41c9-b311-bdec7a909245] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""22aca897-a37f-41c9-b311-bdec7a909245""}\n2025-07-19 18:22:31.541 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4dc07090-4e4b-4cec-a92f-08767db9aa0c] received connection request\n2025-07-19 18:22:31.541 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:22:31.574 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4dc07090-4e4b-4cec-a92f-08767db9aa0c] socks forwarding established\n2025-07-19 18:22:31.620 [info] [command][22aca897-a37f-41c9-b311-bdec7a909245] Process exited with code 0\n2025-07-19 18:22:31.621 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4dc07090-4e4b-4cec-a92f-08767db9aa0c] socks connection closed\n2025-07-19 18:22:31.621 [info] [command][22aca897-a37f-41c9-b311-bdec7a909245] Socket close event received\n2025-07-19 18:22:31.651 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62806 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:23:31.628 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:23:31.630 [info] [command][fa42057f-f9ee-47aa-8087-eeb9736895f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fa42057f-f9ee-47aa-8087-eeb9736895f2""}\n2025-07-19 18:23:31.631 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ed3e2b09-d224-4a45-88e2-ec074f213053] received connection request\n2025-07-19 18:23:31.631 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:23:31.665 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed3e2b09-d224-4a45-88e2-ec074f213053] socks forwarding established\n2025-07-19 18:23:31.707 [info] [command][fa42057f-f9ee-47aa-8087-eeb9736895f2] Process exited with code 0\n2025-07-19 18:23:31.708 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed3e2b09-d224-4a45-88e2-ec074f213053] socks connection closed\n2025-07-19 18:23:31.708 [info] [command][fa42057f-f9ee-47aa-8087-eeb9736895f2] Socket close event received\n2025-07-19 18:23:31.738 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62824 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:24:31.717 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:24:31.720 [info] [command][5e4453f5-726e-429f-963b-53bc960234d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5e4453f5-726e-429f-963b-53bc960234d6""}\n2025-07-19 18:24:31.720 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][183ebcc3-1816-4e74-93e9-396c0237010e] received connection request\n2025-07-19 18:24:31.721 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:24:31.801 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][183ebcc3-1816-4e74-93e9-396c0237010e] socks forwarding established\n2025-07-19 18:24:31.952 [info] [command][5e4453f5-726e-429f-963b-53bc960234d6] Process exited with code 0\n2025-07-19 18:24:31.952 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][183ebcc3-1816-4e74-93e9-396c0237010e] socks connection closed\n2025-07-19 18:24:31.952 [info] [command][5e4453f5-726e-429f-963b-53bc960234d6] Socket close event received\n2025-07-19 18:24:31.982 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62857 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:25:31.952 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:25:31.955 [info] [command][aab1e087-0eb2-4a7e-9960-1460e16598ae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""aab1e087-0eb2-4a7e-9960-1460e16598ae""}\n2025-07-19 18:25:31.956 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][cb2efda7-bc7c-4e7f-87ab-11abb94c4c39] received connection request\n2025-07-19 18:25:31.957 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:25:31.991 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cb2efda7-bc7c-4e7f-87ab-11abb94c4c39] socks forwarding established\n2025-07-19 18:25:32.036 [info] [command][aab1e087-0eb2-4a7e-9960-1460e16598ae] Process exited with code 0\n2025-07-19 18:25:32.036 [info] [command][aab1e087-0eb2-4a7e-9960-1460e16598ae] Socket close event received\n2025-07-19 18:25:32.037 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cb2efda7-bc7c-4e7f-87ab-11abb94c4c39] socks connection closed\n2025-07-19 18:25:32.066 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62877 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:26:32.047 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:26:32.048 [info] [command][ed559fb5-0046-4ff3-a315-fafd4cc0cd80] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ed559fb5-0046-4ff3-a315-fafd4cc0cd80""}\n2025-07-19 18:26:32.049 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b189a2b3-68ee-4564-92aa-14ec0ee3d056] received connection request\n2025-07-19 18:26:32.050 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:26:32.086 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b189a2b3-68ee-4564-92aa-14ec0ee3d056] socks forwarding established\n2025-07-19 18:26:32.131 [info] [command][ed559fb5-0046-4ff3-a315-fafd4cc0cd80] Process exited with code 0\n2025-07-19 18:26:32.132 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b189a2b3-68ee-4564-92aa-14ec0ee3d056] socks connection closed\n2025-07-19 18:26:32.132 [info] [command][ed559fb5-0046-4ff3-a315-fafd4cc0cd80] Socket close event received\n2025-07-19 18:26:32.162 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62940 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:27:32.140 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:27:32.144 [info] [command][f4000083-7eaa-4d3a-866b-9e0cfdf3243b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f4000083-7eaa-4d3a-866b-9e0cfdf3243b""}\n2025-07-19 18:27:32.145 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][620732c4-6caa-4a3b-a2dc-e0ed76fc9d57] received connection request\n2025-07-19 18:27:32.145 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 18:27:32.146 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:27:32.181 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][620732c4-6caa-4a3b-a2dc-e0ed76fc9d57] socks forwarding established\n2025-07-19 18:27:32.227 [info] [command][f4000083-7eaa-4d3a-866b-9e0cfdf3243b] Process exited with code 0\n2025-07-19 18:27:32.228 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][620732c4-6caa-4a3b-a2dc-e0ed76fc9d57] socks connection closed\n2025-07-19 18:27:32.228 [info] [command][f4000083-7eaa-4d3a-866b-9e0cfdf3243b] Socket close event received\n2025-07-19 18:27:32.258 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62959 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:28:32.238 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:28:32.240 [info] [command][de8aa9af-3ebf-432a-837a-f1511c60d8c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""de8aa9af-3ebf-432a-837a-f1511c60d8c4""}\n2025-07-19 18:28:32.241 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3398d973-444c-46b5-8483-07dfe121cdf7] received connection request\n2025-07-19 18:28:32.242 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:28:32.281 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3398d973-444c-46b5-8483-07dfe121cdf7] socks forwarding established\n2025-07-19 18:28:32.330 [info] [command][de8aa9af-3ebf-432a-837a-f1511c60d8c4] Process exited with code 0\n2025-07-19 18:28:32.330 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3398d973-444c-46b5-8483-07dfe121cdf7] socks connection closed\n2025-07-19 18:28:32.330 [info] [command][de8aa9af-3ebf-432a-837a-f1511c60d8c4] Socket close event received\n2025-07-19 18:28:32.362 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 62982 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:29:32.332 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:29:32.334 [info] [command][85b2c531-223f-4a11-a805-237bff8322f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""85b2c531-223f-4a11-a805-237bff8322f2""}\n2025-07-19 18:29:32.335 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][54545cb9-78fe-4bcd-9158-8e66366f6fa5] received connection request\n2025-07-19 18:29:32.335 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:29:32.369 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][54545cb9-78fe-4bcd-9158-8e66366f6fa5] socks forwarding established\n2025-07-19 18:29:32.416 [info] [command][85b2c531-223f-4a11-a805-237bff8322f2] Process exited with code 0\n2025-07-19 18:29:32.417 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][54545cb9-78fe-4bcd-9158-8e66366f6fa5] socks connection closed\n2025-07-19 18:29:32.417 [info] [command][85b2c531-223f-4a11-a805-237bff8322f2] Socket close event received\n2025-07-19 18:29:32.447 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63021 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:30:32.422 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:30:32.425 [info] [command][c95c7539-54f1-4df6-a1f7-79472dac89f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c95c7539-54f1-4df6-a1f7-79472dac89f4""}\n2025-07-19 18:30:32.425 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c8e58905-cfc1-4d83-863b-81a526a8dbfa] received connection request\n2025-07-19 18:30:32.426 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:30:32.458 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c8e58905-cfc1-4d83-863b-81a526a8dbfa] socks forwarding established\n2025-07-19 18:30:32.502 [info] [command][c95c7539-54f1-4df6-a1f7-79472dac89f4] Process exited with code 0\n2025-07-19 18:30:32.503 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c8e58905-cfc1-4d83-863b-81a526a8dbfa] socks connection closed\n2025-07-19 18:30:32.503 [info] [command][c95c7539-54f1-4df6-a1f7-79472dac89f4] Socket close event received\n2025-07-19 18:30:32.537 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63042 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:31:32.513 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:31:32.515 [info] [command][95fa9521-9f60-4690-b8a5-ae1ec883005b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""95fa9521-9f60-4690-b8a5-ae1ec883005b""}\n2025-07-19 18:31:32.516 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e3220f46-322b-4c25-984e-8eb546df49bf] received connection request\n2025-07-19 18:31:32.516 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:31:32.632 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e3220f46-322b-4c25-984e-8eb546df49bf] socks forwarding established\n2025-07-19 18:31:32.783 [info] [command][95fa9521-9f60-4690-b8a5-ae1ec883005b] Process exited with code 0\n2025-07-19 18:31:32.783 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e3220f46-322b-4c25-984e-8eb546df49bf] socks connection closed\n2025-07-19 18:31:32.783 [info] [command][95fa9521-9f60-4690-b8a5-ae1ec883005b] Socket close event received\n2025-07-19 18:31:32.811 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63091 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:32:32.793 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:32:32.795 [info] [command][38388565-d9b7-4c48-9279-94675a440d6d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""38388565-d9b7-4c48-9279-94675a440d6d""}\n2025-07-19 18:32:32.796 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][408555ca-da74-4cdb-bf05-f320b56dfee2] received connection request\n2025-07-19 18:32:32.796 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:32:32.831 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][408555ca-da74-4cdb-bf05-f320b56dfee2] socks forwarding established\n2025-07-19 18:32:32.878 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][408555ca-da74-4cdb-bf05-f320b56dfee2] socks connection closed\n2025-07-19 18:32:32.878 [info] [command][38388565-d9b7-4c48-9279-94675a440d6d] Process exited with code 0\n2025-07-19 18:32:32.878 [info] [command][38388565-d9b7-4c48-9279-94675a440d6d] Socket close event received\n2025-07-19 18:32:32.909 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63111 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:33:32.889 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:33:32.891 [info] [command][14c8f242-59cc-4c66-ba18-359dd48426a4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""14c8f242-59cc-4c66-ba18-359dd48426a4""}\n2025-07-19 18:33:32.891 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][98926fcf-8b77-4594-b66a-08ff0a5be1b7] received connection request\n2025-07-19 18:33:32.892 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:33:32.926 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][98926fcf-8b77-4594-b66a-08ff0a5be1b7] socks forwarding established\n2025-07-19 18:33:32.971 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][98926fcf-8b77-4594-b66a-08ff0a5be1b7] socks connection closed\n2025-07-19 18:33:32.971 [info] [command][14c8f242-59cc-4c66-ba18-359dd48426a4] Process exited with code 0\n2025-07-19 18:33:32.971 [info] [command][14c8f242-59cc-4c66-ba18-359dd48426a4] Socket close event received\n2025-07-19 18:33:33.001 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63133 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:34:32.974 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:34:32.976 [info] [command][ae0d6c52-b3e7-4d96-ae3f-f1d0e6fd72ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ae0d6c52-b3e7-4d96-ae3f-f1d0e6fd72ba""}\n2025-07-19 18:34:32.977 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8774a151-1d0d-493f-b018-dca05b048907] received connection request\n2025-07-19 18:34:32.977 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:34:33.011 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8774a151-1d0d-493f-b018-dca05b048907] socks forwarding established\n2025-07-19 18:34:33.057 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8774a151-1d0d-493f-b018-dca05b048907] socks connection closed\n2025-07-19 18:34:33.057 [info] [command][ae0d6c52-b3e7-4d96-ae3f-f1d0e6fd72ba] Process exited with code 0\n2025-07-19 18:34:33.057 [info] [command][ae0d6c52-b3e7-4d96-ae3f-f1d0e6fd72ba] Socket close event received\n2025-07-19 18:34:33.088 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63165 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:35:33.068 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:35:33.069 [info] [command][2f14726a-915f-4bb5-8ee0-d14123fcf9c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2f14726a-915f-4bb5-8ee0-d14123fcf9c4""}\n2025-07-19 18:35:33.070 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d1f56b07-0646-4d6e-b602-a49d4a4ee26b] received connection request\n2025-07-19 18:35:33.072 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:35:33.105 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d1f56b07-0646-4d6e-b602-a49d4a4ee26b] socks forwarding established\n2025-07-19 18:35:33.149 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d1f56b07-0646-4d6e-b602-a49d4a4ee26b] socks connection closed\n2025-07-19 18:35:33.150 [info] [command][2f14726a-915f-4bb5-8ee0-d14123fcf9c4] Process exited with code 0\n2025-07-19 18:35:33.150 [info] [command][2f14726a-915f-4bb5-8ee0-d14123fcf9c4] Socket close event received\n2025-07-19 18:35:33.179 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63185 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:36:33.160 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:36:33.162 [info] [command][d53f63e1-93b0-4cc2-b1b5-1d4dd61dddb9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d53f63e1-93b0-4cc2-b1b5-1d4dd61dddb9""}\n2025-07-19 18:36:33.163 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][35f79f2f-6cc8-4646-a1c9-2054d2648527] received connection request\n2025-07-19 18:36:33.164 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:36:33.202 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][35f79f2f-6cc8-4646-a1c9-2054d2648527] socks forwarding established\n2025-07-19 18:36:33.250 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][35f79f2f-6cc8-4646-a1c9-2054d2648527] socks connection closed\n2025-07-19 18:36:33.250 [info] [command][d53f63e1-93b0-4cc2-b1b5-1d4dd61dddb9] Process exited with code 0\n2025-07-19 18:36:33.250 [info] [command][d53f63e1-93b0-4cc2-b1b5-1d4dd61dddb9] Socket close event received\n2025-07-19 18:36:33.280 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63233 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:37:33.260 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:37:33.262 [info] [command][348785f7-46ea-49b3-8cfc-08302fb10809] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""348785f7-46ea-49b3-8cfc-08302fb10809""}\n2025-07-19 18:37:33.262 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][87c9cd36-d6b2-4c06-8e75-df7a36c63462] received connection request\n2025-07-19 18:37:33.263 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:37:33.298 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][87c9cd36-d6b2-4c06-8e75-df7a36c63462] socks forwarding established\n2025-07-19 18:37:33.343 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][87c9cd36-d6b2-4c06-8e75-df7a36c63462] socks connection closed\n2025-07-19 18:37:33.343 [info] [command][348785f7-46ea-49b3-8cfc-08302fb10809] Process exited with code 0\n2025-07-19 18:37:33.343 [info] [command][348785f7-46ea-49b3-8cfc-08302fb10809] Socket close event received\n2025-07-19 18:37:33.374 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63254 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:38:33.349 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:38:33.351 [info] [command][bb2e8e71-44e5-4e9a-8454-8a0c93eb5b7a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""bb2e8e71-44e5-4e9a-8454-8a0c93eb5b7a""}\n2025-07-19 18:38:33.352 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6f54bd51-7eb2-4689-b87c-d5f6e8c77ed3] received connection request\n2025-07-19 18:38:33.353 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:38:33.520 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6f54bd51-7eb2-4689-b87c-d5f6e8c77ed3] socks forwarding established\n2025-07-19 18:38:33.656 [info] [command][bb2e8e71-44e5-4e9a-8454-8a0c93eb5b7a] Process exited with code 0\n2025-07-19 18:38:33.657 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6f54bd51-7eb2-4689-b87c-d5f6e8c77ed3] socks connection closed\n2025-07-19 18:38:33.657 [info] [command][bb2e8e71-44e5-4e9a-8454-8a0c93eb5b7a] Socket close event received\n2025-07-19 18:38:33.841 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63277 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:39:33.667 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:39:33.670 [info] [command][410d221a-f344-4b19-9a74-9c90c04392ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""410d221a-f344-4b19-9a74-9c90c04392ed""}\n2025-07-19 18:39:33.670 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2023a3bb-83b9-4cea-9ae3-5ed019f472fc] received connection request\n2025-07-19 18:39:33.671 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:39:33.709 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2023a3bb-83b9-4cea-9ae3-5ed019f472fc] socks forwarding established\n2025-07-19 18:39:33.748 [info] [command][410d221a-f344-4b19-9a74-9c90c04392ed] Process exited with code 0\n2025-07-19 18:39:33.748 [info] [command][410d221a-f344-4b19-9a74-9c90c04392ed] Socket close event received\n2025-07-19 18:39:33.749 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2023a3bb-83b9-4cea-9ae3-5ed019f472fc] socks connection closed\n2025-07-19 18:39:33.780 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63309 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:40:33.755 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:40:33.757 [info] [command][163cad33-de18-496f-81f9-0d110392a2f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""163cad33-de18-496f-81f9-0d110392a2f9""}\n2025-07-19 18:40:33.758 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a43a22a6-2722-4cfd-985d-5fb93b6d42f1] received connection request\n2025-07-19 18:40:33.758 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:40:33.795 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a43a22a6-2722-4cfd-985d-5fb93b6d42f1] socks forwarding established\n2025-07-19 18:40:33.842 [info] [command][163cad33-de18-496f-81f9-0d110392a2f9] Process exited with code 0\n2025-07-19 18:40:33.843 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a43a22a6-2722-4cfd-985d-5fb93b6d42f1] socks connection closed\n2025-07-19 18:40:33.843 [info] [command][163cad33-de18-496f-81f9-0d110392a2f9] Socket close event received\n2025-07-19 18:40:33.873 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63331 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:41:33.843 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:41:33.844 [info] [command][91cadfdc-86f9-497e-8b1b-f9a4ab38a101] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""91cadfdc-86f9-497e-8b1b-f9a4ab38a101""}\n2025-07-19 18:41:33.845 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][93faf5cd-0efe-401f-97cd-dc7061823298] received connection request\n2025-07-19 18:41:33.845 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:41:33.974 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][93faf5cd-0efe-401f-97cd-dc7061823298] socks forwarding established\n2025-07-19 18:41:34.123 [info] [command][91cadfdc-86f9-497e-8b1b-f9a4ab38a101] Process exited with code 0\n2025-07-19 18:41:34.124 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][93faf5cd-0efe-401f-97cd-dc7061823298] socks connection closed\n2025-07-19 18:41:34.124 [info] [command][91cadfdc-86f9-497e-8b1b-f9a4ab38a101] Socket close event received\n2025-07-19 18:41:34.155 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63379 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:42:34.134 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:42:34.136 [info] [command][5afb9764-d302-4438-8208-be841212cecc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5afb9764-d302-4438-8208-be841212cecc""}\n2025-07-19 18:42:34.136 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fcb22f90-aab0-4f97-830d-54ccc50c517e] received connection request\n2025-07-19 18:42:34.137 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:42:34.174 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fcb22f90-aab0-4f97-830d-54ccc50c517e] socks forwarding established\n2025-07-19 18:42:34.217 [info] [command][5afb9764-d302-4438-8208-be841212cecc] Process exited with code 0\n2025-07-19 18:42:34.218 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fcb22f90-aab0-4f97-830d-54ccc50c517e] socks connection closed\n2025-07-19 18:42:34.218 [info] [command][5afb9764-d302-4438-8208-be841212cecc] Socket close event received\n2025-07-19 18:42:34.248 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63401 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:43:34.228 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:43:34.229 [info] [command][adc0f784-d5f6-4567-89c8-da8e976bb381] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""adc0f784-d5f6-4567-89c8-da8e976bb381""}\n2025-07-19 18:43:34.230 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0f5f8eb9-6d93-4930-9d02-dd0e94ea1d03] received connection request\n2025-07-19 18:43:34.231 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:43:34.263 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0f5f8eb9-6d93-4930-9d02-dd0e94ea1d03] socks forwarding established\n2025-07-19 18:43:34.309 [info] [command][adc0f784-d5f6-4567-89c8-da8e976bb381] Process exited with code 0\n2025-07-19 18:43:34.309 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0f5f8eb9-6d93-4930-9d02-dd0e94ea1d03] socks connection closed\n2025-07-19 18:43:34.309 [info] [command][adc0f784-d5f6-4567-89c8-da8e976bb381] Socket close event received\n2025-07-19 18:43:34.340 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63419 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:44:34.319 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:44:34.322 [info] [command][a1508482-4f2c-4f20-8eca-63f93581c3a4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a1508482-4f2c-4f20-8eca-63f93581c3a4""}\n2025-07-19 18:44:34.323 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4b60e678-4c2d-4467-88dd-83920728d6da] received connection request\n2025-07-19 18:44:34.323 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:44:34.359 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4b60e678-4c2d-4467-88dd-83920728d6da] socks forwarding established\n2025-07-19 18:44:34.404 [info] [command][a1508482-4f2c-4f20-8eca-63f93581c3a4] Process exited with code 0\n2025-07-19 18:44:34.405 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4b60e678-4c2d-4467-88dd-83920728d6da] socks connection closed\n2025-07-19 18:44:34.405 [info] [command][a1508482-4f2c-4f20-8eca-63f93581c3a4] Socket close event received\n2025-07-19 18:44:34.436 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63450 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:45:34.405 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:45:34.406 [info] [command][6c1608ed-494e-4c1e-8f0a-0ed48f512103] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6c1608ed-494e-4c1e-8f0a-0ed48f512103""}\n2025-07-19 18:45:34.406 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][32e5e1ed-baa8-4074-8d35-5d6769df6053] received connection request\n2025-07-19 18:45:34.407 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:45:34.438 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][32e5e1ed-baa8-4074-8d35-5d6769df6053] socks forwarding established\n2025-07-19 18:45:34.482 [info] [command][6c1608ed-494e-4c1e-8f0a-0ed48f512103] Process exited with code 0\n2025-07-19 18:45:34.482 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][32e5e1ed-baa8-4074-8d35-5d6769df6053] socks connection closed\n2025-07-19 18:45:34.482 [info] [command][6c1608ed-494e-4c1e-8f0a-0ed48f512103] Socket close event received\n2025-07-19 18:45:34.513 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63470 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:46:34.483 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:46:34.485 [info] [command][2c776f04-ef06-4ee9-9e68-3eb106fd4ea7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2c776f04-ef06-4ee9-9e68-3eb106fd4ea7""}\n2025-07-19 18:46:34.486 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ba98aaf2-efb1-4b9f-bc2c-c1a2d0bc54f7] received connection request\n2025-07-19 18:46:34.486 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:46:34.518 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ba98aaf2-efb1-4b9f-bc2c-c1a2d0bc54f7] socks forwarding established\n2025-07-19 18:46:34.563 [info] [command][2c776f04-ef06-4ee9-9e68-3eb106fd4ea7] Process exited with code 0\n2025-07-19 18:46:34.564 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ba98aaf2-efb1-4b9f-bc2c-c1a2d0bc54f7] socks connection closed\n2025-07-19 18:46:34.564 [info] [command][2c776f04-ef06-4ee9-9e68-3eb106fd4ea7] Socket close event received\n2025-07-19 18:46:34.594 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63524 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:47:34.567 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:47:34.568 [info] [command][08f0767e-f863-436f-b44c-29d5a2b05d37] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""08f0767e-f863-436f-b44c-29d5a2b05d37""}\n2025-07-19 18:47:34.569 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3403bfec-9962-4670-b19e-c8f790ddd0f9] received connection request\n2025-07-19 18:47:34.569 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:47:34.602 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3403bfec-9962-4670-b19e-c8f790ddd0f9] socks forwarding established\n2025-07-19 18:47:34.649 [info] [command][08f0767e-f863-436f-b44c-29d5a2b05d37] Process exited with code 0\n2025-07-19 18:47:34.649 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3403bfec-9962-4670-b19e-c8f790ddd0f9] socks connection closed\n2025-07-19 18:47:34.649 [info] [command][08f0767e-f863-436f-b44c-29d5a2b05d37] Socket close event received\n2025-07-19 18:47:34.680 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63544 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:48:34.657 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:48:34.659 [info] [command][28c0df74-51a3-474c-923c-3582f95c8f47] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""28c0df74-51a3-474c-923c-3582f95c8f47""}\n2025-07-19 18:48:34.660 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][433023f5-d16e-4546-8598-cf24f235cddd] received connection request\n2025-07-19 18:48:34.661 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:48:34.803 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][433023f5-d16e-4546-8598-cf24f235cddd] socks forwarding established\n2025-07-19 18:48:34.873 [info] [command][28c0df74-51a3-474c-923c-3582f95c8f47] Process exited with code 0\n2025-07-19 18:48:34.874 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][433023f5-d16e-4546-8598-cf24f235cddd] socks connection closed\n2025-07-19 18:48:34.874 [info] [command][28c0df74-51a3-474c-923c-3582f95c8f47] Socket close event received\n2025-07-19 18:48:34.983 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63564 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:49:34.881 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:49:34.883 [info] [command][da083922-ca7d-4349-8a82-02c9304a529a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""da083922-ca7d-4349-8a82-02c9304a529a""}\n2025-07-19 18:49:34.883 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0b156037-b0b2-497a-9ba1-e85723b64775] received connection request\n2025-07-19 18:49:34.884 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:49:34.916 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0b156037-b0b2-497a-9ba1-e85723b64775] socks forwarding established\n2025-07-19 18:49:34.961 [info] [command][da083922-ca7d-4349-8a82-02c9304a529a] Process exited with code 0\n2025-07-19 18:49:34.962 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0b156037-b0b2-497a-9ba1-e85723b64775] socks connection closed\n2025-07-19 18:49:34.962 [info] [command][da083922-ca7d-4349-8a82-02c9304a529a] Socket close event received\n2025-07-19 18:49:34.993 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63599 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:50:34.969 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:50:34.972 [info] [command][d4f008e6-1a3f-4597-9a44-7fc295bd4fe7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d4f008e6-1a3f-4597-9a44-7fc295bd4fe7""}\n2025-07-19 18:50:34.972 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6ae3c77c-78d8-4e53-a8df-aeb16a05a684] received connection request\n2025-07-19 18:50:34.973 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:50:35.007 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6ae3c77c-78d8-4e53-a8df-aeb16a05a684] socks forwarding established\n2025-07-19 18:50:35.053 [info] [command][d4f008e6-1a3f-4597-9a44-7fc295bd4fe7] Process exited with code 0\n2025-07-19 18:50:35.054 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6ae3c77c-78d8-4e53-a8df-aeb16a05a684] socks connection closed\n2025-07-19 18:50:35.054 [info] [command][d4f008e6-1a3f-4597-9a44-7fc295bd4fe7] Socket close event received\n2025-07-19 18:50:35.086 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63615 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:51:35.061 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:51:35.064 [info] [command][5292f3b2-fc0d-4b7f-a7d4-2afef1a042ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5292f3b2-fc0d-4b7f-a7d4-2afef1a042ef""}\n2025-07-19 18:51:35.064 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3fb3496f-8a01-43f0-80cc-8096461a0dd6] received connection request\n2025-07-19 18:51:35.065 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:51:35.100 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3fb3496f-8a01-43f0-80cc-8096461a0dd6] socks forwarding established\n2025-07-19 18:51:35.246 [info] [command][5292f3b2-fc0d-4b7f-a7d4-2afef1a042ef] Process exited with code 0\n2025-07-19 18:51:35.247 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3fb3496f-8a01-43f0-80cc-8096461a0dd6] socks connection closed\n2025-07-19 18:51:35.247 [info] [command][5292f3b2-fc0d-4b7f-a7d4-2afef1a042ef] Socket close event received\n2025-07-19 18:51:35.277 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63665 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:52:35.249 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:52:35.252 [info] [command][c9ad09ff-7b48-4a4c-9f2d-68ee95961ee5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c9ad09ff-7b48-4a4c-9f2d-68ee95961ee5""}\n2025-07-19 18:52:35.252 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ac230aef-e132-4e17-bcee-42e00d925746] received connection request\n2025-07-19 18:52:35.253 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:52:35.289 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ac230aef-e132-4e17-bcee-42e00d925746] socks forwarding established\n2025-07-19 18:52:35.332 [info] [command][c9ad09ff-7b48-4a4c-9f2d-68ee95961ee5] Process exited with code 0\n2025-07-19 18:52:35.333 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ac230aef-e132-4e17-bcee-42e00d925746] socks connection closed\n2025-07-19 18:52:35.334 [info] [command][c9ad09ff-7b48-4a4c-9f2d-68ee95961ee5] Socket close event received\n2025-07-19 18:52:35.365 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63683 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:53:35.336 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:53:35.337 [info] [command][f380e353-3118-423d-b867-ae9a69fc5860] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f380e353-3118-423d-b867-ae9a69fc5860""}\n2025-07-19 18:53:35.338 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][56a39dce-25d7-4367-9d97-70012f076727] received connection request\n2025-07-19 18:53:35.340 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 18:53:35.340 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:53:35.376 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][56a39dce-25d7-4367-9d97-70012f076727] socks forwarding established\n2025-07-19 18:53:35.422 [info] [command][f380e353-3118-423d-b867-ae9a69fc5860] Process exited with code 0\n2025-07-19 18:53:35.422 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][56a39dce-25d7-4367-9d97-70012f076727] socks connection closed\n2025-07-19 18:53:35.422 [info] [command][f380e353-3118-423d-b867-ae9a69fc5860] Socket close event received\n2025-07-19 18:53:35.453 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63709 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:54:35.429 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:54:35.431 [info] [command][f6772e56-ccd0-4860-acfd-44d1bacf0370] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f6772e56-ccd0-4860-acfd-44d1bacf0370""}\n2025-07-19 18:54:35.432 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e2ba0648-9df8-4fe7-a816-e81ee13f5bdb] received connection request\n2025-07-19 18:54:35.432 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:54:35.465 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e2ba0648-9df8-4fe7-a816-e81ee13f5bdb] socks forwarding established\n2025-07-19 18:54:35.506 [info] [command][f6772e56-ccd0-4860-acfd-44d1bacf0370] Process exited with code 0\n2025-07-19 18:54:35.507 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e2ba0648-9df8-4fe7-a816-e81ee13f5bdb] socks connection closed\n2025-07-19 18:54:35.507 [info] [command][f6772e56-ccd0-4860-acfd-44d1bacf0370] Socket close event received\n2025-07-19 18:54:35.538 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63741 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:55:35.511 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:55:35.513 [info] [command][7be5cf65-e73b-47f2-8c3f-e523eba53d29] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7be5cf65-e73b-47f2-8c3f-e523eba53d29""}\n2025-07-19 18:55:35.514 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7ea8c19f-0801-4358-b8c3-6e820106f8da] received connection request\n2025-07-19 18:55:35.515 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:55:35.545 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7ea8c19f-0801-4358-b8c3-6e820106f8da] socks forwarding established\n2025-07-19 18:55:35.591 [info] [command][7be5cf65-e73b-47f2-8c3f-e523eba53d29] Process exited with code 0\n2025-07-19 18:55:35.592 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7ea8c19f-0801-4358-b8c3-6e820106f8da] socks connection closed\n2025-07-19 18:55:35.592 [info] [command][7be5cf65-e73b-47f2-8c3f-e523eba53d29] Socket close event received\n2025-07-19 18:55:35.625 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63763 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:56:35.597 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:56:35.598 [info] [command][ebadedb5-55b9-4b83-9c74-bb1c028b33c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ebadedb5-55b9-4b83-9c74-bb1c028b33c9""}\n2025-07-19 18:56:35.599 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][97b26574-75e5-4dff-8733-e392dad40f65] received connection request\n2025-07-19 18:56:35.600 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:56:35.636 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][97b26574-75e5-4dff-8733-e392dad40f65] socks forwarding established\n2025-07-19 18:56:35.683 [info] [command][ebadedb5-55b9-4b83-9c74-bb1c028b33c9] Process exited with code 0\n2025-07-19 18:56:35.683 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][97b26574-75e5-4dff-8733-e392dad40f65] socks connection closed\n2025-07-19 18:56:35.683 [info] [command][ebadedb5-55b9-4b83-9c74-bb1c028b33c9] Socket close event received\n2025-07-19 18:56:35.713 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63820 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:57:35.693 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:57:35.695 [info] [command][d1a3835e-0e69-42da-94f7-7dc89d22e752] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d1a3835e-0e69-42da-94f7-7dc89d22e752""}\n2025-07-19 18:57:35.696 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fbd2db82-2616-4c8a-970d-cdd031c98b6b] received connection request\n2025-07-19 18:57:35.697 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:57:35.734 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fbd2db82-2616-4c8a-970d-cdd031c98b6b] socks forwarding established\n2025-07-19 18:57:35.778 [info] [command][d1a3835e-0e69-42da-94f7-7dc89d22e752] Process exited with code 0\n2025-07-19 18:57:35.779 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fbd2db82-2616-4c8a-970d-cdd031c98b6b] socks connection closed\n2025-07-19 18:57:35.779 [info] [command][d1a3835e-0e69-42da-94f7-7dc89d22e752] Socket close event received\n2025-07-19 18:57:35.813 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63841 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:58:35.789 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:58:35.791 [info] [command][66e5ce9b-3f27-4d05-9e64-bc1106ee23e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""66e5ce9b-3f27-4d05-9e64-bc1106ee23e5""}\n2025-07-19 18:58:35.792 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ce22c51c-c6ba-4a62-80ca-55974cbc512a] received connection request\n2025-07-19 18:58:35.793 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:58:35.892 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ce22c51c-c6ba-4a62-80ca-55974cbc512a] socks forwarding established\n2025-07-19 18:58:36.046 [info] [command][66e5ce9b-3f27-4d05-9e64-bc1106ee23e5] Process exited with code 0\n2025-07-19 18:58:36.046 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ce22c51c-c6ba-4a62-80ca-55974cbc512a] socks connection closed\n2025-07-19 18:58:36.046 [info] [command][66e5ce9b-3f27-4d05-9e64-bc1106ee23e5] Socket close event received\n2025-07-19 18:58:36.166 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63867 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 18:59:36.056 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 18:59:36.058 [info] [command][e82824d0-10b9-411c-a3ea-e0b7a51a43c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e82824d0-10b9-411c-a3ea-e0b7a51a43c7""}\n2025-07-19 18:59:36.059 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d16510a7-df94-4812-a6c8-e33676ef0267] received connection request\n2025-07-19 18:59:36.060 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 18:59:36.096 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d16510a7-df94-4812-a6c8-e33676ef0267] socks forwarding established\n2025-07-19 18:59:36.142 [info] [command][e82824d0-10b9-411c-a3ea-e0b7a51a43c7] Process exited with code 0\n2025-07-19 18:59:36.142 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d16510a7-df94-4812-a6c8-e33676ef0267] socks connection closed\n2025-07-19 18:59:36.142 [info] [command][e82824d0-10b9-411c-a3ea-e0b7a51a43c7] Socket close event received\n2025-07-19 18:59:36.172 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63909 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:00:36.150 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:00:36.152 [info] [command][a7488474-1af8-4482-8194-de483a777e3f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a7488474-1af8-4482-8194-de483a777e3f""}\n2025-07-19 19:00:36.153 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b67eb4f5-6ca7-41bd-b38a-b688099f89a1] received connection request\n2025-07-19 19:00:36.154 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:00:36.194 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b67eb4f5-6ca7-41bd-b38a-b688099f89a1] socks forwarding established\n2025-07-19 19:00:36.239 [info] [command][a7488474-1af8-4482-8194-de483a777e3f] Process exited with code 0\n2025-07-19 19:00:36.240 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b67eb4f5-6ca7-41bd-b38a-b688099f89a1] socks connection closed\n2025-07-19 19:00:36.240 [info] [command][a7488474-1af8-4482-8194-de483a777e3f] Socket close event received\n2025-07-19 19:00:36.270 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63927 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:01:36.241 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:01:36.243 [info] [command][a8c493d5-2da4-4412-a669-49881213b093] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a8c493d5-2da4-4412-a669-49881213b093""}\n2025-07-19 19:01:36.244 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7ad27477-c812-4c5b-808f-104b9337e8c7] received connection request\n2025-07-19 19:01:36.245 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:01:36.396 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7ad27477-c812-4c5b-808f-104b9337e8c7] socks forwarding established\n2025-07-19 19:01:36.575 [info] [command][a8c493d5-2da4-4412-a669-49881213b093] Process exited with code 0\n2025-07-19 19:01:36.575 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7ad27477-c812-4c5b-808f-104b9337e8c7] socks connection closed\n2025-07-19 19:01:36.576 [info] [command][a8c493d5-2da4-4412-a669-49881213b093] Socket close event received\n2025-07-19 19:01:36.608 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63971 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:02:36.577 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:02:36.579 [info] [command][a6f0e644-b402-47bc-b351-ff441721a7e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a6f0e644-b402-47bc-b351-ff441721a7e6""}\n2025-07-19 19:02:36.580 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][275cdfea-8228-411b-9d8d-b67c2b667909] received connection request\n2025-07-19 19:02:36.580 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:02:36.612 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][275cdfea-8228-411b-9d8d-b67c2b667909] socks forwarding established\n2025-07-19 19:02:36.653 [info] [command][a6f0e644-b402-47bc-b351-ff441721a7e6] Process exited with code 0\n2025-07-19 19:02:36.653 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][275cdfea-8228-411b-9d8d-b67c2b667909] socks connection closed\n2025-07-19 19:02:36.653 [info] [command][a6f0e644-b402-47bc-b351-ff441721a7e6] Socket close event received\n2025-07-19 19:02:36.684 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 63989 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:03:36.653 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:03:36.656 [info] [command][ef361e07-cae9-4138-be3a-72e0315d117f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ef361e07-cae9-4138-be3a-72e0315d117f""}\n2025-07-19 19:03:36.657 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8f01c4b8-670c-4eac-8c8f-46582bac86d2] received connection request\n2025-07-19 19:03:36.657 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:03:36.687 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8f01c4b8-670c-4eac-8c8f-46582bac86d2] socks forwarding established\n2025-07-19 19:03:36.735 [info] [command][ef361e07-cae9-4138-be3a-72e0315d117f] Process exited with code 0\n2025-07-19 19:03:36.735 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8f01c4b8-670c-4eac-8c8f-46582bac86d2] socks connection closed\n2025-07-19 19:03:36.735 [info] [command][ef361e07-cae9-4138-be3a-72e0315d117f] Socket close event received\n2025-07-19 19:03:36.768 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64007 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:04:36.745 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:04:36.747 [info] [command][663a15d3-8b8b-47f9-946e-f24ff4a9319a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""663a15d3-8b8b-47f9-946e-f24ff4a9319a""}\n2025-07-19 19:04:36.748 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][eb1d7cda-74b1-444c-8400-40bcae24a937] received connection request\n2025-07-19 19:04:36.749 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:04:36.781 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][eb1d7cda-74b1-444c-8400-40bcae24a937] socks forwarding established\n2025-07-19 19:04:36.829 [info] [command][663a15d3-8b8b-47f9-946e-f24ff4a9319a] Process exited with code 0\n2025-07-19 19:04:36.830 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][eb1d7cda-74b1-444c-8400-40bcae24a937] socks connection closed\n2025-07-19 19:04:36.830 [info] [command][663a15d3-8b8b-47f9-946e-f24ff4a9319a] Socket close event received\n2025-07-19 19:04:36.861 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64045 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:05:36.838 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:05:36.840 [info] [command][56be90b1-a01d-4307-bce7-95088396c6b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""56be90b1-a01d-4307-bce7-95088396c6b5""}\n2025-07-19 19:05:36.841 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8c2ee4ee-f754-4800-9f00-d8fc3db018aa] received connection request\n2025-07-19 19:05:36.841 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:05:36.875 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8c2ee4ee-f754-4800-9f00-d8fc3db018aa] socks forwarding established\n2025-07-19 19:05:36.921 [info] [command][56be90b1-a01d-4307-bce7-95088396c6b5] Process exited with code 0\n2025-07-19 19:05:36.921 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8c2ee4ee-f754-4800-9f00-d8fc3db018aa] socks connection closed\n2025-07-19 19:05:36.921 [info] [command][56be90b1-a01d-4307-bce7-95088396c6b5] Socket close event received\n2025-07-19 19:05:36.951 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64074 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:06:36.928 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:06:36.932 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ba359403-1acb-47dd-b6f5-9c3092a3cb94] received connection request\n2025-07-19 19:06:36.933 [info] [command][1f9b11ec-e3f8-4486-84d2-d6a2b7794750] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1f9b11ec-e3f8-4486-84d2-d6a2b7794750""}\n2025-07-19 19:06:36.933 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:06:36.970 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ba359403-1acb-47dd-b6f5-9c3092a3cb94] socks forwarding established\n2025-07-19 19:06:37.015 [info] [command][1f9b11ec-e3f8-4486-84d2-d6a2b7794750] Process exited with code 0\n2025-07-19 19:06:37.015 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ba359403-1acb-47dd-b6f5-9c3092a3cb94] socks connection closed\n2025-07-19 19:06:37.015 [info] [command][1f9b11ec-e3f8-4486-84d2-d6a2b7794750] Socket close event received\n2025-07-19 19:06:37.046 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64126 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:07:37.025 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:07:37.027 [info] [command][e9487dc0-b0d4-4612-948d-f843148e85c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e9487dc0-b0d4-4612-948d-f843148e85c7""}\n2025-07-19 19:07:37.028 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3715afe3-407e-4053-a71a-fa77eace047b] received connection request\n2025-07-19 19:07:37.028 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:07:37.060 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3715afe3-407e-4053-a71a-fa77eace047b] socks forwarding established\n2025-07-19 19:07:37.106 [info] [command][e9487dc0-b0d4-4612-948d-f843148e85c7] Process exited with code 0\n2025-07-19 19:07:37.106 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3715afe3-407e-4053-a71a-fa77eace047b] socks connection closed\n2025-07-19 19:07:37.106 [info] [command][e9487dc0-b0d4-4612-948d-f843148e85c7] Socket close event received\n2025-07-19 19:07:37.136 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64145 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:08:37.116 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:08:37.117 [info] [command][c2afc1ef-7638-46ba-ac06-f4651d40efe3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c2afc1ef-7638-46ba-ac06-f4651d40efe3""}\n2025-07-19 19:08:37.118 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e650d497-f14d-42d6-beeb-f1e21e0e4ba1] received connection request\n2025-07-19 19:08:37.119 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:08:37.396 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e650d497-f14d-42d6-beeb-f1e21e0e4ba1] socks forwarding established\n2025-07-19 19:08:37.575 [info] [command][c2afc1ef-7638-46ba-ac06-f4651d40efe3] Process exited with code 0\n2025-07-19 19:08:37.576 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e650d497-f14d-42d6-beeb-f1e21e0e4ba1] socks connection closed\n2025-07-19 19:08:37.576 [info] [command][c2afc1ef-7638-46ba-ac06-f4651d40efe3] Socket close event received\n2025-07-19 19:08:37.695 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64166 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:09:37.585 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:09:37.587 [info] [command][6178dac9-f6d2-46a9-9445-faa5f0121ef8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6178dac9-f6d2-46a9-9445-faa5f0121ef8""}\n2025-07-19 19:09:37.588 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6c4918fc-d567-4bbd-8c20-e4dfc66df706] received connection request\n2025-07-19 19:09:37.589 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:09:37.623 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6c4918fc-d567-4bbd-8c20-e4dfc66df706] socks forwarding established\n2025-07-19 19:09:37.671 [info] [command][6178dac9-f6d2-46a9-9445-faa5f0121ef8] Process exited with code 0\n2025-07-19 19:09:37.672 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6c4918fc-d567-4bbd-8c20-e4dfc66df706] socks connection closed\n2025-07-19 19:09:37.672 [info] [command][6178dac9-f6d2-46a9-9445-faa5f0121ef8] Socket close event received\n2025-07-19 19:09:37.701 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64203 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:10:37.682 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:10:37.683 [info] [command][b0a7f832-cabc-42a6-8aa6-da57e96690f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b0a7f832-cabc-42a6-8aa6-da57e96690f4""}\n2025-07-19 19:10:37.683 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8d992ef7-6b3b-4460-b8e8-4ce6b8dd11f4] received connection request\n2025-07-19 19:10:37.684 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:10:37.720 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8d992ef7-6b3b-4460-b8e8-4ce6b8dd11f4] socks forwarding established\n2025-07-19 19:10:37.766 [info] [command][b0a7f832-cabc-42a6-8aa6-da57e96690f4] Process exited with code 0\n2025-07-19 19:10:37.766 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8d992ef7-6b3b-4460-b8e8-4ce6b8dd11f4] socks connection closed\n2025-07-19 19:10:37.766 [info] [command][b0a7f832-cabc-42a6-8aa6-da57e96690f4] Socket close event received\n2025-07-19 19:10:37.797 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64230 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:11:37.766 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:11:37.768 [info] [command][a7f79d0c-9f01-4c4f-9a6d-84840cab783b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a7f79d0c-9f01-4c4f-9a6d-84840cab783b""}\n2025-07-19 19:11:37.769 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6005068e-73b2-4a39-a593-7a5073c6f69c] received connection request\n2025-07-19 19:11:37.770 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:11:37.806 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6005068e-73b2-4a39-a593-7a5073c6f69c] socks forwarding established\n2025-07-19 19:11:37.853 [info] [command][a7f79d0c-9f01-4c4f-9a6d-84840cab783b] Process exited with code 0\n2025-07-19 19:11:37.854 [info] [command][a7f79d0c-9f01-4c4f-9a6d-84840cab783b] Socket close event received\n2025-07-19 19:11:37.854 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6005068e-73b2-4a39-a593-7a5073c6f69c] socks connection closed\n2025-07-19 19:11:37.892 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64277 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:12:37.857 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:12:37.860 [info] [command][e0966e73-e920-4f59-95d4-09dac37b02e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e0966e73-e920-4f59-95d4-09dac37b02e5""}\n2025-07-19 19:12:37.861 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][bc59db13-d891-493d-b208-aed9e6c2d18c] received connection request\n2025-07-19 19:12:37.862 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:12:37.899 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bc59db13-d891-493d-b208-aed9e6c2d18c] socks forwarding established\n2025-07-19 19:12:37.943 [info] [command][e0966e73-e920-4f59-95d4-09dac37b02e5] Process exited with code 0\n2025-07-19 19:12:37.943 [info] [command][e0966e73-e920-4f59-95d4-09dac37b02e5] Socket close event received\n2025-07-19 19:12:37.944 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bc59db13-d891-493d-b208-aed9e6c2d18c] socks connection closed\n2025-07-19 19:12:37.974 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64298 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:13:37.952 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:13:37.954 [info] [command][89715f5c-390e-4fec-8ef7-b0bc2bff5edf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""89715f5c-390e-4fec-8ef7-b0bc2bff5edf""}\n2025-07-19 19:13:37.955 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b46081b0-2eed-4a8e-86a4-4db3de26a746] received connection request\n2025-07-19 19:13:37.956 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:13:37.988 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b46081b0-2eed-4a8e-86a4-4db3de26a746] socks forwarding established\n2025-07-19 19:13:38.032 [info] [command][89715f5c-390e-4fec-8ef7-b0bc2bff5edf] Process exited with code 0\n2025-07-19 19:13:38.032 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b46081b0-2eed-4a8e-86a4-4db3de26a746] socks connection closed\n2025-07-19 19:13:38.032 [info] [command][89715f5c-390e-4fec-8ef7-b0bc2bff5edf] Socket close event received\n2025-07-19 19:13:38.062 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64324 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:14:38.043 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:14:38.046 [info] [command][a3624e7d-0646-4a59-9635-e320eb592df8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a3624e7d-0646-4a59-9635-e320eb592df8""}\n2025-07-19 19:14:38.047 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][afbc91e7-1fa2-4768-8cfa-f4cb088300f5] received connection request\n2025-07-19 19:14:38.047 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:14:38.082 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][afbc91e7-1fa2-4768-8cfa-f4cb088300f5] socks forwarding established\n2025-07-19 19:14:38.126 [info] [command][a3624e7d-0646-4a59-9635-e320eb592df8] Process exited with code 0\n2025-07-19 19:14:38.127 [info] [command][a3624e7d-0646-4a59-9635-e320eb592df8] Socket close event received\n2025-07-19 19:14:38.127 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][afbc91e7-1fa2-4768-8cfa-f4cb088300f5] socks connection closed\n2025-07-19 19:14:38.158 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64355 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:15:38.137 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:15:38.140 [info] [command][038ee592-f48b-4b99-9bb8-17695922c91d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""038ee592-f48b-4b99-9bb8-17695922c91d""}\n2025-07-19 19:15:38.141 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][95807ee1-c2e6-42d4-812e-2d87b7051e98] received connection request\n2025-07-19 19:15:38.142 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:15:38.199 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][95807ee1-c2e6-42d4-812e-2d87b7051e98] socks forwarding established\n2025-07-19 19:15:38.293 [info] [command][038ee592-f48b-4b99-9bb8-17695922c91d] Process exited with code 0\n2025-07-19 19:15:38.293 [info] [command][038ee592-f48b-4b99-9bb8-17695922c91d] Socket close event received\n2025-07-19 19:15:38.294 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][95807ee1-c2e6-42d4-812e-2d87b7051e98] socks connection closed\n2025-07-19 19:15:38.325 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64378 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:16:38.296 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:16:38.299 [info] [command][a727ce68-b32c-45a0-a462-a02f53739784] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a727ce68-b32c-45a0-a462-a02f53739784""}\n2025-07-19 19:16:38.300 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][992e991a-e6dd-465c-aae0-fa26150d21c8] received connection request\n2025-07-19 19:16:38.301 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:16:38.332 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][992e991a-e6dd-465c-aae0-fa26150d21c8] socks forwarding established\n2025-07-19 19:16:38.378 [info] [command][a727ce68-b32c-45a0-a462-a02f53739784] Process exited with code 0\n2025-07-19 19:16:38.378 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][992e991a-e6dd-465c-aae0-fa26150d21c8] socks connection closed\n2025-07-19 19:16:38.378 [info] [command][a727ce68-b32c-45a0-a462-a02f53739784] Socket close event received\n2025-07-19 19:16:38.408 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64423 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:17:38.388 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:17:38.391 [info] [command][1acb0186-bc5a-4993-9ba3-fdc767b6ac55] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1acb0186-bc5a-4993-9ba3-fdc767b6ac55""}\n2025-07-19 19:17:38.392 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7dade3ef-6e20-43da-b265-fd91a67eadc9] received connection request\n2025-07-19 19:17:38.393 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:17:38.427 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7dade3ef-6e20-43da-b265-fd91a67eadc9] socks forwarding established\n2025-07-19 19:17:38.472 [info] [command][1acb0186-bc5a-4993-9ba3-fdc767b6ac55] Process exited with code 0\n2025-07-19 19:17:38.473 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7dade3ef-6e20-43da-b265-fd91a67eadc9] socks connection closed\n2025-07-19 19:17:38.473 [info] [command][1acb0186-bc5a-4993-9ba3-fdc767b6ac55] Socket close event received\n2025-07-19 19:17:38.505 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64445 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:18:38.480 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:18:38.483 [info] [command][7fd1a52b-edd3-40e6-9a78-a546aede2efe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7fd1a52b-edd3-40e6-9a78-a546aede2efe""}\n2025-07-19 19:18:38.483 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f3d8ee03-13f1-4afc-95e7-f2aed1b0dcad] received connection request\n2025-07-19 19:18:38.484 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:18:38.565 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f3d8ee03-13f1-4afc-95e7-f2aed1b0dcad] socks forwarding established\n2025-07-19 19:18:38.717 [info] [command][7fd1a52b-edd3-40e6-9a78-a546aede2efe] Process exited with code 0\n2025-07-19 19:18:38.717 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f3d8ee03-13f1-4afc-95e7-f2aed1b0dcad] socks connection closed\n2025-07-19 19:18:38.717 [info] [command][7fd1a52b-edd3-40e6-9a78-a546aede2efe] Socket close event received\n2025-07-19 19:18:38.748 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64467 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:19:38.720 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:19:38.723 [info] [command][f58993c0-b743-4b19-81e6-35651665a431] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f58993c0-b743-4b19-81e6-35651665a431""}\n2025-07-19 19:19:38.724 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][20e7b84a-84b2-48fb-ba43-9ce799f88343] received connection request\n2025-07-19 19:19:38.724 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:19:38.760 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][20e7b84a-84b2-48fb-ba43-9ce799f88343] socks forwarding established\n2025-07-19 19:19:38.803 [info] [command][f58993c0-b743-4b19-81e6-35651665a431] Process exited with code 0\n2025-07-19 19:19:38.804 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][20e7b84a-84b2-48fb-ba43-9ce799f88343] socks connection closed\n2025-07-19 19:19:38.804 [info] [command][f58993c0-b743-4b19-81e6-35651665a431] Socket close event received\n2025-07-19 19:19:38.835 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64503 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:20:38.813 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:20:38.816 [info] [command][ea63e8e6-9e7c-423f-bd2b-1195e0235733] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ea63e8e6-9e7c-423f-bd2b-1195e0235733""}\n2025-07-19 19:20:38.817 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f6162e6f-27fa-46c8-bca8-48c16ccdbe46] received connection request\n2025-07-19 19:20:38.818 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:20:38.855 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f6162e6f-27fa-46c8-bca8-48c16ccdbe46] socks forwarding established\n2025-07-19 19:20:38.905 [info] [command][ea63e8e6-9e7c-423f-bd2b-1195e0235733] Process exited with code 0\n2025-07-19 19:20:38.905 [info] [command][ea63e8e6-9e7c-423f-bd2b-1195e0235733] Socket close event received\n2025-07-19 19:20:38.905 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f6162e6f-27fa-46c8-bca8-48c16ccdbe46] socks connection closed\n2025-07-19 19:20:38.937 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64529 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:21:38.913 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:21:38.916 [info] [command][3d17cd19-b8af-40c8-b129-cab14dc0c3b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3d17cd19-b8af-40c8-b129-cab14dc0c3b8""}\n2025-07-19 19:21:38.916 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][52261353-c4f9-445f-a157-1f65bce840c4] received connection request\n2025-07-19 19:21:38.916 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:21:38.955 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][52261353-c4f9-445f-a157-1f65bce840c4] socks forwarding established\n2025-07-19 19:21:39.003 [info] [command][3d17cd19-b8af-40c8-b129-cab14dc0c3b8] Process exited with code 0\n2025-07-19 19:21:39.003 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][52261353-c4f9-445f-a157-1f65bce840c4] socks connection closed\n2025-07-19 19:21:39.003 [info] [command][3d17cd19-b8af-40c8-b129-cab14dc0c3b8] Socket close event received\n2025-07-19 19:21:39.038 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64573 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:22:39.009 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:22:39.011 [info] [command][995c4fb0-5961-4ed8-936c-a25bebe1c95d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""995c4fb0-5961-4ed8-936c-a25bebe1c95d""}\n2025-07-19 19:22:39.012 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4740cc4d-9989-4ec0-bb59-e73d7aa88735] received connection request\n2025-07-19 19:22:39.013 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:22:39.048 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4740cc4d-9989-4ec0-bb59-e73d7aa88735] socks forwarding established\n2025-07-19 19:22:39.097 [info] [command][995c4fb0-5961-4ed8-936c-a25bebe1c95d] Process exited with code 0\n2025-07-19 19:22:39.098 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4740cc4d-9989-4ec0-bb59-e73d7aa88735] socks connection closed\n2025-07-19 19:22:39.098 [info] [command][995c4fb0-5961-4ed8-936c-a25bebe1c95d] Socket close event received\n2025-07-19 19:22:39.131 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64593 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:23:39.105 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:23:39.106 [info] [command][83b9a542-4d57-48a8-8b30-0637404fef07] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""83b9a542-4d57-48a8-8b30-0637404fef07""}\n2025-07-19 19:23:39.107 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][816442dd-3146-492a-8b51-1468248a6c64] received connection request\n2025-07-19 19:23:39.108 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:23:39.144 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][816442dd-3146-492a-8b51-1468248a6c64] socks forwarding established\n2025-07-19 19:23:39.190 [info] [command][83b9a542-4d57-48a8-8b30-0637404fef07] Process exited with code 0\n2025-07-19 19:23:39.190 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][816442dd-3146-492a-8b51-1468248a6c64] socks connection closed\n2025-07-19 19:23:39.190 [info] [command][83b9a542-4d57-48a8-8b30-0637404fef07] Socket close event received\n2025-07-19 19:23:39.221 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64612 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:24:39.199 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:24:39.203 [info] [command][f2af0b08-ec90-4f5d-a428-64defdaef342] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f2af0b08-ec90-4f5d-a428-64defdaef342""}\n2025-07-19 19:24:39.204 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][cd0a3c60-7b9e-4681-a3a1-2d116871432e] received connection request\n2025-07-19 19:24:39.204 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:24:39.242 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cd0a3c60-7b9e-4681-a3a1-2d116871432e] socks forwarding established\n2025-07-19 19:24:39.287 [info] [command][f2af0b08-ec90-4f5d-a428-64defdaef342] Process exited with code 0\n2025-07-19 19:24:39.287 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cd0a3c60-7b9e-4681-a3a1-2d116871432e] socks connection closed\n2025-07-19 19:24:39.287 [info] [command][f2af0b08-ec90-4f5d-a428-64defdaef342] Socket close event received\n2025-07-19 19:24:39.319 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64643 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:25:39.290 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:25:39.293 [info] [command][70bb06f4-9e42-43e6-bdad-a3af490b68f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""70bb06f4-9e42-43e6-bdad-a3af490b68f2""}\n2025-07-19 19:25:39.294 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][18aa743f-645a-4fbe-b328-b31b4a547c4d] received connection request\n2025-07-19 19:25:39.294 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:25:39.327 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][18aa743f-645a-4fbe-b328-b31b4a547c4d] socks forwarding established\n2025-07-19 19:25:39.374 [info] [command][70bb06f4-9e42-43e6-bdad-a3af490b68f2] Process exited with code 0\n2025-07-19 19:25:39.375 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][18aa743f-645a-4fbe-b328-b31b4a547c4d] socks connection closed\n2025-07-19 19:25:39.375 [info] [command][70bb06f4-9e42-43e6-bdad-a3af490b68f2] Socket close event received\n2025-07-19 19:25:39.403 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64665 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:26:39.383 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:26:39.385 [info] [command][dde07a2e-5873-4900-a3f3-97e6bd729a67] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""dde07a2e-5873-4900-a3f3-97e6bd729a67""}\n2025-07-19 19:26:39.386 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][70e39d9f-beed-429a-8e2f-b686f5c9db07] received connection request\n2025-07-19 19:26:39.386 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:26:39.419 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][70e39d9f-beed-429a-8e2f-b686f5c9db07] socks forwarding established\n2025-07-19 19:26:39.464 [info] [command][dde07a2e-5873-4900-a3f3-97e6bd729a67] Process exited with code 0\n2025-07-19 19:26:39.465 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][70e39d9f-beed-429a-8e2f-b686f5c9db07] socks connection closed\n2025-07-19 19:26:39.465 [info] [command][dde07a2e-5873-4900-a3f3-97e6bd729a67] Socket close event received\n2025-07-19 19:26:39.497 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64711 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:27:39.471 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:27:39.473 [info] [command][c40f0668-1ce4-4aa1-94e7-9956048fa25d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c40f0668-1ce4-4aa1-94e7-9956048fa25d""}\n2025-07-19 19:27:39.473 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][78ea5873-a38f-4996-900e-1ed132785a51] received connection request\n2025-07-19 19:27:39.474 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:27:39.512 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][78ea5873-a38f-4996-900e-1ed132785a51] socks forwarding established\n2025-07-19 19:27:39.555 [info] [command][c40f0668-1ce4-4aa1-94e7-9956048fa25d] Process exited with code 0\n2025-07-19 19:27:39.555 [info] [command][c40f0668-1ce4-4aa1-94e7-9956048fa25d] Socket close event received\n2025-07-19 19:27:39.556 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][78ea5873-a38f-4996-900e-1ed132785a51] socks connection closed\n2025-07-19 19:27:39.587 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64728 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:28:39.563 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:28:39.566 [info] [command][e616f94e-039f-46ed-9679-1c7c9c2069fd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e616f94e-039f-46ed-9679-1c7c9c2069fd""}\n2025-07-19 19:28:39.567 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e97f2e16-547b-43cd-a05a-95284fd1497e] received connection request\n2025-07-19 19:28:39.568 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:28:39.667 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e97f2e16-547b-43cd-a05a-95284fd1497e] socks forwarding established\n2025-07-19 19:28:39.763 [info] [command][e616f94e-039f-46ed-9679-1c7c9c2069fd] Process exited with code 0\n2025-07-19 19:28:39.763 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e97f2e16-547b-43cd-a05a-95284fd1497e] socks connection closed\n2025-07-19 19:28:39.763 [info] [command][e616f94e-039f-46ed-9679-1c7c9c2069fd] Socket close event received\n2025-07-19 19:28:39.793 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64750 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:29:39.766 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:29:39.768 [info] [command][d3e36ab9-3a6b-49e0-b2ca-a06be831db0a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d3e36ab9-3a6b-49e0-b2ca-a06be831db0a""}\n2025-07-19 19:29:39.769 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][80a5c3eb-dd8b-4f3f-a3e5-a7ade0363ba4] received connection request\n2025-07-19 19:29:39.769 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:29:39.800 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][80a5c3eb-dd8b-4f3f-a3e5-a7ade0363ba4] socks forwarding established\n2025-07-19 19:29:39.843 [info] [command][d3e36ab9-3a6b-49e0-b2ca-a06be831db0a] Process exited with code 0\n2025-07-19 19:29:39.843 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][80a5c3eb-dd8b-4f3f-a3e5-a7ade0363ba4] socks connection closed\n2025-07-19 19:29:39.844 [info] [command][d3e36ab9-3a6b-49e0-b2ca-a06be831db0a] Socket close event received\n2025-07-19 19:29:39.874 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64784 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:30:39.847 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:30:39.850 [info] [command][c8ded055-7bbb-48d5-bd3f-87f6907361a7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c8ded055-7bbb-48d5-bd3f-87f6907361a7""}\n2025-07-19 19:30:39.851 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][be07001c-19e3-49b5-bf27-98229019abbe] received connection request\n2025-07-19 19:30:39.851 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:30:39.883 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][be07001c-19e3-49b5-bf27-98229019abbe] socks forwarding established\n2025-07-19 19:30:39.925 [info] [command][c8ded055-7bbb-48d5-bd3f-87f6907361a7] Process exited with code 0\n2025-07-19 19:30:39.925 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][be07001c-19e3-49b5-bf27-98229019abbe] socks connection closed\n2025-07-19 19:30:39.925 [info] [command][c8ded055-7bbb-48d5-bd3f-87f6907361a7] Socket close event received\n2025-07-19 19:30:39.958 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64804 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:31:39.933 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:31:39.936 [info] [command][df205df4-cd5f-4177-8637-69112950cc2f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""df205df4-cd5f-4177-8637-69112950cc2f""}\n2025-07-19 19:31:39.936 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b33b6e90-fbe5-4f08-b23b-403e2b31fc97] received connection request\n2025-07-19 19:31:39.937 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:31:40.036 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b33b6e90-fbe5-4f08-b23b-403e2b31fc97] socks forwarding established\n2025-07-19 19:31:40.187 [info] [command][df205df4-cd5f-4177-8637-69112950cc2f] Process exited with code 0\n2025-07-19 19:31:40.187 [info] [command][df205df4-cd5f-4177-8637-69112950cc2f] Socket close event received\n2025-07-19 19:31:40.188 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b33b6e90-fbe5-4f08-b23b-403e2b31fc97] socks connection closed\n2025-07-19 19:31:40.218 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64848 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:32:40.189 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:32:40.192 [info] [command][d1127425-8584-4b61-b573-d7bda6d7f2a0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d1127425-8584-4b61-b573-d7bda6d7f2a0""}\n2025-07-19 19:32:40.192 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][dc84628a-b737-4966-b675-f761cb7e7e99] received connection request\n2025-07-19 19:32:40.193 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:32:40.225 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dc84628a-b737-4966-b675-f761cb7e7e99] socks forwarding established\n2025-07-19 19:32:40.271 [info] [command][d1127425-8584-4b61-b573-d7bda6d7f2a0] Process exited with code 0\n2025-07-19 19:32:40.272 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dc84628a-b737-4966-b675-f761cb7e7e99] socks connection closed\n2025-07-19 19:32:40.272 [info] [command][d1127425-8584-4b61-b573-d7bda6d7f2a0] Socket close event received\n2025-07-19 19:32:40.305 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64875 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:33:40.281 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:33:40.283 [info] [command][c93eaa05-894a-4036-aa0e-c4811a3d0796] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c93eaa05-894a-4036-aa0e-c4811a3d0796""}\n2025-07-19 19:33:40.283 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][db7303d9-582c-4757-a478-169eb3f208d7] received connection request\n2025-07-19 19:33:40.284 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:33:40.315 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][db7303d9-582c-4757-a478-169eb3f208d7] socks forwarding established\n2025-07-19 19:33:40.360 [info] [command][c93eaa05-894a-4036-aa0e-c4811a3d0796] Process exited with code 0\n2025-07-19 19:33:40.361 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][db7303d9-582c-4757-a478-169eb3f208d7] socks connection closed\n2025-07-19 19:33:40.361 [info] [command][c93eaa05-894a-4036-aa0e-c4811a3d0796] Socket close event received\n2025-07-19 19:33:40.392 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64893 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:34:40.368 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:34:40.369 [info] [command][80dbc2b1-fab4-4bd9-bbb0-400c07531bb8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""80dbc2b1-fab4-4bd9-bbb0-400c07531bb8""}\n2025-07-19 19:34:40.370 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d82578b4-21c0-458d-9b4c-4c50aab455d6] received connection request\n2025-07-19 19:34:40.370 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:34:40.456 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d82578b4-21c0-458d-9b4c-4c50aab455d6] socks forwarding established\n2025-07-19 19:34:40.606 [info] [command][80dbc2b1-fab4-4bd9-bbb0-400c07531bb8] Process exited with code 0\n2025-07-19 19:34:40.607 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d82578b4-21c0-458d-9b4c-4c50aab455d6] socks connection closed\n2025-07-19 19:34:40.607 [info] [command][80dbc2b1-fab4-4bd9-bbb0-400c07531bb8] Socket close event received\n2025-07-19 19:34:40.640 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64928 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:35:40.617 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:35:40.618 [info] [command][e83b2c25-d5b3-4bd4-9cbd-e8b6a466990e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e83b2c25-d5b3-4bd4-9cbd-e8b6a466990e""}\n2025-07-19 19:35:40.619 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6ad9466c-ea49-4232-b6d4-cc013b041f2e] received connection request\n2025-07-19 19:35:40.620 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:35:40.656 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6ad9466c-ea49-4232-b6d4-cc013b041f2e] socks forwarding established\n2025-07-19 19:35:40.703 [info] [command][e83b2c25-d5b3-4bd4-9cbd-e8b6a466990e] Process exited with code 0\n2025-07-19 19:35:40.704 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6ad9466c-ea49-4232-b6d4-cc013b041f2e] socks connection closed\n2025-07-19 19:35:40.704 [info] [command][e83b2c25-d5b3-4bd4-9cbd-e8b6a466990e] Socket close event received\n2025-07-19 19:35:40.734 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 64949 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:36:40.713 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:36:40.715 [info] [command][2812f238-d02c-4ca1-8355-076b05be7cc3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2812f238-d02c-4ca1-8355-076b05be7cc3""}\n2025-07-19 19:36:40.716 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][372d5de3-f688-4594-99d8-cb86330022c1] received connection request\n2025-07-19 19:36:40.716 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:36:40.755 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][372d5de3-f688-4594-99d8-cb86330022c1] socks forwarding established\n2025-07-19 19:36:40.802 [info] [command][2812f238-d02c-4ca1-8355-076b05be7cc3] Process exited with code 0\n2025-07-19 19:36:40.802 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][372d5de3-f688-4594-99d8-cb86330022c1] socks connection closed\n2025-07-19 19:36:40.803 [info] [command][2812f238-d02c-4ca1-8355-076b05be7cc3] Socket close event received\n2025-07-19 19:36:40.833 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65000 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:37:40.805 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:37:40.807 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][15e3a06e-f2a5-445b-851d-a54e889d8945] received connection request\n2025-07-19 19:37:40.808 [info] [command][75550eae-53e8-4c7c-968e-cfa79f324041] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""75550eae-53e8-4c7c-968e-cfa79f324041""}\n2025-07-19 19:37:40.808 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:37:40.844 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][15e3a06e-f2a5-445b-851d-a54e889d8945] socks forwarding established\n2025-07-19 19:37:40.886 [info] [command][75550eae-53e8-4c7c-968e-cfa79f324041] Process exited with code 0\n2025-07-19 19:37:40.887 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][15e3a06e-f2a5-445b-851d-a54e889d8945] socks connection closed\n2025-07-19 19:37:40.887 [info] [command][75550eae-53e8-4c7c-968e-cfa79f324041] Socket close event received\n2025-07-19 19:37:40.924 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65018 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:38:40.896 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:38:40.898 [info] [command][0e4a697d-2e84-404a-ad38-1700f2e7af87] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0e4a697d-2e84-404a-ad38-1700f2e7af87""}\n2025-07-19 19:38:40.899 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a9e1c41b-9302-4779-9fce-11691906bf9c] received connection request\n2025-07-19 19:38:40.900 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:38:40.936 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a9e1c41b-9302-4779-9fce-11691906bf9c] socks forwarding established\n2025-07-19 19:38:40.981 [info] [command][0e4a697d-2e84-404a-ad38-1700f2e7af87] Process exited with code 0\n2025-07-19 19:38:40.982 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a9e1c41b-9302-4779-9fce-11691906bf9c] socks connection closed\n2025-07-19 19:38:40.982 [info] [command][0e4a697d-2e84-404a-ad38-1700f2e7af87] Socket close event received\n2025-07-19 19:38:41.014 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65037 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:39:40.987 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:39:40.989 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b51b0217-33fb-4376-9545-cf7e54f21f3c] received connection request\n2025-07-19 19:39:40.990 [info] [command][bcbf3a30-c97d-4efa-8e7f-5c6bcf117aef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""bcbf3a30-c97d-4efa-8e7f-5c6bcf117aef""}\n2025-07-19 19:39:40.990 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:39:41.031 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b51b0217-33fb-4376-9545-cf7e54f21f3c] socks forwarding established\n2025-07-19 19:39:41.076 [info] [command][bcbf3a30-c97d-4efa-8e7f-5c6bcf117aef] Process exited with code 0\n2025-07-19 19:39:41.076 [info] [command][bcbf3a30-c97d-4efa-8e7f-5c6bcf117aef] Socket close event received\n2025-07-19 19:39:41.077 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b51b0217-33fb-4376-9545-cf7e54f21f3c] socks connection closed\n2025-07-19 19:39:41.107 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65068 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:40:41.079 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:40:41.082 [info] [command][ee6504c1-2544-49c9-a577-d4fdd2193fb4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ee6504c1-2544-49c9-a577-d4fdd2193fb4""}\n2025-07-19 19:40:41.083 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e43b818a-ec89-4ff3-a948-0b1b5cf08094] received connection request\n2025-07-19 19:40:41.083 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:40:41.121 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e43b818a-ec89-4ff3-a948-0b1b5cf08094] socks forwarding established\n2025-07-19 19:40:41.166 [info] [command][ee6504c1-2544-49c9-a577-d4fdd2193fb4] Process exited with code 0\n2025-07-19 19:40:41.166 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e43b818a-ec89-4ff3-a948-0b1b5cf08094] socks connection closed\n2025-07-19 19:40:41.166 [info] [command][ee6504c1-2544-49c9-a577-d4fdd2193fb4] Socket close event received\n2025-07-19 19:40:41.197 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65091 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:41:41.168 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:41:41.171 [info] [command][f3b65408-cee5-415f-be1b-78bfc6230249] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f3b65408-cee5-415f-be1b-78bfc6230249""}\n2025-07-19 19:41:41.172 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0971a72d-4124-4890-b29b-73f2d8f87601] received connection request\n2025-07-19 19:41:41.173 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:41:41.207 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0971a72d-4124-4890-b29b-73f2d8f87601] socks forwarding established\n2025-07-19 19:41:41.331 [info] [command][f3b65408-cee5-415f-be1b-78bfc6230249] Process exited with code 0\n2025-07-19 19:41:41.332 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0971a72d-4124-4890-b29b-73f2d8f87601] socks connection closed\n2025-07-19 19:41:41.332 [info] [command][f3b65408-cee5-415f-be1b-78bfc6230249] Socket close event received\n2025-07-19 19:41:41.410 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65138 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:42:41.342 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:42:41.344 [info] [command][5dd69c7c-ed7d-4354-b29a-f4c286cae91e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5dd69c7c-ed7d-4354-b29a-f4c286cae91e""}\n2025-07-19 19:42:41.345 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][071887fc-e938-4bca-9f29-4ca7b2982747] received connection request\n2025-07-19 19:42:41.345 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:42:41.375 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][071887fc-e938-4bca-9f29-4ca7b2982747] socks forwarding established\n2025-07-19 19:42:41.421 [info] [command][5dd69c7c-ed7d-4354-b29a-f4c286cae91e] Process exited with code 0\n2025-07-19 19:42:41.421 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][071887fc-e938-4bca-9f29-4ca7b2982747] socks connection closed\n2025-07-19 19:42:41.421 [info] [command][5dd69c7c-ed7d-4354-b29a-f4c286cae91e] Socket close event received\n2025-07-19 19:42:41.452 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65167 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:43:41.427 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:43:41.430 [info] [command][275d698b-37e5-4ebc-9941-744a305c8f5f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""275d698b-37e5-4ebc-9941-744a305c8f5f""}\n2025-07-19 19:43:41.430 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][bbcc8152-398e-41da-ab3d-11159ed44992] received connection request\n2025-07-19 19:43:41.431 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:43:41.465 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bbcc8152-398e-41da-ab3d-11159ed44992] socks forwarding established\n2025-07-19 19:43:41.511 [info] [command][275d698b-37e5-4ebc-9941-744a305c8f5f] Process exited with code 0\n2025-07-19 19:43:41.511 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bbcc8152-398e-41da-ab3d-11159ed44992] socks connection closed\n2025-07-19 19:43:41.511 [info] [command][275d698b-37e5-4ebc-9941-744a305c8f5f] Socket close event received\n2025-07-19 19:43:41.541 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65193 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:44:41.511 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:44:41.513 [info] [command][2d9a1b0c-4c70-445c-87b3-fab88f587625] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2d9a1b0c-4c70-445c-87b3-fab88f587625""}\n2025-07-19 19:44:41.514 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][34f18651-8083-417d-aa74-d8a969ccc27f] received connection request\n2025-07-19 19:44:41.514 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:44:41.548 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][34f18651-8083-417d-aa74-d8a969ccc27f] socks forwarding established\n2025-07-19 19:44:41.597 [info] [command][2d9a1b0c-4c70-445c-87b3-fab88f587625] Process exited with code 0\n2025-07-19 19:44:41.597 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][34f18651-8083-417d-aa74-d8a969ccc27f] socks connection closed\n2025-07-19 19:44:41.597 [info] [command][2d9a1b0c-4c70-445c-87b3-fab88f587625] Socket close event received\n2025-07-19 19:44:41.627 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65231 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:45:41.601 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:45:41.604 [info] [command][88bd57cd-9ab5-47fc-9c37-7b4e07e002dd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""88bd57cd-9ab5-47fc-9c37-7b4e07e002dd""}\n2025-07-19 19:45:41.605 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3bbd4e8c-8b26-4532-8d3f-d1e20ea9bcf3] received connection request\n2025-07-19 19:45:41.605 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:45:41.639 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3bbd4e8c-8b26-4532-8d3f-d1e20ea9bcf3] socks forwarding established\n2025-07-19 19:45:41.686 [info] [command][88bd57cd-9ab5-47fc-9c37-7b4e07e002dd] Process exited with code 0\n2025-07-19 19:45:41.687 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3bbd4e8c-8b26-4532-8d3f-d1e20ea9bcf3] socks connection closed\n2025-07-19 19:45:41.688 [info] [command][88bd57cd-9ab5-47fc-9c37-7b4e07e002dd] Socket close event received\n2025-07-19 19:45:41.718 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65256 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:46:41.697 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:46:41.699 [info] [command][ac42bfc1-998b-4b15-84fe-54e6e397b618] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ac42bfc1-998b-4b15-84fe-54e6e397b618""}\n2025-07-19 19:46:41.700 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][360e63b2-9537-407e-bb90-b9e3304f06eb] received connection request\n2025-07-19 19:46:41.701 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:46:41.737 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][360e63b2-9537-407e-bb90-b9e3304f06eb] socks forwarding established\n2025-07-19 19:46:41.782 [info] [command][ac42bfc1-998b-4b15-84fe-54e6e397b618] Process exited with code 0\n2025-07-19 19:46:41.782 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][360e63b2-9537-407e-bb90-b9e3304f06eb] socks connection closed\n2025-07-19 19:46:41.782 [info] [command][ac42bfc1-998b-4b15-84fe-54e6e397b618] Socket close event received\n2025-07-19 19:46:41.814 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65303 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:47:41.786 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:47:41.789 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][31270ea3-ad33-4c4e-8893-e61dbcec0b16] received connection request\n2025-07-19 19:47:41.790 [info] [command][057d3570-4f78-4ba9-95e7-47264035ec70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""057d3570-4f78-4ba9-95e7-47264035ec70""}\n2025-07-19 19:47:41.790 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:47:41.822 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][31270ea3-ad33-4c4e-8893-e61dbcec0b16] socks forwarding established\n2025-07-19 19:47:41.868 [info] [command][057d3570-4f78-4ba9-95e7-47264035ec70] Process exited with code 0\n2025-07-19 19:47:41.868 [info] [command][057d3570-4f78-4ba9-95e7-47264035ec70] Socket close event received\n2025-07-19 19:47:41.869 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][31270ea3-ad33-4c4e-8893-e61dbcec0b16] socks connection closed\n2025-07-19 19:47:41.898 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65337 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:48:41.871 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:48:41.873 [info] [command][17daaf87-f12d-42ed-a37e-48d2b10517c0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""17daaf87-f12d-42ed-a37e-48d2b10517c0""}\n2025-07-19 19:48:41.874 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4719ea4a-7a79-4ab8-9348-81444368f23e] received connection request\n2025-07-19 19:48:41.875 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:48:41.906 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4719ea4a-7a79-4ab8-9348-81444368f23e] socks forwarding established\n2025-07-19 19:48:41.947 [info] [command][17daaf87-f12d-42ed-a37e-48d2b10517c0] Process exited with code 0\n2025-07-19 19:48:41.948 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4719ea4a-7a79-4ab8-9348-81444368f23e] socks connection closed\n2025-07-19 19:48:41.948 [info] [command][17daaf87-f12d-42ed-a37e-48d2b10517c0] Socket close event received\n2025-07-19 19:48:41.978 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65357 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:49:41.949 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:49:41.951 [info] [command][abb473ea-fb40-4040-9e91-0c503cceec74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""abb473ea-fb40-4040-9e91-0c503cceec74""}\n2025-07-19 19:49:41.952 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d01e428c-7081-4952-a9fd-feac8382a5fc] received connection request\n2025-07-19 19:49:41.952 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:49:41.985 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d01e428c-7081-4952-a9fd-feac8382a5fc] socks forwarding established\n2025-07-19 19:49:42.030 [info] [command][abb473ea-fb40-4040-9e91-0c503cceec74] Process exited with code 0\n2025-07-19 19:49:42.030 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d01e428c-7081-4952-a9fd-feac8382a5fc] socks connection closed\n2025-07-19 19:49:42.031 [info] [command][abb473ea-fb40-4040-9e91-0c503cceec74] Socket close event received\n2025-07-19 19:49:42.060 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65392 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:50:42.038 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:50:42.039 [info] [command][df1e44bb-e993-4bd2-b9a0-702475bb01be] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""df1e44bb-e993-4bd2-b9a0-702475bb01be""}\n2025-07-19 19:50:42.040 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fd110e58-45dd-4f13-af79-59a6361225ea] received connection request\n2025-07-19 19:50:42.041 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:50:42.073 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fd110e58-45dd-4f13-af79-59a6361225ea] socks forwarding established\n2025-07-19 19:50:42.115 [info] [command][df1e44bb-e993-4bd2-b9a0-702475bb01be] Process exited with code 0\n2025-07-19 19:50:42.115 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fd110e58-45dd-4f13-af79-59a6361225ea] socks connection closed\n2025-07-19 19:50:42.115 [info] [command][df1e44bb-e993-4bd2-b9a0-702475bb01be] Socket close event received\n2025-07-19 19:50:42.144 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65410 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:51:42.125 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:51:42.127 [info] [command][585d160b-acba-444f-b88a-3e676de3601e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""585d160b-acba-444f-b88a-3e676de3601e""}\n2025-07-19 19:51:42.128 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][67357e36-88bb-4ccc-8e55-3fbd8f5a9278] received connection request\n2025-07-19 19:51:42.129 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:51:42.163 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][67357e36-88bb-4ccc-8e55-3fbd8f5a9278] socks forwarding established\n2025-07-19 19:51:42.212 [info] [command][585d160b-acba-444f-b88a-3e676de3601e] Process exited with code 0\n2025-07-19 19:51:42.212 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][67357e36-88bb-4ccc-8e55-3fbd8f5a9278] socks connection closed\n2025-07-19 19:51:42.212 [info] [command][585d160b-acba-444f-b88a-3e676de3601e] Socket close event received\n2025-07-19 19:51:42.243 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65461 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:52:42.221 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:52:42.223 [info] [command][93f96eef-16df-44da-ab7c-503b4c2327e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""93f96eef-16df-44da-ab7c-503b4c2327e6""}\n2025-07-19 19:52:42.224 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6ab09f23-c492-4a21-b8de-904391d8e5eb] received connection request\n2025-07-19 19:52:42.224 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:52:42.258 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6ab09f23-c492-4a21-b8de-904391d8e5eb] socks forwarding established\n2025-07-19 19:52:42.306 [info] [command][93f96eef-16df-44da-ab7c-503b4c2327e6] Process exited with code 0\n2025-07-19 19:52:42.306 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6ab09f23-c492-4a21-b8de-904391d8e5eb] socks connection closed\n2025-07-19 19:52:42.306 [info] [command][93f96eef-16df-44da-ab7c-503b4c2327e6] Socket close event received\n2025-07-19 19:52:42.336 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65484 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:53:42.306 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:53:42.307 [info] [command][2f88a7ab-302a-4f3c-adcc-f171860c79a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2f88a7ab-302a-4f3c-adcc-f171860c79a8""}\n2025-07-19 19:53:42.308 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][595737e9-4012-4bf0-b9ea-daaec72a9704] received connection request\n2025-07-19 19:53:42.308 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:53:42.341 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][595737e9-4012-4bf0-b9ea-daaec72a9704] socks forwarding established\n2025-07-19 19:53:42.385 [info] [command][2f88a7ab-302a-4f3c-adcc-f171860c79a8] Process exited with code 0\n2025-07-19 19:53:42.385 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][595737e9-4012-4bf0-b9ea-daaec72a9704] socks connection closed\n2025-07-19 19:53:42.385 [info] [command][2f88a7ab-302a-4f3c-adcc-f171860c79a8] Socket close event received\n2025-07-19 19:53:42.417 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65502 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:54:42.394 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:54:42.397 [info] [command][e1cd4575-d02c-42ef-bb03-c6258bb0c183] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e1cd4575-d02c-42ef-bb03-c6258bb0c183""}\n2025-07-19 19:54:42.398 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][30407ecc-9aa3-408d-865e-b4f20c671595] received connection request\n2025-07-19 19:54:42.398 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:54:42.431 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][30407ecc-9aa3-408d-865e-b4f20c671595] socks forwarding established\n2025-07-19 19:54:42.477 [info] [command][e1cd4575-d02c-42ef-bb03-c6258bb0c183] Process exited with code 0\n2025-07-19 19:54:42.477 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][30407ecc-9aa3-408d-865e-b4f20c671595] socks connection closed\n2025-07-19 19:54:42.477 [info] [command][e1cd4575-d02c-42ef-bb03-c6258bb0c183] Socket close event received\n2025-07-19 19:54:42.508 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 65534 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:55:42.481 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:55:42.483 [info] [command][68b2f301-8362-4ed0-97d1-71abf31f52c8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""68b2f301-8362-4ed0-97d1-71abf31f52c8""}\n2025-07-19 19:55:42.484 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8f3dc154-fa6e-4f71-b15c-a44863db1d82] received connection request\n2025-07-19 19:55:42.484 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:55:42.518 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8f3dc154-fa6e-4f71-b15c-a44863db1d82] socks forwarding established\n2025-07-19 19:55:42.558 [info] [command][68b2f301-8362-4ed0-97d1-71abf31f52c8] Process exited with code 0\n2025-07-19 19:55:42.558 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8f3dc154-fa6e-4f71-b15c-a44863db1d82] socks connection closed\n2025-07-19 19:55:42.558 [info] [command][68b2f301-8362-4ed0-97d1-71abf31f52c8] Socket close event received\n2025-07-19 19:55:42.589 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49172 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:56:42.569 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:56:42.571 [info] [command][86ac1db2-b6ff-42d3-9e22-9a40303a4f49] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""86ac1db2-b6ff-42d3-9e22-9a40303a4f49""}\n2025-07-19 19:56:42.572 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5c2a9d6e-d254-49f3-a25d-81ffdd855b04] received connection request\n2025-07-19 19:56:42.573 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:56:42.614 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5c2a9d6e-d254-49f3-a25d-81ffdd855b04] socks forwarding established\n2025-07-19 19:56:42.659 [info] [command][86ac1db2-b6ff-42d3-9e22-9a40303a4f49] Process exited with code 0\n2025-07-19 19:56:42.659 [info] [command][86ac1db2-b6ff-42d3-9e22-9a40303a4f49] Socket close event received\n2025-07-19 19:56:42.660 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5c2a9d6e-d254-49f3-a25d-81ffdd855b04] socks connection closed\n2025-07-19 19:56:42.693 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49218 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:57:42.669 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:57:42.671 [info] [command][c9e1ef15-1a16-4983-a5bd-bae25d8e0a39] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c9e1ef15-1a16-4983-a5bd-bae25d8e0a39""}\n2025-07-19 19:57:42.672 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][78400ea3-88ae-4230-af3f-f2456d7c850d] received connection request\n2025-07-19 19:57:42.673 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:57:42.705 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][78400ea3-88ae-4230-af3f-f2456d7c850d] socks forwarding established\n2025-07-19 19:57:42.749 [info] [command][c9e1ef15-1a16-4983-a5bd-bae25d8e0a39] Process exited with code 0\n2025-07-19 19:57:42.750 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][78400ea3-88ae-4230-af3f-f2456d7c850d] socks connection closed\n2025-07-19 19:57:42.750 [info] [command][c9e1ef15-1a16-4983-a5bd-bae25d8e0a39] Socket close event received\n2025-07-19 19:57:42.779 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49237 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:58:42.758 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:58:42.760 [info] [command][71abda55-aa47-4cbd-9296-946f0acaf3da] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""71abda55-aa47-4cbd-9296-946f0acaf3da""}\n2025-07-19 19:58:42.761 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d5bd9074-1a68-4cee-aa3c-69438e81d5bc] received connection request\n2025-07-19 19:58:42.762 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:58:42.797 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d5bd9074-1a68-4cee-aa3c-69438e81d5bc] socks forwarding established\n2025-07-19 19:58:42.842 [info] [command][71abda55-aa47-4cbd-9296-946f0acaf3da] Process exited with code 0\n2025-07-19 19:58:42.843 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d5bd9074-1a68-4cee-aa3c-69438e81d5bc] socks connection closed\n2025-07-19 19:58:42.843 [info] [command][71abda55-aa47-4cbd-9296-946f0acaf3da] Socket close event received\n2025-07-19 19:58:42.873 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49258 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 19:59:42.849 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 19:59:42.851 [info] [command][f59be167-ecb0-4190-a7ce-fd3a2784ec7b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f59be167-ecb0-4190-a7ce-fd3a2784ec7b""}\n2025-07-19 19:59:42.852 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f5f4b332-ddfe-4695-b357-8f1dc2a5252f] received connection request\n2025-07-19 19:59:42.852 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 19:59:42.890 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f5f4b332-ddfe-4695-b357-8f1dc2a5252f] socks forwarding established\n2025-07-19 19:59:42.936 [info] [command][f59be167-ecb0-4190-a7ce-fd3a2784ec7b] Process exited with code 0\n2025-07-19 19:59:42.937 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f5f4b332-ddfe-4695-b357-8f1dc2a5252f] socks connection closed\n2025-07-19 19:59:42.937 [info] [command][f59be167-ecb0-4190-a7ce-fd3a2784ec7b] Socket close event received\n2025-07-19 19:59:42.968 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49293 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:00:42.943 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:00:42.944 [info] [command][14c78691-1412-4d8e-9c9d-61ac2ea02d52] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""14c78691-1412-4d8e-9c9d-61ac2ea02d52""}\n2025-07-19 20:00:42.945 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][107f9c0e-8517-40fa-aa96-f1c48fd71fdc] received connection request\n2025-07-19 20:00:42.946 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:00:42.983 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][107f9c0e-8517-40fa-aa96-f1c48fd71fdc] socks forwarding established\n2025-07-19 20:00:43.030 [info] [command][14c78691-1412-4d8e-9c9d-61ac2ea02d52] Process exited with code 0\n2025-07-19 20:00:43.030 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][107f9c0e-8517-40fa-aa96-f1c48fd71fdc] socks connection closed\n2025-07-19 20:00:43.031 [info] [command][14c78691-1412-4d8e-9c9d-61ac2ea02d52] Socket close event received\n2025-07-19 20:00:43.061 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49311 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:01:43.041 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:01:43.043 [info] [command][1a9b26dd-ab4d-43e2-a295-01eb4abb6164] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1a9b26dd-ab4d-43e2-a295-01eb4abb6164""}\n2025-07-19 20:01:43.044 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fb744700-8550-4089-a7c8-8f7590503e6f] received connection request\n2025-07-19 20:01:43.044 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:01:43.081 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fb744700-8550-4089-a7c8-8f7590503e6f] socks forwarding established\n2025-07-19 20:01:43.125 [info] [command][1a9b26dd-ab4d-43e2-a295-01eb4abb6164] Process exited with code 0\n2025-07-19 20:01:43.126 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fb744700-8550-4089-a7c8-8f7590503e6f] socks connection closed\n2025-07-19 20:01:43.126 [info] [command][1a9b26dd-ab4d-43e2-a295-01eb4abb6164] Socket close event received\n2025-07-19 20:01:43.157 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49357 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:02:43.132 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:02:43.133 [info] [command][c6654ef7-44e0-448a-a440-f717c8249f99] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c6654ef7-44e0-448a-a440-f717c8249f99""}\n2025-07-19 20:02:43.134 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][39b3f37c-c96c-409d-b7f1-52e9de0c7b8c] received connection request\n2025-07-19 20:02:43.134 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:02:43.171 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][39b3f37c-c96c-409d-b7f1-52e9de0c7b8c] socks forwarding established\n2025-07-19 20:02:43.216 [info] [command][c6654ef7-44e0-448a-a440-f717c8249f99] Process exited with code 0\n2025-07-19 20:02:43.216 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][39b3f37c-c96c-409d-b7f1-52e9de0c7b8c] socks connection closed\n2025-07-19 20:02:43.216 [info] [command][c6654ef7-44e0-448a-a440-f717c8249f99] Socket close event received\n2025-07-19 20:02:43.248 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49378 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:03:43.221 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:03:43.224 [info] [command][4212f5fd-9313-47ff-b64f-f4da09303c97] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4212f5fd-9313-47ff-b64f-f4da09303c97""}\n2025-07-19 20:03:43.225 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a1749475-fb53-4657-ad40-219bce519c4f] received connection request\n2025-07-19 20:03:43.225 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:03:43.262 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a1749475-fb53-4657-ad40-219bce519c4f] socks forwarding established\n2025-07-19 20:03:43.309 [info] [command][4212f5fd-9313-47ff-b64f-f4da09303c97] Process exited with code 0\n2025-07-19 20:03:43.309 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a1749475-fb53-4657-ad40-219bce519c4f] socks connection closed\n2025-07-19 20:03:43.310 [info] [command][4212f5fd-9313-47ff-b64f-f4da09303c97] Socket close event received\n2025-07-19 20:03:43.340 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49396 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:04:43.318 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:04:43.319 [info] [command][af817667-3a80-497c-9acb-9cc633bb8d9e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""af817667-3a80-497c-9acb-9cc633bb8d9e""}\n2025-07-19 20:04:43.320 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][77925c9b-3acb-438b-a06d-9dd6ec8dc69d] received connection request\n2025-07-19 20:04:43.321 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:04:43.355 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][77925c9b-3acb-438b-a06d-9dd6ec8dc69d] socks forwarding established\n2025-07-19 20:04:43.398 [info] [command][af817667-3a80-497c-9acb-9cc633bb8d9e] Process exited with code 0\n2025-07-19 20:04:43.398 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][77925c9b-3acb-438b-a06d-9dd6ec8dc69d] socks connection closed\n2025-07-19 20:04:43.399 [info] [command][af817667-3a80-497c-9acb-9cc633bb8d9e] Socket close event received\n2025-07-19 20:04:43.428 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49432 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:05:43.403 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:05:43.406 [info] [command][24b97468-8223-4645-a5bb-7fc31ec33c3a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""24b97468-8223-4645-a5bb-7fc31ec33c3a""}\n2025-07-19 20:05:43.407 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9b65c6c5-256d-40f9-925e-63c58c8af1c0] received connection request\n2025-07-19 20:05:43.407 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:05:43.446 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9b65c6c5-256d-40f9-925e-63c58c8af1c0] socks forwarding established\n2025-07-19 20:05:43.489 [info] [command][24b97468-8223-4645-a5bb-7fc31ec33c3a] Process exited with code 0\n2025-07-19 20:05:43.490 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9b65c6c5-256d-40f9-925e-63c58c8af1c0] socks connection closed\n2025-07-19 20:05:43.490 [info] [command][24b97468-8223-4645-a5bb-7fc31ec33c3a] Socket close event received\n2025-07-19 20:05:43.521 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49452 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:06:43.499 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:06:43.502 [info] [command][33e90d4f-d426-470a-a264-1b001d30ecc3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""33e90d4f-d426-470a-a264-1b001d30ecc3""}\n2025-07-19 20:06:43.502 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][afa4c3c6-978e-489e-aaa9-35d29e9db1bd] received connection request\n2025-07-19 20:06:43.503 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:06:43.539 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][afa4c3c6-978e-489e-aaa9-35d29e9db1bd] socks forwarding established\n2025-07-19 20:06:43.581 [info] [command][33e90d4f-d426-470a-a264-1b001d30ecc3] Process exited with code 0\n2025-07-19 20:06:43.582 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][afa4c3c6-978e-489e-aaa9-35d29e9db1bd] socks connection closed\n2025-07-19 20:06:43.582 [info] [command][33e90d4f-d426-470a-a264-1b001d30ecc3] Socket close event received\n2025-07-19 20:06:43.613 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49498 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:07:43.585 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:07:43.587 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][208e9b87-099c-453d-9b1c-9b6e8271d8d4] received connection request\n2025-07-19 20:07:43.587 [info] [command][c32f2a08-5f86-4b9a-bc6d-6bf8417a6aae] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c32f2a08-5f86-4b9a-bc6d-6bf8417a6aae""}\n2025-07-19 20:07:43.587 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:07:43.621 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][208e9b87-099c-453d-9b1c-9b6e8271d8d4] socks forwarding established\n2025-07-19 20:07:43.665 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][208e9b87-099c-453d-9b1c-9b6e8271d8d4] socks connection closed\n2025-07-19 20:07:43.665 [info] [command][c32f2a08-5f86-4b9a-bc6d-6bf8417a6aae] Process exited with code 0\n2025-07-19 20:07:43.665 [info] [command][c32f2a08-5f86-4b9a-bc6d-6bf8417a6aae] Socket close event received\n2025-07-19 20:07:43.693 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49515 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:08:43.676 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:08:43.678 [info] [command][4bf6d7fa-d084-40e5-b365-52b77473d82e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4bf6d7fa-d084-40e5-b365-52b77473d82e""}\n2025-07-19 20:08:43.678 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][52b201af-cd2b-492b-864b-b891a2bbbcfd] received connection request\n2025-07-19 20:08:43.679 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:08:43.714 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][52b201af-cd2b-492b-864b-b891a2bbbcfd] socks forwarding established\n2025-07-19 20:08:43.760 [info] [command][4bf6d7fa-d084-40e5-b365-52b77473d82e] Process exited with code 0\n2025-07-19 20:08:43.760 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][52b201af-cd2b-492b-864b-b891a2bbbcfd] socks connection closed\n2025-07-19 20:08:43.760 [info] [command][4bf6d7fa-d084-40e5-b365-52b77473d82e] Socket close event received\n2025-07-19 20:08:43.790 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49536 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:09:43.767 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:09:43.770 [info] [command][6f8e7393-ea42-4119-9a57-c2059b381ce3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6f8e7393-ea42-4119-9a57-c2059b381ce3""}\n2025-07-19 20:09:43.771 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][872f4d6e-a976-47a9-bffc-4f4e1476bcb4] received connection request\n2025-07-19 20:09:43.771 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:09:43.807 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][872f4d6e-a976-47a9-bffc-4f4e1476bcb4] socks forwarding established\n2025-07-19 20:09:43.850 [info] [command][6f8e7393-ea42-4119-9a57-c2059b381ce3] Process exited with code 0\n2025-07-19 20:09:43.851 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][872f4d6e-a976-47a9-bffc-4f4e1476bcb4] socks connection closed\n2025-07-19 20:09:43.851 [info] [command][6f8e7393-ea42-4119-9a57-c2059b381ce3] Socket close event received\n2025-07-19 20:09:43.881 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49568 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:10:43.853 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:10:43.855 [info] [command][769db7f2-8d2d-4c88-87a3-6a9a96d7cc20] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""769db7f2-8d2d-4c88-87a3-6a9a96d7cc20""}\n2025-07-19 20:10:43.856 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][90ddfe3c-1886-469e-9297-6604d547cd40] received connection request\n2025-07-19 20:10:43.856 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:10:43.894 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][90ddfe3c-1886-469e-9297-6604d547cd40] socks forwarding established\n2025-07-19 20:10:43.937 [info] [command][769db7f2-8d2d-4c88-87a3-6a9a96d7cc20] Process exited with code 0\n2025-07-19 20:10:43.938 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][90ddfe3c-1886-469e-9297-6604d547cd40] socks connection closed\n2025-07-19 20:10:43.938 [info] [command][769db7f2-8d2d-4c88-87a3-6a9a96d7cc20] Socket close event received\n2025-07-19 20:10:43.967 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49587 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:11:43.948 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:11:43.950 [info] [command][fe95f22a-7cd4-47d4-82cc-35f38cee5a44] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fe95f22a-7cd4-47d4-82cc-35f38cee5a44""}\n2025-07-19 20:11:43.951 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][63ab3551-723a-4112-8595-ce161a244154] received connection request\n2025-07-19 20:11:43.951 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:11:43.987 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][63ab3551-723a-4112-8595-ce161a244154] socks forwarding established\n2025-07-19 20:11:44.034 [info] [command][fe95f22a-7cd4-47d4-82cc-35f38cee5a44] Process exited with code 0\n2025-07-19 20:11:44.035 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][63ab3551-723a-4112-8595-ce161a244154] socks connection closed\n2025-07-19 20:11:44.035 [info] [command][fe95f22a-7cd4-47d4-82cc-35f38cee5a44] Socket close event received\n2025-07-19 20:11:44.064 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49634 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:12:44.040 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:12:44.042 [info] [command][fe928792-22af-48b9-b070-558804292a18] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fe928792-22af-48b9-b070-558804292a18""}\n2025-07-19 20:12:44.043 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f471588a-7b5d-4634-b222-3f6462e2bb32] received connection request\n2025-07-19 20:12:44.043 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:12:44.077 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f471588a-7b5d-4634-b222-3f6462e2bb32] socks forwarding established\n2025-07-19 20:12:44.122 [info] [command][fe928792-22af-48b9-b070-558804292a18] Process exited with code 0\n2025-07-19 20:12:44.123 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f471588a-7b5d-4634-b222-3f6462e2bb32] socks connection closed\n2025-07-19 20:12:44.123 [info] [command][fe928792-22af-48b9-b070-558804292a18] Socket close event received\n2025-07-19 20:12:44.157 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49655 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:13:44.124 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:13:44.127 [info] [command][ee8a3620-158e-4eba-9c75-ed496e870010] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ee8a3620-158e-4eba-9c75-ed496e870010""}\n2025-07-19 20:13:44.128 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][609912cd-2496-4f44-bfb1-b22d261b828a] received connection request\n2025-07-19 20:13:44.129 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:13:44.160 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][609912cd-2496-4f44-bfb1-b22d261b828a] socks forwarding established\n2025-07-19 20:13:44.203 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][609912cd-2496-4f44-bfb1-b22d261b828a] socks connection closed\n2025-07-19 20:13:44.204 [info] [command][ee8a3620-158e-4eba-9c75-ed496e870010] Process exited with code 0\n2025-07-19 20:13:44.204 [info] [command][ee8a3620-158e-4eba-9c75-ed496e870010] Socket close event received\n2025-07-19 20:13:44.234 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49677 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:14:44.215 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:14:44.217 [info] [command][897cd861-8e5a-494a-86f8-3b7efb7192e3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""897cd861-8e5a-494a-86f8-3b7efb7192e3""}\n2025-07-19 20:14:44.218 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1eeb077c-cf35-4542-88a4-525c7913122a] received connection request\n2025-07-19 20:14:44.218 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:14:44.251 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1eeb077c-cf35-4542-88a4-525c7913122a] socks forwarding established\n2025-07-19 20:14:44.297 [info] [command][897cd861-8e5a-494a-86f8-3b7efb7192e3] Process exited with code 0\n2025-07-19 20:14:44.297 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1eeb077c-cf35-4542-88a4-525c7913122a] socks connection closed\n2025-07-19 20:14:44.297 [info] [command][897cd861-8e5a-494a-86f8-3b7efb7192e3] Socket close event received\n2025-07-19 20:14:44.326 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49710 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:15:44.301 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:15:44.304 [info] [command][0b549005-8675-4fd9-928f-31cfa1a86a72] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0b549005-8675-4fd9-928f-31cfa1a86a72""}\n2025-07-19 20:15:44.305 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7bcd369f-168c-4f53-8125-226adef95870] received connection request\n2025-07-19 20:15:44.306 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:15:44.337 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7bcd369f-168c-4f53-8125-226adef95870] socks forwarding established\n2025-07-19 20:15:44.382 [info] [command][0b549005-8675-4fd9-928f-31cfa1a86a72] Process exited with code 0\n2025-07-19 20:15:44.383 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7bcd369f-168c-4f53-8125-226adef95870] socks connection closed\n2025-07-19 20:15:44.383 [info] [command][0b549005-8675-4fd9-928f-31cfa1a86a72] Socket close event received\n2025-07-19 20:15:44.411 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49729 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:16:44.385 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:16:44.386 [info] [command][ea5b1f62-46aa-414a-a5aa-bf45c4ae3c67] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ea5b1f62-46aa-414a-a5aa-bf45c4ae3c67""}\n2025-07-19 20:16:44.387 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][84a9b4b2-dc49-419b-aa77-900dfae53e75] received connection request\n2025-07-19 20:16:44.387 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:16:44.419 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][84a9b4b2-dc49-419b-aa77-900dfae53e75] socks forwarding established\n2025-07-19 20:16:44.466 [info] [command][ea5b1f62-46aa-414a-a5aa-bf45c4ae3c67] Process exited with code 0\n2025-07-19 20:16:44.466 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][84a9b4b2-dc49-419b-aa77-900dfae53e75] socks connection closed\n2025-07-19 20:16:44.467 [info] [command][ea5b1f62-46aa-414a-a5aa-bf45c4ae3c67] Socket close event received\n2025-07-19 20:16:44.497 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49775 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:17:44.469 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:17:44.471 [info] [command][15a8abc5-580f-43c6-8d5a-f2ec9969e30c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""15a8abc5-580f-43c6-8d5a-f2ec9969e30c""}\n2025-07-19 20:17:44.472 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][51cebe89-87b0-483a-be1d-563e6bfe990a] received connection request\n2025-07-19 20:17:44.472 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:17:44.504 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][51cebe89-87b0-483a-be1d-563e6bfe990a] socks forwarding established\n2025-07-19 20:17:44.549 [info] [command][15a8abc5-580f-43c6-8d5a-f2ec9969e30c] Process exited with code 0\n2025-07-19 20:17:44.550 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][51cebe89-87b0-483a-be1d-563e6bfe990a] socks connection closed\n2025-07-19 20:17:44.550 [info] [command][15a8abc5-580f-43c6-8d5a-f2ec9969e30c] Socket close event received\n2025-07-19 20:17:44.579 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49798 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:18:44.553 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:18:44.555 [info] [command][aefac997-c168-4089-af22-d56bc5fea69d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""aefac997-c168-4089-af22-d56bc5fea69d""}\n2025-07-19 20:18:44.556 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][30a7ad8f-3133-4cd8-9eb3-7e028916a7cf] received connection request\n2025-07-19 20:18:44.556 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:18:44.595 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][30a7ad8f-3133-4cd8-9eb3-7e028916a7cf] socks forwarding established\n2025-07-19 20:18:44.643 [info] [command][aefac997-c168-4089-af22-d56bc5fea69d] Process exited with code 0\n2025-07-19 20:18:44.644 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][30a7ad8f-3133-4cd8-9eb3-7e028916a7cf] socks connection closed\n2025-07-19 20:18:44.645 [info] [command][aefac997-c168-4089-af22-d56bc5fea69d] Socket close event received\n2025-07-19 20:18:44.673 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49820 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:19:44.651 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:19:44.653 [info] [command][5aa2dfe4-4821-4ae2-9791-640ca120e62a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5aa2dfe4-4821-4ae2-9791-640ca120e62a""}\n2025-07-19 20:19:44.654 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1680ac0d-2bf8-4a01-8fcf-54ed3613ceb8] received connection request\n2025-07-19 20:19:44.655 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:19:44.693 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1680ac0d-2bf8-4a01-8fcf-54ed3613ceb8] socks forwarding established\n2025-07-19 20:19:44.737 [info] [command][5aa2dfe4-4821-4ae2-9791-640ca120e62a] Process exited with code 0\n2025-07-19 20:19:44.737 [info] [command][5aa2dfe4-4821-4ae2-9791-640ca120e62a] Socket close event received\n2025-07-19 20:19:44.738 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1680ac0d-2bf8-4a01-8fcf-54ed3613ceb8] socks connection closed\n2025-07-19 20:19:44.767 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49857 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:20:44.747 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:20:44.751 [info] [command][753d779f-8536-441a-8ddb-57bc63d6d841] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""753d779f-8536-441a-8ddb-57bc63d6d841""}\n2025-07-19 20:20:44.751 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][959932b3-d02e-4658-8fd5-ca9119318e3e] received connection request\n2025-07-19 20:20:44.752 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:20:44.783 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][959932b3-d02e-4658-8fd5-ca9119318e3e] socks forwarding established\n2025-07-19 20:20:44.827 [info] [command][753d779f-8536-441a-8ddb-57bc63d6d841] Process exited with code 0\n2025-07-19 20:20:44.828 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][959932b3-d02e-4658-8fd5-ca9119318e3e] socks connection closed\n2025-07-19 20:20:44.828 [info] [command][753d779f-8536-441a-8ddb-57bc63d6d841] Socket close event received\n2025-07-19 20:20:44.858 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49879 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:21:44.827 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:21:44.830 [info] [command][83aeeaba-1845-4eac-8bf7-380ce7c4dd54] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""83aeeaba-1845-4eac-8bf7-380ce7c4dd54""}\n2025-07-19 20:21:44.831 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7a98e6eb-b628-4c0b-887b-0cc367edee0d] received connection request\n2025-07-19 20:21:44.831 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:21:44.862 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7a98e6eb-b628-4c0b-887b-0cc367edee0d] socks forwarding established\n2025-07-19 20:21:44.911 [info] [command][83aeeaba-1845-4eac-8bf7-380ce7c4dd54] Process exited with code 0\n2025-07-19 20:21:44.912 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7a98e6eb-b628-4c0b-887b-0cc367edee0d] socks connection closed\n2025-07-19 20:21:44.912 [info] [command][83aeeaba-1845-4eac-8bf7-380ce7c4dd54] Socket close event received\n2025-07-19 20:21:44.944 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49925 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:22:44.921 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:22:44.924 [info] [command][8ae4c2d7-7e16-489c-b438-8ef3c3727c76] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8ae4c2d7-7e16-489c-b438-8ef3c3727c76""}\n2025-07-19 20:22:44.925 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][507e3877-95f0-4896-b61f-9a4b5a984ea0] received connection request\n2025-07-19 20:22:44.926 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:22:44.960 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][507e3877-95f0-4896-b61f-9a4b5a984ea0] socks forwarding established\n2025-07-19 20:22:45.007 [info] [command][8ae4c2d7-7e16-489c-b438-8ef3c3727c76] Process exited with code 0\n2025-07-19 20:22:45.008 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][507e3877-95f0-4896-b61f-9a4b5a984ea0] socks connection closed\n2025-07-19 20:22:45.008 [info] [command][8ae4c2d7-7e16-489c-b438-8ef3c3727c76] Socket close event received\n2025-07-19 20:22:45.040 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49943 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:23:45.017 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:23:45.019 [info] [command][3ec2f0aa-e99b-4e00-9755-1d991dc348f1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3ec2f0aa-e99b-4e00-9755-1d991dc348f1""}\n2025-07-19 20:23:45.020 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fc96a4b0-7a7b-40b8-ab39-9441b1c8c524] received connection request\n2025-07-19 20:23:45.021 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:23:45.053 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fc96a4b0-7a7b-40b8-ab39-9441b1c8c524] socks forwarding established\n2025-07-19 20:23:45.099 [info] [command][3ec2f0aa-e99b-4e00-9755-1d991dc348f1] Process exited with code 0\n2025-07-19 20:23:45.100 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fc96a4b0-7a7b-40b8-ab39-9441b1c8c524] socks connection closed\n2025-07-19 20:23:45.100 [info] [command][3ec2f0aa-e99b-4e00-9755-1d991dc348f1] Socket close event received\n2025-07-19 20:23:45.130 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 49961 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:24:45.110 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:24:45.113 [info] [command][4a89b239-04fc-4e74-9026-7cfbbbf53bce] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4a89b239-04fc-4e74-9026-7cfbbbf53bce""}\n2025-07-19 20:24:45.114 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][830417e0-a95f-421e-9a13-c5d1662f1c7a] received connection request\n2025-07-19 20:24:45.114 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:24:45.148 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][830417e0-a95f-421e-9a13-c5d1662f1c7a] socks forwarding established\n2025-07-19 20:24:45.192 [info] [command][4a89b239-04fc-4e74-9026-7cfbbbf53bce] Process exited with code 0\n2025-07-19 20:24:45.193 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][830417e0-a95f-421e-9a13-c5d1662f1c7a] socks connection closed\n2025-07-19 20:24:45.193 [info] [command][4a89b239-04fc-4e74-9026-7cfbbbf53bce] Socket close event received\n2025-07-19 20:24:45.222 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50012 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:25:45.202 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:25:45.205 [info] [command][3150de6f-9d86-441c-8000-26d520541378] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3150de6f-9d86-441c-8000-26d520541378""}\n2025-07-19 20:25:45.205 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5f69c664-5f64-4245-a85a-065f19f6cad5] received connection request\n2025-07-19 20:25:45.206 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:25:45.242 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5f69c664-5f64-4245-a85a-065f19f6cad5] socks forwarding established\n2025-07-19 20:25:45.285 [info] [command][3150de6f-9d86-441c-8000-26d520541378] Process exited with code 0\n2025-07-19 20:25:45.286 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5f69c664-5f64-4245-a85a-065f19f6cad5] socks connection closed\n2025-07-19 20:25:45.286 [info] [command][3150de6f-9d86-441c-8000-26d520541378] Socket close event received\n2025-07-19 20:25:45.316 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50036 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:26:45.296 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:26:45.298 [info] [command][dd814bb1-4294-426d-b1e9-d44441b40d61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""dd814bb1-4294-426d-b1e9-d44441b40d61""}\n2025-07-19 20:26:45.299 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][89668992-5564-4633-8e74-6cea8584a6b4] received connection request\n2025-07-19 20:26:45.300 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:26:45.333 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][89668992-5564-4633-8e74-6cea8584a6b4] socks forwarding established\n2025-07-19 20:26:45.377 [info] [command][dd814bb1-4294-426d-b1e9-d44441b40d61] Process exited with code 0\n2025-07-19 20:26:45.377 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][89668992-5564-4633-8e74-6cea8584a6b4] socks connection closed\n2025-07-19 20:26:45.377 [info] [command][dd814bb1-4294-426d-b1e9-d44441b40d61] Socket close event received\n2025-07-19 20:26:45.408 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50080 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:27:45.387 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:27:45.390 [info] [command][79499519-a868-4460-b1b9-349d326a916b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""79499519-a868-4460-b1b9-349d326a916b""}\n2025-07-19 20:27:45.390 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2b8f5052-73b4-4690-9109-ddbbfa7e3fe4] received connection request\n2025-07-19 20:27:45.391 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:27:45.423 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2b8f5052-73b4-4690-9109-ddbbfa7e3fe4] socks forwarding established\n2025-07-19 20:27:45.468 [info] [command][79499519-a868-4460-b1b9-349d326a916b] Process exited with code 0\n2025-07-19 20:27:45.469 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2b8f5052-73b4-4690-9109-ddbbfa7e3fe4] socks connection closed\n2025-07-19 20:27:45.469 [info] [command][79499519-a868-4460-b1b9-349d326a916b] Socket close event received\n2025-07-19 20:27:45.498 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50098 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:28:45.478 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:28:45.480 [info] [command][7f85c424-8a7f-4b18-9979-f62073929545] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7f85c424-8a7f-4b18-9979-f62073929545""}\n2025-07-19 20:28:45.481 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ed9367b0-66c3-4704-9ef1-e9d93280c15d] received connection request\n2025-07-19 20:28:45.482 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:28:45.514 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed9367b0-66c3-4704-9ef1-e9d93280c15d] socks forwarding established\n2025-07-19 20:28:45.561 [info] [command][7f85c424-8a7f-4b18-9979-f62073929545] Process exited with code 0\n2025-07-19 20:28:45.561 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed9367b0-66c3-4704-9ef1-e9d93280c15d] socks connection closed\n2025-07-19 20:28:45.562 [info] [command][7f85c424-8a7f-4b18-9979-f62073929545] Socket close event received\n2025-07-19 20:28:45.592 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50123 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:29:45.567 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:29:45.570 [info] [command][fb67fde3-9203-4c0b-811c-4d59e5c9f1ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fb67fde3-9203-4c0b-811c-4d59e5c9f1ba""}\n2025-07-19 20:29:45.572 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ca259af9-4a24-450c-8871-b3ae0bc8a3b3] received connection request\n2025-07-19 20:29:45.572 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:29:45.605 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ca259af9-4a24-450c-8871-b3ae0bc8a3b3] socks forwarding established\n2025-07-19 20:29:45.650 [info] [command][fb67fde3-9203-4c0b-811c-4d59e5c9f1ba] Process exited with code 0\n2025-07-19 20:29:45.651 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ca259af9-4a24-450c-8871-b3ae0bc8a3b3] socks connection closed\n2025-07-19 20:29:45.651 [info] [command][fb67fde3-9203-4c0b-811c-4d59e5c9f1ba] Socket close event received\n2025-07-19 20:29:45.681 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50164 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:30:45.653 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:30:45.654 [info] [command][b6bee0a6-7845-485e-b25f-88f82c77e314] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b6bee0a6-7845-485e-b25f-88f82c77e314""}\n2025-07-19 20:30:45.655 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][bf723a40-48b3-4eaf-8f08-458266ae8d6f] received connection request\n2025-07-19 20:30:45.656 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:30:45.695 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bf723a40-48b3-4eaf-8f08-458266ae8d6f] socks forwarding established\n2025-07-19 20:30:45.745 [info] [command][b6bee0a6-7845-485e-b25f-88f82c77e314] Process exited with code 0\n2025-07-19 20:30:45.746 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bf723a40-48b3-4eaf-8f08-458266ae8d6f] socks connection closed\n2025-07-19 20:30:45.746 [info] [command][b6bee0a6-7845-485e-b25f-88f82c77e314] Socket close event received\n2025-07-19 20:30:45.776 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50183 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:31:45.756 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:31:45.758 [info] [command][89abf9c3-a8c5-4209-9ba1-88178b1896c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""89abf9c3-a8c5-4209-9ba1-88178b1896c4""}\n2025-07-19 20:31:45.759 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][379ca1fd-541f-479c-a265-3e97e95fc0d4] received connection request\n2025-07-19 20:31:45.760 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:31:45.798 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][379ca1fd-541f-479c-a265-3e97e95fc0d4] socks forwarding established\n2025-07-19 20:31:45.843 [info] [command][89abf9c3-a8c5-4209-9ba1-88178b1896c4] Process exited with code 0\n2025-07-19 20:31:45.844 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][379ca1fd-541f-479c-a265-3e97e95fc0d4] socks connection closed\n2025-07-19 20:31:45.844 [info] [command][89abf9c3-a8c5-4209-9ba1-88178b1896c4] Socket close event received\n2025-07-19 20:31:45.873 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50227 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:32:45.854 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:32:45.856 [info] [command][d5bde7bd-c2af-4ebf-b65c-16c107a16013] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d5bde7bd-c2af-4ebf-b65c-16c107a16013""}\n2025-07-19 20:32:45.857 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][22d4f254-6321-4cd4-b9a5-2f0657837db0] received connection request\n2025-07-19 20:32:45.857 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:32:45.896 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][22d4f254-6321-4cd4-b9a5-2f0657837db0] socks forwarding established\n2025-07-19 20:32:45.944 [info] [command][d5bde7bd-c2af-4ebf-b65c-16c107a16013] Process exited with code 0\n2025-07-19 20:32:45.944 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][22d4f254-6321-4cd4-b9a5-2f0657837db0] socks connection closed\n2025-07-19 20:32:45.944 [info] [command][d5bde7bd-c2af-4ebf-b65c-16c107a16013] Socket close event received\n2025-07-19 20:32:45.980 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50251 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:33:45.954 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:33:45.957 [info] [command][4737d2b8-6bff-4f83-980b-e9ac724717ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4737d2b8-6bff-4f83-980b-e9ac724717ed""}\n2025-07-19 20:33:45.957 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a184a6a8-dffe-4694-8a51-1ac4124525e6] received connection request\n2025-07-19 20:33:45.958 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:33:45.989 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a184a6a8-dffe-4694-8a51-1ac4124525e6] socks forwarding established\n2025-07-19 20:33:46.036 [info] [command][4737d2b8-6bff-4f83-980b-e9ac724717ed] Process exited with code 0\n2025-07-19 20:33:46.037 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a184a6a8-dffe-4694-8a51-1ac4124525e6] socks connection closed\n2025-07-19 20:33:46.037 [info] [command][4737d2b8-6bff-4f83-980b-e9ac724717ed] Socket close event received\n2025-07-19 20:33:46.067 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50273 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:34:46.046 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:34:46.050 [info] [command][8558072f-5445-4945-8dec-b5bdd8efdf31] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8558072f-5445-4945-8dec-b5bdd8efdf31""}\n2025-07-19 20:34:46.050 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d8775eaa-751c-4c52-9732-25cb1c3c98a6] received connection request\n2025-07-19 20:34:46.051 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:34:46.082 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d8775eaa-751c-4c52-9732-25cb1c3c98a6] socks forwarding established\n2025-07-19 20:34:46.127 [info] [command][8558072f-5445-4945-8dec-b5bdd8efdf31] Process exited with code 0\n2025-07-19 20:34:46.128 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d8775eaa-751c-4c52-9732-25cb1c3c98a6] socks connection closed\n2025-07-19 20:34:46.128 [info] [command][8558072f-5445-4945-8dec-b5bdd8efdf31] Socket close event received\n2025-07-19 20:34:46.160 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50310 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:35:46.131 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:35:46.133 [info] [command][d4fb7648-86fe-4926-9f48-9b2c78bdbf48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d4fb7648-86fe-4926-9f48-9b2c78bdbf48""}\n2025-07-19 20:35:46.135 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6b154073-7145-46e1-a5d8-011480fb57d5] received connection request\n2025-07-19 20:35:46.135 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:35:46.168 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6b154073-7145-46e1-a5d8-011480fb57d5] socks forwarding established\n2025-07-19 20:35:46.213 [info] [command][d4fb7648-86fe-4926-9f48-9b2c78bdbf48] Process exited with code 0\n2025-07-19 20:35:46.213 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6b154073-7145-46e1-a5d8-011480fb57d5] socks connection closed\n2025-07-19 20:35:46.213 [info] [command][d4fb7648-86fe-4926-9f48-9b2c78bdbf48] Socket close event received\n2025-07-19 20:35:46.246 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50330 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:36:46.223 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:36:46.226 [info] [command][ee60cc86-c071-4952-9b8c-cc361df39871] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ee60cc86-c071-4952-9b8c-cc361df39871""}\n2025-07-19 20:36:46.227 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ca6613a9-131c-4d32-880b-9b7566f1f6fc] received connection request\n2025-07-19 20:36:46.227 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:36:46.267 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ca6613a9-131c-4d32-880b-9b7566f1f6fc] socks forwarding established\n2025-07-19 20:36:46.311 [info] [command][ee60cc86-c071-4952-9b8c-cc361df39871] Process exited with code 0\n2025-07-19 20:36:46.312 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ca6613a9-131c-4d32-880b-9b7566f1f6fc] socks connection closed\n2025-07-19 20:36:46.312 [info] [command][ee60cc86-c071-4952-9b8c-cc361df39871] Socket close event received\n2025-07-19 20:36:46.348 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50377 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:37:46.321 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:37:46.322 [info] [command][e4d58427-d0d2-447e-9aa4-9384305143c7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e4d58427-d0d2-447e-9aa4-9384305143c7""}\n2025-07-19 20:37:46.323 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][348c2880-736e-4646-a388-c253086e4f2d] received connection request\n2025-07-19 20:37:46.324 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:37:46.362 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][348c2880-736e-4646-a388-c253086e4f2d] socks forwarding established\n2025-07-19 20:37:46.406 [info] [command][e4d58427-d0d2-447e-9aa4-9384305143c7] Process exited with code 0\n2025-07-19 20:37:46.407 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][348c2880-736e-4646-a388-c253086e4f2d] socks connection closed\n2025-07-19 20:37:46.407 [info] [command][e4d58427-d0d2-447e-9aa4-9384305143c7] Socket close event received\n2025-07-19 20:37:46.437 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50393 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:38:46.416 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:38:46.418 [info] [command][7ceb608d-8ffb-422a-bf8c-e3e724ccad9b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7ceb608d-8ffb-422a-bf8c-e3e724ccad9b""}\n2025-07-19 20:38:46.419 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][02d4eb3a-e1f4-48a7-b831-8591f00b905b] received connection request\n2025-07-19 20:38:46.419 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:38:46.455 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][02d4eb3a-e1f4-48a7-b831-8591f00b905b] socks forwarding established\n2025-07-19 20:38:46.500 [info] [command][7ceb608d-8ffb-422a-bf8c-e3e724ccad9b] Process exited with code 0\n2025-07-19 20:38:46.500 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][02d4eb3a-e1f4-48a7-b831-8591f00b905b] socks connection closed\n2025-07-19 20:38:46.501 [info] [command][7ceb608d-8ffb-422a-bf8c-e3e724ccad9b] Socket close event received\n2025-07-19 20:38:46.529 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50411 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:39:46.506 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:39:46.508 [info] [command][da8bf72a-8d2e-4f20-a5a4-361e373bb018] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""da8bf72a-8d2e-4f20-a5a4-361e373bb018""}\n2025-07-19 20:39:46.509 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6f7b3340-2b60-4875-8baf-e6418ad6593f] received connection request\n2025-07-19 20:39:46.509 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:39:46.542 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6f7b3340-2b60-4875-8baf-e6418ad6593f] socks forwarding established\n2025-07-19 20:39:46.585 [info] [command][da8bf72a-8d2e-4f20-a5a4-361e373bb018] Process exited with code 0\n2025-07-19 20:39:46.585 [info] [command][da8bf72a-8d2e-4f20-a5a4-361e373bb018] Socket close event received\n2025-07-19 20:39:46.586 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6f7b3340-2b60-4875-8baf-e6418ad6593f] socks connection closed\n2025-07-19 20:39:46.615 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50445 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:40:46.595 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:40:46.599 [info] [command][a42d2aea-c1fd-4520-a5a3-ae2b9dfdbb0c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a42d2aea-c1fd-4520-a5a3-ae2b9dfdbb0c""}\n2025-07-19 20:40:46.599 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8e4600b3-f705-4619-8577-2c27e2c05475] received connection request\n2025-07-19 20:40:46.600 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:40:46.639 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8e4600b3-f705-4619-8577-2c27e2c05475] socks forwarding established\n2025-07-19 20:40:46.681 [info] [command][a42d2aea-c1fd-4520-a5a3-ae2b9dfdbb0c] Process exited with code 0\n2025-07-19 20:40:46.681 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8e4600b3-f705-4619-8577-2c27e2c05475] socks connection closed\n2025-07-19 20:40:46.681 [info] [command][a42d2aea-c1fd-4520-a5a3-ae2b9dfdbb0c] Socket close event received\n2025-07-19 20:40:46.711 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50468 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:41:46.691 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:41:46.694 [info] [command][822a8e0b-5386-44a0-8262-f621ac3d68ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""822a8e0b-5386-44a0-8262-f621ac3d68ed""}\n2025-07-19 20:41:46.696 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6145925a-037b-45a3-b59e-a1eca2c809d4] received connection request\n2025-07-19 20:41:46.697 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 20:41:46.697 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:41:46.731 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6145925a-037b-45a3-b59e-a1eca2c809d4] socks forwarding established\n2025-07-19 20:41:46.775 [info] [command][822a8e0b-5386-44a0-8262-f621ac3d68ed] Process exited with code 0\n2025-07-19 20:41:46.776 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6145925a-037b-45a3-b59e-a1eca2c809d4] socks connection closed\n2025-07-19 20:41:46.776 [info] [command][822a8e0b-5386-44a0-8262-f621ac3d68ed] Socket close event received\n2025-07-19 20:41:46.804 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50514 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:42:46.786 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:42:46.789 [info] [command][bb8ad83e-a885-45ea-b225-38b446b0ee3b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""bb8ad83e-a885-45ea-b225-38b446b0ee3b""}\n2025-07-19 20:42:46.790 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][37322365-b10e-406f-a147-a28c9fced67c] received connection request\n2025-07-19 20:42:46.791 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:42:46.830 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][37322365-b10e-406f-a147-a28c9fced67c] socks forwarding established\n2025-07-19 20:42:46.872 [info] [command][bb8ad83e-a885-45ea-b225-38b446b0ee3b] Process exited with code 0\n2025-07-19 20:42:46.873 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][37322365-b10e-406f-a147-a28c9fced67c] socks connection closed\n2025-07-19 20:42:46.873 [info] [command][bb8ad83e-a885-45ea-b225-38b446b0ee3b] Socket close event received\n2025-07-19 20:42:46.902 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50535 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:43:46.882 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:43:46.884 [info] [command][15c0836b-617f-4a75-96f8-595afe9d44e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""15c0836b-617f-4a75-96f8-595afe9d44e5""}\n2025-07-19 20:43:46.885 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][52afc3c2-abc5-4a55-aba9-e930a761efc3] received connection request\n2025-07-19 20:43:46.885 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 20:43:46.886 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:43:46.918 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][52afc3c2-abc5-4a55-aba9-e930a761efc3] socks forwarding established\n2025-07-19 20:43:46.963 [info] [command][15c0836b-617f-4a75-96f8-595afe9d44e5] Process exited with code 0\n2025-07-19 20:43:46.964 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][52afc3c2-abc5-4a55-aba9-e930a761efc3] socks connection closed\n2025-07-19 20:43:46.964 [info] [command][15c0836b-617f-4a75-96f8-595afe9d44e5] Socket close event received\n2025-07-19 20:43:46.993 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50553 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:44:46.967 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:44:46.970 [info] [command][9952304c-11ab-47ea-9d55-b95844a0c9b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9952304c-11ab-47ea-9d55-b95844a0c9b8""}\n2025-07-19 20:44:46.971 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][de1b47ae-9863-4d1d-abb4-d10d026bf24d] received connection request\n2025-07-19 20:44:46.971 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:44:47.006 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][de1b47ae-9863-4d1d-abb4-d10d026bf24d] socks forwarding established\n2025-07-19 20:44:47.053 [info] [command][9952304c-11ab-47ea-9d55-b95844a0c9b8] Process exited with code 0\n2025-07-19 20:44:47.054 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][de1b47ae-9863-4d1d-abb4-d10d026bf24d] socks connection closed\n2025-07-19 20:44:47.054 [info] [command][9952304c-11ab-47ea-9d55-b95844a0c9b8] Socket close event received\n2025-07-19 20:44:47.086 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50583 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:45:47.064 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:45:47.067 [info] [command][5c49dc8a-b113-43b0-af50-2e50d21f97f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5c49dc8a-b113-43b0-af50-2e50d21f97f9""}\n2025-07-19 20:45:47.067 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][bb036be5-5431-443b-8aa7-3beda40815ae] received connection request\n2025-07-19 20:45:47.068 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:45:47.103 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bb036be5-5431-443b-8aa7-3beda40815ae] socks forwarding established\n2025-07-19 20:45:47.150 [info] [command][5c49dc8a-b113-43b0-af50-2e50d21f97f9] Process exited with code 0\n2025-07-19 20:45:47.150 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bb036be5-5431-443b-8aa7-3beda40815ae] socks connection closed\n2025-07-19 20:45:47.151 [info] [command][5c49dc8a-b113-43b0-af50-2e50d21f97f9] Socket close event received\n2025-07-19 20:45:47.181 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50604 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:46:47.160 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:46:47.162 [info] [command][d9b61a71-4aee-4c23-a764-e4fb793fb512] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d9b61a71-4aee-4c23-a764-e4fb793fb512""}\n2025-07-19 20:46:47.163 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][058a477c-2fb8-41a4-9716-894f1a00ad81] received connection request\n2025-07-19 20:46:47.164 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:46:47.198 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][058a477c-2fb8-41a4-9716-894f1a00ad81] socks forwarding established\n2025-07-19 20:46:47.246 [info] [command][d9b61a71-4aee-4c23-a764-e4fb793fb512] Process exited with code 0\n2025-07-19 20:46:47.246 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][058a477c-2fb8-41a4-9716-894f1a00ad81] socks connection closed\n2025-07-19 20:46:47.246 [info] [command][d9b61a71-4aee-4c23-a764-e4fb793fb512] Socket close event received\n2025-07-19 20:46:47.277 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50654 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:47:47.256 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:47:47.260 [info] [command][e71f9029-4186-498f-9519-cf21288f50f5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e71f9029-4186-498f-9519-cf21288f50f5""}\n2025-07-19 20:47:47.260 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][42886a80-d8d3-436c-b3f1-14aa94721008] received connection request\n2025-07-19 20:47:47.261 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:47:47.293 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][42886a80-d8d3-436c-b3f1-14aa94721008] socks forwarding established\n2025-07-19 20:47:47.337 [info] [command][e71f9029-4186-498f-9519-cf21288f50f5] Process exited with code 0\n2025-07-19 20:47:47.338 [info] [command][e71f9029-4186-498f-9519-cf21288f50f5] Socket close event received\n2025-07-19 20:47:47.339 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][42886a80-d8d3-436c-b3f1-14aa94721008] socks connection closed\n2025-07-19 20:47:47.372 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50673 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:48:47.346 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:48:47.348 [info] [command][b75cdc6a-b8cb-4c27-ab45-ff93a572fc6b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b75cdc6a-b8cb-4c27-ab45-ff93a572fc6b""}\n2025-07-19 20:48:47.349 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][741ba374-6804-4915-9340-77dfa2ea4c6e] received connection request\n2025-07-19 20:48:47.349 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:48:47.379 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][741ba374-6804-4915-9340-77dfa2ea4c6e] socks forwarding established\n2025-07-19 20:48:47.426 [info] [command][b75cdc6a-b8cb-4c27-ab45-ff93a572fc6b] Process exited with code 0\n2025-07-19 20:48:47.426 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][741ba374-6804-4915-9340-77dfa2ea4c6e] socks connection closed\n2025-07-19 20:48:47.426 [info] [command][b75cdc6a-b8cb-4c27-ab45-ff93a572fc6b] Socket close event received\n2025-07-19 20:48:47.456 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50691 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:49:47.436 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:49:47.439 [info] [command][0f818695-a02d-4f9d-ae94-09629b59aa2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0f818695-a02d-4f9d-ae94-09629b59aa2a""}\n2025-07-19 20:49:47.440 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3397d177-13ed-4e05-adc4-af7153677376] received connection request\n2025-07-19 20:49:47.441 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:49:47.474 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3397d177-13ed-4e05-adc4-af7153677376] socks forwarding established\n2025-07-19 20:49:47.518 [info] [command][0f818695-a02d-4f9d-ae94-09629b59aa2a] Process exited with code 0\n2025-07-19 20:49:47.519 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3397d177-13ed-4e05-adc4-af7153677376] socks connection closed\n2025-07-19 20:49:47.519 [info] [command][0f818695-a02d-4f9d-ae94-09629b59aa2a] Socket close event received\n2025-07-19 20:49:47.549 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50725 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:50:47.528 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:50:47.530 [info] [command][b832e367-298d-4a10-b3bd-dcae1ff6cae2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b832e367-298d-4a10-b3bd-dcae1ff6cae2""}\n2025-07-19 20:50:47.531 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b9d7f291-9287-414c-8aa8-54c64f46df0f] received connection request\n2025-07-19 20:50:47.532 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:50:47.566 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b9d7f291-9287-414c-8aa8-54c64f46df0f] socks forwarding established\n2025-07-19 20:50:47.611 [info] [command][b832e367-298d-4a10-b3bd-dcae1ff6cae2] Process exited with code 0\n2025-07-19 20:50:47.611 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b9d7f291-9287-414c-8aa8-54c64f46df0f] socks connection closed\n2025-07-19 20:50:47.612 [info] [command][b832e367-298d-4a10-b3bd-dcae1ff6cae2] Socket close event received\n2025-07-19 20:50:47.641 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50744 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:51:47.619 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:51:47.621 [info] [command][ab907426-5217-40d9-a6ca-9fdc920a3e89] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ab907426-5217-40d9-a6ca-9fdc920a3e89""}\n2025-07-19 20:51:47.623 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][579f3266-4f85-4625-8176-fddcf83d0553] received connection request\n2025-07-19 20:51:47.623 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:51:47.655 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][579f3266-4f85-4625-8176-fddcf83d0553] socks forwarding established\n2025-07-19 20:51:47.701 [info] [command][ab907426-5217-40d9-a6ca-9fdc920a3e89] Process exited with code 0\n2025-07-19 20:51:47.702 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][579f3266-4f85-4625-8176-fddcf83d0553] socks connection closed\n2025-07-19 20:51:47.702 [info] [command][ab907426-5217-40d9-a6ca-9fdc920a3e89] Socket close event received\n2025-07-19 20:51:47.731 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50805 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:52:47.710 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:52:47.712 [info] [command][1fbfcc01-4bc2-438c-8bd8-819f93a236b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1fbfcc01-4bc2-438c-8bd8-819f93a236b8""}\n2025-07-19 20:52:47.712 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5d60cd57-4526-4d9b-a78f-b5c66c6db664] received connection request\n2025-07-19 20:52:47.713 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:52:47.751 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5d60cd57-4526-4d9b-a78f-b5c66c6db664] socks forwarding established\n2025-07-19 20:52:47.799 [info] [command][1fbfcc01-4bc2-438c-8bd8-819f93a236b8] Process exited with code 0\n2025-07-19 20:52:47.800 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5d60cd57-4526-4d9b-a78f-b5c66c6db664] socks connection closed\n2025-07-19 20:52:47.800 [info] [command][1fbfcc01-4bc2-438c-8bd8-819f93a236b8] Socket close event received\n2025-07-19 20:52:47.829 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50859 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:53:47.807 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:53:47.810 [info] [command][f5e91648-43bf-4631-9d6b-2fbae6c3268c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f5e91648-43bf-4631-9d6b-2fbae6c3268c""}\n2025-07-19 20:53:47.810 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c4719003-0d13-46cf-a565-4ac8f532b120] received connection request\n2025-07-19 20:53:47.811 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:53:47.845 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c4719003-0d13-46cf-a565-4ac8f532b120] socks forwarding established\n2025-07-19 20:53:47.889 [info] [command][f5e91648-43bf-4631-9d6b-2fbae6c3268c] Process exited with code 0\n2025-07-19 20:53:47.889 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c4719003-0d13-46cf-a565-4ac8f532b120] socks connection closed\n2025-07-19 20:53:47.889 [info] [command][f5e91648-43bf-4631-9d6b-2fbae6c3268c] Socket close event received\n2025-07-19 20:53:47.918 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50877 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:54:47.891 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:54:47.893 [info] [command][419366f2-a1cd-4d9c-b1cb-f8f1c9db430e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""419366f2-a1cd-4d9c-b1cb-f8f1c9db430e""}\n2025-07-19 20:54:47.893 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a0017609-84e8-45de-8a23-0d6810f23c48] received connection request\n2025-07-19 20:54:47.894 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:54:47.930 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a0017609-84e8-45de-8a23-0d6810f23c48] socks forwarding established\n2025-07-19 20:54:47.975 [info] [command][419366f2-a1cd-4d9c-b1cb-f8f1c9db430e] Process exited with code 0\n2025-07-19 20:54:47.975 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a0017609-84e8-45de-8a23-0d6810f23c48] socks connection closed\n2025-07-19 20:54:47.975 [info] [command][419366f2-a1cd-4d9c-b1cb-f8f1c9db430e] Socket close event received\n2025-07-19 20:54:48.008 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50906 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:55:47.983 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:55:47.986 [info] [command][ab40ca7c-c50d-43f0-b6e9-97f5e05bf74a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ab40ca7c-c50d-43f0-b6e9-97f5e05bf74a""}\n2025-07-19 20:55:47.987 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9b2210d1-5c8f-430a-b82d-6d88bf169af7] received connection request\n2025-07-19 20:55:47.987 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:55:48.021 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9b2210d1-5c8f-430a-b82d-6d88bf169af7] socks forwarding established\n2025-07-19 20:55:48.064 [info] [command][ab40ca7c-c50d-43f0-b6e9-97f5e05bf74a] Process exited with code 0\n2025-07-19 20:55:48.064 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9b2210d1-5c8f-430a-b82d-6d88bf169af7] socks connection closed\n2025-07-19 20:55:48.064 [info] [command][ab40ca7c-c50d-43f0-b6e9-97f5e05bf74a] Socket close event received\n2025-07-19 20:55:48.094 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50929 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:56:48.074 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:56:48.076 [info] [command][03aaf661-6a1a-40e3-a66d-d9fd43423910] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""03aaf661-6a1a-40e3-a66d-d9fd43423910""}\n2025-07-19 20:56:48.077 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4ff02f12-08c6-4d30-b580-227b28ee8b42] received connection request\n2025-07-19 20:56:48.078 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:56:48.116 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4ff02f12-08c6-4d30-b580-227b28ee8b42] socks forwarding established\n2025-07-19 20:56:48.159 [info] [command][03aaf661-6a1a-40e3-a66d-d9fd43423910] Process exited with code 0\n2025-07-19 20:56:48.160 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4ff02f12-08c6-4d30-b580-227b28ee8b42] socks connection closed\n2025-07-19 20:56:48.160 [info] [command][03aaf661-6a1a-40e3-a66d-d9fd43423910] Socket close event received\n2025-07-19 20:56:48.191 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50976 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:57:48.160 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:57:48.162 [info] [command][55ea0c35-b19c-4cca-afbb-3cb7d7bfa5f0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""55ea0c35-b19c-4cca-afbb-3cb7d7bfa5f0""}\n2025-07-19 20:57:48.163 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1ce1b8cb-e27b-49bd-8e30-5e17adc5c7fb] received connection request\n2025-07-19 20:57:48.163 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:57:48.194 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1ce1b8cb-e27b-49bd-8e30-5e17adc5c7fb] socks forwarding established\n2025-07-19 20:57:48.240 [info] [command][55ea0c35-b19c-4cca-afbb-3cb7d7bfa5f0] Process exited with code 0\n2025-07-19 20:57:48.240 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1ce1b8cb-e27b-49bd-8e30-5e17adc5c7fb] socks connection closed\n2025-07-19 20:57:48.240 [info] [command][55ea0c35-b19c-4cca-afbb-3cb7d7bfa5f0] Socket close event received\n2025-07-19 20:57:48.270 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 50998 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:58:48.245 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:58:48.248 [info] [command][2d2c3c22-cdab-4c25-8c9f-f0455c437579] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2d2c3c22-cdab-4c25-8c9f-f0455c437579""}\n2025-07-19 20:58:48.249 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][41a62299-fbb1-44ef-8a09-d88167758385] received connection request\n2025-07-19 20:58:48.250 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:58:48.287 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][41a62299-fbb1-44ef-8a09-d88167758385] socks forwarding established\n2025-07-19 20:58:48.329 [info] [command][2d2c3c22-cdab-4c25-8c9f-f0455c437579] Process exited with code 0\n2025-07-19 20:58:48.329 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][41a62299-fbb1-44ef-8a09-d88167758385] socks connection closed\n2025-07-19 20:58:48.329 [info] [command][2d2c3c22-cdab-4c25-8c9f-f0455c437579] Socket close event received\n2025-07-19 20:58:48.359 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51024 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 20:59:48.331 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 20:59:48.333 [info] [command][c90c5ab2-95ee-4114-bc2e-4023a2e9beb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c90c5ab2-95ee-4114-bc2e-4023a2e9beb5""}\n2025-07-19 20:59:48.334 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6b989d56-7136-4582-bd74-fdf498086d3e] received connection request\n2025-07-19 20:59:48.334 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 20:59:48.366 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6b989d56-7136-4582-bd74-fdf498086d3e] socks forwarding established\n2025-07-19 20:59:48.409 [info] [command][c90c5ab2-95ee-4114-bc2e-4023a2e9beb5] Process exited with code 0\n2025-07-19 20:59:48.409 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6b989d56-7136-4582-bd74-fdf498086d3e] socks connection closed\n2025-07-19 20:59:48.409 [info] [command][c90c5ab2-95ee-4114-bc2e-4023a2e9beb5] Socket close event received\n2025-07-19 20:59:48.439 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51058 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:00:48.419 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:00:48.421 [info] [command][3b0aba8a-ac23-4c46-9b16-3b094f39f1dd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3b0aba8a-ac23-4c46-9b16-3b094f39f1dd""}\n2025-07-19 21:00:48.422 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][69e9f0f9-7b8e-497b-92c3-d37bf350f7da] received connection request\n2025-07-19 21:00:48.422 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:00:48.456 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][69e9f0f9-7b8e-497b-92c3-d37bf350f7da] socks forwarding established\n2025-07-19 21:00:48.497 [info] [command][3b0aba8a-ac23-4c46-9b16-3b094f39f1dd] Process exited with code 0\n2025-07-19 21:00:48.498 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][69e9f0f9-7b8e-497b-92c3-d37bf350f7da] socks connection closed\n2025-07-19 21:00:48.498 [info] [command][3b0aba8a-ac23-4c46-9b16-3b094f39f1dd] Socket close event received\n2025-07-19 21:00:48.527 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51075 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:01:48.499 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:01:48.501 [info] [command][da4bcb6a-0c00-40d4-bdbe-65ff8e67da9b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""da4bcb6a-0c00-40d4-bdbe-65ff8e67da9b""}\n2025-07-19 21:01:48.502 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b3acb631-8ba4-44cd-95d0-80f00f0d35f9] received connection request\n2025-07-19 21:01:48.502 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:01:48.536 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b3acb631-8ba4-44cd-95d0-80f00f0d35f9] socks forwarding established\n2025-07-19 21:01:48.578 [info] [command][da4bcb6a-0c00-40d4-bdbe-65ff8e67da9b] Process exited with code 0\n2025-07-19 21:01:48.579 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b3acb631-8ba4-44cd-95d0-80f00f0d35f9] socks connection closed\n2025-07-19 21:01:48.579 [info] [command][da4bcb6a-0c00-40d4-bdbe-65ff8e67da9b] Socket close event received\n2025-07-19 21:01:48.608 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51123 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:02:48.586 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:02:48.588 [info] [command][63e5aeee-142d-4f02-bb7b-d888be5b387e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""63e5aeee-142d-4f02-bb7b-d888be5b387e""}\n2025-07-19 21:02:48.588 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b9114219-1206-4558-8ee2-118d02530f61] received connection request\n2025-07-19 21:02:48.589 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:02:48.631 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b9114219-1206-4558-8ee2-118d02530f61] socks forwarding established\n2025-07-19 21:02:48.674 [info] [command][63e5aeee-142d-4f02-bb7b-d888be5b387e] Process exited with code 0\n2025-07-19 21:02:48.674 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b9114219-1206-4558-8ee2-118d02530f61] socks connection closed\n2025-07-19 21:02:48.675 [info] [command][63e5aeee-142d-4f02-bb7b-d888be5b387e] Socket close event received\n2025-07-19 21:02:48.707 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51141 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:03:48.677 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:03:48.679 [info] [command][710266e3-16a3-4d20-8421-e87da584888f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""710266e3-16a3-4d20-8421-e87da584888f""}\n2025-07-19 21:03:48.679 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2b81f12f-9343-4365-abe1-4c4ba01e2b3b] received connection request\n2025-07-19 21:03:48.680 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 21:03:48.680 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:03:48.716 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2b81f12f-9343-4365-abe1-4c4ba01e2b3b] socks forwarding established\n2025-07-19 21:03:48.764 [info] [command][710266e3-16a3-4d20-8421-e87da584888f] Process exited with code 0\n2025-07-19 21:03:48.764 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2b81f12f-9343-4365-abe1-4c4ba01e2b3b] socks connection closed\n2025-07-19 21:03:48.765 [info] [command][710266e3-16a3-4d20-8421-e87da584888f] Socket close event received\n2025-07-19 21:03:48.794 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51161 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:04:48.770 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:04:48.773 [info] [command][e3eb6c7c-a48b-467f-8d38-f63cd4e332ee] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e3eb6c7c-a48b-467f-8d38-f63cd4e332ee""}\n2025-07-19 21:04:48.773 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fdb348cb-7c8e-4976-9b34-211611e2be77] received connection request\n2025-07-19 21:04:48.774 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:04:48.809 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fdb348cb-7c8e-4976-9b34-211611e2be77] socks forwarding established\n2025-07-19 21:04:48.855 [info] [command][e3eb6c7c-a48b-467f-8d38-f63cd4e332ee] Process exited with code 0\n2025-07-19 21:04:48.855 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fdb348cb-7c8e-4976-9b34-211611e2be77] socks connection closed\n2025-07-19 21:04:48.856 [info] [command][e3eb6c7c-a48b-467f-8d38-f63cd4e332ee] Socket close event received\n2025-07-19 21:04:48.885 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51195 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:05:48.863 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:05:48.866 [info] [command][85c2ab3c-1934-4e9d-aa24-b78570fc7494] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""85c2ab3c-1934-4e9d-aa24-b78570fc7494""}\n2025-07-19 21:05:48.867 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2aa3e752-c17d-4a5f-bc53-00676aeece2d] received connection request\n2025-07-19 21:05:48.868 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:05:48.901 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2aa3e752-c17d-4a5f-bc53-00676aeece2d] socks forwarding established\n2025-07-19 21:05:48.947 [info] [command][85c2ab3c-1934-4e9d-aa24-b78570fc7494] Process exited with code 0\n2025-07-19 21:05:48.948 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2aa3e752-c17d-4a5f-bc53-00676aeece2d] socks connection closed\n2025-07-19 21:05:48.948 [info] [command][85c2ab3c-1934-4e9d-aa24-b78570fc7494] Socket close event received\n2025-07-19 21:05:48.979 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51213 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:06:48.958 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:06:48.961 [info] [command][99ba53bf-e472-4f3b-ab2f-4a11bb2a64e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""99ba53bf-e472-4f3b-ab2f-4a11bb2a64e5""}\n2025-07-19 21:06:48.962 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4285a4db-a3ad-4be9-bbcf-4f30432e903e] received connection request\n2025-07-19 21:06:48.962 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:06:49.001 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4285a4db-a3ad-4be9-bbcf-4f30432e903e] socks forwarding established\n2025-07-19 21:06:49.051 [info] [command][99ba53bf-e472-4f3b-ab2f-4a11bb2a64e5] Process exited with code 0\n2025-07-19 21:06:49.052 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4285a4db-a3ad-4be9-bbcf-4f30432e903e] socks connection closed\n2025-07-19 21:06:49.052 [info] [command][99ba53bf-e472-4f3b-ab2f-4a11bb2a64e5] Socket close event received\n2025-07-19 21:06:49.082 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51261 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:07:49.060 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:07:49.062 [info] [command][63764f34-c287-49fe-a5cc-a6711c97997f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""63764f34-c287-49fe-a5cc-a6711c97997f""}\n2025-07-19 21:07:49.062 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5182752b-875c-4346-a4af-b2426cb49ed0] received connection request\n2025-07-19 21:07:49.063 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:07:49.103 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5182752b-875c-4346-a4af-b2426cb49ed0] socks forwarding established\n2025-07-19 21:07:49.149 [info] [command][63764f34-c287-49fe-a5cc-a6711c97997f] Process exited with code 0\n2025-07-19 21:07:49.149 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5182752b-875c-4346-a4af-b2426cb49ed0] socks connection closed\n2025-07-19 21:07:49.149 [info] [command][63764f34-c287-49fe-a5cc-a6711c97997f] Socket close event received\n2025-07-19 21:07:49.179 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51279 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:08:49.157 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:08:49.161 [info] [command][e185b67a-205d-4576-809f-1c973d32f315] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e185b67a-205d-4576-809f-1c973d32f315""}\n2025-07-19 21:08:49.162 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ea83202b-0be1-4aed-9f20-00e0435ef4dc] received connection request\n2025-07-19 21:08:49.162 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:08:49.200 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ea83202b-0be1-4aed-9f20-00e0435ef4dc] socks forwarding established\n2025-07-19 21:08:49.246 [info] [command][e185b67a-205d-4576-809f-1c973d32f315] Process exited with code 0\n2025-07-19 21:08:49.246 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ea83202b-0be1-4aed-9f20-00e0435ef4dc] socks connection closed\n2025-07-19 21:08:49.246 [info] [command][e185b67a-205d-4576-809f-1c973d32f315] Socket close event received\n2025-07-19 21:08:49.276 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51300 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:09:49.256 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:09:49.257 [info] [command][3be4e3e1-7beb-4754-8305-fbbf3685045c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3be4e3e1-7beb-4754-8305-fbbf3685045c""}\n2025-07-19 21:09:49.258 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][860006cf-19e5-4725-af30-1822b1664e18] received connection request\n2025-07-19 21:09:49.260 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:09:49.296 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][860006cf-19e5-4725-af30-1822b1664e18] socks forwarding established\n2025-07-19 21:09:49.340 [info] [command][3be4e3e1-7beb-4754-8305-fbbf3685045c] Process exited with code 0\n2025-07-19 21:09:49.340 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][860006cf-19e5-4725-af30-1822b1664e18] socks connection closed\n2025-07-19 21:09:49.341 [info] [command][3be4e3e1-7beb-4754-8305-fbbf3685045c] Socket close event received\n2025-07-19 21:09:49.371 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51335 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:10:49.344 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:10:49.346 [info] [command][e261390d-94ff-42a2-91a0-004e8fc3c789] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e261390d-94ff-42a2-91a0-004e8fc3c789""}\n2025-07-19 21:10:49.347 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][80e59d25-059b-433d-8a14-82384be0210d] received connection request\n2025-07-19 21:10:49.348 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 21:10:49.348 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:10:49.382 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][80e59d25-059b-433d-8a14-82384be0210d] socks forwarding established\n2025-07-19 21:10:49.427 [info] [command][e261390d-94ff-42a2-91a0-004e8fc3c789] Process exited with code 0\n2025-07-19 21:10:49.427 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][80e59d25-059b-433d-8a14-82384be0210d] socks connection closed\n2025-07-19 21:10:49.427 [info] [command][e261390d-94ff-42a2-91a0-004e8fc3c789] Socket close event received\n2025-07-19 21:10:49.458 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51356 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:11:49.435 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:11:49.437 [info] [command][d8c49e11-3293-4360-bc74-5709993af440] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d8c49e11-3293-4360-bc74-5709993af440""}\n2025-07-19 21:11:49.438 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9d24f82e-60d3-45a3-be74-e94c573e6ac7] received connection request\n2025-07-19 21:11:49.439 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:11:49.474 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9d24f82e-60d3-45a3-be74-e94c573e6ac7] socks forwarding established\n2025-07-19 21:11:49.519 [info] [command][d8c49e11-3293-4360-bc74-5709993af440] Process exited with code 0\n2025-07-19 21:11:49.520 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9d24f82e-60d3-45a3-be74-e94c573e6ac7] socks connection closed\n2025-07-19 21:11:49.520 [info] [command][d8c49e11-3293-4360-bc74-5709993af440] Socket close event received\n2025-07-19 21:11:49.553 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51402 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:12:49.529 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:12:49.530 [info] [command][7b4bbb74-1df5-4ea6-94f4-4900cc9cade2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7b4bbb74-1df5-4ea6-94f4-4900cc9cade2""}\n2025-07-19 21:12:49.530 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][627e4a7f-5f9b-4a02-b0e4-8c54cdb1d697] received connection request\n2025-07-19 21:12:49.530 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:12:49.559 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][627e4a7f-5f9b-4a02-b0e4-8c54cdb1d697] socks forwarding established\n2025-07-19 21:12:49.606 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][627e4a7f-5f9b-4a02-b0e4-8c54cdb1d697] socks connection closed\n2025-07-19 21:12:49.606 [info] [command][7b4bbb74-1df5-4ea6-94f4-4900cc9cade2] Process exited with code 0\n2025-07-19 21:12:49.606 [info] [command][7b4bbb74-1df5-4ea6-94f4-4900cc9cade2] Socket close event received\n2025-07-19 21:12:49.637 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51424 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:13:49.612 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:13:49.614 [info] [command][7cd092d1-5f29-4b78-b6db-e246382ea54b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7cd092d1-5f29-4b78-b6db-e246382ea54b""}\n2025-07-19 21:13:49.614 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5f8ce2ad-73a0-47e7-8398-c4687b907936] received connection request\n2025-07-19 21:13:49.615 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:13:49.650 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5f8ce2ad-73a0-47e7-8398-c4687b907936] socks forwarding established\n2025-07-19 21:13:49.695 [info] [command][7cd092d1-5f29-4b78-b6db-e246382ea54b] Process exited with code 0\n2025-07-19 21:13:49.696 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5f8ce2ad-73a0-47e7-8398-c4687b907936] socks connection closed\n2025-07-19 21:13:49.696 [info] [command][7cd092d1-5f29-4b78-b6db-e246382ea54b] Socket close event received\n2025-07-19 21:13:49.730 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51441 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:14:49.697 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:14:49.699 [info] [command][d5b82e1b-b3e3-4a3e-b0a4-156853dc46b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d5b82e1b-b3e3-4a3e-b0a4-156853dc46b9""}\n2025-07-19 21:14:49.700 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e144e9e5-687e-47a5-a912-55cb71d5367e] received connection request\n2025-07-19 21:14:49.700 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:14:49.734 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e144e9e5-687e-47a5-a912-55cb71d5367e] socks forwarding established\n2025-07-19 21:14:49.782 [info] [command][d5b82e1b-b3e3-4a3e-b0a4-156853dc46b9] Process exited with code 0\n2025-07-19 21:14:49.782 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e144e9e5-687e-47a5-a912-55cb71d5367e] socks connection closed\n2025-07-19 21:14:49.782 [info] [command][d5b82e1b-b3e3-4a3e-b0a4-156853dc46b9] Socket close event received\n2025-07-19 21:14:49.812 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51475 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:15:49.784 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:15:49.787 [info] [command][4ce8a5f1-24bf-4668-8edf-8afc89a212e8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4ce8a5f1-24bf-4668-8edf-8afc89a212e8""}\n2025-07-19 21:15:49.788 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][548c14f8-18c1-4a26-b7d0-92f1a624384f] received connection request\n2025-07-19 21:15:49.789 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:15:49.821 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][548c14f8-18c1-4a26-b7d0-92f1a624384f] socks forwarding established\n2025-07-19 21:15:49.865 [info] [command][4ce8a5f1-24bf-4668-8edf-8afc89a212e8] Process exited with code 0\n2025-07-19 21:15:49.865 [info] [command][4ce8a5f1-24bf-4668-8edf-8afc89a212e8] Socket close event received\n2025-07-19 21:15:49.866 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][548c14f8-18c1-4a26-b7d0-92f1a624384f] socks connection closed\n2025-07-19 21:15:49.895 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51500 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:16:49.872 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:16:49.874 [info] [command][b517b5e4-9053-4d3d-85ad-6af238cccd48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b517b5e4-9053-4d3d-85ad-6af238cccd48""}\n2025-07-19 21:16:49.875 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][627a09cc-a0b5-4359-ae32-2c9c8bc2b28d] received connection request\n2025-07-19 21:16:49.876 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:16:49.910 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][627a09cc-a0b5-4359-ae32-2c9c8bc2b28d] socks forwarding established\n2025-07-19 21:16:49.956 [info] [command][b517b5e4-9053-4d3d-85ad-6af238cccd48] Process exited with code 0\n2025-07-19 21:16:49.956 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][627a09cc-a0b5-4359-ae32-2c9c8bc2b28d] socks connection closed\n2025-07-19 21:16:49.956 [info] [command][b517b5e4-9053-4d3d-85ad-6af238cccd48] Socket close event received\n2025-07-19 21:16:49.988 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51544 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:17:49.959 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:17:49.961 [info] [command][108ea05e-674f-4382-97d8-fd747837d1f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""108ea05e-674f-4382-97d8-fd747837d1f4""}\n2025-07-19 21:17:49.962 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][30b14d43-e485-4c59-9bb5-09fc48f8b2f2] received connection request\n2025-07-19 21:17:49.962 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:17:49.994 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][30b14d43-e485-4c59-9bb5-09fc48f8b2f2] socks forwarding established\n2025-07-19 21:17:50.053 [info] [command][108ea05e-674f-4382-97d8-fd747837d1f4] Process exited with code 0\n2025-07-19 21:17:50.054 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][30b14d43-e485-4c59-9bb5-09fc48f8b2f2] socks connection closed\n2025-07-19 21:17:50.055 [info] [command][108ea05e-674f-4382-97d8-fd747837d1f4] Socket close event received\n2025-07-19 21:17:50.086 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51565 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:18:50.056 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:18:50.057 [info] [command][4491af60-6981-4806-8e8c-835f1aa9c1df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4491af60-6981-4806-8e8c-835f1aa9c1df""}\n2025-07-19 21:18:50.058 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e204cde7-1e0e-478d-95fb-7155114097dc] received connection request\n2025-07-19 21:18:50.059 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:18:50.091 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e204cde7-1e0e-478d-95fb-7155114097dc] socks forwarding established\n2025-07-19 21:18:50.137 [info] [command][4491af60-6981-4806-8e8c-835f1aa9c1df] Process exited with code 0\n2025-07-19 21:18:50.137 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e204cde7-1e0e-478d-95fb-7155114097dc] socks connection closed\n2025-07-19 21:18:50.137 [info] [command][4491af60-6981-4806-8e8c-835f1aa9c1df] Socket close event received\n2025-07-19 21:18:50.168 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51582 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:19:50.144 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:19:50.146 [info] [command][d3b3e177-785f-47fb-b63d-2abd46c3591b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d3b3e177-785f-47fb-b63d-2abd46c3591b""}\n2025-07-19 21:19:50.147 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][89c6db98-22cf-4d48-976c-dec712a29f10] received connection request\n2025-07-19 21:19:50.147 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:19:50.188 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][89c6db98-22cf-4d48-976c-dec712a29f10] socks forwarding established\n2025-07-19 21:19:50.232 [info] [command][d3b3e177-785f-47fb-b63d-2abd46c3591b] Process exited with code 0\n2025-07-19 21:19:50.233 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][89c6db98-22cf-4d48-976c-dec712a29f10] socks connection closed\n2025-07-19 21:19:50.233 [info] [command][d3b3e177-785f-47fb-b63d-2abd46c3591b] Socket close event received\n2025-07-19 21:19:50.262 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51622 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:20:50.242 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:20:50.245 [info] [command][e74f7c58-2f39-4fbf-9425-cfbabe3874cc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e74f7c58-2f39-4fbf-9425-cfbabe3874cc""}\n2025-07-19 21:20:50.246 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][04513643-f11d-4ff8-b77e-ac669f9d72f1] received connection request\n2025-07-19 21:20:50.246 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:20:50.286 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][04513643-f11d-4ff8-b77e-ac669f9d72f1] socks forwarding established\n2025-07-19 21:20:50.331 [info] [command][e74f7c58-2f39-4fbf-9425-cfbabe3874cc] Process exited with code 0\n2025-07-19 21:20:50.332 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][04513643-f11d-4ff8-b77e-ac669f9d72f1] socks connection closed\n2025-07-19 21:20:50.332 [info] [command][e74f7c58-2f39-4fbf-9425-cfbabe3874cc] Socket close event received\n2025-07-19 21:20:50.362 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51642 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:21:50.341 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:21:50.343 [info] [command][cf99cd8e-249c-4449-ba72-cd9496f7f5f8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""cf99cd8e-249c-4449-ba72-cd9496f7f5f8""}\n2025-07-19 21:21:50.344 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][cc78336b-945a-447d-b6fd-7314f6ccef74] received connection request\n2025-07-19 21:21:50.345 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:21:50.415 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cc78336b-945a-447d-b6fd-7314f6ccef74] socks forwarding established\n2025-07-19 21:21:50.465 [info] [command][cf99cd8e-249c-4449-ba72-cd9496f7f5f8] Process exited with code 0\n2025-07-19 21:21:50.465 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cc78336b-945a-447d-b6fd-7314f6ccef74] socks connection closed\n2025-07-19 21:21:50.465 [info] [command][cf99cd8e-249c-4449-ba72-cd9496f7f5f8] Socket close event received\n2025-07-19 21:21:50.495 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51686 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:22:50.466 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:22:50.467 [info] [command][c272d7e8-3ce6-41b8-9e17-4bf93c25a8f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c272d7e8-3ce6-41b8-9e17-4bf93c25a8f7""}\n2025-07-19 21:22:50.468 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][340d299a-9c0b-49b7-a080-64f171702ac1] received connection request\n2025-07-19 21:22:50.468 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:22:50.500 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][340d299a-9c0b-49b7-a080-64f171702ac1] socks forwarding established\n2025-07-19 21:22:50.565 [info] [command][c272d7e8-3ce6-41b8-9e17-4bf93c25a8f7] Process exited with code 0\n2025-07-19 21:22:50.566 [info] [command][c272d7e8-3ce6-41b8-9e17-4bf93c25a8f7] Socket close event received\n2025-07-19 21:22:50.566 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][340d299a-9c0b-49b7-a080-64f171702ac1] socks connection closed\n2025-07-19 21:22:50.597 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51708 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:23:50.571 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:23:50.574 [info] [command][7f567855-21a3-4950-a520-f7a1f598ebb3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7f567855-21a3-4950-a520-f7a1f598ebb3""}\n2025-07-19 21:23:50.574 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][320e3818-878b-4aec-b211-705a80c01245] received connection request\n2025-07-19 21:23:50.575 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:23:50.608 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][320e3818-878b-4aec-b211-705a80c01245] socks forwarding established\n2025-07-19 21:23:50.654 [info] [command][7f567855-21a3-4950-a520-f7a1f598ebb3] Process exited with code 0\n2025-07-19 21:23:50.655 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][320e3818-878b-4aec-b211-705a80c01245] socks connection closed\n2025-07-19 21:23:50.655 [info] [command][7f567855-21a3-4950-a520-f7a1f598ebb3] Socket close event received\n2025-07-19 21:23:50.685 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51725 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:24:50.665 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:24:50.667 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][752644f3-6dd3-4a3e-82d7-f87e2d27cf0b] received connection request\n2025-07-19 21:24:50.668 [info] [command][57610012-3018-4df6-8c71-87c74804e367] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""57610012-3018-4df6-8c71-87c74804e367""}\n2025-07-19 21:24:50.668 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:24:50.701 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][752644f3-6dd3-4a3e-82d7-f87e2d27cf0b] socks forwarding established\n2025-07-19 21:24:50.747 [info] [command][57610012-3018-4df6-8c71-87c74804e367] Process exited with code 0\n2025-07-19 21:24:50.747 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][752644f3-6dd3-4a3e-82d7-f87e2d27cf0b] socks connection closed\n2025-07-19 21:24:50.747 [info] [command][57610012-3018-4df6-8c71-87c74804e367] Socket close event received\n2025-07-19 21:24:50.778 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51756 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:25:50.753 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:25:50.755 [info] [command][12253087-c33b-4a89-8094-ad9b89c60319] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""12253087-c33b-4a89-8094-ad9b89c60319""}\n2025-07-19 21:25:50.755 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][725ebc81-6a0f-442b-b47a-2455c5280d73] received connection request\n2025-07-19 21:25:50.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:25:50.788 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][725ebc81-6a0f-442b-b47a-2455c5280d73] socks forwarding established\n2025-07-19 21:25:50.832 [info] [command][12253087-c33b-4a89-8094-ad9b89c60319] Process exited with code 0\n2025-07-19 21:25:50.833 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][725ebc81-6a0f-442b-b47a-2455c5280d73] socks connection closed\n2025-07-19 21:25:50.833 [info] [command][12253087-c33b-4a89-8094-ad9b89c60319] Socket close event received\n2025-07-19 21:25:50.862 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51779 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:26:50.842 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:26:50.844 [info] [command][04f09451-0dc6-4bd0-94f4-a412a2f5b6ab] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""04f09451-0dc6-4bd0-94f4-a412a2f5b6ab""}\n2025-07-19 21:26:50.844 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2666397f-6e94-4984-b12a-c95ada32bf46] received connection request\n2025-07-19 21:26:50.845 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:26:50.877 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2666397f-6e94-4984-b12a-c95ada32bf46] socks forwarding established\n2025-07-19 21:26:50.923 [info] [command][04f09451-0dc6-4bd0-94f4-a412a2f5b6ab] Process exited with code 0\n2025-07-19 21:26:50.923 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2666397f-6e94-4984-b12a-c95ada32bf46] socks connection closed\n2025-07-19 21:26:50.923 [info] [command][04f09451-0dc6-4bd0-94f4-a412a2f5b6ab] Socket close event received\n2025-07-19 21:26:50.952 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51823 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:27:50.927 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:27:50.930 [info] [command][d60857f7-475c-466f-bbbf-1880e3f7d967] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d60857f7-475c-466f-bbbf-1880e3f7d967""}\n2025-07-19 21:27:50.930 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][eebebd7d-4301-40ad-9767-ddfad0db8036] received connection request\n2025-07-19 21:27:50.931 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:27:50.962 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][eebebd7d-4301-40ad-9767-ddfad0db8036] socks forwarding established\n2025-07-19 21:27:51.007 [info] [command][d60857f7-475c-466f-bbbf-1880e3f7d967] Process exited with code 0\n2025-07-19 21:27:51.007 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][eebebd7d-4301-40ad-9767-ddfad0db8036] socks connection closed\n2025-07-19 21:27:51.007 [info] [command][d60857f7-475c-466f-bbbf-1880e3f7d967] Socket close event received\n2025-07-19 21:27:51.039 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51841 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:28:51.009 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:28:51.010 [info] [command][8bef6e00-c08d-439c-bbbf-fd19478a42e5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8bef6e00-c08d-439c-bbbf-fd19478a42e5""}\n2025-07-19 21:28:51.011 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a501fc1e-748f-4018-bc82-8ba980b57d0e] received connection request\n2025-07-19 21:28:51.013 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:28:51.048 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a501fc1e-748f-4018-bc82-8ba980b57d0e] socks forwarding established\n2025-07-19 21:28:51.096 [info] [command][8bef6e00-c08d-439c-bbbf-fd19478a42e5] Process exited with code 0\n2025-07-19 21:28:51.096 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a501fc1e-748f-4018-bc82-8ba980b57d0e] socks connection closed\n2025-07-19 21:28:51.096 [info] [command][8bef6e00-c08d-439c-bbbf-fd19478a42e5] Socket close event received\n2025-07-19 21:28:51.128 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51861 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:29:51.100 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:29:51.102 [info] [command][106808b2-e3ea-49d1-a982-eaf8d1cfb3bd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""106808b2-e3ea-49d1-a982-eaf8d1cfb3bd""}\n2025-07-19 21:29:51.103 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b0182ebe-8909-488d-8a6a-fbf2392aa9dd] received connection request\n2025-07-19 21:29:51.104 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:29:51.142 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b0182ebe-8909-488d-8a6a-fbf2392aa9dd] socks forwarding established\n2025-07-19 21:29:51.189 [info] [command][106808b2-e3ea-49d1-a982-eaf8d1cfb3bd] Process exited with code 0\n2025-07-19 21:29:51.189 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b0182ebe-8909-488d-8a6a-fbf2392aa9dd] socks connection closed\n2025-07-19 21:29:51.189 [info] [command][106808b2-e3ea-49d1-a982-eaf8d1cfb3bd] Socket close event received\n2025-07-19 21:29:51.219 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51898 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:30:51.194 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:30:51.196 [info] [command][85243213-4ef4-468e-9a3c-c0cc9a9b4461] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""85243213-4ef4-468e-9a3c-c0cc9a9b4461""}\n2025-07-19 21:30:51.197 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d35f922e-b974-4243-8e23-16ece8dcebe4] received connection request\n2025-07-19 21:30:51.197 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:30:51.229 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d35f922e-b974-4243-8e23-16ece8dcebe4] socks forwarding established\n2025-07-19 21:30:51.280 [info] [command][85243213-4ef4-468e-9a3c-c0cc9a9b4461] Process exited with code 0\n2025-07-19 21:30:51.280 [info] [command][85243213-4ef4-468e-9a3c-c0cc9a9b4461] Socket close event received\n2025-07-19 21:30:51.280 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d35f922e-b974-4243-8e23-16ece8dcebe4] socks connection closed\n2025-07-19 21:30:51.312 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51918 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:31:51.283 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:31:51.286 [info] [command][f640bbfe-31d0-4ad0-97f8-fa1cfee115bf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f640bbfe-31d0-4ad0-97f8-fa1cfee115bf""}\n2025-07-19 21:31:51.286 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b970d31f-c57c-4810-a1dd-8eab4ca3a7f6] received connection request\n2025-07-19 21:31:51.287 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:31:51.318 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b970d31f-c57c-4810-a1dd-8eab4ca3a7f6] socks forwarding established\n2025-07-19 21:31:51.361 [info] [command][f640bbfe-31d0-4ad0-97f8-fa1cfee115bf] Process exited with code 0\n2025-07-19 21:31:51.362 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b970d31f-c57c-4810-a1dd-8eab4ca3a7f6] socks connection closed\n2025-07-19 21:31:51.362 [info] [command][f640bbfe-31d0-4ad0-97f8-fa1cfee115bf] Socket close event received\n2025-07-19 21:31:51.391 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51964 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:32:51.371 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:32:51.373 [info] [command][578c0fac-c704-4e80-9ef6-8ff2c14619c4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""578c0fac-c704-4e80-9ef6-8ff2c14619c4""}\n2025-07-19 21:32:51.374 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e91e80c0-72fb-4390-baae-13345e97228c] received connection request\n2025-07-19 21:32:51.374 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:32:51.406 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e91e80c0-72fb-4390-baae-13345e97228c] socks forwarding established\n2025-07-19 21:32:51.450 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e91e80c0-72fb-4390-baae-13345e97228c] socks connection closed\n2025-07-19 21:32:51.451 [info] [command][578c0fac-c704-4e80-9ef6-8ff2c14619c4] Process exited with code 0\n2025-07-19 21:32:51.451 [info] [command][578c0fac-c704-4e80-9ef6-8ff2c14619c4] Socket close event received\n2025-07-19 21:32:51.480 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 51988 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:33:51.458 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:33:51.460 [info] [command][bfea07a3-f6fa-4de5-8d42-d7b47c3b1de2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""bfea07a3-f6fa-4de5-8d42-d7b47c3b1de2""}\n2025-07-19 21:33:51.461 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d3e97b98-1394-429d-9e2b-b19d7a740b9d] received connection request\n2025-07-19 21:33:51.462 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:33:51.494 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d3e97b98-1394-429d-9e2b-b19d7a740b9d] socks forwarding established\n2025-07-19 21:33:51.541 [info] [command][bfea07a3-f6fa-4de5-8d42-d7b47c3b1de2] Process exited with code 0\n2025-07-19 21:33:51.541 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d3e97b98-1394-429d-9e2b-b19d7a740b9d] socks connection closed\n2025-07-19 21:33:51.541 [info] [command][bfea07a3-f6fa-4de5-8d42-d7b47c3b1de2] Socket close event received\n2025-07-19 21:33:51.571 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52006 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:34:51.547 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:34:51.549 [info] [command][bdba4e17-896e-4edb-99ff-ba738de1d345] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""bdba4e17-896e-4edb-99ff-ba738de1d345""}\n2025-07-19 21:34:51.550 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f9380666-e08f-40ab-8adc-9c2b22beba1a] received connection request\n2025-07-19 21:34:51.551 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:34:51.584 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f9380666-e08f-40ab-8adc-9c2b22beba1a] socks forwarding established\n2025-07-19 21:34:51.630 [info] [command][bdba4e17-896e-4edb-99ff-ba738de1d345] Process exited with code 0\n2025-07-19 21:34:51.630 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f9380666-e08f-40ab-8adc-9c2b22beba1a] socks connection closed\n2025-07-19 21:34:51.631 [info] [command][bdba4e17-896e-4edb-99ff-ba738de1d345] Socket close event received\n2025-07-19 21:34:51.662 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52037 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:35:51.634 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:35:51.636 [info] [command][93ac0997-ea12-4485-8ffb-c3078a21f1dd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""93ac0997-ea12-4485-8ffb-c3078a21f1dd""}\n2025-07-19 21:35:51.636 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7cfa8b52-b1f2-4c03-9aa9-3560fa1f349c] received connection request\n2025-07-19 21:35:51.637 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:35:51.675 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7cfa8b52-b1f2-4c03-9aa9-3560fa1f349c] socks forwarding established\n2025-07-19 21:35:51.721 [info] [command][93ac0997-ea12-4485-8ffb-c3078a21f1dd] Process exited with code 0\n2025-07-19 21:35:51.721 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7cfa8b52-b1f2-4c03-9aa9-3560fa1f349c] socks connection closed\n2025-07-19 21:35:51.721 [info] [command][93ac0997-ea12-4485-8ffb-c3078a21f1dd] Socket close event received\n2025-07-19 21:35:51.751 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52058 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:36:51.732 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:36:51.733 [info] [command][0252e244-f705-4137-a68b-9d8681a145ff] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0252e244-f705-4137-a68b-9d8681a145ff""}\n2025-07-19 21:36:51.734 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][42ce404d-88f4-47d9-9c91-b8229448ad12] received connection request\n2025-07-19 21:36:51.735 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:36:51.766 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][42ce404d-88f4-47d9-9c91-b8229448ad12] socks forwarding established\n2025-07-19 21:36:51.809 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][42ce404d-88f4-47d9-9c91-b8229448ad12] socks connection closed\n2025-07-19 21:36:51.810 [info] [command][0252e244-f705-4137-a68b-9d8681a145ff] Process exited with code 0\n2025-07-19 21:36:51.810 [info] [command][0252e244-f705-4137-a68b-9d8681a145ff] Socket close event received\n2025-07-19 21:36:51.841 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52106 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:37:51.820 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:37:51.822 [info] [command][89773f9f-5cdd-4ce7-98e8-bf047281001c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""89773f9f-5cdd-4ce7-98e8-bf047281001c""}\n2025-07-19 21:37:51.823 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][07f8bbed-0ad8-44b4-bbda-65181e7ebd5e] received connection request\n2025-07-19 21:37:51.824 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:37:51.862 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][07f8bbed-0ad8-44b4-bbda-65181e7ebd5e] socks forwarding established\n2025-07-19 21:37:51.908 [info] [command][89773f9f-5cdd-4ce7-98e8-bf047281001c] Process exited with code 0\n2025-07-19 21:37:51.908 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][07f8bbed-0ad8-44b4-bbda-65181e7ebd5e] socks connection closed\n2025-07-19 21:37:51.908 [info] [command][89773f9f-5cdd-4ce7-98e8-bf047281001c] Socket close event received\n2025-07-19 21:37:51.940 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52126 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:38:51.918 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:38:51.920 [info] [command][e9400d31-bd56-4dc0-af8f-a34e09f1e7b9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e9400d31-bd56-4dc0-af8f-a34e09f1e7b9""}\n2025-07-19 21:38:51.921 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d4c26fff-cd92-4407-8c4e-f4a3bbde83f3] received connection request\n2025-07-19 21:38:51.922 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:38:51.954 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d4c26fff-cd92-4407-8c4e-f4a3bbde83f3] socks forwarding established\n2025-07-19 21:38:52.001 [info] [command][e9400d31-bd56-4dc0-af8f-a34e09f1e7b9] Process exited with code 0\n2025-07-19 21:38:52.001 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d4c26fff-cd92-4407-8c4e-f4a3bbde83f3] socks connection closed\n2025-07-19 21:38:52.002 [info] [command][e9400d31-bd56-4dc0-af8f-a34e09f1e7b9] Socket close event received\n2025-07-19 21:38:52.033 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52145 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:39:52.010 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:39:52.012 [info] [command][25283260-f586-4cd1-a961-8e4ba4566841] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""25283260-f586-4cd1-a961-8e4ba4566841""}\n2025-07-19 21:39:52.013 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][10b2be0d-26ec-4f0f-a0d8-6ddfd3c2d2b1] received connection request\n2025-07-19 21:39:52.014 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:39:52.047 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][10b2be0d-26ec-4f0f-a0d8-6ddfd3c2d2b1] socks forwarding established\n2025-07-19 21:39:52.092 [info] [command][25283260-f586-4cd1-a961-8e4ba4566841] Process exited with code 0\n2025-07-19 21:39:52.092 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][10b2be0d-26ec-4f0f-a0d8-6ddfd3c2d2b1] socks connection closed\n2025-07-19 21:39:52.093 [info] [command][25283260-f586-4cd1-a961-8e4ba4566841] Socket close event received\n2025-07-19 21:39:52.121 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52175 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:40:52.094 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:40:52.096 [info] [command][4a355a86-50fa-4475-a5e3-ad783085b590] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4a355a86-50fa-4475-a5e3-ad783085b590""}\n2025-07-19 21:40:52.097 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][85124a97-3ced-402f-999d-d4998b5575db] received connection request\n2025-07-19 21:40:52.098 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:40:52.133 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][85124a97-3ced-402f-999d-d4998b5575db] socks forwarding established\n2025-07-19 21:40:52.177 [info] [command][4a355a86-50fa-4475-a5e3-ad783085b590] Process exited with code 0\n2025-07-19 21:40:52.177 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][85124a97-3ced-402f-999d-d4998b5575db] socks connection closed\n2025-07-19 21:40:52.177 [info] [command][4a355a86-50fa-4475-a5e3-ad783085b590] Socket close event received\n2025-07-19 21:40:52.208 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52199 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:41:52.184 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:41:52.186 [info] [command][22171a55-8421-4caf-92f6-ecc290198db6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""22171a55-8421-4caf-92f6-ecc290198db6""}\n2025-07-19 21:41:52.188 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1c82851e-6c2e-4824-af33-7cc038635aef] received connection request\n2025-07-19 21:41:52.188 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:41:52.226 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1c82851e-6c2e-4824-af33-7cc038635aef] socks forwarding established\n2025-07-19 21:41:52.278 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1c82851e-6c2e-4824-af33-7cc038635aef] socks connection closed\n2025-07-19 21:41:52.279 [info] [command][22171a55-8421-4caf-92f6-ecc290198db6] Process exited with code 0\n2025-07-19 21:41:52.279 [info] [command][22171a55-8421-4caf-92f6-ecc290198db6] Socket close event received\n2025-07-19 21:41:52.308 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52244 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:42:52.278 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:42:52.280 [info] [command][521a1c46-e610-41fa-b06b-ba1d281f42a4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""521a1c46-e610-41fa-b06b-ba1d281f42a4""}\n2025-07-19 21:42:52.280 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][08aa6186-be58-4b18-a5e2-75fcf289055d] received connection request\n2025-07-19 21:42:52.281 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:42:52.315 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][08aa6186-be58-4b18-a5e2-75fcf289055d] socks forwarding established\n2025-07-19 21:42:52.361 [info] [command][521a1c46-e610-41fa-b06b-ba1d281f42a4] Process exited with code 0\n2025-07-19 21:42:52.361 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][08aa6186-be58-4b18-a5e2-75fcf289055d] socks connection closed\n2025-07-19 21:42:52.361 [info] [command][521a1c46-e610-41fa-b06b-ba1d281f42a4] Socket close event received\n2025-07-19 21:42:52.390 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52268 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:43:52.371 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:43:52.373 [info] [command][349a02af-0cb5-4343-a82d-3f1b0b1d2f09] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""349a02af-0cb5-4343-a82d-3f1b0b1d2f09""}\n2025-07-19 21:43:52.374 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7fafa43b-0a78-444f-acfc-1d12b1f10266] received connection request\n2025-07-19 21:43:52.375 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:43:52.409 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7fafa43b-0a78-444f-acfc-1d12b1f10266] socks forwarding established\n2025-07-19 21:43:52.454 [info] [command][349a02af-0cb5-4343-a82d-3f1b0b1d2f09] Process exited with code 0\n2025-07-19 21:43:52.454 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7fafa43b-0a78-444f-acfc-1d12b1f10266] socks connection closed\n2025-07-19 21:43:52.454 [info] [command][349a02af-0cb5-4343-a82d-3f1b0b1d2f09] Socket close event received\n2025-07-19 21:43:52.484 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52287 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:44:52.463 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:44:52.465 [info] [command][4f8f5591-66c7-459e-821a-a3432de263c2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4f8f5591-66c7-459e-821a-a3432de263c2""}\n2025-07-19 21:44:52.466 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c46bb33b-42ae-4388-be87-6a864799dfef] received connection request\n2025-07-19 21:44:52.467 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 21:44:52.467 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:44:52.505 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c46bb33b-42ae-4388-be87-6a864799dfef] socks forwarding established\n2025-07-19 21:44:52.551 [info] [command][4f8f5591-66c7-459e-821a-a3432de263c2] Process exited with code 0\n2025-07-19 21:44:52.551 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c46bb33b-42ae-4388-be87-6a864799dfef] socks connection closed\n2025-07-19 21:44:52.551 [info] [command][4f8f5591-66c7-459e-821a-a3432de263c2] Socket close event received\n2025-07-19 21:44:52.580 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52317 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:45:52.558 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:45:52.560 [info] [command][ea927977-c9fb-48c2-aaf9-40c352500219] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ea927977-c9fb-48c2-aaf9-40c352500219""}\n2025-07-19 21:45:52.561 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][80c45870-b12b-4e5a-88bb-4d9a038c856f] received connection request\n2025-07-19 21:45:52.561 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:45:52.597 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][80c45870-b12b-4e5a-88bb-4d9a038c856f] socks forwarding established\n2025-07-19 21:45:52.643 [info] [command][ea927977-c9fb-48c2-aaf9-40c352500219] Process exited with code 0\n2025-07-19 21:45:52.643 [info] [command][ea927977-c9fb-48c2-aaf9-40c352500219] Socket close event received\n2025-07-19 21:45:52.644 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][80c45870-b12b-4e5a-88bb-4d9a038c856f] socks connection closed\n2025-07-19 21:45:52.674 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52335 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:46:52.645 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:46:52.648 [info] [command][5b060fff-430e-41b3-be6e-6ff66a3cc62b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5b060fff-430e-41b3-be6e-6ff66a3cc62b""}\n2025-07-19 21:46:52.649 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3baaafa4-1bfb-4f27-bdd8-f6065ddc8f39] received connection request\n2025-07-19 21:46:52.649 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:46:52.681 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3baaafa4-1bfb-4f27-bdd8-f6065ddc8f39] socks forwarding established\n2025-07-19 21:46:52.724 [info] [command][5b060fff-430e-41b3-be6e-6ff66a3cc62b] Process exited with code 0\n2025-07-19 21:46:52.724 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3baaafa4-1bfb-4f27-bdd8-f6065ddc8f39] socks connection closed\n2025-07-19 21:46:52.724 [info] [command][5b060fff-430e-41b3-be6e-6ff66a3cc62b] Socket close event received\n2025-07-19 21:46:52.758 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52381 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:47:52.727 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:47:52.729 [info] [command][333793ca-7ed3-4a4f-b93b-6166c980b01f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""333793ca-7ed3-4a4f-b93b-6166c980b01f""}\n2025-07-19 21:47:52.730 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3220297d-4a73-47bb-a5a5-90cc1b99f144] received connection request\n2025-07-19 21:47:52.731 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:47:52.767 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3220297d-4a73-47bb-a5a5-90cc1b99f144] socks forwarding established\n2025-07-19 21:47:52.812 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3220297d-4a73-47bb-a5a5-90cc1b99f144] socks connection closed\n2025-07-19 21:47:52.812 [info] [command][333793ca-7ed3-4a4f-b93b-6166c980b01f] Process exited with code 0\n2025-07-19 21:47:52.812 [info] [command][333793ca-7ed3-4a4f-b93b-6166c980b01f] Socket close event received\n2025-07-19 21:47:52.843 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52401 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:48:52.818 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:48:52.820 [info] [command][6f2edcca-ad6d-46d2-ac90-90abb67fbe64] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6f2edcca-ad6d-46d2-ac90-90abb67fbe64""}\n2025-07-19 21:48:52.821 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][23141f32-f160-4c27-8205-79266f3b71e5] received connection request\n2025-07-19 21:48:52.821 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:48:52.853 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][23141f32-f160-4c27-8205-79266f3b71e5] socks forwarding established\n2025-07-19 21:48:52.899 [info] [command][6f2edcca-ad6d-46d2-ac90-90abb67fbe64] Process exited with code 0\n2025-07-19 21:48:52.899 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][23141f32-f160-4c27-8205-79266f3b71e5] socks connection closed\n2025-07-19 21:48:52.899 [info] [command][6f2edcca-ad6d-46d2-ac90-90abb67fbe64] Socket close event received\n2025-07-19 21:48:52.929 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52422 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:49:52.902 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:49:52.904 [info] [command][240c56d5-fcd3-4483-9801-fa869daaf244] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""240c56d5-fcd3-4483-9801-fa869daaf244""}\n2025-07-19 21:49:52.905 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c9c75309-bb96-4f5a-bc93-b78b37128e8e] received connection request\n2025-07-19 21:49:52.905 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:49:52.938 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c9c75309-bb96-4f5a-bc93-b78b37128e8e] socks forwarding established\n2025-07-19 21:49:52.981 [info] [command][240c56d5-fcd3-4483-9801-fa869daaf244] Process exited with code 0\n2025-07-19 21:49:52.981 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c9c75309-bb96-4f5a-bc93-b78b37128e8e] socks connection closed\n2025-07-19 21:49:52.982 [info] [command][240c56d5-fcd3-4483-9801-fa869daaf244] Socket close event received\n2025-07-19 21:49:53.015 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52457 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:50:52.980 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:50:52.982 [info] [command][fb74196b-b9aa-4f66-ba8e-814594681d32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fb74196b-b9aa-4f66-ba8e-814594681d32""}\n2025-07-19 21:50:52.983 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9acdc3cc-1ad1-4a91-bfce-6e413b8e9eb4] received connection request\n2025-07-19 21:50:52.984 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:50:53.014 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9acdc3cc-1ad1-4a91-bfce-6e413b8e9eb4] socks forwarding established\n2025-07-19 21:50:53.059 [info] [command][fb74196b-b9aa-4f66-ba8e-814594681d32] Process exited with code 0\n2025-07-19 21:50:53.060 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9acdc3cc-1ad1-4a91-bfce-6e413b8e9eb4] socks connection closed\n2025-07-19 21:50:53.060 [info] [command][fb74196b-b9aa-4f66-ba8e-814594681d32] Socket close event received\n2025-07-19 21:50:53.091 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52474 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:51:53.068 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:51:53.071 [info] [command][8f92d9c9-20d2-4e56-9ffd-6899e0de806c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8f92d9c9-20d2-4e56-9ffd-6899e0de806c""}\n2025-07-19 21:51:53.072 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3b7dbb9d-624a-4ec1-af62-54abe4fef0ba] received connection request\n2025-07-19 21:51:53.072 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:51:53.106 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3b7dbb9d-624a-4ec1-af62-54abe4fef0ba] socks forwarding established\n2025-07-19 21:51:53.149 [info] [command][8f92d9c9-20d2-4e56-9ffd-6899e0de806c] Process exited with code 0\n2025-07-19 21:51:53.149 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3b7dbb9d-624a-4ec1-af62-54abe4fef0ba] socks connection closed\n2025-07-19 21:51:53.149 [info] [command][8f92d9c9-20d2-4e56-9ffd-6899e0de806c] Socket close event received\n2025-07-19 21:51:53.178 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52520 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:52:53.150 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:52:53.153 [info] [command][a83ee751-87a5-4f3d-8b7b-054f53352f70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a83ee751-87a5-4f3d-8b7b-054f53352f70""}\n2025-07-19 21:52:53.154 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f6afab1f-81eb-4c44-97e7-80917dd548d5] received connection request\n2025-07-19 21:52:53.154 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:52:53.185 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f6afab1f-81eb-4c44-97e7-80917dd548d5] socks forwarding established\n2025-07-19 21:52:53.230 [info] [command][a83ee751-87a5-4f3d-8b7b-054f53352f70] Process exited with code 0\n2025-07-19 21:52:53.230 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f6afab1f-81eb-4c44-97e7-80917dd548d5] socks connection closed\n2025-07-19 21:52:53.231 [info] [command][a83ee751-87a5-4f3d-8b7b-054f53352f70] Socket close event received\n2025-07-19 21:52:53.263 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52539 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:53:53.240 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:53:53.242 [info] [command][5c19e32c-780f-4057-99b7-c014d31d1a70] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5c19e32c-780f-4057-99b7-c014d31d1a70""}\n2025-07-19 21:53:53.243 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9532260e-b3c2-4a74-bfaa-883b2be2c541] received connection request\n2025-07-19 21:53:53.244 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:53:53.278 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9532260e-b3c2-4a74-bfaa-883b2be2c541] socks forwarding established\n2025-07-19 21:53:53.324 [info] [command][5c19e32c-780f-4057-99b7-c014d31d1a70] Process exited with code 0\n2025-07-19 21:53:53.325 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9532260e-b3c2-4a74-bfaa-883b2be2c541] socks connection closed\n2025-07-19 21:53:53.325 [info] [command][5c19e32c-780f-4057-99b7-c014d31d1a70] Socket close event received\n2025-07-19 21:53:53.355 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52561 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:54:53.335 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:54:53.337 [info] [command][d7e57cfe-168e-46dd-92d7-07d4bec99b93] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d7e57cfe-168e-46dd-92d7-07d4bec99b93""}\n2025-07-19 21:54:53.338 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][308147df-68e1-4186-964d-ddf717d8c5a5] received connection request\n2025-07-19 21:54:53.338 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:54:53.377 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][308147df-68e1-4186-964d-ddf717d8c5a5] socks forwarding established\n2025-07-19 21:54:53.418 [info] [command][d7e57cfe-168e-46dd-92d7-07d4bec99b93] Process exited with code 0\n2025-07-19 21:54:53.418 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][308147df-68e1-4186-964d-ddf717d8c5a5] socks connection closed\n2025-07-19 21:54:53.418 [info] [command][d7e57cfe-168e-46dd-92d7-07d4bec99b93] Socket close event received\n2025-07-19 21:54:53.448 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52593 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:55:53.419 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:55:53.421 [info] [command][e38da427-4dc2-4333-9f23-2cf92bf21b6a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e38da427-4dc2-4333-9f23-2cf92bf21b6a""}\n2025-07-19 21:55:53.421 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8b46be21-03db-4eda-8af6-f2add2556af4] received connection request\n2025-07-19 21:55:53.422 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:55:53.459 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8b46be21-03db-4eda-8af6-f2add2556af4] socks forwarding established\n2025-07-19 21:55:53.504 [info] [command][e38da427-4dc2-4333-9f23-2cf92bf21b6a] Process exited with code 0\n2025-07-19 21:55:53.504 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8b46be21-03db-4eda-8af6-f2add2556af4] socks connection closed\n2025-07-19 21:55:53.504 [info] [command][e38da427-4dc2-4333-9f23-2cf92bf21b6a] Socket close event received\n2025-07-19 21:55:53.533 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52614 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:56:53.506 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:56:53.508 [info] [command][9298d3e6-3c5b-4fb4-8e57-dbb5ad816be8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9298d3e6-3c5b-4fb4-8e57-dbb5ad816be8""}\n2025-07-19 21:56:53.509 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][938b796b-4472-4055-b8e9-2c2f152079e8] received connection request\n2025-07-19 21:56:53.509 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:56:53.547 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][938b796b-4472-4055-b8e9-2c2f152079e8] socks forwarding established\n2025-07-19 21:56:53.595 [info] [command][9298d3e6-3c5b-4fb4-8e57-dbb5ad816be8] Process exited with code 0\n2025-07-19 21:56:53.595 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][938b796b-4472-4055-b8e9-2c2f152079e8] socks connection closed\n2025-07-19 21:56:53.595 [info] [command][9298d3e6-3c5b-4fb4-8e57-dbb5ad816be8] Socket close event received\n2025-07-19 21:56:53.626 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52658 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:57:53.605 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:57:53.607 [info] [command][ee0a9839-4c05-45ab-ac2b-7af330e7e744] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ee0a9839-4c05-45ab-ac2b-7af330e7e744""}\n2025-07-19 21:57:53.607 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][49165c26-e7d3-4ed7-b4bf-9f04e8f76c69] received connection request\n2025-07-19 21:57:53.608 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:57:53.638 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][49165c26-e7d3-4ed7-b4bf-9f04e8f76c69] socks forwarding established\n2025-07-19 21:57:53.682 [info] [command][ee0a9839-4c05-45ab-ac2b-7af330e7e744] Process exited with code 0\n2025-07-19 21:57:53.682 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][49165c26-e7d3-4ed7-b4bf-9f04e8f76c69] socks connection closed\n2025-07-19 21:57:53.682 [info] [command][ee0a9839-4c05-45ab-ac2b-7af330e7e744] Socket close event received\n2025-07-19 21:57:53.711 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52680 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:58:53.683 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:58:53.686 [info] [command][d6a25065-f89d-4dc9-99bc-1250270afa19] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d6a25065-f89d-4dc9-99bc-1250270afa19""}\n2025-07-19 21:58:53.686 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a1db93f5-45be-44ef-b682-e102c8ebaa35] received connection request\n2025-07-19 21:58:53.687 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:58:53.722 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a1db93f5-45be-44ef-b682-e102c8ebaa35] socks forwarding established\n2025-07-19 21:58:53.767 [info] [command][d6a25065-f89d-4dc9-99bc-1250270afa19] Process exited with code 0\n2025-07-19 21:58:53.768 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a1db93f5-45be-44ef-b682-e102c8ebaa35] socks connection closed\n2025-07-19 21:58:53.768 [info] [command][d6a25065-f89d-4dc9-99bc-1250270afa19] Socket close event received\n2025-07-19 21:58:53.798 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52702 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 21:59:53.777 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 21:59:53.780 [info] [command][c0b6639d-3d2a-4f9f-a13f-f7efe62e0284] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c0b6639d-3d2a-4f9f-a13f-f7efe62e0284""}\n2025-07-19 21:59:53.780 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][be004c7f-b345-46b5-83d2-3b85dcd9e21a] received connection request\n2025-07-19 21:59:53.781 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 21:59:53.821 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][be004c7f-b345-46b5-83d2-3b85dcd9e21a] socks forwarding established\n2025-07-19 21:59:53.867 [info] [command][c0b6639d-3d2a-4f9f-a13f-f7efe62e0284] Process exited with code 0\n2025-07-19 21:59:53.867 [info] [command][c0b6639d-3d2a-4f9f-a13f-f7efe62e0284] Socket close event received\n2025-07-19 21:59:53.868 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][be004c7f-b345-46b5-83d2-3b85dcd9e21a] socks connection closed\n2025-07-19 21:59:53.897 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52734 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:00:53.878 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:00:53.879 [info] [command][9987675a-0d99-4672-b789-d20f685dc9d9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9987675a-0d99-4672-b789-d20f685dc9d9""}\n2025-07-19 22:00:53.880 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a1a39d07-23a8-4b5c-b18f-d97f707fbf0b] received connection request\n2025-07-19 22:00:53.881 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:00:53.921 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a1a39d07-23a8-4b5c-b18f-d97f707fbf0b] socks forwarding established\n2025-07-19 22:00:53.965 [info] [command][9987675a-0d99-4672-b789-d20f685dc9d9] Process exited with code 0\n2025-07-19 22:00:53.966 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a1a39d07-23a8-4b5c-b18f-d97f707fbf0b] socks connection closed\n2025-07-19 22:00:53.966 [info] [command][9987675a-0d99-4672-b789-d20f685dc9d9] Socket close event received\n2025-07-19 22:00:53.997 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52753 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:01:53.971 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:01:53.973 [info] [command][38b2dc97-1894-416e-ae0f-c7ec7f040890] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""38b2dc97-1894-416e-ae0f-c7ec7f040890""}\n2025-07-19 22:01:53.974 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d640c5c3-6596-40ca-8140-ee270cb52289] received connection request\n2025-07-19 22:01:53.975 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:01:54.012 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d640c5c3-6596-40ca-8140-ee270cb52289] socks forwarding established\n2025-07-19 22:01:54.056 [info] [command][38b2dc97-1894-416e-ae0f-c7ec7f040890] Process exited with code 0\n2025-07-19 22:01:54.056 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d640c5c3-6596-40ca-8140-ee270cb52289] socks connection closed\n2025-07-19 22:01:54.056 [info] [command][38b2dc97-1894-416e-ae0f-c7ec7f040890] Socket close event received\n2025-07-19 22:01:54.087 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52797 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:02:54.060 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:02:54.062 [info] [command][f28b29ed-16bd-4b72-947d-310de84c8263] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f28b29ed-16bd-4b72-947d-310de84c8263""}\n2025-07-19 22:02:54.063 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e52c7211-f315-4791-9f17-dd496db28458] received connection request\n2025-07-19 22:02:54.063 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:02:54.101 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e52c7211-f315-4791-9f17-dd496db28458] socks forwarding established\n2025-07-19 22:02:54.145 [info] [command][f28b29ed-16bd-4b72-947d-310de84c8263] Process exited with code 0\n2025-07-19 22:02:54.145 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e52c7211-f315-4791-9f17-dd496db28458] socks connection closed\n2025-07-19 22:02:54.145 [info] [command][f28b29ed-16bd-4b72-947d-310de84c8263] Socket close event received\n2025-07-19 22:02:54.174 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52824 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:03:54.150 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:03:54.153 [info] [command][26aefe11-a8d7-414c-974b-db92b80b3ee8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""26aefe11-a8d7-414c-974b-db92b80b3ee8""}\n2025-07-19 22:03:54.154 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d04177e9-4a5b-49ea-8e95-eb471e783a8b] received connection request\n2025-07-19 22:03:54.154 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:03:54.192 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d04177e9-4a5b-49ea-8e95-eb471e783a8b] socks forwarding established\n2025-07-19 22:03:54.238 [info] [command][26aefe11-a8d7-414c-974b-db92b80b3ee8] Process exited with code 0\n2025-07-19 22:03:54.239 [info] [command][26aefe11-a8d7-414c-974b-db92b80b3ee8] Socket close event received\n2025-07-19 22:03:54.239 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d04177e9-4a5b-49ea-8e95-eb471e783a8b] socks connection closed\n2025-07-19 22:03:54.271 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52845 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:04:54.242 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:04:54.244 [info] [command][a33de2de-82ba-463e-958e-7a02360918dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a33de2de-82ba-463e-958e-7a02360918dc""}\n2025-07-19 22:04:54.245 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6e52f7b0-d8bf-44a9-be88-816a979b34ff] received connection request\n2025-07-19 22:04:54.246 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:04:54.289 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6e52f7b0-d8bf-44a9-be88-816a979b34ff] socks forwarding established\n2025-07-19 22:04:54.328 [info] [command][a33de2de-82ba-463e-958e-7a02360918dc] Process exited with code 0\n2025-07-19 22:04:54.328 [info] [command][a33de2de-82ba-463e-958e-7a02360918dc] Socket close event received\n2025-07-19 22:04:54.330 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6e52f7b0-d8bf-44a9-be88-816a979b34ff] socks connection closed\n2025-07-19 22:04:54.360 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52882 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:05:54.337 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:05:54.338 [info] [command][fe8e0967-5e51-42d4-aa75-1ac929b7c3dc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fe8e0967-5e51-42d4-aa75-1ac929b7c3dc""}\n2025-07-19 22:05:54.339 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][33817864-7acc-4f1a-a83f-62e2eb6c11b2] received connection request\n2025-07-19 22:05:54.340 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:05:54.376 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][33817864-7acc-4f1a-a83f-62e2eb6c11b2] socks forwarding established\n2025-07-19 22:05:54.422 [info] [command][fe8e0967-5e51-42d4-aa75-1ac929b7c3dc] Process exited with code 0\n2025-07-19 22:05:54.422 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][33817864-7acc-4f1a-a83f-62e2eb6c11b2] socks connection closed\n2025-07-19 22:05:54.422 [info] [command][fe8e0967-5e51-42d4-aa75-1ac929b7c3dc] Socket close event received\n2025-07-19 22:05:54.453 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52910 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:06:54.432 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:06:54.435 [info] [command][a79a39df-2a37-47a9-af4b-2cdc07db41f4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a79a39df-2a37-47a9-af4b-2cdc07db41f4""}\n2025-07-19 22:06:54.436 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5fd893bd-dd15-4e9b-8a3f-9c7176315cc0] received connection request\n2025-07-19 22:06:54.437 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:06:54.474 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5fd893bd-dd15-4e9b-8a3f-9c7176315cc0] socks forwarding established\n2025-07-19 22:06:54.520 [info] [command][a79a39df-2a37-47a9-af4b-2cdc07db41f4] Process exited with code 0\n2025-07-19 22:06:54.520 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5fd893bd-dd15-4e9b-8a3f-9c7176315cc0] socks connection closed\n2025-07-19 22:06:54.521 [info] [command][a79a39df-2a37-47a9-af4b-2cdc07db41f4] Socket close event received\n2025-07-19 22:06:54.551 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52956 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:07:54.524 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:07:54.526 [info] [command][80cba4d3-0457-4fbd-a87f-bf92075dd8c1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""80cba4d3-0457-4fbd-a87f-bf92075dd8c1""}\n2025-07-19 22:07:54.526 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c46cce16-bad4-42ef-83e0-b9d4c7a01100] received connection request\n2025-07-19 22:07:54.527 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:07:54.567 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c46cce16-bad4-42ef-83e0-b9d4c7a01100] socks forwarding established\n2025-07-19 22:07:54.617 [info] [command][80cba4d3-0457-4fbd-a87f-bf92075dd8c1] Process exited with code 0\n2025-07-19 22:07:54.617 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c46cce16-bad4-42ef-83e0-b9d4c7a01100] socks connection closed\n2025-07-19 22:07:54.617 [info] [command][80cba4d3-0457-4fbd-a87f-bf92075dd8c1] Socket close event received\n2025-07-19 22:07:54.647 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52974 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:08:54.627 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:08:54.629 [info] [command][61226982-4e6d-43f4-a9aa-2e774b7ed4ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""61226982-4e6d-43f4-a9aa-2e774b7ed4ba""}\n2025-07-19 22:08:54.629 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][48388e70-e450-4b06-b319-9df3ba63c9d0] received connection request\n2025-07-19 22:08:54.630 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:08:54.667 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][48388e70-e450-4b06-b319-9df3ba63c9d0] socks forwarding established\n2025-07-19 22:08:54.711 [info] [command][61226982-4e6d-43f4-a9aa-2e774b7ed4ba] Process exited with code 0\n2025-07-19 22:08:54.711 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][48388e70-e450-4b06-b319-9df3ba63c9d0] socks connection closed\n2025-07-19 22:08:54.712 [info] [command][61226982-4e6d-43f4-a9aa-2e774b7ed4ba] Socket close event received\n2025-07-19 22:08:54.741 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 52991 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:09:54.721 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:09:54.723 [info] [command][5611894a-60f0-4c06-8542-bf828a17ae16] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5611894a-60f0-4c06-8542-bf828a17ae16""}\n2025-07-19 22:09:54.723 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6140ea55-b58a-4a44-b611-0ccdef50790a] received connection request\n2025-07-19 22:09:54.724 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:09:54.762 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6140ea55-b58a-4a44-b611-0ccdef50790a] socks forwarding established\n2025-07-19 22:09:54.805 [info] [command][5611894a-60f0-4c06-8542-bf828a17ae16] Process exited with code 0\n2025-07-19 22:09:54.805 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6140ea55-b58a-4a44-b611-0ccdef50790a] socks connection closed\n2025-07-19 22:09:54.805 [info] [command][5611894a-60f0-4c06-8542-bf828a17ae16] Socket close event received\n2025-07-19 22:09:54.838 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53049 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:10:54.813 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:10:54.815 [info] [command][9949ff49-3100-40bb-977b-d3f58080f8b0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9949ff49-3100-40bb-977b-d3f58080f8b0""}\n2025-07-19 22:10:54.816 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ed0f90a5-8fbb-405e-a06a-c5a47a76f215] received connection request\n2025-07-19 22:10:54.816 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:10:54.846 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed0f90a5-8fbb-405e-a06a-c5a47a76f215] socks forwarding established\n2025-07-19 22:10:54.895 [info] [command][9949ff49-3100-40bb-977b-d3f58080f8b0] Process exited with code 0\n2025-07-19 22:10:54.896 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed0f90a5-8fbb-405e-a06a-c5a47a76f215] socks connection closed\n2025-07-19 22:10:54.896 [info] [command][9949ff49-3100-40bb-977b-d3f58080f8b0] Socket close event received\n2025-07-19 22:10:54.926 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53072 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:11:54.906 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:11:54.908 [info] [command][06993b9d-a2c4-471f-9784-31d8282a704a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""06993b9d-a2c4-471f-9784-31d8282a704a""}\n2025-07-19 22:11:54.909 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d3bee535-f5da-4bf7-8935-e1aac964dfb9] received connection request\n2025-07-19 22:11:54.910 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:11:54.945 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d3bee535-f5da-4bf7-8935-e1aac964dfb9] socks forwarding established\n2025-07-19 22:11:54.992 [info] [command][06993b9d-a2c4-471f-9784-31d8282a704a] Process exited with code 0\n2025-07-19 22:11:54.992 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d3bee535-f5da-4bf7-8935-e1aac964dfb9] socks connection closed\n2025-07-19 22:11:54.993 [info] [command][06993b9d-a2c4-471f-9784-31d8282a704a] Socket close event received\n2025-07-19 22:11:55.023 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53118 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:12:54.994 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:12:54.997 [info] [command][9a019d65-5787-4612-b215-3cc97821c780] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9a019d65-5787-4612-b215-3cc97821c780""}\n2025-07-19 22:12:54.998 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e7e8e2a2-3c70-416c-9d26-dcba3e1bde68] received connection request\n2025-07-19 22:12:54.998 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:12:55.034 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e7e8e2a2-3c70-416c-9d26-dcba3e1bde68] socks forwarding established\n2025-07-19 22:12:55.081 [info] [command][9a019d65-5787-4612-b215-3cc97821c780] Process exited with code 0\n2025-07-19 22:12:55.081 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e7e8e2a2-3c70-416c-9d26-dcba3e1bde68] socks connection closed\n2025-07-19 22:12:55.081 [info] [command][9a019d65-5787-4612-b215-3cc97821c780] Socket close event received\n2025-07-19 22:12:55.111 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53138 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:13:55.085 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:13:55.087 [info] [command][af0dbc9d-454f-4d66-b777-ad32babb12d0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""af0dbc9d-454f-4d66-b777-ad32babb12d0""}\n2025-07-19 22:13:55.088 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][015602ee-60f3-4bcd-9e12-6e3b25af2cd5] received connection request\n2025-07-19 22:13:55.088 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:13:55.119 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][015602ee-60f3-4bcd-9e12-6e3b25af2cd5] socks forwarding established\n2025-07-19 22:13:55.165 [info] [command][af0dbc9d-454f-4d66-b777-ad32babb12d0] Process exited with code 0\n2025-07-19 22:13:55.166 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][015602ee-60f3-4bcd-9e12-6e3b25af2cd5] socks connection closed\n2025-07-19 22:13:55.166 [info] [command][af0dbc9d-454f-4d66-b777-ad32babb12d0] Socket close event received\n2025-07-19 22:13:55.197 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53156 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:14:55.176 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:14:55.178 [info] [command][29cbc9b6-9ac3-44b9-8915-8c0da5ed472f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""29cbc9b6-9ac3-44b9-8915-8c0da5ed472f""}\n2025-07-19 22:14:55.179 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f6030324-9695-43d6-8a44-8cd88c8f6b9e] received connection request\n2025-07-19 22:14:55.180 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:14:55.211 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f6030324-9695-43d6-8a44-8cd88c8f6b9e] socks forwarding established\n2025-07-19 22:14:55.257 [info] [command][29cbc9b6-9ac3-44b9-8915-8c0da5ed472f] Process exited with code 0\n2025-07-19 22:14:55.258 [info] [command][29cbc9b6-9ac3-44b9-8915-8c0da5ed472f] Socket close event received\n2025-07-19 22:14:55.259 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f6030324-9695-43d6-8a44-8cd88c8f6b9e] socks connection closed\n2025-07-19 22:14:55.292 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53189 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:15:55.267 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:15:55.270 [info] [command][2b0e694b-4122-4afa-9343-cb6394dbb15d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2b0e694b-4122-4afa-9343-cb6394dbb15d""}\n2025-07-19 22:15:55.270 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e83144e5-13f5-42f4-9a68-f9abdd84d695] received connection request\n2025-07-19 22:15:55.271 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:15:55.302 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e83144e5-13f5-42f4-9a68-f9abdd84d695] socks forwarding established\n2025-07-19 22:15:55.346 [info] [command][2b0e694b-4122-4afa-9343-cb6394dbb15d] Process exited with code 0\n2025-07-19 22:15:55.346 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e83144e5-13f5-42f4-9a68-f9abdd84d695] socks connection closed\n2025-07-19 22:15:55.346 [info] [command][2b0e694b-4122-4afa-9343-cb6394dbb15d] Socket close event received\n2025-07-19 22:15:55.375 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53209 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:16:55.355 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:16:55.356 [info] [command][697bf693-65cd-4e80-b13b-d22567dc1f23] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""697bf693-65cd-4e80-b13b-d22567dc1f23""}\n2025-07-19 22:16:55.357 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][840857c9-015e-408d-b8d6-c4e0c5dc9594] received connection request\n2025-07-19 22:16:55.358 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:16:55.391 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][840857c9-015e-408d-b8d6-c4e0c5dc9594] socks forwarding established\n2025-07-19 22:16:55.436 [info] [command][697bf693-65cd-4e80-b13b-d22567dc1f23] Process exited with code 0\n2025-07-19 22:16:55.436 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][840857c9-015e-408d-b8d6-c4e0c5dc9594] socks connection closed\n2025-07-19 22:16:55.436 [info] [command][697bf693-65cd-4e80-b13b-d22567dc1f23] Socket close event received\n2025-07-19 22:16:55.465 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53261 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:17:55.446 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:17:55.448 [info] [command][7b311284-eb21-4ac9-a1ea-29aa2e9c4fd0] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7b311284-eb21-4ac9-a1ea-29aa2e9c4fd0""}\n2025-07-19 22:17:55.449 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7d0c6537-f05e-4d00-9750-51ec24e22ad2] received connection request\n2025-07-19 22:17:55.450 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:17:55.483 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7d0c6537-f05e-4d00-9750-51ec24e22ad2] socks forwarding established\n2025-07-19 22:17:55.536 [info] [command][7b311284-eb21-4ac9-a1ea-29aa2e9c4fd0] Process exited with code 0\n2025-07-19 22:17:55.536 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7d0c6537-f05e-4d00-9750-51ec24e22ad2] socks connection closed\n2025-07-19 22:17:55.536 [info] [command][7b311284-eb21-4ac9-a1ea-29aa2e9c4fd0] Socket close event received\n2025-07-19 22:17:55.572 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53279 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:18:55.536 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:18:55.538 [info] [command][2ed0dd0c-8486-4abd-9be0-9c00279a7a20] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2ed0dd0c-8486-4abd-9be0-9c00279a7a20""}\n2025-07-19 22:18:55.539 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a5c57068-6d85-48ae-baaa-ea81a4c59dc3] received connection request\n2025-07-19 22:18:55.539 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:18:55.578 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a5c57068-6d85-48ae-baaa-ea81a4c59dc3] socks forwarding established\n2025-07-19 22:18:55.621 [info] [command][2ed0dd0c-8486-4abd-9be0-9c00279a7a20] Process exited with code 0\n2025-07-19 22:18:55.622 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a5c57068-6d85-48ae-baaa-ea81a4c59dc3] socks connection closed\n2025-07-19 22:18:55.622 [info] [command][2ed0dd0c-8486-4abd-9be0-9c00279a7a20] Socket close event received\n2025-07-19 22:18:55.651 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53297 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:19:55.622 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:19:55.625 [info] [command][e26999f3-5f59-4131-a53d-76ecc5e19d62] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e26999f3-5f59-4131-a53d-76ecc5e19d62""}\n2025-07-19 22:19:55.626 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][71345df1-7cd4-4db2-9d52-0285ce8279e1] received connection request\n2025-07-19 22:19:55.627 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:19:55.662 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][71345df1-7cd4-4db2-9d52-0285ce8279e1] socks forwarding established\n2025-07-19 22:19:55.706 [info] [command][e26999f3-5f59-4131-a53d-76ecc5e19d62] Process exited with code 0\n2025-07-19 22:19:55.707 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][71345df1-7cd4-4db2-9d52-0285ce8279e1] socks connection closed\n2025-07-19 22:19:55.707 [info] [command][e26999f3-5f59-4131-a53d-76ecc5e19d62] Socket close event received\n2025-07-19 22:19:55.739 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53335 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:20:55.716 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:20:55.719 [info] [command][810d7361-1a66-4b33-a550-abb9f05a2766] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""810d7361-1a66-4b33-a550-abb9f05a2766""}\n2025-07-19 22:20:55.719 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][92f1f963-6d2e-420b-be23-2c82afbd1793] received connection request\n2025-07-19 22:20:55.720 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:20:55.753 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][92f1f963-6d2e-420b-be23-2c82afbd1793] socks forwarding established\n2025-07-19 22:20:55.795 [info] [command][810d7361-1a66-4b33-a550-abb9f05a2766] Process exited with code 0\n2025-07-19 22:20:55.795 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][92f1f963-6d2e-420b-be23-2c82afbd1793] socks connection closed\n2025-07-19 22:20:55.795 [info] [command][810d7361-1a66-4b33-a550-abb9f05a2766] Socket close event received\n2025-07-19 22:20:55.826 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53353 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:21:55.806 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:21:55.808 [info] [command][28f753a7-b89e-48eb-8872-2bb119e8fa74] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""28f753a7-b89e-48eb-8872-2bb119e8fa74""}\n2025-07-19 22:21:55.809 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][70c64214-8800-4aba-a4e3-bbe997cc7ee3] received connection request\n2025-07-19 22:21:55.810 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:21:55.847 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][70c64214-8800-4aba-a4e3-bbe997cc7ee3] socks forwarding established\n2025-07-19 22:21:55.890 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][70c64214-8800-4aba-a4e3-bbe997cc7ee3] socks connection closed\n2025-07-19 22:21:55.890 [info] [command][28f753a7-b89e-48eb-8872-2bb119e8fa74] Process exited with code 0\n2025-07-19 22:21:55.890 [info] [command][28f753a7-b89e-48eb-8872-2bb119e8fa74] Socket close event received\n2025-07-19 22:21:55.920 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53403 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:22:55.890 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:22:55.892 [info] [command][feb7d1af-572d-4fca-bef7-0194e81d81d4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""feb7d1af-572d-4fca-bef7-0194e81d81d4""}\n2025-07-19 22:22:55.892 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f954a0be-7e72-4610-aee7-e14dfc14389a] received connection request\n2025-07-19 22:22:55.893 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:22:55.929 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f954a0be-7e72-4610-aee7-e14dfc14389a] socks forwarding established\n2025-07-19 22:22:55.973 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f954a0be-7e72-4610-aee7-e14dfc14389a] socks connection closed\n2025-07-19 22:22:55.973 [info] [command][feb7d1af-572d-4fca-bef7-0194e81d81d4] Process exited with code 0\n2025-07-19 22:22:55.973 [info] [command][feb7d1af-572d-4fca-bef7-0194e81d81d4] Socket close event received\n2025-07-19 22:22:56.004 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53424 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:23:55.978 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:23:55.980 [info] [command][860cf956-0ff3-4106-8a57-aec6b3b2d0c9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""860cf956-0ff3-4106-8a57-aec6b3b2d0c9""}\n2025-07-19 22:23:55.981 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][53fcee8d-78da-4a20-aeef-0191f451071c] received connection request\n2025-07-19 22:23:55.981 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:23:56.019 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][53fcee8d-78da-4a20-aeef-0191f451071c] socks forwarding established\n2025-07-19 22:23:56.063 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][53fcee8d-78da-4a20-aeef-0191f451071c] socks connection closed\n2025-07-19 22:23:56.063 [info] [command][860cf956-0ff3-4106-8a57-aec6b3b2d0c9] Process exited with code 0\n2025-07-19 22:23:56.063 [info] [command][860cf956-0ff3-4106-8a57-aec6b3b2d0c9] Socket close event received\n2025-07-19 22:23:56.093 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53443 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:24:56.069 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:24:56.072 [info] [command][b3959cba-a5ed-4e63-97c1-26f2e8a953c3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b3959cba-a5ed-4e63-97c1-26f2e8a953c3""}\n2025-07-19 22:24:56.072 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9290ba8f-7387-4acc-a1af-968791e8f68c] received connection request\n2025-07-19 22:24:56.073 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:24:56.108 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9290ba8f-7387-4acc-a1af-968791e8f68c] socks forwarding established\n2025-07-19 22:24:56.148 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9290ba8f-7387-4acc-a1af-968791e8f68c] socks connection closed\n2025-07-19 22:24:56.148 [info] [command][b3959cba-a5ed-4e63-97c1-26f2e8a953c3] Process exited with code 0\n2025-07-19 22:24:56.148 [info] [command][b3959cba-a5ed-4e63-97c1-26f2e8a953c3] Socket close event received\n2025-07-19 22:24:56.178 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53472 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:25:56.159 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:25:56.161 [info] [command][0ffccbe0-2c0e-4222-88d7-59b61b3674b6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0ffccbe0-2c0e-4222-88d7-59b61b3674b6""}\n2025-07-19 22:25:56.161 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][bc196202-9f91-40b9-b421-14fdb77e4445] received connection request\n2025-07-19 22:25:56.162 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:25:56.197 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bc196202-9f91-40b9-b421-14fdb77e4445] socks forwarding established\n2025-07-19 22:25:56.242 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][bc196202-9f91-40b9-b421-14fdb77e4445] socks connection closed\n2025-07-19 22:25:56.242 [info] [command][0ffccbe0-2c0e-4222-88d7-59b61b3674b6] Process exited with code 0\n2025-07-19 22:25:56.242 [info] [command][0ffccbe0-2c0e-4222-88d7-59b61b3674b6] Socket close event received\n2025-07-19 22:25:56.271 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53494 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:26:56.251 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:26:56.253 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5ee82948-3365-43dd-bfcf-cb47a07db861] received connection request\n2025-07-19 22:26:56.253 [info] [command][81dd4e93-f497-400d-a318-395d0ed065eb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""81dd4e93-f497-400d-a318-395d0ed065eb""}\n2025-07-19 22:26:56.254 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 22:26:56.254 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:26:56.285 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5ee82948-3365-43dd-bfcf-cb47a07db861] socks forwarding established\n2025-07-19 22:26:56.330 [info] [command][81dd4e93-f497-400d-a318-395d0ed065eb] Process exited with code 0\n2025-07-19 22:26:56.330 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5ee82948-3365-43dd-bfcf-cb47a07db861] socks connection closed\n2025-07-19 22:26:56.330 [info] [command][81dd4e93-f497-400d-a318-395d0ed065eb] Socket close event received\n2025-07-19 22:26:56.360 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53539 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:27:56.334 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:27:56.336 [info] [command][f0f13e53-74dd-484d-b1e9-e1961795136a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f0f13e53-74dd-484d-b1e9-e1961795136a""}\n2025-07-19 22:27:56.336 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4e4064c3-6428-44f5-9923-4b8622d12c41] received connection request\n2025-07-19 22:27:56.336 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 22:27:56.336 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:27:56.370 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4e4064c3-6428-44f5-9923-4b8622d12c41] socks forwarding established\n2025-07-19 22:27:56.413 [info] [command][f0f13e53-74dd-484d-b1e9-e1961795136a] Process exited with code 0\n2025-07-19 22:27:56.413 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4e4064c3-6428-44f5-9923-4b8622d12c41] socks connection closed\n2025-07-19 22:27:56.413 [info] [command][f0f13e53-74dd-484d-b1e9-e1961795136a] Socket close event received\n2025-07-19 22:27:56.444 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53561 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:28:56.421 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:28:56.422 [info] [command][240dcdd6-230f-4db1-952a-4a335f6e0d96] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""240dcdd6-230f-4db1-952a-4a335f6e0d96""}\n2025-07-19 22:28:56.422 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][18c34c28-755e-43c3-9a15-ada0ecb26140] received connection request\n2025-07-19 22:28:56.423 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:28:56.452 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][18c34c28-755e-43c3-9a15-ada0ecb26140] socks forwarding established\n2025-07-19 22:28:56.495 [info] [command][240dcdd6-230f-4db1-952a-4a335f6e0d96] Process exited with code 0\n2025-07-19 22:28:56.496 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][18c34c28-755e-43c3-9a15-ada0ecb26140] socks connection closed\n2025-07-19 22:28:56.496 [info] [command][240dcdd6-230f-4db1-952a-4a335f6e0d96] Socket close event received\n2025-07-19 22:28:56.526 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53579 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:29:56.505 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:29:56.506 [info] [command][edb449fc-afcb-406d-b4ec-f84e03d19d87] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""edb449fc-afcb-406d-b4ec-f84e03d19d87""}\n2025-07-19 22:29:56.507 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3ccf746d-9152-47bd-8388-b24b30bf1dc0] received connection request\n2025-07-19 22:29:56.507 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:29:56.542 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3ccf746d-9152-47bd-8388-b24b30bf1dc0] socks forwarding established\n2025-07-19 22:29:56.589 [info] [command][edb449fc-afcb-406d-b4ec-f84e03d19d87] Process exited with code 0\n2025-07-19 22:29:56.589 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3ccf746d-9152-47bd-8388-b24b30bf1dc0] socks connection closed\n2025-07-19 22:29:56.589 [info] [command][edb449fc-afcb-406d-b4ec-f84e03d19d87] Socket close event received\n2025-07-19 22:29:56.618 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53612 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:30:56.594 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:30:56.595 [info] [command][eeff952d-4930-4edf-9899-4fb400183a32] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""eeff952d-4930-4edf-9899-4fb400183a32""}\n2025-07-19 22:30:56.595 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][216fbbc3-89ef-4ef3-a0ba-b85c65f4e881] received connection request\n2025-07-19 22:30:56.596 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:30:56.628 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][216fbbc3-89ef-4ef3-a0ba-b85c65f4e881] socks forwarding established\n2025-07-19 22:30:56.674 [info] [command][eeff952d-4930-4edf-9899-4fb400183a32] Process exited with code 0\n2025-07-19 22:30:56.675 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][216fbbc3-89ef-4ef3-a0ba-b85c65f4e881] socks connection closed\n2025-07-19 22:30:56.675 [info] [command][eeff952d-4930-4edf-9899-4fb400183a32] Socket close event received\n2025-07-19 22:30:56.707 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53631 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:31:56.683 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:31:56.684 [info] [command][d3cfba0c-ad0d-4c66-ba6b-0a012aa3ae1c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d3cfba0c-ad0d-4c66-ba6b-0a012aa3ae1c""}\n2025-07-19 22:31:56.684 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][41a642f2-a4f2-409c-a445-db3554e43b4d] received connection request\n2025-07-19 22:31:56.684 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:31:56.721 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][41a642f2-a4f2-409c-a445-db3554e43b4d] socks forwarding established\n2025-07-19 22:31:56.767 [info] [command][d3cfba0c-ad0d-4c66-ba6b-0a012aa3ae1c] Process exited with code 0\n2025-07-19 22:31:56.767 [info] [command][d3cfba0c-ad0d-4c66-ba6b-0a012aa3ae1c] Socket close event received\n2025-07-19 22:31:56.768 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][41a642f2-a4f2-409c-a445-db3554e43b4d] socks connection closed\n2025-07-19 22:31:56.800 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53679 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:32:56.776 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:32:56.777 [info] [command][f8732863-375f-4bac-bf06-578b8095a0af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f8732863-375f-4bac-bf06-578b8095a0af""}\n2025-07-19 22:32:56.777 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][615234ef-0a70-468c-8420-0f5abe15ec02] received connection request\n2025-07-19 22:32:56.777 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:32:56.810 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][615234ef-0a70-468c-8420-0f5abe15ec02] socks forwarding established\n2025-07-19 22:32:56.854 [info] [command][f8732863-375f-4bac-bf06-578b8095a0af] Process exited with code 0\n2025-07-19 22:32:56.855 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][615234ef-0a70-468c-8420-0f5abe15ec02] socks connection closed\n2025-07-19 22:32:56.855 [info] [command][f8732863-375f-4bac-bf06-578b8095a0af] Socket close event received\n2025-07-19 22:32:56.885 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53700 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:33:56.854 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:33:56.856 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c8f1fa5d-ac1c-4dc7-bcd6-331dfe774e5a] received connection request\n2025-07-19 22:33:56.856 [info] [command][16dd0746-5928-4265-8362-e5ab6ec582f2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""16dd0746-5928-4265-8362-e5ab6ec582f2""}\n2025-07-19 22:33:56.856 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:33:56.886 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c8f1fa5d-ac1c-4dc7-bcd6-331dfe774e5a] socks forwarding established\n2025-07-19 22:33:56.934 [info] [command][16dd0746-5928-4265-8362-e5ab6ec582f2] Process exited with code 0\n2025-07-19 22:33:56.934 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c8f1fa5d-ac1c-4dc7-bcd6-331dfe774e5a] socks connection closed\n2025-07-19 22:33:56.934 [info] [command][16dd0746-5928-4265-8362-e5ab6ec582f2] Socket close event received\n2025-07-19 22:33:56.963 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53722 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:34:56.940 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:34:56.941 [info] [command][3e63e4e4-d11d-4a8a-af48-d2e49e0c2954] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3e63e4e4-d11d-4a8a-af48-d2e49e0c2954""}\n2025-07-19 22:34:56.942 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f97fd598-f5ab-4882-a106-b09cadfb6c96] received connection request\n2025-07-19 22:34:56.942 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:34:56.975 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f97fd598-f5ab-4882-a106-b09cadfb6c96] socks forwarding established\n2025-07-19 22:34:57.018 [info] [command][3e63e4e4-d11d-4a8a-af48-d2e49e0c2954] Process exited with code 0\n2025-07-19 22:34:57.019 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f97fd598-f5ab-4882-a106-b09cadfb6c96] socks connection closed\n2025-07-19 22:34:57.019 [info] [command][3e63e4e4-d11d-4a8a-af48-d2e49e0c2954] Socket close event received\n2025-07-19 22:34:57.049 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53753 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:35:57.028 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:35:57.029 [info] [command][f2874263-0e31-42e3-a1a9-d9cb02a9f99d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f2874263-0e31-42e3-a1a9-d9cb02a9f99d""}\n2025-07-19 22:35:57.030 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][201e7c17-87e3-442a-b4e7-49e355ee82b9] received connection request\n2025-07-19 22:35:57.030 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:35:57.070 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][201e7c17-87e3-442a-b4e7-49e355ee82b9] socks forwarding established\n2025-07-19 22:35:57.117 [info] [command][f2874263-0e31-42e3-a1a9-d9cb02a9f99d] Process exited with code 0\n2025-07-19 22:35:57.117 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][201e7c17-87e3-442a-b4e7-49e355ee82b9] socks connection closed\n2025-07-19 22:35:57.117 [info] [command][f2874263-0e31-42e3-a1a9-d9cb02a9f99d] Socket close event received\n2025-07-19 22:35:57.148 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53772 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:36:57.125 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:36:57.127 [info] [command][71f6cea1-157a-4462-a136-eae0028d604a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""71f6cea1-157a-4462-a136-eae0028d604a""}\n2025-07-19 22:36:57.128 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f8d6d8ce-dbff-4397-ba40-e7caa8cca2ef] received connection request\n2025-07-19 22:36:57.129 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:36:57.166 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f8d6d8ce-dbff-4397-ba40-e7caa8cca2ef] socks forwarding established\n2025-07-19 22:36:57.215 [info] [command][71f6cea1-157a-4462-a136-eae0028d604a] Process exited with code 0\n2025-07-19 22:36:57.215 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f8d6d8ce-dbff-4397-ba40-e7caa8cca2ef] socks connection closed\n2025-07-19 22:36:57.215 [info] [command][71f6cea1-157a-4462-a136-eae0028d604a] Socket close event received\n2025-07-19 22:36:57.244 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53817 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:37:57.226 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:37:57.227 [info] [command][e46e9e50-9296-4289-a1f9-b1ef8a1fe79f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e46e9e50-9296-4289-a1f9-b1ef8a1fe79f""}\n2025-07-19 22:37:57.229 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7936a5f6-d677-4911-a0c7-a6fc3275bda7] received connection request\n2025-07-19 22:37:57.229 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:37:57.261 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7936a5f6-d677-4911-a0c7-a6fc3275bda7] socks forwarding established\n2025-07-19 22:37:57.309 [info] [command][e46e9e50-9296-4289-a1f9-b1ef8a1fe79f] Process exited with code 0\n2025-07-19 22:37:57.309 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7936a5f6-d677-4911-a0c7-a6fc3275bda7] socks connection closed\n2025-07-19 22:37:57.309 [info] [command][e46e9e50-9296-4289-a1f9-b1ef8a1fe79f] Socket close event received\n2025-07-19 22:37:57.342 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53840 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:38:57.317 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:38:57.318 [info] [command][5ffa9965-3fde-417a-8695-3f504788cf2a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5ffa9965-3fde-417a-8695-3f504788cf2a""}\n2025-07-19 22:38:57.319 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][76db0401-25f7-4063-9c9b-5d96c97f7854] received connection request\n2025-07-19 22:38:57.320 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:38:57.351 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][76db0401-25f7-4063-9c9b-5d96c97f7854] socks forwarding established\n2025-07-19 22:38:57.395 [info] [command][5ffa9965-3fde-417a-8695-3f504788cf2a] Process exited with code 0\n2025-07-19 22:38:57.396 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][76db0401-25f7-4063-9c9b-5d96c97f7854] socks connection closed\n2025-07-19 22:38:57.396 [info] [command][5ffa9965-3fde-417a-8695-3f504788cf2a] Socket close event received\n2025-07-19 22:38:57.426 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53858 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:39:57.406 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:39:57.408 [info] [command][614e03ef-8c8e-428e-8cd3-c824631f1fe5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""614e03ef-8c8e-428e-8cd3-c824631f1fe5""}\n2025-07-19 22:39:57.409 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ed33b101-92d3-4618-9cca-bf6856eaee52] received connection request\n2025-07-19 22:39:57.409 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:39:57.441 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed33b101-92d3-4618-9cca-bf6856eaee52] socks forwarding established\n2025-07-19 22:39:57.486 [info] [command][614e03ef-8c8e-428e-8cd3-c824631f1fe5] Process exited with code 0\n2025-07-19 22:39:57.486 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed33b101-92d3-4618-9cca-bf6856eaee52] socks connection closed\n2025-07-19 22:39:57.487 [info] [command][614e03ef-8c8e-428e-8cd3-c824631f1fe5] Socket close event received\n2025-07-19 22:39:57.517 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53889 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:40:57.488 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:40:57.490 [info] [command][1662365e-35f5-4338-b94c-62a8459fbb99] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1662365e-35f5-4338-b94c-62a8459fbb99""}\n2025-07-19 22:40:57.490 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7a167198-b468-4f45-96e6-797efe96fd51] received connection request\n2025-07-19 22:40:57.491 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:40:57.523 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7a167198-b468-4f45-96e6-797efe96fd51] socks forwarding established\n2025-07-19 22:40:57.566 [info] [command][1662365e-35f5-4338-b94c-62a8459fbb99] Process exited with code 0\n2025-07-19 22:40:57.566 [info] [command][1662365e-35f5-4338-b94c-62a8459fbb99] Socket close event received\n2025-07-19 22:40:57.567 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7a167198-b468-4f45-96e6-797efe96fd51] socks connection closed\n2025-07-19 22:40:57.598 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53909 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:41:57.574 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:41:57.577 [info] [command][c6e0494a-1c97-4ce7-b9a9-40c641fdb0a5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c6e0494a-1c97-4ce7-b9a9-40c641fdb0a5""}\n2025-07-19 22:41:57.578 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c93ec19f-ebb5-4e7c-9ddb-00757dbdc3fa] received connection request\n2025-07-19 22:41:57.578 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 22:41:57.578 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:41:57.611 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c93ec19f-ebb5-4e7c-9ddb-00757dbdc3fa] socks forwarding established\n2025-07-19 22:41:57.658 [info] [command][c6e0494a-1c97-4ce7-b9a9-40c641fdb0a5] Process exited with code 0\n2025-07-19 22:41:57.659 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c93ec19f-ebb5-4e7c-9ddb-00757dbdc3fa] socks connection closed\n2025-07-19 22:41:57.659 [info] [command][c6e0494a-1c97-4ce7-b9a9-40c641fdb0a5] Socket close event received\n2025-07-19 22:41:57.693 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53956 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:42:57.664 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:42:57.666 [info] [command][d96ff436-8aaf-43cd-b5c6-e187ee1e6714] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d96ff436-8aaf-43cd-b5c6-e187ee1e6714""}\n2025-07-19 22:42:57.666 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1a7ed36c-cc9a-4b96-a33d-9cfe611657fa] received connection request\n2025-07-19 22:42:57.667 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:42:57.704 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1a7ed36c-cc9a-4b96-a33d-9cfe611657fa] socks forwarding established\n2025-07-19 22:42:57.749 [info] [command][d96ff436-8aaf-43cd-b5c6-e187ee1e6714] Process exited with code 0\n2025-07-19 22:42:57.750 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1a7ed36c-cc9a-4b96-a33d-9cfe611657fa] socks connection closed\n2025-07-19 22:42:57.750 [info] [command][d96ff436-8aaf-43cd-b5c6-e187ee1e6714] Socket close event received\n2025-07-19 22:42:57.783 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 53995 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:43:57.752 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:43:57.754 [info] [command][57d3e5cf-4473-4efa-aa8f-bedccf3ea75c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""57d3e5cf-4473-4efa-aa8f-bedccf3ea75c""}\n2025-07-19 22:43:57.755 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][67ab1014-73af-42e2-9f26-f9eee508820d] received connection request\n2025-07-19 22:43:57.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:43:57.787 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][67ab1014-73af-42e2-9f26-f9eee508820d] socks forwarding established\n2025-07-19 22:43:57.832 [info] [command][57d3e5cf-4473-4efa-aa8f-bedccf3ea75c] Process exited with code 0\n2025-07-19 22:43:57.832 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][67ab1014-73af-42e2-9f26-f9eee508820d] socks connection closed\n2025-07-19 22:43:57.832 [info] [command][57d3e5cf-4473-4efa-aa8f-bedccf3ea75c] Socket close event received\n2025-07-19 22:43:57.862 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54015 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:44:57.836 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:44:57.838 [info] [command][48c5f2f8-1981-4a1d-a41f-67fb1ae85b66] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""48c5f2f8-1981-4a1d-a41f-67fb1ae85b66""}\n2025-07-19 22:44:57.839 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][165de6f1-194c-42fd-844d-dcac00554d50] received connection request\n2025-07-19 22:44:57.839 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:44:57.872 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][165de6f1-194c-42fd-844d-dcac00554d50] socks forwarding established\n2025-07-19 22:44:57.918 [info] [command][48c5f2f8-1981-4a1d-a41f-67fb1ae85b66] Process exited with code 0\n2025-07-19 22:44:57.918 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][165de6f1-194c-42fd-844d-dcac00554d50] socks connection closed\n2025-07-19 22:44:57.918 [info] [command][48c5f2f8-1981-4a1d-a41f-67fb1ae85b66] Socket close event received\n2025-07-19 22:44:57.948 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54046 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:45:57.922 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:45:57.925 [info] [command][3f987b45-8256-4420-9322-720beebb9726] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3f987b45-8256-4420-9322-720beebb9726""}\n2025-07-19 22:45:57.926 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][051c602c-8f56-4316-b013-6c520cd488a6] received connection request\n2025-07-19 22:45:57.926 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:45:57.958 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][051c602c-8f56-4316-b013-6c520cd488a6] socks forwarding established\n2025-07-19 22:45:58.003 [info] [command][3f987b45-8256-4420-9322-720beebb9726] Process exited with code 0\n2025-07-19 22:45:58.004 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][051c602c-8f56-4316-b013-6c520cd488a6] socks connection closed\n2025-07-19 22:45:58.004 [info] [command][3f987b45-8256-4420-9322-720beebb9726] Socket close event received\n2025-07-19 22:45:58.033 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54066 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:46:58.004 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:46:58.006 [info] [command][0c2a60ba-218c-442c-aeb9-4ce32365f8f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0c2a60ba-218c-442c-aeb9-4ce32365f8f7""}\n2025-07-19 22:46:58.006 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][da6cef4a-5e9f-4385-9304-bbf79694a851] received connection request\n2025-07-19 22:46:58.007 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:46:58.040 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][da6cef4a-5e9f-4385-9304-bbf79694a851] socks forwarding established\n2025-07-19 22:46:58.089 [info] [command][0c2a60ba-218c-442c-aeb9-4ce32365f8f7] Process exited with code 0\n2025-07-19 22:46:58.090 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][da6cef4a-5e9f-4385-9304-bbf79694a851] socks connection closed\n2025-07-19 22:46:58.091 [info] [command][0c2a60ba-218c-442c-aeb9-4ce32365f8f7] Socket close event received\n2025-07-19 22:46:58.122 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54112 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:47:58.093 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:47:58.095 [info] [command][d95934ae-341f-4cd6-9ae6-94c415ecda7c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d95934ae-341f-4cd6-9ae6-94c415ecda7c""}\n2025-07-19 22:47:58.096 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][fca57406-021f-4755-bd9a-c83db955c057] received connection request\n2025-07-19 22:47:58.096 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:47:58.128 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fca57406-021f-4755-bd9a-c83db955c057] socks forwarding established\n2025-07-19 22:47:58.169 [info] [command][d95934ae-341f-4cd6-9ae6-94c415ecda7c] Process exited with code 0\n2025-07-19 22:47:58.170 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][fca57406-021f-4755-bd9a-c83db955c057] socks connection closed\n2025-07-19 22:47:58.170 [info] [command][d95934ae-341f-4cd6-9ae6-94c415ecda7c] Socket close event received\n2025-07-19 22:47:58.199 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54132 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:48:58.177 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:48:58.179 [info] [command][83cfd0a6-fc19-4020-8212-ff633d5dff1f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""83cfd0a6-fc19-4020-8212-ff633d5dff1f""}\n2025-07-19 22:48:58.180 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][afecb764-0636-4c22-9133-75de679e2523] received connection request\n2025-07-19 22:48:58.180 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:48:58.215 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][afecb764-0636-4c22-9133-75de679e2523] socks forwarding established\n2025-07-19 22:48:58.261 [info] [command][83cfd0a6-fc19-4020-8212-ff633d5dff1f] Process exited with code 0\n2025-07-19 22:48:58.262 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][afecb764-0636-4c22-9133-75de679e2523] socks connection closed\n2025-07-19 22:48:58.262 [info] [command][83cfd0a6-fc19-4020-8212-ff633d5dff1f] Socket close event received\n2025-07-19 22:48:58.291 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54151 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:49:58.269 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:49:58.270 [info] [command][59e5b84f-b3de-4590-86b3-7e38d9c1cc79] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""59e5b84f-b3de-4590-86b3-7e38d9c1cc79""}\n2025-07-19 22:49:58.271 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4d40ad8b-a531-48b3-bb6c-a55f758a718c] received connection request\n2025-07-19 22:49:58.272 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:49:58.305 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4d40ad8b-a531-48b3-bb6c-a55f758a718c] socks forwarding established\n2025-07-19 22:49:58.351 [info] [command][59e5b84f-b3de-4590-86b3-7e38d9c1cc79] Process exited with code 0\n2025-07-19 22:49:58.351 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4d40ad8b-a531-48b3-bb6c-a55f758a718c] socks connection closed\n2025-07-19 22:49:58.351 [info] [command][59e5b84f-b3de-4590-86b3-7e38d9c1cc79] Socket close event received\n2025-07-19 22:49:58.385 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54189 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:50:58.358 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:50:58.360 [info] [command][ec64af36-6b15-4fc5-b03e-a740f2d15886] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ec64af36-6b15-4fc5-b03e-a740f2d15886""}\n2025-07-19 22:50:58.361 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][677d29ec-666a-4e0c-875f-55e1a12a67c4] received connection request\n2025-07-19 22:50:58.361 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:50:58.397 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][677d29ec-666a-4e0c-875f-55e1a12a67c4] socks forwarding established\n2025-07-19 22:50:58.440 [info] [command][ec64af36-6b15-4fc5-b03e-a740f2d15886] Process exited with code 0\n2025-07-19 22:50:58.440 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][677d29ec-666a-4e0c-875f-55e1a12a67c4] socks connection closed\n2025-07-19 22:50:58.440 [info] [command][ec64af36-6b15-4fc5-b03e-a740f2d15886] Socket close event received\n2025-07-19 22:50:58.473 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54208 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:51:58.442 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:51:58.444 [info] [command][50bf36dd-c9b3-4368-a127-0782b58f6144] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""50bf36dd-c9b3-4368-a127-0782b58f6144""}\n2025-07-19 22:51:58.445 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c935fcdc-c7ac-49e5-a749-8af3a1089c8b] received connection request\n2025-07-19 22:51:58.446 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:51:58.479 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c935fcdc-c7ac-49e5-a749-8af3a1089c8b] socks forwarding established\n2025-07-19 22:51:58.524 [info] [command][50bf36dd-c9b3-4368-a127-0782b58f6144] Process exited with code 0\n2025-07-19 22:51:58.524 [info] [command][50bf36dd-c9b3-4368-a127-0782b58f6144] Socket close event received\n2025-07-19 22:51:58.525 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c935fcdc-c7ac-49e5-a749-8af3a1089c8b] socks connection closed\n2025-07-19 22:51:58.553 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54278 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:52:58.534 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:52:58.537 [info] [command][2696419f-1f36-4d41-9836-9a0786ef91e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2696419f-1f36-4d41-9836-9a0786ef91e1""}\n2025-07-19 22:52:58.537 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][627bf957-6141-4e45-8092-d775876efa69] received connection request\n2025-07-19 22:52:58.538 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:52:58.576 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][627bf957-6141-4e45-8092-d775876efa69] socks forwarding established\n2025-07-19 22:52:58.614 [info] [command][2696419f-1f36-4d41-9836-9a0786ef91e1] Process exited with code 0\n2025-07-19 22:52:58.615 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][627bf957-6141-4e45-8092-d775876efa69] socks connection closed\n2025-07-19 22:52:58.615 [info] [command][2696419f-1f36-4d41-9836-9a0786ef91e1] Socket close event received\n2025-07-19 22:52:58.645 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54302 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:53:58.615 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:53:58.618 [info] [command][10fbf646-1728-4def-9b9a-0e4ec5936162] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""10fbf646-1728-4def-9b9a-0e4ec5936162""}\n2025-07-19 22:53:58.619 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a2d968f8-961b-4fbe-b5cb-3a46c68198a5] received connection request\n2025-07-19 22:53:58.620 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:53:58.655 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a2d968f8-961b-4fbe-b5cb-3a46c68198a5] socks forwarding established\n2025-07-19 22:53:58.701 [info] [command][10fbf646-1728-4def-9b9a-0e4ec5936162] Process exited with code 0\n2025-07-19 22:53:58.701 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a2d968f8-961b-4fbe-b5cb-3a46c68198a5] socks connection closed\n2025-07-19 22:53:58.701 [info] [command][10fbf646-1728-4def-9b9a-0e4ec5936162] Socket close event received\n2025-07-19 22:53:58.732 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54320 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:54:58.706 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:54:58.708 [info] [command][84075dc0-0539-48a4-8678-05c596acb28a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""84075dc0-0539-48a4-8678-05c596acb28a""}\n2025-07-19 22:54:58.709 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][53daaecc-e6f2-4654-b5c2-0c216a3ff245] received connection request\n2025-07-19 22:54:58.709 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:54:58.743 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][53daaecc-e6f2-4654-b5c2-0c216a3ff245] socks forwarding established\n2025-07-19 22:54:58.789 [info] [command][84075dc0-0539-48a4-8678-05c596acb28a] Process exited with code 0\n2025-07-19 22:54:58.790 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][53daaecc-e6f2-4654-b5c2-0c216a3ff245] socks connection closed\n2025-07-19 22:54:58.790 [info] [command][84075dc0-0539-48a4-8678-05c596acb28a] Socket close event received\n2025-07-19 22:54:58.820 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54350 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:55:58.800 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:55:58.802 [info] [command][de0f83cb-d125-46a4-bdd0-68446aef8ad1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""de0f83cb-d125-46a4-bdd0-68446aef8ad1""}\n2025-07-19 22:55:58.803 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][67b29432-0a72-468b-aacb-d0883f10d944] received connection request\n2025-07-19 22:55:58.803 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:55:58.838 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][67b29432-0a72-468b-aacb-d0883f10d944] socks forwarding established\n2025-07-19 22:55:58.883 [info] [command][de0f83cb-d125-46a4-bdd0-68446aef8ad1] Process exited with code 0\n2025-07-19 22:55:58.884 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][67b29432-0a72-468b-aacb-d0883f10d944] socks connection closed\n2025-07-19 22:55:58.884 [info] [command][de0f83cb-d125-46a4-bdd0-68446aef8ad1] Socket close event received\n2025-07-19 22:55:58.914 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54378 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:56:58.887 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:56:58.890 [info] [command][356e9323-36b6-4dc6-8b1b-c7e0dc7791df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""356e9323-36b6-4dc6-8b1b-c7e0dc7791df""}\n2025-07-19 22:56:58.891 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0b1b761f-d2a8-403b-a3e4-5d4372da7647] received connection request\n2025-07-19 22:56:58.891 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:56:58.931 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0b1b761f-d2a8-403b-a3e4-5d4372da7647] socks forwarding established\n2025-07-19 22:56:58.978 [info] [command][356e9323-36b6-4dc6-8b1b-c7e0dc7791df] Process exited with code 0\n2025-07-19 22:56:58.978 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0b1b761f-d2a8-403b-a3e4-5d4372da7647] socks connection closed\n2025-07-19 22:56:58.978 [info] [command][356e9323-36b6-4dc6-8b1b-c7e0dc7791df] Socket close event received\n2025-07-19 22:56:59.007 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54426 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:57:58.985 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:57:58.987 [info] [command][ac967ebf-1cb0-4140-b030-8dfb40ee0668] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ac967ebf-1cb0-4140-b030-8dfb40ee0668""}\n2025-07-19 22:57:58.987 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][50bc098a-0783-4f89-b5f1-f8b1e91dde49] received connection request\n2025-07-19 22:57:58.988 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:57:59.019 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][50bc098a-0783-4f89-b5f1-f8b1e91dde49] socks forwarding established\n2025-07-19 22:57:59.064 [info] [command][ac967ebf-1cb0-4140-b030-8dfb40ee0668] Process exited with code 0\n2025-07-19 22:57:59.064 [info] [command][ac967ebf-1cb0-4140-b030-8dfb40ee0668] Socket close event received\n2025-07-19 22:57:59.065 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][50bc098a-0783-4f89-b5f1-f8b1e91dde49] socks connection closed\n2025-07-19 22:57:59.094 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54450 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:58:59.074 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:58:59.076 [info] [command][9d1e1cc3-721c-45ce-9cac-94847b368435] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9d1e1cc3-721c-45ce-9cac-94847b368435""}\n2025-07-19 22:58:59.076 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8297c4c1-e247-44b9-ad6a-08e463228c35] received connection request\n2025-07-19 22:58:59.077 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:58:59.116 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8297c4c1-e247-44b9-ad6a-08e463228c35] socks forwarding established\n2025-07-19 22:58:59.161 [info] [command][9d1e1cc3-721c-45ce-9cac-94847b368435] Process exited with code 0\n2025-07-19 22:58:59.162 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8297c4c1-e247-44b9-ad6a-08e463228c35] socks connection closed\n2025-07-19 22:58:59.162 [info] [command][9d1e1cc3-721c-45ce-9cac-94847b368435] Socket close event received\n2025-07-19 22:58:59.194 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54471 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 22:59:59.169 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 22:59:59.170 [info] [command][1d86413a-e89b-47ed-b789-573529df8ee9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1d86413a-e89b-47ed-b789-573529df8ee9""}\n2025-07-19 22:59:59.171 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4e046d5c-5d8a-4b93-9206-582ab5e3b67d] received connection request\n2025-07-19 22:59:59.172 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 22:59:59.206 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4e046d5c-5d8a-4b93-9206-582ab5e3b67d] socks forwarding established\n2025-07-19 22:59:59.251 [info] [command][1d86413a-e89b-47ed-b789-573529df8ee9] Process exited with code 0\n2025-07-19 22:59:59.251 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4e046d5c-5d8a-4b93-9206-582ab5e3b67d] socks connection closed\n2025-07-19 22:59:59.251 [info] [command][1d86413a-e89b-47ed-b789-573529df8ee9] Socket close event received\n2025-07-19 22:59:59.285 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54503 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:00:59.258 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:00:59.259 [info] [command][fb4ec8e6-120b-4292-bd72-716e225a4653] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fb4ec8e6-120b-4292-bd72-716e225a4653""}\n2025-07-19 23:00:59.259 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][976a403a-7bbb-4691-8f2a-81a3eae9ca0a] received connection request\n2025-07-19 23:00:59.260 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:00:59.292 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][976a403a-7bbb-4691-8f2a-81a3eae9ca0a] socks forwarding established\n2025-07-19 23:00:59.337 [info] [command][fb4ec8e6-120b-4292-bd72-716e225a4653] Process exited with code 0\n2025-07-19 23:00:59.337 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][976a403a-7bbb-4691-8f2a-81a3eae9ca0a] socks connection closed\n2025-07-19 23:00:59.338 [info] [command][fb4ec8e6-120b-4292-bd72-716e225a4653] Socket close event received\n2025-07-19 23:00:59.367 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54521 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:01:59.347 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:01:59.349 [info] [command][879f7e5e-2ca4-498b-bc98-00ba1019cade] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""879f7e5e-2ca4-498b-bc98-00ba1019cade""}\n2025-07-19 23:01:59.350 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][158b40c9-285d-4b0c-86f6-223a868989e5] received connection request\n2025-07-19 23:01:59.350 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:01:59.388 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][158b40c9-285d-4b0c-86f6-223a868989e5] socks forwarding established\n2025-07-19 23:01:59.432 [info] [command][879f7e5e-2ca4-498b-bc98-00ba1019cade] Process exited with code 0\n2025-07-19 23:01:59.432 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][158b40c9-285d-4b0c-86f6-223a868989e5] socks connection closed\n2025-07-19 23:01:59.432 [info] [command][879f7e5e-2ca4-498b-bc98-00ba1019cade] Socket close event received\n2025-07-19 23:01:59.462 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54567 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:02:59.441 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:02:59.444 [info] [command][3d4c0429-bbc3-404d-9a2e-c2ce6e185d88] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3d4c0429-bbc3-404d-9a2e-c2ce6e185d88""}\n2025-07-19 23:02:59.446 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][231a81b9-f57c-4498-8399-2dbeae4d22f7] received connection request\n2025-07-19 23:02:59.446 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:02:59.483 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][231a81b9-f57c-4498-8399-2dbeae4d22f7] socks forwarding established\n2025-07-19 23:02:59.527 [info] [command][3d4c0429-bbc3-404d-9a2e-c2ce6e185d88] Process exited with code 0\n2025-07-19 23:02:59.527 [info] [command][3d4c0429-bbc3-404d-9a2e-c2ce6e185d88] Socket close event received\n2025-07-19 23:02:59.528 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][231a81b9-f57c-4498-8399-2dbeae4d22f7] socks connection closed\n2025-07-19 23:02:59.558 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54592 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:03:59.532 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:03:59.534 [info] [command][7501da72-2b96-4f41-9aa4-fdb8615ba558] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7501da72-2b96-4f41-9aa4-fdb8615ba558""}\n2025-07-19 23:03:59.535 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a7e2b0ac-ab4a-41a4-af5f-2ff2e738190e] received connection request\n2025-07-19 23:03:59.535 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:03:59.575 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a7e2b0ac-ab4a-41a4-af5f-2ff2e738190e] socks forwarding established\n2025-07-19 23:03:59.619 [info] [command][7501da72-2b96-4f41-9aa4-fdb8615ba558] Process exited with code 0\n2025-07-19 23:03:59.619 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a7e2b0ac-ab4a-41a4-af5f-2ff2e738190e] socks connection closed\n2025-07-19 23:03:59.619 [info] [command][7501da72-2b96-4f41-9aa4-fdb8615ba558] Socket close event received\n2025-07-19 23:03:59.648 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54609 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:04:59.628 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:04:59.630 [info] [command][f8310318-d210-4edb-95d4-dc620b9d4454] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f8310318-d210-4edb-95d4-dc620b9d4454""}\n2025-07-19 23:04:59.630 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][cf2a0c3e-38cd-42a8-97f4-0b9f680df1ab] received connection request\n2025-07-19 23:04:59.631 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:04:59.669 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cf2a0c3e-38cd-42a8-97f4-0b9f680df1ab] socks forwarding established\n2025-07-19 23:04:59.712 [info] [command][f8310318-d210-4edb-95d4-dc620b9d4454] Process exited with code 0\n2025-07-19 23:04:59.713 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cf2a0c3e-38cd-42a8-97f4-0b9f680df1ab] socks connection closed\n2025-07-19 23:04:59.713 [info] [command][f8310318-d210-4edb-95d4-dc620b9d4454] Socket close event received\n2025-07-19 23:04:59.744 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54645 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:05:59.715 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:05:59.717 [info] [command][2a3828ea-e485-41fd-8145-941ab2a1f531] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2a3828ea-e485-41fd-8145-941ab2a1f531""}\n2025-07-19 23:05:59.718 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][dbf84ae4-c7de-4870-9381-c7cc8be2ccee] received connection request\n2025-07-19 23:05:59.718 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:05:59.753 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dbf84ae4-c7de-4870-9381-c7cc8be2ccee] socks forwarding established\n2025-07-19 23:05:59.796 [info] [command][2a3828ea-e485-41fd-8145-941ab2a1f531] Process exited with code 0\n2025-07-19 23:05:59.796 [info] [command][2a3828ea-e485-41fd-8145-941ab2a1f531] Socket close event received\n2025-07-19 23:05:59.797 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dbf84ae4-c7de-4870-9381-c7cc8be2ccee] socks connection closed\n2025-07-19 23:05:59.827 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54666 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:06:59.797 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:06:59.799 [info] [command][ed6b72cf-b4f5-4b84-977b-6c05d0aeb784] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ed6b72cf-b4f5-4b84-977b-6c05d0aeb784""}\n2025-07-19 23:06:59.799 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][49944548-0e9f-45ea-9337-6c8ee5ba06e1] received connection request\n2025-07-19 23:06:59.800 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:06:59.835 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][49944548-0e9f-45ea-9337-6c8ee5ba06e1] socks forwarding established\n2025-07-19 23:06:59.879 [info] [command][ed6b72cf-b4f5-4b84-977b-6c05d0aeb784] Process exited with code 0\n2025-07-19 23:06:59.880 [info] [command][ed6b72cf-b4f5-4b84-977b-6c05d0aeb784] Socket close event received\n2025-07-19 23:06:59.881 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][49944548-0e9f-45ea-9337-6c8ee5ba06e1] socks connection closed\n2025-07-19 23:06:59.912 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54713 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:07:59.890 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:07:59.892 [info] [command][29b4fc47-de1f-43d2-bd02-c5a7f13c2416] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""29b4fc47-de1f-43d2-bd02-c5a7f13c2416""}\n2025-07-19 23:07:59.893 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e479b589-31dd-41e3-969f-eb0f5c5934d0] received connection request\n2025-07-19 23:07:59.893 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:07:59.929 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e479b589-31dd-41e3-969f-eb0f5c5934d0] socks forwarding established\n2025-07-19 23:07:59.974 [info] [command][29b4fc47-de1f-43d2-bd02-c5a7f13c2416] Process exited with code 0\n2025-07-19 23:07:59.974 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e479b589-31dd-41e3-969f-eb0f5c5934d0] socks connection closed\n2025-07-19 23:07:59.974 [info] [command][29b4fc47-de1f-43d2-bd02-c5a7f13c2416] Socket close event received\n2025-07-19 23:08:00.006 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54732 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:08:59.979 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:08:59.980 [info] [command][20c2ec9d-6814-4187-84d1-edfbce0f8f61] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""20c2ec9d-6814-4187-84d1-edfbce0f8f61""}\n2025-07-19 23:08:59.981 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0ddafe1d-fd5c-4c8f-9a42-a116e436a76f] received connection request\n2025-07-19 23:08:59.981 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:09:00.015 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0ddafe1d-fd5c-4c8f-9a42-a116e436a76f] socks forwarding established\n2025-07-19 23:09:00.065 [info] [command][20c2ec9d-6814-4187-84d1-edfbce0f8f61] Process exited with code 0\n2025-07-19 23:09:00.065 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0ddafe1d-fd5c-4c8f-9a42-a116e436a76f] socks connection closed\n2025-07-19 23:09:00.065 [info] [command][20c2ec9d-6814-4187-84d1-edfbce0f8f61] Socket close event received\n2025-07-19 23:09:00.095 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54750 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:10:00.074 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:10:00.077 [info] [command][0cfa8140-5559-4b86-9518-0e2f0d9b1db2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0cfa8140-5559-4b86-9518-0e2f0d9b1db2""}\n2025-07-19 23:10:00.077 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3eef7c53-0a97-43f9-bf1a-24224f9f46c3] received connection request\n2025-07-19 23:10:00.078 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:10:00.114 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3eef7c53-0a97-43f9-bf1a-24224f9f46c3] socks forwarding established\n2025-07-19 23:10:00.157 [info] [command][0cfa8140-5559-4b86-9518-0e2f0d9b1db2] Process exited with code 0\n2025-07-19 23:10:00.158 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3eef7c53-0a97-43f9-bf1a-24224f9f46c3] socks connection closed\n2025-07-19 23:10:00.158 [info] [command][0cfa8140-5559-4b86-9518-0e2f0d9b1db2] Socket close event received\n2025-07-19 23:10:00.188 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54784 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:11:00.160 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:11:00.161 [info] [command][e94ed8bc-84dd-4738-ac11-02c797fad3fa] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e94ed8bc-84dd-4738-ac11-02c797fad3fa""}\n2025-07-19 23:11:00.162 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d53ce984-aa14-479d-890d-50412e5af933] received connection request\n2025-07-19 23:11:00.162 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:11:00.192 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d53ce984-aa14-479d-890d-50412e5af933] socks forwarding established\n2025-07-19 23:11:00.239 [info] [command][e94ed8bc-84dd-4738-ac11-02c797fad3fa] Process exited with code 0\n2025-07-19 23:11:00.240 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d53ce984-aa14-479d-890d-50412e5af933] socks connection closed\n2025-07-19 23:11:00.240 [info] [command][e94ed8bc-84dd-4738-ac11-02c797fad3fa] Socket close event received\n2025-07-19 23:11:00.271 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54804 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:12:00.245 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:12:00.248 [info] [command][3d3641c9-510e-45a7-b8f0-e111056eecf3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3d3641c9-510e-45a7-b8f0-e111056eecf3""}\n2025-07-19 23:12:00.248 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9b7bc8d6-7705-46aa-9983-ed69d2aa2fbc] received connection request\n2025-07-19 23:12:00.249 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:12:00.281 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9b7bc8d6-7705-46aa-9983-ed69d2aa2fbc] socks forwarding established\n2025-07-19 23:12:00.326 [info] [command][3d3641c9-510e-45a7-b8f0-e111056eecf3] Process exited with code 0\n2025-07-19 23:12:00.327 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9b7bc8d6-7705-46aa-9983-ed69d2aa2fbc] socks connection closed\n2025-07-19 23:12:00.327 [info] [command][3d3641c9-510e-45a7-b8f0-e111056eecf3] Socket close event received\n2025-07-19 23:12:00.358 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54851 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:13:00.336 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:13:00.339 [info] [command][6c635c78-07b6-4604-b7b7-023f39a5f7df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6c635c78-07b6-4604-b7b7-023f39a5f7df""}\n2025-07-19 23:13:00.339 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0ecdfe13-2741-42a0-9f72-e8e2d8bf9a42] received connection request\n2025-07-19 23:13:00.340 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:13:00.372 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0ecdfe13-2741-42a0-9f72-e8e2d8bf9a42] socks forwarding established\n2025-07-19 23:13:00.415 [info] [command][6c635c78-07b6-4604-b7b7-023f39a5f7df] Process exited with code 0\n2025-07-19 23:13:00.415 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0ecdfe13-2741-42a0-9f72-e8e2d8bf9a42] socks connection closed\n2025-07-19 23:13:00.416 [info] [command][6c635c78-07b6-4604-b7b7-023f39a5f7df] Socket close event received\n2025-07-19 23:13:00.446 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54872 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:14:00.423 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:14:00.425 [info] [command][4276e366-d7d6-43d9-a8ef-76889c55e3df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""4276e366-d7d6-43d9-a8ef-76889c55e3df""}\n2025-07-19 23:14:00.426 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][099393f7-e90a-45a2-b4a2-6358c4b3115b] received connection request\n2025-07-19 23:14:00.426 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:14:00.458 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][099393f7-e90a-45a2-b4a2-6358c4b3115b] socks forwarding established\n2025-07-19 23:14:00.505 [info] [command][4276e366-d7d6-43d9-a8ef-76889c55e3df] Process exited with code 0\n2025-07-19 23:14:00.505 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][099393f7-e90a-45a2-b4a2-6358c4b3115b] socks connection closed\n2025-07-19 23:14:00.505 [info] [command][4276e366-d7d6-43d9-a8ef-76889c55e3df] Socket close event received\n2025-07-19 23:14:00.538 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54893 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:15:00.515 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:15:00.517 [info] [command][5f4ebb1a-ccd9-4a78-ba8e-e21a176e88e7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5f4ebb1a-ccd9-4a78-ba8e-e21a176e88e7""}\n2025-07-19 23:15:00.518 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8806abd7-9250-400f-af3f-56fedb8c2d8e] received connection request\n2025-07-19 23:15:00.519 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:15:00.553 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8806abd7-9250-400f-af3f-56fedb8c2d8e] socks forwarding established\n2025-07-19 23:15:00.599 [info] [command][5f4ebb1a-ccd9-4a78-ba8e-e21a176e88e7] Process exited with code 0\n2025-07-19 23:15:00.599 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8806abd7-9250-400f-af3f-56fedb8c2d8e] socks connection closed\n2025-07-19 23:15:00.600 [info] [command][5f4ebb1a-ccd9-4a78-ba8e-e21a176e88e7] Socket close event received\n2025-07-19 23:15:00.630 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54924 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:16:00.604 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:16:00.606 [info] [command][d81b3b89-a871-4c67-a73e-97bd865b91e1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d81b3b89-a871-4c67-a73e-97bd865b91e1""}\n2025-07-19 23:16:00.606 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][04ce93e5-6903-4354-9909-9fd6d9246f94] received connection request\n2025-07-19 23:16:00.607 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:16:00.641 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][04ce93e5-6903-4354-9909-9fd6d9246f94] socks forwarding established\n2025-07-19 23:16:00.685 [info] [command][d81b3b89-a871-4c67-a73e-97bd865b91e1] Process exited with code 0\n2025-07-19 23:16:00.685 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][04ce93e5-6903-4354-9909-9fd6d9246f94] socks connection closed\n2025-07-19 23:16:00.686 [info] [command][d81b3b89-a871-4c67-a73e-97bd865b91e1] Socket close event received\n2025-07-19 23:16:00.715 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54947 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:17:00.695 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:17:00.697 [info] [command][d47d3bba-2eaf-411a-83a8-3846c7b551cf] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d47d3bba-2eaf-411a-83a8-3846c7b551cf""}\n2025-07-19 23:17:00.698 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c4318440-8d41-4e16-aab2-e03b5f8b30ac] received connection request\n2025-07-19 23:17:00.699 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:17:00.731 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c4318440-8d41-4e16-aab2-e03b5f8b30ac] socks forwarding established\n2025-07-19 23:17:00.783 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c4318440-8d41-4e16-aab2-e03b5f8b30ac] socks connection closed\n2025-07-19 23:17:00.784 [info] [command][d47d3bba-2eaf-411a-83a8-3846c7b551cf] Process exited with code 0\n2025-07-19 23:17:00.784 [info] [command][d47d3bba-2eaf-411a-83a8-3846c7b551cf] Socket close event received\n2025-07-19 23:17:00.814 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 54995 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:18:00.793 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:18:00.796 [info] [command][7f7a817b-0749-4286-85e0-4ef4bdaab6cc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7f7a817b-0749-4286-85e0-4ef4bdaab6cc""}\n2025-07-19 23:18:00.796 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1bae6832-7f0a-4406-9af4-c7fc132ee515] received connection request\n2025-07-19 23:18:00.797 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:18:00.833 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1bae6832-7f0a-4406-9af4-c7fc132ee515] socks forwarding established\n2025-07-19 23:18:00.880 [info] [command][7f7a817b-0749-4286-85e0-4ef4bdaab6cc] Process exited with code 0\n2025-07-19 23:18:00.880 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1bae6832-7f0a-4406-9af4-c7fc132ee515] socks connection closed\n2025-07-19 23:18:00.880 [info] [command][7f7a817b-0749-4286-85e0-4ef4bdaab6cc] Socket close event received\n2025-07-19 23:18:00.911 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55015 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:19:00.888 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:19:00.890 [info] [command][d19640f3-6ef3-4eae-9d1f-26015362c716] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d19640f3-6ef3-4eae-9d1f-26015362c716""}\n2025-07-19 23:19:00.891 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][6c12574d-ba0a-481d-8d4e-2a31d98cd121] received connection request\n2025-07-19 23:19:00.891 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:19:00.931 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6c12574d-ba0a-481d-8d4e-2a31d98cd121] socks forwarding established\n2025-07-19 23:19:00.979 [info] [command][d19640f3-6ef3-4eae-9d1f-26015362c716] Process exited with code 0\n2025-07-19 23:19:00.979 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][6c12574d-ba0a-481d-8d4e-2a31d98cd121] socks connection closed\n2025-07-19 23:19:00.979 [info] [command][d19640f3-6ef3-4eae-9d1f-26015362c716] Socket close event received\n2025-07-19 23:19:01.009 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55033 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:20:00.990 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:20:00.992 [info] [command][cf312114-d648-425e-a2b1-022e775a105b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""cf312114-d648-425e-a2b1-022e775a105b""}\n2025-07-19 23:20:00.993 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][934cb7a2-9fdf-4381-92d6-453689a3169f] received connection request\n2025-07-19 23:20:00.993 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:20:01.028 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][934cb7a2-9fdf-4381-92d6-453689a3169f] socks forwarding established\n2025-07-19 23:20:01.072 [info] [command][cf312114-d648-425e-a2b1-022e775a105b] Process exited with code 0\n2025-07-19 23:20:01.073 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][934cb7a2-9fdf-4381-92d6-453689a3169f] socks connection closed\n2025-07-19 23:20:01.073 [info] [command][cf312114-d648-425e-a2b1-022e775a105b] Socket close event received\n2025-07-19 23:20:01.105 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55073 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:21:01.083 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:21:01.085 [info] [command][b03b7ad3-ee0c-4fa6-b7d8-65b8ee22d463] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b03b7ad3-ee0c-4fa6-b7d8-65b8ee22d463""}\n2025-07-19 23:21:01.086 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1af07000-4289-4c2d-9817-bb3b17ae78b9] received connection request\n2025-07-19 23:21:01.087 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:21:01.118 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1af07000-4289-4c2d-9817-bb3b17ae78b9] socks forwarding established\n2025-07-19 23:21:01.161 [info] [command][b03b7ad3-ee0c-4fa6-b7d8-65b8ee22d463] Process exited with code 0\n2025-07-19 23:21:01.162 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1af07000-4289-4c2d-9817-bb3b17ae78b9] socks connection closed\n2025-07-19 23:21:01.162 [info] [command][b03b7ad3-ee0c-4fa6-b7d8-65b8ee22d463] Socket close event received\n2025-07-19 23:21:01.193 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55093 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:22:01.165 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:22:01.167 [info] [command][08f83192-6bf1-44da-af99-bcb7cf525682] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""08f83192-6bf1-44da-af99-bcb7cf525682""}\n2025-07-19 23:22:01.168 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ed3947ce-38c6-4fe9-863a-3150f05b4a4f] received connection request\n2025-07-19 23:22:01.169 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:22:01.202 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed3947ce-38c6-4fe9-863a-3150f05b4a4f] socks forwarding established\n2025-07-19 23:22:01.249 [info] [command][08f83192-6bf1-44da-af99-bcb7cf525682] Process exited with code 0\n2025-07-19 23:22:01.250 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed3947ce-38c6-4fe9-863a-3150f05b4a4f] socks connection closed\n2025-07-19 23:22:01.250 [info] [command][08f83192-6bf1-44da-af99-bcb7cf525682] Socket close event received\n2025-07-19 23:22:01.280 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55140 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:23:01.252 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:23:01.253 [info] [command][13e4fca7-9df8-4979-b10c-b1770f76812c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""13e4fca7-9df8-4979-b10c-b1770f76812c""}\n2025-07-19 23:23:01.253 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][05e147cd-b67b-4449-beb2-028d5987ab5a] received connection request\n2025-07-19 23:23:01.254 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:23:01.286 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][05e147cd-b67b-4449-beb2-028d5987ab5a] socks forwarding established\n2025-07-19 23:23:01.332 [info] [command][13e4fca7-9df8-4979-b10c-b1770f76812c] Process exited with code 0\n2025-07-19 23:23:01.333 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][05e147cd-b67b-4449-beb2-028d5987ab5a] socks connection closed\n2025-07-19 23:23:01.333 [info] [command][13e4fca7-9df8-4979-b10c-b1770f76812c] Socket close event received\n2025-07-19 23:23:01.365 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55160 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:24:01.341 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:24:01.343 [info] [command][7a1a28b8-43c0-410f-bc95-4f022407e0d6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7a1a28b8-43c0-410f-bc95-4f022407e0d6""}\n2025-07-19 23:24:01.344 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2ecc3937-8b8b-4598-9177-7fcdcd228b65] received connection request\n2025-07-19 23:24:01.345 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:24:01.380 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2ecc3937-8b8b-4598-9177-7fcdcd228b65] socks forwarding established\n2025-07-19 23:24:01.422 [info] [command][7a1a28b8-43c0-410f-bc95-4f022407e0d6] Process exited with code 0\n2025-07-19 23:24:01.423 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2ecc3937-8b8b-4598-9177-7fcdcd228b65] socks connection closed\n2025-07-19 23:24:01.423 [info] [command][7a1a28b8-43c0-410f-bc95-4f022407e0d6] Socket close event received\n2025-07-19 23:24:01.453 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55180 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:25:01.427 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:25:01.428 [info] [command][d1fcbafa-80cf-4127-aa8a-86334051d788] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d1fcbafa-80cf-4127-aa8a-86334051d788""}\n2025-07-19 23:25:01.429 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][652e7ddf-0360-45b4-b75e-befba1e6bd6f] received connection request\n2025-07-19 23:25:01.429 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:25:01.460 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][652e7ddf-0360-45b4-b75e-befba1e6bd6f] socks forwarding established\n2025-07-19 23:25:01.504 [info] [command][d1fcbafa-80cf-4127-aa8a-86334051d788] Process exited with code 0\n2025-07-19 23:25:01.505 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][652e7ddf-0360-45b4-b75e-befba1e6bd6f] socks connection closed\n2025-07-19 23:25:01.505 [info] [command][d1fcbafa-80cf-4127-aa8a-86334051d788] Socket close event received\n2025-07-19 23:25:01.535 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55212 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:26:01.515 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:26:01.517 [info] [command][d960ba4d-1e36-4e13-9e10-90ab7f9fd9bc] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d960ba4d-1e36-4e13-9e10-90ab7f9fd9bc""}\n2025-07-19 23:26:01.518 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b3c91cfb-a38b-47f8-bd6b-af6359ed2284] received connection request\n2025-07-19 23:26:01.519 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:26:01.553 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b3c91cfb-a38b-47f8-bd6b-af6359ed2284] socks forwarding established\n2025-07-19 23:26:01.597 [info] [command][d960ba4d-1e36-4e13-9e10-90ab7f9fd9bc] Process exited with code 0\n2025-07-19 23:26:01.597 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b3c91cfb-a38b-47f8-bd6b-af6359ed2284] socks connection closed\n2025-07-19 23:26:01.597 [info] [command][d960ba4d-1e36-4e13-9e10-90ab7f9fd9bc] Socket close event received\n2025-07-19 23:26:01.627 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55237 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:27:01.607 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:27:01.609 [info] [command][54046ebc-442f-42fa-93a9-40d242b756d8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""54046ebc-442f-42fa-93a9-40d242b756d8""}\n2025-07-19 23:27:01.610 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b193c1eb-d838-4d4f-9f35-c6ebf286d635] received connection request\n2025-07-19 23:27:01.611 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:27:01.651 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b193c1eb-d838-4d4f-9f35-c6ebf286d635] socks forwarding established\n2025-07-19 23:27:01.696 [info] [command][54046ebc-442f-42fa-93a9-40d242b756d8] Process exited with code 0\n2025-07-19 23:27:01.696 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b193c1eb-d838-4d4f-9f35-c6ebf286d635] socks connection closed\n2025-07-19 23:27:01.696 [info] [command][54046ebc-442f-42fa-93a9-40d242b756d8] Socket close event received\n2025-07-19 23:27:01.727 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55281 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:28:01.706 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:28:01.709 [info] [command][82575e81-4992-449b-8ae0-4819046e5cf2] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""82575e81-4992-449b-8ae0-4819046e5cf2""}\n2025-07-19 23:28:01.710 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9b77269d-5ce2-4c82-8cb7-c4817aba588e] received connection request\n2025-07-19 23:28:01.710 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:28:01.749 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9b77269d-5ce2-4c82-8cb7-c4817aba588e] socks forwarding established\n2025-07-19 23:28:01.793 [info] [command][82575e81-4992-449b-8ae0-4819046e5cf2] Process exited with code 0\n2025-07-19 23:28:01.793 [info] [command][82575e81-4992-449b-8ae0-4819046e5cf2] Socket close event received\n2025-07-19 23:28:01.794 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9b77269d-5ce2-4c82-8cb7-c4817aba588e] socks connection closed\n2025-07-19 23:28:01.827 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55302 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:29:01.803 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:29:01.805 [info] [command][9b0fdec0-f40d-45fe-8d28-e8a55ce56dd1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9b0fdec0-f40d-45fe-8d28-e8a55ce56dd1""}\n2025-07-19 23:29:01.806 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5d1f87e3-7ddd-4b39-9666-8c8831f73542] received connection request\n2025-07-19 23:29:01.806 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:29:01.844 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5d1f87e3-7ddd-4b39-9666-8c8831f73542] socks forwarding established\n2025-07-19 23:29:01.887 [info] [command][9b0fdec0-f40d-45fe-8d28-e8a55ce56dd1] Process exited with code 0\n2025-07-19 23:29:01.888 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5d1f87e3-7ddd-4b39-9666-8c8831f73542] socks connection closed\n2025-07-19 23:29:01.888 [info] [command][9b0fdec0-f40d-45fe-8d28-e8a55ce56dd1] Socket close event received\n2025-07-19 23:29:01.919 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55324 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:30:01.898 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:30:01.900 [info] [command][f5273bab-b67f-4546-9f18-4e79b0a5f40b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f5273bab-b67f-4546-9f18-4e79b0a5f40b""}\n2025-07-19 23:30:01.901 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f517b9d9-3102-40f9-a19d-17aa63eddb8f] received connection request\n2025-07-19 23:30:01.901 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:30:01.938 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f517b9d9-3102-40f9-a19d-17aa63eddb8f] socks forwarding established\n2025-07-19 23:30:01.984 [info] [command][f5273bab-b67f-4546-9f18-4e79b0a5f40b] Process exited with code 0\n2025-07-19 23:30:01.984 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f517b9d9-3102-40f9-a19d-17aa63eddb8f] socks connection closed\n2025-07-19 23:30:01.984 [info] [command][f5273bab-b67f-4546-9f18-4e79b0a5f40b] Socket close event received\n2025-07-19 23:30:02.015 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55358 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:31:01.992 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:31:01.994 [info] [command][66c828c2-6645-42a3-baaa-f21a61d5472c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""66c828c2-6645-42a3-baaa-f21a61d5472c""}\n2025-07-19 23:31:01.995 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][368b6f56-1468-41bc-8651-073a873e6d9b] received connection request\n2025-07-19 23:31:01.996 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:31:02.029 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][368b6f56-1468-41bc-8651-073a873e6d9b] socks forwarding established\n2025-07-19 23:31:02.075 [info] [command][66c828c2-6645-42a3-baaa-f21a61d5472c] Process exited with code 0\n2025-07-19 23:31:02.075 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][368b6f56-1468-41bc-8651-073a873e6d9b] socks connection closed\n2025-07-19 23:31:02.075 [info] [command][66c828c2-6645-42a3-baaa-f21a61d5472c] Socket close event received\n2025-07-19 23:31:02.105 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55380 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:32:02.085 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:32:02.088 [info] [command][2b5f50f1-6770-453b-98c1-89a9001f3db1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2b5f50f1-6770-453b-98c1-89a9001f3db1""}\n2025-07-19 23:32:02.088 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a9c6679f-9f88-4742-9d78-e0ee70828c15] received connection request\n2025-07-19 23:32:02.089 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:32:02.122 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a9c6679f-9f88-4742-9d78-e0ee70828c15] socks forwarding established\n2025-07-19 23:32:02.163 [info] [command][2b5f50f1-6770-453b-98c1-89a9001f3db1] Process exited with code 0\n2025-07-19 23:32:02.164 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a9c6679f-9f88-4742-9d78-e0ee70828c15] socks connection closed\n2025-07-19 23:32:02.164 [info] [command][2b5f50f1-6770-453b-98c1-89a9001f3db1] Socket close event received\n2025-07-19 23:32:02.195 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55441 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:33:02.173 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:33:02.175 [info] [command][de279702-8688-4ea1-95e6-3e7f04b632b8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""de279702-8688-4ea1-95e6-3e7f04b632b8""}\n2025-07-19 23:33:02.176 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8a1ca84b-9383-47c2-b181-0b6ebe795510] received connection request\n2025-07-19 23:33:02.177 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:33:02.209 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8a1ca84b-9383-47c2-b181-0b6ebe795510] socks forwarding established\n2025-07-19 23:33:02.253 [info] [command][de279702-8688-4ea1-95e6-3e7f04b632b8] Process exited with code 0\n2025-07-19 23:33:02.254 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8a1ca84b-9383-47c2-b181-0b6ebe795510] socks connection closed\n2025-07-19 23:33:02.254 [info] [command][de279702-8688-4ea1-95e6-3e7f04b632b8] Socket close event received\n2025-07-19 23:33:02.288 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55460 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:34:02.256 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:34:02.258 [info] [command][de076c0e-205d-4d2f-a092-53aa8a3afb03] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""de076c0e-205d-4d2f-a092-53aa8a3afb03""}\n2025-07-19 23:34:02.259 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8b804be9-8132-43d2-bcbf-84bd4ccefe90] received connection request\n2025-07-19 23:34:02.260 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:34:02.292 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8b804be9-8132-43d2-bcbf-84bd4ccefe90] socks forwarding established\n2025-07-19 23:34:02.337 [info] [command][de076c0e-205d-4d2f-a092-53aa8a3afb03] Process exited with code 0\n2025-07-19 23:34:02.337 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8b804be9-8132-43d2-bcbf-84bd4ccefe90] socks connection closed\n2025-07-19 23:34:02.338 [info] [command][de076c0e-205d-4d2f-a092-53aa8a3afb03] Socket close event received\n2025-07-19 23:34:02.369 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55482 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:35:02.348 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:35:02.350 [info] [command][888ea87e-438f-41ce-b336-300721115db8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""888ea87e-438f-41ce-b336-300721115db8""}\n2025-07-19 23:35:02.351 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][26f0bdfe-4d25-42ec-99cd-fd68bcfed8f5] received connection request\n2025-07-19 23:35:02.352 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:35:02.385 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][26f0bdfe-4d25-42ec-99cd-fd68bcfed8f5] socks forwarding established\n2025-07-19 23:35:02.432 [info] [command][888ea87e-438f-41ce-b336-300721115db8] Process exited with code 0\n2025-07-19 23:35:02.433 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][26f0bdfe-4d25-42ec-99cd-fd68bcfed8f5] socks connection closed\n2025-07-19 23:35:02.433 [info] [command][888ea87e-438f-41ce-b336-300721115db8] Socket close event received\n2025-07-19 23:35:02.462 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55516 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:36:02.442 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:36:02.443 [info] [command][44e36cab-d346-4222-956b-2deed6340661] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""44e36cab-d346-4222-956b-2deed6340661""}\n2025-07-19 23:36:02.444 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][cb92fd64-2ce8-47e7-9e09-97d40b3215e1] received connection request\n2025-07-19 23:36:02.445 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 23:36:02.445 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:36:02.476 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cb92fd64-2ce8-47e7-9e09-97d40b3215e1] socks forwarding established\n2025-07-19 23:36:02.522 [info] [command][44e36cab-d346-4222-956b-2deed6340661] Process exited with code 0\n2025-07-19 23:36:02.522 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cb92fd64-2ce8-47e7-9e09-97d40b3215e1] socks connection closed\n2025-07-19 23:36:02.522 [info] [command][44e36cab-d346-4222-956b-2deed6340661] Socket close event received\n2025-07-19 23:36:02.552 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55536 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:37:02.531 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:37:02.533 [info] [command][68857226-7815-45c0-bb6a-5f308d9f93ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""68857226-7815-45c0-bb6a-5f308d9f93ea""}\n2025-07-19 23:37:02.534 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][507d2f67-b9a1-4ab2-b06d-50ac93a958ab] received connection request\n2025-07-19 23:37:02.535 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:37:02.572 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][507d2f67-b9a1-4ab2-b06d-50ac93a958ab] socks forwarding established\n2025-07-19 23:37:02.613 [info] [command][68857226-7815-45c0-bb6a-5f308d9f93ea] Process exited with code 0\n2025-07-19 23:37:02.613 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][507d2f67-b9a1-4ab2-b06d-50ac93a958ab] socks connection closed\n2025-07-19 23:37:02.614 [info] [command][68857226-7815-45c0-bb6a-5f308d9f93ea] Socket close event received\n2025-07-19 23:37:02.647 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55584 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:38:02.623 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:38:02.625 [info] [command][c8c187eb-f0a7-4c1a-8c58-a48026c7787f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c8c187eb-f0a7-4c1a-8c58-a48026c7787f""}\n2025-07-19 23:38:02.626 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9a54fcbe-d5fe-4207-abc0-0657ae88e4f3] received connection request\n2025-07-19 23:38:02.627 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:38:02.660 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9a54fcbe-d5fe-4207-abc0-0657ae88e4f3] socks forwarding established\n2025-07-19 23:38:02.702 [info] [command][c8c187eb-f0a7-4c1a-8c58-a48026c7787f] Process exited with code 0\n2025-07-19 23:38:02.702 [info] [command][c8c187eb-f0a7-4c1a-8c58-a48026c7787f] Socket close event received\n2025-07-19 23:38:02.704 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9a54fcbe-d5fe-4207-abc0-0657ae88e4f3] socks connection closed\n2025-07-19 23:38:02.734 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55602 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:39:02.709 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:39:02.711 [info] [command][15fe732a-20bf-4785-816c-223556d2d677] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""15fe732a-20bf-4785-816c-223556d2d677""}\n2025-07-19 23:39:02.712 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c35f2754-4a5b-4d65-b799-0448836f6123] received connection request\n2025-07-19 23:39:02.713 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:39:02.750 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c35f2754-4a5b-4d65-b799-0448836f6123] socks forwarding established\n2025-07-19 23:39:02.796 [info] [command][15fe732a-20bf-4785-816c-223556d2d677] Process exited with code 0\n2025-07-19 23:39:02.797 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c35f2754-4a5b-4d65-b799-0448836f6123] socks connection closed\n2025-07-19 23:39:02.797 [info] [command][15fe732a-20bf-4785-816c-223556d2d677] Socket close event received\n2025-07-19 23:39:02.825 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55618 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:40:02.799 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:40:02.801 [info] [command][bf295316-b427-4721-9bb3-f4007f567a02] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""bf295316-b427-4721-9bb3-f4007f567a02""}\n2025-07-19 23:40:02.802 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][62ff8387-fbab-4937-9ae7-c8ea8b712270] received connection request\n2025-07-19 23:40:02.803 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:40:02.833 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][62ff8387-fbab-4937-9ae7-c8ea8b712270] socks forwarding established\n2025-07-19 23:40:02.879 [info] [command][bf295316-b427-4721-9bb3-f4007f567a02] Process exited with code 0\n2025-07-19 23:40:02.879 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][62ff8387-fbab-4937-9ae7-c8ea8b712270] socks connection closed\n2025-07-19 23:40:02.879 [info] [command][bf295316-b427-4721-9bb3-f4007f567a02] Socket close event received\n2025-07-19 23:40:02.909 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55653 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:41:02.883 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:41:02.885 [info] [command][7e30dc67-c0f2-4f17-bd91-3a7903fc72f9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7e30dc67-c0f2-4f17-bd91-3a7903fc72f9""}\n2025-07-19 23:41:02.886 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][492a3029-14d5-40d1-bd2e-a814b3f58061] received connection request\n2025-07-19 23:41:02.886 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:41:02.921 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][492a3029-14d5-40d1-bd2e-a814b3f58061] socks forwarding established\n2025-07-19 23:41:02.968 [info] [command][7e30dc67-c0f2-4f17-bd91-3a7903fc72f9] Process exited with code 0\n2025-07-19 23:41:02.969 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][492a3029-14d5-40d1-bd2e-a814b3f58061] socks connection closed\n2025-07-19 23:41:02.969 [info] [command][7e30dc67-c0f2-4f17-bd91-3a7903fc72f9] Socket close event received\n2025-07-19 23:41:03.000 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55673 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:42:02.979 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:42:02.980 [info] [command][31bde34d-9930-42eb-987f-0293df76a0bb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""31bde34d-9930-42eb-987f-0293df76a0bb""}\n2025-07-19 23:42:02.981 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ffbc933a-4e88-4585-a735-dbf216d94b68] received connection request\n2025-07-19 23:42:02.981 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:42:03.016 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ffbc933a-4e88-4585-a735-dbf216d94b68] socks forwarding established\n2025-07-19 23:42:03.064 [info] [command][31bde34d-9930-42eb-987f-0293df76a0bb] Process exited with code 0\n2025-07-19 23:42:03.064 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ffbc933a-4e88-4585-a735-dbf216d94b68] socks connection closed\n2025-07-19 23:42:03.065 [info] [command][31bde34d-9930-42eb-987f-0293df76a0bb] Socket close event received\n2025-07-19 23:42:03.095 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55721 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:43:03.074 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:43:03.076 [info] [command][8e0718d4-b144-41ab-a506-1275ff8efce8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8e0718d4-b144-41ab-a506-1275ff8efce8""}\n2025-07-19 23:43:03.076 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f88fdb80-f840-4a99-b779-b51adbe5b6ed] received connection request\n2025-07-19 23:43:03.077 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:43:03.110 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f88fdb80-f840-4a99-b779-b51adbe5b6ed] socks forwarding established\n2025-07-19 23:43:03.157 [info] [command][8e0718d4-b144-41ab-a506-1275ff8efce8] Process exited with code 0\n2025-07-19 23:43:03.158 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f88fdb80-f840-4a99-b779-b51adbe5b6ed] socks connection closed\n2025-07-19 23:43:03.158 [info] [command][8e0718d4-b144-41ab-a506-1275ff8efce8] Socket close event received\n2025-07-19 23:43:03.188 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55743 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:44:03.167 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:44:03.169 [info] [command][76f33b82-478a-4940-abad-61ae407dc0d1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""76f33b82-478a-4940-abad-61ae407dc0d1""}\n2025-07-19 23:44:03.170 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7ce78b27-a549-49ab-a880-f215b98145b7] received connection request\n2025-07-19 23:44:03.171 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:44:03.208 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7ce78b27-a549-49ab-a880-f215b98145b7] socks forwarding established\n2025-07-19 23:44:03.250 [info] [command][76f33b82-478a-4940-abad-61ae407dc0d1] Process exited with code 0\n2025-07-19 23:44:03.250 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7ce78b27-a549-49ab-a880-f215b98145b7] socks connection closed\n2025-07-19 23:44:03.250 [info] [command][76f33b82-478a-4940-abad-61ae407dc0d1] Socket close event received\n2025-07-19 23:44:03.281 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55764 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:45:03.254 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:45:03.256 [info] [command][1b7d99ab-535e-4d43-8670-f62fb57bede1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1b7d99ab-535e-4d43-8670-f62fb57bede1""}\n2025-07-19 23:45:03.257 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7c0e95f4-e113-45d3-958d-b720db8177fa] received connection request\n2025-07-19 23:45:03.257 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:45:03.293 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7c0e95f4-e113-45d3-958d-b720db8177fa] socks forwarding established\n2025-07-19 23:45:03.339 [info] [command][1b7d99ab-535e-4d43-8670-f62fb57bede1] Process exited with code 0\n2025-07-19 23:45:03.339 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7c0e95f4-e113-45d3-958d-b720db8177fa] socks connection closed\n2025-07-19 23:45:03.340 [info] [command][1b7d99ab-535e-4d43-8670-f62fb57bede1] Socket close event received\n2025-07-19 23:45:03.369 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55793 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:46:03.350 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:46:03.352 [info] [command][f079ce6f-2800-49a8-970b-ea0307d336ef] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f079ce6f-2800-49a8-970b-ea0307d336ef""}\n2025-07-19 23:46:03.353 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7232c60c-6836-48d3-bd7f-70aa2acb1eea] received connection request\n2025-07-19 23:46:03.353 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 23:46:03.353 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:46:03.384 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7232c60c-6836-48d3-bd7f-70aa2acb1eea] socks forwarding established\n2025-07-19 23:46:03.428 [info] [command][f079ce6f-2800-49a8-970b-ea0307d336ef] Process exited with code 0\n2025-07-19 23:46:03.429 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7232c60c-6836-48d3-bd7f-70aa2acb1eea] socks connection closed\n2025-07-19 23:46:03.429 [info] [command][f079ce6f-2800-49a8-970b-ea0307d336ef] Socket close event received\n2025-07-19 23:46:03.460 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55816 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:47:03.438 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:47:03.440 [info] [command][dcbe1ad9-73ad-43ed-967f-4fdbf64dbcc9] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""dcbe1ad9-73ad-43ed-967f-4fdbf64dbcc9""}\n2025-07-19 23:47:03.441 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][47907245-3c4e-4346-b243-a7986433d600] received connection request\n2025-07-19 23:47:03.441 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:47:03.476 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][47907245-3c4e-4346-b243-a7986433d600] socks forwarding established\n2025-07-19 23:47:03.520 [info] [command][dcbe1ad9-73ad-43ed-967f-4fdbf64dbcc9] Process exited with code 0\n2025-07-19 23:47:03.520 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][47907245-3c4e-4346-b243-a7986433d600] socks connection closed\n2025-07-19 23:47:03.521 [info] [command][dcbe1ad9-73ad-43ed-967f-4fdbf64dbcc9] Socket close event received\n2025-07-19 23:47:03.552 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55865 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:48:03.521 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:48:03.524 [info] [command][dec86d95-a8bb-4b88-9b45-feaa54125223] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""dec86d95-a8bb-4b88-9b45-feaa54125223""}\n2025-07-19 23:48:03.524 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1d48082b-f9ea-4a66-ac21-94b68c60029d] received connection request\n2025-07-19 23:48:03.525 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:48:03.559 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1d48082b-f9ea-4a66-ac21-94b68c60029d] socks forwarding established\n2025-07-19 23:48:03.605 [info] [command][dec86d95-a8bb-4b88-9b45-feaa54125223] Process exited with code 0\n2025-07-19 23:48:03.605 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1d48082b-f9ea-4a66-ac21-94b68c60029d] socks connection closed\n2025-07-19 23:48:03.605 [info] [command][dec86d95-a8bb-4b88-9b45-feaa54125223] Socket close event received\n2025-07-19 23:48:03.636 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55885 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:49:03.607 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:49:03.608 [info] [command][ac325b09-47b3-4863-8261-bddb25bbf655] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ac325b09-47b3-4863-8261-bddb25bbf655""}\n2025-07-19 23:49:03.609 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][eff795b2-f171-46ba-a1ba-6396cb673a4c] received connection request\n2025-07-19 23:49:03.610 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:49:03.640 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][eff795b2-f171-46ba-a1ba-6396cb673a4c] socks forwarding established\n2025-07-19 23:49:03.686 [info] [command][ac325b09-47b3-4863-8261-bddb25bbf655] Process exited with code 0\n2025-07-19 23:49:03.686 [info] [command][ac325b09-47b3-4863-8261-bddb25bbf655] Socket close event received\n2025-07-19 23:49:03.687 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][eff795b2-f171-46ba-a1ba-6396cb673a4c] socks connection closed\n2025-07-19 23:49:03.718 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55903 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:50:03.697 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:50:03.700 [info] [command][c9a947bf-d0d5-482b-a1dc-9ca4bb4d329c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c9a947bf-d0d5-482b-a1dc-9ca4bb4d329c""}\n2025-07-19 23:50:03.700 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3087afbe-444b-4fc1-8ea8-da4aa550c88e] received connection request\n2025-07-19 23:50:03.701 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:50:03.734 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3087afbe-444b-4fc1-8ea8-da4aa550c88e] socks forwarding established\n2025-07-19 23:50:03.778 [info] [command][c9a947bf-d0d5-482b-a1dc-9ca4bb4d329c] Process exited with code 0\n2025-07-19 23:50:03.778 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3087afbe-444b-4fc1-8ea8-da4aa550c88e] socks connection closed\n2025-07-19 23:50:03.779 [info] [command][c9a947bf-d0d5-482b-a1dc-9ca4bb4d329c] Socket close event received\n2025-07-19 23:50:03.810 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55938 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:51:03.789 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:51:03.790 [info] [command][865d2541-d500-4c71-9691-5223cc345f3d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""865d2541-d500-4c71-9691-5223cc345f3d""}\n2025-07-19 23:51:03.791 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][36c77494-fb2a-4cf9-aaf3-b58c2687409e] received connection request\n2025-07-19 23:51:03.792 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\n\n2025-07-19 23:51:03.792 [info] (ssh_tunnel) stderr: debug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:51:03.828 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][36c77494-fb2a-4cf9-aaf3-b58c2687409e] socks forwarding established\n2025-07-19 23:51:03.872 [info] [command][865d2541-d500-4c71-9691-5223cc345f3d] Process exited with code 0\n2025-07-19 23:51:03.873 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][36c77494-fb2a-4cf9-aaf3-b58c2687409e] socks connection closed\n2025-07-19 23:51:03.873 [info] [command][865d2541-d500-4c71-9691-5223cc345f3d] Socket close event received\n2025-07-19 23:51:03.904 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 55956 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:52:03.879 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:52:03.881 [info] [command][11fdd47d-7fc7-4bbf-959f-95af94151f38] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""11fdd47d-7fc7-4bbf-959f-95af94151f38""}\n2025-07-19 23:52:03.882 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f8e89ae9-e3c0-49ce-be47-6eb707e50ca0] received connection request\n2025-07-19 23:52:03.883 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:52:03.914 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f8e89ae9-e3c0-49ce-be47-6eb707e50ca0] socks forwarding established\n2025-07-19 23:52:03.958 [info] [command][11fdd47d-7fc7-4bbf-959f-95af94151f38] Process exited with code 0\n2025-07-19 23:52:03.958 [info] [command][11fdd47d-7fc7-4bbf-959f-95af94151f38] Socket close event received\n2025-07-19 23:52:03.959 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f8e89ae9-e3c0-49ce-be47-6eb707e50ca0] socks connection closed\n2025-07-19 23:52:03.991 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56003 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:53:03.964 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:53:03.966 [info] [command][58d87a43-6bb0-4466-bd37-0ba27ddd4121] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""58d87a43-6bb0-4466-bd37-0ba27ddd4121""}\n2025-07-19 23:53:03.967 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e994bc0e-0fc6-4892-a4b8-1775ce4a1d46] received connection request\n2025-07-19 23:53:03.968 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:53:03.999 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e994bc0e-0fc6-4892-a4b8-1775ce4a1d46] socks forwarding established\n2025-07-19 23:53:04.042 [info] [command][58d87a43-6bb0-4466-bd37-0ba27ddd4121] Process exited with code 0\n2025-07-19 23:53:04.042 [info] [command][58d87a43-6bb0-4466-bd37-0ba27ddd4121] Socket close event received\n2025-07-19 23:53:04.043 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e994bc0e-0fc6-4892-a4b8-1775ce4a1d46] socks connection closed\n2025-07-19 23:53:04.072 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56021 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:54:04.047 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:54:04.049 [info] [command][d139c253-0698-478b-9275-f4b2b0863a91] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d139c253-0698-478b-9275-f4b2b0863a91""}\n2025-07-19 23:54:04.049 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d373a1b9-4a64-4888-838a-233064c8c43e] received connection request\n2025-07-19 23:54:04.050 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:54:04.081 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d373a1b9-4a64-4888-838a-233064c8c43e] socks forwarding established\n2025-07-19 23:54:04.126 [info] [command][d139c253-0698-478b-9275-f4b2b0863a91] Process exited with code 0\n2025-07-19 23:54:04.126 [info] [command][d139c253-0698-478b-9275-f4b2b0863a91] Socket close event received\n2025-07-19 23:54:04.126 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d373a1b9-4a64-4888-838a-233064c8c43e] socks connection closed\n2025-07-19 23:54:04.156 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56038 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:55:04.129 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:55:04.131 [info] [command][e4ee2dd1-2f8c-4580-abb5-e8e9ef3e04df] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e4ee2dd1-2f8c-4580-abb5-e8e9ef3e04df""}\n2025-07-19 23:55:04.132 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e936c5d1-113a-425e-8728-206298dbe090] received connection request\n2025-07-19 23:55:04.133 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:55:04.168 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e936c5d1-113a-425e-8728-206298dbe090] socks forwarding established\n2025-07-19 23:55:04.208 [info] [command][e4ee2dd1-2f8c-4580-abb5-e8e9ef3e04df] Process exited with code 0\n2025-07-19 23:55:04.208 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e936c5d1-113a-425e-8728-206298dbe090] socks connection closed\n2025-07-19 23:55:04.208 [info] [command][e4ee2dd1-2f8c-4580-abb5-e8e9ef3e04df] Socket close event received\n2025-07-19 23:55:04.240 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56067 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:56:04.218 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:56:04.220 [info] [command][fa3c824f-9468-4899-a02f-a6237b002acb] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""fa3c824f-9468-4899-a02f-a6237b002acb""}\n2025-07-19 23:56:04.221 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d0da9a70-d56d-49e5-a89b-447e3dcce263] received connection request\n2025-07-19 23:56:04.224 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:56:04.259 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d0da9a70-d56d-49e5-a89b-447e3dcce263] socks forwarding established\n2025-07-19 23:56:04.301 [info] [command][fa3c824f-9468-4899-a02f-a6237b002acb] Process exited with code 0\n2025-07-19 23:56:04.301 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d0da9a70-d56d-49e5-a89b-447e3dcce263] socks connection closed\n2025-07-19 23:56:04.302 [info] [command][fa3c824f-9468-4899-a02f-a6237b002acb] Socket close event received\n2025-07-19 23:56:04.331 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56090 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:57:04.311 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:57:04.313 [info] [command][8faca939-5f7d-4f40-bcb1-7bd3a9dd46b7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8faca939-5f7d-4f40-bcb1-7bd3a9dd46b7""}\n2025-07-19 23:57:04.314 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8ad7b01a-92f9-4c33-a700-66a4693a493c] received connection request\n2025-07-19 23:57:04.315 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:57:04.345 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8ad7b01a-92f9-4c33-a700-66a4693a493c] socks forwarding established\n2025-07-19 23:57:04.390 [info] [command][8faca939-5f7d-4f40-bcb1-7bd3a9dd46b7] Process exited with code 0\n2025-07-19 23:57:04.390 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8ad7b01a-92f9-4c33-a700-66a4693a493c] socks connection closed\n2025-07-19 23:57:04.390 [info] [command][8faca939-5f7d-4f40-bcb1-7bd3a9dd46b7] Socket close event received\n2025-07-19 23:57:04.420 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56137 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:58:04.399 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:58:04.402 [info] [command][c12a6298-961d-4e71-ba75-e018d686433e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c12a6298-961d-4e71-ba75-e018d686433e""}\n2025-07-19 23:58:04.402 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][636390db-21b3-45af-aedb-fa8abdbfbf35] received connection request\n2025-07-19 23:58:04.403 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:58:04.434 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][636390db-21b3-45af-aedb-fa8abdbfbf35] socks forwarding established\n2025-07-19 23:58:04.479 [info] [command][c12a6298-961d-4e71-ba75-e018d686433e] Process exited with code 0\n2025-07-19 23:58:04.479 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][636390db-21b3-45af-aedb-fa8abdbfbf35] socks connection closed\n2025-07-19 23:58:04.480 [info] [command][c12a6298-961d-4e71-ba75-e018d686433e] Socket close event received\n2025-07-19 23:58:04.508 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56161 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-19 23:59:04.487 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-19 23:59:04.489 [info] [command][35a90f1b-50e1-4c8c-8412-6c6066c1f7dd] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""35a90f1b-50e1-4c8c-8412-6c6066c1f7dd""}\n2025-07-19 23:59:04.490 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][7b184d54-449a-4094-baa5-4f472f3fd9dc] received connection request\n2025-07-19 23:59:04.490 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-19 23:59:04.526 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7b184d54-449a-4094-baa5-4f472f3fd9dc] socks forwarding established\n2025-07-19 23:59:04.568 [info] [command][35a90f1b-50e1-4c8c-8412-6c6066c1f7dd] Process exited with code 0\n2025-07-19 23:59:04.568 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][7b184d54-449a-4094-baa5-4f472f3fd9dc] socks connection closed\n2025-07-19 23:59:04.568 [info] [command][35a90f1b-50e1-4c8c-8412-6c6066c1f7dd] Socket close event received\n2025-07-19 23:59:04.596 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56183 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:00:04.579 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:00:04.581 [info] [command][29448842-a946-4cea-ab8f-996ec319c8a1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""29448842-a946-4cea-ab8f-996ec319c8a1""}\n2025-07-20 00:00:04.582 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b8c701a6-916b-4bfe-a8e7-e6f97a923631] received connection request\n2025-07-20 00:00:04.582 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:00:04.618 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b8c701a6-916b-4bfe-a8e7-e6f97a923631] socks forwarding established\n2025-07-20 00:00:04.663 [info] [command][29448842-a946-4cea-ab8f-996ec319c8a1] Process exited with code 0\n2025-07-20 00:00:04.663 [info] [command][29448842-a946-4cea-ab8f-996ec319c8a1] Socket close event received\n2025-07-20 00:00:04.665 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b8c701a6-916b-4bfe-a8e7-e6f97a923631] socks connection closed\n2025-07-20 00:00:04.695 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56214 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:01:04.667 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:01:04.669 [info] [command][5c0c2457-fa06-41dd-9b6d-c9d181bf8e28] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5c0c2457-fa06-41dd-9b6d-c9d181bf8e28""}\n2025-07-20 00:01:04.670 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ed5762d1-a6b3-495d-a5e0-015068cb9ad5] received connection request\n2025-07-20 00:01:04.670 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:01:04.703 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed5762d1-a6b3-495d-a5e0-015068cb9ad5] socks forwarding established\n2025-07-20 00:01:04.748 [info] [command][5c0c2457-fa06-41dd-9b6d-c9d181bf8e28] Process exited with code 0\n2025-07-20 00:01:04.749 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed5762d1-a6b3-495d-a5e0-015068cb9ad5] socks connection closed\n2025-07-20 00:01:04.749 [info] [command][5c0c2457-fa06-41dd-9b6d-c9d181bf8e28] Socket close event received\n2025-07-20 00:01:04.778 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56231 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:02:04.752 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:02:04.755 [info] [command][0dd584a6-a103-44da-8d10-d9f4a2b677fe] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0dd584a6-a103-44da-8d10-d9f4a2b677fe""}\n2025-07-20 00:02:04.756 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3ae5447d-fbb1-4aec-9b99-fecd9cf1b6f0] received connection request\n2025-07-20 00:02:04.756 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:02:04.791 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3ae5447d-fbb1-4aec-9b99-fecd9cf1b6f0] socks forwarding established\n2025-07-20 00:02:04.835 [info] [command][0dd584a6-a103-44da-8d10-d9f4a2b677fe] Process exited with code 0\n2025-07-20 00:02:04.836 [info] [command][0dd584a6-a103-44da-8d10-d9f4a2b677fe] Socket close event received\n2025-07-20 00:02:04.836 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3ae5447d-fbb1-4aec-9b99-fecd9cf1b6f0] socks connection closed\n2025-07-20 00:02:04.869 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56282 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:03:04.840 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:03:04.842 [info] [command][3fab067c-edc5-424e-a4f8-c28942bcec8c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""3fab067c-edc5-424e-a4f8-c28942bcec8c""}\n2025-07-20 00:03:04.843 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1ce80280-c75a-4951-9f33-0e67eda06d7b] received connection request\n2025-07-20 00:03:04.844 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:03:04.876 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1ce80280-c75a-4951-9f33-0e67eda06d7b] socks forwarding established\n2025-07-20 00:03:04.920 [info] [command][3fab067c-edc5-424e-a4f8-c28942bcec8c] Process exited with code 0\n2025-07-20 00:03:04.920 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1ce80280-c75a-4951-9f33-0e67eda06d7b] socks connection closed\n2025-07-20 00:03:04.921 [info] [command][3fab067c-edc5-424e-a4f8-c28942bcec8c] Socket close event received\n2025-07-20 00:03:04.951 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56304 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:04:04.931 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:04:04.934 [info] [command][874a168b-5fa9-4651-9d94-4a020b6cc90a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""874a168b-5fa9-4651-9d94-4a020b6cc90a""}\n2025-07-20 00:04:04.934 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][173e751c-9e51-4673-a172-c55f70699e69] received connection request\n2025-07-20 00:04:04.935 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:04:04.968 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][173e751c-9e51-4673-a172-c55f70699e69] socks forwarding established\n2025-07-20 00:04:05.012 [info] [command][874a168b-5fa9-4651-9d94-4a020b6cc90a] Process exited with code 0\n2025-07-20 00:04:05.013 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][173e751c-9e51-4673-a172-c55f70699e69] socks connection closed\n2025-07-20 00:04:05.013 [info] [command][874a168b-5fa9-4651-9d94-4a020b6cc90a] Socket close event received\n2025-07-20 00:04:05.042 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56324 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:05:05.019 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:05:05.020 [info] [command][2d5ef35b-0eb7-4804-ae60-8d4a1cf3fd4b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2d5ef35b-0eb7-4804-ae60-8d4a1cf3fd4b""}\n2025-07-20 00:05:05.020 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][134f3296-0a2f-4dc1-85a5-4e1800d7d654] received connection request\n2025-07-20 00:05:05.021 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:05:05.051 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][134f3296-0a2f-4dc1-85a5-4e1800d7d654] socks forwarding established\n2025-07-20 00:05:05.096 [info] [command][2d5ef35b-0eb7-4804-ae60-8d4a1cf3fd4b] Process exited with code 0\n2025-07-20 00:05:05.097 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][134f3296-0a2f-4dc1-85a5-4e1800d7d654] socks connection closed\n2025-07-20 00:05:05.097 [info] [command][2d5ef35b-0eb7-4804-ae60-8d4a1cf3fd4b] Socket close event received\n2025-07-20 00:05:05.127 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56371 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:06:05.099 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:06:05.101 [info] [command][310d47a2-412b-423c-bc96-862e80e94983] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""310d47a2-412b-423c-bc96-862e80e94983""}\n2025-07-20 00:06:05.101 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][2103f516-5cef-4d90-960b-7e8c3e17af4f] received connection request\n2025-07-20 00:06:05.101 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:06:05.133 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2103f516-5cef-4d90-960b-7e8c3e17af4f] socks forwarding established\n2025-07-20 00:06:05.175 [info] [command][310d47a2-412b-423c-bc96-862e80e94983] Process exited with code 0\n2025-07-20 00:06:05.175 [info] [command][310d47a2-412b-423c-bc96-862e80e94983] Socket close event received\n2025-07-20 00:06:05.176 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][2103f516-5cef-4d90-960b-7e8c3e17af4f] socks connection closed\n2025-07-20 00:06:05.205 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56395 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:07:05.179 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:07:05.182 [info] [command][c1584883-ab7b-44bf-8624-19c6fccd4dac] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c1584883-ab7b-44bf-8624-19c6fccd4dac""}\n2025-07-20 00:07:05.183 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][87569ff3-1b1b-4b75-bf87-a122fa797cd2] received connection request\n2025-07-20 00:07:05.183 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:07:05.217 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][87569ff3-1b1b-4b75-bf87-a122fa797cd2] socks forwarding established\n2025-07-20 00:07:05.261 [info] [command][c1584883-ab7b-44bf-8624-19c6fccd4dac] Process exited with code 0\n2025-07-20 00:07:05.262 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][87569ff3-1b1b-4b75-bf87-a122fa797cd2] socks connection closed\n2025-07-20 00:07:05.262 [info] [command][c1584883-ab7b-44bf-8624-19c6fccd4dac] Socket close event received\n2025-07-20 00:07:05.292 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56441 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:08:05.272 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:08:05.273 [info] [command][6e04935f-ea42-43ef-9016-1d3dc831d8e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6e04935f-ea42-43ef-9016-1d3dc831d8e4""}\n2025-07-20 00:08:05.274 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1e39c406-d6ea-4b19-a856-8aee9a79fcd8] received connection request\n2025-07-20 00:08:05.275 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:08:05.308 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1e39c406-d6ea-4b19-a856-8aee9a79fcd8] socks forwarding established\n2025-07-20 00:08:05.354 [info] [command][6e04935f-ea42-43ef-9016-1d3dc831d8e4] Process exited with code 0\n2025-07-20 00:08:05.354 [info] [command][6e04935f-ea42-43ef-9016-1d3dc831d8e4] Socket close event received\n2025-07-20 00:08:05.355 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1e39c406-d6ea-4b19-a856-8aee9a79fcd8] socks connection closed\n2025-07-20 00:08:05.384 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56462 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:09:05.361 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:09:05.364 [info] [command][1e02328d-7760-49f8-b4f0-5747c0de8042] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1e02328d-7760-49f8-b4f0-5747c0de8042""}\n2025-07-20 00:09:05.364 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e06c2201-0d3d-4c62-9798-94fa37a2be8c] received connection request\n2025-07-20 00:09:05.365 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:09:05.398 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e06c2201-0d3d-4c62-9798-94fa37a2be8c] socks forwarding established\n2025-07-20 00:09:05.439 [info] [command][1e02328d-7760-49f8-b4f0-5747c0de8042] Process exited with code 0\n2025-07-20 00:09:05.439 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e06c2201-0d3d-4c62-9798-94fa37a2be8c] socks connection closed\n2025-07-20 00:09:05.440 [info] [command][1e02328d-7760-49f8-b4f0-5747c0de8042] Socket close event received\n2025-07-20 00:09:05.470 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56478 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:10:05.445 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:10:05.448 [info] [command][35f3e9f2-4b93-4420-83db-a2f8cccb654c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""35f3e9f2-4b93-4420-83db-a2f8cccb654c""}\n2025-07-20 00:10:05.448 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4d179f96-cd4f-4ba6-956c-400a575f3ad4] received connection request\n2025-07-20 00:10:05.449 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:10:05.481 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4d179f96-cd4f-4ba6-956c-400a575f3ad4] socks forwarding established\n2025-07-20 00:10:05.575 [info] [command][35f3e9f2-4b93-4420-83db-a2f8cccb654c] Process exited with code 0\n2025-07-20 00:10:05.575 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4d179f96-cd4f-4ba6-956c-400a575f3ad4] socks connection closed\n2025-07-20 00:10:05.575 [info] [command][35f3e9f2-4b93-4420-83db-a2f8cccb654c] Socket close event received\n2025-07-20 00:10:05.604 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56514 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:11:05.579 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:11:05.582 [info] [command][bcb3161b-0b52-47b5-bc77-0b9606d16664] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""bcb3161b-0b52-47b5-bc77-0b9606d16664""}\n2025-07-20 00:11:05.582 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ed143543-7b58-43d5-a160-e652e2af2b24] received connection request\n2025-07-20 00:11:05.583 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:11:05.632 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed143543-7b58-43d5-a160-e652e2af2b24] socks forwarding established\n2025-07-20 00:11:05.680 [info] [command][bcb3161b-0b52-47b5-bc77-0b9606d16664] Process exited with code 0\n2025-07-20 00:11:05.681 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ed143543-7b58-43d5-a160-e652e2af2b24] socks connection closed\n2025-07-20 00:11:05.681 [info] [command][bcb3161b-0b52-47b5-bc77-0b9606d16664] Socket close event received\n2025-07-20 00:11:05.712 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56534 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:12:05.690 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:12:05.692 [info] [command][f681529a-af75-4af6-8044-544f4a86786e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f681529a-af75-4af6-8044-544f4a86786e""}\n2025-07-20 00:12:05.693 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][cb46f629-8368-4c76-b0ea-97e2d3389c49] received connection request\n2025-07-20 00:12:05.694 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:12:05.730 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cb46f629-8368-4c76-b0ea-97e2d3389c49] socks forwarding established\n2025-07-20 00:12:05.775 [info] [command][f681529a-af75-4af6-8044-544f4a86786e] Process exited with code 0\n2025-07-20 00:12:05.775 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][cb46f629-8368-4c76-b0ea-97e2d3389c49] socks connection closed\n2025-07-20 00:12:05.775 [info] [command][f681529a-af75-4af6-8044-544f4a86786e] Socket close event received\n2025-07-20 00:12:05.806 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56580 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:13:05.786 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:13:05.788 [info] [command][54930871-b8dc-42d3-8fc8-8f34913f95e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""54930871-b8dc-42d3-8fc8-8f34913f95e4""}\n2025-07-20 00:13:05.789 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][366959fe-bb99-49f5-9eca-c3e843443630] received connection request\n2025-07-20 00:13:05.790 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:13:05.828 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][366959fe-bb99-49f5-9eca-c3e843443630] socks forwarding established\n2025-07-20 00:13:05.868 [info] [command][54930871-b8dc-42d3-8fc8-8f34913f95e4] Process exited with code 0\n2025-07-20 00:13:05.869 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][366959fe-bb99-49f5-9eca-c3e843443630] socks connection closed\n2025-07-20 00:13:05.869 [info] [command][54930871-b8dc-42d3-8fc8-8f34913f95e4] Socket close event received\n2025-07-20 00:13:05.900 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56603 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:14:05.879 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:14:05.882 [info] [command][7f61c854-1263-4082-b609-39625e4c3fd7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7f61c854-1263-4082-b609-39625e4c3fd7""}\n2025-07-20 00:14:05.882 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][4b508422-d9bf-4eeb-8a9e-39c369fa6364] received connection request\n2025-07-20 00:14:05.883 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:14:05.921 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4b508422-d9bf-4eeb-8a9e-39c369fa6364] socks forwarding established\n2025-07-20 00:14:05.964 [info] [command][7f61c854-1263-4082-b609-39625e4c3fd7] Process exited with code 0\n2025-07-20 00:14:05.964 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][4b508422-d9bf-4eeb-8a9e-39c369fa6364] socks connection closed\n2025-07-20 00:14:05.964 [info] [command][7f61c854-1263-4082-b609-39625e4c3fd7] Socket close event received\n2025-07-20 00:14:05.994 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56623 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:15:05.974 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:15:05.977 [info] [command][1001d621-0d3b-469b-8ae8-529ab7fb231f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1001d621-0d3b-469b-8ae8-529ab7fb231f""}\n2025-07-20 00:15:05.978 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3374b586-9f6c-4dba-8ca7-24b26fb392f2] received connection request\n2025-07-20 00:15:05.978 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:15:06.014 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3374b586-9f6c-4dba-8ca7-24b26fb392f2] socks forwarding established\n2025-07-20 00:15:06.059 [info] [command][1001d621-0d3b-469b-8ae8-529ab7fb231f] Process exited with code 0\n2025-07-20 00:15:06.060 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3374b586-9f6c-4dba-8ca7-24b26fb392f2] socks connection closed\n2025-07-20 00:15:06.060 [info] [command][1001d621-0d3b-469b-8ae8-529ab7fb231f] Socket close event received\n2025-07-20 00:15:06.089 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56653 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:16:06.070 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:16:06.072 [info] [command][f2e87980-b3f6-4103-86a0-88f0af53378a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f2e87980-b3f6-4103-86a0-88f0af53378a""}\n2025-07-20 00:16:06.073 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][49cb1900-4a5a-4c5d-861c-d60ee428f1c0] received connection request\n2025-07-20 00:16:06.073 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:16:06.108 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][49cb1900-4a5a-4c5d-861c-d60ee428f1c0] socks forwarding established\n2025-07-20 00:16:06.150 [info] [command][f2e87980-b3f6-4103-86a0-88f0af53378a] Process exited with code 0\n2025-07-20 00:16:06.150 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][49cb1900-4a5a-4c5d-861c-d60ee428f1c0] socks connection closed\n2025-07-20 00:16:06.150 [info] [command][f2e87980-b3f6-4103-86a0-88f0af53378a] Socket close event received\n2025-07-20 00:16:06.181 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56673 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:17:06.158 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:17:06.160 [info] [command][1a259bcf-df93-4cd4-a072-ce4ba10d945c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1a259bcf-df93-4cd4-a072-ce4ba10d945c""}\n2025-07-20 00:17:06.160 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b3cdb46c-ef6c-43e7-a60f-fd95611a3304] received connection request\n2025-07-20 00:17:06.161 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:17:06.194 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b3cdb46c-ef6c-43e7-a60f-fd95611a3304] socks forwarding established\n2025-07-20 00:17:06.244 [info] [command][1a259bcf-df93-4cd4-a072-ce4ba10d945c] Process exited with code 0\n2025-07-20 00:17:06.244 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b3cdb46c-ef6c-43e7-a60f-fd95611a3304] socks connection closed\n2025-07-20 00:17:06.244 [info] [command][1a259bcf-df93-4cd4-a072-ce4ba10d945c] Socket close event received\n2025-07-20 00:17:06.273 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56721 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:18:06.254 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:18:06.256 [info] [command][0cd8b2f1-ae4a-4085-b1d2-103b7a78e9ed] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0cd8b2f1-ae4a-4085-b1d2-103b7a78e9ed""}\n2025-07-20 00:18:06.256 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a7d40dce-00ba-4067-9d6a-fd66ab56ac0d] received connection request\n2025-07-20 00:18:06.257 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:18:06.290 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a7d40dce-00ba-4067-9d6a-fd66ab56ac0d] socks forwarding established\n2025-07-20 00:18:06.337 [info] [command][0cd8b2f1-ae4a-4085-b1d2-103b7a78e9ed] Process exited with code 0\n2025-07-20 00:18:06.337 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a7d40dce-00ba-4067-9d6a-fd66ab56ac0d] socks connection closed\n2025-07-20 00:18:06.337 [info] [command][0cd8b2f1-ae4a-4085-b1d2-103b7a78e9ed] Socket close event received\n2025-07-20 00:18:06.366 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56739 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:19:06.348 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:19:06.349 [info] [command][87ba71b1-26ee-4c2e-b205-bd6d6d8ccbc1] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""87ba71b1-26ee-4c2e-b205-bd6d6d8ccbc1""}\n2025-07-20 00:19:06.350 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f2bf6b12-307d-472f-bb9e-f8f06fff3cc2] received connection request\n2025-07-20 00:19:06.351 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:19:06.386 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f2bf6b12-307d-472f-bb9e-f8f06fff3cc2] socks forwarding established\n2025-07-20 00:19:06.432 [info] [command][87ba71b1-26ee-4c2e-b205-bd6d6d8ccbc1] Process exited with code 0\n2025-07-20 00:19:06.432 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f2bf6b12-307d-472f-bb9e-f8f06fff3cc2] socks connection closed\n2025-07-20 00:19:06.433 [info] [command][87ba71b1-26ee-4c2e-b205-bd6d6d8ccbc1] Socket close event received\n2025-07-20 00:19:06.464 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56761 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:20:06.437 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:20:06.440 [info] [command][8d45a49a-5b72-4d5f-8f80-76d8b38118af] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""8d45a49a-5b72-4d5f-8f80-76d8b38118af""}\n2025-07-20 00:20:06.441 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0532c9fa-6869-45b1-a7a2-d69ae1c244f1] received connection request\n2025-07-20 00:20:06.442 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:20:06.477 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0532c9fa-6869-45b1-a7a2-d69ae1c244f1] socks forwarding established\n2025-07-20 00:20:06.522 [info] [command][8d45a49a-5b72-4d5f-8f80-76d8b38118af] Process exited with code 0\n2025-07-20 00:20:06.523 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0532c9fa-6869-45b1-a7a2-d69ae1c244f1] socks connection closed\n2025-07-20 00:20:06.523 [info] [command][8d45a49a-5b72-4d5f-8f80-76d8b38118af] Socket close event received\n2025-07-20 00:20:06.554 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56798 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:21:06.527 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:21:06.529 [info] [command][12eb3e20-27d2-4062-9756-3b443e7ec7a8] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""12eb3e20-27d2-4062-9756-3b443e7ec7a8""}\n2025-07-20 00:21:06.530 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b77ac3aa-7b4e-4e72-8d6c-e326e6d97944] received connection request\n2025-07-20 00:21:06.530 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:21:06.565 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b77ac3aa-7b4e-4e72-8d6c-e326e6d97944] socks forwarding established\n2025-07-20 00:21:06.609 [info] [command][12eb3e20-27d2-4062-9756-3b443e7ec7a8] Process exited with code 0\n2025-07-20 00:21:06.609 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b77ac3aa-7b4e-4e72-8d6c-e326e6d97944] socks connection closed\n2025-07-20 00:21:06.609 [info] [command][12eb3e20-27d2-4062-9756-3b443e7ec7a8] Socket close event received\n2025-07-20 00:21:06.639 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56819 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:22:06.614 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:22:06.616 [info] [command][32511d10-c6b9-4ac1-9e12-fe9967d0697c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""32511d10-c6b9-4ac1-9e12-fe9967d0697c""}\n2025-07-20 00:22:06.617 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5d581855-9c4b-4509-a81c-0a385c970810] received connection request\n2025-07-20 00:22:06.617 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:22:06.650 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5d581855-9c4b-4509-a81c-0a385c970810] socks forwarding established\n2025-07-20 00:22:06.690 [info] [command][32511d10-c6b9-4ac1-9e12-fe9967d0697c] Process exited with code 0\n2025-07-20 00:22:06.691 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5d581855-9c4b-4509-a81c-0a385c970810] socks connection closed\n2025-07-20 00:22:06.691 [info] [command][32511d10-c6b9-4ac1-9e12-fe9967d0697c] Socket close event received\n2025-07-20 00:22:06.723 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56865 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:23:06.700 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:23:06.702 [info] [command][cdebc762-b78c-4682-9b5c-d8d9366fba7c] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""cdebc762-b78c-4682-9b5c-d8d9366fba7c""}\n2025-07-20 00:23:06.703 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d17847b3-7a14-4559-b3a8-5316b93a86f3] received connection request\n2025-07-20 00:23:06.705 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:23:06.744 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d17847b3-7a14-4559-b3a8-5316b93a86f3] socks forwarding established\n2025-07-20 00:23:06.789 [info] [command][cdebc762-b78c-4682-9b5c-d8d9366fba7c] Process exited with code 0\n2025-07-20 00:23:06.789 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d17847b3-7a14-4559-b3a8-5316b93a86f3] socks connection closed\n2025-07-20 00:23:06.790 [info] [command][cdebc762-b78c-4682-9b5c-d8d9366fba7c] Socket close event received\n2025-07-20 00:23:06.819 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56886 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:24:06.792 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:24:06.793 [info] [command][0b9fe828-8e16-4a97-8264-aa6fb93de912] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0b9fe828-8e16-4a97-8264-aa6fb93de912""}\n2025-07-20 00:24:06.794 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c6eecab5-b2e6-4b9a-b7de-b4a4dcf1d452] received connection request\n2025-07-20 00:24:06.795 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:24:06.829 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c6eecab5-b2e6-4b9a-b7de-b4a4dcf1d452] socks forwarding established\n2025-07-20 00:24:06.873 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c6eecab5-b2e6-4b9a-b7de-b4a4dcf1d452] socks connection closed\n2025-07-20 00:24:06.873 [info] [command][0b9fe828-8e16-4a97-8264-aa6fb93de912] Process exited with code 0\n2025-07-20 00:24:06.873 [info] [command][0b9fe828-8e16-4a97-8264-aa6fb93de912] Socket close event received\n2025-07-20 00:24:06.902 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56905 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:25:06.883 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:25:06.886 [info] [command][99544795-abe4-4221-88c5-91ef75584376] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""99544795-abe4-4221-88c5-91ef75584376""}\n2025-07-20 00:25:06.887 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ec190c57-fb6b-4546-9e1c-366e557db329] received connection request\n2025-07-20 00:25:06.887 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:25:06.920 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ec190c57-fb6b-4546-9e1c-366e557db329] socks forwarding established\n2025-07-20 00:25:06.968 [info] [command][99544795-abe4-4221-88c5-91ef75584376] Process exited with code 0\n2025-07-20 00:25:06.969 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ec190c57-fb6b-4546-9e1c-366e557db329] socks connection closed\n2025-07-20 00:25:06.969 [info] [command][99544795-abe4-4221-88c5-91ef75584376] Socket close event received\n2025-07-20 00:25:06.997 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56936 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:26:06.978 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:26:06.981 [info] [command][07bf0470-b0e0-494f-b394-1c65906d0ec5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""07bf0470-b0e0-494f-b394-1c65906d0ec5""}\n2025-07-20 00:26:06.981 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e22734f0-6939-4cfb-9365-459ac36bce85] received connection request\n2025-07-20 00:26:06.982 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:26:07.015 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e22734f0-6939-4cfb-9365-459ac36bce85] socks forwarding established\n2025-07-20 00:26:07.054 [info] [command][07bf0470-b0e0-494f-b394-1c65906d0ec5] Process exited with code 0\n2025-07-20 00:26:07.055 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e22734f0-6939-4cfb-9365-459ac36bce85] socks connection closed\n2025-07-20 00:26:07.055 [info] [command][07bf0470-b0e0-494f-b394-1c65906d0ec5] Socket close event received\n2025-07-20 00:26:07.087 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 56961 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:27:07.064 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:27:07.067 [info] [command][aff1f802-f30b-4e39-bb33-63b96404ed48] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""aff1f802-f30b-4e39-bb33-63b96404ed48""}\n2025-07-20 00:27:07.067 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][140c4771-c014-4ea3-8eb9-1c1ad2cd54d1] received connection request\n2025-07-20 00:27:07.068 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:27:07.106 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][140c4771-c014-4ea3-8eb9-1c1ad2cd54d1] socks forwarding established\n2025-07-20 00:27:07.148 [info] [command][aff1f802-f30b-4e39-bb33-63b96404ed48] Process exited with code 0\n2025-07-20 00:27:07.148 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][140c4771-c014-4ea3-8eb9-1c1ad2cd54d1] socks connection closed\n2025-07-20 00:27:07.148 [info] [command][aff1f802-f30b-4e39-bb33-63b96404ed48] Socket close event received\n2025-07-20 00:27:07.180 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57005 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:28:07.158 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:28:07.160 [info] [command][c4e245cf-9547-477b-a310-10568b5e8c63] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c4e245cf-9547-477b-a310-10568b5e8c63""}\n2025-07-20 00:28:07.161 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0bbac8a4-d741-459a-ba26-9ef456f4cece] received connection request\n2025-07-20 00:28:07.161 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:28:07.198 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0bbac8a4-d741-459a-ba26-9ef456f4cece] socks forwarding established\n2025-07-20 00:28:07.244 [info] [command][c4e245cf-9547-477b-a310-10568b5e8c63] Process exited with code 0\n2025-07-20 00:28:07.244 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0bbac8a4-d741-459a-ba26-9ef456f4cece] socks connection closed\n2025-07-20 00:28:07.245 [info] [command][c4e245cf-9547-477b-a310-10568b5e8c63] Socket close event received\n2025-07-20 00:28:07.275 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57027 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:29:07.253 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:29:07.255 [info] [command][83e72124-a258-48cd-9afe-e00168f1915b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""83e72124-a258-48cd-9afe-e00168f1915b""}\n2025-07-20 00:29:07.256 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][a9f4683f-deea-440f-83d5-b639ec947029] received connection request\n2025-07-20 00:29:07.257 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:29:07.293 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a9f4683f-deea-440f-83d5-b639ec947029] socks forwarding established\n2025-07-20 00:29:07.338 [info] [command][83e72124-a258-48cd-9afe-e00168f1915b] Process exited with code 0\n2025-07-20 00:29:07.339 [info] [command][83e72124-a258-48cd-9afe-e00168f1915b] Socket close event received\n2025-07-20 00:29:07.339 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][a9f4683f-deea-440f-83d5-b639ec947029] socks connection closed\n2025-07-20 00:29:07.368 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57047 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:30:07.340 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:30:07.341 [info] [command][6a660884-c874-473b-b8d5-05cfecbda135] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6a660884-c874-473b-b8d5-05cfecbda135""}\n2025-07-20 00:30:07.342 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][acb49e16-a0f5-4ca3-9c28-71886eee9d58] received connection request\n2025-07-20 00:30:07.343 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:30:07.373 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][acb49e16-a0f5-4ca3-9c28-71886eee9d58] socks forwarding established\n2025-07-20 00:30:07.417 [info] [command][6a660884-c874-473b-b8d5-05cfecbda135] Process exited with code 0\n2025-07-20 00:30:07.417 [info] [command][6a660884-c874-473b-b8d5-05cfecbda135] Socket close event received\n2025-07-20 00:30:07.418 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][acb49e16-a0f5-4ca3-9c28-71886eee9d58] socks connection closed\n2025-07-20 00:30:07.448 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57083 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:31:07.426 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:31:07.427 [info] [command][a965b6ff-a6ce-4296-87dd-041c4b5dacb5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a965b6ff-a6ce-4296-87dd-041c4b5dacb5""}\n2025-07-20 00:31:07.428 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][245ea41e-f632-427d-877f-91e54a611bdf] received connection request\n2025-07-20 00:31:07.428 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:31:07.460 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][245ea41e-f632-427d-877f-91e54a611bdf] socks forwarding established\n2025-07-20 00:31:07.509 [info] [command][a965b6ff-a6ce-4296-87dd-041c4b5dacb5] Process exited with code 0\n2025-07-20 00:31:07.509 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][245ea41e-f632-427d-877f-91e54a611bdf] socks connection closed\n2025-07-20 00:31:07.509 [info] [command][a965b6ff-a6ce-4296-87dd-041c4b5dacb5] Socket close event received\n2025-07-20 00:31:07.540 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57103 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:32:07.511 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:32:07.514 [info] [command][23cd489e-fc82-4423-89b3-5ab8464a8711] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""23cd489e-fc82-4423-89b3-5ab8464a8711""}\n2025-07-20 00:32:07.515 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][09cd5317-092b-4fd6-b6d5-fb24e5f88363] received connection request\n2025-07-20 00:32:07.515 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:32:07.549 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][09cd5317-092b-4fd6-b6d5-fb24e5f88363] socks forwarding established\n2025-07-20 00:32:07.593 [info] [command][23cd489e-fc82-4423-89b3-5ab8464a8711] Process exited with code 0\n2025-07-20 00:32:07.593 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][09cd5317-092b-4fd6-b6d5-fb24e5f88363] socks connection closed\n2025-07-20 00:32:07.593 [info] [command][23cd489e-fc82-4423-89b3-5ab8464a8711] Socket close event received\n2025-07-20 00:32:07.624 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57146 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:33:07.603 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:33:07.605 [info] [command][e12cfb16-8db5-485f-a686-50e72a9814b4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e12cfb16-8db5-485f-a686-50e72a9814b4""}\n2025-07-20 00:33:07.606 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c4bda2fd-7958-49c6-b254-e6c668284ccd] received connection request\n2025-07-20 00:33:07.607 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:33:07.645 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c4bda2fd-7958-49c6-b254-e6c668284ccd] socks forwarding established\n2025-07-20 00:33:07.682 [info] [command][e12cfb16-8db5-485f-a686-50e72a9814b4] Process exited with code 0\n2025-07-20 00:33:07.682 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c4bda2fd-7958-49c6-b254-e6c668284ccd] socks connection closed\n2025-07-20 00:33:07.682 [info] [command][e12cfb16-8db5-485f-a686-50e72a9814b4] Socket close event received\n2025-07-20 00:33:07.712 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57167 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:34:07.684 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:34:07.686 [info] [command][2a4be200-35db-49c5-86c9-b125f554668b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2a4be200-35db-49c5-86c9-b125f554668b""}\n2025-07-20 00:34:07.687 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][5a3c5289-86d8-4811-9028-10253a4597fe] received connection request\n2025-07-20 00:34:07.688 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:34:07.725 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5a3c5289-86d8-4811-9028-10253a4597fe] socks forwarding established\n2025-07-20 00:34:07.770 [info] [command][2a4be200-35db-49c5-86c9-b125f554668b] Process exited with code 0\n2025-07-20 00:34:07.771 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][5a3c5289-86d8-4811-9028-10253a4597fe] socks connection closed\n2025-07-20 00:34:07.771 [info] [command][2a4be200-35db-49c5-86c9-b125f554668b] Socket close event received\n2025-07-20 00:34:07.800 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57191 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:35:07.781 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:35:07.783 [info] [command][19cfc1dd-202a-494b-8ae9-72ef2a40f661] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""19cfc1dd-202a-494b-8ae9-72ef2a40f661""}\n2025-07-20 00:35:07.784 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][55f344fc-8b37-4381-96c4-e6d04057f2f9] received connection request\n2025-07-20 00:35:07.785 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:35:07.816 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][55f344fc-8b37-4381-96c4-e6d04057f2f9] socks forwarding established\n2025-07-20 00:35:07.858 [info] [command][19cfc1dd-202a-494b-8ae9-72ef2a40f661] Process exited with code 0\n2025-07-20 00:35:07.859 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][55f344fc-8b37-4381-96c4-e6d04057f2f9] socks connection closed\n2025-07-20 00:35:07.859 [info] [command][19cfc1dd-202a-494b-8ae9-72ef2a40f661] Socket close event received\n2025-07-20 00:35:07.888 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57224 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:36:07.866 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:36:07.868 [info] [command][a5fd04b2-1f9a-4525-a308-d4a053130471] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""a5fd04b2-1f9a-4525-a308-d4a053130471""}\n2025-07-20 00:36:07.869 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ad40708a-e936-4054-87b8-fed214389692] received connection request\n2025-07-20 00:36:07.870 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:36:07.903 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ad40708a-e936-4054-87b8-fed214389692] socks forwarding established\n2025-07-20 00:36:07.941 [info] [command][a5fd04b2-1f9a-4525-a308-d4a053130471] Process exited with code 0\n2025-07-20 00:36:07.942 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ad40708a-e936-4054-87b8-fed214389692] socks connection closed\n2025-07-20 00:36:07.942 [info] [command][a5fd04b2-1f9a-4525-a308-d4a053130471] Socket close event received\n2025-07-20 00:36:07.975 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57245 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:37:07.952 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:37:07.954 [info] [command][5aa5931a-3fcc-4b57-88a9-9409c87f95e6] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""5aa5931a-3fcc-4b57-88a9-9409c87f95e6""}\n2025-07-20 00:37:07.955 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][8591eff0-da2b-46b4-918f-cb1d1b61777d] received connection request\n2025-07-20 00:37:07.955 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:37:07.989 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8591eff0-da2b-46b4-918f-cb1d1b61777d] socks forwarding established\n2025-07-20 00:37:08.039 [info] [command][5aa5931a-3fcc-4b57-88a9-9409c87f95e6] Process exited with code 0\n2025-07-20 00:37:08.039 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][8591eff0-da2b-46b4-918f-cb1d1b61777d] socks connection closed\n2025-07-20 00:37:08.039 [info] [command][5aa5931a-3fcc-4b57-88a9-9409c87f95e6] Socket close event received\n2025-07-20 00:37:08.069 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57291 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:38:08.040 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:38:08.042 [info] [command][c794ff2e-8553-499d-a88e-36a212e0f224] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c794ff2e-8553-499d-a88e-36a212e0f224""}\n2025-07-20 00:38:08.044 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][d0d8d722-e047-4685-879b-8324913f66b7] received connection request\n2025-07-20 00:38:08.045 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:38:08.076 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d0d8d722-e047-4685-879b-8324913f66b7] socks forwarding established\n2025-07-20 00:38:08.127 [info] [command][c794ff2e-8553-499d-a88e-36a212e0f224] Process exited with code 0\n2025-07-20 00:38:08.127 [info] [command][c794ff2e-8553-499d-a88e-36a212e0f224] Socket close event received\n2025-07-20 00:38:08.128 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][d0d8d722-e047-4685-879b-8324913f66b7] socks connection closed\n2025-07-20 00:38:08.159 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57311 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:39:08.129 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:39:08.131 [info] [command][c2c54999-06ca-4a4f-9e39-ee037a00c964] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""c2c54999-06ca-4a4f-9e39-ee037a00c964""}\n2025-07-20 00:39:08.132 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][dd8cee0b-357b-4985-b913-ae239f2d88b4] received connection request\n2025-07-20 00:39:08.132 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:39:08.167 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dd8cee0b-357b-4985-b913-ae239f2d88b4] socks forwarding established\n2025-07-20 00:39:08.212 [info] [command][c2c54999-06ca-4a4f-9e39-ee037a00c964] Process exited with code 0\n2025-07-20 00:39:08.212 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][dd8cee0b-357b-4985-b913-ae239f2d88b4] socks connection closed\n2025-07-20 00:39:08.212 [info] [command][c2c54999-06ca-4a4f-9e39-ee037a00c964] Socket close event received\n2025-07-20 00:39:08.243 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57327 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:40:08.222 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:40:08.225 [info] [command][b1b3b1c9-9dac-4d75-ba8a-d8262cca3391] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b1b3b1c9-9dac-4d75-ba8a-d8262cca3391""}\n2025-07-20 00:40:08.225 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][979356d6-d886-4a06-96c1-56daada80aa0] received connection request\n2025-07-20 00:40:08.226 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:40:08.260 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][979356d6-d886-4a06-96c1-56daada80aa0] socks forwarding established\n2025-07-20 00:40:08.304 [info] [command][b1b3b1c9-9dac-4d75-ba8a-d8262cca3391] Process exited with code 0\n2025-07-20 00:40:08.305 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][979356d6-d886-4a06-96c1-56daada80aa0] socks connection closed\n2025-07-20 00:40:08.305 [info] [command][b1b3b1c9-9dac-4d75-ba8a-d8262cca3391] Socket close event received\n2025-07-20 00:40:08.336 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57361 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:41:08.308 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:41:08.309 [info] [command][f979febd-c73f-49e7-a114-84e177a6282f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""f979febd-c73f-49e7-a114-84e177a6282f""}\n2025-07-20 00:41:08.310 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][e6ea8b6f-6204-41fc-afc7-cb893cbecdee] received connection request\n2025-07-20 00:41:08.311 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:41:08.347 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e6ea8b6f-6204-41fc-afc7-cb893cbecdee] socks forwarding established\n2025-07-20 00:41:08.385 [info] [command][f979febd-c73f-49e7-a114-84e177a6282f] Process exited with code 0\n2025-07-20 00:41:08.386 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][e6ea8b6f-6204-41fc-afc7-cb893cbecdee] socks connection closed\n2025-07-20 00:41:08.386 [info] [command][f979febd-c73f-49e7-a114-84e177a6282f] Socket close event received\n2025-07-20 00:41:08.416 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57382 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:42:08.396 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:42:08.398 [info] [command][ac844b52-369b-4f3b-94b5-63d047c6458b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""ac844b52-369b-4f3b-94b5-63d047c6458b""}\n2025-07-20 00:42:08.399 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][3e9eb5c0-09bc-48d6-80a8-6bcb42b765e9] received connection request\n2025-07-20 00:42:08.400 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:42:08.433 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3e9eb5c0-09bc-48d6-80a8-6bcb42b765e9] socks forwarding established\n2025-07-20 00:42:08.477 [info] [command][ac844b52-369b-4f3b-94b5-63d047c6458b] Process exited with code 0\n2025-07-20 00:42:08.477 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][3e9eb5c0-09bc-48d6-80a8-6bcb42b765e9] socks connection closed\n2025-07-20 00:42:08.478 [info] [command][ac844b52-369b-4f3b-94b5-63d047c6458b] Socket close event received\n2025-07-20 00:42:08.508 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57428 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:43:08.487 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:43:08.489 [info] [command][7f928313-f156-43c0-bfdd-f728e1f4243b] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""7f928313-f156-43c0-bfdd-f728e1f4243b""}\n2025-07-20 00:43:08.490 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][ffbc9495-54e9-4d0f-87ba-f5891b558b62] received connection request\n2025-07-20 00:43:08.491 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:43:08.523 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ffbc9495-54e9-4d0f-87ba-f5891b558b62] socks forwarding established\n2025-07-20 00:43:08.567 [info] [command][7f928313-f156-43c0-bfdd-f728e1f4243b] Process exited with code 0\n2025-07-20 00:43:08.568 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][ffbc9495-54e9-4d0f-87ba-f5891b558b62] socks connection closed\n2025-07-20 00:43:08.568 [info] [command][7f928313-f156-43c0-bfdd-f728e1f4243b] Socket close event received\n2025-07-20 00:43:08.598 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57449 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:44:08.577 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:44:08.579 [info] [command][6c5e82c0-c9ed-43f2-8ace-de388c04f53a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6c5e82c0-c9ed-43f2-8ace-de388c04f53a""}\n2025-07-20 00:44:08.580 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][9e617460-057e-4c0b-a685-ffeeb171859c] received connection request\n2025-07-20 00:44:08.581 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:44:08.617 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9e617460-057e-4c0b-a685-ffeeb171859c] socks forwarding established\n2025-07-20 00:44:08.657 [info] [command][6c5e82c0-c9ed-43f2-8ace-de388c04f53a] Process exited with code 0\n2025-07-20 00:44:08.658 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][9e617460-057e-4c0b-a685-ffeeb171859c] socks connection closed\n2025-07-20 00:44:08.658 [info] [command][6c5e82c0-c9ed-43f2-8ace-de388c04f53a] Socket close event received\n2025-07-20 00:44:08.687 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57467 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:45:08.667 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:45:08.670 [info] [command][0c168edb-ddf3-4495-aea4-fd9713f3e811] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""0c168edb-ddf3-4495-aea4-fd9713f3e811""}\n2025-07-20 00:45:08.671 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1ecb91a5-5bfe-4ccf-891c-593a1f817eac] received connection request\n2025-07-20 00:45:08.672 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:45:08.709 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1ecb91a5-5bfe-4ccf-891c-593a1f817eac] socks forwarding established\n2025-07-20 00:45:08.754 [info] [command][0c168edb-ddf3-4495-aea4-fd9713f3e811] Process exited with code 0\n2025-07-20 00:45:08.755 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1ecb91a5-5bfe-4ccf-891c-593a1f817eac] socks connection closed\n2025-07-20 00:45:08.755 [info] [command][0c168edb-ddf3-4495-aea4-fd9713f3e811] Socket close event received\n2025-07-20 00:45:08.788 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57497 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:46:08.759 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:46:08.761 [info] [command][1b774f65-397d-408b-b707-e09cfb81e97f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1b774f65-397d-408b-b707-e09cfb81e97f""}\n2025-07-20 00:46:08.762 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][f8bee203-2622-4880-9daf-41e096dff50d] received connection request\n2025-07-20 00:46:08.763 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:46:08.795 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f8bee203-2622-4880-9daf-41e096dff50d] socks forwarding established\n2025-07-20 00:46:08.832 [info] [command][1b774f65-397d-408b-b707-e09cfb81e97f] Process exited with code 0\n2025-07-20 00:46:08.833 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][f8bee203-2622-4880-9daf-41e096dff50d] socks connection closed\n2025-07-20 00:46:08.833 [info] [command][1b774f65-397d-408b-b707-e09cfb81e97f] Socket close event received\n2025-07-20 00:46:08.863 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57517 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:47:08.842 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:47:08.843 [info] [command][2e4caca8-aa2b-4a29-ae18-6f644fd675b5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2e4caca8-aa2b-4a29-ae18-6f644fd675b5""}\n2025-07-20 00:47:08.844 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][0c966cd2-8478-45f5-a7fe-f24f2b723e2d] received connection request\n2025-07-20 00:47:08.845 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:47:08.877 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0c966cd2-8478-45f5-a7fe-f24f2b723e2d] socks forwarding established\n2025-07-20 00:47:08.921 [info] [command][2e4caca8-aa2b-4a29-ae18-6f644fd675b5] Process exited with code 0\n2025-07-20 00:47:08.921 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][0c966cd2-8478-45f5-a7fe-f24f2b723e2d] socks connection closed\n2025-07-20 00:47:08.921 [info] [command][2e4caca8-aa2b-4a29-ae18-6f644fd675b5] Socket close event received\n2025-07-20 00:47:08.950 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57565 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:48:08.930 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:48:08.932 [info] [command][6ba2f596-97b3-4a88-907e-639b5baf77ba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6ba2f596-97b3-4a88-907e-639b5baf77ba""}\n2025-07-20 00:48:08.933 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][35182ae1-541c-4152-b9da-0bf825ef2b87] received connection request\n2025-07-20 00:48:08.934 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:48:08.965 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][35182ae1-541c-4152-b9da-0bf825ef2b87] socks forwarding established\n2025-07-20 00:48:09.011 [info] [command][6ba2f596-97b3-4a88-907e-639b5baf77ba] Process exited with code 0\n2025-07-20 00:48:09.011 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][35182ae1-541c-4152-b9da-0bf825ef2b87] socks connection closed\n2025-07-20 00:48:09.011 [info] [command][6ba2f596-97b3-4a88-907e-639b5baf77ba] Socket close event received\n2025-07-20 00:48:09.041 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57587 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:49:09.020 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:49:09.021 [info] [command][898aac22-b12e-4597-83f9-a0e54f8ae62f] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""898aac22-b12e-4597-83f9-a0e54f8ae62f""}\n2025-07-20 00:49:09.022 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][133cbd5b-690e-4296-9cec-ed9ff00555d1] received connection request\n2025-07-20 00:49:09.023 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:49:09.055 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][133cbd5b-690e-4296-9cec-ed9ff00555d1] socks forwarding established\n2025-07-20 00:49:09.100 [info] [command][898aac22-b12e-4597-83f9-a0e54f8ae62f] Process exited with code 0\n2025-07-20 00:49:09.100 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][133cbd5b-690e-4296-9cec-ed9ff00555d1] socks connection closed\n2025-07-20 00:49:09.101 [info] [command][898aac22-b12e-4597-83f9-a0e54f8ae62f] Socket close event received\n2025-07-20 00:49:09.131 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57604 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:50:09.104 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:50:09.106 [info] [command][b974fc64-6022-4f17-a485-1364341fb3c3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""b974fc64-6022-4f17-a485-1364341fb3c3""}\n2025-07-20 00:50:09.107 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][03f79018-286b-48a0-ad95-3e209e545a94] received connection request\n2025-07-20 00:50:09.107 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:50:09.145 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][03f79018-286b-48a0-ad95-3e209e545a94] socks forwarding established\n2025-07-20 00:50:09.189 [info] [command][b974fc64-6022-4f17-a485-1364341fb3c3] Process exited with code 0\n2025-07-20 00:50:09.189 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][03f79018-286b-48a0-ad95-3e209e545a94] socks connection closed\n2025-07-20 00:50:09.190 [info] [command][b974fc64-6022-4f17-a485-1364341fb3c3] Socket close event received\n2025-07-20 00:50:09.219 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57639 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:51:09.198 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:51:09.202 [info] [command][2656af1d-e161-4c9e-b7a9-ffb71b636845] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2656af1d-e161-4c9e-b7a9-ffb71b636845""}\n2025-07-20 00:51:09.202 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][85d2963e-cec9-411b-bf7c-e04ef3860f89] received connection request\n2025-07-20 00:51:09.203 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:51:09.303 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][85d2963e-cec9-411b-bf7c-e04ef3860f89] socks forwarding established\n2025-07-20 00:51:09.350 [info] [command][2656af1d-e161-4c9e-b7a9-ffb71b636845] Process exited with code 0\n2025-07-20 00:51:09.350 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][85d2963e-cec9-411b-bf7c-e04ef3860f89] socks connection closed\n2025-07-20 00:51:09.350 [info] [command][2656af1d-e161-4c9e-b7a9-ffb71b636845] Socket close event received\n2025-07-20 00:51:09.380 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57657 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:52:09.358 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:52:09.360 [info] [command][1186c06c-c663-4ef4-b4f7-a9b5d3f30cba] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""1186c06c-c663-4ef4-b4f7-a9b5d3f30cba""}\n2025-07-20 00:52:09.360 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][1b9743df-32ab-489a-baac-9e04821572bb] received connection request\n2025-07-20 00:52:09.361 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:52:09.391 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1b9743df-32ab-489a-baac-9e04821572bb] socks forwarding established\n2025-07-20 00:52:09.439 [info] [command][1186c06c-c663-4ef4-b4f7-a9b5d3f30cba] Process exited with code 0\n2025-07-20 00:52:09.439 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][1b9743df-32ab-489a-baac-9e04821572bb] socks connection closed\n2025-07-20 00:52:09.439 [info] [command][1186c06c-c663-4ef4-b4f7-a9b5d3f30cba] Socket close event received\n2025-07-20 00:52:09.469 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57704 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:53:09.439 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:53:09.441 [info] [command][df47b1ac-f619-4941-be93-a6d22850799d] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""df47b1ac-f619-4941-be93-a6d22850799d""}\n2025-07-20 00:53:09.441 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][c59ed4e7-80c6-4be7-8716-6160cd1d9942] received connection request\n2025-07-20 00:53:09.442 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:53:09.474 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c59ed4e7-80c6-4be7-8716-6160cd1d9942] socks forwarding established\n2025-07-20 00:53:09.518 [info] [command][df47b1ac-f619-4941-be93-a6d22850799d] Process exited with code 0\n2025-07-20 00:53:09.518 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][c59ed4e7-80c6-4be7-8716-6160cd1d9942] socks connection closed\n2025-07-20 00:53:09.519 [info] [command][df47b1ac-f619-4941-be93-a6d22850799d] Socket close event received\n2025-07-20 00:53:09.549 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57727 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:54:09.522 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:54:09.524 [info] [command][6be07671-cb9b-451b-b512-360388f3ced5] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6be07671-cb9b-451b-b512-360388f3ced5""}\n2025-07-20 00:54:09.525 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][76984718-a54f-429b-968d-b201a790ed9c] received connection request\n2025-07-20 00:54:09.526 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:54:09.566 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][76984718-a54f-429b-968d-b201a790ed9c] socks forwarding established\n2025-07-20 00:54:09.614 [info] [command][6be07671-cb9b-451b-b512-360388f3ced5] Process exited with code 0\n2025-07-20 00:54:09.614 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][76984718-a54f-429b-968d-b201a790ed9c] socks connection closed\n2025-07-20 00:54:09.614 [info] [command][6be07671-cb9b-451b-b512-360388f3ced5] Socket close event received\n2025-07-20 00:54:09.646 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57745 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:55:09.618 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:55:09.620 [info] [command][6c4978aa-75c5-4456-8218-b38423e9b387] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""6c4978aa-75c5-4456-8218-b38423e9b387""}\n2025-07-20 00:55:09.620 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][663a49ec-14a5-4734-98b4-584fb5dcc4aa] received connection request\n2025-07-20 00:55:09.621 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:55:09.656 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][663a49ec-14a5-4734-98b4-584fb5dcc4aa] socks forwarding established\n2025-07-20 00:55:09.703 [info] [command][6c4978aa-75c5-4456-8218-b38423e9b387] Process exited with code 0\n2025-07-20 00:55:09.703 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][663a49ec-14a5-4734-98b4-584fb5dcc4aa] socks connection closed\n2025-07-20 00:55:09.703 [info] [command][6c4978aa-75c5-4456-8218-b38423e9b387] Socket close event received\n2025-07-20 00:55:09.736 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57775 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:56:09.711 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:56:09.713 [info] [command][9e4e02ba-9087-4637-9baf-fea314781bc3] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""9e4e02ba-9087-4637-9baf-fea314781bc3""}\n2025-07-20 00:56:09.714 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][31507db2-c4f6-4d53-8fae-c243c3da3722] received connection request\n2025-07-20 00:56:09.715 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:56:09.746 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][31507db2-c4f6-4d53-8fae-c243c3da3722] socks forwarding established\n2025-07-20 00:56:09.793 [info] [command][9e4e02ba-9087-4637-9baf-fea314781bc3] Process exited with code 0\n2025-07-20 00:56:09.794 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][31507db2-c4f6-4d53-8fae-c243c3da3722] socks connection closed\n2025-07-20 00:56:09.794 [info] [command][9e4e02ba-9087-4637-9baf-fea314781bc3] Socket close event received\n2025-07-20 00:56:09.824 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57797 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:57:09.794 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:57:09.797 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][64e5e2bb-6371-4e4a-9bc2-1e2db0c7499f] received connection request\n2025-07-20 00:57:09.797 [info] [command][e0dd111d-b509-4991-9a66-5f2722e4e0f7] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""e0dd111d-b509-4991-9a66-5f2722e4e0f7""}\n2025-07-20 00:57:09.798 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:57:09.830 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][64e5e2bb-6371-4e4a-9bc2-1e2db0c7499f] socks forwarding established\n2025-07-20 00:57:09.876 [info] [command][e0dd111d-b509-4991-9a66-5f2722e4e0f7] Process exited with code 0\n2025-07-20 00:57:09.877 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][64e5e2bb-6371-4e4a-9bc2-1e2db0c7499f] socks connection closed\n2025-07-20 00:57:09.877 [info] [command][e0dd111d-b509-4991-9a66-5f2722e4e0f7] Socket close event received\n2025-07-20 00:57:09.907 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57840 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:58:09.884 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:58:09.887 [info] [command][d6a398c2-e43e-4ee6-8bae-4f638cb0317e] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""d6a398c2-e43e-4ee6-8bae-4f638cb0317e""}\n2025-07-20 00:58:09.887 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:38205][b414c393-0f24-46df-8bbb-ff4c4df150f8] received connection request\n2025-07-20 00:58:09.888 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:58:09.920 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b414c393-0f24-46df-8bbb-ff4c4df150f8] socks forwarding established\n2025-07-20 00:58:09.965 [info] [command][d6a398c2-e43e-4ee6-8bae-4f638cb0317e] Process exited with code 0\n2025-07-20 00:58:09.965 [info] [forwarding][multiplex][127.0.0.1:58259 -> 127.0.0.1:58205 -> 127.0.0.1:38205][b414c393-0f24-46df-8bbb-ff4c4df150f8] socks connection closed\n2025-07-20 00:58:09.966 [info] [command][d6a398c2-e43e-4ee6-8bae-4f638cb0317e] Socket close event received\n2025-07-20 00:58:10.079 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 58205 for 127.0.0.1 port 38205, connect from 127.0.0.1 port 57900 to 127.0.0.1 port 58205, nchannels 6\n\n2025-07-20 00:58:12.267 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #2)\n2025-07-20 00:58:12.267 [info] Received re-connection request; checking to see if existing connection is still valid\n2025-07-20 00:58:12.277 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:34135][87f63609-816e-49a0-9908-7b6d535bd8c1] received connection request\n2025-07-20 00:58:12.288 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:34135][10864d57-161e-4692-bac8-02de212db815] received connection request\n2025-07-20 00:58:12.289 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\ndebug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 6: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:58:15.274 [error] Unexpected error while checking if existing connection is still valid Timeout while checking if existing connection is still valid\n2025-07-20 00:58:15.275 [error] Failed to connect to Cursor server at http://127.0.0.1:58258, attempt 1 of 3 This operation was aborted\n2025-07-20 00:58:15.278 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:34135][2e85b5fe-709a-489d-adfe-d10df43f219e] received connection request\n2025-07-20 00:58:15.279 [info] (ssh_tunnel) stderr: debug1: Connection to port 58205 forwarding to socks port 0 requested.\ndebug1: channel 7: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 00:58:15.352 [info] Terminating existing SSH process with pid: 32272\n2025-07-20 00:58:15.352 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-20 00:58:15.352 [info] (ssh_tunnel): exit: code=null signal=SIGKILL\n2025-07-20 00:58:15.353 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:58:15.353 [error] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][2e85b5fe-709a-489d-adfe-d10df43f219e] error while creating socks forwarding Socket closed\n2025-07-20 00:58:15.354 [error] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][87f63609-816e-49a0-9908-7b6d535bd8c1] error while creating socks forwarding Socket closed\n2025-07-20 00:58:15.354 [error] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][10864d57-161e-4692-bac8-02de212db815] error while creating socks forwarding Socket closed\n2025-07-20 00:58:15.354 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][a09a6874-3e64-4f2c-bb31-642b537e041c] socks connection closed\n2025-07-20 00:58:15.354 [info] [forwarding][code][127.0.0.1:58258 -> 127.0.0.1:58205 -> 127.0.0.1:34135][392059d8-b4c3-46c2-88c5-8dc7f6270339] socks connection closed\n2025-07-20 00:58:15.356 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_36194.sh"" | ssh -v -T -D 57909 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:58:15.356 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:58:15.356 [info] Waiting for server to install via process(46445)...\n2025-07-20 00:58:15.379 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-20 00:58:15.380 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:58:15.381 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:58:15.381 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:58:15.381 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:58:15.384 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:58:15.385 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:58:15.385 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:58:15.385 [info] Retrying connection in 5 seconds...\n2025-07-20 00:58:16.287 [error] Failed to connect to Cursor server at http://127.0.0.1:58258, attempt 2 of 3 This operation was aborted\n2025-07-20 00:58:17.299 [error] Failed to connect to Cursor server at http://127.0.0.1:58258, attempt 3 of 3 This operation was aborted\n2025-07-20 00:58:17.299 [error] Could not re-use existing SOCKS connection; attempting to re-establish SOCKS forwarding Failed to connect to Cursor code server. Ensure that your remote host ssh config has 'AllowTcpForwarding yes' in '/etc/ssh/sshd_config'. Please check the logs and try reinstalling the server.\n2025-07-20 00:58:17.299 [error] Could not re-establish SOCKS forwarding; re-establishing entire SSH connection Remote server is not set\n2025-07-20 00:59:06.635 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_36194.sh\n2025-07-20 00:59:06.636 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:06.637 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_46557.sh"" | ssh -v -T -D 57910 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:06.637 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:06.637 [info] Waiting for server to install via process(46454)...\n2025-07-20 00:59:06.646 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-20 00:59:06.646 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:06.647 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:06.647 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:06.647 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:06.648 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:06.649 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:06.649 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:06.649 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:09.975 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:58259\n2025-07-20 00:59:09.976 [info] [command][2be4fc71-09c5-4f3a-adf1-e623cd91f3e4] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""3a69aa18-0ebb-49cc-9cdb-69a7b368a6b5"",""id"":""2be4fc71-09c5-4f3a-adf1-e623cd91f3e4""}\n2025-07-20 00:59:09.977 [error] [forwarding][multiplex][127.0.0.1:58259 -> unknown}][f7131731-6f81-43da-94cf-7dee2d48fab7] remote server not configured\n2025-07-20 00:59:09.978 [error] [command][2be4fc71-09c5-4f3a-adf1-e623cd91f3e4] Socket error: Error: read ECONNRESET\n2025-07-20 00:59:09.978 [info] [command][2be4fc71-09c5-4f3a-adf1-e623cd91f3e4] Socket close event received\n2025-07-20 00:59:11.657 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_46557.sh\n2025-07-20 00:59:11.657 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:11.660 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_39301.sh"" | ssh -v -T -D 57912 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:11.660 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:11.660 [info] Waiting for server to install via process(46461)...\n2025-07-20 00:59:11.669 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-20 00:59:11.669 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:11.670 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:11.670 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:11.670 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:11.672 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:11.672 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:11.672 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:11.672 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:16.677 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_39301.sh\n2025-07-20 00:59:16.678 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:16.680 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_64827.sh"" | ssh -v -T -D 57913 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:16.680 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:16.680 [info] Waiting for server to install via process(46465)...\n2025-07-20 00:59:16.690 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-20 00:59:16.690 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:16.691 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:16.691 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:16.691 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:16.693 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:16.693 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:16.693 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:16.693 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:21.703 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_64827.sh\n2025-07-20 00:59:21.704 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:21.709 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7809.sh"" | ssh -v -T -D 57914 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:21.709 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:21.709 [info] Waiting for server to install via process(46470)...\n2025-07-20 00:59:21.720 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-20 00:59:21.720 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:21.721 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:21.721 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:21.721 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:21.723 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:21.723 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:21.724 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:21.724 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:26.725 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_7809.sh\n2025-07-20 00:59:26.725 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:26.728 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_61661.sh"" | ssh -v -T -D 57915 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:26.728 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:26.728 [info] Waiting for server to install via process(46474)...\n2025-07-20 00:59:26.740 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-20 00:59:26.740 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:26.740 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:26.740 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:26.740 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:26.742 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:26.743 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:26.743 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:26.743 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:31.753 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_61661.sh\n2025-07-20 00:59:31.754 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:31.759 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_95461.sh"" | ssh -v -T -D 57916 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:31.759 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:31.759 [info] Waiting for server to install via process(46479)...\n2025-07-20 00:59:31.773 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-20 00:59:31.774 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:31.774 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:31.774 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:31.774 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:31.777 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:31.777 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:31.778 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:31.778 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:36.784 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_95461.sh\n2025-07-20 00:59:36.785 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:36.789 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_39712.sh"" | ssh -v -T -D 57917 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:36.789 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:36.789 [info] Waiting for server to install via process(46484)...\n2025-07-20 00:59:36.805 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-20 00:59:36.805 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:36.805 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:36.805 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:36.805 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:36.808 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:36.809 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:36.809 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:36.809 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:41.819 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_39712.sh\n2025-07-20 00:59:41.820 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:41.825 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_59092.sh"" | ssh -v -T -D 57918 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:41.826 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:41.826 [info] Waiting for server to install via process(46495)...\n2025-07-20 00:59:41.845 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-20 00:59:41.845 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:41.845 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:41.845 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:41.846 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:41.848 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:41.848 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:41.849 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:41.849 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:46.859 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_59092.sh\n2025-07-20 00:59:46.860 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:46.867 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_23121.sh"" | ssh -v -T -D 57919 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:46.867 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:46.867 [info] Waiting for server to install via process(46499)...\n2025-07-20 00:59:46.881 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-20 00:59:46.881 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:46.881 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:46.881 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:46.881 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:46.884 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:46.885 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:46.885 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:46.885 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:51.890 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_23121.sh\n2025-07-20 00:59:51.891 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:51.894 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_93148.sh"" | ssh -v -T -D 57920 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:51.895 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:51.895 [info] Waiting for server to install via process(46504)...\n2025-07-20 00:59:51.910 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-20 00:59:51.910 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:51.911 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:51.911 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:51.911 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:51.914 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:51.914 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:51.914 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:51.914 [info] Retrying connection in 5 seconds...\n2025-07-20 00:59:56.917 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_93148.sh\n2025-07-20 00:59:56.918 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 00:59:56.920 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8649.sh"" | ssh -v -T -D 57921 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 00:59:56.920 [info] Started installation script. Waiting for it to finish...\n2025-07-20 00:59:56.921 [info] Waiting for server to install via process(46508)...\n2025-07-20 00:59:56.931 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-20 00:59:56.932 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 00:59:56.932 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 00:59:56.932 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 00:59:56.932 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 00:59:56.934 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 00:59:56.935 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 00:59:56.935 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 00:59:56.935 [info] Retrying connection in 5 seconds...\n2025-07-20 01:00:01.946 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_8649.sh\n2025-07-20 01:00:01.946 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 01:00:01.951 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35680.sh"" | ssh -v -T -D 57922 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 01:00:01.952 [info] Started installation script. Waiting for it to finish...\n2025-07-20 01:00:01.952 [info] Waiting for server to install via process(46514)...\n2025-07-20 01:00:01.968 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-20 01:00:01.968 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 01:00:01.968 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 01:00:01.968 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 01:00:01.968 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 01:00:01.971 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 01:00:01.971 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 01:00:01.972 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 01:00:01.972 [info] Retrying connection in 5 seconds...\n2025-07-20 01:15:40.659 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_35680.sh\n2025-07-20 01:15:40.659 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-RF8nxW/socket.sock\n2025-07-20 01:15:40.661 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6244.sh"" | ssh -v -T -D 57923 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 01:15:40.661 [info] Started installation script. Waiting for it to finish...\n2025-07-20 01:15:40.661 [info] Waiting for server to install via process(46521)...\n2025-07-20 01:15:40.686 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-20 01:15:40.686 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 01:15:40.686 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 01:15:40.686 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 01:15:40.686 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 01:15:40.689 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 01:15:40.689 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 01:15:40.689 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 01:15:40.689 [error] Failed to connect after 14 attempts: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 01:15:40.689 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_6244.sh\n2025-07-20 01:15:40.690 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 12:34:59.032 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-20 12:34:59.055 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-dIdTiu/socket.sock\n2025-07-20 12:34:59.056 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-20 12:34:59.058 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-dIdTiu/socket.sock\n2025-07-20 12:34:59.060 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_492.sh"" | ssh -v -T -D 58600 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 12:34:59.060 [info] Started installation script. Waiting for it to finish...\n2025-07-20 12:34:59.060 [info] Waiting for server to install via process(59869)...\n2025-07-20 12:34:59.065 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\n\n2025-07-20 12:34:59.065 [info] (ssh_tunnel) stderr: debug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 12:34:59.066 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 12:34:59.066 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 12:34:59.067 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\n\n2025-07-20 12:34:59.067 [info] (ssh_tunnel) stderr: debug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 12:34:59.530 [info] (ssh_tunnel) stderr: ssh: connect to host horeka.scc.kit.edu port 22: Undefined error: 0\n\n2025-07-20 12:34:59.531 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 12:34:59.532 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 12:34:59.532 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_492.sh\n2025-07-20 12:34:59.533 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 12:53:34.136 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-20 12:53:34.153 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-13Vn4T/socket.sock\n2025-07-20 12:53:34.153 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-20 12:53:34.156 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-13Vn4T/socket.sock\n2025-07-20 12:53:34.157 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4814.sh"" | ssh -v -T -D 59143 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 12:53:34.158 [info] Started installation script. Waiting for it to finish...\n2025-07-20 12:53:34.158 [info] Waiting for server to install via process(60041)...\n2025-07-20 12:53:34.164 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\n\n2025-07-20 12:53:34.164 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\ndebug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 12:53:34.164 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 12:53:34.164 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 12:53:34.165 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\n\n2025-07-20 12:53:34.165 [info] (ssh_tunnel) stderr: debug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 12:53:34.425 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-20 12:53:34.425 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-20 12:53:34.426 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-20 12:53:34.426 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-20 12:53:34.426 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-20 12:53:34.521 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-20 12:53:34.527 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\n\n2025-07-20 12:53:34.527 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT sent\n\n2025-07-20 12:53:34.726 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-20 12:53:34.727 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-20 12:53:34.784 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-20 12:53:34.786 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-20 12:53:34.790 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\ndebug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\n\n2025-07-20 12:53:34.790 [info] (ssh_tunnel) stderr: debug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\ndebug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-20 12:53:35.086 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-20 12:53:35.274 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-20 12:53:35.279 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\ndebug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \n\n2025-07-20 12:53:35.279 [info] (ssh_tunnel) stderr: debug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-20 12:53:35.893 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-20 12:53:35.949 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-20 12:53:36.184 [info] Askpass server received request: POST /\n2025-07-20 12:53:36.184 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-20 12:53:36.184 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-20 12:58:18.999 [info] (ssh_tunnel) stderr: Connection closed by 141.52.43.17 port 22\n\n2025-07-20 12:58:19.002 [info] (ssh_tunnel): exit: code=255 signal=null\n2025-07-20 12:58:19.004 [error] Error installing server: Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 12:58:19.004 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_4814.sh\n2025-07-20 12:58:19.005 [error] Error resolving SSH authority Failed to install the Cursor Server. Please check the logs for more details.\n2025-07-20 13:17:14.847 [info] Resolving ssh remote authority 'horeka.scc.kit.edu' (Unparsed 'ssh-remote+horeka.scc.kit.edu') (attempt #1)\n2025-07-20 13:17:14.860 [info] SSH askpass server listening on /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-IM9eeF/socket.sock\n2025-07-20 13:17:14.861 [info] Using configured platform linux for remote host horeka.scc.kit.edu\n2025-07-20 13:17:14.863 [info] Using askpass script: /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/launchSSHAskpass.sh with javascript file /Users/franzsrambical/.cursor/extensions/anysphere.remote-ssh-1.0.22/dist/scripts/sshAskClient.js. Askpass handle: /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor-ssh-IM9eeF/socket.sock\n2025-07-20 13:17:14.865 [info] Launching SSH server via shell with command: cat ""/var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_18660.sh"" | ssh -v -T -D 60542 horeka.scc.kit.edu bash --login -c bash\n2025-07-20 13:17:14.865 [info] Started installation script. Waiting for it to finish...\n2025-07-20 13:17:14.865 [info] Waiting for server to install via process(61028)...\n2025-07-20 13:17:14.872 [info] (ssh_tunnel) stderr: OpenSSH_9.9p1, LibreSSL 3.3.6\ndebug1: Reading configuration data /Users/franzsrambical/.ssh/config\ndebug1: /Users/franzsrambical/.ssh/config line 5: Applying options for horeka.scc.kit.edu\n\n2025-07-20 13:17:14.872 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config\n\n2025-07-20 13:17:14.873 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/ssh_config.d/100-macos.conf\ndebug1: /etc/ssh/ssh_config.d/100-macos.conf line 1: Applying options for *\n\n2025-07-20 13:17:14.873 [info] (ssh_tunnel) stderr: debug1: Reading configuration data /etc/ssh/crypto.conf\n\n2025-07-20 13:17:14.873 [info] (ssh_tunnel) stderr: debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling\ndebug1: Connecting to horeka.scc.kit.edu port 22.\n\n2025-07-20 13:17:14.956 [info] (ssh_tunnel) stderr: debug1: Connection established.\n\n2025-07-20 13:17:14.956 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_rsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_rsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ecdsa_sk-cert type -1\n\n2025-07-20 13:17:14.957 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519 type 3\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519-cert type -1\n\n2025-07-20 13:17:14.957 [info] (ssh_tunnel) stderr: debug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_ed25519_sk-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_xmss-cert type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa type -1\ndebug1: identity file /Users/franzsrambical/.ssh/id_dsa-cert type -1\n\n2025-07-20 13:17:14.957 [info] (ssh_tunnel) stderr: debug1: Local version string SSH-2.0-OpenSSH_9.9\n\n2025-07-20 13:17:15.123 [info] (ssh_tunnel) stderr: debug1: Remote protocol version 2.0, remote software version OpenSSH_8.7\ndebug1: compat_banner: match: OpenSSH_8.7 pat OpenSSH* compat 0x04000000\ndebug1: Authenticating to horeka.scc.kit.edu:22 as 'tum_dbd0378'\n\n2025-07-20 13:17:15.125 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\n\n2025-07-20 13:17:15.125 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: SSH2_MSG_KEXINIT sent\n\n2025-07-20 13:17:15.139 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEXINIT received\ndebug1: kex: algorithm: ecdh-sha2-nistp256\ndebug1: kex: host key algorithm: ssh-ed25519\ndebug1: kex: server->client cipher: aes128-gcm@openssh.com MAC: compression: none\ndebug1: kex: client->server cipher: aes128-gcm@openssh.com MAC: compression: none\n\n2025-07-20 13:17:15.139 [info] (ssh_tunnel) stderr: debug1: expecting SSH2_MSG_KEX_ECDH_REPLY\n\n2025-07-20 13:17:15.162 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_KEX_ECDH_REPLY received\ndebug1: Server host key: ssh-ed25519 SHA256:yEe5nJ5hZZ1YbgieWr+phqRZKYbrV7zRe8OR3X03cn0\n\n2025-07-20 13:17:15.163 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /Users/franzsrambical/.ssh/known_hosts2: No such file or directory\n\n2025-07-20 13:17:15.163 [info] (ssh_tunnel) stderr: debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\ndebug1: Host 'horeka.scc.kit.edu' is known and matches the ED25519 host key.\ndebug1: Found key in /Users/franzsrambical/.ssh/known_hosts:14\n\n2025-07-20 13:17:15.168 [info] (ssh_tunnel) stderr: debug1: ssh_packet_send2_wrapped: resetting send seqnr 3\n\n2025-07-20 13:17:15.168 [info] (ssh_tunnel) stderr: debug1: rekey out after 4294967296 blocks\ndebug1: SSH2_MSG_NEWKEYS sent\ndebug1: expecting SSH2_MSG_NEWKEYS\ndebug1: ssh_packet_read_poll2: resetting read seqnr 3\ndebug1: SSH2_MSG_NEWKEYS received\ndebug1: rekey in after 4294967296 blocks\n\n2025-07-20 13:17:15.168 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_EXT_INFO received\ndebug1: kex_ext_info_client_parse: server-sig-algs=\n\n2025-07-20 13:17:15.427 [info] (ssh_tunnel) stderr: debug1: SSH2_MSG_SERVICE_ACCEPT received\n\n2025-07-20 13:17:15.499 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Next authentication method: publickey\n\n2025-07-20 13:17:15.505 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: bound agent to hostkey\n\n2025-07-20 13:17:15.505 [info] (ssh_tunnel) stderr: debug1: get_agent_identities: ssh_fetch_identitylist: agent contains no identities\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_rsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ecdsa_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_ed25519_sk \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_xmss \ndebug1: Will attempt key: /Users/franzsrambical/.ssh/id_dsa \ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_rsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ecdsa_sk\ndebug1: Offering public key: /Users/franzsrambical/.ssh/id_ed25519 ED25519 SHA256:Iq/4xZ7XCaNSqbQ9N2LsZ+UYwGSzaQ+kLJHcOv/9ogQ\n\n2025-07-20 13:17:16.224 [info] (ssh_tunnel) stderr: debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,keyboard-interactive\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_ed25519_sk\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_xmss\ndebug1: Trying private key: /Users/franzsrambical/.ssh/id_dsa\ndebug1: Next authentication method: keyboard-interactive\n\n2025-07-20 13:17:16.251 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-20 13:17:16.350 [info] Askpass server received request: POST /\n2025-07-20 13:17:16.350 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Your OTP: ""}\n2025-07-20 13:17:16.350 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Your OTP: \n2025-07-20 13:17:40.209 [info] (ssh_tunnel) stderr: debug1: read_passphrase: requested to askpass\n\n2025-07-20 13:17:40.310 [info] Askpass server received request: POST /\n2025-07-20 13:17:40.310 [info] Askpass server received request body: {""request"":""(tum_dbd0378@horeka.scc.kit.edu) Password: ""}\n2025-07-20 13:17:40.310 [info] Received SSH askpass request: (tum_dbd0378@horeka.scc.kit.edu) Password: \n2025-07-20 13:17:46.806 [info] (ssh_tunnel) stderr: Authenticated to horeka.scc.kit.edu ([141.52.43.17]:22) using ""keyboard-interactive"".\ndebug1: Local connections to LOCALHOST:60542 forwarded to remote address socks:0\n\n2025-07-20 13:17:46.807 [info] (ssh_tunnel) stderr: debug1: Local forwarding listening on ::1 port 60542.\ndebug1: channel 0: new port-listener [port listener] (inactive timeout: 0)\ndebug1: Local forwarding listening on 127.0.0.1 port 60542.\ndebug1: channel 1: new port-listener [port listener] (inactive timeout: 0)\n\n2025-07-20 13:17:46.809 [info] (ssh_tunnel) stderr: debug1: channel 2: new session [client-session] (inactive timeout: 0)\n\n2025-07-20 13:17:46.809 [info] (ssh_tunnel) stderr: debug1: Requesting no-more-sessions@openssh.com\ndebug1: Entering interactive session.\ndebug1: pledge: filesystem\n\n2025-07-20 13:17:47.437 [info] (ssh_tunnel) stderr: debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\n\n2025-07-20 13:17:47.438 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts for horeka.scc.kit.edu / (none)\n\n2025-07-20 13:17:47.442 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: searching /Users/franzsrambical/.ssh/known_hosts2 for horeka.scc.kit.edu / (none)\n\n2025-07-20 13:17:47.442 [info] (ssh_tunnel) stderr: debug1: client_input_hostkeys: hostkeys file /Users/franzsrambical/.ssh/known_hosts2 does not exist\ndebug1: client_input_hostkeys: no new or deprecated keys from server\n\n2025-07-20 13:17:47.448 [info] (ssh_tunnel) stderr: debug1: Sending environment.\ndebug1: Sending command: bash --login -c bash\ndebug1: pledge: network\n\n2025-07-20 13:17:50.384 [info] (ssh_tunnel) stdout: Using TMP_DIR: /run/user/996262\n\n2025-07-20 13:17:50.642 [info] (ssh_tunnel) stdout: Locking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\nServer script already installed in /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server\nChecking node executable\nv20.18.2\n\n2025-07-20 13:17:50.707 [info] (ssh_tunnel) stdout: Checking for running multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\n\n2025-07-20 13:17:50.896 [info] (ssh_tunnel) stdout: Running multiplex server: \nCreating multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-20 13:17:50.896 [info] (ssh_tunnel) stdout: Creating directory for multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server\n\n2025-07-20 13:17:50.902 [info] (ssh_tunnel) stdout: Writing multiplex server script to /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js\nStarting multiplex server: /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/multiplex-server/45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15.js 44a99d4e-5edb-4c12-8848-d75bc37edc5e\n\n2025-07-20 13:17:50.902 [info] (ssh_tunnel) stdout: Multiplex server started with PID 1352898 and wrote pid to file /run/user/996262/cursor-remote-multiplex.pid.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nReading multiplex server token file /run/user/996262/cursor-remote-multiplex.token.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\nMultiplex server token file found\nReading multiplex server log file /run/user/996262/cursor-remote-multiplex.log.6466bb070dac1873f8109b0fb795a5a2.45e440a0fc5a5d12380c7a83a49ab82c55f715a5d60292da31f8d75730a9ee15\n\n2025-07-20 13:17:52.457 [info] (ssh_tunnel) stdout: Checking for code servers\nCode server script is not running\nCreating code server token file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2\nStarting code server script /home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/bin/cursor-server --start-server --host=127.0.0.1 --port 0 --connection-token-file /run/user/996262/cursor-remote-code.token.6466bb070dac1873f8109b0fb795a5a2 --telemetry-level off --enable-remote-auto-shutdown --accept-server-license-terms &> /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2 &\nCode server started with PID 1352958 and wrote pid to file /run/user/996262/cursor-remote-code.pid.6466bb070dac1873f8109b0fb795a5a2\nCode server log file is /run/user/996262/cursor-remote-code.log.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-20 13:17:52.465 [info] (ssh_tunnel) stdout: f65e4da3d05db75c87943ab5: start\nexitCode==0==\nnodeExecutable==/home/hk-project-p0023960/tum_dbd0378/.cursor-server/bin/a8e95743c5268be73767c46944a71f4465d05c90/node==\nerrorMessage====\nisFatalError==false==\nmultiplexListeningOn==39485==\nmultiplexConnectionToken==44a99d4e-5edb-4c12-8848-d75bc37edc5e==\ncodeListeningOn==41693==\ncodeConnectionToken==3ab0b2fd-c1f5-4398-bc93-3926f5c81f10==\ndetectedPlatform==linux==\narch==x64==\nSSH_AUTH_SOCK====\nf65e4da3d05db75c87943ab5: end\nUnlocking /run/user/996262/cursor-remote-lock.6466bb070dac1873f8109b0fb795a5a2\n\n2025-07-20 13:17:52.470 [info] Server install command exit code: 0\n2025-07-20 13:17:52.470 [info] Deleting local script /var/folders/nn/241fnlwx03d7k7qt2jg98txr0000gn/T/cursor_remote_install_18660.sh\n2025-07-20 13:17:52.472 [info] [forwarding][code] creating new forwarding server\n2025-07-20 13:17:52.472 [info] [forwarding][code] server listening on 127.0.0.1:60564\n2025-07-20 13:17:52.472 [info] [forwarding][code] Set up server\n2025-07-20 13:17:52.472 [info] [remote-ssh] codeListeningOn (remote=[object Object]; local=[object Object]) codeConnectionToken: 3ab0b2fd-c1f5-4398-bc93-3926f5c81f10\n2025-07-20 13:17:52.472 [info] [forwarding][multiplex] creating new forwarding server\n2025-07-20 13:17:52.472 [info] [forwarding][multiplex] server listening on 127.0.0.1:60565\n2025-07-20 13:17:52.472 [info] [forwarding][multiplex] Set up server\n2025-07-20 13:17:52.474 [info] [remote-ssh] multiplexListeningOn (remote=[object Object]; local=[object Object]) multiplexConnectionToken: 44a99d4e-5edb-4c12-8848-d75bc37edc5e\n2025-07-20 13:17:52.474 [info] [remote-ssh] Pinging remote server on port 127.0.0.1:60565\n2025-07-20 13:17:52.477 [info] [command][525b3808-b1ce-41cf-82da-f176bcda41ea] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""44a99d4e-5edb-4c12-8848-d75bc37edc5e"",""id"":""525b3808-b1ce-41cf-82da-f176bcda41ea""}\n2025-07-20 13:17:52.477 [info] [forwarding][multiplex][127.0.0.1:60565 -> 127.0.0.1:39485][56df3de3-b86c-4aa3-ad17-eb83cf178d4d] received connection request\n2025-07-20 13:17:52.479 [info] (ssh_tunnel) stderr: debug1: Connection to port 60542 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 13:17:52.530 [info] [forwarding][multiplex][127.0.0.1:60565 -> 127.0.0.1:60542 -> 127.0.0.1:39485][56df3de3-b86c-4aa3-ad17-eb83cf178d4d] socks forwarding established\n2025-07-20 13:17:52.545 [info] [forwarding][code][127.0.0.1:60564 -> 127.0.0.1:41693][c40edfcd-e48a-4455-9707-209db3ab7fd8] received connection request\n2025-07-20 13:17:52.545 [info] (ssh_tunnel) stderr: debug1: Connection to port 60542 forwarding to socks port 0 requested.\ndebug1: channel 4: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 13:17:52.560 [info] [forwarding][code][127.0.0.1:60564 -> 127.0.0.1:60542 -> 127.0.0.1:41693][c40edfcd-e48a-4455-9707-209db3ab7fd8] socks forwarding established\n2025-07-20 13:17:52.660 [info] [forwarding][multiplex][127.0.0.1:60565 -> 127.0.0.1:60542 -> 127.0.0.1:39485][56df3de3-b86c-4aa3-ad17-eb83cf178d4d] socks connection closed\n2025-07-20 13:17:52.660 [info] [command][525b3808-b1ce-41cf-82da-f176bcda41ea] Process exited with code 0\n2025-07-20 13:17:52.663 [info] Successfully connected to Cursor server at http://127.0.0.1:60564/version\n2025-07-20 13:17:52.663 [info] [execServer][spawn] command: echo, args: 1, options: {}\n2025-07-20 13:17:52.663 [info] [command][525b3808-b1ce-41cf-82da-f176bcda41ea] Socket close event received\n2025-07-20 13:17:52.664 [info] [forwarding][multiplex][127.0.0.1:60565 -> 127.0.0.1:39485][2e7029ed-cb79-4ecd-aa7a-d9c2b6843c14] received connection request\n2025-07-20 13:17:52.664 [info] [command][2ae5bf44-2672-4ef3-a626-75d45109228a] Sending command request: {""command"":""echo"",""args"":[""1""],""env"":{},""token"":""44a99d4e-5edb-4c12-8848-d75bc37edc5e"",""id"":""2ae5bf44-2672-4ef3-a626-75d45109228a""}\n2025-07-20 13:17:52.664 [info] (ssh_tunnel) stderr: debug1: Connection to port 60542 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 13:17:52.674 [info] (ssh_tunnel) stderr: debug1: channel 3: free: direct-tcpip: listening port 60542 for 127.0.0.1 port 39485, connect from 127.0.0.1 port 60567 to 127.0.0.1 port 60542, nchannels 6\n\n2025-07-20 13:17:52.677 [info] [forwarding][multiplex][127.0.0.1:60565 -> 127.0.0.1:60542 -> 127.0.0.1:39485][2e7029ed-cb79-4ecd-aa7a-d9c2b6843c14] socks forwarding established\n2025-07-20 13:17:52.710 [info] [command][2ae5bf44-2672-4ef3-a626-75d45109228a] Process exited with code 0\n2025-07-20 13:17:52.710 [info] Successfully ran 'echo 1' against the multiplex server\n2025-07-20 13:17:52.711 [info] [remote-ssh] Resolved exec server. Socks port: 60542\n2025-07-20 13:17:52.711 [info] [remote-ssh] Resolved authority: {""host"":""127.0.0.1"",""port"":60564,""connectionToken"":""3ab0b2fd-c1f5-4398-bc93-3926f5c81f10"",""extensionHostEnv"":{}}. Socks port: 60542\n2025-07-20 13:17:52.711 [info] [command][2ae5bf44-2672-4ef3-a626-75d45109228a] Socket close event received\n2025-07-20 13:17:52.731 [info] [forwarding][multiplex][127.0.0.1:60565 -> 127.0.0.1:60542 -> 127.0.0.1:39485][2e7029ed-cb79-4ecd-aa7a-d9c2b6843c14] socks connection closed\n2025-07-20 13:17:52.746 [info] (ssh_tunnel) stderr: debug1: channel 5: free: direct-tcpip: listening port 60542 for 127.0.0.1 port 39485, connect from 127.0.0.1 port 60571 to 127.0.0.1 port 60542, nchannels 5\n\n2025-07-20 13:17:52.780 [info] [forwarding][code][127.0.0.1:60564 -> 127.0.0.1:41693][f5fce87b-83e6-49bf-9e5e-ed04936e4893] received connection request\n2025-07-20 13:17:52.780 [info] (ssh_tunnel) stderr: debug1: Connection to port 60542 forwarding to socks port 0 requested.\ndebug1: channel 3: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 13:17:52.794 [info] [forwarding][code][127.0.0.1:60564 -> 127.0.0.1:60542 -> 127.0.0.1:41693][f5fce87b-83e6-49bf-9e5e-ed04936e4893] socks forwarding established\n2025-07-20 13:17:52.849 [info] [forwarding][code][127.0.0.1:60564 -> 127.0.0.1:41693][0c50b0ae-3369-4d1d-96fe-b99335806573] received connection request\n2025-07-20 13:17:52.849 [info] (ssh_tunnel) stderr: debug1: Connection to port 60542 forwarding to socks port 0 requested.\ndebug1: channel 5: new dynamic-tcpip [dynamic-tcpip] (inactive timeout: 0)\n\n2025-07-20 13:17:52.862 [info] [forwarding][code][127.0.0.1:60564 -> 127.0.0.1:60542 -> 127.0.0.1:41693][0c50b0ae-3369-4d1d-96fe-b99335806573] socks forwarding established\n2025-07-20 13:17:53.281 [info] Saved platform linux for remote host horeka.scc.kit.edu\n2025-07-20 13:17:56.431 [info] (ssh_tunnel) stderr: debug1: channel 4: free: direct-tcpip: listening port 60542 for 127.0.0.1 port 41693, connect from 127.0.0.1 port 60569 to 127.0.0.1 port 60542, nchannels 6\n\n2025-07-20 13:17:56.431 [info] [forwarding][code][127.0.0.1:60564 -> 127.0.0.1:60542 -> 127.0.0.1:41693][c40edfcd-e48a-4455-9707-209db3ab7fd8] socks connection closed\n2025-07-20 13:18:00.654 [info] [tunnel-forwarding][localhost:8791 -> localhost:8791] server listening\n2025-07-20 13:18:00.654 [info] Cross binding to [::1]:8791. Originally bound to 127.0.0.1:8791\n2025-07-20 13:18:00.654 [info] [tunnel-forwarding][::1:8791 -> localhost:8791] server listening\n",log,tab +3,1025,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"1:18:05 PM [info] Activating crowd-code\n1:18:05 PM [info] Recording started\n1:18:05 PM [info] Initializing git provider using file system watchers...\n",Log,tab +4,1944,"extension-output-pdoom-org.crowd-code-#1-crowd-code",150,0,"1:18:06 PM [info] Git repository found\n1:18:06 PM [info] Git provider initialized successfully\n1:18:06 PM [info] Initial git state: [object Object]\n",Log,content +5,54995,"plot.ipynb",0,0,"import wandb\nimport pandas as pd\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as mticker\n\n# --- 1. SET YOUR PROJECT DETAILS ---\n# Replace with your entity (username or team name) and project name\nENTITY = ""instant-uv""\nPROJECT = ""jafar""\n\n# --- 2. DEFINE METRIC AND CONFIG KEYS ---\n# The metric you want to plot (e.g., 'train/loss', 'validation_loss')\nMETRIC_NAME = ""loss"" \n\nRUN_TAGS = [""batch-size-scaling"", ""dynamics""]\n\n# --- 3. INITIALIZE WANDB API ---\napi = wandb.Api()\n\n# --- 4. FETCH RUNS ---\n# Construct a filter to get only the runs you care about\nfilters = {""$and"": [{""tags"": tag} for tag in RUN_TAGS]}\n\nruns = api.runs(f""{ENTITY}/{PROJECT}"", filters=filters)\n\nprint(f""Found {len(runs)} runs to process..."")",python,tab +6,55752,"TERMINAL",0,0,"",,terminal_focus +7,57943,"TERMINAL",0,0,"queue",,terminal_command +8,57989,"TERMINAL",0,0,"]633;C",,terminal_output +9,58043,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Sun Jul 20 13:19:03 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)",,terminal_output +10,59087,"TERMINAL",0,0,"4",,terminal_output +11,59494,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +12,61864,"TERMINAL",0,0,"idle",,terminal_command +13,61958,"TERMINAL",0,0,"]633;C",,terminal_output +14,61972,"TERMINAL",0,0,"Partition dev_cpuonly : 11 nodes idle\r\nPartition cpuonly : 300 nodes idle\r\nPartition dev_accelerated : 1 nodes idle\r\nPartition accelerated : 11 nodes idle\r\nPartition dev_accelerated-h100 : 0 nodes idle\r\nPartition accelerated-h100 : 3 nodes idle\r\nPartition large : 8 nodes idle\r\n]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +15,67470,"TERMINAL",0,0,"salloc --nodes=2 --ntasks-per-node=4 --gres=gpu:4 --cpus-per-task=8 --time=9:00:00 --partition=accelerated --account=hk-project-p0023960",,terminal_command +16,67587,"TERMINAL",0,0,"]633;C",,terminal_output +17,67642,"TERMINAL",0,0,"salloc: Pending job allocation 3361551\r\nsalloc: job 3361551 queued and waiting for resources\r\n",,terminal_output +18,81964,"train_tokenizer.py",0,0,"from dataclasses import dataclass, field\nimport os\n\nimport einops\nfrom flax.training import orbax_utils\nfrom flax.training.train_state import TrainState\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax.checkpoint as ocp\nimport numpy as np\nimport dm_pix as pix\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\nimport grain\n\nfrom models.tokenizer import TokenizerVQVAE\nfrom utils.dataloader import get_dataloader\nfrom utils.lr_utils import get_lr_schedule\nfrom utils.parameter_utils import count_parameters_by_component\n\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 300_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = """"\n save_ckpt: bool = False\n restore_ckpt: bool = False\n # Optimization\n vq_beta: float = 0.25\n batch_size: int = 48\n init_lr: float = 0.0\n max_lr: float = 3e-4\n decay_end: float = 0.0\n wsd_decay_steps: int = 20000 # NOTE: wsd_decay_steps will only be used when using a wsd-schedule\n lr_schedule: str = ""wsd"" # supported options: wsd, cos \n warmup_steps: int = 10000\n # Tokenizer\n model_dim: int = 512\n ffn_dim: int = 2048\n latent_dim: int = 32\n num_latents: int = 1024\n patch_size: int = 4\n num_blocks: int = 4\n num_heads: int = 8\n dropout: float = 0.0\n codebook_dropout: float = 0.01\n param_dtype: jnp.dtype = jnp.float32\n dtype: jnp.dtype = jnp.bfloat16\n # Logging\n log: bool = False\n entity: str = """"\n project: str = """"\n name: str = ""train_tokenizer""\n tags: list[str] = field(default_factory=lambda: [""tokenizer""])\n log_interval: int = 5\n log_image_interval: int = 250\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 10000\n log_checkpoint_keep_period: int = 20000\n log_gradients: bool = False\n wandb_id: str = """"\n use_flash_attention: bool = True\n\n\nargs = tyro.cli(Args)\n\n\ndef tokenizer_loss_fn(params, state, inputs):\n # --- Compute loss ---\n # FIXME (f.srambical): Can we even do native int8 training without casting the video at all?\n # FIXME (f.srambical): If the tokenizer is the reason for the dynamics model being memory-bound,\n # should we at least train the tokenizer natively in int8?\n inputs[""videos""] = inputs[""videos""].astype(args.dtype) / 255.0\n outputs = state.apply_fn(\n params,\n inputs,\n training=True,\n rngs={""params"": inputs[""rng""], ""dropout"": inputs[""dropout_rng""]},\n )\n mse = jnp.square(inputs[""videos""] - outputs[""recon""]).mean()\n q_loss = jnp.square(jax.lax.stop_gradient(outputs[""emb""]) - outputs[""z""]).mean()\n commitment_loss = jnp.square(\n outputs[""emb""] - jax.lax.stop_gradient(outputs[""z""])\n ).mean()\n loss = mse + q_loss + args.vq_beta * commitment_loss\n\n # --- Compute validation metrics ---\n gt = inputs[""videos""].clip(0, 1).reshape(-1, *inputs[""videos""].shape[2:])\n recon = outputs[""recon""].clip(0, 1).reshape(-1, *outputs[""recon""].shape[2:])\n psnr = pix.psnr(gt, recon).mean() # type: ignore\n ssim = pix.ssim(gt, recon).mean() # type: ignore\n _, index_counts = jnp.unique_counts(\n jnp.ravel(outputs[""indices""]), size=args.num_latents, fill_value=0\n )\n codebook_usage = (index_counts != 0).mean()\n metrics = dict(\n loss=loss,\n mse=mse,\n q_loss=q_loss,\n commitment_loss=commitment_loss,\n psnr=psnr,\n ssim=ssim,\n codebook_usage=codebook_usage,\n )\n return loss, (outputs[""recon""], metrics)\n\n\n@jax.jit\ndef train_step(state, inputs):\n grad_fn = jax.value_and_grad(tokenizer_loss_fn, has_aux=True, allow_int=True)\n (loss, (recon, metrics)), grads = grad_fn(state.params, state, inputs)\n state = state.apply_gradients(grads=grads)\n if args.log_gradients:\n metrics[""encoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""encoder""]\n )\n metrics[""vq_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""vq""]\n )\n metrics[""decoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""decoder""]\n )\n return state, loss, recon, metrics\n\n\nif __name__ == ""__main__"":\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n per_device_batch_size_for_init = args.batch_size // num_devices\n\n rng = jax.random.PRNGKey(args.seed)\n\n # --- Initialize model ---\n tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.model_dim,\n ffn_dim=args.ffn_dim,\n latent_dim=args.latent_dim,\n num_latents=args.num_latents,\n patch_size=args.patch_size,\n num_blocks=args.num_blocks,\n num_heads=args.num_heads,\n dropout=args.dropout,\n codebook_dropout=args.codebook_dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n )\n rng, _rng = jax.random.split(rng)\n image_shape = (args.image_height, args.image_width, args.image_channels)\n inputs = dict(\n videos=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len, *image_shape),\n dtype=args.dtype,\n ),\n )\n init_params = tokenizer.init(_rng, inputs)\n\n param_counts = count_parameters_by_component(init_params)\n\n if args.log and jax.process_index() == 0:\n wandb_init_kwargs = {\n ""entity"": args.entity,\n ""project"": args.project,\n ""name"": args.name,\n ""tags"": args.tags,\n ""group"": ""debug"",\n ""config"": args,\n }\n\n if args.wandb_id:\n wandb_init_kwargs.update(\n {\n ""id"": args.wandb_id,\n ""resume"": ""allow"",\n }\n )\n wandb.init(**wandb_init_kwargs)\n\n wandb.config.update({""model_param_count"": param_counts})\n\n print(""Parameter counts:"")\n print(param_counts)\n\n # --- Initialize optimizer ---\n lr_schedule = get_lr_schedule(args.lr_schedule, \n args.init_lr, \n args.max_lr, \n args.decay_end, \n args.num_steps, \n args.warmup_steps, \n args.wsd_decay_steps)\n tx = optax.adamw(learning_rate=lr_schedule, b1=0.9, b2=0.9, weight_decay=1e-4, mu_dtype=args.dtype)\n train_state = TrainState.create(apply_fn=tokenizer.apply, params=init_params, tx=tx)\n\n # FIXME: switch to create_hybrid_device_mesh for runs spanning multiple nodes\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n videos_sharding = NamedSharding(mesh, PartitionSpec(""data"", None, None, None, None))\n train_state = jax.device_put(train_state, replicated_sharding)\n\n # --- Initialize checkpoint manager ---\n step = 0\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.StandardSave, ocp.handlers.StandardCheckpointHandler\n )\n handler_registry.add(\n ""model_state"", ocp.args.StandardRestore, ocp.handlers.StandardCheckpointHandler\n )\n handler_registry.add(""dataloader_state"", grain.checkpoint.CheckpointSave, grain.checkpoint.CheckpointHandler) # type: ignore\n handler_registry.add(""dataloader_state"", grain.checkpoint.CheckpointRestore, grain.checkpoint.CheckpointHandler) # type: ignore\n\n checkpoint_options = ocp.CheckpointManagerOptions(\n save_interval_steps=args.log_checkpoint_interval,\n max_to_keep=3,\n keep_period=args.log_checkpoint_keep_period,\n step_format_fixed_length=6,\n cleanup_tmp_directories=True,\n )\n\n checkpoint_manager = ocp.CheckpointManager(\n args.ckpt_dir,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n\n # --- Create DataLoaderIterator from dataloader ---\n array_record_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".array_record"")\n ]\n grain_dataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n args.batch_size,\n *image_shape,\n num_workers=8,\n prefetch_buffer_size=1,\n seed=args.seed,\n )\n initial_state = grain_dataloader._create_initial_state()\n grain_iterator = grain.DataLoaderIterator(grain_dataloader, initial_state)\n\n # --- Restore checkpoint ---\n if args.restore_ckpt:\n abstract_train_state = jax.tree_util.tree_map(\n ocp.utils.to_shape_dtype_struct, train_state\n )\n restored = checkpoint_manager.restore(\n checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.StandardRestore(abstract_train_state),\n dataloader_state=grain.checkpoint.CheckpointRestore(grain_iterator),\n ),\n )\n train_state = restored[""model_state""]\n grain_iterator = restored[""dataloader_state""]\n step = checkpoint_manager.latest_step() or 0\n print(f""Restored dataloader and model state from step {step}"")\n\n # --- TRAIN LOOP ---\n dataloader = (jax.make_array_from_process_local_data(videos_sharding, elem) for elem in grain_iterator) # type: ignore\n print(f""Starting training from step {step}..."")\n while step < args.num_steps:\n for videos in dataloader:\n # --- Train step ---\n rng, _rng, _rng_dropout = jax.random.split(rng, 3)\n\n inputs = dict(videos=videos, rng=_rng, dropout_rng=_rng_dropout)\n train_state, loss, recon, metrics = train_step(train_state, inputs)\n metrics[""lr""] = lr_schedule(step)\n print(f""Step {step}, loss: {loss}"")\n step += 1\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n wandb.log(\n {\n ""loss"": loss,\n ""step"": step,\n **metrics,\n }\n )\n if step % args.log_image_interval == 0:\n gt_seq = inputs[""videos""][0].astype(jnp.float32) / 255.0\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n # NOTE: Process-dependent control flow deliberately happens\n # after indexing operation since it must not contain code\n # sections that lead to cross-accelerator communication.\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[0])),\n recon=wandb.Image(np.asarray(recon_seq[0])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n wandb.log(log_images)\n # --- Checkpointing ---\n if args.save_ckpt and step % args.log_checkpoint_interval == 0:\n checkpoint_manager.save(\n step,\n args=ocp.args.Composite(\n model_state=ocp.args.StandardSave(train_state),\n dataloader_state=grain.checkpoint.CheckpointSave(\n grain_iterator\n ),\n ),\n )\n print(f""Saved checkpoint at step {step}"")\n if step >= args.num_steps:\n break\n\n checkpoint_manager.close()\n",python,tab +19,603862,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.log\n#SBATCH --job-name=train_tokenizer_lr_sweep_1e-4_larger_ffn\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$PWD/checkpoints/$job_name\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --restore_ckpt \\n --save_ckpt \\n --batch_size=96 \\n --ffn_dim=2048 \\n --num_blocks=4 \\n --init_lr=0 \\n --max_lr=1e-4 \\n --decay_end=0.0 \\n --wsd_decay_steps=10000 \\n --num_steps=53000 \\n --log_image_interval=1000 \\n --log_checkpoint_interval=1000 \\n --log \\n --name=mixed-precision-tokenizer-lr-1e-4-larger-ffn \\n --tags tokenizer mixed-precision 1e-4 mixed-precision flash-attention larger-ffn \\n --entity instant-uv \\n --project jafar \\n --data_dir $array_records_dir",shellscript,tab +20,605632,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/%x_%j.log\n#SBATCH --job-name=train_dynamics_lr_1e-4_larger_ffn\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/dynamics-cotraining-modelsize-scaling/$job_name\nmkdir -p $CHECKPOINT_DIR\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/tokenizer-lr-scaling/train_tokenizer_lr_sweep_1e-4\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --save_ckpt \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --tokenizer_ffn_dim=512 \\n --tokenizer_num_blocks=8 \\n --lam_ffn_dim=2048 \\n --lam_num_blocks=4 \\n --dyna_ffn_dim=2048 \\n --dyna_num_blocks=6 \\n --init_lr=0 \\n --max_lr=1.5e-4 \\n --log_image_interval=1000 \\n --log \\n --log_checkpoint_interval=1000 \\n --name=dynamics-lr-1e-4-larger-ffn \\n --tags dynamics lr-1e-4 larger-ffn mixed-precision flash-attention \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir \\n",shellscript,tab +21,607246,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",0,0,"",shellscript,tab +22,611976,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",807,0,"",shellscript,selection_mouse +23,611987,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",806,0,"",shellscript,selection_command +24,613396,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"",Log,tab +25,614848,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",0,0,"",shellscript,tab +26,618138,"TERMINAL",0,0,"",,terminal_focus +27,619771,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",188,0,"",shellscript,selection_mouse +28,620331,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,0,"",shellscript,selection_command +29,620357,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,1,"/",shellscript,selection_command +30,620769,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,91,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.log\n",shellscript,selection_command +31,620872,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,90,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.log",shellscript,selection_command +32,621127,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,89,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.lo",shellscript,selection_command +33,621154,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,88,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.l",shellscript,selection_command +34,621306,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,87,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.",shellscript,selection_command +35,621309,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,86,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j",shellscript,selection_command +36,621311,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,85,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%",shellscript,selection_command +37,621313,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,84,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_",shellscript,selection_command +38,621319,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,83,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x",shellscript,selection_command +39,621454,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,82,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%",shellscript,selection_command +40,621659,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",187,81,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/",shellscript,selection_command +41,621911,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",267,0,"",shellscript,selection_command +42,624443,"TERMINAL",0,0,"cd /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/",,terminal_command +43,624445,"TERMINAL",0,0,"]633;C",,terminal_output +44,624463,"TERMINAL",0,0,"]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +45,625048,"TERMINAL",0,0,"ls",,terminal_command +46,625049,"TERMINAL",0,0,"]633;C",,terminal_output +47,625123,"TERMINAL",0,0,"train_tokenizer_lr_sweep_1e-4_larger_ffn_3352432.log\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_3353639.log\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_3356624.log\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_3357211.log\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3352433.log\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3353627.log\r\n]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +48,652191,"TERMINAL",0,0,"mkdir larger_ffn_tokenizer",,terminal_command +49,652196,"TERMINAL",0,0,"]633;C]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +50,656182,"TERMINAL",0,0,"mkdir larger_ffn_dynamics",,terminal_command +51,656187,"TERMINAL",0,0,"]633;C]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +52,665827,"TERMINAL",0,0,"mv train_tokenizer_lr_sweep_1e-4_larger_ffn_335* larger_ffn_tokenizer/",,terminal_command +53,665828,"TERMINAL",0,0,"]633;C",,terminal_output +54,665845,"TERMINAL",0,0,"]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +55,666580,"TERMINAL",0,0,"ls",,terminal_command +56,666589,"TERMINAL",0,0,"]633;Clarger_ffn_dynamics\r\nlarger_ffn_tokenizer\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3352433.log\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3353627.log\r\n]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +57,673270,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",267,1,"/",shellscript,selection_command +58,673373,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",263,5,"runs/",shellscript,selection_command +59,673763,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",262,6,"-runs/",shellscript,selection_command +60,673926,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",259,9,"big-runs/",shellscript,selection_command +61,674432,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",259,0,"",shellscript,selection_command +62,675775,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",261,0,"",shellscript,selection_command +63,675935,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",262,0,"",shellscript,selection_command +64,676234,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",266,0,"",shellscript,selection_command +65,676725,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",267,0,"",shellscript,selection_command +66,677258,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",268,0,"",shellscript,selection_command +67,677639,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",268,0,"/",shellscript,content +68,677640,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",269,0,"",shellscript,selection_keyboard +69,677782,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",268,0,"",shellscript,selection_command +70,677912,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",377,0,"",shellscript,selection_command +71,678136,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",376,0,"",shellscript,selection_command +72,678907,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",376,0,"/",shellscript,content +73,678908,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",377,0,"",shellscript,selection_keyboard +74,679074,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",376,0,"",shellscript,selection_command +75,679304,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",267,0,"",shellscript,selection_command +76,679693,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",268,0,"",shellscript,selection_command +77,681735,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",268,0,"l",shellscript,content +78,681736,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",269,0,"",shellscript,selection_keyboard +79,681875,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",269,0,"a",shellscript,content +80,681876,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",270,0,"",shellscript,selection_keyboard +81,681878,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",270,0,"r",shellscript,content +82,681879,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",271,0,"",shellscript,selection_keyboard +83,682148,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",271,0,"g",shellscript,content +84,682149,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",272,0,"",shellscript,selection_keyboard +85,682153,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",272,0,"e",shellscript,content +86,682154,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",273,0,"",shellscript,selection_keyboard +87,682273,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",273,0,"r",shellscript,content +88,682274,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",274,0,"",shellscript,selection_keyboard +89,682800,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",274,0,"_",shellscript,content +90,682802,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",275,0,"",shellscript,selection_keyboard +91,682976,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",275,0,"f",shellscript,content +92,682977,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",276,0,"",shellscript,selection_keyboard +93,683152,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",276,0,"f",shellscript,content +94,683154,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",277,0,"",shellscript,selection_keyboard +95,683155,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",277,0,"n",shellscript,content +96,683156,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",278,0,"",shellscript,selection_keyboard +97,683447,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",278,0,"_",shellscript,content +98,683448,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",279,0,"",shellscript,selection_keyboard +99,684091,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",279,0,"t",shellscript,content +100,684092,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",280,0,"",shellscript,selection_keyboard +101,684195,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",280,0,"o",shellscript,content +102,684196,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",281,0,"",shellscript,selection_keyboard +103,684200,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",281,0,"k",shellscript,content +104,684202,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",282,0,"",shellscript,selection_keyboard +105,684271,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",282,0,"e",shellscript,content +106,684272,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",283,0,"",shellscript,selection_keyboard +107,684375,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",283,0,"n",shellscript,content +108,684376,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",284,0,"",shellscript,selection_keyboard +109,684433,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",284,0,"i",shellscript,content +110,684433,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",285,0,"",shellscript,selection_keyboard +111,684504,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",285,0,"z",shellscript,content +112,684505,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",286,0,"",shellscript,selection_keyboard +113,684625,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",286,0,"e",shellscript,content +114,684626,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",287,0,"",shellscript,selection_keyboard +115,684702,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",287,0,"r",shellscript,content +116,684703,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",288,0,"",shellscript,selection_keyboard +117,684937,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",287,0,"",shellscript,selection_command +118,685055,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",405,0,"",shellscript,selection_command +119,685376,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",403,0,"",shellscript,selection_command +120,685672,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",402,0,"",shellscript,selection_command +121,686114,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",401,0,"",shellscript,selection_command +122,686435,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",396,0,"larger_ffn_tokenizer",shellscript,content +123,686440,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",416,0,"",shellscript,selection_command +124,687651,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",299,0,"",shellscript,selection_command +125,697489,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",0,0,"",shellscript,tab +126,699304,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",356,0,"/big-runs/larger_ffn_dynamics",shellscript,content +127,699305,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",259,0,"big-runs/larger_ffn_dynamics/",shellscript,content +128,700232,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",296,0,"",shellscript,selection_command +129,701369,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",294,0,"",shellscript,selection_command +130,701622,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",293,0,"",shellscript,selection_command +131,701652,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",292,0,"",shellscript,selection_command +132,701681,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",291,0,"",shellscript,selection_command +133,701732,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",289,0,"",shellscript,selection_command +134,701754,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",287,0,"",shellscript,selection_command +135,701777,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",268,0,"",shellscript,selection_command +136,701809,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",267,0,"",shellscript,selection_command +137,701844,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",263,0,"",shellscript,selection_command +138,701878,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",262,0,"",shellscript,selection_command +139,701915,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",259,0,"",shellscript,selection_command +140,701950,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",258,0,"",shellscript,selection_command +141,701984,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",248,0,"",shellscript,selection_command +142,702152,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",258,0,"",shellscript,selection_command +143,702403,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",259,0,"",shellscript,selection_command +144,702433,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",262,0,"",shellscript,selection_command +145,702463,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",263,0,"",shellscript,selection_command +146,708143,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",170,0,"",shellscript,selection_command +147,711311,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",298,0,"",shellscript,selection_command +148,711491,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",425,0,"",shellscript,selection_command +149,711671,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",478,0,"",shellscript,selection_command +150,712538,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",479,0,"",shellscript,selection_command +151,712722,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",503,0,"",shellscript,selection_command +152,712725,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",510,0,"",shellscript,selection_command +153,712726,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",511,0,"",shellscript,selection_command +154,712752,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",541,0,"",shellscript,selection_command +155,712889,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",571,0,"",shellscript,selection_command +156,712890,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",597,0,"",shellscript,selection_command +157,713126,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",598,0,"",shellscript,selection_command +158,713225,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",720,0,"",shellscript,selection_command +159,713600,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",721,0,"",shellscript,selection_command +160,713602,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",746,0,"",shellscript,selection_command +161,713604,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",773,0,"",shellscript,selection_command +162,713605,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",774,0,"",shellscript,selection_command +163,713802,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",914,0,"",shellscript,selection_command +164,714206,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",774,0,"",shellscript,selection_command +165,722853,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",895,0,"r",shellscript,content +166,722853,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",891,4,"",shellscript,content +167,722853,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,15,"",shellscript,content +168,723584,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",788,0,"",shellscript,selection_command +169,723901,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",790,0,"",shellscript,selection_command +170,723903,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",794,0,"",shellscript,selection_command +171,723905,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",795,0,"",shellscript,selection_command +172,723927,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",799,0,"",shellscript,selection_command +173,723967,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",800,0,"",shellscript,selection_command +174,723991,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",809,0,"",shellscript,selection_command +175,724103,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",810,0,"",shellscript,selection_command +176,724106,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",817,0,"",shellscript,selection_command +177,724108,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",818,0,"",shellscript,selection_command +178,724134,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",829,0,"",shellscript,selection_command +179,724159,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",830,0,"",shellscript,selection_command +180,724193,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",844,0,"",shellscript,selection_command +181,724229,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",845,0,"",shellscript,selection_command +182,724263,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",856,0,"",shellscript,selection_command +183,724296,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",857,0,"",shellscript,selection_command +184,724426,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",860,0,"",shellscript,selection_command +185,724428,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",861,0,"",shellscript,selection_command +186,724429,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",865,0,"",shellscript,selection_command +187,724433,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",866,0,"",shellscript,selection_command +188,724466,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",874,0,"",shellscript,selection_command +189,725172,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,0,"",shellscript,selection_command +190,725313,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,1,"l",shellscript,selection_command +191,725338,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,2,"lr",shellscript,selection_command +192,725718,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,3,"lr-",shellscript,selection_command +193,725992,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,10,"lr-scaling",shellscript,selection_command +194,726640,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,10,"",shellscript,content +195,727041,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,0,"l",shellscript,content +196,727043,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",876,0,"",shellscript,selection_keyboard +197,727082,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",876,0,"a",shellscript,content +198,727082,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",877,0,"",shellscript,selection_keyboard +199,727222,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",877,0,"r",shellscript,content +200,727223,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",878,0,"",shellscript,selection_keyboard +201,727417,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",878,0,"g",shellscript,content +202,727417,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",879,0,"",shellscript,selection_keyboard +203,727418,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",879,0,"e",shellscript,content +204,727418,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",880,0,"",shellscript,selection_keyboard +205,727444,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",880,0,"r",shellscript,content +206,727444,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",881,0,"",shellscript,selection_keyboard +207,728094,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",881,0,"-",shellscript,content +208,728095,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",882,0,"",shellscript,selection_keyboard +209,728121,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",882,0,"f",shellscript,content +210,728122,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",883,0,"",shellscript,selection_keyboard +211,728270,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",883,0,"f",shellscript,content +212,728271,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",884,0,"",shellscript,selection_keyboard +213,728453,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",884,0,"n",shellscript,content +214,728453,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",885,0,"",shellscript,selection_keyboard +215,728615,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",884,0,"",shellscript,selection_command +216,731241,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",919,0,"",shellscript,selection_command +217,731337,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",921,0,"",shellscript,selection_command +218,731488,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1032,0,"",shellscript,selection_command +219,732288,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1068,0,"_larger-ffn",shellscript,content +220,732288,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1027,11,"",shellscript,content +221,732288,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1018,0,"larger_ffn_",shellscript,content +222,738577,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1039,0,"",shellscript,selection_command +223,739104,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1040,0,"",shellscript,selection_command +224,739786,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1039,0,"",shellscript,selection_command +225,749274,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1038,0,"",shellscript,selection_command +226,749277,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1037,0,"",shellscript,selection_command +227,749279,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1036,0,"",shellscript,selection_command +228,749280,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1035,0,"",shellscript,selection_command +229,749283,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1034,0,"",shellscript,selection_command +230,749284,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1033,0,"",shellscript,selection_command +231,749286,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1032,0,"",shellscript,selection_command +232,749288,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1031,0,"",shellscript,selection_command +233,749290,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1030,0,"",shellscript,selection_command +234,749292,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1029,0,"",shellscript,selection_command +235,749835,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1068,11,"",shellscript,content +236,749854,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1038,0,"-lr-scaling",shellscript,content +237,749856,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1018,11,"",shellscript,content +238,749860,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1029,0,"",shellscript,selection_command +239,750490,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",882,3,"scaling",shellscript,content +240,750503,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,6,"cotraining-modelsize",shellscript,content +241,750505,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",774,0,"",shellscript,selection_command +242,751394,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,20,"lrarge",shellscript,content +243,751401,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",882,7,"ffn",shellscript,content +244,764141,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",882,3,"scaling",shellscript,content +245,764142,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,6,"cotraining-modelsize",shellscript,content +246,764626,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,20,"lrarge",shellscript,content +247,764628,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",882,7,"ffn",shellscript,content +248,764958,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",882,3,"scaling",shellscript,content +249,764960,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,6,"cotraining-modelsize",shellscript,content +250,765113,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",385,29,"",shellscript,content +251,765115,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",259,29,"",shellscript,content +252,765116,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",170,0,"",shellscript,selection_command +253,765633,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",259,0,"big-runs/larger_ffn_dynamics/",shellscript,content +254,765639,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",385,0,"/big-runs/larger_ffn_dynamics",shellscript,content +255,765926,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",875,20,"lrarge",shellscript,content +256,765929,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",882,7,"ffn",shellscript,content +257,765940,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",774,0,"",shellscript,selection_command +258,766757,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1018,0,"larger_ffn_",shellscript,content +259,766759,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1038,11,"",shellscript,content +260,766760,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1068,0,"_larger-ffn",shellscript,content +261,767446,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1068,11,"",shellscript,content +262,767448,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1038,0,"-lr-scaling",shellscript,content +263,767449,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1018,11,"",shellscript,content +264,770162,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",896,0,"",shellscript,selection_command +265,770317,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",921,0,"",shellscript,selection_command +266,771670,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",896,0,"",shellscript,selection_command +267,771873,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",774,0,"",shellscript,selection_command +268,772196,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",896,0,"",shellscript,selection_command +269,772467,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",921,0,"",shellscript,selection_command +270,772771,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",922,0,"",shellscript,selection_command +271,773301,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1069,0,"",shellscript,selection_command +272,773477,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1070,0,"",shellscript,selection_command +273,773773,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1087,0,"",shellscript,selection_command +274,774019,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1088,0,"",shellscript,selection_command +275,774173,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1120,0,"",shellscript,selection_command +276,774174,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1138,0,"",shellscript,selection_command +277,774177,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1171,0,"",shellscript,selection_command +278,774178,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1193,0,"",shellscript,selection_command +279,774179,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1223,0,"",shellscript,selection_command +280,774193,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1254,0,"",shellscript,selection_command +281,774238,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1279,0,"",shellscript,selection_command +282,774324,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1304,0,"",shellscript,selection_command +283,774326,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1330,0,"",shellscript,selection_command +284,774327,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1356,0,"",shellscript,selection_command +285,774360,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1374,0,"",shellscript,selection_command +286,774451,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1396,0,"",shellscript,selection_command +287,774453,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1428,0,"",shellscript,selection_command +288,774460,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1440,0,"",shellscript,selection_command +289,774545,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1477,0,"",shellscript,selection_command +290,774547,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1518,0,"",shellscript,selection_command +291,774561,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1591,0,"",shellscript,selection_command +292,774618,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1617,0,"",shellscript,selection_command +293,774626,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1639,0,"",shellscript,selection_command +294,774668,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1688,0,"",shellscript,selection_command +295,774694,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1724,0,"",shellscript,selection_command +296,775006,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1688,0,"",shellscript,selection_command +297,775258,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1639,0,"",shellscript,selection_command +298,775287,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1617,0,"",shellscript,selection_command +299,775320,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1591,0,"",shellscript,selection_command +300,775353,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1518,0,"",shellscript,selection_command +301,775387,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1477,0,"",shellscript,selection_command +302,775420,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1440,0,"",shellscript,selection_command +303,775454,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1428,0,"",shellscript,selection_command +304,775487,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1396,0,"",shellscript,selection_command +305,775521,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1374,0,"",shellscript,selection_command +306,775571,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1356,0,"",shellscript,selection_command +307,775592,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1330,0,"",shellscript,selection_command +308,775624,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1304,0,"",shellscript,selection_command +309,775658,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1279,0,"",shellscript,selection_command +310,775698,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1254,0,"",shellscript,selection_command +311,775726,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1223,0,"",shellscript,selection_command +312,775758,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1193,0,"",shellscript,selection_command +313,775793,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1171,0,"",shellscript,selection_command +314,775830,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1138,0,"",shellscript,selection_command +315,775859,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1120,0,"",shellscript,selection_command +316,775892,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1088,0,"",shellscript,selection_command +317,775926,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1087,0,"",shellscript,selection_command +318,775976,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1070,0,"",shellscript,selection_command +319,778721,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1087,0,"",shellscript,selection_command +320,784664,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1088,0,"",shellscript,selection_command +321,786441,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1093,0,"",shellscript,selection_command +322,786723,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1100,0,"",shellscript,selection_command +323,786724,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1114,0,"",shellscript,selection_command +324,786755,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1115,0,"",shellscript,selection_command +325,786901,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1118,0,"",shellscript,selection_command +326,786903,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1124,0,"",shellscript,selection_command +327,786905,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1126,0,"",shellscript,selection_command +328,786906,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1136,0,"",shellscript,selection_command +329,786928,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1142,0,"",shellscript,selection_command +330,787077,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1144,0,"",shellscript,selection_command +331,787785,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1153,0,"",shellscript,selection_command +332,788419,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1154,0,"",shellscript,selection_command +333,788640,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1169,0,"",shellscript,selection_command +334,788644,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1175,0,"",shellscript,selection_command +335,788711,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1177,0,"",shellscript,selection_command +336,788713,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1187,0,"",shellscript,selection_command +337,788725,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1188,0,"",shellscript,selection_command +338,789242,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1191,0,"",shellscript,selection_command +339,789499,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1197,0,"",shellscript,selection_command +340,790239,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1191,0,"",shellscript,selection_command +341,790396,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1188,0,"",shellscript,selection_command +342,791629,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1191,0,"",shellscript,selection_command +343,791883,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1197,0,"",shellscript,selection_command +344,791905,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1199,0,"",shellscript,selection_command +345,791937,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1216,0,"",shellscript,selection_command +346,791975,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1217,0,"",shellscript,selection_command +347,792049,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1221,0,"",shellscript,selection_command +348,792051,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1227,0,"",shellscript,selection_command +349,792071,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1229,0,"",shellscript,selection_command +350,794828,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1249,0,"",shellscript,selection_command +351,796078,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1250,0,"",shellscript,selection_command +352,813464,"TERMINAL",0,0,"salloc",,terminal_focus +353,825593,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1220,0,"",shellscript,selection_command +354,828671,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",0,0,"",shellscript,tab +355,829619,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",427,0,"",shellscript,selection_command +356,829808,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",487,0,"",shellscript,selection_command +357,829858,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",488,0,"",shellscript,selection_command +358,829864,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",512,0,"",shellscript,selection_command +359,829967,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",519,0,"",shellscript,selection_command +360,829969,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",520,0,"",shellscript,selection_command +361,829971,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",550,0,"",shellscript,selection_command +362,829999,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",580,0,"",shellscript,selection_command +363,830035,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",606,0,"",shellscript,selection_command +364,830065,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",607,0,"",shellscript,selection_command +365,830116,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",729,0,"",shellscript,selection_command +366,830154,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",730,0,"",shellscript,selection_command +367,830172,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",755,0,"",shellscript,selection_command +368,830201,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",782,0,"",shellscript,selection_command +369,830233,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",783,0,"",shellscript,selection_command +370,830271,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",825,0,"",shellscript,selection_command +371,830301,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",850,0,"",shellscript,selection_command +372,830343,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",851,0,"",shellscript,selection_command +373,830370,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",868,0,"",shellscript,selection_command +374,830490,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",869,0,"",shellscript,selection_command +375,830492,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",902,0,"",shellscript,selection_command +376,830494,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",935,0,"",shellscript,selection_command +377,830508,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",956,0,"",shellscript,selection_command +378,830631,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",974,0,"",shellscript,selection_command +379,830632,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",996,0,"",shellscript,selection_command +380,831888,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",974,0,"",shellscript,selection_command +381,831927,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",956,0,"",shellscript,selection_command +382,832293,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",935,0,"",shellscript,selection_command +383,832472,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",902,0,"",shellscript,selection_command +384,832779,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",906,0,"",shellscript,selection_command +385,832946,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",908,0,"",shellscript,selection_command +386,832955,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",917,0,"",shellscript,selection_command +387,832999,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",918,0,"",shellscript,selection_command +388,833022,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",933,0,"",shellscript,selection_command +389,833117,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",939,0,"",shellscript,selection_command +390,833119,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",941,0,"",shellscript,selection_command +391,833121,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",954,0,"",shellscript,selection_command +392,833154,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",960,0,"",shellscript,selection_command +393,833296,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",962,0,"",shellscript,selection_command +394,833815,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",941,0,"",shellscript,selection_command +395,834953,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",954,0,"",shellscript,selection_command +396,835554,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",960,0,"",shellscript,selection_command +397,835788,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",962,0,"",shellscript,selection_command +398,836032,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",972,0,"",shellscript,selection_command +399,836069,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",978,0,"",shellscript,selection_command +400,836104,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",980,0,"",shellscript,selection_command +401,836331,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",990,0,"",shellscript,selection_command +402,836607,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",991,0,"",shellscript,selection_command +403,836886,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",994,0,"",shellscript,selection_command +404,837141,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",1000,0,"",shellscript,selection_command +405,837169,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",1002,0,"",shellscript,selection_command +406,837366,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",1009,0,"",shellscript,selection_command +407,837622,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",1010,0,"",shellscript,selection_command +408,837649,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",1015,0,"",shellscript,selection_command +409,837688,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",1021,0,"",shellscript,selection_command +410,837710,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",1023,0,"",shellscript,selection_command +411,838581,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",0,0,"",shellscript,tab +412,840135,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1250,0,"",shellscript,selection_command +413,841403,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1220,0,"",shellscript,selection_command +414,841790,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1217,0,"",shellscript,selection_command +415,842533,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1217,3,"",shellscript,content +416,842771,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1217,0,"2",shellscript,content +417,842772,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1218,0,"",shellscript,selection_keyboard +418,842836,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1218,0,"0",shellscript,content +419,842837,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1219,0,"",shellscript,selection_keyboard +420,843655,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1219,0,"4",shellscript,content +421,843657,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1220,0,"",shellscript,selection_keyboard +422,843739,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1220,0,"8",shellscript,content +423,843740,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1221,0,"",shellscript,selection_keyboard +424,843852,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1220,0,"",shellscript,selection_command +425,844038,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1251,0,"",shellscript,selection_command +426,844938,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1251,1,"4",shellscript,content +427,846277,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1220,0,"",shellscript,selection_command +428,847293,"experiments/train_tokenizer_lr_1e-4_larger_ffn.sh",0,0,"",shellscript,tab +429,849877,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",0,0,"",shellscript,tab +430,852015,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1193,0,"",shellscript,selection_command +431,852150,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1224,0,"",shellscript,selection_command +432,852274,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1228,0,"",shellscript,selection_command +433,853769,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1259,0,"",shellscript,selection_command +434,853909,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1261,0,"",shellscript,selection_command +435,854768,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1272,0,"",shellscript,selection_command +436,855022,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1273,0,"",shellscript,selection_command +437,855333,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1278,0,"",shellscript,selection_command +438,855561,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1284,0,"",shellscript,selection_command +439,855831,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1286,0,"",shellscript,selection_command +440,856069,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1300,0,"",shellscript,selection_command +441,856102,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1301,0,"",shellscript,selection_command +442,856131,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1303,0,"",shellscript,selection_command +443,856368,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1309,0,"",shellscript,selection_command +444,856619,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1311,0,"",shellscript,selection_command +445,856652,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1323,0,"",shellscript,selection_command +446,856892,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1324,0,"",shellscript,selection_command +447,857242,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1329,0,"",shellscript,selection_command +448,857488,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1335,0,"",shellscript,selection_command +449,857518,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1337,0,"",shellscript,selection_command +450,857548,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1352,0,"",shellscript,selection_command +451,857752,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1353,0,"",shellscript,selection_command +452,857985,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1355,0,"",shellscript,selection_command +453,858491,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1361,0,"",shellscript,selection_command +454,859302,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1363,0,"",shellscript,selection_command +455,859547,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1370,0,"",shellscript,selection_command +456,859573,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1371,0,"",shellscript,selection_command +457,859607,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1373,0,"",shellscript,selection_command +458,859648,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1379,0,"",shellscript,selection_command +459,859690,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1381,0,"",shellscript,selection_command +460,859725,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1387,0,"",shellscript,selection_command +461,859750,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1388,0,"",shellscript,selection_command +462,859774,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1389,0,"",shellscript,selection_command +463,860205,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1390,0,"",shellscript,selection_command +464,860458,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1392,0,"",shellscript,selection_command +465,861657,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1393,0,"",shellscript,selection_command +466,861820,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1395,0,"",shellscript,selection_command +467,862138,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1401,0,"",shellscript,selection_command +468,891142,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1433,0,"",shellscript,selection_command +469,891236,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1445,0,"",shellscript,selection_command +470,893021,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1441,0,"",shellscript,selection_command +471,895538,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1478,0,"",shellscript,selection_command +472,897220,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1482,0,"",shellscript,selection_command +473,897472,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1484,0,"",shellscript,selection_command +474,897502,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1488,0,"",shellscript,selection_command +475,898145,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1489,0,"",shellscript,selection_command +476,898548,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1497,0,"",shellscript,selection_command +477,899067,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1498,0,"",shellscript,selection_command +478,901096,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1500,0,"",shellscript,selection_command +479,901295,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1501,0,"",shellscript,selection_command +480,901302,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1503,0,"",shellscript,selection_command +481,901342,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1504,0,"",shellscript,selection_command +482,901365,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1505,0,"",shellscript,selection_command +483,901645,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1506,0,"",shellscript,selection_command +484,901895,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1512,0,"",shellscript,selection_command +485,902355,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1513,0,"",shellscript,selection_command +486,907201,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1517,0,"",shellscript,selection_command +487,907203,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1523,0,"",shellscript,selection_command +488,907204,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1525,0,"",shellscript,selection_command +489,907205,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1530,0,"",shellscript,selection_command +490,907206,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1539,0,"",shellscript,selection_command +491,907207,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1541,0,"",shellscript,selection_command +492,907209,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1542,0,"",shellscript,selection_command +493,907209,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1544,0,"",shellscript,selection_command +494,907211,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1545,0,"",shellscript,selection_command +495,907211,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1547,0,"",shellscript,selection_command +496,907212,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1553,0,"",shellscript,selection_command +497,907213,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1554,0,"",shellscript,selection_command +498,907214,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1558,0,"",shellscript,selection_command +499,907214,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1563,0,"",shellscript,selection_command +500,907215,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1564,0,"",shellscript,selection_command +501,907216,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1574,0,"",shellscript,selection_command +502,907217,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1579,0,"",shellscript,selection_command +503,907218,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1580,0,"",shellscript,selection_command +504,907583,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1590,0,"",shellscript,selection_command +505,908438,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1580,0,"",shellscript,selection_command +506,908624,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1579,0,"",shellscript,selection_command +507,908967,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1574,0,"",shellscript,selection_command +508,908970,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1564,0,"",shellscript,selection_command +509,908973,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1563,0,"",shellscript,selection_command +510,908975,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1558,0,"",shellscript,selection_command +511,909003,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1554,0,"",shellscript,selection_command +512,909096,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1553,0,"",shellscript,selection_command +513,909097,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1547,0,"",shellscript,selection_command +514,909108,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1545,0,"",shellscript,selection_command +515,909486,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1547,0,"",shellscript,selection_command +516,909644,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1553,0,"",shellscript,selection_command +517,909675,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1554,0,"",shellscript,selection_command +518,909812,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1558,0,"",shellscript,selection_command +519,909814,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1563,0,"",shellscript,selection_command +520,909815,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1564,0,"",shellscript,selection_command +521,910189,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1572,0,"",shellscript,selection_command +522,912103,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1574,0,"",shellscript,selection_command +523,912338,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1579,0,"",shellscript,selection_command +524,912369,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1580,0,"",shellscript,selection_command +525,912398,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1590,0,"",shellscript,selection_command +526,912431,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1596,0,"",shellscript,selection_command +527,912465,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1598,0,"",shellscript,selection_command +528,912513,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1605,0,"",shellscript,selection_command +529,913042,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1612,0,"",shellscript,selection_command +530,913488,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1613,0,"",shellscript,selection_command +531,914208,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1616,0,"",shellscript,selection_command +532,914368,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1622,0,"",shellscript,selection_command +533,914404,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1624,0,"",shellscript,selection_command +534,914433,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1632,0,"",shellscript,selection_command +535,914473,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1638,0,"",shellscript,selection_command +536,914507,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1644,0,"",shellscript,selection_command +537,914532,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1646,0,"",shellscript,selection_command +538,914568,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1666,0,"",shellscript,selection_command +539,914606,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1668,0,"",shellscript,selection_command +540,914640,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1687,0,"",shellscript,selection_command +541,915052,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1693,0,"",shellscript,selection_command +542,915300,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1695,0,"",shellscript,selection_command +543,915331,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1704,0,"",shellscript,selection_command +544,915359,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1705,0,"",shellscript,selection_command +545,915603,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1723,0,"",shellscript,selection_command +546,915919,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",1689,0,"",shellscript,selection_command +547,919123,"TERMINAL",0,0,"bash",,terminal_focus +548,932338,"TERMINAL",0,0,"ls",,terminal_command +549,932342,"TERMINAL",0,0,"]633;Clarger_ffn_dynamics\r\nlarger_ffn_tokenizer\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3352433.log\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3353627.log\r\n]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +550,935526,"TERMINAL",0,0,"cd",,terminal_command +551,936278,"TERMINAL",0,0,"ls",,terminal_command +552,936284,"TERMINAL",0,0,"]633;Cjafar slurm-3188420.out vid-tag\r\n]0;tum_dbd0378@hkn1993:~",,terminal_output +553,937843,"TERMINAL",0,0,"cd jafar/",,terminal_command +554,938208,"TERMINAL",0,0,"ls",,terminal_command +555,938323,"TERMINAL",0,0,"]633;C",,terminal_output +556,938461,"TERMINAL",0,0,"batch_size_benchmark_dynamics_co_train.json\r\nbatch_size_benchmark_dynamics.json\r\nbatch_size_benchmark_lam.json\r\nbatch_size_benchmark_lam_part_2.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_larger_ffn.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_larger_ffn_num_blocks_5.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_mock_dataloader.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_part_1.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_part_2.json\r\nbatch_size_benchmark_tokenizer_dummy_dataloader.json\r\nbatch_size_benchmark_tokenizer_dummy_dataloader_uint8.json\r\nbatch_size_benchmark_tokenizer.json\r\nbenchmark_batch_sizes_dynamics.py\r\nbenchmark_batch_sizes_lam.py\r\nbenchmark_batch_sizes_tokenizer.py\r\nBENCHMARK_README.md\r\ncheckpoints\r\ncomprehensive_variance_analysis.png\r\nconvert_knoms_to_arrayrecords.py\r\ndata\r\nexperiments\r\nfetch_wandb_run.py\r\ngenerate_arrayrecord_dataset.py\r\ngenerate_dataset.py\r\ngeneration_1748184309.645324.gif\r\ngeneration_1748185033.7382364.gif\r\ngeneration_1748187094.2946353.gif\r\ngeneration_1748616502.4403996.gif\r\ngenie.py\r\ngenie.py.orig\r\ngenie.py.rej\r\ninput_pipeline\r\ninteractive_generation.gif\r\nLICENSE\r\nloss_and_variance_analysis_not_normalized.png\r\nloss_and_variance_analysis.png\r\nmodels\r\noutputs\r\nplot.ipynb\r\n__pycache__\r\nREADME.md\r\nreprocess_knoms_to_optimized_arrayrecord_layout.py\r\nrequirements.txt\r\nrun_all_benchmarks.py\r\nrun_io_vs_memory_benchmark.py\r\nsample.py\r\nslurm-3315732.out\r\nslurm-3316722.out\r\nslurm-3321195.out\r\ntemp.out\r\ntests\r\ntoken_normalized_loss_plot.png\r\ntrain_dynamics.py\r\ntrain_lam.py\r\ntrain_tokenizer.py\r\nutils\r\nvs-code-recorder\r\nwandb\r\n]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +557,946536,"TERMINAL",0,0,"sbatch experiments/train_dynamics_lr_1e-4_larger_ffn.sh",,terminal_command +558,946548,"TERMINAL",0,0,"]633;C",,terminal_output +559,946549,"TERMINAL",0,0,"Submitted batch job 3361578\r\n]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +560,948285,"experiments/train_dynamics_lr_1e-4_larger_ffn.sh",0,0,"",shellscript,selection_command +561,963483,"TERMINAL",0,0,"queue",,terminal_command +562,963484,"TERMINAL",0,0,"]633;C",,terminal_output +563,963610,"TERMINAL",0,0,"[?1049h(B[?7hhkn1993.localdomain: Sun Jul 20 13:34:08 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3361551 accelerat interact tum_dbd0 PD\t0:00\t2 (Priority)3361578 accelerat train_dy tum_dbd0 PD\t0:00\t2 (Priority)",,terminal_output +564,964598,"TERMINAL",0,0,"9\t ",,terminal_output +565,965582,"TERMINAL",0,0,"10\t ",,terminal_output +566,966184,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +567,1207273,"TERMINAL",0,0,"salloc",,terminal_focus +568,1660792,"TERMINAL",0,0,"bash",,terminal_focus +569,1662074,"TERMINAL",0,0,"queue",,terminal_command +570,1662125,"TERMINAL",0,0,"]633;C",,terminal_output +571,1662368,"TERMINAL",0,0,"[?1049h(B[?7hhkn1993.localdomain: Sun Jul 20 13:45:47 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3361551 accelerat interact tum_dbd0 PD\t0:00\t2 (Priority)3361578 accelerat train_dy tum_dbd0 PD\t0:00\t2 (Priority)",,terminal_output +572,1663219,"TERMINAL",0,0,"8\t ",,terminal_output +573,1663282,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +574,1873744,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/larger_ffn_dynamics/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/larger_ffn_dynamics/%x_%j.log\n#SBATCH --job-name=train_dynamics_lr_1e-4_larger_ffn\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/dynamics-lrarge-ffn/$job_name\nmkdir -p $CHECKPOINT_DIR\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/tokenizer-lr-scaling/train_tokenizer_lr_sweep_1e-4\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --save_ckpt \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --tokenizer_ffn_dim=2048 \\n --tokenizer_num_blocks=4 \\n --lam_ffn_dim=2048 \\n --lam_num_blocks=4 \\n --dyna_ffn_dim=2048 \\n --dyna_num_blocks=6 \\n --init_lr=0 \\n --max_lr=1.5e-4 \\n --log_image_interval=1000 \\n --log \\n --log_checkpoint_interval=1000 \\n --name=dynamics-lr-1e-4-larger-ffn \\n --tags dynamics lr-1e-4 larger-ffn mixed-precision flash-attention \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir \\n",shellscript,tab +575,1875594,"experiments/train_dynamics_lr_1e-4_mixed_precision.sh",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.log\n#SBATCH --job-name=train_dynamics_modelsize_scaling_36M_2_node_mixed_precision_flash_attention\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/dynamics-cotraining-modelsize-scaling/$job_name\nmkdir -p $CHECKPOINT_DIR\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/tokenizer-lr-scaling/train_tokenizer_lr_sweep_1e-4\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --save_ckpt \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --init_lr=0 \\n --max_lr=1.5e-4 \\n --log_image_interval=1000 \\n --log \\n --log_checkpoint_interval=1000 \\n --name=dynamics-mixed-precision-flash-attention-$slurm_job_id \\n --tags dynamics mixed-precision flash-attention \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir \\n",shellscript,tab +576,1879085,"experiments/train_dynamics_lr_1e-4_mixed_precision.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/%x_%j.log\n#SBATCH --job-name=train_dynamics_modelsize_scaling_36M_2_node_mixed_precision_flash_attention\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/dynamics-cotraining-modelsize-scaling/$job_name\nmkdir -p $CHECKPOINT_DIR\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/tokenizer-lr-scaling/train_tokenizer_lr_sweep_1e-4\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --save_ckpt \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --init_lr=0 \\n --max_lr=1.5e-4 \\n --log_image_interval=1000 \\n --log \\n --log_checkpoint_interval=1000 \\n --name=dynamics-mixed-precision-flash-attention-$slurm_job_id \\n --tags dynamics mixed-precision flash-attention \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir \\n",shellscript,tab +577,1884662,"experiments/train_tokenizer_lr_1e-4_mixed_precision.sh",0,0,"#!/usr/bin/env bash\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\nSLURM_JOB_NAME=train_tokenizer_lr_sweep_1e-4_mixed_precision_flash_attention\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$PWD/checkpoints/$job_name\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --init_lr=0 \\n --max_lr=1e-4 \\n --log_image_interval=1000 \\n --log_checkpoint_interval=1000 \\n --log \\n --name=mixed-precision-tokenizer-lr-1e-4-flash-attention \\n --tags tokenizer mixed-precision 1e-4 flash-attention \\n --entity instant-uv \\n --project jafar \\n --data_dir $array_records_dir",shellscript,tab +578,1889347,"experiments/train_tokenizer_lr_1e-4_mixed_precision.sbatch",0,0,"#!/usr/bin/env bash\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\nSLURM_JOB_NAME=train_tokenizer_lr_sweep_1e-4_mixed_precision_flash_attention\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$PWD/checkpoints/$job_name\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --init_lr=0 \\n --max_lr=1e-4 \\n --log_image_interval=1000 \\n --log_checkpoint_interval=1000 \\n --log \\n --name=mixed-precision-tokenizer-lr-1e-4-flash-attention \\n --tags tokenizer mixed-precision 1e-4 flash-attention \\n --entity instant-uv \\n --project jafar \\n --data_dir $array_records_dir",shellscript,tab +579,1890730,"experiments/train_tokenizer_lr_1e-4_mixed_precision.sbatch",479,0,"",shellscript,selection_mouse +580,1898468,"TERMINAL",0,0,"queue",,terminal_command +581,1898596,"TERMINAL",0,0,"]633;C",,terminal_output +582,1898657,"TERMINAL",0,0,"[?1049h(B[?7hhkn1993.localdomain: Sun Jul 20 13:49:43 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3361551 accelerat interact tum_dbd0 PD\t0:00\t2 (Priority)3361578 accelerat train_dy tum_dbd0 PD\t0:00\t2 (Priority)",,terminal_output +583,1899702,"TERMINAL",0,0,"4\t ",,terminal_output +584,1900779,"TERMINAL",0,0,"5\t ",,terminal_output +585,1901867,"TERMINAL",0,0,"6\t ",,terminal_output +586,1902475,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +587,1936554,"TERMINAL",0,0,"ls",,terminal_command +588,1936569,"TERMINAL",0,0,"]633;Cbatch_size_benchmark_dynamics_co_train.json\r\nbatch_size_benchmark_dynamics.json\r\nbatch_size_benchmark_lam.json\r\nbatch_size_benchmark_lam_part_2.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_larger_ffn.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_larger_ffn_num_blocks_5.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_mock_dataloader.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_part_1.json\r\nbatch_size_benchmark_tokenizer_cudnn_flash_attention_part_2.json\r\nbatch_size_benchmark_tokenizer_dummy_dataloader.json\r\nbatch_size_benchmark_tokenizer_dummy_dataloader_uint8.json\r\nbatch_size_benchmark_tokenizer.json\r\nbenchmark_batch_sizes_dynamics.py\r\nbenchmark_batch_sizes_lam.py\r\nbenchmark_batch_sizes_tokenizer.py\r\nBENCHMARK_README.md\r\ncheckpoints\r\ncomprehensive_variance_analysis.png\r\nconvert_knoms_to_arrayrecords.py\r\ndata\r\nexperiments\r\nfetch_wandb_run.py\r\ngenerate_arrayrecord_dataset.py\r\ngenerate_dataset.py\r\ngeneration_1748184309.645324.gif\r\ngeneration_1748185033.7382364.gif\r\ngeneration_1748187094.2946353.gif\r\ngeneration_1748616502.4403996.gif\r\ngenie.py\r\ngenie.py.orig\r\ngenie.py.rej\r\ninput_pipeline\r\ninteractive_generation.gif\r\nLICENSE\r\nloss_and_variance_analysis_not_normalized.png\r\nloss_and_variance_analysis.png\r\nmodels\r\noutputs\r\nplot.ipynb\r\n__pycache__\r\nREADME.md\r\nreprocess_knoms_to_optimized_arrayrecord_layout.py\r\nrequirements.txt\r\nrun_all_benchmarks.py\r\nrun_io_vs_memory_benchmark.py\r\nsample.py\r\nslurm-3315732.out\r\nslurm-3316722.out\r\nslurm-3321195.out\r\ntemp.out\r\ntests\r\ntoken_normalized_loss_plot.png\r\ntrain_dynamics.py\r\ntrain_lam.py\r\ntrain_tokenizer.py\r\nutils\r\nvs-code-recorder\r\nwandb\r\n]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +589,1940323,"TERMINAL",0,0,"git clone git@github.com:p-doom/slurm.git",,terminal_command +590,1940375,"TERMINAL",0,0,"]633;CCloning into 'slurm'...\r\n",,terminal_output +591,1941896,"TERMINAL",0,0,"remote: Enumerating objects: 758, done.\r\nremote: Counting objects: 0% (1/758)\rremote: Counting objects: 1% (8/758)\rremote: Counting objects: 2% (16/758)\rremote: Counting objects: 3% (23/758)\rremote: Counting objects: 4% (31/758)\rremote: Counting objects: 5% (38/758)\rremote: Counting objects: 6% (46/758)\rremote: Counting objects: 7% (54/758)\rremote: Counting objects: 8% (61/758)\rremote: Counting objects: 9% (69/758)\rremote: Counting objects: 10% (76/758)\rremote: Counting objects: 11% (84/758)\rremote: Counting objects: 12% (91/758)\rremote: Counting objects: 13% (99/758)\rremote: Counting objects: 14% (107/758)\rremote: Counting objects: 15% (114/758)\rremote: Counting objects: 16% (122/758)\rremote: Counting objects: 17% (129/758)\rremote: Counting objects: 18% (137/758)\r",,terminal_output +592,1941993,"TERMINAL",0,0,"remote: Counting objects: 19% (145/758)\rremote: Counting objects: 20% (152/758)\rremote: Counting objects: 21% (160/758)\rremote: Counting objects: 22% (167/758)\rremote: Counting objects: 23% (175/758)\rremote: Counting objects: 24% (182/758)\rremote: Counting objects: 25% (190/758)\rremote: Counting objects: 26% (198/758)\rremote: Counting objects: 27% (205/758)\rremote: Counting objects: 28% (213/758)\rremote: Counting objects: 29% (220/758)\rremote: Counting objects: 30% (228/758)\rremote: Counting objects: 31% (235/758)\rremote: Counting objects: 32% (243/758)\rremote: Counting objects: 33% (251/758)\rremote: Counting objects: 34% (258/758)\rremote: Counting objects: 35% (266/758)\rremote: Counting objects: 36% (273/758)\rremote: Counting objects: 37% (281/758)\rremote: Counting objects: 38% (289/758)\rremote: Counting objects: 39% (296/758)\rremote: Counting objects: 40% (304/758)\rremote: Counting objects: 41% (311/758)\rremote: Counting objects: 42% (319/758)\rremote: Counting objects: 43% (326/758)\rremote: Counting objects: 44% (334/758)\rremote: Counting objects: 45% (342/758)\rremote: Counting objects: 46% (349/758)\rremote: Counting objects: 47% (357/758)\rremote: Counting objects: 48% (364/758)\rremote: Counting objects: 49% (372/758)\rremote: Counting objects: 50% (379/758)\rremote: Counting objects: 51% (387/758)\rremote: Counting objects: 52% (395/758)\rremote: Counting objects: 53% (402/758)\rremote: Counting objects: 54% (410/758)\rremote: Counting objects: 55% (417/758)\rremote: Counting objects: 56% (425/758)\rremote: Counting objects: 57% (433/758)\rremote: Counting objects: 58% (440/758)\rremote: Counting objects: 59% (448/758)\rremote: Counting objects: 60% (455/758)\rremote: Counting objects: 61% (463/758)\rremote: Counting objects: 62% (470/758)\rremote: Counting objects: 63% (478/758)\rremote: Counting objects: 64% (486/758)\rremote: Counting objects: 65% (493/758)\rremote: Counting objects: 66% (501/758)\rremote: Counting objects: 67% (508/758)\rremote: Counting objects: 68% (516/758)\rremote: Counting objects: 69% (524/758)\rremote: Counting objects: 70% (531/758)\rremote: Counting objects: 71% (539/758)\rremote: Counting objects: 72% (546/758)\rremote: Counting objects: 73% (554/758)\rremote: Counting objects: 74% (561/758)\rremote: Counting objects: 75% (569/758)\rremote: Counting objects: 76% (577/758)\rremote: Counting objects: 77% (584/758)\rremote: Counting objects: 78% (592/758)\rremote: Counting objects: 79% (599/758)\rremote: Counting objects: 80% (607/758)\rremote: Counting objects: 81% (614/758)\rremote: Counting objects: 82% (622/758)\rremote: Counting objects: 83% (630/758)\rremote: Counting objects: 84% (637/758)\rremote: Counting objects: 85% (645/758)\rremote: Counting objects: 86% (652/758)\rremote: Counting objects: 87% (660/758)\rremote: Counting objects: 88% (668/758)\rremote: Counting objects: 89% (675/758)\rremote: Counting objects: 90% (683/758)\rremote: Counting objects: 91% (690/758)\rremote: Counting objects: 92% (698/758)\rremote: Counting objects: 93% (705/758)\rremote: Counting objects: 94% (713/758)\rremote: Counting objects: 95% (721/758)\rremote: Counting objects: 96% (728/758)\rremote: Counting objects: 97% (736/758)\rremote: Counting objects: 98% (743/758)\rremote: Counting objects: 99% (751/758)\rremote: Counting objects: 100% (758/758)\rremote: Counting objects: 100% (758/758), done.\r\nremote: Compressing objects: 0% (1/347)\rremote: Compressing objects: 1% (4/347)\rremote: Compressing objects: 2% (7/347)\rremote: Compressing objects: 3% (11/347)\rremote: Compressing objects: 4% (14/347)\rremote: Compressing objects: 5% (18/347)\rremote: Compressing objects: 6% (21/347)\rremote: Compressing objects: 7% (25/347)\rremote: Compressing objects: 8% (28/347)\rremote: Compressing objects: 9% (32/347)\rremote: Compressing objects: 10% (35/347)\rremote: Compressing objects: 11% (39/347)\rremote: Compressing objects: 12% (42/347)\rremote: Compressing objects: 13% (46/347)\rremote: Compressing objects: 14% (49/347)\rremote: Compressing objects: 15% (53/347)\rremote: Compressing objects: 16% (56/347)\rremote: Compressing objects: 17% (59/347)\rremote: Compressing objects: 18% (63/347)\rremote: Compressing objects: 19% (66/347)\rremote: Compressing objects: 20% (70/347)\rremote: Compressing objects: 21% (73/347)\rremote: Compressing objects: 22% (77/347)\rremote: Compressing objects: 23% (80/347)\rremote: Compressing objects: 24% (84/347)\rremote: Compressing objects: 25% (87/347)\rremote: Compressing objects: 26% (91/347)\rremote: Compressing objects: 27% (94/347)\rremote: Compressing objects: 28% (98/347)\rremote: Compressing objects: 29% (101/347)\rremote: Compressing objects: 30% (105/347)\rremote: Compressing objects: 31% (108/347)\rremote: Compressing objects: 32% (112/347)\rremote: Compressing objects: 33% (115/347)\rremote: Compressing objects: 34% (118/347)\rremote: Compressing objects: 35% (122/347)\rremote: Compressing objects: 36% (125/347)\rremote: Compressing objects: 37% (129/347)\rremote: Compressing objects: 38% (132/347)\rremote: Compressing objects: 39% (136/347)\rremote: Compressing objects: 40% (139/347)\rremote: Compressing objects: 41% (143/347)\rremote: Compressing objects: 42% (146/347)\rremote: Compressing objects: 43% (150/347)\rremote: Compressing objects: 44% (153/347)\rremote: Compressing objects: 45% (157/347)\rremote: Compressing objects: 46% (160/347)\rremote: Compressing objects: 47% (164/347)\rremote: Compressing objects: 48% (167/347)\rremote: Compressing objects: 49% (171/347)\rremote: Compressing objects: 50% (174/347)\rremote: Compressing objects: 51% (177/347)\rremote: Compressing objects: 52% (181/347)\rremote: Compressing objects: 53% (184/347)\rremote: Compressing objects: 54% (188/347)\rremote: Compressing objects: 55% (191/347)\rremote: Compressing objects: 56% (195/347)\rremote: Compressing objects: 57% (198/347)\rremote: Compressing objects: 58% (202/347)\rremote: Compressing objects: 59% (205/347)\rremote: Compressing objects: 60% (209/347)\rremote: Compressing objects: 61% (212/347)\rremote: Compressing objects: 62% (216/347)\rremote: Compressing objects: 63% (219/347)\rremote: Compressing objects: 64% (223/347)\rremote: Compressing objects: 65% (226/347)\rremote: Compressing objects: 66% (230/347)\rremote: Compressing objects: 67% (233/347)\rremote: Compressing objects: 68% (236/347)\rremote: Compressing objects: 69% (240/347)\rremote: Compressing objects: 70% (243/347)\rremote: Compressing objects: 71% (247/347)\rremote: Compressing objects: 72% (250/347)\rremote: Compressing objects: 73% (254/347)\rremote: Compressing objects: 74% (257/347)\rremote: Compressing objects: 75% (261/347)\rremote: Compressing objects: 76% (264/347)\rremote: Compressing objects: 77% (268/347)\rremote: Compressing objects: 78% (271/347)\rremote: Compressing objects: 79% (275/347)\rremote: Compressing objects: 80% (278/347)\rremote: Compressing objects: 81% (282/347)\rremote: Compressing objects: 82% (285/347)\rremote: Compressing objects: 83% (289/347)\rremote: Compressing objects: 84% (292/347)\rremote: Compressing objects: 85% (295/347)\rremote: Compressing objects: 86% (299/347)\rremote: Compressing objects: 87% (302/347)\rremote: Compressing objects: 88% (306/347)\rremote: Compressing objects: 89% (309/347)\rremote: Compressing objects: 90% (313/347)\rremote: Compressing objects: 91% (316/347)\rremote: Compressing objects: 92% (320/347)\rremote: Compressing objects: 93% (323/347)\rremote: Compressing objects: 94% (327/347)\rremote: Compressing objects: 95% (330/347)\rremote: Compressing objects: 96% (334/347)\rremote: Compressing objects: 97% (337/347)\rremote: Compressing objects: 98% (341/347)\rremote: Compressing objects: 99% (344/347)\rremote: Compressing objects: 100% (347/347)\rremote: Compressing objects: 100% (347/347), done.\r\nReceiving objects: 0% (1/758)\rReceiving objects: 1% (8/758)\rReceiving objects: 2% (16/758)\rReceiving objects: 3% (23/758)\rReceiving objects: 4% (31/758)\rReceiving objects: 5% (38/758)\rReceiving objects: 6% (46/758)\rReceiving objects: 7% (54/758)\rReceiving objects: 8% (61/758)\rReceiving objects: 9% (69/758)\rReceiving objects: 10% (76/758)\r",,terminal_output +593,1942119,"TERMINAL",0,0,"Receiving objects: 11% (84/758)\rReceiving objects: 12% (91/758)\rReceiving objects: 13% (99/758)\rReceiving objects: 14% (107/758)\rReceiving objects: 15% (114/758)\rReceiving objects: 16% (122/758)\rReceiving objects: 17% (129/758)\rReceiving objects: 18% (137/758)\rReceiving objects: 19% (145/758)\rReceiving objects: 20% (152/758)\rReceiving objects: 21% (160/758)\rReceiving objects: 22% (167/758)\rReceiving objects: 23% (175/758)\rReceiving objects: 24% (182/758)\rReceiving objects: 25% (190/758)\rReceiving objects: 26% (198/758)\rReceiving objects: 27% (205/758)\rReceiving objects: 28% (213/758)\rReceiving objects: 29% (220/758)\rReceiving objects: 30% (228/758)\rReceiving objects: 31% (235/758)\rReceiving objects: 32% (243/758)\rReceiving objects: 33% (251/758)\rReceiving objects: 34% (258/758)\rReceiving objects: 35% (266/758)\rReceiving objects: 36% (273/758)\rReceiving objects: 37% (281/758)\rReceiving objects: 38% (289/758)\rReceiving objects: 39% (296/758)\rReceiving objects: 40% (304/758)\rReceiving objects: 41% (311/758)\rReceiving objects: 42% (319/758)\rReceiving objects: 43% (326/758)\rReceiving objects: 44% (334/758)\rReceiving objects: 45% (342/758)\rReceiving objects: 46% (349/758)\rReceiving objects: 47% (357/758)\rReceiving objects: 48% (364/758)\rReceiving objects: 49% (372/758)\rReceiving objects: 50% (379/758)\rReceiving objects: 51% (387/758)\rReceiving objects: 52% (395/758)\rReceiving objects: 53% (402/758)\rReceiving objects: 54% (410/758)\rReceiving objects: 55% (417/758)\rReceiving objects: 56% (425/758)\r",,terminal_output +594,1942194,"TERMINAL",0,0,"remote: Total 758 (delta 468), reused 679 (delta 391), pack-reused 0 (from 0)\r\nReceiving objects: 57% (433/758)\rReceiving objects: 58% (440/758)\rReceiving objects: 59% (448/758)\rReceiving objects: 60% (455/758)\rReceiving objects: 61% (463/758)\rReceiving objects: 62% (470/758)\rReceiving objects: 63% (478/758)\rReceiving objects: 64% (486/758)\rReceiving objects: 65% (493/758)\rReceiving objects: 66% (501/758)\rReceiving objects: 67% (508/758)\rReceiving objects: 68% (516/758)\rReceiving objects: 69% (524/758)\rReceiving objects: 70% (531/758)\rReceiving objects: 71% (539/758)\rReceiving objects: 72% (546/758)\rReceiving objects: 73% (554/758)\rReceiving objects: 74% (561/758)\rReceiving objects: 75% (569/758)\rReceiving objects: 76% (577/758)\rReceiving objects: 77% (584/758)\rReceiving objects: 78% (592/758)\rReceiving objects: 79% (599/758)\rReceiving objects: 80% (607/758)\rReceiving objects: 81% (614/758)\rReceiving objects: 82% (622/758)\rReceiving objects: 83% (630/758)\rReceiving objects: 84% (637/758)\rReceiving objects: 85% (645/758)\rReceiving objects: 86% (652/758)\rReceiving objects: 87% (660/758)\rReceiving objects: 88% (668/758)\rReceiving objects: 89% (675/758)\rReceiving objects: 90% (683/758)\rReceiving objects: 91% (690/758)\rReceiving objects: 92% (698/758)\rReceiving objects: 93% (705/758)\rReceiving objects: 94% (713/758)\rReceiving objects: 95% (721/758)\rReceiving objects: 96% (728/758)\rReceiving objects: 97% (736/758)\rReceiving objects: 98% (743/758)\rReceiving objects: 99% (751/758)\rReceiving objects: 100% (758/758)\rReceiving objects: 100% (758/758), 106.94 KiB | 564.00 KiB/s, done.\r\nResolving deltas: 0% (0/468)\rResolving deltas: 1% (5/468)\rResolving deltas: 2% (10/468)\rResolving deltas: 3% (15/468)\rResolving deltas: 4% (19/468)\rResolving deltas: 5% (25/468)\rResolving deltas: 6% (29/468)\rResolving deltas: 7% (33/468)\rResolving deltas: 8% (38/468)\rResolving deltas: 9% (44/468)\rResolving deltas: 10% (49/468)\rResolving deltas: 11% (52/468)\rResolving deltas: 12% (57/468)\rResolving deltas: 13% (61/468)\rResolving deltas: 14% (67/468)\rResolving deltas: 15% (71/468)\rResolving deltas: 16% (76/468)\rResolving deltas: 17% (80/468)\rResolving deltas: 18% (85/468)\rResolving deltas: 19% (90/468)\rResolving deltas: 20% (95/468)\rResolving deltas: 21% (100/468)\rResolving deltas: 22% (103/468)\rResolving deltas: 23% (108/468)\rResolving deltas: 24% (115/468)\rResolving deltas: 25% (118/468)\rResolving deltas: 26% (122/468)\rResolving deltas: 27% (127/468)\rResolving deltas: 28% (134/468)\rResolving deltas: 29% (136/468)\rResolving deltas: 30% (141/468)\rResolving deltas: 31% (146/468)\rResolving deltas: 32% (151/468)\rResolving deltas: 33% (155/468)\rResolving deltas: 34% (160/468)\rResolving deltas: 35% (168/468)\rResolving deltas: 36% (170/468)\rResolving deltas: 37% (174/468)\rResolving deltas: 38% (178/468)\rResolving deltas: 39% (184/468)\rResolving deltas: 40% (188/468)\rResolving deltas: 41% (194/468)\rResolving deltas: 42% (197/468)\rResolving deltas: 43% (202/468)\rResolving deltas: 44% (206/468)\rResolving deltas: 45% (212/468)\rResolving deltas: 46% (216/468)\rResolving deltas: 47% (221/468)\rResolving deltas: 48% (225/468)\rResolving deltas: 49% (230/468)\rResolving deltas: 50% (234/468)\rResolving deltas: 51% (240/468)\rResolving deltas: 52% (244/468)\rResolving deltas: 53% (249/468)\rResolving deltas: 54% (254/468)\rResolving deltas: 55% (259/468)\rResolving deltas: 56% (263/468)\rResolving deltas: 57% (267/468)\rResolving deltas: 58% (272/468)\rResolving deltas: 59% (279/468)\rResolving deltas: 60% (281/468)\rResolving deltas: 61% (286/468)\rResolving deltas: 62% (291/468)\rResolving deltas: 63% (295/468)\rResolving deltas: 64% (300/468)\rResolving deltas: 65% (305/468)\rResolving deltas: 66% (309/468)\rResolving deltas: 67% (315/468)\rResolving deltas: 68% (320/468)\rResolving deltas: 69% (323/468)\rResolving deltas: 70% (330/468)\rResolving deltas: 71% (334/468)\rResolving deltas: 72% (339/468)\rResolving deltas: 73% (343/468)\rResolving deltas: 74% (348/468)\rResolving deltas: 75% (351/468)\rResolving deltas: 76% (357/468)\rResolving deltas: 77% (361/468)\rResolving deltas: 78% (366/468)\rResolving deltas: 79% (370/468)\rResolving deltas: 80% (375/468)\rResolving deltas: 81% (380/468)\rResolving deltas: 82% (384/468)\rResolving deltas: 83% (389/468)\rResolving deltas: 84% (394/468)\rResolving deltas: 85% (398/468)\rResolving deltas: 86% (403/468)\rResolving deltas: 87% (408/468)\rResolving deltas: 88% (412/468)\rResolving deltas: 89% (417/468)\rResolving deltas: 90% (422/468)\rResolving deltas: 91% (426/468)\rResolving deltas: 92% (431/468)\rResolving deltas: 93% (437/468)\rResolving deltas: 94% (441/468)\rResolving deltas: 95% (446/468)\rResolving deltas: 96% (451/468)\rResolving deltas: 97% (454/468)\rResolving deltas: 98% (459/468)\rResolving deltas: 99% (464/468)\rResolving deltas: 100% (468/468)\rResolving deltas: 100% (468/468), done.\r\n",,terminal_output +595,1942756,"TERMINAL",0,0,"]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +596,1973623,"slurm/templates/horeka_cpu.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/%x_%j.log\n#SBATCH --error=logs/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=default_cpu\n#SBATCH --mail-type=ALL\n",shellscript,tab +597,1974475,"slurm/templates/horeka_gpu.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=1:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=1\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/%x_%j.log\n#SBATCH --error=logs/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=default_gpu\n#SBATCH --mail-type=ALL\n\n",shellscript,tab +598,1975877,"slurm/templates/horeka_gpu.sbatch",369,0,"",shellscript,selection_mouse +599,1976593,"experiments/train_tokenizer_lr_1e-4_mixed_precision.sbatch",0,0,"",shellscript,tab +600,1990402,"slurm/utils/exclude.txt",0,0,".venv_jafar\nwandb\nlogs\n.git\n",plaintext,tab +601,1991023,"slurm/utils/exclude.txt",28,0,"",plaintext,selection_mouse +602,1991427,"experiments/train_tokenizer_lr_1e-4_mixed_precision.sbatch",0,0,"",shellscript,tab +603,1998546,"slurm/utils/create_dev_dir.sh",0,0,"#!/bin/bash\n\nsrc_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar/*\ndst_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/\nexclude_file=./shell_scripts/exclude.txt\n\nrsync -av --progress --exclude-from=$exclude_file $src_dir $dst_dir\n",shellscript,tab +604,1999881,"slurm/utils/create_dev_dir.sh",253,0,"",shellscript,selection_mouse +605,2020993,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"",Log,tab +606,2023187,"slurm/utils/create_dev_dir.sh",0,0,"",shellscript,tab +607,2024314,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"",Log,tab +608,2024753,"slurm/utils/create_dev_dir.sh",0,0,"",shellscript,tab +609,2027301,"slurm/utils/create_dev_dir.sh",21,0,"",shellscript,selection_mouse +610,2029951,"TERMINAL",0,0,"pwd",,terminal_command +611,2039525,"slurm/utils/create_dev_dir.sh",21,1,"/",shellscript,selection_command +612,2039664,"slurm/utils/create_dev_dir.sh",21,5,"/home",shellscript,selection_command +613,2039836,"slurm/utils/create_dev_dir.sh",21,6,"/home/",shellscript,selection_command +614,2039874,"slurm/utils/create_dev_dir.sh",21,8,"/home/hk",shellscript,selection_command +615,2039898,"slurm/utils/create_dev_dir.sh",21,9,"/home/hk-",shellscript,selection_command +616,2039933,"slurm/utils/create_dev_dir.sh",21,16,"/home/hk-project",shellscript,selection_command +617,2039965,"slurm/utils/create_dev_dir.sh",21,17,"/home/hk-project-",shellscript,selection_command +618,2039998,"slurm/utils/create_dev_dir.sh",21,25,"/home/hk-project-pai00039",shellscript,selection_command +619,2040032,"slurm/utils/create_dev_dir.sh",21,26,"/home/hk-project-pai00039/",shellscript,selection_command +620,2040066,"slurm/utils/create_dev_dir.sh",21,37,"/home/hk-project-pai00039/tum_ind3695",shellscript,selection_command +621,2040187,"slurm/utils/create_dev_dir.sh",21,38,"/home/hk-project-pai00039/tum_ind3695/",shellscript,selection_command +622,2040392,"slurm/utils/create_dev_dir.sh",21,46,"/home/hk-project-pai00039/tum_ind3695/projects",shellscript,selection_command +623,2040553,"slurm/utils/create_dev_dir.sh",21,47,"/home/hk-project-pai00039/tum_ind3695/projects/",shellscript,selection_command +624,2040720,"slurm/utils/create_dev_dir.sh",21,52,"/home/hk-project-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +625,2041237,"slurm/utils/create_dev_dir.sh",21,53,"/home/hk-project-pai00039/tum_ind3695/projects/jafar/",shellscript,selection_command +626,2041406,"slurm/utils/create_dev_dir.sh",21,53,"/home/hk-project-p0023960/tum_dbd0378/jafar",shellscript,content +627,2041408,"slurm/utils/create_dev_dir.sh",64,0,"",shellscript,selection_keyboard +628,2042341,"slurm/utils/create_dev_dir.sh",21,44,"/home/hk-project-p0023960/tum_dbd0378/jafar*",shellscript,selection_command +629,2042415,"slurm/utils/create_dev_dir.sh",21,45,"/home/hk-project-p0023960/tum_dbd0378/jafar*\n",shellscript,selection_command +630,2042972,"slurm/utils/create_dev_dir.sh",64,0,"",shellscript,selection_command +631,2043957,"slurm/utils/create_dev_dir.sh",64,0,"/",shellscript,content +632,2043964,"slurm/utils/create_dev_dir.sh",51,7,"",shellscript,content +633,2043977,"slurm/utils/create_dev_dir.sh",51,0,"ind3695/projects",shellscript,content +634,2043982,"slurm/utils/create_dev_dir.sh",44,2,"",shellscript,content +635,2043986,"slurm/utils/create_dev_dir.sh",41,1,"",shellscript,content +636,2043991,"slurm/utils/create_dev_dir.sh",41,0,"0",shellscript,content +637,2043995,"slurm/utils/create_dev_dir.sh",39,0,"ai",shellscript,content +638,2043998,"slurm/utils/create_dev_dir.sh",64,0,"",shellscript,selection_command +639,2044906,"slurm/utils/create_dev_dir.sh",59,0,"",shellscript,selection_command +640,2044943,"slurm/utils/create_dev_dir.sh",58,0,"",shellscript,selection_command +641,2045195,"slurm/utils/create_dev_dir.sh",47,0,"",shellscript,selection_command +642,2045223,"slurm/utils/create_dev_dir.sh",46,0,"",shellscript,selection_command +643,2045256,"slurm/utils/create_dev_dir.sh",38,0,"",shellscript,selection_command +644,2045290,"slurm/utils/create_dev_dir.sh",37,0,"",shellscript,selection_command +645,2045324,"slurm/utils/create_dev_dir.sh",30,0,"",shellscript,selection_command +646,2047883,"slurm/utils/create_dev_dir.sh",29,0,"",shellscript,selection_command +647,2048059,"slurm/utils/create_dev_dir.sh",27,0,"",shellscript,selection_command +648,2048152,"slurm/utils/create_dev_dir.sh",26,0,"",shellscript,selection_command +649,2048286,"slurm/utils/create_dev_dir.sh",22,0,"",shellscript,selection_command +650,2048459,"slurm/utils/create_dev_dir.sh",20,0,"",shellscript,selection_command +651,2048888,"slurm/utils/create_dev_dir.sh",21,0,"",shellscript,selection_command +652,2049003,"slurm/utils/create_dev_dir.sh",21,1,"/",shellscript,selection_command +653,2049108,"slurm/utils/create_dev_dir.sh",21,5,"/home",shellscript,selection_command +654,2049316,"slurm/utils/create_dev_dir.sh",21,6,"/home/",shellscript,selection_command +655,2049350,"slurm/utils/create_dev_dir.sh",21,8,"/home/hk",shellscript,selection_command +656,2049380,"slurm/utils/create_dev_dir.sh",21,9,"/home/hk-",shellscript,selection_command +657,2049412,"slurm/utils/create_dev_dir.sh",21,16,"/home/hk-project",shellscript,selection_command +658,2049442,"slurm/utils/create_dev_dir.sh",21,17,"/home/hk-project-",shellscript,selection_command +659,2049650,"slurm/utils/create_dev_dir.sh",21,25,"/home/hk-project-pai00039",shellscript,selection_command +660,2049833,"slurm/utils/create_dev_dir.sh",21,26,"/home/hk-project-pai00039/",shellscript,selection_command +661,2049866,"slurm/utils/create_dev_dir.sh",21,37,"/home/hk-project-pai00039/tum_ind3695",shellscript,selection_command +662,2049897,"slurm/utils/create_dev_dir.sh",21,38,"/home/hk-project-pai00039/tum_ind3695/",shellscript,selection_command +663,2049931,"slurm/utils/create_dev_dir.sh",21,46,"/home/hk-project-pai00039/tum_ind3695/projects",shellscript,selection_command +664,2050049,"slurm/utils/create_dev_dir.sh",21,47,"/home/hk-project-pai00039/tum_ind3695/projects/",shellscript,selection_command +665,2050229,"slurm/utils/create_dev_dir.sh",21,52,"/home/hk-project-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +666,2050455,"slurm/utils/create_dev_dir.sh",21,54,"/home/hk-project-pai00039/tum_ind3695/projects/jafar/*",shellscript,selection_command +667,2050832,"slurm/utils/create_dev_dir.sh",21,53,"/home/hk-project-pai00039/tum_ind3695/projects/jafar/",shellscript,selection_command +668,2051217,"slurm/utils/create_dev_dir.sh",21,53,"",shellscript,content +669,2051410,"slurm/utils/create_dev_dir.sh",21,0,"/home/hk-project-p0023960/tum_dbd0378/jafar",shellscript,content +670,2051410,"slurm/utils/create_dev_dir.sh",64,0,"",shellscript,selection_keyboard +671,2052096,"slurm/utils/create_dev_dir.sh",64,0,"/",shellscript,content +672,2052097,"slurm/utils/create_dev_dir.sh",65,0,"",shellscript,selection_keyboard +673,2052431,"slurm/utils/create_dev_dir.sh",64,0,"",shellscript,selection_command +674,2052654,"slurm/utils/create_dev_dir.sh",118,0,"",shellscript,selection_command +675,2054873,"slurm/utils/create_dev_dir.sh",120,0,"",shellscript,selection_command +676,2055245,"slurm/utils/create_dev_dir.sh",121,0,"",shellscript,selection_command +677,2055395,"slurm/utils/create_dev_dir.sh",122,0,"",shellscript,selection_command +678,2055629,"slurm/utils/create_dev_dir.sh",123,0,"",shellscript,selection_command +679,2055654,"slurm/utils/create_dev_dir.sh",124,0,"",shellscript,selection_command +680,2055686,"slurm/utils/create_dev_dir.sh",125,0,"",shellscript,selection_command +681,2055828,"slurm/utils/create_dev_dir.sh",126,0,"",shellscript,selection_command +682,2056117,"slurm/utils/create_dev_dir.sh",126,1,"r",shellscript,selection_command +683,2056184,"slurm/utils/create_dev_dir.sh",122,5,"jafar",shellscript,selection_command +684,2056445,"slurm/utils/create_dev_dir.sh",121,6,"/jafar",shellscript,selection_command +685,2056471,"slurm/utils/create_dev_dir.sh",113,14,"projects/jafar",shellscript,selection_command +686,2056500,"slurm/utils/create_dev_dir.sh",112,15,"/projects/jafar",shellscript,selection_command +687,2056533,"slurm/utils/create_dev_dir.sh",101,26,"tum_ind3695/projects/jafar",shellscript,selection_command +688,2056644,"slurm/utils/create_dev_dir.sh",100,27,"/tum_ind3695/projects/jafar",shellscript,selection_command +689,2056646,"slurm/utils/create_dev_dir.sh",92,35,"pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +690,2056648,"slurm/utils/create_dev_dir.sh",91,36,"-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +691,2056669,"slurm/utils/create_dev_dir.sh",84,43,"project-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +692,2056833,"slurm/utils/create_dev_dir.sh",83,44,"-project-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +693,2056981,"slurm/utils/create_dev_dir.sh",81,46,"hk-project-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +694,2057173,"slurm/utils/create_dev_dir.sh",80,47,"/hk-project-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +695,2057260,"slurm/utils/create_dev_dir.sh",76,51,"home/hk-project-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +696,2057501,"slurm/utils/create_dev_dir.sh",74,53,"=/home/hk-project-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +697,2057924,"slurm/utils/create_dev_dir.sh",75,52,"/home/hk-project-pai00039/tum_ind3695/projects/jafar",shellscript,selection_command +698,2058091,"slurm/utils/create_dev_dir.sh",75,52,"",shellscript,content +699,2058343,"slurm/utils/create_dev_dir.sh",75,0,"/home/hk-project-p0023960/tum_dbd0378/jafar",shellscript,content +700,2058344,"slurm/utils/create_dev_dir.sh",118,0,"",shellscript,selection_keyboard +701,2058862,"slurm/utils/create_dev_dir.sh",117,0,"",shellscript,selection_command +702,2059386,"slurm/utils/create_dev_dir.sh",118,0,"",shellscript,selection_command +703,2070336,"slurm/utils/create_dev_dir.sh",105,7,"ind3695/projects",shellscript,content +704,2070345,"slurm/utils/create_dev_dir.sh",98,2,"",shellscript,content +705,2070349,"slurm/utils/create_dev_dir.sh",95,1,"0",shellscript,content +706,2070351,"slurm/utils/create_dev_dir.sh",93,0,"ai",shellscript,content +707,2070354,"slurm/utils/create_dev_dir.sh",75,0,"",shellscript,selection_command +708,2070671,"slurm/utils/create_dev_dir.sh",51,7,"ind3695/projects",shellscript,content +709,2070674,"slurm/utils/create_dev_dir.sh",44,2,"",shellscript,content +710,2070676,"slurm/utils/create_dev_dir.sh",41,1,"0",shellscript,content +711,2070677,"slurm/utils/create_dev_dir.sh",39,0,"ai",shellscript,content +712,2070678,"slurm/utils/create_dev_dir.sh",21,0,"",shellscript,selection_command +713,2072591,"slurm/utils/create_dev_dir.sh",39,2,"",shellscript,content +714,2072596,"slurm/utils/create_dev_dir.sh",41,1,"2",shellscript,content +715,2072601,"slurm/utils/create_dev_dir.sh",44,0,"60",shellscript,content +716,2072603,"slurm/utils/create_dev_dir.sh",51,16,"dbd0378",shellscript,content +717,2072841,"slurm/utils/create_dev_dir.sh",93,2,"",shellscript,content +718,2072850,"slurm/utils/create_dev_dir.sh",95,1,"2",shellscript,content +719,2072852,"slurm/utils/create_dev_dir.sh",98,0,"60",shellscript,content +720,2072854,"slurm/utils/create_dev_dir.sh",105,16,"dbd0378",shellscript,content +721,2072855,"slurm/utils/create_dev_dir.sh",75,0,"",shellscript,selection_command +722,2078799,"experiments/train_tokenizer_lr_1e-4_mixed_precision.sbatch",0,0,"",shellscript,tab +723,2101134,"slurm/utils/init_slurm_repo.sh",0,0,"#!/bin/bash\n\n# Name of the repo (change if needed)\nREPO_NAME=""slurm""\n\n# Create the main structure\nmkdir -p $REPO_NAME/{jobs,common,templates,utils,logs}\nmkdir -p $REPO_NAME/dev/{franz,mihir,alfred}\n\n# Create README stubs\ncat > $REPO_NAME/README.md << 'EOF'\n# slurm-launchpad\n\nThis repository contains Slurm job scripts and tools for ML workflows on the HPC cluster.\n\n## Structure\n\n- `jobs/` — Stable, production-ready sbatch scripts\n- `dev/` — Individual folders for development or experimental jobs\n- `common/` — Shared setup code (env, sbatch headers)\n- `templates/` — Optional Jinja2 or shell templates for job generation\n- `utils/` — Helper scripts (e.g., run wrapper)\n- `logs/` — Optional log output directory\n\nTeam: Franz, Mihir, Alfred\nEOF\n\ncat > $REPO_NAME/common/env_setup.sh << 'EOF'\n#!/bin/bash\n# Common environment setup for all jobs\n\nmodule load python/3.10\nsource ~/envs/ml/bin/activate\nEOF\nchmod +x $REPO_NAME/common/env_setup.sh\n\ncat > $REPO_NAME/common/defaults.sbatch.sh << 'EOF'\n#!/bin/bash\n# Common SBATCH directives (source this from your sbatch scripts)\n\n#SBATCH --ntasks=1\n#SBATCH --cpus-per-task=4\n#SBATCH --mem=16G\n#SBATCH --time=01:00:00\n#SBATCH --output=logs/%x_%j.out\nEOF\n\ncat > $REPO_NAME/utils/run_job.sh << 'EOF'\n#!/bin/bash\n# Run a job with a given sbatch file\n\nif [ -z ""$1"" ]; then\n echo ""Usage: ./run_job.sh ""\n exit 1\nfi\n\necho ""Launching job: $1""\nsbatch ""$1""\nEOF\nchmod +x $REPO_NAME/utils/run_job.sh\n\necho ""Slurm repo '$REPO_NAME' created!""\n",shellscript,tab +724,2486948,"TERMINAL",0,0,"salloc",,terminal_focus +725,2487861,"TERMINAL",0,0,"bash",,terminal_focus +726,2488934,"TERMINAL",0,0,"queue",,terminal_command +727,2488980,"TERMINAL",0,0,"]633;C",,terminal_output +728,2489037,"TERMINAL",0,0,"[?1049h(B[?7hhkn1993.localdomain: Sun Jul 20 13:59:34 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3361551 accelerat interact tum_dbd0 PD\t0:00\t2 (Priority)3361578 accelerat train_dy tum_dbd0 PD\t0:00\t2 (Priority)",,terminal_output +729,2490073,"TERMINAL",0,0,"5\t [?1049l\r[?1l>]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +730,2493542,"slurm/utils/init_slurm_repo.sh",198,0,"",shellscript,selection_mouse +731,2498317,"slurm/utils/init_slurm_repo.sh",846,0,"",shellscript,selection_command +732,2498975,"slurm/utils/init_slurm_repo.sh",1317,0,"",shellscript,selection_command +733,2501166,"slurm/utils/init_slurm_repo.sh",1490,0,"",shellscript,selection_command +734,2503386,"slurm/utils/init_slurm_repo.sh",0,0,"",shellscript,selection_command +735,2509977,"experiments/train_tokenizer_lr_1e-4_mixed_precision.sbatch",0,0,"",shellscript,tab +736,2649712,"slurm/jobs/mihir/horeka/yolo-runs/train_dynamics_yolorun.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=01:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/%x_%j.log\n#SBATCH --job-name=train_dyn_yolorun\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n# tf_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_tfrecord\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/checkpoints/$job_name/$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nlam_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/checkpoints/train_lam_action_space_scaling_20/3318547/lam_1751657975_200000/\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/train_tokenizer_batch_size_scaling_16_node/3321526/tokenizer_22000/\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --min_lr=0 \\n --max_lr=3e-5 \\n --log_image_interval=1000 \\n --log \\n --num_latent_actions=20 \\n --log_checkpoint_interval=1000 \\n --name=dynamics-yolorun-tf-records-$slurm_job_id \\n --tags dynamics yolo-run tf_records \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir\n # --lam_checkpoint=$lam_ckpt_dir\n",shellscript,tab +737,2656546,"slurm/jobs/mihir/horeka/yolo-runs/train_dynamics_yolorun.sbatch",436,0,"",shellscript,selection_mouse +738,2660000,"experiments/train_tokenizer_lr_1e-4_mixed_precision.sbatch",0,0,"",shellscript,tab +739,2712866,"TERMINAL",0,0,"cp slurm/jobs/mihir/horeka/batchsize_scaling/dynamics_cotraining/sqrt_lr/* slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/",,terminal_command +740,2712883,"TERMINAL",0,0,"]633;C]0;tum_dbd0378@hkn1993:~/jafar",,terminal_output +741,2719305,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",0,0,"sbatch scripts_horeka/batchsize_scaling/sqrt_lr/train_tokenizer_16_nodes.sbatch\nsbatch scripts_horeka/batchsize_scaling/sqrt_lr/train_tokenizer_1_nodes.sbatch\nsbatch scripts_horeka/batchsize_scaling/sqrt_lr/train_tokenizer_2_nodes.sbatch\nsbatch scripts_horeka/batchsize_scaling/sqrt_lr/train_tokenizer_4_nodes.sbatch\nsbatch scripts_horeka/batchsize_scaling/sqrt_lr/train_tokenizer_8_nodes.sbatch\n\n# sbatch scripts_horeka/batchsize_scaling/sqrt_lr/train_tokenizer_32_nodes.sbatch",shellscript,tab +742,2721302,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",18,0,"",shellscript,selection_mouse +743,2735659,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",7,0,"",shellscript,selection_command +744,2736065,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",7,1,"s",shellscript,selection_command +745,2736360,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",7,1,"s",shellscript,selection_command +746,2736389,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",7,1,"s",shellscript,selection_command +747,2736523,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",7,1,"s",shellscript,selection_command +748,2736706,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",7,1,"s",shellscript,selection_command +749,2737391,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",7,0,"",shellscript,selection_command +750,2738061,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",324,0,"s",shellscript,content +751,2738061,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",245,0,"s",shellscript,content +752,2738061,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",166,0,"s",shellscript,content +753,2738061,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",87,0,"s",shellscript,content +754,2738061,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",7,0,"s",shellscript,content +755,2738064,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",8,0,"",shellscript,selection_keyboard +756,2738132,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",329,0,"l",shellscript,content +757,2738132,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",249,0,"l",shellscript,content +758,2738132,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",169,0,"l",shellscript,content +759,2738133,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",89,0,"l",shellscript,content +760,2738133,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",8,0,"l",shellscript,content +761,2738133,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",9,0,"",shellscript,selection_keyboard +762,2738301,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",334,0,"r",shellscript,content +763,2738301,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",253,0,"r",shellscript,content +764,2738301,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",172,0,"r",shellscript,content +765,2738301,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",91,0,"r",shellscript,content +766,2738301,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",9,0,"r",shellscript,content +767,2738302,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",10,0,"",shellscript,selection_keyboard +768,2738325,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",339,0,"u",shellscript,content +769,2738325,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",257,0,"u",shellscript,content +770,2738326,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",175,0,"u",shellscript,content +771,2738326,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",93,0,"u",shellscript,content +772,2738326,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",10,0,"u",shellscript,content +773,2738326,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",11,0,"",shellscript,selection_keyboard +774,2738517,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",344,0,"m",shellscript,content +775,2738517,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",261,0,"m",shellscript,content +776,2738517,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",178,0,"m",shellscript,content +777,2738517,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",95,0,"m",shellscript,content +778,2738517,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",11,0,"m",shellscript,content +779,2738518,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",12,0,"",shellscript,selection_keyboard +780,2738620,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",349,0,"/",shellscript,content +781,2738621,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",265,0,"/",shellscript,content +782,2738621,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",181,0,"/",shellscript,content +783,2738621,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",97,0,"/",shellscript,content +784,2738621,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",12,0,"/",shellscript,content +785,2738622,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",13,0,"",shellscript,selection_keyboard +786,2739053,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",353,1,"",shellscript,content +787,2739054,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",268,1,"",shellscript,content +788,2739054,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",183,1,"",shellscript,content +789,2739054,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",98,1,"",shellscript,content +790,2739054,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",12,1,"",shellscript,content +791,2739212,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",348,1,"",shellscript,content +792,2739213,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",264,1,"",shellscript,content +793,2739213,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",180,1,"",shellscript,content +794,2739213,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",96,1,"",shellscript,content +795,2739213,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",11,1,"",shellscript,content +796,2739336,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",343,1,"",shellscript,content +797,2739336,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",260,1,"",shellscript,content +798,2739336,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",177,1,"",shellscript,content +799,2739337,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",94,1,"",shellscript,content +800,2739337,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",10,1,"",shellscript,content +801,2739525,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",338,1,"",shellscript,content +802,2739525,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",256,1,"",shellscript,content +803,2739525,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",174,1,"",shellscript,content +804,2739525,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",92,1,"",shellscript,content +805,2739525,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",9,1,"",shellscript,content +806,2739614,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",334,0,"u",shellscript,content +807,2739615,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",253,0,"u",shellscript,content +808,2739615,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",172,0,"u",shellscript,content +809,2739615,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",91,0,"u",shellscript,content +810,2739615,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",9,0,"u",shellscript,content +811,2739616,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",10,0,"",shellscript,selection_keyboard +812,2739698,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",339,0,"r",shellscript,content +813,2739699,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",257,0,"r",shellscript,content +814,2739699,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",175,0,"r",shellscript,content +815,2739699,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",93,0,"r",shellscript,content +816,2739699,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",10,0,"r",shellscript,content +817,2739700,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",11,0,"",shellscript,selection_keyboard +818,2739854,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",344,0,"m",shellscript,content +819,2739854,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",261,0,"m",shellscript,content +820,2739855,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",178,0,"m",shellscript,content +821,2739855,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",95,0,"m",shellscript,content +822,2739855,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",11,0,"m",shellscript,content +823,2739856,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",12,0,"",shellscript,selection_keyboard +824,2739858,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",349,0,"/",shellscript,content +825,2739858,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",265,0,"/",shellscript,content +826,2739858,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",181,0,"/",shellscript,content +827,2739858,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",97,0,"/",shellscript,content +828,2739858,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",12,0,"/",shellscript,content +829,2739859,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",13,0,"",shellscript,selection_keyboard +830,2742747,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",354,0,"j",shellscript,content +831,2742747,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",269,0,"j",shellscript,content +832,2742747,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",184,0,"j",shellscript,content +833,2742747,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",99,0,"j",shellscript,content +834,2742747,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",13,0,"j",shellscript,content +835,2742748,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",14,0,"",shellscript,selection_keyboard +836,2742819,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",359,0,"o",shellscript,content +837,2742821,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",273,0,"o",shellscript,content +838,2742822,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",187,0,"o",shellscript,content +839,2742822,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",101,0,"o",shellscript,content +840,2742822,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",14,0,"o",shellscript,content +841,2742823,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",15,0,"",shellscript,selection_keyboard +842,2743000,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",364,0,"b",shellscript,content +843,2743000,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",277,0,"b",shellscript,content +844,2743000,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",190,0,"b",shellscript,content +845,2743000,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",103,0,"b",shellscript,content +846,2743000,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",15,0,"b",shellscript,content +847,2743001,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",16,0,"",shellscript,selection_keyboard +848,2743010,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",369,0,"s",shellscript,content +849,2743011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",281,0,"s",shellscript,content +850,2743011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",193,0,"s",shellscript,content +851,2743011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",105,0,"s",shellscript,content +852,2743011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",16,0,"s",shellscript,content +853,2743011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",17,0,"",shellscript,selection_keyboard +854,2743195,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",374,0,"/",shellscript,content +855,2743196,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",285,0,"/",shellscript,content +856,2743196,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",196,0,"/",shellscript,content +857,2743196,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",107,0,"/",shellscript,content +858,2743196,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",17,0,"/",shellscript,content +859,2743197,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",18,0,"",shellscript,selection_keyboard +860,2745168,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",379,0,"f",shellscript,content +861,2745168,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",289,0,"f",shellscript,content +862,2745168,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",199,0,"f",shellscript,content +863,2745168,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",109,0,"f",shellscript,content +864,2745168,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",18,0,"f",shellscript,content +865,2745169,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",19,0,"",shellscript,selection_keyboard +866,2745337,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",384,0,"r",shellscript,content +867,2745337,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",293,0,"r",shellscript,content +868,2745337,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",202,0,"r",shellscript,content +869,2745337,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",111,0,"r",shellscript,content +870,2745337,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",19,0,"r",shellscript,content +871,2745337,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",20,0,"",shellscript,selection_keyboard +872,2745398,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",389,0,"a",shellscript,content +873,2745399,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",297,0,"a",shellscript,content +874,2745399,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",205,0,"a",shellscript,content +875,2745399,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",113,0,"a",shellscript,content +876,2745399,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",20,0,"a",shellscript,content +877,2745399,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",21,0,"",shellscript,selection_keyboard +878,2745482,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",394,0,"n",shellscript,content +879,2745482,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",301,0,"n",shellscript,content +880,2745482,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",208,0,"n",shellscript,content +881,2745482,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",115,0,"n",shellscript,content +882,2745482,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",21,0,"n",shellscript,content +883,2745482,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",22,0,"",shellscript,selection_keyboard +884,2745628,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",399,0,"z",shellscript,content +885,2745628,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",305,0,"z",shellscript,content +886,2745628,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",211,0,"z",shellscript,content +887,2745628,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",117,0,"z",shellscript,content +888,2745628,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",22,0,"z",shellscript,content +889,2745628,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",23,0,"",shellscript,selection_keyboard +890,2745706,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",404,0,"/",shellscript,content +891,2745706,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",309,0,"/",shellscript,content +892,2745706,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",214,0,"/",shellscript,content +893,2745706,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",119,0,"/",shellscript,content +894,2745706,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",23,0,"/",shellscript,content +895,2745706,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",24,0,"",shellscript,selection_keyboard +896,2746143,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",409,0,"h",shellscript,content +897,2746144,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",313,0,"h",shellscript,content +898,2746144,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",217,0,"h",shellscript,content +899,2746144,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",121,0,"h",shellscript,content +900,2746144,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",24,0,"h",shellscript,content +901,2746144,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",25,0,"",shellscript,selection_keyboard +902,2746150,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",414,0,"o",shellscript,content +903,2746150,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",317,0,"o",shellscript,content +904,2746150,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",220,0,"o",shellscript,content +905,2746150,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",123,0,"o",shellscript,content +906,2746150,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",25,0,"o",shellscript,content +907,2746150,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",26,0,"",shellscript,selection_keyboard +908,2746340,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",419,0,"r",shellscript,content +909,2746340,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",321,0,"r",shellscript,content +910,2746340,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",223,0,"r",shellscript,content +911,2746341,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",125,0,"r",shellscript,content +912,2746341,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",26,0,"r",shellscript,content +913,2746341,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",27,0,"",shellscript,selection_keyboard +914,2746353,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",424,0,"e",shellscript,content +915,2746353,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",325,0,"e",shellscript,content +916,2746353,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",226,0,"e",shellscript,content +917,2746353,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",127,0,"e",shellscript,content +918,2746353,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",27,0,"e",shellscript,content +919,2746354,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",28,0,"",shellscript,selection_keyboard +920,2746480,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",429,0,"k",shellscript,content +921,2746481,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",329,0,"k",shellscript,content +922,2746481,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",229,0,"k",shellscript,content +923,2746481,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",129,0,"k",shellscript,content +924,2746481,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",28,0,"k",shellscript,content +925,2746481,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",29,0,"",shellscript,selection_keyboard +926,2746564,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",434,0,"a",shellscript,content +927,2746564,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",333,0,"a",shellscript,content +928,2746564,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",232,0,"a",shellscript,content +929,2746565,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",131,0,"a",shellscript,content +930,2746565,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",29,0,"a",shellscript,content +931,2746565,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",30,0,"",shellscript,selection_keyboard +932,2747519,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",439,0,"/",shellscript,content +933,2747519,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",337,0,"/",shellscript,content +934,2747519,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",235,0,"/",shellscript,content +935,2747519,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",133,0,"/",shellscript,content +936,2747519,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",30,0,"/",shellscript,content +937,2747519,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,0,"",shellscript,selection_keyboard +938,2747824,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",30,0,"",shellscript,selection_command +939,2748072,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,0,"",shellscript,selection_command +940,2748292,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,1,"s",shellscript,selection_command +941,2748529,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,1,"s",shellscript,selection_command +942,2748769,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,2,"sc",shellscript,selection_command +943,2748983,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,3,"scr",shellscript,selection_command +944,2748984,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,3,"scr",shellscript,selection_command +945,2749103,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,4,"scri",shellscript,selection_command +946,2749288,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,4,"scri",shellscript,selection_command +947,2749289,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,5,"scrip",shellscript,selection_command +948,2749573,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,6,"script",shellscript,selection_command +949,2749575,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,7,"scripts",shellscript,selection_command +950,2749634,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,8,"scripts_",shellscript,selection_command +951,2749636,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,9,"scripts_h",shellscript,selection_command +952,2749667,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,10,"scripts_ho",shellscript,selection_command +953,2749682,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,11,"scripts_hor",shellscript,selection_command +954,2749701,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,11,"scripts_hor",shellscript,selection_command +955,2749813,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,12,"scripts_hore",shellscript,selection_command +956,2749945,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",0,32,"sbatch slurm/jobs/franz/horeka/s",shellscript,selection_command +957,2750480,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",0,32,"sbatch slurm/jobs/franz/horeka/s",shellscript,selection_command +958,2750862,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",0,32,"sbatch slurm/jobs/franz/horeka/s",shellscript,selection_command +959,2751089,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",1,31,"batch slurm/jobs/franz/horeka/s",shellscript,selection_command +960,2751386,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",1,31,"batch slurm/jobs/franz/horeka/s",shellscript,selection_command +961,2751563,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",2,30,"atch slurm/jobs/franz/horeka/s",shellscript,selection_command +962,2751740,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",7,25,"slurm/jobs/franz/horeka/s",shellscript,selection_command +963,2751791,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",12,20,"/jobs/franz/horeka/s",shellscript,selection_command +964,2751953,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",13,19,"jobs/franz/horeka/s",shellscript,selection_command +965,2752091,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",17,15,"/franz/horeka/s",shellscript,selection_command +966,2752268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",18,14,"franz/horeka/s",shellscript,selection_command +967,2752453,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",23,9,"/horeka/s",shellscript,selection_command +968,2752611,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",24,8,"horeka/s",shellscript,selection_command +969,2752757,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",30,2,"/s",shellscript,selection_command +970,2753063,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,15,"scripts_horeka/",shellscript,selection_command +971,2753737,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",444,15,"",shellscript,content +972,2753738,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",341,15,"",shellscript,content +973,2753738,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",238,15,"",shellscript,content +974,2753738,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",135,15,"",shellscript,content +975,2753738,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,15,"",shellscript,content +976,2753743,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",31,0,"",shellscript,selection_command +977,2758249,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",48,0,"",shellscript,selection_command +978,2758461,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",49,0,"",shellscript,selection_command +979,2758865,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",318,0,"raining/linear",shellscript,content +980,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",317,0,"_co",shellscript,content +981,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",315,2,"",shellscript,content +982,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",314,0,"dynamic",shellscript,content +983,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",230,0,"raining/linear",shellscript,content +984,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",229,0,"_co",shellscript,content +985,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",227,2,"",shellscript,content +986,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",226,0,"dynamic",shellscript,content +987,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",142,0,"raining/linear",shellscript,content +988,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",141,0,"_co",shellscript,content +989,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",139,2,"",shellscript,content +990,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",138,0,"dynamic",shellscript,content +991,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",53,0,"raining/linear",shellscript,content +992,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",52,0,"_co",shellscript,content +993,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",50,2,"",shellscript,content +994,2758866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",49,0,"dynamic",shellscript,content +995,2763511,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",167,0,"",shellscript,selection_command +996,2763760,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",277,0,"",shellscript,selection_command +997,2763788,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",387,0,"",shellscript,selection_command +998,2763821,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",497,0,"",shellscript,selection_command +999,2763874,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",529,0,"",shellscript,selection_command +1000,2764269,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",497,0,"",shellscript,selection_command +1001,2765721,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",575,1,"",shellscript,content +1002,2765721,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",574,0,"_cotraining/linea",shellscript,content +1003,2765721,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",573,1,"",shellscript,content +1004,2765721,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",572,0,"dynamic",shellscript,content +1005,2765721,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",547,0,"/franz/",shellscript,content +1006,2765721,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",546,1,"",shellscript,content +1007,2765722,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",545,0,"m/job",shellscript,content +1008,2765722,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",542,3,"",shellscript,content +1009,2765722,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",541,0,"lu",shellscript,content +1010,2765722,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",540,1,"",shellscript,content +1011,2765722,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",494,0,"raining/linear",shellscript,content +1012,2765722,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",493,0,"_co",shellscript,content +1013,2765722,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",491,2,"",shellscript,content +1014,2765722,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",490,0,"dynamic",shellscript,content +1015,2775761,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",409,0,"",shellscript,selection_command +1016,2776028,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",299,0,"",shellscript,selection_command +1017,2776139,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",189,0,"",shellscript,selection_command +1018,2776301,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",78,0,"",shellscript,selection_command +1019,2776552,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",79,0,"",shellscript,selection_command +1020,2776960,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",80,0,"",shellscript,selection_command +1021,2777217,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",81,0,"",shellscript,selection_command +1022,2777239,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",82,0,"",shellscript,selection_command +1023,2777281,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",83,0,"",shellscript,selection_command +1024,2777324,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",84,0,"",shellscript,selection_command +1025,2777348,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,0,"",shellscript,selection_command +1026,2778266,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",535,0,"cs",shellscript,content +1027,2778266,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",532,3,"",shellscript,content +1028,2778266,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",531,0,"am",shellscript,content +1029,2778266,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",530,0,"dy",shellscript,content +1030,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",526,4,"",shellscript,content +1031,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",425,0,"_lr/train_dynamics",shellscript,content +1032,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",424,0,"a",shellscript,content +1033,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",423,0,"cs_cotraining/lin",shellscript,content +1034,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",422,1,"",shellscript,content +1035,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",421,0,"g/dynam",shellscript,content +1036,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",420,0,"_scali",shellscript,content +1037,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",419,0,"a/batchsiz",shellscript,content +1038,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",418,0,"bs/franz/hore",shellscript,content +1039,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",417,0,"ch\nsbatch slurm/j",shellscript,content +1040,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",416,0,"dynamics_2_nodes.sba",shellscript,content +1041,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",317,0,"lr/train_dynamics_1",shellscript,content +1042,2778267,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",316,1,"",shellscript,content +1043,2778268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",314,0,"a",shellscript,content +1044,2778268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",313,0,"cs_cotraining/lin",shellscript,content +1045,2778268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",312,1,"",shellscript,content +1046,2778268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",311,0,"g/dynam",shellscript,content +1047,2778268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",310,0,"_scali",shellscript,content +1048,2778268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",309,0,"a/batchsiz",shellscript,content +1049,2778268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",308,0,"bs/franz/hore",shellscript,content +1050,2778268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",307,0,"ch\nsbatch slurm/j",shellscript,content +1051,2778268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",306,0,"dynamics_16_nodes.sba",shellscript,content +1052,2779384,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",743,8,"",shellscript,content +1053,2779388,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",743,0,"tokenizer",shellscript,content +1054,2779391,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",525,117,"",shellscript,content +1055,2779395,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",525,0,"tokenizer",shellscript,content +1056,2779404,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",306,120,"",shellscript,content +1057,2779420,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",306,0,"tokenizer_2",shellscript,content +1058,2780747,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,1,"t",shellscript,selection_command +1059,2780773,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,2,"to",shellscript,selection_command +1060,2781027,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,3,"tok",shellscript,selection_command +1061,2781053,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,4,"toke",shellscript,selection_command +1062,2781083,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,5,"token",shellscript,selection_command +1063,2781116,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,6,"tokeni",shellscript,selection_command +1064,2781156,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,7,"tokeniz",shellscript,selection_command +1065,2781283,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,8,"tokenize",shellscript,selection_command +1066,2781535,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,9,"tokenizer",shellscript,selection_command +1067,2781584,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,9,"tokenizer",shellscript,selection_command +1068,2781840,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,9,"tokenizer",shellscript,selection_command +1069,2781959,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,9,"tokenizer",shellscript,selection_command +1070,2781960,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,9,"tokenizer",shellscript,selection_command +1071,2781962,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",0,86,"sbatch slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_t",shellscript,selection_command +1072,2781963,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,9,"tokenizer",shellscript,selection_command +1073,2782336,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",0,86,"sbatch slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_t",shellscript,selection_command +1074,2782497,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,9,"tokenizer",shellscript,selection_command +1075,2783010,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",526,9,"",shellscript,content +1076,2783011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",416,9,"",shellscript,content +1077,2783011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",306,9,"",shellscript,content +1078,2783011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",196,9,"",shellscript,content +1079,2783011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,9,"",shellscript,content +1080,2783272,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",490,0,"d",shellscript,content +1081,2783272,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",389,0,"d",shellscript,content +1082,2783273,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",288,0,"d",shellscript,content +1083,2783273,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",187,0,"d",shellscript,content +1084,2783273,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",85,0,"d",shellscript,content +1085,2783273,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",86,0,"",shellscript,selection_keyboard +1086,2783365,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",495,0,"y",shellscript,content +1087,2783365,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",393,0,"y",shellscript,content +1088,2783366,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",291,0,"y",shellscript,content +1089,2783366,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",189,0,"y",shellscript,content +1090,2783366,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",86,0,"y",shellscript,content +1091,2783366,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",87,0,"",shellscript,selection_keyboard +1092,2783414,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",500,0,"n",shellscript,content +1093,2783414,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",397,0,"n",shellscript,content +1094,2783414,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",294,0,"n",shellscript,content +1095,2783414,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",191,0,"n",shellscript,content +1096,2783415,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",87,0,"n",shellscript,content +1097,2783415,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",88,0,"",shellscript,selection_keyboard +1098,2783545,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",505,0,"a",shellscript,content +1099,2783545,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",401,0,"a",shellscript,content +1100,2783545,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",297,0,"a",shellscript,content +1101,2783545,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",193,0,"a",shellscript,content +1102,2783545,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",88,0,"a",shellscript,content +1103,2783546,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",89,0,"",shellscript,selection_keyboard +1104,2783616,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",510,0,"m",shellscript,content +1105,2783616,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",405,0,"m",shellscript,content +1106,2783616,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",300,0,"m",shellscript,content +1107,2783616,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",195,0,"m",shellscript,content +1108,2783616,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",89,0,"m",shellscript,content +1109,2783617,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",90,0,"",shellscript,selection_keyboard +1110,2783701,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",515,0,"i",shellscript,content +1111,2783701,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",409,0,"i",shellscript,content +1112,2783701,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",303,0,"i",shellscript,content +1113,2783701,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",197,0,"i",shellscript,content +1114,2783701,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",90,0,"i",shellscript,content +1115,2783702,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",91,0,"",shellscript,selection_keyboard +1116,2783758,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",520,0,"c",shellscript,content +1117,2783759,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",413,0,"c",shellscript,content +1118,2783759,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",306,0,"c",shellscript,content +1119,2783759,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",199,0,"c",shellscript,content +1120,2783759,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",91,0,"c",shellscript,content +1121,2783760,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",92,0,"",shellscript,selection_keyboard +1122,2783786,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",525,0,"s",shellscript,content +1123,2783786,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",417,0,"s",shellscript,content +1124,2783786,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",309,0,"s",shellscript,content +1125,2783786,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",201,0,"s",shellscript,content +1126,2783786,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",92,0,"s",shellscript,content +1127,2783787,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",93,0,"",shellscript,selection_keyboard +1128,2786166,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",530,0,"\n",shellscript,content +1129,2786167,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",421,0,"\n",shellscript,content +1130,2786167,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",312,0,"\n",shellscript,content +1131,2786167,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",203,0,"\n",shellscript,content +1132,2786167,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",93,0,"\n",shellscript,content +1133,2786822,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",534,1,"",shellscript,content +1134,2786822,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",424,1,"",shellscript,content +1135,2786822,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",314,1,"",shellscript,content +1136,2786823,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",204,1,"",shellscript,content +1137,2786823,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",93,1,"",shellscript,content +1138,2787229,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",92,0,"",shellscript,selection_command +1139,2787675,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",202,0,"",shellscript,selection_command +1140,2787920,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",311,0,"",shellscript,selection_command +1141,2787948,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",420,0,"",shellscript,selection_command +1142,2788004,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",529,0,"",shellscript,selection_command +1143,2788085,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",546,0,"",shellscript,selection_command +1144,2788368,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",639,0,"",shellscript,selection_command +1145,2789870,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",638,0,"",shellscript,selection_command +1146,2790185,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",637,0,"",shellscript,selection_command +1147,2790187,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",636,0,"",shellscript,selection_command +1148,2790320,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",635,0,"",shellscript,selection_command +1149,2790579,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,0,"",shellscript,selection_command +1150,2790783,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",633,0,"",shellscript,selection_command +1151,2791068,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,0,"",shellscript,selection_command +1152,2791233,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,1,"t",shellscript,selection_command +1153,2791258,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,2,"to",shellscript,selection_command +1154,2791518,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,3,"tok",shellscript,selection_command +1155,2791548,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,4,"toke",shellscript,selection_command +1156,2791576,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,5,"token",shellscript,selection_command +1157,2791652,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,6,"tokeni",shellscript,selection_command +1158,2791758,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,7,"tokeniz",shellscript,selection_command +1159,2791938,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,8,"tokenize",shellscript,selection_command +1160,2792118,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,9,"tokenizer",shellscript,selection_command +1161,2792361,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,9,"",shellscript,content +1162,2792625,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",634,0,"d",shellscript,content +1163,2792627,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",635,0,"",shellscript,selection_keyboard +1164,2792718,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",635,0,"y",shellscript,content +1165,2792719,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",636,0,"",shellscript,selection_keyboard +1166,2792806,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",636,0,"n",shellscript,content +1167,2792808,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",637,0,"",shellscript,selection_keyboard +1168,2792855,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",637,0,"a",shellscript,content +1169,2792856,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",638,0,"",shellscript,selection_keyboard +1170,2792955,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",638,0,"m",shellscript,content +1171,2792956,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",639,0,"",shellscript,selection_keyboard +1172,2793007,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",639,0,"i",shellscript,content +1173,2793009,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",640,0,"",shellscript,selection_keyboard +1174,2793068,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",640,0,"c",shellscript,content +1175,2793075,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",641,0,"",shellscript,selection_keyboard +1176,2793117,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",641,0,"s",shellscript,content +1177,2793119,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",642,0,"",shellscript,selection_keyboard +1178,2793416,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",641,0,"",shellscript,selection_command +1179,2793724,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",547,0,"",shellscript,selection_command +1180,2794378,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",657,0,"",shellscript,selection_command +1181,2794749,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",547,0,"",shellscript,selection_command +1182,2800858,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",546,0,"",shellscript,selection_command +1183,2801023,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",437,0,"",shellscript,selection_command +1184,2813987,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",0,0,"#!/usr/bin/env bash\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords/10fps_160x90\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=""debug""\nslurm_job_id=""0000""\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/checkpoints/$job_name/$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\nlam_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/checkpoints/train_lam_action_space_scaling_20/3318547/lam_1751657975_200000/\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/train_tokenizer_batch_size_scaling_16_node/3321526/tokenizer_22000/\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --min_lr=0 \\n --max_lr=3e-4 \\n --log_image_interval=1000 \\n --log \\n --num_latent_actions=20 \\n --log_checkpoint_interval=1000 \\n --name=dynamics-debug-$slurm_job_id \\n --tags dynamics debug \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir \\n --lam_checkpoint=$lam_ckpt_dir\n",shellscript,tab +1185,2816234,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",803,0,"",shellscript,selection_mouse +1186,2817630,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",0,0,"",shellscript,selection_command +1187,2818391,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",20,0,"",shellscript,selection_command +1188,2818607,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",21,0,"",shellscript,selection_command +1189,2818633,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",51,0,"",shellscript,selection_command +1190,2818781,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",81,0,"",shellscript,selection_command +1191,2818783,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",107,0,"",shellscript,selection_command +1192,2818785,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,0,"",shellscript,selection_command +1193,2818917,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",235,0,"",shellscript,selection_command +1194,2819352,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,0,"",shellscript,selection_command +1195,2819638,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",233,0,"",shellscript,selection_command +1196,2821641,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",299,0,"",shellscript,selection_command +1197,2821889,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",233,0,"",shellscript,selection_command +1198,2824871,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",234,0,"chunked",shellscript,content +1199,2824871,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",228,6,"",shellscript,content +1200,2824871,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",221,6,"",shellscript,content +1201,2826766,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",221,8,"",shellscript,content +1202,2826770,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",221,0,"/10fps_160x90",shellscript,content +1203,2826775,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",222,0,"",shellscript,selection_command +1204,2842010,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",0,0,"",shellscript,tab +1205,2844758,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",20,0,"",shellscript,selection_command +1206,2845063,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",21,0,"",shellscript,selection_command +1207,2845065,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",39,0,"",shellscript,selection_command +1208,2845086,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",67,0,"",shellscript,selection_command +1209,2845118,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",91,0,"",shellscript,selection_command +1210,2845141,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",123,0,"",shellscript,selection_command +1211,2845243,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",149,0,"",shellscript,selection_command +1212,2845244,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",170,0,"",shellscript,selection_command +1213,2845246,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",298,0,"",shellscript,selection_command +1214,2845315,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",425,0,"",shellscript,selection_command +1215,2845393,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",478,0,"",shellscript,selection_command +1216,2845645,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",479,0,"",shellscript,selection_command +1217,2845675,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",503,0,"",shellscript,selection_command +1218,2845767,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",510,0,"",shellscript,selection_command +1219,2845769,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",511,0,"",shellscript,selection_command +1220,2845773,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",541,0,"",shellscript,selection_command +1221,2845923,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",571,0,"",shellscript,selection_command +1222,2846079,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",597,0,"",shellscript,selection_command +1223,2846291,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",598,0,"",shellscript,selection_command +1224,2846416,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",718,0,"",shellscript,selection_command +1225,2850521,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",598,0,"",shellscript,selection_command +1226,2850684,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",718,0,"",shellscript,selection_command +1227,3002902,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",597,0,"",shellscript,selection_command +1228,3002909,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",595,0,"",shellscript,selection_command +1229,3002932,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",569,0,"",shellscript,selection_command +1230,3002965,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",539,0,"",shellscript,selection_command +1231,3003061,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",510,0,"",shellscript,selection_command +1232,3003062,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",508,0,"",shellscript,selection_command +1233,3003064,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",501,0,"",shellscript,selection_command +1234,3003098,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",478,0,"",shellscript,selection_command +1235,3003131,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",476,0,"",shellscript,selection_command +1236,3003162,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",423,0,"",shellscript,selection_command +1237,3003196,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",296,0,"",shellscript,selection_command +1238,3005263,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",423,0,"",shellscript,selection_command +1239,3005522,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",476,0,"",shellscript,selection_command +1240,3005587,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",478,0,"",shellscript,selection_command +1241,3005588,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",501,0,"",shellscript,selection_command +1242,3005678,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",508,0,"",shellscript,selection_command +1243,3005679,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",510,0,"",shellscript,selection_command +1244,3005680,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",539,0,"",shellscript,selection_command +1245,3005711,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",569,0,"",shellscript,selection_command +1246,3005982,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",595,0,"",shellscript,selection_command +1247,3006202,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",597,0,"",shellscript,selection_command +1248,3006501,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",718,0,"",shellscript,selection_command +1249,3008203,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",0,0,"",shellscript,tab +1250,3010239,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",0,0,"",shellscript,tab +1251,3011526,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",598,0,"",shellscript,selection_command +1252,3011772,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",0,0,"",shellscript,tab +1253,3012174,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,0,"",shellscript,selection_command +1254,3012593,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,126,"array_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords/10fps_160x90",shellscript,selection_command +1255,3012735,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,126,"array_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked",shellscript,content +1256,3012751,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,0,"",shellscript,selection_command +1257,3013405,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",228,0,"",shellscript,selection_command +1258,3013871,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,0,"",shellscript,selection_command +1259,3018915,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",230,0,"",shellscript,selection_command +1260,3019660,"experiments/train_dynamics_lr_1e-4_larger_ffn.sbatch",0,0,"",shellscript,tab +1261,3021974,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",0,0,"",shellscript,tab +1262,3024300,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",296,0,"",shellscript,selection_command +1263,3024552,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",297,0,"",shellscript,selection_command +1264,3024613,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",314,0,"",shellscript,selection_command +1265,3024913,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",334,0,"",shellscript,selection_command +1266,3025079,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",335,0,"",shellscript,selection_command +1267,3025657,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",445,0,"",shellscript,selection_command +1268,3039232,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",335,0,"",shellscript,selection_command +1269,3043436,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",447,0,"",shellscript,selection_command +1270,3043583,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",472,0,"",shellscript,selection_command +1271,3043733,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",473,0,"",shellscript,selection_command +1272,3044048,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",474,0,"",shellscript,selection_command +1273,3045370,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",623,0,"",shellscript,selection_command +1274,3049199,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",474,0,"",shellscript,selection_command +1275,3049552,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",473,0,"",shellscript,selection_command +1276,3049726,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",472,0,"",shellscript,selection_command +1277,3049900,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",447,0,"",shellscript,selection_command +1278,3049970,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",335,0,"",shellscript,selection_command +1279,3050769,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",447,0,"",shellscript,selection_command +1280,3051042,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",472,0,"",shellscript,selection_command +1281,3051044,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",473,0,"",shellscript,selection_command +1282,3051046,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",474,0,"",shellscript,selection_command +1283,3052421,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",623,0,"",shellscript,selection_command +1284,3057587,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",474,0,"",shellscript,selection_command +1285,3058132,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",623,0,"",shellscript,selection_command +1286,3058804,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",474,0,"",shellscript,selection_command +1287,3058953,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",625,0,"",shellscript,selection_command +1288,3059234,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",778,0,"",shellscript,selection_command +1289,3059962,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",625,0,"",shellscript,selection_command +1290,3060434,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",780,0,"",shellscript,selection_command +1291,3060568,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",781,0,"",shellscript,selection_command +1292,3061146,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",798,0,"",shellscript,selection_command +1293,3061296,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",799,0,"",shellscript,selection_command +1294,3098889,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",831,0,"",shellscript,selection_command +1295,3099222,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",799,0,"",shellscript,selection_command +1296,3099536,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",831,0,"",shellscript,selection_command +1297,3101632,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",862,0,"",shellscript,selection_command +1298,3101881,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",831,0,"",shellscript,selection_command +1299,3115784,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",799,0,"",shellscript,selection_command +1300,3116008,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",831,0,"",shellscript,selection_command +1301,3117379,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",864,0,"",shellscript,selection_command +1302,3117901,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",886,0,"",shellscript,selection_command +1303,3118199,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",903,0,"",shellscript,selection_command +1304,3118434,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",923,0,"",shellscript,selection_command +1305,3124419,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",0,0,"",shellscript,selection_command +1306,3124956,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",20,0,"",shellscript,selection_command +1307,3125222,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",21,0,"",shellscript,selection_command +1308,3125247,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",51,0,"",shellscript,selection_command +1309,3125293,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",81,0,"",shellscript,selection_command +1310,3125306,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",107,0,"",shellscript,selection_command +1311,3125338,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,0,"",shellscript,selection_command +1312,3125371,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",230,0,"",shellscript,selection_command +1313,3125404,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",296,0,"",shellscript,selection_command +1314,3125438,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",297,0,"",shellscript,selection_command +1315,3125470,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",314,0,"",shellscript,selection_command +1316,3125503,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",334,0,"",shellscript,selection_command +1317,3125537,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",335,0,"",shellscript,selection_command +1318,3125572,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",447,0,"",shellscript,selection_command +1319,3125605,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",472,0,"",shellscript,selection_command +1320,3125637,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",473,0,"",shellscript,selection_command +1321,3125746,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",474,0,"",shellscript,selection_command +1322,3125747,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",625,0,"",shellscript,selection_command +1323,3125748,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",780,0,"",shellscript,selection_command +1324,3125771,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",781,0,"",shellscript,selection_command +1325,3125804,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",798,0,"",shellscript,selection_command +1326,3125838,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",799,0,"",shellscript,selection_command +1327,3125871,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",831,0,"",shellscript,selection_command +1328,3126273,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",864,0,"",shellscript,selection_command +1329,3126430,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",886,0,"",shellscript,selection_command +1330,3126593,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",903,0,"",shellscript,selection_command +1331,3126794,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",923,0,"",shellscript,selection_command +1332,3129285,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",903,0,"",shellscript,selection_command +1333,3130064,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",923,0,"",shellscript,selection_command +1334,3131531,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",955,0,"",shellscript,selection_command +1335,3137281,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",967,0,"",shellscript,selection_command +1336,3137476,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",997,0,"",shellscript,selection_command +1337,3137501,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1034,0,"",shellscript,selection_command +1338,3137533,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1076,0,"",shellscript,selection_command +1339,3138227,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1104,0,"",shellscript,selection_command +1340,3138414,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1130,0,"",shellscript,selection_command +1341,3139381,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1130,21," --project jafar \",shellscript,selection_command +1342,3140952,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1104,47," --entity instant-uv \\n --project jafar \",shellscript,selection_command +1343,3141116,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1076,75," --tags dynamics debug \\n --entity instant-uv \\n --project jafar \",shellscript,selection_command +1344,3146521,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1034,117," --name=dynamics-debug-$slurm_job_id \\n --tags dynamics debug \\n --entity instant-uv \\n --project jafar \",shellscript,selection_command +1345,3146954,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",997,154," --log_checkpoint_interval=1000 \\n --name=dynamics-debug-$slurm_job_id \\n --tags dynamics debug \\n --entity instant-uv \\n --project jafar \",shellscript,selection_command +1346,3148160,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",997,155,"",shellscript,content +1347,3148166,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1001,0,"",shellscript,selection_command +1348,3148539,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",971,0,"",shellscript,selection_command +1349,3148692,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",959,0,"",shellscript,selection_command +1350,3149170,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",955,12,"",shellscript,content +1351,3149172,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",959,0,"",shellscript,selection_command +1352,3149339,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",927,0,"",shellscript,selection_command +1353,3149657,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",923,32,"",shellscript,content +1354,3149670,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",927,0,"",shellscript,selection_command +1355,3152351,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",957,0,"",shellscript,selection_command +1356,3152671,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1006,0,"",shellscript,selection_command +1357,3152848,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1042,0,"",shellscript,selection_command +1358,3153405,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",1006,0,"",shellscript,selection_command +1359,3153566,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",957,0,"",shellscript,selection_command +1360,3154283,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",953,0,"",shellscript,selection_command +1361,3155536,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",923,0,"",shellscript,selection_command +1362,3155782,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",903,0,"",shellscript,selection_command +1363,3155812,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",886,0,"",shellscript,selection_command +1364,3155985,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",864,0,"",shellscript,selection_command +1365,3156152,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",831,0,"",shellscript,selection_command +1366,3156307,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",799,0,"",shellscript,selection_command +1367,3156511,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",831,0,"",shellscript,selection_command +1368,3156683,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",864,0,"",shellscript,selection_command +1369,3165387,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_1_node\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/dynamics-cotraining-batchsize-scaling/$job_name\nmkdir -p $CHECKPOINT_DIR\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/train_tokenizer_batch_size_scaling_16_node/3321526/tokenizer_22000/\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --save_ckpt \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=48 \\n --min_lr=0 \\n --max_lr=1e-5 \\n --log_image_interval=1000 \\n --log \\n --log_checkpoint_interval=1000 \\n --name=dynamics-batch-size-scaling-1-node-$slurm_job_id \\n --tags dynamics batch-size-scaling 1-node \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir\n",shellscript,tab +1370,3168020,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",678,0,"",shellscript,selection_mouse +1371,3168957,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",762,0,"",shellscript,selection_command +1372,3170736,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",642,0,"",shellscript,selection_command +1373,3174159,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +1374,3174354,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +1375,3175027,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +1376,3175438,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +1377,3175748,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +1378,3175921,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +1379,3176437,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +1380,3178702,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",39,0,"",shellscript,selection_command +1381,3179000,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",67,0,"",shellscript,selection_command +1382,3179225,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",91,0,"",shellscript,selection_command +1383,3179404,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",123,0,"",shellscript,selection_command +1384,3179595,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",149,0,"",shellscript,selection_command +1385,3179776,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1386,3180454,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",171,0,"",shellscript,selection_command +1387,3180702,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",178,0,"",shellscript,selection_command +1388,3180792,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",180,0,"",shellscript,selection_command +1389,3180794,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",186,0,"",shellscript,selection_command +1390,3180796,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",188,0,"",shellscript,selection_command +1391,3180829,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",192,0,"",shellscript,selection_command +1392,3180970,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",193,0,"",shellscript,selection_command +1393,3180971,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",197,0,"",shellscript,selection_command +1394,3180972,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",198,0,"",shellscript,selection_command +1395,3180975,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",207,0,"",shellscript,selection_command +1396,3180995,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",208,0,"",shellscript,selection_command +1397,3181494,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",514,0,"s",shellscript,content +1398,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",509,5,"",shellscript,content +1399,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",504,4,"",shellscript,content +1400,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",503,0,"m",shellscript,content +1401,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",498,5,"",shellscript,content +1402,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",491,6,"",shellscript,content +1403,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",490,0,"dy",shellscript,content +1404,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",486,4,"",shellscript,content +1405,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",403,0,"anz",shellscript,content +1406,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",402,0,"f",shellscript,content +1407,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",398,4,"",shellscript,content +1408,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",258,0,"anz",shellscript,content +1409,3181495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",257,0,"f",shellscript,content +1410,3181496,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",253,4,"",shellscript,content +1411,3183643,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",486,8,"",shellscript,content +1412,3183645,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",486,0,"tokenizer_batch_size_scaling",shellscript,content +1413,3183647,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",398,5,"",shellscript,content +1414,3183652,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",398,0,"mihir",shellscript,content +1415,3183653,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",253,5,"",shellscript,content +1416,3183655,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",253,0,"mihir",shellscript,content +1417,3186270,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",253,5,"",shellscript,content +1418,3186272,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",253,0,"franz",shellscript,content +1419,3186273,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",398,5,"",shellscript,content +1420,3186275,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",398,0,"franz",shellscript,content +1421,3186280,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",486,28,"",shellscript,content +1422,3186281,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",486,0,"dynamics",shellscript,content +1423,3186946,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",215,0,"",shellscript,selection_command +1424,3187280,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",216,0,"",shellscript,selection_command +1425,3187286,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",227,0,"",shellscript,selection_command +1426,3187287,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",228,0,"",shellscript,selection_command +1427,3187289,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",242,0,"",shellscript,selection_command +1428,3187318,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",243,0,"",shellscript,selection_command +1429,3187354,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",247,0,"",shellscript,selection_command +1430,3187389,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",248,0,"",shellscript,selection_command +1431,3187805,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",258,0,"",shellscript,selection_command +1432,3188134,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",259,0,"",shellscript,selection_command +1433,3188874,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",262,0,"",shellscript,selection_command +1434,3189182,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",263,0,"",shellscript,selection_command +1435,3189249,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",267,0,"",shellscript,selection_command +1436,3189550,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",268,0,"",shellscript,selection_command +1437,3236022,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1438,3236214,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",171,0,"",shellscript,selection_command +1439,3236387,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",178,0,"",shellscript,selection_command +1440,3236548,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",180,0,"",shellscript,selection_command +1441,3236714,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",186,0,"",shellscript,selection_command +1442,3236854,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",188,0,"",shellscript,selection_command +1443,3237231,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,0,"",shellscript,selection_command +1444,3237318,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,1,"/",shellscript,selection_command +1445,3238259,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,129,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n",shellscript,selection_command +1446,3238610,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,128,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1447,3238699,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,127,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.lo",shellscript,selection_command +1448,3239011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,126,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.l",shellscript,selection_command +1449,3239247,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,125,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.",shellscript,selection_command +1450,3239279,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,124,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j",shellscript,selection_command +1451,3239312,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,123,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%",shellscript,selection_command +1452,3239344,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,122,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_",shellscript,selection_command +1453,3239538,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,121,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x",shellscript,selection_command +1454,3239538,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,120,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%",shellscript,selection_command +1455,3239697,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,119,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/",shellscript,selection_command +1456,3239822,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,118,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling",shellscript,selection_command +1457,3240221,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,119,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/",shellscript,selection_command +1458,3241452,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,118,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling",shellscript,selection_command +1459,3241757,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,112,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-s",shellscript,selection_command +1460,3242024,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,111,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-",shellscript,selection_command +1461,3242151,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,102,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-b",shellscript,selection_command +1462,3242319,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,101,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-",shellscript,selection_command +1463,3242403,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,91,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-c",shellscript,selection_command +1464,3242544,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,90,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-",shellscript,selection_command +1465,3242701,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,82,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/d",shellscript,selection_command +1466,3243194,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",187,81,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/",shellscript,selection_command +1467,3243423,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",267,0,"",shellscript,selection_command +1468,3244814,"TERMINAL",0,0,"cd /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/",,terminal_command +1469,3244826,"TERMINAL",0,0,"]633;C]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +1470,3245533,"TERMINAL",0,0,"ls",,terminal_command +1471,3245548,"TERMINAL",0,0,"]633;Clarger_ffn_dynamics\r\nlarger_ffn_tokenizer\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3352433.log\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3353627.log\r\n]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +1472,3262261,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1473,3267384,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",314,0,"",shellscript,selection_command +1474,3290905,"TERMINAL",0,0,"mkdir dynamics-cotraining-batchsize-scaling",,terminal_command +1475,3290905,"TERMINAL",0,0,"]633;C]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +1476,3293663,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1477,3294881,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",316,0,"",shellscript,selection_command +1478,3295106,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_command +1479,3296505,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",462,0,"",shellscript,selection_command +1480,3296753,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",469,0,"",shellscript,selection_command +1481,3296783,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",471,0,"",shellscript,selection_command +1482,3296815,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",474,0,"",shellscript,selection_command +1483,3296848,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",475,0,"",shellscript,selection_command +1484,3296886,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",479,0,"",shellscript,selection_command +1485,3296915,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",480,0,"",shellscript,selection_command +1486,3296949,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",502,0,"",shellscript,selection_command +1487,3296984,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",503,0,"",shellscript,selection_command +1488,3297017,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",505,0,"",shellscript,selection_command +1489,3297053,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",509,0,"",shellscript,selection_command +1490,3297088,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",513,0,"",shellscript,selection_command +1491,3297197,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",520,0,"",shellscript,selection_command +1492,3297198,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",527,0,"",shellscript,selection_command +1493,3297199,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",531,0,"",shellscript,selection_command +1494,3297219,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",532,0,"",shellscript,selection_command +1495,3297253,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",534,0,"",shellscript,selection_command +1496,3297309,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",535,0,"",shellscript,selection_command +1497,3299145,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",534,0,"",shellscript,selection_command +1498,3299399,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",527,0,"",shellscript,selection_command +1499,3299428,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",503,0,"",shellscript,selection_command +1500,3299602,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",502,0,"",shellscript,selection_command +1501,3299823,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_command +1502,3299891,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",502,0,"",shellscript,selection_command +1503,3300179,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_command +1504,3300433,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,40,"#SBATCH --job-name=train_dynamics_1_node",shellscript,selection_command +1505,3300567,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,481,"\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --job-name=train_dynamics_1_node",shellscript,selection_command +1506,3300723,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,501,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --job-name=train_dynamics_1_node",shellscript,selection_command +1507,3301401,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +1508,3301588,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +1509,3301919,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +1510,3301921,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",39,0,"",shellscript,selection_command +1511,3301922,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",67,0,"",shellscript,selection_command +1512,3301932,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",91,0,"",shellscript,selection_command +1513,3301964,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",123,0,"",shellscript,selection_command +1514,3302117,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",149,0,"",shellscript,selection_command +1515,3302383,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1516,3302668,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",316,0,"",shellscript,selection_command +1517,3302670,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1518,3302821,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,145,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1519,3302971,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1520,3303360,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1521,3305872,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_2_node\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/dynamics-cotraining-batchsize-scaling/$job_name\nmkdir -p $CHECKPOINT_DIR\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/train_tokenizer_batch_size_scaling_16_node/3321526/tokenizer_22000/\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --save_ckpt \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --min_lr=0 \\n --max_lr=1.5e-5 \\n --log_image_interval=1000 \\n --log \\n --log_checkpoint_interval=1000 \\n --name=dynamics-yolorun-$slurm_job_id \\n --tags dynamics batch-size-scaling 2-node \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir \\n",shellscript,tab +1522,3306548,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",20,0,"",shellscript,selection_command +1523,3306798,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",21,0,"",shellscript,selection_command +1524,3306829,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",39,0,"",shellscript,selection_command +1525,3306855,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",67,0,"",shellscript,selection_command +1526,3306886,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",91,0,"",shellscript,selection_command +1527,3306921,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",123,0,"",shellscript,selection_command +1528,3306954,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",149,0,"",shellscript,selection_command +1529,3307101,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,0,"",shellscript,selection_command +1530,3307405,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,145,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1531,3307547,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1532,3307683,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,content +1533,3307694,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,0,"",shellscript,selection_command +1534,3309182,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",514,0,"s",shellscript,content +1535,3309182,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",509,5,"",shellscript,content +1536,3309182,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",504,4,"",shellscript,content +1537,3309182,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",503,0,"m",shellscript,content +1538,3309182,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",498,5,"",shellscript,content +1539,3309182,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",491,6,"",shellscript,content +1540,3309183,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",490,0,"dy",shellscript,content +1541,3309183,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",486,4,"",shellscript,content +1542,3310264,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",486,8,"tokenizer_batch_size_scaling",shellscript,content +1543,3312076,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",486,28,"dynamics",shellscript,content +1544,3313551,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",486,8,"tokenizer_batch_size_scaling",shellscript,content +1545,3315637,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",486,28,"dynamics",shellscript,content +1546,3315937,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",316,0,"",shellscript,selection_command +1547,3316305,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",461,0,"",shellscript,selection_command +1548,3316600,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",467,0,"",shellscript,selection_command +1549,3316853,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",470,0,"",shellscript,selection_command +1550,3316880,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",473,0,"",shellscript,selection_command +1551,3316913,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",474,0,"",shellscript,selection_command +1552,3316945,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",478,0,"",shellscript,selection_command +1553,3316972,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",479,0,"",shellscript,selection_command +1554,3317028,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",500,0,"",shellscript,selection_command +1555,3317186,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",503,0,"",shellscript,selection_command +1556,3317499,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",502,0,"",shellscript,selection_command +1557,3317660,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,0,"",shellscript,selection_command +1558,3318107,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",479,0,"",shellscript,selection_command +1559,3318153,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,0,"",shellscript,selection_command +1560,3318401,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",481,0,"",shellscript,selection_command +1561,3318501,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",482,0,"",shellscript,selection_command +1562,3318503,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",483,0,"",shellscript,selection_command +1563,3318505,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",484,0,"",shellscript,selection_command +1564,3318530,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",485,0,"",shellscript,selection_command +1565,3318675,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",486,0,"",shellscript,selection_command +1566,3318677,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",487,0,"",shellscript,selection_command +1567,3318678,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",488,0,"",shellscript,selection_command +1568,3318679,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",489,0,"",shellscript,selection_command +1569,3318694,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",490,0,"",shellscript,selection_command +1570,3318852,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",491,0,"",shellscript,selection_command +1571,3318854,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",492,0,"",shellscript,selection_command +1572,3318855,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",493,0,"",shellscript,selection_command +1573,3319206,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",494,0,"",shellscript,selection_command +1574,3319402,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",494,0,"_",shellscript,content +1575,3319403,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",495,0,"",shellscript,selection_keyboard +1576,3319566,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",495,0,"b",shellscript,content +1577,3319567,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",496,0,"",shellscript,selection_keyboard +1578,3319679,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",496,0,"a",shellscript,content +1579,3319680,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",497,0,"",shellscript,selection_keyboard +1580,3319693,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",497,0,"t",shellscript,content +1581,3319694,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",498,0,"",shellscript,selection_keyboard +1582,3320032,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",498,0,"c",shellscript,content +1583,3320033,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",499,0,"",shellscript,selection_keyboard +1584,3320036,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",499,0,"h",shellscript,content +1585,3320037,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",500,0,"",shellscript,selection_keyboard +1586,3320190,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",500,0,"_",shellscript,content +1587,3320190,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",501,0,"",shellscript,selection_keyboard +1588,3320334,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",501,0,"s",shellscript,content +1589,3320335,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",502,0,"",shellscript,selection_keyboard +1590,3320410,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",502,0,"i",shellscript,content +1591,3320411,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",503,0,"",shellscript,selection_keyboard +1592,3320518,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",503,0,"z",shellscript,content +1593,3320518,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",504,0,"",shellscript,selection_keyboard +1594,3320545,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",504,0,"e",shellscript,content +1595,3320545,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",505,0,"",shellscript,selection_keyboard +1596,3321075,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",505,0,"s",shellscript,content +1597,3321075,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",506,0,"",shellscript,selection_keyboard +1598,3321503,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",505,1,"",shellscript,content +1599,3321661,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",505,0,"_",shellscript,content +1600,3321662,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",506,0,"",shellscript,selection_keyboard +1601,3321908,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",506,0,"s",shellscript,content +1602,3321909,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",507,0,"",shellscript,selection_keyboard +1603,3321989,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",507,0,"c",shellscript,content +1604,3321990,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",508,0,"",shellscript,selection_keyboard +1605,3321998,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",508,0,"a",shellscript,content +1606,3321999,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",509,0,"",shellscript,selection_keyboard +1607,3322147,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",509,0,"l",shellscript,content +1608,3322148,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",510,0,"",shellscript,selection_keyboard +1609,3322205,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",510,0,"i",shellscript,content +1610,3322206,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",511,0,"",shellscript,selection_keyboard +1611,3322288,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",511,0,"n",shellscript,content +1612,3322289,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",512,0,"",shellscript,selection_keyboard +1613,3322395,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",512,0,"g",shellscript,content +1614,3322396,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",513,0,"",shellscript,selection_keyboard +1615,3322949,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",512,0,"",shellscript,selection_command +1616,3325817,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +1617,3326759,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",316,0,"",shellscript,selection_command +1618,3326901,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_command +1619,3327266,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",495,0,"batch_size_scaling_",shellscript,content +1620,3327268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",514,0,"",shellscript,selection_command +1621,3328769,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",514,0,"_",shellscript,content +1622,3328770,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",515,0,"",shellscript,selection_keyboard +1623,3328984,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",515,0,"l",shellscript,content +1624,3328985,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",516,0,"",shellscript,selection_keyboard +1625,3329029,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",516,0,"i",shellscript,content +1626,3329030,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",517,0,"",shellscript,selection_keyboard +1627,3329094,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",517,0,"n",shellscript,content +1628,3329095,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",518,0,"",shellscript,selection_keyboard +1629,3329138,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",518,0,"e",shellscript,content +1630,3329139,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",519,0,"",shellscript,selection_keyboard +1631,3329167,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",519,0,"a",shellscript,content +1632,3329168,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",520,0,"",shellscript,selection_keyboard +1633,3329238,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",520,0,"r",shellscript,content +1634,3329239,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",521,0,"",shellscript,selection_keyboard +1635,3329565,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",520,1,"",shellscript,content +1636,3329819,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",519,1,"",shellscript,content +1637,3329851,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",518,1,"",shellscript,content +1638,3329889,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",517,1,"",shellscript,content +1639,3329976,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",516,1,"",shellscript,content +1640,3330132,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",515,1,"",shellscript,content +1641,3330268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",514,1,"",shellscript,content +1642,3330515,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",514,0,"l",shellscript,content +1643,3330516,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",515,0,"",shellscript,selection_keyboard +1644,3330585,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",515,0,"i",shellscript,content +1645,3330586,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",516,0,"",shellscript,selection_keyboard +1646,3330652,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",516,0,"n",shellscript,content +1647,3330653,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",517,0,"",shellscript,selection_keyboard +1648,3330696,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",517,0,"e",shellscript,content +1649,3330697,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",518,0,"",shellscript,selection_keyboard +1650,3330738,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",518,0,"a",shellscript,content +1651,3330739,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",519,0,"",shellscript,selection_keyboard +1652,3330823,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",519,0,"r",shellscript,content +1653,3330824,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",520,0,"",shellscript,selection_keyboard +1654,3331155,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",520,0,"_",shellscript,content +1655,3331156,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",521,0,"",shellscript,selection_keyboard +1656,3331383,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",521,0,"l",shellscript,content +1657,3331384,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",522,0,"",shellscript,selection_keyboard +1658,3331477,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",522,0,"r",shellscript,content +1659,3331478,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",523,0,"",shellscript,selection_keyboard +1660,3331942,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",523,0,"_",shellscript,content +1661,3331943,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",524,0,"",shellscript,selection_keyboard +1662,3332238,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",523,0,"",shellscript,selection_command +1663,3333373,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",523,1,"_",shellscript,selection_command +1664,3333514,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",480,44,"train_dynamics_batch_size_scaling_linear_lr_",shellscript,selection_command +1665,3334448,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",480,0,"",shellscript,selection_command +1666,3335620,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +1667,3336435,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",513,0,"",shellscript,selection_command +1668,3336740,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",513,1,"_",shellscript,selection_command +1669,3336840,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,34,"train_dynamics_batch_size_scaling_",shellscript,selection_command +1670,3337202,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,34,"train_dynamics_batch_size_scaling_linear_lr_",shellscript,content +1671,3337223,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",523,0,"",shellscript,selection_command +1672,3338882,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",461,0,"",shellscript,selection_command +1673,3341509,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=4\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_4_node\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/dynamics-cotraining-batchsize-scaling/$job_name\nmkdir -p $CHECKPOINT_DIR\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/train_tokenizer_batch_size_scaling_16_node/3321526/tokenizer_22000/\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --save_ckpt \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=192 \\n --min_lr=0 \\n --max_lr=2.1e-5 \\n --log_image_interval=1000 \\n --log \\n --log_checkpoint_interval=1000 \\n --name=dynamics-batch-size-scaling-4-node-$slurm_job_id \\n --tags dynamics batch-size-scaling 4-node \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir\n",shellscript,tab +1674,3342100,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",20,0,"",shellscript,selection_command +1675,3342294,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",21,0,"",shellscript,selection_command +1676,3342524,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",39,0,"",shellscript,selection_command +1677,3342551,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",67,0,"",shellscript,selection_command +1678,3342582,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",91,0,"",shellscript,selection_command +1679,3342621,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",123,0,"",shellscript,selection_command +1680,3342655,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",149,0,"",shellscript,selection_command +1681,3342690,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",170,0,"",shellscript,selection_command +1682,3342834,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",316,0,"",shellscript,selection_command +1683,3343012,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",461,0,"",shellscript,selection_command +1684,3343135,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",462,0,"",shellscript,selection_command +1685,3343340,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",469,0,"",shellscript,selection_command +1686,3343543,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",471,0,"",shellscript,selection_command +1687,3343685,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",474,0,"",shellscript,selection_command +1688,3344115,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",475,0,"",shellscript,selection_command +1689,3344387,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",479,0,"",shellscript,selection_command +1690,3344583,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,0,"",shellscript,selection_command +1691,3345111,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,1,"t",shellscript,selection_command +1692,3345258,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,41,"train_tokenizer_batch_size_scaling_4_node",shellscript,selection_command +1693,3345642,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,40,"train_tokenizer_batch_size_scaling_4_nod",shellscript,selection_command +1694,3345964,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,39,"train_tokenizer_batch_size_scaling_4_no",shellscript,selection_command +1695,3345965,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,38,"train_tokenizer_batch_size_scaling_4_n",shellscript,selection_command +1696,3345966,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,37,"train_tokenizer_batch_size_scaling_4_",shellscript,selection_command +1697,3345967,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,36,"train_tokenizer_batch_size_scaling_4",shellscript,selection_command +1698,3346002,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,35,"train_tokenizer_batch_size_scaling_",shellscript,selection_command +1699,3346295,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,35,"train_dynamics_batch_size_scaling_",shellscript,content +1700,3346310,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",513,0,"",shellscript,selection_command +1701,3347012,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",461,0,"",shellscript,selection_command +1702,3348276,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +1703,3348914,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",462,0,"",shellscript,selection_command +1704,3349105,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",469,0,"",shellscript,selection_command +1705,3350029,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",471,0,"",shellscript,selection_command +1706,3350030,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",474,0,"",shellscript,selection_command +1707,3350030,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",475,0,"",shellscript,selection_command +1708,3350031,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",479,0,"",shellscript,selection_command +1709,3350049,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,0,"",shellscript,selection_command +1710,3350375,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,1,"t",shellscript,selection_command +1711,3352362,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,6,"train_",shellscript,selection_command +1712,3352644,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,15,"train_dynamics_",shellscript,selection_command +1713,3352798,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,21,"train_dynamics_batch_",shellscript,selection_command +1714,3352973,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,26,"train_dynamics_batch_size_",shellscript,selection_command +1715,3353070,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,34,"train_dynamics_batch_size_scaling_",shellscript,selection_command +1716,3353399,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,41,"train_dynamics_batch_size_scaling_linear_",shellscript,selection_command +1717,3354021,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,42,"train_dynamics_batch_size_scaling_linear_l",shellscript,selection_command +1718,3354349,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,43,"train_dynamics_batch_size_scaling_linear_lr",shellscript,selection_command +1719,3354547,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,44,"train_dynamics_batch_size_scaling_linear_lr_",shellscript,selection_command +1720,3354704,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,44,"train_tokenizer_batch_size_scaling_",shellscript,content +1721,3354711,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",514,0,"",shellscript,selection_command +1722,3355300,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",514,0,"_linear_lr",shellscript,content +1723,3355304,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",486,9,"dynamics",shellscript,content +1724,3355308,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,0,"",shellscript,selection_command +1725,3356021,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,1,"t",shellscript,selection_command +1726,3356120,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,50,"train_dynamics_batch_size_scaling_linear_lr_2_node",shellscript,selection_command +1727,3356332,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,53,"train_dynamics_batch_size_scaling_linear_lr_2_node\n\n#",shellscript,selection_command +1728,3356358,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,57,"train_dynamics_batch_size_scaling_linear_lr_2_node\n\n# Log",shellscript,selection_command +1729,3356699,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,56,"train_dynamics_batch_size_scaling_linear_lr_2_node\n\n# Lo",shellscript,selection_command +1730,3356986,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,55,"train_dynamics_batch_size_scaling_linear_lr_2_node\n\n# L",shellscript,selection_command +1731,3357169,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,53,"train_dynamics_batch_size_scaling_linear_lr_2_node\n\n#",shellscript,selection_command +1732,3357324,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,52,"train_dynamics_batch_size_scaling_linear_lr_2_node\n\n",shellscript,selection_command +1733,3357496,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,1,"t",shellscript,selection_command +1734,3357585,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",479,2,"=t",shellscript,selection_command +1735,3358104,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,50,"train_dynamics_batch_size_scaling_linear_lr_2_node",shellscript,selection_command +1736,3358430,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,49,"train_dynamics_batch_size_scaling_linear_lr_2_nod",shellscript,selection_command +1737,3358562,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,48,"train_dynamics_batch_size_scaling_linear_lr_2_no",shellscript,selection_command +1738,3358816,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,47,"train_dynamics_batch_size_scaling_linear_lr_2_n",shellscript,selection_command +1739,3358847,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,46,"train_dynamics_batch_size_scaling_linear_lr_2_",shellscript,selection_command +1740,3358876,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,45,"train_dynamics_batch_size_scaling_linear_lr_2",shellscript,selection_command +1741,3359067,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,44,"train_dynamics_batch_size_scaling_linear_lr_",shellscript,selection_command +1742,3359265,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,0,"",shellscript,selection_command +1743,3360191,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",0,0,"",shellscript,tab +1744,3360952,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",462,0,"",shellscript,selection_command +1745,3360955,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",469,0,"",shellscript,selection_command +1746,3361170,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",471,0,"",shellscript,selection_command +1747,3361399,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",474,0,"",shellscript,selection_command +1748,3361692,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",475,0,"",shellscript,selection_command +1749,3361797,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",479,0,"",shellscript,selection_command +1750,3362216,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,0,"",shellscript,selection_command +1751,3363069,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,1,"t",shellscript,selection_command +1752,3363071,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,40,"train_dynamics_batch_size_scaling_4_node",shellscript,selection_command +1753,3363075,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,39,"train_dynamics_batch_size_scaling_4_nod",shellscript,selection_command +1754,3363076,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,38,"train_dynamics_batch_size_scaling_4_no",shellscript,selection_command +1755,3363077,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,37,"train_dynamics_batch_size_scaling_4_n",shellscript,selection_command +1756,3363078,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,36,"train_dynamics_batch_size_scaling_4_",shellscript,selection_command +1757,3363079,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,35,"train_dynamics_batch_size_scaling_4",shellscript,selection_command +1758,3363080,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,34,"train_dynamics_batch_size_scaling_",shellscript,selection_command +1759,3363426,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,33,"train_dynamics_batch_size_scaling",shellscript,selection_command +1760,3363549,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,34,"train_dynamics_batch_size_scaling_",shellscript,selection_command +1761,3363788,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",480,34,"train_dynamics_batch_size_scaling_linear_lr_",shellscript,content +1762,3363791,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",523,0,"",shellscript,selection_command +1763,3366690,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=8\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_8_node\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/dynamics-cotraining-batchsize-scaling/$job_name\nmkdir -p $CHECKPOINT_DIR\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/train_tokenizer_batch_size_scaling_16_node/3321526/tokenizer_22000/\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --save_ckpt \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=384 \\n --min_lr=0 \\n --max_lr=3e-5 \\n --log_image_interval=1000 \\n --log \\n --log_checkpoint_interval=1000 \\n --name=dynamics-batch-size-scaling-8-node-$slurm_job_id \\n --tags dynamics batch-size-scaling 8-node \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir\n",shellscript,tab +1764,3367295,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",20,0,"",shellscript,selection_command +1765,3367460,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",21,0,"",shellscript,selection_command +1766,3367463,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",39,0,"",shellscript,selection_command +1767,3367495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",67,0,"",shellscript,selection_command +1768,3367630,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",91,0,"",shellscript,selection_command +1769,3367631,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",123,0,"",shellscript,selection_command +1770,3367706,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",149,0,"",shellscript,selection_command +1771,3367983,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",170,0,"",shellscript,selection_command +1772,3367984,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",316,0,"",shellscript,selection_command +1773,3368069,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",461,0,"",shellscript,selection_command +1774,3368262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",462,0,"",shellscript,selection_command +1775,3368507,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",469,0,"",shellscript,selection_command +1776,3368632,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",471,0,"",shellscript,selection_command +1777,3368779,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",474,0,"",shellscript,selection_command +1778,3368915,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",475,0,"",shellscript,selection_command +1779,3369089,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",479,0,"",shellscript,selection_command +1780,3369375,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,0,"",shellscript,selection_command +1781,3369635,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,1,"t",shellscript,selection_command +1782,3369680,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,41,"train_tokenizer_batch_size_scaling_8_node",shellscript,selection_command +1783,3369970,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,40,"train_tokenizer_batch_size_scaling_8_nod",shellscript,selection_command +1784,3370220,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,39,"train_tokenizer_batch_size_scaling_8_no",shellscript,selection_command +1785,3370322,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,38,"train_tokenizer_batch_size_scaling_8_n",shellscript,selection_command +1786,3370494,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,37,"train_tokenizer_batch_size_scaling_8_",shellscript,selection_command +1787,3370857,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,36,"train_tokenizer_batch_size_scaling_8",shellscript,selection_command +1788,3371002,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,35,"train_tokenizer_batch_size_scaling_",shellscript,selection_command +1789,3371332,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",480,35,"train_dynamics_batch_size_scaling_linear_lr_",shellscript,content +1790,3371350,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",523,0,"",shellscript,selection_command +1791,3373299,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=16\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_16_node\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\narray_records_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data_new/open_ai_minecraft_arrayrecords_chunked\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/big-runs/dynamics-cotraining-batchsize-scaling/$job_name\nmkdir -p $CHECKPOINT_DIR\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/train_tokenizer_batch_size_scaling_16_node/3321526/tokenizer_22000/\n\nenv | grep SLURM\n\nsrun python train_dynamics.py \\n --save_ckpt \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=768 \\n --min_lr=0 \\n --max_lr=4.2e-5 \\n --log_image_interval=1000 \\n --log \\n --log_checkpoint_interval=1000 \\n --name=dynamics-batch-size-scaling-16-node-$slurm_job_id \\n --tags dynamics batch-size-scaling 16-node \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --data_dir $array_records_dir\n",shellscript,tab +1792,3375101,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",20,0,"",shellscript,selection_command +1793,3375347,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",21,0,"",shellscript,selection_command +1794,3375379,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",40,0,"",shellscript,selection_command +1795,3375409,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",68,0,"",shellscript,selection_command +1796,3375448,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",92,0,"",shellscript,selection_command +1797,3375475,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",124,0,"",shellscript,selection_command +1798,3375538,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",150,0,"",shellscript,selection_command +1799,3375629,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",171,0,"",shellscript,selection_command +1800,3375847,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",317,0,"",shellscript,selection_command +1801,3375982,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",462,0,"",shellscript,selection_command +1802,3376056,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",463,0,"",shellscript,selection_command +1803,3376373,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",470,0,"",shellscript,selection_command +1804,3376375,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",472,0,"",shellscript,selection_command +1805,3376480,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",475,0,"",shellscript,selection_command +1806,3376657,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",476,0,"",shellscript,selection_command +1807,3376814,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",480,0,"",shellscript,selection_command +1808,3377004,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,0,"",shellscript,selection_command +1809,3377338,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,1,"t",shellscript,selection_command +1810,3377588,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,43,"train_tokenizer_batch_size_scaling_16_node\n",shellscript,selection_command +1811,3377768,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,42,"train_tokenizer_batch_size_scaling_16_node",shellscript,selection_command +1812,3378049,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,41,"train_tokenizer_batch_size_scaling_16_nod",shellscript,selection_command +1813,3378051,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,40,"train_tokenizer_batch_size_scaling_16_no",shellscript,selection_command +1814,3378080,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,39,"train_tokenizer_batch_size_scaling_16_n",shellscript,selection_command +1815,3378113,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,38,"train_tokenizer_batch_size_scaling_16_",shellscript,selection_command +1816,3378152,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,37,"train_tokenizer_batch_size_scaling_16",shellscript,selection_command +1817,3378182,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,36,"train_tokenizer_batch_size_scaling_1",shellscript,selection_command +1818,3378368,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,35,"train_tokenizer_batch_size_scaling_",shellscript,selection_command +1819,3378669,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",481,35,"train_dynamics_batch_size_scaling_linear_lr_",shellscript,content +1820,3378683,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",524,0,"",shellscript,selection_command +1821,3379703,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",462,0,"",shellscript,selection_command +1822,3381406,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +1823,3382695,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +1824,3403125,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",335,0,"",shellscript,selection_command +1825,3403325,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",189,0,"",shellscript,selection_command +1826,3403476,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,145,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1827,3403640,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1828,3403798,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1829,3405762,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",314,0,"",shellscript,selection_command +1830,3406791,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1831,3407000,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,145,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1832,3407131,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1833,3407333,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1834,3408669,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +1835,3409413,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",531,0,"",shellscript,selection_command +1836,3409512,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",480,0,"",shellscript,selection_command +1837,3409700,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",335,0,"",shellscript,selection_command +1838,3409941,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",316,144,"#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1839,3410121,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1840,3410459,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,content +1841,3410462,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,0,"",shellscript,selection_command +1842,3413302,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",0,0,"",shellscript,tab +1843,3414129,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",378,0,"",shellscript,selection_command +1844,3414455,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",316,0,"",shellscript,selection_command +1845,3414878,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",316,144,"#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1846,3414879,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1847,3415181,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,content +1848,3415185,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",170,0,"",shellscript,selection_command +1849,3417494,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",0,0,"",shellscript,tab +1850,3419052,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",378,0,"",shellscript,selection_command +1851,3419626,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",316,144,"#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1852,3419784,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1853,3420091,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,content +1854,3420101,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",170,0,"",shellscript,selection_command +1855,3422731,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",0,0,"",shellscript,tab +1856,3423807,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",317,0,"",shellscript,selection_command +1857,3424316,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",317,144,"#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1858,3424624,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",171,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_mihir/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +1859,3424737,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",171,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,content +1860,3424753,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",171,0,"",shellscript,selection_command +1861,3426982,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +1862,3432487,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",316,0,"",shellscript,selection_command +1863,3432734,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_command +1864,3432761,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",531,0,"",shellscript,selection_command +1865,3432804,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",532,0,"",shellscript,selection_command +1866,3432822,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",556,0,"",shellscript,selection_command +1867,3432855,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",563,0,"",shellscript,selection_command +1868,3433005,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",564,0,"",shellscript,selection_command +1869,3434278,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",563,0,"",shellscript,selection_command +1870,3498397,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",564,0,"",shellscript,selection_command +1871,3498649,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",594,0,"",shellscript,selection_command +1872,3498681,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",624,0,"",shellscript,selection_command +1873,3498714,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",650,0,"",shellscript,selection_command +1874,3498748,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",651,0,"",shellscript,selection_command +1875,3498781,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",773,0,"",shellscript,selection_command +1876,3498951,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",774,0,"",shellscript,selection_command +1877,3499176,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",773,0,"",shellscript,selection_command +1878,3499430,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",651,0,"",shellscript,selection_command +1879,3499460,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",650,0,"",shellscript,selection_command +1880,3499486,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",624,0,"",shellscript,selection_command +1881,3499604,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",594,0,"",shellscript,selection_command +1882,3499605,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",564,0,"",shellscript,selection_command +1883,3499606,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",563,0,"",shellscript,selection_command +1884,3499621,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",556,0,"",shellscript,selection_command +1885,3499653,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",532,0,"",shellscript,selection_command +1886,3499685,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",531,0,"",shellscript,selection_command +1887,3499718,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_command +1888,3499752,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",316,0,"",shellscript,selection_command +1889,3499786,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1890,3499819,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",149,0,"",shellscript,selection_command +1891,3499931,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",123,0,"",shellscript,selection_command +1892,3499933,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",91,0,"",shellscript,selection_command +1893,3499933,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",67,0,"",shellscript,selection_command +1894,3499952,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",39,0,"",shellscript,selection_command +1895,3499986,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +1896,3500019,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +1897,3500128,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +1898,3500129,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +1899,3500457,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +1900,3500459,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",39,0,"",shellscript,selection_command +1901,3500460,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",67,0,"",shellscript,selection_command +1902,3500470,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",91,0,"",shellscript,selection_command +1903,3500503,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",123,0,"",shellscript,selection_command +1904,3500537,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",149,0,"",shellscript,selection_command +1905,3500653,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +1906,3500655,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",316,0,"",shellscript,selection_command +1907,3500655,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_command +1908,3500676,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",531,0,"",shellscript,selection_command +1909,3500708,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",532,0,"",shellscript,selection_command +1910,3500741,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",556,0,"",shellscript,selection_command +1911,3500776,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",563,0,"",shellscript,selection_command +1912,3500809,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",564,0,"",shellscript,selection_command +1913,3500842,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",594,0,"",shellscript,selection_command +1914,3500981,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",624,0,"",shellscript,selection_command +1915,3501230,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",650,0,"",shellscript,selection_command +1916,3501262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",651,0,"",shellscript,selection_command +1917,3501897,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",773,0,"",shellscript,selection_command +1918,3502085,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",774,0,"",shellscript,selection_command +1919,3502750,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",773,0,"",shellscript,selection_command +1920,3502919,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",651,0,"",shellscript,selection_command +1921,3503152,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",773,0,"",shellscript,selection_command +1922,3503403,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",774,0,"",shellscript,selection_command +1923,3503431,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",799,0,"",shellscript,selection_command +1924,3503801,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",826,0,"",shellscript,selection_command +1925,3503894,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",827,0,"",shellscript,selection_command +1926,3504127,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",967,0,"",shellscript,selection_command +1927,3504394,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",827,0,"",shellscript,selection_command +1928,3507475,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",965,0,"",shellscript,selection_command +1929,3507986,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",826,0,"",shellscript,selection_command +1930,3508199,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",824,0,"",shellscript,selection_command +1931,3508227,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",797,0,"",shellscript,selection_command +1932,3508329,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",773,0,"",shellscript,selection_command +1933,3508331,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",771,0,"",shellscript,selection_command +1934,3508334,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",650,0,"",shellscript,selection_command +1935,3508353,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",648,0,"",shellscript,selection_command +1936,3508510,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",622,0,"",shellscript,selection_command +1937,3508511,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",592,0,"",shellscript,selection_command +1938,3508513,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",563,0,"",shellscript,selection_command +1939,3508514,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",561,0,"",shellscript,selection_command +1940,3508518,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",554,0,"",shellscript,selection_command +1941,3508628,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",531,0,"",shellscript,selection_command +1942,3508851,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",529,0,"",shellscript,selection_command +1943,3509029,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",459,0,"",shellscript,selection_command +1944,3509150,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",314,0,"",shellscript,selection_command +1945,3509680,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",312,0,"",shellscript,selection_command +1946,3509899,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",311,0,"",shellscript,selection_command +1947,3510076,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",310,0,"",shellscript,selection_command +1948,3510181,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",309,0,"",shellscript,selection_command +1949,3510330,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",307,0,"",shellscript,selection_command +1950,3510601,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",305,0,"",shellscript,selection_command +1951,3510612,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",298,0,"",shellscript,selection_command +1952,3510957,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",299,0,"",shellscript,selection_command +1953,3511051,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",300,0,"",shellscript,selection_command +1954,3511092,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",305,0,"",shellscript,selection_command +1955,3513304,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",305,0,"-",shellscript,content +1956,3513306,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",306,0,"",shellscript,selection_keyboard +1957,3513537,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",306,0,"l",shellscript,content +1958,3513538,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",307,0,"",shellscript,selection_keyboard +1959,3513587,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",307,0,"i",shellscript,content +1960,3513588,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",308,0,"",shellscript,selection_keyboard +1961,3513655,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",308,0,"n",shellscript,content +1962,3513656,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",309,0,"",shellscript,selection_keyboard +1963,3513676,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",309,0,"e",shellscript,content +1964,3513677,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",310,0,"",shellscript,selection_keyboard +1965,3513709,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",310,0,"a",shellscript,content +1966,3513710,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",311,0,"",shellscript,selection_keyboard +1967,3513828,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",311,0,"r",shellscript,content +1968,3513828,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",312,0,"",shellscript,selection_keyboard +1969,3513891,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",312,0,"-",shellscript,content +1970,3513892,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",313,0,"",shellscript,selection_keyboard +1971,3514064,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",313,0,"l",shellscript,content +1972,3514065,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",314,0,"",shellscript,selection_keyboard +1973,3514127,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",314,0,"r",shellscript,content +1974,3514128,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",315,0,"",shellscript,selection_keyboard +1975,3514351,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",314,0,"",shellscript,selection_command +1976,3514429,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",469,0,"",shellscript,selection_command +1977,3514598,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",468,0,"",shellscript,selection_command +1978,3514875,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",467,0,"",shellscript,selection_command +1979,3514886,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",466,0,"",shellscript,selection_command +1980,3514936,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",465,0,"",shellscript,selection_command +1981,3514968,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",464,0,"",shellscript,selection_command +1982,3514983,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",463,0,"",shellscript,selection_command +1983,3515018,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",462,0,"",shellscript,selection_command +1984,3515052,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_command +1985,3515137,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",460,0,"",shellscript,selection_command +1986,3515640,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",460,0,"l",shellscript,content +1987,3515640,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_keyboard +1988,3516289,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",460,1,"",shellscript,content +1989,3516474,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",460,0,"-",shellscript,content +1990,3516475,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"",shellscript,selection_keyboard +1991,3516651,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",461,0,"l",shellscript,content +1992,3516651,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",462,0,"",shellscript,selection_keyboard +1993,3516704,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",462,0,"i",shellscript,content +1994,3516704,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",463,0,"",shellscript,selection_keyboard +1995,3516779,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",463,0,"n",shellscript,content +1996,3516780,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",464,0,"",shellscript,selection_keyboard +1997,3516842,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",464,0,"e",shellscript,content +1998,3516843,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",465,0,"",shellscript,selection_keyboard +1999,3516866,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",465,0,"a",shellscript,content +2000,3516867,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",466,0,"",shellscript,selection_keyboard +2001,3516972,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",466,0,"r",shellscript,content +2002,3516972,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",467,0,"",shellscript,selection_keyboard +2003,3517114,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",467,0,"-",shellscript,content +2004,3517115,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",468,0,"",shellscript,selection_keyboard +2005,3517318,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",468,0,"l",shellscript,content +2006,3517318,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",469,0,"",shellscript,selection_keyboard +2007,3517402,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",469,0,"r",shellscript,content +2008,3517403,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",470,0,"",shellscript,selection_keyboard +2009,3517596,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",469,0,"",shellscript,selection_command +2010,3518768,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",326,154,"#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,selection_command +2011,3518884,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,310,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,selection_command +2012,3519131,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +2013,3521531,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",0,0,"",shellscript,tab +2014,3522044,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",171,145,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +2015,3522217,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",171,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +2016,3522418,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",171,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,content +2017,3522420,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",171,0,"",shellscript,selection_command +2018,3525019,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",0,0,"",shellscript,tab +2019,3525261,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",316,0,"",shellscript,selection_command +2020,3526172,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",316,144,"#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +2021,3526199,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +2022,3526588,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,content +2023,3526592,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",170,0,"",shellscript,selection_command +2024,3528651,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",0,0,"",shellscript,tab +2025,3529208,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",170,145,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +2026,3529209,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +2027,3529386,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,content +2028,3529440,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",170,0,"",shellscript,selection_command +2029,3531556,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +2030,3531931,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,145,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +2031,3532063,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling/%x_%j.log",shellscript,selection_command +2032,3532269,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,290,"#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,content +2033,3532372,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",170,0,"",shellscript,selection_command +2034,3535853,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2035,3544118,"TERMINAL",0,0,"ls",,terminal_command +2036,3544124,"TERMINAL",0,0,"]633;Cdynamics-cotraining-batchsize-scaling\r\nlarger_ffn_dynamics\r\nlarger_ffn_tokenizer\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3352433.log\r\ntrain_tokenizer_lr_sweep_1e-4_larger_ffn_5_blocks_3353627.log\r\n]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +2037,3550579,"TERMINAL",0,0,"mv dynamics-cotraining-batchsize-scaling/ dynamics-cotraining-batchsize-scaling-linear-lr",,terminal_command +2038,3550589,"TERMINAL",0,0,"]633;C]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +2039,3552977,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",326,0,"",shellscript,selection_command +2040,3553153,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",481,0,"",shellscript,selection_command +2041,3553297,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",551,0,"",shellscript,selection_command +2042,3553845,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",552,0,"",shellscript,selection_command +2043,3554030,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",576,0,"",shellscript,selection_command +2044,3554263,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",583,0,"",shellscript,selection_command +2045,3554396,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",584,0,"",shellscript,selection_command +2046,3554725,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",614,0,"",shellscript,selection_command +2047,3554726,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",644,0,"",shellscript,selection_command +2048,3554727,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",670,0,"",shellscript,selection_command +2049,3554747,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",671,0,"",shellscript,selection_command +2050,3554862,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",793,0,"",shellscript,selection_command +2051,3555121,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",794,0,"",shellscript,selection_command +2052,3555145,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",819,0,"",shellscript,selection_command +2053,3555251,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",846,0,"",shellscript,selection_command +2054,3555252,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",847,0,"",shellscript,selection_command +2055,3555351,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",987,0,"",shellscript,selection_command +2056,3555558,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1012,0,"",shellscript,selection_command +2057,3557511,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1651,0,"",shellscript,selection_command +2058,3558048,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1617,0,"",shellscript,selection_command +2059,3558395,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1568,0,"",shellscript,selection_command +2060,3558396,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1546,0,"",shellscript,selection_command +2061,3558397,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1520,0,"",shellscript,selection_command +2062,3558397,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1472,0,"",shellscript,selection_command +2063,3558441,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1410,0,"",shellscript,selection_command +2064,3558576,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1373,0,"",shellscript,selection_command +2065,3558577,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1361,0,"",shellscript,selection_command +2066,3558577,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1329,0,"",shellscript,selection_command +2067,3558578,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1309,0,"",shellscript,selection_command +2068,3558592,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1292,0,"",shellscript,selection_command +2069,3558749,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1270,0,"",shellscript,selection_command +2070,3558750,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1237,0,"",shellscript,selection_command +2071,3558750,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1219,0,"",shellscript,selection_command +2072,3558751,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1187,0,"",shellscript,selection_command +2073,3558759,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1186,0,"",shellscript,selection_command +2074,3558791,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1169,0,"",shellscript,selection_command +2075,3558825,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1168,0,"",shellscript,selection_command +2076,3558920,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1013,0,"",shellscript,selection_command +2077,3559036,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1012,0,"",shellscript,selection_command +2078,3567507,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1013,0,"",shellscript,selection_command +2079,3567768,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1168,0,"",shellscript,selection_command +2080,3567774,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1169,0,"",shellscript,selection_command +2081,3567775,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1186,0,"",shellscript,selection_command +2082,3567797,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1187,0,"",shellscript,selection_command +2083,3567831,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1219,0,"",shellscript,selection_command +2084,3567863,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1237,0,"",shellscript,selection_command +2085,3568032,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1270,0,"",shellscript,selection_command +2086,3568287,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1292,0,"",shellscript,selection_command +2087,3568562,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1309,0,"",shellscript,selection_command +2088,3568563,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1329,0,"",shellscript,selection_command +2089,3568568,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1361,0,"",shellscript,selection_command +2090,3568907,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1373,0,"",shellscript,selection_command +2091,3569119,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1410,0,"",shellscript,selection_command +2092,3571648,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1415,0,"",shellscript,selection_command +2093,3571959,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1419,0,"",shellscript,selection_command +2094,3571961,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1420,0,"",shellscript,selection_command +2095,3571963,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1428,0,"",shellscript,selection_command +2096,3571993,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1429,0,"",shellscript,selection_command +2097,3572026,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1434,0,"",shellscript,selection_command +2098,3572060,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1435,0,"",shellscript,selection_command +2099,3572249,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1439,0,"",shellscript,selection_command +2100,3572486,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1440,0,"",shellscript,selection_command +2101,3572679,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1447,0,"",shellscript,selection_command +2102,3572780,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1448,0,"",shellscript,selection_command +2103,3573537,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1449,0,"",shellscript,selection_command +2104,3573936,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1449,0,"-",shellscript,content +2105,3573938,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1450,0,"",shellscript,selection_keyboard +2106,3574216,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1450,0,"l",shellscript,content +2107,3574217,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1451,0,"",shellscript,selection_keyboard +2108,3574305,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1451,0,"i",shellscript,content +2109,3574306,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1452,0,"",shellscript,selection_keyboard +2110,3574314,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1452,0,"n",shellscript,content +2111,3574315,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1453,0,"",shellscript,selection_keyboard +2112,3574356,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1453,0,"e",shellscript,content +2113,3574357,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1454,0,"",shellscript,selection_keyboard +2114,3574397,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1454,0,"a",shellscript,content +2115,3574397,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1455,0,"",shellscript,selection_keyboard +2116,3574477,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1455,0,"r",shellscript,content +2117,3574478,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1456,0,"",shellscript,selection_keyboard +2118,3574934,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1455,1,"",shellscript,content +2119,3575108,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1454,1,"",shellscript,content +2120,3575112,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1453,1,"",shellscript,content +2121,3575116,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1452,1,"",shellscript,content +2122,3575284,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1451,1,"",shellscript,content +2123,3575391,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1450,1,"",shellscript,content +2124,3575529,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1449,1,"",shellscript,content +2125,3575798,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1449,0,"l",shellscript,content +2126,3575798,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1450,0,"",shellscript,selection_keyboard +2127,3575799,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1450,0,"i",shellscript,content +2128,3575800,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1451,0,"",shellscript,selection_keyboard +2129,3575938,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1451,0,"n",shellscript,content +2130,3575939,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1452,0,"",shellscript,selection_keyboard +2131,3575940,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1452,0,"a",shellscript,content +2132,3575941,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1453,0,"",shellscript,selection_keyboard +2133,3575943,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1453,0,"e",shellscript,content +2134,3575943,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1454,0,"",shellscript,selection_keyboard +2135,3576009,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1454,0,"r",shellscript,content +2136,3576009,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1455,0,"",shellscript,selection_keyboard +2137,3576156,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1455,0,"-",shellscript,content +2138,3576157,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1456,0,"",shellscript,selection_keyboard +2139,3576381,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1456,0,"l",shellscript,content +2140,3576382,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1457,0,"",shellscript,selection_keyboard +2141,3576443,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1457,0,"r",shellscript,content +2142,3576444,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1458,0,"",shellscript,selection_keyboard +2143,3576887,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1457,1,"",shellscript,content +2144,3577204,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1456,1,"",shellscript,content +2145,3577207,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1455,1,"",shellscript,content +2146,3577209,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1454,1,"",shellscript,content +2147,3577225,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1453,1,"",shellscript,content +2148,3577381,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1452,1,"",shellscript,content +2149,3577610,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1452,0,"e",shellscript,content +2150,3577611,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1453,0,"",shellscript,selection_keyboard +2151,3577730,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1453,0,"a",shellscript,content +2152,3577731,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1454,0,"",shellscript,selection_keyboard +2153,3577733,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1454,0,"r",shellscript,content +2154,3577734,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1455,0,"",shellscript,selection_keyboard +2155,3578083,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1455,0,"-",shellscript,content +2156,3578084,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1456,0,"",shellscript,selection_keyboard +2157,3578253,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1456,0,"l",shellscript,content +2158,3578254,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1457,0,"",shellscript,selection_keyboard +2159,3578257,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1457,0,"r",shellscript,content +2160,3578257,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1458,0,"",shellscript,selection_keyboard +2161,3578521,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1457,0,"",shellscript,selection_command +2162,3579135,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1458,0,"",shellscript,selection_command +2163,3579305,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1458,0,"-",shellscript,content +2164,3579306,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1459,0,"",shellscript,selection_keyboard +2165,3579424,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1458,0,"",shellscript,selection_command +2166,3579520,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1528,0,"",shellscript,selection_command +2167,3581473,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1521,0,"linear-lr ",shellscript,content +2168,3581477,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1531,0,"",shellscript,selection_command +2169,3582452,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1521,10,"",shellscript,content +2170,3582462,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1528,0,"",shellscript,selection_command +2171,3584767,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1458,1,"",shellscript,content +2172,3584775,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1458,0,"",shellscript,selection_command +2173,3585590,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1458,0,"-",shellscript,content +2174,3585594,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1458,0,"",shellscript,selection_command +2175,3585699,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1521,0,"linear-lr ",shellscript,content +2176,3597382,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1410,0,"",shellscript,selection_command +2177,3600291,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +2178,3604853,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2179,3606306,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +2180,3612734,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2181,3615248,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1414,0,"",shellscript,selection_command +2182,3615484,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1416,0,"",shellscript,selection_command +2183,3615583,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1420,0,"",shellscript,selection_command +2184,3615778,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1421,0,"",shellscript,selection_command +2185,3616428,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +2186,3617262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1494,0," linear-lr",shellscript,content +2187,3617262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1439,0,"ode",shellscript,content +2188,3617262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1438,0,"-lr-2-",shellscript,content +2189,3617262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1437,1,"",shellscript,content +2190,3617262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1436,0,"ing-linea",shellscript,content +2191,3617262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1435,1,"",shellscript,content +2192,3617262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1434,0,"batch-size-sca",shellscript,content +2193,3617263,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1432,2,"",shellscript,content +2194,3620924,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1488,0,"",shellscript,selection_command +2195,3624197,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",0,0,"",shellscript,tab +2196,3626787,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",1513,0," linear-lr",shellscript,content +2197,3626787,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",1452,0,"linear-lr-",shellscript,content +2198,3631289,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",0,0,"",shellscript,tab +2199,3633055,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",1511,0," linear-lr",shellscript,content +2200,3633056,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",1450,0,"linear-lr-",shellscript,content +2201,3636663,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",0,0,"",shellscript,tab +2202,3638230,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",1516,0," linear-lr",shellscript,content +2203,3638230,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",1454,0,"linear-lr-",shellscript,content +2204,3640808,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2205,3641362,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1671,0,"",shellscript,selection_command +2206,3642536,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1012,0,"",shellscript,selection_command +2207,3642929,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",67,0,"",shellscript,selection_command +2208,3643286,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +2209,3652216,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",819,0,"",shellscript,selection_command +2210,3652463,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1592,0,"",shellscript,selection_command +2211,3652496,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1671,0,"",shellscript,selection_command +2212,3653236,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +2213,3673287,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1592,0,"",shellscript,selection_command +2214,3673441,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1671,0,"",shellscript,selection_command +2215,3674212,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +2216,3682116,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +2217,3682371,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +2218,3682395,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",39,0,"",shellscript,selection_command +2219,3682428,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",67,0,"",shellscript,selection_command +2220,3682461,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",91,0,"",shellscript,selection_command +2221,3682495,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",123,0,"",shellscript,selection_command +2222,3682528,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",149,0,"",shellscript,selection_command +2223,3682562,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +2224,3682596,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",326,0,"",shellscript,selection_command +2225,3682630,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",481,0,"",shellscript,selection_command +2226,3682665,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",551,0,"",shellscript,selection_command +2227,3682701,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",552,0,"",shellscript,selection_command +2228,3682737,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",576,0,"",shellscript,selection_command +2229,3682768,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",583,0,"",shellscript,selection_command +2230,3682802,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",584,0,"",shellscript,selection_command +2231,3682835,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",614,0,"",shellscript,selection_command +2232,3682869,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",644,0,"",shellscript,selection_command +2233,3682902,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",670,0,"",shellscript,selection_command +2234,3682936,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",671,0,"",shellscript,selection_command +2235,3682990,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",793,0,"",shellscript,selection_command +2236,3683021,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",794,0,"",shellscript,selection_command +2237,3683036,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",819,0,"",shellscript,selection_command +2238,3683191,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",846,0,"",shellscript,selection_command +2239,3683371,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",847,0,"",shellscript,selection_command +2240,3685201,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",976,0,"-linear-lr",shellscript,content +2241,3685202,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",986,0,"",shellscript,selection_command +2242,3691060,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",0,0,"",shellscript,tab +2243,3693131,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",978,0,"-linear-lr",shellscript,content +2244,3693133,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",988,0,"",shellscript,selection_command +2245,3697634,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",0,0,"",shellscript,tab +2246,3699183,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",976,0,"-linear-lr",shellscript,content +2247,3699184,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",986,0,"",shellscript,selection_command +2248,3701875,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",0,0,"",shellscript,tab +2249,3703062,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",976,0,"-linear-lr",shellscript,content +2250,3703063,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",986,0,"",shellscript,selection_command +2251,3704820,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2252,3707174,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +2253,3708354,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",976,0,"-linear-lr",shellscript,content +2254,3708355,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",986,0,"",shellscript,selection_command +2255,3709815,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2256,3712071,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",847,0,"",shellscript,selection_command +2257,3712397,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",997,0,"",shellscript,selection_command +2258,3712598,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1022,0,"",shellscript,selection_command +2259,3712627,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1023,0,"",shellscript,selection_command +2260,3712922,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1178,0,"",shellscript,selection_command +2261,4112548,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1023,0,"",shellscript,selection_command +2262,4112760,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1022,0,"",shellscript,selection_command +2263,4112791,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",997,0,"",shellscript,selection_command +2264,4112824,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",847,0,"",shellscript,selection_command +2265,4112855,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",846,0,"",shellscript,selection_command +2266,4112889,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",819,0,"",shellscript,selection_command +2267,4112921,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",794,0,"",shellscript,selection_command +2268,4112955,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",793,0,"",shellscript,selection_command +2269,4113071,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",671,0,"",shellscript,selection_command +2270,4113073,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",670,0,"",shellscript,selection_command +2271,4113075,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",644,0,"",shellscript,selection_command +2272,4113089,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",614,0,"",shellscript,selection_command +2273,4113122,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",584,0,"",shellscript,selection_command +2274,4113154,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",583,0,"",shellscript,selection_command +2275,4113268,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",576,0,"",shellscript,selection_command +2276,4113270,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",552,0,"",shellscript,selection_command +2277,4113363,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",551,0,"",shellscript,selection_command +2278,4113779,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +2279,4119128,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",819,0,"",shellscript,selection_command +2280,4119573,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1602,0,"",shellscript,selection_command +2281,4119801,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1681,0,"",shellscript,selection_command +2282,4141096,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +2283,4144244,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",819,0,"",shellscript,selection_command +2284,4144536,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1602,0,"",shellscript,selection_command +2285,4144670,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1681,0,"",shellscript,selection_command +2286,4145061,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1647,0,"",shellscript,selection_command +2287,4145262,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1598,0,"",shellscript,selection_command +2288,4145293,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1576,0,"",shellscript,selection_command +2289,4145325,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1550,0,"",shellscript,selection_command +2290,4145358,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1492,0,"",shellscript,selection_command +2291,4145393,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1420,0,"",shellscript,selection_command +2292,4145425,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1383,0,"",shellscript,selection_command +2293,4145459,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1371,0,"",shellscript,selection_command +2294,4145493,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1339,0,"",shellscript,selection_command +2295,4145586,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1319,0,"",shellscript,selection_command +2296,4145587,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1302,0,"",shellscript,selection_command +2297,4145593,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1280,0,"",shellscript,selection_command +2298,4145628,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1247,0,"",shellscript,selection_command +2299,4145897,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1229,0,"",shellscript,selection_command +2300,4146167,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1247,0,"",shellscript,selection_command +2301,4147055,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1280,0,"",shellscript,selection_command +2302,4150629,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1247,0,"",shellscript,selection_command +2303,4150944,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1229,0,"",shellscript,selection_command +2304,4150945,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1197,0,"",shellscript,selection_command +2305,4150945,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1196,0,"",shellscript,selection_command +2306,4150974,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1179,0,"",shellscript,selection_command +2307,4151128,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1178,0,"",shellscript,selection_command +2308,4151129,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1023,0,"",shellscript,selection_command +2309,4151129,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1022,0,"",shellscript,selection_command +2310,4151129,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",997,0,"",shellscript,selection_command +2311,4151138,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",847,0,"",shellscript,selection_command +2312,4151173,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",846,0,"",shellscript,selection_command +2313,4151249,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",819,0,"",shellscript,selection_command +2314,4151251,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",794,0,"",shellscript,selection_command +2315,4151354,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",793,0,"",shellscript,selection_command +2316,4151356,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",671,0,"",shellscript,selection_command +2317,4151358,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",670,0,"",shellscript,selection_command +2318,4151378,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",644,0,"",shellscript,selection_command +2319,4151489,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",614,0,"",shellscript,selection_command +2320,4151491,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",584,0,"",shellscript,selection_command +2321,4151493,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",583,0,"",shellscript,selection_command +2322,4151511,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",576,0,"",shellscript,selection_command +2323,4151607,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",552,0,"",shellscript,selection_command +2324,4151608,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",551,0,"",shellscript,selection_command +2325,4151616,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",481,0,"",shellscript,selection_command +2326,4151648,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",326,0,"",shellscript,selection_command +2327,4151701,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +2328,4151716,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",149,0,"",shellscript,selection_command +2329,4151785,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",123,0,"",shellscript,selection_command +2330,4151788,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",91,0,"",shellscript,selection_command +2331,4151879,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",67,0,"",shellscript,selection_command +2332,4151881,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",39,0,"",shellscript,selection_command +2333,4151891,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +2334,4151924,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +2335,4151956,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +2336,4152260,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +2337,4152513,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +2338,4152539,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",39,0,"",shellscript,selection_command +2339,4152575,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",67,0,"",shellscript,selection_command +2340,4152610,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",91,0,"",shellscript,selection_command +2341,4152639,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",123,0,"",shellscript,selection_command +2342,4152672,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",149,0,"",shellscript,selection_command +2343,4152706,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +2344,4152738,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",326,0,"",shellscript,selection_command +2345,4153062,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",170,0,"",shellscript,selection_command +2346,4153193,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",149,0,"",shellscript,selection_command +2347,4153452,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",123,0,"",shellscript,selection_command +2348,4153476,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",91,0,"",shellscript,selection_command +2349,4723259,"sample.py",0,0,"from dataclasses import dataclass\nimport time\nimport os\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport flax.linen as nn\nimport numpy as np\nfrom orbax.checkpoint import PyTreeCheckpointer\nfrom PIL import Image, ImageDraw\nimport tyro\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n tokenizer_ffn_dim: int = 2048\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 4\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n lam_ffn_dim: int = 2048\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 4\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_dim: int = 512\n dyna_ffn_dim: int = 2048\n dyna_num_blocks: int = 6\n dyna_num_heads: int = 8\n param_dtype: jnp.dtype = jnp.float32\n dtype: jnp.dtype = jnp.bfloat16\n use_flash_attention: bool = True\n\n\nargs = tyro.cli(Args)\nrng = jax.random.PRNGKey(args.seed)\n\n# --- Load Genie checkpoint ---\ngenie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n tokenizer_ffn_dim=args.tokenizer_ffn_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n lam_ffn_dim=args.lam_ffn_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n lam_co_train=False,\n # Dynamics\n dyna_dim=args.dyna_dim,\n dyna_ffn_dim=args.dyna_ffn_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n)\nrng, _rng = jax.random.split(rng)\nimage_shape = (args.image_height, args.image_width, args.image_channels)\ndummy_inputs = dict(\n videos=jnp.zeros((args.batch_size, args.seq_len, *image_shape), dtype=jnp.float32),\n mask_rng=_rng,\n)\nrng, _rng = jax.random.split(rng)\nparams = genie.init(_rng, dummy_inputs)\nckpt = PyTreeCheckpointer().restore(args.checkpoint)[""model""][""params""][""params""]\nparams[""params""].update(ckpt)\n\n\ndef _sampling_wrapper(module, batch):\n return module.sample(batch, args.seq_len, args.maskgit_steps, args.temperature, args.sample_argmax)\n\n# --- Define autoregressive sampling loop ---\ndef _autoreg_sample(rng, video_batch, action_batch):\n vid = video_batch[:, : args.start_frame + 1]\n sampling_fn = jax.jit(nn.apply(_sampling_wrapper, genie)) \n rng, _rng = jax.random.split(rng)\n batch = dict(videos=vid, latent_actions=action_batch, rng=_rng)\n generated_vid = sampling_fn(\n params,\n batch\n )\n return generated_vid\n\n# --- Get video + latent actions ---\narray_record_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".array_record"")\n]\ndataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n args.batch_size,\n args.image_height,\n args.image_width,\n args.image_channels,\n num_workers=8,\n prefetch_buffer_size=1,\n seed=args.seed,\n)\nvideo_batch = next(iter(dataloader))\n# Get latent actions for all videos in the batch\nbatch = dict(videos=video_batch)\naction_batch = genie.apply(params, batch, False, method=Genie.vq_encode)\naction_batch = action_batch.reshape(video_batch.shape[0], args.seq_len - 1, 1)\n\n# --- Sample + evaluate video ---\nvid = _autoreg_sample(rng, video_batch, action_batch)\ngt = video_batch[:, : vid.shape[1]].clip(0, 1).reshape(-1, *video_batch.shape[2:])\nrecon = vid.clip(0, 1).reshape(-1, *vid.shape[2:])\nssim = pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :]).mean()\nprint(f""SSIM: {ssim}"")\n\n# --- Construct video ---\ntrue_videos = (video_batch * 255).astype(np.uint8)\npred_videos = (vid * 255).astype(np.uint8)\nvideo_comparison = np.zeros((2, *vid.shape), dtype=np.uint8)\nvideo_comparison[0] = true_videos[:, :args.seq_len]\nvideo_comparison[1] = pred_videos\nframes = einops.rearrange(video_comparison, ""n b t h w c -> t (b h) (n w) c"")\n\n# --- Save video --- \nimgs = [Image.fromarray(img) for img in frames]\n# Write actions on each frame, on each row (i.e., for each video in the batch, on the GT row)\nfor t, img in enumerate(imgs[1:]):\n d = ImageDraw.Draw(img)\n for row in range(action_batch.shape[0]):\n action = action_batch[row, t, 0]\n y_offset = row * video_batch.shape[2] + 2\n d.text((2, y_offset), f""{action}"", fill=255)\nimgs[0].save(\n f""generation_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n)\n",python,tab +2350,4724135,"sample.py",2149,0,"",python,selection_command +2351,4724338,"sample.py",2187,0,"",python,selection_command +2352,4725804,"sample.py",2897,0,"",python,selection_command +2353,4727087,"sample.py",3656,0,"",python,selection_command +2354,4727338,"sample.py",4459,0,"",python,selection_command +2355,4727371,"sample.py",5324,0,"",python,selection_command +2356,4727402,"sample.py",5352,0,"",python,selection_command +2357,4728297,"sample.py",0,0,"",python,selection_command +2358,4728936,"sample.py",1011,0,"",python,selection_command +2359,4731792,"sample.py",2811,0,"",python,selection_command +2360,4734211,"sample.py",2783,0,"",python,selection_command +2361,4752744,"genie.py",0,0,"from typing import Dict, Any\n\nimport optax\nimport jax\nimport jax.numpy as jnp\nimport flax.linen as nn\nfrom flax.training.train_state import TrainState\nimport orbax.checkpoint as ocp\n\nfrom models.dynamics import DynamicsMaskGIT\nfrom models.lam import LatentActionModel\nfrom models.tokenizer import TokenizerVQVAE\n\nimport grain\n\n\nclass Genie(nn.Module):\n """"""Genie model""""""\n\n # --- Tokenizer ---\n in_dim: int\n tokenizer_dim: int\n tokenizer_ffn_dim: int\n latent_patch_dim: int\n num_patch_latents: int\n patch_size: int\n tokenizer_num_blocks: int\n tokenizer_num_heads: int\n # --- LAM ---\n lam_dim: int\n lam_ffn_dim: int\n latent_action_dim: int\n num_latent_actions: int\n lam_patch_size: int\n lam_num_blocks: int\n lam_num_heads: int\n lam_co_train: bool\n # --- Dynamics ---\n dyna_dim: int\n dyna_ffn_dim: int\n dyna_num_blocks: int\n dyna_num_heads: int\n param_dtype: jnp.dtype\n dtype: jnp.dtype\n use_flash_attention: bool\n dropout: float = 0.0\n mask_limit: float = 0.0\n\n def setup(self):\n self.tokenizer = TokenizerVQVAE(\n in_dim=self.in_dim,\n model_dim=self.tokenizer_dim,\n ffn_dim=self.tokenizer_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_patch_latents,\n patch_size=self.patch_size,\n num_blocks=self.tokenizer_num_blocks,\n num_heads=self.tokenizer_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n )\n self.lam = LatentActionModel(\n in_dim=self.in_dim,\n model_dim=self.lam_dim,\n ffn_dim=self.lam_ffn_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_latent_actions,\n patch_size=self.lam_patch_size,\n num_blocks=self.lam_num_blocks,\n num_heads=self.lam_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n )\n self.dynamics = DynamicsMaskGIT(\n model_dim=self.dyna_dim,\n ffn_dim=self.dyna_ffn_dim,\n num_latents=self.num_patch_latents,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n mask_limit=self.mask_limit,\n param_dtype=self.param_dtype,\n dtype=self.dtype,\n use_flash_attention=self.use_flash_attention,\n )\n\n def __call__(self, batch: Dict[str, Any], training: bool = True) -> Dict[str, Any]:\n tokenizer_outputs = self.tokenizer.vq_encode(batch[""videos""], training=False)\n lam_outputs = self.lam.vq_encode(batch[""videos""], training=False)\n latent_actions = jax.lax.cond(\n self.lam_co_train,\n lambda: lam_outputs[""z_q""],\n lambda: jax.lax.stop_gradient(lam_outputs[""z_q""])\n )\n outputs = dict(\n video_tokens=jax.lax.stop_gradient(tokenizer_outputs[""indices""]),\n latent_actions=latent_actions,\n )\n outputs[""mask_rng""] = batch[""mask_rng""]\n dyna_outputs = self.dynamics(outputs, training)\n outputs.update(dyna_outputs)\n mle_indices = jnp.argmax(outputs[""token_logits""], axis=-1)\n outputs[""recon""] = self.tokenizer.decode(\n mle_indices, batch[""videos""].shape[2:4]\n )\n outputs[""lam_indices""] = lam_outputs[""indices""]\n return outputs\n\n @nn.compact\n def sample(\n self,\n batch: Dict[str, Any],\n seq_len: int,\n steps: int = 25,\n temperature: float = 1,\n sample_argmax: bool = False,\n ) -> Any:\n """"""\n Autoregressively samples up to `seq_len` future frames, following Figure 8 of the paper.\n\n - Input frames are tokenized once.\n - Future frames are generated autoregressively in token space.\n - All frames are detokenized in a single pass.\n\n Note:\n - For interactive or step-wise sampling, detokenization should occur after each action.\n - To maintain consistent tensor shapes across timesteps, all current and future frames are decoded at every step.\n - Temporal causal structure is preserved by \n a) reapplying the mask before each decoding step.\n b) a temporal causal mask is applied within each ST-transformer block.\n\n Dimension keys:\n B: batch size \n T: number of input (conditioning) frames \n N: patches per frame \n S: sequence length \n A: action space \n D: model latent dimension\n """"""\n # --- Encode videos and actions ---\n tokenizer_out = self.tokenizer.vq_encode(batch[""videos""], training=False)\n token_idxs = tokenizer_out[""indices""] # (B, T, N)\n B, T, N = token_idxs.shape\n pad_shape = (B, seq_len - T, N)\n pad = jnp.zeros(pad_shape, dtype=token_idxs.dtype)\n token_idxs = jnp.concatenate([token_idxs, pad], axis=1) # (B, S, N)\n action_tokens = self.lam.vq.get_codes(batch[""latent_actions""])\n\n MaskGITLoop = nn.scan(\n MaskGITStep,\n variable_broadcast=""params"",\n split_rngs={""params"": False},\n in_axes=0,\n out_axes=0,\n length=steps,\n )\n \n loop_fn = MaskGITLoop(\n dynamics=self.dynamics,\n tokenizer=self.tokenizer,\n temperature=temperature,\n sample_argmax=sample_argmax,\n steps=steps,\n )\n\n def generation_step_fn(carry, step_t):\n rng, current_token_idxs = carry\n rng, step_rng = jax.random.split(rng)\n\n # Mask current and future frames (i.e., t >= step_t)\n mask = jnp.arange(seq_len) >= step_t # (S,)\n mask = jnp.broadcast_to(mask[None, :, None], (B, seq_len, N)) # (B, S, N)\n mask = mask.astype(bool)\n masked_token_idxs = current_token_idxs * ~mask\n\n # --- Initialize and run MaskGIT loop ---\n init_carry_maskgit = (\n step_rng,\n masked_token_idxs,\n mask,\n action_tokens,\n )\n final_carry_maskgit, _ = loop_fn(init_carry_maskgit, jnp.arange(steps))\n updated_token_idxs = final_carry_maskgit[1]\n new_carry = (rng, updated_token_idxs)\n return new_carry, None\n\n # --- Run the autoregressive generation using scan ---\n initial_carry = (batch[""rng""], token_idxs)\n timesteps_to_scan = jnp.arange(T, seq_len)\n final_carry, _ = jax.lax.scan(\n generation_step_fn,\n initial_carry,\n timesteps_to_scan\n )\n final_token_idxs = final_carry[1]\n\n # --- Decode all tokens at once at the end ---\n final_frames = self.tokenizer.decode(\n final_token_idxs,\n video_hw=batch[""videos""].shape[2:4],\n )\n return final_frames\n\n def vq_encode(self, batch, training) -> Dict[str, Any]:\n # --- Preprocess videos ---\n lam_output = self.lam.vq_encode(batch[""videos""], training=training)\n return lam_output[""indices""]\n\n\nclass MaskGITStep(nn.Module):\n dynamics: nn.Module\n tokenizer: nn.Module\n temperature: float\n sample_argmax: bool\n steps: int\n\n @nn.compact\n def __call__(self, carry, x):\n rng, token_idxs, mask, action_tokens = carry\n step = x\n N = token_idxs.shape[2]\n\n # --- Construct + encode video ---\n vid_embed = self.dynamics.patch_embed(token_idxs) # (B, S, N, D)\n mask_token = self.dynamics.mask_token # (1, 1, 1, D,)\n mask_expanded = mask[..., None] # (B, S, N, 1) \n vid_embed = jnp.where(mask_expanded, mask_token, vid_embed)\n\n # --- Predict transition ---\n act_embed = self.dynamics.action_up(action_tokens)\n vid_embed += jnp.pad(act_embed, ((0, 0), (1, 0), (0, 0), (0, 0)))\n unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (self.steps * 2))\n step_temp = self.temperature * (1.0 - unmasked_ratio)\n final_logits = self.dynamics.dynamics(vid_embed) / step_temp\n\n # --- Sample new tokens for final frame ---\n if self.sample_argmax:\n sampled_token_idxs = jnp.argmax(final_logits, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs = jax.random.categorical(_rng, final_logits)\n gather_fn = jax.vmap(jax.vmap(jax.vmap(lambda x, y: x[y])))\n final_token_probs = gather_fn(jax.nn.softmax(final_logits), sampled_token_idxs)\n final_token_probs += ~mask\n # Update masked tokens only\n token_idxs = jnp.where(mask, sampled_token_idxs, token_idxs)\n\n # --- Update mask ---\n num_unmasked_tokens = jnp.round(N * (1.0 - unmasked_ratio)).astype(int)\n idx_mask = jnp.arange(final_token_probs.shape[-1]) > num_unmasked_tokens\n sorted_idxs = jnp.argsort(final_token_probs, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask))\n new_mask = mask_update_fn(mask, sorted_idxs)\n\n new_carry = (rng, token_idxs, new_mask, action_tokens)\n return new_carry, None\n\ndef restore_genie_components(\n train_state: TrainState,\n sharding: jax.sharding.NamedSharding,\n grain_iterator: grain.DataLoaderIterator,\n inputs: Dict[str, jax.Array],\n rng: jax.Array,\n args,\n):\n """"""Restore pre-trained Genie components""""""\n rng, _rng = jax.random.split(rng)\n\n # dummy values since we only use tx to initialize the dummy train states\n dummy_tx = optax.adamw(\n learning_rate=optax.constant_schedule(args.max_lr),\n b1=0.9,\n b2=0.9,\n weight_decay=1e-4,\n )\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add('model_state', ocp.args.StandardRestore, ocp.handlers.StandardCheckpointHandler)\n handler_registry.add('dataloader_state', grain.checkpoint.CheckpointRestore, grain.checkpoint.CheckpointHandler)\n \n\n checkpoint_options = ocp.CheckpointManagerOptions(\n step_format_fixed_length=6,\n )\n tokenizer_checkpoint_manager = ocp.CheckpointManager(\n directory=args.tokenizer_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.tokenizer_dim,\n ffn_dim=args.tokenizer_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n num_blocks=args.tokenizer_num_blocks,\n num_heads=args.tokenizer_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n )\n tokenizer_init_params = dummy_tokenizer.init(_rng, inputs)\n dummy_tokenizer_train_state = TrainState.create(\n apply_fn=dummy_tokenizer.apply, params=tokenizer_init_params, tx=dummy_tx\n )\n abstract_sharded_tokenizer_state = _create_abstract_sharded_pytree(\n dummy_tokenizer_train_state, sharding\n )\n restored_tokenizer = tokenizer_checkpoint_manager.restore(\n step=tokenizer_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.StandardRestore(abstract_sharded_tokenizer_state),\n dataloader_state=grain.checkpoint.CheckpointRestore(grain_iterator),\n ),\n )[""model_state""]\n restored_tokenizer_params = restored_tokenizer.params[""params""]\n train_state.params[""params""][""tokenizer""].update(restored_tokenizer_params)\n tokenizer_checkpoint_manager.close()\n\n if args.lam_checkpoint:\n lam_checkpoint_manager = ocp.CheckpointManager(\n directory=args.lam_checkpoint,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n dummy_lam = LatentActionModel(\n in_dim=args.image_channels,\n model_dim=args.lam_dim,\n ffn_dim=args.lam_ffn_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_latent_actions,\n patch_size=args.lam_patch_size,\n num_blocks=args.lam_num_blocks,\n num_heads=args.lam_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n )\n lam_init_params = dummy_lam.init(_rng, inputs)\n dummy_lam_train_state = TrainState.create(\n apply_fn=dummy_lam.apply, params=lam_init_params, tx=dummy_tx\n )\n abstract_sharded_lam_state = _create_abstract_sharded_pytree(\n dummy_lam_train_state, sharding\n )\n restored_lam = lam_checkpoint_manager.restore(\n step=lam_checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.StandardRestore(abstract_sharded_lam_state),\n dataloader_state=grain.checkpoint.CheckpointRestore(grain_iterator),\n ),\n )[""model_state""]\n restored_lam_params = restored_lam.params[""params""]\n # Genie does not initialize all LAM modules, thus we omit those extra modules during restoration\n # (f.srambical) FIXME: Currently, this is a small HBM memory crunch since the LAM's decoder is loaded into HBM and immediately dicarded.\n # A workaround would be to restore to host memory first, and only move the weights to HBM after pruning the decoder\n restored_lam_params = {\n k: v\n for k, v in restored_lam_params.items()\n if k in train_state.params[""params""][""lam""]\n }\n train_state.params[""params""][""lam""].update(restored_lam_params)\n lam_checkpoint_manager.close()\n\n return train_state\n\ndef _create_abstract_sharded_pytree(pytree_template, sharding_spec):\n """"""Replaces arrays in a pytree with ShapeDtypeStructs having the given sharding.""""""\n\n def map_fn(leaf_template):\n if hasattr(leaf_template, ""shape"") and hasattr(leaf_template, ""dtype""):\n return jax.ShapeDtypeStruct(\n leaf_template.shape, leaf_template.dtype, sharding=sharding_spec\n )\n return leaf_template\n\n return jax.tree_util.tree_map(map_fn, pytree_template)",python,tab +2362,4753811,"genie.py",9486,0,"",python,selection_command +2363,4761364,"sample.py",0,0,"",python,tab +2364,4763388,"genie.py",0,0,"",python,tab +2365,4766478,"genie.py",10058,0,"",python,selection_command +2366,4767608,"genie.py",10129,0,"",python,selection_command +2367,4767853,"genie.py",10235,0,"",python,selection_command +2368,4767886,"genie.py",10309,0,"",python,selection_command +2369,4767914,"genie.py",10311,0,"",python,selection_command +2370,4768004,"genie.py",10358,0,"",python,selection_command +2371,4768007,"genie.py",10401,0,"",python,selection_command +2372,4768045,"genie.py",10407,0,"",python,selection_command +2373,4768056,"genie.py",10455,0,"",python,selection_command +2374,4768084,"genie.py",10510,0,"",python,selection_command +2375,4770113,"genie.py",10546,0,"",python,selection_command +2376,4770917,"genie.py",9687,0,"",python,selection_command +2377,4771708,"genie.py",9694,0,"",python,selection_command +2378,4771955,"genie.py",9700,0,"",python,selection_command +2379,4771989,"genie.py",9747,0,"",python,selection_command +2380,4772020,"genie.py",9781,0,"",python,selection_command +2381,4772054,"genie.py",9786,0,"",python,selection_command +2382,4772088,"genie.py",9863,0,"",python,selection_command +2383,4772119,"genie.py",9891,0,"",python,selection_command +2384,4772152,"genie.py",9951,0,"",python,selection_command +2385,4772184,"genie.py",9967,0,"",python,selection_command +2386,4772217,"genie.py",9983,0,"",python,selection_command +2387,4772252,"genie.py",10010,0,"",python,selection_command +2388,4772287,"genie.py",10016,0,"",python,selection_command +2389,4772458,"genie.py",10087,0,"",python,selection_command +2390,4772623,"genie.py",10193,0,"",python,selection_command +2391,4816960,"genie.py",10189,117,"",python,content +2392,4816967,"genie.py",10192,0,"",python,selection_command +2393,4827961,"genie.py",11614,0,"",python,selection_command +2394,4828594,"genie.py",11602,81,"",python,content +2395,4828611,"genie.py",11610,0,"",python,selection_command +2396,4830093,"genie.py",10192,0,"",python,selection_command +2397,4833479,"genie.py",11610,0," dataloader_state=grain.checkpoint.CheckpointRestore(grain_iterator),\n ",python,content +2398,4833495,"genie.py",11614,0,"",python,selection_command +2399,4834370,"genie.py",11610,81,"",python,content +2400,4834377,"genie.py",11611,0,"",python,selection_command +2401,4865326,"genie.py",13202,0,"",python,selection_command +2402,4865695,"genie.py",13186,85,"",python,content +2403,4865718,"genie.py",13198,0,"",python,selection_command +2404,4875437,"sample.py",0,0,"",python,tab +2405,5108070,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2406,5109342,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",67,0,"",shellscript,selection_command +2407,5109518,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",39,0,"",shellscript,selection_command +2408,5109693,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +2409,5109735,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +2410,5110094,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,selection_command +2411,5110223,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",20,0,"",shellscript,selection_command +2412,5110354,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +2413,5110875,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,17,"#SBATCH --nodes=1",shellscript,selection_command +2414,5110914,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,45,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4",shellscript,selection_command +2415,5111155,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,69,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00",shellscript,selection_command +2416,5111185,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,101,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated",shellscript,selection_command +2417,5111216,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,127,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5",shellscript,selection_command +2418,5111245,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,148,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4",shellscript,selection_command +2419,5111278,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,304,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,selection_command +2420,5111511,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,459,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,selection_command +2421,5112175,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,529,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --job-name=train_dynamics_batch_size_scaling_linear_lr_1_node",shellscript,selection_command +2422,5112965,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,0,"",shellscript,selection_command +2423,5123834,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,17,"#SBATCH --nodes=1",shellscript,selection_command +2424,5124011,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,45,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4",shellscript,selection_command +2425,5124190,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,69,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00",shellscript,selection_command +2426,5124203,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,101,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated",shellscript,selection_command +2427,5124305,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,127,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5",shellscript,selection_command +2428,5124307,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,148,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4",shellscript,selection_command +2429,5124308,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,304,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,selection_command +2430,5124334,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,459,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log",shellscript,selection_command +2431,5124481,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",21,529,"#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=48:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs/dynamics-cotraining-batchsize-scaling-linear-lr/%x_%j.log\n#SBATCH --job-name=train_dynamics_batch_size_scaling_linear_lr_1_node",shellscript,selection_command +2432,5124817,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",481,0,"",shellscript,selection_command +2433,5519668,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1310,0,"",shellscript,selection_mouse +2434,5520524,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1310,1,"n",shellscript,selection_command +2435,5520587,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1309,2,"in",shellscript,selection_command +2436,5520738,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1308,3,"min",shellscript,selection_command +2437,5520830,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1308,3,"",shellscript,content +2438,5520992,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1308,0,"i",shellscript,content +2439,5520993,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1309,0,"",shellscript,selection_keyboard +2440,5521090,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1309,0,"n",shellscript,content +2441,5521091,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1310,0,"",shellscript,selection_keyboard +2442,5521233,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1310,0,"i",shellscript,content +2443,5521233,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1311,0,"",shellscript,selection_keyboard +2444,5521257,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1311,0,"t",shellscript,content +2445,5521258,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1312,0,"",shellscript,selection_keyboard +2446,5521464,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1311,0,"",shellscript,selection_command +2447,5523476,"train_dynamics.py",0,0,"from dataclasses import dataclass, field\nimport os\n\nimport einops\nfrom flax.training.train_state import TrainState\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax.checkpoint as ocp\nimport numpy as np\nimport dm_pix as pix\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\nimport grain\n\nfrom genie import Genie, restore_genie_components\nfrom utils.dataloader import get_dataloader\nfrom utils.lr_utils import get_lr_schedule\nfrom utils.parameter_utils import count_parameters_by_component\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 200_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = """"\n save_ckpt: bool = False\n restore_ckpt: bool = False\n # Optimization\n batch_size: int = 36\n init_lr: float = 0.0\n max_lr: float = 3e-5\n decay_end: float = 0.0\n wsd_decay_steps: int = 10000 # NOTE: wsd_decay_steps will only be used when using a wsd-schedule\n warmup_steps: int = 5000\n lr_schedule : str = ""wsd"" # supported options: wsd, cos\n # Tokenizer\n tokenizer_dim: int = 512\n tokenizer_ffn_dim: int = 2048\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 4\n tokenizer_num_heads: int = 8\n tokenizer_checkpoint: str = """"\n # LAM\n lam_dim: int = 512\n lam_ffn_dim: int = 2048\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 4\n lam_num_heads: int = 8\n lam_checkpoint: str = """"\n # Dynamics\n dyna_dim: int = 512\n dyna_ffn_dim: int = 2048\n dyna_num_blocks: int = 6\n dyna_num_heads: int = 8\n dropout: float = 0.0\n mask_limit: float = 0.5\n param_dtype: jnp.dtype = jnp.float32\n dtype: jnp.dtype = jnp.bfloat16\n use_flash_attention: bool = True\n # Logging\n log: bool = False\n entity: str = """"\n project: str = """"\n name: str = ""train_dynamics""\n tags: list[str] = field(default_factory=lambda: [""dynamics""])\n log_interval: int = 5\n log_image_interval: int = 250\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 25000\n log_checkpoint_keep_period: int = 20000\n log_gradients: bool = False\n wandb_id: str = """"\n\n\nargs = tyro.cli(Args)\n\n\ndef dynamics_loss_fn(params, state, inputs):\n """"""Compute masked dynamics loss""""""\n inputs[""videos""] = inputs[""videos""].astype(args.dtype) / 255.0\n outputs = state.apply_fn(\n params,\n inputs,\n training=True,\n rngs={""params"": inputs[""rng""], ""dropout"": inputs[""dropout_rng""]},\n )\n mask = outputs[""mask""]\n outputs[""token_logits""] = outputs[""token_logits""].astype(jnp.float32)\n ce_loss = optax.softmax_cross_entropy_with_integer_labels(\n outputs[""token_logits""], outputs[""video_tokens""]\n )\n ce_loss = (mask * ce_loss).sum() / mask.sum()\n acc = outputs[""token_logits""].argmax(-1) == outputs[""video_tokens""]\n acc = (mask * acc).sum() / mask.sum()\n select_probs = jax.nn.softmax(outputs[""token_logits""])\n gt = inputs[""videos""].clip(0, 1).reshape(-1, *inputs[""videos""].shape[2:])\n recon = outputs[""recon""].clip(0, 1).reshape(-1, *outputs[""recon""].shape[2:])\n psnr = pix.psnr(gt, recon).mean() # type: ignore\n ssim = pix.ssim(gt, recon).mean() # type: ignore\n _, index_counts_lam = jnp.unique_counts(\n jnp.ravel(outputs[""lam_indices""]), size=args.num_latent_actions, fill_value=0\n )\n _, index_counts_tokenizer = jnp.unique_counts(\n jnp.ravel(outputs[""video_tokens""]), size=args.num_patch_latents, fill_value=0\n )\n codebook_usage_lam = (index_counts_lam != 0).mean()\n codebook_usage_tokenizer = (index_counts_tokenizer != 0).mean()\n metrics = dict(\n cross_entropy_loss=ce_loss,\n masked_token_accuracy=acc,\n select_logit=outputs[""token_logits""].max(-1).mean(),\n select_p=select_probs.max(-1).mean(),\n entropy=jax.scipy.special.entr(select_probs).sum(-1).mean(),\n psnr=psnr,\n ssim=ssim,\n codebook_usage_lam=codebook_usage_lam,\n codebook_usage_tokenizer=codebook_usage_tokenizer,\n )\n return ce_loss, (outputs[""recon""], metrics)\n\n\n@jax.jit\ndef train_step(state, inputs):\n """"""Update state and compute metrics""""""\n grad_fn = jax.value_and_grad(dynamics_loss_fn, has_aux=True, allow_int=True)\n (loss, (recon, metrics)), grads = grad_fn(state.params, state, inputs)\n state = state.apply_gradients(grads=grads)\n if args.log_gradients:\n metrics[""gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""dynamics""]\n )\n return state, loss, recon, metrics\n\n\nif __name__ == ""__main__"":\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n per_device_batch_size_for_init = args.batch_size // num_devices\n\n rng = jax.random.PRNGKey(args.seed)\n\n # --- Initialize model ---\n genie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n tokenizer_ffn_dim=args.tokenizer_ffn_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n lam_ffn_dim=args.lam_ffn_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n lam_co_train=not args.lam_checkpoint,\n # Dynamics\n dyna_dim=args.dyna_dim,\n dyna_ffn_dim=args.dyna_ffn_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n dropout=args.dropout,\n mask_limit=args.mask_limit,\n param_dtype=args.param_dtype,\n dtype=args.dtype,\n use_flash_attention=args.use_flash_attention,\n )\n rng, _rng = jax.random.split(rng)\n image_shape = (args.image_height, args.image_width, args.image_channels)\n dummy_inputs = dict(\n videos=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len, *image_shape),\n dtype=args.dtype,\n ),\n action=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len), dtype=args.dtype\n ),\n mask_rng=_rng,\n )\n rng, _rng = jax.random.split(rng)\n init_params = genie.init(_rng, dummy_inputs)\n\n param_counts = count_parameters_by_component(init_params)\n\n if args.log and jax.process_index() == 0:\n wandb_init_kwargs = {\n ""entity"": args.entity,\n ""project"": args.project,\n ""name"": args.name,\n ""tags"": args.tags,\n ""group"": ""debug"",\n ""config"": args,\n }\n\n if args.wandb_id:\n wandb_init_kwargs.update(\n {\n ""id"": args.wandb_id,\n ""resume"": ""allow"",\n }\n )\n wandb.init(**wandb_init_kwargs)\n\n wandb.config.update({""model_param_count"": param_counts})\n\n print(""Parameter counts:"")\n print(param_counts)\n\n # --- Initialize optimizer ---\n lr_schedule = get_lr_schedule(args.lr_schedule, \n args.init_lr, \n args.max_lr, \n args.decay_end, \n args.num_steps, \n args.warmup_steps, \n args.wsd_decay_steps)\n tx = optax.adamw(learning_rate=lr_schedule, b1=0.9, b2=0.9, weight_decay=1e-4, mu_dtype=args.dtype)\n train_state = TrainState.create(apply_fn=genie.apply, params=init_params, tx=tx)\n\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n videos_sharding = NamedSharding(mesh, PartitionSpec(""data"", None, None, None, None))\n train_state = jax.device_put(train_state, replicated_sharding)\n\n # --- Initialize checkpoint manager ---\n step = 0\n handler_registry = ocp.handlers.DefaultCheckpointHandlerRegistry()\n handler_registry.add(\n ""model_state"", ocp.args.StandardSave, ocp.handlers.StandardCheckpointHandler\n )\n handler_registry.add(\n ""model_state"", ocp.args.StandardRestore, ocp.handlers.StandardCheckpointHandler\n )\n handler_registry.add(""dataloader_state"", grain.checkpoint.CheckpointSave, grain.checkpoint.CheckpointHandler) # type: ignore\n handler_registry.add(""dataloader_state"", grain.checkpoint.CheckpointRestore, grain.checkpoint.CheckpointHandler) # type: ignore\n\n checkpoint_options = ocp.CheckpointManagerOptions(\n save_interval_steps=args.log_checkpoint_interval,\n max_to_keep=3,\n keep_period=args.log_checkpoint_keep_period,\n step_format_fixed_length=6,\n cleanup_tmp_directories=True,\n )\n\n checkpoint_manager = ocp.CheckpointManager(\n args.ckpt_dir,\n options=checkpoint_options,\n handler_registry=handler_registry,\n )\n\n # --- Create DataLoaderIterator from dataloader ---\n array_record_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".array_record"")\n ]\n grain_dataloader = get_dataloader(\n array_record_files,\n args.seq_len,\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n args.batch_size,\n *image_shape,\n num_workers=8,\n prefetch_buffer_size=1,\n seed=args.seed,\n )\n initial_state = grain_dataloader._create_initial_state()\n grain_iterator = grain.DataLoaderIterator(grain_dataloader, initial_state)\n\n # --- Restore checkpoint ---\n if args.restore_ckpt:\n # Restore full dynamics model\n abstract_train_state = jax.tree_util.tree_map(\n ocp.utils.to_shape_dtype_struct, train_state\n )\n restored = checkpoint_manager.restore(\n checkpoint_manager.latest_step(),\n args=ocp.args.Composite(\n model_state=ocp.args.StandardRestore(abstract_train_state),\n dataloader_state=grain.checkpoint.CheckpointRestore(grain_iterator),\n ),\n )\n train_state = restored[""model_state""]\n grain_iterator = restored[""dataloader_state""]\n step = checkpoint_manager.latest_step() or 0\n print(f""Restored dataloader and model state from step {step}"")\n else:\n # Restore from pre-trained tokenizer (and LAM)\n train_state = restore_genie_components(\n train_state, replicated_sharding, grain_iterator, dummy_inputs, rng, args\n )\n\n # --- TRAIN LOOP ---\n dataloader = (jax.make_array_from_process_local_data(videos_sharding, elem) for elem in grain_iterator) # type: ignore\n while step < args.num_steps:\n for videos in dataloader:\n # --- Train step ---\n rng, _rng, _rng_dropout, _rng_mask = jax.random.split(rng, 4)\n\n inputs = dict(\n videos=videos,\n rng=_rng,\n dropout_rng=_rng_dropout,\n mask_rng=_rng_mask,\n )\n train_state, loss, recon, metrics = train_step(train_state, inputs)\n metrics[""lr""] = lr_schedule(step)\n print(f""Step {step}, loss: {loss}"")\n step += 1\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n wandb.log(\n {\n ""loss"": loss,\n ""step"": step,\n **metrics,\n }\n )\n if step % args.log_image_interval == 0:\n gt_seq = inputs[""videos""][0].astype(jnp.float32) / 255.0\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[args.seq_len - 1])),\n recon=wandb.Image(np.asarray(recon_seq[args.seq_len - 1])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n wandb.log(log_images)\n # --- Checkpointing ---\n if args.save_ckpt and step % args.log_checkpoint_interval == 0:\n checkpoint_manager.save(\n step,\n args=ocp.args.Composite(\n model_state=ocp.args.StandardSave(train_state),\n dataloader_state=grain.checkpoint.CheckpointSave(\n grain_iterator\n ),\n ),\n )\n print(f""Saved checkpoint at step {step}"")\n if step >= args.num_steps:\n break\n\n checkpoint_manager.close()\n",python,tab +2448,5524697,"train_dynamics.py",6690,0,"",python,selection_command +2449,5526098,"train_dynamics.py",0,0,"",python,selection_command +2450,5526188,"train_dynamics.py",915,0,"",python,selection_command +2451,5528090,"train_dynamics.py",940,0,"",python,selection_command +2452,5528325,"train_dynamics.py",965,0,"",python,selection_command +2453,5528355,"train_dynamics.py",992,0,"",python,selection_command +2454,5528385,"train_dynamics.py",1093,0,"",python,selection_command +2455,5528419,"train_dynamics.py",1122,0,"",python,selection_command +2456,5528449,"train_dynamics.py",1182,0,"",python,selection_command +2457,5528572,"train_dynamics.py",1198,0,"",python,selection_command +2458,5528574,"train_dynamics.py",1227,0,"",python,selection_command +2459,5528577,"train_dynamics.py",1261,0,"",python,selection_command +2460,5528587,"train_dynamics.py",1292,0,"",python,selection_command +2461,5528749,"train_dynamics.py",1326,0,"",python,selection_command +2462,5528753,"train_dynamics.py",1292,0,"",python,selection_command +2463,5528943,"train_dynamics.py",1261,0,"",python,selection_command +2464,5529098,"train_dynamics.py",1227,0,"",python,selection_command +2465,5529101,"train_dynamics.py",1198,0,"",python,selection_command +2466,5529107,"train_dynamics.py",1182,0,"",python,selection_command +2467,5529110,"train_dynamics.py",1122,0,"",python,selection_command +2468,5529113,"train_dynamics.py",1093,0,"",python,selection_command +2469,5529133,"train_dynamics.py",992,0,"",python,selection_command +2470,5529275,"train_dynamics.py",965,0,"",python,selection_command +2471,5529279,"train_dynamics.py",940,0,"",python,selection_command +2472,5529285,"train_dynamics.py",965,0,"",python,selection_command +2473,5529516,"train_dynamics.py",992,0,"",python,selection_command +2474,5529629,"train_dynamics.py",1093,0,"",python,selection_command +2475,5529634,"train_dynamics.py",1122,0,"",python,selection_command +2476,5529637,"train_dynamics.py",1182,0,"",python,selection_command +2477,5529653,"train_dynamics.py",1198,0,"",python,selection_command +2478,5529807,"train_dynamics.py",1227,0,"",python,selection_command +2479,5529811,"train_dynamics.py",1261,0,"",python,selection_command +2480,5529815,"train_dynamics.py",1292,0,"",python,selection_command +2481,5529819,"train_dynamics.py",1326,0,"",python,selection_command +2482,5530021,"train_dynamics.py",1350,0,"",python,selection_command +2483,5530025,"train_dynamics.py",1384,0,"",python,selection_command +2484,5530030,"train_dynamics.py",1417,0,"",python,selection_command +2485,5530033,"train_dynamics.py",1452,0,"",python,selection_command +2486,5530037,"train_dynamics.py",1417,0,"",python,selection_command +2487,5530294,"train_dynamics.py",1384,0,"",python,selection_command +2488,5530297,"train_dynamics.py",1350,0,"",python,selection_command +2489,5530302,"train_dynamics.py",1326,0,"",python,selection_command +2490,5530313,"train_dynamics.py",1292,0,"",python,selection_command +2491,5530344,"train_dynamics.py",1261,0,"",python,selection_command +2492,5530376,"train_dynamics.py",1227,0,"",python,selection_command +2493,5530419,"train_dynamics.py",1198,0,"",python,selection_command +2494,5530450,"train_dynamics.py",1182,0,"",python,selection_command +2495,5530482,"train_dynamics.py",1122,0,"",python,selection_command +2496,5530516,"train_dynamics.py",1093,0,"",python,selection_command +2497,5530549,"train_dynamics.py",992,0,"",python,selection_command +2498,5530849,"train_dynamics.py",965,0,"",python,selection_command +2499,5530890,"train_dynamics.py",940,0,"",python,selection_command +2500,5532925,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2501,5535101,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1289,0,"",shellscript,selection_command +2502,5535388,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1256,0,"",shellscript,selection_command +2503,5535418,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1238,0,"",shellscript,selection_command +2504,5536539,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1256,0,"",shellscript,selection_command +2505,5536786,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1289,0,"",shellscript,selection_command +2506,5536804,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1311,0,"",shellscript,selection_command +2507,5536970,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1329,0,"",shellscript,selection_command +2508,5537487,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1311,0,"",shellscript,selection_command +2509,5537592,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1329,0,"",shellscript,selection_command +2510,5537769,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1349,0,"",shellscript,selection_command +2511,5540773,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1381,0,"",shellscript,selection_command +2512,5540970,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1393,0,"",shellscript,selection_command +2513,5541383,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1430,0,"",shellscript,selection_command +2514,5542526,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1502,0,"",shellscript,selection_command +2515,5542738,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1560,0,"",shellscript,selection_command +2516,5542889,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1586,0,"",shellscript,selection_command +2517,5543039,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1608,0,"",shellscript,selection_command +2518,5543255,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1657,0,"",shellscript,selection_command +2519,5543428,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1682,0,"",shellscript,selection_command +2520,5545722,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",0,0,"",shellscript,tab +2521,5547340,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1311,0,"it",shellscript,content +2522,5547341,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_2_nodes.sbatch",1308,1,"",shellscript,content +2523,5548934,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",0,0,"",shellscript,tab +2524,5550190,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",1312,0,"it",shellscript,content +2525,5550191,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_4_nodes.sbatch",1309,1,"",shellscript,content +2526,5551683,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",0,0,"",shellscript,tab +2527,5552889,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",1312,0,"it",shellscript,content +2528,5552889,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_8_nodes.sbatch",1309,1,"",shellscript,content +2529,5554801,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",0,0,"",shellscript,tab +2530,5555888,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",1314,0,"it",shellscript,content +2531,5555888,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_16_nodes.sbatch",1311,1,"",shellscript,content +2532,5593117,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2533,5594787,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1271,0,"",shellscript,selection_mouse +2534,5596063,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1195,0,"",shellscript,selection_mouse +2535,5596071,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1194,0,"",shellscript,selection_command +2536,5596636,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1196,0,"",shellscript,selection_mouse +2537,5599894,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1197,0,"",shellscript,selection_command +2538,5600100,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1229,0,"",shellscript,selection_command +2539,5600130,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1247,0,"",shellscript,selection_command +2540,5600170,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1280,0,"",shellscript,selection_command +2541,5600200,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1302,0,"",shellscript,selection_command +2542,5600292,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1320,0,"",shellscript,selection_command +2543,5601705,"train_tokenizer.py",0,0,"",python,tab +2544,5603037,"train_tokenizer.py",0,0,"",python,selection_command +2545,5604674,"train_tokenizer.py",41,0,"",python,selection_command +2546,5604913,"train_tokenizer.py",51,0,"",python,selection_command +2547,5604937,"train_tokenizer.py",52,0,"",python,selection_command +2548,5605042,"train_tokenizer.py",66,0,"",python,selection_command +2549,5605046,"train_tokenizer.py",104,0,"",python,selection_command +2550,5605050,"train_tokenizer.py",153,0,"",python,selection_command +2551,5605128,"train_tokenizer.py",213,0,"",python,selection_command +2552,5605131,"train_tokenizer.py",272,0,"",python,selection_command +2553,5605134,"train_tokenizer.py",285,0,"",python,selection_command +2554,5605213,"train_tokenizer.py",316,0,"",python,selection_command +2555,5605217,"train_tokenizer.py",335,0,"",python,selection_command +2556,5608110,"train_tokenizer.py",822,0,"",python,selection_keyboard +2557,5608585,"train_tokenizer.py",845,0,"",python,selection_command +2558,5608834,"train_tokenizer.py",873,0,"",python,selection_command +2559,5608860,"train_tokenizer.py",904,0,"",python,selection_command +2560,5608888,"train_tokenizer.py",923,0,"",python,selection_command +2561,5608922,"train_tokenizer.py",949,0,"",python,selection_command +2562,5608962,"train_tokenizer.py",974,0,"",python,selection_command +2563,5609738,"train_tokenizer.py",949,0,"",python,selection_command +2564,5609857,"train_tokenizer.py",974,0,"",python,selection_command +2565,5610116,"train_tokenizer.py",999,0,"",python,selection_command +2566,5610155,"train_tokenizer.py",1024,0,"",python,selection_command +2567,5610194,"train_tokenizer.py",1051,0,"",python,selection_command +2568,5610215,"train_tokenizer.py",1152,0,"",python,selection_command +2569,5610239,"train_tokenizer.py",1212,0,"",python,selection_command +2570,5610277,"train_tokenizer.py",1242,0,"",python,selection_command +2571,5610371,"train_tokenizer.py",1258,0,"",python,selection_command +2572,5610373,"train_tokenizer.py",1283,0,"",python,selection_command +2573,5610377,"train_tokenizer.py",1307,0,"",python,selection_command +2574,5610405,"train_tokenizer.py",1332,0,"",python,selection_command +2575,5610548,"train_tokenizer.py",1360,0,"",python,selection_command +2576,5610552,"train_tokenizer.py",1384,0,"",python,selection_command +2577,5610557,"train_tokenizer.py",1408,0,"",python,selection_command +2578,5610562,"train_tokenizer.py",1431,0,"",python,selection_command +2579,5610581,"train_tokenizer.py",1456,0,"",python,selection_command +2580,5610708,"train_tokenizer.py",1491,0,"",python,selection_command +2581,5610712,"train_tokenizer.py",1532,0,"",python,selection_command +2582,5610716,"train_tokenizer.py",1568,0,"",python,selection_command +2583,5610719,"train_tokenizer.py",1582,0,"",python,selection_command +2584,5610763,"train_tokenizer.py",1568,0,"",python,selection_command +2585,5611025,"train_tokenizer.py",1532,0,"",python,selection_command +2586,5611179,"train_tokenizer.py",1491,0,"",python,selection_command +2587,5611181,"train_tokenizer.py",1456,0,"",python,selection_command +2588,5611185,"train_tokenizer.py",1431,0,"",python,selection_command +2589,5611189,"train_tokenizer.py",1408,0,"",python,selection_command +2590,5611193,"train_tokenizer.py",1384,0,"",python,selection_command +2591,5611211,"train_tokenizer.py",1360,0,"",python,selection_command +2592,5611282,"train_tokenizer.py",1332,0,"",python,selection_command +2593,5611451,"train_tokenizer.py",1307,0,"",python,selection_command +2594,5611599,"train_tokenizer.py",1283,0,"",python,selection_command +2595,5615395,"train_tokenizer.py",1307,0,"",python,selection_command +2596,5615621,"train_tokenizer.py",1332,0,"",python,selection_command +2597,5615686,"train_tokenizer.py",1360,0,"",python,selection_command +2598,5615822,"train_tokenizer.py",1384,0,"",python,selection_command +2599,5616368,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2600,6381929,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/start_runs.sh",0,0,"",shellscript,tab +2601,6383326,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",0,0,"",shellscript,tab +2602,6384713,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",780,0,"",shellscript,selection_mouse +2603,6390846,"TERMINAL",0,0,"queue",,terminal_command +2604,6390848,"TERMINAL",0,0,"]633;C",,terminal_output +2605,6390936,"TERMINAL",0,0,"[?1049h(B[?7hhkn1993.localdomain: Sun Jul 20 15:04:35 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3361551 accelerat interact tum_dbd0 PD\t0:00\t2 (Priority)3361578 accelerat train_dy tum_dbd0 PD\t0:00\t2 (Priority)",,terminal_output +2606,6391952,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_dbd0378@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_franz/big-runs",,terminal_output +2607,6395955,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",334,0,"",shellscript,selection_mouse +2608,6396509,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",314,0,"",shellscript,selection_command +2609,6396738,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",297,0,"",shellscript,selection_command +2610,6396763,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",296,0,"",shellscript,selection_command +2611,6396797,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",230,0,"",shellscript,selection_command +2612,6396828,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,0,"",shellscript,selection_command +2613,6397187,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",230,0,"",shellscript,selection_command +2614,6397466,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,0,"",shellscript,selection_command +2615,6397781,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",228,0,"",shellscript,selection_command +2616,6398312,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",108,0,"",shellscript,selection_command +2617,6398834,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",230,0,"",shellscript,selection_command +2618,6399042,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",296,0,"",shellscript,selection_command +2619,6399110,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",297,0,"",shellscript,selection_command +2620,6399253,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",314,0,"",shellscript,selection_command +2621,6399387,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",334,0,"",shellscript,selection_command +2622,6399608,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",335,0,"",shellscript,selection_command +2623,6399926,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",445,0,"",shellscript,selection_command +2624,6426308,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",470,0,"",shellscript,selection_command +2625,6426601,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",447,0,"",shellscript,selection_command +2626,6426847,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",472,0,"",shellscript,selection_command +2627,6427026,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",473,0,"",shellscript,selection_command +2628,6427097,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",474,0,"",shellscript,selection_command +2629,6427548,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",623,0,"",shellscript,selection_command +2630,6428796,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",474,0,"",shellscript,selection_command +2631,6433503,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",474,151,"",shellscript,content +2632,6433644,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",629,0,"",shellscript,selection_command +2633,6433880,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",630,0,"",shellscript,selection_command +2634,6433915,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",647,0,"",shellscript,selection_command +2635,6433947,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",648,0,"",shellscript,selection_command +2636,6433987,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",680,0,"",shellscript,selection_command +2637,6434012,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",713,0,"",shellscript,selection_command +2638,6434036,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",735,0,"",shellscript,selection_command +2639,6434067,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",752,0,"",shellscript,selection_command +2640,6434172,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",772,0,"",shellscript,selection_command +2641,6434174,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",802,0,"",shellscript,selection_command +2642,6434176,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",851,0,"",shellscript,selection_command +2643,6434293,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",887,0,"",shellscript,selection_command +2644,6434694,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",887,35,"",shellscript,content +2645,6436798,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",0,0,"",shellscript,tab +2646,6438176,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/train_dynamics_1_nodes.sbatch",1178,0,"",shellscript,selection_mouse +2647,6440880,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",0,0,"",shellscript,tab +2648,6442110,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",473,0,"",shellscript,selection_mouse +2649,6442986,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",473,1,"",shellscript,content +2650,6444709,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",626,0,"",shellscript,selection_command +2651,6446554,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",611,0,"",shellscript,selection_command +2652,6446813,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",610,0,"",shellscript,selection_command +2653,6446833,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",603,0,"",shellscript,selection_command +2654,6446863,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",602,0,"",shellscript,selection_command +2655,6446901,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",560,0,"",shellscript,selection_command +2656,6446930,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",559,0,"",shellscript,selection_command +2657,6446970,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",548,0,"",shellscript,selection_command +2658,6447010,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",547,0,"",shellscript,selection_command +2659,6447035,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",533,0,"",shellscript,selection_command +2660,6447338,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",547,0,"",shellscript,selection_command +2661,6447456,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",548,0,"",shellscript,selection_command +2662,6447603,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",559,0,"",shellscript,selection_command +2663,6447800,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",560,0,"",shellscript,selection_command +2664,6463886,"slurm/jobs/franz/horeka/batchsize_scaling/dynamics_cotraining/linear_lr/tester.sh",646,0,"",shellscript,selection_mouse diff --git a/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-f8f922dd-4d7b-4eee-9d87-0cdea457c7d91763046453495-2025_11_13-16.07.47.281/source.csv b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-f8f922dd-4d7b-4eee-9d87-0cdea457c7d91763046453495-2025_11_13-16.07.47.281/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..38f6aff1c5f65fd853fe1b1f2b66c7a29c254d50 --- /dev/null +++ b/1f15334ab7e6820c9fda17c961659882ef9853cc80f7356b9a9b22f286fd7389/crowd-code-f8f922dd-4d7b-4eee-9d87-0cdea457c7d91763046453495-2025_11_13-16.07.47.281/source.csv @@ -0,0 +1,5 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,2,"slurm/dev/franz/berlin/crowd-pilot/generate_array_record_dataset_bash_version.sh",0,0,"#!/bin/bash\n\nset -uex\n\nOUTPUT_DIR=""/fast/project/HFMI_SynergyUnit/jafar_ws/data/crowd-pilot/crowd-code-0.1/bash_format_array_record/""\nCSV_ROOT=""/fast/project/HFMI_SynergyUnit/jafar_ws/data/crowd-pilot/crowd-code-0.1/csv/""\n\nuv run crowd-pilot/serialize_dataset_array_record.py --csv_root=$CSV_ROOT --output_dir=$OUTPUT_DIR",shellscript,tab +2,304,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"4:07:47 PM [info] Activating crowd-code\n4:07:47 PM [info] Recording started\n4:07:47 PM [info] Initializing git provider using file system watchers...\n",Log,tab +3,437,"extension-output-pdoom-org.crowd-code-#1-crowd-code",150,0,"4:07:47 PM [info] Git repository found\n4:07:47 PM [info] Git provider initialized successfully\n4:07:47 PM [info] Initial git state: [object Object]\n",Log,content +4,9551,"slurm/dev/franz/berlin/crowd-pilot/generate_array_record_dataset_bash_version.sh",0,0,"",shellscript,tab diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-067ab08c-cbdc-4e8b-9fb5-785f5bdfc09f1750961858926-2025_06_26-20.18.07.393/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-067ab08c-cbdc-4e8b-9fb5-785f5bdfc09f1750961858926-2025_06_26-20.18.07.393/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..b19834271c1a257926e9789debb485d4f43575ef --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-067ab08c-cbdc-4e8b-9fb5-785f5bdfc09f1750961858926-2025_06_26-20.18.07.393/source.csv @@ -0,0 +1,297 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,14,".gitignore",0,0,"*.pyc\n*.npy\n*.png\n*.gif\n\nwandb_key\ncheckpoints/\nwandb/\n__pycache__/\n\n\n\nlogs/\ndata/\nsandbox\nsbatch_scripts/\nutils/clip_checker.py\nnotes\nrequirements_fran.txt\ntrain_tokenizer_normal\nshell_scripts/\n\n\n",ignore,tab +2,6465,".gitignore",197,0,"",ignore,selection_command +3,8296,"train_tokenizer.py",0,0,"from dataclasses import dataclass\nimport os\nimport time\n\nimport einops\nfrom flax.training import orbax_utils\nfrom flax.training.train_state import TrainState\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax\nfrom orbax.checkpoint import PyTreeCheckpointer\nimport numpy as np\nimport dm_pix as pix\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\n\nfrom models.tokenizer import TokenizerVQVAE\nfrom utils.dataloader import get_dataloader\n\nts = int(time.time())\n\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 300_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data_tfrecords/coinrun""\n checkpoint: str = """"\n # Optimization\n vq_beta: float = 0.25\n batch_size: int = 48\n min_lr: float = 3e-4\n max_lr: float = 3e-4\n warmup_steps: int = 10000\n # Tokenizer\n model_dim: int = 512\n latent_dim: int = 32\n num_latents: int = 1024\n patch_size: int = 4\n num_blocks: int = 8\n num_heads: int = 8\n dropout: float = 0.0\n codebook_dropout: float = 0.01\n # Logging\n log: bool = False\n entity: str = """"\n project: str = """"\n log_interval: int = 5\n log_image_interval: int = 250\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 10000\n log_gradients: bool = False\n\n\nargs = tyro.cli(Args)\n\n\ndef tokenizer_loss_fn(params, state, inputs):\n # --- Compute loss ---\n outputs = state.apply_fn(\n params,\n inputs,\n training=True,\n rngs={""params"": inputs[""rng""], ""dropout"": inputs[""dropout_rng""]},\n )\n mse = jnp.square(inputs[""videos""] - outputs[""recon""]).mean()\n q_loss = jnp.square(jax.lax.stop_gradient(outputs[""emb""]) - outputs[""z""]).mean()\n commitment_loss = jnp.square(\n outputs[""emb""] - jax.lax.stop_gradient(outputs[""z""])\n ).mean()\n loss = mse + q_loss + args.vq_beta * commitment_loss\n\n # --- Compute validation metrics ---\n gt = inputs[""videos""].clip(0, 1).reshape(-1, *inputs[""videos""].shape[2:])\n recon = outputs[""recon""].clip(0, 1).reshape(-1, *outputs[""recon""].shape[2:])\n psnr = pix.psnr(gt, recon).mean()\n ssim = pix.ssim(gt, recon).mean()\n _, index_counts = jnp.unique_counts(\n jnp.ravel(outputs[""indices""]), size=args.num_latents, fill_value=0\n )\n codebook_usage = (index_counts != 0).mean()\n metrics = dict(\n loss=loss,\n mse=mse,\n q_loss=q_loss,\n commitment_loss=commitment_loss,\n psnr=psnr,\n ssim=ssim,\n codebook_usage=codebook_usage,\n )\n return loss, (outputs[""recon""], metrics)\n\n\n@jax.jit\ndef train_step(state, inputs):\n grad_fn = jax.value_and_grad(tokenizer_loss_fn, has_aux=True, allow_int=True)\n (loss, (recon, metrics)), grads = grad_fn(state.params, state, inputs)\n state = state.apply_gradients(grads=grads)\n if args.log_gradients:\n metrics[""encoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""encoder""]\n )\n metrics[""vq_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""vq""]\n )\n metrics[""decoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""decoder""]\n )\n return state, loss, recon, metrics\n\n\nif __name__ == ""__main__"":\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n per_device_batch_size_for_init = args.batch_size // num_devices\n\n rng = jax.random.PRNGKey(args.seed)\n if args.log and jax.process_index() == 0:\n wandb.init(entity=args.entity, project=args.project, group=""overfit"", config=args)\n\n # --- Initialize model ---\n tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.model_dim,\n latent_dim=args.latent_dim,\n num_latents=args.num_latents,\n patch_size=args.patch_size,\n num_blocks=args.num_blocks,\n num_heads=args.num_heads,\n dropout=args.dropout,\n codebook_dropout=args.codebook_dropout,\n )\n rng, _rng = jax.random.split(rng)\n image_shape = (args.image_height, args.image_width, args.image_channels)\n inputs = dict(\n videos=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len, *image_shape),\n dtype=jnp.float32,\n ),\n )\n init_params = tokenizer.init(_rng, inputs)\n\n # --- Initialize optimizer ---\n lr_schedule = optax.warmup_cosine_decay_schedule(\n args.min_lr, args.max_lr, args.warmup_steps, args.num_steps\n )\n tx = optax.adamw(learning_rate=lr_schedule, b1=0.9, b2=0.9, weight_decay=1e-4)\n train_state = TrainState.create(apply_fn=tokenizer.apply, params=init_params, tx=tx)\n\n # FIXME: switch to create_hybrid_device_mesh for runs spanning multiple nodes\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n train_state = jax.device_put(train_state, replicated_sharding)\n\n # --- Load checkpoint ---\n step = 0\n if args.checkpoint:\n restore_target = {""model"": train_state}\n restore_args = orbax_utils.restore_args_from_target(restore_target)\n train_state.params[""params""].update(\n PyTreeCheckpointer()\n .restore(args.checkpoint, item=restore_target, restore_args=restore_args)[\n ""model""\n ]\n .params[""params""]\n )\n # Assume checkpoint is of the form tokenizer__\n step += int(args.checkpoint.split(""_"")[-1])\n\n # --- TRAIN LOOP ---\n tfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n ]\n dataloader = get_dataloader(\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n tfrecord_files,\n args.seq_len,\n args.batch_size,\n *image_shape,\n )\n print(f""Starting training from step {step}..."")\n while step < args.num_steps:\n for videos in dataloader:\n # --- Train step ---\n start_time = time.time()\n\n rng, _rng, _rng_dropout = jax.random.split(rng, 3)\n\n videos_sharding = NamedSharding(\n mesh, PartitionSpec(""data"", None, None, None, None)\n )\n videos = jax.make_array_from_process_local_data(videos_sharding, videos)\n\n inputs = dict(videos=videos, rng=_rng, dropout_rng=_rng_dropout)\n train_state, loss, recon, metrics = train_step(train_state, inputs)\n elapsed_time = (time.time() - start_time) * 1000\n print(f""Step {step}, loss: {loss}, step time: {elapsed_time}ms"")\n step += 1\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n wandb.log(\n {\n ""loss"": loss,\n ""step"": step,\n ""step_time_ms"": elapsed_time,\n **metrics,\n }\n )\n if step % args.log_image_interval == 0:\n gt_seq = inputs[""videos""][0]\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n # NOTE: Process-dependent control flow deliberately happens\n # after indexing operation since it must not contain code\n # sections that lead to cross-accelerator communication.\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[0])),\n recon=wandb.Image(np.asarray(recon_seq[0])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n wandb.log(log_images)\n if step % args.log_checkpoint_interval == 0:\n ckpt = {""model"": train_state}\n orbax_checkpointer = orbax.checkpoint.PyTreeCheckpointer()\n save_args = orbax_utils.save_args_from_target(ckpt)\n orbax_checkpointer.save(\n os.path.join(os.getcwd(), args.ckpt_dir, f""tokenizer_{ts}_{step}""),\n ckpt,\n save_args=save_args,\n )\n if step >= args.num_steps:\n break\n",python,tab +4,14643,"train_tokenizer.py",0,0,"",python,selection_command +5,27564,"train_tokenizer.py",701,0,"",python,selection_mouse +6,27576,"train_tokenizer.py",700,0,"",python,selection_command +7,52541,"train_tokenizer.py",540,0,"",python,selection_mouse +8,53876,"TERMINAL",0,0,"",,terminal_focus +9,65320,"TERMINAL",0,0,"ls",,terminal_command +10,65341,"TERMINAL",0,0,"]633;E;2025-06-26 20:19:12 ls;b8c83623-699a-4617-a1fd-25c482b22092]633;Cgenerate_dataset.py logs requirements.txt single_batch.npy train_tokenizer_logging.py\r\ngeneration_1750681785.3743937.gif models sample.py train_dynamics.py train_tokenizer.py\r\ngeneration_video_0_1750688558.8735778.gif notes.md sample_results train_dynamics_single_batch.py train_tokenizer_single_batch.py\r\ngenie.py __pycache__ sandbox train_lam.py utils\r\njafar README.md sbatch_scripts train_lam_single_batch.py wandb\r\nLICENSE requirements_franz.txt shell_scripts train_lam_tf_seeding.py\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;0",,terminal_output +11,66867,"TERMINAL",0,0,"git clone git@github.com:p-doom/slurm.git",,terminal_command +12,66932,"TERMINAL",0,0,"]633;E;2025-06-26 20:19:14 git clone git@github.com:p-doom/slurm.git;b8c83623-699a-4617-a1fd-25c482b22092]633;CCloning into 'slurm'...\r\n",,terminal_output +13,68608,"TERMINAL",0,0,"remote: Enumerating objects: 167, done.\r\nremote: Counting objects: 0% (1/167)\rremote: Counting objects: 1% (2/167)\rremote: Counting objects: 2% (4/167)\rremote: Counting objects: 3% (6/167)\rremote: Counting objects: 4% (7/167)\rremote: Counting objects: 5% (9/167)\rremote: Counting objects: 6% (11/167)\rremote: Counting objects: 7% (12/167)\rremote: Counting objects: 8% (14/167)\rremote: Counting objects: 9% (16/167)\rremote: Counting objects: 10% (17/167)\rremote: Counting objects: 11% (19/167)\rremote: Counting objects: 12% (21/167)\rremote: Counting objects: 13% (22/167)\rremote: Counting objects: 14% (24/167)\rremote: Counting objects: 15% (26/167)\rremote: Counting objects: 16% (27/167)\rremote: Counting objects: 17% (29/167)\rremote: Counting objects: 18% (31/167)\rremote: Counting objects: 19% (32/167)\rremote: Counting objects: 20% (34/167)\rremote: Counting objects: 21% (36/167)\rremote: Counting objects: 22% (37/167)\rremote: Counting objects: 23% (39/167)\rremote: Counting objects: 24% (41/167)\rremote: Counting objects: 25% (42/167)\rremote: Counting objects: 26% (44/167)\rremote: Counting objects: 27% (46/167)\rremote: Counting objects: 28% (47/167)\rremote: Counting objects: 29% (49/167)\rremote: Counting objects: 30% (51/167)\rremote: Counting objects: 31% (52/167)\rremote: Counting objects: 32% (54/167)\rremote: Counting objects: 33% (56/167)\rremote: Counting objects: 34% (57/167)\rremote: Counting objects: 35% (59/167)\rremote: Counting objects: 36% (61/167)\rremote: Counting objects: 37% (62/167)\rremote: Counting objects: 38% (64/167)\rremote: Counting objects: 39% (66/167)\rremote: Counting objects: 40% (67/167)\rremote: Counting objects: 41% (69/167)\rremote: Counting objects: 42% (71/167)\rremote: Counting objects: 43% (72/167)\rremote: Counting objects: 44% (74/167)\rremote: Counting objects: 45% (76/167)\rremote: Counting objects: 46% (77/167)\rremote: Counting objects: 47% (79/167)\rremote: Counting objects: 48% (81/167)\rremote: Counting objects: 49% (82/167)\rremote: Counting objects: 50% (84/167)\rremote: Counting objects: 51% (86/167)\rremote: Counting objects: 52% (87/167)\rremote: Counting objects: 53% (89/167)\rremote: Counting objects: 54% (91/167)\rremote: Counting objects: 55% (92/167)\rremote: Counting objects: 56% (94/167)\rremote: Counting objects: 57% (96/167)\rremote: Counting objects: 58% (97/167)\rremote: Counting objects: 59% (99/167)\rremote: Counting objects: 60% (101/167)\rremote: Counting objects: 61% (102/167)\rremote: Counting objects: 62% (104/167)\rremote: Counting objects: 63% (106/167)\rremote: Counting objects: 64% (107/167)\rremote: Counting objects: 65% (109/167)\rremote: Counting objects: 66% (111/167)\rremote: Counting objects: 67% (112/167)\rremote: Counting objects: 68% (114/167)\rremote: Counting objects: 69% (116/167)\rremote: Counting objects: 70% (117/167)\rremote: Counting objects: 71% (119/167)\rremote: Counting objects: 72% (121/167)\rremote: Counting objects: 73% (122/167)\rremote: Counting objects: 74% (124/167)\rremote: Counting objects: 75% (126/167)\rremote: Counting objects: 76% (127/167)\rremote: Counting objects: 77% (129/167)\rremote: Counting objects: 78% (131/167)\rremote: Counting objects: 79% (132/167)\rremote: Counting objects: 80% (134/167)\rremote: Counting objects: 81% (136/167)\rremote: Counting objects: 82% (137/167)\rremote: Counting objects: 83% (139/167)\rremote: Counting objects: 84% (141/167)\rremote: Counting objects: 85% (142/167)\rremote: Counting objects: 86% (144/167)\rremote: Counting objects: 87% (146/167)\rremote: Counting objects: 88% (147/167)\rremote: Counting objects: 89% (149/167)\rremote: Counting objects: 90% (151/167)\rremote: Counting objects: 91% (152/167)\rremote: Counting objects: 92% (154/167)\rremote: Counting objects: 93% (156/167)\rremote: Counting objects: 94% (157/167)\rremote: Counting objects: 95% (159/167)\rremote: Counting objects: 96% (161/167)\rremote: Counting objects: 97% (162/167)\rremote: Counting objects: 98% (164/167)\rremote: Counting objects: 99% (166/167)\rremote: Counting objects: 100% (167/167)\rremote: Counting objects: 100% (167/167), done.\r\nremote: Compressing objects: 1% (1/76)\rremote: Compressing objects: 2% (2/76)\rremote: Compressing objects: 3% (3/76)\rremote: Compressing objects: 5% (4/76)\rremote: Compressing objects: 6% (5/76)\rremote: Compressing objects: 7% (6/76)\rremote: Compressing objects: 9% (7/76)\rremote: Compressing objects: 10% (8/76)\r",,terminal_output +14,68791,"TERMINAL",0,0,"remote: Compressing objects: 11% (9/76)\rremote: Compressing objects: 13% (10/76)\rremote: Compressing objects: 14% (11/76)\rremote: Compressing objects: 15% (12/76)\rremote: Compressing objects: 17% (13/76)\rremote: Compressing objects: 18% (14/76)\rremote: Compressing objects: 19% (15/76)\rremote: Compressing objects: 21% (16/76)\rremote: Compressing objects: 22% (17/76)\rremote: Compressing objects: 23% (18/76)\rremote: Compressing objects: 25% (19/76)\rremote: Compressing objects: 26% (20/76)\rremote: Compressing objects: 27% (21/76)\rremote: Compressing objects: 28% (22/76)\rremote: Compressing objects: 30% (23/76)\rremote: Compressing objects: 31% (24/76)\rremote: Compressing objects: 32% (25/76)\rremote: Compressing objects: 34% (26/76)\rremote: Compressing objects: 35% (27/76)\rremote: Compressing objects: 36% (28/76)\rremote: Compressing objects: 38% (29/76)\rremote: Compressing objects: 39% (30/76)\rremote: Compressing objects: 40% (31/76)\rremote: Compressing objects: 42% (32/76)\rremote: Compressing objects: 43% (33/76)\rremote: Compressing objects: 44% (34/76)\rremote: Compressing objects: 46% (35/76)\rremote: Compressing objects: 47% (36/76)\rremote: Compressing objects: 48% (37/76)\rremote: Compressing objects: 50% (38/76)\rremote: Compressing objects: 51% (39/76)\rremote: Compressing objects: 52% (40/76)\rremote: Compressing objects: 53% (41/76)\rremote: Compressing objects: 55% (42/76)\rremote: Compressing objects: 56% (43/76)\rremote: Compressing objects: 57% (44/76)\rremote: Compressing objects: 59% (45/76)\rremote: Compressing objects: 60% (46/76)\rremote: Compressing objects: 61% (47/76)\rremote: Compressing objects: 63% (48/76)\rremote: Compressing objects: 64% (49/76)\rremote: Compressing objects: 65% (50/76)\rremote: Compressing objects: 67% (51/76)\rremote: Compressing objects: 68% (52/76)\rremote: Compressing objects: 69% (53/76)\rremote: Compressing objects: 71% (54/76)\rremote: Compressing objects: 72% (55/76)\rremote: Compressing objects: 73% (56/76)\rremote: Compressing objects: 75% (57/76)\rremote: Compressing objects: 76% (58/76)\rremote: Compressing objects: 77% (59/76)\rremote: Compressing objects: 78% (60/76)\rremote: Compressing objects: 80% (61/76)\rremote: Compressing objects: 81% (62/76)\rremote: Compressing objects: 82% (63/76)\rremote: Compressing objects: 84% (64/76)\rremote: Compressing objects: 85% (65/76)\rremote: Compressing objects: 86% (66/76)\rremote: Compressing objects: 88% (67/76)\rremote: Compressing objects: 89% (68/76)\rremote: Compressing objects: 90% (69/76)\rremote: Compressing objects: 92% (70/76)\rremote: Compressing objects: 93% (71/76)\rremote: Compressing objects: 94% (72/76)\rremote: Compressing objects: 96% (73/76)\rremote: Compressing objects: 97% (74/76)\rremote: Compressing objects: 98% (75/76)\rremote: Compressing objects: 100% (76/76)\rremote: Compressing objects: 100% (76/76), done.\r\nReceiving objects: 0% (1/167)\rReceiving objects: 1% (2/167)\rReceiving objects: 2% (4/167)\rReceiving objects: 3% (6/167)\rReceiving objects: 4% (7/167)\rReceiving objects: 5% (9/167)\rReceiving objects: 6% (11/167)\rReceiving objects: 7% (12/167)\rReceiving objects: 8% (14/167)\rReceiving objects: 9% (16/167)\rReceiving objects: 10% (17/167)\rReceiving objects: 11% (19/167)\rReceiving objects: 12% (21/167)\rReceiving objects: 13% (22/167)\rReceiving objects: 14% (24/167)\rReceiving objects: 15% (26/167)\rReceiving objects: 16% (27/167)\rReceiving objects: 17% (29/167)\rReceiving objects: 18% (31/167)\rReceiving objects: 19% (32/167)\rReceiving objects: 20% (34/167)\rReceiving objects: 21% (36/167)\rReceiving objects: 22% (37/167)\rReceiving objects: 23% (39/167)\rReceiving objects: 24% (41/167)\rReceiving objects: 25% (42/167)\rReceiving objects: 26% (44/167)\rReceiving objects: 27% (46/167)\rReceiving objects: 28% (47/167)\rReceiving objects: 29% (49/167)\rReceiving objects: 30% (51/167)\rReceiving objects: 31% (52/167)\rReceiving objects: 32% (54/167)\rReceiving objects: 33% (56/167)\rReceiving objects: 34% (57/167)\rReceiving objects: 35% (59/167)\rReceiving objects: 36% (61/167)\rReceiving objects: 37% (62/167)\rReceiving objects: 38% (64/167)\rReceiving objects: 39% (66/167)\rReceiving objects: 40% (67/167)\rReceiving objects: 41% (69/167)\rReceiving objects: 42% (71/167)\rReceiving objects: 43% (72/167)\rReceiving objects: 44% (74/167)\rReceiving objects: 45% (76/167)\rReceiving objects: 46% (77/167)\rReceiving objects: 47% (79/167)\rReceiving objects: 48% (81/167)\rReceiving objects: 49% (82/167)\rReceiving objects: 50% (84/167)\rReceiving objects: 51% (86/167)\rReceiving objects: 52% (87/167)\rReceiving objects: 53% (89/167)\rReceiving objects: 54% (91/167)\rReceiving objects: 55% (92/167)\rReceiving objects: 56% (94/167)\rReceiving objects: 57% (96/167)\rReceiving objects: 58% (97/167)\rReceiving objects: 59% (99/167)\rReceiving objects: 60% (101/167)\rReceiving objects: 61% (102/167)\rReceiving objects: 62% (104/167)\rReceiving objects: 63% (106/167)\rReceiving objects: 64% (107/167)\rReceiving objects: 65% (109/167)\rReceiving objects: 66% (111/167)\rReceiving objects: 67% (112/167)\rReceiving objects: 68% (114/167)\rReceiving objects: 69% (116/167)\rReceiving objects: 70% (117/167)\rReceiving objects: 71% (119/167)\rReceiving objects: 72% (121/167)\rReceiving objects: 73% (122/167)\rReceiving objects: 74% (124/167)\rReceiving objects: 75% (126/167)\rReceiving objects: 76% (127/167)\rReceiving objects: 77% (129/167)\rReceiving objects: 78% (131/167)\rReceiving objects: 79% (132/167)\rremote: Total 167 (delta 93), reused 158 (delta 85), pack-reused 0 (from 0)\r\nReceiving objects: 80% (134/167)\rReceiving objects: 81% (136/167)\rReceiving objects: 82% (137/167)\rReceiving objects: 83% (139/167)\rReceiving objects: 84% (141/167)\rReceiving objects: 85% (142/167)\rReceiving objects: 86% (144/167)\rReceiving objects: 87% (146/167)\rReceiving objects: 88% (147/167)\rReceiving objects: 89% (149/167)\rReceiving objects: 90% (151/167)\rReceiving objects: 91% (152/167)\rReceiving objects: 92% (154/167)\rReceiving objects: 93% (156/167)\rReceiving objects: 94% (157/167)\rReceiving objects: 95% (159/167)\rReceiving objects: 96% (161/167)\rReceiving objects: 97% (162/167)\rReceiving objects: 98% (164/167)\rReceiving objects: 99% (166/167)\rReceiving objects: 100% (167/167)\rReceiving objects: 100% (167/167), 29.24 KiB | 332.00 KiB/s, done.\r\nResolving deltas: 0% (0/93)\rResolving deltas: 1% (1/93)\rResolving deltas: 2% (2/93)\rResolving deltas: 3% (3/93)\rResolving deltas: 4% (4/93)\rResolving deltas: 5% (5/93)\rResolving deltas: 6% (6/93)\rResolving deltas: 7% (7/93)\rResolving deltas: 8% (8/93)\rResolving deltas: 9% (9/93)\rResolving deltas: 10% (10/93)\rResolving deltas: 11% (11/93)\rResolving deltas: 12% (12/93)\rResolving deltas: 13% (13/93)\rResolving deltas: 16% (15/93)\rResolving deltas: 17% (16/93)\rResolving deltas: 18% (17/93)\rResolving deltas: 19% (18/93)\rResolving deltas: 20% (19/93)\rResolving deltas: 21% (20/93)\rResolving deltas: 24% (23/93)\rResolving deltas: 25% (24/93)\rResolving deltas: 26% (25/93)\rResolving deltas: 27% (26/93)\rResolving deltas: 29% (27/93)\rResolving deltas: 30% (28/93)\rResolving deltas: 31% (29/93)\rResolving deltas: 32% (30/93)\rResolving deltas: 35% (33/93)\rResolving deltas: 38% (36/93)\rResolving deltas: 39% (37/93)\rResolving deltas: 40% (38/93)\rResolving deltas: 41% (39/93)\rResolving deltas: 43% (40/93)\rResolving deltas: 44% (41/93)\rResolving deltas: 46% (43/93)\rResolving deltas: 48% (45/93)\rResolving deltas: 49% (46/93)\rResolving deltas: 50% (47/93)\rResolving deltas: 51% (48/93)\rResolving deltas: 56% (53/93)\rResolving deltas: 58% (54/93)\rResolving deltas: 59% (55/93)\rResolving deltas: 63% (59/93)\rResolving deltas: 64% (60/93)\rResolving deltas: 65% (61/93)\rResolving deltas: 66% (62/93)\rResolving deltas: 67% (63/93)\rResolving deltas: 68% (64/93)\rResolving deltas: 72% (67/93)\rResolving deltas: 73% (68/93)\rResolving deltas: 74% (69/93)\rResolving deltas: 75% (70/93)\rResolving deltas: 76% (71/93)\rResolving deltas: 77% (72/93)\rResolving deltas: 78% (73/93)\rResolving deltas: 79% (74/93)\rResolving deltas: 80% (75/93)\rResolving deltas: 81% (76/93)\rResolving deltas: 82% (77/93)\rResolving deltas: 83% (78/93)\rResolving deltas: 84% (79/93)\rResolving deltas: 86% (80/93)\rResolving deltas: 87% (81/93)\rResolving deltas: 88% (82/93)\rResolving deltas: 89% (83/93)\rResolving deltas: 90% (84/93)\rResolving deltas: 91% (85/93)\rResolving deltas: 92% (86/93)\rResolving deltas: 93% (87/93)\rResolving deltas: 94% (88/93)\rResolving deltas: 95% (89/93)\rResolving deltas: 96% (90/93)\rResolving deltas: 97% (91/93)\rResolving deltas: 98% (92/93)\rResolving deltas: 100% (93/93)\rResolving deltas: 100% (93/93), done.\r\n",,terminal_output +15,68984,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;0",,terminal_output +16,111140,"TERMINAL",0,0,"ls",,terminal_command +17,111153,"TERMINAL",0,0,"]633;E;2025-06-26 20:19:58 ls;b8c83623-699a-4617-a1fd-25c482b22092]633;Cgenerate_dataset.py logs requirements.txt single_batch.npy train_lam_tf_seeding.py\r\ngeneration_1750681785.3743937.gif models sample.py slurm train_tokenizer_logging.py\r\ngeneration_video_0_1750688558.8735778.gif notes.md sample_results train_dynamics.py train_tokenizer.py\r\ngenie.py __pycache__ sandbox train_dynamics_single_batch.py train_tokenizer_single_batch.py\r\njafar README.md sbatch_scripts train_lam.py utils\r\nLICENSE requirements_franz.txt shell_scripts train_lam_single_batch.py wandb\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;0",,terminal_output +18,112454,"TERMINAL",0,0,"gs",,terminal_command +19,112492,"TERMINAL",0,0,"]633;E;2025-06-26 20:19:59 gs;b8c83623-699a-4617-a1fd-25c482b22092]633;COn branch log-time-train-step\r\nYour branch is up to date with 'origin/log-time-train-step'.\r\n\r\nChanges not staged for commit:\r\n (use ""git add ..."" to update what will be committed)\r\n (use ""git restore ..."" to discard changes in working directory)\r\n\tmodified: .gitignore\r\n\tmodified: train_lam.py\r\n\tmodified: train_tokenizer.py\r\n\r\nUntracked files:\r\n (use ""git add ..."" to include in what will be committed)\r\n\tjafar/\r\n\tnotes.md\r\n\trequirements_franz.txt\r\n\tslurm/\r\n\ttrain_dynamics_single_batch.py\r\n\ttrain_lam_single_batch.py\r\n\ttrain_lam_tf_seeding.py\r\n\ttrain_tokenizer_logging.py\r\n\ttrain_tokenizer_single_batch.py\r\n\r\nno changes added to commit (use ""git add"" and/or ""git commit -a"")\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;0",,terminal_output +20,127523,"TERMINAL",0,0,"rm -r jafar/",,terminal_command +21,127575,"TERMINAL",0,0,"]633;E;2025-06-26 20:20:14 rm -r jafar/;b8c83623-699a-4617-a1fd-25c482b22092]633;C",,terminal_output +22,127808,"TERMINAL",0,0,"rm: remove write-protected regular file 'jafar/.git/objects/pack/pack-c0a30aea3a054e61ce30b8f1ee49202e4a180479.pack'? ",,terminal_output +23,128903,"TERMINAL",0,0,"^C\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;130",,terminal_output +24,131538,"TERMINAL",0,0,"rm -rf jafar/",,terminal_command +25,131584,"TERMINAL",0,0,"]633;E;2025-06-26 20:20:18 rm -rf jafar/;b8c83623-699a-4617-a1fd-25c482b22092]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;0",,terminal_output +26,137483,"TERMINAL",0,0,"ls",,terminal_command +27,137491,"TERMINAL",0,0,"]633;E;2025-06-26 20:20:24 ls;b8c83623-699a-4617-a1fd-25c482b22092]633;Cgenerate_dataset.py models sample.py slurm train_tokenizer_logging.py\r\ngeneration_1750681785.3743937.gif notes.md sample_results train_dynamics.py train_tokenizer.py\r\ngeneration_video_0_1750688558.8735778.gif __pycache__ sandbox train_dynamics_single_batch.py train_tokenizer_single_batch.py\r\ngenie.py README.md sbatch_scripts train_lam.py utils\r\nLICENSE requirements_franz.txt shell_scripts train_lam_single_batch.py wandb\r\nlogs requirements.txt single_batch.npy train_lam_tf_seeding.py\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;0",,terminal_output +28,140264,"TERMINAL",0,0,"cd j^C",,terminal_command +29,140272,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;b8c83623-699a-4617-a1fd-25c482b22092]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D",,terminal_output +30,140471,"TERMINAL",0,0,"^C",,terminal_command +31,140485,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;b8c83623-699a-4617-a1fd-25c482b22092]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D",,terminal_output +32,140616,"TERMINAL",0,0,"^C",,terminal_command +33,140621,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;b8c83623-699a-4617-a1fd-25c482b22092]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D",,terminal_output +34,146736,"TERMINAL",0,0,"git clone git@github.com:p-doom/slurm.git",,terminal_command +35,146752,"TERMINAL",0,0,"]633;E;2025-06-26 20:20:34 git clone git@github.com:p-doom/slurm.git;b8c83623-699a-4617-a1fd-25c482b22092]633;Cfatal: destination path 'slurm' already exists and is not an empty directory.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;128",,terminal_output +36,176180,"sbatch_scripts/train_dyn/train_dyn_overfit_tfrecord_10.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_overfit_tfrecord_10\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/dyn/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards_overfit_10'\n\nlam_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/lam/3286113/lam_1750693337_13500'\ntokenizer_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/tokenizer/3286114/tokenizer_1750693337_13500'\n\nsrun python train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --lam_checkpoint $lam_checkpoint \\n --tokenizer_checkpoint $tokenizer_checkpoint \\n --num_steps=300000 \\n --warmup_steps=10000 \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=10 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n\n",shellscript,tab +37,199579,"slurm/dev/alfred/train_dyn/train_dyn_knoms_full.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_knoms_full\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/dyn/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\n\nlam_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/lam/3277318/lam_1750444032_10000'\ntokenizer_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/tokenizer/3273828/tokenizer_1750269881_15500'\n\nsrun python train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --lam_checkpoint $lam_checkpoint \\n --tokenizer_checkpoint $tokenizer_checkpoint \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +38,753939,"train_tokenizer.py",0,0,"",python,tab +39,754710,"train_tokenizer.py",425,0,"",python,selection_mouse +40,754715,"train_tokenizer.py",424,0,"",python,selection_command +41,755029,"TERMINAL",0,0,"bash",,terminal_focus +42,762041,"train_tokenizer.py",6505,0,"",python,selection_mouse +43,762640,"train_tokenizer.py",6538,0,"",python,selection_mouse +44,763556,"train_tokenizer.py",6537,0,"",python,selection_command +45,769994,"train_tokenizer.py",6537,0,"#",python,content +46,770001,"train_tokenizer.py",6538,0,"",python,selection_keyboard +47,770142,"train_tokenizer.py",6537,0,"",python,selection_command +48,770505,"train_tokenizer.py",6572,0,"",python,selection_command +49,770770,"train_tokenizer.py",6563,0,"\n ",python,content +50,770774,"train_tokenizer.py",6572,0," ",python,content +51,771351,"train_tokenizer.py",6572,4,"",python,content +52,772273,"train_tokenizer.py",6572,0,"s",python,content +53,772274,"train_tokenizer.py",6573,0,"",python,selection_keyboard +54,772309,"train_tokenizer.py",6573,0,"i",python,content +55,772311,"train_tokenizer.py",6574,0,"",python,selection_keyboard +56,772377,"train_tokenizer.py",6574,0,"n",python,content +57,772379,"train_tokenizer.py",6575,0,"",python,selection_keyboard +58,772459,"train_tokenizer.py",6575,0,"g",python,content +59,772460,"train_tokenizer.py",6576,0,"",python,selection_keyboard +60,772575,"train_tokenizer.py",6576,0,"l",python,content +61,772577,"train_tokenizer.py",6577,0,"",python,selection_keyboard +62,772691,"train_tokenizer.py",6577,0,"e",python,content +63,772693,"train_tokenizer.py",6578,0,"",python,selection_keyboard +64,774046,"train_tokenizer.py",6578,0,"_video = next(dataloader)",python,content +65,774826,"train_tokenizer.py",6602,0,"",python,selection_command +66,774916,"train_tokenizer.py",6592,0,"",python,selection_command +67,775307,"train_tokenizer.py",6591,0,"",python,selection_command +68,775754,"train_tokenizer.py",6587,0,"",python,selection_command +69,775990,"train_tokenizer.py",6587,16,"",python,content +70,775994,"train_tokenizer.py",6586,0,"",python,selection_command +71,776097,"train_tokenizer.py",6587,0,"",python,selection_command +72,776303,"train_tokenizer.py",6587,0,"n",python,content +73,776304,"train_tokenizer.py",6588,0,"",python,selection_keyboard +74,776428,"train_tokenizer.py",6588,0,"o",python,content +75,776429,"train_tokenizer.py",6589,0,"",python,selection_keyboard +76,777056,"train_tokenizer.py",6588,1,"",python,content +77,777200,"train_tokenizer.py",6587,1,"",python,content +78,778198,"train_tokenizer.py",6585,2,"",python,content +79,778339,"train_tokenizer.py",6572,13,"",python,content +80,778813,"train_tokenizer.py",6572,0,"v",python,content +81,778815,"train_tokenizer.py",6573,0,"",python,selection_keyboard +82,778880,"train_tokenizer.py",6573,0,"i",python,content +83,778881,"train_tokenizer.py",6574,0,"",python,selection_keyboard +84,779007,"train_tokenizer.py",6574,0,"d",python,content +85,779008,"train_tokenizer.py",6575,0,"",python,selection_keyboard +86,779146,"train_tokenizer.py",6575,0,"e",python,content +87,779147,"train_tokenizer.py",6576,0,"",python,selection_keyboard +88,779249,"train_tokenizer.py",6576,0,"o",python,content +89,779251,"train_tokenizer.py",6577,0,"",python,selection_keyboard +90,779789,"train_tokenizer.py",6577,0,"s",python,content +91,779790,"train_tokenizer.py",6578,0,"",python,selection_keyboard +92,780167,"train_tokenizer.py",6578,0," ",python,content +93,780168,"train_tokenizer.py",6579,0,"",python,selection_keyboard +94,781454,"train_tokenizer.py",6579,0,"-",python,content +95,781456,"train_tokenizer.py",6580,0,"",python,selection_keyboard +96,781879,"train_tokenizer.py",6579,1,"",python,content +97,782402,"train_tokenizer.py",6579,0,"=",python,content +98,782403,"train_tokenizer.py",6580,0,"",python,selection_keyboard +99,782492,"train_tokenizer.py",6580,0," ",python,content +100,782494,"train_tokenizer.py",6581,0,"",python,selection_keyboard +101,782920,"train_tokenizer.py",6581,0,"n",python,content +102,782921,"train_tokenizer.py",6582,0,"",python,selection_keyboard +103,783049,"train_tokenizer.py",6582,0,"p",python,content +104,783050,"train_tokenizer.py",6583,0,"",python,selection_keyboard +105,783366,"train_tokenizer.py",6583,0,".",python,content +106,783368,"train_tokenizer.py",6584,0,"",python,selection_keyboard +107,783601,"train_tokenizer.py",6584,0,"l",python,content +108,783601,"train_tokenizer.py",6585,0,"",python,selection_keyboard +109,783739,"train_tokenizer.py",6585,0,"o",python,content +110,783741,"train_tokenizer.py",6586,0,"",python,selection_keyboard +111,783764,"train_tokenizer.py",6586,0,"a",python,content +112,783765,"train_tokenizer.py",6587,0,"",python,selection_keyboard +113,783908,"train_tokenizer.py",6587,0,"d",python,content +114,783910,"train_tokenizer.py",6588,0,"",python,selection_keyboard +115,784474,"train_tokenizer.py",6588,0,"()",python,content +116,784476,"train_tokenizer.py",6589,0,"",python,selection_keyboard +117,785970,"train_tokenizer.py",6589,0,"'/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards_overfit_10/shard_00000.npy'",python,content +118,786550,"train_tokenizer.py",6704,0,"",python,selection_command +119,787393,"train_tokenizer.py",6738,0,"",python,selection_command +120,787617,"train_tokenizer.py",6707,0,"",python,selection_command +121,787893,"train_tokenizer.py",6719,0,"",python,selection_command +122,788376,"train_tokenizer.py",6719,1,"#",python,selection_command +123,788741,"train_tokenizer.py",6707,13," #",python,selection_command +124,789290,"train_tokenizer.py",6707,0,"",python,selection_command +125,789930,"train_tokenizer.py",9402,1,"",python,content +126,789931,"train_tokenizer.py",9380,1,"",python,content +127,789931,"train_tokenizer.py",9341,1,"",python,content +128,789931,"train_tokenizer.py",9323,1,"",python,content +129,789931,"train_tokenizer.py",9282,1,"",python,content +130,789931,"train_tokenizer.py",9256,1,"",python,content +131,789931,"train_tokenizer.py",9168,1,"",python,content +132,789931,"train_tokenizer.py",9127,1,"",python,content +133,789931,"train_tokenizer.py",9059,1,"",python,content +134,789931,"train_tokenizer.py",8984,1,"",python,content +135,789931,"train_tokenizer.py",8938,1,"",python,content +136,789931,"train_tokenizer.py",8881,1,"",python,content +137,789932,"train_tokenizer.py",8835,1,"",python,content +138,789932,"train_tokenizer.py",8809,1,"",python,content +139,789932,"train_tokenizer.py",8778,1,"",python,content +140,789932,"train_tokenizer.py",8702,1,"",python,content +141,789932,"train_tokenizer.py",8647,1,"",python,content +142,789932,"train_tokenizer.py",8574,1,"",python,content +143,789932,"train_tokenizer.py",8504,1,"",python,content +144,789932,"train_tokenizer.py",8461,1,"",python,content +145,789932,"train_tokenizer.py",8412,1,"",python,content +146,789932,"train_tokenizer.py",8335,1,"",python,content +147,789932,"train_tokenizer.py",8257,1,"",python,content +148,789932,"train_tokenizer.py",8177,1,"",python,content +149,789932,"train_tokenizer.py",8155,1,"",python,content +150,789932,"train_tokenizer.py",8086,1,"",python,content +151,789933,"train_tokenizer.py",8031,1,"",python,content +152,789933,"train_tokenizer.py",7949,1,"",python,content +153,789933,"train_tokenizer.py",7897,1,"",python,content +154,789933,"train_tokenizer.py",7848,1,"",python,content +155,789933,"train_tokenizer.py",7792,1,"",python,content +156,789933,"train_tokenizer.py",7770,1,"",python,content +157,789933,"train_tokenizer.py",7744,1,"",python,content +158,789933,"train_tokenizer.py",7705,1,"",python,content +159,789933,"train_tokenizer.py",7647,1,"",python,content +160,789933,"train_tokenizer.py",7605,1,"",python,content +161,789933,"train_tokenizer.py",7563,1,"",python,content +162,789933,"train_tokenizer.py",7537,1,"",python,content +163,789933,"train_tokenizer.py",7506,1,"",python,content +164,789933,"train_tokenizer.py",7427,1,"",python,content +165,789934,"train_tokenizer.py",7402,1,"",python,content +166,789934,"train_tokenizer.py",7372,1,"",python,content +167,789934,"train_tokenizer.py",7371,1,"",python,content +168,789934,"train_tokenizer.py",7349,1,"",python,content +169,789934,"train_tokenizer.py",7272,1,"",python,content +170,789934,"train_tokenizer.py",7211,1,"",python,content +171,789934,"train_tokenizer.py",7131,1,"",python,content +172,789934,"train_tokenizer.py",7054,1,"",python,content +173,789934,"train_tokenizer.py",7053,1,"",python,content +174,789934,"train_tokenizer.py",6968,1,"",python,content +175,789934,"train_tokenizer.py",6954,1,"",python,content +176,789934,"train_tokenizer.py",6886,1,"",python,content +177,789935,"train_tokenizer.py",6841,1,"",python,content +178,789935,"train_tokenizer.py",6840,1,"",python,content +179,789935,"train_tokenizer.py",6777,1,"",python,content +180,789935,"train_tokenizer.py",6776,1,"",python,content +181,789935,"train_tokenizer.py",6739,1,"",python,content +182,789935,"train_tokenizer.py",6706,1,"",python,content +183,790488,"train_tokenizer.py",6705,0,"",python,selection_command +184,790590,"train_tokenizer.py",9345,0,"\n",python,content +185,790591,"train_tokenizer.py",9324,0,"\n",python,content +186,790593,"train_tokenizer.py",9286,0,"\n",python,content +187,790594,"train_tokenizer.py",9269,0,"\n",python,content +188,790597,"train_tokenizer.py",9229,0,"\n",python,content +189,790601,"train_tokenizer.py",9204,0,"\n",python,content +190,790602,"train_tokenizer.py",9117,0,"\n",python,content +191,790603,"train_tokenizer.py",9077,0,"\n",python,content +192,790604,"train_tokenizer.py",9010,0,"\n",python,content +193,790605,"train_tokenizer.py",8936,0,"\n",python,content +194,790606,"train_tokenizer.py",8891,0,"\n",python,content +195,790607,"train_tokenizer.py",8835,0,"\n",python,content +196,790608,"train_tokenizer.py",8790,0,"\n",python,content +197,790609,"train_tokenizer.py",8765,0,"\n",python,content +198,790613,"train_tokenizer.py",8735,0,"\n",python,content +199,790614,"train_tokenizer.py",8660,0,"\n",python,content +200,790615,"train_tokenizer.py",8606,0,"\n",python,content +201,790616,"train_tokenizer.py",8534,0,"\n",python,content +202,790617,"train_tokenizer.py",8465,0,"\n",python,content +203,790618,"train_tokenizer.py",8423,0,"\n",python,content +204,790620,"train_tokenizer.py",8375,0,"\n",python,content +205,790621,"train_tokenizer.py",8299,0,"\n",python,content +206,790622,"train_tokenizer.py",8222,0,"\n",python,content +207,790623,"train_tokenizer.py",8143,0,"\n",python,content +208,790624,"train_tokenizer.py",8122,0,"\n",python,content +209,790632,"train_tokenizer.py",8054,0,"\n",python,content +210,790634,"train_tokenizer.py",8000,0,"\n",python,content +211,790635,"train_tokenizer.py",7919,0,"\n",python,content +212,790637,"train_tokenizer.py",7868,0,"\n",python,content +213,790640,"train_tokenizer.py",7820,0,"\n",python,content +214,790652,"train_tokenizer.py",7765,0,"\n",python,content +215,790653,"train_tokenizer.py",7744,0,"\n",python,content +216,790654,"train_tokenizer.py",7719,0,"\n",python,content +217,790657,"train_tokenizer.py",7681,0,"\n",python,content +218,790661,"train_tokenizer.py",7624,0,"\n",python,content +219,790662,"train_tokenizer.py",7583,0,"\n",python,content +220,790663,"train_tokenizer.py",7542,0,"\n",python,content +221,790664,"train_tokenizer.py",7517,0,"\n",python,content +222,790669,"train_tokenizer.py",7487,0,"\n",python,content +223,790671,"train_tokenizer.py",7409,0,"\n",python,content +224,790673,"train_tokenizer.py",7385,0,"\n",python,content +225,790674,"train_tokenizer.py",7356,0,"\n\n",python,content +226,790679,"train_tokenizer.py",7335,0,"\n",python,content +227,790680,"train_tokenizer.py",7259,0,"\n",python,content +228,790682,"train_tokenizer.py",7199,0,"\n",python,content +229,790682,"train_tokenizer.py",7120,0,"\n",python,content +230,790683,"train_tokenizer.py",7044,0,"\n\n",python,content +231,790684,"train_tokenizer.py",6960,0,"\n",python,content +232,790685,"train_tokenizer.py",6947,0,"\n",python,content +233,790685,"train_tokenizer.py",6880,0,"\n",python,content +234,790686,"train_tokenizer.py",6836,0,"\n\n",python,content +235,790687,"train_tokenizer.py",6774,0,"\n\n",python,content +236,790688,"train_tokenizer.py",6738,0,"\n",python,content +237,790688,"train_tokenizer.py",6706,0,"\n",python,content +238,790689,"train_tokenizer.py",6707,0,"",python,selection_command +239,791209,"train_tokenizer.py",6719,0,"",python,selection_command +240,791637,"train_tokenizer.py",6719,1,"#",python,selection_command +241,792183,"train_tokenizer.py",6719,0,"",python,selection_command +242,792887,"train_tokenizer.py",6576,0,"",python,selection_command +243,793410,"train_tokenizer.py",6572,0,"",python,selection_command +244,793664,"train_tokenizer.py",6572,0," ",python,content +245,794097,"train_tokenizer.py",6575,0,"",python,selection_command +246,794388,"train_tokenizer.py",6540,0,"",python,selection_command +247,795966,"train_tokenizer.py",6529,35,"",python,content +248,795978,"train_tokenizer.py",6541,0,"",python,selection_command +249,797805,"train_tokenizer.py",6528,0,"\n ",python,content +250,797815,"train_tokenizer.py",6537,0," ",python,content +251,798655,"train_tokenizer.py",6529,12,"",python,content +252,798768,"train_tokenizer.py",6529,1,"",python,content +253,798771,"train_tokenizer.py",6541,0,"",python,selection_command +254,799153,"train_tokenizer.py",6537,0,"#for videos in dataloader:\n ",python,content +255,799160,"train_tokenizer.py",6540,0,"",python,selection_command +256,799721,"train_tokenizer.py",6575,0,"",python,selection_command +257,800089,"train_tokenizer.py",6563,0,"\n ",python,content +258,800104,"train_tokenizer.py",6572,0," ",python,content +259,800648,"train_tokenizer.py",6572,4,"",python,content +260,801051,"train_tokenizer.py",6572,0,"w",python,content +261,801052,"train_tokenizer.py",6573,0,"",python,selection_keyboard +262,801113,"train_tokenizer.py",6573,0,"h",python,content +263,801115,"train_tokenizer.py",6574,0,"",python,selection_keyboard +264,801186,"train_tokenizer.py",6574,0,"i",python,content +265,801188,"train_tokenizer.py",6575,0,"",python,selection_keyboard +266,801281,"train_tokenizer.py",6575,0,"l",python,content +267,801283,"train_tokenizer.py",6576,0,"",python,selection_keyboard +268,801421,"train_tokenizer.py",6576,0,"e",python,content +269,801424,"train_tokenizer.py",6577,0,"",python,selection_keyboard +270,802046,"train_tokenizer.py",6577,0," True:",python,content +271,802214,"train_tokenizer.py",6582,0,"",python,selection_command +272,802397,"train_tokenizer.py",6602,0,"",python,selection_command +273,802763,"train_tokenizer.py",6749,0,"",python,selection_command +274,803187,"train_tokenizer.py",6602,0,"",python,selection_command +275,804448,"train_tokenizer.py",6584,147,"",python,content +276,804453,"train_tokenizer.py",6596,0,"",python,selection_command +277,804513,"train_tokenizer.py",6576,0,"",python,selection_command +278,804750,"train_tokenizer.py",6564,0," videos = np.load('/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards_overfit_10/shard_00000.npy')\n",python,content +279,804758,"train_tokenizer.py",6576,0,"",python,selection_command +280,805486,"train_tokenizer.py",6572,4,"",python,content +281,805699,"train_tokenizer.py",6571,0,"",python,selection_command +282,805848,"train_tokenizer.py",6714,0,"",python,selection_command +283,806682,"train_tokenizer.py",6706,0,"\n ",python,content +284,806887,"train_tokenizer.py",6707,8,"",python,content +285,807036,"train_tokenizer.py",6708,0,"",python,selection_command +286,808254,"train_tokenizer.py",6707,0,"",python,selection_command +287,808623,"train_tokenizer.py",6707,1,"",python,content +288,808626,"train_tokenizer.py",6715,0,"",python,selection_command +289,811768,"train_tokenizer.py",6726,0,"",python,selection_mouse +290,811770,"train_tokenizer.py",6725,0,"",python,selection_command +291,812074,"train_tokenizer.py",6604,0,"",python,selection_mouse +292,821039,"train_tokenizer.py",6721,0,"",python,selection_mouse +293,823556,"train_tokenizer.py",6573,0,"",python,selection_mouse +294,823738,"train_tokenizer.py",6572,6,"videos",python,selection_mouse +295,839480,"train_tokenizer.py",6796,0,"",python,selection_mouse +296,839485,"train_tokenizer.py",6795,0,"",python,selection_command diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-07efaead-a430-42b3-b659-119d2814db601751307487336-2025_06_30-20.19.49.655/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-07efaead-a430-42b3-b659-119d2814db601751307487336-2025_06_30-20.19.49.655/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..e184527d2297db34b312fc12d8ee444a238b3bfe --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-07efaead-a430-42b3-b659-119d2814db601751307487336-2025_06_30-20.19.49.655/source.csv @@ -0,0 +1,65 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,17,"train_lam.py",0,0,"from dataclasses import dataclass, field\nimport os\nimport time\n\nimport einops\nfrom flax.training import orbax_utils\nfrom flax.training.train_state import TrainState\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax\nfrom orbax.checkpoint import PyTreeCheckpointer\nimport numpy as np\nimport dm_pix as pix\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\n\nfrom models.lam import LatentActionModel\nfrom utils.dataloader import get_dataloader\n\nts = int(time.time())\n\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 200_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data_tfrecords/coinrun""\n checkpoint: str = """"\n # Optimization\n batch_size: int = 36\n vq_beta: float = 0.25\n min_lr: float = 3e-6\n max_lr: float = 3e-5\n warmup_steps: int = 5000\n vq_reset_thresh: int = 50\n # LAM\n model_dim: int = 512\n latent_dim: int = 32\n num_latents: int = 6\n patch_size: int = 16\n num_blocks: int = 8\n num_heads: int = 8\n dropout: float = 0.0\n codebook_dropout: float = 0.0\n # Logging\n log: bool = False\n entity: str = """"\n project: str = """"\n name: str = ""train_lam""\n tags: list[str] = field(default_factory=lambda: [""lam""])\n log_interval: int = 5\n log_image_interval: int = 250\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 10000\n\n\nargs = tyro.cli(Args)\n\n\ndef lam_loss_fn(params, state, inputs):\n # --- Compute loss ---\n outputs = state.apply_fn(\n params, inputs, training=True, rngs={""dropout"": inputs[""rng""]}\n )\n gt_future_frames = inputs[""videos""][:, 1:]\n mse = jnp.square(gt_future_frames - outputs[""recon""]).mean()\n q_loss = jnp.square(jax.lax.stop_gradient(outputs[""emb""]) - outputs[""z""]).mean()\n commitment_loss = jnp.square(\n outputs[""emb""] - jax.lax.stop_gradient(outputs[""z""])\n ).mean()\n loss = mse + q_loss + args.vq_beta * commitment_loss\n\n # --- Compute validation metrics ---\n gt = gt_future_frames.clip(0, 1).reshape(-1, *gt_future_frames.shape[2:])\n recon = outputs[""recon""].clip(0, 1).reshape(-1, *outputs[""recon""].shape[2:])\n psnr = pix.psnr(gt, recon).mean()\n ssim = pix.ssim(gt, recon).mean()\n count_fn = jax.vmap(lambda i: (outputs[""indices""] == i).sum())\n index_counts = count_fn(jnp.arange(args.num_latents))\n metrics = dict(\n loss=loss,\n mse=mse,\n q_loss=q_loss,\n commitment_loss=commitment_loss,\n psnr=psnr,\n ssim=ssim,\n codebook_usage=(index_counts != 0).mean(),\n )\n return loss, (outputs[""recon""], index_counts, metrics)\n\n\n@jax.jit\ndef train_step(state, inputs, action_last_active):\n # --- Update model ---\n rng, inputs[""rng""] = jax.random.split(inputs[""rng""])\n grad_fn = jax.value_and_grad(lam_loss_fn, has_aux=True, allow_int=True)\n (loss, (recon, idx_counts, metrics)), grads = grad_fn(state.params, state, inputs)\n state = state.apply_gradients(grads=grads)\n\n # --- Reset inactive latent actions ---\n codebook = state.params[""params""][""vq""][""codebook""]\n num_codes = len(codebook)\n active_codes = idx_counts != 0.0\n action_last_active = jnp.where(active_codes, 0, action_last_active + 1)\n p_code = active_codes / active_codes.sum()\n reset_idxs = jax.random.choice(rng, num_codes, shape=(num_codes,), p=p_code)\n do_reset = action_last_active >= args.vq_reset_thresh\n new_codebook = jnp.where(\n jnp.expand_dims(do_reset, -1), codebook[reset_idxs], codebook\n )\n state.params[""params""][""vq""][""codebook""] = new_codebook\n action_last_active = jnp.where(do_reset, 0, action_last_active)\n return state, loss, recon, action_last_active, metrics\n\n\nif __name__ == ""__main__"":\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n per_device_batch_size_for_init = args.batch_size // num_devices\n\n rng = jax.random.PRNGKey(args.seed)\n if args.log and jax.process_index() == 0:\n wandb.init(\n entity=args.entity,\n project=args.project,\n name=args.name,\n tags=args.tags,\n group=""debug"",\n config=args\n )\n\n # --- Initialize model ---\n lam = LatentActionModel(\n in_dim=args.image_channels,\n model_dim=args.model_dim,\n latent_dim=args.latent_dim,\n num_latents=args.num_latents,\n patch_size=args.patch_size,\n num_blocks=args.num_blocks,\n num_heads=args.num_heads,\n dropout=args.dropout,\n codebook_dropout=args.codebook_dropout,\n )\n # Track when each action was last sampled\n action_last_active = jnp.zeros(args.num_latents)\n image_shape = (args.image_height, args.image_width, args.image_channels)\n rng, _rng = jax.random.split(rng)\n inputs = dict(\n videos=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len, *image_shape),\n dtype=jnp.float32,\n ),\n rng=_rng,\n )\n rng, _rng = jax.random.split(rng)\n init_params = lam.init(_rng, inputs)\n\n # --- Initialize optimizer ---\n lr_schedule = optax.warmup_cosine_decay_schedule(\n args.min_lr, args.max_lr, args.warmup_steps, args.num_steps\n )\n tx = optax.adamw(learning_rate=lr_schedule, b1=0.9, b2=0.9, weight_decay=1e-4)\n train_state = TrainState.create(apply_fn=lam.apply, params=init_params, tx=tx)\n\n # FIXME: switch to create_hybrid_device_mesh for runs spanning multiple nodes\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n train_state = jax.device_put(train_state, replicated_sharding)\n action_last_active = jax.device_put(action_last_active, replicated_sharding)\n\n # --- Load checkpoint ---\n step = 0\n if args.checkpoint:\n restore_target = {""model"": train_state}\n restore_args = orbax_utils.restore_args_from_target(restore_target)\n train_state.params[""params""].update(\n PyTreeCheckpointer()\n .restore(args.checkpoint, item=restore_target, restore_args=restore_args)[\n ""model""\n ]\n .params[""params""]\n )\n # Assume checkpoint is of the form tokenizer__\n step += int(args.checkpoint.split(""_"")[-1])\n\n # --- TRAIN LOOP ---\n tfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n ]\n dataloader = get_dataloader(\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n tfrecord_files,\n args.seq_len,\n args.batch_size,\n *image_shape,\n )\n print(f""Starting training from step {step}..."")\n while step < args.num_steps:\n for videos in dataloader:\n # --- Train step ---\n rng, _rng = jax.random.split(rng)\n\n videos_sharding = NamedSharding(\n mesh, PartitionSpec(""data"", None, None, None, None)\n )\n videos = jax.make_array_from_process_local_data(videos_sharding, videos)\n\n inputs = dict(videos=videos, rng=_rng)\n train_state, loss, recon, action_last_active, metrics = train_step(\n train_state, inputs, action_last_active\n )\n print(f""Step {step}, loss: {loss}"")\n step += 1\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n wandb.log(\n {\n ""loss"": loss,\n ""step"": step,\n **metrics,\n }\n )\n if step % args.log_image_interval == 0:\n gt_seq = inputs[""videos""][0][1:]\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[0])),\n recon=wandb.Image(np.asarray(recon_seq[0])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n wandb.log(log_images)\n if step % args.log_checkpoint_interval == 0:\n ckpt = {""model"": train_state}\n orbax_checkpointer = orbax.checkpoint.PyTreeCheckpointer()\n save_args = orbax_utils.save_args_from_target(ckpt)\n orbax_checkpointer.save(\n os.path.join(os.getcwd(), args.ckpt_dir, f""lam_{ts}_{step}""),\n ckpt,\n save_args=save_args,\n )\n if step >= args.num_steps:\n break\n",python,tab +2,3802,"train_lam.py",1,0,"/home/hk-project-pai00039/tum_ind3695/tmp_crowd_source",python,content +3,3813,"train_lam.py",54,0,"",python,selection_command +4,5555,".gitignore",0,0,"*.pyc\n*.npy\n*.png\n*.gif\n\nwandb_key\ncheckpoints/\nwandb/\n__pycache__/\n",ignore,tab +5,16626,".gitignore",68,0,"",ignore,selection_command +6,16760,".gitignore",68,0,"\n",ignore,content +7,17144,".gitignore",69,0,"\nlogs/\nsandbox/\nsbatch_scripts/\nvs-code-recorder/\ndata/\ndata_tfrecords/\nsh_scripts/\nutils/clip_checker.py\nutils/dataloader_seeding.py\nutils/preprocess_video_splitter_tmp.py\nrequirements_franz.txt\nsample_resolution_batches.py\ntrain_dynamics_*\ntrain_lam_*\ntrain_tokenizer_*\nnotes.md\nshell_scripts/\nslurm/\n\n",ignore,content +8,17150,".gitignore",69,0,"",ignore,selection_command +9,17970,".gitignore",69,1,"",ignore,content +10,18341,".gitignore",372,0,"",ignore,selection_command +11,18756,".gitignore",371,1,"",ignore,content +12,19484,".gitignore",370,1,"",ignore,content +13,19494,".gitignore",364,0,"",ignore,selection_command +14,20220,"train_lam.py",0,0,"",python,tab +15,34536,"train_lam.py",1,54,"",python,content +16,34548,"train_lam.py",0,0,"",python,selection_command +17,37422,"train_lam.py",0,0,"",python,tab +18,37997,".gitignore",0,0,"",ignore,tab +19,38057,"train_lam.py",0,0,"",python,tab +20,38756,".gitignore",0,0,"",ignore,tab +21,39088,"train_lam.py",0,0,"",python,tab +22,41367,"train_lam.py",9640,0,"",python,selection_command +23,42033,"train_lam.py",7904,0,"",python,selection_command +24,42185,"train_lam.py",7632,0,"",python,selection_command +25,42349,"train_lam.py",7419,0,"",python,selection_command +26,42625,"train_lam.py",6793,0,"",python,selection_command +27,42825,"train_lam.py",6234,0,"",python,selection_command +28,43412,"train_lam.py",6793,0,"",python,selection_command +29,43565,"train_lam.py",7419,0,"",python,selection_command +30,43711,"train_lam.py",7632,0,"",python,selection_command +31,46933,".gitignore",0,0,"",ignore,tab +32,48165,"TERMINAL",0,0,"gs",,terminal_command +33,48185,"TERMINAL",0,0,"]633;E;2025-06-30 20:20:37 gs;6979a12f-f382-4ba6-ae05-07968467e789]633;C",,terminal_output +34,54816,"TERMINAL",0,0,"",,terminal_focus +35,55117,"TERMINAL",0,0,"bash",,terminal_focus +36,55380,"TERMINAL",0,0,"bash",,terminal_focus +37,57408,"TERMINAL",0,0,"gs",,terminal_command +38,57456,"TERMINAL",0,0,"]633;E;2025-06-30 20:20:47 gs;6fdaa671-1998-4205-8f9d-888450c2f397]633;COn branch main\r\nYour branch is behind 'origin/main' by 2 commits, and can be fast-forwarded.\r\n (use ""git pull"" to update your local branch)\r\n\r\nChanges not staged for commit:\r\n (use ""git add ..."" to update what will be committed)\r\n (use ""git restore ..."" to discard changes in working directory)\r\n\tmodified: .gitignore\r\n\r\nUntracked files:\r\n (use ""git add ..."" to include in what will be committed)\r\n\tslurm_tmp/\r\n\tutils/dataloader_bak.py\r\n\r\nno changes added to commit (use ""git add"" and/or ""git commit -a"")\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_batch_size_scaling]633;D;0",,terminal_output +39,64001,"utils/dataloader.py",0,0,"import functools\nimport jax\n\nimport tensorflow as tf\n\n# reserve GPU memory for JAX only if tensorflow is built with GPU support\ntf.config.experimental.set_visible_devices([], ""GPU"")\n\n\n# --- TensorFlow function for processing: slicing, normalization ---\ndef _tf_process_episode(episode_tensor, seq_len, image_h, image_w, image_c, seed):\n """"""\n Processes a raw episode tensor in TensorFlow.\n Takes a full episode, extracts a random sequence, and normalizes it.\n Args:\n episode_tensor: A TensorFlow tensor representing a full video episode.\n Expected shape: (dynamic_length, image_h, image_w, image_c)\n Expected dtype: e.g., tf.uint8 (raw pixel values)\n seq_len: The desired length of the sub-sequence to extract.\n image_h: The height of each frame.\n image_w: The width of each frame.\n image_c: The number of channels in each frame.\n seed: The seed for the random number generator.\n Returns:\n A TensorFlow tensor representing the processed video sequence.\n Shape: (seq_len, image_h, image_w, image_c)\n Dtype: tf.float32 (normalized pixel values)\n """"""\n current_episode_len = tf.shape(episode_tensor)[0]\n\n max_start_idx = current_episode_len - seq_len\n\n start_idx = tf.random.uniform(\n shape=(), minval=0, maxval=max_start_idx + 1, dtype=tf.int32, seed=seed\n )\n\n seq = episode_tensor[start_idx : start_idx + seq_len]\n\n seq = tf.cast(seq, tf.float32) / 255.0\n\n # Ensure the final shape is statically known for batching.\n # tf.reshape is robust, but tf.ensure_shape or set_shape can also be used if confident.\n processed_sequence = tf.reshape(seq, [seq_len, image_h, image_w, image_c])\n\n return processed_sequence\n\n\ndef _parse_tfrecord_fn(example_proto, image_h, image_w, image_c):\n feature_description = {\n ""height"": tf.io.FixedLenFeature([], tf.int64),\n ""width"": tf.io.FixedLenFeature([], tf.int64),\n ""channels"": tf.io.FixedLenFeature([], tf.int64),\n ""sequence_length"": tf.io.FixedLenFeature([], tf.int64),\n ""raw_video"": tf.io.FixedLenFeature([], tf.string),\n }\n example = tf.io.parse_single_example(example_proto, feature_description)\n\n video_shape = (example[""sequence_length""], image_h, image_w, image_c)\n\n episode_tensor = tf.io.decode_raw(example[""raw_video""], out_type=tf.uint8)\n episode_tensor = tf.reshape(episode_tensor, video_shape)\n\n episode_tensor = tf.ensure_shape(episode_tensor, [None, image_h, image_w, image_c])\n return episode_tensor\n\n\ndef get_dataloader(\n tfrecord_paths: list[str], # List of TFRecord file paths\n seq_len: int,\n global_batch_size: int,\n image_h: int,\n image_w: int,\n image_c: int,\n shuffle_buffer_size: int = 1000,\n num_parallel_calls: int = tf.data.AUTOTUNE,\n seed: int = 42,\n):\n """"""\n Creates a tf.data.Dataset pipeline from TFRecord files.\n """"""\n if not tfrecord_paths:\n raise ValueError(""tfrecord_paths list cannot be empty."")\n\n process_id = jax.process_index()\n num_processes = jax.process_count()\n\n assert (\n global_batch_size % num_processes == 0\n ), ""Global batch size {global_batch_size} \\n must be divisible by the number of JAX processes {num_processes} for proper sharding.""\n per_process_batch_size = global_batch_size // num_processes\n\n dataset = tf.data.TFRecordDataset(\n tfrecord_paths, num_parallel_reads=tf.data.AUTOTUNE\n )\n\n dataset = dataset.shard(num_shards=num_processes, index=process_id)\n\n # (f.srambical) NOTE: For TFRecords, it's often good to have a large shuffle buffer.\n if shuffle_buffer_size > 0:\n dataset = dataset.shuffle(\n buffer_size=shuffle_buffer_size, seed=seed, reshuffle_each_iteration=True\n )\n parse_fn = functools.partial(\n _parse_tfrecord_fn, image_h=image_h, image_w=image_w, image_c=image_c\n )\n dataset = dataset.map(parse_fn, num_parallel_calls=num_parallel_calls)\n\n tf_process_fn = functools.partial(\n _tf_process_episode,\n seq_len=seq_len,\n image_h=image_h,\n image_w=image_w,\n image_c=image_c,\n seed=seed,\n )\n dataset = dataset.map(tf_process_fn, num_parallel_calls=num_parallel_calls)\n\n dataset = dataset.repeat(None)\n dataset = dataset.batch(per_process_batch_size, drop_remainder=True)\n dataset = dataset.prefetch(tf.data.AUTOTUNE)\n\n return dataset.as_numpy_iterator()\n",python,tab +40,66824,"utils/dataloader.py",2784,0,"",python,selection_command +41,67354,"utils/dataloader.py",2784,1,"",python,content +42,67492,"utils/dataloader.py",2784,1,"",python,content +43,67653,"utils/dataloader.py",2784,1,"",python,content +44,68510,"utils/dataloader.py",2784,0,"5",python,content +45,68514,"utils/dataloader.py",2785,0,"",python,selection_keyboard +46,68676,"utils/dataloader.py",2784,0,"",python,selection_command +47,70131,"TERMINAL",0,0,"bash",,terminal_focus +48,70135,".gitignore",0,0,"",ignore,tab +49,83949,".gitignore",0,0,"",ignore,selection_command +50,84161,".gitignore",6,0,"",ignore,selection_command +51,84411,".gitignore",12,0,"",ignore,selection_command +52,88051,"TERMINAL",0,0,"",,terminal_focus +53,90004,"TERMINAL",0,0,"cd slurm/",,terminal_command +54,90007,"TERMINAL",0,0,"]633;E;2025-06-30 20:21:19 cd slurm/;5160b2c5-8f6e-406f-95ef-45827d2d74ec]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_batch_size_scaling/slurm]633;D;0",,terminal_output +55,90543,"TERMINAL",0,0,"ls",,terminal_command +56,90568,"TERMINAL",0,0,"]633;E;2025-06-30 20:21:20 ls;5160b2c5-8f6e-406f-95ef-45827d2d74ec]633;Ccommon dev jobs README.md templates utils\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_batch_size_scaling/slurm]633;D;0",,terminal_output +57,93183,"TERMINAL",0,0,"git pull",,terminal_command +58,93234,"TERMINAL",0,0,"]633;E;2025-06-30 20:21:22 git pull;5160b2c5-8f6e-406f-95ef-45827d2d74ec]633;C",,terminal_output +59,94727,"TERMINAL",0,0,"remote: Enumerating objects: 108, done.\r\nremote: Counting objects: 1% (1/85)\rremote: Counting objects: 2% (2/85)\rremote: Counting objects: 3% (3/85)\rremote: Counting objects: 4% (4/85)\rremote: Counting objects: 5% (5/85)\rremote: Counting objects: 7% (6/85)\rremote: Counting objects: 8% (7/85)\rremote: Counting objects: 9% (8/85)\rremote: Counting objects: 10% (9/85)\rremote: Counting objects: 11% (10/85)\rremote: Counting objects: 12% (11/85)\rremote: Counting objects: 14% (12/85)\rremote: Counting objects: 15% (13/85)\rremote: Counting objects: 16% (14/85)\rremote: Counting objects: 17% (15/85)\rremote: Counting objects: 18% (16/85)\rremote: Counting objects: 20% (17/85)\rremote: Counting objects: 21% (18/85)\rremote: Counting objects: 22% (19/85)\rremote: Counting objects: 23% (20/85)\rremote: Counting objects: 24% (21/85)\rremote: Counting objects: 25% (22/85)\rremote: Counting objects: 27% (23/85)\rremote: Counting objects: 28% (24/85)\rremote: Counting objects: 29% (25/85)\rremote: Counting objects: 30% (26/85)\rremote: Counting objects: 31% (27/85)\rremote: Counting objects: 32% (28/85)\rremote: Counting objects: 34% (29/85)\rremote: Counting objects: 35% (30/85)\rremote: Counting objects: 36% (31/85)\rremote: Counting objects: 37% (32/85)\rremote: Counting objects: 38% (33/85)\rremote: Counting objects: 40% (34/85)\rremote: Counting objects: 41% (35/85)\rremote: Counting objects: 42% (36/85)\rremote: Counting objects: 43% (37/85)\rremote: Counting objects: 44% (38/85)\rremote: Counting objects: 45% (39/85)\rremote: Counting objects: 47% (40/85)\rremote: Counting objects: 48% (41/85)\rremote: Counting objects: 49% (42/85)\rremote: Counting objects: 50% (43/85)\rremote: Counting objects: 51% (44/85)\rremote: Counting objects: 52% (45/85)\rremote: Counting objects: 54% (46/85)\rremote: Counting objects: 55% (47/85)\rremote: Counting objects: 56% (48/85)\rremote: Counting objects: 57% (49/85)\rremote: Counting objects: 58% (50/85)\rremote: Counting objects: 60% (51/85)\rremote: Counting objects: 61% (52/85)\rremote: Counting objects: 62% (53/85)\rremote: Counting objects: 63% (54/85)\rremote: Counting objects: 64% (55/85)\rremote: Counting objects: 65% (56/85)\rremote: Counting objects: 67% (57/85)\rremote: Counting objects: 68% (58/85)\rremote: Counting objects: 69% (59/85)\rremote: Counting objects: 70% (60/85)\rremote: Counting objects: 71% (61/85)\rremote: Counting objects: 72% (62/85)\rremote: Counting objects: 74% (63/85)\rremote: Counting objects: 75% (64/85)\rremote: Counting objects: 76% (65/85)\rremote: Counting objects: 77% (66/85)\rremote: Counting objects: 78% (67/85)\rremote: Counting objects: 80% (68/85)\rremote: Counting objects: 81% (69/85)\rremote: Counting objects: 82% (70/85)\rremote: Counting objects: 83% (71/85)\rremote: Counting objects: 84% (72/85)\rremote: Counting objects: 85% (73/85)\rremote: Counting objects: 87% (74/85)\rremote: Counting objects: 88% (75/85)\rremote: Counting objects: 89% (76/85)\rremote: Counting objects: 90% (77/85)\rremote: Counting objects: 91% (78/85)\rremote: Counting objects: 92% (79/85)\rremote: Counting objects: 94% (80/85)\rremote: Counting objects: 95% (81/85)\rremote: Counting objects: 96% (82/85)\rremote: Counting objects: 97% (83/85)\rremote: Counting objects: 98% (84/85)\rremote: Counting objects: 100% (85/85)\rremote: Counting objects: 100% (85/85), done.\r\nremote: Compressing objects: 3% (1/32)\rremote: Compressing objects: 6% (2/32)\rremote: Compressing objects: 9% (3/32)\rremote: Compressing objects: 12% (4/32)\r",,terminal_output +60,95049,"TERMINAL",0,0,"remote: Compressing objects: 15% (5/32)\rremote: Compressing objects: 18% (6/32)\rremote: Compressing objects: 21% (7/32)\rremote: Compressing objects: 25% (8/32)\rremote: Compressing objects: 28% (9/32)\rremote: Compressing objects: 31% (10/32)\rremote: Compressing objects: 34% (11/32)\rremote: Compressing objects: 37% (12/32)\rremote: Compressing objects: 40% (13/32)\rremote: Compressing objects: 43% (14/32)\rremote: Compressing objects: 46% (15/32)\rremote: Compressing objects: 50% (16/32)\rremote: Compressing objects: 53% (17/32)\rremote: Compressing objects: 56% (18/32)\rremote: Compressing objects: 59% (19/32)\rremote: Compressing objects: 62% (20/32)\rremote: Compressing objects: 65% (21/32)\rremote: Compressing objects: 68% (22/32)\rremote: Compressing objects: 71% (23/32)\rremote: Compressing objects: 75% (24/32)\rremote: Compressing objects: 78% (25/32)\rremote: Compressing objects: 81% (26/32)\rremote: Compressing objects: 84% (27/32)\rremote: Compressing objects: 87% (28/32)\rremote: Compressing objects: 90% (29/32)\rremote: Compressing objects: 93% (30/32)\rremote: Compressing objects: 96% (31/32)\rremote: Compressing objects: 100% (32/32)\rremote: Compressing objects: 100% (32/32), done.\r\nremote: Total 64 (delta 38), reused 56 (delta 31), pack-reused 0 (from 0)\r\nUnpacking objects: 1% (1/64)\rUnpacking objects: 3% (2/64)\rUnpacking objects: 4% (3/64)\rUnpacking objects: 6% (4/64)\rUnpacking objects: 7% (5/64)\rUnpacking objects: 9% (6/64)\rUnpacking objects: 10% (7/64)\rUnpacking objects: 12% (8/64)\rUnpacking objects: 14% (9/64)\rUnpacking objects: 15% (10/64)\rUnpacking objects: 17% (11/64)\rUnpacking objects: 18% (12/64)\rUnpacking objects: 20% (13/64)\rUnpacking objects: 21% (14/64)\rUnpacking objects: 23% (15/64)\rUnpacking objects: 25% (16/64)\rUnpacking objects: 26% (17/64)\rUnpacking objects: 28% (18/64)\rUnpacking objects: 29% (19/64)\rUnpacking objects: 31% (20/64)\rUnpacking objects: 32% (21/64)\rUnpacking objects: 34% (22/64)\rUnpacking objects: 35% (23/64)\rUnpacking objects: 37% (24/64)\rUnpacking objects: 39% (25/64)\rUnpacking objects: 40% (26/64)\rUnpacking objects: 42% (27/64)\rUnpacking objects: 43% (28/64)\rUnpacking objects: 45% (29/64)\rUnpacking objects: 46% (30/64)\rUnpacking objects: 48% (31/64)\rUnpacking objects: 50% (32/64)\rUnpacking objects: 51% (33/64)\rUnpacking objects: 53% (34/64)\rUnpacking objects: 54% (35/64)\rUnpacking objects: 56% (36/64)\rUnpacking objects: 57% (37/64)\rUnpacking objects: 59% (38/64)\rUnpacking objects: 60% (39/64)\rUnpacking objects: 62% (40/64)\rUnpacking objects: 64% (41/64)\rUnpacking objects: 65% (42/64)\rUnpacking objects: 67% (43/64)\rUnpacking objects: 68% (44/64)\rUnpacking objects: 70% (45/64)\rUnpacking objects: 71% (46/64)\rUnpacking objects: 73% (47/64)\rUnpacking objects: 75% (48/64)\rUnpacking objects: 76% (49/64)\rUnpacking objects: 78% (50/64)\rUnpacking objects: 79% (51/64)\rUnpacking objects: 81% (52/64)\rUnpacking objects: 82% (53/64)\rUnpacking objects: 84% (54/64)\rUnpacking objects: 85% (55/64)\rUnpacking objects: 87% (56/64)\rUnpacking objects: 89% (57/64)\rUnpacking objects: 90% (58/64)\rUnpacking objects: 92% (59/64)\rUnpacking objects: 93% (60/64)\rUnpacking objects: 95% (61/64)\rUnpacking objects: 96% (62/64)\rUnpacking objects: 98% (63/64)\rUnpacking objects: 100% (64/64)\rUnpacking objects: 100% (64/64), 8.30 KiB | 35.00 KiB/s, done.\r\n",,terminal_output +61,95170,"TERMINAL",0,0,"From github.com:p-doom/slurm\r\n 06dec29..705b23d main -> origin/main\r\n * [new branch] create-utils-subdirs -> origin/create-utils-subdirs\r\nUpdating 06dec29..705b23d\r\n",,terminal_output +62,95438,"TERMINAL",0,0,"Fast-forward\r\n",,terminal_output +63,95470,"TERMINAL",0,0," dev/alfred/overfit_minecraft_single_sample/train_dynamics_overfit_sample.sbatch | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/overfit_minecraft_single_sample/train_dynamics_overfit_sample.sh | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/overfit_sample/train_dynamics_overfit_sample.sbatch | 2 +-\r\n dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch | 45 +++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch | 39 ---------------------------------------\r\n dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh | 43 +++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_21_mio.sbatch | 45 +++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_2_mio.sbatch | 45 +++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_9_mio.sbatch | 45 +++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_small_mio.sbatch | 45 +++++++++++++++++++++++++++++++++++++++++++++\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/logs/logs_training/train_tokenizer_batch_size_scaling_2_node_3292213.log | 136 ----------------------------------------------------------------------------------------------------------------------------------------\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_16_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_1_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_2_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_32_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_4_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_8_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/overfit_sample_tiny/tester.sh | 38 ++++++++++++++++++++++++++++++++++++++\r\n jobs/mihir/horeka/overfit_sample_tiny/train_dynamics_overfit_sample.sbatch | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\r\n jobs/mihir/horeka/overfit_sample_tiny/train_lam_overfit_sample.sbatch | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++\r\n jobs/mihir/horeka/overfit_sample_tiny/train_tokenizer_overfit_sample.sbatch | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++\r\n utils/alfred/alfred_placeholder.txt | 1 +\r\n utils/franz/franz_placeholder.txt | 1 +\r\n 23 files changed, 600 insertions(+), 182 deletions(-)\r\n create mode 100644 dev/alfred/overfit_minecraft_single_sample/train_dynamics_overfit_sample.sbatch\r\n create mode 100755 dev/alfred/overfit_minecraft_single_sample/train_dynamics_overfit_sample.sh\r\n create mode 100644 dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch\r\n delete mode 100644 dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch\r\n create mode 100755 dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh\r\n create mode 100644 dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_21_mio.sbatch\r\n create mode 100644 dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_2_mio.sbatch\r\n create mode 100644 dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_9_mio.sbatch\r\n create mode 100644 dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_small_mio.sbatch\r\n delete mode 100644 jobs/mihir/horeka/batchsize_scaling/adjusted_lr/logs/logs_training/train_tokenizer_batch_size_scaling_2_node_3292213.log\r\n create mode 100644 jobs/mihir/horeka/overfit_sample_tiny/tester.sh\r\n create mode 100644 jobs/mihir/horeka/overfit_sample_tiny/train_dynamics_overfit_sample.sbatch\r\n create mode 100644 jobs/mihir/horeka/overfit_sample_tiny/train_lam_overfit_sample.sbatch\r\n create mode 100644 jobs/mihir/horeka/overfit_sample_tiny/train_tokenizer_overfit_sample.sbatch\r\n create mode 100644 utils/alfred/alfred_placeholder.txt\r\n create mode 100644 utils/franz/franz_placeholder.txt\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_batch_size_scaling/slurm]633;D;0",,terminal_output +64,294322,"TERMINAL",0,0,"cd ..",,terminal_command diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-147cbc16-b49b-4a51-93fe-1d098f282eba1750965675085-2025_06_26-21.21.29.79/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-147cbc16-b49b-4a51-93fe-1d098f282eba1750965675085-2025_06_26-21.21.29.79/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..818af768f34a7a81c6196bbbf47cd6101f1ed7e6 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-147cbc16-b49b-4a51-93fe-1d098f282eba1750965675085-2025_06_26-21.21.29.79/source.csv @@ -0,0 +1,5 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,4,"/home/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_tokenizer.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n",shellscript,tab +2,1355,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"9:21:29 PM [info] Activating crowd-code\n9:21:29 PM [info] Welcome back tum_ind3695. Your user-id is '507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20'. Happy coding!\n9:21:29 PM [info] Recording started\n",Log,tab +3,3666,"TERMINAL",0,0,"/bin/python3 /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt",,terminal_command +4,3749,"TERMINAL",0,0,"]633;E;2025-06-26 21:21:32 /bin/python3 /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt;75b7428c-8463-49f3-815b-b639f4309d7b]633;C]0;tum_ind3695@hkn1993:/hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash]633;D;0",,terminal_output diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-19062f93-c43f-40da-a8e7-aee672713bd11750887279735-2025_06_25-23.35.33.315/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-19062f93-c43f-40da-a8e7-aee672713bd11750887279735-2025_06_25-23.35.33.315/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..7c54bb310f8329d48fe06b8c3d86084edee08032 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-19062f93-c43f-40da-a8e7-aee672713bd11750887279735-2025_06_25-23.35.33.315/source.csv @@ -0,0 +1,711 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,4,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sh",0,0,"module unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\n\n\nexport SLURM_NTASKS=1\n\n# ws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n# job_name=$SLURM_JOB_NAME\n# slurm_job_id=$SLURM_JOB_ID\n# data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_tmp'\n\n# CHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\n# mkdir -p $CHECKPOINT_DIR\n\n# # echo 'starting training'\n# # srun echo 'hello'\n\n# python train_tokenizer.py \\n# --ckpt_dir $CHECKPOINT_DIR \\n# --batch_size=1 \\n# --num_steps=300000\\n# --warmup_steps=10000 \\n# --log_checkpoint_interval=10000 \\n# --log \\n# --entity instant-uv \\n# --project jafar \\n# --data_dir $data_dir \n\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun_tfrecords'\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +2,1218,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"11:35:33 PM [info] Activating crowd-code\n11:35:33 PM [info] Welcome back tum_ind3695. Your user-id is '507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20'. Happy coding!\n11:35:33 PM [info] Recording started\n",Log,tab +3,3296,"TERMINAL",0,0,"/bin/python3 /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt",,terminal_command +4,3349,"TERMINAL",0,0,"]633;E;2025-06-25 23:35:36 /bin/python3 /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt;e85feef2-bbcf-448a-92fe-c2a0164336c0]633;C",,terminal_output +5,3356,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash]633;D;0",,terminal_output +6,76883,"TERMINAL",0,0,"",,terminal_focus +7,78950,"TERMINAL",0,0,"bash",,terminal_focus +8,79264,"TERMINAL",0,0,"bash",,terminal_focus +9,80655,"TERMINAL",0,0,"ls",,terminal_command +10,80675,"TERMINAL",0,0,"]633;E;2025-06-25 23:36:53 ls;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;Cgenerate_dataset.py __pycache__ sample_results train_dynamics.py train_tokenizer.py\r\ngenie.py README.md sandbox train_dynamics_single_batch.py train_tokenizer_single_batch.py\r\nLICENSE requirements_franz.txt sbatch_scripts train_lam.py utils\r\nlogs requirements.txt shell_scripts train_lam_single_batch.py wandb\r\nmodels sample.py single_batch.npy train_lam_tf_seeding.py\r\nnotes.md sample_resolution_batches.py slurm train_tokenizer_logging.py\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +11,81662,"TERMINAL",0,0,"ls",,terminal_command +12,81669,"TERMINAL",0,0,"]633;E;2025-06-25 23:36:54 ls;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;Cgenerate_dataset.py __pycache__ sample_results train_dynamics.py train_tokenizer.py\r\ngenie.py README.md sandbox train_dynamics_single_batch.py train_tokenizer_single_batch.py\r\nLICENSE requirements_franz.txt sbatch_scripts train_lam.py utils\r\nlogs requirements.txt shell_scripts train_lam_single_batch.py wandb\r\nmodels sample.py single_batch.npy train_lam_tf_seeding.py\r\nnotes.md sample_resolution_batches.py slurm train_tokenizer_logging.py\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +13,85480,"TERMINAL",0,0,"git clone git@github.com:p-doom/slurm.git",,terminal_command +14,85501,"TERMINAL",0,0,"]633;E;2025-06-25 23:36:58 git clone git@github.com:p-doom/slurm.git;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;Cfatal: destination path 'slurm' already exists and is not an empty directory.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;128",,terminal_output +15,89822,"TERMINAL",0,0,"cd slurm/",,terminal_command +16,89835,"TERMINAL",0,0,"]633;E;2025-06-25 23:37:03 cd slurm/;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +17,90268,"TERMINAL",0,0,"ls",,terminal_command +18,90276,"TERMINAL",0,0,"]633;E;2025-06-25 23:37:03 ls;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;Cdev jobs templates\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +19,93023,"TERMINAL",0,0,"cd ..",,terminal_command +20,96726,"TERMINAL",0,0,"mv slurm/ slurm_tmp",,terminal_command +21,96752,"TERMINAL",0,0,"]633;E;2025-06-25 23:37:09 mv slurm/ slurm_tmp;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar",,terminal_output +22,100198,"TERMINAL",0,0,"git clone git@github.com:p-doom/slurm.git",,terminal_command +23,100259,"TERMINAL",0,0,"]633;E;2025-06-25 23:37:13 git clone git@github.com:p-doom/slurm.git;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;CCloning into 'slurm'...\r\n",,terminal_output +24,101592,"TERMINAL",0,0,"warning: You appear to have cloned an empty repository.\r\n",,terminal_output +25,101653,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar",,terminal_output +26,123706,"TERMINAL",0,0,"cd slurm",,terminal_command +27,123710,"TERMINAL",0,0,"]633;E;2025-06-25 23:37:36 cd slurm;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +28,134443,"TERMINAL",0,0,"touch README.md",,terminal_command +29,134457,"TERMINAL",0,0,"]633;E;2025-06-25 23:37:47 touch README.md;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar/slurm",,terminal_output +30,140526,"slurm/README.md",0,0,"",markdown,tab +31,141038,"slurm/README.md",0,0,"# slurm-launchpad\n\nThis repository contains Slurm job scripts and tooling for ML development on the HPC cluster. Shared by Franz, Mihir, and Alfred.\n\n## Structure\n\n- `jobs/` — Stable job scripts ready for production\n- `dev/` — Individual folders for testing & dev scripts\n- `common/` — Shared setup scripts (e.g., module loads)\n- `templates/` — (Optional) Templates for sbatch generation\n- `utils/` — Helpers for launching jobs or analyzing logs\n\n## Conventions\n\n- Logs: `%x_%j.out` format\n- Promote dev → jobs/ once stable\n- Use `common/` for shared SBATCH headers and setup\n",markdown,content +32,141052,"slurm/README.md",0,0,"",markdown,selection_command +33,143784,"slurm/README.md",17,0,"",markdown,selection_command +34,144128,"slurm/README.md",16,1,"",markdown,content +35,144290,"slurm/README.md",15,1,"",markdown,content +36,144449,"slurm/README.md",14,1,"",markdown,content +37,144594,"slurm/README.md",13,1,"",markdown,content +38,144744,"slurm/README.md",12,1,"",markdown,content +39,144883,"slurm/README.md",11,1,"",markdown,content +40,145032,"slurm/README.md",10,1,"",markdown,content +41,146253,"slurm/README.md",9,1,"",markdown,content +42,146384,"slurm/README.md",8,1,"",markdown,content +43,146540,"slurm/README.md",7,1,"",markdown,content +44,147072,"slurm/README.md",7,0," ",markdown,content +45,147074,"slurm/README.md",8,0,"",markdown,selection_keyboard +46,147800,"slurm/README.md",7,0,"",markdown,selection_command +47,147980,"slurm/README.md",9,0,"",markdown,selection_command +48,148751,"slurm/README.md",7,0,"",markdown,selection_command +49,151881,"slurm/README.md",9,0,"",markdown,selection_command +50,152275,"slurm/README.md",17,0,"",markdown,selection_command +51,152523,"slurm/README.md",140,0,"",markdown,selection_command +52,152761,"slurm/README.md",148,0,"",markdown,selection_command +53,200642,"slurm/README.md",567,0,"",markdown,selection_mouse +54,205092,"TERMINAL",0,0,"mkdir utils",,terminal_command +55,205110,"TERMINAL",0,0,"]633;E;2025-06-25 23:38:58 mkdir utils;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +56,209411,"TERMINAL",0,0,"cd utils/",,terminal_command +57,209418,"TERMINAL",0,0,"]633;E;2025-06-25 23:39:02 cd utils/;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm/utils]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar/slurm/utils",,terminal_output +58,222068,"TERMINAL",0,0,"touch init_slurm_repo.sh",,terminal_command +59,222091,"TERMINAL",0,0,"]633;E;2025-06-25 23:39:15 touch init_slurm_repo.sh;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm/utils]633;D;0",,terminal_output +60,224062,"slurm/utils/init_slurm_repo.sh",0,0,"",shellscript,tab +61,224687,"slurm/utils/init_slurm_repo.sh",0,0,"init_slurm_repo.sh",shellscript,content +62,224696,"slurm/utils/init_slurm_repo.sh",17,0,"",shellscript,selection_command +63,228841,"slurm/utils/init_slurm_repo.sh",18,0,"\n",shellscript,content +64,229338,"slurm/utils/init_slurm_repo.sh",19,0,"#!/bin/bash\n\n# Name of the repo (change if needed)\nREPO_NAME=""slurm-launchpad""\n\n# Create the main structure\nmkdir -p $REPO_NAME/{jobs,common,templates,utils,logs}\nmkdir -p $REPO_NAME/dev/{franz,mihir,alfred}\n\n# Create README stubs\ncat > $REPO_NAME/README.md << 'EOF'\n# slurm-launchpad\n\nThis repository contains Slurm job scripts and tools for ML workflows on the HPC cluster.\n\n## Structure\n\n- `jobs/` — Stable, production-ready sbatch scripts\n- `dev/` — Individual folders for development or experimental jobs\n- `common/` — Shared setup code (env, sbatch headers)\n- `templates/` — Optional Jinja2 or shell templates for job generation\n- `utils/` — Helper scripts (e.g., run wrapper)\n- `logs/` — Optional log output directory\n\nTeam: Franz, Mihir, Alfred\nEOF\n\ncat > $REPO_NAME/dev/README.md << 'EOF'\n# dev/\n\nThis folder contains personal job scripts for development or debugging.\nEach team member has a separate subfolder.\n\nPromote useful scripts to `jobs/` after validation.\nEOF\n\ncat > $REPO_NAME/common/env_setup.sh << 'EOF'\n#!/bin/bash\n# Common environment setup for all jobs\n\nmodule load python/3.10\nsource ~/envs/ml/bin/activate\nEOF\nchmod +x $REPO_NAME/common/env_setup.sh\n\ncat > $REPO_NAME/common/defaults.sbatch.sh << 'EOF'\n#!/bin/bash\n# Common SBATCH directives (source this from your sbatch scripts)\n\n#SBATCH --ntasks=1\n#SBATCH --cpus-per-task=4\n#SBATCH --mem=16G\n#SBATCH --time=01:00:00\n#SBATCH --output=logs/%x_%j.out\nEOF\n\ncat > $REPO_NAME/utils/run_job.sh << 'EOF'\n#!/bin/bash\n# Run a job with a given sbatch file\n\nif [ -z ""$1"" ]; then\n echo ""Usage: ./run_job.sh ""\n exit 1\nfi\n\necho ""Launching job: $1""\nsbatch ""$1""\nEOF\nchmod +x $REPO_NAME/utils/run_job.sh\n\necho ""Slurm repo '$REPO_NAME' created!""\n",shellscript,content +65,229343,"slurm/utils/init_slurm_repo.sh",19,0,"",shellscript,selection_command +66,229608,"slurm/utils/init_slurm_repo.sh",0,0,"",shellscript,selection_command +67,229959,"slurm/utils/init_slurm_repo.sh",0,19,"",shellscript,content +68,230205,"slurm/utils/init_slurm_repo.sh",12,0,"",shellscript,selection_command +69,230390,"slurm/utils/init_slurm_repo.sh",13,0,"",shellscript,selection_command +70,230510,"slurm/utils/init_slurm_repo.sh",51,0,"",shellscript,selection_command +71,230801,"slurm/utils/init_slurm_repo.sh",60,0,"",shellscript,selection_command +72,231127,"slurm/utils/init_slurm_repo.sh",61,0,"",shellscript,selection_command +73,231376,"slurm/utils/init_slurm_repo.sh",62,0,"",shellscript,selection_command +74,231400,"slurm/utils/init_slurm_repo.sh",63,0,"",shellscript,selection_command +75,231432,"slurm/utils/init_slurm_repo.sh",64,0,"",shellscript,selection_command +76,231463,"slurm/utils/init_slurm_repo.sh",65,0,"",shellscript,selection_command +77,231509,"slurm/utils/init_slurm_repo.sh",66,0,"",shellscript,selection_command +78,231687,"slurm/utils/init_slurm_repo.sh",67,0,"",shellscript,selection_command +79,232040,"slurm/utils/init_slurm_repo.sh",67,1,"",shellscript,content +80,232632,"slurm/utils/init_slurm_repo.sh",67,9,"",shellscript,content +81,233176,"slurm/utils/init_slurm_repo.sh",69,0,"",shellscript,selection_command +82,233390,"slurm/utils/init_slurm_repo.sh",86,0,"",shellscript,selection_command +83,233647,"slurm/utils/init_slurm_repo.sh",114,0,"",shellscript,selection_command +84,233667,"slurm/utils/init_slurm_repo.sh",169,0,"",shellscript,selection_command +85,233697,"slurm/utils/init_slurm_repo.sh",198,0,"",shellscript,selection_command +86,233731,"slurm/utils/init_slurm_repo.sh",215,0,"",shellscript,selection_command +87,233765,"slurm/utils/init_slurm_repo.sh",237,0,"",shellscript,selection_command +88,233797,"slurm/utils/init_slurm_repo.sh",273,0,"",shellscript,selection_command +89,233847,"slurm/utils/init_slurm_repo.sh",275,0,"",shellscript,selection_command +90,233877,"slurm/utils/init_slurm_repo.sh",292,0,"",shellscript,selection_command +91,242609,"slurm/utils/init_slurm_repo.sh",366,0,"",shellscript,selection_command +92,242855,"slurm/utils/init_slurm_repo.sh",378,0,"",shellscript,selection_command +93,242883,"slurm/utils/init_slurm_repo.sh",380,0,"",shellscript,selection_command +94,242911,"slurm/utils/init_slurm_repo.sh",397,0,"",shellscript,selection_command +95,242943,"slurm/utils/init_slurm_repo.sh",449,0,"",shellscript,selection_command +96,242977,"slurm/utils/init_slurm_repo.sh",516,0,"",shellscript,selection_command +97,243081,"slurm/utils/init_slurm_repo.sh",570,0,"",shellscript,selection_command +98,243083,"slurm/utils/init_slurm_repo.sh",641,0,"",shellscript,selection_command +99,243086,"slurm/utils/init_slurm_repo.sh",689,0,"",shellscript,selection_command +100,243114,"slurm/utils/init_slurm_repo.sh",715,0,"",shellscript,selection_command +101,243147,"slurm/utils/init_slurm_repo.sh",732,0,"",shellscript,selection_command +102,243182,"slurm/utils/init_slurm_repo.sh",745,0,"",shellscript,selection_command +103,243214,"slurm/utils/init_slurm_repo.sh",747,0,"",shellscript,selection_command +104,243247,"slurm/utils/init_slurm_repo.sh",764,0,"",shellscript,selection_command +105,243285,"slurm/utils/init_slurm_repo.sh",793,0,"",shellscript,selection_command +106,243314,"slurm/utils/init_slurm_repo.sh",795,0,"",shellscript,selection_command +107,243349,"slurm/utils/init_slurm_repo.sh",812,0,"",shellscript,selection_command +108,243386,"slurm/utils/init_slurm_repo.sh",884,0,"",shellscript,selection_command +109,243414,"slurm/utils/init_slurm_repo.sh",911,0,"",shellscript,selection_command +110,243448,"slurm/utils/init_slurm_repo.sh",928,0,"",shellscript,selection_command +111,243481,"slurm/utils/init_slurm_repo.sh",966,0,"",shellscript,selection_command +112,243516,"slurm/utils/init_slurm_repo.sh",968,0,"",shellscript,selection_command +113,243547,"slurm/utils/init_slurm_repo.sh",985,0,"",shellscript,selection_command +114,243582,"slurm/utils/init_slurm_repo.sh",1025,0,"",shellscript,selection_command +115,243616,"slurm/utils/init_slurm_repo.sh",1043,0,"",shellscript,selection_command +116,243703,"slurm/utils/init_slurm_repo.sh",1025,0,"",shellscript,selection_command +117,243963,"slurm/utils/init_slurm_repo.sh",985,0,"",shellscript,selection_command +118,243969,"slurm/utils/init_slurm_repo.sh",968,0,"",shellscript,selection_command +119,243989,"slurm/utils/init_slurm_repo.sh",966,0,"",shellscript,selection_command +120,244022,"slurm/utils/init_slurm_repo.sh",928,0,"",shellscript,selection_command +121,244056,"slurm/utils/init_slurm_repo.sh",911,0,"",shellscript,selection_command +122,244090,"slurm/utils/init_slurm_repo.sh",884,0,"",shellscript,selection_command +123,244124,"slurm/utils/init_slurm_repo.sh",812,0,"",shellscript,selection_command +124,244158,"slurm/utils/init_slurm_repo.sh",795,0,"",shellscript,selection_command +125,244190,"slurm/utils/init_slurm_repo.sh",793,0,"",shellscript,selection_command +126,244223,"slurm/utils/init_slurm_repo.sh",764,0,"",shellscript,selection_command +127,244488,"slurm/utils/init_slurm_repo.sh",747,0,"",shellscript,selection_command +128,244672,"slurm/utils/init_slurm_repo.sh",745,0,"",shellscript,selection_command +129,245039,"slurm/utils/init_slurm_repo.sh",747,0,"",shellscript,selection_command +130,245554,"slurm/utils/init_slurm_repo.sh",764,0,"",shellscript,selection_command +131,245780,"slurm/utils/init_slurm_repo.sh",793,0,"",shellscript,selection_command +132,246003,"slurm/utils/init_slurm_repo.sh",795,0,"",shellscript,selection_command +133,252588,"slurm/utils/init_slurm_repo.sh",812,0,"",shellscript,selection_command +134,252748,"slurm/utils/init_slurm_repo.sh",884,0,"",shellscript,selection_command +135,252877,"slurm/utils/init_slurm_repo.sh",911,0,"",shellscript,selection_command +136,253258,"slurm/utils/init_slurm_repo.sh",928,0,"",shellscript,selection_command +137,253422,"slurm/utils/init_slurm_repo.sh",966,0,"",shellscript,selection_command +138,253580,"slurm/utils/init_slurm_repo.sh",968,0,"",shellscript,selection_command +139,253929,"slurm/utils/init_slurm_repo.sh",968,1,"\n",shellscript,selection_command +140,253993,"slurm/utils/init_slurm_repo.sh",964,4,"EOF\n",shellscript,selection_command +141,254261,"slurm/utils/init_slurm_repo.sh",912,56,"Promote useful scripts to `jobs/` after validation.\nEOF\n",shellscript,selection_command +142,254285,"slurm/utils/init_slurm_repo.sh",911,57,"\nPromote useful scripts to `jobs/` after validation.\nEOF\n",shellscript,selection_command +143,254309,"slurm/utils/init_slurm_repo.sh",868,100,"Each team member has a separate subfolder.\n\nPromote useful scripts to `jobs/` after validation.\nEOF\n",shellscript,selection_command +144,254345,"slurm/utils/init_slurm_repo.sh",796,172,"This folder contains personal job scripts for development or debugging.\nEach team member has a separate subfolder.\n\nPromote useful scripts to `jobs/` after validation.\nEOF\n",shellscript,selection_command +145,254373,"slurm/utils/init_slurm_repo.sh",795,173,"\nThis folder contains personal job scripts for development or debugging.\nEach team member has a separate subfolder.\n\nPromote useful scripts to `jobs/` after validation.\nEOF\n",shellscript,selection_command +146,254408,"slurm/utils/init_slurm_repo.sh",788,180,"# dev/\n\nThis folder contains personal job scripts for development or debugging.\nEach team member has a separate subfolder.\n\nPromote useful scripts to `jobs/` after validation.\nEOF\n",shellscript,selection_command +147,254681,"slurm/utils/init_slurm_repo.sh",748,220,"cat > $REPO_NAME/dev/README.md << 'EOF'\n# dev/\n\nThis folder contains personal job scripts for development or debugging.\nEach team member has a separate subfolder.\n\nPromote useful scripts to `jobs/` after validation.\nEOF\n",shellscript,selection_command +148,255420,"slurm/utils/init_slurm_repo.sh",748,221,"",shellscript,content +149,258439,"slurm/utils/init_slurm_repo.sh",794,0,"",shellscript,selection_command +150,258712,"slurm/utils/init_slurm_repo.sh",806,0,"",shellscript,selection_command +151,258715,"slurm/utils/init_slurm_repo.sh",846,0,"",shellscript,selection_command +152,258758,"slurm/utils/init_slurm_repo.sh",847,0,"",shellscript,selection_command +153,258780,"slurm/utils/init_slurm_repo.sh",871,0,"",shellscript,selection_command +154,258818,"slurm/utils/init_slurm_repo.sh",901,0,"",shellscript,selection_command +155,258846,"slurm/utils/init_slurm_repo.sh",905,0,"",shellscript,selection_command +156,258879,"slurm/utils/init_slurm_repo.sh",945,0,"",shellscript,selection_command +157,259992,"slurm/utils/init_slurm_repo.sh",946,0,"",shellscript,selection_command +158,260233,"slurm/utils/init_slurm_repo.sh",998,0,"",shellscript,selection_command +159,260258,"slurm/utils/init_slurm_repo.sh",1010,0,"",shellscript,selection_command +160,260291,"slurm/utils/init_slurm_repo.sh",1076,0,"",shellscript,selection_command +161,260322,"slurm/utils/init_slurm_repo.sh",1077,0,"",shellscript,selection_command +162,260358,"slurm/utils/init_slurm_repo.sh",1096,0,"",shellscript,selection_command +163,260393,"slurm/utils/init_slurm_repo.sh",1122,0,"",shellscript,selection_command +164,260426,"slurm/utils/init_slurm_repo.sh",1140,0,"",shellscript,selection_command +165,260460,"slurm/utils/init_slurm_repo.sh",1164,0,"",shellscript,selection_command +166,260499,"slurm/utils/init_slurm_repo.sh",1196,0,"",shellscript,selection_command +167,260532,"slurm/utils/init_slurm_repo.sh",1200,0,"",shellscript,selection_command +168,260565,"slurm/utils/init_slurm_repo.sh",1201,0,"",shellscript,selection_command +169,260599,"slurm/utils/init_slurm_repo.sh",1244,0,"",shellscript,selection_command +170,260633,"slurm/utils/init_slurm_repo.sh",1256,0,"",shellscript,selection_command +171,260665,"slurm/utils/init_slurm_repo.sh",1293,0,"",shellscript,selection_command +172,260698,"slurm/utils/init_slurm_repo.sh",1294,0,"",shellscript,selection_command +173,260759,"slurm/utils/init_slurm_repo.sh",1315,0,"",shellscript,selection_command +174,260765,"slurm/utils/init_slurm_repo.sh",1358,0,"",shellscript,selection_command +175,260798,"slurm/utils/init_slurm_repo.sh",1367,0,"",shellscript,selection_command +176,260849,"slurm/utils/init_slurm_repo.sh",1370,0,"",shellscript,selection_command +177,260867,"slurm/utils/init_slurm_repo.sh",1371,0,"",shellscript,selection_command +178,260898,"slurm/utils/init_slurm_repo.sh",1396,0,"",shellscript,selection_command +179,260932,"slurm/utils/init_slurm_repo.sh",1408,0,"",shellscript,selection_command +180,260966,"slurm/utils/init_slurm_repo.sh",1412,0,"",shellscript,selection_command +181,261006,"slurm/utils/init_slurm_repo.sh",1449,0,"",shellscript,selection_command +182,261034,"slurm/utils/init_slurm_repo.sh",1450,0,"",shellscript,selection_command +183,261067,"slurm/utils/init_slurm_repo.sh",1490,0,"",shellscript,selection_command +184,266504,"TERMINAL",0,0,"cd ..",,terminal_command +185,268319,"TERMINAL",0,0,"ls",,terminal_command +186,268340,"TERMINAL",0,0,"]633;E;2025-06-25 23:40:01 ls;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;CREADME.md utils\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +187,276816,"TERMINAL",0,0,"chmod +x utils/init_slurm_repo.sh",,terminal_command +188,276834,"TERMINAL",0,0,"]633;E;2025-06-25 23:40:10 chmod +x utils/init_slurm_repo.sh ;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar/slurm",,terminal_output +189,279238,"TERMINAL",0,0,"./utils/init_slurm_repo.sh",,terminal_command +190,279291,"TERMINAL",0,0,"]633;E;2025-06-25 23:40:12 ./utils/init_slurm_repo.sh ;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C",,terminal_output +191,279321,"TERMINAL",0,0,"Slurm repo 'slurm' created!\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar/slurm",,terminal_output +192,285323,"TERMINAL",0,0,"rm -rf slurm/",,terminal_command +193,285353,"TERMINAL",0,0,"]633;E;2025-06-25 23:40:18 rm -rf slurm/;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar/slurm",,terminal_output +194,286534,"TERMINAL",0,0,"cd ..",,terminal_command +195,286540,"TERMINAL",0,0,"]633;E;2025-06-25 23:40:19 cd ..;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +196,294617,"slurm/utils/init_slurm_repo.sh",0,0,"",shellscript,tab +197,295957,"slurm/utils/init_slurm_repo.sh",0,0,"",shellscript,selection_command +198,296408,"slurm/utils/init_slurm_repo.sh",12,0,"",shellscript,selection_command +199,296656,"slurm/utils/init_slurm_repo.sh",13,0,"",shellscript,selection_command +200,296680,"slurm/utils/init_slurm_repo.sh",51,0,"",shellscript,selection_command +201,296709,"slurm/utils/init_slurm_repo.sh",69,0,"",shellscript,selection_command +202,296740,"slurm/utils/init_slurm_repo.sh",70,0,"",shellscript,selection_command +203,296777,"slurm/utils/init_slurm_repo.sh",98,0,"",shellscript,selection_command +204,296810,"slurm/utils/init_slurm_repo.sh",153,0,"",shellscript,selection_command +205,297136,"slurm/utils/init_slurm_repo.sh",98,0,"",shellscript,selection_command +206,309612,"TERMINAL",0,0,"./slurm/utils/init_slurm_repo.sh",,terminal_command +207,309659,"TERMINAL",0,0,"]633;E;2025-06-25 23:40:42 ./slurm/utils/init_slurm_repo.sh ;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C",,terminal_output +208,309692,"TERMINAL",0,0,"Slurm repo 'slurm' created!\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +209,346485,"TERMINAL",0,0,"cp -r sbatch_scripts/* slurm/dev/alfred/",,terminal_command +210,346536,"TERMINAL",0,0,"]633;E;2025-06-25 23:41:19 cp -r sbatch_scripts/* slurm/dev/alfred/;2cc8e5b3-e23e-4b80-87ad-e16d22c022f8]633;C",,terminal_output +211,346735,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +212,351285,"slurm/common/defaults.sbatch.sh",0,0,"#!/bin/bash\n# Common SBATCH directives (source this from your sbatch scripts)\n\n#SBATCH --ntasks=1\n#SBATCH --cpus-per-task=4\n#SBATCH --mem=16G\n#SBATCH --time=01:00:00\n#SBATCH --output=logs/%x_%j.out\n",shellscript,tab +213,361602,"sbatch_scripts/procgen/data_gen_gym_coinrun.sh",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --time=01:30:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-pai00039\n#SBATCH --cpus-per-task=12\n#SBATCH --output=logs_data_gen/slurm_%j.log\n#SBATCH --error=logs_data_gen/slurm_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=data_gen_coinrun-test\n#SBATCH --mail-type=ALL\n\n\n# Log the sbatch script\ncat $0\n\nsource .venv/bin/activate\n\nnum_episodes=100000\noutput_dir=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/procgen/coinrun_episodes""\nmkdir -p $output_dir\n# name=""coinrun""\n\npython generate_dataset.py --num_episodes $num_episodes --output_dir ""$output_dir""\n\n# python generate_dataset.py --env_name ""$name"" --num_episodes $num_episodes --output_dir ""$output_dir""\n# python generate_dataset.py --env_name ""coinrun"" --num_episodes 1000 --output_dir ""/pfs/work8/workspace/ffhk/scratch/tum_ind3695-jafar_workspace/data/procgen""",shellscript,tab +214,365239,"sbatch_scripts/procgen/data_gen_gym_coinrun.sh",758,0,"",shellscript,selection_command +215,365438,"sbatch_scripts/procgen/data_gen_gym_coinrun.sh",654,0,"",shellscript,selection_command +216,365757,"sbatch_scripts/procgen/data_gen_gym_coinrun.sh",758,0,"",shellscript,selection_command +217,366346,"sbatch_scripts/procgen/data_gen_gym_coinrun.sh",653,264,"",shellscript,content +218,383285,"slurm/common/mp4_to_npy_open_ai.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=12:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_all\n#SBATCH --mail-type=ALL\n\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/""\n\nstart_time=$(date +%s) \npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n\n\n",shellscript,tab +219,399126,"slurm/common/preprocess_npy_to_tfrecord.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=12:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_all\n#SBATCH --mail-type=ALL\n\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/""\n\nstart_time=$(date +%s) \npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n\n\n",shellscript,tab +220,401987,"slurm/README.md",0,0,"",markdown,tab +221,403860,"slurm/README.md",296,0,"",markdown,selection_mouse +222,403865,"slurm/README.md",295,0,"",markdown,selection_command +223,411375,"slurm/common/env_setup.sh",0,0,"#!/bin/bash\n# Common environment setup for all jobs\n\nmodule load python/3.10\nsource ~/envs/ml/bin/activate\n",shellscript,tab +224,416149,"requirements_franz.txt",0,0,"absl-py==2.2.2\nannotated-types==0.7.0\nastunparse==1.6.3\ncertifi==2025.4.26\ncffi==1.17.1\ncharset-normalizer==3.4.2\nchex==0.1.89\nclick==8.2.1\ncloudpickle==3.1.1\ndm-pix==0.4.4\ndocker-pycreds==0.4.0\ndocstring-parser==0.16\neinops==0.8.1\netils==1.12.2\nfilelock==3.18.0\nflatbuffers==25.2.10\nflax==0.10.6\nfsspec==2025.5.0\ngast==0.6.0\ngitdb==4.0.12\ngitpython==3.1.44\nglcontext==3.0.0\nglfw==1.12.0\ngoogle-pasta==0.2.0\ngrpcio==1.71.0\ngym==0.26.2\ngym-notices==0.0.8\ngym3==0.3.3\nh5py==3.13.0\nhumanize==4.12.3\nidna==3.10\nimageio==2.37.0\nimageio-ffmpeg==0.3.0\nimportlib-resources==6.5.2\njax==0.6.1\njax-cuda12-pjrt==0.6.1\njax-cuda12-plugin==0.6.1\njaxlib==0.6.1\nkeras==3.10.0\nlibclang==18.1.1\nmarkdown==3.8\nmarkdown-it-py==3.0.0\nmarkupsafe==3.0.2\nmdurl==0.1.2\nml-dtypes==0.5.1\nmoderngl==5.12.0\nmsgpack==1.1.0\nnamex==0.0.9\nnest-asyncio==1.6.0\nnumpy==1.26.4\nnvidia-cublas-cu12==12.8.4.1\nnvidia-cuda-cupti-cu12==12.9.19\nnvidia-cuda-nvcc-cu12==12.9.41\nnvidia-cuda-runtime-cu12==12.9.37\nnvidia-cudnn-cu12==9.10.1.4\nnvidia-cufft-cu12==11.4.0.6\nnvidia-cusolver-cu12==11.7.4.40\nnvidia-cusparse-cu12==12.5.9.5\nnvidia-nccl-cu12==2.26.5\nnvidia-nvjitlink-cu12==12.9.41\nnvidia-nvshmem-cu12==3.2.5\nopt-einsum==3.4.0\noptax==0.2.4\noptree==0.15.0\norbax-checkpoint==0.11.13\npackaging==25.0\npillow==11.2.1\nplatformdirs==4.3.8\nprocgen==0.10.7\nprotobuf==5.29.4\npsutil==7.0.0\npycparser==2.22\npydantic==2.11.5\npydantic-core==2.33.2\npygments==2.19.1\npyyaml==6.0.2\nrequests==2.32.3\nrich==14.0.0\nscipy==1.15.3\nsentry-sdk==2.29.1\nsetproctitle==1.3.6\nsetuptools==80.8.0\nshtab==1.7.2\nsimplejson==3.20.1\nsix==1.17.0\nsmmap==5.0.2\ntensorboard==2.19.0\ntensorboard-data-server==0.7.2\ntensorflow==2.19.0\ntensorflow-io-gcs-filesystem==0.37.1\ntensorstore==0.1.75\ntermcolor==3.1.0\ntoolz==1.0.0\ntreescope==0.1.9\ntypeguard==4.4.2\ntyping-extensions==4.13.2\ntyping-inspection==0.4.1\ntyro==0.9.21\nurllib3==2.4.0\nwandb==0.19.11\nwerkzeug==3.1.3\nwheel==0.45.1\nwrapt==1.17.2\nzipp==3.21.0\nffmpeg-python==0.2.0\ntqdm==4.67.1\nipykernel\npre-commit",pip-requirements,tab +225,419658,"slurm/common/requirements_franz.txt",0,0,"absl-py==2.2.2\nannotated-types==0.7.0\nastunparse==1.6.3\ncertifi==2025.4.26\ncffi==1.17.1\ncharset-normalizer==3.4.2\nchex==0.1.89\nclick==8.2.1\ncloudpickle==3.1.1\ndm-pix==0.4.4\ndocker-pycreds==0.4.0\ndocstring-parser==0.16\neinops==0.8.1\netils==1.12.2\nfilelock==3.18.0\nflatbuffers==25.2.10\nflax==0.10.6\nfsspec==2025.5.0\ngast==0.6.0\ngitdb==4.0.12\ngitpython==3.1.44\nglcontext==3.0.0\nglfw==1.12.0\ngoogle-pasta==0.2.0\ngrpcio==1.71.0\ngym==0.26.2\ngym-notices==0.0.8\ngym3==0.3.3\nh5py==3.13.0\nhumanize==4.12.3\nidna==3.10\nimageio==2.37.0\nimageio-ffmpeg==0.3.0\nimportlib-resources==6.5.2\njax==0.6.1\njax-cuda12-pjrt==0.6.1\njax-cuda12-plugin==0.6.1\njaxlib==0.6.1\nkeras==3.10.0\nlibclang==18.1.1\nmarkdown==3.8\nmarkdown-it-py==3.0.0\nmarkupsafe==3.0.2\nmdurl==0.1.2\nml-dtypes==0.5.1\nmoderngl==5.12.0\nmsgpack==1.1.0\nnamex==0.0.9\nnest-asyncio==1.6.0\nnumpy==1.26.4\nnvidia-cublas-cu12==12.8.4.1\nnvidia-cuda-cupti-cu12==12.9.19\nnvidia-cuda-nvcc-cu12==12.9.41\nnvidia-cuda-runtime-cu12==12.9.37\nnvidia-cudnn-cu12==9.10.1.4\nnvidia-cufft-cu12==11.4.0.6\nnvidia-cusolver-cu12==11.7.4.40\nnvidia-cusparse-cu12==12.5.9.5\nnvidia-nccl-cu12==2.26.5\nnvidia-nvjitlink-cu12==12.9.41\nnvidia-nvshmem-cu12==3.2.5\nopt-einsum==3.4.0\noptax==0.2.4\noptree==0.15.0\norbax-checkpoint==0.11.13\npackaging==25.0\npillow==11.2.1\nplatformdirs==4.3.8\nprocgen==0.10.7\nprotobuf==5.29.4\npsutil==7.0.0\npycparser==2.22\npydantic==2.11.5\npydantic-core==2.33.2\npygments==2.19.1\npyyaml==6.0.2\nrequests==2.32.3\nrich==14.0.0\nscipy==1.15.3\nsentry-sdk==2.29.1\nsetproctitle==1.3.6\nsetuptools==80.8.0\nshtab==1.7.2\nsimplejson==3.20.1\nsix==1.17.0\nsmmap==5.0.2\ntensorboard==2.19.0\ntensorboard-data-server==0.7.2\ntensorflow==2.19.0\ntensorflow-io-gcs-filesystem==0.37.1\ntensorstore==0.1.75\ntermcolor==3.1.0\ntoolz==1.0.0\ntreescope==0.1.9\ntypeguard==4.4.2\ntyping-extensions==4.13.2\ntyping-inspection==0.4.1\ntyro==0.9.21\nurllib3==2.4.0\nwandb==0.19.11\nwerkzeug==3.1.3\nwheel==0.45.1\nwrapt==1.17.2\nzipp==3.21.0\nffmpeg-python==0.2.0\ntqdm==4.67.1\nipykernel\npre-commit",pip-requirements,tab +226,420502,"slurm/common/defaults.sbatch.sh",0,0,"",shellscript,tab +227,432680,"slurm/common/default_gpu.sbatch",0,0,"#!/bin/bash\n# Common SBATCH directives (source this from your sbatch scripts)\n\n#SBATCH --ntasks=1\n#SBATCH --cpus-per-task=4\n#SBATCH --mem=16G\n#SBATCH --time=01:00:00\n#SBATCH --output=logs/%x_%j.out\n",shellscript,tab +228,438839,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/tokenizer/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_tokenizer.py \\n --batch_size=192 \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=100 \\n --name $job_name_$slurm_job_id \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n",shellscript,tab +229,439814,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,1,"#",shellscript,selection_command +230,440028,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,21,"#!/usr/bin/env bash\n\n",shellscript,selection_command +231,440202,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,430,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n",shellscript,selection_command +232,440407,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,462,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\n",shellscript,selection_command +233,441641,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,455,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\nc",shellscript,selection_command +234,441838,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,431,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n#",shellscript,selection_command +235,442033,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,430,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n",shellscript,selection_command +236,442638,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,406,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#",shellscript,selection_command +237,443194,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,430,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n",shellscript,selection_command +238,443543,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,selection_command +239,444690,"slurm/common/default_gpu.sbatch",0,0,"",shellscript,tab +240,445748,"slurm/common/default_gpu.sbatch",198,0,"",shellscript,selection_command +241,446062,"slurm/common/default_gpu.sbatch",198,0,"\n",shellscript,content +242,446520,"slurm/common/default_gpu.sbatch",199,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n",shellscript,content +243,446526,"slurm/common/default_gpu.sbatch",199,0,"",shellscript,selection_command +244,446837,"slurm/common/default_gpu.sbatch",198,0,"",shellscript,selection_command +245,447450,"slurm/common/default_gpu.sbatch",198,1,"\n",shellscript,selection_command +246,447798,"slurm/common/default_gpu.sbatch",0,198,"#!/bin/bash\n# Common SBATCH directives (source this from your sbatch scripts)\n\n#SBATCH --ntasks=1\n#SBATCH --cpus-per-task=4\n#SBATCH --mem=16G\n#SBATCH --time=01:00:00\n#SBATCH --output=logs/%x_%j.out\n",shellscript,selection_command +247,448054,"slurm/common/default_gpu.sbatch",0,199,"",shellscript,content +248,452330,"slurm/common/default_gpu copy.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n",shellscript,tab +249,457439,"slurm/common/default_cpu.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n",shellscript,tab +250,462225,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_6xx\n#SBATCH --mail-type=ALL\n#!/usr/bin/env bash\n# Log the sbatch script\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/6xx/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_npy/6xx""\n\nstart_time=$(date +%s) \npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n\n\n",shellscript,tab +251,463390,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,0,"",shellscript,selection_command +252,463576,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,1,"#",shellscript,selection_command +253,464058,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,21,"#!/usr/bin/env bash\n\n",shellscript,selection_command +254,464677,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,418,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_6xx\n#SBATCH --mail-type=ALL\n#!/usr/bin/env bash\n# Log the sbatch script\ncat $0\n\n",shellscript,selection_command +255,465143,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,411,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_6xx\n#SBATCH --mail-type=ALL\n#!/usr/bin/env bash\n# Log the sbatch script\nc",shellscript,selection_command +256,465325,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,387,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_6xx\n#SBATCH --mail-type=ALL\n#!/usr/bin/env bash\n#",shellscript,selection_command +257,465493,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,367,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_6xx\n#SBATCH --mail-type=ALL\n#",shellscript,selection_command +258,466392,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,343,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_6xx\n#",shellscript,selection_command +259,466907,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,367,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_6xx\n#SBATCH --mail-type=ALL\n#",shellscript,selection_command +260,467194,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,0,"",shellscript,selection_command +261,467888,"slurm/common/default_cpu.sbatch",0,0,"",shellscript,tab +262,468861,"slurm/common/default_cpu.sbatch",430,0,"",shellscript,selection_command +263,469084,"slurm/common/default_cpu.sbatch",430,0,"\n",shellscript,content +264,469421,"slurm/common/default_cpu.sbatch",431,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_6xx\n#SBATCH --mail-type=ALL\n#",shellscript,content +265,469426,"slurm/common/default_cpu.sbatch",431,0,"",shellscript,selection_command +266,469673,"slurm/common/default_cpu.sbatch",430,0,"",shellscript,selection_command +267,469954,"slurm/common/default_cpu.sbatch",430,1,"\n",shellscript,selection_command +268,470329,"slurm/common/default_cpu.sbatch",0,430,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n",shellscript,selection_command +269,470729,"slurm/common/default_cpu.sbatch",0,431,"",shellscript,content +270,471458,"slurm/common/default_cpu.sbatch",20,0,"",shellscript,selection_command +271,471801,"slurm/common/default_cpu.sbatch",21,0,"",shellscript,selection_command +272,471856,"slurm/common/default_cpu.sbatch",39,0,"",shellscript,selection_command +273,471858,"slurm/common/default_cpu.sbatch",67,0,"",shellscript,selection_command +274,471860,"slurm/common/default_cpu.sbatch",91,0,"",shellscript,selection_command +275,471861,"slurm/common/default_cpu.sbatch",119,0,"",shellscript,selection_command +276,471864,"slurm/common/default_cpu.sbatch",157,0,"",shellscript,selection_command +277,471926,"slurm/common/default_cpu.sbatch",208,0,"",shellscript,selection_command +278,472137,"slurm/common/default_cpu.sbatch",258,0,"",shellscript,selection_command +279,472463,"slurm/common/default_cpu.sbatch",208,0,"",shellscript,selection_command +280,472667,"slurm/common/default_cpu.sbatch",157,0,"",shellscript,selection_command +281,472827,"slurm/common/default_cpu.sbatch",119,0,"",shellscript,selection_command +282,473365,"slurm/common/default_cpu.sbatch",157,0,"",shellscript,selection_command +283,473954,"slurm/common/default_cpu.sbatch",158,0,"",shellscript,selection_command +284,474151,"slurm/common/default_cpu.sbatch",165,0,"",shellscript,selection_command +285,474452,"slurm/common/default_cpu.sbatch",167,0,"",shellscript,selection_command +286,474704,"slurm/common/default_cpu.sbatch",173,0,"",shellscript,selection_command +287,474942,"slurm/common/default_cpu.sbatch",174,0,"",shellscript,selection_command +288,475283,"slurm/common/default_cpu.sbatch",178,0,"",shellscript,selection_command +289,475657,"slurm/common/default_cpu.sbatch",179,0,"",shellscript,selection_command +290,476230,"slurm/common/default_cpu.sbatch",179,18,"",shellscript,content +291,476651,"slurm/common/default_cpu.sbatch",179,1,"",shellscript,content +292,476860,"slurm/common/default_cpu.sbatch",211,0,"",shellscript,selection_command +293,477526,"slurm/common/default_cpu.sbatch",210,0,"",shellscript,selection_command +294,477747,"slurm/common/default_cpu.sbatch",210,18,"",shellscript,content +295,478203,"slurm/common/default_cpu.sbatch",210,1,"",shellscript,content +296,478653,"slurm/common/default_cpu.sbatch",178,0,"",shellscript,selection_command +297,478853,"slurm/common/default_cpu.sbatch",140,0,"",shellscript,selection_command +298,479093,"slurm/common/default_cpu.sbatch",112,0,"",shellscript,selection_command +299,479487,"slurm/common/default_cpu.sbatch",88,0,"",shellscript,selection_command +300,479928,"slurm/common/default_cpu.sbatch",87,0,"",shellscript,selection_command +301,480993,"slurm/common/default_cpu.sbatch",111,0,"",shellscript,selection_command +302,481254,"slurm/common/default_cpu.sbatch",139,0,"",shellscript,selection_command +303,481282,"slurm/common/default_cpu.sbatch",177,0,"",shellscript,selection_command +304,481307,"slurm/common/default_cpu.sbatch",209,0,"",shellscript,selection_command +305,481335,"slurm/common/default_cpu.sbatch",240,0,"",shellscript,selection_command +306,481370,"slurm/common/default_cpu.sbatch",283,0,"",shellscript,selection_command +307,481406,"slurm/common/default_cpu.sbatch",324,0,"",shellscript,selection_command +308,481463,"slurm/common/default_cpu.sbatch",328,0,"",shellscript,selection_command +309,481929,"slurm/common/default_cpu.sbatch",327,2,"",shellscript,content +310,481952,"slurm/common/default_cpu.sbatch",304,0,"",shellscript,selection_command +311,483774,"slurm/common/default_cpu.sbatch",263,0,"",shellscript,selection_command +312,485758,"slurm/common/default_cpu.sbatch",303,0,"",shellscript,selection_command +313,486806,"slurm/common/default_cpu.sbatch",327,0,"\n\nsource .venv/bin/activate\n\necho ""Hello, world!""",shellscript,content +314,486806,"slurm/common/default_cpu.sbatch",303,0,"cpu",shellscript,content +315,486807,"slurm/common/default_cpu.sbatch",300,3,"",shellscript,content +316,486807,"slurm/common/default_cpu.sbatch",299,0,"ult",shellscript,content +317,486807,"slurm/common/default_cpu.sbatch",298,1,"",shellscript,content +318,486807,"slurm/common/default_cpu.sbatch",297,0,"f",shellscript,content +319,486807,"slurm/common/default_cpu.sbatch",296,1,"",shellscript,content +320,486807,"slurm/common/default_cpu.sbatch",295,0,"d",shellscript,content +321,486807,"slurm/common/default_cpu.sbatch",282,13,"",shellscript,content +322,487779,"slurm/common/default_cpu.sbatch",292,0,"",shellscript,selection_command +323,487910,"slurm/common/default_cpu.sbatch",316,0,"",shellscript,selection_command +324,488079,"slurm/common/default_cpu.sbatch",318,0,"",shellscript,selection_command +325,488220,"slurm/common/default_cpu.sbatch",343,0,"",shellscript,selection_command +326,489071,"slurm/common/default_cpu.sbatch",319,27,"",shellscript,content +327,489682,"slurm/common/default_cpu.sbatch",318,21,"",shellscript,content +328,491165,"slurm/common/default_gpu.sbatch",0,0,"",shellscript,tab +329,492455,"slurm/common/default_gpu.sbatch",20,0,"",shellscript,selection_command +330,492703,"slurm/common/default_gpu.sbatch",21,0,"",shellscript,selection_command +331,492732,"slurm/common/default_gpu.sbatch",39,0,"",shellscript,selection_command +332,492759,"slurm/common/default_gpu.sbatch",67,0,"",shellscript,selection_command +333,492791,"slurm/common/default_gpu.sbatch",91,0,"",shellscript,selection_command +334,492826,"slurm/common/default_gpu.sbatch",123,0,"",shellscript,selection_command +335,492867,"slurm/common/default_gpu.sbatch",161,0,"",shellscript,selection_command +336,492893,"slurm/common/default_gpu.sbatch",187,0,"",shellscript,selection_command +337,492926,"slurm/common/default_gpu.sbatch",208,0,"",shellscript,selection_command +338,492959,"slurm/common/default_gpu.sbatch",264,0,"",shellscript,selection_command +339,492993,"slurm/common/default_gpu.sbatch",319,0,"",shellscript,selection_command +340,493025,"slurm/common/default_gpu.sbatch",362,0,"",shellscript,selection_command +341,494090,"slurm/common/default_gpu.sbatch",403,1,"",shellscript,content +342,494090,"slurm/common/default_gpu.sbatch",402,0,"gp",shellscript,content +343,494090,"slurm/common/default_gpu.sbatch",397,5,"",shellscript,content +344,494091,"slurm/common/default_gpu.sbatch",388,8,"",shellscript,content +345,494091,"slurm/common/default_gpu.sbatch",387,0,"ul",shellscript,content +346,494091,"slurm/common/default_gpu.sbatch",384,3,"",shellscript,content +347,494091,"slurm/common/default_gpu.sbatch",383,0,"def",shellscript,content +348,494091,"slurm/common/default_gpu.sbatch",381,2,"",shellscript,content +349,494672,"slurm/common/default_gpu.sbatch",319,0,"",shellscript,selection_command +350,494911,"slurm/common/default_gpu.sbatch",264,0,"",shellscript,selection_command +351,494949,"slurm/common/default_gpu.sbatch",208,0,"",shellscript,selection_command +352,494976,"slurm/common/default_gpu.sbatch",187,0,"",shellscript,selection_command +353,495009,"slurm/common/default_gpu.sbatch",161,0,"",shellscript,selection_command +354,495048,"slurm/common/default_gpu.sbatch",123,0,"",shellscript,selection_command +355,495076,"slurm/common/default_gpu.sbatch",91,0,"",shellscript,selection_command +356,495440,"slurm/common/default_gpu.sbatch",67,0,"",shellscript,selection_command +357,495778,"slurm/common/default_gpu.sbatch",39,0,"",shellscript,selection_command +358,495924,"slurm/common/default_gpu.sbatch",40,0,"",shellscript,selection_command +359,496103,"slurm/common/default_gpu.sbatch",68,0,"",shellscript,selection_command +360,496351,"slurm/common/default_gpu.sbatch",92,0,"",shellscript,selection_command +361,496407,"slurm/common/default_gpu.sbatch",93,0,"",shellscript,selection_command +362,496673,"slurm/common/default_gpu.sbatch",94,0,"",shellscript,selection_command +363,496698,"slurm/common/default_gpu.sbatch",95,0,"",shellscript,selection_command +364,496726,"slurm/common/default_gpu.sbatch",96,0,"",shellscript,selection_command +365,496764,"slurm/common/default_gpu.sbatch",97,0,"",shellscript,selection_command +366,496798,"slurm/common/default_gpu.sbatch",98,0,"",shellscript,selection_command +367,496831,"slurm/common/default_gpu.sbatch",99,0,"",shellscript,selection_command +368,496866,"slurm/common/default_gpu.sbatch",100,0,"",shellscript,selection_command +369,496898,"slurm/common/default_gpu.sbatch",101,0,"",shellscript,selection_command +370,496938,"slurm/common/default_gpu.sbatch",77,0,"",shellscript,selection_command +371,497172,"slurm/common/default_gpu.sbatch",78,0,"",shellscript,selection_command +372,497364,"slurm/common/default_gpu.sbatch",79,0,"",shellscript,selection_command +373,497525,"slurm/common/default_gpu.sbatch",80,0,"",shellscript,selection_command +374,497625,"slurm/common/default_gpu.sbatch",81,0,"",shellscript,selection_command +375,497763,"slurm/common/default_gpu.sbatch",82,0,"",shellscript,selection_command +376,498013,"slurm/common/default_gpu.sbatch",82,1,"",shellscript,content +377,498166,"slurm/common/default_gpu.sbatch",82,1,"",shellscript,content +378,498488,"slurm/common/default_gpu.sbatch",82,0,"1",shellscript,content +379,498489,"slurm/common/default_gpu.sbatch",83,0,"",shellscript,selection_keyboard +380,498866,"slurm/common/default_gpu.sbatch",82,0,"",shellscript,selection_command +381,499028,"slurm/common/default_gpu.sbatch",105,0,"",shellscript,selection_command +382,499178,"slurm/common/default_gpu.sbatch",82,0,"",shellscript,selection_command +383,499335,"slurm/common/default_gpu.sbatch",54,0,"",shellscript,selection_command +384,499675,"slurm/common/default_gpu.sbatch",66,0,"",shellscript,selection_command +385,499864,"slurm/common/default_gpu.sbatch",65,1,"",shellscript,content +386,500151,"slurm/common/default_gpu.sbatch",65,0,"1",shellscript,content +387,500151,"slurm/common/default_gpu.sbatch",66,0,"",shellscript,selection_keyboard +388,500349,"slurm/common/default_gpu.sbatch",65,0,"",shellscript,selection_command +389,500479,"slurm/common/default_gpu.sbatch",88,0,"",shellscript,selection_command +390,500654,"slurm/common/default_gpu.sbatch",116,0,"",shellscript,selection_command +391,500968,"slurm/common/default_gpu.sbatch",148,0,"",shellscript,selection_command +392,501250,"slurm/common/default_gpu.sbatch",184,0,"",shellscript,selection_command +393,501820,"slurm/common/default_gpu.sbatch",205,0,"",shellscript,selection_command +394,502864,"slurm/common/default_gpu.sbatch",283,24,"",shellscript,content +395,502864,"slurm/common/default_gpu.sbatch",229,24,"",shellscript,content +396,502865,"slurm/common/default_gpu.sbatch",206,0,"1",shellscript,content +397,502865,"slurm/common/default_gpu.sbatch",205,1,"",shellscript,content +398,502865,"slurm/common/default_gpu.sbatch",185,0,"1",shellscript,content +399,502865,"slurm/common/default_gpu.sbatch",184,1,"",shellscript,content +400,504104,"slurm/common/default_gpu.sbatch",233,0,"",shellscript,selection_command +401,504293,"slurm/common/default_gpu.sbatch",265,0,"",shellscript,selection_command +402,504437,"slurm/common/default_gpu.sbatch",296,0,"",shellscript,selection_command +403,504609,"slurm/common/default_gpu.sbatch",339,0,"",shellscript,selection_command +404,505225,"slurm/common/default_cpu.sbatch",0,0,"",shellscript,tab +405,507334,"slurm/common/env_setup.sh",0,0,"",shellscript,tab +406,511462,"slurm/common/default_cpu.sbatch",0,0,"",shellscript,tab +407,521773,"slurm/README.md",0,0,"",markdown,tab +408,524490,"slurm/README.md",165,0,"",markdown,selection_mouse +409,530636,"sbatch_scripts/preprocess/mp4_to_npy_open_ai.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=12:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_all\n#SBATCH --mail-type=ALL\n\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/""\n\nstart_time=$(date +%s) \npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n\n\n",shellscript,tab +410,538099,"slurm/jobs/mp4_to_npy_open_ai.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=12:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_all\n#SBATCH --mail-type=ALL\n\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/""\n\nstart_time=$(date +%s) \npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n\n\n",shellscript,tab +411,540354,"sbatch_scripts/train_lam/train_lam_full.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=16:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_ful_tfrecord\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/lam/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\nsrun python train_lam.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +412,543762,"slurm/jobs/train_lam_full.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=16:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_ful_tfrecord\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/lam/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\nsrun python train_lam.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +413,547102,"sbatch_scripts/train_tokenizer/train_tokenizer_knoms_overfit_tfrecord_full.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_knoms_overfit_tfrecord_full\n#SBATCH --mail-type=ALL\n\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=48 \\n --num_steps=300000 \\n --warmup_steps=10000 \\n --log_checkpoint_interval=500 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log_image_interval=100 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n\n",shellscript,tab +414,550767,"slurm/jobs/train_tokenizer_knoms_overfit_tfrecord_full.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_knoms_overfit_tfrecord_full\n#SBATCH --mail-type=ALL\n\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=48 \\n --num_steps=300000 \\n --warmup_steps=10000 \\n --log_checkpoint_interval=500 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log_image_interval=100 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n\n",shellscript,tab +415,553407,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_knoms_full\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/dyn/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\n\nlam_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/lam/3277318/lam_1750444032_10000'\ntokenizer_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/tokenizer/3273828/tokenizer_1750269881_15500'\n\nsrun python train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --lam_checkpoint $lam_checkpoint \\n --tokenizer_checkpoint $tokenizer_checkpoint \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +416,556406,"slurm/jobs/train_dyn_knoms_full.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_knoms_full\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/dyn/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\n\nlam_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/lam/3277318/lam_1750444032_10000'\ntokenizer_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/tokenizer/3273828/tokenizer_1750269881_15500'\n\nsrun python train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --lam_checkpoint $lam_checkpoint \\n --tokenizer_checkpoint $tokenizer_checkpoint \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +417,576441,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,0,"",shellscript,tab +418,580202,"slurm/jobs/mp4_to_npy_6xx.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_6xx\n#SBATCH --mail-type=ALL\n#!/usr/bin/env bash\n# Log the sbatch script\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/6xx/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_npy/6xx""\n\nstart_time=$(date +%s) \npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n\n\n",shellscript,tab +419,587669,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,0,"",shellscript,tab +420,604829,"sbatch_scripts/preprocess/npy_to_tfrecord_6xx.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=03:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=npy_to_tfrecord_6xx\n#SBATCH --mail-type=ALL\n#!/usr/bin/env bash\n# Log the sbatch script\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_npy/6xx/10fps_160x90""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_tfrecord/6xx""\n\nstart_time=$(date +%s) \npython utils/preprocess_dataset.py --source_data_dir $input_path --output_tfrecords_dir $output_path --num_shards 100\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n",shellscript,tab +421,606042,"sbatch_scripts/preprocess/npy_to_tfrecord_10xx.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=03:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=npy_to_tfrecord_10xx\n#SBATCH --mail-type=ALL\n#!/usr/bin/env bash\n# Log the sbatch script\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_npy/10xx/10fps_160x90""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_tfrecord/10xx""\n\nstart_time=$(date +%s) \npython utils/preprocess_dataset.py --source_data_dir $input_path --output_tfrecords_dir $output_path --num_shards 100\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n",shellscript,tab +422,632948,"sbatch_scripts/preprocess/npy_to_tfrecord_10xx copy.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=03:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=npy_to_tfrecord_10xx\n#SBATCH --mail-type=ALL\n#!/usr/bin/env bash\n# Log the sbatch script\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_npy/10xx/10fps_160x90""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_tfrecord/10xx""\n\nstart_time=$(date +%s) \npython utils/preprocess_dataset.py --source_data_dir $input_path --output_tfrecords_dir $output_path --num_shards 100\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n",shellscript,tab +423,633771,"sbatch_scripts/preprocess/npy_to_tfrecord_10xx.sbatch",0,0,"",shellscript,tab +424,634263,"sbatch_scripts/preprocess/npy_to_tfrecord_10xx copy.sbatch",0,0,"",shellscript,tab +425,640944,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=03:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=npy_to_tfrecord_10xx\n#SBATCH --mail-type=ALL\n#!/usr/bin/env bash\n# Log the sbatch script\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_npy/10xx/10fps_160x90""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_tfrecord/10xx""\n\nstart_time=$(date +%s) \npython utils/preprocess_dataset.py --source_data_dir $input_path --output_tfrecords_dir $output_path --num_shards 100\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n",shellscript,tab +426,645198,"sbatch_scripts/preprocess/mp4_to_npy_open_ai.sbatch",0,0,"",shellscript,tab +427,645837,"sbatch_scripts/preprocess/mp4_to_npy_open_ai.sbatch",500,0,"",shellscript,selection_mouse +428,645841,"sbatch_scripts/preprocess/mp4_to_npy_open_ai.sbatch",499,0,"",shellscript,selection_command +429,646355,"sbatch_scripts/preprocess/mp4_to_npy_open_ai.sbatch",592,0,"",shellscript,selection_command +430,648168,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",0,0,"",shellscript,tab +431,648638,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",20,0,"",shellscript,selection_command +432,648869,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",21,0,"",shellscript,selection_command +433,648896,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",39,0,"",shellscript,selection_command +434,648929,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",67,0,"",shellscript,selection_command +435,648962,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",91,0,"",shellscript,selection_command +436,648996,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",119,0,"",shellscript,selection_command +437,649029,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",157,0,"",shellscript,selection_command +438,649062,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",208,0,"",shellscript,selection_command +439,649108,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",258,0,"",shellscript,selection_command +440,649149,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",301,0,"",shellscript,selection_command +441,649182,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",341,0,"",shellscript,selection_command +442,649199,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",365,0,"",shellscript,selection_command +443,649231,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",385,0,"",shellscript,selection_command +444,649263,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",409,0,"",shellscript,selection_command +445,649297,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",416,0,"",shellscript,selection_command +446,649332,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",417,0,"",shellscript,selection_command +447,649363,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",449,0,"",shellscript,selection_command +448,649542,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",450,0,"",shellscript,selection_command +449,649723,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",574,0,"",shellscript,selection_command +450,649987,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",573,0,"\n",shellscript,content +451,650283,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",574,0,"\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/""",shellscript,content +452,650289,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",575,0,"",shellscript,selection_command +453,650489,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",574,0,"",shellscript,selection_command +454,650685,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",450,0,"",shellscript,selection_command +455,651365,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",460,0,"",shellscript,selection_command +456,651858,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",463,0,"",shellscript,selection_command +457,652323,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",462,0,"",shellscript,selection_command +458,653677,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",462,111,"",shellscript,content +459,653697,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",461,0,"",shellscript,selection_command +460,654294,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",450,13,"input_path=""",shellscript,content +461,654594,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",450,110,"input_path="" output_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/""",shellscript,content +462,654596,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",462,0,"",shellscript,selection_command +463,655150,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",462,1,"",shellscript,content +464,655418,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",462,11,"",shellscript,content +465,655870,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",462,3,"",shellscript,content +466,657068,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",462,0,"/",shellscript,content +467,657069,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",463,0,"",shellscript,selection_keyboard +468,657594,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",462,0,"",shellscript,selection_command +469,657833,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",546,0,"",shellscript,selection_command +470,658196,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",545,0,"",shellscript,selection_command +471,659767,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",545,0,"1",shellscript,content +472,659768,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",546,0,"",shellscript,selection_keyboard +473,659795,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",546,0,"0",shellscript,content +474,659796,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",547,0,"",shellscript,selection_keyboard +475,661102,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",547,0,"fps_160x90",shellscript,content +476,661385,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",556,0,"",shellscript,selection_command +477,661674,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",665,0,"",shellscript,selection_command +478,662574,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",674,0,"90",shellscript,content +479,662575,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",673,0,"fps_160",shellscript,content +480,662575,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",672,1,"",shellscript,content +481,662575,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",651,10,"",shellscript,content +482,664189,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",659,0,"",shellscript,selection_command +483,664521,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",660,0,"",shellscript,selection_command +484,664923,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",660,12,"",shellscript,content +485,665752,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",551,0,"",shellscript,selection_command +486,666558,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",557,0,"",shellscript,selection_command +487,667825,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",557,0,"/",shellscript,content +488,667826,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",558,0,"",shellscript,selection_keyboard +489,668290,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",557,0,"",shellscript,selection_command +490,668490,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",661,0,"",shellscript,selection_command +491,668696,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",663,0,"",shellscript,selection_command +492,668995,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",687,0,"",shellscript,selection_command +493,669197,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",796,0,"",shellscript,selection_command +494,672261,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",806,0,"",shellscript,selection_command +495,672637,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",805,1,"",shellscript,content +496,672803,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",804,1,"",shellscript,content +497,672992,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",803,1,"",shellscript,content +498,673555,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",803,0,"5",shellscript,content +499,673556,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",804,0,"",shellscript,selection_keyboard +500,673643,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",804,0,"0",shellscript,content +501,673643,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",805,0,"",shellscript,selection_keyboard +502,673967,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",804,1,"",shellscript,content +503,674113,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",803,1,"",shellscript,content +504,674815,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",803,0,"5",shellscript,content +505,674816,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",804,0,"",shellscript,selection_keyboard +506,674946,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",804,0,"0",shellscript,content +507,674947,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",805,0,"",shellscript,selection_keyboard +508,675137,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",805,0,"0",shellscript,content +509,675138,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",806,0,"",shellscript,selection_keyboard +510,675691,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",805,0,"",shellscript,selection_command +511,675969,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",687,0,"",shellscript,selection_command +512,676219,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",663,0,"",shellscript,selection_command +513,676250,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",661,0,"",shellscript,selection_command +514,676280,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",558,0,"",shellscript,selection_command +515,676309,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",449,0,"",shellscript,selection_command +516,676346,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",447,0,"",shellscript,selection_command +517,676397,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",416,0,"",shellscript,selection_command +518,676424,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",414,0,"",shellscript,selection_command +519,676675,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",407,0,"",shellscript,selection_command +520,676825,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",383,0,"",shellscript,selection_command +521,676966,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",363,0,"",shellscript,selection_command +522,677135,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",339,0,"",shellscript,selection_command +523,677780,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",340,0,"open_ai",shellscript,content +524,677781,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",336,4,"",shellscript,content +525,678218,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",293,0,"",shellscript,selection_command +526,678471,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",243,0,"",shellscript,selection_command +527,678500,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",192,0,"",shellscript,selection_command +528,678527,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",154,0,"",shellscript,selection_command +529,678623,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",117,0,"",shellscript,selection_command +530,678625,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",89,0,"",shellscript,selection_command +531,679420,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",88,0,"",shellscript,selection_command +532,679669,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",87,0,"",shellscript,selection_command +533,679699,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",86,0,"",shellscript,selection_command +534,679733,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",85,0,"",shellscript,selection_command +535,679759,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",84,0,"",shellscript,selection_command +536,679910,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",83,0,"",shellscript,selection_command +537,680237,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",82,0,"",shellscript,selection_command +538,680410,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",82,1,"",shellscript,content +539,680537,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",82,1,"",shellscript,content +540,681165,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",82,0,"1",shellscript,content +541,681166,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",83,0,"",shellscript,selection_keyboard +542,681234,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",83,0,"2",shellscript,content +543,681235,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",84,0,"",shellscript,selection_keyboard +544,682000,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",83,0,"",shellscript,selection_command +545,682368,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",107,0,"",shellscript,selection_command +546,682554,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",135,0,"",shellscript,selection_command +547,682710,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",173,0,"",shellscript,selection_command +548,683746,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",224,0,"",shellscript,selection_command +549,683937,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",274,0,"",shellscript,selection_command +550,684466,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",317,0,"",shellscript,selection_command +551,684772,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",360,0,"",shellscript,selection_command +552,685186,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",384,0,"",shellscript,selection_command +553,687595,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",368,20,"",shellscript,content +554,687861,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",367,0,"\n",shellscript,content +555,688272,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",369,0,"",shellscript,selection_command +556,688470,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",393,0,"",shellscript,selection_command +557,688641,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",400,0,"",shellscript,selection_command +558,688808,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",401,0,"",shellscript,selection_command +559,689001,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",433,0,"",shellscript,selection_command +560,691012,"TERMINAL",0,0,"bash",,terminal_focus +561,700757,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",495,0,"",shellscript,selection_mouse +562,718528,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",543,0,"\n",shellscript,content +563,718848,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",544,0,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/10fps_160x90",shellscript,content +564,718853,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",638,0,"",shellscript,selection_command +565,719261,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",528,0,"",shellscript,selection_command +566,719921,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",434,0,"",shellscript,selection_command +567,720357,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",444,0,"",shellscript,selection_command +568,720770,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",447,0,"",shellscript,selection_command +569,721200,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",446,0,"",shellscript,selection_command +570,721504,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",446,97,"",shellscript,content +571,721510,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",445,0,"",shellscript,selection_command +572,721751,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",434,108,"input_path="" /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/10fps_160x90",shellscript,content +573,721766,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",446,0,"",shellscript,selection_command +574,722317,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",446,1,"",shellscript,content +575,723358,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",541,0,"""",shellscript,content +576,723359,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",542,0,"",shellscript,selection_command +577,723756,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",541,0,"",shellscript,selection_command +578,723887,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",644,0,"",shellscript,selection_command +579,724085,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",646,0,"",shellscript,selection_command +580,724234,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",670,0,"",shellscript,selection_command +581,724365,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",780,0,"",shellscript,selection_command +582,724568,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",809,0,"",shellscript,selection_command +583,724727,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",863,0,"",shellscript,selection_command +584,724889,"sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",865,0,"",shellscript,selection_command +585,727836,"TERMINAL",0,0,"undefined(.venv_jafar) [tum_ind3695@hkn1993 jafar]$ sbatch sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch",,terminal_command +586,727874,"TERMINAL",0,0,"]633;E;2025-06-25 23:47:41 sbatch sbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;CSubmitted batch job 3293311\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +587,731966,"slurm/jobs/mp4_to_npy_open_ai.sbatch",0,0,"",shellscript,tab +588,734127,"slurm/jobs/npy_to_tfrecord_open_ai.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=12:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=npy_to_tfrecord_open_ai\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/10fps_160x90""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_tfrecord/""\n\nstart_time=$(date +%s) \npython utils/preprocess_dataset.py --source_data_dir $input_path --output_tfrecords_dir $output_path --num_shards 500\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n",shellscript,tab +589,735512,"slurm/jobs/mp4_to_npy_open_ai.sbatch",0,0,"",shellscript,tab +590,748777,"slurm/jobs/train_dyn_knoms_full.sbatch",0,0,"",shellscript,tab +591,753436,"slurm/jobs/train_dyn_knoms.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_knoms_full\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/dyn/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\n\nlam_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/lam/3277318/lam_1750444032_10000'\ntokenizer_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/tokenizer/3273828/tokenizer_1750269881_15500'\n\nsrun python train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --lam_checkpoint $lam_checkpoint \\n --tokenizer_checkpoint $tokenizer_checkpoint \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +592,754581,"slurm/jobs/train_dyn_knoms.sbatch",20,0,"",shellscript,selection_command +593,759137,"slurm/jobs/train_dyn_knoms.sbatch",21,0,"",shellscript,selection_command +594,759397,"slurm/jobs/train_dyn_knoms.sbatch",39,0,"",shellscript,selection_command +595,770231,"slurm/jobs/train_lam_knoms.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=16:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_ful_tfrecord\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/lam/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\nsrun python train_lam.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +596,794717,"slurm/dev/franz/placeholder",0,0,"",plaintext,tab +597,799369,"slurm/dev/mihir/placeholder",0,0,"",plaintext,tab +598,808466,"slurm/jobs/mp4_to_npy_open_ai.sbatch",0,0,"",shellscript,tab +599,820896,"slurm/jobs/alfred/mp4_to_npy_open_ai.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=12:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_all\n#SBATCH --mail-type=ALL\n\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/""\n\nstart_time=$(date +%s) \npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n\n\n",shellscript,tab +600,848026,"slurm/jobs/alfred/preproc_mp4_to_npy_open_ai.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=12:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=mp4_to_npy_openai_all\n#SBATCH --mail-type=ALL\n\ncat $0\n\nsource .venv_jafar/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/""\n\nstart_time=$(date +%s) \npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n\n\n",shellscript,tab +601,863970,"slurm/jobs/mihir/placeholder",0,0,"",plaintext,tab +602,871645,"slurm/jobs/franz/placeholder",0,0,"",plaintext,tab +603,886307,"slurm/common/default_cpu.sbatch",0,0,"",shellscript,tab +604,889305,"slurm/templates/default_cpu.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/%x_%j.log\n#SBATCH --error=logs/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=default_cpu\n#SBATCH --mail-type=ALL\n",shellscript,tab +605,889785,"slurm/common/default_gpu.sbatch",0,0,"",shellscript,tab +606,891605,"slurm/templates/default_gpu.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=1:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=1\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/%x_%j.log\n#SBATCH --error=logs/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=default_gpu\n#SBATCH --mail-type=ALL\n\n",shellscript,tab +607,891981,"slurm/common/default_cpu.sbatch",0,0,"",shellscript,tab +608,895020,"slurm/templates/default_gpu.sbatch",0,0,"",shellscript,tab +609,896054,"slurm/README.md",0,0,"",markdown,tab +610,901647,"slurm/README.md",296,0,"",markdown,selection_mouse +611,901651,"slurm/README.md",295,0,"",markdown,selection_command +612,902998,"slurm/README.md",243,54,"",markdown,content +613,903068,"slurm/README.md",176,0,"",markdown,selection_command +614,903240,"slurm/README.md",124,0,"",markdown,selection_command +615,903649,"slurm/README.md",124,0,"- `common/` — Shared setup code (env, sbatch headers)\n",markdown,content +616,903654,"slurm/README.md",124,0,"",markdown,selection_command +617,905023,"slurm/README.md",178,0,"",markdown,selection_command +618,905252,"slurm/README.md",230,0,"",markdown,selection_command +619,905624,"slurm/README.md",230,67,"",markdown,content +620,905748,"slurm/README.md",178,0,"",markdown,selection_command +621,906070,"slurm/README.md",178,0,"- `dev/` — Individual folders for development or experimental jobs\n",markdown,content +622,906075,"slurm/README.md",178,0,"",markdown,selection_command +623,908355,"slurm/README.md",245,0,"",markdown,selection_command +624,910904,"slurm/README.md",297,0,"",markdown,selection_command +625,915414,"slurm/README.md",368,0,"",markdown,selection_command +626,918239,"slurm/utils/run_job.sh",0,0,"#!/bin/bash\n# Run a job with a given sbatch file\n\nif [ -z ""$1"" ]; then\n echo ""Usage: ./run_job.sh ""\n exit 1\nfi\n\necho ""Launching job: $1""\nsbatch ""$1""\n",shellscript,tab +627,926127,"slurm/README.md",0,0,"",markdown,tab +628,927577,"slurm/README.md",415,0,"",markdown,selection_mouse +629,927580,"slurm/README.md",414,0,"",markdown,selection_command +630,928572,"slurm/README.md",407,0,"",markdown,selection_command +631,928792,"slurm/README.md",403,0,"",markdown,selection_command +632,928920,"slurm/README.md",400,0,"",markdown,selection_command +633,929092,"slurm/README.md",399,0,"",markdown,selection_command +634,929471,"slurm/README.md",398,0,"",markdown,selection_command +635,929644,"slurm/README.md",397,0,"",markdown,selection_command +636,929808,"slurm/README.md",396,0,"",markdown,selection_command +637,930183,"slurm/README.md",396,19,"",markdown,content +638,930192,"slurm/README.md",395,0,"",markdown,selection_command +639,931008,"slurm/README.md",395,1,"",markdown,content +640,931012,"slurm/README.md",394,0,"",markdown,selection_command +641,934935,"shell_scripts/copy_project_files.sh",0,0,"#!/bin/bash\n\nsrc_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar/*\ndst_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/\nexclude_file=./shell_scripts/exclude.txt\n\nrsync -av --progress --exclude-from=$exclude_file $src_dir $dst_dir\n",shellscript,tab +642,939414,"slurm/utils/copy_project_files.sh",0,0,"#!/bin/bash\n\nsrc_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar/*\ndst_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/\nexclude_file=./shell_scripts/exclude.txt\n\nrsync -av --progress --exclude-from=$exclude_file $src_dir $dst_dir\n",shellscript,tab +643,941249,"slurm/utils/copy_project_files.sh",141,0,"",shellscript,selection_mouse +644,941251,"slurm/utils/copy_project_files.sh",140,0,"",shellscript,selection_command +645,944797,"shell_scripts/exclude.txt",0,0,".venv_jafar\nwandb\nlogs\n.git\n",plaintext,tab +646,947221,"slurm/utils/exclude.txt",0,0,".venv_jafar\nwandb\nlogs\n.git\n",plaintext,tab +647,948634,"slurm/utils/copy_project_files.sh",0,0,"",shellscript,tab +648,955165,"slurm/utils/create_dev_dir.sh",0,0,"#!/bin/bash\n\nsrc_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar/*\ndst_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/\nexclude_file=./shell_scripts/exclude.txt\n\nrsync -av --progress --exclude-from=$exclude_file $src_dir $dst_dir\n",shellscript,tab +649,960714,"shell_scripts/save_scripts.sh",0,0,"dst=/home/hk-project-pai00039/tum_ind3695/projects/arch_config_files/cluster_scripts/horeka_cluster/jafar_scripts\n\ncp -r shell_scripts $dst\ncp -r sbatch_scripts $dst\n",shellscript,tab +650,962691,"slurm/utils/create_dev_dir.sh",0,0,"",shellscript,tab +651,968322,"slurm/utils/create_dev_dir.sh",253,0,"",shellscript,selection_mouse +652,979108,"slurm/README.md",0,0,"",markdown,tab +653,980833,"slurm/README.md",437,0,"",markdown,selection_mouse +654,980837,"slurm/README.md",436,0,"",markdown,selection_command +655,981684,"slurm/README.md",396,42,"",markdown,content +656,989844,"slurm/README.md",424,0,"",markdown,selection_mouse +657,993357,"TERMINAL",0,0,"cd slurm",,terminal_command +658,993375,"TERMINAL",0,0,"]633;E;2025-06-25 23:52:06 cd slurm;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +659,993841,"TERMINAL",0,0,"ls",,terminal_command +660,993873,"TERMINAL",0,0,"]633;E;2025-06-25 23:52:07 ls;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;Ccommon dev jobs README.md templates utils\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +661,995639,"TERMINAL",0,0,"gs",,terminal_command +662,995678,"TERMINAL",0,0,"]633;E;2025-06-25 23:52:08 gs;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;COn branch main\r\n\r\nNo commits yet\r\n\r\nUntracked files:\r\n (use ""git add ..."" to include in what will be committed)\r\n\tREADME.md\r\n\tcommon/\r\n\tdev/\r\n\tjobs/\r\n\ttemplates/\r\n\tutils/\r\n\r\nnothing added to commit but untracked files present (use ""git add"" to track)\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +663,1006621,"TERMINAL",0,0,"git add README.md common/ dev/ jobs/ templates/ utils/",,terminal_command +664,1006672,"TERMINAL",0,0,"]633;E;2025-06-25 23:52:19 git add README.md common/ dev/ jobs/ templates/ utils/;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C",,terminal_output +665,1007009,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +666,1008967,"TERMINAL",0,0,"cursor .",,terminal_command +667,1009017,"TERMINAL",0,0,"]633;E;2025-06-25 23:52:22 cursor .;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C",,terminal_output +668,1009235,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +669,1191851,"slurm/templates/default_cpu.sbatch",0,0,"",shellscript,tab +670,1204046,"slurm/templates/horeka_cpu.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/%x_%j.log\n#SBATCH --error=logs/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=default_cpu\n#SBATCH --mail-type=ALL\n",shellscript,tab +671,1205537,"slurm/templates/default_gpu.sbatch",0,0,"",shellscript,tab +672,1209621,"slurm/templates/horeka_gpu.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=1:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=1\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/%x_%j.log\n#SBATCH --error=logs/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=default_gpu\n#SBATCH --mail-type=ALL\n\n",shellscript,tab +673,1210738,"TERMINAL",0,0,"gs",,terminal_command +674,1210781,"TERMINAL",0,0,"]633;E;2025-06-25 23:55:43 gs;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;COn branch main\r\nYour branch is up to date with 'origin/main'.\r\n\r\nChanges not staged for commit:\r\n (use ""git add/rm ..."" to update what will be committed)\r\n (use ""git restore ..."" to discard changes in working directory)\r\n\tdeleted: templates/default_cpu.sbatch\r\n\tdeleted: templates/default_gpu.sbatch\r\n\r\nUntracked files:\r\n (use ""git add ..."" to include in what will be committed)\r\n\ttemplates/horeka_cpu.sbatch\r\n\ttemplates/horeka_gpu.sbatch\r\n\r\nno changes added to commit (use ""git add"" and/or ""git commit -a"")\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +675,1228531,"TERMINAL",0,0,"git commit -am 'update: file name for templates'",,terminal_command +676,1228583,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:01 git commit -am 'update: file name for templates';d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C[main d7f7056] update: file name for templates\r\n 2 files changed, 27 deletions(-)\r\n delete mode 100644 templates/default_cpu.sbatch\r\n delete mode 100644 templates/default_gpu.sbatch\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +677,1229732,"TERMINAL",0,0,"git push",,terminal_command +678,1229824,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:02 git push;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C",,terminal_output +679,1231029,"TERMINAL",0,0,"To github.com:p-doom/slurm.git\r\n ! [rejected]  main -> main (fetch first)\r\nerror: failed to push some refs to 'github.com:p-doom/slurm.git'\r\nhint: Updates were rejected because the remote contains work that you do not\r\nhint: have locally. This is usually caused by another repository pushing to\r\nhint: the same ref. If you want to integrate the remote changes, use\r\nhint: 'git pull' before pushing again.\r\nhint: See the 'Note about fast-forwards' in 'git push --help' for details.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;1",,terminal_output +680,1236003,"TERMINAL",0,0,"git pull",,terminal_command +681,1236050,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:09 git pull;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C",,terminal_output +682,1237407,"TERMINAL",0,0,"remote: Enumerating objects: 5, done.\r\nremote: Counting objects: 20% (1/5)\rremote: Counting objects: 40% (2/5)\rremote: Counting objects: 60% (3/5)\rremote: Counting objects: 80% (4/5)\rremote: Counting objects: 100% (5/5)\rremote: Counting objects: 100% (5/5), done.\r\nremote: Compressing objects: 33% (1/3)\rremote: Compressing objects: 66% (2/3)\rremote: Compressing objects: 100% (3/3)\rremote: Compressing objects: 100% (3/3), done.\r\nremote: Total 3 (delta 2), reused 0 (delta 0), pack-reused 0 (from 0)\r\nUnpacking objects: 33% (1/3)\rUnpacking objects: 66% (2/3)\rUnpacking objects: 100% (3/3)\rUnpacking objects: 100% (3/3), 963 bytes | 240.00 KiB/s, done.\r\n",,terminal_output +683,1237470,"TERMINAL",0,0,"From github.com:p-doom/slurm\r\n cf1d4b3..8de03a3 main -> origin/main\r\nhint: You have divergent branches and need to specify how to reconcile them.\r\nhint: You can do so by running one of the following commands sometime before\r\nhint: your next pull:\r\nhint: \r\nhint: git config pull.rebase false # merge\r\nhint: git config pull.rebase true # rebase\r\nhint: git config pull.ff only # fast-forward only\r\nhint: \r\nhint: You can replace ""git config"" with ""git config --global"" to set a default\r\nhint: preference for all repositories. You can also pass --rebase, --no-rebase,\r\nhint: or --ff-only on the command line to override the configured default per\r\nhint: invocation.\r\nfatal: Need to specify how to reconcile divergent branches.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;128",,terminal_output +684,1243370,"TERMINAL",0,0,"git config pull.rebase false",,terminal_command +685,1243407,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:16 git config pull.rebase false;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar/slurm",,terminal_output +686,1245387,"TERMINAL",0,0,"git pull",,terminal_command +687,1245438,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:18 git pull;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C",,terminal_output +688,1247034,"TERMINAL",0,0,"hint: Waiting for your editor to close the file... [?1049h[>4;2m[?1h=[?2004h[?1004h[?12h[?12l[?25l""~/projects/jafar/slurm/.git/MERGE_MSG"" 6L, 273B▽ Pzz\[0%m [>c]10;?]11;?Merge branch 'main' of github.com:p-doom/slurm\r\n# Please enter a commit message to explain why this merge is necessary,# especially if it merges an updated upstream into a topic branch.#\r\n# Lines starting with '#' will be ignored, and an empty message aborts\r\n# the commit.\r\n~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?12$p[?25l/cccc/cccc [?25h[?25l/2828/3030 Merge branch 'main' of github.com:p-doom/slurm\r\n# Please enter a commit message to explain why this merge is necessary,\r\n# especially if it merges an updated upstream into a topic branch.\r\n#\r\n# Lines starting with '#' will be ignored, and an empty message aborts\r\n# the commit.\r\n~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All\r""~/projects/jafar/slurm/.git/MERGE_MSG"" 6L, 273B[?25h",,terminal_output +689,1247814,"TERMINAL",0,0,"[?25l^[",,terminal_output +690,1247918,"TERMINAL",0,0," ^[ [?25h",,terminal_output +691,1248081,"TERMINAL",0,0,"[?25l::[?25h",,terminal_output +692,1248227,"TERMINAL",0,0,"w",,terminal_output +693,1248309,"TERMINAL",0,0,"q",,terminal_output +694,1248451,"TERMINAL",0,0,"\r[?25l[?2004l[>4;m"".git/MERGE_MSG"" 6L, 273B written\r\r\r\n[?1004l[?2004l[?1l>[?25h[>4;m[?1049l\rMerge made by the 'ort' strategy.\r\n README.md | 2 +-\r\n 1 file changed, 1 insertion(+), 1 deletion(-)\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +695,1250421,"TERMINAL",0,0,"git pull",,terminal_command +696,1250473,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:23 git pull;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C",,terminal_output +697,1251839,"TERMINAL",0,0,"Already up to date.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +698,1257215,"TERMINAL",0,0,"git commit -am 'update: file name for templates'",,terminal_command +699,1257248,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:30 git commit -am 'update: file name for templates';d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;COn branch main\r\nYour branch is ahead of 'origin/main' by 2 commits.\r\n (use ""git push"" to publish your local commits)\r\n\r\nUntracked files:\r\n (use ""git add ..."" to include in what will be committed)\r\n\ttemplates/\r\n\r\nnothing added to commit but untracked files present (use ""git add"" to track)\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;1",,terminal_output +700,1264137,"TERMINAL",0,0,"git add templates/",,terminal_command +701,1264153,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:37 git add templates/;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +702,1268016,"TERMINAL",0,0,"git commit -am 'update: file name for templates'",,terminal_command +703,1268072,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:41 git commit -am 'update: file name for templates';d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C[main 0dedd42] update: file name for templates\r\n 2 files changed, 27 insertions(+)\r\n create mode 100644 templates/horeka_cpu.sbatch\r\n create mode 100644 templates/horeka_gpu.sbatch\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +704,1269616,"TERMINAL",0,0,"git push",,terminal_command +705,1269668,"TERMINAL",0,0,"]633;E;2025-06-25 23:56:42 git push;d88cceeb-fc11-4d23-b2ae-87255fb4682e]633;C",,terminal_output +706,1270884,"TERMINAL",0,0,"Enumerating objects: 11, done.\r\nCounting objects: 10% (1/10)\rCounting objects: 20% (2/10)\rCounting objects: 30% (3/10)\rCounting objects: 40% (4/10)\rCounting objects: 50% (5/10)\rCounting objects: 60% (6/10)\rCounting objects: 70% (7/10)\rCounting objects: 80% (8/10)\rCounting objects: 90% (9/10)\rCounting objects: 100% (10/10)\rCounting objects: 100% (10/10), done.\r\nDelta compression using up to 152 threads\r\nCompressing objects: 14% (1/7)\rCompressing objects: 28% (2/7)\rCompressing objects: 42% (3/7)\rCompressing objects: 57% (4/7)\rCompressing objects: 71% (5/7)\rCompressing objects: 85% (6/7)\rCompressing objects: 100% (7/7)\rCompressing objects: 100% (7/7), done.\r\nWriting objects: 14% (1/7)\rWriting objects: 28% (2/7)\rWriting objects: 42% (3/7)\rWriting objects: 57% (4/7)\rWriting objects: 71% (5/7)\rWriting objects: 85% (6/7)\rWriting objects: 100% (7/7)\rWriting objects: 100% (7/7), 789 bytes | 394.00 KiB/s, done.\r\nTotal 7 (delta 3), reused 0 (delta 0), pack-reused 0\r\n",,terminal_output +707,1271015,"TERMINAL",0,0,"remote: Resolving deltas: 0% (0/3)\rremote: Resolving deltas: 33% (1/3)\rremote: Resolving deltas: 66% (2/3)\rremote: Resolving deltas: 100% (3/3)\rremote: Resolving deltas: 100% (3/3), completed with 2 local objects.\r\n",,terminal_output +708,1271071,"TERMINAL",0,0,"To github.com:p-doom/slurm.git\r\n 8de03a3..0dedd42 main -> main\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +709,1580508,"sbatch_scripts/preprocess/mp4_to_npy_6xx.sbatch",0,0,"",shellscript,tab +710,1582108,"sbatch_scripts/preprocess/mp4_to_npy_open_ai.sbatch",0,0,"",shellscript,tab diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-26b17221-07df-460b-8719-6668ecea44721750772995721-2025_06_24-16.00.55.611/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-26b17221-07df-460b-8719-6668ecea44721750772995721-2025_06_24-16.00.55.611/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..6cb58aa4cdfac9623f2bc608783a103fcd189c87 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-26b17221-07df-460b-8719-6668ecea44721750772995721-2025_06_24-16.00.55.611/source.csv @@ -0,0 +1,8 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,12,"genie.py",0,0,"from typing import Dict, Any\n\nimport optax\nimport jax\nimport jax.numpy as jnp\nimport flax.linen as nn\nfrom jax import NamedSharding\nfrom flax.training.train_state import TrainState\nfrom flax.training import orbax_utils\nfrom orbax.checkpoint import PyTreeCheckpointer\n\nfrom models.dynamics import DynamicsMaskGIT\nfrom models.lam import LatentActionModel\nfrom models.tokenizer import TokenizerVQVAE\n\n\nclass Genie(nn.Module):\n """"""Genie model""""""\n\n # --- Tokenizer ---\n in_dim: int\n tokenizer_dim: int\n latent_patch_dim: int\n num_patch_latents: int\n patch_size: int\n tokenizer_num_blocks: int\n tokenizer_num_heads: int\n # --- LAM ---\n lam_dim: int\n latent_action_dim: int\n num_latent_actions: int\n lam_patch_size: int\n lam_num_blocks: int\n lam_num_heads: int\n # --- Dynamics ---\n dyna_dim: int\n dyna_num_blocks: int\n dyna_num_heads: int\n dropout: float = 0.0\n mask_limit: float = 0.0\n\n def setup(self):\n self.tokenizer = TokenizerVQVAE(\n in_dim=self.in_dim,\n model_dim=self.tokenizer_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_patch_latents,\n patch_size=self.patch_size,\n num_blocks=self.tokenizer_num_blocks,\n num_heads=self.tokenizer_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n )\n self.lam = LatentActionModel(\n in_dim=self.in_dim,\n model_dim=self.lam_dim,\n latent_dim=self.latent_patch_dim,\n num_latents=self.num_latent_actions,\n patch_size=self.lam_patch_size,\n num_blocks=self.lam_num_blocks,\n num_heads=self.lam_num_heads,\n dropout=0.0,\n codebook_dropout=0.0,\n )\n self.dynamics = DynamicsMaskGIT(\n model_dim=self.dyna_dim,\n num_latents=self.num_patch_latents,\n num_blocks=self.dyna_num_blocks,\n num_heads=self.dyna_num_heads,\n dropout=self.dropout,\n mask_limit=self.mask_limit,\n )\n\n def __call__(self, batch: Dict[str, Any], training: bool = True) -> Dict[str, Any]:\n tokenizer_outputs = self.tokenizer.vq_encode(batch[""videos""], training=False)\n lam_outputs = self.lam.vq_encode(batch[""videos""], training=False)\n outputs = dict(\n video_tokens=jax.lax.stop_gradient(tokenizer_outputs[""indices""]),\n latent_actions=jax.lax.stop_gradient(lam_outputs[""z_q""]),\n )\n outputs[""mask_rng""] = batch[""mask_rng""]\n dyna_outputs = self.dynamics(outputs, training)\n outputs.update(dyna_outputs)\n mle_indices = jnp.argmax(outputs[""token_logits""], axis=-1)\n outputs[""recon""] = self.tokenizer.decode(\n mle_indices, batch[""videos""].shape[2:4]\n )\n return outputs\n\n @nn.compact\n def sample(\n self,\n batch: Dict[str, Any],\n steps: int = 25,\n temperature: int = 1,\n sample_argmax: bool = False,\n ) -> Any:\n # --- Encode videos and actions ---\n tokenizer_out = self.tokenizer.vq_encode(batch[""videos""], training=False)\n token_idxs = tokenizer_out[""indices""]\n new_frame_idxs = jnp.zeros_like(token_idxs)[:, 0]\n action_tokens = self.lam.vq.get_codes(batch[""latent_actions""])\n\n # --- Initialize MaskGIT ---\n init_mask = jnp.ones_like(token_idxs, dtype=bool)[:, 0]\n init_carry = (\n batch[""rng""],\n new_frame_idxs,\n init_mask,\n token_idxs,\n action_tokens,\n )\n MaskGITLoop = nn.scan(\n MaskGITStep,\n variable_broadcast=""params"",\n split_rngs={""params"": False},\n in_axes=0,\n out_axes=0,\n length=steps,\n )\n\n # --- Run MaskGIT loop ---\n loop_fn = MaskGITLoop(\n dynamics=self.dynamics,\n tokenizer=self.tokenizer,\n temperature=temperature,\n sample_argmax=sample_argmax,\n steps=steps,\n )\n final_carry, _ = loop_fn(init_carry, jnp.arange(steps))\n new_frame_idxs = final_carry[1]\n new_frame_pixels = self.tokenizer.decode(\n jnp.expand_dims(new_frame_idxs, 1),\n video_hw=batch[""videos""].shape[2:4],\n )\n return new_frame_pixels\n\n def vq_encode(self, batch, training) -> Dict[str, Any]:\n # --- Preprocess videos ---\n lam_output = self.lam.vq_encode(batch[""videos""], training=training)\n return lam_output[""indices""]\n\n\nclass MaskGITStep(nn.Module):\n dynamics: nn.Module\n tokenizer: nn.Module\n temperature: float\n sample_argmax: bool\n steps: int\n\n @nn.compact\n def __call__(self, carry, x):\n rng, final_token_idxs, mask, token_idxs, action_tokens = carry\n step = x\n B, T, N = token_idxs.shape[:3]\n\n # --- Construct + encode video ---\n vid_token_idxs = jnp.concatenate(\n (token_idxs, jnp.expand_dims(final_token_idxs, 1)), axis=1\n )\n vid_embed = self.dynamics.patch_embed(vid_token_idxs)\n curr_masked_frame = jnp.where(\n jnp.expand_dims(mask, -1),\n self.dynamics.mask_token[0],\n vid_embed[:, -1],\n )\n vid_embed = vid_embed.at[:, -1].set(curr_masked_frame)\n\n # --- Predict transition ---\n act_embed = self.dynamics.action_up(action_tokens)\n vid_embed += jnp.pad(act_embed, ((0, 0), (1, 0), (0, 0), (0, 0)))\n unmasked_ratio = jnp.cos(jnp.pi * (step + 1) / (self.steps * 2))\n step_temp = self.temperature * (1.0 - unmasked_ratio)\n final_logits = self.dynamics.dynamics(vid_embed)[:, -1] / step_temp\n\n # --- Sample new tokens for final frame ---\n if self.sample_argmax:\n sampled_token_idxs = jnp.argmax(final_logits, axis=-1)\n else:\n rng, _rng = jax.random.split(rng)\n sampled_token_idxs = jnp.where(\n step == self.steps - 1,\n jnp.argmax(final_logits, axis=-1),\n jax.random.categorical(_rng, final_logits),\n )\n gather_fn = jax.vmap(jax.vmap(lambda x, y: x[y]))\n final_token_probs = gather_fn(jax.nn.softmax(final_logits), sampled_token_idxs)\n final_token_probs += ~mask\n # Update masked tokens only\n new_token_idxs = jnp.where(mask, sampled_token_idxs, final_token_idxs)\n\n # --- Update mask ---\n num_unmasked_tokens = jnp.round(N * (1.0 - unmasked_ratio)).astype(int)\n idx_mask = jnp.arange(final_token_probs.shape[-1]) > num_unmasked_tokens\n sorted_idxs = jnp.argsort(final_token_probs, axis=-1, descending=True)\n mask_update_fn = jax.vmap(lambda msk, ids: msk.at[ids].set(idx_mask))\n new_mask = mask_update_fn(mask, sorted_idxs)\n\n new_carry = (rng, new_token_idxs, new_mask, token_idxs, action_tokens)\n return new_carry, None\n\n\ndef restore_genie_components(\n train_state: TrainState,\n sharding: NamedSharding,\n inputs: Dict[str, jax.Array],\n rng: jax.Array,\n args,\n):\n """"""Restore pre-trained Genie components""""""\n rng, _rng = jax.random.split(rng)\n\n dummy_tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.tokenizer_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n num_blocks=args.tokenizer_num_blocks,\n num_heads=args.tokenizer_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n )\n dummy_lam = LatentActionModel(\n in_dim=args.image_channels,\n model_dim=args.lam_dim,\n latent_dim=args.latent_patch_dim,\n num_latents=args.num_latent_actions,\n patch_size=args.lam_patch_size,\n num_blocks=args.lam_num_blocks,\n num_heads=args.lam_num_heads,\n dropout=args.dropout,\n codebook_dropout=args.dropout,\n )\n tokenizer_init_params = dummy_tokenizer.init(_rng, inputs)\n lam_init_params = dummy_lam.init(_rng, inputs)\n\n # dummy values since we only use tx to initialize the dummy train states\n dummy_tx = optax.adamw(\n learning_rate=optax.constant_schedule(args.max_lr),\n b1=0.9,\n b2=0.9,\n weight_decay=1e-4,\n )\n\n dummy_tokenizer_train_state = TrainState.create(\n apply_fn=dummy_tokenizer.apply, params=tokenizer_init_params, tx=dummy_tx\n )\n dummy_lam_train_state = TrainState.create(\n apply_fn=dummy_lam.apply, params=lam_init_params, tx=dummy_tx\n )\n\n def create_abstract_sharded_pytree(pytree_template, sharding_spec):\n """"""Replaces arrays in a pytree with ShapeDtypeStructs having the given sharding.""""""\n\n def map_fn(leaf_template):\n if hasattr(leaf_template, ""shape"") and hasattr(leaf_template, ""dtype""):\n return jax.ShapeDtypeStruct(\n leaf_template.shape, leaf_template.dtype, sharding=sharding_spec\n )\n return leaf_template\n\n return jax.tree_util.tree_map(map_fn, pytree_template)\n\n abstract_sharded_tokenizer_state = create_abstract_sharded_pytree(\n dummy_tokenizer_train_state, sharding\n )\n abstract_sharded_lam_state = create_abstract_sharded_pytree(\n dummy_lam_train_state, sharding\n )\n\n tokenizer_restore_target = {""model"": abstract_sharded_tokenizer_state}\n lam_restore_target = {""model"": abstract_sharded_lam_state}\n\n tokenizer_restore_args = orbax_utils.restore_args_from_target(\n tokenizer_restore_target\n )\n lam_restore_args = orbax_utils.restore_args_from_target(lam_restore_target)\n\n restored_tokenizer_params = (\n PyTreeCheckpointer()\n .restore(\n args.tokenizer_checkpoint,\n item=tokenizer_restore_target,\n restore_args=tokenizer_restore_args,\n )[""model""]\n .params[""params""]\n )\n restored_lam_params = (\n PyTreeCheckpointer()\n .restore(\n args.lam_checkpoint, item=lam_restore_target, restore_args=lam_restore_args\n )[""model""]\n .params[""params""]\n )\n # Genie does not initialize all LAM modules, thus we omit those extra modules during restoration\n # (f.srambical) FIXME: Currently, this is a small HBM memory crunch since the LAM's decoder is loaded into HBM and immediately dicarded.\n # A workaround would be to restore to host memory first, and only move the weights to HBM after pruning the decoder\n restored_lam_params = {\n k: v\n for k, v in restored_lam_params.items()\n if k in train_state.params[""params""][""lam""]\n }\n\n train_state.params[""params""][""tokenizer""].update(restored_tokenizer_params)\n train_state.params[""params""][""lam""].update(restored_lam_params)\n\n return train_state\n",python,tab +2,2295,"genie.py",218,0,"",python,selection_mouse +3,2306,"genie.py",217,0,"",python,selection_command +4,15131,"TERMINAL",0,0,"cursor jafar_run_overfit/",,terminal_command +5,15182,"TERMINAL",0,0,"]633;E;2025-06-24 16:01:10 cursor jafar_run_overfit/;3785e992-afee-48a3-a5a8-2f86d34a9f49]633;C",,terminal_output +6,15322,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:~/projects]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects",,terminal_output +7,17837,"genie.py",0,0,"",python,tab diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-37cbf512-b8df-48c0-837d-65f771724c0f1750986496490-2025_06_27-03.08.56.360/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-37cbf512-b8df-48c0-837d-65f771724c0f1750986496490-2025_06_27-03.08.56.360/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..e30018db7e076c2843eced024529083db6d51bb7 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-37cbf512-b8df-48c0-837d-65f771724c0f1750986496490-2025_06_27-03.08.56.360/source.csv @@ -0,0 +1,199 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,6,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_dyn/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_coinrun\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nlam_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/lam_ckpt_dir/lam_1748080132_50000'\ntokenizer_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/tokenizer_ckpt_dir/tokenizer_1748080132_10000'\n\n\nsrun python train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --lam_checkpoint $lam_checkpoint \\n --image_height 64 \\n --image_width 64 \\n --tokenizer_checkpoint $tokenizer_checkpoint \\n --batch_size=192 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --name=$job_name \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +2,2430,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"3:08:56 AM [info] Activating crowd-code\n3:08:56 AM [info] Welcome back tum_ind3695. Your user-id is '507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20'. Happy coding!\n3:08:56 AM [info] Recording started\n",Log,tab +3,98818,"extension-output-pdoom-org.crowd-code-#1-crowd-code",218,0,"",Log,selection_mouse +4,99370,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"",Log,selection_command +5,100079,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",0,0,"",shellscript,tab +6,107485,"TERMINAL",0,0,"./slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh ^C",,terminal_command +7,107507,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;8ce264ca-66f0-4798-9e7f-85f974fbab1a]633;C",,terminal_output +8,108125,"TERMINAL",0,0,"^C",,terminal_command +9,108137,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;8ce264ca-66f0-4798-9e7f-85f974fbab1a]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D",,terminal_output +10,108378,"TERMINAL",0,0,"^C",,terminal_command +11,108386,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;8ce264ca-66f0-4798-9e7f-85f974fbab1a]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D",,terminal_output +12,134258,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",500,0,"",shellscript,selection_command +13,134904,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",677,0,"",shellscript,selection_command +14,135987,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",702,0,"",shellscript,selection_command +15,136228,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",725,0,"",shellscript,selection_command +16,136262,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",730,0,"",shellscript,selection_command +17,136285,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",791,0,"",shellscript,selection_command +18,136318,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",796,0,"",shellscript,selection_command +19,136359,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",860,0,"",shellscript,selection_command +20,136387,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",881,0,"",shellscript,selection_command +21,136419,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",886,0,"",shellscript,selection_command +22,136453,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",980,0,"",shellscript,selection_command +23,136487,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",985,0,"",shellscript,selection_command +24,136522,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1104,0,"",shellscript,selection_command +25,136555,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1237,0,"",shellscript,selection_command +26,136588,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1238,0,"",shellscript,selection_command +27,136625,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1243,0,"",shellscript,selection_command +28,136655,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1275,0,"",shellscript,selection_command +29,136698,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1308,0,"",shellscript,selection_command +30,136725,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1347,0,"",shellscript,selection_command +31,136756,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1371,0,"",shellscript,selection_command +32,136790,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1394,0,"",shellscript,selection_command +33,136824,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1445,0,"",shellscript,selection_command +34,136858,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1468,0,"",shellscript,selection_command +35,136915,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1445,0,"",shellscript,selection_command +36,137176,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1394,0,"",shellscript,selection_command +37,137199,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1371,0,"",shellscript,selection_command +38,137230,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1347,0,"",shellscript,selection_command +39,137265,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1308,0,"",shellscript,selection_command +40,137298,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1275,0,"",shellscript,selection_command +41,137335,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1243,0,"",shellscript,selection_command +42,137366,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1238,0,"",shellscript,selection_command +43,137398,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1237,0,"",shellscript,selection_command +44,137434,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1104,0,"",shellscript,selection_command +45,137465,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",985,0,"",shellscript,selection_command +46,137501,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",980,0,"",shellscript,selection_command +47,137534,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",886,0,"",shellscript,selection_command +48,138389,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",881,0,"",shellscript,selection_command +49,138635,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",860,0,"",shellscript,selection_command +50,138657,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",796,0,"",shellscript,selection_command +51,138686,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",791,0,"",shellscript,selection_command +52,138718,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",730,0,"",shellscript,selection_command +53,138926,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",725,0,"",shellscript,selection_command +54,139286,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",724,0,"\n",shellscript,content +55,141358,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",727,0,"",shellscript,selection_command +56,141580,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",792,0,"",shellscript,selection_command +57,142263,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",727,0,"",shellscript,selection_command +58,143135,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",792,0,"",shellscript,selection_command +59,143303,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",793,0,"",shellscript,selection_command +60,146200,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",792,0,"",shellscript,selection_command +61,146862,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",792,1,"",shellscript,content +62,147494,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",727,0,"",shellscript,selection_command +63,147672,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",726,0,"",shellscript,selection_command +64,147816,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",725,0,"",shellscript,selection_command +65,148099,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",725,0,"\n",shellscript,content +66,148855,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",725,0,"",shellscript,selection_command +67,149414,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",725,0,"t",shellscript,content +68,149517,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",726,0,"a",shellscript,content +69,149518,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",727,0,"",shellscript,selection_keyboard +70,149635,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",727,0,"g",shellscript,content +71,149636,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",728,0,"",shellscript,selection_keyboard +72,149806,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",728,0,"s",shellscript,content +73,149807,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",729,0,"",shellscript,selection_keyboard +74,151522,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",729,0,"='latent_action_ablation'",shellscript,content +75,151522,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",728,1,"",shellscript,content +76,152489,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",752,0,"",shellscript,selection_command +77,153552,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",754,0,"",shellscript,selection_command +78,154193,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",725,0,"",shellscript,selection_command +79,154604,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",726,0,"",shellscript,selection_command +80,154775,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",727,0,"",shellscript,selection_command +81,155094,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",728,0,"",shellscript,selection_command +82,155370,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",728,0,"s",shellscript,content +83,155371,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",729,0,"",shellscript,selection_keyboard +84,155964,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",728,0,"",shellscript,selection_command +85,156119,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",729,0,"",shellscript,selection_command +86,156284,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",730,0,"",shellscript,selection_command +87,156822,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",730,0,"()",shellscript,content +88,156823,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",731,0,"",shellscript,selection_keyboard +89,157970,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",756,0,")",shellscript,content +90,157970,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",731,1,"",shellscript,content +91,158278,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",730,0,"",shellscript,selection_command +92,160762,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",732,0,"",shellscript,selection_command +93,162759,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",732,22,"",shellscript,content +94,163517,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",732,0,"t",shellscript,content +95,163518,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",733,0,"",shellscript,selection_keyboard +96,163577,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",733,0,"r",shellscript,content +97,163578,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",734,0,"",shellscript,selection_keyboard +98,163640,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",734,0,"a",shellscript,content +99,163641,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",735,0,"",shellscript,selection_keyboard +100,163725,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",735,0,"i",shellscript,content +101,163727,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",736,0,"",shellscript,selection_keyboard +102,164285,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",735,1,"",shellscript,content +103,164436,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",734,1,"",shellscript,content +104,164578,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",733,1,"",shellscript,content +105,164726,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",732,1,"",shellscript,content +106,164878,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",732,0,"c",shellscript,content +107,164882,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",733,0,"",shellscript,selection_keyboard +108,164975,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",733,0,"o",shellscript,content +109,164976,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",734,0,"",shellscript,selection_keyboard +110,165098,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",734,0,"i",shellscript,content +111,165099,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",735,0,"",shellscript,selection_keyboard +112,165175,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",735,0,"n",shellscript,content +113,165176,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",736,0,"",shellscript,selection_keyboard +114,166003,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",736,0,"r",shellscript,content +115,166004,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",737,0,"",shellscript,selection_keyboard +116,166141,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",737,0,"u",shellscript,content +117,166142,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",738,0,"",shellscript,selection_keyboard +118,166232,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",738,0,"n",shellscript,content +119,166233,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",739,0,"",shellscript,selection_keyboard +120,166831,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",738,0,"",shellscript,selection_command +121,166930,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",739,0,"",shellscript,selection_command +122,167148,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",740,0,"",shellscript,selection_command +123,168183,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",740,0," ",shellscript,content +124,168184,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",741,0,"",shellscript,selection_keyboard +125,169259,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",741,0,"'dynamics' 'latent_action_ablation'",shellscript,content +126,169701,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",775,0,"",shellscript,selection_command +127,171187,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",753,0,"",shellscript,selection_command +128,171358,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",752,0,"",shellscript,selection_command +129,172047,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",753,0,"",shellscript,selection_command +130,172383,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",753,22,"",shellscript,content +131,173612,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",753,0,"p",shellscript,content +132,173613,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",754,0,"",shellscript,selection_keyboard +133,174632,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",754,0,"i",shellscript,content +134,174634,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",755,0,"",shellscript,selection_keyboard +135,175104,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",755,0,"e",shellscript,content +136,175105,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",756,0,"",shellscript,selection_keyboard +137,175682,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",755,1,"",shellscript,content +138,175887,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",755,0,"p",shellscript,content +139,175888,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",756,0,"",shellscript,selection_keyboard +140,176356,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",756,0,"e",shellscript,content +141,176357,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",757,0,"",shellscript,selection_keyboard +142,176612,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",757,0,"l",shellscript,content +143,176613,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",758,0,"",shellscript,selection_keyboard +144,176733,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",758,0,"i",shellscript,content +145,176734,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",759,0,"",shellscript,selection_keyboard +146,176771,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",759,0,"n",shellscript,content +147,176773,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",760,0,"",shellscript,selection_keyboard +148,176873,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",760,0,"e",shellscript,content +149,176875,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",761,0,"",shellscript,selection_keyboard +150,177010,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",761,0," ",shellscript,content +151,177011,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",762,0,"",shellscript,selection_keyboard +152,177508,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",761,1,"",shellscript,content +153,177889,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",761,0,"_",shellscript,content +154,177890,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",762,0,"",shellscript,selection_keyboard +155,178118,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",762,0,"t",shellscript,content +156,178119,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",763,0,"",shellscript,selection_keyboard +157,178182,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",763,0,"e",shellscript,content +158,178184,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",764,0,"",shellscript,selection_keyboard +159,178313,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",764,0,"s",shellscript,content +160,178314,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",765,0,"",shellscript,selection_keyboard +161,178406,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",765,0,"t",shellscript,content +162,178407,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",766,0,"",shellscript,selection_keyboard +163,179684,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",767,0," 'latent_action_ablation'",shellscript,content +164,179685,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",792,0,"",shellscript,selection_command +165,179897,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",791,0,"",shellscript,selection_command +166,180187,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",794,0,"",shellscript,selection_command +167,180441,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",795,0,"",shellscript,selection_command +168,180456,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",859,0,"",shellscript,selection_command +169,180492,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",923,0,"",shellscript,selection_command +170,180523,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",948,0,"",shellscript,selection_command +171,180556,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",950,0,"",shellscript,selection_command +172,180593,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1017,0,"",shellscript,selection_command +173,180624,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1049,0,"",shellscript,selection_command +174,180659,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1116,0,"",shellscript,selection_command +175,180757,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1235,0,"",shellscript,selection_command +176,180762,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1306,0,"",shellscript,selection_command +177,180764,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1307,0,"",shellscript,selection_command +178,180838,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1338,0,"",shellscript,selection_command +179,180848,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1371,0,"",shellscript,selection_command +180,180861,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1410,0,"",shellscript,selection_command +181,180894,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1434,0,"",shellscript,selection_command +182,180928,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1457,0,"",shellscript,selection_command +183,180962,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1508,0,"",shellscript,selection_command +184,180995,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1531,0,"",shellscript,selection_command +185,181030,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1567,0,"",shellscript,selection_command +186,181064,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1597,0,"",shellscript,selection_command +187,181096,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1612,0,"",shellscript,selection_command +188,181131,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1635,0,"",shellscript,selection_command +189,181165,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1660,0,"",shellscript,selection_command +190,181198,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1685,0,"",shellscript,selection_command +191,181232,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1697,0,"",shellscript,selection_command +192,181267,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",1723,0,"",shellscript,selection_command +193,184178,"TERMINAL",0,0,"sbatch slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",,terminal_command +194,184222,"TERMINAL",0,0,"]633;E;2025-06-27 03:12:00 sbatch slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch;8ce264ca-66f0-4798-9e7f-85f974fbab1a]633;CSubmitted batch job 3297726\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +195,352753,"train_dynamics.py",0,0,"from dataclasses import dataclass\nimport os\nimport time\n\nimport einops\nfrom flax.training import orbax_utils\nfrom flax.training.train_state import TrainState\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax\nfrom orbax.checkpoint import PyTreeCheckpointer\nimport numpy as np\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\n\nfrom genie import Genie, restore_genie_components\nfrom models.tokenizer import TokenizerVQVAE\nfrom models.lam import LatentActionModel\nfrom utils.dataloader import get_dataloader\n\nts = int(time.time())\n\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 200_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data_tfrecords/coinrun""\n # Optimization\n batch_size: int = 36\n min_lr: float = 3e-6\n max_lr: float = 3e-5\n warmup_steps: int = 5000\n # Tokenizer\n tokenizer_dim: int = 512\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 8\n tokenizer_num_heads: int = 8\n tokenizer_checkpoint: str = """"\n # LAM\n lam_dim: int = 512\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 8\n lam_num_heads: int = 8\n lam_checkpoint: str = """"\n # Dynamics\n dyna_dim: int = 512\n dyna_num_blocks: int = 12\n dyna_num_heads: int = 8\n dropout: float = 0.0\n mask_limit: float = 0.5\n # Logging\n log: bool = False\n entity: str = """"\n project: str = """"\n log_interval: int = 5\n log_image_interval: int = 250\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 25000\n log_gradients: bool = False\n name: str = """"\n\n\nargs = tyro.cli(Args)\n\n\ndef dynamics_loss_fn(params, state, inputs):\n """"""Compute masked dynamics loss""""""\n outputs = state.apply_fn(\n params,\n inputs,\n training=True,\n rngs={""params"": inputs[""rng""], ""dropout"": inputs[""dropout_rng""]},\n )\n mask = outputs[""mask""]\n ce_loss = optax.softmax_cross_entropy_with_integer_labels(\n outputs[""token_logits""], outputs[""video_tokens""]\n )\n ce_loss = (mask * ce_loss).sum() / mask.sum()\n acc = outputs[""token_logits""].argmax(-1) == outputs[""video_tokens""]\n acc = (mask * acc).sum() / mask.sum()\n select_probs = jax.nn.softmax(outputs[""token_logits""])\n metrics = dict(\n cross_entropy_loss=ce_loss,\n masked_token_accuracy=acc,\n select_logit=outputs[""token_logits""].max(-1).mean(),\n select_p=select_probs.max(-1).mean(),\n entropy=jax.scipy.special.entr(select_probs).sum(-1).mean(),\n )\n return ce_loss, (outputs[""recon""], metrics)\n\n\n@jax.jit\ndef train_step(state, inputs):\n """"""Update state and compute metrics""""""\n grad_fn = jax.value_and_grad(dynamics_loss_fn, has_aux=True, allow_int=True)\n (loss, (recon, metrics)), grads = grad_fn(state.params, state, inputs)\n state = state.apply_gradients(grads=grads)\n if args.log_gradients:\n metrics[""gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""dynamics""]\n )\n return state, loss, recon, metrics\n\n\nif __name__ == ""__main__"":\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n per_device_batch_size_for_init = args.batch_size // num_devices\n\n rng = jax.random.PRNGKey(args.seed)\n if args.log and jax.process_index() == 0:\n wandb.init(entity=args.entity, project=args.project, group=""debug"", name=args.name, config=args)\n\n # --- Initialize model ---\n genie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n # Dynamics\n dyna_dim=args.dyna_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n dropout=args.dropout,\n mask_limit=args.mask_limit,\n )\n rng, _rng = jax.random.split(rng)\n image_shape = (args.image_height, args.image_width, args.image_channels)\n dummy_inputs = dict(\n videos=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len, *image_shape),\n dtype=jnp.float32,\n ),\n action=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len), dtype=jnp.float32\n ),\n mask_rng=_rng,\n )\n rng, _rng = jax.random.split(rng)\n init_params = genie.init(_rng, dummy_inputs)\n\n # --- Initialize optimizer ---\n lr_schedule = optax.warmup_cosine_decay_schedule(\n args.min_lr, args.max_lr, args.warmup_steps, args.num_steps\n )\n tx = optax.adamw(learning_rate=lr_schedule, b1=0.9, b2=0.9, weight_decay=1e-4)\n train_state = TrainState.create(apply_fn=genie.apply, params=init_params, tx=tx)\n\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n train_state = jax.device_put(train_state, replicated_sharding)\n\n # --- Restore checkpoint ---\n train_state = restore_genie_components(\n train_state, replicated_sharding, dummy_inputs, rng, args\n )\n\n # --- TRAIN LOOP ---\n tfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n ]\n dataloader = get_dataloader(\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n tfrecord_files,\n args.seq_len,\n args.batch_size,\n *image_shape,\n )\n step = 0\n while step < args.num_steps:\n for videos in dataloader:\n # --- Train step ---\n rng, _rng, _rng_dropout, _rng_mask = jax.random.split(rng, 4)\n\n videos_sharding = NamedSharding(\n mesh, PartitionSpec(""data"", None, None, None, None)\n )\n videos = jax.make_array_from_process_local_data(videos_sharding, videos)\n\n inputs = dict(\n videos=videos,\n rng=_rng,\n dropout_rng=_rng_dropout,\n mask_rng=_rng_mask,\n )\n start_time = time.time()\n train_state, loss, recon, metrics = train_step(train_state, inputs)\n elapsed_time = (time.time() - start_time) * 1000\n print(f""Step {step}, loss: {loss}, step time: {elapsed_time}ms"")\n step += 1\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n wandb.log(\n {\n ""loss"": loss,\n ""step"": step,\n ""step_time_ms"": elapsed_time,\n **metrics,\n }\n )\n if step % args.log_image_interval == 0:\n gt_seq = inputs[""videos""][0]\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[args.seq_len - 1])),\n recon=wandb.Image(np.asarray(recon_seq[args.seq_len - 1])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n wandb.log(log_images)\n if step % args.log_checkpoint_interval == 0:\n ckpt = {""model"": train_state}\n orbax_checkpointer = orbax.checkpoint.PyTreeCheckpointer()\n save_args = orbax_utils.save_args_from_target(ckpt)\n orbax_checkpointer.save(\n os.path.join(os.getcwd(), args.ckpt_dir, f""genie_{ts}_{step}""),\n ckpt,\n save_args=save_args,\n )\n if step >= args.num_steps:\n break\n",python,tab +196,357793,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",0,0,"",shellscript,tab +197,408583,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",924,0,"",shellscript,selection_mouse +198,408586,"slurm/dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch",923,0,"",shellscript,selection_command diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-3f749da7-4303-45fb-91ab-2b01a7e9e4011750866185740-2025_06_25-18.09.46.636/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-3f749da7-4303-45fb-91ab-2b01a7e9e4011750866185740-2025_06_25-18.09.46.636/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..15615d04ddeb4cad49a654c5858f8f4215c6755b --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-3f749da7-4303-45fb-91ab-2b01a7e9e4011750866185740-2025_06_25-18.09.46.636/source.csv @@ -0,0 +1,932 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,11,".gitignore",0,0,"*.pyc\n*.npy\n*.png\n*.gif\n\nwandb_key\ncheckpoints/\nwandb/\n__pycache__/\n\nlogs/\nsandbox/\nsbatch_scripts/\nvs-code-recorder/\ndata/\ndata_tfrecords/\nsh_scripts/\nutils/clip_checker.py\nutils/dataloader_seeding.py\nutils/preprocess_video_splitter_tmp.py\nrequirements_franz.txt\nsample_resolution_batches.py\ntrain_dynamics_*\ntrain_lam_*\ntrain_tokenizer_*\nnotes.md\nshell_scripts/\n",ignore,tab +2,290080,"slurm/jobs/sample/sample_knoms.sh",0,0,"\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\n\nsource .venv_jafar/bin/activate\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\nseq_len=16\noutput_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12",shellscript,tab +3,296295,"sbatch_scripts/sample_jafar/sample_knoms.sh",0,0,"\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\n\nsource .venv_jafar/bin/activate\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\nseq_len=16\noutput_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12",shellscript,tab +4,297174,"sbatch_scripts/sample_jafar/sample_knoms.sh",520,0,"",shellscript,selection_command +5,297610,"sbatch_scripts/sample_jafar/sample_knoms.sh",393,0,"",shellscript,selection_command +6,298835,"sbatch_scripts/sample_jafar/sample_knoms.sh",520,0,"",shellscript,selection_command +7,299576,"sbatch_scripts/sample_jafar/sample_knoms.sh",393,0,"",shellscript,selection_command +8,329241,"sbatch_scripts/sample_jafar/sample_knoms.sh",360,0,"",shellscript,selection_command +9,329402,"sbatch_scripts/sample_jafar/sample_knoms.sh",357,0,"",shellscript,selection_command +10,329572,"sbatch_scripts/sample_jafar/sample_knoms.sh",323,0,"",shellscript,selection_command +11,329683,"sbatch_scripts/sample_jafar/sample_knoms.sh",226,0,"",shellscript,selection_command +12,329949,"sbatch_scripts/sample_jafar/sample_knoms.sh",323,0,"",shellscript,selection_command +13,330104,"sbatch_scripts/sample_jafar/sample_knoms.sh",357,0,"",shellscript,selection_command +14,330274,"sbatch_scripts/sample_jafar/sample_knoms.sh",360,0,"",shellscript,selection_command +15,330440,"sbatch_scripts/sample_jafar/sample_knoms.sh",393,0,"",shellscript,selection_command +16,330651,"sbatch_scripts/sample_jafar/sample_knoms.sh",520,0,"",shellscript,selection_command +17,331169,"sbatch_scripts/sample_jafar/sample_knoms.sh",595,0,"\n",shellscript,content +18,331607,"sbatch_scripts/sample_jafar/sample_knoms.sh",488,108,"# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +19,331856,"sbatch_scripts/sample_jafar/sample_knoms.sh",361,235,"python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +20,331888,"sbatch_scripts/sample_jafar/sample_knoms.sh",360,236,"\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +21,331920,"sbatch_scripts/sample_jafar/sample_knoms.sh",325,271,"output_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +22,331953,"sbatch_scripts/sample_jafar/sample_knoms.sh",314,282,"seq_len=16\noutput_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +23,331987,"sbatch_scripts/sample_jafar/sample_knoms.sh",194,402,"checkpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\nseq_len=16\noutput_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +24,332020,"sbatch_scripts/sample_jafar/sample_knoms.sh",95,501,"data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\nseq_len=16\noutput_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +25,332581,"sbatch_scripts/sample_jafar/sample_knoms.sh",95,0,"",shellscript,selection_command +26,333136,"sbatch_scripts/sample_jafar/sample_knoms.sh",596,0,"",shellscript,selection_command +27,333433,"sbatch_scripts/sample_jafar/sample_knoms.sh",596,0,"\n",shellscript,content +28,334178,"sbatch_scripts/sample_jafar/sample_knoms.sh",597,0,"data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\nseq_len=16\noutput_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n\n",shellscript,content +29,334187,"sbatch_scripts/sample_jafar/sample_knoms.sh",597,0,"",shellscript,selection_command +30,334567,"sbatch_scripts/sample_jafar/sample_knoms.sh",596,0,"",shellscript,selection_command +31,335027,"sbatch_scripts/sample_jafar/sample_knoms.sh",596,1,"\n",shellscript,selection_command +32,335110,"sbatch_scripts/sample_jafar/sample_knoms.sh",488,108,"# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +33,335350,"sbatch_scripts/sample_jafar/sample_knoms.sh",361,235,"python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +34,335379,"sbatch_scripts/sample_jafar/sample_knoms.sh",360,236,"\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +35,335413,"sbatch_scripts/sample_jafar/sample_knoms.sh",325,271,"output_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +36,335447,"sbatch_scripts/sample_jafar/sample_knoms.sh",314,282,"seq_len=16\noutput_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +37,335611,"sbatch_scripts/sample_jafar/sample_knoms.sh",194,402,"checkpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\nseq_len=16\noutput_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +38,335781,"sbatch_scripts/sample_jafar/sample_knoms.sh",95,501,"data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\nseq_len=16\noutput_dir='sample_results/knoms/'\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n",shellscript,selection_command +39,336031,"sbatch_scripts/sample_jafar/sample_knoms.sh",488,0,"# ",shellscript,content +40,336031,"sbatch_scripts/sample_jafar/sample_knoms.sh",361,0,"# ",shellscript,content +41,336031,"sbatch_scripts/sample_jafar/sample_knoms.sh",325,0,"# ",shellscript,content +42,336032,"sbatch_scripts/sample_jafar/sample_knoms.sh",314,0,"# ",shellscript,content +43,336032,"sbatch_scripts/sample_jafar/sample_knoms.sh",194,0,"# ",shellscript,content +44,336032,"sbatch_scripts/sample_jafar/sample_knoms.sh",95,0,"# ",shellscript,content +45,336278,"sbatch_scripts/sample_jafar/sample_knoms.sh",95,0,"",shellscript,selection_command +46,336333,"sbatch_scripts/sample_jafar/sample_knoms.sh",196,0,"",shellscript,selection_command +47,336585,"sbatch_scripts/sample_jafar/sample_knoms.sh",318,0,"",shellscript,selection_command +48,336616,"sbatch_scripts/sample_jafar/sample_knoms.sh",331,0,"",shellscript,selection_command +49,336645,"sbatch_scripts/sample_jafar/sample_knoms.sh",368,0,"",shellscript,selection_command +50,336678,"sbatch_scripts/sample_jafar/sample_knoms.sh",369,0,"",shellscript,selection_command +51,336713,"sbatch_scripts/sample_jafar/sample_knoms.sh",498,0,"",shellscript,selection_command +52,336744,"sbatch_scripts/sample_jafar/sample_knoms.sh",608,0,"",shellscript,selection_command +53,336780,"sbatch_scripts/sample_jafar/sample_knoms.sh",609,0,"",shellscript,selection_command +54,337552,"sbatch_scripts/sample_jafar/sample_knoms.sh",608,0,"\n",shellscript,content +55,337869,"sbatch_scripts/sample_jafar/sample_knoms.sh",609,0,"#",shellscript,content +56,337870,"sbatch_scripts/sample_jafar/sample_knoms.sh",610,0,"",shellscript,selection_keyboard +57,338627,"sbatch_scripts/sample_jafar/sample_knoms.sh",610,0,"#",shellscript,content +58,338628,"sbatch_scripts/sample_jafar/sample_knoms.sh",611,0,"",shellscript,selection_keyboard +59,338774,"sbatch_scripts/sample_jafar/sample_knoms.sh",611,0," ",shellscript,content +60,338775,"sbatch_scripts/sample_jafar/sample_knoms.sh",612,0,"",shellscript,selection_keyboard +61,339036,"sbatch_scripts/sample_jafar/sample_knoms.sh",612,0,"T",shellscript,content +62,339038,"sbatch_scripts/sample_jafar/sample_knoms.sh",613,0,"",shellscript,selection_keyboard +63,339243,"sbatch_scripts/sample_jafar/sample_knoms.sh",613,0,"F",shellscript,content +64,339244,"sbatch_scripts/sample_jafar/sample_knoms.sh",614,0,"",shellscript,selection_keyboard +65,339484,"sbatch_scripts/sample_jafar/sample_knoms.sh",614,0,"R",shellscript,content +66,339485,"sbatch_scripts/sample_jafar/sample_knoms.sh",615,0,"",shellscript,selection_keyboard +67,339609,"sbatch_scripts/sample_jafar/sample_knoms.sh",615,0,"E",shellscript,content +68,339610,"sbatch_scripts/sample_jafar/sample_knoms.sh",616,0,"",shellscript,selection_keyboard +69,339764,"sbatch_scripts/sample_jafar/sample_knoms.sh",616,0,"C",shellscript,content +70,339765,"sbatch_scripts/sample_jafar/sample_knoms.sh",617,0,"",shellscript,selection_keyboard +71,339838,"sbatch_scripts/sample_jafar/sample_knoms.sh",617,0,"O",shellscript,content +72,339840,"sbatch_scripts/sample_jafar/sample_knoms.sh",618,0,"",shellscript,selection_keyboard +73,340023,"sbatch_scripts/sample_jafar/sample_knoms.sh",618,0,"R",shellscript,content +74,340024,"sbatch_scripts/sample_jafar/sample_knoms.sh",619,0,"",shellscript,selection_keyboard +75,340166,"sbatch_scripts/sample_jafar/sample_knoms.sh",619,0,"D",shellscript,content +76,340167,"sbatch_scripts/sample_jafar/sample_knoms.sh",620,0,"",shellscript,selection_keyboard +77,340338,"sbatch_scripts/sample_jafar/sample_knoms.sh",620,0," ",shellscript,content +78,340340,"sbatch_scripts/sample_jafar/sample_knoms.sh",621,0,"",shellscript,selection_keyboard +79,341365,"sbatch_scripts/sample_jafar/sample_knoms.sh",621,0,"o",shellscript,content +80,341367,"sbatch_scripts/sample_jafar/sample_knoms.sh",622,0,"",shellscript,selection_keyboard +81,341465,"sbatch_scripts/sample_jafar/sample_knoms.sh",622,0,"v",shellscript,content +82,341466,"sbatch_scripts/sample_jafar/sample_knoms.sh",623,0,"",shellscript,selection_keyboard +83,341620,"sbatch_scripts/sample_jafar/sample_knoms.sh",623,0,"e",shellscript,content +84,341621,"sbatch_scripts/sample_jafar/sample_knoms.sh",624,0,"",shellscript,selection_keyboard +85,341700,"sbatch_scripts/sample_jafar/sample_knoms.sh",624,0,"r",shellscript,content +86,341701,"sbatch_scripts/sample_jafar/sample_knoms.sh",625,0,"",shellscript,selection_keyboard +87,341852,"sbatch_scripts/sample_jafar/sample_knoms.sh",625,0,"f",shellscript,content +88,341853,"sbatch_scripts/sample_jafar/sample_knoms.sh",626,0,"",shellscript,selection_keyboard +89,341968,"sbatch_scripts/sample_jafar/sample_knoms.sh",626,0,"i",shellscript,content +90,341969,"sbatch_scripts/sample_jafar/sample_knoms.sh",627,0,"",shellscript,selection_keyboard +91,342061,"sbatch_scripts/sample_jafar/sample_knoms.sh",627,0,"t",shellscript,content +92,342062,"sbatch_scripts/sample_jafar/sample_knoms.sh",628,0,"",shellscript,selection_keyboard +93,342484,"sbatch_scripts/sample_jafar/sample_knoms.sh",627,0,"",shellscript,selection_command +94,342590,"sbatch_scripts/sample_jafar/sample_knoms.sh",621,0,"",shellscript,selection_command +95,343350,"sbatch_scripts/sample_jafar/sample_knoms.sh",620,0,"",shellscript,selection_command +96,343684,"sbatch_scripts/sample_jafar/sample_knoms.sh",612,0,"",shellscript,selection_command +97,343974,"sbatch_scripts/sample_jafar/sample_knoms.sh",612,9,"",shellscript,content +98,344374,"sbatch_scripts/sample_jafar/sample_knoms.sh",619,0,"",shellscript,selection_command +99,344879,"sbatch_scripts/sample_jafar/sample_knoms.sh",619,0," ",shellscript,content +100,344880,"sbatch_scripts/sample_jafar/sample_knoms.sh",620,0,"",shellscript,selection_keyboard +101,345173,"sbatch_scripts/sample_jafar/sample_knoms.sh",620,0,"t",shellscript,content +102,345173,"sbatch_scripts/sample_jafar/sample_knoms.sh",621,0,"",shellscript,selection_keyboard +103,345382,"sbatch_scripts/sample_jafar/sample_knoms.sh",621,0,"r",shellscript,content +104,345383,"sbatch_scripts/sample_jafar/sample_knoms.sh",622,0,"",shellscript,selection_keyboard +105,345638,"sbatch_scripts/sample_jafar/sample_knoms.sh",621,1,"",shellscript,content +106,345709,"sbatch_scripts/sample_jafar/sample_knoms.sh",621,0,"f",shellscript,content +107,345711,"sbatch_scripts/sample_jafar/sample_knoms.sh",622,0,"",shellscript,selection_keyboard +108,345855,"sbatch_scripts/sample_jafar/sample_knoms.sh",622,0,"r",shellscript,content +109,345856,"sbatch_scripts/sample_jafar/sample_knoms.sh",623,0,"",shellscript,selection_keyboard +110,345929,"sbatch_scripts/sample_jafar/sample_knoms.sh",623,0,"e",shellscript,content +111,345930,"sbatch_scripts/sample_jafar/sample_knoms.sh",624,0,"",shellscript,selection_keyboard +112,346094,"sbatch_scripts/sample_jafar/sample_knoms.sh",624,0,"c",shellscript,content +113,346095,"sbatch_scripts/sample_jafar/sample_knoms.sh",625,0,"",shellscript,selection_keyboard +114,346184,"sbatch_scripts/sample_jafar/sample_knoms.sh",625,0,"o",shellscript,content +115,346186,"sbatch_scripts/sample_jafar/sample_knoms.sh",626,0,"",shellscript,selection_keyboard +116,346302,"sbatch_scripts/sample_jafar/sample_knoms.sh",626,0,"r",shellscript,content +117,346303,"sbatch_scripts/sample_jafar/sample_knoms.sh",627,0,"",shellscript,selection_keyboard +118,346408,"sbatch_scripts/sample_jafar/sample_knoms.sh",627,0,"d",shellscript,content +119,346410,"sbatch_scripts/sample_jafar/sample_knoms.sh",628,0,"",shellscript,selection_keyboard +120,346589,"sbatch_scripts/sample_jafar/sample_knoms.sh",628,0," ",shellscript,content +121,346590,"sbatch_scripts/sample_jafar/sample_knoms.sh",629,0,"",shellscript,selection_keyboard +122,346944,"sbatch_scripts/sample_jafar/sample_knoms.sh",629,0,"1",shellscript,content +123,346945,"sbatch_scripts/sample_jafar/sample_knoms.sh",630,0,"",shellscript,selection_keyboard +124,346966,"sbatch_scripts/sample_jafar/sample_knoms.sh",630,0,"0",shellscript,content +125,346967,"sbatch_scripts/sample_jafar/sample_knoms.sh",631,0,"",shellscript,selection_keyboard +126,347466,"sbatch_scripts/sample_jafar/sample_knoms.sh",630,0,"",shellscript,selection_command +127,347642,"sbatch_scripts/sample_jafar/sample_knoms.sh",653,0,"",shellscript,selection_command +128,359592,"sbatch_scripts/sample_jafar/sample_knoms.sh",664,0,"",shellscript,selection_mouse +129,360591,"sbatch_scripts/sample_jafar/sample_knoms.sh",763,0,"",shellscript,selection_command +130,360861,"sbatch_scripts/sample_jafar/sample_knoms.sh",730,0,"\n",shellscript,content +131,361181,"sbatch_scripts/sample_jafar/sample_knoms.sh",731,0,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards_overfit_10",shellscript,content +132,361187,"sbatch_scripts/sample_jafar/sample_knoms.sh",828,0,"",shellscript,selection_command +133,361528,"sbatch_scripts/sample_jafar/sample_knoms.sh",729,0,"",shellscript,selection_command +134,361825,"sbatch_scripts/sample_jafar/sample_knoms.sh",632,0,"",shellscript,selection_command +135,362458,"sbatch_scripts/sample_jafar/sample_knoms.sh",829,0,"'\n",shellscript,content +136,362459,"sbatch_scripts/sample_jafar/sample_knoms.sh",808,19,"",shellscript,content +137,362459,"sbatch_scripts/sample_jafar/sample_knoms.sh",732,66,"",shellscript,content +138,362459,"sbatch_scripts/sample_jafar/sample_knoms.sh",729,2,"",shellscript,content +139,363086,"sbatch_scripts/sample_jafar/sample_knoms.sh",744,0,"",shellscript,selection_command +140,363506,"sbatch_scripts/sample_jafar/sample_knoms.sh",744,1,"",shellscript,content +141,365089,"sbatch_scripts/sample_jafar/sample_knoms.sh",888,0,"",shellscript,selection_mouse +142,379052,"sbatch_scripts/sample_jafar/sample_knoms.sh",910,0,"",shellscript,selection_mouse +143,381064,"sbatch_scripts/sample_jafar/sample_knoms.sh",875,0,"",shellscript,selection_command +144,384006,"sbatch_scripts/sample_jafar/sample_knoms.sh",907,0,"_overfit_10",shellscript,content +145,384008,"sbatch_scripts/sample_jafar/sample_knoms.sh",918,0,"",shellscript,selection_command +146,385443,"sbatch_scripts/sample_jafar/sample_knoms.sh",920,0,"\n",shellscript,content +147,386169,"sbatch_scripts/sample_jafar/sample_knoms.sh",921,0,"m",shellscript,content +148,386170,"sbatch_scripts/sample_jafar/sample_knoms.sh",922,0,"",shellscript,selection_keyboard +149,386280,"sbatch_scripts/sample_jafar/sample_knoms.sh",922,0,"k",shellscript,content +150,386282,"sbatch_scripts/sample_jafar/sample_knoms.sh",923,0,"",shellscript,selection_keyboard +151,388534,"sbatch_scripts/sample_jafar/sample_knoms.sh",923,0,"d",shellscript,content +152,388536,"sbatch_scripts/sample_jafar/sample_knoms.sh",924,0,"",shellscript,selection_keyboard +153,388648,"sbatch_scripts/sample_jafar/sample_knoms.sh",924,0,"i",shellscript,content +154,388648,"sbatch_scripts/sample_jafar/sample_knoms.sh",925,0,"",shellscript,selection_keyboard +155,388754,"sbatch_scripts/sample_jafar/sample_knoms.sh",925,0,"r",shellscript,content +156,388757,"sbatch_scripts/sample_jafar/sample_knoms.sh",926,0,"",shellscript,selection_keyboard +157,389462,"sbatch_scripts/sample_jafar/sample_knoms.sh",926,0," -p $output_dir",shellscript,content +158,389827,"sbatch_scripts/sample_jafar/sample_knoms.sh",940,0,"",shellscript,selection_command +159,390014,"sbatch_scripts/sample_jafar/sample_knoms.sh",942,0,"",shellscript,selection_command +160,390250,"sbatch_scripts/sample_jafar/sample_knoms.sh",962,0,"",shellscript,selection_command +161,390442,"sbatch_scripts/sample_jafar/sample_knoms.sh",1089,0,"",shellscript,selection_command +162,390629,"sbatch_scripts/sample_jafar/sample_knoms.sh",1178,0,"",shellscript,selection_command +163,390849,"sbatch_scripts/sample_jafar/sample_knoms.sh",1179,0,"",shellscript,selection_command +164,392153,"sbatch_scripts/sample_jafar/sample_knoms.sh",1178,0,"",shellscript,selection_command +165,392335,"sbatch_scripts/sample_jafar/sample_knoms.sh",1089,0,"",shellscript,selection_command +166,392969,"sbatch_scripts/sample_jafar/sample_knoms.sh",1178,0,"",shellscript,selection_command +167,393176,"sbatch_scripts/sample_jafar/sample_knoms.sh",1179,0,"",shellscript,selection_command +168,393625,"sbatch_scripts/sample_jafar/sample_knoms.sh",1178,0,"",shellscript,selection_command +169,393843,"sbatch_scripts/sample_jafar/sample_knoms.sh",1089,0,"",shellscript,selection_command +170,394234,"sbatch_scripts/sample_jafar/sample_knoms.sh",1070,108,"",shellscript,content +171,398699,"TERMINAL",0,0,"bash",,terminal_focus +172,416235,"sbatch_scripts/sample_jafar/sample_knoms.sh",1071,0,"",shellscript,selection_mouse +173,424978,"TERMINAL",0,0,"bash",,terminal_focus +174,454604,"sbatch_scripts/sample_jafar/sample_knoms.sh",0,0,"",shellscript,tab +175,456252,"sbatch_scripts/sample_jafar/sample_knoms.sh",874,0,"",shellscript,selection_mouse +176,456254,"sbatch_scripts/sample_jafar/sample_knoms.sh",873,0,"",shellscript,selection_command +177,456277,"sbatch_scripts/sample_jafar/sample_knoms.sh",873,1,"6",shellscript,selection_mouse +178,456279,"sbatch_scripts/sample_jafar/sample_knoms.sh",874,0,"",shellscript,selection_command +179,457157,"sbatch_scripts/sample_jafar/sample_knoms.sh",873,0,"",shellscript,selection_command +180,457833,"sbatch_scripts/sample_jafar/sample_knoms.sh",863,0,"\n",shellscript,content +181,458194,"sbatch_scripts/sample_jafar/sample_knoms.sh",864,0,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3289577/genie_1750786631_12500",shellscript,content +182,458197,"sbatch_scripts/sample_jafar/sample_knoms.sh",965,0,"",shellscript,selection_command +183,458452,"sbatch_scripts/sample_jafar/sample_knoms.sh",845,0,"",shellscript,selection_command +184,458949,"sbatch_scripts/sample_jafar/sample_knoms.sh",744,0,"",shellscript,selection_command +185,459467,"sbatch_scripts/sample_jafar/sample_knoms.sh",758,0,"",shellscript,selection_command +186,460300,"sbatch_scripts/sample_jafar/sample_knoms.sh",966,0,"'",shellscript,content +187,460300,"sbatch_scripts/sample_jafar/sample_knoms.sh",835,104,"",shellscript,content +188,461991,"sbatch_scripts/sample_jafar/sample_knoms.sh",873,0,"",shellscript,selection_command +189,462409,"sbatch_scripts/sample_jafar/sample_knoms.sh",889,0,"",shellscript,selection_command +190,462626,"sbatch_scripts/sample_jafar/sample_knoms.sh",935,0,"",shellscript,selection_command +191,462802,"sbatch_scripts/sample_jafar/sample_knoms.sh",942,0,"",shellscript,selection_command +192,462952,"sbatch_scripts/sample_jafar/sample_knoms.sh",957,0,"",shellscript,selection_command +193,463131,"sbatch_scripts/sample_jafar/sample_knoms.sh",1070,0,"",shellscript,selection_command +194,463255,"sbatch_scripts/sample_jafar/sample_knoms.sh",1071,0,"",shellscript,selection_command +195,464748,"sbatch_scripts/sample_jafar/sample_knoms.sh",0,0,"",shellscript,selection_command +196,466176,"sbatch_scripts/sample_jafar/sample_knoms.sh",1071,0,"",shellscript,selection_command +197,473606,"sbatch_scripts/sample_jafar/sample_knoms copy.sh",0,0,"\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\n\nsource .venv_jafar/bin/activate\n\n# data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n# checkpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\n# seq_len=16\n# output_dir='sample_results/knoms/'\n\n# python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# # CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n\n## overfit tfrecord 10\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards/tfrecords_10'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3289577/genie_1750786631_12500'\nseq_len=16\noutput_dir='sample_results/knoms_overfit_10/'\nmkdir -p $output_dir\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n\n",shellscript,tab +198,479964,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\n\nsource .venv_jafar/bin/activate\n\n# data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n# checkpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\n# seq_len=16\n# output_dir='sample_results/knoms/'\n\n# python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# # CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n\n## overfit tfrecord 10\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards/tfrecords_10'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3289577/genie_1750786631_12500'\nseq_len=16\noutput_dir='sample_results/knoms_overfit_10/'\nmkdir -p $output_dir\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n\n",shellscript,tab +199,484937,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_knoms_full\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/dyn/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\n\nlam_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/lam/3277318/lam_1750444032_10000'\ntokenizer_checkpoint='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/tokenizer/3273828/tokenizer_1750269881_15500'\n\nsrun python train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --lam_checkpoint $lam_checkpoint \\n --tokenizer_checkpoint $tokenizer_checkpoint \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +200,485744,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,0,"",shellscript,selection_command +201,486011,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,1,"#",shellscript,selection_command +202,486859,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,21,"#!/usr/bin/env bash\n\n",shellscript,selection_command +203,487150,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,1,"#",shellscript,selection_command +204,487411,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,21,"#!/usr/bin/env bash\n\n",shellscript,selection_command +205,487659,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,415,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_knoms_full\n#SBATCH --mail-type=ALL\n\n",shellscript,selection_command +206,488576,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,447,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_knoms_full\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\n",shellscript,selection_command +207,488823,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,540,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_knoms_full\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\n",shellscript,selection_command +208,489912,"sbatch_scripts/train_dyn/train_dyn_knoms_full.sbatch",0,0,"",shellscript,selection_command +209,494659,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,tab +210,495564,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"\n",shellscript,content +211,496351,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_dyn_knoms_full\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\n",shellscript,content +212,496363,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,selection_command +213,496962,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",20,0,"",shellscript,selection_command +214,497125,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",414,0,"",shellscript,selection_command +215,497274,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",446,0,"",shellscript,selection_command +216,497549,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",539,0,"",shellscript,selection_command +217,498183,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",540,0,"",shellscript,selection_command +218,498564,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",540,2,"",shellscript,content +219,499055,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",540,60,"",shellscript,content +220,499481,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",540,33,"",shellscript,content +221,500211,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",540,1,"",shellscript,content +222,500739,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",641,0,"",shellscript,selection_command +223,500984,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",763,0,"",shellscript,selection_command +224,501015,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",776,0,"",shellscript,selection_command +225,501048,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",813,0,"",shellscript,selection_command +226,501082,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",814,0,"",shellscript,selection_command +227,501161,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",813,0,"",shellscript,selection_command +228,501417,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",776,0,"",shellscript,selection_command +229,501447,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",763,0,"",shellscript,selection_command +230,501480,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",641,0,"",shellscript,selection_command +231,501515,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",540,0,"",shellscript,selection_command +232,501800,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",539,0,"",shellscript,selection_command +233,502158,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",540,0,"",shellscript,selection_command +234,502407,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",641,0,"",shellscript,selection_command +235,502441,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",763,0,"",shellscript,selection_command +236,502558,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",641,0,"",shellscript,selection_command +237,502818,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",540,0,"",shellscript,selection_command +238,502847,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",539,0,"",shellscript,selection_command +239,502879,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",507,0,"",shellscript,selection_command +240,502912,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",477,0,"",shellscript,selection_command +241,502942,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",447,0,"",shellscript,selection_command +242,502976,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",446,0,"",shellscript,selection_command +243,503011,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",439,0,"",shellscript,selection_command +244,503133,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",415,0,"",shellscript,selection_command +245,503135,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",414,0,"",shellscript,selection_command +246,503138,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",390,0,"",shellscript,selection_command +247,503385,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",350,0,"",shellscript,selection_command +248,504307,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",389,0,"it_10",shellscript,content +249,504307,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",386,3,"",shellscript,content +250,504307,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",385,0,"over",shellscript,content +251,504307,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",378,0,"mple",shellscript,content +252,504307,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",372,6,"",shellscript,content +253,504308,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",371,0,"s",shellscript,content +254,504308,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",369,2,"",shellscript,content +255,506167,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",307,0,"",shellscript,selection_command +256,506422,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",258,0,"",shellscript,selection_command +257,506445,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",208,0,"",shellscript,selection_command +258,506474,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",187,0,"",shellscript,selection_command +259,506508,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",161,0,"",shellscript,selection_command +260,506541,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",123,0,"",shellscript,selection_command +261,506580,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",91,0,"",shellscript,selection_command +262,506608,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",67,0,"",shellscript,selection_command +263,506641,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",39,0,"",shellscript,selection_command +264,506963,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",67,0,"",shellscript,selection_command +265,507523,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",82,0,"",shellscript,selection_command +266,507893,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",82,1,"",shellscript,content +267,508050,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",82,1,"",shellscript,content +268,508499,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",82,0,"0",shellscript,content +269,508500,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",83,0,"",shellscript,selection_keyboard +270,508992,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",82,0,"",shellscript,selection_command +271,509132,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",83,0,"",shellscript,selection_command +272,509316,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",84,0,"",shellscript,selection_command +273,511294,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",84,1,"4",shellscript,content +274,511972,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",85,0,"",shellscript,selection_command +275,512945,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",85,1,"5",shellscript,content +276,513431,"TERMINAL",0,0,"bash",,terminal_focus +277,520421,"TERMINAL",0,0,"sbatch sbatch_scripts/sample_jafar/sample_knoms.sbatch",,terminal_command +278,520458,"TERMINAL",0,0,"]633;E;2025-06-25 18:18:27 sbatch sbatch_scripts/sample_jafar/sample_knoms.sbatch;51d28899-9c82-42ba-85dc-9716395db034]633;CSubmitted batch job 3292064\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +279,521755,"TERMINAL",0,0,"queue",,terminal_command +280,521845,"TERMINAL",0,0,"]633;E;2025-06-25 18:18:28 queue;51d28899-9c82-42ba-85dc-9716395db034]633;C[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Wed Jun 25 18:18:28 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3292064 accelerat sample_k tum_ind3 PD\t0:00\t 1 (Priority)3289577 accelerat train_dy tum_ind3 R 22:41:52\t 1 hkn0712",,terminal_output +281,522884,"TERMINAL",0,0,"93",,terminal_output +282,523825,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +283,527437,"TERMINAL",0,0,"fsacct_week",,terminal_command +284,527487,"TERMINAL",0,0,"]633;E;2025-06-25 18:18:34 fsacct_week ;51d28899-9c82-42ba-85dc-9716395db034]633;C",,terminal_output +285,527519,"TERMINAL",0,0," JobID JobName Partition All State Elapsed Timelimit \r\n--------------- ------------------------------ ---------------- --- ------------ ---------- ---------- \r\n 3273476 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:06 00:10:00 \r\n 3273480 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:00:32 00:10:00 \r\n 3273494 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:40 00:10:00 \r\n 3273503 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:16 00:10:00 \r\n 3273681 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3273687 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:16 00:10:00 \r\n 3273795 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3273820 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:00:31 00:15:00 \r\n 3273828 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 1-00:00:10 1-00:00:00 \r\n 3273829 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 1-00:00:10 1-00:00:00 \r\n 3273831 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 12:00:29 12:00:00 \r\n 3273841 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:13 12:00:00 \r\n 3273846 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 12:00:28 12:00:00 \r\n 3274766 train_lam_ful_tfrecord accelerated 32 TIMEOUT 00:10:02 00:10:00 \r\n 3276030 train_tokenizer_overfit_seedi+ accelerated 8 FAILED 00:01:35 00:10:00 \r\n 3276039 train_tokenizer_overfit_seedi+ accelerated 8 FAILED 00:00:56 00:10:00 \r\n 3276048 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 00:10:03 00:10:00 \r\n 3276051 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 00:30:01 00:30:00 \r\n 3276052 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:02 01:00:00 \r\n 3276053 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:02 01:00:00 \r\n 3276058 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:03 01:00:00 \r\n 3276715 train_lam_ful_tfrecord accelerated 32 TIMEOUT 00:10:13 00:10:00 \r\n 3277318 train_lam_ful_tfrecord accelerated 32 TIMEOUT 16:00:27 16:00:00 \r\n 3282472 train_dyn_knoms_full-test accelerated 32 TIMEOUT 00:10:24 00:10:00 \r\n 3282485 train_dyn_knoms_full accelerated 32 FAILED 00:00:27 1-00:00:00 \r\n 3282489 train_dyn_knoms_full accelerated 32 TIMEOUT 1-00:00:27 1-00:00:00 \r\n 3285784 train_tokenizer_overfit_tfrec+ accelerated 32 FAILED 00:00:28 00:10:00 \r\n 3285785 train_lam_overfit_tfrecord_10 accelerated 32 FAILED 00:00:32 00:10:00 \r\n 3285797 train_lam_overfit_tfrecord_10 accelerated 32 FAILED 00:00:28 00:10:00 \r\n 3285798 train_tokenizer_overfit_tfrec+ accelerated 32 FAILED 00:00:27 00:10:00 \r\n 3285811 train_tokenizer_overfit_tfrec+ accelerated 32 TIMEOUT 00:10:07 00:10:00 \r\n 3285820 train_lam_overfit_tfrecord_10 accelerated 32 TIMEOUT 00:10:06 00:10:00 \r\n 3286113 train_lam_overfit_tfrecord_10 accelerated 32 TIMEOUT 1-00:00:09 1-00:00:00 \r\n 3286114 train_tokenizer_overfit_tfrec+ accelerated 32 TIMEOUT 1-00:00:09 1-00:00:00 \r\n 3286195 train_dyn_knoms_full_nodes_2 accelerated 64 TIMEOUT 00:10:26 00:10:00 \r\n 3287192 download_7xx accelerated 32 FAILED 00:00:27 00:10:00 \r\n 3287194 download_7xx accelerated 32 FAILED 00:00:26 00:10:00 \r\n 3287195 download_7xx accelerated 32 FAILED 00:00:26 00:10:00 \r\n 3287198 download_6xx accelerated 32 TIMEOUT 00:10:18 00:10:00 \r\n 3287213 download_6xx cpuonly 152 COMPLETED 01:44:02 06:00:00 \r\n 3287214 download_7xx cpuonly 152 COMPLETED 04:27:48 06:00:00 \r\n 3287215 download_8xx cpuonly 152 COMPLETED 01:07:53 06:00:00 \r\n 3287216 download_9xx cpuonly 152 COMPLETED 02:11:44 06:00:00 \r\n 3287217 download_10xx cpuonly 152 COMPLETED 01:10:01 06:00:00 \r\n 3289199 download_6xx cpuonly 152 COMPLETED 03:05:47 06:00:00 \r\n 3289204 download_7xx cpuonly 152 COMPLETED 05:07:25 06:00:00 \r\n 3289205 download_8xx cpuonly 152 COMPLETED 01:27:47 06:00:00 \r\n 3289206 download_9xx cpuonly 152 COMPLETED 02:27:37 06:00:00 \r\n 3289207 download_10xx cpuonly 152 COMPLETED 01:25:46 06:00:00 \r\n 3289242 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:32 00:10:00 \r\n 3289247 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:33 00:10:00 \r\n 3289322 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:20 00:10:00 \r\n 3289376 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:17 00:10:00 \r\n 3289389 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:33 00:10:00 \r\n 3289394 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:03:42 00:10:00 \r\n 3289433 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:16 00:10:00 \r\n 3289439 mp4_to_npy_openai_first_try_8+ cpuonly 152 COMPLETED 00:08:49 00:10:00 \r\n 3289469 mp4_to_npy_openai_first_try_6+ cpuonly 152 COMPLETED 00:18:29 01:00:00 \r\n 3289483 mp4_to_npy_openai_first_try_7+ cpuonly 152 COMPLETED 00:48:15 01:00:00 \r\n 3289484 mp4_to_npy_openai_first_try_8+ cpuonly 152 COMPLETED 00:08:43 01:00:00 \r\n 3289485 mp4_to_npy_openai_first_try_9+ cpuonly 152 COMPLETED 00:32:34 01:00:00 \r\n 3289486 mp4_to_npy_openai_first_try_1+ cpuonly 152 COMPLETED 00:08:10 01:00:00 \r\n 3289548 train_dyn_overfit_tfrecord_10 accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3289577 train_dyn_overfit_tfrecord_10 accelerated 32 RUNNING 22:41:58 1-00:00:00 \r\n 3290215 npy_to_tfrecord_6xx cpuonly 152 COMPLETED 00:01:01 00:10:00 \r\n 3290230 npy_to_tfrecord_6xx cpuonly 152 TIMEOUT 00:10:06 00:10:00 \r\n 3290234 mp4_to_npy_openai_all cpuonly 152 TIMEOUT 00:10:06 00:10:00 \r\n 3290235 npy_to_tfrecord_7xx cpuonly 152 COMPLETED 01:45:34 02:00:00 \r\n 3290241 mp4_to_npy_openai_all cpuonly 152 COMPLETED 01:23:07 12:00:00 \r\n 3290255 npy_to_tfrecord_6xx cpuonly 152 COMPLETED 01:01:32 03:00:00 \r\n 3290256 npy_to_tfrecord_8xx cpuonly 152 COMPLETED 00:27:07 03:00:00 \r\n 3290257 npy_to_tfrecord_9xx cpuonly 152 COMPLETED 00:48:28 03:00:00 \r\n 3290258 npy_to_tfrecord_10xx cpuonly 152 COMPLETED 00:27:30 03:00:00 \r\n 3292019 train_tokenizer_coinrun accelerated 32 FAILED 00:00:28 06:00:00 \r\n 3292064 sample_knoms_overfit_10 accelerated 0 PENDING 00:00:00 00:45:00 \r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +286,548549,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=06:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_tokenizer.py \\n --batch_size=192 \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n",shellscript,tab +287,549497,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",20,0,"",shellscript,selection_command +288,549726,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",21,0,"",shellscript,selection_command +289,549747,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",39,0,"",shellscript,selection_command +290,550089,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",67,0,"",shellscript,selection_command +291,551163,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",83,0,"",shellscript,selection_command +292,551801,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",83,1,"0",shellscript,content +293,552148,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",84,0,"",shellscript,selection_command +294,552341,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",85,0,"",shellscript,selection_command +295,552708,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",85,1,"1",shellscript,content +296,561848,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",109,0,"",shellscript,selection_command +297,562099,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",141,0,"",shellscript,selection_command +298,562123,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",179,0,"",shellscript,selection_command +299,609868,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",667,0,"",shellscript,selection_mouse +300,610973,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",668,0,"",shellscript,selection_command +301,612709,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",707,0,"/tokenizer",shellscript,content +302,612709,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",691,5,"",shellscript,content +303,613759,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",702,10,"",shellscript,content +304,613767,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",691,0,"data/",shellscript,content +305,616450,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",669,0,"",shellscript,selection_command +306,616697,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",670,0,"",shellscript,selection_command +307,616728,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",671,0,"",shellscript,selection_command +308,616756,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",672,0,"",shellscript,selection_command +309,616789,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",673,0,"",shellscript,selection_command +310,616823,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",674,0,"",shellscript,selection_command +311,616858,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",675,0,"",shellscript,selection_command +312,616890,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",676,0,"",shellscript,selection_command +313,616923,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",677,0,"",shellscript,selection_command +314,616956,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",678,0,"",shellscript,selection_command +315,616991,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",679,0,"",shellscript,selection_command +316,617028,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",680,0,"",shellscript,selection_command +317,617062,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",681,0,"",shellscript,selection_command +318,617095,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",682,0,"",shellscript,selection_command +319,617128,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",683,0,"",shellscript,selection_command +320,617162,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",684,0,"",shellscript,selection_command +321,617195,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",685,0,"",shellscript,selection_command +322,617229,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",686,0,"",shellscript,selection_command +323,617262,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",687,0,"",shellscript,selection_command +324,617296,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",688,0,"",shellscript,selection_command +325,617329,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",689,0,"",shellscript,selection_command +326,617362,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",690,0,"",shellscript,selection_command +327,617527,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",691,0,"",shellscript,selection_command +328,618036,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",691,4,"",shellscript,content +329,618523,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",691,1,"",shellscript,content +330,620053,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",815,0,"",shellscript,selection_command +331,620304,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",797,0,"",shellscript,selection_command +332,620336,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",772,0,"",shellscript,selection_command +333,620371,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",727,0,"",shellscript,selection_command +334,620404,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",668,0,"",shellscript,selection_command +335,635976,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",682,0,"",shellscript,selection_command +336,636205,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",684,0,"",shellscript,selection_command +337,636382,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",690,0,"",shellscript,selection_command +338,637856,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",691,0,"",shellscript,selection_command +339,638198,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",702,0,"",shellscript,selection_command +340,639106,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",702,0,"/",shellscript,content +341,639108,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",703,0,"",shellscript,selection_keyboard +342,639428,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",703,0,"t",shellscript,content +343,639428,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",704,0,"",shellscript,selection_keyboard +344,639526,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",704,0,"o",shellscript,content +345,639527,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",705,0,"",shellscript,selection_keyboard +346,639599,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",705,0,"k",shellscript,content +347,639600,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",706,0,"",shellscript,selection_keyboard +348,640724,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",706,0,"e",shellscript,content +349,640726,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",707,0,"",shellscript,selection_keyboard +350,641011,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",707,0,"n",shellscript,content +351,641012,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",708,0,"",shellscript,selection_keyboard +352,641114,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",708,0,"i",shellscript,content +353,641115,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",709,0,"",shellscript,selection_keyboard +354,641232,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",709,0,"z",shellscript,content +355,641233,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",710,0,"",shellscript,selection_keyboard +356,641377,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",710,0,"e",shellscript,content +357,641377,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",711,0,"",shellscript,selection_keyboard +358,641443,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",711,0,"r",shellscript,content +359,641444,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",712,0,"",shellscript,selection_keyboard +360,642223,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",711,0,"",shellscript,selection_command +361,642540,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",780,0,"",shellscript,selection_command +362,647504,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",711,0,"",shellscript,selection_command +363,648809,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",780,0,"",shellscript,selection_command +364,649331,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",805,0,"",shellscript,selection_command +365,669096,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",780,0,"",shellscript,selection_command +366,669350,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",711,0,"",shellscript,selection_command +367,669379,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",667,0,"",shellscript,selection_command +368,669416,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",645,0,"",shellscript,selection_command +369,669439,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",601,0,"",shellscript,selection_command +370,669477,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",599,0,"",shellscript,selection_command +371,669512,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",572,0,"",shellscript,selection_command +372,669545,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",548,0,"",shellscript,selection_command +373,669580,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",546,0,"",shellscript,selection_command +374,669612,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",520,0,"",shellscript,selection_command +375,669645,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",490,0,"",shellscript,selection_command +376,669678,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",461,0,"",shellscript,selection_command +377,669712,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",459,0,"",shellscript,selection_command +378,669746,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",452,0,"",shellscript,selection_command +379,669779,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",429,0,"",shellscript,selection_command +380,669938,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",427,0,"",shellscript,selection_command +381,670132,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",403,0,"",shellscript,selection_command +382,670283,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",360,0,"",shellscript,selection_command +383,670539,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",307,0,"",shellscript,selection_command +384,670563,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",251,0,"",shellscript,selection_command +385,670595,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",206,0,"",shellscript,selection_command +386,670629,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",185,0,"",shellscript,selection_command +387,670661,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",159,0,"",shellscript,selection_command +388,670694,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",121,0,"",shellscript,selection_command +389,670728,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",89,0,"",shellscript,selection_command +390,670762,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",65,0,"",shellscript,selection_command +391,670795,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",37,0,"",shellscript,selection_command +392,670828,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",20,0,"",shellscript,selection_command +393,670862,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",18,0,"",shellscript,selection_command +394,671284,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",20,0,"",shellscript,selection_command +395,671539,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",37,0,"",shellscript,selection_command +396,671571,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",65,0,"",shellscript,selection_command +397,671597,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",89,0,"",shellscript,selection_command +398,671630,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",121,0,"",shellscript,selection_command +399,671662,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",159,0,"",shellscript,selection_command +400,671696,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",185,0,"",shellscript,selection_command +401,671731,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",206,0,"",shellscript,selection_command +402,671763,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",251,0,"",shellscript,selection_command +403,671797,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",307,0,"",shellscript,selection_command +404,671830,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",360,0,"",shellscript,selection_command +405,671862,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",403,0,"",shellscript,selection_command +406,687008,"TERMINAL",0,0,"sbatch sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",,terminal_command +407,687056,"TERMINAL",0,0,"]633;E;2025-06-25 18:21:13 sbatch sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch;51d28899-9c82-42ba-85dc-9716395db034]633;CSubmitted batch job 3292092\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +408,696397,"TERMINAL",0,0,"queue",,terminal_command +409,696449,"TERMINAL",0,0,"]633;E;2025-06-25 18:21:22 queue;51d28899-9c82-42ba-85dc-9716395db034]633;C",,terminal_output +410,696513,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Wed Jun 25 18:21:23 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3292064 accelerat sample_k tum_ind3 CG\t0:59\t 1 hkn04163292092 accelerat train_to tum_ind3 PD\t0:00\t 1 (Priority)3289577 accelerat train_dy tum_ind3 R 22:44:47\t 1 hkn0712",,terminal_output +411,697570,"TERMINAL",0,0,"48",,terminal_output +412,698613,"TERMINAL",0,0,"59",,terminal_output +413,699695,"TERMINAL",0,0,"650",,terminal_output +414,700268,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar",,terminal_output +415,704589,"TERMINAL",0,0,"fsacct_week",,terminal_command +416,704640,"TERMINAL",0,0,"]633;E;2025-06-25 18:21:31 fsacct_week ;51d28899-9c82-42ba-85dc-9716395db034]633;C",,terminal_output +417,704683,"TERMINAL",0,0," JobID JobName Partition All State Elapsed Timelimit \r\n--------------- ------------------------------ ---------------- --- ------------ ---------- ---------- \r\n 3273476 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:06 00:10:00 \r\n 3273480 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:00:32 00:10:00 \r\n 3273494 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:40 00:10:00 \r\n 3273503 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:16 00:10:00 \r\n 3273681 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3273687 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:16 00:10:00 \r\n 3273795 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3273820 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:00:31 00:15:00 \r\n 3273828 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 1-00:00:10 1-00:00:00 \r\n 3273829 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 1-00:00:10 1-00:00:00 \r\n 3273831 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 12:00:29 12:00:00 \r\n 3273841 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:13 12:00:00 \r\n 3273846 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 12:00:28 12:00:00 \r\n 3274766 train_lam_ful_tfrecord accelerated 32 TIMEOUT 00:10:02 00:10:00 \r\n 3276030 train_tokenizer_overfit_seedi+ accelerated 8 FAILED 00:01:35 00:10:00 \r\n 3276039 train_tokenizer_overfit_seedi+ accelerated 8 FAILED 00:00:56 00:10:00 \r\n 3276048 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 00:10:03 00:10:00 \r\n 3276051 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 00:30:01 00:30:00 \r\n 3276052 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:02 01:00:00 \r\n 3276053 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:02 01:00:00 \r\n 3276058 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:03 01:00:00 \r\n 3276715 train_lam_ful_tfrecord accelerated 32 TIMEOUT 00:10:13 00:10:00 \r\n 3277318 train_lam_ful_tfrecord accelerated 32 TIMEOUT 16:00:27 16:00:00 \r\n 3282472 train_dyn_knoms_full-test accelerated 32 TIMEOUT 00:10:24 00:10:00 \r\n 3282485 train_dyn_knoms_full accelerated 32 FAILED 00:00:27 1-00:00:00 \r\n 3282489 train_dyn_knoms_full accelerated 32 TIMEOUT 1-00:00:27 1-00:00:00 \r\n 3285784 train_tokenizer_overfit_tfrec+ accelerated 32 FAILED 00:00:28 00:10:00 \r\n 3285785 train_lam_overfit_tfrecord_10 accelerated 32 FAILED 00:00:32 00:10:00 \r\n 3285797 train_lam_overfit_tfrecord_10 accelerated 32 FAILED 00:00:28 00:10:00 \r\n 3285798 train_tokenizer_overfit_tfrec+ accelerated 32 FAILED 00:00:27 00:10:00 \r\n 3285811 train_tokenizer_overfit_tfrec+ accelerated 32 TIMEOUT 00:10:07 00:10:00 \r\n 3285820 train_lam_overfit_tfrecord_10 accelerated 32 TIMEOUT 00:10:06 00:10:00 \r\n 3286113 train_lam_overfit_tfrecord_10 accelerated 32 TIMEOUT 1-00:00:09 1-00:00:00 \r\n 3286114 train_tokenizer_overfit_tfrec+ accelerated 32 TIMEOUT 1-00:00:09 1-00:00:00 \r\n 3286195 train_dyn_knoms_full_nodes_2 accelerated 64 TIMEOUT 00:10:26 00:10:00 \r\n 3287192 download_7xx accelerated 32 FAILED 00:00:27 00:10:00 \r\n 3287194 download_7xx accelerated 32 FAILED 00:00:26 00:10:00 \r\n 3287195 download_7xx accelerated 32 FAILED 00:00:26 00:10:00 \r\n 3287198 download_6xx accelerated 32 TIMEOUT 00:10:18 00:10:00 \r\n 3287213 download_6xx cpuonly 152 COMPLETED 01:44:02 06:00:00 \r\n 3287214 download_7xx cpuonly 152 COMPLETED 04:27:48 06:00:00 \r\n 3287215 download_8xx cpuonly 152 COMPLETED 01:07:53 06:00:00 \r\n 3287216 download_9xx cpuonly 152 COMPLETED 02:11:44 06:00:00 \r\n 3287217 download_10xx cpuonly 152 COMPLETED 01:10:01 06:00:00 \r\n 3289199 download_6xx cpuonly 152 COMPLETED 03:05:47 06:00:00 \r\n 3289204 download_7xx cpuonly 152 COMPLETED 05:07:25 06:00:00 \r\n 3289205 download_8xx cpuonly 152 COMPLETED 01:27:47 06:00:00 \r\n 3289206 download_9xx cpuonly 152 COMPLETED 02:27:37 06:00:00 \r\n 3289207 download_10xx cpuonly 152 COMPLETED 01:25:46 06:00:00 \r\n 3289242 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:32 00:10:00 \r\n 3289247 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:33 00:10:00 \r\n 3289322 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:20 00:10:00 \r\n 3289376 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:17 00:10:00 \r\n 3289389 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:33 00:10:00 \r\n 3289394 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:03:42 00:10:00 \r\n 3289433 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:16 00:10:00 \r\n 3289439 mp4_to_npy_openai_first_try_8+ cpuonly 152 COMPLETED 00:08:49 00:10:00 \r\n 3289469 mp4_to_npy_openai_first_try_6+ cpuonly 152 COMPLETED 00:18:29 01:00:00 \r\n 3289483 mp4_to_npy_openai_first_try_7+ cpuonly 152 COMPLETED 00:48:15 01:00:00 \r\n 3289484 mp4_to_npy_openai_first_try_8+ cpuonly 152 COMPLETED 00:08:43 01:00:00 \r\n 3289485 mp4_to_npy_openai_first_try_9+ cpuonly 152 COMPLETED 00:32:34 01:00:00 \r\n 3289486 mp4_to_npy_openai_first_try_1+ cpuonly 152 COMPLETED 00:08:10 01:00:00 \r\n 3289548 train_dyn_overfit_tfrecord_10 accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3289577 train_dyn_overfit_tfrecord_10 accelerated 32 RUNNING 22:44:55 1-00:00:00 \r\n 3290215 npy_to_tfrecord_6xx cpuonly 152 COMPLETED 00:01:01 00:10:00 \r\n 3290230 npy_to_tfrecord_6xx cpuonly 152 TIMEOUT 00:10:06 00:10:00 \r\n 3290234 mp4_to_npy_openai_all cpuonly 152 TIMEOUT 00:10:06 00:10:00 \r\n 3290235 npy_to_tfrecord_7xx cpuonly 152 COMPLETED 01:45:34 02:00:00 \r\n 3290241 mp4_to_npy_openai_all cpuonly 152 COMPLETED 01:23:07 12:00:00 \r\n 3290255 npy_to_tfrecord_6xx cpuonly 152 COMPLETED 01:01:32 03:00:00 \r\n 3290256 npy_to_tfrecord_8xx cpuonly 152 COMPLETED 00:27:07 03:00:00 \r\n 3290257 npy_to_tfrecord_9xx cpuonly 152 COMPLETED 00:48:28 03:00:00 \r\n 3290258 npy_to_tfrecord_10xx cpuonly 152 COMPLETED 00:27:30 03:00:00 \r\n 3292019 train_tokenizer_coinrun accelerated 32 FAILED 00:00:28 06:00:00 \r\n 3292064 sample_knoms_overfit_10 accelerated 32 FAILED 00:00:59 00:45:00 \r\n 3292092 train_tokenizer_coinrun accelerated 0 PENDING 00:00:00 00:10:00 \r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +418,720114,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,tab +419,725701,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=0:45:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_dyn/%x_%j.log\n#SBATCH --error=logs/logs_training_dyn/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=sample_knoms_overfit_10\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\n# data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n# checkpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\n# seq_len=16\n# output_dir='sample_results/knoms/'\n\n# python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# # CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n\n## overfit tfrecord 10\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards/tfrecords_10'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3289577/genie_1750786631_12500'\nseq_len=16\noutput_dir='sample_results/knoms_overfit_10/'\nmkdir -p $output_dir\n\npython sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n\n2025-06-25 18:21:02.190597: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750868462.483590 3749385 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nE0000 00:00:1750868462.522401 3749385 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nW0000 00:00:1750868463.089230 3749385 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868463.089265 3749385 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868463.089270 3749385 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868463.089274 3749385 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\n╭─ Unrecognized options ──────────────────╮\n│ Unrecognized options: --output-dir │\n│ ─────────────────────────────────────── │\n│ For full helptext, run sample.py --help │\n╰─────────────────────────────────────────╯\n\n============================= JOB FEEDBACK =============================\n\nJob ID: 3292064\nCluster: hk\nUser/Group: tum_ind3695/hk-project-pai00039\nAccount: hk-project-p0023960\nState: FAILED (exit code 2)\nPartition: accelerated\nNodes: 1\nCores per node: 32\nNodelist: hkn0416\nCPU Utilized: 00:00:06\nCPU Efficiency: 0.32% of 00:31:28 core-walltime\nJob Wall-clock time: 00:00:59\nStarttime: Wed Jun 25 18:20:22 2025\nEndtime: Wed Jun 25 18:21:21 2025\nMemory Utilized: 436.23 MB\nMemory Efficiency: 0.00% of 0.00 MB\nEnergy Consumed: 22350 Joule / 6.20833333333333 Watthours\nAverage node power draw: 378.813559322034 Watt\n",log,tab +420,727558,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",20,0,"",log,selection_command +421,727790,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",21,0,"",log,selection_command +422,727818,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",39,0,"",log,selection_command +423,727850,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",67,0,"",log,selection_command +424,727883,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",90,0,"",log,selection_command +425,727917,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",122,0,"",log,selection_command +426,727959,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",160,0,"",log,selection_command +427,727986,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",186,0,"",log,selection_command +428,728019,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",207,0,"",log,selection_command +429,728052,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",257,0,"",log,selection_command +430,728086,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",306,0,"",log,selection_command +431,728122,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",349,0,"",log,selection_command +432,728153,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",392,0,"",log,selection_command +433,728187,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",416,0,"",log,selection_command +434,728220,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",417,0,"",log,selection_command +435,728252,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",441,0,"",log,selection_command +436,728285,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",448,0,"",log,selection_command +437,728319,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",449,0,"",log,selection_command +438,728353,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",479,0,"",log,selection_command +439,728385,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",509,0,"",log,selection_command +440,728419,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",541,0,"",log,selection_command +441,728452,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",542,0,"",log,selection_command +442,728489,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",643,0,"",log,selection_command +443,728520,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",765,0,"",log,selection_command +444,728552,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",778,0,"",log,selection_command +445,728588,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",815,0,"",log,selection_command +446,728619,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",816,0,"",log,selection_command +447,728653,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",945,0,"",log,selection_command +448,728686,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1055,0,"",log,selection_command +449,728719,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1056,0,"",log,selection_command +450,728751,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1079,0,"",log,selection_command +451,728785,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1191,0,"",log,selection_command +452,728819,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1311,0,"",log,selection_command +453,728852,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1322,0,"",log,selection_command +454,728886,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1368,0,"",log,selection_command +455,728919,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1389,0,"",log,selection_command +456,728952,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1390,0,"",log,selection_command +457,728986,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1517,0,"",log,selection_command +458,729020,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1518,0,"",log,selection_command +459,729052,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1728,0,"",log,selection_command +460,729085,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1815,0,"",log,selection_command +461,729119,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1990,0,"",log,selection_command +462,729564,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2168,0,"",log,selection_command +463,729815,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2343,0,"",log,selection_command +464,729841,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2518,0,"",log,selection_command +465,729872,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2693,0,"",log,selection_command +466,729905,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2868,0,"",log,selection_command +467,729937,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2912,0,"",log,selection_command +468,729972,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2956,0,"",log,selection_command +469,730005,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3000,0,"",log,selection_command +470,730040,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3044,0,"",log,selection_command +471,730073,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3088,0,"",log,selection_command +472,730107,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3089,0,"",log,selection_command +473,730141,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3162,0,"",log,selection_command +474,730180,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3163,0,"",log,selection_command +475,730212,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3179,0,"",log,selection_command +476,730244,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3191,0,"",log,selection_command +477,730278,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3235,0,"",log,selection_command +478,730314,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3264,0,"",log,selection_command +479,730345,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3292,0,"",log,selection_command +480,730379,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3315,0,"",log,selection_command +481,730411,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3324,0,"",log,selection_command +482,730446,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3343,0,"",log,selection_command +483,730478,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3361,0,"",log,selection_command +484,730511,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3384,0,"",log,selection_command +485,730545,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3432,0,"",log,selection_command +486,730580,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3462,0,"",log,selection_command +487,731420,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3432,0,"",log,selection_command +488,731675,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3384,0,"",log,selection_command +489,731700,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3361,0,"",log,selection_command +490,731737,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3343,0,"",log,selection_command +491,731766,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3324,0,"",log,selection_command +492,731800,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3315,0,"",log,selection_command +493,731833,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3292,0,"",log,selection_command +494,731865,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3264,0,"",log,selection_command +495,731899,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3235,0,"",log,selection_command +496,731931,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3191,0,"",log,selection_command +497,731965,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3179,0,"",log,selection_command +498,731999,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3163,0,"",log,selection_command +499,732033,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3162,0,"",log,selection_command +500,732064,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3089,0,"",log,selection_command +501,732099,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3088,0,"",log,selection_command +502,732132,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3044,0,"",log,selection_command +503,732165,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3000,0,"",log,selection_command +504,732197,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2956,0,"",log,selection_command +505,738555,"sample.py",0,0,"from dataclasses import dataclass\nimport time\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport numpy as np\nfrom orbax.checkpoint import PyTreeCheckpointer\nfrom PIL import Image, ImageDraw\nimport tyro\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_resolution: int = 64\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 8\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 8\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_dim: int = 512\n dyna_num_blocks: int = 12\n dyna_num_heads: int = 8\n\n\nargs = tyro.cli(Args)\nrng = jax.random.PRNGKey(args.seed)\n\n# --- Load Genie checkpoint ---\ngenie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n # Dynamics\n dyna_dim=args.dyna_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n)\nrng, _rng = jax.random.split(rng)\nimage_shape = (args.image_resolution, args.image_resolution, args.image_channels)\ndummy_inputs = dict(\n videos=jnp.zeros((args.batch_size, args.seq_len, *image_shape), dtype=jnp.float32),\n mask_rng=_rng,\n)\nrng, _rng = jax.random.split(rng)\nparams = genie.init(_rng, dummy_inputs)\nckpt = PyTreeCheckpointer().restore(args.checkpoint)[""model""][""params""][""params""]\nparams[""params""].update(ckpt)\n\n\n# --- Define autoregressive sampling loop ---\ndef _autoreg_sample(rng, video_batch, action_batch):\n vid = video_batch[:, : args.start_frame + 1]\n for frame_idx in range(args.start_frame + 1, args.seq_len):\n # --- Sample next frame ---\n print(""Frame"", frame_idx)\n rng, _rng = jax.random.split(rng)\n batch = dict(videos=vid, latent_actions=action_batch[:, :frame_idx], rng=_rng)\n new_frame = genie.apply(\n params,\n batch,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n method=Genie.sample,\n )\n vid = jnp.concatenate([vid, new_frame], axis=1)\n return vid\n\n\n# --- Get video + latent actions ---\ndataloader = get_dataloader(args.data_dir, args.seq_len, args.batch_size)\nvideo_batch = next(iter(dataloader))\n# Get latent actions from first video only\nfirst_video = video_batch[:1]\nbatch = dict(videos=first_video)\naction_batch = genie.apply(params, batch, False, method=Genie.vq_encode)\naction_batch = action_batch.reshape(1, args.seq_len - 1, 1)\n# Use actions from first video for all videos\naction_batch = jnp.repeat(action_batch, video_batch.shape[0], axis=0)\n\n# --- Sample + evaluate video ---\nvid = _autoreg_sample(rng, video_batch, action_batch)\ngt = video_batch[:, : vid.shape[1]].clip(0, 1).reshape(-1, *video_batch.shape[2:])\nrecon = vid.clip(0, 1).reshape(-1, *vid.shape[2:])\nssim = pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :]).mean()\nprint(f""SSIM: {ssim}"")\n\n# --- Construct video ---\nfirst_true = (video_batch[0:1] * 255).astype(np.uint8)\nfirst_pred = (vid[0:1] * 255).astype(np.uint8)\nfirst_video_comparison = np.zeros((2, *vid.shape[1:5]), dtype=np.uint8)\nfirst_video_comparison[0] = first_true[:, : vid.shape[1]]\nfirst_video_comparison[1] = first_pred\n# For other videos, only show generated video\nother_preds = (vid[1:] * 255).astype(np.uint8)\nall_frames = np.concatenate([first_video_comparison, other_preds], axis=0)\nflat_vid = einops.rearrange(all_frames, ""n t h w c -> t h (n w) c"")\n\n# --- Save video ---\nimgs = [Image.fromarray(img) for img in flat_vid]\n# Write actions on each frame\nfor img, action in zip(imgs[1:], action_batch[0, :, 0]):\n d = ImageDraw.Draw(img)\n d.text((2, 2), f""{action}"", fill=255)\nimgs[0].save(\n f""generation_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n)\n",python,tab +506,739961,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",0,0,"",log,tab +507,740759,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2912,0,"",log,selection_command +508,741008,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2868,0,"",log,selection_command +509,741033,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2693,0,"",log,selection_command +510,741063,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2518,0,"",log,selection_command +511,741096,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2343,0,"",log,selection_command +512,741128,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",2168,0,"",log,selection_command +513,741162,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1990,0,"",log,selection_command +514,741196,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1815,0,"",log,selection_command +515,741229,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1728,0,"",log,selection_command +516,741263,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1518,0,"",log,selection_command +517,741299,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",1517,0,"",log,selection_command +518,746784,"sample_resolution_batches.py",0,0,"from dataclasses import dataclass\nimport time\nimport os\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport numpy as np\nfrom orbax.checkpoint import PyTreeCheckpointer\nfrom PIL import Image, ImageDraw\nimport tyro\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n output_dir: str = ""sample_results""\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 8\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 8\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_dim: int = 512\n dyna_num_blocks: int = 12\n dyna_num_heads: int = 8\n\n\nargs = tyro.cli(Args)\nrng = jax.random.PRNGKey(args.seed)\n\n# --- Load Genie checkpoint ---\ngenie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n # Dynamics\n dyna_dim=args.dyna_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n)\nrng, _rng = jax.random.split(rng)\nimage_shape = (args.image_height, args.image_width, args.image_channels)\ndummy_inputs = dict(\n videos=jnp.zeros((args.batch_size, args.seq_len, *image_shape), dtype=jnp.float32),\n mask_rng=_rng,\n)\nrng, _rng = jax.random.split(rng)\nparams = genie.init(_rng, dummy_inputs)\nckpt = PyTreeCheckpointer().restore(args.checkpoint)[""model""][""params""][""params""]\nparams[""params""].update(ckpt)\n\n\n# --- Define autoregressive sampling loop ---\ndef _autoreg_sample(rng, video_batch, action_batch):\n vid = video_batch[:, : args.start_frame + 1]\n for frame_idx in range(args.start_frame + 1, args.seq_len):\n # --- Sample next frame ---\n print(""Frame"", frame_idx)\n rng, _rng = jax.random.split(rng)\n batch = dict(videos=vid, latent_actions=action_batch[:, :frame_idx], rng=_rng)\n new_frame = genie.apply(\n params,\n batch,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n method=Genie.sample,\n )\n vid = jnp.concatenate([vid, new_frame], axis=1)\n return vid\n\n\n# --- Get video + latent actions ---\n\ntfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n]\nimage_shape = (args.image_height, args.image_width, args.image_channels)\n\ndataloader = get_dataloader(tfrecord_files, args.seq_len, args.batch_size, *image_shape)\nvideo_batch = next(iter(dataloader))\n# Get latent actions from first video only\nfirst_video = video_batch[:1]\nbatch = dict(videos=first_video)\naction_batch = genie.apply(params, batch, False, method=Genie.vq_encode)\naction_batch = action_batch.reshape(1, args.seq_len - 1, 1)\n# Use actions from first video for all videos\naction_batch = jnp.repeat(action_batch, video_batch.shape[0], axis=0)\n\n# --- Sample + evaluate video ---\nvid = _autoreg_sample(rng, video_batch, action_batch)\ngt = video_batch[:, : vid.shape[1]].clip(0, 1).reshape(-1, *video_batch.shape[2:])\nrecon = vid.clip(0, 1).reshape(-1, *vid.shape[2:])\nssim = pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :]).mean()\nprint(f""SSIM: {ssim}"")\n\n# --- Construct and save videos ---\n# Save first video comparison (true vs predicted)\nfirst_true = (video_batch[0:1] * 255).astype(np.uint8)\nfirst_pred = (vid[0:1] * 255).astype(np.uint8)\nfirst_video_comparison = np.zeros((2, *vid.shape[1:5]), dtype=np.uint8)\nfirst_video_comparison[0] = first_true[:, : vid.shape[1]]\nfirst_video_comparison[1] = first_pred\n\n# Create comparison frames for first video\ncomparison_frames = einops.rearrange(first_video_comparison, ""n t h w c -> t h (n w) c"")\nimgs = [Image.fromarray(img) for img in comparison_frames]\n# Write actions on each frame\nfor img, action in zip(imgs[1:], action_batch[0, :, 0]):\n d = ImageDraw.Draw(img)\n d.text((2, 2), f""{action}"", fill=255)\nimgs[0].save(\n f""generation_video_0_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n)\n\n# Save each other video in its own GIF\n\noutput_dir = f""{args.output_dir}/{time.time()}""\nos.makedirs(output_dir, exist_ok=True)\nfor i in range(1, video_batch.shape[0]):\n # Create comparison: true video vs predicted video\n true_video = (video_batch[i:i+1] * 255).astype(np.uint8)\n pred_video = (vid[i:i+1] * 255).astype(np.uint8)\n video_comparison = np.zeros((2, *vid.shape[1:5]), dtype=np.uint8)\n video_comparison[0] = true_video[:, : vid.shape[1]]\n video_comparison[1] = pred_video\n \n # Create comparison frames\n comparison_frames = einops.rearrange(video_comparison, ""n t h w c -> t h (n w) c"")\n imgs = [Image.fromarray(img) for img in comparison_frames]\n # Write actions on each frame\n for img, action in zip(imgs[1:], action_batch[i, :, 0]):\n d = ImageDraw.Draw(img)\n d.text((2, 2), f""{action}"", fill=255)\n\n imgs[0].save(\n f""{output_dir}/generation_video_{i}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n )\n",python,tab +519,749814,"sample_resolution_batches.py",34,0,"",python,selection_command +520,750048,"sample_resolution_batches.py",46,0,"",python,selection_command +521,750081,"sample_resolution_batches.py",56,0,"",python,selection_command +522,750113,"sample_resolution_batches.py",57,0,"",python,selection_command +523,750145,"sample_resolution_batches.py",78,0,"",python,selection_command +524,750178,"sample_resolution_batches.py",92,0,"",python,selection_command +525,750215,"sample_resolution_batches.py",103,0,"",python,selection_command +526,750245,"sample_resolution_batches.py",127,0,"",python,selection_command +527,750286,"sample_resolution_batches.py",146,0,"",python,selection_command +528,750313,"sample_resolution_batches.py",194,0,"",python,selection_command +529,750345,"sample_resolution_batches.py",227,0,"",python,selection_command +530,750378,"sample_resolution_batches.py",239,0,"",python,selection_command +531,750413,"sample_resolution_batches.py",240,0,"",python,selection_command +532,750444,"sample_resolution_batches.py",264,0,"",python,selection_command +533,750479,"sample_resolution_batches.py",308,0,"",python,selection_command +534,750512,"sample_resolution_batches.py",309,0,"",python,selection_command +535,750544,"sample_resolution_batches.py",310,0,"",python,selection_command +536,750577,"sample_resolution_batches.py",321,0,"",python,selection_command +537,750610,"sample_resolution_batches.py",333,0,"",python,selection_command +538,750647,"sample_resolution_batches.py",350,0,"",python,selection_command +539,750678,"sample_resolution_batches.py",368,0,"",python,selection_command +540,750712,"sample_resolution_batches.py",390,0,"",python,selection_command +541,750744,"sample_resolution_batches.py",418,0,"",python,selection_command +542,750777,"sample_resolution_batches.py",445,0,"",python,selection_command +543,750812,"sample_resolution_batches.py",472,0,"",python,selection_command +544,750845,"sample_resolution_batches.py",516,0,"",python,selection_command +545,750879,"sample_resolution_batches.py",541,0,"",python,selection_command +546,750913,"sample_resolution_batches.py",556,0,"",python,selection_command +547,750946,"sample_resolution_batches.py",580,0,"",python,selection_command +548,750981,"sample_resolution_batches.py",608,0,"",python,selection_command +549,751014,"sample_resolution_batches.py",637,0,"",python,selection_command +550,751047,"sample_resolution_batches.py",668,0,"",python,selection_command +551,751082,"sample_resolution_batches.py",693,0,"",python,selection_command +552,751116,"sample_resolution_batches.py",732,0,"",python,selection_command +553,751152,"sample_resolution_batches.py",759,0,"",python,selection_command +554,751186,"sample_resolution_batches.py",788,0,"",python,selection_command +555,751223,"sample_resolution_batches.py",819,0,"",python,selection_command +556,751254,"sample_resolution_batches.py",853,0,"",python,selection_command +557,751285,"sample_resolution_batches.py",877,0,"",python,selection_command +558,751321,"sample_resolution_batches.py",911,0,"",python,selection_command +559,751352,"sample_resolution_batches.py",944,0,"",python,selection_command +560,751387,"sample_resolution_batches.py",965,0,"",python,selection_command +561,751421,"sample_resolution_batches.py",988,0,"",python,selection_command +562,751455,"sample_resolution_batches.py",1020,0,"",python,selection_command +563,751489,"sample_resolution_batches.py",1052,0,"",python,selection_command +564,751521,"sample_resolution_batches.py",1081,0,"",python,selection_command +565,751555,"sample_resolution_batches.py",1109,0,"",python,selection_command +566,751586,"sample_resolution_batches.py",1136,0,"",python,selection_command +567,753006,"sample_resolution_batches.py",2376,0,"",python,selection_command +568,755311,"sample.py",0,0,"",python,tab +569,756756,"sample.py",418,0,"",python,selection_command +570,757782,"sample_resolution_batches.py",0,0,"",python,tab +571,758492,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",0,0,"",log,tab +572,759896,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,tab +573,762743,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",108,0,"",shellscript,selection_command +574,762991,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",140,0,"",shellscript,selection_command +575,763020,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",178,0,"",shellscript,selection_command +576,763054,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",204,0,"",shellscript,selection_command +577,763087,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",225,0,"",shellscript,selection_command +578,763122,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",275,0,"",shellscript,selection_command +579,763154,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",324,0,"",shellscript,selection_command +580,763187,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",367,0,"",shellscript,selection_command +581,763222,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",410,0,"",shellscript,selection_command +582,763254,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",416,0,"",shellscript,selection_command +583,763287,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",435,0,"",shellscript,selection_command +584,763320,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",446,0,"",shellscript,selection_command +585,763353,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",448,0,"",shellscript,selection_command +586,763388,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",467,0,"",shellscript,selection_command +587,763419,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",497,0,"",shellscript,selection_command +588,763453,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",527,0,"",shellscript,selection_command +589,763487,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",541,0,"",shellscript,selection_command +590,763519,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",560,0,"",shellscript,selection_command +591,763553,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",661,0,"",shellscript,selection_command +592,763586,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",776,0,"",shellscript,selection_command +593,763619,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",796,0,"",shellscript,selection_command +594,763653,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",815,0,"",shellscript,selection_command +595,763685,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",834,0,"",shellscript,selection_command +596,763718,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",963,0,"",shellscript,selection_command +597,763753,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1055,0,"",shellscript,selection_command +598,763785,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1074,0,"",shellscript,selection_command +599,763819,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1097,0,"",shellscript,selection_command +600,763853,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1209,0,"",shellscript,selection_command +601,763886,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1320,0,"",shellscript,selection_command +602,763920,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1340,0,"",shellscript,selection_command +603,763953,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1386,0,"",shellscript,selection_command +604,764158,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1389,0,"",shellscript,selection_command +605,764318,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1408,0,"",shellscript,selection_command +606,764505,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1517,0,"",shellscript,selection_command +607,764876,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1408,0,"",shellscript,selection_command +608,765114,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1407,0,"",shellscript,selection_command +609,765365,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1406,0,"",shellscript,selection_command +610,765388,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1405,0,"",shellscript,selection_command +611,765422,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1404,0,"",shellscript,selection_command +612,765455,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1403,0,"",shellscript,selection_command +613,765489,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1402,0,"",shellscript,selection_command +614,765893,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1403,0,"",shellscript,selection_command +615,766458,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1403,0,"_",shellscript,content +616,766461,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1404,0,"",shellscript,selection_keyboard +617,766724,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1404,0,"r",shellscript,content +618,766726,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1405,0,"",shellscript,selection_keyboard +619,766757,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1405,0,"e",shellscript,content +620,766758,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1406,0,"",shellscript,selection_keyboard +621,766863,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1406,0,"s",shellscript,content +622,766864,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1407,0,"",shellscript,selection_keyboard +623,767005,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1407,0,"o",shellscript,content +624,767006,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1408,0,"",shellscript,selection_keyboard +625,767706,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1408,0,"lution_batches",shellscript,content +626,767932,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1421,0,"",shellscript,selection_command +627,768115,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1389,0,"",shellscript,selection_command +628,768355,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1387,0,"",shellscript,selection_command +629,768385,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1353,0,"",shellscript,selection_command +630,768418,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1320,0,"",shellscript,selection_command +631,768454,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1222,0,"",shellscript,selection_command +632,768487,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1110,0,"",shellscript,selection_command +633,768523,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1077,0,"",shellscript,selection_command +634,768556,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1055,0,"",shellscript,selection_command +635,768597,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",976,0,"",shellscript,selection_command +636,768622,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",847,0,"",shellscript,selection_command +637,768657,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",815,0,"",shellscript,selection_command +638,768688,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",809,0,"",shellscript,selection_command +639,768723,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",776,0,"",shellscript,selection_command +640,768759,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",674,0,"",shellscript,selection_command +641,768794,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",573,0,"",shellscript,selection_command +642,768829,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",541,0,"",shellscript,selection_command +643,768863,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",539,0,"",shellscript,selection_command +644,768894,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",507,0,"",shellscript,selection_command +645,768928,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",477,0,"",shellscript,selection_command +646,768962,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",448,0,"",shellscript,selection_command +647,768995,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",446,0,"",shellscript,selection_command +648,769029,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",439,0,"",shellscript,selection_command +649,769062,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",416,0,"",shellscript,selection_command +650,769096,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",414,0,"",shellscript,selection_command +651,769131,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",380,0,"",shellscript,selection_command +652,769161,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",337,0,"",shellscript,selection_command +653,769195,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",288,0,"",shellscript,selection_command +654,769229,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",238,0,"",shellscript,selection_command +655,769562,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",205,0,"",shellscript,selection_command +656,769762,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",184,0,"",shellscript,selection_command +657,769940,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",153,0,"",shellscript,selection_command +658,770345,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",184,0,"",shellscript,selection_command +659,770533,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",205,0,"",shellscript,selection_command +660,772603,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",206,0,"",shellscript,selection_command +661,772933,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",205,1,"",shellscript,content +662,773053,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",205,0,"1",shellscript,content +663,773055,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",206,0,"",shellscript,selection_keyboard +664,773288,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",205,0,"",shellscript,selection_command +665,773374,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",179,0,"",shellscript,selection_command +666,773626,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",141,0,"",shellscript,selection_command +667,773673,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",109,0,"",shellscript,selection_command +668,773687,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",86,0,"",shellscript,selection_command +669,773723,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",58,0,"",shellscript,selection_command +670,774265,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",66,0,"",shellscript,selection_command +671,774557,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",65,1,"",shellscript,content +672,774709,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",65,0,"1",shellscript,content +673,774710,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",66,0,"",shellscript,selection_keyboard +674,775029,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",65,0,"",shellscript,selection_command +675,775225,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",88,0,"",shellscript,selection_command +676,775892,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",116,0,"",shellscript,selection_command +677,776110,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",148,0,"",shellscript,selection_command +678,776287,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",184,0,"",shellscript,selection_command +679,776497,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",205,0,"",shellscript,selection_command +680,776718,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",233,0,"",shellscript,selection_command +681,776949,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",283,0,"",shellscript,selection_command +682,777784,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",0,0,"",log,tab +683,779634,"logs/logs_training_dyn/sample_knoms_overfit_10_3292064.log",3700,0,"",log,selection_command +684,785229,"TERMINAL",0,0,"sbatch sbatch_scripts/sample_jafar/sample_knoms.sbatch",,terminal_command +685,785283,"TERMINAL",0,0,"]633;E;2025-06-25 18:22:51 sbatch sbatch_scripts/sample_jafar/sample_knoms.sbatch;51d28899-9c82-42ba-85dc-9716395db034]633;CSubmitted batch job 3292098\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +686,788062,"TERMINAL",0,0,"queue",,terminal_command +687,788163,"TERMINAL",0,0,"]633;E;2025-06-25 18:22:54 queue;51d28899-9c82-42ba-85dc-9716395db034]633;C[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Wed Jun 25 18:22:54 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3292098 accelerat sample_k tum_ind3 PD\t0:00\t 1 (Priority)3292092 accelerat train_to tum_ind3 R\t0:32\t 1 hkn04163289577 accelerat train_dy tum_ind3 R 22:46:18\t 1 hkn0712",,terminal_output +688,789215,"TERMINAL",0,0,"539",,terminal_output +689,790255,"TERMINAL",0,0,"6420",,terminal_output +690,791297,"TERMINAL",0,0,"751",,terminal_output +691,792338,"TERMINAL",0,0,"862",,terminal_output +692,793389,"TERMINAL",0,0,"973",,terminal_output +693,794433,"TERMINAL",0,0,"3:0084",,terminal_output +694,795143,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,tab +695,795477,"TERMINAL",0,0,"1406",,terminal_output +696,796532,"TERMINAL",0,0,"317",,terminal_output +697,796772,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",295,0,"oms",shellscript,content +698,796773,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",294,0,"k",shellscript,content +699,796773,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",292,2,"",shellscript,content +700,796773,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",291,0,"mple",shellscript,content +701,796773,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",286,5,"",shellscript,content +702,796773,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",285,0,"s",shellscript,content +703,796773,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",283,2,"",shellscript,content +704,796773,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",246,0,"oms",shellscript,content +705,796773,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",245,0,"k",shellscript,content +706,796774,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",243,2,"",shellscript,content +707,796774,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",242,0,"mple",shellscript,content +708,796774,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",237,5,"",shellscript,content +709,796774,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",236,0,"s",shellscript,content +710,796774,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",234,2,"",shellscript,content +711,797456,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",284,0,"",shellscript,selection_command +712,797580,"TERMINAL",0,0,"428",,terminal_output +713,797731,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",285,0,"",shellscript,selection_command +714,797901,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",286,0,"",shellscript,selection_command +715,798032,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",287,0,"",shellscript,selection_command +716,798197,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",288,0,"",shellscript,selection_command +717,798360,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",289,0,"",shellscript,selection_command +718,798622,"TERMINAL",0,0,"539",,terminal_output +719,798699,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",289,6,"",shellscript,content +720,798880,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",239,0,"",shellscript,selection_command +721,799172,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",240,0,"",shellscript,selection_command +722,799532,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",240,6,"",shellscript,content +723,799654,"TERMINAL",0,0,"6430",,terminal_output +724,800691,"TERMINAL",0,0,"751",,terminal_output +725,801730,"TERMINAL",0,0,"862",,terminal_output +726,802778,"TERMINAL",0,0,"973",,terminal_output +727,803826,"TERMINAL",0,0,"1084",,terminal_output +728,804867,"TERMINAL",0,0,"195",,terminal_output +729,805916,"TERMINAL",0,0,"2506",,terminal_output +730,806968,"TERMINAL",0,0,"317",,terminal_output +731,808020,"TERMINAL",0,0,"428",,terminal_output +732,809073,"TERMINAL",0,0,"539",,terminal_output +733,810141,"TERMINAL",0,0,"6440",,terminal_output +734,810335,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",496,0,"",shellscript,selection_mouse +735,810455,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",495,0,"",shellscript,selection_command +736,811160,"TERMINAL",0,0,"751",,terminal_output +737,812215,"TERMINAL",0,0,"862",,terminal_output +738,813266,"TERMINAL",0,0,"973",,terminal_output +739,814310,"TERMINAL",0,0,"2084",,terminal_output +740,815363,"TERMINAL",0,0,"195",,terminal_output +741,815609,"logs/logs_training_tokenizer/train_tokenizer_coinrun_3292092.log",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=00:10:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/tokenizer/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_tokenizer.py \\n --batch_size=192 \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n/var/spool/slurmd/job3292092/slurm_script: line 21: .venv/bin/activate: No such file or directory\nGpuFreq=control_disabled\n2025-06-25 18:22:54.718291: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 18:22:54.718335: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 18:22:54.718528: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 18:22:54.719395: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750868574.731435 3754283 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750868574.731628 3754284 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750868574.731775 3754285 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750868574.733060 3754282 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nE0000 00:00:1750868574.735700 3754283 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750868574.736015 3754284 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750868574.736456 3754285 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750868574.737579 3754282 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nW0000 00:00:1750868574.749117 3754283 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.749133 3754283 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.749134 3754283 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.749136 3754283 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.749795 3754284 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.749812 3754284 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.749813 3754284 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.749815 3754284 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.750050 3754285 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.750066 3754285 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.750068 3754285 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.750069 3754285 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.750293 3754282 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.750312 3754282 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.750314 3754282 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750868574.750315 3754282 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nwandb: Currently logged in as: avocadoali (instant-uv) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin\nwandb: Tracking run with wandb version 0.19.11\nwandb: Run data is saved locally in /hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar/wandb/run-20250625_182302-zyurga41\nwandb: Run `wandb offline` to turn off syncing.\nwandb: Syncing run ruby-water-557\nwandb: ⭐️ View project at https://wandb.ai/instant-uv/jafar\nwandb: 🚀 View run at https://wandb.ai/instant-uv/jafar/runs/zyurga41\n",log,tab +742,816400,"TERMINAL",0,0,"21:006",,terminal_output +743,817428,"TERMINAL",0,0,"317",,terminal_output +744,818480,"TERMINAL",0,0,"439",,terminal_output +745,819535,"TERMINAL",0,0,"6450",,terminal_output +746,820590,"TERMINAL",0,0,"751",,terminal_output +747,821643,"TERMINAL",0,0,"862",,terminal_output +748,822695,"TERMINAL",0,0,"973",,terminal_output +749,823724,"TERMINAL",0,0,"3084",,terminal_output +750,824774,"TERMINAL",0,0,"195",,terminal_output +751,825826,"TERMINAL",0,0,"2106",,terminal_output +752,826878,"TERMINAL",0,0,"317",,terminal_output +753,827932,"TERMINAL",0,0,"428",,terminal_output +754,828971,"TERMINAL",0,0,"539",,terminal_output +755,830011,"TERMINAL",0,0,"647:00",,terminal_output +756,831060,"TERMINAL",0,0,"751",,terminal_output +757,832119,"TERMINAL",0,0,"862",,terminal_output +758,833155,"TERMINAL",0,0,"973",,terminal_output +759,834209,"TERMINAL",0,0,"4084",,terminal_output +760,835261,"TERMINAL",0,0,"195",,terminal_output +761,836318,"TERMINAL",0,0,"2206",,terminal_output +762,837355,"TERMINAL",0,0,"317",,terminal_output +763,838414,"TERMINAL",0,0,"428",,terminal_output +764,839468,"TERMINAL",0,0,"5410",,terminal_output +765,840524,"TERMINAL",0,0,"751",,terminal_output +766,841575,"TERMINAL",0,0,"862",,terminal_output +767,842613,"TERMINAL",0,0,"973",,terminal_output +768,842878,"logs/logs_training_tokenizer/train_tokenizer_coinrun_3292092.log",7227,0,"",log,selection_mouse +769,843672,"TERMINAL",0,0,"5084",,terminal_output +770,844724,"TERMINAL",0,0,"195",,terminal_output +771,845772,"TERMINAL",0,0,"2306",,terminal_output +772,846819,"TERMINAL",0,0,"317",,terminal_output +773,847881,"TERMINAL",0,0,"428",,terminal_output +774,848935,"TERMINAL",0,0,"539",,terminal_output +775,849987,"TERMINAL",0,0,"6420",,terminal_output +776,851032,"TERMINAL",0,0,"751",,terminal_output +777,852087,"TERMINAL",0,0,"862",,terminal_output +778,853137,"TERMINAL",0,0,"973",,terminal_output +779,853303,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +780,854180,"TERMINAL",0,0,"4:0084",,terminal_output +781,855072,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",427,0,"",shellscript,selection_command +782,855229,"TERMINAL",0,0,"195",,terminal_output +783,855326,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",429,0,"",shellscript,selection_command +784,855349,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",452,0,"",shellscript,selection_command +785,855379,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",459,0,"",shellscript,selection_command +786,855411,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",461,0,"",shellscript,selection_command +787,855445,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",490,0,"",shellscript,selection_command +788,855478,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",520,0,"",shellscript,selection_command +789,855513,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",546,0,"",shellscript,selection_command +790,855545,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",548,0,"",shellscript,selection_command +791,855579,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",572,0,"",shellscript,selection_command +792,855613,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",599,0,"",shellscript,selection_command +793,855647,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",601,0,"",shellscript,selection_command +794,855680,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",643,0,"",shellscript,selection_command +795,855715,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",667,0,"",shellscript,selection_command +796,855748,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",709,0,"",shellscript,selection_command +797,855781,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",778,0,"",shellscript,selection_command +798,855819,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",805,0,"",shellscript,selection_command +799,855849,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",823,0,"",shellscript,selection_command +800,856283,"TERMINAL",0,0,"2406",,terminal_output +801,857326,"TERMINAL",0,0,"317",,terminal_output +802,858382,"TERMINAL",0,0,"428",,terminal_output +803,859423,"TERMINAL",0,0,"539",,terminal_output +804,860469,"TERMINAL",0,0,"6531",,terminal_output +805,861520,"TERMINAL",0,0,"862",,terminal_output +806,861964,"train_tokenizer.py",0,0,"from dataclasses import dataclass\nimport os\nimport time\n\nimport einops\nfrom flax.training import orbax_utils\nfrom flax.training.train_state import TrainState\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax\nfrom orbax.checkpoint import PyTreeCheckpointer\nimport numpy as np\nimport dm_pix as pix\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\n\nfrom models.tokenizer import TokenizerVQVAE\nfrom utils.dataloader import get_dataloader\n\nts = int(time.time())\n\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 300_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data_tfrecords/coinrun""\n checkpoint: str = """"\n # Optimization\n vq_beta: float = 0.25\n batch_size: int = 48\n min_lr: float = 3e-4\n max_lr: float = 3e-4\n warmup_steps: int = 10000\n # Tokenizer\n model_dim: int = 512\n latent_dim: int = 32\n num_latents: int = 1024\n patch_size: int = 4\n num_blocks: int = 8\n num_heads: int = 8\n dropout: float = 0.0\n codebook_dropout: float = 0.01\n # Logging\n log: bool = False\n entity: str = """"\n project: str = """"\n log_interval: int = 5\n log_image_interval: int = 250\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 10000\n log_gradients: bool = False\n\n\nargs = tyro.cli(Args)\n\n\ndef tokenizer_loss_fn(params, state, inputs):\n # --- Compute loss ---\n outputs = state.apply_fn(\n params,\n inputs,\n training=True,\n rngs={""params"": inputs[""rng""], ""dropout"": inputs[""dropout_rng""]},\n )\n mse = jnp.square(inputs[""videos""] - outputs[""recon""]).mean()\n q_loss = jnp.square(jax.lax.stop_gradient(outputs[""emb""]) - outputs[""z""]).mean()\n commitment_loss = jnp.square(\n outputs[""emb""] - jax.lax.stop_gradient(outputs[""z""])\n ).mean()\n loss = mse + q_loss + args.vq_beta * commitment_loss\n\n # --- Compute validation metrics ---\n gt = inputs[""videos""].clip(0, 1).reshape(-1, *inputs[""videos""].shape[2:])\n recon = outputs[""recon""].clip(0, 1).reshape(-1, *outputs[""recon""].shape[2:])\n psnr = pix.psnr(gt, recon).mean()\n ssim = pix.ssim(gt, recon).mean()\n _, index_counts = jnp.unique_counts(\n jnp.ravel(outputs[""indices""]), size=args.num_latents, fill_value=0\n )\n codebook_usage = (index_counts != 0).mean()\n metrics = dict(\n loss=loss,\n mse=mse,\n q_loss=q_loss,\n commitment_loss=commitment_loss,\n psnr=psnr,\n ssim=ssim,\n codebook_usage=codebook_usage,\n )\n return loss, (outputs[""recon""], metrics)\n\n\n@jax.jit\ndef train_step(state, inputs):\n grad_fn = jax.value_and_grad(tokenizer_loss_fn, has_aux=True, allow_int=True)\n (loss, (recon, metrics)), grads = grad_fn(state.params, state, inputs)\n state = state.apply_gradients(grads=grads)\n if args.log_gradients:\n metrics[""encoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""encoder""]\n )\n metrics[""vq_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""vq""]\n )\n metrics[""decoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""decoder""]\n )\n return state, loss, recon, metrics\n\n\nif __name__ == ""__main__"":\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n per_device_batch_size_for_init = args.batch_size // num_devices\n\n rng = jax.random.PRNGKey(args.seed)\n if args.log and jax.process_index() == 0:\n wandb.init(entity=args.entity, project=args.project, group=""debug"", config=args)\n\n # --- Initialize model ---\n tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.model_dim,\n latent_dim=args.latent_dim,\n num_latents=args.num_latents,\n patch_size=args.patch_size,\n num_blocks=args.num_blocks,\n num_heads=args.num_heads,\n dropout=args.dropout,\n codebook_dropout=args.codebook_dropout,\n )\n rng, _rng = jax.random.split(rng)\n image_shape = (args.image_height, args.image_width, args.image_channels)\n inputs = dict(\n videos=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len, *image_shape),\n dtype=jnp.float32,\n ),\n )\n init_params = tokenizer.init(_rng, inputs)\n\n # --- Initialize optimizer ---\n lr_schedule = optax.warmup_cosine_decay_schedule(\n args.min_lr, args.max_lr, args.warmup_steps, args.num_steps\n )\n tx = optax.adamw(learning_rate=lr_schedule, b1=0.9, b2=0.9, weight_decay=1e-4)\n train_state = TrainState.create(apply_fn=tokenizer.apply, params=init_params, tx=tx)\n\n # FIXME: switch to create_hybrid_device_mesh for runs spanning multiple nodes\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n train_state = jax.device_put(train_state, replicated_sharding)\n\n # --- Load checkpoint ---\n step = 0\n if args.checkpoint:\n restore_target = {""model"": train_state}\n restore_args = orbax_utils.restore_args_from_target(restore_target)\n train_state.params[""params""].update(\n PyTreeCheckpointer()\n .restore(args.checkpoint, item=restore_target, restore_args=restore_args)[\n ""model""\n ]\n .params[""params""]\n )\n # Assume checkpoint is of the form tokenizer__\n step += int(args.checkpoint.split(""_"")[-1])\n\n # --- TRAIN LOOP ---\n tfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n ]\n dataloader = get_dataloader(\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n tfrecord_files,\n args.seq_len,\n args.batch_size,\n *image_shape,\n )\n print(f""Starting training from step {step}..."")\n while step < args.num_steps:\n for videos in dataloader:\n # --- Train step ---\n rng, _rng, _rng_dropout = jax.random.split(rng, 3)\n\n videos_sharding = NamedSharding(\n mesh, PartitionSpec(""data"", None, None, None, None)\n )\n videos = jax.make_array_from_process_local_data(videos_sharding, videos)\n\n inputs = dict(videos=videos, rng=_rng, dropout_rng=_rng_dropout)\n start_time = time.time()\n train_state, loss, recon, metrics = train_step(train_state, inputs)\n elapsed_time = (time.time() - start_time) * 1000\n print(f""Step {step}, loss: {loss}, step time: {elapsed_time}ms"")\n step += 1\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n wandb.log(\n {\n ""loss"": loss,\n ""step"": step,\n ""step_time_ms"": elapsed_time,\n **metrics,\n }\n )\n if step % args.log_image_interval == 0:\n gt_seq = inputs[""videos""][0]\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n # NOTE: Process-dependent control flow deliberately happens\n # after indexing operation since it must not contain code\n # sections that lead to cross-accelerator communication.\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[0])),\n recon=wandb.Image(np.asarray(recon_seq[0])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n wandb.log(log_images)\n if step % args.log_checkpoint_interval == 0:\n ckpt = {""model"": train_state}\n orbax_checkpointer = orbax.checkpoint.PyTreeCheckpointer()\n save_args = orbax_utils.save_args_from_target(ckpt)\n orbax_checkpointer.save(\n os.path.join(os.getcwd(), args.ckpt_dir, f""tokenizer_{ts}_{step}""),\n ckpt,\n save_args=save_args,\n )\n if step >= args.num_steps:\n break\n",python,tab +807,862563,"TERMINAL",0,0,"973",,terminal_output +808,863612,"TERMINAL",0,0,"1084",,terminal_output +809,864423,"train_tokenizer.py",7380,0,"",python,selection_command +810,864664,"TERMINAL",0,0,"195",,terminal_output +811,864828,"train_tokenizer.py",3977,0,"",python,selection_command +812,865706,"TERMINAL",0,0,"2506",,terminal_output +813,866750,"TERMINAL",0,0,"317",,terminal_output +814,866966,"train_tokenizer.py",445,0,"",python,selection_command +815,867797,"TERMINAL",0,0,"428",,terminal_output +816,868173,"train_tokenizer.py",451,0,"",python,selection_command +817,868467,"train_tokenizer.py",459,0,"",python,selection_command +818,868470,"train_tokenizer.py",503,0,"",python,selection_command +819,868496,"train_tokenizer.py",540,0,"",python,selection_command +820,868523,"train_tokenizer.py",548,0,"",python,selection_command +821,868556,"train_tokenizer.py",563,0,"",python,selection_command +822,868588,"train_tokenizer.py",564,0,"",python,selection_command +823,868622,"train_tokenizer.py",572,0,"",python,selection_command +824,868655,"train_tokenizer.py",583,0,"",python,selection_command +825,868691,"train_tokenizer.py",595,0,"",python,selection_command +826,868722,"train_tokenizer.py",612,0,"",python,selection_command +827,868754,"train_tokenizer.py",641,0,"",python,selection_command +828,868787,"train_tokenizer.py",659,0,"",python,selection_command +829,868823,"train_tokenizer.py",681,0,"",python,selection_command +830,868846,"TERMINAL",0,0,"539",,terminal_output +831,868855,"train_tokenizer.py",709,0,"",python,selection_command +832,868888,"train_tokenizer.py",736,0,"",python,selection_command +833,868921,"train_tokenizer.py",763,0,"",python,selection_command +834,869024,"train_tokenizer.py",808,0,"",python,selection_command +835,869029,"train_tokenizer.py",833,0,"",python,selection_command +836,869033,"train_tokenizer.py",852,0,"",python,selection_command +837,869054,"train_tokenizer.py",878,0,"",python,selection_command +838,869087,"train_tokenizer.py",903,0,"",python,selection_command +839,869122,"train_tokenizer.py",928,0,"",python,selection_command +840,869155,"train_tokenizer.py",953,0,"",python,selection_command +841,869193,"train_tokenizer.py",983,0,"",python,selection_command +842,869220,"train_tokenizer.py",999,0,"",python,selection_command +843,869254,"train_tokenizer.py",1024,0,"",python,selection_command +844,869287,"train_tokenizer.py",1049,0,"",python,selection_command +845,869326,"train_tokenizer.py",1077,0,"",python,selection_command +846,869355,"train_tokenizer.py",1101,0,"",python,selection_command +847,869389,"train_tokenizer.py",1125,0,"",python,selection_command +848,869424,"train_tokenizer.py",1148,0,"",python,selection_command +849,869456,"train_tokenizer.py",1173,0,"",python,selection_command +850,869488,"train_tokenizer.py",1208,0,"",python,selection_command +851,869521,"train_tokenizer.py",1222,0,"",python,selection_command +852,869554,"train_tokenizer.py",1244,0,"",python,selection_command +853,869588,"train_tokenizer.py",1265,0,"",python,selection_command +854,869626,"train_tokenizer.py",1287,0,"",python,selection_command +855,869654,"train_tokenizer.py",1313,0,"",python,selection_command +856,869688,"train_tokenizer.py",1347,0,"",python,selection_command +857,869722,"train_tokenizer.py",1370,0,"",python,selection_command +858,869754,"train_tokenizer.py",1411,0,"",python,selection_command +859,869788,"train_tokenizer.py",1436,0,"",python,selection_command +860,869821,"train_tokenizer.py",1437,0,"",python,selection_command +861,869854,"train_tokenizer.py",1445,0,"",python,selection_command +862,869897,"TERMINAL",0,0,"6440",,terminal_output +863,870143,"train_tokenizer.py",1437,0,"",python,selection_command +864,870287,"train_tokenizer.py",1436,0,"",python,selection_command +865,870608,"train_tokenizer.py",1411,0,"",python,selection_command +866,870938,"TERMINAL",0,0,"751",,terminal_output +867,871441,"train_tokenizer.py",1370,0,"",python,selection_command +868,871598,"train_tokenizer.py",1347,0,"",python,selection_command +869,871768,"train_tokenizer.py",1313,0,"",python,selection_command +870,871951,"train_tokenizer.py",1287,0,"",python,selection_command +871,872006,"TERMINAL",0,0,"862",,terminal_output +872,872308,"train_tokenizer.py",1265,0,"",python,selection_command +873,873047,"TERMINAL",0,0,"973",,terminal_output +874,873344,"train_tokenizer.py",1279,0,"",python,selection_command +875,873586,"train_tokenizer.py",1279,0,"\n ",python,content +876,874100,"TERMINAL",0,0,"2084",,terminal_output +877,874281,"train_tokenizer.py",1284,0,"n",python,content +878,874281,"train_tokenizer.py",1285,0,"",python,selection_keyboard +879,874339,"train_tokenizer.py",1285,0,"a",python,content +880,874339,"train_tokenizer.py",1286,0,"",python,selection_keyboard +881,874800,"train_tokenizer.py",1285,1,"",python,content +882,874946,"train_tokenizer.py",1284,1,"",python,content +883,875150,"TERMINAL",0,0,"195",,terminal_output +884,875458,"train_tokenizer.py",1284,0,"n",python,content +885,875460,"train_tokenizer.py",1285,0,"",python,selection_keyboard +886,875633,"train_tokenizer.py",1285,0,"a",python,content +887,875634,"train_tokenizer.py",1286,0,"",python,selection_keyboard +888,876207,"train_tokenizer.py",1286,0,"me: str = """"",python,content +889,876219,"TERMINAL",0,0,"2 Rhkn07232:006",,terminal_output +890,877252,"TERMINAL",0,0,"3117",,terminal_output +891,878300,"TERMINAL",0,0,"4228",,terminal_output +892,878491,"train_tokenizer.py",4064,0,"name=args.name, ",python,content +893,878493,"train_tokenizer.py",4080,0,"",python,selection_command +894,879341,"TERMINAL",0,0,"5339",,terminal_output +895,880434,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +896,880453,"TERMINAL",0,0,"64450",,terminal_output +897,881047,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",825,0,"",shellscript,selection_command +898,881301,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",842,0,"",shellscript,selection_command +899,881329,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",924,0,"",shellscript,selection_command +900,881362,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",941,0,"",shellscript,selection_command +901,881395,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",974,0,"",shellscript,selection_command +902,881428,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",997,0,"",shellscript,selection_command +903,881445,"TERMINAL",0,0,"7551",,terminal_output +904,881461,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1030,0,"",shellscript,selection_command +905,881495,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1067,0,"",shellscript,selection_command +906,881926,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1030,0,"",shellscript,selection_command +907,882493,"TERMINAL",0,0,"8773",,terminal_output +908,883543,"TERMINAL",0,0,"30884",,terminal_output +909,883962,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1050,0,"",shellscript,selection_command +910,884211,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1050,0,"\n ",shellscript,content +911,884509,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1055,0,"-",shellscript,content +912,884510,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1056,0,"",shellscript,selection_keyboard +913,884580,"TERMINAL",0,0,"1995",,terminal_output +914,884646,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1056,0,"-",shellscript,content +915,884647,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1057,0,"",shellscript,selection_keyboard +916,885399,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1057,0,"name $job_name_$slurm_job_id \",shellscript,content +917,885633,"TERMINAL",0,0,"210106",,terminal_output +918,886684,"TERMINAL",0,0,"3117",,terminal_output +919,887727,"TERMINAL",0,0,"4228",,terminal_output +920,888779,"TERMINAL",0,0,"5339",,terminal_output +921,889830,"TERMINAL",0,0,"6448:00",,terminal_output +922,890881,"TERMINAL",0,0,"7551",,terminal_output +923,891938,"TERMINAL",0,0,"8662",,terminal_output +924,892980,"TERMINAL",0,0,"9773",,terminal_output +925,894024,"TERMINAL",0,0,"40884",,terminal_output +926,895080,"TERMINAL",0,0,"1995",,terminal_output +927,896136,"TERMINAL",0,0,"220206",,terminal_output +928,897197,"TERMINAL",0,0,"3117",,terminal_output +929,897764,"sbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch",1207,0,"",shellscript,selection_mouse +930,898254,"TERMINAL",0,0,"4228",,terminal_output +931,899310,"TERMINAL",0,0,"5339",,terminal_output diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-79048dd3-e1a6-4c43-91f0-7e5acce8c4fe1750866381642-2025_06_25-18.54.56.569/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-79048dd3-e1a6-4c43-91f0-7e5acce8c4fe1750866381642-2025_06_25-18.54.56.569/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8a9519108c84a0b20950cd9fc000a1790eb6cdc --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-79048dd3-e1a6-4c43-91f0-7e5acce8c4fe1750866381642-2025_06_25-18.54.56.569/source.csv @@ -0,0 +1,1323 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,9,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=00:15:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_sample/%x_%j.log\n#SBATCH --error=logs/logs_sample/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=sample_knoms\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\n# data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n# checkpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\n# seq_len=16\n# output_dir='sample_results/knoms/'\n\n# python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# # CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n\n\n# Overfit tfrecords 10\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards_overfit_10'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3289577/genie_1750786631_13000'\nseq_len=16\noutput_dir='sample_results/knoms_overfit_tfrecords_10/'\n\nsrun python sample_resolution_batches.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n",shellscript,tab +2,1353,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1507,0,"",shellscript,selection_mouse +3,2531,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,selection_command +4,3302,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",20,0,"",shellscript,selection_command +5,3467,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",394,0,"",shellscript,selection_command +6,3646,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",426,0,"",shellscript,selection_command +7,3984,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",394,0,"",shellscript,selection_command +8,4128,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",20,0,"",shellscript,selection_command +9,4285,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,selection_command +10,4665,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",20,0,"",shellscript,selection_command +11,4790,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",394,0,"",shellscript,selection_command +12,4949,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",426,0,"",shellscript,selection_command +13,11869,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1507,0,"",shellscript,selection_mouse +14,18212,"TERMINAL",0,0,"sbatch sbatch_scripts/sample_jafar/sample_knoms.sbatch",,terminal_command +15,18260,"TERMINAL",0,0,"]633;E;2025-06-25 18:55:14 sbatch sbatch_scripts/sample_jafar/sample_knoms.sbatch;d23c989f-627c-40e2-ae18-db6702fd128f]633;CSubmitted batch job 3292243\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +16,22572,"TERMINAL",0,0,"queue",,terminal_command +17,22624,"TERMINAL",0,0,"]633;E;2025-06-25 18:55:19 queue;d23c989f-627c-40e2-ae18-db6702fd128f]633;C",,terminal_output +18,22680,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Wed Jun 25 18:55:19 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3292243 accelerat sample_k tum_ind3 PD\t0:00\t 1 (Priority)3292206 accelerat train_la tum_ind3 R\t8:55\t 1 hkn06023292207 accelerat train_to tum_ind3 R\t8:55\t 1 hkn06323289577 accelerat train_dy tum_ind3 R 23:18:43\t 1 hkn0712",,terminal_output +19,23728,"TERMINAL",0,0,"20664",,terminal_output +20,24761,"TERMINAL",0,0,"1775",,terminal_output +21,25814,"TERMINAL",0,0,"2886",,terminal_output +22,26878,"TERMINAL",0,0,"3997",,terminal_output +23,27924,"TERMINAL",0,0,"49:009:008",,terminal_output +24,28969,"TERMINAL",0,0,"5119",,terminal_output +25,29996,"TERMINAL",0,0,"62250",,terminal_output +26,31044,"TERMINAL",0,0,"7331",,terminal_output +27,32100,"TERMINAL",0,0,"8442",,terminal_output +28,33142,"TERMINAL",0,0,"9553",,terminal_output +29,34199,"TERMINAL",0,0,"30664",,terminal_output +30,35246,"TERMINAL",0,0,"1775",,terminal_output +31,36292,"TERMINAL",0,0,"2886",,terminal_output +32,37341,"TERMINAL",0,0,"3997",,terminal_output +33,38378,"TERMINAL",0,0,"410108",,terminal_output +34,39090,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +35,40332,"TERMINAL",0,0,"fqueue",,terminal_command +36,40364,"TERMINAL",0,0,"]633;E;2025-06-25 18:55:36 fqueue;d23c989f-627c-40e2-ae18-db6702fd128f]633;C JOBID PARTITION NAME USER STATE TIME TIME_LIMI NODES NODELIST(REASON)\r\n 3292243 accelerated sample_knoms tum_ind3 PENDING 0:00 15:00 1 (Priority)\r\n 3292206 accelerated train_lam_6 tum_ind3 RUNNING 9:12 10:00 1 hkn0602\r\n 3292207 accelerated train_tokenizer_coinrun tum_ind3 RUNNING 9:12 10:00 1 hkn0632\r\n 3289577 accelerated train_dyn_overfit_tfrecord_10 tum_ind3 RUNNING 23:19:00 1-00:00:00 1 hkn0712\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar_dyn",,terminal_output +37,113512,"TERMINAL",0,0,"scancel 3292206^C",,terminal_command +38,113526,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;d23c989f-627c-40e2-ae18-db6702fd128f]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D",,terminal_output +39,162030,"TERMINAL",0,0,"sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",,terminal_command +40,162062,"TERMINAL",0,0,"]633;E;2025-06-25 18:57:38 sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch;d23c989f-627c-40e2-ae18-db6702fd128f]633;CSubmitted batch job 3292255\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +41,177687,"TERMINAL",0,0,"queue",,terminal_command +42,177736,"TERMINAL",0,0,"]633;E;2025-06-25 18:57:54 queue;d23c989f-627c-40e2-ae18-db6702fd128f]633;C",,terminal_output +43,177796,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Wed Jun 25 18:57:54 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3292255 accelerat train_la tum_ind3 PD\t0:00\t 1 (Priority)3292243 accelerat sample_k tum_ind3 R\t1:29\t 1 hkn06343289577 accelerat train_dy tum_ind3 R 23:21:18\t 1 hkn0712",,terminal_output +44,178842,"TERMINAL",0,0,"5309",,terminal_output +45,179890,"TERMINAL",0,0,"6120",,terminal_output +46,180938,"TERMINAL",0,0,"721",,terminal_output +47,181987,"TERMINAL",0,0,"832",,terminal_output +48,183035,"TERMINAL",0,0,"943",,terminal_output +49,184078,"TERMINAL",0,0,"8:0054",,terminal_output +50,185121,"TERMINAL",0,0,"165",,terminal_output +51,185607,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +52,188686,"TERMINAL",0,0,"fsacct_week",,terminal_command +53,188737,"TERMINAL",0,0,"]633;E;2025-06-25 18:58:05 fsacct_week ;d23c989f-627c-40e2-ae18-db6702fd128f]633;C",,terminal_output +54,188779,"TERMINAL",0,0," JobID JobName Partition All State Elapsed Timelimit \r\n--------------- ------------------------------ ---------------- --- ------------ ---------- ---------- \r\n 3273476 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:06 00:10:00 \r\n 3273480 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:00:32 00:10:00 \r\n 3273494 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:40 00:10:00 \r\n 3273503 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:16 00:10:00 \r\n 3273681 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3273687 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:16 00:10:00 \r\n 3273795 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3273820 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:00:31 00:15:00 \r\n 3273828 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 1-00:00:10 1-00:00:00 \r\n 3273829 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 1-00:00:10 1-00:00:00 \r\n 3273831 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 12:00:29 12:00:00 \r\n 3273841 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:13 12:00:00 \r\n 3273846 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 12:00:28 12:00:00 \r\n 3274766 train_lam_ful_tfrecord accelerated 32 TIMEOUT 00:10:02 00:10:00 \r\n 3276030 train_tokenizer_overfit_seedi+ accelerated 8 FAILED 00:01:35 00:10:00 \r\n 3276039 train_tokenizer_overfit_seedi+ accelerated 8 FAILED 00:00:56 00:10:00 \r\n 3276048 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 00:10:03 00:10:00 \r\n 3276051 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 00:30:01 00:30:00 \r\n 3276052 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:02 01:00:00 \r\n 3276053 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:02 01:00:00 \r\n 3276058 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:03 01:00:00 \r\n 3276715 train_lam_ful_tfrecord accelerated 32 TIMEOUT 00:10:13 00:10:00 \r\n 3277318 train_lam_ful_tfrecord accelerated 32 TIMEOUT 16:00:27 16:00:00 \r\n 3282472 train_dyn_knoms_full-test accelerated 32 TIMEOUT 00:10:24 00:10:00 \r\n 3282485 train_dyn_knoms_full accelerated 32 FAILED 00:00:27 1-00:00:00 \r\n 3282489 train_dyn_knoms_full accelerated 32 TIMEOUT 1-00:00:27 1-00:00:00 \r\n 3285784 train_tokenizer_overfit_tfrec+ accelerated 32 FAILED 00:00:28 00:10:00 \r\n 3285785 train_lam_overfit_tfrecord_10 accelerated 32 FAILED 00:00:32 00:10:00 \r\n 3285797 train_lam_overfit_tfrecord_10 accelerated 32 FAILED 00:00:28 00:10:00 \r\n 3285798 train_tokenizer_overfit_tfrec+ accelerated 32 FAILED 00:00:27 00:10:00 \r\n 3285811 train_tokenizer_overfit_tfrec+ accelerated 32 TIMEOUT 00:10:07 00:10:00 \r\n 3285820 train_lam_overfit_tfrecord_10 accelerated 32 TIMEOUT 00:10:06 00:10:00 \r\n 3286113 train_lam_overfit_tfrecord_10 accelerated 32 TIMEOUT 1-00:00:09 1-00:00:00 \r\n 3286114 train_tokenizer_overfit_tfrec+ accelerated 32 TIMEOUT 1-00:00:09 1-00:00:00 \r\n 3286195 train_dyn_knoms_full_nodes_2 accelerated 64 TIMEOUT 00:10:26 00:10:00 \r\n 3287192 download_7xx accelerated 32 FAILED 00:00:27 00:10:00 \r\n 3287194 download_7xx accelerated 32 FAILED 00:00:26 00:10:00 \r\n 3287195 download_7xx accelerated 32 FAILED 00:00:26 00:10:00 \r\n 3287198 download_6xx accelerated 32 TIMEOUT 00:10:18 00:10:00 \r\n 3287213 download_6xx cpuonly 152 COMPLETED 01:44:02 06:00:00 \r\n 3287214 download_7xx cpuonly 152 COMPLETED 04:27:48 06:00:00 \r\n 3287215 download_8xx cpuonly 152 COMPLETED 01:07:53 06:00:00 \r\n 3287216 download_9xx cpuonly 152 COMPLETED 02:11:44 06:00:00 \r\n 3287217 download_10xx cpuonly 152 COMPLETED 01:10:01 06:00:00 \r\n 3289199 download_6xx cpuonly 152 COMPLETED 03:05:47 06:00:00 \r\n 3289204 download_7xx cpuonly 152 COMPLETED 05:07:25 06:00:00 \r\n 3289205 download_8xx cpuonly 152 COMPLETED 01:27:47 06:00:00 \r\n 3289206 download_9xx cpuonly 152 COMPLETED 02:27:37 06:00:00 \r\n 3289207 download_10xx cpuonly 152 COMPLETED 01:25:46 06:00:00 \r\n 3289242 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:32 00:10:00 \r\n 3289247 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:33 00:10:00 \r\n 3289322 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:20 00:10:00 \r\n 3289376 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:17 00:10:00 \r\n 3289389 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:33 00:10:00 \r\n 3289394 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:03:42 00:10:00 \r\n 3289433 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:16 00:10:00 \r\n 3289439 mp4_to_npy_openai_first_try_8+ cpuonly 152 COMPLETED 00:08:49 00:10:00 \r\n 3289469 mp4_to_npy_openai_first_try_6+ cpuonly 152 COMPLETED 00:18:29 01:00:00 \r\n 3289483 mp4_to_npy_openai_first_try_7+ cpuonly 152 COMPLETED 00:48:15 01:00:00 \r\n 3289484 mp4_to_npy_openai_first_try_8+ cpuonly 152 COMPLETED 00:08:43 01:00:00 \r\n 3289485 mp4_to_npy_openai_first_try_9+ cpuonly 152 COMPLETED 00:32:34 01:00:00 \r\n 3289486 mp4_to_npy_openai_first_try_1+ cpuonly 152 COMPLETED 00:08:10 01:00:00 \r\n 3289548 train_dyn_overfit_tfrecord_10 accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3289577 train_dyn_overfit_tfrecord_10 accelerated 32 RUNNING 23:21:29 1-00:00:00 \r\n 3290215 npy_to_tfrecord_6xx cpuonly 152 COMPLETED 00:01:01 00:10:00 \r\n 3290230 npy_to_tfrecord_6xx cpuonly 152 TIMEOUT 00:10:06 00:10:00 \r\n 3290234 mp4_to_npy_openai_all cpuonly 152 TIMEOUT 00:10:06 00:10:00 \r\n 3290235 npy_to_tfrecord_7xx cpuonly 152 COMPLETED 01:45:34 02:00:00 \r\n 3290241 mp4_to_npy_openai_all cpuonly 152 COMPLETED 01:23:07 12:00:00 \r\n 3290255 npy_to_tfrecord_6xx cpuonly 152 COMPLETED 01:01:32 03:00:00 \r\n 3290256 npy_to_tfrecord_8xx cpuonly 152 COMPLETED 00:27:07 03:00:00 \r\n 3290257 npy_to_tfrecord_9xx cpuonly 152 COMPLETED 00:48:28 03:00:00 \r\n 3290258 npy_to_tfrecord_10xx cpuonly 152 COMPLETED 00:27:30 03:00:00 \r\n 3292019 train_tokenizer_coinrun accelerated 32 FAILED 00:00:28 06:00:00 \r\n 3292064 sample_knoms_overfit_10 accelerated 32 FAILED 00:00:59 00:45:00 \r\n 3292098 sample_knoms_overfit_10 accelerated 8 FAILED 00:01:43 00:45:00 \r\n 3292119 train_tokenizer_coinrun accelerated 32 FAILED 00:00:27 06:00:00 \r\n 3292139 train_tokenizer_coinrun accelerated 8 FAILED 00:03:24 00:10:00 \r\n 3292156 train_lam_6 accelerated 32 FAILED 00:01:06 00:10:00 \r\n 3292206 train_lam_6 accelerated 32 TIMEOUT 00:10:29 00:10:00 \r\n 3292207 train_tokenizer_coinrun accelerated 32 TIMEOUT 00:10:29 00:10:00 \r\n 3292225 sample_knoms accelerated 8 FAILED 00:01:42 00:15:00 \r\n 3292243 sample_knoms accelerated 32 RUNNING 00:01:40 00:15:00 \r\n 3292255 train_lam_6 accelerated 0 PENDING 00:00:00 00:10:00 \r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +55,271036,"TERMINAL",0,0,"queue",,terminal_command +56,271087,"TERMINAL",0,0,"]633;E;2025-06-25 18:59:27 queue;d23c989f-627c-40e2-ae18-db6702fd128f]633;C",,terminal_output +57,271142,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Wed Jun 25 18:59:27 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3292255 accelerat train_la tum_ind3 R\t1:17\t 1 hkn05293292243 accelerat sample_k tum_ind3 R\t3:02\t 1 hkn06343289577 accelerat train_dy tum_ind3 R 23:22:51\t 1 hkn0712",,terminal_output +58,272169,"TERMINAL",0,0,"8832",,terminal_output +59,273213,"TERMINAL",0,0,"9943",,terminal_output +60,274247,"TERMINAL",0,0,"302054",,terminal_output +61,275310,"TERMINAL",0,0,"1165",,terminal_output +62,276365,"TERMINAL",0,0,"2276",,terminal_output +63,277338,"logs/logs_training_lam/train_lam_6_3292255.log",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=00:10:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_6\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_lam.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar \\n --num_latents 6 \nGpuFreq=control_disabled\n2025-06-25 18:58:49.172370: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 18:58:49.172317: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 18:58:49.172392: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 18:58:49.172317: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750870729.203012 2934117 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750870729.202956 2934119 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750870729.203239 2934116 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750870729.203151 2934118 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nE0000 00:00:1750870729.209212 2934116 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750870729.209211 2934117 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750870729.209214 2934118 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750870729.209213 2934119 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nW0000 00:00:1750870729.351561 2934116 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351594 2934116 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351596 2934116 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351598 2934116 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351565 2934117 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351596 2934117 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351599 2934117 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351600 2934117 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351557 2934118 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351587 2934118 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351590 2934118 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351592 2934118 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351559 2934119 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351592 2934119 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351594 2934119 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870729.351595 2934119 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nwandb: Currently logged in as: avocadoali (instant-uv) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin\nwandb: Tracking run with wandb version 0.19.11\nwandb: Run data is saved locally in /hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/wandb/run-20250625_185906-ycm9gpk5\nwandb: Run `wandb offline` to turn off syncing.\nwandb: Syncing run train_lam_6\nwandb: ⭐️ View project at https://wandb.ai/instant-uv/jafar\nwandb: 🚀 View run at https://wandb.ai/instant-uv/jafar/runs/ycm9gpk5\n2025-06-25 18:59:18.880542: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:59:18.944818: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:59:19.008221: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:59:21.744159: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n",log,tab +64,277406,"TERMINAL",0,0,"3387",,terminal_output +65,278456,"TERMINAL",0,0,"4498",,terminal_output +66,278839,"logs/logs_training_lam/train_lam_6_3292255.log",8440,0,"",log,selection_command +67,279496,"TERMINAL",0,0,"55109",,terminal_output +68,280541,"TERMINAL",0,0,"6723:01",,terminal_output +69,281602,"TERMINAL",0,0,"8832",,terminal_output +70,282638,"TERMINAL",0,0,"9943",,terminal_output +71,283691,"TERMINAL",0,0,"403054",,terminal_output +72,284237,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,tab +73,284736,"TERMINAL",0,0,"1165",,terminal_output +74,285786,"TERMINAL",0,0,"2276",,terminal_output +75,286812,"TERMINAL",0,0,"3387",,terminal_output +76,287845,"TERMINAL",0,0,"4498",,terminal_output +77,288877,"TERMINAL",0,0,"55209",,terminal_output +78,289925,"TERMINAL",0,0,"66110",,terminal_output +79,290975,"TERMINAL",0,0,"7721",,terminal_output +80,292017,"TERMINAL",0,0,"8832",,terminal_output +81,293061,"TERMINAL",0,0,"9943",,terminal_output +82,294114,"TERMINAL",0,0,"504054",,terminal_output +83,295159,"TERMINAL",0,0,"1165",,terminal_output +84,296210,"TERMINAL",0,0,"2276",,terminal_output +85,297258,"TERMINAL",0,0,"3387",,terminal_output +86,298310,"TERMINAL",0,0,"4498",,terminal_output +87,299363,"TERMINAL",0,0,"55309",,terminal_output +88,300407,"TERMINAL",0,0,"66120",,terminal_output +89,301455,"TERMINAL",0,0,"7721",,terminal_output +90,302502,"TERMINAL",0,0,"8832",,terminal_output +91,303574,"TERMINAL",0,0,"95054",,terminal_output +92,304647,"TERMINAL",0,0,"9:00:01165",,terminal_output +93,305689,"TERMINAL",0,0,"2276",,terminal_output +94,306823,"TERMINAL",0,0,"3387",,terminal_output +95,307780,"TERMINAL",0,0,"4498",,terminal_output +96,308824,"TERMINAL",0,0,"55409",,terminal_output +97,309879,"TERMINAL",0,0,"66130",,terminal_output +98,310918,"TERMINAL",0,0,"7721",,terminal_output +99,311960,"TERMINAL",0,0,"8832",,terminal_output +100,313000,"TERMINAL",0,0,"9943",,terminal_output +101,314033,"TERMINAL",0,0,"102:0054",,terminal_output +102,315074,"TERMINAL",0,0,"1165",,terminal_output +103,316111,"TERMINAL",0,0,"2276",,terminal_output +104,317150,"TERMINAL",0,0,"3387",,terminal_output +105,318194,"TERMINAL",0,0,"4498",,terminal_output +106,319233,"TERMINAL",0,0,"55509",,terminal_output +107,320267,"TERMINAL",0,0,"66140",,terminal_output +108,321302,"TERMINAL",0,0,"7721",,terminal_output +109,322354,"TERMINAL",0,0,"8832",,terminal_output +110,323385,"TERMINAL",0,0,"9943",,terminal_output +111,324423,"TERMINAL",0,0,"201054",,terminal_output +112,325471,"TERMINAL",0,0,"1165",,terminal_output +113,326506,"TERMINAL",0,0,"2276",,terminal_output +114,327549,"TERMINAL",0,0,"4498",,terminal_output +115,328594,"TERMINAL",0,0,"554:009",,terminal_output +116,329648,"TERMINAL",0,0,"66150",,terminal_output +117,330699,"TERMINAL",0,0,"7721",,terminal_output +118,331742,"TERMINAL",0,0,"8832",,terminal_output +119,332781,"TERMINAL",0,0,"9943",,terminal_output +120,333836,"TERMINAL",0,0,"302054",,terminal_output +121,334877,"TERMINAL",0,0,"1165",,terminal_output +122,335917,"TERMINAL",0,0,"2276",,terminal_output +123,336962,"TERMINAL",0,0,"3387",,terminal_output +124,338019,"TERMINAL",0,0,"4498",,terminal_output +125,339062,"TERMINAL",0,0,"55109",,terminal_output +126,340110,"TERMINAL",0,0,"6614:00",,terminal_output +127,341158,"TERMINAL",0,0,"7721",,terminal_output +128,342207,"TERMINAL",0,0,"8832",,terminal_output +129,343251,"TERMINAL",0,0,"9943",,terminal_output +130,344297,"TERMINAL",0,0,"403054",,terminal_output +131,345339,"TERMINAL",0,0,"1165",,terminal_output +132,346394,"TERMINAL",0,0,"2276",,terminal_output +133,347444,"TERMINAL",0,0,"3387",,terminal_output +134,348500,"TERMINAL",0,0,"4498",,terminal_output +135,349545,"TERMINAL",0,0,"562110",,terminal_output +136,350597,"TERMINAL",0,0,"7721",,terminal_output +137,351647,"TERMINAL",0,0,"8832",,terminal_output +138,352695,"TERMINAL",0,0,"9943",,terminal_output +139,353746,"TERMINAL",0,0,"504054",,terminal_output +140,354793,"TERMINAL",0,0,"1165",,terminal_output +141,355834,"TERMINAL",0,0,"2276",,terminal_output +142,356882,"TERMINAL",0,0,"3387",,terminal_output +143,357928,"TERMINAL",0,0,"4498",,terminal_output +144,358959,"TERMINAL",0,0,"55309",,terminal_output +145,360009,"TERMINAL",0,0,"66120",,terminal_output +146,361058,"TERMINAL",0,0,"7721",,terminal_output +147,362108,"TERMINAL",0,0,"8832",,terminal_output +148,363152,"TERMINAL",0,0,"9943",,terminal_output +149,364191,"TERMINAL",0,0,"1:005054",,terminal_output +150,365246,"TERMINAL",0,0,"1165",,terminal_output +151,366292,"TERMINAL",0,0,"2276",,terminal_output +152,367323,"TERMINAL",0,0,"3387",,terminal_output +153,368372,"TERMINAL",0,0,"4498",,terminal_output +154,369429,"TERMINAL",0,0,"55409",,terminal_output +155,370482,"TERMINAL",0,0,"66130",,terminal_output +156,371521,"TERMINAL",0,0,"7832",,terminal_output +157,372571,"TERMINAL",0,0,"9943",,terminal_output +158,373612,"TERMINAL",0,0,"103:0054",,terminal_output +159,374660,"TERMINAL",0,0,"1165",,terminal_output +160,375708,"TERMINAL",0,0,"2276",,terminal_output +161,376764,"TERMINAL",0,0,"3387",,terminal_output +162,377816,"TERMINAL",0,0,"4498",,terminal_output +163,378866,"TERMINAL",0,0,"55509",,terminal_output +164,379921,"TERMINAL",0,0,"66140",,terminal_output +165,380973,"TERMINAL",0,0,"7721",,terminal_output +166,382061,"TERMINAL",0,0,"8832",,terminal_output +167,383069,"TERMINAL",0,0,"9943",,terminal_output +168,384120,"TERMINAL",0,0,"201054",,terminal_output +169,385174,"TERMINAL",0,0,"1165",,terminal_output +170,386217,"TERMINAL",0,0,"2276",,terminal_output +171,387267,"TERMINAL",0,0,"3387",,terminal_output +172,388318,"TERMINAL",0,0,"4498",,terminal_output +173,389366,"TERMINAL",0,0,"555:009",,terminal_output +174,390413,"TERMINAL",0,0,"66150",,terminal_output +175,391441,"TERMINAL",0,0,"7721",,terminal_output +176,392487,"TERMINAL",0,0,"8832",,terminal_output +177,393538,"TERMINAL",0,0,"92054",,terminal_output +178,394586,"TERMINAL",0,0,"31165",,terminal_output +179,395657,"TERMINAL",0,0,"2276",,terminal_output +180,396688,"TERMINAL",0,0,"3387",,terminal_output +181,397740,"TERMINAL",0,0,"4498",,terminal_output +182,398857,"TERMINAL",0,0,"55109",,terminal_output +183,399851,"TERMINAL",0,0,"6615:00",,terminal_output +184,400861,"TERMINAL",0,0,"7721",,terminal_output +185,401929,"TERMINAL",0,0,"8832",,terminal_output +186,402942,"TERMINAL",0,0,"9943",,terminal_output +187,403985,"TERMINAL",0,0,"403054",,terminal_output +188,405038,"TERMINAL",0,0,"1165",,terminal_output +189,406084,"TERMINAL",0,0,"2276",,terminal_output +190,407130,"TERMINAL",0,0,"3387",,terminal_output +191,408170,"TERMINAL",0,0,"4498",,terminal_output +192,409219,"TERMINAL",0,0,"55209",,terminal_output +193,410271,"TERMINAL",0,0,"66110",,terminal_output +194,411305,"TERMINAL",0,0,"7721",,terminal_output +195,412354,"TERMINAL",0,0,"8832",,terminal_output +196,413403,"TERMINAL",0,0,"9943",,terminal_output +197,414452,"TERMINAL",0,0,"504054",,terminal_output +198,415502,"TERMINAL",0,0,"1165",,terminal_output +199,416574,"TERMINAL",0,0,"2387",,terminal_output +200,417603,"TERMINAL",0,0,"4498",,terminal_output +201,418641,"TERMINAL",0,0,"55309",,terminal_output +202,419747,"TERMINAL",0,0,"66120",,terminal_output +203,420731,"TERMINAL",0,0,"7721",,terminal_output +204,421794,"TERMINAL",0,0,"8832",,terminal_output +205,422823,"TERMINAL",0,0,"9943",,terminal_output +206,423871,"TERMINAL",0,0,"2:005054",,terminal_output +207,424971,"TERMINAL",0,0,"1165",,terminal_output +208,425973,"TERMINAL",0,0,"2276",,terminal_output +209,427004,"TERMINAL",0,0,"3387",,terminal_output +210,428053,"TERMINAL",0,0,"4498",,terminal_output +211,429169,"TERMINAL",0,0,"55409",,terminal_output +212,430365,"TERMINAL",0,0,"66130",,terminal_output +213,431419,"TERMINAL",0,0,"7721",,terminal_output +214,432468,"TERMINAL",0,0,"8832",,terminal_output +215,433522,"TERMINAL",0,0,"94:0054",,terminal_output +216,434569,"TERMINAL",0,0,"11165",,terminal_output +217,435614,"TERMINAL",0,0,"2276",,terminal_output +218,436661,"TERMINAL",0,0,"3387",,terminal_output +219,437704,"TERMINAL",0,0,"4498",,terminal_output +220,438755,"TERMINAL",0,0,"55509",,terminal_output +221,439795,"TERMINAL",0,0,"66140",,terminal_output +222,440843,"TERMINAL",0,0,"7721",,terminal_output +223,441888,"TERMINAL",0,0,"8832",,terminal_output +224,442953,"TERMINAL",0,0,"9943",,terminal_output +225,443987,"TERMINAL",0,0,"201054",,terminal_output +226,445033,"TERMINAL",0,0,"1165",,terminal_output +227,446078,"TERMINAL",0,0,"2276",,terminal_output +228,447126,"TERMINAL",0,0,"3387",,terminal_output +229,448172,"TERMINAL",0,0,"4498",,terminal_output +230,449223,"TERMINAL",0,0,"556:009",,terminal_output +231,450262,"TERMINAL",0,0,"66150",,terminal_output +232,451304,"TERMINAL",0,0,"7721",,terminal_output +233,452349,"TERMINAL",0,0,"8832",,terminal_output +234,453400,"TERMINAL",0,0,"9943",,terminal_output +235,454449,"TERMINAL",0,0,"302054",,terminal_output +236,455498,"TERMINAL",0,0,"1165",,terminal_output +237,456554,"TERMINAL",0,0,"2387",,terminal_output +238,457602,"TERMINAL",0,0,"4498",,terminal_output +239,458648,"TERMINAL",0,0,"55109",,terminal_output +240,459687,"TERMINAL",0,0,"6616:00",,terminal_output +241,460728,"TERMINAL",0,0,"7721",,terminal_output +242,461781,"TERMINAL",0,0,"8832",,terminal_output +243,462829,"TERMINAL",0,0,"9943",,terminal_output +244,463883,"TERMINAL",0,0,"403054",,terminal_output +245,464937,"TERMINAL",0,0,"1165",,terminal_output +246,465973,"TERMINAL",0,0,"2276",,terminal_output +247,467014,"TERMINAL",0,0,"3387",,terminal_output +248,468065,"TERMINAL",0,0,"4498",,terminal_output +249,469118,"TERMINAL",0,0,"55209",,terminal_output +250,470167,"TERMINAL",0,0,"66110",,terminal_output +251,471217,"TERMINAL",0,0,"7721",,terminal_output +252,472264,"TERMINAL",0,0,"8832",,terminal_output +253,473307,"TERMINAL",0,0,"9943",,terminal_output +254,474354,"TERMINAL",0,0,"504054",,terminal_output +255,475401,"TERMINAL",0,0,"1165",,terminal_output +256,476444,"TERMINAL",0,0,"2276",,terminal_output +257,477494,"TERMINAL",0,0,"3387",,terminal_output +258,478546,"TERMINAL",0,0,"45309",,terminal_output +259,479600,"TERMINAL",0,0,"66120",,terminal_output +260,480652,"TERMINAL",0,0,"7721",,terminal_output +261,481707,"TERMINAL",0,0,"8832",,terminal_output +262,482742,"TERMINAL",0,0,"9943",,terminal_output +263,483779,"TERMINAL",0,0,"3:005054",,terminal_output +264,484832,"TERMINAL",0,0,"1165",,terminal_output +265,485514,"logs/logs_sample/sample_knoms_3292243.log",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=00:15:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_sample/%x_%j.log\n#SBATCH --error=logs/logs_sample/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=sample_knoms\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\n# data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n# checkpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\n# seq_len=16\n# output_dir='sample_results/knoms/'\n\n# python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# # CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n\n\n# Overfit tfrecords 10\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards_overfit_10'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3289577/genie_1750786631_13000'\nseq_len=16\noutput_dir='sample_results/knoms_overfit_tfrecords_10/'\n\nsrun python sample_resolution_batches.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\nGpuFreq=control_disabled\n2025-06-25 18:57:03.554899: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 18:57:03.554896: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 18:57:03.554895: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 18:57:03.555071: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750870623.634629 3710494 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750870623.634603 3710495 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750870623.634728 3710496 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750870623.634615 3710497 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nE0000 00:00:1750870623.643701 3710495 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750870623.643700 3710497 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750870623.643887 3710496 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750870623.644124 3710494 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nW0000 00:00:1750870624.136732 3710494 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136759 3710494 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136761 3710494 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136763 3710494 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136725 3710495 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136757 3710495 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136759 3710495 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136760 3710495 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136734 3710496 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136761 3710496 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136763 3710496 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136765 3710496 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136726 3710497 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136756 3710497 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136759 3710497 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750870624.136760 3710497 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\njax.errors.SimplifiedTraceback: For simplicity, JAX has removed its internal frames from the traceback of the following exception. Set JAX_TRACEBACK_FILTERING=off to include these.\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/sample_resolution_batches.py"", line 56, in \n rng = jax.random.PRNGKey(args.seed)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 249, in PRNGKey\n return _return_prng_keys(True, _key('PRNGKey', seed, impl))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 201, in _key\n return prng.random_seed(seed, impl=impl)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/prng.py"", line 551, in random_seed\n seeds_arr = jnp.asarray(np.int64(seeds))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5732, in asarray\n return array(a, dtype=dtype, copy=bool(copy), order=order, device=device)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5553, in array\n out_array: Array = lax_internal._convert_element_type(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 1727, in _convert_element_type\n return convert_element_type_p.bind(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 531, in bind\n return self._true_bind(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 551, in _true_bind\n return self.bind_with_trace(prev_trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 4897, in _convert_element_type_bind_with_trace\n operand = core.Primitive.bind_with_trace(convert_element_type_p, trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 556, in bind_with_trace\n return trace.process_primitive(self, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 1060, in process_primitive\n return primitive.impl(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/dispatch.py"", line 88, in apply_primitive\n outs = fun(*args)\nRuntimeError: Bad StatusOr access: RESOURCE_EXHAUSTED: : CUDA_ERROR_OUT_OF_MEMORY: out of memory\njax.errors.SimplifiedTraceback: For simplicity, JAX has removed its internal frames from the traceback of the following exception. Set JAX_TRACEBACK_FILTERING=off to include these.\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/sample_resolution_batches.py"", line 56, in \n rng = jax.random.PRNGKey(args.seed)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 249, in PRNGKey\n return _return_prng_keys(True, _key('PRNGKey', seed, impl))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 201, in _key\n return prng.random_seed(seed, impl=impl)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/prng.py"", line 551, in random_seed\n seeds_arr = jnp.asarray(np.int64(seeds))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5732, in asarray\n return array(a, dtype=dtype, copy=bool(copy), order=order, device=device)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5553, in array\n out_array: Array = lax_internal._convert_element_type(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 1727, in _convert_element_type\n return convert_element_type_p.bind(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 531, in bind\n return self._true_bind(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 551, in _true_bind\n return self.bind_with_trace(prev_trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 4897, in _convert_element_type_bind_with_trace\n operand = core.Primitive.bind_with_trace(convert_element_type_p, trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 556, in bind_with_trace\n return trace.process_primitive(self, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 1060, in process_primitive\n return primitive.impl(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/dispatch.py"", line 88, in apply_primitive\n outs = fun(*args)\nRuntimeError: Bad StatusOr access: RESOURCE_EXHAUSTED: : CUDA_ERROR_OUT_OF_MEMORY: out of memory\njax.errors.SimplifiedTraceback: For simplicity, JAX has removed its internal frames from the traceback of the following exception. Set JAX_TRACEBACK_FILTERING=off to include these.\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/sample_resolution_batches.py"", line 56, in \n rng = jax.random.PRNGKey(args.seed)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 249, in PRNGKey\n return _return_prng_keys(True, _key('PRNGKey', seed, impl))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 201, in _key\n return prng.random_seed(seed, impl=impl)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/prng.py"", line 551, in random_seed\n seeds_arr = jnp.asarray(np.int64(seeds))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5732, in asarray\n return array(a, dtype=dtype, copy=bool(copy), order=order, device=device)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5553, in array\n out_array: Array = lax_internal._convert_element_type(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 1727, in _convert_element_type\n return convert_element_type_p.bind(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 531, in bind\n return self._true_bind(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 551, in _true_bind\n return self.bind_with_trace(prev_trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 4897, in _convert_element_type_bind_with_trace\n operand = core.Primitive.bind_with_trace(convert_element_type_p, trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 556, in bind_with_trace\n return trace.process_primitive(self, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 1060, in process_primitive\n return primitive.impl(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/dispatch.py"", line 88, in apply_primitive\n outs = fun(*args)\nRuntimeError: Bad StatusOr access: RESOURCE_EXHAUSTED: : CUDA_ERROR_OUT_OF_MEMORY: out of memory\nsrun: error: hkn0634: task 0: Exited with exit code 1\nsrun: error: hkn0634: task 1: Exited with exit code 1\nsrun: error: hkn0634: task 3: Exited with exit code 1\n2025-06-25 18:58:09.645224: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1251: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\n warnings.warn(\nW0000 00:00:1750870704.322842 3710496 gpu_device.cc:2341] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.\nSkipping registering GPU devices...\n2025-06-25 18:58:40.111691: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:58:50.532321: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:59:07.877469: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:59:11.524011: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:59:22.078082: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:59:28.335545: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:59:42.741551: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 18:59:54.196810: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:00:00.612280: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:00:15.362792: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:00:26.593508: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:00:33.963034: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:00:50.616893: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:01:02.756633: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:01:10.113470: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:01:27.461538: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:01:38.838788: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:01:46.301852: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:02:05.029149: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:02:24.090758: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:02:43.100439: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:03:01.662296: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n",log,tab +266,485881,"TERMINAL",0,0,"2276",,terminal_output +267,486926,"TERMINAL",0,0,"3387",,terminal_output +268,487981,"TERMINAL",0,0,"4498",,terminal_output +269,489025,"TERMINAL",0,0,"55409",,terminal_output +270,490072,"TERMINAL",0,0,"66130",,terminal_output +271,491121,"TERMINAL",0,0,"7721",,terminal_output +272,492163,"TERMINAL",0,0,"8832",,terminal_output +273,493204,"TERMINAL",0,0,"9943",,terminal_output +274,494253,"TERMINAL",0,0,"105:0054",,terminal_output +275,495304,"TERMINAL",0,0,"1165",,terminal_output +276,496344,"TERMINAL",0,0,"2276",,terminal_output +277,497398,"TERMINAL",0,0,"3387",,terminal_output +278,498437,"TERMINAL",0,0,"4498",,terminal_output +279,499482,"TERMINAL",0,0,"55509",,terminal_output +280,500515,"TERMINAL",0,0,"67241",,terminal_output +281,501566,"TERMINAL",0,0,"8832",,terminal_output +282,502614,"TERMINAL",0,0,"9943",,terminal_output +283,503664,"TERMINAL",0,0,"201054",,terminal_output +284,504717,"TERMINAL",0,0,"1165",,terminal_output +285,505760,"TERMINAL",0,0,"2276",,terminal_output +286,506808,"TERMINAL",0,0,"3387",,terminal_output +287,507669,"sample_resolution_batches.py",0,0,"from dataclasses import dataclass\nimport time\nimport os\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport numpy as np\nfrom orbax.checkpoint import PyTreeCheckpointer\nfrom PIL import Image, ImageDraw\nimport tyro\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n output_dir: str = ""sample_results""\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 8\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 8\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_dim: int = 512\n dyna_num_blocks: int = 12\n dyna_num_heads: int = 8\n\n\nargs = tyro.cli(Args)\nrng = jax.random.PRNGKey(args.seed)\n\n# --- Load Genie checkpoint ---\ngenie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n # Dynamics\n dyna_dim=args.dyna_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n)\nrng, _rng = jax.random.split(rng)\nimage_shape = (args.image_height, args.image_width, args.image_channels)\ndummy_inputs = dict(\n videos=jnp.zeros((args.batch_size, args.seq_len, *image_shape), dtype=jnp.float32),\n mask_rng=_rng,\n)\nrng, _rng = jax.random.split(rng)\nparams = genie.init(_rng, dummy_inputs)\nckpt = PyTreeCheckpointer().restore(args.checkpoint)[""model""][""params""][""params""]\nparams[""params""].update(ckpt)\n\n\n# --- Define autoregressive sampling loop ---\ndef _autoreg_sample(rng, video_batch, action_batch):\n vid = video_batch[:, : args.start_frame + 1]\n for frame_idx in range(args.start_frame + 1, args.seq_len):\n # --- Sample next frame ---\n print(""Frame"", frame_idx)\n rng, _rng = jax.random.split(rng)\n batch = dict(videos=vid, latent_actions=action_batch[:, :frame_idx], rng=_rng)\n new_frame = genie.apply(\n params,\n batch,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n method=Genie.sample,\n )\n vid = jnp.concatenate([vid, new_frame], axis=1)\n return vid\n\n\n# --- Get video + latent actions ---\n\ntfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n]\nimage_shape = (args.image_height, args.image_width, args.image_channels)\n\ndataloader = get_dataloader(tfrecord_files, args.seq_len, args.batch_size, *image_shape)\nvideo_batch = next(iter(dataloader))\n# Get latent actions from first video only\nfirst_video = video_batch[:1]\nbatch = dict(videos=first_video)\naction_batch = genie.apply(params, batch, False, method=Genie.vq_encode)\naction_batch = action_batch.reshape(1, args.seq_len - 1, 1)\n# Use actions from first video for all videos\naction_batch = jnp.repeat(action_batch, video_batch.shape[0], axis=0)\n\n# --- Sample + evaluate video ---\nvid = _autoreg_sample(rng, video_batch, action_batch)\ngt = video_batch[:, : vid.shape[1]].clip(0, 1).reshape(-1, *video_batch.shape[2:])\nrecon = vid.clip(0, 1).reshape(-1, *vid.shape[2:])\nssim = pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :]).mean()\nprint(f""SSIM: {ssim}"")\n\n# --- Construct and save videos ---\n# Save first video comparison (true vs predicted)\nfirst_true = (video_batch[0:1] * 255).astype(np.uint8)\nfirst_pred = (vid[0:1] * 255).astype(np.uint8)\nfirst_video_comparison = np.zeros((2, *vid.shape[1:5]), dtype=np.uint8)\nfirst_video_comparison[0] = first_true[:, : vid.shape[1]]\nfirst_video_comparison[1] = first_pred\n\n# Create comparison frames for first video\ncomparison_frames = einops.rearrange(first_video_comparison, ""n t h w c -> t h (n w) c"")\nimgs = [Image.fromarray(img) for img in comparison_frames]\n# Write actions on each frame\nfor img, action in zip(imgs[1:], action_batch[0, :, 0]):\n d = ImageDraw.Draw(img)\n d.text((2, 2), f""{action}"", fill=255)\nimgs[0].save(\n f""generation_video_0_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n)\n\n# Save each other video in its own GIF\n\noutput_dir = f""{args.output_dir}/{time.time()}""\nos.makedirs(output_dir, exist_ok=True)\nfor i in range(1, video_batch.shape[0]):\n # Create comparison: true video vs predicted video\n true_video = (video_batch[i:i+1] * 255).astype(np.uint8)\n pred_video = (vid[i:i+1] * 255).astype(np.uint8)\n video_comparison = np.zeros((2, *vid.shape[1:5]), dtype=np.uint8)\n video_comparison[0] = true_video[:, : vid.shape[1]]\n video_comparison[1] = pred_video\n \n # Create comparison frames\n comparison_frames = einops.rearrange(video_comparison, ""n t h w c -> t h (n w) c"")\n imgs = [Image.fromarray(img) for img in comparison_frames]\n # Write actions on each frame\n for img, action in zip(imgs[1:], action_batch[i, :, 0]):\n d = ImageDraw.Draw(img)\n d.text((2, 2), f""{action}"", fill=255)\n\n imgs[0].save(\n f""{output_dir}/generation_video_{i}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n )\n",python,tab +288,507844,"TERMINAL",0,0,"4498",,terminal_output +289,508895,"TERMINAL",0,0,"557:009",,terminal_output +290,509945,"TERMINAL",0,0,"66150",,terminal_output +291,509976,"sample_resolution_batches.py",0,0,"",python,selection_command +292,510657,"sample_resolution_batches.py",56,0,"",python,selection_command +293,510865,"sample_resolution_batches.py",239,0,"",python,selection_command +294,510982,"TERMINAL",0,0,"7721",,terminal_output +295,510996,"sample_resolution_batches.py",308,0,"",python,selection_command +296,511147,"sample_resolution_batches.py",1244,0,"",python,selection_command +297,511317,"sample_resolution_batches.py",1304,0,"",python,selection_command +298,512034,"TERMINAL",0,0,"8832",,terminal_output +299,513082,"TERMINAL",0,0,"9943",,terminal_output +300,514131,"TERMINAL",0,0,"302054",,terminal_output +301,514730,"sample_resolution_batches.py",2192,0,"",python,selection_command +302,515122,"sample_resolution_batches.py",2539,0,"",python,selection_command +303,515184,"TERMINAL",0,0,"1165",,terminal_output +304,516095,"sample_resolution_batches.py",2553,0,"",python,selection_command +305,516218,"TERMINAL",0,0,"2276",,terminal_output +306,516254,"sample_resolution_batches.py",2577,0,"",python,selection_command +307,516441,"sample_resolution_batches.py",2794,0,"",python,selection_command +308,516627,"sample_resolution_batches.py",2841,0,"",python,selection_command +309,516857,"sample_resolution_batches.py",2938,0,"",python,selection_command +310,516999,"sample_resolution_batches.py",3456,0,"",python,selection_command +311,517172,"sample_resolution_batches.py",3488,0,"",python,selection_command +312,517257,"TERMINAL",0,0,"3387",,terminal_output +313,518306,"TERMINAL",0,0,"4498",,terminal_output +314,519141,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,tab +315,519368,"TERMINAL",0,0,"55109",,terminal_output +316,520406,"TERMINAL",0,0,"6617:00",,terminal_output +317,520804,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",23,0,"",shellscript,selection_command +318,521459,"TERMINAL",0,0,"7721",,terminal_output +319,522502,"TERMINAL",0,0,"8832",,terminal_output +320,522689,"sample_resolution_batches.py",0,0,"",python,tab +321,523550,"TERMINAL",0,0,"93054",,terminal_output +322,523828,"sample_resolution_batches.py",3582,0,"",python,selection_command +323,524128,"sample_resolution_batches.py",3488,0,"",python,selection_command +324,524487,"sample_resolution_batches.py",3456,0,"",python,selection_command +325,524591,"TERMINAL",0,0,"41165",,terminal_output +326,524742,"sample_resolution_batches.py",2938,0,"",python,selection_command +327,524913,"sample_resolution_batches.py",2841,0,"",python,selection_command +328,525196,"sample_resolution_batches.py",2794,0,"",python,selection_command +329,525382,"sample_resolution_batches.py",2577,0,"",python,selection_command +330,525553,"sample_resolution_batches.py",2553,0,"",python,selection_command +331,525639,"TERMINAL",0,0,"2276",,terminal_output +332,525716,"sample_resolution_batches.py",2539,0,"",python,selection_command +333,525869,"sample_resolution_batches.py",2192,0,"",python,selection_command +334,526042,"sample_resolution_batches.py",560,0,"",python,selection_command +335,526193,"sample_resolution_batches.py",5818,0,"",python,selection_command +336,526379,"sample_resolution_batches.py",5301,0,"",python,selection_command +337,526685,"TERMINAL",0,0,"3387",,terminal_output +338,526804,"sample_resolution_batches.py",5205,0,"",python,selection_command +339,527232,"sample_resolution_batches.py",5301,0,"",python,selection_command +340,527419,"sample_resolution_batches.py",5818,0,"",python,selection_command +341,527543,"sample_resolution_batches.py",560,0,"",python,selection_command +342,527732,"sample_resolution_batches.py",2192,0,"",python,selection_command +343,527766,"TERMINAL",0,0,"4498",,terminal_output +344,528189,"sample_resolution_batches.py",560,0,"",python,selection_command +345,528792,"TERMINAL",0,0,"55209",,terminal_output +346,529842,"TERMINAL",0,0,"66110",,terminal_output +347,530889,"TERMINAL",0,0,"7721",,terminal_output +348,531933,"TERMINAL",0,0,"8832",,terminal_output +349,532983,"TERMINAL",0,0,"9943",,terminal_output +350,534028,"TERMINAL",0,0,"504054",,terminal_output +351,535083,"TERMINAL",0,0,"1165",,terminal_output +352,535980,"logs/logs_sample/sample_knoms_3292243.log",0,0,"",log,tab +353,536026,"logs/logs_sample/sample_knoms_3292243.log",24784,0,"2025-06-25 19:03:23.072378: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:03:42.500815: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n",log,content +354,536130,"TERMINAL",0,0,"2276",,terminal_output +355,537181,"TERMINAL",0,0,"3387",,terminal_output +356,538226,"TERMINAL",0,0,"4498",,terminal_output +357,539297,"logs/logs_sample/sample_knoms_3292243.log",25410,0,"",log,selection_command +358,539298,"TERMINAL",0,0,"55309",,terminal_output +359,540317,"TERMINAL",0,0,"66120",,terminal_output +360,541353,"TERMINAL",0,0,"7721",,terminal_output +361,542394,"TERMINAL",0,0,"8832",,terminal_output +362,542520,"logs/logs_sample/sample_knoms_3292243.log",0,0,"",log,selection_command +363,543437,"TERMINAL",0,0,"9943",,terminal_output +364,544485,"TERMINAL",0,0,"4:005054",,terminal_output +365,545549,"TERMINAL",0,0,"1276",,terminal_output +366,546577,"TERMINAL",0,0,"3387",,terminal_output +367,547632,"TERMINAL",0,0,"4498",,terminal_output +368,548678,"TERMINAL",0,0,"55409",,terminal_output +369,549726,"TERMINAL",0,0,"66130",,terminal_output +370,550768,"TERMINAL",0,0,"7721",,terminal_output +371,551803,"TERMINAL",0,0,"8832",,terminal_output +372,552856,"TERMINAL",0,0,"9943",,terminal_output +373,553934,"TERMINAL",0,0,"106:0054",,terminal_output +374,554950,"TERMINAL",0,0,"1165",,terminal_output +375,555995,"TERMINAL",0,0,"2276",,terminal_output +376,557044,"TERMINAL",0,0,"3387",,terminal_output +377,558089,"TERMINAL",0,0,"4498",,terminal_output +378,559134,"TERMINAL",0,0,"55509",,terminal_output +379,560187,"TERMINAL",0,0,"66140",,terminal_output +380,561304,"TERMINAL",0,0,"7721",,terminal_output +381,562291,"TERMINAL",0,0,"8832",,terminal_output +382,563342,"TERMINAL",0,0,"9943",,terminal_output +383,564100,"logs/logs_sample/sample_knoms_3292243.log",20,0,"",log,selection_command +384,564377,"TERMINAL",0,0,"201054",,terminal_output +385,564564,"logs/logs_sample/sample_knoms_3292243.log",394,0,"",log,selection_command +386,564833,"logs/logs_sample/sample_knoms_3292243.log",426,0,"",log,selection_command +387,565427,"TERMINAL",0,0,"1165",,terminal_output +388,565600,"logs/logs_sample/sample_knoms_3292243.log",519,0,"",log,selection_command +389,566258,"logs/logs_sample/sample_knoms_3292243.log",426,0,"",log,selection_command +390,566469,"TERMINAL",0,0,"2276",,terminal_output +391,566517,"logs/logs_sample/sample_knoms_3292243.log",394,0,"",log,selection_command +392,567119,"logs/logs_sample/sample_knoms_3292243.log",20,0,"",log,selection_command +393,567521,"TERMINAL",0,0,"3498",,terminal_output +394,567659,"logs/logs_sample/sample_knoms_3292243.log",0,0,"",log,selection_command +395,568352,"logs/logs_sample/sample_knoms_3292243.log",20,0,"",log,selection_command +396,568574,"logs/logs_sample/sample_knoms_3292243.log",394,0,"",log,selection_command +397,568575,"TERMINAL",0,0,"558:009",,terminal_output +398,569399,"logs/logs_sample/sample_knoms_3292243.log",20,0,"",log,selection_command +399,569609,"TERMINAL",0,0,"66150",,terminal_output +400,569652,"logs/logs_sample/sample_knoms_3292243.log",0,0,"",log,selection_command +401,569942,"logs/logs_sample/sample_knoms_3292243.log",20,0,"",log,selection_command +402,570375,"logs/logs_sample/sample_knoms_3292243.log",394,0,"",log,selection_command +403,570582,"logs/logs_sample/sample_knoms_3292243.log",426,0,"",log,selection_command +404,570645,"TERMINAL",0,0,"7721",,terminal_output +405,570789,"logs/logs_sample/sample_knoms_3292243.log",519,0,"",log,selection_command +406,571105,"logs/logs_sample/sample_knoms_3292243.log",793,0,"",log,selection_command +407,571685,"TERMINAL",0,0,"8832",,terminal_output +408,572730,"TERMINAL",0,0,"9943",,terminal_output +409,572884,"logs/logs_sample/sample_knoms_3292243.log",1033,0,"",log,selection_command +410,573227,"logs/logs_sample/sample_knoms_3292243.log",1355,0,"",log,selection_command +411,573769,"TERMINAL",0,0,"302054",,terminal_output +412,574813,"TERMINAL",0,0,"1165",,terminal_output +413,575849,"TERMINAL",0,0,"2276",,terminal_output +414,576903,"TERMINAL",0,0,"3387",,terminal_output +415,577957,"TERMINAL",0,0,"4498",,terminal_output +416,578186,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",0,0,"",shellscript,tab +417,578772,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",41,0,"",shellscript,selection_command +418,579004,"TERMINAL",0,0,"55109",,terminal_output +419,579025,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",69,0,"",shellscript,selection_command +420,579049,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",93,0,"",shellscript,selection_command +421,579081,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",125,0,"",shellscript,selection_command +422,579112,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",163,0,"",shellscript,selection_command +423,579145,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",189,0,"",shellscript,selection_command +424,579177,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",210,0,"",shellscript,selection_command +425,579211,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",254,0,"",shellscript,selection_command +426,579244,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",297,0,"",shellscript,selection_command +427,579281,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",340,0,"",shellscript,selection_command +428,579315,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",372,0,"",shellscript,selection_command +429,579350,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",394,0,"",shellscript,selection_command +430,579386,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",397,0,"",shellscript,selection_command +431,579417,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",421,0,"",shellscript,selection_command +432,579453,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",426,0,"",shellscript,selection_command +433,579483,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",429,0,"",shellscript,selection_command +434,579516,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",459,0,"",shellscript,selection_command +435,579548,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",489,0,"",shellscript,selection_command +436,579587,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",519,0,"",shellscript,selection_command +437,579620,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",522,0,"",shellscript,selection_command +438,579650,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",623,0,"",shellscript,selection_command +439,579686,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",745,0,"",shellscript,selection_command +440,579719,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",758,0,"",shellscript,selection_command +441,579752,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",793,0,"",shellscript,selection_command +442,579786,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",796,0,"",shellscript,selection_command +443,579821,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",925,0,"",shellscript,selection_command +444,579854,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1033,0,"",shellscript,selection_command +445,579886,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1034,0,"",shellscript,selection_command +446,579920,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1037,0,"",shellscript,selection_command +447,579955,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1060,0,"",shellscript,selection_command +448,579986,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1170,0,"",shellscript,selection_command +449,580018,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1290,0,"",shellscript,selection_command +450,580052,"TERMINAL",0,0,"6618:00",,terminal_output +451,580189,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1301,0,"",shellscript,selection_command +452,580366,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1355,0,"",shellscript,selection_command +453,580537,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1358,0,"",shellscript,selection_command +454,580780,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1460,0,"",shellscript,selection_command +455,581098,"TERMINAL",0,0,"7721",,terminal_output +456,581362,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1460,1,"",shellscript,content +457,581534,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1460,1,"",shellscript,content +458,582136,"TERMINAL",0,0,"8832",,terminal_output +459,582374,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1460,0,"6",shellscript,content +460,582375,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",1461,0,"",shellscript,selection_keyboard +461,583182,"TERMINAL",0,0,"9943",,terminal_output +462,584220,"TERMINAL",0,0,"403054",,terminal_output +463,585263,"TERMINAL",0,0,"1165",,terminal_output +464,586311,"TERMINAL",0,0,"2276",,terminal_output +465,587361,"TERMINAL",0,0,"3387",,terminal_output +466,588409,"TERMINAL",0,0,"4498",,terminal_output +467,588464,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +468,590575,"TERMINAL",0,0,"scancel 3292243",,terminal_command +469,590597,"TERMINAL",0,0,"]633;E;2025-06-25 19:04:47 scancel 3292243;d23c989f-627c-40e2-ae18-db6702fd128f]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +470,603147,"TERMINAL",0,0,"sbatch sbatch_scripts/sample_jafar/sample_knoms.sbatch",,terminal_command +471,603183,"TERMINAL",0,0,"]633;E;2025-06-25 19:04:59 sbatch sbatch_scripts/sample_jafar/sample_knoms.sbatch;d23c989f-627c-40e2-ae18-db6702fd128f]633;CSubmitted batch job 3292297\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +472,607251,"TERMINAL",0,0,"queue",,terminal_command +473,607331,"TERMINAL",0,0,"]633;E;2025-06-25 19:05:03 queue;d23c989f-627c-40e2-ae18-db6702fd128f]633;C[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Wed Jun 25 19:05:03 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3292297 accelerat sample_k tum_ind3 R\t0:03\t 1 hkn04353292255 accelerat train_la tum_ind3 R\t6:53\t 1 hkn05293289577 accelerat train_dy tum_ind3 R 23:28:27\t 1 hkn0712",,terminal_output +474,608134,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +475,609478,"TERMINAL",0,0,"fsacct_",,terminal_command +476,609545,"TERMINAL",0,0,"]633;E;2025-06-25 19:05:06 fsacct_;d23c989f-627c-40e2-ae18-db6702fd128f]633;Cbash: fsacct_: command not found...\r\n",,terminal_output +477,610218,"TERMINAL",0,0,"^[[A",,terminal_output +478,610565,"TERMINAL",0,0,"^C\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;130",,terminal_output +479,612721,"TERMINAL",0,0,"fsacct_week",,terminal_command +480,612767,"TERMINAL",0,0,"]633;E;2025-06-25 19:05:09 fsacct_week ;d23c989f-627c-40e2-ae18-db6702fd128f]633;C",,terminal_output +481,612799,"TERMINAL",0,0," JobID JobName Partition All State Elapsed Timelimit \r\n--------------- ------------------------------ ---------------- --- ------------ ---------- ---------- \r\n 3273476 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:06 00:10:00 \r\n 3273480 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:00:32 00:10:00 \r\n 3273494 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:40 00:10:00 \r\n 3273503 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:16 00:10:00 \r\n 3273681 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3273687 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:16 00:10:00 \r\n 3273795 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3273820 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:00:31 00:15:00 \r\n 3273828 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 1-00:00:10 1-00:00:00 \r\n 3273829 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 1-00:00:10 1-00:00:00 \r\n 3273831 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 12:00:29 12:00:00 \r\n 3273841 train_tokenizer_knoms_overfit+ accelerated 32 FAILED 00:01:13 12:00:00 \r\n 3273846 train_tokenizer_knoms_overfit+ accelerated 32 TIMEOUT 12:00:28 12:00:00 \r\n 3274766 train_lam_ful_tfrecord accelerated 32 TIMEOUT 00:10:02 00:10:00 \r\n 3276030 train_tokenizer_overfit_seedi+ accelerated 8 FAILED 00:01:35 00:10:00 \r\n 3276039 train_tokenizer_overfit_seedi+ accelerated 8 FAILED 00:00:56 00:10:00 \r\n 3276048 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 00:10:03 00:10:00 \r\n 3276051 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 00:30:01 00:30:00 \r\n 3276052 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:02 01:00:00 \r\n 3276053 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:02 01:00:00 \r\n 3276058 train_tokenizer_overfit_seedi+ accelerated 8 TIMEOUT 01:00:03 01:00:00 \r\n 3276715 train_lam_ful_tfrecord accelerated 32 TIMEOUT 00:10:13 00:10:00 \r\n 3277318 train_lam_ful_tfrecord accelerated 32 TIMEOUT 16:00:27 16:00:00 \r\n 3282472 train_dyn_knoms_full-test accelerated 32 TIMEOUT 00:10:24 00:10:00 \r\n 3282485 train_dyn_knoms_full accelerated 32 FAILED 00:00:27 1-00:00:00 \r\n 3282489 train_dyn_knoms_full accelerated 32 TIMEOUT 1-00:00:27 1-00:00:00 \r\n 3285784 train_tokenizer_overfit_tfrec+ accelerated 32 FAILED 00:00:28 00:10:00 \r\n 3285785 train_lam_overfit_tfrecord_10 accelerated 32 FAILED 00:00:32 00:10:00 \r\n 3285797 train_lam_overfit_tfrecord_10 accelerated 32 FAILED 00:00:28 00:10:00 \r\n 3285798 train_tokenizer_overfit_tfrec+ accelerated 32 FAILED 00:00:27 00:10:00 \r\n 3285811 train_tokenizer_overfit_tfrec+ accelerated 32 TIMEOUT 00:10:07 00:10:00 \r\n 3285820 train_lam_overfit_tfrecord_10 accelerated 32 TIMEOUT 00:10:06 00:10:00 \r\n 3286113 train_lam_overfit_tfrecord_10 accelerated 32 TIMEOUT 1-00:00:09 1-00:00:00 \r\n 3286114 train_tokenizer_overfit_tfrec+ accelerated 32 TIMEOUT 1-00:00:09 1-00:00:00 \r\n 3286195 train_dyn_knoms_full_nodes_2 accelerated 64 TIMEOUT 00:10:26 00:10:00 \r\n 3287192 download_7xx accelerated 32 FAILED 00:00:27 00:10:00 \r\n 3287194 download_7xx accelerated 32 FAILED 00:00:26 00:10:00 \r\n 3287195 download_7xx accelerated 32 FAILED 00:00:26 00:10:00 \r\n 3287198 download_6xx accelerated 32 TIMEOUT 00:10:18 00:10:00 \r\n 3287213 download_6xx cpuonly 152 COMPLETED 01:44:02 06:00:00 \r\n 3287214 download_7xx cpuonly 152 COMPLETED 04:27:48 06:00:00 \r\n 3287215 download_8xx cpuonly 152 COMPLETED 01:07:53 06:00:00 \r\n 3287216 download_9xx cpuonly 152 COMPLETED 02:11:44 06:00:00 \r\n 3287217 download_10xx cpuonly 152 COMPLETED 01:10:01 06:00:00 \r\n 3289199 download_6xx cpuonly 152 COMPLETED 03:05:47 06:00:00 \r\n 3289204 download_7xx cpuonly 152 COMPLETED 05:07:25 06:00:00 \r\n 3289205 download_8xx cpuonly 152 COMPLETED 01:27:47 06:00:00 \r\n 3289206 download_9xx cpuonly 152 COMPLETED 02:27:37 06:00:00 \r\n 3289207 download_10xx cpuonly 152 COMPLETED 01:25:46 06:00:00 \r\n 3289242 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:32 00:10:00 \r\n 3289247 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:33 00:10:00 \r\n 3289322 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:20 00:10:00 \r\n 3289376 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:17 00:10:00 \r\n 3289389 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:00:33 00:10:00 \r\n 3289394 preprocess_video_to_npy_opena+ cpuonly 152 COMPLETED 00:03:42 00:10:00 \r\n 3289433 preprocess_video_to_npy_opena+ cpuonly 152 TIMEOUT 00:10:16 00:10:00 \r\n 3289439 mp4_to_npy_openai_first_try_8+ cpuonly 152 COMPLETED 00:08:49 00:10:00 \r\n 3289469 mp4_to_npy_openai_first_try_6+ cpuonly 152 COMPLETED 00:18:29 01:00:00 \r\n 3289483 mp4_to_npy_openai_first_try_7+ cpuonly 152 COMPLETED 00:48:15 01:00:00 \r\n 3289484 mp4_to_npy_openai_first_try_8+ cpuonly 152 COMPLETED 00:08:43 01:00:00 \r\n 3289485 mp4_to_npy_openai_first_try_9+ cpuonly 152 COMPLETED 00:32:34 01:00:00 \r\n 3289486 mp4_to_npy_openai_first_try_1+ cpuonly 152 COMPLETED 00:08:10 01:00:00 \r\n 3289548 train_dyn_overfit_tfrecord_10 accelerated 32 TIMEOUT 00:10:17 00:10:00 \r\n 3289577 train_dyn_overfit_tfrecord_10 accelerated 32 RUNNING 23:28:33 1-00:00:00 \r\n 3290215 npy_to_tfrecord_6xx cpuonly 152 COMPLETED 00:01:01 00:10:00 \r\n 3290230 npy_to_tfrecord_6xx cpuonly 152 TIMEOUT 00:10:06 00:10:00 \r\n 3290234 mp4_to_npy_openai_all cpuonly 152 TIMEOUT 00:10:06 00:10:00 \r\n 3290235 npy_to_tfrecord_7xx cpuonly 152 COMPLETED 01:45:34 02:00:00 \r\n 3290241 mp4_to_npy_openai_all cpuonly 152 COMPLETED 01:23:07 12:00:00 \r\n 3290255 npy_to_tfrecord_6xx cpuonly 152 COMPLETED 01:01:32 03:00:00 \r\n 3290256 npy_to_tfrecord_8xx cpuonly 152 COMPLETED 00:27:07 03:00:00 \r\n 3290257 npy_to_tfrecord_9xx cpuonly 152 COMPLETED 00:48:28 03:00:00 \r\n 3290258 npy_to_tfrecord_10xx cpuonly 152 COMPLETED 00:27:30 03:00:00 \r\n 3292019 train_tokenizer_coinrun accelerated 32 FAILED 00:00:28 06:00:00 \r\n 3292064 sample_knoms_overfit_10 accelerated 32 FAILED 00:00:59 00:45:00 \r\n 3292098 sample_knoms_overfit_10 accelerated 8 FAILED 00:01:43 00:45:00 \r\n 3292119 train_tokenizer_coinrun accelerated 32 FAILED 00:00:27 06:00:00 \r\n 3292139 train_tokenizer_coinrun accelerated 8 FAILED 00:03:24 00:10:00 \r\n 3292156 train_lam_6 accelerated 32 FAILED 00:01:06 00:10:00 \r\n 3292206 train_lam_6 accelerated 32 TIMEOUT 00:10:29 00:10:00 \r\n 3292207 train_tokenizer_coinrun accelerated 32 TIMEOUT 00:10:29 00:10:00 \r\n 3292225 sample_knoms accelerated 8 FAILED 00:01:42 00:15:00 \r\n 3292255 train_lam_6 accelerated 32 RUNNING 00:06:59 00:10:00 \r\n 3292297 sample_knoms accelerated 32 RUNNING 00:00:09 00:15:00 \r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +482,631974,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",869,0,"",shellscript,selection_mouse +483,631974,"sbatch_scripts/sample_jafar/sample_knoms.sbatch",869,1,"h",shellscript,selection_mouse +484,633826,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=00:10:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_6\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_lam.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar \\n --num_latents 6 \n",shellscript,tab +485,640870,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=00:10:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_tokenizer_coinrun\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_tokenizer.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n",shellscript,tab +486,641904,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",521,0,"",shellscript,selection_mouse +487,641907,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",520,0,"",shellscript,selection_command +488,642480,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",428,0,"",shellscript,selection_mouse +489,642488,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",427,0,"",shellscript,selection_command +490,642543,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",427,1,"L",shellscript,selection_mouse +491,642545,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",428,0,"",shellscript,selection_command +492,645134,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",427,0,"",shellscript,selection_command +493,645484,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,selection_command +494,645563,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",20,0,"",shellscript,selection_command +495,645816,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",21,0,"",shellscript,selection_command +496,645848,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",39,0,"",shellscript,selection_command +497,645879,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",67,0,"",shellscript,selection_command +498,646041,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",91,0,"",shellscript,selection_command +499,646331,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",67,0,"",shellscript,selection_command +500,646724,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",67,1,"",shellscript,content +501,647436,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",67,0,"#",shellscript,content +502,647442,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",65,1,"1",shellscript,content +503,647445,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",427,0,"",shellscript,selection_command +504,647985,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",385,0,"",shellscript,selection_command +505,648229,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",342,0,"",shellscript,selection_command +506,648258,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",287,0,"",shellscript,selection_command +507,648288,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",231,0,"",shellscript,selection_command +508,648548,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",287,0,"",shellscript,selection_command +509,648734,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",231,0,"",shellscript,selection_command +510,648974,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",206,0,"",shellscript,selection_command +511,649004,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",184,0,"",shellscript,selection_command +512,649046,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",146,0,"",shellscript,selection_command +513,649072,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",114,0,"",shellscript,selection_command +514,649107,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",89,0,"",shellscript,selection_command +515,649484,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",88,0,"",shellscript,selection_command +516,649731,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",87,0,"",shellscript,selection_command +517,649761,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",86,0,"",shellscript,selection_command +518,649793,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",85,0,"",shellscript,selection_command +519,649825,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",84,0,"",shellscript,selection_command +520,649856,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",83,0,"",shellscript,selection_command +521,649889,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",82,0,"",shellscript,selection_command +522,656055,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",82,1,"",shellscript,content +523,656232,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",82,1,"",shellscript,content +524,657169,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",82,0,"2",shellscript,content +525,657170,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",83,0,"",shellscript,selection_keyboard +526,657246,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",83,0,"4",shellscript,content +527,657247,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",84,0,"",shellscript,selection_keyboard +528,657524,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",83,0,"",shellscript,selection_command +529,657638,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",84,0,"",shellscript,selection_command +530,657812,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",85,0,"",shellscript,selection_command +531,658232,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",85,1,"0",shellscript,content +532,660098,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"",shellscript,tab +533,660861,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",67,0,"",shellscript,selection_command +534,666869,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",68,0,"",shellscript,selection_command +535,667141,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",75,0,"",shellscript,selection_command +536,667365,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",77,0,"",shellscript,selection_command +537,667540,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",81,0,"",shellscript,selection_command +538,667930,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",82,0,"",shellscript,selection_command +539,668718,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",82,2,"",shellscript,content +540,669856,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",82,0,"2",shellscript,content +541,669859,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",83,0,"",shellscript,selection_keyboard +542,669919,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",83,0,"4",shellscript,content +543,669920,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",84,0,"",shellscript,selection_keyboard +544,670095,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",83,0,"",shellscript,selection_command +545,670238,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",84,0,"",shellscript,selection_command +546,670387,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",85,0,"",shellscript,selection_command +547,670746,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",85,1,"0",shellscript,content +548,720261,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +549,721024,"train_tokenizer.py",0,0,"from dataclasses import dataclass\nimport os\nimport time\n\nimport einops\nfrom flax.training import orbax_utils\nfrom flax.training.train_state import TrainState\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax\nfrom orbax.checkpoint import PyTreeCheckpointer\nimport numpy as np\nimport dm_pix as pix\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\n\nfrom models.tokenizer import TokenizerVQVAE\nfrom utils.dataloader import get_dataloader\n\nts = int(time.time())\n\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 300_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data_tfrecords/coinrun""\n checkpoint: str = """"\n # Optimization\n vq_beta: float = 0.25\n batch_size: int = 48\n min_lr: float = 3e-4\n max_lr: float = 3e-4\n warmup_steps: int = 10000\n # Tokenizer\n model_dim: int = 512\n latent_dim: int = 32\n num_latents: int = 1024\n patch_size: int = 4\n num_blocks: int = 8\n num_heads: int = 8\n dropout: float = 0.0\n codebook_dropout: float = 0.01\n # Logging\n log: bool = False\n entity: str = """"\n project: str = """"\n experiment_name: str = """"\n log_interval: int = 5\n log_image_interval: int = 250\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 10000\n log_gradients: bool = False\n\n\nargs = tyro.cli(Args)\n\n\ndef tokenizer_loss_fn(params, state, inputs):\n # --- Compute loss ---\n outputs = state.apply_fn(\n params,\n inputs,\n training=True,\n rngs={""params"": inputs[""rng""], ""dropout"": inputs[""dropout_rng""]},\n )\n mse = jnp.square(inputs[""videos""] - outputs[""recon""]).mean()\n q_loss = jnp.square(jax.lax.stop_gradient(outputs[""emb""]) - outputs[""z""]).mean()\n commitment_loss = jnp.square(\n outputs[""emb""] - jax.lax.stop_gradient(outputs[""z""])\n ).mean()\n loss = mse + q_loss + args.vq_beta * commitment_loss\n\n # --- Compute validation metrics ---\n gt = inputs[""videos""].clip(0, 1).reshape(-1, *inputs[""videos""].shape[2:])\n recon = outputs[""recon""].clip(0, 1).reshape(-1, *outputs[""recon""].shape[2:])\n psnr = pix.psnr(gt, recon).mean()\n ssim = pix.ssim(gt, recon).mean()\n _, index_counts = jnp.unique_counts(\n jnp.ravel(outputs[""indices""]), size=args.num_latents, fill_value=0\n )\n codebook_usage = (index_counts != 0).mean()\n metrics = dict(\n loss=loss,\n mse=mse,\n q_loss=q_loss,\n commitment_loss=commitment_loss,\n psnr=psnr,\n ssim=ssim,\n codebook_usage=codebook_usage,\n )\n return loss, (outputs[""recon""], metrics)\n\n\n@jax.jit\ndef train_step(state, inputs):\n grad_fn = jax.value_and_grad(tokenizer_loss_fn, has_aux=True, allow_int=True)\n (loss, (recon, metrics)), grads = grad_fn(state.params, state, inputs)\n state = state.apply_gradients(grads=grads)\n if args.log_gradients:\n metrics[""encoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""encoder""]\n )\n metrics[""vq_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""vq""]\n )\n metrics[""decoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""decoder""]\n )\n return state, loss, recon, metrics\n\n\nif __name__ == ""__main__"":\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n per_device_batch_size_for_init = args.batch_size // num_devices\n\n rng = jax.random.PRNGKey(args.seed)\n if args.log and jax.process_index() == 0:\n wandb.init(\n entity=args.entity,\n project=args.project,\n group=""debug"",\n name=args.experiment_name,\n config=args,\n )\n\n # --- Initialize model ---\n tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.model_dim,\n latent_dim=args.latent_dim,\n num_latents=args.num_latents,\n patch_size=args.patch_size,\n num_blocks=args.num_blocks,\n num_heads=args.num_heads,\n dropout=args.dropout,\n codebook_dropout=args.codebook_dropout,\n )\n rng, _rng = jax.random.split(rng)\n image_shape = (args.image_height, args.image_width, args.image_channels)\n inputs = dict(\n videos=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len, *image_shape),\n dtype=jnp.float32,\n ),\n )\n init_params = tokenizer.init(_rng, inputs)\n\n # --- Initialize optimizer ---\n lr_schedule = optax.warmup_cosine_decay_schedule(\n args.min_lr, args.max_lr, args.warmup_steps, args.num_steps\n )\n tx = optax.adamw(learning_rate=lr_schedule, b1=0.9, b2=0.9, weight_decay=1e-4)\n train_state = TrainState.create(apply_fn=tokenizer.apply, params=init_params, tx=tx)\n\n # FIXME: switch to create_hybrid_device_mesh for runs spanning multiple nodes\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n train_state = jax.device_put(train_state, replicated_sharding)\n\n # --- Load checkpoint ---\n step = 0\n if args.checkpoint:\n restore_target = {""model"": train_state}\n restore_args = orbax_utils.restore_args_from_target(restore_target)\n train_state.params[""params""].update(\n PyTreeCheckpointer()\n .restore(args.checkpoint, item=restore_target, restore_args=restore_args)[\n ""model""\n ]\n .params[""params""]\n )\n # Assume checkpoint is of the form tokenizer__\n step += int(args.checkpoint.split(""_"")[-1])\n\n # --- TRAIN LOOP ---\n tfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n ]\n dataloader = get_dataloader(\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n tfrecord_files,\n args.seq_len,\n args.batch_size,\n *image_shape,\n )\n print(f""Starting training from step {step}..."")\n while step < args.num_steps:\n for videos in dataloader:\n # --- Train step ---\n rng, _rng, _rng_dropout = jax.random.split(rng, 3)\n\n videos_sharding = NamedSharding(\n mesh, PartitionSpec(""data"", None, None, None, None)\n )\n videos = jax.make_array_from_process_local_data(videos_sharding, videos)\n\n inputs = dict(videos=videos, rng=_rng, dropout_rng=_rng_dropout)\n start_time = time.time()\n train_state, loss, recon, metrics = train_step(train_state, inputs)\n elapsed_time = (time.time() - start_time) * 1000\n print(f""Step {step}, loss: {loss}, step time: {elapsed_time}ms"")\n step += 1\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n wandb.log(\n {\n ""loss"": loss,\n ""step"": step,\n ""step_time_ms"": elapsed_time,\n **metrics,\n }\n )\n if step % args.log_image_interval == 0:\n gt_seq = inputs[""videos""][0]\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n # NOTE: Process-dependent control flow deliberately happens\n # after indexing operation since it must not contain code\n # sections that lead to cross-accelerator communication.\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[0])),\n recon=wandb.Image(np.asarray(recon_seq[0])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n wandb.log(log_images)\n if step % args.log_checkpoint_interval == 0:\n ckpt = {""model"": train_state}\n orbax_checkpointer = orbax.checkpoint.PyTreeCheckpointer()\n save_args = orbax_utils.save_args_from_target(ckpt)\n orbax_checkpointer.save(\n os.path.join(os.getcwd(), args.ckpt_dir, f""tokenizer_{ts}_{step}""),\n ckpt,\n save_args=save_args,\n )\n if step >= args.num_steps:\n break\n",python,tab +550,721463,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +551,721651,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"",shellscript,tab +552,722093,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +553,722755,"train_tokenizer.py",0,0,"",python,tab +554,723303,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +555,724982,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"",shellscript,tab +556,725794,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +557,726376,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"",shellscript,tab +558,726962,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +559,728339,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"",shellscript,tab +560,729208,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +561,729669,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"",shellscript,tab +562,730160,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +563,730661,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"",shellscript,tab +564,731256,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +565,731671,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"",shellscript,tab +566,732185,"sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",0,0,"",shellscript,tab +567,732609,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",0,0,"",shellscript,tab +568,735057,"TERMINAL",0,0,"fsacct_^C",,terminal_command +569,735062,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;d23c989f-627c-40e2-ae18-db6702fd128f]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D",,terminal_output +570,747229,"TERMINAL",0,0,"sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch",,terminal_command +571,747272,"TERMINAL",0,0,"]633;E;2025-06-25 19:07:23 sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_6.sbatch;d23c989f-627c-40e2-ae18-db6702fd128f]633;CSubmitted batch job 3292306\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +572,759242,"TERMINAL",0,0,"sbatch sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch",,terminal_command +573,759287,"TERMINAL",0,0,"]633;E;2025-06-25 19:07:35 sbatch sbatch_scripts/coinrun/latent_action_ablation/train_tokenizer_coinrun.sbatch;d23c989f-627c-40e2-ae18-db6702fd128f]633;CSubmitted batch job 3292307\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +574,763506,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_6 copy.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_6\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_lam.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar \\n --num_latents 6 \n",shellscript,tab +575,770096,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_6\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_lam.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar \\n --num_latents 6 \n",shellscript,tab +576,772757,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1241,0,"",shellscript,selection_command +577,773059,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1220,0,"",shellscript,selection_command +578,773528,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1240,0,"",shellscript,selection_command +579,773823,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1239,1,"",shellscript,content +580,774081,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1238,1,"",shellscript,content +581,774647,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1238,0,"1",shellscript,content +582,774648,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1239,0,"",shellscript,selection_keyboard +583,775320,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1239,0,"2",shellscript,content +584,775321,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1240,0,"",shellscript,selection_keyboard +585,775883,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",1239,0,"",shellscript,selection_command +586,782006,"TERMINAL",0,0,"sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",,terminal_command +587,782050,"TERMINAL",0,0,"]633;E;2025-06-25 19:07:58 sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch;d23c989f-627c-40e2-ae18-db6702fd128f]633;CSubmitted batch job 3292309\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +588,786793,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12 copy.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_6\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_lam.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar \\n --num_latents 12\n",shellscript,tab +589,789979,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12 copy.sbatch",20,0,"",shellscript,selection_command +590,791184,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",0,0,"",shellscript,tab +591,796505,"TERMINAL",0,0,"scancel 3292309",,terminal_command +592,796539,"TERMINAL",0,0,"]633;E;2025-06-25 19:08:13 scancel 3292309;d23c989f-627c-40e2-ae18-db6702fd128f]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +593,797643,"TERMINAL",0,0,"queue",,terminal_command +594,797691,"TERMINAL",0,0,"]633;E;2025-06-25 19:08:14 queue;d23c989f-627c-40e2-ae18-db6702fd128f]633;C",,terminal_output +595,797748,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Wed Jun 25 19:08:14 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3292309 accelerat train_la tum_ind3 CG\t0:14\t 1 hkn07323292307 accelerat train_to tum_ind3 R\t0:38\t 1 hkn07293292306 accelerat train_la tum_ind3 R\t0:50\t 1 hkn06343292297 accelerat sample_k tum_ind3 R\t3:14\t 1 hkn04353292255 accelerat train_la tum_ind3 R10:04\t 1 hkn05293289577 accelerat train_dy tum_ind3 R 23:31:38\t 1 hkn0712",,terminal_output +596,798804,"TERMINAL",0,0,"591559",,terminal_output +597,799848,"TERMINAL",0,0,"64026640",,terminal_output +598,800894,"TERMINAL",0,0,"713771",,terminal_output +599,801938,"TERMINAL",0,0,"824882",,terminal_output +600,802989,"TERMINAL",0,0,"935993",,terminal_output +601,804035,"TERMINAL",0,0,"204620104",,terminal_output +602,804709,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",0,0,"",shellscript,selection_command +603,804806,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",20,0,"",shellscript,selection_command +604,805072,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",21,0,"",shellscript,selection_command +605,805087,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",39,0,"",shellscript,selection_command +606,805089,"TERMINAL",0,0,"157115",,terminal_output +607,805121,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",67,0,"",shellscript,selection_command +608,805153,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",91,0,"",shellscript,selection_command +609,805187,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",123,0,"",shellscript,selection_command +610,805230,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",161,0,"",shellscript,selection_command +611,805254,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",187,0,"",shellscript,selection_command +612,805287,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",208,0,"",shellscript,selection_command +613,805315,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",258,0,"",shellscript,selection_command +614,805349,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",307,0,"",shellscript,selection_command +615,805574,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",350,0,"",shellscript,selection_command +616,805900,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",380,0,"",shellscript,selection_command +617,806131,"TERMINAL",0,0,"268226",,terminal_output +618,806165,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",379,1,"",shellscript,content +619,806595,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",379,0,"2",shellscript,content +620,806596,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",380,0,"",shellscript,selection_keyboard +621,806920,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",379,1,"",shellscript,content +622,807076,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",378,1,"",shellscript,content +623,807087,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",378,0,"1",shellscript,content +624,807089,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",379,0,"",shellscript,selection_keyboard +625,807178,"TERMINAL",0,0,"379337",,terminal_output +626,807570,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",378,1,"",shellscript,content +627,807871,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",378,0,"_",shellscript,content +628,807872,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",379,0,"",shellscript,selection_keyboard +629,808089,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",379,0,"1",shellscript,content +630,808090,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",380,0,"",shellscript,selection_keyboard +631,808236,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",380,0,"2",shellscript,content +632,808237,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",381,0,"",shellscript,selection_keyboard +633,808237,"TERMINAL",0,0,"4255laCG10:1457to48729306train_la1:0063497sample_k 3:244358",,terminal_output +634,809283,"TERMINAL",0,0,"59159",,terminal_output +635,809540,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +636,813231,"TERMINAL",0,0,"sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch",,terminal_command +637,813276,"TERMINAL",0,0,"]633;E;2025-06-25 19:08:29 sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_12.sbatch;d23c989f-627c-40e2-ae18-db6702fd128f]633;CSubmitted batch job 3292310\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +638,815246,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_12 copy.sbatch",0,0,"",shellscript,tab +639,837138,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_6\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_lam.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar \\n --num_latents 12\n",shellscript,tab +640,838892,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",21,0,"",shellscript,selection_command +641,839139,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",39,0,"",shellscript,selection_command +642,839166,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",67,0,"",shellscript,selection_command +643,839198,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",91,0,"",shellscript,selection_command +644,839231,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",123,0,"",shellscript,selection_command +645,839262,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",161,0,"",shellscript,selection_command +646,839296,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",187,0,"",shellscript,selection_command +647,839330,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",208,0,"",shellscript,selection_command +648,839363,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",258,0,"",shellscript,selection_command +649,839400,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",307,0,"",shellscript,selection_command +650,839434,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",350,0,"",shellscript,selection_command +651,839902,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",380,0,"",shellscript,selection_command +652,841081,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",380,0,"24",shellscript,content +653,841081,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",379,1,"",shellscript,content +654,841386,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",380,0,"",shellscript,selection_command +655,841521,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",404,0,"",shellscript,selection_command +656,842093,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1242,0,"",shellscript,selection_command +657,842647,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1221,0,"",shellscript,selection_command +658,843035,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1241,0,"",shellscript,selection_command +659,843764,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1240,1,"",shellscript,content +660,843906,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1239,1,"",shellscript,content +661,844478,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1239,0,"2",shellscript,content +662,844479,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1240,0,"",shellscript,selection_keyboard +663,844525,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1240,0,"4",shellscript,content +664,844526,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1241,0,"",shellscript,selection_keyboard +665,844777,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",1240,0,"",shellscript,selection_command +666,850059,"TERMINAL",0,0,"sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch",,terminal_command +667,850096,"TERMINAL",0,0,"]633;E;2025-06-25 19:09:06 sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_24.sbatch;d23c989f-627c-40e2-ae18-db6702fd128f]633;CSubmitted batch job 3292313\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +668,856482,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_24 copy.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_24\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_lam.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar \\n --num_latents 24\n",shellscript,tab +669,860667,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=24:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_24\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared'\n\nCHECKPOINT_DIR=$ws_dir/data/checkpoints/$job_name_$slurm_job_id\nLOG_DIR=$ws_dir/logs/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\nmkdir -p $LOG_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/coinrun/coinrun_tfrecords'\n\nsrun python train_lam.py \\n --batch_size=192 \\n --experiment_name $job_name \\n --ckpt_dir $CHECKPOINT_DIR \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --image_height 64 \\n --image_width 64 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar \\n --num_latents 24\n",shellscript,tab +670,861655,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",20,0,"",shellscript,selection_command +671,861891,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",21,0,"",shellscript,selection_command +672,861921,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",39,0,"",shellscript,selection_command +673,861954,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",67,0,"",shellscript,selection_command +674,861991,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",91,0,"",shellscript,selection_command +675,862023,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",123,0,"",shellscript,selection_command +676,862054,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",161,0,"",shellscript,selection_command +677,862087,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",187,0,"",shellscript,selection_command +678,862120,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",208,0,"",shellscript,selection_command +679,862152,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",258,0,"",shellscript,selection_command +680,862315,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",307,0,"",shellscript,selection_command +681,862473,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",350,0,"",shellscript,selection_command +682,862752,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",381,0,"",shellscript,selection_command +683,863043,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",380,1,"",shellscript,content +684,863152,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",379,1,"",shellscript,content +685,864224,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",379,0,"4",shellscript,content +686,864225,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",380,0,"",shellscript,selection_keyboard +687,864339,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",380,0,"8",shellscript,content +688,864340,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",381,0,"",shellscript,selection_keyboard +689,864824,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",380,0,"",shellscript,selection_command +690,865090,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",404,0,"",shellscript,selection_command +691,865412,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",406,0,"",shellscript,selection_command +692,865623,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",429,0,"",shellscript,selection_command +693,865764,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",436,0,"",shellscript,selection_command +694,865898,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",438,0,"",shellscript,selection_command +695,866159,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",467,0,"",shellscript,selection_command +696,866181,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",497,0,"",shellscript,selection_command +697,866212,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",529,0,"",shellscript,selection_command +698,866246,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",531,0,"",shellscript,selection_command +699,866300,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",555,0,"",shellscript,selection_command +700,866556,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",582,0,"",shellscript,selection_command +701,866587,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",584,0,"",shellscript,selection_command +702,866621,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",615,0,"",shellscript,selection_command +703,866722,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",650,0,"",shellscript,selection_command +704,866893,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",681,0,"",shellscript,selection_command +705,867056,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",745,0,"",shellscript,selection_command +706,867226,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",783,0,"",shellscript,selection_command +707,867372,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",801,0,"",shellscript,selection_command +708,867516,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",803,0,"",shellscript,selection_command +709,867697,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",834,0,"",shellscript,selection_command +710,867848,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",902,0,"",shellscript,selection_command +711,868032,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",928,0,"",shellscript,selection_command +712,868208,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",951,0,"",shellscript,selection_command +713,868617,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",1242,0,"",shellscript,selection_command +714,869125,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",1221,0,"",shellscript,selection_command +715,870674,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",1241,0,"8",shellscript,content +716,870675,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",1239,1,"",shellscript,content +717,879504,"TERMINAL",0,0,"sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",,terminal_command +718,879543,"TERMINAL",0,0,"]633;E;2025-06-25 19:09:36 sbatch sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch;d23c989f-627c-40e2-ae18-db6702fd128f]633;CSubmitted batch job 3292314\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +719,881118,"TERMINAL",0,0,"queue",,terminal_command +720,881216,"TERMINAL",0,0,"]633;E;2025-06-25 19:09:37 queue;d23c989f-627c-40e2-ae18-db6702fd128f]633;C[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Wed Jun 25 19:09:37 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3292314 accelerat train_la tum_ind3 R\t0:00\t 1 hkn05293292313 accelerat train_la tum_ind3 R\t0:30\t 1 hkn07323292310 accelerat train_la tum_ind3 R\t1:07\t 1 hkn07013292307 accelerat train_to tum_ind3 R\t2:01\t 1 hkn07293292306 accelerat train_la tum_ind3 R\t2:13\t 1 hkn06343292297 accelerat sample_k tum_ind3 R\t4:37\t 1 hkn04353289577 accelerat train_dy tum_ind3 R 23:33:01\t 1 hkn0712",,terminal_output +721,882257,"TERMINAL",0,0,"81182482",,terminal_output +722,883310,"TERMINAL",0,0,"92293593",,terminal_output +723,884367,"TERMINAL",0,0,"40331046404",,terminal_output +724,885425,"TERMINAL",0,0,"14415715",,terminal_output +725,886478,"TERMINAL",0,0,"25526826",,terminal_output +726,887521,"TERMINAL",0,0,"377482048",,terminal_output +727,888574,"TERMINAL",0,0,"58859159",,terminal_output +728,889618,"TERMINAL",0,0,"6996102610",,terminal_output +729,890663,"TERMINAL",0,0,"7104071371",,terminal_output +730,891713,"TERMINAL",0,0,"81182482",,terminal_output +731,892747,"TERMINAL",0,0,"92293593",,terminal_output +732,893797,"TERMINAL",0,0,"50332046504",,terminal_output +733,894848,"TERMINAL",0,0,"14415715",,terminal_output +734,895889,"TERMINAL",0,0,"25526826",,terminal_output +735,896948,"TERMINAL",0,0,"36637937",,terminal_output +736,897995,"TERMINAL",0,0,"477483048",,terminal_output +737,899046,"TERMINAL",0,0,"58859159",,terminal_output +738,900098,"TERMINAL",0,0,"6996202620",,terminal_output +739,901135,"TERMINAL",0,0,"7205071371",,terminal_output +740,902190,"TERMINAL",0,0,"81182482",,terminal_output +741,903235,"TERMINAL",0,0,"92293593",,terminal_output +742,904284,"TERMINAL",0,0,"10:003330465:004",,terminal_output +743,905327,"TERMINAL",0,0,"14415715",,terminal_output +744,906372,"TERMINAL",0,0,"25526826",,terminal_output +745,907418,"TERMINAL",0,0,"36637937",,terminal_output +746,908468,"TERMINAL",0,0,"477484048",,terminal_output +747,909516,"TERMINAL",0,0,"5996302630",,terminal_output +748,910568,"TERMINAL",0,0,"7301:0071371",,terminal_output +749,911614,"TERMINAL",0,0,"81182482",,terminal_output +750,912663,"TERMINAL",0,0,"92293593",,terminal_output +751,913717,"TERMINAL",0,0,"10334046104",,terminal_output +752,914773,"TERMINAL",0,0,"14415715",,terminal_output +753,915819,"TERMINAL",0,0,"25526826",,terminal_output +754,916875,"TERMINAL",0,0,"36637937",,terminal_output +755,917917,"TERMINAL",0,0,"477485048",,terminal_output +756,918958,"TERMINAL",0,0,"58859159",,terminal_output +757,919999,"TERMINAL",0,0,"6996402640",,terminal_output +758,921050,"TERMINAL",0,0,"7401071371",,terminal_output +759,922086,"TERMINAL",0,0,"81182482",,terminal_output +760,923131,"TERMINAL",0,0,"92293593",,terminal_output +761,924185,"TERMINAL",0,0,"20335046204",,terminal_output +762,925234,"TERMINAL",0,0,"14415715",,terminal_output +763,926283,"TERMINAL",0,0,"25526826",,terminal_output +764,927324,"TERMINAL",0,0,"36637937",,terminal_output +765,928378,"TERMINAL",0,0,"477483:0048",,terminal_output +766,929433,"TERMINAL",0,0,"58859159",,terminal_output +767,930468,"TERMINAL",0,0,"6996502650",,terminal_output +768,931521,"TERMINAL",0,0,"7512182482",,terminal_output +769,932560,"TERMINAL",0,0,"92293593",,terminal_output +770,933605,"TERMINAL",0,0,"30332:0046304",,terminal_output +771,934650,"TERMINAL",0,0,"14415715",,terminal_output +772,935748,"TERMINAL",0,0,"25526826",,terminal_output +773,936794,"TERMINAL",0,0,"36637937",,terminal_output +774,937843,"TERMINAL",0,0,"477481048",,terminal_output +775,938898,"TERMINAL",0,0,"58859159",,terminal_output +776,939955,"TERMINAL",0,0,"69963:00264:00",,terminal_output +777,940996,"TERMINAL",0,0,"71:003071371",,terminal_output +778,942044,"TERMINAL",0,0,"81182482",,terminal_output +779,943095,"TERMINAL",0,0,"92293593",,terminal_output +780,944144,"TERMINAL",0,0,"40331046404",,terminal_output +781,945194,"TERMINAL",0,0,"14415715",,terminal_output +782,946241,"TERMINAL",0,0,"25526826",,terminal_output +783,947289,"TERMINAL",0,0,"36637937",,terminal_output +784,948329,"TERMINAL",0,0,"477482048",,terminal_output +785,949383,"TERMINAL",0,0,"58859159",,terminal_output +786,950418,"TERMINAL",0,0,"6996102610",,terminal_output +787,951455,"TERMINAL",0,0,"7104071371",,terminal_output +788,952492,"TERMINAL",0,0,"81182482",,terminal_output +789,953546,"TERMINAL",0,0,"9332046504",,terminal_output +790,954589,"TERMINAL",0,0,"514415715",,terminal_output +791,955634,"TERMINAL",0,0,"25526826",,terminal_output +792,956683,"TERMINAL",0,0,"36637937",,terminal_output +793,957736,"TERMINAL",0,0,"477483048",,terminal_output +794,958782,"TERMINAL",0,0,"58859159",,terminal_output +795,959835,"TERMINAL",0,0,"6996202620",,terminal_output +796,960896,"TERMINAL",0,0,"7205071371",,terminal_output +797,961945,"TERMINAL",0,0,"81182482",,terminal_output +798,962987,"TERMINAL",0,0,"92293593",,terminal_output +799,964034,"TERMINAL",0,0,"1:003330466:004",,terminal_output +800,965079,"TERMINAL",0,0,"14415715",,terminal_output +801,966114,"TERMINAL",0,0,"25526826",,terminal_output +802,967166,"TERMINAL",0,0,"36637937",,terminal_output +803,968199,"TERMINAL",0,0,"477484048",,terminal_output +804,969254,"TERMINAL",0,0,"58859159",,terminal_output +805,970298,"TERMINAL",0,0,"607toCG\t3:29742952931:593210la2:36012630",,terminal_output +806,971346,"TERMINAL",0,0,"7302:007371",,terminal_output +807,972386,"TERMINAL",0,0,"8118482",,terminal_output +808,973444,"TERMINAL",0,0,"9229593",,terminal_output +809,974477,"TERMINAL",0,0,"1033406104",,terminal_output +810,975529,"TERMINAL",0,0,"1552826",,terminal_output +811,976585,"TERMINAL",0,0,"3663937",,terminal_output +812,977621,"TERMINAL",0,0,"47745048",,terminal_output +813,978662,"TERMINAL",0,0,"5885159",,terminal_output +814,979712,"TERMINAL",0,0,"69962640",,terminal_output +815,980763,"TERMINAL",0,0,"\r714la R\t1:40532:1073204701063:53634297sample_k6:174358957train_dy23:34:41712",,terminal_output +816,981814,"TERMINAL",0,0,"8118482",,terminal_output +817,982860,"TERMINAL",0,0,"9229593",,terminal_output +818,983915,"TERMINAL",0,0,"2033506204",,terminal_output +819,984958,"TERMINAL",0,0,"1441715",,terminal_output +820,986007,"TERMINAL",0,0,"2552826",,terminal_output +821,987053,"TERMINAL",0,0,"3663937",,terminal_output +822,988167,"TERMINAL",0,0,"47744:0048",,terminal_output +823,989219,"TERMINAL",0,0,"5885159",,terminal_output +824,990272,"TERMINAL",0,0,"69962650",,terminal_output +825,991315,"TERMINAL",0,0,"750207371",,terminal_output +826,992357,"TERMINAL",0,0,"8118482",,terminal_output +827,993384,"TERMINAL",0,0,"9229593",,terminal_output +828,994438,"TERMINAL",0,0,"30333:006304",,terminal_output +829,995478,"TERMINAL",0,0,"1441715",,terminal_output +830,996533,"TERMINAL",0,0,"2663937",,terminal_output +831,997739,"TERMINAL",0,0,"47741048",,terminal_output +832,998635,"TERMINAL",0,0,"5885159",,terminal_output +833,999685,"TERMINAL",0,0,"6996265:00",,terminal_output +834,1000738,"TERMINAL",0,0,"72:00307371",,terminal_output +835,1001791,"TERMINAL",0,0,"8118482",,terminal_output +836,1002838,"TERMINAL",0,0,"9229593",,terminal_output +837,1003883,"TERMINAL",0,0,"4033106404",,terminal_output +838,1004930,"TERMINAL",0,0,"1441715",,terminal_output +839,1005977,"TERMINAL",0,0,"2552826",,terminal_output +840,1007031,"TERMINAL",0,0,"3663937",,terminal_output +841,1008083,"TERMINAL",0,0,"47742048",,terminal_output +842,1009140,"TERMINAL",0,0,"5885159",,terminal_output +843,1010196,"TERMINAL",0,0,"69962610",,terminal_output +844,1011248,"TERMINAL",0,0,"710407371",,terminal_output +845,1012298,"TERMINAL",0,0,"8118482",,terminal_output +846,1013347,"TERMINAL",0,0,"9229593",,terminal_output +847,1014397,"TERMINAL",0,0,"5033206504",,terminal_output +848,1015453,"TERMINAL",0,0,"1441715",,terminal_output +849,1016493,"TERMINAL",0,0,"2552826",,terminal_output +850,1017533,"TERMINAL",0,0,"37743048",,terminal_output +851,1018584,"TERMINAL",0,0,"5885159",,terminal_output +852,1019632,"TERMINAL",0,0,"69962620",,terminal_output +853,1020678,"TERMINAL",0,0,"720507371",,terminal_output +854,1021728,"TERMINAL",0,0,"8118482",,terminal_output +855,1022775,"TERMINAL",0,0,"9229593",,terminal_output +856,1023821,"TERMINAL",0,0,"2:00333067:004",,terminal_output +857,1024868,"TERMINAL",0,0,"1441715",,terminal_output +858,1025920,"TERMINAL",0,0,"2552826",,terminal_output +859,1026969,"TERMINAL",0,0,"3663937",,terminal_output +860,1028015,"TERMINAL",0,0,"47744048",,terminal_output +861,1029059,"TERMINAL",0,0,"5885159",,terminal_output +862,1030099,"TERMINAL",0,0,"69962630",,terminal_output +863,1031134,"TERMINAL",0,0,"7303:007371",,terminal_output +864,1032173,"TERMINAL",0,0,"8118482",,terminal_output +865,1033222,"TERMINAL",0,0,"9229593",,terminal_output +866,1034271,"TERMINAL",0,0,"1033406104",,terminal_output +867,1035321,"TERMINAL",0,0,"1441715",,terminal_output +868,1036374,"TERMINAL",0,0,"2552826",,terminal_output +869,1037423,"TERMINAL",0,0,"3663937",,terminal_output +870,1038464,"TERMINAL",0,0,"47745048",,terminal_output +871,1039524,"TERMINAL",0,0,"59962640",,terminal_output +872,1040565,"TERMINAL",0,0,"740107371",,terminal_output +873,1041612,"TERMINAL",0,0,"8118482",,terminal_output +874,1042659,"TERMINAL",0,0,"9229593",,terminal_output +875,1043705,"TERMINAL",0,0,"2033506204",,terminal_output +876,1044743,"TERMINAL",0,0,"1441715",,terminal_output +877,1045788,"TERMINAL",0,0,"2552826",,terminal_output +878,1046830,"TERMINAL",0,0,"3663937",,terminal_output +879,1047876,"TERMINAL",0,0,"47745:0048",,terminal_output +880,1048922,"TERMINAL",0,0,"5885159",,terminal_output +881,1049963,"TERMINAL",0,0,"69962650",,terminal_output +882,1050999,"TERMINAL",0,0,"750207371",,terminal_output +883,1052042,"TERMINAL",0,0,"8118482",,terminal_output +884,1053085,"TERMINAL",0,0,"9229593",,terminal_output +885,1054127,"TERMINAL",0,0,"30334:006304",,terminal_output +886,1055169,"TERMINAL",0,0,"1441715",,terminal_output +887,1056219,"TERMINAL",0,0,"2552826",,terminal_output +888,1057269,"TERMINAL",0,0,"3663937",,terminal_output +889,1058317,"TERMINAL",0,0,"47741048",,terminal_output +890,1059364,"TERMINAL",0,0,"5885159",,terminal_output +891,1060411,"TERMINAL",0,0,"6996266:00",,terminal_output +892,1061460,"TERMINAL",0,0,"73:00307371",,terminal_output +893,1062501,"TERMINAL",0,0,"8118482",,terminal_output +894,1063552,"TERMINAL",0,0,"933106404",,terminal_output +895,1064603,"TERMINAL",0,0,"41441715",,terminal_output +896,1065651,"TERMINAL",0,0,"2552826",,terminal_output +897,1066690,"TERMINAL",0,0,"3663937",,terminal_output +898,1067742,"TERMINAL",0,0,"47742048",,terminal_output +899,1068793,"TERMINAL",0,0,"5885159",,terminal_output +900,1069835,"TERMINAL",0,0,"69962610",,terminal_output +901,1070884,"TERMINAL",0,0,"710407371",,terminal_output +902,1071936,"TERMINAL",0,0,"8118482",,terminal_output +903,1073002,"TERMINAL",0,0,"9229593",,terminal_output +904,1074050,"TERMINAL",0,0,"5033206504",,terminal_output +905,1075102,"TERMINAL",0,0,"1441715",,terminal_output +906,1076141,"TERMINAL",0,0,"2552826",,terminal_output +907,1077186,"TERMINAL",0,0,"3663937",,terminal_output +908,1078230,"TERMINAL",0,0,"47743048",,terminal_output +909,1079271,"TERMINAL",0,0,"5885159",,terminal_output +910,1080318,"TERMINAL",0,0,"69962620",,terminal_output +911,1081372,"TERMINAL",0,0,"720507371",,terminal_output +912,1082410,"TERMINAL",0,0,"8118482",,terminal_output +913,1083454,"TERMINAL",0,0,"9229593",,terminal_output +914,1084504,"TERMINAL",0,0,"3:00333068:004",,terminal_output +915,1085552,"TERMINAL",0,0,"1552826",,terminal_output +916,1086600,"TERMINAL",0,0,"3663937",,terminal_output +917,1087647,"TERMINAL",0,0,"47744048",,terminal_output +918,1088694,"TERMINAL",0,0,"5885159",,terminal_output +919,1089741,"TERMINAL",0,0,"69962630",,terminal_output +920,1090793,"TERMINAL",0,0,"7304:007371",,terminal_output +921,1091842,"TERMINAL",0,0,"8118482",,terminal_output +922,1092890,"TERMINAL",0,0,"9229593",,terminal_output +923,1093942,"TERMINAL",0,0,"1033406104",,terminal_output +924,1094989,"TERMINAL",0,0,"1441715",,terminal_output +925,1096041,"TERMINAL",0,0,"2552826",,terminal_output +926,1097088,"TERMINAL",0,0,"3663937",,terminal_output +927,1098138,"TERMINAL",0,0,"47745048",,terminal_output +928,1099185,"TERMINAL",0,0,"5885159",,terminal_output +929,1100234,"TERMINAL",0,0,"69962640",,terminal_output +930,1101287,"TERMINAL",0,0,"740107371",,terminal_output +931,1102332,"TERMINAL",0,0,"8118482",,terminal_output +932,1103389,"TERMINAL",0,0,"9229593",,terminal_output +933,1104435,"TERMINAL",0,0,"2033506204",,terminal_output +934,1105488,"TERMINAL",0,0,"1441715",,terminal_output +935,1106537,"TERMINAL",0,0,"2663937",,terminal_output +936,1107589,"TERMINAL",0,0,"47746:0048",,terminal_output +937,1108637,"TERMINAL",0,0,"5885159",,terminal_output +938,1109686,"TERMINAL",0,0,"69962650",,terminal_output +939,1110737,"TERMINAL",0,0,"750207371",,terminal_output +940,1111781,"TERMINAL",0,0,"8118482",,terminal_output +941,1112827,"TERMINAL",0,0,"9229593",,terminal_output +942,1113872,"TERMINAL",0,0,"30335:006304",,terminal_output +943,1114920,"TERMINAL",0,0,"1441715",,terminal_output +944,1115965,"TERMINAL",0,0,"2552826",,terminal_output +945,1117017,"TERMINAL",0,0,"3663937",,terminal_output +946,1118061,"TERMINAL",0,0,"47741048",,terminal_output +947,1119108,"TERMINAL",0,0,"5885159",,terminal_output +948,1120162,"TERMINAL",0,0,"6996267:00",,terminal_output +949,1121213,"TERMINAL",0,0,"74:00307371",,terminal_output +950,1122263,"TERMINAL",0,0,"8118482",,terminal_output +951,1123391,"TERMINAL",0,0,"9229593",,terminal_output +952,1124347,"TERMINAL",0,0,"4033106404",,terminal_output +953,1125384,"TERMINAL",0,0,"1441715",,terminal_output +954,1126420,"TERMINAL",0,0,"2552826",,terminal_output +955,1127463,"TERMINAL",0,0,"3663937",,terminal_output +956,1128511,"TERMINAL",0,0,"48852159",,terminal_output +957,1129556,"TERMINAL",0,0,"69962610",,terminal_output +958,1130605,"TERMINAL",0,0,"710407371",,terminal_output +959,1131656,"TERMINAL",0,0,"8118482",,terminal_output +960,1132704,"TERMINAL",0,0,"9229593",,terminal_output +961,1133749,"TERMINAL",0,0,"5033206504",,terminal_output +962,1134795,"TERMINAL",0,0,"1441715",,terminal_output +963,1135843,"TERMINAL",0,0,"2552826",,terminal_output +964,1136912,"TERMINAL",0,0,"3663937",,terminal_output +965,1137977,"TERMINAL",0,0,"47743048",,terminal_output +966,1139373,"TERMINAL",0,0,"5885159",,terminal_output +967,1140232,"TERMINAL",0,0,"69962620",,terminal_output +968,1141102,"TERMINAL",0,0,"720507371",,terminal_output +969,1142149,"TERMINAL",0,0,"8118482",,terminal_output +970,1143195,"TERMINAL",0,0,"9229593",,terminal_output +971,1144243,"TERMINAL",0,0,"4:00333069:004",,terminal_output +972,1145291,"TERMINAL",0,0,"1441715",,terminal_output +973,1146337,"TERMINAL",0,0,"2552826",,terminal_output +974,1147386,"TERMINAL",0,0,"3663937",,terminal_output +975,1148436,"TERMINAL",0,0,"47744048",,terminal_output +976,1149483,"TERMINAL",0,0,"5885159",,terminal_output +977,1150531,"TERMINAL",0,0,"6305:0073731",,terminal_output +978,1151578,"TERMINAL",0,0,"8118482",,terminal_output +979,1152675,"TERMINAL",0,0,"9229593",,terminal_output +980,1153674,"TERMINAL",0,0,"1033406104",,terminal_output +981,1154889,"TERMINAL",0,0,"1441715",,terminal_output +982,1155939,"TERMINAL",0,0,"2552826",,terminal_output +983,1156988,"TERMINAL",0,0,"3663937",,terminal_output +984,1158037,"TERMINAL",0,0,"47745048",,terminal_output +985,1159086,"TERMINAL",0,0,"5885159",,terminal_output +986,1160130,"TERMINAL",0,0,"69962640",,terminal_output +987,1161174,"TERMINAL",0,0,"740107371",,terminal_output +988,1162231,"TERMINAL",0,0,"8118482",,terminal_output +989,1163269,"TERMINAL",0,0,"9229593",,terminal_output +990,1164317,"TERMINAL",0,0,"2033506204",,terminal_output +991,1165366,"TERMINAL",0,0,"1441715",,terminal_output +992,1166404,"TERMINAL",0,0,"2552826",,terminal_output +993,1167454,"TERMINAL",0,0,"3663937",,terminal_output +994,1168501,"TERMINAL",0,0,"47747:0048",,terminal_output +995,1169550,"TERMINAL",0,0,"59962650",,terminal_output +996,1170598,"TERMINAL",0,0,"750207371",,terminal_output +997,1171637,"TERMINAL",0,0,"8118482",,terminal_output +998,1172676,"TERMINAL",0,0,"9229593",,terminal_output +999,1173723,"TERMINAL",0,0,"30336:006304",,terminal_output +1000,1174854,"TERMINAL",0,0,"1441715",,terminal_output +1001,1175820,"TERMINAL",0,0,"2552826",,terminal_output +1002,1176856,"TERMINAL",0,0,"3663937",,terminal_output +1003,1177903,"TERMINAL",0,0,"47741048",,terminal_output +1004,1178952,"TERMINAL",0,0,"5885159",,terminal_output +1005,1180000,"TERMINAL",0,0,"6996268:00",,terminal_output +1006,1181050,"TERMINAL",0,0,"75:00307371",,terminal_output +1007,1182124,"TERMINAL",0,0,"8118482",,terminal_output +1008,1183139,"TERMINAL",0,0,"9229593",,terminal_output +1009,1184656,"TERMINAL",0,0,"4044117415",,terminal_output +1010,1185706,"TERMINAL",0,0,"2552826",,terminal_output +1011,1186760,"TERMINAL",0,0,"3663937",,terminal_output +1012,1187810,"TERMINAL",0,0,"47742048",,terminal_output +1013,1188928,"TERMINAL",0,0,"5885159",,terminal_output +1014,1190233,"TERMINAL",0,0,"69962610",,terminal_output +1015,1191281,"TERMINAL",0,0,"710407371",,terminal_output +1016,1192131,"TERMINAL",0,0,"8118482",,terminal_output +1017,1193180,"TERMINAL",0,0,"9229593",,terminal_output +1018,1194228,"TERMINAL",0,0,"5033206504",,terminal_output +1019,1195300,"TERMINAL",0,0,"1441715",,terminal_output +1020,1196328,"TERMINAL",0,0,"2552826",,terminal_output +1021,1197379,"TERMINAL",0,0,"3663937",,terminal_output +1022,1198424,"TERMINAL",0,0,"47743048",,terminal_output +1023,1199311,"TERMINAL",0,0,"5885159",,terminal_output +1024,1200361,"TERMINAL",0,0,"69962620",,terminal_output +1025,1200583,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",986,0,"",shellscript,selection_mouse +1026,1200607,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",985,0,"",shellscript,selection_command +1027,1200608,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",985,1,"\",shellscript,selection_mouse +1028,1200621,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",986,0,"",shellscript,selection_command +1029,1200622,"sbatch_scripts/coinrun/latent_action_ablation/train_lam_48.sbatch",952,34,"\n --experiment_name $job_name \",shellscript,selection_mouse +1030,1201573,"TERMINAL",0,0,"720507371",,terminal_output +1031,1202641,"TERMINAL",0,0,"8118482",,terminal_output +1032,1203617,"TERMINAL",0,0,"bash",,terminal_focus +1033,1203670,"TERMINAL",0,0,"9229593",,terminal_output +1034,1204551,"TERMINAL",0,0,"5:004431710:015",,terminal_output +1035,1205313,"TERMINAL",0,0,"idle",,terminal_command +1036,1205367,"TERMINAL",0,0,"]633;E;2025-06-25 19:15:01 idle;d2cbc9a3-4796-47cf-b85b-b9a11d879d8a]633;CPartition dev_cpuonly : 11 nodes idle\r\nPartition cpuonly : 6 nodes idle\r\nPartition dev_accelerated : 2 nodes idle\r\nPartition accelerated : 25 nodes idle\r\nPartition dev_accelerated-h100 : 1 nodes idle\r\nPartition accelerated-h100 : 2 nodes idle\r\nPartition large : 6 nodes idle\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_dyn]633;D;0",,terminal_output +1037,1205601,"TERMINAL",0,0,"2552826",,terminal_output +1038,1206644,"TERMINAL",0,0,"3663937",,terminal_output +1039,1207807,"TERMINAL",0,0,"47744048",,terminal_output +1040,1208750,"TERMINAL",0,0,"5885159",,terminal_output +1041,1209962,"TERMINAL",0,0,"69962630",,terminal_output +1042,1211011,"TERMINAL",0,0,"7306:007371",,terminal_output +1043,1212060,"TERMINAL",0,0,"8118482",,terminal_output +1044,1212925,"TERMINAL",0,0,"9229593",,terminal_output +1045,1213976,"TERMINAL",0,0,"1033406104",,terminal_output +1046,1215021,"TERMINAL",0,0,"1441715",,terminal_output +1047,1216075,"TERMINAL",0,0,"2552826",,terminal_output +1048,1217120,"TERMINAL",0,0,"3663937",,terminal_output +1049,1218292,"TERMINAL",0,0,"47745048",,terminal_output +1050,1219228,"TERMINAL",0,0,"5885159",,terminal_output +1051,1220260,"TERMINAL",0,0,"69962640",,terminal_output +1052,1221300,"TERMINAL",0,0,"740107371",,terminal_output +1053,1222338,"TERMINAL",0,0,"8118482",,terminal_output +1054,1223389,"TERMINAL",0,0,"9229593",,terminal_output +1055,1224432,"TERMINAL",0,0,"2033506204",,terminal_output +1056,1225480,"TERMINAL",0,0,"1441715",,terminal_output +1057,1226522,"TERMINAL",0,0,"2663937",,terminal_output +1058,1227560,"TERMINAL",0,0,"47748:0048",,terminal_output +1059,1228600,"TERMINAL",0,0,"5885159",,terminal_output +1060,1229742,"TERMINAL",0,0,"69962650",,terminal_output +1061,1230686,"TERMINAL",0,0,"750207371",,terminal_output +1062,1231788,"TERMINAL",0,0,"8118482",,terminal_output +1063,1232772,"TERMINAL",0,0,"9229593",,terminal_output +1064,1233827,"TERMINAL",0,0,"30337:006304",,terminal_output +1065,1234925,"TERMINAL",0,0,"1441715",,terminal_output +1066,1235919,"TERMINAL",0,0,"2552826",,terminal_output +1067,1236966,"TERMINAL",0,0,"3663937",,terminal_output +1068,1238072,"TERMINAL",0,0,"47741048",,terminal_output +1069,1239051,"TERMINAL",0,0,"5885159",,terminal_output +1070,1240092,"TERMINAL",0,0,"6996269:00",,terminal_output +1071,1241136,"TERMINAL",0,0,"76:00307371",,terminal_output +1072,1242188,"TERMINAL",0,0,"8118482",,terminal_output +1073,1243236,"TERMINAL",0,0,"9229593",,terminal_output +1074,1244281,"TERMINAL",0,0,"4033106404",,terminal_output +1075,1245322,"TERMINAL",0,0,"1441715",,terminal_output +1076,1246361,"TERMINAL",0,0,"2552826",,terminal_output +1077,1247410,"TERMINAL",0,0,"3663937",,terminal_output +1078,1248455,"TERMINAL",0,0,"47742048",,terminal_output +1079,1249500,"TERMINAL",0,0,"5885159",,terminal_output +1080,1250576,"TERMINAL",0,0,"6104073711",,terminal_output +1081,1251620,"TERMINAL",0,0,"8118482",,terminal_output +1082,1252668,"TERMINAL",0,0,"9229593",,terminal_output +1083,1253717,"TERMINAL",0,0,"5033206504",,terminal_output +1084,1254755,"TERMINAL",0,0,"1441715",,terminal_output +1085,1255796,"TERMINAL",0,0,"2552826",,terminal_output +1086,1256839,"TERMINAL",0,0,"3663937",,terminal_output +1087,1257887,"TERMINAL",0,0,"4297sample_kCG10:5343541752936:4732107:24701306train_la 8:306348",,terminal_output +1088,1258937,"TERMINAL",0,0,"588519",,terminal_output +1089,1259983,"TERMINAL",0,0,"6996220",,terminal_output +1090,1261030,"TERMINAL",0,0,"72050731",,terminal_output +1091,1262074,"TERMINAL",0,0,"811842",,terminal_output +1092,1263118,"TERMINAL",0,0,"922953",,terminal_output +1093,1264166,"TERMINAL",0,0,"6:00333064",,terminal_output +1094,1265216,"TERMINAL",0,0,"144175",,terminal_output +1095,1266297,"TERMINAL",0,0,"255286",,terminal_output +1096,1267318,"TERMINAL",0,0,"366397",,terminal_output +1097,1268366,"TERMINAL",0,0,"\r4314train_la R 6:2752935773207:3401068:4063489577dy23:39:28712",,terminal_output +1098,1269404,"TERMINAL",0,0,"588519",,terminal_output +1099,1270454,"TERMINAL",0,0,"6996230",,terminal_output +1100,1271485,"TERMINAL",0,0,"7307:00731",,terminal_output +1101,1272535,"TERMINAL",0,0,"822953",,terminal_output +1102,1273578,"TERMINAL",0,0,"10334064",,terminal_output +1103,1274627,"TERMINAL",0,0,"144175",,terminal_output +1104,1275676,"TERMINAL",0,0,"255286",,terminal_output +1105,1276742,"TERMINAL",0,0,"366397",,terminal_output +1106,1277770,"TERMINAL",0,0,"4774508",,terminal_output +1107,1278821,"TERMINAL",0,0,"588519",,terminal_output +1108,1279867,"TERMINAL",0,0,"6996240",,terminal_output +1109,1280912,"TERMINAL",0,0,"74010731",,terminal_output +1110,1281959,"TERMINAL",0,0,"811842",,terminal_output +1111,1283011,"TERMINAL",0,0,"922953",,terminal_output +1112,1284054,"TERMINAL",0,0,"20335064",,terminal_output +1113,1285109,"TERMINAL",0,0,"144175",,terminal_output +1114,1286157,"TERMINAL",0,0,"255286",,terminal_output +1115,1287203,"TERMINAL",0,0,"366397",,terminal_output +1116,1288250,"TERMINAL",0,0,"47749:008",,terminal_output +1117,1289302,"TERMINAL",0,0,"588519",,terminal_output +1118,1290351,"TERMINAL",0,0,"6996250",,terminal_output +1119,1291395,"TERMINAL",0,0,"75020731",,terminal_output +1120,1292440,"TERMINAL",0,0,"811842",,terminal_output +1121,1293490,"TERMINAL",0,0,"922953",,terminal_output +1122,1294533,"TERMINAL",0,0,"30448:0175",,terminal_output +1123,1295573,"TERMINAL",0,0,"255286",,terminal_output +1124,1296620,"TERMINAL",0,0,"366397",,terminal_output +1125,1297665,"TERMINAL",0,0,"4774108",,terminal_output +1126,1298715,"TERMINAL",0,0,"588519",,terminal_output +1127,1299782,"TERMINAL",0,0,"6996240:00",,terminal_output +1128,1300952,"TERMINAL",0,0,"77:0030731",,terminal_output +1129,1301932,"TERMINAL",0,0,"811842",,terminal_output +1130,1302900,"TERMINAL",0,0,"922953",,terminal_output +1131,1303984,"TERMINAL",0,0,"40331064",,terminal_output +1132,1305006,"TERMINAL",0,0,"144175",,terminal_output +1133,1306035,"TERMINAL",0,0,"255286",,terminal_output +1134,1307074,"TERMINAL",0,0,"366397",,terminal_output +1135,1308123,"TERMINAL",0,0,"4774208",,terminal_output +1136,1309161,"TERMINAL",0,0,"588519",,terminal_output +1137,1310241,"TERMINAL",0,0,"6996210",,terminal_output +1138,1311250,"TERMINAL",0,0,"71040731",,terminal_output +1139,1312295,"TERMINAL",0,0,"811842",,terminal_output +1140,1313340,"TERMINAL",0,0,"922953",,terminal_output +1141,1314387,"TERMINAL",0,0,"50332064",,terminal_output +1142,1315435,"TERMINAL",0,0,"144175",,terminal_output +1143,1316484,"TERMINAL",0,0,"255286",,terminal_output +1144,1317535,"TERMINAL",0,0,"3774308",,terminal_output +1145,1318582,"TERMINAL",0,0,"588519",,terminal_output +1146,1319616,"TERMINAL",0,0,"6996220",,terminal_output +1147,1320672,"TERMINAL",0,0,"72050731",,terminal_output +1148,1321703,"TERMINAL",0,0,"811842",,terminal_output +1149,1322750,"TERMINAL",0,0,"922953",,terminal_output +1150,1323790,"TERMINAL",0,0,"7:00333064",,terminal_output +1151,1324839,"TERMINAL",0,0,"144175",,terminal_output +1152,1325886,"TERMINAL",0,0,"255286",,terminal_output +1153,1326934,"TERMINAL",0,0,"366397",,terminal_output +1154,1327984,"TERMINAL",0,0,"4774408",,terminal_output +1155,1329033,"TERMINAL",0,0,"588519",,terminal_output +1156,1330081,"TERMINAL",0,0,"6996230",,terminal_output +1157,1331134,"TERMINAL",0,0,"7308:00731",,terminal_output +1158,1332180,"TERMINAL",0,0,"811842",,terminal_output +1159,1333222,"TERMINAL",0,0,"922953",,terminal_output +1160,1334267,"TERMINAL",0,0,"10334064",,terminal_output +1161,1335316,"TERMINAL",0,0,"144175",,terminal_output +1162,1336363,"TERMINAL",0,0,"255286",,terminal_output +1163,1337410,"TERMINAL",0,0,"366397",,terminal_output +1164,1338454,"TERMINAL",0,0,"4774508",,terminal_output +1165,1339501,"TERMINAL",0,0,"588519",,terminal_output +1166,1340550,"TERMINAL",0,0,"640107341",,terminal_output +1167,1341595,"TERMINAL",0,0,"811842",,terminal_output +1168,1342647,"TERMINAL",0,0,"922953",,terminal_output +1169,1343707,"TERMINAL",0,0,"20335064",,terminal_output +1170,1344732,"TERMINAL",0,0,"144175",,terminal_output +1171,1345349,"logs/logs_sample/sample_knoms_3292297.log",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=00:15:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_sample/%x_%j.log\n#SBATCH --error=logs/logs_sample/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=sample_knoms\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\n# data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n# checkpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3282489/genie_1750610596_12500'\n# seq_len=16\n# output_dir='sample_results/knoms/'\n\n# python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12 --seq_len $seq_len --output_dir $output_dir\n# # CUDA_VISIBLE_DEVICES=0 python sample.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 12\n\n\n# Overfit tfrecords 10\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards_overfit_10'\ncheckpoint_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/dyn/3289577/genie_1750786631_13000'\nseq_len=16\noutput_dir='sample_results/knoms_overfit_tfrecords_10/'\n\nsrun python sample_resolution_batches.py --checkpoint $checkpoint_dir --data_dir $data_dir --batch_size 6 --seq_len $seq_len --output_dir $output_dir\nGpuFreq=control_disabled\n2025-06-25 19:05:37.801200: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 19:05:37.801210: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 19:05:37.801271: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n2025-06-25 19:05:37.801196: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750871137.938272 3208552 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750871137.938207 3208553 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750871137.938214 3208555 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\nE0000 00:00:1750871137.938223 3208554 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\nE0000 00:00:1750871137.978733 3208552 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750871137.978729 3208553 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750871137.978727 3208554 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nE0000 00:00:1750871137.978729 3208555 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\nW0000 00:00:1750871138.434204 3208552 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434247 3208552 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434254 3208552 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434259 3208552 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434189 3208553 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434218 3208553 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434220 3208553 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434221 3208553 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434277 3208554 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434320 3208554 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434326 3208554 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434331 3208554 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434242 3208555 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434259 3208555 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434262 3208555 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\nW0000 00:00:1750871138.434263 3208555 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\njax.errors.SimplifiedTraceback: For simplicity, JAX has removed its internal frames from the traceback of the following exception. Set JAX_TRACEBACK_FILTERING=off to include these.\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/sample_resolution_batches.py"", line 56, in \n rng = jax.random.PRNGKey(args.seed)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 249, in PRNGKey\n return _return_prng_keys(True, _key('PRNGKey', seed, impl))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 201, in _key\n return prng.random_seed(seed, impl=impl)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/prng.py"", line 551, in random_seed\n seeds_arr = jnp.asarray(np.int64(seeds))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5732, in asarray\n return array(a, dtype=dtype, copy=bool(copy), order=order, device=device)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5553, in array\n out_array: Array = lax_internal._convert_element_type(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 1727, in _convert_element_type\n return convert_element_type_p.bind(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 531, in bind\n return self._true_bind(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 551, in _true_bind\n return self.bind_with_trace(prev_trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 4897, in _convert_element_type_bind_with_trace\n operand = core.Primitive.bind_with_trace(convert_element_type_p, trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 556, in bind_with_trace\n return trace.process_primitive(self, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 1060, in process_primitive\n return primitive.impl(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/dispatch.py"", line 88, in apply_primitive\n outs = fun(*args)\nRuntimeError: Bad StatusOr access: RESOURCE_EXHAUSTED: : CUDA_ERROR_OUT_OF_MEMORY: out of memory\njax.errors.SimplifiedTraceback: For simplicity, JAX has removed its internal frames from the traceback of the following exception. Set JAX_TRACEBACK_FILTERING=off to include these.\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/sample_resolution_batches.py"", line 56, in \n rng = jax.random.PRNGKey(args.seed)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 249, in PRNGKey\n return _return_prng_keys(True, _key('PRNGKey', seed, impl))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 201, in _key\n return prng.random_seed(seed, impl=impl)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/prng.py"", line 551, in random_seed\n seeds_arr = jnp.asarray(np.int64(seeds))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5732, in asarray\n return array(a, dtype=dtype, copy=bool(copy), order=order, device=device)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5553, in array\n out_array: Array = lax_internal._convert_element_type(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 1727, in _convert_element_type\n return convert_element_type_p.bind(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 531, in bind\n return self._true_bind(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 551, in _true_bind\n return self.bind_with_trace(prev_trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 4897, in _convert_element_type_bind_with_trace\n operand = core.Primitive.bind_with_trace(convert_element_type_p, trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 556, in bind_with_trace\n return trace.process_primitive(self, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 1060, in process_primitive\n return primitive.impl(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/dispatch.py"", line 88, in apply_primitive\n outs = fun(*args)\nRuntimeError: Bad StatusOr access: RESOURCE_EXHAUSTED: : CUDA_ERROR_OUT_OF_MEMORY: out of memory\njax.errors.SimplifiedTraceback: For simplicity, JAX has removed its internal frames from the traceback of the following exception. Set JAX_TRACEBACK_FILTERING=off to include these.\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/sample_resolution_batches.py"", line 56, in \n rng = jax.random.PRNGKey(args.seed)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 249, in PRNGKey\n return _return_prng_keys(True, _key('PRNGKey', seed, impl))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/random.py"", line 201, in _key\n return prng.random_seed(seed, impl=impl)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/prng.py"", line 551, in random_seed\n seeds_arr = jnp.asarray(np.int64(seeds))\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5732, in asarray\n return array(a, dtype=dtype, copy=bool(copy), order=order, device=device)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/numpy/lax_numpy.py"", line 5553, in array\n out_array: Array = lax_internal._convert_element_type(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 1727, in _convert_element_type\n return convert_element_type_p.bind(\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 531, in bind\n return self._true_bind(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 551, in _true_bind\n return self.bind_with_trace(prev_trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/lax/lax.py"", line 4897, in _convert_element_type_bind_with_trace\n operand = core.Primitive.bind_with_trace(convert_element_type_p, trace, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 556, in bind_with_trace\n return trace.process_primitive(self, args, params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/core.py"", line 1060, in process_primitive\n return primitive.impl(*args, **params)\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/jax/_src/dispatch.py"", line 88, in apply_primitive\n outs = fun(*args)\nRuntimeError: Bad StatusOr access: RESOURCE_EXHAUSTED: : CUDA_ERROR_OUT_OF_MEMORY: out of memory\n2025-06-25 19:06:05.074218: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\nsrun: error: hkn0435: task 0: Exited with exit code 1\nsrun: error: hkn0435: task 2: Exited with exit code 1\nsrun: error: hkn0435: task 1: Exited with exit code 1\n2025-06-25 19:06:31.016079: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:06:36.100113: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/.venv_jafar/lib/python3.10/site-packages/orbax/checkpoint/_src/serialization/type_handlers.py:1251: UserWarning: Sharding info not provided when restoring. Populating sharding info from sharding file. Please note restoration time will be slightly increased due to reading from file. Note also that this option is unsafe when restoring on a different topology than the checkpoint was saved with.\n warnings.warn(\nW0000 00:00:1750871205.808194 3208555 gpu_device.cc:2341] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.\nSkipping registering GPU devices...\n2025-06-25 19:06:59.533462: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:07:09.084007: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:07:25.276483: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:07:28.646976: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:07:39.452897: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:07:57.665664: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:08:08.607437: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:08:14.839191: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:08:27.686405: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:08:38.499172: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:08:45.229958: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:09:00.123800: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:09:10.984497: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:09:18.059400: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:09:32.365396: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:09:44.067414: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:09:50.896622: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:10:06.222662: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:10:17.903492: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:10:25.041795: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:10:39.882421: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:10:51.096734: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:10:58.671668: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:11:15.171623: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:11:26.955145: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:11:34.989401: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:11:51.140946: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:12:03.285462: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:12:11.064350: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:12:28.565650: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:12:40.656324: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:12:48.254183: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:13:05.362907: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:13:17.802725: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:13:25.463287: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:13:44.493703: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:14:04.039697: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:14:23.047268: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:14:42.390268: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:15:02.972012: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\n2025-06-25 19:15:22.418083: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\nFrame 1\nFrame 2\nFrame 3\nFrame 4\nFrame 5\nFrame 6\nFrame 7\nFrame 8\nFrame 9\nFrame 10\nFrame 11\nFrame 12\nFrame 13\nFrame 14\nFrame 15\nSSIM: 0.4920308291912079\n\n============================= JOB FEEDBACK =============================\n\nJob ID: 3292297\nCluster: hk\nUser/Group: tum_ind3695/hk-project-pai00039\nAccount: hk-project-p0023960\nState: FAILED (exit code 1)\nPartition: accelerated\nNodes: 1\nCores per node: 32\nNodelist: hkn0435\nCPU Utilized: 00:29:23\nCPU Efficiency: 8.44% of 05:48:16 core-walltime\nJob Wall-clock time: 00:10:53\nStarttime: Wed Jun 25 19:05:00 2025\nEndtime: Wed Jun 25 19:15:53 2025\nMemory Utilized: 54.04 GB (estimated maximum)\nMemory Efficiency: 0.00% of 0.00 MB (0.00 MB/node)\nEnergy Consumed: 435502 Joule / 120.972777777778 Watthours\nAverage node power draw: 666.924961715161 Watt\n",log,tab +1172,1345776,"TERMINAL",0,0,"255286",,terminal_output +1173,1346417,"TERMINAL",0,0,"watch",,terminal_focus +1174,1346832,"TERMINAL",0,0,"366397",,terminal_output +1175,1347262,"logs/logs_sample/sample_knoms_3292297.log",32154,0,"",log,selection_command +1176,1347825,"logs/logs_sample/sample_knoms_3292297.log",32107,0,"",log,selection_command +1177,1347882,"TERMINAL",0,0,"477410:008",,terminal_output +1178,1348926,"TERMINAL",0,0,"588519",,terminal_output +1179,1349966,"TERMINAL",0,0,"6996250",,terminal_output +1180,1351007,"TERMINAL",0,0,"75020731",,terminal_output +1181,1352049,"TERMINAL",0,0,"811842",,terminal_output +1182,1353099,"TERMINAL",0,0,"922953",,terminal_output +1183,1354139,"TERMINAL",0,0,"30339:0064",,terminal_output +1184,1355187,"TERMINAL",0,0,"144175",,terminal_output +1185,1356240,"TERMINAL",0,0,"255286",,terminal_output +1186,1357281,"TERMINAL",0,0,"366397",,terminal_output +1187,1358323,"TERMINAL",0,0,"4774108",,terminal_output +1188,1359365,"TERMINAL",0,0,"588519",,terminal_output +1189,1360409,"TERMINAL",0,0,"699621:00",,terminal_output +1190,1361455,"TERMINAL",0,0,"78:0030731",,terminal_output +1191,1362506,"TERMINAL",0,0,"811842",,terminal_output +1192,1363554,"TERMINAL",0,0,"9331064",,terminal_output +1193,1364603,"TERMINAL",0,0,"4144175",,terminal_output +1194,1365651,"TERMINAL",0,0,"255286",,terminal_output +1195,1366693,"TERMINAL",0,0,"366397",,terminal_output +1196,1367737,"TERMINAL",0,0,"4774208",,terminal_output +1197,1368791,"TERMINAL",0,0,"588519",,terminal_output +1198,1369838,"TERMINAL",0,0,"6996210",,terminal_output +1199,1370953,"TERMINAL",0,0,"71040731",,terminal_output +1200,1371931,"TERMINAL",0,0,"811842",,terminal_output +1201,1372967,"TERMINAL",0,0,"922953",,terminal_output +1202,1374009,"TERMINAL",0,0,"50332064",,terminal_output +1203,1375265,"TERMINAL",0,0,"144175",,terminal_output +1204,1376103,"TERMINAL",0,0,"255286",,terminal_output +1205,1377151,"TERMINAL",0,0,"366397",,terminal_output +1206,1378204,"TERMINAL",0,0,"4774308",,terminal_output +1207,1379317,"TERMINAL",0,0,"588519",,terminal_output +1208,1380275,"TERMINAL",0,0,"6996220",,terminal_output +1209,1381316,"TERMINAL",0,0,"72050731",,terminal_output +1210,1382365,"TERMINAL",0,0,"811842",,terminal_output +1211,1383441,"TERMINAL",0,0,"922953",,terminal_output +1212,1384468,"TERMINAL",0,0,"8:00333064",,terminal_output +1213,1385500,"TERMINAL",0,0,"144175",,terminal_output +1214,1386545,"TERMINAL",0,0,"266397",,terminal_output +1215,1387583,"TERMINAL",0,0,"4774408",,terminal_output +1216,1388700,"TERMINAL",0,0,"588519",,terminal_output +1217,1389672,"TERMINAL",0,0,"6996230",,terminal_output +1218,1390724,"TERMINAL",0,0,"7309:00731",,terminal_output +1219,1391777,"TERMINAL",0,0,"811842",,terminal_output +1220,1392823,"TERMINAL",0,0,"922953",,terminal_output +1221,1393865,"TERMINAL",0,0,"10334064",,terminal_output +1222,1394909,"TERMINAL",0,0,"144175",,terminal_output +1223,1395994,"TERMINAL",0,0,"255286",,terminal_output +1224,1397010,"TERMINAL",0,0,"366397",,terminal_output +1225,1398063,"TERMINAL",0,0,"4774508",,terminal_output +1226,1399106,"TERMINAL",0,0,"588519",,terminal_output +1227,1400142,"TERMINAL",0,0,"6996240",,terminal_output +1228,1401189,"TERMINAL",0,0,"74010731",,terminal_output +1229,1402233,"TERMINAL",0,0,"811842",,terminal_output +1230,1403278,"TERMINAL",0,0,"922953",,terminal_output +1231,1404327,"TERMINAL",0,0,"20335064",,terminal_output +1232,1405373,"TERMINAL",0,0,"144175",,terminal_output +1233,1406421,"TERMINAL",0,0,"255286",,terminal_output +1234,1407467,"TERMINAL",0,0,"366397",,terminal_output +1235,1408519,"TERMINAL",0,0,"48851:019",,terminal_output +1236,1409567,"TERMINAL",0,0,"6996250",,terminal_output +1237,1410612,"TERMINAL",0,0,"75020731",,terminal_output +1238,1411663,"TERMINAL",0,0,"811842",,terminal_output +1239,1412712,"TERMINAL",0,0,"922953",,terminal_output +1240,1413759,"TERMINAL",0,0,"303310:0064",,terminal_output +1241,1414802,"TERMINAL",0,0,"144175",,terminal_output +1242,1415851,"TERMINAL",0,0,"255286",,terminal_output +1243,1416896,"TERMINAL",0,0,"366397",,terminal_output +1244,1417941,"TERMINAL",0,0,"4774108",,terminal_output +1245,1418990,"TERMINAL",0,0,"588519",,terminal_output +1246,1420041,"TERMINAL",0,0,"699622:00",,terminal_output +1247,1421078,"TERMINAL",0,0,"79:0030731",,terminal_output +1248,1422125,"TERMINAL",0,0,"811842",,terminal_output +1249,1423172,"TERMINAL",0,0,"922953",,terminal_output +1250,1424221,"TERMINAL",0,0,"40331064",,terminal_output +1251,1425267,"TERMINAL",0,0,"144175",,terminal_output +1252,1426315,"TERMINAL",0,0,"255286",,terminal_output +1253,1427359,"TERMINAL",0,0,"366397",,terminal_output +1254,1428410,"TERMINAL",0,0,"4774208",,terminal_output +1255,1429462,"TERMINAL",0,0,"588519",,terminal_output +1256,1430512,"TERMINAL",0,0,"610407311",,terminal_output +1257,1431554,"TERMINAL",0,0,"811842",,terminal_output +1258,1432606,"TERMINAL",0,0,"922953",,terminal_output +1259,1433656,"TERMINAL",0,0,"50332064",,terminal_output +1260,1434705,"TERMINAL",0,0,"144175",,terminal_output +1261,1435794,"TERMINAL",0,0,"255286",,terminal_output +1262,1437795,"TERMINAL",0,0,"366397",,terminal_output +1263,1438794,"TERMINAL",0,0,"4774308",,terminal_output +1264,1439793,"TERMINAL",0,0,"588519",,terminal_output +1265,1440795,"TERMINAL",0,0,"6996220",,terminal_output +1266,1441795,"TERMINAL",0,0,"72050731",,terminal_output +1267,1442793,"TERMINAL",0,0,"811842",,terminal_output +1268,1443792,"TERMINAL",0,0,"922953",,terminal_output +1269,1444794,"TERMINAL",0,0,"9:00333064",,terminal_output +1270,1445795,"TERMINAL",0,0,"144175",,terminal_output +1271,1446798,"TERMINAL",0,0,"255286",,terminal_output +1272,1447795,"TERMINAL",0,0,"366397",,terminal_output +1273,1448795,"TERMINAL",0,0,"4774408",,terminal_output +1274,1449794,"TERMINAL",0,0,"588519",,terminal_output +1275,1450794,"TERMINAL",0,0,"6996230",,terminal_output +1276,1451796,"TERMINAL",0,0,"73010:00731",,terminal_output +1277,1452794,"TERMINAL",0,0,"812953",,terminal_output +1278,1453793,"TERMINAL",0,0,"10334064",,terminal_output +1279,1454796,"TERMINAL",0,0,"144175",,terminal_output +1280,1455794,"TERMINAL",0,0,"255286",,terminal_output +1281,1456794,"TERMINAL",0,0,"366397",,terminal_output +1282,1457794,"TERMINAL",0,0,"4774508",,terminal_output +1283,1459802,"TERMINAL",0,0,"588519",,terminal_output +1284,1460798,"TERMINAL",0,0,"6996240",,terminal_output +1285,1461795,"TERMINAL",0,0,"74010731",,terminal_output +1286,1462794,"TERMINAL",0,0,"811842",,terminal_output +1287,1463795,"TERMINAL",0,0,"922953",,terminal_output +1288,1464795,"TERMINAL",0,0,"20335064",,terminal_output +1289,1465809,"TERMINAL",0,0,"144175",,terminal_output +1290,1466795,"TERMINAL",0,0,"255286",,terminal_output +1291,1467794,"TERMINAL",0,0,"366397",,terminal_output +1292,1468793,"TERMINAL",0,0,"47742:008",,terminal_output +1293,1469794,"TERMINAL",0,0,"588519",,terminal_output +1294,1470795,"TERMINAL",0,0,"6996250",,terminal_output +1295,1471796,"TERMINAL",0,0,"75020731",,terminal_output +1296,1472802,"TERMINAL",0,0,"811842",,terminal_output +1297,1474794,"TERMINAL",0,0,"922953",,terminal_output +1298,1474796,"TERMINAL",0,0,"30441:0175",,terminal_output +1299,1475796,"TERMINAL",0,0,"255286",,terminal_output +1300,1476795,"TERMINAL",0,0,"366397",,terminal_output +1301,1477794,"TERMINAL",0,0,"4774108",,terminal_output +1302,1478796,"TERMINAL",0,0,"588519",,terminal_output +1303,1479795,"TERMINAL",0,0,"699623:00",,terminal_output +1304,1481798,"TERMINAL",0,0,"710:0030731",,terminal_output +1305,1482792,"TERMINAL",0,0,"811842",,terminal_output +1306,1483796,"TERMINAL",0,0,"922953",,terminal_output +1307,1484795,"TERMINAL",0,0,"40331064",,terminal_output +1308,1485796,"TERMINAL",0,0,"144175",,terminal_output +1309,1486059,"TERMINAL",0,0,"255286",,terminal_output +1310,1487107,"TERMINAL",0,0,"366397",,terminal_output +1311,1488151,"TERMINAL",0,0,"4774208",,terminal_output +1312,1489203,"TERMINAL",0,0,"588519",,terminal_output +1313,1490256,"TERMINAL",0,0,"6996210",,terminal_output +1314,1491301,"TERMINAL",0,0,"71040731",,terminal_output +1315,1492347,"TERMINAL",0,0,"811842",,terminal_output +1316,1493397,"TERMINAL",0,0,"922953",,terminal_output +1317,1494436,"TERMINAL",0,0,"50332064",,terminal_output +1318,1495477,"TERMINAL",0,0,"144175",,terminal_output +1319,1496522,"TERMINAL",0,0,"266397",,terminal_output +1320,1497561,"TERMINAL",0,0,"4774308",,terminal_output +1321,1498613,"TERMINAL",0,0,"588519",,terminal_output +1322,1499663,"TERMINAL",0,0,"6996220",,terminal_output diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-81e1fb02-dff9-4fc2-9f87-b24424044d321750773271666-2025_06_24-15.54.56.978/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-81e1fb02-dff9-4fc2-9f87-b24424044d321750773271666-2025_06_24-15.54.56.978/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..6b113e3072c150ef81a57c9806ea5cc3f40a9ea2 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-81e1fb02-dff9-4fc2-9f87-b24424044d321750773271666-2025_06_24-15.54.56.978/source.csv @@ -0,0 +1,1453 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,14,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"3:54:49 PM [info] Activating crowd-code\n3:54:49 PM [info] Welcome back tum_ind3695. Your user-id is '507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20'. Happy coding!\n3:54:49 PM [info] No active text editor\n",Log,tab +2,269,"extension-output-pdoom-org.crowd-code-#1-crowd-code",222,0,"3:54:56 PM [info] Recording started\n",Log,content +3,17704,"scripts/prefix_renamer.sh",0,0,"python scripts/prefix_renamer.py data/open_ai_minecraft/7.1 7.1\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.2 7.2\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.3 7.3\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.4 7.4\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.5 7.5\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.6 7.6\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.7 7.7\npython scripts/prefix_renamer.py data/open_ai_minecraft/8.0 8.0\npython scripts/prefix_renamer.py data/open_ai_minecraft/8.1 8.1\npython scripts/prefix_renamer.py data/open_ai_minecraft/8.2 8.2\npython scripts/prefix_renamer.py data/open_ai_minecraft/9.0 9.0\npython scripts/prefix_renamer.py data/open_ai_minecraft/9.1 9.1\npython scripts/prefix_renamer.py data/open_ai_minecrafta/10.0 10.0",shellscript,tab +4,19237,"scripts/prefix_renamer.sh",834,0,"",shellscript,selection_mouse +5,19241,"scripts/prefix_renamer.sh",833,0,"",shellscript,selection_command +6,24216,"scripts/prefix_renamer.sh",567,0,"",shellscript,selection_mouse +7,24744,"scripts/prefix_renamer.sh",631,0,"",shellscript,selection_command +8,24897,"scripts/prefix_renamer.sh",695,0,"",shellscript,selection_command +9,25076,"scripts/prefix_renamer.sh",759,0,"",shellscript,selection_command +10,37251,"scripts/prefix_renamer.sh",828,0,"",shellscript,selection_mouse +11,128367,"scripts/prefix_renamer.sh",834,0,"",shellscript,selection_mouse +12,128370,"scripts/prefix_renamer.sh",833,0,"",shellscript,selection_command +13,140782,"scripts/prefix_renamer.sh",834,0,"",shellscript,selection_mouse +14,140788,"scripts/prefix_renamer.sh",833,0,"",shellscript,selection_command +15,464596,"scripts/prefix_renamer.sh",832,0,"",shellscript,selection_command +16,464843,"scripts/prefix_renamer.sh",831,0,"",shellscript,selection_command +17,464870,"scripts/prefix_renamer.sh",830,0,"",shellscript,selection_command +18,464902,"scripts/prefix_renamer.sh",829,0,"",shellscript,selection_command +19,464933,"scripts/prefix_renamer.sh",828,0,"",shellscript,selection_command +20,464966,"scripts/prefix_renamer.sh",827,0,"",shellscript,selection_command +21,465002,"scripts/prefix_renamer.sh",826,0,"",shellscript,selection_command +22,465033,"scripts/prefix_renamer.sh",825,0,"",shellscript,selection_command +23,465067,"scripts/prefix_renamer.sh",824,0,"",shellscript,selection_command +24,465101,"scripts/prefix_renamer.sh",823,0,"",shellscript,selection_command +25,465453,"scripts/prefix_renamer.sh",823,1,"",shellscript,content +26,471717,"scripts/prefix_renamer.sh",833,0,"",shellscript,selection_mouse +27,471720,"scripts/prefix_renamer.sh",832,0,"",shellscript,selection_command +28,475738,"TERMINAL",0,0,"",,terminal_focus +29,485521,"TERMINAL",0,0,"cd data/open_ai_minecraft/",,terminal_command +30,485524,"TERMINAL",0,0,"]633;E;2025-06-24 16:03:02 cd data/open_ai_minecraft/;2044b719-4855-4d6a-93a8-ec0b7ecaf48b]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +31,485987,"TERMINAL",0,0,"ls",,terminal_command +32,486034,"TERMINAL",0,0,"]633;E;2025-06-24 16:03:02 ls;2044b719-4855-4d6a-93a8-ec0b7ecaf48b]633;C",,terminal_output +33,486117,"TERMINAL",0,0,"10.0 6.0 6.1 6.10 6.11 6.12 6.13 6.2 6.3 6.5 6.6 6.7 6.8 6.9 7.1 7.2 7.3 7.4 7.5 7.6 7.7 8.0 8.1 8.2 9.0 9.1\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +34,492319,"TERMINAL",0,0,"mv 6./* .",,terminal_command +35,492342,"TERMINAL",0,0,"]633;E;2025-06-24 16:03:09 mv 6./* .;2044b719-4855-4d6a-93a8-ec0b7ecaf48b]633;Cmv: cannot stat '6./*': No such file or directory\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;1",,terminal_output +36,496006,"TERMINAL",0,0,"mv 6./* .^C",,terminal_command +37,496010,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;2044b719-4855-4d6a-93a8-ec0b7ecaf48b]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D",,terminal_output +38,503838,"TERMINAL",0,0,"mv 6.*/* .",,terminal_command +39,503891,"TERMINAL",0,0,"]633;E;2025-06-24 16:03:20 mv 6.*/* .;2044b719-4855-4d6a-93a8-ec0b7ecaf48b]633;C",,terminal_output +40,522223,"TERMINAL",0,0,"",,terminal_focus +41,524398,"TERMINAL",0,0,"tmux",,terminal_focus +42,524399,"TERMINAL",0,0,"mv",,terminal_focus +43,526060,"TERMINAL",0,0,"",,terminal_focus +44,527295,"TERMINAL",0,0,"mv",,terminal_focus +45,529823,"TERMINAL",0,0,"bash",,terminal_focus +46,535773,"TERMINAL",0,0,"mv 7.*/* .",,terminal_command +47,535778,"TERMINAL",0,0,"]633;E;2025-06-24 16:03:52 mv 7.*/* .;d0f08995-f9ab-46d4-8959-4c91e4182a7c]633;Cmv: cannot stat '7.*/*': No such file or directory\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;1",,terminal_output +48,539069,"TERMINAL",0,0,"cd data/open_ai_minecraft/",,terminal_command +49,539076,"TERMINAL",0,0,"]633;E;2025-06-24 16:03:55 cd data/open_ai_minecraft/;d0f08995-f9ab-46d4-8959-4c91e4182a7c]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +50,540448,"TERMINAL",0,0,"mv 7.*/* .",,terminal_command +51,540491,"TERMINAL",0,0,"]633;E;2025-06-24 16:03:57 mv 7.*/* .;d0f08995-f9ab-46d4-8959-4c91e4182a7c]633;C",,terminal_output +52,544023,"TERMINAL",0,0,"",,terminal_focus +53,548094,"TERMINAL",0,0,"cd data/open_ai_minecraft/",,terminal_command +54,548099,"TERMINAL",0,0,"]633;E;2025-06-24 16:04:04 cd data/open_ai_minecraft/;367d72a3-2ed6-480f-805d-8e38f1f80405]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +55,552444,"TERMINAL",0,0,"mv 8.*/* .",,terminal_command +56,552701,"TERMINAL",0,0,"]633;E;2025-06-24 16:04:09 mv 8.*/* .;367d72a3-2ed6-480f-805d-8e38f1f80405]633;C",,terminal_output +57,553734,"TERMINAL",0,0,"",,terminal_focus +58,559582,"TERMINAL",0,0,"cd data/open_ai_minecraft/",,terminal_command +59,559584,"TERMINAL",0,0,"]633;E;2025-06-24 16:04:16 cd data/open_ai_minecraft/;f130f5cf-3898-49f8-b57e-54ec7880c58d]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +60,560635,"TERMINAL",0,0,"mv",,terminal_focus +61,563759,"TERMINAL",0,0,"bash",,terminal_focus +62,569887,"TERMINAL",0,0,"mv 9.*/* .",,terminal_command +63,569936,"TERMINAL",0,0,"]633;E;2025-06-24 16:04:26 mv 9.*/* .;f130f5cf-3898-49f8-b57e-54ec7880c58d]633;C",,terminal_output +64,576933,"TERMINAL",0,0,"Pne",,terminal_output +65,578277,"TERMINAL",0,0,"",,terminal_focus +66,602846,"TERMINAL",0,0,"mv",,terminal_focus +67,603817,"TERMINAL",0,0,"mv",,terminal_focus +68,605344,"TERMINAL",0,0,"mv",,terminal_focus +69,606105,"TERMINAL",0,0,"mv",,terminal_focus +70,607417,"TERMINAL",0,0,"bash",,terminal_focus +71,609245,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +72,611593,"TERMINAL",0,0,"bash",,terminal_focus +73,613228,"TERMINAL",0,0,"ls",,terminal_command +74,613280,"TERMINAL",0,0,"]633;E;2025-06-24 16:05:10 ls;367d72a3-2ed6-480f-805d-8e38f1f80405]633;C",,terminal_output +75,619775,"TERMINAL",0,0,"mv",,terminal_focus +76,627921,"TERMINAL",0,0,"^C",,terminal_output +77,627994,"TERMINAL",0,0,"\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;130",,terminal_output +78,629780,"TERMINAL",0,0,"ls",,terminal_focus +79,632017,"TERMINAL",0,0,"^C\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;130",,terminal_output +80,632691,"TERMINAL",0,0,"mv",,terminal_focus +81,639091,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +82,643100,"scripts/prefix_renamer.sh",0,0,"",shellscript,tab +83,644125,"scripts/prefix_renamer copy.sh",0,0,"python scripts/prefix_renamer.py data/open_ai_minecraft/7.1 7.1\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.2 7.2\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.3 7.3\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.4 7.4\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.5 7.5\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.6 7.6\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.7 7.7\npython scripts/prefix_renamer.py data/open_ai_minecraft/8.0 8.0\npython scripts/prefix_renamer.py data/open_ai_minecraft/8.1 8.1\npython scripts/prefix_renamer.py data/open_ai_minecraft/8.2 8.2\npython scripts/prefix_renamer.py data/open_ai_minecraft/9.0 9.0\npython scripts/prefix_renamer.py data/open_ai_minecraft/9.1 9.1\npython scripts/prefix_renamer.py data/open_ai_minecraft/10.0 10.0",shellscript,tab +84,645264,"TERMINAL",0,0,"cd data/open_ai_minecraft/",,terminal_command +85,645269,"TERMINAL",0,0,"mv 8.*/* .",,terminal_command +86,645321,"TERMINAL",0,0,"]633;E;2025-06-24 16:05:42 mv 8.*/* .;6e7b383a-07c9-4168-916e-d5fbbcea8523]633;C",,terminal_output +87,647691,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +88,648560,"TERMINAL",0,0,"mv: cannot stat '8.*/*': No such file or directory\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;1",,terminal_output +89,648562,"TERMINAL",0,0,"l",,terminal_command +90,648583,"TERMINAL",0,0,"]633;E;2025-06-24 16:05:45 l;6e7b383a-07c9-4168-916e-d5fbbcea8523]633;Cbash: l: command not found...\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;127",,terminal_output +91,655809,"scripts/data_mover.sh",0,0,"python scripts/prefix_renamer.py data/open_ai_minecraft/7.1 7.1\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.2 7.2\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.3 7.3\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.4 7.4\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.5 7.5\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.6 7.6\npython scripts/prefix_renamer.py data/open_ai_minecraft/7.7 7.7\npython scripts/prefix_renamer.py data/open_ai_minecraft/8.0 8.0\npython scripts/prefix_renamer.py data/open_ai_minecraft/8.1 8.1\npython scripts/prefix_renamer.py data/open_ai_minecraft/8.2 8.2\npython scripts/prefix_renamer.py data/open_ai_minecraft/9.0 9.0\npython scripts/prefix_renamer.py data/open_ai_minecraft/9.1 9.1\npython scripts/prefix_renamer.py data/open_ai_minecraft/10.0 10.0",shellscript,tab +92,656918,"scripts/data_mover.sh",833,0,"",shellscript,selection_mouse +93,656921,"scripts/data_mover.sh",832,0,"",shellscript,selection_command +94,659138,"scripts/data_mover.sh",0,833,"",shellscript,content +95,661657,"TERMINAL",0,0,"bash",,terminal_focus +96,664275,"TERMINAL",0,0,"bash",,terminal_focus +97,665757,"TERMINAL",0,0,"mv 7.*/* .",,terminal_command +98,665808,"TERMINAL",0,0,"]633;E;2025-06-24 16:06:02 mv 7.*/* .;d0f08995-f9ab-46d4-8959-4c91e4182a7c]633;C",,terminal_output +99,670371,"scripts/data_mover.sh",0,0,"",shellscript,tab +100,671512,"scripts/data_mover.sh",0,0," mv 7.*/* .",shellscript,content +101,671520,"scripts/data_mover.sh",10,0,"",shellscript,selection_command +102,673891,"scripts/data_mover.sh",11,0,"\n ",shellscript,content +103,674197,"scripts/data_mover.sh",12,1,"",shellscript,content +104,674405,"scripts/data_mover.sh",12,0," mv 7.*/* .",shellscript,content +105,674410,"scripts/data_mover.sh",22,0,"",shellscript,selection_command +106,674559,"scripts/data_mover.sh",23,0," mv 7.*/* .",shellscript,content +107,674561,"scripts/data_mover.sh",33,0,"",shellscript,selection_command +108,674709,"scripts/data_mover.sh",34,0," mv 7.*/* .",shellscript,content +109,674711,"scripts/data_mover.sh",44,0,"",shellscript,selection_command +110,675254,"scripts/data_mover.sh",34,11,"",shellscript,content +111,675259,"scripts/data_mover.sh",33,0,"",shellscript,selection_command +112,675525,"scripts/data_mover.sh",23,11,"",shellscript,content +113,675544,"scripts/data_mover.sh",22,0,"",shellscript,selection_command +114,677058,"scripts/data_mover.sh",23,0,"\n mv 7.*/* .",shellscript,content +115,677061,"scripts/data_mover.sh",25,0,"",shellscript,selection_command +116,677494,"scripts/data_mover.sh",35,0,"\n mv 7.*/* .",shellscript,content +117,677496,"scripts/data_mover.sh",37,0,"",shellscript,selection_command +118,677873,"scripts/data_mover.sh",47,0,"\n mv 7.*/* .",shellscript,content +119,677875,"scripts/data_mover.sh",49,0,"",shellscript,selection_command +120,678040,"scripts/data_mover.sh",37,0,"",shellscript,selection_command +121,678405,"scripts/data_mover.sh",25,0,"",shellscript,selection_command +122,678407,"scripts/data_mover.sh",13,0,"",shellscript,selection_command +123,678408,"scripts/data_mover.sh",1,0,"",shellscript,selection_command +124,678804,"scripts/data_mover.sh",3,0,"",shellscript,selection_command +125,678919,"scripts/data_mover.sh",4,0,"",shellscript,selection_command +126,679695,"scripts/data_mover.sh",4,1,"6",shellscript,content +127,679814,"scripts/data_mover.sh",16,0,"",shellscript,selection_command +128,679982,"scripts/data_mover.sh",28,0,"",shellscript,selection_command +129,680782,"scripts/data_mover.sh",28,1,"8",shellscript,content +130,680962,"scripts/data_mover.sh",40,0,"",shellscript,selection_command +131,681504,"scripts/data_mover.sh",40,1,"9",shellscript,content +132,681826,"scripts/data_mover.sh",52,0,"",shellscript,selection_command +133,683489,"scripts/data_mover.sh",53,0,"10",shellscript,content +134,683489,"scripts/data_mover.sh",52,1,"",shellscript,content +135,684130,"scripts/data_mover.sh",40,0,"",shellscript,selection_command +136,684293,"scripts/data_mover.sh",28,0,"",shellscript,selection_command +137,684423,"scripts/data_mover.sh",16,0,"",shellscript,selection_command +138,687067,"scripts/data_mover.sh",4,0,"",shellscript,selection_command +139,687212,"scripts/data_mover.sh",4,1,"6",shellscript,selection_command +140,687290,"scripts/data_mover.sh",4,1,"6",shellscript,selection_command +141,687423,"scripts/data_mover.sh",4,1,"6",shellscript,selection_command +142,687575,"scripts/data_mover.sh",4,1,"6",shellscript,selection_command +143,687721,"scripts/data_mover.sh",4,1,"6",shellscript,selection_command +144,687992,"scripts/data_mover.sh",4,0,"",shellscript,selection_command +145,688220,"scripts/data_mover.sh",52,0,"d",shellscript,content +146,688221,"scripts/data_mover.sh",40,0,"d",shellscript,content +147,688221,"scripts/data_mover.sh",28,0,"d",shellscript,content +148,688221,"scripts/data_mover.sh",16,0,"d",shellscript,content +149,688221,"scripts/data_mover.sh",4,0,"d",shellscript,content +150,688223,"scripts/data_mover.sh",5,0,"",shellscript,selection_keyboard +151,688339,"scripts/data_mover.sh",57,0,"a",shellscript,content +152,688339,"scripts/data_mover.sh",44,0,"a",shellscript,content +153,688339,"scripts/data_mover.sh",31,0,"a",shellscript,content +154,688339,"scripts/data_mover.sh",18,0,"a",shellscript,content +155,688339,"scripts/data_mover.sh",5,0,"a",shellscript,content +156,688340,"scripts/data_mover.sh",6,0,"",shellscript,selection_keyboard +157,688414,"scripts/data_mover.sh",62,0,"t",shellscript,content +158,688414,"scripts/data_mover.sh",48,0,"t",shellscript,content +159,688414,"scripts/data_mover.sh",34,0,"t",shellscript,content +160,688414,"scripts/data_mover.sh",20,0,"t",shellscript,content +161,688414,"scripts/data_mover.sh",6,0,"t",shellscript,content +162,688415,"scripts/data_mover.sh",7,0,"",shellscript,selection_keyboard +163,688505,"scripts/data_mover.sh",67,0,"a",shellscript,content +164,688506,"scripts/data_mover.sh",52,0,"a",shellscript,content +165,688506,"scripts/data_mover.sh",37,0,"a",shellscript,content +166,688506,"scripts/data_mover.sh",22,0,"a",shellscript,content +167,688506,"scripts/data_mover.sh",7,0,"a",shellscript,content +168,688507,"scripts/data_mover.sh",8,0,"",shellscript,selection_keyboard +169,688772,"scripts/data_mover.sh",72,0,"/",shellscript,content +170,688772,"scripts/data_mover.sh",56,0,"/",shellscript,content +171,688773,"scripts/data_mover.sh",40,0,"/",shellscript,content +172,688773,"scripts/data_mover.sh",24,0,"/",shellscript,content +173,688773,"scripts/data_mover.sh",8,0,"/",shellscript,content +174,688773,"scripts/data_mover.sh",9,0,"",shellscript,selection_keyboard +175,689850,"scripts/data_mover.sh",59,0,"/open_ai_minecraft",shellscript,content +176,689850,"scripts/data_mover.sh",43,0,"open_ai_minecraft/",shellscript,content +177,689850,"scripts/data_mover.sh",26,0,"open_ai_minecraft/",shellscript,content +178,690407,"scripts/data_mover.sh",8,0,"",shellscript,selection_command +179,691656,"scripts/data_mover.sh",9,0,"",shellscript,selection_command +180,692136,"scripts/data_mover.sh",9,0,"o",shellscript,content +181,692137,"scripts/data_mover.sh",10,0,"",shellscript,selection_keyboard +182,692204,"scripts/data_mover.sh",10,0,"p",shellscript,content +183,692205,"scripts/data_mover.sh",11,0,"",shellscript,selection_keyboard +184,692317,"scripts/data_mover.sh",11,0,"e",shellscript,content +185,692318,"scripts/data_mover.sh",12,0,"",shellscript,selection_keyboard +186,692392,"scripts/data_mover.sh",12,0,"n",shellscript,content +187,692393,"scripts/data_mover.sh",13,0,"",shellscript,selection_keyboard +188,692972,"scripts/data_mover.sh",13,0,"_ai_minecraft/",shellscript,content +189,692998,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +190,693174,"scripts/data_mover.sh",26,0,"",shellscript,selection_command +191,693277,"scripts/data_mover.sh",61,0,"",shellscript,selection_command +192,693436,"scripts/data_mover.sh",96,0,"",shellscript,selection_command +193,693589,"scripts/data_mover.sh",131,0,"",shellscript,selection_command +194,693891,"scripts/data_mover.sh",156,0,"",shellscript,selection_command +195,694302,"scripts/data_mover.sh",149,0,"open_ai_minecraft/",shellscript,content +196,694305,"scripts/data_mover.sh",167,0,"",shellscript,selection_command +197,696409,"TERMINAL",0,0,"bash",,terminal_focus +198,697181,"TERMINAL",0,0,"tmux",,terminal_focus +199,697186,"scripts/data_mover.sh",0,0,"",shellscript,tab +200,698466,"TERMINAL",0,0,"bash",,terminal_focus +201,698592,"TERMINAL",0,0,"bash",,terminal_focus +202,698745,"TERMINAL",0,0,"bash",,terminal_focus +203,698892,"TERMINAL",0,0,"bash",,terminal_focus +204,699074,"scripts/prefix_renamer.sh",0,0,"",shellscript,tab +205,700050,"TERMINAL",0,0,"tmux",,terminal_focus +206,700053,"scripts/prefix_renamer.sh",0,0,"",shellscript,tab +207,700237,"TERMINAL",0,0,"bash",,terminal_focus +208,700728,"TERMINAL",0,0,"tmux",,terminal_focus +209,700729,"TERMINAL",0,0,"bash",,terminal_focus +210,701141,"TERMINAL",0,0,"tmux",,terminal_focus +211,701142,"TERMINAL",0,0,"bash",,terminal_focus +212,702023,"TERMINAL",0,0,"tmux",,terminal_focus +213,702026,"scripts/data_mover.sh",0,0,"",shellscript,tab +214,704418,"TERMINAL",0,0,"",,terminal_focus +215,706971,"TERMINAL",0,0,"tmux",,terminal_focus +216,707370,"TERMINAL",0,0,"bash",,terminal_focus +217,709798,"TERMINAL",0,0,"cd data/open_ai_minecraft/",,terminal_command +218,709804,"TERMINAL",0,0,"]633;E;2025-06-24 16:06:46 cd data/open_ai_minecraft/;00b432d4-e712-4beb-bca6-8ba399fb3372]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +219,710692,"TERMINAL",0,0,"",,terminal_focus +220,711009,"TERMINAL",0,0,"bash",,terminal_focus +221,711978,"TERMINAL",0,0,"ls",,terminal_command +222,712029,"TERMINAL",0,0,"]633;E;2025-06-24 16:06:48 ls;00b432d4-e712-4beb-bca6-8ba399fb3372]633;C",,terminal_output +223,716062,"TERMINAL",0,0,"^C\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;130",,terminal_output +224,717091,"scripts/data_mover.sh",0,0,"",shellscript,tab +225,719446,"TERMINAL",0,0,"bash",,terminal_focus +226,724085,"TERMINAL",0,0,"./scripts/data_mover.sh",,terminal_command +227,724138,"TERMINAL",0,0,"]633;E;2025-06-24 16:07:00 ./scripts/data_mover.sh ;3588c04d-0da0-40eb-9980-9a3b4883c9d8]633;C",,terminal_output +228,726506,"scripts/data_mover.sh",0,0,"",shellscript,tab +229,727128,"scripts/data_mover.sh",132,0,"",shellscript,selection_command +230,727373,"scripts/data_mover.sh",97,0,"",shellscript,selection_command +231,727404,"scripts/data_mover.sh",62,0,"",shellscript,selection_command +232,727431,"scripts/data_mover.sh",27,0,"",shellscript,selection_command +233,727768,"scripts/data_mover.sh",0,0,"\n",shellscript,content +234,727774,"scripts/data_mover.sh",0,0," ",shellscript,content +235,728162,"scripts/data_mover.sh",1,0,"e",shellscript,content +236,728163,"scripts/data_mover.sh",2,0,"",shellscript,selection_keyboard +237,728314,"scripts/data_mover.sh",2,0,"c",shellscript,content +238,728315,"scripts/data_mover.sh",3,0,"",shellscript,selection_keyboard +239,728461,"scripts/data_mover.sh",3,0,"h",shellscript,content +240,728461,"scripts/data_mover.sh",4,0,"",shellscript,selection_keyboard +241,728530,"scripts/data_mover.sh",4,0,"o",shellscript,content +242,728531,"scripts/data_mover.sh",5,0,"",shellscript,selection_keyboard +243,728589,"scripts/data_mover.sh",5,0," ",shellscript,content +244,728590,"scripts/data_mover.sh",6,0,"",shellscript,selection_keyboard +245,729255,"scripts/data_mover.sh",6,0,"""Moving data...""",shellscript,content +246,730111,"scripts/data_mover.sh",21,0,"",shellscript,selection_command +247,730209,"scripts/data_mover.sh",44,0,"",shellscript,selection_command +248,731214,"scripts/data_mover.sh",22,0,"\n ",shellscript,content +249,731695,"scripts/data_mover.sh",24,0,"e",shellscript,content +250,731696,"scripts/data_mover.sh",25,0,"",shellscript,selection_keyboard +251,731881,"scripts/data_mover.sh",25,0,"h",shellscript,content +252,731881,"scripts/data_mover.sh",26,0,"",shellscript,selection_keyboard +253,731972,"scripts/data_mover.sh",26,0,"o",shellscript,content +254,731972,"scripts/data_mover.sh",27,0,"",shellscript,selection_keyboard +255,732073,"scripts/data_mover.sh",27,0," ",shellscript,content +256,732074,"scripts/data_mover.sh",28,0,"",shellscript,selection_keyboard +257,732808,"scripts/data_mover.sh",28,0,"""Moving data...""",shellscript,content +258,732809,"scripts/data_mover.sh",25,0,"c",shellscript,content +259,733310,"scripts/data_mover.sh",44,0,"",shellscript,selection_command +260,733605,"scripts/data_mover.sh",23,23,"",shellscript,content +261,733620,"scripts/data_mover.sh",24,0,"",shellscript,selection_command +262,734253,"scripts/data_mover.sh",22,0,"\n ",shellscript,content +263,734737,"scripts/data_mover.sh",24,0,"e",shellscript,content +264,734844,"scripts/data_mover.sh",25,0,"c",shellscript,content +265,734917,"scripts/data_mover.sh",26,0,"h",shellscript,content +266,734979,"scripts/data_mover.sh",27,0,"o",shellscript,content +267,735100,"scripts/data_mover.sh",28,0," ",shellscript,content +268,735339,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/6.*/*': No such file or directory\r\n./scripts/data_mover.sh: line 2: n_ai_minecraft/6.*/*: No such file or directory\r\n",,terminal_output +269,736799,"scripts/data_mover.sh",29,0,"'",shellscript,content +270,738487,"scripts/data_mover.sh",29,1,"",shellscript,content +271,738684,"scripts/data_mover.sh",29,0,"""",shellscript,content +272,738685,"scripts/data_mover.sh",30,0,"",shellscript,selection_keyboard +273,739171,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/7.*/*': No such file or directory\r\n./scripts/data_mover.sh: line 4: 7.*/*: No such file or directory\r\n",,terminal_output +274,739301,"scripts/data_mover.sh",30,0,"T",shellscript,content +275,739302,"scripts/data_mover.sh",31,0,"",shellscript,selection_keyboard +276,739423,"scripts/data_mover.sh",31,0,"r",shellscript,content +277,739424,"scripts/data_mover.sh",32,0,"",shellscript,selection_keyboard +278,739621,"scripts/data_mover.sh",32,0,"a",shellscript,content +279,739622,"scripts/data_mover.sh",33,0,"",shellscript,selection_keyboard +280,739725,"scripts/data_mover.sh",33,0,"n",shellscript,content +281,739726,"scripts/data_mover.sh",34,0,"",shellscript,selection_keyboard +282,739791,"scripts/data_mover.sh",34,0,"s",shellscript,content +283,739792,"scripts/data_mover.sh",35,0,"",shellscript,selection_keyboard +284,740904,"scripts/data_mover.sh",35,0,"f",shellscript,content +285,740905,"scripts/data_mover.sh",36,0,"",shellscript,selection_keyboard +286,741041,"scripts/data_mover.sh",36,0,"e",shellscript,content +287,741042,"scripts/data_mover.sh",37,0,"",shellscript,selection_keyboard +288,741095,"scripts/data_mover.sh",37,0,"r",shellscript,content +289,741096,"scripts/data_mover.sh",38,0,"",shellscript,selection_keyboard +290,741189,"scripts/data_mover.sh",38,0,"i",shellscript,content +291,741190,"scripts/data_mover.sh",39,0,"",shellscript,selection_keyboard +292,741191,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/8.*/*': No such file or directory\r\n./scripts/data_mover.sh: line 6: /afs: Is a directory\r\n",,terminal_output +293,741250,"scripts/data_mover.sh",39,0,"n",shellscript,content +294,741251,"scripts/data_mover.sh",40,0,"",shellscript,selection_keyboard +295,741328,"scripts/data_mover.sh",40,0,"g",shellscript,content +296,741329,"scripts/data_mover.sh",41,0,"",shellscript,selection_keyboard +297,741436,"scripts/data_mover.sh",41,0," ",shellscript,content +298,741437,"scripts/data_mover.sh",42,0,"",shellscript,selection_keyboard +299,744105,"scripts/data_mover.sh",42,0,"6",shellscript,content +300,744106,"scripts/data_mover.sh",43,0,"",shellscript,selection_keyboard +301,744810,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/9.*/*': No such file or directory\r\n./scripts/data_mover.sh: line 8: ../ab9139-Project_Frisbee: Is a directory\r\n",,terminal_output +302,745273,"scripts/data_mover.sh",43,0,".0 data...""",shellscript,content +303,745938,"scripts/data_mover.sh",194,0,"\n echo ""Transferring 10.0 data...""",shellscript,content +304,745938,"scripts/data_mover.sh",161,0,"echo ""Transferring 9.0 data...""\n ",shellscript,content +305,745938,"scripts/data_mover.sh",126,0,"echo ""Transferring 8.0 data...""\n ",shellscript,content +306,745938,"scripts/data_mover.sh",91,0,"echo ""Transferring 7.0 data...""\n ",shellscript,content +307,746430,"scripts/data_mover.sh",53,0,"",shellscript,selection_command +308,751498,"TERMINAL",0,0,"^C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;130",,terminal_output +309,760267,"TERMINAL",0,0,"cd data/open_ai_minecraft/9.*/*^C",,terminal_command +310,760278,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;3588c04d-0da0-40eb-9980-9a3b4883c9d8]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D",,terminal_output +311,762051,"TERMINAL",0,0,"./scripts/data_mover.sh",,terminal_command +312,762116,"TERMINAL",0,0,"]633;E;2025-06-24 16:07:38 ./scripts/data_mover.sh ;3588c04d-0da0-40eb-9980-9a3b4883c9d8]633;CMoving data...\r\nTransfering 6.0 data...\r\n",,terminal_output +313,762633,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/6.*/*': No such file or directory\r\nTransferring 7.0 data...\r\n",,terminal_output +314,763014,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/7.*/*': No such file or directory\r\nTransferring 8.0 data...\r\n",,terminal_output +315,763222,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/8.*/*': No such file or directory\r\nTransferring 9.0 data...\r\n",,terminal_output +316,763354,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/9.*/*': No such file or directory\r\nTransferring 10.0 data...\r\n",,terminal_output +317,772270,"TERMINAL",0,0,"bash",,terminal_focus +318,776861,"scripts/data_mover.sh",0,0,"",shellscript,tab +319,789782,"TERMINAL",0,0,"mkdir t",,terminal_command +320,789803,"TERMINAL",0,0,"]633;E;2025-06-24 16:08:06 mkdir t;00b432d4-e712-4beb-bca6-8ba399fb3372]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +321,811093,"TERMINAL",0,0,"ls 6.0",,terminal_command +322,811110,"TERMINAL",0,0,"]633;E;2025-06-24 16:08:27 ls 6.0;00b432d4-e712-4beb-bca6-8ba399fb3372]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +323,813297,"scripts/rename_mp4_files.py",0,0,"#!/usr/bin/env python3\n""""""\nScript to rename all MP4 files in a directory with a custom prefix.\n""""""\n\nimport os\nimport argparse\nimport re\nfrom pathlib import Path\n\n\ndef rename_mp4_files(directory, prefix, dry_run=False, pattern=None, start_number=1):\n """"""\n Rename all MP4 files in the specified directory with a custom prefix.\n \n Args:\n directory (str): Path to the directory containing MP4 files\n prefix (str): Custom prefix to add to filenames\n dry_run (bool): If True, only show what would be renamed without actually renaming\n pattern (str): Optional regex pattern to filter files\n start_number (int): Starting number for sequential naming\n """"""\n directory_path = Path(directory)\n \n if not directory_path.exists():\n print(f""Error: Directory '{directory}' does not exist."")\n return\n \n if not directory_path.is_dir():\n print(f""Error: '{directory}' is not a directory."")\n return\n \n # Find all MP4 files\n mp4_files = list(directory_path.glob(""*.mp4""))\n \n if not mp4_files:\n print(f""No MP4 files found in '{directory}'"")\n return\n \n # Filter by pattern if provided\n if pattern:\n regex = re.compile(pattern)\n mp4_files = [f for f in mp4_files if regex.search(f.name)]\n \n if not mp4_files:\n print(f""No MP4 files match the pattern '{pattern}' in '{directory}'"")\n return\n \n print(f""Found {len(mp4_files)} MP4 files to rename:"")\n \n # Sort files for consistent ordering\n mp4_files.sort()\n \n for i, file_path in enumerate(mp4_files, start=start_number):\n # Get the original filename without extension\n original_name = file_path.stem\n extension = file_path.suffix\n \n # Create new filename with prefix\n new_name = f""{prefix}_{i:03d}_{original_name}{extension}""\n new_path = file_path.parent / new_name\n \n # Check if new filename already exists\n if new_path.exists() and not dry_run:\n print(f""Warning: '{new_name}' already exists, skipping '{file_path.name}'"")\n continue\n \n if dry_run:\n print(f""Would rename: '{file_path.name}' -> '{new_name}'"")\n else:\n try:\n file_path.rename(new_path)\n print(f""Renamed: '{file_path.name}' -> '{new_name}'"")\n except OSError as e:\n print(f""Error renaming '{file_path.name}': {e}"")\n \n if dry_run:\n print(f""\nDry run completed. {len(mp4_files)} files would be renamed."")\n else:\n print(f""\nRenaming completed. {len(mp4_files)} files renamed."")\n\n\ndef main():\n parser = argparse.ArgumentParser(\n description=""Rename all MP4 files in a directory with a custom prefix"",\n formatter_class=argparse.RawDescriptionHelpFormatter,\n epilog=""""""\nExamples:\n %(prog)s /path/to/videos minecraft\n %(prog)s /path/to/videos player --dry-run\n %(prog)s /path/to/videos episode --pattern ""joost"" --start-number 10\n """"""\n )\n \n parser.add_argument(\n ""directory"",\n help=""Directory containing MP4 files to rename""\n )\n \n parser.add_argument(\n ""prefix"",\n help=""Custom prefix to add to filenames""\n )\n \n parser.add_argument(\n ""--dry-run"",\n action=""store_true"",\n help=""Show what would be renamed without actually renaming files""\n )\n \n parser.add_argument(\n ""--pattern"",\n help=""Regex pattern to filter files (only rename files matching this pattern)""\n )\n \n parser.add_argument(\n ""--start-number"",\n type=int,\n default=1,\n help=""Starting number for sequential naming (default: 1)""\n )\n \n args = parser.parse_args()\n \n # Validate start number\n if args.start_number < 1:\n print(""Error: start-number must be at least 1"")\n return\n \n rename_mp4_files(\n directory=args.directory,\n prefix=args.prefix,\n dry_run=args.dry_run,\n pattern=args.pattern,\n start_number=args.start_number\n )\n\n\nif __name__ == ""__main__"":\n main() ",python,tab +324,813895,"scripts/prefix_renamer.py",0,0,"""""""\nScript to rename all MP4 files in a directory with a custom prefix.\n""""""\n\nimport os\nimport argparse\nimport re\nfrom pathlib import Path\n\n\ndef rename_mp4_files(directory, prefix, dry_run=False, pattern=None, start_number=1):\n """"""\n Rename all MP4 files in the specified directory with a custom prefix.\n \n Args:\n directory (str): Path to the directory containing MP4 files\n prefix (str): Custom prefix to add to filenames\n dry_run (bool): If True, only show what would be renamed without actually renaming\n pattern (str): Optional regex pattern to filter files\n start_number (int): Starting number for sequential naming\n """"""\n directory_path = Path(directory)\n \n if not directory_path.exists():\n print(f""Error: Directory '{directory}' does not exist."")\n return\n \n if not directory_path.is_dir():\n print(f""Error: '{directory}' is not a directory."")\n return\n \n # Find all MP4 files\n mp4_files = list(directory_path.glob(""*.mp4""))\n \n if not mp4_files:\n print(f""No MP4 files found in '{directory}'"")\n return\n \n # Filter by pattern if provided\n if pattern:\n regex = re.compile(pattern)\n mp4_files = [f for f in mp4_files if regex.search(f.name)]\n \n if not mp4_files:\n print(f""No MP4 files match the pattern '{pattern}' in '{directory}'"")\n return\n \n print(f""Found {len(mp4_files)} MP4 files to rename:"")\n \n # Sort files for consistent ordering\n mp4_files.sort()\n \n for i, file_path in enumerate(mp4_files, start=start_number):\n # Get the original filename without extension\n original_name = file_path.stem\n extension = file_path.suffix\n \n # Create new filename with prefix\n new_name = f""{prefix}_{i:03d}_{original_name}{extension}""\n new_path = file_path.parent / new_name\n \n # Check if new filename already exists\n if new_path.exists() and not dry_run:\n print(f""Warning: '{new_name}' already exists, skipping '{file_path.name}'"")\n continue\n \n if dry_run:\n print(f""Would rename: '{file_path.name}' -> '{new_name}'"")\n else:\n try:\n file_path.rename(new_path)\n print(f""Renamed: '{file_path.name}' -> '{new_name}'"")\n except OSError as e:\n print(f""Error renaming '{file_path.name}': {e}"")\n \n if dry_run:\n print(f""\nDry run completed. {len(mp4_files)} files would be renamed."")\n else:\n print(f""\nRenaming completed. {len(mp4_files)} files renamed."")\n\n\ndef main():\n parser = argparse.ArgumentParser(\n description=""Rename all MP4 files in a directory with a custom prefix"",\n formatter_class=argparse.RawDescriptionHelpFormatter,\n epilog=""""""\nExamples:\n %(prog)s /path/to/videos minecraft\n %(prog)s /path/to/videos player --dry-run\n %(prog)s /path/to/videos episode --pattern ""joost"" --start-number 10\n """"""\n )\n \n parser.add_argument(\n ""directory"",\n help=""Directory containing MP4 files to rename""\n )\n \n parser.add_argument(\n ""prefix"",\n help=""Custom prefix to add to filenames""\n )\n \n parser.add_argument(\n ""--dry-run"",\n action=""store_true"",\n help=""Show what would be renamed without actually renaming files""\n )\n \n parser.add_argument(\n ""--pattern"",\n help=""Regex pattern to filter files (only rename files matching this pattern)""\n )\n \n parser.add_argument(\n ""--start-number"",\n type=int,\n default=1,\n help=""Starting number for sequential naming (default: 1)""\n )\n \n args = parser.parse_args()\n \n # Validate start number\n if args.start_number < 1:\n print(""Error: start-number must be at least 1"")\n return\n \n rename_mp4_files(\n directory=args.directory,\n prefix=args.prefix,\n dry_run=args.dry_run,\n pattern=args.pattern,\n start_number=args.start_number\n )\n\n\nif __name__ == ""__main__"":\n main()",python,tab +325,839227,"TERMINAL",0,0,"bash",,terminal_focus +326,841786,"TERMINAL",0,0,"ls",,terminal_command +327,841836,"TERMINAL",0,0,"]633;E;2025-06-24 16:08:58 ls;3588c04d-0da0-40eb-9980-9a3b4883c9d8]633;C",,terminal_output +328,843341,"TERMINAL",0,0,"10.0_001_cheeky-cornflower-setter-02e496ce4abb-20220421-092639.mp4 10.0_2920_shabby-viridian-beaver-980970f2f31f-20220421-011128.mp4\r\n10.0_002_cheeky-cornflower-setter-02e496ce4abb-20220421-093149.mp4 10.0_2921_shabby-viridian-beaver-9891c74371a7-20220421-022323.mp4\r\n10.0_003_cheeky-cornflower-setter-032f4eb01e68-20220418-125807.mp4 10.0_2922_shabby-viridian-beaver-9914271526d5-20220416-173531.mp4\r\n10.0_004_cheeky-cornflower-setter-032f4eb01e68-20220418-130337.mp4 10.0_2923_shabby-viridian-beaver-9914271526d5-20220416-174032.mp4\r\n10.0_005_cheeky-cornflower-setter-054834d1b04a-20220419-154302.mp4 10.0_2924_shabby-viridian-beaver-9914271526d5-20220416-174534.mp4\r\n10.0_006_cheeky-cornflower-setter-0a5ba522405b-20220422-133010.mp4 10.0_2925_shabby-viridian-beaver-9914271526d5-20220416-175034.mp4\r\n10.0_007_cheeky-cornflower-setter-0a5ba522405b-20220422-134025.mp4 10.0_2926_shabby-viridian-beaver-9914271526d5-20220416-175534.mp4\r\n10.0_008_cheeky-cornflower-setter-0a5ba522405b-20220422-134954.mp4 10.0_2927_shabby-viridian-beaver-9ba9cade00b5-20220422-181714.mp4\r\n10.0_009_cheeky-cornflower-setter-0ac982de1b70-20220420-180354.mp4 10.0_2928_shabby-viridian-beaver-9ca372a90269-20220423-173314.mp4\r\n10.0_010_cheeky-cornflower-setter-0ada408c4d80-20220422-191527.mp4 10.0_2929_shabby-viridian-beaver-9ca372a90269-20220423-173814.mp4\r\n10.0_011_cheeky-cornflower-setter-0ada408c4d80-20220422-192043.mp4 10.0_292_cheeky-cornflower-setter-a9389e9fbaa7-20220415-114933.mp4\r\n10.0_012_cheeky-cornflower-setter-0ada408c4d80-20220422-192548.mp4 10.0_2930_shabby-viridian-beaver-9ca372a90269-20220423-174330.mp4\r\n10.0_013_cheeky-cornflower-setter-0af0903eb6f4-20220415-183319.mp4 10.0_2931_shabby-viridian-beaver-9ca372a90269-20220423-174836.mp4\r\n10.0_014_cheeky-cornflower-setter-0af0903eb6f4-20220415-183830.mp4 10.0_2932_shabby-viridian-beaver-9d77e3241a80-20220414-212622.mp4\r\n10.0_015_cheeky-cornflower-setter-0af0903eb6f4-20220415-184336.mp4 10.0_2933_shabby-viridian-beaver-9d77e3241a80-20220414-213125.mp4\r\n10.0_016_cheeky-cornflower-setter-0af0903eb6f4-20220415-184840.mp4 10.0_2934_shabby-viridian-beaver-9d77e3241a80-20220414-213624.mp4\r\n10.0_017_cheeky-cornflower-setter-127b15c845d8-20220423-192214.mp4 10.0_2935_shabby-viridian-beaver-9d77e3241a80-20220414-214125.mp4\r\n10.0_018_cheeky-cornflower-setter-127b15c845d8-20220423-193357.mp4 10.0_2936_shabby-viridian-beaver-9d77e3241a80-20220414-214623.mp4\r\n10.0_019_cheeky-cornflower-setter-12c743997864-20220421-094401.mp4 10.0_2937_shabby-viridian-beaver-9f85154d3756-20220414-232758.mp4\r\n10.0_020_cheeky-cornflower-setter-12c743997864-20220421-094915.mp4 10.0_2938_shabby-viridian-beaver-9f89fe9f64dc-20220416-164732.mp4\r\n10.0_021_cheeky-cornflower-setter-12c743997864-20220421-095421.mp4 10.0_2939_shabby-viridian-beaver-a13b46374df6-20220416-201436.mp4\r\n10.0_022_cheeky-cornflower-setter-12c743997864-20220421-095927.mp4 10.0_293_cheeky-cornflower-setter-a9389e9fbaa7-20220415-115450.mp4\r\n10.0_023_cheeky-cornflower-setter-16ba410524b0-20220422-164119.mp4 10.0_2940_shabby-viridian-beaver-a13b46374df6-20220416-201938.mp4\r\n10.0_024_cheeky-cornflower-setter-16ba410524b0-20220422-164627.mp4 10.0_2941_shabby-viridian-beaver-a5507780a678-20220419-154939.mp4\r\n10.0_025_cheeky-cornflower-setter-176978c155fd-20220423-170106.mp4 10.0_2942_shabby-viridian-beaver-a5507780a678-20220419-155437.mp4\r\n10.0_026_cheeky-cornflower-setter-176978c155fd-20220423-170615.mp4 10.0_2943_shabby-viridian-beaver-a5507780a678-20220419-155936.mp4\r\n10.0_027_cheeky-cornflower-setter-176978c155fd-20220423-171127.mp4 10.0_2944_shabby-viridian-beaver-a5507780a678-20220419-160434.mp4\r\n10.0_028_cheeky-cornflower-setter-176978c155fd-20220423-171635.mp4 10.0_2945_shabby-viridian-beaver-a7083c83103d-20220416-145844.mp4\r\n10.0_029_cheeky-cornflower-setter-17827639bd19-20220421-171653.mp4 10.0_2946_shabby-viridian-beaver-a7083c83103d-20220416-150343.mp4\r\n10.0_030_cheeky-cornflower-setter-17827639bd19-20220421-172815.mp4 10.0_2947_shabby-viridian-beaver-a7083c83103d-20220416-150841.mp4\r\n10.0_031_cheeky-cornflower-setter-181b0454f4f4-20220414-130924.mp4 10.0_2948_shabby-viridian-beaver-a7083c83103d-20220416-151339.mp4\r\n10.0_032_cheeky-cornflower-setter-181b0454f4f4-20220414-131435.mp4 10.0_2949_shabby-viridian-beaver-a7083c83103d-20220416-151837.mp4\r\n10.0_033_cheeky-cornflower-setter-181b0454f4f4-20220414-132008.mp4 10.0_294_cheeky-cornflower-setter-a9389e9fbaa7-20220415-120002.mp4\r\n10.0_034_cheeky-cornflower-setter-1931b8e22571-20220415-175444.mp4 10.0_2950_shabby-viridian-beaver-a984fb2faaba-20220422-172302.mp4\r\n10.0_035_cheeky-cornflower-setter-1931b8e22571-20220415-175952.mp4 10.0_2951_shabby-viridian-beaver-a984fb2faaba-20220422-172800.mp4\r\n10.0_036_cheeky-cornflower-setter-1931b8e22571-20220415-180459.mp4 10.0_2952_shabby-viridian-beaver-a984fb2faaba-20220422-173258.mp4\r\n10.0_037_cheeky-cornflower-setter-1931b8e22571-20220415-181006.mp4 10.0_2953_shabby-viridian-beaver-a984fb2faaba-20220422-173756.mp4\r\n10.0_038_cheeky-cornflower-setter-197c48bc8410-20220418-202601.mp4 10.0_2954_shabby-viridian-beaver-a984fb2faaba-20220422-174254.mp4\r\n10.0_039_cheeky-cornflower-setter-197c48bc8410-20220418-203109.mp4 10.0_2955_shabby-viridian-beaver-ab3623c51ba5-20220421-234228.mp4\r\n10.0_040_cheeky-cornflower-setter-197c48bc8410-20220418-203615.mp4 10.0_2956_shabby-viridian-beaver-ab3623c51ba5-20220421-234727.mp4\r\n10.0_041_cheeky-cornflower-setter-197c48bc8410-20220418-204120.mp4 10.0_2957_shabby-viridian-beaver-ab3623c51ba5-20220421-235226.mp4\r\n10.0_042_cheeky-cornflower-setter-1d6469cf1ed4-20220421-150148.mp4 10.0_2958_shabby-viridian-beaver-aed0f89b8e7b-20220421-133225.mp4\r\n10.0_043_cheeky-cornflower-setter-1d6469cf1ed4-20220421-151142.mp4 10.0_2959_shabby-viridian-beaver-aed0f89b8e7b-20220421-133725.mp4\r\n10.0_044_cheeky-cornflower-setter-1d6469cf1ed4-20220421-152035.mp4 10.0_295_cheeky-cornflower-setter-a96ba7af6501-20220415-130410.mp4\r\n10.0_045_cheeky-cornflower-setter-1e6d6a927704-20220421-222712.mp4 10.0_2960_shabby-viridian-beaver-aed0f89b8e7b-20220421-134227.mp4\r\n10.0_046_cheeky-cornflower-setter-20ce2340fa61-20220422-193319.mp4 10.0_2961_shabby-viridian-beaver-aed0f89b8e7b-20220421-134833.mp4\r\n10.0_047_cheeky-cornflower-setter-22bbc5451fc6-20220423-234543.mp4 10.0_2962_shabby-viridian-beaver-afdd36f9755d-20220422-181800.mp4\r\n10.0_048_cheeky-cornflower-setter-22bbc5451fc6-20220423-235051.mp4 10.0_2963_shabby-viridian-beaver-afdd36f9755d-20220422-182258.mp4\r\n10.0_049_cheeky-cornflower-setter-22bbc5451fc6-20220423-235558.mp4 10.0_2964_shabby-viridian-beaver-afdd36f9755d-20220422-182756.mp4\r\n10.0_050_cheeky-cornflower-setter-252cc4423611-20220415-093732.mp4 10.0_2965_shabby-viridian-beaver-afdd36f9755d-20220422-183254.mp4\r\n10.0_051_cheeky-cornflower-setter-252cc4423611-20220415-094244.mp4 10.0_2966_shabby-viridian-beaver-afdd36f9755d-20220422-183752.mp4\r\n10.0_052_cheeky-cornflower-setter-252cc4423611-20220415-094759.mp4 10.0_2967_shabby-viridian-beaver-b064d8e1dc68-20220417-011815.mp4\r\n10.0_053_cheeky-cornflower-setter-252cc4423611-20220415-095306.mp4 10.0_2968_shabby-viridian-beaver-b064d8e1dc68-20220417-012315.mp4\r\n10.0_054_cheeky-cornflower-setter-26364ef97db4-20220414-135515.mp4 10.0_2969_shabby-viridian-beaver-b064d8e1dc68-20220417-012813.mp4\r\n10.0_055_cheeky-cornflower-setter-26364ef97db4-20220414-140227.mp4 10.0_296_cheeky-cornflower-setter-aa25537c8104-20220417-222246.mp4\r\n10.0_056_cheeky-cornflower-setter-26364ef97db4-20220414-140802.mp4 10.0_2970_shabby-viridian-beaver-b4b0df4b10d5-20220416-173638.mp4\r\n10.0_057_cheeky-cornflower-setter-26364ef97db4-20220414-141309.mp4 10.0_2971_shabby-viridian-beaver-b4b0df4b10d5-20220416-174136.mp4\r\n10.0_058_cheeky-cornflower-setter-2656cd13f4b9-20220421-195821.mp4 10.0_2972_shabby-viridian-beaver-b4b0df4b10d5-20220416-174634.mp4\r\n10.0_059_cheeky-cornflower-setter-2656cd13f4b9-20220421-200328.mp4 10.0_2973_shabby-viridian-beaver-b4b0df4b10d5-20220416-175132.mp4\r\n10.0_060_cheeky-cornflower-setter-2656cd13f4b9-20220421-200834.mp4 10.0_2974_shabby-viridian-beaver-b4b0df4b10d5-20220416-175630.mp4\r\n10.0_061_cheeky-cornflower-setter-272c5c5ac644-20220422-212427.mp4 10.0_2975_shabby-viridian-beaver-b54066467270-20220422-213356.mp4\r\n10.0_062_cheeky-cornflower-setter-272c5c5ac644-20220422-213359.mp4 10.0_2976_shabby-viridian-beaver-b54066467270-20220422-213855.mp4\r\n10.0_063_cheeky-cornflower-setter-281e7c31fca8-20220414-161230.mp4 10.0_2977_shabby-viridian-beaver-b54066467270-20220422-214355.mp4\r\n10.0_064_cheeky-cornflower-setter-281e7c31fca8-20220414-161738.mp4 10.0_2978_shabby-viridian-beaver-b54066467270-20220422-214856.mp4\r\n10.0_065_cheeky-cornflower-setter-281e7c31fca8-20220414-162243.mp4 10.0_2979_shabby-viridian-beaver-b6693c992e74-20220420-182533.mp4\r\n10.0_066_cheeky-cornflower-setter-281e7c31fca8-20220414-162750.mp4 10.0_297_cheeky-cornflower-setter-aa25537c8104-20220417-222802.mp4\r\n10.0_067_cheeky-cornflower-setter-288fa74a3fc8-20220417-184116.mp4 10.0_2980_shabby-viridian-beaver-b6693c992e74-20220420-183054.mp4\r\n10.0_068_cheeky-cornflower-setter-288fa74a3fc8-20220417-184628.mp4 10.0_2981_shabby-viridian-beaver-b6693c992e74-20220420-183554.mp4\r\n10.0_069_cheeky-cornflower-setter-288fa74a3fc8-20220417-185134.mp4 10.0_2982_shabby-viridian-beaver-b6693c992e74-20220420-184054.mp4\r\n10.0_070_cheeky-cornflower-setter-288fa74a3fc8-20220417-185640.mp4 10.0_2983_shabby-viridian-beaver-b6f1e3ddce83-20220417-185824.mp4\r\n10.0_071_cheeky-cornflower-setter-2bfe8ff50d8e-20220421-155039.mp4 10.0_2984_shabby-viridian-beaver-b6f1e3ddce83-20220417-190322.mp4\r\n10.0_072_cheeky-cornflower-setter-2d2c4899a6cd-20220418-200110.mp4 10.0_2985_shabby-viridian-beaver-b6f1e3ddce83-20220417-190820.mp4\r\n10.0_073_cheeky-cornflower-setter-2d2c4899a6cd-20220418-200620.mp4 10.0_2986_shabby-viridian-beaver-b6f1e3ddce83-20220417-191318.mp4\r\n10.0_074_cheeky-cornflower-setter-2d2c4899a6cd-20220418-201126.mp4 10.0_2987_shabby-viridian-beaver-b8f84f80381d-20220416-192722.mp4\r\n10.0_075_cheeky-cornflower-setter-2d2c4899a6cd-20220418-201632.mp4 10.0_2988_shabby-viridian-beaver-bb505e62deea-20220421-172117.mp4\r\n10.0_076_cheeky-cornflower-setter-2d2c4899a6cd-20220418-202137.mp4 10.0_2989_shabby-viridian-beaver-bb505e62deea-20220421-172615.mp4\r\n10.0_077_cheeky-cornflower-setter-2e243327430e-20220416-114203.mp4 10.0_298_cheeky-cornflower-setter-aa25537c8104-20220417-223309.mp4\r\n10.0_078_cheeky-cornflower-setter-2e243327430e-20220416-114714.mp4 10.0_2990_shabby-viridian-beaver-bb505e62deea-20220421-173113.mp4\r\n10.0_079_cheeky-cornflower-setter-2e5442b10f7b-20220423-213954.mp4 10.0_2991_shabby-viridian-beaver-bb505e62deea-20220421-173612.mp4\r\n10.0_080_cheeky-cornflower-setter-2e5442b10f7b-20220423-215003.mp4 10.0_2992_shabby-viridian-beaver-bb505e62deea-20220421-174109.mp4\r\n10.0_081_cheeky-cornflower-setter-3174e27044c4-20220421-173930.mp4 10.0_2993_shabby-viridian-beaver-c07b4afc04b6-20220417-164606.mp4\r\n10.0_082_cheeky-cornflower-setter-3174e27044c4-20220421-175046.mp4 10.0_2994_shabby-viridian-beaver-c0e469e7c4d4-20220417-221837.mp4\r\n10.0_083_cheeky-cornflower-setter-3a8b5114df50-20220416-104717.mp4 10.0_2995_shabby-viridian-beaver-c0e469e7c4d4-20220417-222336.mp4\r\n10.0_084_cheeky-cornflower-setter-3a8b5114df50-20220416-105225.mp4 10.0_2996_shabby-viridian-beaver-c0e469e7c4d4-20220417-222835.mp4\r\n10.0_085_cheeky-cornflower-setter-3a8b5114df50-20220416-105732.mp4 10.0_2997_shabby-viridian-beaver-c0e469e7c4d4-20220417-223341.mp4\r\n10.0_086_cheeky-cornflower-setter-3a8b5114df50-20220416-110237.mp4 10.0_2998_shabby-viridian-beaver-c1d96290b039-20220416-163931.mp4\r\n10.0_087_cheeky-cornflower-setter-3d5544d0b9a4-20220414-213305.mp4 10.0_2999_shabby-viridian-beaver-c31aa22a7f33-20220422-233343.mp4\r\n10.0_088_cheeky-cornflower-setter-3d5544d0b9a4-20220414-213813.mp4 10.0_299_cheeky-cornflower-setter-aa25537c8104-20220417-223815.mp4\r\n10.0_089_cheeky-cornflower-setter-3d5544d0b9a4-20220414-214319.mp4 10.0_3000_shabby-viridian-beaver-c31aa22a7f33-20220422-233843.mp4\r\n10.0_090_cheeky-cornflower-setter-3d5544d0b9a4-20220414-214825.mp4 10.0_3001_shabby-viridian-beaver-c31aa22a7f33-20220422-234342.mp4\r\n10.0_091_cheeky-cornflower-setter-3ef2fda79f91-20220415-195339.mp4 10.0_3002_shabby-viridian-beaver-c3df7dcc66a5-20220417-232423.mp4\r\n10.0_092_cheeky-cornflower-setter-416482eef705-20220421-093541.mp4 10.0_3003_shabby-viridian-beaver-c505dd8ce14d-20220416-195350.mp4\r\n10.0_093_cheeky-cornflower-setter-438b99d2ddf9-20220414-145012.mp4 10.0_3004_shabby-viridian-beaver-c505dd8ce14d-20220416-195849.mp4\r\n10.0_094_cheeky-cornflower-setter-438b99d2ddf9-20220414-145519.mp4 10.0_3005_shabby-viridian-beaver-c505dd8ce14d-20220416-200351.mp4\r\n10.0_095_cheeky-cornflower-setter-43a8b07d6bad-20220423-094036.mp4 10.0_3006_shabby-viridian-beaver-c505dd8ce14d-20220416-200852.mp4\r\n10.0_096_cheeky-cornflower-setter-43a8b07d6bad-20220423-095122.mp4 10.0_3007_shabby-viridian-beaver-c505dd8ce14d-20220416-201357.mp4\r\n10.0_097_cheeky-cornflower-setter-46070b828653-20220422-184520.mp4 10.0_3008_shabby-viridian-beaver-c6206c7bb31a-20220414-210557.mp4\r\n10.0_098_cheeky-cornflower-setter-46070b828653-20220422-185028.mp4 10.0_3009_shabby-viridian-beaver-c6206c7bb31a-20220414-211056.mp4\r\n10.0_099_cheeky-cornflower-setter-46070b828653-20220422-185538.mp4 10.0_300_cheeky-cornflower-setter-ab2c749a1b63-20220414-211228.mp4\r\n10.0_1000_gimpy-jade-panda-e6e54e4bb98a-20220423-162154.mp4 10.0_3010_shabby-viridian-beaver-c6206c7bb31a-20220414-211602.mp4\r\n10.0_1001_gimpy-jade-panda-e6e54e4bb98a-20220423-162709.mp4 10.0_3011_shabby-viridian-beaver-c6206c7bb31a-20220414-212100.mp4\r\n10.0_1002_gimpy-jade-panda-e6e54e4bb98a-20220423-163326.mp4 10.0_3012_shabby-viridian-beaver-c6206c7bb31a-20220414-212601.mp4\r\n10.0_1003_gimpy-jade-panda-e6e54e4bb98a-20220423-163823.mp4 10.0_3013_shabby-viridian-beaver-c853d01608f2-20220421-182832.mp4\r\n10.0_1004_gimpy-jade-panda-ea75b587987a-20220419-195251.mp4 10.0_3014_shabby-viridian-beaver-c853d01608f2-20220421-183331.mp4\r\n10.0_1005_gimpy-jade-panda-eaab8e99b47f-20220423-123148.mp4 10.0_3015_shabby-viridian-beaver-c853d01608f2-20220421-183836.mp4\r\n10.0_1006_gimpy-jade-panda-eaab8e99b47f-20220423-123712.mp4 10.0_3016_shabby-viridian-beaver-c853d01608f2-20220421-184334.mp4\r\n10.0_1007_gimpy-jade-panda-eb195871bda7-20220415-020304.mp4 10.0_3017_shabby-viridian-beaver-c853d01608f2-20220421-184835.mp4\r\n10.0_1008_gimpy-jade-panda-eb195871bda7-20220415-020807.mp4 10.0_3018_shabby-viridian-beaver-c9d6123fcc72-20220416-175656.mp4\r\n10.0_1009_gimpy-jade-panda-eb195871bda7-20220415-021333.mp4 10.0_3019_shabby-viridian-beaver-c9d6123fcc72-20220416-180154.mp4\r\n10.0_100_cheeky-cornflower-setter-46070b828653-20220422-190134.mp4 10.0_301_cheeky-cornflower-setter-ab2c749a1b63-20220414-211737.mp4\r\n10.0_1010_gimpy-jade-panda-eb195871bda7-20220415-021830.mp4 10.0_3020_shabby-viridian-beaver-c9d6123fcc72-20220416-180652.mp4\r\n10.0_1011_gimpy-jade-panda-ec818f707c1c-20220416-110111.mp4 10.0_3021_shabby-viridian-beaver-c9d6123fcc72-20220416-181150.mp4\r\n10.0_1012_gimpy-jade-panda-ec818f707c1c-20220416-110609.mp4 10.0_3022_shabby-viridian-beaver-c9d6123fcc72-20220416-181648.mp4\r\n10.0_1013_gimpy-jade-panda-eda8724b1df3-20220423-084717.mp4 10.0_3023_shabby-viridian-beaver-ca15fff793b0-20220416-214257.mp4\r\n10.0_1014_gimpy-jade-panda-eda8724b1df3-20220423-085215.mp4 10.0_3024_shabby-viridian-beaver-ca15fff793b0-20220416-214755.mp4\r\n10.0_1015_gimpy-jade-panda-eda8724b1df3-20220423-085842.mp4 10.0_3025_shabby-viridian-beaver-ca15fff793b0-20220416-215254.mp4\r\n10.0_1016_gimpy-jade-panda-f153ac423f61-20220413-190453.mp4 10.0_3026_shabby-viridian-beaver-ca15fff793b0-20220416-215752.mp4\r\n10.0_1017_gimpy-jade-panda-f153ac423f61-20220413-191008.mp4 10.0_3027_shabby-viridian-beaver-ca15fff793b0-20220416-220250.mp4\r\n10.0_1018_gimpy-jade-panda-f153ac423f61-20220413-191506.mp4 10.0_3028_shabby-viridian-beaver-cf3db8bfd5db-20220420-154621.mp4\r\n10.0_1019_gimpy-jade-panda-f153ac423f61-20220413-192004.mp4 10.0_3029_shabby-viridian-beaver-cf3db8bfd5db-20220420-155121.mp4\r\n10.0_101_cheeky-cornflower-setter-481edbebfb75-20220423-111033.mp4 10.0_302_cheeky-cornflower-setter-ab2c749a1b63-20220414-212243.mp4\r\n10.0_1020_gimpy-jade-panda-f153ac423f61-20220413-224027.mp4 10.0_3030_shabby-viridian-beaver-cf3db8bfd5db-20220420-155620.mp4\r\n10.0_1021_gimpy-jade-panda-f153ac423f61-20220413-224610.mp4 10.0_3031_shabby-viridian-beaver-cf3db8bfd5db-20220420-160119.mp4\r\n10.0_1022_gimpy-jade-panda-f153ac423f61-20220414-004420.mp4 10.0_3032_shabby-viridian-beaver-cf3db8bfd5db-20220420-160618.mp4\r\n10.0_1023_gimpy-jade-panda-f153ac423f61-20220414-004921.mp4 10.0_3033_shabby-viridian-beaver-cfb07e8db714-20220421-014021.mp4\r\n10.0_1024_gimpy-jade-panda-f153ac423f61-20220414-071604.mp4 10.0_3034_shabby-viridian-beaver-cfb07e8db714-20220421-014526.mp4\r\n10.0_1025_gimpy-jade-panda-f153ac423f61-20220414-103340.mp4 10.0_3035_shabby-viridian-beaver-cfb07e8db714-20220421-015533.mp4\r\n10.0_1026_gimpy-jade-panda-f153ac423f61-20220414-103843.mp4 10.0_3036_shabby-viridian-beaver-d1f59d83182c-20220419-233012.mp4\r\n10.0_1027_gimpy-jade-panda-f153ac423f61-20220414-134222.mp4 10.0_3037_shabby-viridian-beaver-d1f59d83182c-20220419-233624.mp4\r\n10.0_1028_gimpy-jade-panda-f153ac423f61-20220415-015339.mp4 10.0_3038_shabby-viridian-beaver-d1f59d83182c-20220419-234124.mp4\r\n10.0_1029_gimpy-jade-panda-f153ac423f61-20220415-015844.mp4 10.0_3039_shabby-viridian-beaver-d2b910a8df5e-20220419-190633.mp4\r\n10.0_102_cheeky-cornflower-setter-481edbebfb75-20220423-112718.mp4 10.0_303_cheeky-cornflower-setter-ab2c749a1b63-20220414-212749.mp4\r\n10.0_1030_gimpy-jade-panda-f153ac423f61-20220415-073150.mp4 10.0_3040_shabby-viridian-beaver-d2b910a8df5e-20220419-191132.mp4\r\n10.0_1031_gimpy-jade-panda-f153ac423f61-20220415-073832.mp4 10.0_3041_shabby-viridian-beaver-d343e462eab1-20220421-152626.mp4\r\n10.0_1032_gimpy-jade-panda-f153ac423f61-20220415-091830.mp4 10.0_3042_shabby-viridian-beaver-d343e462eab1-20220421-153126.mp4\r\n10.0_1033_gimpy-jade-panda-f153ac423f61-20220415-092332.mp4 10.0_3043_shabby-viridian-beaver-d343e462eab1-20220421-153627.mp4\r\n10.0_1034_gimpy-jade-panda-f153ac423f61-20220415-093314.mp4 10.0_3044_shabby-viridian-beaver-d343e462eab1-20220421-154128.mp4\r\n10.0_1035_gimpy-jade-panda-f153ac423f61-20220415-093821.mp4 10.0_3045_shabby-viridian-beaver-d4a305d66731-20220422-184029.mp4\r\n10.0_1036_gimpy-jade-panda-f153ac423f61-20220415-112013.mp4 10.0_3046_shabby-viridian-beaver-d4a305d66731-20220422-184530.mp4\r\n10.0_1037_gimpy-jade-panda-f153ac423f61-20220415-112522.mp4 10.0_3047_shabby-viridian-beaver-d4a305d66731-20220422-185029.mp4\r\n10.0_1038_gimpy-jade-panda-f153ac423f61-20220415-155006.mp4 10.0_3048_shabby-viridian-beaver-d4fce6feadea-20220417-171341.mp4\r\n10.0_1039_gimpy-jade-panda-f153ac423f61-20220415-155506.mp4 10.0_3049_shabby-viridian-beaver-d4fce6feadea-20220417-171839.mp4\r\n10.0_103_cheeky-cornflower-setter-481edbebfb75-20220423-113629.mp4 10.0_304_cheeky-cornflower-setter-ab54b635f00b-20220422-164714.mp4\r\n10.0_1040_gimpy-jade-panda-f153ac423f61-20220416-063647.mp4 10.0_3050_shabby-viridian-beaver-d4fce6feadea-20220417-172338.mp4\r\n10.0_1041_gimpy-jade-panda-f153ac423f61-20220416-064256.mp4 10.0_3051_shabby-viridian-beaver-d4fce6feadea-20220417-172836.mp4\r\n10.0_1042_gimpy-jade-panda-f153ac423f61-20220416-064842.mp4 10.0_3052_shabby-viridian-beaver-d5b2f0b06c76-20220416-142058.mp4\r\n10.0_1043_gimpy-jade-panda-f153ac423f61-20220416-065426.mp4 10.0_3053_shabby-viridian-beaver-d5b2f0b06c76-20220416-142605.mp4\r\n10.0_1044_gimpy-jade-panda-f153ac423f61-20220416-084353.mp4 10.0_3054_shabby-viridian-beaver-d5b2f0b06c76-20220416-143325.mp4\r\n10.0_1045_gimpy-jade-panda-f153ac423f61-20220416-092719.mp4 10.0_3055_shabby-viridian-beaver-d5b2f0b06c76-20220416-143824.mp4\r\n10.0_1046_gimpy-jade-panda-f153ac423f61-20220416-093222.mp4 10.0_3056_shabby-viridian-beaver-d5b2f0b06c76-20220416-144323.mp4\r\n10.0_1047_gimpy-jade-panda-f153ac423f61-20220416-104735.mp4 10.0_3057_shabby-viridian-beaver-d617ee418e62-20220419-180545.mp4\r\n10.0_1048_gimpy-jade-panda-f153ac423f61-20220416-105417.mp4 10.0_3058_shabby-viridian-beaver-d617ee418e62-20220419-181043.mp4\r\n10.0_1049_gimpy-jade-panda-f153ac423f61-20220416-111833.mp4 10.0_3059_shabby-viridian-beaver-d617ee418e62-20220419-181541.mp4\r\n10.0_104_cheeky-cornflower-setter-48407103b7d6-20220417-153305.mp4 10.0_305_cheeky-cornflower-setter-ab54b635f00b-20220422-165221.mp4\r\n10.0_1050_gimpy-jade-panda-f153ac423f61-20220416-112334.mp4 10.0_3060_shabby-viridian-beaver-d617ee418e62-20220419-182039.mp4\r\n10.0_1051_gimpy-jade-panda-f153ac423f61-20220416-133235.mp4 10.0_3061_shabby-viridian-beaver-d617ee418e62-20220419-182537.mp4\r\n10.0_1052_gimpy-jade-panda-f153ac423f61-20220416-133812.mp4 10.0_3062_shabby-viridian-beaver-d7cea060d9ee-20220417-223835.mp4\r\n10.0_1053_gimpy-jade-panda-f153ac423f61-20220416-134311.mp4 10.0_3063_shabby-viridian-beaver-d7cea060d9ee-20220417-224334.mp4\r\n10.0_1054_gimpy-jade-panda-f153ac423f61-20220416-163542.mp4 10.0_3064_shabby-viridian-beaver-d7cea060d9ee-20220417-224834.mp4\r\n10.0_1055_gimpy-jade-panda-f153ac423f61-20220416-164214.mp4 10.0_3065_shabby-viridian-beaver-d7cea060d9ee-20220417-225332.mp4\r\n10.0_1056_gimpy-jade-panda-f153ac423f61-20220416-164712.mp4 10.0_3066_shabby-viridian-beaver-da94ac4ba2f2-20220419-221114.mp4\r\n10.0_1057_gimpy-jade-panda-f153ac423f61-20220416-181209.mp4 10.0_3067_shabby-viridian-beaver-da94ac4ba2f2-20220419-221614.mp4\r\n10.0_1058_gimpy-jade-panda-f153ac423f61-20220416-181755.mp4 10.0_3068_shabby-viridian-beaver-da94ac4ba2f2-20220419-222117.mp4\r\n10.0_1059_gimpy-jade-panda-f153ac423f61-20220416-183811.mp4 10.0_3069_shabby-viridian-beaver-da94ac4ba2f2-20220419-222625.mp4\r\n10.0_105_cheeky-cornflower-setter-48407103b7d6-20220417-153859.mp4 10.0_306_cheeky-cornflower-setter-ab54b635f00b-20220422-165727.mp4\r\n10.0_1060_gimpy-jade-panda-f153ac423f61-20220416-212555.mp4 10.0_3070_shabby-viridian-beaver-db517f92ebf2-20220416-221212.mp4\r\n10.0_1061_gimpy-jade-panda-f153ac423f61-20220416-225949.mp4 10.0_3071_shabby-viridian-beaver-db9bfe2519e6-20220417-232348.mp4\r\n10.0_1062_gimpy-jade-panda-f153ac423f61-20220416-230552.mp4 10.0_3072_shabby-viridian-beaver-dd0bbb21491a-20220419-185442.mp4\r\n10.0_1063_gimpy-jade-panda-f153ac423f61-20220416-231049.mp4 10.0_3073_shabby-viridian-beaver-dd0bbb21491a-20220419-185940.mp4\r\n10.0_1064_gimpy-jade-panda-f153ac423f61-20220417-052410.mp4 10.0_3074_shabby-viridian-beaver-dd0bbb21491a-20220419-190439.mp4\r\n10.0_1065_gimpy-jade-panda-f153ac423f61-20220417-052921.mp4 10.0_3075_shabby-viridian-beaver-dd1317050544-20220416-163045.mp4\r\n10.0_1066_gimpy-jade-panda-f153ac423f61-20220417-053419.mp4 10.0_3076_shabby-viridian-beaver-dd1317050544-20220416-163544.mp4\r\n10.0_1067_gimpy-jade-panda-f153ac423f61-20220417-071007.mp4 10.0_3077_shabby-viridian-beaver-e1ff4a8c1142-20220424-014826.mp4\r\n10.0_1068_gimpy-jade-panda-f153ac423f61-20220417-071955.mp4 10.0_3078_shabby-viridian-beaver-e1ff4a8c1142-20220424-015324.mp4\r\n10.0_1069_gimpy-jade-panda-f153ac423f61-20220417-072601.mp4 10.0_3079_shabby-viridian-beaver-e1ff4a8c1142-20220424-015822.mp4\r\n10.0_106_cheeky-cornflower-setter-4a5cd44ff498-20220419-153320.mp4 10.0_307_cheeky-cornflower-setter-ab6bc00f251c-20220421-004038.mp4\r\n10.0_1070_gimpy-jade-panda-f153ac423f61-20220417-084844.mp4 10.0_3080_shabby-viridian-beaver-e1ff4a8c1142-20220424-020320.mp4\r\n10.0_1071_gimpy-jade-panda-f153ac423f61-20220417-085606.mp4 10.0_3081_shabby-viridian-beaver-e1ff4a8c1142-20220424-020818.mp4\r\n10.0_1072_gimpy-jade-panda-f153ac423f61-20220417-102417.mp4 10.0_3082_shabby-viridian-beaver-e54ed14ed7be-20220417-180438.mp4\r\n10.0_1073_gimpy-jade-panda-f153ac423f61-20220417-102921.mp4 10.0_3083_shabby-viridian-beaver-e54ed14ed7be-20220417-180937.mp4\r\n10.0_1074_gimpy-jade-panda-f153ac423f61-20220417-122643.mp4 10.0_3084_shabby-viridian-beaver-e54ed14ed7be-20220417-181436.mp4\r\n10.0_1075_gimpy-jade-panda-f153ac423f61-20220417-123258.mp4 10.0_3085_shabby-viridian-beaver-e6dd9e39eac7-20220416-221630.mp4\r\n10.0_1076_gimpy-jade-panda-f153ac423f61-20220417-123928.mp4 10.0_3086_shabby-viridian-beaver-e6dd9e39eac7-20220416-222129.mp4\r\n10.0_1077_gimpy-jade-panda-f153ac423f61-20220417-124427.mp4 10.0_3087_shabby-viridian-beaver-e93be360fa26-20220422-190703.mp4\r\n10.0_1078_gimpy-jade-panda-f153ac423f61-20220417-124925.mp4 10.0_3088_shabby-viridian-beaver-e93be360fa26-20220422-191201.mp4\r\n10.0_1079_gimpy-jade-panda-f153ac423f61-20220417-164818.mp4 10.0_3089_shabby-viridian-beaver-e93be360fa26-20220422-191659.mp4\r\n10.0_107_cheeky-cornflower-setter-4a5cd44ff498-20220419-153826.mp4 10.0_308_cheeky-cornflower-setter-ab6bc00f251c-20220421-004554.mp4\r\n10.0_1080_gimpy-jade-panda-f153ac423f61-20220417-165400.mp4 10.0_3090_shabby-viridian-beaver-e93be360fa26-20220422-192157.mp4\r\n10.0_1081_gimpy-jade-panda-f153ac423f61-20220417-165858.mp4 10.0_3091_shabby-viridian-beaver-ea29fb5e1692-20220417-151037.mp4\r\n10.0_1082_gimpy-jade-panda-f153ac423f61-20220417-170405.mp4 10.0_3092_shabby-viridian-beaver-ea29fb5e1692-20220417-151539.mp4\r\n10.0_1083_gimpy-jade-panda-f153ac423f61-20220419-184750.mp4 10.0_3093_shabby-viridian-beaver-eb12a3cf93ac-20220422-215249.mp4\r\n10.0_1084_gimpy-jade-panda-f153ac423f61-20220419-185256.mp4 10.0_3094_shabby-viridian-beaver-eb12a3cf93ac-20220422-215747.mp4\r\n10.0_1085_gimpy-jade-panda-f153ac423f61-20220419-185905.mp4 10.0_3095_shabby-viridian-beaver-eb12a3cf93ac-20220422-220245.mp4\r\n10.0_1086_gimpy-jade-panda-f153ac423f61-20220419-221151.mp4 10.0_3096_shabby-viridian-beaver-eb12a3cf93ac-20220422-220743.mp4\r\n10.0_1087_gimpy-jade-panda-f153ac423f61-20220420-161420.mp4 10.0_3097_shabby-viridian-beaver-eb23358b091d-20220421-143554.mp4\r\n10.0_1088_gimpy-jade-panda-f153ac423f61-20220420-161923.mp4 10.0_3098_shabby-viridian-beaver-eb23358b091d-20220421-144053.mp4\r\n10.0_1089_gimpy-jade-panda-f153ac423f61-20220420-190241.mp4 10.0_3099_shabby-viridian-beaver-eb23358b091d-20220421-144551.mp4\r\n10.0_108_cheeky-cornflower-setter-4c19fa9f69c7-20220415-195243.mp4 10.0_309_cheeky-cornflower-setter-ab6bc00f251c-20220421-005100.mp4\r\n10.0_1090_gimpy-jade-panda-f153ac423f61-20220420-190724.mp4 10.0_3100_shabby-viridian-beaver-eb23358b091d-20220421-145049.mp4\r\n10.0_1091_gimpy-jade-panda-f153ac423f61-20220420-191226.mp4 10.0_3101_shabby-viridian-beaver-eb23358b091d-20220421-145546.mp4\r\n10.0_1092_gimpy-jade-panda-f153ac423f61-20220420-191844.mp4 10.0_3102_shabby-viridian-beaver-ecec37d84616-20220421-154621.mp4\r\n10.0_1093_gimpy-jade-panda-f153ac423f61-20220421-205555.mp4 10.0_3103_shabby-viridian-beaver-ecec37d84616-20220421-155119.mp4\r\n10.0_1094_gimpy-jade-panda-f153ac423f61-20220421-210055.mp4 10.0_3104_shabby-viridian-beaver-ecec37d84616-20220421-155618.mp4\r\n10.0_1095_gimpy-jade-panda-f153ac423f61-20220421-210607.mp4 10.0_3105_shabby-viridian-beaver-edf2db7c6a6e-20220421-160641.mp4\r\n10.0_1096_gimpy-jade-panda-f153ac423f61-20220421-213019.mp4 10.0_3106_shabby-viridian-beaver-edf2db7c6a6e-20220421-161140.mp4\r\n10.0_1097_gimpy-jade-panda-f153ac423f61-20220421-213521.mp4 10.0_3107_shabby-viridian-beaver-edf2db7c6a6e-20220421-161638.mp4\r\n10.0_1098_gimpy-jade-panda-f153ac423f61-20220421-214126.mp4 10.0_3108_shabby-viridian-beaver-edf2db7c6a6e-20220421-162136.mp4\r\n10.0_1099_gimpy-jade-panda-f153ac423f61-20220422-195226.mp4 10.0_3109_shabby-viridian-beaver-edf2db7c6a6e-20220421-162634.mp4\r\n10.0_109_cheeky-cornflower-setter-4cf439b98bb9-20220417-114931.mp4 10.0_310_cheeky-cornflower-setter-ab6bc00f251c-20220421-005609.mp4\r\n10.0_1100_gimpy-jade-panda-f153ac423f61-20220422-195727.mp4 10.0_3110_shabby-viridian-beaver-eec55d8880d0-20220419-235111.mp4\r\n10.0_1101_gimpy-jade-panda-f153ac423f61-20220422-200225.mp4 10.0_3111_shabby-viridian-beaver-eec55d8880d0-20220419-235612.mp4\r\n10.0_1102_gimpy-jade-panda-f153ac423f61-20220423-062112.mp4 10.0_3112_shabby-viridian-beaver-eec55d8880d0-20220420-000112.mp4\r\n10.0_1103_gimpy-jade-panda-f153ac423f61-20220423-062612.mp4 10.0_3113_shabby-viridian-beaver-eec55d8880d0-20220420-001113.mp4\r\n10.0_1104_gimpy-jade-panda-f153ac423f61-20220423-070110.mp4 10.0_3114_shabby-viridian-beaver-ef7aa39a12a5-20220415-165406.mp4\r\n10.0_1105_gimpy-jade-panda-f153ac423f61-20220423-070611.mp4 10.0_3115_shabby-viridian-beaver-ef7aa39a12a5-20220415-165904.mp4\r\n10.0_1106_gimpy-jade-panda-f153ac423f61-20220423-071109.mp4 10.0_3116_shabby-viridian-beaver-ef7aa39a12a5-20220415-170402.mp4\r\n10.0_1107_gimpy-jade-panda-f153ac423f61-20220423-082755.mp4 10.0_3117_shabby-viridian-beaver-f0d12becd2e5-20220415-174741.mp4\r\n10.0_1108_gimpy-jade-panda-f153ac423f61-20220423-083257.mp4 10.0_3118_shabby-viridian-beaver-f0d12becd2e5-20220415-175239.mp4\r\n10.0_1109_gimpy-jade-panda-f153ac423f61-20220423-083955.mp4 10.0_3119_shabby-viridian-beaver-f0d12becd2e5-20220415-175737.mp4\r\n10.0_110_cheeky-cornflower-setter-4cf439b98bb9-20220417-115441.mp4 10.0_311_cheeky-cornflower-setter-ac90fb8338ac-20220415-171357.mp4\r\n10.0_1110_gimpy-jade-panda-f153ac423f61-20220423-120630.mp4 10.0_3120_shabby-viridian-beaver-f0d12becd2e5-20220415-180235.mp4\r\n10.0_1111_gimpy-jade-panda-f153ac423f61-20220423-120733.mp4 10.0_3121_shabby-viridian-beaver-f153ac423f61-20220414-204520.mp4\r\n10.0_1112_gimpy-jade-panda-f153ac423f61-20220423-121234.mp4 10.0_3122_shabby-viridian-beaver-f153ac423f61-20220414-205023.mp4\r\n10.0_1113_gimpy-jade-panda-f153ac423f61-20220423-141118.mp4 10.0_3123_shabby-viridian-beaver-f153ac423f61-20220414-205522.mp4\r\n10.0_1114_gimpy-jade-panda-f153ac423f61-20220423-141619.mp4 10.0_3124_shabby-viridian-beaver-f153ac423f61-20220414-210025.mp4\r\n10.0_1115_gimpy-jade-panda-f153ac423f61-20220423-184312.mp4 10.0_3125_shabby-viridian-beaver-f153ac423f61-20220415-111832.mp4\r\n10.0_1116_gimpy-jade-panda-f265152f242d-20220423-124454.mp4 10.0_3126_shabby-viridian-beaver-f153ac423f61-20220415-112335.mp4\r\n10.0_1117_gimpy-jade-panda-f265152f242d-20220423-124953.mp4 10.0_3127_shabby-viridian-beaver-f153ac423f61-20220415-112841.mp4\r\n10.0_1118_gimpy-jade-panda-f4f28bb43dd8-20220419-200052.mp4 10.0_3128_shabby-viridian-beaver-f153ac423f61-20220415-151732.mp4\r\n10.0_1119_gimpy-jade-panda-f4f28bb43dd8-20220419-200550.mp4 10.0_3129_shabby-viridian-beaver-f153ac423f61-20220415-152237.mp4\r\n10.0_111_cheeky-cornflower-setter-4cf439b98bb9-20220417-115953.mp4 10.0_312_cheeky-cornflower-setter-ac90fb8338ac-20220415-171915.mp4\r\n10.0_1120_gimpy-jade-panda-f4f28bb43dd8-20220419-201048.mp4 10.0_3130_shabby-viridian-beaver-f153ac423f61-20220415-152737.mp4\r\n10.0_1121_gimpy-jade-panda-f4f28bb43dd8-20220419-201546.mp4 10.0_3131_shabby-viridian-beaver-f153ac423f61-20220415-153235.mp4\r\n10.0_1122_gimpy-jade-panda-f75d38595abb-20220414-005941.mp4 10.0_3132_shabby-viridian-beaver-f153ac423f61-20220415-153733.mp4\r\n10.0_1123_gimpy-jade-panda-f75d38595abb-20220414-010443.mp4 10.0_3133_shabby-viridian-beaver-f153ac423f61-20220415-154231.mp4\r\n10.0_1124_gimpy-jade-panda-f75d38595abb-20220414-010940.mp4 10.0_3134_shabby-viridian-beaver-f153ac423f61-20220415-155516.mp4\r\n10.0_1125_gimpy-jade-panda-f8cc588987aa-20220421-222752.mp4 10.0_3135_shabby-viridian-beaver-f153ac423f61-20220415-160015.mp4\r\n10.0_1126_gimpy-jade-panda-faea34b7e9e8-20220423-063401.mp4 10.0_3136_shabby-viridian-beaver-f153ac423f61-20220415-160513.mp4\r\n10.0_1127_gimpy-jade-panda-ffbdbf62a4ff-20220416-111504.mp4 10.0_3137_shabby-viridian-beaver-f153ac423f61-20220415-161011.mp4\r\n10.0_1128_gloppy-persimmon-ferret-f153ac423f61-20220420-161822.mp4 10.0_3138_shabby-viridian-beaver-f153ac423f61-20220415-161509.mp4\r\n10.0_1129_lanky-flax-dormouse-011aaabe97ae-20220422-174402.mp4 10.0_3139_shabby-viridian-beaver-f153ac423f61-20220415-170618.mp4\r\n10.0_112_cheeky-cornflower-setter-4f0508964551-20220421-132319.mp4 10.0_313_cheeky-cornflower-setter-acb518cb0f5f-20220414-175510.mp4\r\n10.0_1130_lanky-flax-dormouse-068b463e6850-20220422-174803.mp4 10.0_3140_shabby-viridian-beaver-f153ac423f61-20220415-171117.mp4\r\n10.0_1131_lanky-flax-dormouse-80468f377208-20220422-194904.mp4 10.0_3141_shabby-viridian-beaver-f153ac423f61-20220415-171616.mp4\r\n10.0_1132_lanky-flax-dormouse-80468f377208-20220422-195406.mp4 10.0_3142_shabby-viridian-beaver-f153ac423f61-20220415-172114.mp4\r\n10.0_1133_lanky-flax-dormouse-80468f377208-20220422-195908.mp4 10.0_3143_shabby-viridian-beaver-f153ac423f61-20220415-172611.mp4\r\n10.0_1134_lanky-flax-dormouse-93edcc99e448-20220422-190917.mp4 10.0_3144_shabby-viridian-beaver-f153ac423f61-20220415-222730.mp4\r\n10.0_1135_lanky-flax-dormouse-93edcc99e448-20220422-191418.mp4 10.0_3145_shabby-viridian-beaver-f153ac423f61-20220415-222837.mp4\r\n10.0_1136_lanky-flax-dormouse-93edcc99e448-20220422-191920.mp4 10.0_3146_shabby-viridian-beaver-f153ac423f61-20220415-223340.mp4\r\n10.0_1137_lanky-flax-dormouse-93edcc99e448-20220422-192422.mp4 10.0_3147_shabby-viridian-beaver-f153ac423f61-20220416-134017.mp4\r\n10.0_1138_lanky-flax-dormouse-93edcc99e448-20220422-192923.mp4 10.0_3148_shabby-viridian-beaver-f153ac423f61-20220416-134523.mp4\r\n10.0_1139_lanky-flax-dormouse-b2ec621154da-20220422-174056.mp4 10.0_3149_shabby-viridian-beaver-f153ac423f61-20220416-135022.mp4\r\n10.0_113_cheeky-cornflower-setter-4f0508964551-20220421-133351.mp4 10.0_314_cheeky-cornflower-setter-acb518cb0f5f-20220414-180018.mp4\r\n10.0_1140_lanky-flax-dormouse-dcd43ad3c854-20220422-181809.mp4 10.0_3150_shabby-viridian-beaver-f153ac423f61-20220416-135528.mp4\r\n10.0_1141_lanky-flax-dormouse-dcd43ad3c854-20220422-182315.mp4 10.0_3151_shabby-viridian-beaver-f153ac423f61-20220416-141348.mp4\r\n10.0_1142_lanky-flax-dormouse-dcd43ad3c854-20220422-182817.mp4 10.0_3152_shabby-viridian-beaver-f153ac423f61-20220416-143502.mp4\r\n10.0_1143_lanky-flax-dormouse-dcd43ad3c854-20220422-183318.mp4 10.0_3153_shabby-viridian-beaver-f153ac423f61-20220416-144001.mp4\r\n10.0_1144_lanky-flax-dormouse-f153ac423f61-20220422-162941.mp4 10.0_3154_shabby-viridian-beaver-f153ac423f61-20220416-144500.mp4\r\n10.0_1145_lanky-flax-dormouse-f153ac423f61-20220422-163443.mp4 10.0_3155_shabby-viridian-beaver-f153ac423f61-20220416-144958.mp4\r\n10.0_1146_lanky-flax-dormouse-f153ac423f61-20220422-163944.mp4 10.0_3156_shabby-viridian-beaver-f153ac423f61-20220416-145456.mp4\r\n10.0_1147_lanky-flax-dormouse-f153ac423f61-20220422-164445.mp4 10.0_3157_shabby-viridian-beaver-f153ac423f61-20220416-161021.mp4\r\n10.0_1148_lanky-flax-dormouse-f153ac423f61-20220422-185400.mp4 10.0_3158_shabby-viridian-beaver-f153ac423f61-20220416-161526.mp4\r\n10.0_1149_lanky-flax-dormouse-f153ac423f61-20220422-190108.mp4 10.0_3159_shabby-viridian-beaver-f153ac423f61-20220416-162025.mp4\r\n10.0_114_cheeky-cornflower-setter-4f0508964551-20220421-134234.mp4 10.0_315_cheeky-cornflower-setter-acb518cb0f5f-20220414-180524.mp4\r\n10.0_1150_lanky-flax-dormouse-f371dc823d1d-20220422-171655.mp4 10.0_3160_shabby-viridian-beaver-f153ac423f61-20220416-162524.mp4\r\n10.0_1151_lanky-flax-dormouse-f371dc823d1d-20220422-172501.mp4 10.0_3161_shabby-viridian-beaver-f153ac423f61-20220416-163023.mp4\r\n10.0_1152_lanky-flax-dormouse-f371dc823d1d-20220422-173002.mp4 10.0_3162_shabby-viridian-beaver-f153ac423f61-20220416-192900.mp4\r\n10.0_1153_lanky-flax-dormouse-f371dc823d1d-20220422-173504.mp4 10.0_3163_shabby-viridian-beaver-f153ac423f61-20220416-193403.mp4\r\n10.0_1154_lanky-flax-dormouse-f569f2c0c2df-20220422-170154.mp4 10.0_3164_shabby-viridian-beaver-f153ac423f61-20220416-193906.mp4\r\n10.0_1155_lanky-flax-dormouse-f569f2c0c2df-20220422-170655.mp4 10.0_3165_shabby-viridian-beaver-f153ac423f61-20220416-194404.mp4\r\n10.0_1156_lanky-flax-dormouse-f569f2c0c2df-20220422-171157.mp4 10.0_3166_shabby-viridian-beaver-f153ac423f61-20220416-211134.mp4\r\n10.0_1157_lanky-flax-dormouse-f9b0098ad379-20220422-175132.mp4 10.0_3167_shabby-viridian-beaver-f153ac423f61-20220416-211633.mp4\r\n10.0_1158_lanky-flax-dormouse-f9b0098ad379-20220422-175633.mp4 10.0_3168_shabby-viridian-beaver-f153ac423f61-20220416-212132.mp4\r\n10.0_1159_lanky-flax-dormouse-fad9fc5a7736-20220422-164522.mp4 10.0_3169_shabby-viridian-beaver-f153ac423f61-20220416-212630.mp4\r\n10.0_115_cheeky-cornflower-setter-527e9fca1a87-20220416-134005.mp4 10.0_316_cheeky-cornflower-setter-acf0ef1d038b-20220415-130120.mp4\r\n10.0_1160_lanky-flax-dormouse-fad9fc5a7736-20220422-165039.mp4 10.0_3170_shabby-viridian-beaver-f153ac423f61-20220416-213128.mp4\r\n10.0_1161_lanky-flax-dormouse-fad9fc5a7736-20220422-165540.mp4 10.0_3171_shabby-viridian-beaver-f153ac423f61-20220417-004519.mp4\r\n10.0_1162_lanky-flax-dormouse-fe45ab9f0c58-20220422-180245.mp4 10.0_3172_shabby-viridian-beaver-f153ac423f61-20220417-005019.mp4\r\n10.0_1163_lanky-flax-dormouse-fe45ab9f0c58-20220422-180747.mp4 10.0_3173_shabby-viridian-beaver-f153ac423f61-20220417-005524.mp4\r\n10.0_1164_lanky-flax-dormouse-fe45ab9f0c58-20220422-181249.mp4 10.0_3174_shabby-viridian-beaver-f153ac423f61-20220417-145516.mp4\r\n10.0_1165_lovely-persimmon-angora-002ea7e12da0-20220419-035059.mp4 10.0_3175_shabby-viridian-beaver-f153ac423f61-20220417-150019.mp4\r\n10.0_1166_lovely-persimmon-angora-002ea7e12da0-20220419-040511.mp4 10.0_3176_shabby-viridian-beaver-f153ac423f61-20220417-150522.mp4\r\n10.0_1167_lovely-persimmon-angora-002ea7e12da0-20220419-041009.mp4 10.0_3177_shabby-viridian-beaver-f153ac423f61-20220417-163230.mp4\r\n10.0_1168_lovely-persimmon-angora-008e23129e39-20220422-213842.mp4 10.0_3178_shabby-viridian-beaver-f153ac423f61-20220417-163729.mp4\r\n10.0_1169_lovely-persimmon-angora-008e23129e39-20220422-214342.mp4 10.0_3179_shabby-viridian-beaver-f153ac423f61-20220417-164228.mp4\r\n10.0_116_cheeky-cornflower-setter-527e9fca1a87-20220416-134542.mp4 10.0_317_cheeky-cornflower-setter-ad550e4f789d-20220421-144319.mp4\r\n10.0_1170_lovely-persimmon-angora-035e82ddbcca-20220423-072433.mp4 10.0_3180_shabby-viridian-beaver-f153ac423f61-20220417-215745.mp4\r\n10.0_1171_lovely-persimmon-angora-035e82ddbcca-20220423-072938.mp4 10.0_3181_shabby-viridian-beaver-f153ac423f61-20220417-215815.mp4\r\n10.0_1172_lovely-persimmon-angora-035e82ddbcca-20220423-073438.mp4 10.0_3182_shabby-viridian-beaver-f153ac423f61-20220417-220244.mp4\r\n10.0_1173_lovely-persimmon-angora-035e82ddbcca-20220423-073937.mp4 10.0_3183_shabby-viridian-beaver-f153ac423f61-20220417-220319.mp4\r\n10.0_1174_lovely-persimmon-angora-035e82ddbcca-20220423-074436.mp4 10.0_3184_shabby-viridian-beaver-f153ac423f61-20220417-220743.mp4\r\n10.0_1175_lovely-persimmon-angora-036ca6aebecb-20220417-171551.mp4 10.0_3185_shabby-viridian-beaver-f153ac423f61-20220417-220829.mp4\r\n10.0_1176_lovely-persimmon-angora-036ca6aebecb-20220417-172056.mp4 10.0_3186_shabby-viridian-beaver-f153ac423f61-20220417-221329.mp4\r\n10.0_1177_lovely-persimmon-angora-036ca6aebecb-20220417-172555.mp4 10.0_3187_shabby-viridian-beaver-f153ac423f61-20220418-212223.mp4\r\n10.0_1178_lovely-persimmon-angora-036ca6aebecb-20220417-173054.mp4 10.0_3188_shabby-viridian-beaver-f153ac423f61-20220418-212755.mp4\r\n10.0_1179_lovely-persimmon-angora-036ca6aebecb-20220417-173553.mp4 10.0_3189_shabby-viridian-beaver-f153ac423f61-20220418-213316.mp4\r\n10.0_117_cheeky-cornflower-setter-53762638fef9-20220416-191127.mp4 10.0_318_cheeky-cornflower-setter-ad550e4f789d-20220421-145326.mp4\r\n10.0_1180_lovely-persimmon-angora-03ea7a071963-20220420-001633.mp4 10.0_3190_shabby-viridian-beaver-f153ac423f61-20220419-133219.mp4\r\n10.0_1181_lovely-persimmon-angora-03ea7a071963-20220420-002728.mp4 10.0_3191_shabby-viridian-beaver-f153ac423f61-20220419-133719.mp4\r\n10.0_1182_lovely-persimmon-angora-03ea7a071963-20220420-003728.mp4 10.0_3192_shabby-viridian-beaver-f153ac423f61-20220419-134218.mp4\r\n10.0_1183_lovely-persimmon-angora-04b81856635a-20220423-051010.mp4 10.0_3193_shabby-viridian-beaver-f153ac423f61-20220419-134717.mp4\r\n10.0_1184_lovely-persimmon-angora-04b81856635a-20220423-051820.mp4 10.0_3194_shabby-viridian-beaver-f153ac423f61-20220419-141440.mp4\r\n10.0_1185_lovely-persimmon-angora-04b81856635a-20220423-052458.mp4 10.0_3195_shabby-viridian-beaver-f153ac423f61-20220419-142010.mp4\r\n10.0_1186_lovely-persimmon-angora-05144f5bd6f9-20220416-215832.mp4 10.0_3196_shabby-viridian-beaver-f153ac423f61-20220419-142520.mp4\r\n10.0_1187_lovely-persimmon-angora-05144f5bd6f9-20220416-220351.mp4 10.0_3197_shabby-viridian-beaver-f153ac423f61-20220419-143020.mp4\r\n10.0_1188_lovely-persimmon-angora-05144f5bd6f9-20220416-220849.mp4 10.0_3198_shabby-viridian-beaver-f153ac423f61-20220419-153012.mp4\r\n10.0_1189_lovely-persimmon-angora-05144f5bd6f9-20220416-221347.mp4 10.0_3199_shabby-viridian-beaver-f153ac423f61-20220419-153511.mp4\r\n10.0_118_cheeky-cornflower-setter-53762638fef9-20220416-191641.mp4 10.0_319_cheeky-cornflower-setter-aeb1b2e29425-20220423-222130.mp4\r\n10.0_1190_lovely-persimmon-angora-05144f5bd6f9-20220416-221942.mp4 10.0_3200_shabby-viridian-beaver-f153ac423f61-20220419-154009.mp4\r\n10.0_1191_lovely-persimmon-angora-09de7b1e2256-20220417-105542.mp4 10.0_3201_shabby-viridian-beaver-f153ac423f61-20220419-154507.mp4\r\n10.0_1192_lovely-persimmon-angora-09de7b1e2256-20220417-110042.mp4 10.0_3202_shabby-viridian-beaver-f153ac423f61-20220419-170532.mp4\r\n10.0_1193_lovely-persimmon-angora-09de7b1e2256-20220417-110540.mp4 10.0_3203_shabby-viridian-beaver-f153ac423f61-20220419-171032.mp4\r\n10.0_1194_lovely-persimmon-angora-09de7b1e2256-20220417-111038.mp4 10.0_3204_shabby-viridian-beaver-f153ac423f61-20220419-171536.mp4\r\n10.0_1195_lovely-persimmon-angora-09de7b1e2256-20220417-111535.mp4 10.0_3205_shabby-viridian-beaver-f153ac423f61-20220419-172036.mp4\r\n10.0_1196_lovely-persimmon-angora-0a781cae44df-20220419-052411.mp4 10.0_3206_shabby-viridian-beaver-f153ac423f61-20220419-205248.mp4\r\n10.0_1197_lovely-persimmon-angora-0a83db7d2339-20220414-155348.mp4 10.0_3207_shabby-viridian-beaver-f153ac423f61-20220419-205747.mp4\r\n10.0_1198_lovely-persimmon-angora-0a83db7d2339-20220414-160852.mp4 10.0_3208_shabby-viridian-beaver-f153ac423f61-20220419-210245.mp4\r\n10.0_1199_lovely-persimmon-angora-0a9ed113a260-20220421-095938.mp4 10.0_3209_shabby-viridian-beaver-f153ac423f61-20220419-210744.mp4\r\n10.0_119_cheeky-cornflower-setter-53762638fef9-20220416-192200.mp4 10.0_320_cheeky-cornflower-setter-aeb1b2e29425-20220423-223332.mp4\r\n10.0_1200_lovely-persimmon-angora-0a9ed113a260-20220421-100447.mp4 10.0_3210_shabby-viridian-beaver-f153ac423f61-20220419-211242.mp4\r\n10.0_1201_lovely-persimmon-angora-0b53a01d0957-20220416-063903.mp4 10.0_3211_shabby-viridian-beaver-f153ac423f61-20220419-214507.mp4\r\n10.0_1202_lovely-persimmon-angora-0b53a01d0957-20220416-064411.mp4 10.0_3212_shabby-viridian-beaver-f153ac423f61-20220419-215007.mp4\r\n10.0_1203_lovely-persimmon-angora-0b53a01d0957-20220416-064910.mp4 10.0_3213_shabby-viridian-beaver-f153ac423f61-20220419-215507.mp4\r\n10.0_1204_lovely-persimmon-angora-0b53a01d0957-20220416-065411.mp4 10.0_3214_shabby-viridian-beaver-f153ac423f61-20220420-144027.mp4\r\n10.0_1205_lovely-persimmon-angora-0c796d22a51e-20220419-163300.mp4 10.0_3215_shabby-viridian-beaver-f153ac423f61-20220420-144528.mp4\r\n10.0_1206_lovely-persimmon-angora-0c796d22a51e-20220419-163804.mp4 10.0_3216_shabby-viridian-beaver-f153ac423f61-20220420-145028.mp4\r\n10.0_1207_lovely-persimmon-angora-0c796d22a51e-20220419-164303.mp4 10.0_3217_shabby-viridian-beaver-f153ac423f61-20220420-145528.mp4\r\n10.0_1208_lovely-persimmon-angora-0c796d22a51e-20220419-164802.mp4 10.0_3218_shabby-viridian-beaver-f153ac423f61-20220420-150038.mp4\r\n10.0_1209_lovely-persimmon-angora-0c796d22a51e-20220419-165301.mp4 10.0_3219_shabby-viridian-beaver-f153ac423f61-20220420-152638.mp4\r\n10.0_120_cheeky-cornflower-setter-53762638fef9-20220416-192709.mp4 10.0_321_cheeky-cornflower-setter-b26308bded20-20220419-201805.mp4\r\n10.0_1210_lovely-persimmon-angora-0d202e98ada7-20220422-202405.mp4 10.0_3220_shabby-viridian-beaver-f153ac423f61-20220420-153139.mp4\r\n10.0_1211_lovely-persimmon-angora-0d202e98ada7-20220422-202910.mp4 10.0_3221_shabby-viridian-beaver-f153ac423f61-20220420-153638.mp4\r\n10.0_1212_lovely-persimmon-angora-0d202e98ada7-20220422-203410.mp4 10.0_3222_shabby-viridian-beaver-f153ac423f61-20220420-154138.mp4\r\n10.0_1213_lovely-persimmon-angora-0df04913c84f-20220420-062103.mp4 10.0_3223_shabby-viridian-beaver-f153ac423f61-20220421-131519.mp4\r\n10.0_1214_lovely-persimmon-angora-0df04913c84f-20220420-062609.mp4 10.0_3224_shabby-viridian-beaver-f153ac423f61-20220421-132029.mp4\r\n10.0_1215_lovely-persimmon-angora-0df04913c84f-20220420-063110.mp4 10.0_3225_shabby-viridian-beaver-f153ac423f61-20220421-132528.mp4\r\n10.0_1216_lovely-persimmon-angora-0df04913c84f-20220420-063611.mp4 10.0_3226_shabby-viridian-beaver-f153ac423f61-20220421-133027.mp4\r\n10.0_1217_lovely-persimmon-angora-0df04913c84f-20220420-064111.mp4 10.0_3227_shabby-viridian-beaver-f153ac423f61-20220421-141536.mp4\r\n10.0_1218_lovely-persimmon-angora-0e5ca1312f2a-20220420-170449.mp4 10.0_3228_shabby-viridian-beaver-f153ac423f61-20220421-142035.mp4\r\n10.0_1219_lovely-persimmon-angora-0e5ca1312f2a-20220420-170951.mp4 10.0_3229_shabby-viridian-beaver-f153ac423f61-20220421-142534.mp4\r\n10.0_121_cheeky-cornflower-setter-555af94e270c-20220420-201219.mp4 10.0_322_cheeky-cornflower-setter-b26308bded20-20220419-202315.mp4\r\n10.0_1220_lovely-persimmon-angora-0e5ca1312f2a-20220420-171450.mp4 10.0_3230_shabby-viridian-beaver-f153ac423f61-20220421-143032.mp4\r\n10.0_1221_lovely-persimmon-angora-0e5ca1312f2a-20220420-171948.mp4 10.0_3231_shabby-viridian-beaver-f153ac423f61-20220421-143530.mp4\r\n10.0_1222_lovely-persimmon-angora-0e5ca1312f2a-20220420-172446.mp4 10.0_3232_shabby-viridian-beaver-f153ac423f61-20220421-145606.mp4\r\n10.0_1223_lovely-persimmon-angora-12097610a85a-20220423-053531.mp4 10.0_3233_shabby-viridian-beaver-f153ac423f61-20220421-150108.mp4\r\n10.0_1224_lovely-persimmon-angora-140a4190c27f-20220419-235500.mp4 10.0_3234_shabby-viridian-beaver-f153ac423f61-20220421-150609.mp4\r\n10.0_1225_lovely-persimmon-angora-140a4190c27f-20220420-001111.mp4 10.0_3235_shabby-viridian-beaver-f153ac423f61-20220421-205823.mp4\r\n10.0_1226_lovely-persimmon-angora-1420180093e5-20220420-134037.mp4 10.0_3236_shabby-viridian-beaver-f153ac423f61-20220421-210323.mp4\r\n10.0_1227_lovely-persimmon-angora-1420180093e5-20220420-134709.mp4 10.0_3237_shabby-viridian-beaver-f153ac423f61-20220421-210821.mp4\r\n10.0_1228_lovely-persimmon-angora-14ead13b694f-20220422-045759.mp4 10.0_3238_shabby-viridian-beaver-f153ac423f61-20220421-211319.mp4\r\n10.0_1229_lovely-persimmon-angora-14ead13b694f-20220422-050301.mp4 10.0_3239_shabby-viridian-beaver-f153ac423f61-20220421-211817.mp4\r\n10.0_122_cheeky-cornflower-setter-56f853943b31-20220421-103921.mp4 10.0_323_cheeky-cornflower-setter-b47fb53f94b0-20220423-211534.mp4\r\n10.0_1230_lovely-persimmon-angora-14ead13b694f-20220422-050759.mp4 10.0_3240_shabby-viridian-beaver-f153ac423f61-20220422-160440.mp4\r\n10.0_1231_lovely-persimmon-angora-15246d623756-20220420-141834.mp4 10.0_3241_shabby-viridian-beaver-f153ac423f61-20220422-161754.mp4\r\n10.0_1232_lovely-persimmon-angora-1585e6411fcb-20220420-163000.mp4 10.0_3242_shabby-viridian-beaver-f153ac423f61-20220422-162405.mp4\r\n10.0_1233_lovely-persimmon-angora-15abf42a291b-20220423-080951.mp4 10.0_3243_shabby-viridian-beaver-f153ac423f61-20220422-162904.mp4\r\n10.0_1234_lovely-persimmon-angora-15abf42a291b-20220423-081507.mp4 10.0_3244_shabby-viridian-beaver-f153ac423f61-20220422-163401.mp4\r\n10.0_1235_lovely-persimmon-angora-15abf42a291b-20220423-082005.mp4 10.0_3245_shabby-viridian-beaver-f153ac423f61-20220422-180213.mp4\r\n10.0_1236_lovely-persimmon-angora-15abf42a291b-20220423-082504.mp4 10.0_3246_shabby-viridian-beaver-f153ac423f61-20220422-180718.mp4\r\n10.0_1237_lovely-persimmon-angora-15abf42a291b-20220423-084446.mp4 10.0_3247_shabby-viridian-beaver-f153ac423f61-20220422-182041.mp4\r\n10.0_1238_lovely-persimmon-angora-15abf42a291b-20220423-084947.mp4 10.0_3248_shabby-viridian-beaver-f153ac423f61-20220422-182542.mp4\r\n10.0_1239_lovely-persimmon-angora-15abf42a291b-20220423-085445.mp4 10.0_3249_shabby-viridian-beaver-f153ac423f61-20220422-183044.mp4\r\n10.0_123_cheeky-cornflower-setter-5a26e44d190d-20220422-192854.mp4 10.0_324_cheeky-cornflower-setter-b47fb53f94b0-20220423-212528.mp4\r\n10.0_1240_lovely-persimmon-angora-15abf42a291b-20220423-085944.mp4 10.0_3250_shabby-viridian-beaver-f153ac423f61-20220422-183545.mp4\r\n10.0_1241_lovely-persimmon-angora-15abf42a291b-20220423-090443.mp4 10.0_3251_shabby-viridian-beaver-f153ac423f61-20220422-213341.mp4\r\n10.0_1242_lovely-persimmon-angora-15e7d175e2e2-20220416-050300.mp4 10.0_3252_shabby-viridian-beaver-f153ac423f61-20220422-213840.mp4\r\n10.0_1243_lovely-persimmon-angora-1654ae366c37-20220422-141149.mp4 10.0_3253_shabby-viridian-beaver-f153ac423f61-20220422-214338.mp4\r\n10.0_1244_lovely-persimmon-angora-1654ae366c37-20220422-141653.mp4 10.0_3254_shabby-viridian-beaver-f153ac423f61-20220422-214836.mp4\r\n10.0_1245_lovely-persimmon-angora-1654ae366c37-20220422-142153.mp4 10.0_3255_shabby-viridian-beaver-f153ac423f61-20220423-162322.mp4\r\n10.0_1246_lovely-persimmon-angora-1654ae366c37-20220422-142651.mp4 10.0_3256_shabby-viridian-beaver-f153ac423f61-20220423-162907.mp4\r\n10.0_1247_lovely-persimmon-angora-1654ae366c37-20220422-143151.mp4 10.0_3257_shabby-viridian-beaver-f153ac423f61-20220423-163406.mp4\r\n10.0_1248_lovely-persimmon-angora-16b58e2e63d4-20220420-183713.mp4 10.0_3258_shabby-viridian-beaver-f153ac423f61-20220423-163914.mp4\r\n10.0_1249_lovely-persimmon-angora-16b58e2e63d4-20220420-184246.mp4 10.0_3259_shabby-viridian-beaver-f153ac423f61-20220423-182710.mp4\r\n10.0_124_cheeky-cornflower-setter-5ae43471cf61-20220415-190732.mp4 10.0_325_cheeky-cornflower-setter-b47fb53f94b0-20220423-213427.mp4\r\n10.0_1250_lovely-persimmon-angora-16b58e2e63d4-20220420-184745.mp4 10.0_3260_shabby-viridian-beaver-f153ac423f61-20220423-183209.mp4\r\n10.0_1251_lovely-persimmon-angora-16b58e2e63d4-20220420-185244.mp4 10.0_3261_shabby-viridian-beaver-f153ac423f61-20220423-183707.mp4\r\n10.0_1252_lovely-persimmon-angora-187a492183d7-20220421-045306.mp4 10.0_3262_shabby-viridian-beaver-f153ac423f61-20220423-184205.mp4\r\n10.0_1253_lovely-persimmon-angora-187a492183d7-20220421-045808.mp4 10.0_3263_shabby-viridian-beaver-f153ac423f61-20220423-184703.mp4\r\n10.0_1254_lovely-persimmon-angora-187a492183d7-20220421-050307.mp4 10.0_3264_shabby-viridian-beaver-f153ac423f61-20220423-232531.mp4\r\n10.0_1255_lovely-persimmon-angora-187a492183d7-20220421-050806.mp4 10.0_3265_shabby-viridian-beaver-f153ac423f61-20220423-233030.mp4\r\n10.0_1256_lovely-persimmon-angora-187a492183d7-20220421-051305.mp4 10.0_3266_shabby-viridian-beaver-f153ac423f61-20220423-233529.mp4\r\n10.0_1257_lovely-persimmon-angora-1c4c461b59ff-20220419-143514.mp4 10.0_3267_shabby-viridian-beaver-f153ac423f61-20220423-234027.mp4\r\n10.0_1258_lovely-persimmon-angora-1c4c461b59ff-20220419-144017.mp4 10.0_3268_shabby-viridian-beaver-f153ac423f61-20220423-234525.mp4\r\n10.0_1259_lovely-persimmon-angora-1c4c461b59ff-20220419-144516.mp4 10.0_3269_shabby-viridian-beaver-f20116fc09d7-20220415-154725.mp4\r\n10.0_125_cheeky-cornflower-setter-5ae43471cf61-20220415-191238.mp4 10.0_326_cheeky-cornflower-setter-b70ccca3edf2-20220423-150833.mp4\r\n10.0_1260_lovely-persimmon-angora-1c4c461b59ff-20220419-145016.mp4 10.0_3270_shabby-viridian-beaver-f20116fc09d7-20220415-155223.mp4\r\n10.0_1261_lovely-persimmon-angora-1c8bc3190b1e-20220419-041241.mp4 10.0_3271_shabby-viridian-beaver-f2be760b6170-20220416-185217.mp4\r\n10.0_1262_lovely-persimmon-angora-1c8bc3190b1e-20220419-041749.mp4 10.0_3272_shabby-viridian-beaver-f2be760b6170-20220416-185715.mp4\r\n10.0_1263_lovely-persimmon-angora-1c9c7e2affb2-20220416-093427.mp4 10.0_3273_shabby-viridian-beaver-f2be760b6170-20220416-190213.mp4\r\n10.0_1264_lovely-persimmon-angora-1e25bb76c9d9-20220420-163544.mp4 10.0_3274_shabby-viridian-beaver-f2be760b6170-20220416-190711.mp4\r\n10.0_1265_lovely-persimmon-angora-1e25bb76c9d9-20220420-164045.mp4 10.0_3275_shabby-viridian-beaver-f2be760b6170-20220416-191209.mp4\r\n10.0_1266_lovely-persimmon-angora-1e25bb76c9d9-20220420-164545.mp4 10.0_3276_shabby-viridian-beaver-f60fdabfb97c-20220419-165539.mp4\r\n10.0_1267_lovely-persimmon-angora-1e25bb76c9d9-20220420-165043.mp4 10.0_3277_shabby-viridian-beaver-f60fdabfb97c-20220419-170041.mp4\r\n10.0_1268_lovely-persimmon-angora-1e25bb76c9d9-20220420-165543.mp4 10.0_3278_shabby-viridian-beaver-fb193d5a1dd3-20220418-222731.mp4\r\n10.0_1269_lovely-persimmon-angora-1eb7e9488409-20220419-171857.mp4 10.0_3279_shabby-viridian-beaver-fb193d5a1dd3-20220418-223732.mp4\r\n10.0_126_cheeky-cornflower-setter-5ae43471cf61-20220415-191742.mp4 10.0_327_cheeky-cornflower-setter-b70ccca3edf2-20220423-151340.mp4\r\n10.0_1270_lovely-persimmon-angora-1eb7e9488409-20220419-172401.mp4 10.0_3280_shabby-viridian-beaver-fb193d5a1dd3-20220418-224233.mp4\r\n10.0_1271_lovely-persimmon-angora-1eb7e9488409-20220419-172859.mp4 10.0_3281_shabby-viridian-beaver-fb2041864717-20220422-215417.mp4\r\n10.0_1272_lovely-persimmon-angora-1eb7e9488409-20220419-173359.mp4 10.0_3282_shabby-viridian-beaver-fb774c5ee8c7-20220419-184607.mp4\r\n10.0_1273_lovely-persimmon-angora-1edf0bcaf2e6-20220415-210825.mp4 10.0_3283_shabby-viridian-beaver-fb774c5ee8c7-20220419-185109.mp4\r\n10.0_1274_lovely-persimmon-angora-1fb702eb3fd8-20220416-224242.mp4 10.0_3284_shabby-viridian-beaver-fc8f881d71d0-20220416-140028.mp4\r\n10.0_1275_lovely-persimmon-angora-1fb702eb3fd8-20220416-224745.mp4 10.0_3285_shabby-viridian-beaver-fcf04e6e8f51-20220416-194529.mp4\r\n10.0_1276_lovely-persimmon-angora-1fb702eb3fd8-20220416-225244.mp4 10.0_3286_shabby-viridian-beaver-fcf04e6e8f51-20220416-195028.mp4\r\n10.0_1277_lovely-persimmon-angora-1fb702eb3fd8-20220417-001006.mp4 10.0_3287_shabby-viridian-beaver-fd8a7cbf43a0-20220419-191429.mp4\r\n10.0_1278_lovely-persimmon-angora-1fb702eb3fd8-20220417-001508.mp4 10.0_3288_shabby-viridian-beaver-fd8a7cbf43a0-20220419-191928.mp4\r\n10.0_1279_lovely-persimmon-angora-2244086134f2-20220421-024158.mp4 10.0_3289_shabby-viridian-beaver-fd8a7cbf43a0-20220419-192427.mp4\r\n10.0_127_cheeky-cornflower-setter-5ae43471cf61-20220415-192246.mp4 10.0_328_cheeky-cornflower-setter-b70ccca3edf2-20220423-151848.mp4\r\n10.0_1280_lovely-persimmon-angora-2244086134f2-20220421-024703.mp4 10.0_3290_shabby-viridian-beaver-fd8a7cbf43a0-20220419-192926.mp4\r\n10.0_1281_lovely-persimmon-angora-2244086134f2-20220421-025205.mp4 10.0_3291_shabby-viridian-beaver-fe21c23b45a9-20220415-223817.mp4\r\n10.0_1282_lovely-persimmon-angora-22bbb473cada-20220422-223842.mp4 10.0_3292_shabby-viridian-beaver-fe21c23b45a9-20220415-224318.mp4\r\n10.0_1283_lovely-persimmon-angora-22bbb473cada-20220422-224345.mp4 10.0_3293_shabby-viridian-beaver-fe21c23b45a9-20220415-224817.mp4\r\n10.0_1284_lovely-persimmon-angora-22bbb473cada-20220422-224843.mp4 10.0_3294_shabby-viridian-beaver-fe21c23b45a9-20220415-225320.mp4\r\n10.0_1285_lovely-persimmon-angora-22bbb473cada-20220422-225342.mp4 10.0_3295_shabby-viridian-beaver-ffde53b7eae1-20220420-001147.mp4\r\n10.0_1286_lovely-persimmon-angora-22bbb473cada-20220422-225840.mp4 10.0_3296_sleepy-sangria-bat-0025cfc857cb-20220421-091522.mp4\r\n10.0_1287_lovely-persimmon-angora-22c2fd122070-20220419-052805.mp4 10.0_3297_sleepy-sangria-bat-0025cfc857cb-20220421-092022.mp4\r\n10.0_1288_lovely-persimmon-angora-22c2fd122070-20220419-053317.mp4 10.0_3298_sleepy-sangria-bat-02bf421f1710-20220423-194519.mp4\r\n10.0_1289_lovely-persimmon-angora-22c2fd122070-20220419-053818.mp4 10.0_3299_sleepy-sangria-bat-02bf421f1710-20220423-195030.mp4\r\n10.0_128_cheeky-cornflower-setter-5d1a60d7597b-20220415-124432.mp4 10.0_329_cheeky-cornflower-setter-b7219c8fae54-20220419-200126.mp4\r\n10.0_1290_lovely-persimmon-angora-22c2fd122070-20220419-054321.mp4 10.0_3300_sleepy-sangria-bat-0dc3dd49c6a9-20220422-153403.mp4\r\n10.0_1291_lovely-persimmon-angora-24f3e4f55656-20220417-160454.mp4 10.0_3301_sleepy-sangria-bat-0dc3dd49c6a9-20220422-153900.mp4\r\n10.0_1292_lovely-persimmon-angora-24f3e4f55656-20220417-160957.mp4 10.0_3302_sleepy-sangria-bat-145efaa52ab8-20220421-085159.mp4\r\n10.0_1293_lovely-persimmon-angora-24f3e4f55656-20220417-161455.mp4 10.0_3303_sleepy-sangria-bat-145efaa52ab8-20220421-085657.mp4\r\n10.0_1294_lovely-persimmon-angora-24f3e4f55656-20220417-161952.mp4 10.0_3304_sleepy-sangria-bat-145efaa52ab8-20220421-090158.mp4\r\n10.0_1295_lovely-persimmon-angora-24f3e4f55656-20220417-162451.mp4 10.0_3305_sleepy-sangria-bat-145efaa52ab8-20220421-090656.mp4\r\n10.0_1296_lovely-persimmon-angora-25906f726967-20220417-111614.mp4 10.0_3306_sleepy-sangria-bat-14ad8f0512d2-20220423-105149.mp4\r\n10.0_1297_lovely-persimmon-angora-25906f726967-20220417-112115.mp4 10.0_3307_sleepy-sangria-bat-14ad8f0512d2-20220423-105937.mp4\r\n10.0_1298_lovely-persimmon-angora-25906f726967-20220417-112614.mp4 10.0_3308_sleepy-sangria-bat-14ad8f0512d2-20220423-110435.mp4\r\n10.0_1299_lovely-persimmon-angora-25906f726967-20220417-113111.mp4 10.0_3309_sleepy-sangria-bat-14ad8f0512d2-20220423-110932.mp4\r\n10.0_129_cheeky-cornflower-setter-5d1a60d7597b-20220415-124943.mp4 10.0_330_cheeky-cornflower-setter-b7219c8fae54-20220419-200634.mp4\r\n10.0_1300_lovely-persimmon-angora-25906f726967-20220417-113609.mp4 10.0_3310_sleepy-sangria-bat-15dd4daaf9fa-20220423-082007.mp4\r\n10.0_1301_lovely-persimmon-angora-26b8db3a1263-20220418-211643.mp4 10.0_3311_sleepy-sangria-bat-15dd4daaf9fa-20220423-082506.mp4\r\n10.0_1302_lovely-persimmon-angora-27cb9ddbbbaa-20220419-173923.mp4 10.0_3312_sleepy-sangria-bat-174d23926b18-20220419-191854.mp4\r\n10.0_1303_lovely-persimmon-angora-27cb9ddbbbaa-20220419-175945.mp4 10.0_3313_sleepy-sangria-bat-174d23926b18-20220419-192351.mp4\r\n10.0_1304_lovely-persimmon-angora-28c19408e783-20220416-145224.mp4 10.0_3314_sleepy-sangria-bat-174d23926b18-20220419-192849.mp4\r\n10.0_1305_lovely-persimmon-angora-28c387928916-20220419-204042.mp4 10.0_3315_sleepy-sangria-bat-174d23926b18-20220419-193347.mp4\r\n10.0_1306_lovely-persimmon-angora-296c71edb8f1-20220419-060613.mp4 10.0_3316_sleepy-sangria-bat-1fad6e6a6ba0-20220419-000511.mp4\r\n10.0_1307_lovely-persimmon-angora-296c71edb8f1-20220419-061118.mp4 10.0_3317_sleepy-sangria-bat-1fad6e6a6ba0-20220419-001009.mp4\r\n10.0_1308_lovely-persimmon-angora-2d967542e926-20220421-015105.mp4 10.0_3318_sleepy-sangria-bat-2939d2a26960-20220423-083849.mp4\r\n10.0_1309_lovely-persimmon-angora-2d967542e926-20220421-015609.mp4 10.0_3319_sleepy-sangria-bat-2939d2a26960-20220423-094026.mp4\r\n10.0_130_cheeky-cornflower-setter-5d1d8215a178-20220419-112926.mp4 10.0_331_cheeky-cornflower-setter-b7219c8fae54-20220419-201141.mp4\r\n10.0_1310_lovely-persimmon-angora-2d967542e926-20220421-020107.mp4 10.0_3320_sleepy-sangria-bat-298bc4e8de1c-20220419-185734.mp4\r\n10.0_1311_lovely-persimmon-angora-2d967542e926-20220421-020605.mp4 10.0_3321_sleepy-sangria-bat-298bc4e8de1c-20220419-190232.mp4\r\n10.0_1312_lovely-persimmon-angora-2d967542e926-20220421-021104.mp4 10.0_3322_sleepy-sangria-bat-2ee6b91385c0-20220418-210158.mp4\r\n10.0_1313_lovely-persimmon-angora-2d9af197000c-20220421-213424.mp4 10.0_3323_sleepy-sangria-bat-35bcf77512ba-20220422-154127.mp4\r\n10.0_1314_lovely-persimmon-angora-2d9af197000c-20220421-213933.mp4 10.0_3324_sleepy-sangria-bat-35bcf77512ba-20220422-154629.mp4\r\n10.0_1315_lovely-persimmon-angora-2d9af197000c-20220421-214433.mp4 10.0_3325_sleepy-sangria-bat-35bcf77512ba-20220422-155126.mp4\r\n10.0_1316_lovely-persimmon-angora-2d9af197000c-20220421-214933.mp4 10.0_3326_sleepy-sangria-bat-396c536d3234-20220421-095352.mp4\r\n10.0_1317_lovely-persimmon-angora-2d9af197000c-20220421-215432.mp4 10.0_3327_sleepy-sangria-bat-396c536d3234-20220421-095849.mp4\r\n10.0_1318_lovely-persimmon-angora-2e79ccf83302-20220416-171017.mp4 10.0_3328_sleepy-sangria-bat-396c536d3234-20220421-100347.mp4\r\n10.0_1319_lovely-persimmon-angora-2e79ccf83302-20220416-171518.mp4 10.0_3329_sleepy-sangria-bat-3ae0dca6d3ec-20220422-192616.mp4\r\n10.0_131_cheeky-cornflower-setter-5d1d8215a178-20220419-113437.mp4 10.0_332_cheeky-cornflower-setter-b8644a28c4d6-20220423-130347.mp4\r\n10.0_1320_lovely-persimmon-angora-2e79ccf83302-20220416-172018.mp4 10.0_3330_sleepy-sangria-bat-3ae0dca6d3ec-20220422-193113.mp4\r\n10.0_1321_lovely-persimmon-angora-2e79ccf83302-20220416-172517.mp4 10.0_3331_sleepy-sangria-bat-3ae0dca6d3ec-20220422-193611.mp4\r\n10.0_1322_lovely-persimmon-angora-2e79ccf83302-20220416-173016.mp4 10.0_3332_sleepy-sangria-bat-3fb82658e8aa-20220418-200900.mp4\r\n10.0_1323_lovely-persimmon-angora-2efab21458e7-20220415-060225.mp4 10.0_3333_sleepy-sangria-bat-3fb82658e8aa-20220418-201357.mp4\r\n10.0_1324_lovely-persimmon-angora-2ff9311c3dab-20220419-201530.mp4 10.0_3334_sleepy-sangria-bat-3fb82658e8aa-20220418-201856.mp4\r\n10.0_1325_lovely-persimmon-angora-2ffa23d19ca5-20220417-113640.mp4 10.0_3335_sleepy-sangria-bat-3fb82658e8aa-20220418-202353.mp4\r\n10.0_1326_lovely-persimmon-angora-2ffa23d19ca5-20220417-114140.mp4 10.0_3336_sleepy-sangria-bat-3fb82658e8aa-20220418-202851.mp4\r\n10.0_1327_lovely-persimmon-angora-2ffa23d19ca5-20220417-114638.mp4 10.0_3337_sleepy-sangria-bat-45f92ba107af-20220419-113854.mp4\r\n10.0_1328_lovely-persimmon-angora-2ffa23d19ca5-20220417-115136.mp4 10.0_3338_sleepy-sangria-bat-45f92ba107af-20220419-114353.mp4\r\n10.0_1329_lovely-persimmon-angora-2ffa23d19ca5-20220417-115635.mp4 10.0_3339_sleepy-sangria-bat-45f92ba107af-20220419-114851.mp4\r\n10.0_132_cheeky-cornflower-setter-5d1d8215a178-20220419-113944.mp4 10.0_333_cheeky-cornflower-setter-b9121b1486bf-20220418-153719.mp4\r\n10.0_1330_lovely-persimmon-angora-30447142d295-20220419-215121.mp4 10.0_3340_sleepy-sangria-bat-496a1ee918e0-20220423-103139.mp4\r\n10.0_1331_lovely-persimmon-angora-30447142d295-20220419-215629.mp4 10.0_3341_sleepy-sangria-bat-496a1ee918e0-20220423-103646.mp4\r\n10.0_1332_lovely-persimmon-angora-30447142d295-20220419-220128.mp4 10.0_3342_sleepy-sangria-bat-496a1ee918e0-20220423-104145.mp4\r\n10.0_1333_lovely-persimmon-angora-30447142d295-20220419-222237.mp4 10.0_3343_sleepy-sangria-bat-496a1ee918e0-20220423-104642.mp4\r\n10.0_1334_lovely-persimmon-angora-30447142d295-20220419-225045.mp4 10.0_3344_sleepy-sangria-bat-4c37c16f5fe6-20220419-075239.mp4\r\n10.0_1335_lovely-persimmon-angora-3073016c6b98-20220421-230808.mp4 10.0_3345_sleepy-sangria-bat-4c37c16f5fe6-20220419-075738.mp4\r\n10.0_1336_lovely-persimmon-angora-3084f92078a7-20220419-190114.mp4 10.0_3346_sleepy-sangria-bat-4c8353b1ebf4-20220419-113229.mp4\r\n10.0_1337_lovely-persimmon-angora-3084f92078a7-20220419-190615.mp4 10.0_3347_sleepy-sangria-bat-4c8353b1ebf4-20220419-113728.mp4\r\n10.0_1338_lovely-persimmon-angora-3084f92078a7-20220419-191114.mp4 10.0_3348_sleepy-sangria-bat-5184c5576611-20220422-144244.mp4\r\n10.0_1339_lovely-persimmon-angora-3084f92078a7-20220419-191714.mp4 10.0_3349_sleepy-sangria-bat-5184c5576611-20220422-144743.mp4\r\n10.0_133_cheeky-cornflower-setter-5e8ad2e9bd01-20220423-115712.mp4 10.0_334_cheeky-cornflower-setter-b9121b1486bf-20220418-154228.mp4\r\n10.0_1340_lovely-persimmon-angora-3084f92078a7-20220419-192213.mp4 10.0_3350_sleepy-sangria-bat-5184c5576611-20220422-145241.mp4\r\n10.0_1341_lovely-persimmon-angora-31305535aafe-20220423-013037.mp4 10.0_3351_sleepy-sangria-bat-5184c5576611-20220422-145738.mp4\r\n10.0_1342_lovely-persimmon-angora-31305535aafe-20220423-014202.mp4 10.0_3352_sleepy-sangria-bat-5184c5576611-20220422-150236.mp4\r\n10.0_1343_lovely-persimmon-angora-31305535aafe-20220423-015234.mp4 10.0_3353_sleepy-sangria-bat-5770aab0eacf-20220423-201006.mp4\r\n10.0_1344_lovely-persimmon-angora-31e7f88a96bd-20220415-213028.mp4 10.0_3354_sleepy-sangria-bat-5770aab0eacf-20220423-201501.mp4\r\n10.0_1345_lovely-persimmon-angora-31ecfc70a1c6-20220421-021144.mp4 10.0_3355_sleepy-sangria-bat-5770aab0eacf-20220423-201958.mp4\r\n10.0_1346_lovely-persimmon-angora-31ecfc70a1c6-20220421-021650.mp4 10.0_3356_sleepy-sangria-bat-5770aab0eacf-20220423-202453.mp4\r\n10.0_1347_lovely-persimmon-angora-31ecfc70a1c6-20220421-022150.mp4 10.0_3357_sleepy-sangria-bat-5770aab0eacf-20220423-202949.mp4\r\n10.0_1348_lovely-persimmon-angora-31ecfc70a1c6-20220421-022648.mp4 10.0_3358_sleepy-sangria-bat-5b6b7a0ee938-20220418-234424.mp4\r\n10.0_1349_lovely-persimmon-angora-31ecfc70a1c6-20220421-023146.mp4 10.0_3359_sleepy-sangria-bat-5b6b7a0ee938-20220418-234936.mp4\r\n10.0_134_cheeky-cornflower-setter-5e8ad2e9bd01-20220423-120803.mp4 10.0_335_cheeky-cornflower-setter-b9121b1486bf-20220418-154737.mp4\r\n10.0_1350_lovely-persimmon-angora-3288377c952d-20220420-163416.mp4 10.0_3360_sleepy-sangria-bat-5b6b7a0ee938-20220418-235435.mp4\r\n10.0_1351_lovely-persimmon-angora-33265ab24837-20220420-053047.mp4 10.0_3361_sleepy-sangria-bat-5b6b7a0ee938-20220418-235932.mp4\r\n10.0_1352_lovely-persimmon-angora-334c8decb5fa-20220415-062620.mp4 10.0_3362_sleepy-sangria-bat-5b6b7a0ee938-20220419-000429.mp4\r\n10.0_1353_lovely-persimmon-angora-336494bc7dce-20220414-055654.mp4 10.0_3363_sleepy-sangria-bat-659413519dee-20220423-094613.mp4\r\n10.0_1354_lovely-persimmon-angora-336494bc7dce-20220414-060158.mp4 10.0_3364_sleepy-sangria-bat-659413519dee-20220423-095111.mp4\r\n10.0_1355_lovely-persimmon-angora-336494bc7dce-20220414-060657.mp4 10.0_3365_sleepy-sangria-bat-659413519dee-20220423-095608.mp4\r\n10.0_1356_lovely-persimmon-angora-3404e92e626c-20220420-145427.mp4 10.0_3366_sleepy-sangria-bat-69ec1452a14b-20220418-205425.mp4\r\n10.0_1357_lovely-persimmon-angora-3404e92e626c-20220420-145930.mp4 10.0_3367_sleepy-sangria-bat-69ec1452a14b-20220418-205925.mp4\r\n10.0_1358_lovely-persimmon-angora-3404e92e626c-20220420-150430.mp4 10.0_3368_sleepy-sangria-bat-6d257b873b79-20220418-204120.mp4\r\n10.0_1359_lovely-persimmon-angora-3404e92e626c-20220420-150927.mp4 10.0_3369_sleepy-sangria-bat-6d257b873b79-20220418-204617.mp4\r\n10.0_135_cheeky-cornflower-setter-603ae953a25f-20220417-205436.mp4 10.0_336_cheeky-cornflower-setter-ba761252d897-20220419-094338.mp4\r\n10.0_1360_lovely-persimmon-angora-3404e92e626c-20220420-151426.mp4 10.0_3370_sleepy-sangria-bat-6d257b873b79-20220418-205115.mp4\r\n10.0_1361_lovely-persimmon-angora-34e052d104c7-20220415-050919.mp4 10.0_3371_sleepy-sangria-bat-6e8b1824d178-20220421-091247.mp4\r\n10.0_1362_lovely-persimmon-angora-352cffd8e048-20220419-152548.mp4 10.0_3372_sleepy-sangria-bat-8098c744ddd2-20220421-094050.mp4\r\n10.0_1363_lovely-persimmon-angora-3548d13fdcf3-20220422-075440.mp4 10.0_3373_sleepy-sangria-bat-900bba940d98-20220421-083811.mp4\r\n10.0_1364_lovely-persimmon-angora-3548d13fdcf3-20220422-080005.mp4 10.0_3374_sleepy-sangria-bat-900bba940d98-20220421-084309.mp4\r\n10.0_1365_lovely-persimmon-angora-3548d13fdcf3-20220422-080503.mp4 10.0_3375_sleepy-sangria-bat-900bba940d98-20220421-084807.mp4\r\n10.0_1366_lovely-persimmon-angora-3548d13fdcf3-20220422-081001.mp4 10.0_3376_sleepy-sangria-bat-94c55b03c383-20220421-131426.mp4\r\n10.0_1367_lovely-persimmon-angora-3657d516f483-20220416-095509.mp4 10.0_3377_sleepy-sangria-bat-94c55b03c383-20220421-131924.mp4\r\n10.0_1368_lovely-persimmon-angora-37459773914b-20220420-114827.mp4 10.0_3378_sleepy-sangria-bat-96d58ff0544b-20220422-184809.mp4\r\n10.0_1369_lovely-persimmon-angora-37459773914b-20220420-115328.mp4 10.0_3379_sleepy-sangria-bat-96d58ff0544b-20220422-185307.mp4\r\n10.0_136_cheeky-cornflower-setter-603ae953a25f-20220417-210004.mp4 10.0_337_cheeky-cornflower-setter-ba761252d897-20220419-094848.mp4\r\n10.0_1370_lovely-persimmon-angora-37459773914b-20220420-115826.mp4 10.0_3380_sleepy-sangria-bat-96d58ff0544b-20220422-185805.mp4\r\n10.0_1371_lovely-persimmon-angora-37459773914b-20220420-120326.mp4 10.0_3381_sleepy-sangria-bat-96d58ff0544b-20220422-190303.mp4\r\n10.0_1372_lovely-persimmon-angora-3a253264372c-20220416-152319.mp4 10.0_3382_sleepy-sangria-bat-96d58ff0544b-20220422-190800.mp4\r\n10.0_1373_lovely-persimmon-angora-3a253264372c-20220416-152824.mp4 10.0_3383_sleepy-sangria-bat-9c76ecb83494-20220423-111316.mp4\r\n10.0_1374_lovely-persimmon-angora-3a253264372c-20220416-153323.mp4 10.0_3384_sleepy-sangria-bat-9c76ecb83494-20220423-111813.mp4\r\n10.0_1375_lovely-persimmon-angora-3a3b72afb244-20220419-192250.mp4 10.0_3385_sleepy-sangria-bat-a06163ca0757-20220419-191705.mp4\r\n10.0_1376_lovely-persimmon-angora-3a3b72afb244-20220419-192752.mp4 10.0_3386_sleepy-sangria-bat-a4c5196155a2-20220419-001159.mp4\r\n10.0_1377_lovely-persimmon-angora-3ad5180d2c59-20220416-022422.mp4 10.0_3387_sleepy-sangria-bat-a4c5196155a2-20220419-005156.mp4\r\n10.0_1378_lovely-persimmon-angora-3ad5180d2c59-20220416-023734.mp4 10.0_3388_sleepy-sangria-bat-a4c5196155a2-20220419-005653.mp4\r\n10.0_1379_lovely-persimmon-angora-3ad5180d2c59-20220416-024231.mp4 10.0_3389_sleepy-sangria-bat-a4c5196155a2-20220419-010151.mp4\r\n10.0_137_cheeky-cornflower-setter-603ae953a25f-20220417-210521.mp4 10.0_338_cheeky-cornflower-setter-ba761252d897-20220419-095402.mp4\r\n10.0_1380_lovely-persimmon-angora-3ad5180d2c59-20220416-024730.mp4 10.0_3390_sleepy-sangria-bat-a6ce56407b9d-20220423-095713.mp4\r\n10.0_1381_lovely-persimmon-angora-3ad5180d2c59-20220416-025228.mp4 10.0_3391_sleepy-sangria-bat-ad6c33905986-20220421-092210.mp4\r\n10.0_1382_lovely-persimmon-angora-3b30c4a4049a-20220420-130935.mp4 10.0_3392_sleepy-sangria-bat-ad6c33905986-20220421-092738.mp4\r\n10.0_1383_lovely-persimmon-angora-3b30c4a4049a-20220420-131436.mp4 10.0_3393_sleepy-sangria-bat-ad6c33905986-20220421-093235.mp4\r\n10.0_1384_lovely-persimmon-angora-3c78468a9042-20220419-145545.mp4 10.0_3394_sleepy-sangria-bat-b2a5afa4351e-20220421-091217.mp4\r\n10.0_1385_lovely-persimmon-angora-3c78468a9042-20220419-150045.mp4 10.0_3395_sleepy-sangria-bat-b2a7525cf086-20220419-080541.mp4\r\n10.0_1386_lovely-persimmon-angora-3c78468a9042-20220419-150543.mp4 10.0_3396_sleepy-sangria-bat-b2a7525cf086-20220419-081047.mp4\r\n10.0_1387_lovely-persimmon-angora-3c78468a9042-20220419-151042.mp4 10.0_3397_sleepy-sangria-bat-c884235aa093-20220422-194033.mp4\r\n10.0_1388_lovely-persimmon-angora-3d74490f8409-20220420-163118.mp4 10.0_3398_sleepy-sangria-bat-c884235aa093-20220422-194533.mp4\r\n10.0_1389_lovely-persimmon-angora-414f1d1a86b7-20220420-135058.mp4 10.0_3399_sleepy-sangria-bat-c884235aa093-20220422-195031.mp4\r\n10.0_138_cheeky-cornflower-setter-603ae953a25f-20220417-211032.mp4 10.0_339_cheeky-cornflower-setter-ba761252d897-20220419-095909.mp4\r\n10.0_1390_lovely-persimmon-angora-414f1d1a86b7-20220420-135718.mp4 10.0_3400_sleepy-sangria-bat-c884235aa093-20220422-195529.mp4\r\n10.0_1391_lovely-persimmon-angora-4212e3280f44-20220422-005831.mp4 10.0_3401_sleepy-sangria-bat-c884235aa093-20220422-200026.mp4\r\n10.0_1392_lovely-persimmon-angora-4212e3280f44-20220422-010331.mp4 10.0_3402_sleepy-sangria-bat-c9625ede275b-20220421-094149.mp4\r\n10.0_1393_lovely-persimmon-angora-4212e3280f44-20220422-010831.mp4 10.0_3403_sleepy-sangria-bat-d10cb639eb47-20220421-094602.mp4\r\n10.0_1394_lovely-persimmon-angora-4212e3280f44-20220422-011333.mp4 10.0_3404_sleepy-sangria-bat-d10cb639eb47-20220421-095100.mp4\r\n10.0_1395_lovely-persimmon-angora-4212e3280f44-20220422-011834.mp4 10.0_3405_sleepy-sangria-bat-e280bfe2e7f2-20220418-203322.mp4\r\n10.0_1396_lovely-persimmon-angora-422fb1d1c106-20220421-065801.mp4 10.0_3406_sleepy-sangria-bat-e280bfe2e7f2-20220418-203819.mp4\r\n10.0_1397_lovely-persimmon-angora-422fb1d1c106-20220421-070303.mp4 10.0_3407_sleepy-sangria-bat-ec361314e1ef-20220421-093605.mp4\r\n10.0_1398_lovely-persimmon-angora-4647402a7d60-20220416-144819.mp4 10.0_3408_sleepy-sangria-bat-f153ac423f61-20220414-083132.mp4\r\n10.0_1399_lovely-persimmon-angora-4651643a9112-20220416-185933.mp4 10.0_3409_sleepy-sangria-bat-f153ac423f61-20220414-083631.mp4\r\n10.0_139_cheeky-cornflower-setter-62c1ef37385e-20220416-101441.mp4 10.0_340_cheeky-cornflower-setter-bb79267bce10-20220423-201318.mp4\r\n10.0_1400_lovely-persimmon-angora-4651643a9112-20220416-190437.mp4 10.0_3410_sleepy-sangria-bat-f153ac423f61-20220414-090329.mp4\r\n10.0_1401_lovely-persimmon-angora-4651643a9112-20220416-190936.mp4 10.0_3411_sleepy-sangria-bat-f153ac423f61-20220414-090827.mp4\r\n10.0_1402_lovely-persimmon-angora-4651643a9112-20220416-191435.mp4 10.0_3412_sleepy-sangria-bat-f153ac423f61-20220414-091838.mp4\r\n10.0_1403_lovely-persimmon-angora-4651643a9112-20220416-191934.mp4 10.0_3413_sleepy-sangria-bat-f153ac423f61-20220414-092347.mp4\r\n10.0_1404_lovely-persimmon-angora-475f5933cfa7-20220416-065610.mp4 10.0_3414_sleepy-sangria-bat-f153ac423f61-20220414-093630.mp4\r\n10.0_1405_lovely-persimmon-angora-475f5933cfa7-20220416-070121.mp4 10.0_3415_sleepy-sangria-bat-f153ac423f61-20220414-094128.mp4\r\n10.0_1406_lovely-persimmon-angora-475f5933cfa7-20220416-071121.mp4 10.0_3416_sleepy-sangria-bat-f153ac423f61-20220414-104630.mp4\r\n10.0_1407_lovely-persimmon-angora-4843c8b8be9c-20220417-153645.mp4 10.0_3417_sleepy-sangria-bat-f153ac423f61-20220414-105210.mp4\r\n10.0_1408_lovely-persimmon-angora-48bf00edae01-20220421-043237.mp4 10.0_3418_sleepy-sangria-bat-f153ac423f61-20220414-112115.mp4\r\n10.0_1409_lovely-persimmon-angora-48bf00edae01-20220421-043739.mp4 10.0_3419_sleepy-sangria-bat-f153ac423f61-20220414-123403.mp4\r\n10.0_140_cheeky-cornflower-setter-62c1ef37385e-20220416-102007.mp4 10.0_341_cheeky-cornflower-setter-bb79267bce10-20220423-202445.mp4\r\n10.0_1410_lovely-persimmon-angora-48bf00edae01-20220421-044238.mp4 10.0_3420_sleepy-sangria-bat-f153ac423f61-20220414-124315.mp4\r\n10.0_1411_lovely-persimmon-angora-48bf00edae01-20220421-044736.mp4 10.0_3421_sleepy-sangria-bat-f153ac423f61-20220414-124813.mp4\r\n10.0_1412_lovely-persimmon-angora-48bf00edae01-20220421-045234.mp4 10.0_3422_sleepy-sangria-bat-f153ac423f61-20220414-125310.mp4\r\n10.0_1413_lovely-persimmon-angora-49d1202850a7-20220421-110810.mp4 10.0_3423_sleepy-sangria-bat-f153ac423f61-20220414-131854.mp4\r\n10.0_1414_lovely-persimmon-angora-4d1f198cb701-20220422-073411.mp4 10.0_3424_sleepy-sangria-bat-f153ac423f61-20220414-132357.mp4\r\n10.0_1415_lovely-persimmon-angora-4d1f198cb701-20220422-073914.mp4 10.0_3425_sleepy-sangria-bat-f153ac423f61-20220416-134138.mp4\r\n10.0_1416_lovely-persimmon-angora-4d1f198cb701-20220422-074413.mp4 10.0_3426_sleepy-sangria-bat-f153ac423f61-20220416-134638.mp4\r\n10.0_1417_lovely-persimmon-angora-4d1f198cb701-20220422-074912.mp4 10.0_3427_sleepy-sangria-bat-f153ac423f61-20220416-140510.mp4\r\n10.0_1418_lovely-persimmon-angora-4d1f198cb701-20220422-075411.mp4 10.0_3428_sleepy-sangria-bat-f153ac423f61-20220416-141008.mp4\r\n10.0_1419_lovely-persimmon-angora-4d8e395803e9-20220422-210039.mp4 10.0_3429_sleepy-sangria-bat-f153ac423f61-20220416-141506.mp4\r\n10.0_141_cheeky-cornflower-setter-64d26e336638-20220417-145631.mp4 10.0_342_cheeky-cornflower-setter-bb8af8e8276f-20220419-110706.mp4\r\n10.0_1420_lovely-persimmon-angora-4d8e395803e9-20220422-211257.mp4 10.0_3430_sleepy-sangria-bat-f153ac423f61-20220416-174123.mp4\r\n10.0_1421_lovely-persimmon-angora-4d8e395803e9-20220422-212253.mp4 10.0_3431_sleepy-sangria-bat-f153ac423f61-20220416-174628.mp4\r\n10.0_1422_lovely-persimmon-angora-4e0615a6802e-20220421-065428.mp4 10.0_3432_sleepy-sangria-bat-f153ac423f61-20220418-195822.mp4\r\n10.0_1423_lovely-persimmon-angora-4e6c840dbd29-20220420-175239.mp4 10.0_3433_sleepy-sangria-bat-f153ac423f61-20220418-200413.mp4\r\n10.0_1424_lovely-persimmon-angora-4e6c840dbd29-20220420-175746.mp4 10.0_3434_sleepy-sangria-bat-f153ac423f61-20220418-233736.mp4\r\n10.0_1425_lovely-persimmon-angora-4edb8898a34e-20220420-162029.mp4 10.0_3435_sleepy-sangria-bat-f153ac423f61-20220418-234235.mp4\r\n10.0_1426_lovely-persimmon-angora-505c82e4e26a-20220417-201445.mp4 10.0_3436_sleepy-sangria-bat-f153ac423f61-20220419-074604.mp4\r\n10.0_1427_lovely-persimmon-angora-505c82e4e26a-20220417-201949.mp4 10.0_3437_sleepy-sangria-bat-f153ac423f61-20220419-075112.mp4\r\n10.0_1428_lovely-persimmon-angora-505c82e4e26a-20220417-202448.mp4 10.0_3438_sleepy-sangria-bat-f153ac423f61-20220419-112036.mp4\r\n10.0_1429_lovely-persimmon-angora-505c82e4e26a-20220417-202947.mp4 10.0_3439_sleepy-sangria-bat-f153ac423f61-20220419-112534.mp4\r\n10.0_142_cheeky-cornflower-setter-64d26e336638-20220417-150219.mp4 10.0_343_cheeky-cornflower-setter-bc4987dff6a7-20220423-220043.mp4\r\n10.0_1430_lovely-persimmon-angora-5169bb1b965f-20220420-003757.mp4 10.0_3440_sleepy-sangria-bat-f153ac423f61-20220419-184021.mp4\r\n10.0_1431_lovely-persimmon-angora-5169bb1b965f-20220420-004804.mp4 10.0_3441_sleepy-sangria-bat-f153ac423f61-20220419-184519.mp4\r\n10.0_1432_lovely-persimmon-angora-5169bb1b965f-20220420-005805.mp4 10.0_3442_sleepy-sangria-bat-f153ac423f61-20220419-185017.mp4\r\n10.0_1433_lovely-persimmon-angora-519543ffb3ff-20220420-102616.mp4 10.0_3443_sleepy-sangria-bat-f153ac423f61-20220419-185514.mp4\r\n10.0_1434_lovely-persimmon-angora-519543ffb3ff-20220420-103119.mp4 10.0_3444_sleepy-sangria-bat-f153ac423f61-20220419-194644.mp4\r\n10.0_1435_lovely-persimmon-angora-519543ffb3ff-20220420-103618.mp4 10.0_3445_sleepy-sangria-bat-f153ac423f61-20220419-195143.mp4\r\n10.0_1436_lovely-persimmon-angora-5214c796ec92-20220421-222924.mp4 10.0_3446_sleepy-sangria-bat-f153ac423f61-20220419-195641.mp4\r\n10.0_1437_lovely-persimmon-angora-5214c796ec92-20220421-223425.mp4 10.0_3447_sleepy-sangria-bat-f153ac423f61-20220420-121808.mp4\r\n10.0_1438_lovely-persimmon-angora-5214c796ec92-20220421-223924.mp4 10.0_3448_sleepy-sangria-bat-f153ac423f61-20220420-122310.mp4\r\n10.0_1439_lovely-persimmon-angora-530398bfed86-20220419-202013.mp4 10.0_3449_sleepy-sangria-bat-f153ac423f61-20220420-122808.mp4\r\n10.0_143_cheeky-cornflower-setter-64d26e336638-20220417-150726.mp4 10.0_344_cheeky-cornflower-setter-bc4987dff6a7-20220423-221053.mp4\r\n10.0_1440_lovely-persimmon-angora-530398bfed86-20220419-203514.mp4 10.0_3450_sleepy-sangria-bat-f153ac423f61-20220420-123306.mp4\r\n10.0_1441_lovely-persimmon-angora-5370508beb1f-20220419-061637.mp4 10.0_3451_sleepy-sangria-bat-f153ac423f61-20220420-123803.mp4\r\n10.0_1442_lovely-persimmon-angora-53d61a51fb45-20220418-070612.mp4 10.0_3452_sleepy-sangria-bat-f153ac423f61-20220420-195234.mp4\r\n10.0_1443_lovely-persimmon-angora-53d61a51fb45-20220418-071119.mp4 10.0_3453_sleepy-sangria-bat-f153ac423f61-20220420-195732.mp4\r\n10.0_1444_lovely-persimmon-angora-53d61a51fb45-20220418-071619.mp4 10.0_3454_sleepy-sangria-bat-f153ac423f61-20220420-200230.mp4\r\n10.0_1445_lovely-persimmon-angora-53d61a51fb45-20220418-072120.mp4 10.0_3455_sleepy-sangria-bat-f153ac423f61-20220421-083145.mp4\r\n10.0_1446_lovely-persimmon-angora-54559f55b0ac-20220419-041958.mp4 10.0_3456_sleepy-sangria-bat-f153ac423f61-20220421-083643.mp4\r\n10.0_1447_lovely-persimmon-angora-571b2b041533-20220423-000650.mp4 10.0_3457_sleepy-sangria-bat-f153ac423f61-20220421-091455.mp4\r\n10.0_1448_lovely-persimmon-angora-5734d26786c1-20220417-134921.mp4 10.0_3458_sleepy-sangria-bat-f153ac423f61-20220421-130011.mp4\r\n10.0_1449_lovely-persimmon-angora-587b22a134cc-20220421-025934.mp4 10.0_3459_sleepy-sangria-bat-f153ac423f61-20220421-130526.mp4\r\n10.0_144_cheeky-cornflower-setter-65ecf468b668-20220418-130826.mp4 10.0_345_cheeky-cornflower-setter-bf89cc58758a-20220414-205319.mp4\r\n10.0_1450_lovely-persimmon-angora-5a2f21a32abf-20220414-231147.mp4 10.0_3460_sleepy-sangria-bat-f153ac423f61-20220421-131024.mp4\r\n10.0_1451_lovely-persimmon-angora-5afd3b4eead3-20220415-192240.mp4 10.0_3461_sleepy-sangria-bat-f153ac423f61-20220422-142154.mp4\r\n10.0_1452_lovely-persimmon-angora-5b6e42917ab6-20220422-234451.mp4 10.0_3462_sleepy-sangria-bat-f153ac423f61-20220422-142654.mp4\r\n10.0_1453_lovely-persimmon-angora-5cfbbfb6dc01-20220417-135348.mp4 10.0_3463_sleepy-sangria-bat-f153ac423f61-20220422-143153.mp4\r\n10.0_1454_lovely-persimmon-angora-5f071212c398-20220421-051339.mp4 10.0_3464_sleepy-sangria-bat-f153ac423f61-20220422-143650.mp4\r\n10.0_1455_lovely-persimmon-angora-5f071212c398-20220421-051841.mp4 10.0_3465_sleepy-sangria-bat-f153ac423f61-20220422-183907.mp4\r\n10.0_1456_lovely-persimmon-angora-5f071212c398-20220421-052339.mp4 10.0_3466_sleepy-sangria-bat-f153ac423f61-20220422-184405.mp4\r\n10.0_1457_lovely-persimmon-angora-5f071212c398-20220421-052837.mp4 10.0_3467_sleepy-sangria-bat-f153ac423f61-20220423-075950.mp4\r\n10.0_1458_lovely-persimmon-angora-5f564d869597-20220422-191422.mp4 10.0_3468_sleepy-sangria-bat-f153ac423f61-20220423-080448.mp4\r\n10.0_1459_lovely-persimmon-angora-5f564d869597-20220422-193004.mp4 10.0_3469_sleepy-sangria-bat-f153ac423f61-20220423-080946.mp4\r\n10.0_145_cheeky-cornflower-setter-6a13704ffb3a-20220421-152435.mp4 10.0_346_cheeky-cornflower-setter-bf89cc58758a-20220414-205826.mp4\r\n10.0_1460_lovely-persimmon-angora-5f564d869597-20220422-193503.mp4 10.0_3470_sleepy-sangria-bat-f153ac423f61-20220423-081443.mp4\r\n10.0_1461_lovely-persimmon-angora-607d3aa51fea-20220417-223957.mp4 10.0_3471_sleepy-sangria-bat-f153ac423f61-20220423-081941.mp4\r\n10.0_1462_lovely-persimmon-angora-607d3aa51fea-20220417-224501.mp4 10.0_3472_sleepy-sangria-bat-f153ac423f61-20220423-101106.mp4\r\n10.0_1463_lovely-persimmon-angora-607d3aa51fea-20220417-225003.mp4 10.0_3473_sleepy-sangria-bat-f153ac423f61-20220423-101604.mp4\r\n10.0_1464_lovely-persimmon-angora-607d3aa51fea-20220417-225504.mp4 10.0_3474_sleepy-sangria-bat-f153ac423f61-20220423-102102.mp4\r\n10.0_1465_lovely-persimmon-angora-607d3aa51fea-20220417-230002.mp4 10.0_3475_sleepy-sangria-bat-f153ac423f61-20220423-102600.mp4\r\n10.0_1466_lovely-persimmon-angora-630146405c59-20220420-093409.mp4 10.0_3476_sleepy-sangria-bat-f153ac423f61-20220423-103057.mp4\r\n10.0_1467_lovely-persimmon-angora-630146405c59-20220420-093912.mp4 10.0_3477_sleepy-sangria-bat-f153ac423f61-20220423-134112.mp4\r\n10.0_1468_lovely-persimmon-angora-630146405c59-20220420-094411.mp4 10.0_3478_sleepy-sangria-bat-f153ac423f61-20220423-134610.mp4\r\n10.0_1469_lovely-persimmon-angora-630146405c59-20220420-094910.mp4 10.0_3479_sleepy-sangria-bat-f153ac423f61-20220423-135108.mp4\r\n10.0_146_cheeky-cornflower-setter-6a13704ffb3a-20220421-153440.mp4 10.0_347_cheeky-cornflower-setter-bf89cc58758a-20220414-210333.mp4\r\n10.0_1470_lovely-persimmon-angora-630146405c59-20220420-095408.mp4 10.0_3480_sleepy-sangria-bat-f153ac423f61-20220423-135605.mp4\r\n10.0_1471_lovely-persimmon-angora-649904ae671b-20220420-134734.mp4 10.0_3481_sleepy-sangria-bat-f153ac423f61-20220423-175602.mp4\r\n10.0_1472_lovely-persimmon-angora-656b0f8dff54-20220417-173620.mp4 10.0_3482_sleepy-sangria-bat-f153ac423f61-20220423-180106.mp4\r\n10.0_1473_lovely-persimmon-angora-656b0f8dff54-20220417-174123.mp4 10.0_3483_sleepy-sangria-bat-f153ac423f61-20220423-180604.mp4\r\n10.0_1474_lovely-persimmon-angora-656b0f8dff54-20220417-174624.mp4 10.0_3484_sleepy-sangria-bat-f153ac423f61-20220423-181101.mp4\r\n10.0_1475_lovely-persimmon-angora-656b0f8dff54-20220417-175122.mp4 10.0_3485_sleepy-sangria-bat-f153ac423f61-20220423-192037.mp4\r\n10.0_1476_lovely-persimmon-angora-656b0f8dff54-20220417-175621.mp4 10.0_3486_sleepy-sangria-bat-f153ac423f61-20220423-192535.mp4\r\n10.0_1477_lovely-persimmon-angora-65993931df7a-20220423-090516.mp4 10.0_3487_sleepy-sangria-bat-f153ac423f61-20220423-193033.mp4\r\n10.0_1478_lovely-persimmon-angora-65993931df7a-20220423-091020.mp4 10.0_3488_sleepy-sangria-bat-f153ac423f61-20220423-193531.mp4\r\n10.0_1479_lovely-persimmon-angora-65993931df7a-20220423-091519.mp4 10.0_3489_sleepy-sangria-bat-f153ac423f61-20220423-194028.mp4\r\n10.0_147_cheeky-cornflower-setter-6b3831c95bf8-20220417-112336.mp4 10.0_348_cheeky-cornflower-setter-bf8ed7e000e0-20220417-170003.mp4\r\n10.0_1480_lovely-persimmon-angora-65993931df7a-20220423-092017.mp4 10.0_3490_sleepy-sangria-bat-fa0de4ef2478-20220423-082844.mp4\r\n10.0_1481_lovely-persimmon-angora-65993931df7a-20220423-092522.mp4 10.0_3491_sleepy-sangria-bat-fa0de4ef2478-20220423-083341.mp4\r\n10.0_1482_lovely-persimmon-angora-6a1dbd38c061-20220419-145138.mp4 10.0_3492_snippy-chartreuse-mastiff-540f6a3be856-20220418-221234.mp4\r\n10.0_1483_lovely-persimmon-angora-6b076902d6d1-20220420-025445.mp4 10.0_3493_snippy-chartreuse-mastiff-68b5723ce118-20220418-215842.mp4\r\n10.0_1484_lovely-persimmon-angora-6b076902d6d1-20220420-025957.mp4 10.0_3494_snippy-chartreuse-mastiff-68b5723ce118-20220418-220340.mp4\r\n10.0_1485_lovely-persimmon-angora-6b9f856320a4-20220416-210808.mp4 10.0_3495_snippy-chartreuse-mastiff-68b5723ce118-20220418-220839.mp4\r\n10.0_1486_lovely-persimmon-angora-6b9f856320a4-20220416-211509.mp4 10.0_3496_snippy-chartreuse-mastiff-6cbb3de3d25d-20220418-221344.mp4\r\n10.0_1487_lovely-persimmon-angora-6d78b882a101-20220422-132722.mp4 10.0_3497_snippy-chartreuse-mastiff-6cbb3de3d25d-20220418-221841.mp4\r\n10.0_1488_lovely-persimmon-angora-6d78b882a101-20220422-133227.mp4 10.0_3498_snippy-chartreuse-mastiff-6cbb3de3d25d-20220418-222342.mp4\r\n10.0_1489_lovely-persimmon-angora-6d78b882a101-20220422-133726.mp4 10.0_3499_snippy-chartreuse-mastiff-6cbb3de3d25d-20220418-222839.mp4\r\n10.0_148_cheeky-cornflower-setter-6b3831c95bf8-20220417-112844.mp4 10.0_349_cheeky-cornflower-setter-bf8ed7e000e0-20220417-170515.mp4\r\n10.0_1490_lovely-persimmon-angora-6d78b882a101-20220422-134224.mp4 10.0_3500_snippy-chartreuse-mastiff-f153ac423f61-20220418-214117.mp4\r\n10.0_1491_lovely-persimmon-angora-6d78b882a101-20220422-134724.mp4 10.0_3501_snippy-chartreuse-mastiff-f153ac423f61-20220418-214616.mp4\r\n10.0_1492_lovely-persimmon-angora-6e7076db228a-20220419-180013.mp4 10.0_3502_snippy-chartreuse-mastiff-f153ac423f61-20220418-215115.mp4\r\n10.0_1493_lovely-persimmon-angora-6fcfe95568b8-20220420-053933.mp4 10.0_3503_snippy-chartreuse-mastiff-f153ac423f61-20220418-215614.mp4\r\n10.0_1494_lovely-persimmon-angora-6fcfe95568b8-20220420-054441.mp4 10.0_3504_squeaky-magnolia-ocelot-014f0ece98db-20220418-131818.mp4\r\n",,terminal_output +329,843445,"TERMINAL",0,0,"10.0_1495_lovely-persimmon-angora-6fcfe95568b8-20220420-054945.mp4 10.0_3505_squeaky-magnolia-ocelot-06d076f8aae5-20220421-094345.mp4\r\n10.0_1496_lovely-persimmon-angora-6fcfe95568b8-20220420-055448.mp4 10.0_3506_squeaky-magnolia-ocelot-06d076f8aae5-20220421-094845.mp4\r\n10.0_1497_lovely-persimmon-angora-6fcfe95568b8-20220420-055949.mp4 10.0_3507_squeaky-magnolia-ocelot-06d076f8aae5-20220421-095341.mp4\r\n10.0_1498_lovely-persimmon-angora-712ead71701b-20220416-082630.mp4 10.0_3508_squeaky-magnolia-ocelot-06d076f8aae5-20220421-095837.mp4\r\n10.0_1499_lovely-persimmon-angora-71e999b8825e-20220416-161141.mp4 10.0_3509_squeaky-magnolia-ocelot-06d076f8aae5-20220421-100332.mp4\r\n10.0_149_cheeky-cornflower-setter-6b3831c95bf8-20220417-113353.mp4 10.0_350_cheeky-cornflower-setter-bf8ed7e000e0-20220417-171029.mp4\r\n10.0_1500_lovely-persimmon-angora-71e999b8825e-20220416-161644.mp4 10.0_3510_squeaky-magnolia-ocelot-06ddd1ba5402-20220419-122246.mp4\r\n10.0_1501_lovely-persimmon-angora-71e999b8825e-20220416-162142.mp4 10.0_3511_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-143307.mp4\r\n10.0_1502_lovely-persimmon-angora-71e999b8825e-20220416-162641.mp4 10.0_3512_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-143812.mp4\r\n10.0_1503_lovely-persimmon-angora-71e999b8825e-20220416-163139.mp4 10.0_3513_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-144309.mp4\r\n10.0_1504_lovely-persimmon-angora-72cb86c4a5cf-20220417-140116.mp4 10.0_3514_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-144804.mp4\r\n10.0_1505_lovely-persimmon-angora-72cb86c4a5cf-20220417-140741.mp4 10.0_3515_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-145300.mp4\r\n10.0_1506_lovely-persimmon-angora-72cb86c4a5cf-20220417-141356.mp4 10.0_3516_squeaky-magnolia-ocelot-12c3ac2ddd81-20220418-175609.mp4\r\n10.0_1507_lovely-persimmon-angora-72da6caace0d-20220418-222516.mp4 10.0_3517_squeaky-magnolia-ocelot-12c3ac2ddd81-20220418-180105.mp4\r\n10.0_1508_lovely-persimmon-angora-72da6caace0d-20220418-223711.mp4 10.0_3518_squeaky-magnolia-ocelot-12c3ac2ddd81-20220418-180602.mp4\r\n10.0_1509_lovely-persimmon-angora-72da6caace0d-20220418-224212.mp4 10.0_3519_squeaky-magnolia-ocelot-12c3ac2ddd81-20220418-181057.mp4\r\n10.0_150_cheeky-cornflower-setter-6b3831c95bf8-20220417-113902.mp4 10.0_351_cheeky-cornflower-setter-bf8ed7e000e0-20220417-171541.mp4\r\n10.0_1510_lovely-persimmon-angora-72da6caace0d-20220418-224711.mp4 10.0_3520_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-201359.mp4\r\n10.0_1511_lovely-persimmon-angora-7320f0823e89-20220417-103104.mp4 10.0_3521_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-201856.mp4\r\n10.0_1512_lovely-persimmon-angora-7320f0823e89-20220417-103607.mp4 10.0_3522_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-202352.mp4\r\n10.0_1513_lovely-persimmon-angora-7320f0823e89-20220417-104107.mp4 10.0_3523_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-202848.mp4\r\n10.0_1514_lovely-persimmon-angora-7320f0823e89-20220417-105020.mp4 10.0_3524_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-203346.mp4\r\n10.0_1515_lovely-persimmon-angora-7320f0823e89-20220417-105518.mp4 10.0_3525_squeaky-magnolia-ocelot-18af0fece069-20220420-104912.mp4\r\n10.0_1516_lovely-persimmon-angora-738809e79cc7-20220416-145446.mp4 10.0_3526_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-190056.mp4\r\n10.0_1517_lovely-persimmon-angora-738809e79cc7-20220416-145947.mp4 10.0_3527_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-190554.mp4\r\n10.0_1518_lovely-persimmon-angora-738809e79cc7-20220416-150446.mp4 10.0_3528_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-191050.mp4\r\n10.0_1519_lovely-persimmon-angora-738809e79cc7-20220416-150944.mp4 10.0_3529_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-192144.mp4\r\n10.0_151_cheeky-cornflower-setter-6b3831c95bf8-20220417-114517.mp4 10.0_352_cheeky-cornflower-setter-bf8ed7e000e0-20220417-172052.mp4\r\n10.0_1520_lovely-persimmon-angora-738809e79cc7-20220416-151443.mp4 10.0_3530_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-192640.mp4\r\n10.0_1521_lovely-persimmon-angora-743ac0c64519-20220416-212236.mp4 10.0_3531_squeaky-magnolia-ocelot-1bf1b2dfc348-20220419-122814.mp4\r\n10.0_1522_lovely-persimmon-angora-745ac70d0d29-20220417-143242.mp4 10.0_3532_squeaky-magnolia-ocelot-1bf1b2dfc348-20220419-123311.mp4\r\n10.0_1523_lovely-persimmon-angora-745ac70d0d29-20220417-143935.mp4 10.0_3533_squeaky-magnolia-ocelot-1bf1b2dfc348-20220419-123808.mp4\r\n10.0_1524_lovely-persimmon-angora-745ac70d0d29-20220417-144614.mp4 10.0_3534_squeaky-magnolia-ocelot-1d447a45b314-20220418-135427.mp4\r\n10.0_1525_lovely-persimmon-angora-745ac70d0d29-20220417-145244.mp4 10.0_3535_squeaky-magnolia-ocelot-2008cc72bb84-20220419-110840.mp4\r\n10.0_1526_lovely-persimmon-angora-745ac70d0d29-20220417-145911.mp4 10.0_3536_squeaky-magnolia-ocelot-2008cc72bb84-20220419-111541.mp4\r\n10.0_1527_lovely-persimmon-angora-74bbc35ef0c9-20220421-062643.mp4 10.0_3537_squeaky-magnolia-ocelot-2008cc72bb84-20220419-112037.mp4\r\n10.0_1528_lovely-persimmon-angora-74bbc35ef0c9-20220421-063144.mp4 10.0_3538_squeaky-magnolia-ocelot-2409199cd25b-20220422-153821.mp4\r\n10.0_1529_lovely-persimmon-angora-74bbc35ef0c9-20220421-063643.mp4 10.0_3539_squeaky-magnolia-ocelot-2812d6574782-20220420-103125.mp4\r\n10.0_152_cheeky-cornflower-setter-6c257421683e-20220422-114532.mp4 10.0_353_cheeky-cornflower-setter-c2135fcb03e2-20220415-110233.mp4\r\n10.0_1530_lovely-persimmon-angora-74bbc35ef0c9-20220421-064141.mp4 10.0_3540_squeaky-magnolia-ocelot-2812d6574782-20220420-103622.mp4\r\n10.0_1531_lovely-persimmon-angora-74bbc35ef0c9-20220421-064639.mp4 10.0_3541_squeaky-magnolia-ocelot-2812d6574782-20220420-104118.mp4\r\n10.0_1532_lovely-persimmon-angora-7553a4656624-20220415-053007.mp4 10.0_3542_squeaky-magnolia-ocelot-2812d6574782-20220420-104614.mp4\r\n10.0_1533_lovely-persimmon-angora-7599fb6e7242-20220417-040443.mp4 10.0_3543_squeaky-magnolia-ocelot-2a3c7528f150-20220416-190221.mp4\r\n10.0_1534_lovely-persimmon-angora-7599fb6e7242-20220417-042846.mp4 10.0_3544_squeaky-magnolia-ocelot-2a3c7528f150-20220416-190718.mp4\r\n10.0_1535_lovely-persimmon-angora-7599fb6e7242-20220417-043844.mp4 10.0_3545_squeaky-magnolia-ocelot-2d4575cab47f-20220418-134308.mp4\r\n10.0_1536_lovely-persimmon-angora-75fb305ee084-20220420-131844.mp4 10.0_3546_squeaky-magnolia-ocelot-2d4575cab47f-20220418-134804.mp4\r\n10.0_1537_lovely-persimmon-angora-75fb305ee084-20220420-132351.mp4 10.0_3547_squeaky-magnolia-ocelot-2d4575cab47f-20220418-135259.mp4\r\n10.0_1538_lovely-persimmon-angora-75fb305ee084-20220420-132915.mp4 10.0_3548_squeaky-magnolia-ocelot-3073a7d167db-20220415-071601.mp4\r\n10.0_1539_lovely-persimmon-angora-7658aa66e22a-20220422-234549.mp4 10.0_3549_squeaky-magnolia-ocelot-3073a7d167db-20220415-072113.mp4\r\n10.0_153_cheeky-cornflower-setter-6c257421683e-20220422-115440.mp4 10.0_354_cheeky-cornflower-setter-c2135fcb03e2-20220415-110741.mp4\r\n10.0_1540_lovely-persimmon-angora-7658aa66e22a-20220422-235556.mp4 10.0_3550_squeaky-magnolia-ocelot-3073a7d167db-20220415-072643.mp4\r\n10.0_1541_lovely-persimmon-angora-7658aa66e22a-20220423-000613.mp4 10.0_3551_squeaky-magnolia-ocelot-30c53141cff1-20220423-125207.mp4\r\n10.0_1542_lovely-persimmon-angora-7693e78d9d23-20220422-023053.mp4 10.0_3552_squeaky-magnolia-ocelot-32604c565cdb-20220422-154318.mp4\r\n10.0_1543_lovely-persimmon-angora-7693e78d9d23-20220422-025123.mp4 10.0_3553_squeaky-magnolia-ocelot-32604c565cdb-20220422-154821.mp4\r\n10.0_1544_lovely-persimmon-angora-77892a1198a4-20220422-143959.mp4 10.0_3554_squeaky-magnolia-ocelot-32604c565cdb-20220422-155317.mp4\r\n10.0_1545_lovely-persimmon-angora-77892a1198a4-20220422-144459.mp4 10.0_3555_squeaky-magnolia-ocelot-34778870719a-20220420-093459.mp4\r\n10.0_1546_lovely-persimmon-angora-77892a1198a4-20220422-144959.mp4 10.0_3556_squeaky-magnolia-ocelot-34778870719a-20220420-093957.mp4\r\n10.0_1547_lovely-persimmon-angora-791cca4a10a8-20220421-061219.mp4 10.0_3557_squeaky-magnolia-ocelot-34778870719a-20220420-094454.mp4\r\n10.0_1548_lovely-persimmon-angora-791cca4a10a8-20220421-061722.mp4 10.0_3558_squeaky-magnolia-ocelot-34778870719a-20220420-094950.mp4\r\n10.0_1549_lovely-persimmon-angora-791cca4a10a8-20220421-062220.mp4 10.0_3559_squeaky-magnolia-ocelot-3daa55bc69c3-20220416-092140.mp4\r\n10.0_154_cheeky-cornflower-setter-6cdc9b43a3a1-20220414-154844.mp4 10.0_355_cheeky-cornflower-setter-c2135fcb03e2-20220415-111248.mp4\r\n10.0_1550_lovely-persimmon-angora-79ffbb3df854-20220419-225534.mp4 10.0_3560_squeaky-magnolia-ocelot-40e41609dcd6-20220419-134424.mp4\r\n10.0_1551_lovely-persimmon-angora-7a854d9279bb-20220416-141734.mp4 10.0_3561_squeaky-magnolia-ocelot-40e41609dcd6-20220419-134921.mp4\r\n10.0_1552_lovely-persimmon-angora-7a854d9279bb-20220416-142241.mp4 10.0_3562_squeaky-magnolia-ocelot-40e41609dcd6-20220419-135417.mp4\r\n10.0_1553_lovely-persimmon-angora-7a854d9279bb-20220416-142742.mp4 10.0_3563_squeaky-magnolia-ocelot-4374ef1ea56b-20220415-080216.mp4\r\n10.0_1554_lovely-persimmon-angora-7a854d9279bb-20220416-143243.mp4 10.0_3564_squeaky-magnolia-ocelot-437519d58aac-20220419-135903.mp4\r\n10.0_1555_lovely-persimmon-angora-7b0cd2f1abf6-20220417-040147.mp4 10.0_3565_squeaky-magnolia-ocelot-437519d58aac-20220419-140400.mp4\r\n10.0_1556_lovely-persimmon-angora-7b22fa365d46-20220417-005705.mp4 10.0_3566_squeaky-magnolia-ocelot-437f3ba7c0ae-20220420-162319.mp4\r\n10.0_1557_lovely-persimmon-angora-7b22fa365d46-20220417-010219.mp4 10.0_3567_squeaky-magnolia-ocelot-437f3ba7c0ae-20220420-162931.mp4\r\n10.0_1558_lovely-persimmon-angora-7b38d5bef285-20220420-162259.mp4 10.0_3568_squeaky-magnolia-ocelot-437f3ba7c0ae-20220420-163427.mp4\r\n10.0_1559_lovely-persimmon-angora-7b38d5bef285-20220420-162801.mp4 10.0_3569_squeaky-magnolia-ocelot-44552e98ff73-20220422-104038.mp4\r\n10.0_155_cheeky-cornflower-setter-6cdc9b43a3a1-20220414-155352.mp4 10.0_356_cheeky-cornflower-setter-c2135fcb03e2-20220415-111756.mp4\r\n10.0_1560_lovely-persimmon-angora-7ba4c487812f-20220420-052539.mp4 10.0_3570_squeaky-magnolia-ocelot-44552e98ff73-20220422-104536.mp4\r\n10.0_1561_lovely-persimmon-angora-7d0fcab76bc2-20220416-163208.mp4 10.0_3571_squeaky-magnolia-ocelot-44552e98ff73-20220422-105033.mp4\r\n10.0_1562_lovely-persimmon-angora-7d0fcab76bc2-20220416-163710.mp4 10.0_3572_squeaky-magnolia-ocelot-44552e98ff73-20220422-105532.mp4\r\n10.0_1563_lovely-persimmon-angora-7d682bb20698-20220416-101545.mp4 10.0_3573_squeaky-magnolia-ocelot-44552e98ff73-20220422-110035.mp4\r\n10.0_1564_lovely-persimmon-angora-7ea730c64398-20220419-231200.mp4 10.0_3574_squeaky-magnolia-ocelot-47bc6ce2160b-20220417-171141.mp4\r\n10.0_1565_lovely-persimmon-angora-7f8e825a27df-20220416-015033.mp4 10.0_3575_squeaky-magnolia-ocelot-4a6ecdce0ea7-20220418-132354.mp4\r\n10.0_1566_lovely-persimmon-angora-7f8e825a27df-20220416-015708.mp4 10.0_3576_squeaky-magnolia-ocelot-4a6ecdce0ea7-20220418-132850.mp4\r\n10.0_1567_lovely-persimmon-angora-7f8e825a27df-20220416-020227.mp4 10.0_3577_squeaky-magnolia-ocelot-4a6ecdce0ea7-20220418-133346.mp4\r\n10.0_1568_lovely-persimmon-angora-7f8e825a27df-20220416-020740.mp4 10.0_3578_squeaky-magnolia-ocelot-4e1570f2d15d-20220421-203828.mp4\r\n10.0_1569_lovely-persimmon-angora-823d9b71dfcf-20220420-203025.mp4 10.0_3579_squeaky-magnolia-ocelot-4e1570f2d15d-20220421-204404.mp4\r\n10.0_156_cheeky-cornflower-setter-6cdc9b43a3a1-20220414-155901.mp4 10.0_357_cheeky-cornflower-setter-c290786d2cef-20220420-165322.mp4\r\n10.0_1570_lovely-persimmon-angora-823d9b71dfcf-20220420-204531.mp4 10.0_3580_squeaky-magnolia-ocelot-4e1570f2d15d-20220421-204901.mp4\r\n10.0_1571_lovely-persimmon-angora-82b80f21cf6e-20220421-032231.mp4 10.0_3581_squeaky-magnolia-ocelot-4e3bbb8b3b56-20220421-163102.mp4\r\n10.0_1572_lovely-persimmon-angora-82b80f21cf6e-20220421-033234.mp4 10.0_3582_squeaky-magnolia-ocelot-509691f9120b-20220420-101429.mp4\r\n10.0_1573_lovely-persimmon-angora-82b80f21cf6e-20220421-033733.mp4 10.0_3583_squeaky-magnolia-ocelot-509691f9120b-20220420-101926.mp4\r\n10.0_1574_lovely-persimmon-angora-82d0d7dcc979-20220420-172715.mp4 10.0_3584_squeaky-magnolia-ocelot-509691f9120b-20220420-102423.mp4\r\n10.0_1575_lovely-persimmon-angora-82d0d7dcc979-20220420-173217.mp4 10.0_3585_squeaky-magnolia-ocelot-509691f9120b-20220420-102919.mp4\r\n10.0_1576_lovely-persimmon-angora-82d0d7dcc979-20220420-173715.mp4 10.0_3586_squeaky-magnolia-ocelot-572c5f6bd98a-20220423-125145.mp4\r\n10.0_1577_lovely-persimmon-angora-82d0d7dcc979-20220420-174213.mp4 10.0_3587_squeaky-magnolia-ocelot-594c751a895b-20220419-232431.mp4\r\n10.0_1578_lovely-persimmon-angora-82d0d7dcc979-20220420-174712.mp4 10.0_3588_squeaky-magnolia-ocelot-594c751a895b-20220419-232939.mp4\r\n10.0_1579_lovely-persimmon-angora-84f724b3baed-20220414-232640.mp4 10.0_3589_squeaky-magnolia-ocelot-594c751a895b-20220419-233447.mp4\r\n10.0_157_cheeky-cornflower-setter-6cdc9b43a3a1-20220414-160408.mp4 10.0_358_cheeky-cornflower-setter-c290786d2cef-20220420-165901.mp4\r\n10.0_1580_lovely-persimmon-angora-851a639dc84a-20220421-095507.mp4 10.0_3590_squeaky-magnolia-ocelot-5a7a8c971ab1-20220419-184714.mp4\r\n10.0_1581_lovely-persimmon-angora-874d22448215-20220417-151944.mp4 10.0_3591_squeaky-magnolia-ocelot-5a7a8c971ab1-20220419-185210.mp4\r\n10.0_1582_lovely-persimmon-angora-87969cb13a0b-20220422-015932.mp4 10.0_3592_squeaky-magnolia-ocelot-5a7a8c971ab1-20220419-185706.mp4\r\n10.0_1583_lovely-persimmon-angora-87969cb13a0b-20220422-022001.mp4 10.0_3593_squeaky-magnolia-ocelot-62e20e313587-20220418-124909.mp4\r\n10.0_1584_lovely-persimmon-angora-87969cb13a0b-20220422-023011.mp4 10.0_3594_squeaky-magnolia-ocelot-687c157128ad-20220423-125830.mp4\r\n10.0_1585_lovely-persimmon-angora-879a9cb0694a-20220419-034702.mp4 10.0_3595_squeaky-magnolia-ocelot-6b7bcb068069-20220421-104438.mp4\r\n10.0_1586_lovely-persimmon-angora-884b1b11bf54-20220422-160156.mp4 10.0_3596_squeaky-magnolia-ocelot-6b7bcb068069-20220421-104939.mp4\r\n10.0_1587_lovely-persimmon-angora-887b54a21b84-20220420-185422.mp4 10.0_3597_squeaky-magnolia-ocelot-7082b4853688-20220421-201325.mp4\r\n10.0_1588_lovely-persimmon-angora-887b54a21b84-20220420-185925.mp4 10.0_3598_squeaky-magnolia-ocelot-7560471e5ff8-20220419-112432.mp4\r\n10.0_1589_lovely-persimmon-angora-8a79a71ce6fe-20220420-175206.mp4 10.0_3599_squeaky-magnolia-ocelot-75bba839d2d3-20220420-183705.mp4\r\n10.0_158_cheeky-cornflower-setter-6ec9971f230b-20220422-190211.mp4 10.0_359_cheeky-cornflower-setter-c290786d2cef-20220420-170449.mp4\r\n10.0_1590_lovely-persimmon-angora-8b10c346c832-20220422-134754.mp4 10.0_3600_squeaky-magnolia-ocelot-75bba839d2d3-20220420-184218.mp4\r\n10.0_1591_lovely-persimmon-angora-8b10c346c832-20220422-135259.mp4 10.0_3601_squeaky-magnolia-ocelot-75bba839d2d3-20220420-184840.mp4\r\n10.0_1592_lovely-persimmon-angora-8b10c346c832-20220422-135758.mp4 10.0_3602_squeaky-magnolia-ocelot-75bba839d2d3-20220420-185345.mp4\r\n10.0_1593_lovely-persimmon-angora-8b10c346c832-20220422-140257.mp4 10.0_3603_squeaky-magnolia-ocelot-76c99768d6e7-20220421-163845.mp4\r\n10.0_1594_lovely-persimmon-angora-8b10c346c832-20220422-140755.mp4 10.0_3604_squeaky-magnolia-ocelot-7b1546816d10-20220418-135457.mp4\r\n10.0_1595_lovely-persimmon-angora-8b54ea8e8ed7-20220420-141937.mp4 10.0_3605_squeaky-magnolia-ocelot-7b1546816d10-20220418-135953.mp4\r\n10.0_1596_lovely-persimmon-angora-8c0e49539e32-20220421-053239.mp4 10.0_3606_squeaky-magnolia-ocelot-7b1546816d10-20220418-140450.mp4\r\n10.0_1597_lovely-persimmon-angora-8cb1a92f3ff1-20220415-054155.mp4 10.0_3607_squeaky-magnolia-ocelot-7b1546816d10-20220418-140949.mp4\r\n10.0_1598_lovely-persimmon-angora-8e1349148c0d-20220420-005836.mp4 10.0_3608_squeaky-magnolia-ocelot-7ed546aa8ac8-20220422-155642.mp4\r\n10.0_1599_lovely-persimmon-angora-8e1349148c0d-20220420-010841.mp4 10.0_3609_squeaky-magnolia-ocelot-84ba90bac6b1-20220418-185044.mp4\r\n10.0_159_cheeky-cornflower-setter-6ec9971f230b-20220422-190719.mp4 10.0_360_cheeky-cornflower-setter-c34dc04557cf-20220421-160213.mp4\r\n10.0_1600_lovely-persimmon-angora-8e1349148c0d-20220420-011341.mp4 10.0_3610_squeaky-magnolia-ocelot-84ba90bac6b1-20220418-185649.mp4\r\n10.0_1601_lovely-persimmon-angora-8e1349148c0d-20220420-011842.mp4 10.0_3611_squeaky-magnolia-ocelot-84ba90bac6b1-20220418-190145.mp4\r\n10.0_1602_lovely-persimmon-angora-8f82d8bef92b-20220422-052120.mp4 10.0_3612_squeaky-magnolia-ocelot-8705f48637db-20220418-142538.mp4\r\n10.0_1603_lovely-persimmon-angora-92167b438183-20220420-135754.mp4 10.0_3613_squeaky-magnolia-ocelot-8705f48637db-20220418-143035.mp4\r\n10.0_1604_lovely-persimmon-angora-9274900cd269-20220418-233538.mp4 10.0_3614_squeaky-magnolia-ocelot-8705f48637db-20220418-143531.mp4\r\n10.0_1605_lovely-persimmon-angora-9285d21834d6-20220417-201028.mp4 10.0_3615_squeaky-magnolia-ocelot-8705f48637db-20220418-144026.mp4\r\n10.0_1606_lovely-persimmon-angora-92a1403d8e58-20220422-063402.mp4 10.0_3616_squeaky-magnolia-ocelot-8895e0c8f9ab-20220422-154249.mp4\r\n10.0_1607_lovely-persimmon-angora-92a1403d8e58-20220422-063937.mp4 10.0_3617_squeaky-magnolia-ocelot-8a68bfa92033-20220418-124134.mp4\r\n10.0_1608_lovely-persimmon-angora-92a1403d8e58-20220422-064435.mp4 10.0_3618_squeaky-magnolia-ocelot-8a68bfa92033-20220418-124631.mp4\r\n10.0_1609_lovely-persimmon-angora-92a1403d8e58-20220422-064934.mp4 10.0_3619_squeaky-magnolia-ocelot-8b0f1efce180-20220419-145329.mp4\r\n10.0_160_cheeky-cornflower-setter-6ec9971f230b-20220422-191225.mp4 10.0_361_cheeky-cornflower-setter-c34dc04557cf-20220421-161509.mp4\r\n10.0_1610_lovely-persimmon-angora-92a1403d8e58-20220422-065432.mp4 10.0_3620_squeaky-magnolia-ocelot-8b0f1efce180-20220419-145826.mp4\r\n10.0_1611_lovely-persimmon-angora-92de05e1a4b2-20220421-052900.mp4 10.0_3621_squeaky-magnolia-ocelot-8ef0953f796f-20220419-114908.mp4\r\n10.0_1612_lovely-persimmon-angora-93ba749bfcef-20220417-192215.mp4 10.0_3622_squeaky-magnolia-ocelot-8ef0953f796f-20220419-115404.mp4\r\n10.0_1613_lovely-persimmon-angora-93ba749bfcef-20220417-192723.mp4 10.0_3623_squeaky-magnolia-ocelot-944bda236649-20220420-183501.mp4\r\n10.0_1614_lovely-persimmon-angora-983cb1144d74-20220420-202159.mp4 10.0_3624_squeaky-magnolia-ocelot-98544c74f937-20220416-191633.mp4\r\n10.0_1615_lovely-persimmon-angora-98fb1d3cb54d-20220422-221722.mp4 10.0_3625_squeaky-magnolia-ocelot-98544c74f937-20220416-192155.mp4\r\n10.0_1616_lovely-persimmon-angora-98fb1d3cb54d-20220422-222227.mp4 10.0_3626_squeaky-magnolia-ocelot-98544c74f937-20220416-192652.mp4\r\n10.0_1617_lovely-persimmon-angora-98fb1d3cb54d-20220422-222728.mp4 10.0_3627_squeaky-magnolia-ocelot-9a4c635be656-20220418-144540.mp4\r\n10.0_1618_lovely-persimmon-angora-9c19aa19eedb-20220420-103936.mp4 10.0_3628_squeaky-magnolia-ocelot-9a4c635be656-20220418-145141.mp4\r\n10.0_1619_lovely-persimmon-angora-9c19aa19eedb-20220420-104436.mp4 10.0_3629_squeaky-magnolia-ocelot-9a4c635be656-20220418-145636.mp4\r\n10.0_161_cheeky-cornflower-setter-6f87b3c3dddb-20220422-100602.mp4 10.0_362_cheeky-cornflower-setter-c4d6b5fb4546-20220422-172623.mp4\r\n10.0_1620_lovely-persimmon-angora-9c19aa19eedb-20220420-104936.mp4 10.0_3630_squeaky-magnolia-ocelot-9a9fe6424d2f-20220422-104013.mp4\r\n10.0_1621_lovely-persimmon-angora-9c19aa19eedb-20220420-105434.mp4 10.0_3631_squeaky-magnolia-ocelot-a05db94b82dc-20220418-132310.mp4\r\n10.0_1622_lovely-persimmon-angora-9c19aa19eedb-20220420-105932.mp4 10.0_3632_squeaky-magnolia-ocelot-a2f688c7f691-20220419-121241.mp4\r\n10.0_1623_lovely-persimmon-angora-9c55ac71265b-20220415-162902.mp4 10.0_3633_squeaky-magnolia-ocelot-a2f688c7f691-20220419-121738.mp4\r\n10.0_1624_lovely-persimmon-angora-9e9259261254-20220417-001537.mp4 10.0_3634_squeaky-magnolia-ocelot-a68ae1347a2d-20220418-174653.mp4\r\n10.0_1625_lovely-persimmon-angora-9e9259261254-20220417-002042.mp4 10.0_3635_squeaky-magnolia-ocelot-a68ae1347a2d-20220418-175149.mp4\r\n10.0_1626_lovely-persimmon-angora-9e9259261254-20220417-002544.mp4 10.0_3636_squeaky-magnolia-ocelot-a9b6ce96cf49-20220419-113219.mp4\r\n10.0_1627_lovely-persimmon-angora-9e9259261254-20220417-003043.mp4 10.0_3637_squeaky-magnolia-ocelot-a9b6ce96cf49-20220419-113716.mp4\r\n10.0_1628_lovely-persimmon-angora-9e9259261254-20220417-003544.mp4 10.0_3638_squeaky-magnolia-ocelot-a9b6ce96cf49-20220419-114212.mp4\r\n10.0_1629_lovely-persimmon-angora-a39257c803d3-20220422-051333.mp4 10.0_3639_squeaky-magnolia-ocelot-a9b6ce96cf49-20220419-114707.mp4\r\n10.0_162_cheeky-cornflower-setter-6f87b3c3dddb-20220422-101442.mp4 10.0_363_cheeky-cornflower-setter-c4d6b5fb4546-20220422-173131.mp4\r\n10.0_1630_lovely-persimmon-angora-a39257c803d3-20220422-051833.mp4 10.0_3640_squeaky-magnolia-ocelot-b562089220e9-20220421-205153.mp4\r\n10.0_1631_lovely-persimmon-angora-a45c77c2e4c8-20220421-060632.mp4 10.0_3641_squeaky-magnolia-ocelot-b562089220e9-20220421-205652.mp4\r\n10.0_1632_lovely-persimmon-angora-a45c77c2e4c8-20220421-061137.mp4 10.0_3642_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-210235.mp4\r\n10.0_1633_lovely-persimmon-angora-a4b5febb19f2-20220422-081228.mp4 10.0_3643_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-210732.mp4\r\n10.0_1634_lovely-persimmon-angora-a54f5e1be8e9-20220418-205501.mp4 10.0_3644_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-211230.mp4\r\n10.0_1635_lovely-persimmon-angora-a54f5e1be8e9-20220418-210008.mp4 10.0_3645_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-211726.mp4\r\n10.0_1636_lovely-persimmon-angora-a54f5e1be8e9-20220418-211015.mp4 10.0_3646_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-212222.mp4\r\n10.0_1637_lovely-persimmon-angora-a73c527286bf-20220420-142119.mp4 10.0_3647_squeaky-magnolia-ocelot-b7bcde739d78-20220418-170334.mp4\r\n10.0_1638_lovely-persimmon-angora-a73c527286bf-20220420-142623.mp4 10.0_3648_squeaky-magnolia-ocelot-b7bcde739d78-20220418-170830.mp4\r\n10.0_1639_lovely-persimmon-angora-a73c527286bf-20220420-143123.mp4 10.0_3649_squeaky-magnolia-ocelot-b7bcde739d78-20220418-171327.mp4\r\n10.0_163_cheeky-cornflower-setter-6f87b3c3dddb-20220422-102242.mp4 10.0_364_cheeky-cornflower-setter-c4d6b5fb4546-20220422-173637.mp4\r\n10.0_1640_lovely-persimmon-angora-a7594e0b7b4f-20220416-173057.mp4 10.0_3650_squeaky-magnolia-ocelot-b7bcde739d78-20220418-171830.mp4\r\n10.0_1641_lovely-persimmon-angora-a7594e0b7b4f-20220416-173601.mp4 10.0_3651_squeaky-magnolia-ocelot-bf12350083f0-20220418-182741.mp4\r\n10.0_1642_lovely-persimmon-angora-a7594e0b7b4f-20220416-174101.mp4 10.0_3652_squeaky-magnolia-ocelot-bf12350083f0-20220418-183534.mp4\r\n10.0_1643_lovely-persimmon-angora-a7594e0b7b4f-20220416-174600.mp4 10.0_3653_squeaky-magnolia-ocelot-bf12350083f0-20220418-184030.mp4\r\n10.0_1644_lovely-persimmon-angora-a7594e0b7b4f-20220416-175058.mp4 10.0_3654_squeaky-magnolia-ocelot-bff4f3affedb-20220420-145009.mp4\r\n10.0_1645_lovely-persimmon-angora-aa507976f992-20220422-003756.mp4 10.0_3655_squeaky-magnolia-ocelot-bff4f3affedb-20220420-145506.mp4\r\n10.0_1646_lovely-persimmon-angora-aa507976f992-20220422-004306.mp4 10.0_3656_squeaky-magnolia-ocelot-bff4f3affedb-20220420-150003.mp4\r\n10.0_1647_lovely-persimmon-angora-aa507976f992-20220422-004807.mp4 10.0_3657_squeaky-magnolia-ocelot-c00c560150ef-20220414-002316.mp4\r\n10.0_1648_lovely-persimmon-angora-aa507976f992-20220422-005306.mp4 10.0_3658_squeaky-magnolia-ocelot-c00c560150ef-20220414-002823.mp4\r\n10.0_1649_lovely-persimmon-angora-aa507976f992-20220422-005804.mp4 10.0_3659_squeaky-magnolia-ocelot-c00c560150ef-20220414-003331.mp4\r\n10.0_164_cheeky-cornflower-setter-6ff7b0654865-20220417-221751.mp4 10.0_365_cheeky-cornflower-setter-c4d6b5fb4546-20220422-174145.mp4\r\n10.0_1650_lovely-persimmon-angora-aa90003efe45-20220421-105449.mp4 10.0_3660_squeaky-magnolia-ocelot-c27170917897-20220420-095758.mp4\r\n10.0_1651_lovely-persimmon-angora-aa90003efe45-20220421-110001.mp4 10.0_3661_squeaky-magnolia-ocelot-c27170917897-20220420-100254.mp4\r\n10.0_1652_lovely-persimmon-angora-aa90003efe45-20220421-110500.mp4 10.0_3662_squeaky-magnolia-ocelot-c8e48bec54e9-20220419-210807.mp4\r\n10.0_1653_lovely-persimmon-angora-aacc8c7541f8-20220418-235715.mp4 10.0_3663_squeaky-magnolia-ocelot-c8e48bec54e9-20220419-211304.mp4\r\n10.0_1654_lovely-persimmon-angora-aacc8c7541f8-20220419-000217.mp4 10.0_3664_squeaky-magnolia-ocelot-c8e48bec54e9-20220419-211801.mp4\r\n10.0_1655_lovely-persimmon-angora-aacc8c7541f8-20220419-000716.mp4 10.0_3665_squeaky-magnolia-ocelot-ca157d463591-20220421-205722.mp4\r\n10.0_1656_lovely-persimmon-angora-aacc8c7541f8-20220419-001712.mp4 10.0_3666_squeaky-magnolia-ocelot-d4a075adc507-20220421-210034.mp4\r\n10.0_1657_lovely-persimmon-angora-abacff6369d0-20220419-054520.mp4 10.0_3667_squeaky-magnolia-ocelot-d6c1bc7490be-20220422-103929.mp4\r\n10.0_1658_lovely-persimmon-angora-abacff6369d0-20220419-055027.mp4 10.0_3668_squeaky-magnolia-ocelot-d8cd6c643374-20220422-110756.mp4\r\n10.0_1659_lovely-persimmon-angora-abacff6369d0-20220419-055530.mp4 10.0_3669_squeaky-magnolia-ocelot-dda7999f1355-20220418-172658.mp4\r\n10.0_165_cheeky-cornflower-setter-7217827eaef1-20220421-201157.mp4 10.0_366_cheeky-cornflower-setter-c6297b561a50-20220416-120659.mp4\r\n10.0_1660_lovely-persimmon-angora-abacff6369d0-20220419-060028.mp4 10.0_3670_squeaky-magnolia-ocelot-e86b50fc95bf-20220419-234208.mp4\r\n10.0_1661_lovely-persimmon-angora-abacff6369d0-20220419-060547.mp4 10.0_3671_squeaky-magnolia-ocelot-e86b50fc95bf-20220419-234748.mp4\r\n10.0_1662_lovely-persimmon-angora-acc1a2d99214-20220417-044419.mp4 10.0_3672_squeaky-magnolia-ocelot-eab3e7650201-20220418-172912.mp4\r\n10.0_1663_lovely-persimmon-angora-acc1a2d99214-20220417-044928.mp4 10.0_3673_squeaky-magnolia-ocelot-eab3e7650201-20220418-173408.mp4\r\n10.0_1664_lovely-persimmon-angora-acc1a2d99214-20220417-045429.mp4 10.0_3674_squeaky-magnolia-ocelot-eeb60b256fac-20220419-210740.mp4\r\n10.0_1665_lovely-persimmon-angora-ae35eac0eacd-20220417-152508.mp4 10.0_3675_squeaky-magnolia-ocelot-ef2d20665a3a-20220420-144944.mp4\r\n10.0_1666_lovely-persimmon-angora-ae446d9309d0-20220420-060019.mp4 10.0_3676_squeaky-magnolia-ocelot-f1133d7a9b5f-20220421-104130.mp4\r\n10.0_1667_lovely-persimmon-angora-ae446d9309d0-20220420-060531.mp4 10.0_3677_squeaky-magnolia-ocelot-f153ac423f61-20220414-001232.mp4\r\n10.0_1668_lovely-persimmon-angora-ae446d9309d0-20220420-061031.mp4 10.0_3678_squeaky-magnolia-ocelot-f153ac423f61-20220414-001910.mp4\r\n10.0_1669_lovely-persimmon-angora-ae446d9309d0-20220420-061531.mp4 10.0_3679_squeaky-magnolia-ocelot-f153ac423f61-20220415-004400.mp4\r\n10.0_166_cheeky-cornflower-setter-7217827eaef1-20220421-201710.mp4 10.0_367_cheeky-cornflower-setter-c6297b561a50-20220416-122903.mp4\r\n10.0_1670_lovely-persimmon-angora-ae446d9309d0-20220420-062031.mp4 10.0_3680_squeaky-magnolia-ocelot-f153ac423f61-20220415-004928.mp4\r\n10.0_1671_lovely-persimmon-angora-aeeafe5a39f9-20220416-204707.mp4 10.0_3681_squeaky-magnolia-ocelot-f153ac423f61-20220415-083209.mp4\r\n10.0_1672_lovely-persimmon-angora-aeeafe5a39f9-20220416-205209.mp4 10.0_3682_squeaky-magnolia-ocelot-f153ac423f61-20220415-083746.mp4\r\n10.0_1673_lovely-persimmon-angora-aeeafe5a39f9-20220416-205728.mp4 10.0_3683_squeaky-magnolia-ocelot-f153ac423f61-20220415-192535.mp4\r\n10.0_1674_lovely-persimmon-angora-aeeafe5a39f9-20220416-210225.mp4 10.0_3684_squeaky-magnolia-ocelot-f153ac423f61-20220415-193137.mp4\r\n10.0_1675_lovely-persimmon-angora-af9325c2c9c4-20220416-025255.mp4 10.0_3685_squeaky-magnolia-ocelot-f153ac423f61-20220416-005538.mp4\r\n10.0_1676_lovely-persimmon-angora-af9325c2c9c4-20220416-045810.mp4 10.0_3686_squeaky-magnolia-ocelot-f153ac423f61-20220416-010117.mp4\r\n10.0_1677_lovely-persimmon-angora-b062ffdaa573-20220417-193200.mp4 10.0_3687_squeaky-magnolia-ocelot-f153ac423f61-20220416-010708.mp4\r\n10.0_1678_lovely-persimmon-angora-b062ffdaa573-20220417-193704.mp4 10.0_3688_squeaky-magnolia-ocelot-f153ac423f61-20220416-090044.mp4\r\n10.0_1679_lovely-persimmon-angora-b062ffdaa573-20220417-194204.mp4 10.0_3689_squeaky-magnolia-ocelot-f153ac423f61-20220416-090619.mp4\r\n10.0_167_cheeky-cornflower-setter-723604d6e602-20220420-174416.mp4 10.0_368_cheeky-cornflower-setter-c6297b561a50-20220416-123413.mp4\r\n10.0_1680_lovely-persimmon-angora-b0d63660cf9f-20220417-022829.mp4 10.0_3690_squeaky-magnolia-ocelot-f153ac423f61-20220416-091641.mp4\r\n10.0_1681_lovely-persimmon-angora-b0d63660cf9f-20220417-023517.mp4 10.0_3691_squeaky-magnolia-ocelot-f153ac423f61-20220416-184014.mp4\r\n10.0_1682_lovely-persimmon-angora-b0d63660cf9f-20220417-024017.mp4 10.0_3692_squeaky-magnolia-ocelot-f153ac423f61-20220416-184531.mp4\r\n10.0_1683_lovely-persimmon-angora-b0d63660cf9f-20220417-025045.mp4 10.0_3693_squeaky-magnolia-ocelot-f153ac423f61-20220416-185644.mp4\r\n10.0_1684_lovely-persimmon-angora-b0d63660cf9f-20220417-034915.mp4 10.0_3694_squeaky-magnolia-ocelot-f153ac423f61-20220416-190140.mp4\r\n10.0_1685_lovely-persimmon-angora-b0d63660cf9f-20220417-035415.mp4 10.0_3695_squeaky-magnolia-ocelot-f153ac423f61-20220417-165043.mp4\r\n10.0_1686_lovely-persimmon-angora-b0d63660cf9f-20220417-035913.mp4 10.0_3696_squeaky-magnolia-ocelot-f153ac423f61-20220417-165905.mp4\r\n10.0_1687_lovely-persimmon-angora-b0e50721b322-20220421-030157.mp4 10.0_3697_squeaky-magnolia-ocelot-f153ac423f61-20220417-170747.mp4\r\n10.0_1688_lovely-persimmon-angora-b0e50721b322-20220421-030700.mp4 10.0_3698_squeaky-magnolia-ocelot-f153ac423f61-20220417-194751.mp4\r\n10.0_1689_lovely-persimmon-angora-b0e50721b322-20220421-031158.mp4 10.0_3699_squeaky-magnolia-ocelot-f153ac423f61-20220417-195803.mp4\r\n10.0_168_cheeky-cornflower-setter-7448b3f2b8bb-20220416-115105.mp4 10.0_369_cheeky-cornflower-setter-c6297b561a50-20220416-123917.mp4\r\n10.0_1690_lovely-persimmon-angora-b0e50721b322-20220421-031658.mp4 10.0_3700_squeaky-magnolia-ocelot-f153ac423f61-20220418-124038.mp4\r\n10.0_1691_lovely-persimmon-angora-b27741f177a5-20220417-133254.mp4 10.0_3701_squeaky-magnolia-ocelot-f153ac423f61-20220418-131326.mp4\r\n10.0_1692_lovely-persimmon-angora-b27741f177a5-20220417-133757.mp4 10.0_3702_squeaky-magnolia-ocelot-f153ac423f61-20220418-131533.mp4\r\n10.0_1693_lovely-persimmon-angora-b27741f177a5-20220417-134256.mp4 10.0_3703_squeaky-magnolia-ocelot-f153ac423f61-20220418-172017.mp4\r\n10.0_1694_lovely-persimmon-angora-b2ae22bb1cdc-20220420-125812.mp4 10.0_3704_squeaky-magnolia-ocelot-f153ac423f61-20220418-172515.mp4\r\n10.0_1695_lovely-persimmon-angora-b2ae22bb1cdc-20220420-130312.mp4 10.0_3705_squeaky-magnolia-ocelot-f153ac423f61-20220419-105215.mp4\r\n10.0_1696_lovely-persimmon-angora-b2ae22bb1cdc-20220420-130810.mp4 10.0_3706_squeaky-magnolia-ocelot-f153ac423f61-20220419-105832.mp4\r\n10.0_1697_lovely-persimmon-angora-b4dc0063a05c-20220416-075823.mp4 10.0_3707_squeaky-magnolia-ocelot-f153ac423f61-20220419-110332.mp4\r\n10.0_1698_lovely-persimmon-angora-b687234e7ec0-20220417-145949.mp4 10.0_3708_squeaky-magnolia-ocelot-f153ac423f61-20220419-133218.mp4\r\n10.0_1699_lovely-persimmon-angora-b687234e7ec0-20220417-150737.mp4 10.0_3709_squeaky-magnolia-ocelot-f153ac423f61-20220419-133716.mp4\r\n10.0_169_cheeky-cornflower-setter-7448b3f2b8bb-20220416-115616.mp4 10.0_370_cheeky-cornflower-setter-c9fb3ae774a8-20220416-092047.mp4\r\n10.0_1700_lovely-persimmon-angora-b687234e7ec0-20220417-151454.mp4 10.0_3710_squeaky-magnolia-ocelot-f153ac423f61-20220419-184144.mp4\r\n10.0_1701_lovely-persimmon-angora-b87797273388-20220422-232835.mp4 10.0_3711_squeaky-magnolia-ocelot-f153ac423f61-20220419-184643.mp4\r\n10.0_1702_lovely-persimmon-angora-b87797273388-20220422-233348.mp4 10.0_3712_squeaky-magnolia-ocelot-f153ac423f61-20220419-194115.mp4\r\n10.0_1703_lovely-persimmon-angora-b87797273388-20220422-233848.mp4 10.0_3713_squeaky-magnolia-ocelot-f153ac423f61-20220419-194615.mp4\r\n10.0_1704_lovely-persimmon-angora-b893f912bf4e-20220416-141251.mp4 10.0_3714_squeaky-magnolia-ocelot-f153ac423f61-20220419-195113.mp4\r\n10.0_1705_lovely-persimmon-angora-b989537e4c4a-20220422-201916.mp4 10.0_3715_squeaky-magnolia-ocelot-f153ac423f61-20220419-195609.mp4\r\n10.0_1706_lovely-persimmon-angora-b9f3e68450c9-20220417-135820.mp4 10.0_3716_squeaky-magnolia-ocelot-f153ac423f61-20220419-202235.mp4\r\n10.0_1707_lovely-persimmon-angora-baa861c67ad7-20220422-115523.mp4 10.0_3717_squeaky-magnolia-ocelot-f153ac423f61-20220419-202816.mp4\r\n10.0_1708_lovely-persimmon-angora-baa861c67ad7-20220422-120038.mp4 10.0_3718_squeaky-magnolia-ocelot-f153ac423f61-20220419-203314.mp4\r\n10.0_1709_lovely-persimmon-angora-baf0a3c43217-20220420-053833.mp4 10.0_3719_squeaky-magnolia-ocelot-f153ac423f61-20220419-203810.mp4\r\n10.0_170_cheeky-cornflower-setter-7448b3f2b8bb-20220416-120125.mp4 10.0_371_cheeky-cornflower-setter-c9fb3ae774a8-20220416-092641.mp4\r\n10.0_1710_lovely-persimmon-angora-bb4a6ad29303-20220417-133204.mp4 10.0_3720_squeaky-magnolia-ocelot-f153ac423f61-20220419-205517.mp4\r\n10.0_1711_lovely-persimmon-angora-bb630d112590-20220421-211345.mp4 10.0_3721_squeaky-magnolia-ocelot-f153ac423f61-20220419-210017.mp4\r\n10.0_1712_lovely-persimmon-angora-bb630d112590-20220421-211853.mp4 10.0_3722_squeaky-magnolia-ocelot-f153ac423f61-20220419-210516.mp4\r\n10.0_1713_lovely-persimmon-angora-bb630d112590-20220421-212353.mp4 10.0_3723_squeaky-magnolia-ocelot-f153ac423f61-20220419-231040.mp4\r\n10.0_1714_lovely-persimmon-angora-bb630d112590-20220421-212852.mp4 10.0_3724_squeaky-magnolia-ocelot-f153ac423f61-20220419-231606.mp4\r\n10.0_1715_lovely-persimmon-angora-bbafafd7409e-20220419-154900.mp4 10.0_3725_squeaky-magnolia-ocelot-f153ac423f61-20220420-092708.mp4\r\n10.0_1716_lovely-persimmon-angora-bbafafd7409e-20220419-155404.mp4 10.0_3726_squeaky-magnolia-ocelot-f153ac423f61-20220420-093209.mp4\r\n10.0_1717_lovely-persimmon-angora-bbafafd7409e-20220419-160143.mp4 10.0_3727_squeaky-magnolia-ocelot-f153ac423f61-20220420-113949.mp4\r\n10.0_1718_lovely-persimmon-angora-bc2fb6b8559c-20220422-171559.mp4 10.0_3728_squeaky-magnolia-ocelot-f153ac423f61-20220420-114449.mp4\r\n10.0_1719_lovely-persimmon-angora-bdb46ca7568b-20220420-183308.mp4 10.0_3729_squeaky-magnolia-ocelot-f153ac423f61-20220420-114945.mp4\r\n10.0_171_cheeky-cornflower-setter-7503ef8f9615-20220423-104736.mp4 10.0_372_cheeky-cornflower-setter-c9fb3ae774a8-20220416-093226.mp4\r\n10.0_1720_lovely-persimmon-angora-bf5cca93adea-20220417-212526.mp4 10.0_3730_squeaky-magnolia-ocelot-f153ac423f61-20220420-115440.mp4\r\n10.0_1721_lovely-persimmon-angora-bf5cca93adea-20220417-213032.mp4 10.0_3731_squeaky-magnolia-ocelot-f153ac423f61-20220420-143111.mp4\r\n10.0_1722_lovely-persimmon-angora-bf5cca93adea-20220417-213532.mp4 10.0_3732_squeaky-magnolia-ocelot-f153ac423f61-20220420-143612.mp4\r\n10.0_1723_lovely-persimmon-angora-bf5cca93adea-20220417-214032.mp4 10.0_3733_squeaky-magnolia-ocelot-f153ac423f61-20220420-155934.mp4\r\n10.0_1724_lovely-persimmon-angora-bf5cca93adea-20220417-214532.mp4 10.0_3734_squeaky-magnolia-ocelot-f153ac423f61-20220420-160526.mp4\r\n10.0_1725_lovely-persimmon-angora-c036e60c2d9e-20220414-022114.mp4 10.0_3735_squeaky-magnolia-ocelot-f153ac423f61-20220420-161022.mp4\r\n10.0_1726_lovely-persimmon-angora-c036e60c2d9e-20220414-023119.mp4 10.0_3736_squeaky-magnolia-ocelot-f153ac423f61-20220420-161518.mp4\r\n10.0_1727_lovely-persimmon-angora-c38efc5b96f0-20220420-112758.mp4 10.0_3737_squeaky-magnolia-ocelot-f153ac423f61-20220420-162045.mp4\r\n10.0_1728_lovely-persimmon-angora-c38efc5b96f0-20220420-113300.mp4 10.0_3738_squeaky-magnolia-ocelot-f153ac423f61-20220420-173650.mp4\r\n10.0_1729_lovely-persimmon-angora-c38efc5b96f0-20220420-113759.mp4 10.0_3739_squeaky-magnolia-ocelot-f153ac423f61-20220420-174202.mp4\r\n10.0_172_cheeky-cornflower-setter-7503ef8f9615-20220423-105746.mp4 10.0_373_cheeky-cornflower-setter-c9fb3ae774a8-20220416-093805.mp4\r\n10.0_1730_lovely-persimmon-angora-c38efc5b96f0-20220420-114257.mp4 10.0_3740_squeaky-magnolia-ocelot-f153ac423f61-20220420-181501.mp4\r\n10.0_1731_lovely-persimmon-angora-c38efc5b96f0-20220420-114757.mp4 10.0_3741_squeaky-magnolia-ocelot-f153ac423f61-20220420-182003.mp4\r\n10.0_1732_lovely-persimmon-angora-c4e13cf9bc11-20220420-095657.mp4 10.0_3742_squeaky-magnolia-ocelot-f153ac423f61-20220420-182518.mp4\r\n10.0_1733_lovely-persimmon-angora-c4e13cf9bc11-20220420-100202.mp4 10.0_3743_squeaky-magnolia-ocelot-f153ac423f61-20220420-183016.mp4\r\n10.0_1734_lovely-persimmon-angora-c4e13cf9bc11-20220420-100701.mp4 10.0_3744_squeaky-magnolia-ocelot-f153ac423f61-20220421-092702.mp4\r\n10.0_1735_lovely-persimmon-angora-c4e13cf9bc11-20220420-101159.mp4 10.0_3745_squeaky-magnolia-ocelot-f153ac423f61-20220421-093201.mp4\r\n10.0_1736_lovely-persimmon-angora-c4e13cf9bc11-20220420-101657.mp4 10.0_3746_squeaky-magnolia-ocelot-f153ac423f61-20220421-093657.mp4\r\n10.0_1737_lovely-persimmon-angora-c5792a32f2cd-20220419-151550.mp4 10.0_3747_squeaky-magnolia-ocelot-f153ac423f61-20220421-094154.mp4\r\n10.0_1738_lovely-persimmon-angora-c589086127c9-20220414-161419.mp4 10.0_3748_squeaky-magnolia-ocelot-f153ac423f61-20220421-102110.mp4\r\n10.0_1739_lovely-persimmon-angora-c589086127c9-20220414-163500.mp4 10.0_3749_squeaky-magnolia-ocelot-f153ac423f61-20220421-102609.mp4\r\n10.0_173_cheeky-cornflower-setter-7503ef8f9615-20220423-110628.mp4 10.0_374_cheeky-cornflower-setter-ccfa04f03dad-20220422-141330.mp4\r\n10.0_1740_lovely-persimmon-angora-c5c7cfa6e670-20220421-032102.mp4 10.0_3750_squeaky-magnolia-ocelot-f153ac423f61-20220421-103106.mp4\r\n10.0_1741_lovely-persimmon-angora-c60a7e1de8f0-20220420-232245.mp4 10.0_3751_squeaky-magnolia-ocelot-f153ac423f61-20220421-103602.mp4\r\n10.0_1742_lovely-persimmon-angora-c67c67e78b76-20220416-124451.mp4 10.0_3752_squeaky-magnolia-ocelot-f153ac423f61-20220421-104101.mp4\r\n10.0_1743_lovely-persimmon-angora-c67c67e78b76-20220416-125348.mp4 10.0_3753_squeaky-magnolia-ocelot-f153ac423f61-20220421-161204.mp4\r\n10.0_1744_lovely-persimmon-angora-c67c67e78b76-20220416-130238.mp4 10.0_3754_squeaky-magnolia-ocelot-f153ac423f61-20220421-161704.mp4\r\n10.0_1745_lovely-persimmon-angora-c67c67e78b76-20220416-131130.mp4 10.0_3755_squeaky-magnolia-ocelot-f153ac423f61-20220421-162202.mp4\r\n10.0_1746_lovely-persimmon-angora-c67c67e78b76-20220416-132038.mp4 10.0_3756_squeaky-magnolia-ocelot-f153ac423f61-20220421-162657.mp4\r\n10.0_1747_lovely-persimmon-angora-c78dc69f2f2e-20220419-034255.mp4 10.0_3757_squeaky-magnolia-ocelot-f153ac423f61-20220421-194921.mp4\r\n10.0_1748_lovely-persimmon-angora-c7ff6ee370b8-20220421-005633.mp4 10.0_3758_squeaky-magnolia-ocelot-f153ac423f61-20220421-195422.mp4\r\n10.0_1749_lovely-persimmon-angora-c7ff6ee370b8-20220421-010138.mp4 10.0_3759_squeaky-magnolia-ocelot-f153ac423f61-20220421-195921.mp4\r\n10.0_174_cheeky-cornflower-setter-787dfe04fef1-20220421-223712.mp4 10.0_375_cheeky-cornflower-setter-ccfa04f03dad-20220422-142253.mp4\r\n10.0_1750_lovely-persimmon-angora-c813a805fb70-20220417-210238.mp4 10.0_3760_squeaky-magnolia-ocelot-f153ac423f61-20220421-200452.mp4\r\n10.0_1751_lovely-persimmon-angora-c813a805fb70-20220417-210743.mp4 10.0_3761_squeaky-magnolia-ocelot-f153ac423f61-20220421-200952.mp4\r\n10.0_1752_lovely-persimmon-angora-c813a805fb70-20220417-211242.mp4 10.0_3762_squeaky-magnolia-ocelot-f153ac423f61-20220422-103015.mp4\r\n10.0_1753_lovely-persimmon-angora-c813a805fb70-20220417-211741.mp4 10.0_3763_squeaky-magnolia-ocelot-f153ac423f61-20220422-103631.mp4\r\n10.0_1754_lovely-persimmon-angora-c813a805fb70-20220417-212240.mp4 10.0_3764_squeaky-magnolia-ocelot-f153ac423f61-20220422-152429.mp4\r\n10.0_1755_lovely-persimmon-angora-c8d366effbf3-20220420-200758.mp4 10.0_3765_squeaky-magnolia-ocelot-f153ac423f61-20220422-153358.mp4\r\n10.0_1756_lovely-persimmon-angora-c8d366effbf3-20220420-201302.mp4 10.0_3766_squeaky-magnolia-ocelot-f153ac423f61-20220423-115959.mp4\r\n10.0_1757_lovely-persimmon-angora-c8e0a1a3c13d-20220415-002801.mp4 10.0_3767_squeaky-magnolia-ocelot-f153ac423f61-20220423-120458.mp4\r\n10.0_1758_lovely-persimmon-angora-c950a9c61b37-20220416-164309.mp4 10.0_3768_squeaky-magnolia-ocelot-f153ac423f61-20220423-124544.mp4\r\n10.0_1759_lovely-persimmon-angora-c950a9c61b37-20220416-164808.mp4 10.0_3769_squeaky-magnolia-ocelot-f153ac423f61-20220423-125043.mp4\r\n10.0_175_cheeky-cornflower-setter-787dfe04fef1-20220421-224854.mp4 10.0_376_cheeky-cornflower-setter-cd5648bf09ae-20220415-103637.mp4\r\n10.0_1760_lovely-persimmon-angora-c9a524a2caf4-20220417-125105.mp4 10.0_3770_squeaky-magnolia-ocelot-f56f56ccd855-20220415-005146.mp4\r\n10.0_1761_lovely-persimmon-angora-c9a524a2caf4-20220417-125609.mp4 10.0_3771_squeaky-magnolia-ocelot-f605f250420e-20220423-125538.mp4\r\n10.0_1762_lovely-persimmon-angora-c9a524a2caf4-20220417-130110.mp4 10.0_3772_squeaky-magnolia-ocelot-fac13dcac333-20220420-143859.mp4\r\n10.0_1763_lovely-persimmon-angora-c9a524a2caf4-20220417-130613.mp4 10.0_3773_squeaky-magnolia-ocelot-fac13dcac333-20220420-144357.mp4\r\n10.0_1764_lovely-persimmon-angora-c9a524a2caf4-20220417-131112.mp4 10.0_3774_squeaky-magnolia-ocelot-fac13dcac333-20220420-144855.mp4\r\n10.0_1765_lovely-persimmon-angora-cc042994889d-20220419-161219.mp4 10.0_3775_squeaky-magnolia-ocelot-fb069e40ae68-20220422-153543.mp4\r\n10.0_1766_lovely-persimmon-angora-cc042994889d-20220419-161727.mp4 10.0_3776_squeaky-magnolia-ocelot-fd2a1f8db04f-20220420-185858.mp4\r\n10.0_1767_lovely-persimmon-angora-cc042994889d-20220419-162227.mp4 10.0_3777_squeaky-magnolia-ocelot-fd2a1f8db04f-20220420-190354.mp4\r\n10.0_1768_lovely-persimmon-angora-cc042994889d-20220419-162730.mp4 10.0_3778_squeaky-magnolia-ocelot-fe1a26e3b219-20220422-110102.mp4\r\n10.0_1769_lovely-persimmon-angora-cc042994889d-20220419-163231.mp4 10.0_3779_squeaky-magnolia-ocelot-fe1a26e3b219-20220422-110604.mp4\r\n10.0_176_cheeky-cornflower-setter-79ad03731a24-20220421-165011.mp4 10.0_377_cheeky-cornflower-setter-cd5648bf09ae-20220415-104155.mp4\r\n10.0_1770_lovely-persimmon-angora-cc9eaa7bf430-20220417-132257.mp4 10.0_3780_squeaky-magnolia-ocelot-fe72543968b9-20220420-174555.mp4\r\n10.0_1771_lovely-persimmon-angora-cc9eaa7bf430-20220417-132802.mp4 10.0_3781_squeaky-magnolia-ocelot-fe72543968b9-20220420-175057.mp4\r\n10.0_1772_lovely-persimmon-angora-cdd7cdcf2ee7-20220419-160618.mp4 10.0_3782_squeaky-magnolia-ocelot-fe72543968b9-20220420-175554.mp4\r\n10.0_1773_lovely-persimmon-angora-cdd7cdcf2ee7-20220419-161124.mp4 10.0_3783_squeaky-ultramarine-chihuahua-48861dd4cfd2-20220421-175641.mp4\r\n10.0_1774_lovely-persimmon-angora-cf4b1c19d48e-20220421-034300.mp4 10.0_3784_squeaky-ultramarine-chihuahua-f153ac423f61-20220422-162008.mp4\r\n10.0_1775_lovely-persimmon-angora-cf4b1c19d48e-20220421-034802.mp4 10.0_3785_squeaky-ultramarine-chihuahua-f153ac423f61-20220422-163021.mp4\r\n10.0_1776_lovely-persimmon-angora-cf4b1c19d48e-20220421-035302.mp4 10.0_3786_tasty-brass-devil-12bd37539153-20220421-213743.mp4\r\n10.0_1777_lovely-persimmon-angora-cf4b1c19d48e-20220421-035801.mp4 10.0_3787_tasty-brass-devil-1b9620bc90f9-20220421-222506.mp4\r\n10.0_1778_lovely-persimmon-angora-cfc304041054-20220422-173641.mp4 10.0_3788_tasty-brass-devil-338858448ff5-20220422-221333.mp4\r\n10.0_1779_lovely-persimmon-angora-cfc912b8cdc4-20220415-153131.mp4 10.0_3789_tasty-brass-devil-338858448ff5-20220422-221915.mp4\r\n10.0_177_cheeky-cornflower-setter-79ad03731a24-20220421-170149.mp4 10.0_378_cheeky-cornflower-setter-cd5648bf09ae-20220415-104704.mp4\r\n10.0_1780_lovely-persimmon-angora-d1cf3570c5a1-20220420-053534.mp4 10.0_3790_tasty-brass-devil-338858448ff5-20220422-222420.mp4\r\n10.0_1781_lovely-persimmon-angora-d435015ffed4-20220417-194537.mp4 10.0_3791_tasty-brass-devil-3b145051e67d-20220420-173351.mp4\r\n10.0_1782_lovely-persimmon-angora-d435015ffed4-20220417-195040.mp4 10.0_3792_tasty-brass-devil-3b145051e67d-20220420-173856.mp4\r\n10.0_1783_lovely-persimmon-angora-d435015ffed4-20220417-195539.mp4 10.0_3793_tasty-brass-devil-3ea05598e5dc-20220421-191302.mp4\r\n10.0_1784_lovely-persimmon-angora-d435015ffed4-20220417-200037.mp4 10.0_3794_tasty-brass-devil-4ec549b39185-20220421-190538.mp4\r\n10.0_1785_lovely-persimmon-angora-d435015ffed4-20220417-200535.mp4 10.0_3795_tasty-brass-devil-5cafe17f1385-20220421-221204.mp4\r\n10.0_1786_lovely-persimmon-angora-d7d54ce0b48b-20220418-233610.mp4 10.0_3796_tasty-brass-devil-69d7c7e8c97d-20220422-222541.mp4\r\n10.0_1787_lovely-persimmon-angora-d7d54ce0b48b-20220418-234144.mp4 10.0_3797_tasty-brass-devil-69d7c7e8c97d-20220422-223114.mp4\r\n10.0_1788_lovely-persimmon-angora-d7d54ce0b48b-20220418-234645.mp4 10.0_3798_tasty-brass-devil-69d7c7e8c97d-20220422-223616.mp4\r\n10.0_1789_lovely-persimmon-angora-d7d54ce0b48b-20220418-235144.mp4 10.0_3799_tasty-brass-devil-69d7c7e8c97d-20220422-224116.mp4\r\n10.0_178_cheeky-cornflower-setter-79ad03731a24-20220421-171142.mp4 10.0_379_cheeky-cornflower-setter-cd5648bf09ae-20220415-105338.mp4\r\n10.0_1790_lovely-persimmon-angora-d7d54ce0b48b-20220418-235645.mp4 10.0_3800_tasty-brass-devil-706d9c49b15d-20220421-192057.mp4\r\n10.0_1791_lovely-persimmon-angora-d83511c11be7-20220419-171816.mp4 10.0_3801_tasty-brass-devil-87fa282322ed-20220422-224233.mp4\r\n10.0_1792_lovely-persimmon-angora-d84353b050a8-20220416-071656.mp4 10.0_3802_tasty-brass-devil-883743e47966-20220421-215432.mp4\r\n10.0_1793_lovely-persimmon-angora-dae40f77f53e-20220420-022228.mp4 10.0_3803_tasty-brass-devil-e178112752b4-20220421-185646.mp4\r\n10.0_1794_lovely-persimmon-angora-dae40f77f53e-20220420-023231.mp4 10.0_3804_tasty-brass-devil-f153ac423f61-20220420-171714.mp4\r\n10.0_1795_lovely-persimmon-angora-dae91dfb2ec3-20220420-120550.mp4 10.0_3805_tasty-brass-devil-f153ac423f61-20220420-172225.mp4\r\n10.0_1796_lovely-persimmon-angora-df04e456ec77-20220420-110014.mp4 10.0_3806_tasty-brass-devil-f153ac423f61-20220422-220609.mp4\r\n10.0_1797_lovely-persimmon-angora-df04e456ec77-20220420-110516.mp4 10.0_3807_tasty-brass-devil-f153ac423f61-20220422-221154.mp4\r\n10.0_1798_lovely-persimmon-angora-df04e456ec77-20220420-111015.mp4 10.0_3808_thirsty-lavender-koala-0543a255a641-20220416-125010.mp4\r\n10.0_1799_lovely-persimmon-angora-df04e456ec77-20220420-111513.mp4 10.0_3809_thirsty-lavender-koala-0543a255a641-20220416-125536.mp4\r\n10.0_179_cheeky-cornflower-setter-79d73f9f8fc3-20220414-151429.mp4 10.0_380_cheeky-cornflower-setter-cd8c9e0bf301-20220414-215741.mp4\r\n10.0_1800_lovely-persimmon-angora-df04e456ec77-20220420-112012.mp4 10.0_3810_thirsty-lavender-koala-0543a255a641-20220416-130034.mp4\r\n10.0_1801_lovely-persimmon-angora-df807369ab80-20220421-025659.mp4 10.0_3811_thirsty-lavender-koala-0c8937e6ead3-20220422-220729.mp4\r\n10.0_1802_lovely-persimmon-angora-dfca91a33b40-20220422-065459.mp4 10.0_3812_thirsty-lavender-koala-0ecc1595ea52-20220421-132533.mp4\r\n10.0_1803_lovely-persimmon-angora-dfca91a33b40-20220422-070001.mp4 10.0_3813_thirsty-lavender-koala-0ecc1595ea52-20220421-133121.mp4\r\n10.0_1804_lovely-persimmon-angora-dfca91a33b40-20220422-070500.mp4 10.0_3814_thirsty-lavender-koala-0ecc1595ea52-20220421-133625.mp4\r\n10.0_1805_lovely-persimmon-angora-dfca91a33b40-20220422-070958.mp4 10.0_3815_thirsty-lavender-koala-0ff3ba13a6c4-20220421-153153.mp4\r\n10.0_1806_lovely-persimmon-angora-dfca91a33b40-20220422-071456.mp4 10.0_3816_thirsty-lavender-koala-0ff3ba13a6c4-20220421-153725.mp4\r\n10.0_1807_lovely-persimmon-angora-e0a0af213a69-20220423-062534.mp4 10.0_3817_thirsty-lavender-koala-0ff3ba13a6c4-20220421-154222.mp4\r\n10.0_1808_lovely-persimmon-angora-e0a0af213a69-20220423-063039.mp4 10.0_3818_thirsty-lavender-koala-20f9ff9174f2-20220421-142442.mp4\r\n10.0_1809_lovely-persimmon-angora-e0a0af213a69-20220423-063539.mp4 10.0_3819_thirsty-lavender-koala-20f9ff9174f2-20220421-142954.mp4\r\n10.0_180_cheeky-cornflower-setter-79d73f9f8fc3-20220414-151936.mp4 10.0_381_cheeky-cornflower-setter-cd8c9e0bf301-20220414-220248.mp4\r\n10.0_1810_lovely-persimmon-angora-e0a0af213a69-20220423-064543.mp4 10.0_3820_thirsty-lavender-koala-20f9ff9174f2-20220421-143451.mp4\r\n10.0_1811_lovely-persimmon-angora-e10920a66232-20220416-135812.mp4 10.0_3821_thirsty-lavender-koala-2376d626134c-20220422-222301.mp4\r\n10.0_1812_lovely-persimmon-angora-e10920a66232-20220416-140321.mp4 10.0_3822_thirsty-lavender-koala-255fd62039fc-20220422-163300.mp4\r\n10.0_1813_lovely-persimmon-angora-e10920a66232-20220416-140821.mp4 10.0_3823_thirsty-lavender-koala-255fd62039fc-20220422-163838.mp4\r\n10.0_1814_lovely-persimmon-angora-e118fb40d762-20220414-220127.mp4 10.0_3824_thirsty-lavender-koala-2bf96cf1cb83-20220423-101514.mp4\r\n10.0_1815_lovely-persimmon-angora-e118fb40d762-20220414-221636.mp4 10.0_3825_thirsty-lavender-koala-2cf25990e889-20220422-212548.mp4\r\n10.0_1816_lovely-persimmon-angora-e2e35d105af3-20220416-202508.mp4 10.0_3826_thirsty-lavender-koala-2fe551b60791-20220416-180717.mp4\r\n10.0_1817_lovely-persimmon-angora-e2e35d105af3-20220416-203012.mp4 10.0_3827_thirsty-lavender-koala-3773550e150d-20220415-134217.mp4\r\n10.0_1818_lovely-persimmon-angora-e2e35d105af3-20220416-203532.mp4 10.0_3828_thirsty-lavender-koala-42089d83d4e4-20220421-134352.mp4\r\n10.0_1819_lovely-persimmon-angora-e2e35d105af3-20220416-204030.mp4 10.0_3829_thirsty-lavender-koala-42089d83d4e4-20220421-134925.mp4\r\n10.0_181_cheeky-cornflower-setter-79d73f9f8fc3-20220414-152443.mp4 10.0_382_cheeky-cornflower-setter-cd8c9e0bf301-20220414-220755.mp4\r\n10.0_1820_lovely-persimmon-angora-e2e35d105af3-20220416-204529.mp4 10.0_3830_thirsty-lavender-koala-42089d83d4e4-20220421-135421.mp4\r\n10.0_1821_lovely-persimmon-angora-e3337d81bb7b-20220420-133023.mp4 10.0_3831_thirsty-lavender-koala-42089d83d4e4-20220421-135918.mp4\r\n10.0_1822_lovely-persimmon-angora-e3337d81bb7b-20220420-133547.mp4 10.0_3832_thirsty-lavender-koala-43892bddfd51-20220416-173120.mp4\r\n10.0_1823_lovely-persimmon-angora-e37f0d371772-20220416-143909.mp4 10.0_3833_thirsty-lavender-koala-43892bddfd51-20220416-173618.mp4\r\n10.0_1824_lovely-persimmon-angora-e37f0d371772-20220416-144423.mp4 10.0_3834_thirsty-lavender-koala-43892bddfd51-20220416-174613.mp4\r\n10.0_1825_lovely-persimmon-angora-e40403c0dcee-20220414-140813.mp4 10.0_3835_thirsty-lavender-koala-4862fe7507ca-20220423-095833.mp4\r\n10.0_1826_lovely-persimmon-angora-e4510d540dbb-20220417-162525.mp4 10.0_3836_thirsty-lavender-koala-4862fe7507ca-20220423-100330.mp4\r\n10.0_1827_lovely-persimmon-angora-e4510d540dbb-20220417-163218.mp4 10.0_3837_thirsty-lavender-koala-4862fe7507ca-20220423-100858.mp4\r\n10.0_1828_lovely-persimmon-angora-e4510d540dbb-20220417-163716.mp4 10.0_3838_thirsty-lavender-koala-4d117fe5a5ee-20220416-130555.mp4\r\n10.0_1829_lovely-persimmon-angora-e4510d540dbb-20220417-164214.mp4 10.0_3839_thirsty-lavender-koala-4d117fe5a5ee-20220416-132048.mp4\r\n10.0_182_cheeky-cornflower-setter-7cd15ca835b6-20220420-201311.mp4 10.0_383_cheeky-cornflower-setter-cd8c9e0bf301-20220414-221303.mp4\r\n10.0_1830_lovely-persimmon-angora-e4510d540dbb-20220417-165214.mp4 10.0_3840_thirsty-lavender-koala-4efd6fc3dc4b-20220421-151037.mp4\r\n10.0_1831_lovely-persimmon-angora-e467aaf6d38c-20220421-064711.mp4 10.0_3841_thirsty-lavender-koala-4efd6fc3dc4b-20220421-151535.mp4\r\n10.0_1832_lovely-persimmon-angora-e467aaf6d38c-20220421-065212.mp4 10.0_3842_thirsty-lavender-koala-4efd6fc3dc4b-20220421-152032.mp4\r\n10.0_1833_lovely-persimmon-angora-e4afd0be60f1-20220422-204232.mp4 10.0_3843_thirsty-lavender-koala-4efd6fc3dc4b-20220421-152529.mp4\r\n10.0_1834_lovely-persimmon-angora-e4afd0be60f1-20220422-204737.mp4 10.0_3844_thirsty-lavender-koala-4efd6fc3dc4b-20220421-153026.mp4\r\n10.0_1835_lovely-persimmon-angora-e4afd0be60f1-20220422-205237.mp4 10.0_3845_thirsty-lavender-koala-4fd79ebae56b-20220414-110605.mp4\r\n10.0_1836_lovely-persimmon-angora-e4afd0be60f1-20220422-205737.mp4 10.0_3846_thirsty-lavender-koala-4fd79ebae56b-20220414-111241.mp4\r\n10.0_1837_lovely-persimmon-angora-e57d4b67dcb9-20220419-234606.mp4 10.0_3847_thirsty-lavender-koala-4fd79ebae56b-20220414-111738.mp4\r\n10.0_1838_lovely-persimmon-angora-e7d3ea0daba5-20220416-192002.mp4 10.0_3848_thirsty-lavender-koala-502cf1ac45cf-20220415-222024.mp4\r\n10.0_1839_lovely-persimmon-angora-e7d3ea0daba5-20220416-192504.mp4 10.0_3849_thirsty-lavender-koala-502cf1ac45cf-20220415-222531.mp4\r\n10.0_183_cheeky-cornflower-setter-7cd15ca835b6-20220420-201826.mp4 10.0_384_cheeky-cornflower-setter-ce7dbae7bd6a-20220416-193016.mp4\r\n10.0_1840_lovely-persimmon-angora-e7d3ea0daba5-20220416-193003.mp4 10.0_3850_thirsty-lavender-koala-502cf1ac45cf-20220415-223533.mp4\r\n10.0_1841_lovely-persimmon-angora-e7d3ea0daba5-20220416-193501.mp4 10.0_3851_thirsty-lavender-koala-52ecd2aff04a-20220416-183141.mp4\r\n10.0_1842_lovely-persimmon-angora-e7d3ea0daba5-20220416-200323.mp4 10.0_3852_thirsty-lavender-koala-693ab1d7d7e4-20220415-144607.mp4\r\n10.0_1843_lovely-persimmon-angora-e7d3ea0daba5-20220416-200825.mp4 10.0_3853_thirsty-lavender-koala-6c43e4e407b0-20220414-181751.mp4\r\n10.0_1844_lovely-persimmon-angora-e7d3ea0daba5-20220416-201330.mp4 10.0_3854_thirsty-lavender-koala-6c43e4e407b0-20220414-182249.mp4\r\n10.0_1845_lovely-persimmon-angora-e7d3ea0daba5-20220416-201829.mp4 10.0_3855_thirsty-lavender-koala-6c43e4e407b0-20220414-183246.mp4\r\n10.0_1846_lovely-persimmon-angora-e7d3ea0daba5-20220416-202328.mp4 10.0_3856_thirsty-lavender-koala-718512a73cdc-20220422-223324.mp4\r\n10.0_1847_lovely-persimmon-angora-e8321a83e6c1-20220419-233234.mp4 10.0_3857_thirsty-lavender-koala-77119e4deab7-20220416-133551.mp4\r\n10.0_1848_lovely-persimmon-angora-e83836eb0ed8-20220417-003614.mp4 10.0_3858_thirsty-lavender-koala-7e08c32439a0-20220423-114014.mp4\r\n10.0_1849_lovely-persimmon-angora-e83836eb0ed8-20220417-004131.mp4 10.0_3859_thirsty-lavender-koala-7e08c32439a0-20220423-114512.mp4\r\n10.0_184_cheeky-cornflower-setter-7d4d09bb280b-20220423-163544.mp4 10.0_385_cheeky-cornflower-setter-ce7dbae7bd6a-20220416-193525.mp4\r\n10.0_1850_lovely-persimmon-angora-e83836eb0ed8-20220417-004631.mp4 10.0_3860_thirsty-lavender-koala-7e08c32439a0-20220423-115045.mp4\r\n10.0_1851_lovely-persimmon-angora-e83836eb0ed8-20220417-005132.mp4 10.0_3861_thirsty-lavender-koala-7e950daeeca2-20220421-140147.mp4\r\n10.0_1852_lovely-persimmon-angora-e83836eb0ed8-20220417-005633.mp4 10.0_3862_thirsty-lavender-koala-7e950daeeca2-20220421-140646.mp4\r\n10.0_1853_lovely-persimmon-angora-e8c33774b577-20220416-222207.mp4 10.0_3863_thirsty-lavender-koala-7e950daeeca2-20220421-141231.mp4\r\n10.0_1854_lovely-persimmon-angora-e8c33774b577-20220416-222710.mp4 10.0_3864_thirsty-lavender-koala-81c80338521d-20220421-154425.mp4\r\n10.0_1855_lovely-persimmon-angora-e8c33774b577-20220416-223210.mp4 10.0_3865_thirsty-lavender-koala-81c80338521d-20220421-154955.mp4\r\n10.0_1856_lovely-persimmon-angora-e8c33774b577-20220416-223712.mp4 10.0_3866_thirsty-lavender-koala-8bb68fe642ce-20220422-154237.mp4\r\n10.0_1857_lovely-persimmon-angora-e8c33774b577-20220416-224212.mp4 10.0_3867_thirsty-lavender-koala-8bb68fe642ce-20220422-154806.mp4\r\n10.0_1858_lovely-persimmon-angora-e9d3643790ff-20220417-050458.mp4 10.0_3868_thirsty-lavender-koala-8bb68fe642ce-20220422-155303.mp4\r\n10.0_1859_lovely-persimmon-angora-e9d3643790ff-20220417-052002.mp4 10.0_3869_thirsty-lavender-koala-917af9ac292f-20220422-101246.mp4\r\n10.0_185_cheeky-cornflower-setter-7d4d09bb280b-20220423-164052.mp4 10.0_386_cheeky-cornflower-setter-ce7dbae7bd6a-20220416-194037.mp4\r\n10.0_1860_lovely-persimmon-angora-ebac0c263475-20220419-151848.mp4 10.0_3870_thirsty-lavender-koala-917af9ac292f-20220422-101925.mp4\r\n10.0_1861_lovely-persimmon-angora-ec643bba6ada-20220421-231508.mp4 10.0_3871_thirsty-lavender-koala-917af9ac292f-20220422-102422.mp4\r\n10.0_1862_lovely-persimmon-angora-ec643bba6ada-20220421-232510.mp4 10.0_3872_thirsty-lavender-koala-99a1aab577d2-20220414-193807.mp4\r\n10.0_1863_lovely-persimmon-angora-ee3de6717128-20220417-131957.mp4 10.0_3873_thirsty-lavender-koala-99a1aab577d2-20220414-194305.mp4\r\n10.0_1864_lovely-persimmon-angora-eec6b71912af-20220420-131754.mp4 10.0_3874_thirsty-lavender-koala-9c9d0760b4bc-20220422-102627.mp4\r\n10.0_1865_lovely-persimmon-angora-eef2c1a86a1d-20220416-073730.mp4 10.0_3875_thirsty-lavender-koala-9c9d0760b4bc-20220422-103154.mp4\r\n10.0_1866_lovely-persimmon-angora-eff2f1b6996c-20220417-131144.mp4 10.0_3876_thirsty-lavender-koala-9c9d0760b4bc-20220422-103651.mp4\r\n10.0_1867_lovely-persimmon-angora-eff2f1b6996c-20220417-131648.mp4 10.0_3877_thirsty-lavender-koala-9ef285ede667-20220422-160013.mp4\r\n10.0_1868_lovely-persimmon-angora-f0cfbb279849-20220416-091353.mp4 10.0_3878_thirsty-lavender-koala-9ef285ede667-20220422-160512.mp4\r\n10.0_1869_lovely-persimmon-angora-f1513f6b0399-20220417-075108.mp4 10.0_3879_thirsty-lavender-koala-9ef285ede667-20220422-161037.mp4\r\n10.0_186_cheeky-cornflower-setter-7d8eb5a47fda-20220415-192920.mp4 10.0_387_cheeky-cornflower-setter-ce7dbae7bd6a-20220416-194546.mp4\r\n10.0_1870_lovely-persimmon-angora-f1513f6b0399-20220417-075613.mp4 10.0_3880_thirsty-lavender-koala-a3e0d0d187c4-20220415-142550.mp4\r\n10.0_1871_lovely-persimmon-angora-f1513f6b0399-20220417-100015.mp4 10.0_3881_thirsty-lavender-koala-a8194d8dd0a3-20220422-213939.mp4\r\n10.0_1872_lovely-persimmon-angora-f1513f6b0399-20220417-100513.mp4 10.0_3882_thirsty-lavender-koala-ac739fefa8ef-20220422-162045.mp4\r\n10.0_1873_lovely-persimmon-angora-f153ac423f61-20220414-003212.mp4 10.0_3883_thirsty-lavender-koala-ac739fefa8ef-20220422-162614.mp4\r\n10.0_1874_lovely-persimmon-angora-f153ac423f61-20220414-003738.mp4 10.0_3884_thirsty-lavender-koala-ac8f09955e0a-20220415-230421.mp4\r\n10.0_1875_lovely-persimmon-angora-f153ac423f61-20220414-004237.mp4 10.0_3885_thirsty-lavender-koala-acdcb46bc891-20220415-224147.mp4\r\n10.0_1876_lovely-persimmon-angora-f153ac423f61-20220414-004738.mp4 10.0_3886_thirsty-lavender-koala-af565fed5e04-20220423-120319.mp4\r\n10.0_1877_lovely-persimmon-angora-f153ac423f61-20220414-015945.mp4 10.0_3887_thirsty-lavender-koala-af565fed5e04-20220423-120906.mp4\r\n10.0_1878_lovely-persimmon-angora-f153ac423f61-20220414-020538.mp4 10.0_3888_thirsty-lavender-koala-af565fed5e04-20220423-121403.mp4\r\n10.0_1879_lovely-persimmon-angora-f153ac423f61-20220414-021039.mp4 10.0_3889_thirsty-lavender-koala-bba3a3c37083-20220423-110525.mp4\r\n10.0_187_cheeky-cornflower-setter-7d8eb5a47fda-20220415-193427.mp4 10.0_388_cheeky-cornflower-setter-cf48c30a59e3-20220417-172123.mp4\r\n10.0_1880_lovely-persimmon-angora-f153ac423f61-20220414-021538.mp4 10.0_3890_thirsty-lavender-koala-bba3a3c37083-20220423-111022.mp4\r\n10.0_1881_lovely-persimmon-angora-f153ac423f61-20220414-053602.mp4 10.0_3891_thirsty-lavender-koala-bba3a3c37083-20220423-111554.mp4\r\n10.0_1882_lovely-persimmon-angora-f153ac423f61-20220414-054122.mp4 10.0_3892_thirsty-lavender-koala-c59401659108-20220416-193247.mp4\r\n10.0_1883_lovely-persimmon-angora-f153ac423f61-20220414-054621.mp4 10.0_3893_thirsty-lavender-koala-ce6d15d483fc-20220417-134839.mp4\r\n10.0_1884_lovely-persimmon-angora-f153ac423f61-20220414-055119.mp4 10.0_3894_thirsty-lavender-koala-ce6d15d483fc-20220417-140012.mp4\r\n10.0_1885_lovely-persimmon-angora-f153ac423f61-20220414-055618.mp4 10.0_3895_thirsty-lavender-koala-ce85cc648a7d-20220422-151545.mp4\r\n10.0_1886_lovely-persimmon-angora-f153ac423f61-20220414-133303.mp4 10.0_3896_thirsty-lavender-koala-ce85cc648a7d-20220422-152115.mp4\r\n10.0_1887_lovely-persimmon-angora-f153ac423f61-20220414-135251.mp4 10.0_3897_thirsty-lavender-koala-ce85cc648a7d-20220422-152635.mp4\r\n10.0_1888_lovely-persimmon-angora-f153ac423f61-20220414-135749.mp4 10.0_3898_thirsty-lavender-koala-ce85cc648a7d-20220422-153132.mp4\r\n10.0_1889_lovely-persimmon-angora-f153ac423f61-20220414-140248.mp4 10.0_3899_thirsty-lavender-koala-ce85cc648a7d-20220422-153629.mp4\r\n10.0_188_cheeky-cornflower-setter-8106e54c1f1d-20220420-204314.mp4 10.0_389_cheeky-cornflower-setter-cf48c30a59e3-20220417-172633.mp4\r\n10.0_1890_lovely-persimmon-angora-f153ac423f61-20220414-152920.mp4 10.0_3900_thirsty-lavender-koala-d060b1cf599c-20220415-132121.mp4\r\n10.0_1891_lovely-persimmon-angora-f153ac423f61-20220414-153442.mp4 10.0_3901_thirsty-lavender-koala-d060b1cf599c-20220415-132710.mp4\r\n10.0_1892_lovely-persimmon-angora-f153ac423f61-20220414-153942.mp4 10.0_3902_thirsty-lavender-koala-d060b1cf599c-20220415-133208.mp4\r\n10.0_1893_lovely-persimmon-angora-f153ac423f61-20220414-154821.mp4 10.0_3903_thirsty-lavender-koala-d060b1cf599c-20220415-134202.mp4\r\n10.0_1894_lovely-persimmon-angora-f153ac423f61-20220414-201333.mp4 10.0_3904_thirsty-lavender-koala-d43d8cbefa87-20220421-155602.mp4\r\n10.0_1895_lovely-persimmon-angora-f153ac423f61-20220414-201859.mp4 10.0_3905_thirsty-lavender-koala-d43d8cbefa87-20220421-160059.mp4\r\n10.0_1896_lovely-persimmon-angora-f153ac423f61-20220414-214029.mp4 10.0_3906_thirsty-lavender-koala-d43d8cbefa87-20220421-160635.mp4\r\n10.0_1897_lovely-persimmon-angora-f153ac423f61-20220414-214558.mp4 10.0_3907_thirsty-lavender-koala-d5a0b46b0c5f-20220415-140336.mp4\r\n10.0_1898_lovely-persimmon-angora-f153ac423f61-20220414-215058.mp4 10.0_3908_thirsty-lavender-koala-daff1950abd8-20220416-140705.mp4\r\n10.0_1899_lovely-persimmon-angora-f153ac423f61-20220414-215557.mp4 10.0_3909_thirsty-lavender-koala-db68ef1f01e5-20220414-193208.mp4\r\n10.0_189_cheeky-cornflower-setter-8106e54c1f1d-20220420-204821.mp4 10.0_390_cheeky-cornflower-setter-cf48c30a59e3-20220417-173148.mp4\r\n10.0_1900_lovely-persimmon-angora-f153ac423f61-20220414-220056.mp4 10.0_3910_thirsty-lavender-koala-db68ef1f01e5-20220414-193705.mp4\r\n10.0_1901_lovely-persimmon-angora-f153ac423f61-20220414-224855.mp4 10.0_3911_thirsty-lavender-koala-dd4ac20aefbf-20220423-111808.mp4\r\n10.0_1902_lovely-persimmon-angora-f153ac423f61-20220414-225415.mp4 10.0_3912_thirsty-lavender-koala-dd4ac20aefbf-20220423-112336.mp4\r\n10.0_1903_lovely-persimmon-angora-f153ac423f61-20220414-225914.mp4 10.0_3913_thirsty-lavender-koala-dd4ac20aefbf-20220423-113329.mp4\r\n10.0_1904_lovely-persimmon-angora-f153ac423f61-20220414-230412.mp4 10.0_3914_thirsty-lavender-koala-e25a58e01929-20220423-115201.mp4\r\n10.0_1905_lovely-persimmon-angora-f153ac423f61-20220415-035506.mp4 10.0_3915_thirsty-lavender-koala-e25a58e01929-20220423-115737.mp4\r\n10.0_1906_lovely-persimmon-angora-f153ac423f61-20220415-040555.mp4 10.0_3916_thirsty-lavender-koala-e25a58e01929-20220423-120234.mp4\r\n10.0_1907_lovely-persimmon-angora-f153ac423f61-20220415-041115.mp4 10.0_3917_thirsty-lavender-koala-e75b261d85e2-20220421-144910.mp4\r\n10.0_1908_lovely-persimmon-angora-f153ac423f61-20220415-045351.mp4 10.0_3918_thirsty-lavender-koala-e75b261d85e2-20220421-145503.mp4\r\n10.0_1909_lovely-persimmon-angora-f153ac423f61-20220415-045912.mp4 10.0_3919_thirsty-lavender-koala-e75b261d85e2-20220421-145959.mp4\r\n10.0_190_cheeky-cornflower-setter-8106e54c1f1d-20220420-205328.mp4 10.0_391_cheeky-cornflower-setter-cf48c30a59e3-20220417-173659.mp4\r\n10.0_1910_lovely-persimmon-angora-f153ac423f61-20220415-050413.mp4 10.0_3920_thirsty-lavender-koala-e783ff4c52c6-20220422-210956.mp4\r\n10.0_1911_lovely-persimmon-angora-f153ac423f61-20220415-103536.mp4 10.0_3921_thirsty-lavender-koala-ed13419c690c-20220422-215455.mp4\r\n10.0_1912_lovely-persimmon-angora-f153ac423f61-20220415-104057.mp4 10.0_3922_thirsty-lavender-koala-f153ac423f61-20220414-104227.mp4\r\n10.0_1913_lovely-persimmon-angora-f153ac423f61-20220415-104556.mp4 10.0_3923_thirsty-lavender-koala-f153ac423f61-20220414-104437.mp4\r\n10.0_1914_lovely-persimmon-angora-f153ac423f61-20220415-105054.mp4 10.0_3924_thirsty-lavender-koala-f153ac423f61-20220414-105052.mp4\r\n10.0_1915_lovely-persimmon-angora-f153ac423f61-20220415-111653.mp4 10.0_3925_thirsty-lavender-koala-f153ac423f61-20220414-105550.mp4\r\n10.0_1916_lovely-persimmon-angora-f153ac423f61-20220415-112209.mp4 10.0_3926_thirsty-lavender-koala-f153ac423f61-20220414-110046.mp4\r\n10.0_1917_lovely-persimmon-angora-f153ac423f61-20220415-150158.mp4 10.0_3927_thirsty-lavender-koala-f153ac423f61-20220414-110544.mp4\r\n10.0_1918_lovely-persimmon-angora-f153ac423f61-20220415-150723.mp4 10.0_3928_thirsty-lavender-koala-f153ac423f61-20220414-175738.mp4\r\n10.0_1919_lovely-persimmon-angora-f153ac423f61-20220415-151222.mp4 10.0_3929_thirsty-lavender-koala-f153ac423f61-20220414-180237.mp4\r\n10.0_191_cheeky-cornflower-setter-8106e54c1f1d-20220420-205834.mp4 10.0_392_cheeky-cornflower-setter-d17755b9f798-20220415-100935.mp4\r\n10.0_1920_lovely-persimmon-angora-f153ac423f61-20220415-151723.mp4 10.0_3930_thirsty-lavender-koala-f153ac423f61-20220414-180743.mp4\r\n10.0_1921_lovely-persimmon-angora-f153ac423f61-20220415-190151.mp4 10.0_3931_thirsty-lavender-koala-f153ac423f61-20220414-181241.mp4\r\n10.0_1922_lovely-persimmon-angora-f153ac423f61-20220415-190711.mp4 10.0_3932_thirsty-lavender-koala-f153ac423f61-20220414-192402.mp4\r\n10.0_1923_lovely-persimmon-angora-f153ac423f61-20220415-191212.mp4 10.0_3933_thirsty-lavender-koala-f153ac423f61-20220414-192912.mp4\r\n10.0_1924_lovely-persimmon-angora-f153ac423f61-20220415-191713.mp4 10.0_3934_thirsty-lavender-koala-f153ac423f61-20220415-130820.mp4\r\n10.0_1925_lovely-persimmon-angora-f153ac423f61-20220415-192215.mp4 10.0_3935_thirsty-lavender-koala-f153ac423f61-20220415-131319.mp4\r\n10.0_1926_lovely-persimmon-angora-f153ac423f61-20220415-195645.mp4 10.0_3936_thirsty-lavender-koala-f153ac423f61-20220415-131817.mp4\r\n10.0_1927_lovely-persimmon-angora-f153ac423f61-20220415-200205.mp4 10.0_3937_thirsty-lavender-koala-f153ac423f61-20220415-220216.mp4\r\n10.0_1928_lovely-persimmon-angora-f153ac423f61-20220415-200705.mp4 10.0_3938_thirsty-lavender-koala-f153ac423f61-20220415-220749.mp4\r\n10.0_1929_lovely-persimmon-angora-f153ac423f61-20220415-205356.mp4 10.0_3939_thirsty-lavender-koala-f153ac423f61-20220415-221251.mp4\r\n10.0_192_cheeky-cornflower-setter-81a52cd113c1-20220416-132756.mp4 10.0_393_cheeky-cornflower-setter-d17755b9f798-20220415-101444.mp4\r\n10.0_1930_lovely-persimmon-angora-f153ac423f61-20220415-205919.mp4 10.0_3940_thirsty-lavender-koala-f153ac423f61-20220415-221749.mp4\r\n10.0_1931_lovely-persimmon-angora-f153ac423f61-20220415-210420.mp4 10.0_3941_thirsty-lavender-koala-f153ac423f61-20220416-124041.mp4\r\n10.0_1932_lovely-persimmon-angora-f153ac423f61-20220416-011800.mp4 10.0_3942_thirsty-lavender-koala-f153ac423f61-20220416-124539.mp4\r\n10.0_1933_lovely-persimmon-angora-f153ac423f61-20220416-012231.mp4 10.0_3943_thirsty-lavender-koala-f153ac423f61-20220416-170339.mp4\r\n10.0_1934_lovely-persimmon-angora-f153ac423f61-20220416-012806.mp4 10.0_3944_thirsty-lavender-koala-f153ac423f61-20220416-170837.mp4\r\n10.0_1935_lovely-persimmon-angora-f153ac423f61-20220416-013308.mp4 10.0_3945_thirsty-lavender-koala-f153ac423f61-20220416-171335.mp4\r\n10.0_1936_lovely-persimmon-angora-f153ac423f61-20220416-013813.mp4 10.0_3946_thirsty-lavender-koala-f153ac423f61-20220416-171832.mp4\r\n10.0_1937_lovely-persimmon-angora-f153ac423f61-20220416-014551.mp4 10.0_3947_thirsty-lavender-koala-f153ac423f61-20220416-172329.mp4\r\n10.0_1938_lovely-persimmon-angora-f153ac423f61-20220416-063505.mp4 10.0_3948_thirsty-lavender-koala-f153ac423f61-20220417-133055.mp4\r\n10.0_1939_lovely-persimmon-angora-f153ac423f61-20220416-135137.mp4 10.0_3949_thirsty-lavender-koala-f153ac423f61-20220417-133630.mp4\r\n10.0_193_cheeky-cornflower-setter-81a52cd113c1-20220416-133316.mp4 10.0_394_cheeky-cornflower-setter-d17755b9f798-20220415-101953.mp4\r\n10.0_1940_lovely-persimmon-angora-f153ac423f61-20220416-135709.mp4 10.0_3950_thirsty-lavender-koala-f153ac423f61-20220417-134133.mp4\r\n10.0_1941_lovely-persimmon-angora-f153ac423f61-20220416-180543.mp4 10.0_3951_thirsty-lavender-koala-f153ac423f61-20220417-134630.mp4\r\n10.0_1942_lovely-persimmon-angora-f153ac423f61-20220416-181112.mp4 10.0_3952_thirsty-lavender-koala-f153ac423f61-20220421-130403.mp4\r\n10.0_1943_lovely-persimmon-angora-f153ac423f61-20220416-181617.mp4 10.0_3953_thirsty-lavender-koala-f153ac423f61-20220421-130914.mp4\r\n10.0_1944_lovely-persimmon-angora-f153ac423f61-20220416-182117.mp4 10.0_3954_thirsty-lavender-koala-f153ac423f61-20220421-131518.mp4\r\n10.0_1945_lovely-persimmon-angora-f153ac423f61-20220416-182617.mp4 10.0_3955_thirsty-lavender-koala-f153ac423f61-20220421-132015.mp4\r\n10.0_1946_lovely-persimmon-angora-f153ac423f61-20220416-213717.mp4 10.0_3956_thirsty-lavender-koala-f153ac423f61-20220421-132512.mp4\r\n10.0_1947_lovely-persimmon-angora-f153ac423f61-20220416-214236.mp4 10.0_3957_thirsty-lavender-koala-f153ac423f61-20220422-095927.mp4\r\n10.0_1948_lovely-persimmon-angora-f153ac423f61-20220416-214736.mp4 10.0_3958_thirsty-lavender-koala-f153ac423f61-20220422-100500.mp4\r\n10.0_1949_lovely-persimmon-angora-f153ac423f61-20220416-215235.mp4 10.0_3959_thirsty-lavender-koala-f153ac423f61-20220422-100957.mp4\r\n10.0_194_cheeky-cornflower-setter-824504a2f291-20220415-122034.mp4 10.0_395_cheeky-cornflower-setter-d17755b9f798-20220415-102458.mp4\r\n10.0_1950_lovely-persimmon-angora-f153ac423f61-20220417-020701.mp4 10.0_3960_thirsty-lavender-koala-f153ac423f61-20220422-150214.mp4\r\n10.0_1951_lovely-persimmon-angora-f153ac423f61-20220417-021225.mp4 10.0_3961_thirsty-lavender-koala-f153ac423f61-20220422-150758.mp4\r\n10.0_1952_lovely-persimmon-angora-f153ac423f61-20220417-021724.mp4 10.0_3962_thirsty-lavender-koala-f153ac423f61-20220422-151255.mp4\r\n10.0_1953_lovely-persimmon-angora-f153ac423f61-20220417-022222.mp4 10.0_3963_thirsty-lavender-koala-f153ac423f61-20220422-205523.mp4\r\n10.0_1954_lovely-persimmon-angora-f153ac423f61-20220417-022804.mp4 10.0_3964_thirsty-lavender-koala-f153ac423f61-20220422-210050.mp4\r\n10.0_1955_lovely-persimmon-angora-f153ac423f61-20220417-071515.mp4 10.0_3965_thirsty-lavender-koala-f153ac423f61-20220422-210603.mp4\r\n10.0_1956_lovely-persimmon-angora-f153ac423f61-20220417-072035.mp4 10.0_3966_thirsty-lavender-koala-f153ac423f61-20220423-094206.mp4\r\n10.0_1957_lovely-persimmon-angora-f153ac423f61-20220417-072533.mp4 10.0_3967_thirsty-lavender-koala-f153ac423f61-20220423-094704.mp4\r\n10.0_1958_lovely-persimmon-angora-f153ac423f61-20220417-073031.mp4 10.0_3968_thirsty-lavender-koala-f153ac423f61-20220423-095239.mp4\r\n10.0_1959_lovely-persimmon-angora-f153ac423f61-20220417-073529.mp4 10.0_3969_thirsty-lavender-koala-f153ac423f61-20220423-105025.mp4\r\n10.0_195_cheeky-cornflower-setter-824504a2f291-20220415-122544.mp4 10.0_396_cheeky-cornflower-setter-d2855cba09a2-20220423-233116.mp4\r\n10.0_1960_lovely-persimmon-angora-f153ac423f61-20220417-154400.mp4 10.0_3970_thirsty-lavender-koala-f153ac423f61-20220423-105853.mp4\r\n10.0_1961_lovely-persimmon-angora-f153ac423f61-20220417-154918.mp4 10.0_3971_thirsty-lavender-koala-f153ac423f61-20220423-110429.mp4\r\n10.0_1962_lovely-persimmon-angora-f153ac423f61-20220417-155416.mp4 10.0_3972_trippy-red-llama-02630dd4ef35-20220422-163101.mp4\r\n10.0_1963_lovely-persimmon-angora-f153ac423f61-20220417-155914.mp4 10.0_3973_trippy-red-llama-02630dd4ef35-20220422-163608.mp4\r\n10.0_1964_lovely-persimmon-angora-f153ac423f61-20220417-160413.mp4 10.0_3974_trippy-red-llama-02630dd4ef35-20220422-164116.mp4\r\n10.0_1965_lovely-persimmon-angora-f153ac423f61-20220417-165500.mp4 10.0_3975_trippy-red-llama-02e87d0b4b50-20220416-154702.mp4\r\n10.0_1966_lovely-persimmon-angora-f153ac423f61-20220417-170025.mp4 10.0_3976_trippy-red-llama-02e87d0b4b50-20220416-155214.mp4\r\n10.0_1967_lovely-persimmon-angora-f153ac423f61-20220417-170526.mp4 10.0_3977_trippy-red-llama-02e87d0b4b50-20220416-155724.mp4\r\n10.0_1968_lovely-persimmon-angora-f153ac423f61-20220417-171025.mp4 10.0_3978_trippy-red-llama-02e87d0b4b50-20220416-160231.mp4\r\n10.0_1969_lovely-persimmon-angora-f153ac423f61-20220417-171524.mp4 10.0_3979_trippy-red-llama-02e87d0b4b50-20220416-160740.mp4\r\n10.0_196_cheeky-cornflower-setter-824504a2f291-20220415-123050.mp4 10.0_397_cheeky-cornflower-setter-d2855cba09a2-20220423-233628.mp4\r\n10.0_1970_lovely-persimmon-angora-f153ac423f61-20220418-064518.mp4 10.0_3980_trippy-red-llama-0347c3d99bba-20220416-165611.mp4\r\n10.0_1971_lovely-persimmon-angora-f153ac423f61-20220418-065042.mp4 10.0_3981_trippy-red-llama-0347c3d99bba-20220416-170124.mp4\r\n10.0_1972_lovely-persimmon-angora-f153ac423f61-20220418-065541.mp4 10.0_3982_trippy-red-llama-0347c3d99bba-20220416-170653.mp4\r\n10.0_1973_lovely-persimmon-angora-f153ac423f61-20220418-070041.mp4 10.0_3983_trippy-red-llama-0347c3d99bba-20220416-171426.mp4\r\n10.0_1974_lovely-persimmon-angora-f153ac423f61-20220418-070543.mp4 10.0_3984_trippy-red-llama-0347c3d99bba-20220416-171934.mp4\r\n10.0_1975_lovely-persimmon-angora-f153ac423f61-20220418-203358.mp4 10.0_3985_trippy-red-llama-0d94a3d90657-20220422-184954.mp4\r\n10.0_1976_lovely-persimmon-angora-f153ac423f61-20220418-203929.mp4 10.0_3986_trippy-red-llama-0d94a3d90657-20220422-185525.mp4\r\n10.0_1977_lovely-persimmon-angora-f153ac423f61-20220418-204432.mp4 10.0_3987_trippy-red-llama-105381fac26f-20220416-193806.mp4\r\n10.0_1978_lovely-persimmon-angora-f153ac423f61-20220418-204931.mp4 10.0_3988_trippy-red-llama-105381fac26f-20220416-194338.mp4\r\n10.0_1979_lovely-persimmon-angora-f153ac423f61-20220418-205430.mp4 10.0_3989_trippy-red-llama-105381fac26f-20220416-194848.mp4\r\n10.0_197_cheeky-cornflower-setter-824504a2f291-20220415-123556.mp4 10.0_398_cheeky-cornflower-setter-d2855cba09a2-20220423-234139.mp4\r\n10.0_1980_lovely-persimmon-angora-f153ac423f61-20220418-214011.mp4 10.0_3990_trippy-red-llama-1390064b21f8-20220415-220506.mp4\r\n10.0_1981_lovely-persimmon-angora-f153ac423f61-20220418-220947.mp4 10.0_3991_trippy-red-llama-28314073c243-20220415-192000.mp4\r\n10.0_1982_lovely-persimmon-angora-f153ac423f61-20220418-221447.mp4 10.0_3992_trippy-red-llama-28314073c243-20220415-192513.mp4\r\n10.0_1983_lovely-persimmon-angora-f153ac423f61-20220418-221945.mp4 10.0_3993_trippy-red-llama-28402705d5ed-20220415-211256.mp4\r\n10.0_1984_lovely-persimmon-angora-f153ac423f61-20220418-222445.mp4 10.0_3994_trippy-red-llama-28402705d5ed-20220415-211830.mp4\r\n10.0_1985_lovely-persimmon-angora-f153ac423f61-20220419-032131.mp4 10.0_3995_trippy-red-llama-28402705d5ed-20220415-212350.mp4\r\n10.0_1986_lovely-persimmon-angora-f153ac423f61-20220419-032719.mp4 10.0_3996_trippy-red-llama-285c4becc17a-20220416-172922.mp4\r\n10.0_1987_lovely-persimmon-angora-f153ac423f61-20220419-033224.mp4 10.0_3997_trippy-red-llama-285c4becc17a-20220416-173436.mp4\r\n10.0_1988_lovely-persimmon-angora-f153ac423f61-20220419-033726.mp4 10.0_3998_trippy-red-llama-2d46b49dc77d-20220420-153412.mp4\r\n10.0_1989_lovely-persimmon-angora-f153ac423f61-20220419-034225.mp4 10.0_3999_trippy-red-llama-2d46b49dc77d-20220420-153924.mp4\r\n10.0_198_cheeky-cornflower-setter-82f9b652399f-20220416-215325.mp4 10.0_399_cheeky-cornflower-setter-d47fb613a557-20220415-212006.mp4\r\n10.0_1990_lovely-persimmon-angora-f153ac423f61-20220419-143043.mp4 10.0_4000_trippy-red-llama-2d46b49dc77d-20220420-154458.mp4\r\n10.0_1991_lovely-persimmon-angora-f153ac423f61-20220419-171113.mp4 10.0_4001_trippy-red-llama-2d46b49dc77d-20220420-155009.mp4\r\n10.0_1992_lovely-persimmon-angora-f153ac423f61-20220419-171633.mp4 10.0_4002_trippy-red-llama-31f00fbc6b1b-20220415-214406.mp4\r\n10.0_1993_lovely-persimmon-angora-f153ac423f61-20220419-200147.mp4 10.0_4003_trippy-red-llama-31f00fbc6b1b-20220415-214929.mp4\r\n10.0_1994_lovely-persimmon-angora-f153ac423f61-20220419-200721.mp4 10.0_4004_trippy-red-llama-31f00fbc6b1b-20220415-215445.mp4\r\n10.0_1995_lovely-persimmon-angora-f153ac423f61-20220419-201227.mp4 10.0_4005_trippy-red-llama-31f00fbc6b1b-20220415-215957.mp4\r\n10.0_1996_lovely-persimmon-angora-f153ac423f61-20220419-213041.mp4 10.0_4006_trippy-red-llama-39bb8cd6cf7b-20220420-161358.mp4\r\n10.0_1997_lovely-persimmon-angora-f153ac423f61-20220419-213557.mp4 10.0_4007_trippy-red-llama-39bb8cd6cf7b-20220420-161948.mp4\r\n10.0_1998_lovely-persimmon-angora-f153ac423f61-20220419-214057.mp4 10.0_4008_trippy-red-llama-39bb8cd6cf7b-20220420-162731.mp4\r\n10.0_1999_lovely-persimmon-angora-f153ac423f61-20220419-214555.mp4 10.0_4009_trippy-red-llama-39bb8cd6cf7b-20220420-163238.mp4\r\n10.0_199_cheeky-cornflower-setter-82f9b652399f-20220416-215836.mp4 10.0_400_cheeky-cornflower-setter-d47fb613a557-20220415-212533.mp4\r\n10.0_2000_lovely-persimmon-angora-f153ac423f61-20220419-215054.mp4 10.0_4010_trippy-red-llama-3ad0c143bca6-20220416-195839.mp4\r\n10.0_2001_lovely-persimmon-angora-f153ac423f61-20220420-020138.mp4 10.0_4011_trippy-red-llama-3ad0c143bca6-20220416-200430.mp4\r\n10.0_2002_lovely-persimmon-angora-f153ac423f61-20220420-020659.mp4 10.0_4012_trippy-red-llama-3ad0c143bca6-20220416-200954.mp4\r\n10.0_2003_lovely-persimmon-angora-f153ac423f61-20220420-021158.mp4 10.0_4013_trippy-red-llama-3ad0c143bca6-20220416-201508.mp4\r\n10.0_2004_lovely-persimmon-angora-f153ac423f61-20220420-021657.mp4 10.0_4014_trippy-red-llama-3ad0c143bca6-20220416-202017.mp4\r\n10.0_2005_lovely-persimmon-angora-f153ac423f61-20220420-022156.mp4 10.0_4015_trippy-red-llama-402454d3c21d-20220415-192856.mp4\r\n10.0_2006_lovely-persimmon-angora-f153ac423f61-20220420-023558.mp4 10.0_4016_trippy-red-llama-402454d3c21d-20220415-193424.mp4\r\n10.0_2007_lovely-persimmon-angora-f153ac423f61-20220420-024136.mp4 10.0_4017_trippy-red-llama-402454d3c21d-20220415-193939.mp4\r\n10.0_2008_lovely-persimmon-angora-f153ac423f61-20220420-024637.mp4 10.0_4018_trippy-red-llama-4d6b87ad1adf-20220421-195903.mp4\r\n10.0_2009_lovely-persimmon-angora-f153ac423f61-20220420-025135.mp4 10.0_4019_trippy-red-llama-4d6b87ad1adf-20220421-200433.mp4\r\n10.0_200_cheeky-cornflower-setter-82f9b652399f-20220416-220352.mp4 10.0_401_cheeky-cornflower-setter-d47fb613a557-20220415-213102.mp4\r\n10.0_2010_lovely-persimmon-angora-f153ac423f61-20220420-091325.mp4 10.0_4020_trippy-red-llama-4d6b87ad1adf-20220421-200953.mp4\r\n10.0_2011_lovely-persimmon-angora-f153ac423f61-20220420-091845.mp4 10.0_4021_trippy-red-llama-54b229e79dd2-20220421-221850.mp4\r\n10.0_2012_lovely-persimmon-angora-f153ac423f61-20220420-092345.mp4 10.0_4022_trippy-red-llama-54b229e79dd2-20220421-222403.mp4\r\n10.0_2013_lovely-persimmon-angora-f153ac423f61-20220420-092844.mp4 10.0_4023_trippy-red-llama-54b229e79dd2-20220421-222915.mp4\r\n10.0_2014_lovely-persimmon-angora-f153ac423f61-20220420-093342.mp4 10.0_4024_trippy-red-llama-5b608d905cc3-20220422-183900.mp4\r\n10.0_2015_lovely-persimmon-angora-f153ac423f61-20220420-141117.mp4 10.0_4025_trippy-red-llama-5b608d905cc3-20220422-184408.mp4\r\n10.0_2016_lovely-persimmon-angora-f153ac423f61-20220420-141650.mp4 10.0_4026_trippy-red-llama-5b608d905cc3-20220422-184928.mp4\r\n10.0_2017_lovely-persimmon-angora-f153ac423f61-20220420-174349.mp4 10.0_4027_trippy-red-llama-5f0eebfff0c8-20220421-223745.mp4\r\n10.0_2018_lovely-persimmon-angora-f153ac423f61-20220420-174908.mp4 10.0_4028_trippy-red-llama-60ed08c3094d-20220422-151422.mp4\r\n10.0_2019_lovely-persimmon-angora-f153ac423f61-20220420-181226.mp4 10.0_4029_trippy-red-llama-6254d31ede86-20220420-175218.mp4\r\n10.0_201_cheeky-cornflower-setter-82f9b652399f-20220416-220902.mp4 10.0_402_cheeky-cornflower-setter-d6271ff1db34-20220418-112646.mp4\r\n10.0_2020_lovely-persimmon-angora-f153ac423f61-20220420-181741.mp4 10.0_4030_trippy-red-llama-6412a8fe3bcc-20220421-215219.mp4\r\n10.0_2021_lovely-persimmon-angora-f153ac423f61-20220420-182240.mp4 10.0_4031_trippy-red-llama-6412a8fe3bcc-20220421-215818.mp4\r\n10.0_2022_lovely-persimmon-angora-f153ac423f61-20220420-182740.mp4 10.0_4032_trippy-red-llama-6412a8fe3bcc-20220421-220508.mp4\r\n10.0_2023_lovely-persimmon-angora-f153ac423f61-20220420-183239.mp4 10.0_4033_trippy-red-llama-6412a8fe3bcc-20220421-221023.mp4\r\n10.0_2024_lovely-persimmon-angora-f153ac423f61-20220420-194711.mp4 10.0_4034_trippy-red-llama-6a74b3f7f1e8-20220420-164011.mp4\r\n10.0_2025_lovely-persimmon-angora-f153ac423f61-20220420-195230.mp4 10.0_4035_trippy-red-llama-6a74b3f7f1e8-20220420-164520.mp4\r\n10.0_2026_lovely-persimmon-angora-f153ac423f61-20220420-195729.mp4 10.0_4036_trippy-red-llama-6a74b3f7f1e8-20220420-165030.mp4\r\n10.0_2027_lovely-persimmon-angora-f153ac423f61-20220420-200228.mp4 10.0_4037_trippy-red-llama-6a74b3f7f1e8-20220420-165536.mp4\r\n10.0_2028_lovely-persimmon-angora-f153ac423f61-20220420-221956.mp4 10.0_4038_trippy-red-llama-6a74b3f7f1e8-20220420-170043.mp4\r\n10.0_2029_lovely-persimmon-angora-f153ac423f61-20220420-222519.mp4 10.0_4039_trippy-red-llama-7e95232b0cbf-20220420-175404.mp4\r\n10.0_202_cheeky-cornflower-setter-85a9d0b40dcd-20220416-175809.mp4 10.0_403_cheeky-cornflower-setter-d6271ff1db34-20220418-113151.mp4\r\n10.0_2030_lovely-persimmon-angora-f153ac423f61-20220420-223018.mp4 10.0_4040_trippy-red-llama-7f91f89f534d-20220416-161343.mp4\r\n10.0_2031_lovely-persimmon-angora-f153ac423f61-20220420-225549.mp4 10.0_4041_trippy-red-llama-7f91f89f534d-20220416-161923.mp4\r\n10.0_2032_lovely-persimmon-angora-f153ac423f61-20220420-230138.mp4 10.0_4042_trippy-red-llama-7f91f89f534d-20220416-162456.mp4\r\n10.0_2033_lovely-persimmon-angora-f153ac423f61-20220420-230713.mp4 10.0_4043_trippy-red-llama-7f91f89f534d-20220416-163009.mp4\r\n10.0_2034_lovely-persimmon-angora-f153ac423f61-20220420-231214.mp4 10.0_4044_trippy-red-llama-84207d1e3d50-20220416-175603.mp4\r\n10.0_2035_lovely-persimmon-angora-f153ac423f61-20220420-231716.mp4 10.0_4045_trippy-red-llama-84207d1e3d50-20220416-180108.mp4\r\n10.0_2036_lovely-persimmon-angora-f153ac423f61-20220420-232218.mp4 10.0_4046_trippy-red-llama-84207d1e3d50-20220416-180617.mp4\r\n10.0_2037_lovely-persimmon-angora-f153ac423f61-20220421-004227.mp4 10.0_4047_trippy-red-llama-84207d1e3d50-20220416-181130.mp4\r\n10.0_2038_lovely-persimmon-angora-f153ac423f61-20220421-004744.mp4 10.0_4048_trippy-red-llama-84207d1e3d50-20220416-181641.mp4\r\n10.0_2039_lovely-persimmon-angora-f153ac423f61-20220421-005244.mp4 10.0_4049_trippy-red-llama-8a9365b90a99-20220422-190720.mp4\r\n10.0_203_cheeky-cornflower-setter-85a9d0b40dcd-20220416-180318.mp4 10.0_404_cheeky-cornflower-setter-d6271ff1db34-20220418-113655.mp4\r\n10.0_2040_lovely-persimmon-angora-f153ac423f61-20220421-012737.mp4 10.0_4050_trippy-red-llama-8a9365b90a99-20220422-191315.mp4\r\n10.0_2041_lovely-persimmon-angora-f153ac423f61-20220421-013257.mp4 10.0_4051_trippy-red-llama-8a9365b90a99-20220422-192019.mp4\r\n10.0_2042_lovely-persimmon-angora-f153ac423f61-20220421-013756.mp4 10.0_4052_trippy-red-llama-8aa1ae3eb518-20220422-181527.mp4\r\n10.0_2043_lovely-persimmon-angora-f153ac423f61-20220421-014255.mp4 10.0_4053_trippy-red-llama-8aa1ae3eb518-20220422-182046.mp4\r\n10.0_2044_lovely-persimmon-angora-f153ac423f61-20220421-014753.mp4 10.0_4054_trippy-red-llama-8aa1ae3eb518-20220422-182600.mp4\r\n10.0_2045_lovely-persimmon-angora-f153ac423f61-20220421-041154.mp4 10.0_4055_trippy-red-llama-9abeeaa15f61-20220421-201303.mp4\r\n10.0_2046_lovely-persimmon-angora-f153ac423f61-20220421-041711.mp4 10.0_4056_trippy-red-llama-9abeeaa15f61-20220421-201820.mp4\r\n10.0_2047_lovely-persimmon-angora-f153ac423f61-20220421-042210.mp4 10.0_4057_trippy-red-llama-a0e3295e243d-20220415-234637.mp4\r\n10.0_2048_lovely-persimmon-angora-f153ac423f61-20220421-042709.mp4 10.0_4058_trippy-red-llama-a0e3295e243d-20220415-235156.mp4\r\n10.0_2049_lovely-persimmon-angora-f153ac423f61-20220421-043208.mp4 10.0_4059_trippy-red-llama-a0e3295e243d-20220415-235710.mp4\r\n10.0_204_cheeky-cornflower-setter-88b199c32cb1-20220421-192515.mp4 10.0_405_cheeky-cornflower-setter-d7ba96c35954-20220423-141526.mp4\r\n10.0_2050_lovely-persimmon-angora-f153ac423f61-20220421-054547.mp4 10.0_4060_trippy-red-llama-a0e3295e243d-20220416-000222.mp4\r\n10.0_2051_lovely-persimmon-angora-f153ac423f61-20220421-055106.mp4 10.0_4061_trippy-red-llama-a1e3f6dfbf3f-20220422-151618.mp4\r\n10.0_2052_lovely-persimmon-angora-f153ac423f61-20220421-055606.mp4 10.0_4062_trippy-red-llama-a1e3f6dfbf3f-20220422-152231.mp4\r\n10.0_2053_lovely-persimmon-angora-f153ac423f61-20220421-060105.mp4 10.0_4063_trippy-red-llama-a607cb7a59d6-20220416-190705.mp4\r\n10.0_2054_lovely-persimmon-angora-f153ac423f61-20220421-060603.mp4 10.0_4064_trippy-red-llama-a607cb7a59d6-20220416-191220.mp4\r\n10.0_2055_lovely-persimmon-angora-f153ac423f61-20220421-093412.mp4 10.0_4065_trippy-red-llama-a607cb7a59d6-20220416-191730.mp4\r\n10.0_2056_lovely-persimmon-angora-f153ac423f61-20220421-093928.mp4 10.0_4066_trippy-red-llama-a607cb7a59d6-20220416-192236.mp4\r\n10.0_2057_lovely-persimmon-angora-f153ac423f61-20220421-094431.mp4 10.0_4067_trippy-red-llama-a607cb7a59d6-20220416-192742.mp4\r\n10.0_2058_lovely-persimmon-angora-f153ac423f61-20220421-094931.mp4 10.0_4068_trippy-red-llama-abb00dcfc2b8-20220415-191536.mp4\r\n10.0_2059_lovely-persimmon-angora-f153ac423f61-20220421-095430.mp4 10.0_4069_trippy-red-llama-ad3f3d4f06bc-20220415-192634.mp4\r\n10.0_205_cheeky-cornflower-setter-88b199c32cb1-20220421-193024.mp4 10.0_406_cheeky-cornflower-setter-d7ba96c35954-20220423-142035.mp4\r\n10.0_2060_lovely-persimmon-angora-f153ac423f61-20220421-104605.mp4 10.0_4070_trippy-red-llama-b0ef4896aac5-20220415-194134.mp4\r\n10.0_2061_lovely-persimmon-angora-f153ac423f61-20220421-105227.mp4 10.0_4071_trippy-red-llama-b0ef4896aac5-20220415-194645.mp4\r\n10.0_2062_lovely-persimmon-angora-f153ac423f61-20220421-190118.mp4 10.0_4072_trippy-red-llama-b380da9155f1-20220421-185327.mp4\r\n10.0_2063_lovely-persimmon-angora-f153ac423f61-20220421-190642.mp4 10.0_4073_trippy-red-llama-b380da9155f1-20220421-185850.mp4\r\n10.0_2064_lovely-persimmon-angora-f153ac423f61-20220421-191144.mp4 10.0_4074_trippy-red-llama-b380da9155f1-20220421-190412.mp4\r\n10.0_2065_lovely-persimmon-angora-f153ac423f61-20220421-191642.mp4 10.0_4075_trippy-red-llama-b380da9155f1-20220421-190925.mp4\r\n10.0_2066_lovely-persimmon-angora-f153ac423f61-20220421-192142.mp4 10.0_4076_trippy-red-llama-b380da9155f1-20220421-191435.mp4\r\n10.0_2067_lovely-persimmon-angora-f153ac423f61-20220421-200103.mp4 10.0_4077_trippy-red-llama-bb52638e65d6-20220420-181422.mp4\r\n10.0_2068_lovely-persimmon-angora-f153ac423f61-20220421-200626.mp4 10.0_4078_trippy-red-llama-bb52638e65d6-20220420-181934.mp4\r\n10.0_2069_lovely-persimmon-angora-f153ac423f61-20220421-201125.mp4 10.0_4079_trippy-red-llama-bb52638e65d6-20220420-182443.mp4\r\n10.0_206_cheeky-cornflower-setter-88b199c32cb1-20220421-193530.mp4 10.0_407_cheeky-cornflower-setter-d7ba96c35954-20220423-142543.mp4\r\n10.0_2070_lovely-persimmon-angora-f153ac423f61-20220421-201625.mp4 10.0_4080_trippy-red-llama-c60e862e7b98-20220415-203413.mp4\r\n10.0_2071_lovely-persimmon-angora-f153ac423f61-20220421-202124.mp4 10.0_4081_trippy-red-llama-c60e862e7b98-20220415-203927.mp4\r\n10.0_2072_lovely-persimmon-angora-f153ac423f61-20220421-205302.mp4 10.0_4082_trippy-red-llama-c60e862e7b98-20220415-204445.mp4\r\n10.0_2073_lovely-persimmon-angora-f153ac423f61-20220421-205820.mp4 10.0_4083_trippy-red-llama-c60e862e7b98-20220415-204959.mp4\r\n10.0_2074_lovely-persimmon-angora-f153ac423f61-20220421-210320.mp4 10.0_4084_trippy-red-llama-c60e862e7b98-20220415-205516.mp4\r\n10.0_2075_lovely-persimmon-angora-f153ac423f61-20220421-210817.mp4 10.0_4085_trippy-red-llama-c8804f6d4981-20220421-201153.mp4\r\n10.0_2076_lovely-persimmon-angora-f153ac423f61-20220421-211315.mp4 10.0_4086_trippy-red-llama-cbd071ff0ee7-20220415-222546.mp4\r\n10.0_2077_lovely-persimmon-angora-f153ac423f61-20220421-225405.mp4 10.0_4087_trippy-red-llama-cbd071ff0ee7-20220415-223101.mp4\r\n10.0_2078_lovely-persimmon-angora-f153ac423f61-20220421-225926.mp4 10.0_4088_trippy-red-llama-cbd071ff0ee7-20220415-223611.mp4\r\n10.0_2079_lovely-persimmon-angora-f153ac423f61-20220421-230426.mp4 10.0_4089_trippy-red-llama-cbd071ff0ee7-20220415-224122.mp4\r\n10.0_207_cheeky-cornflower-setter-88b199c32cb1-20220421-194037.mp4 10.0_408_cheeky-cornflower-setter-d7ba96c35954-20220423-143049.mp4\r\n10.0_2080_lovely-persimmon-angora-f153ac423f61-20220422-001712.mp4 10.0_4090_trippy-red-llama-cbd071ff0ee7-20220415-224631.mp4\r\n10.0_2081_lovely-persimmon-angora-f153ac423f61-20220422-002232.mp4 10.0_4091_trippy-red-llama-ce476b3bd455-20220421-203045.mp4\r\n10.0_2082_lovely-persimmon-angora-f153ac423f61-20220422-002731.mp4 10.0_4092_trippy-red-llama-ce476b3bd455-20220421-203857.mp4\r\n10.0_2083_lovely-persimmon-angora-f153ac423f61-20220422-003230.mp4 10.0_4093_trippy-red-llama-ce476b3bd455-20220421-204424.mp4\r\n10.0_2084_lovely-persimmon-angora-f153ac423f61-20220422-003729.mp4 10.0_4094_trippy-red-llama-ce476b3bd455-20220421-204939.mp4\r\n10.0_2085_lovely-persimmon-angora-f153ac423f61-20220422-013823.mp4 10.0_4095_trippy-red-llama-d6087be5f80c-20220421-205319.mp4\r\n10.0_2086_lovely-persimmon-angora-f153ac423f61-20220422-014352.mp4 10.0_4096_trippy-red-llama-d8c451cba964-20220420-160048.mp4\r\n10.0_2087_lovely-persimmon-angora-f153ac423f61-20220422-014854.mp4 10.0_4097_trippy-red-llama-d8c451cba964-20220420-160624.mp4\r\n10.0_2088_lovely-persimmon-angora-f153ac423f61-20220422-015356.mp4 10.0_4098_trippy-red-llama-d8c451cba964-20220420-161129.mp4\r\n10.0_2089_lovely-persimmon-angora-f153ac423f61-20220422-015901.mp4 10.0_4099_trippy-red-llama-e63bcce8f826-20220420-174153.mp4\r\n10.0_208_cheeky-cornflower-setter-8915620646e9-20220423-164356.mp4 10.0_409_cheeky-cornflower-setter-d89692dfa401-20220423-145110.mp4\r\n10.0_2090_lovely-persimmon-angora-f153ac423f61-20220422-043708.mp4 10.0_4100_trippy-red-llama-e63bcce8f826-20220420-174701.mp4\r\n10.0_2091_lovely-persimmon-angora-f153ac423f61-20220422-044230.mp4 10.0_4101_trippy-red-llama-e6f2d13c94c0-20220422-195539.mp4\r\n10.0_2092_lovely-persimmon-angora-f153ac423f61-20220422-044730.mp4 10.0_4102_trippy-red-llama-e6f2d13c94c0-20220422-200049.mp4\r\n10.0_2093_lovely-persimmon-angora-f153ac423f61-20220422-045232.mp4 10.0_4103_trippy-red-llama-e6f2d13c94c0-20220422-200639.mp4\r\n10.0_2094_lovely-persimmon-angora-f153ac423f61-20220422-045732.mp4 10.0_4104_trippy-red-llama-e6f2d13c94c0-20220422-201155.mp4\r\n10.0_2095_lovely-persimmon-angora-f153ac423f61-20220422-061326.mp4 10.0_4105_trippy-red-llama-e6f2d13c94c0-20220422-201710.mp4\r\n10.0_2096_lovely-persimmon-angora-f153ac423f61-20220422-061839.mp4 10.0_4106_trippy-red-llama-ea7cbc7cc38a-20220420-174929.mp4\r\n10.0_2097_lovely-persimmon-angora-f153ac423f61-20220422-062338.mp4 10.0_4107_trippy-red-llama-ee64961df4a6-20220416-173545.mp4\r\n10.0_2098_lovely-persimmon-angora-f153ac423f61-20220422-062836.mp4 10.0_4108_trippy-red-llama-ee64961df4a6-20220416-174052.mp4\r\n10.0_2099_lovely-persimmon-angora-f153ac423f61-20220422-063335.mp4 10.0_4109_trippy-red-llama-ee64961df4a6-20220416-174602.mp4\r\n10.0_209_cheeky-cornflower-setter-8915620646e9-20220423-164903.mp4 10.0_410_cheeky-cornflower-setter-d89692dfa401-20220423-145618.mp4\r\n10.0_2100_lovely-persimmon-angora-f153ac423f61-20220422-114041.mp4 10.0_4110_trippy-red-llama-f153ac423f61-20220414-191258.mp4\r\n10.0_2101_lovely-persimmon-angora-f153ac423f61-20220422-114607.mp4 10.0_4111_trippy-red-llama-f153ac423f61-20220414-191843.mp4\r\n10.0_2102_lovely-persimmon-angora-f153ac423f61-20220422-115108.mp4 10.0_4112_trippy-red-llama-f153ac423f61-20220414-192359.mp4\r\n10.0_2103_lovely-persimmon-angora-f153ac423f61-20220422-130534.mp4 10.0_4113_trippy-red-llama-f153ac423f61-20220414-192904.mp4\r\n10.0_2104_lovely-persimmon-angora-f153ac423f61-20220422-131100.mp4 10.0_4114_trippy-red-llama-f153ac423f61-20220414-193413.mp4\r\n10.0_2105_lovely-persimmon-angora-f153ac423f61-20220422-131601.mp4 10.0_4115_trippy-red-llama-f153ac423f61-20220415-190256.mp4\r\n10.0_2106_lovely-persimmon-angora-f153ac423f61-20220422-132100.mp4 10.0_4116_trippy-red-llama-f153ac423f61-20220415-190850.mp4\r\n10.0_2107_lovely-persimmon-angora-f153ac423f61-20220422-132558.mp4 10.0_4117_trippy-red-llama-f153ac423f61-20220415-191411.mp4\r\n10.0_2108_lovely-persimmon-angora-f153ac423f61-20220422-154952.mp4 10.0_4118_trippy-red-llama-f153ac423f61-20220415-233005.mp4\r\n10.0_2109_lovely-persimmon-angora-f153ac423f61-20220422-190219.mp4 10.0_4119_trippy-red-llama-f153ac423f61-20220415-233541.mp4\r\n10.0_210_cheeky-cornflower-setter-8915620646e9-20220423-165409.mp4 10.0_411_cheeky-cornflower-setter-d89692dfa401-20220423-150124.mp4\r\n10.0_2110_lovely-persimmon-angora-f153ac423f61-20220422-190745.mp4 10.0_4120_trippy-red-llama-f153ac423f61-20220415-234056.mp4\r\n10.0_2111_lovely-persimmon-angora-f153ac423f61-20220422-191245.mp4 10.0_4121_trippy-red-llama-f153ac423f61-20220416-151840.mp4\r\n10.0_2112_lovely-persimmon-angora-f153ac423f61-20220422-195835.mp4 10.0_4122_trippy-red-llama-f153ac423f61-20220416-152415.mp4\r\n10.0_2113_lovely-persimmon-angora-f153ac423f61-20220422-200353.mp4 10.0_4123_trippy-red-llama-f153ac423f61-20220416-153006.mp4\r\n",,terminal_output +330,843503,"TERMINAL",0,0,"10.0_2114_lovely-persimmon-angora-f153ac423f61-20220422-200852.mp4 10.0_4124_trippy-red-llama-f153ac423f61-20220416-153512.mp4\r\n10.0_2115_lovely-persimmon-angora-f153ac423f61-20220422-201351.mp4 10.0_4125_trippy-red-llama-f153ac423f61-20220419-215020.mp4\r\n10.0_2116_lovely-persimmon-angora-f153ac423f61-20220422-201850.mp4 10.0_4126_trippy-red-llama-f153ac423f61-20220419-215543.mp4\r\n10.0_2117_lovely-persimmon-angora-f153ac423f61-20220422-220847.mp4 10.0_4127_trippy-red-llama-f153ac423f61-20220419-220053.mp4\r\n10.0_2118_lovely-persimmon-angora-f153ac423f61-20220422-221405.mp4 10.0_4128_trippy-red-llama-f153ac423f61-20220419-220604.mp4\r\n10.0_2119_lovely-persimmon-angora-f153ac423f61-20220422-232504.mp4 10.0_4129_trippy-red-llama-f153ac423f61-20220420-142644.mp4\r\n10.0_211_cheeky-cornflower-setter-8915620646e9-20220423-165915.mp4 10.0_412_cheeky-cornflower-setter-d89692dfa401-20220423-150630.mp4\r\n10.0_2120_lovely-persimmon-angora-f153ac423f61-20220423-010944.mp4 10.0_4130_trippy-red-llama-f153ac423f61-20220420-143154.mp4\r\n10.0_2121_lovely-persimmon-angora-f153ac423f61-20220423-011509.mp4 10.0_4131_trippy-red-llama-f153ac423f61-20220420-143703.mp4\r\n10.0_2122_lovely-persimmon-angora-f153ac423f61-20220423-012010.mp4 10.0_4132_trippy-red-llama-f153ac423f61-20220420-144208.mp4\r\n10.0_2123_lovely-persimmon-angora-f153ac423f61-20220423-012510.mp4 10.0_4133_trippy-red-llama-f153ac423f61-20220420-144715.mp4\r\n10.0_2124_lovely-persimmon-angora-f153ac423f61-20220423-013011.mp4 10.0_4134_trippy-red-llama-f153ac423f61-20220421-171531.mp4\r\n10.0_2125_lovely-persimmon-angora-f153ac423f61-20220423-044856.mp4 10.0_4135_trippy-red-llama-f153ac423f61-20220421-172141.mp4\r\n10.0_2126_lovely-persimmon-angora-f153ac423f61-20220423-045434.mp4 10.0_4136_trippy-red-llama-f153ac423f61-20220421-182937.mp4\r\n10.0_2127_lovely-persimmon-angora-f153ac423f61-20220423-045935.mp4 10.0_4137_trippy-red-llama-f153ac423f61-20220421-183522.mp4\r\n10.0_2128_lovely-persimmon-angora-f153ac423f61-20220423-050934.mp4 10.0_4138_trippy-red-llama-f153ac423f61-20220421-184035.mp4\r\n10.0_2129_lovely-persimmon-angora-f153ac423f61-20220423-060343.mp4 10.0_4139_trippy-red-llama-f153ac423f61-20220421-212027.mp4\r\n10.0_212_cheeky-cornflower-setter-89d5c5c457f1-20220415-214246.mp4 10.0_413_cheeky-cornflower-setter-d9a1272ce70b-20220422-214517.mp4\r\n10.0_2130_lovely-persimmon-angora-f153ac423f61-20220423-061003.mp4 10.0_4140_trippy-red-llama-f153ac423f61-20220421-212554.mp4\r\n10.0_2131_lovely-persimmon-angora-f153ac423f61-20220423-061503.mp4 10.0_4141_trippy-red-llama-f153ac423f61-20220421-213059.mp4\r\n10.0_2132_lovely-persimmon-angora-f153ac423f61-20220423-062004.mp4 10.0_4142_trippy-red-llama-f153ac423f61-20220422-142514.mp4\r\n10.0_2133_lovely-persimmon-angora-f153ac423f61-20220423-062503.mp4 10.0_4143_trippy-red-llama-f153ac423f61-20220422-143121.mp4\r\n10.0_2134_lovely-persimmon-angora-f153ac423f61-20220423-065545.mp4 10.0_4144_trippy-red-llama-f153ac423f61-20220422-143648.mp4\r\n10.0_2135_lovely-persimmon-angora-f153ac423f61-20220423-070108.mp4 10.0_4145_trippy-red-llama-f153ac423f61-20220422-144214.mp4\r\n10.0_2136_lovely-persimmon-angora-f153ac423f61-20220423-070609.mp4 10.0_4146_trippy-red-llama-f153ac423f61-20220422-150454.mp4\r\n10.0_2137_lovely-persimmon-angora-f153ac423f61-20220423-071108.mp4 10.0_4147_trippy-red-llama-f153ac423f61-20220422-151032.mp4\r\n10.0_2138_lovely-persimmon-angora-f153ac423f61-20220423-071607.mp4 10.0_4148_trippy-red-llama-f153ac423f61-20220422-221103.mp4\r\n10.0_2139_lovely-persimmon-angora-f153ac423f61-20220423-153422.mp4 10.0_4149_trippy-red-llama-f153ac423f61-20220422-221642.mp4\r\n10.0_213_cheeky-cornflower-setter-89d5c5c457f1-20220415-214754.mp4 10.0_414_cheeky-cornflower-setter-d9a1272ce70b-20220422-215531.mp4\r\n10.0_2140_lovely-persimmon-angora-f153ac423f61-20220423-153939.mp4 10.0_4150_trippy-red-llama-f153ac423f61-20220422-222211.mp4\r\n10.0_2141_lovely-persimmon-angora-f153ac423f61-20220423-154438.mp4 10.0_4151_trippy-red-llama-f153ac423f61-20220422-222740.mp4\r\n10.0_2142_lovely-persimmon-angora-f153ac423f61-20220423-154937.mp4 10.0_4152_trippy-red-llama-fddd40941cf1-20220422-165928.mp4\r\n10.0_2143_lovely-persimmon-angora-f153ac423f61-20220423-155436.mp4 10.0_4153_trippy-red-llama-fddd40941cf1-20220422-171248.mp4\r\n10.0_2144_lovely-persimmon-angora-f1b95c470518-20220421-052935.mp4 10.0_4154_trippy-red-llama-fddd40941cf1-20220422-171756.mp4\r\n10.0_2145_lovely-persimmon-angora-f27f4d100a8f-20220419-001748.mp4 10.0_4155_trippy-red-llama-fddd40941cf1-20220422-172302.mp4\r\n10.0_2146_lovely-persimmon-angora-f27f4d100a8f-20220419-003307.mp4 10.0_4156_trippy-red-llama-fddd40941cf1-20220422-172808.mp4\r\n10.0_2147_lovely-persimmon-angora-f32d7e380279-20220417-152126.mp4 10.0_4157_whiny-ecru-cougar-7b14f8f52995-20220421-221823.mp4\r\n10.0_2148_lovely-persimmon-angora-f36743e50f01-20220416-104819.mp4 10.0_4158_whiny-ecru-cougar-7b14f8f52995-20220421-222612.mp4\r\n10.0_2149_lovely-persimmon-angora-f369e8992739-20220416-151517.mp4 10.0_4159_whiny-ecru-cougar-7b14f8f52995-20220421-223150.mp4\r\n10.0_214_cheeky-cornflower-setter-89d5c5c457f1-20220415-215307.mp4 10.0_415_cheeky-cornflower-setter-d9a1272ce70b-20220422-220516.mp4\r\n10.0_2150_lovely-persimmon-angora-f3ea8fc97403-20220419-151208.mp4 10.0_4160_whiny-ecru-cougar-7b14f8f52995-20220421-223806.mp4\r\n10.0_2151_lovely-persimmon-angora-f46bc3abf94d-20220421-202201.mp4 10.0_4161_whiny-ecru-cougar-8c093ded192a-20220421-220400.mp4\r\n10.0_2152_lovely-persimmon-angora-f46bc3abf94d-20220421-202715.mp4 10.0_4162_whiny-ecru-cougar-8c093ded192a-20220421-220859.mp4\r\n10.0_2153_lovely-persimmon-angora-f46bc3abf94d-20220421-203215.mp4 10.0_4163_whiny-ecru-cougar-8c093ded192a-20220421-221404.mp4\r\n10.0_2154_lovely-persimmon-angora-f46bc3abf94d-20220421-203717.mp4 10.0_4164_whiny-ecru-cougar-ad5923505ae6-20220420-173733.mp4\r\n10.0_2155_lovely-persimmon-angora-f6791608179e-20220415-153655.mp4 10.0_4165_whiny-ecru-cougar-ad5923505ae6-20220420-174430.mp4\r\n10.0_2156_lovely-persimmon-angora-f700b7829053-20220421-192212.mp4 10.0_4166_whiny-ecru-cougar-f0e9226ea6c2-20220420-171841.mp4\r\n10.0_2157_lovely-persimmon-angora-f700b7829053-20220421-193224.mp4 10.0_4167_whiny-ecru-cougar-f0e9226ea6c2-20220420-172340.mp4\r\n10.0_2158_lovely-persimmon-angora-f749b7315146-20220419-165330.mp4 10.0_4168_whiny-ecru-cougar-f0e9226ea6c2-20220420-172839.mp4\r\n10.0_2159_lovely-persimmon-angora-f79dd7d09b78-20220414-024227.mp4 10.0_4169_whiny-ecru-cougar-f0e9226ea6c2-20220420-173338.mp4\r\n10.0_215_cheeky-cornflower-setter-8b2cb0ac1c27-20220418-155845.mp4 10.0_416_cheeky-cornflower-setter-da8a2ceb1034-20220423-095847.mp4\r\n10.0_2160_lovely-persimmon-angora-f7d3d8194684-20220417-141548.mp4 10.0_4170_whiny-ecru-cougar-f153ac423f61-20220420-151022.mp4\r\n10.0_2161_lovely-persimmon-angora-f7f244d134f3-20220419-230018.mp4 10.0_4171_whiny-ecru-cougar-f153ac423f61-20220420-151523.mp4\r\n10.0_2162_lovely-persimmon-angora-f7f244d134f3-20220419-230519.mp4 10.0_4172_whiny-ecru-cougar-f153ac423f61-20220420-152022.mp4\r\n10.0_2163_lovely-persimmon-angora-f8bd3267693d-20220421-112846.mp4 10.0_4173_whiny-ecru-cougar-f153ac423f61-20220421-215249.mp4\r\n10.0_2164_lovely-persimmon-angora-fbead622894d-20220419-152108.mp4 10.0_4174_whiny-ecru-cougar-f153ac423f61-20220421-215842.mp4\r\n10.0_2165_lovely-persimmon-angora-fd99ceb25c0e-20220417-101037.mp4 10.0_4175_whiny-ecru-cougar-febc1f9b57b5-20220420-174611.mp4\r\n10.0_2166_lovely-persimmon-angora-fd99ceb25c0e-20220417-101543.mp4 10.0_4176_wiggy-aquamarine-tapir-f153ac423f61-20220421-192208.mp4\r\n10.0_2167_lovely-persimmon-angora-fd99ceb25c0e-20220417-102043.mp4 10.0_4177_wiggy-aquamarine-tapir-f153ac423f61-20220421-192706.mp4\r\n10.0_2168_lovely-persimmon-angora-fd99ceb25c0e-20220417-102541.mp4 10.0_4178_wiggy-aquamarine-tapir-f153ac423f61-20220421-193204.mp4\r\n10.0_2169_lovely-persimmon-angora-fd99ceb25c0e-20220417-103040.mp4 10.0_4179_wiggy-aquamarine-tapir-f153ac423f61-20220421-193702.mp4\r\n10.0_216_cheeky-cornflower-setter-8b2cb0ac1c27-20220418-160357.mp4 10.0_417_cheeky-cornflower-setter-da8a2ceb1034-20220423-100910.mp4\r\n10.0_2170_lovely-persimmon-angora-fe4e817f31fd-20220416-212605.mp4 10.0_4180_wiggy-aquamarine-tapir-f153ac423f61-20220421-215321.mp4\r\n10.0_2171_lovely-persimmon-angora-fe4e817f31fd-20220416-213105.mp4 10.0_4181_wimpy-cobalt-impala-04b3573fe3c9-20220414-115103.mp4\r\n10.0_2172_lovely-persimmon-angora-fe4f52329e9c-20220420-101900.mp4 10.0_4182_wimpy-cobalt-impala-0748e5929abd-20220416-115248.mp4\r\n10.0_2173_lovely-persimmon-angora-fe4f52329e9c-20220420-102404.mp4 10.0_4183_wimpy-cobalt-impala-1364eb6a1d0b-20220414-115222.mp4\r\n10.0_2174_lovely-persimmon-angora-fe52164b85b8-20220422-143218.mp4 10.0_4184_wimpy-cobalt-impala-1364eb6a1d0b-20220414-115744.mp4\r\n10.0_2175_lovely-persimmon-angora-fe52164b85b8-20220422-143722.mp4 10.0_4185_wimpy-cobalt-impala-1364eb6a1d0b-20220414-120312.mp4\r\n10.0_2176_lovely-persimmon-angora-fe566a072954-20220415-051447.mp4 10.0_4186_wimpy-cobalt-impala-1364eb6a1d0b-20220414-120821.mp4\r\n10.0_2177_lovely-persimmon-angora-ffbcb8a2e45b-20220414-005307.mp4 10.0_4187_wimpy-cobalt-impala-1364eb6a1d0b-20220414-124805.mp4\r\n10.0_2178_pokey-cyan-spitz-15235b20a711-20220417-010004.mp4 10.0_4188_wimpy-cobalt-impala-1fdcdccf3d1a-20220416-123449.mp4\r\n10.0_2179_pokey-cyan-spitz-15235b20a711-20220417-010503.mp4 10.0_4189_wimpy-cobalt-impala-1fdcdccf3d1a-20220416-124116.mp4\r\n10.0_217_cheeky-cornflower-setter-8b2cb0ac1c27-20220418-160914.mp4 10.0_418_cheeky-cornflower-setter-da8a2ceb1034-20220423-101814.mp4\r\n10.0_2180_pokey-cyan-spitz-15235b20a711-20220417-011000.mp4 10.0_4190_wimpy-cobalt-impala-1fdcdccf3d1a-20220416-124712.mp4\r\n10.0_2181_pokey-cyan-spitz-15235b20a711-20220417-011751.mp4 10.0_4191_wimpy-cobalt-impala-1fdcdccf3d1a-20220416-125231.mp4\r\n10.0_2182_pokey-cyan-spitz-19fdcb5129a3-20220418-000412.mp4 10.0_4192_wimpy-cobalt-impala-2b6f0674987c-20220416-112151.mp4\r\n10.0_2183_pokey-cyan-spitz-19fdcb5129a3-20220418-000910.mp4 10.0_4193_wimpy-cobalt-impala-3accb87d1d19-20220414-124854.mp4\r\n10.0_2184_pokey-cyan-spitz-19fdcb5129a3-20220418-001407.mp4 10.0_4194_wimpy-cobalt-impala-3accb87d1d19-20220414-125430.mp4\r\n10.0_2185_pokey-cyan-spitz-19fdcb5129a3-20220418-001903.mp4 10.0_4195_wimpy-cobalt-impala-539b640cabd4-20220414-125724.mp4\r\n10.0_2186_pokey-cyan-spitz-19fdcb5129a3-20220418-002359.mp4 10.0_4196_wimpy-cobalt-impala-6f47f4627a32-20220416-125718.mp4\r\n10.0_2187_pokey-cyan-spitz-4818a893d19d-20220418-135803.mp4 10.0_4197_wimpy-cobalt-impala-6f4a1a0c6c12-20220414-134156.mp4\r\n10.0_2188_pokey-cyan-spitz-9e6a3ee7d939-20220414-134224.mp4 10.0_4198_wimpy-cobalt-impala-742318ada170-20220416-110033.mp4\r\n10.0_2189_pokey-cyan-spitz-9e6a3ee7d939-20220414-134823.mp4 10.0_4199_wimpy-cobalt-impala-742318ada170-20220416-110744.mp4\r\n10.0_218_cheeky-cornflower-setter-8be84bc679ae-20220415-183222.mp4 10.0_419_cheeky-cornflower-setter-db485e7cdf63-20220416-102539.mp4\r\n10.0_2190_pokey-cyan-spitz-9e6a3ee7d939-20220414-135324.mp4 10.0_4200_wimpy-cobalt-impala-742318ada170-20220416-111405.mp4\r\n10.0_2191_pokey-cyan-spitz-9e6a3ee7d939-20220414-135821.mp4 10.0_4201_wimpy-cobalt-impala-742318ada170-20220416-111957.mp4\r\n10.0_2192_pokey-cyan-spitz-be6ff163db6b-20220417-005606.mp4 10.0_4202_wimpy-cobalt-impala-790fd0d8c309-20220416-112656.mp4\r\n10.0_2193_pokey-cyan-spitz-d688164b0d01-20220418-135928.mp4 10.0_4203_wimpy-cobalt-impala-790fd0d8c309-20220416-113418.mp4\r\n10.0_2194_pokey-cyan-spitz-de3c993a61cb-20220422-135247.mp4 10.0_4204_wimpy-cobalt-impala-8ee8318c805e-20220416-104303.mp4\r\n10.0_2195_pokey-cyan-spitz-de3c993a61cb-20220422-142738.mp4 10.0_4205_wimpy-cobalt-impala-947c100f712e-20220416-114406.mp4\r\n10.0_2196_pokey-cyan-spitz-de3c993a61cb-20220422-143237.mp4 10.0_4206_wimpy-cobalt-impala-947c100f712e-20220416-114946.mp4\r\n10.0_2197_pokey-cyan-spitz-de3c993a61cb-20220422-143739.mp4 10.0_4207_wimpy-cobalt-impala-b4e722133e39-20220414-134347.mp4\r\n10.0_2198_pokey-cyan-spitz-de3c993a61cb-20220422-144237.mp4 10.0_4208_wimpy-cobalt-impala-b4e722133e39-20220414-134907.mp4\r\n10.0_2199_pokey-cyan-spitz-f153ac423f61-20220414-124129.mp4 10.0_4209_wimpy-cobalt-impala-bfc888b760fe-20220416-125346.mp4\r\n10.0_219_cheeky-cornflower-setter-8c2849f92943-20220423-143802.mp4 10.0_420_cheeky-cornflower-setter-db485e7cdf63-20220416-103055.mp4\r\n10.0_2200_pokey-cyan-spitz-f153ac423f61-20220414-124630.mp4 10.0_4210_wimpy-cobalt-impala-cc02120345fe-20220416-105216.mp4\r\n10.0_2201_pokey-cyan-spitz-f153ac423f61-20220414-125128.mp4 10.0_4211_wimpy-cobalt-impala-cc02120345fe-20220416-105743.mp4\r\n10.0_2202_pokey-cyan-spitz-f153ac423f61-20220414-125625.mp4 10.0_4212_wimpy-cobalt-impala-d972de266fe3-20220416-114127.mp4\r\n10.0_2203_pokey-cyan-spitz-f153ac423f61-20220414-220808.mp4 10.0_4213_wimpy-cobalt-impala-ef4d2e845104-20220414-125857.mp4\r\n10.0_2204_pokey-cyan-spitz-f153ac423f61-20220415-090030.mp4 10.0_4214_wimpy-cobalt-impala-f153ac423f61-20220414-113739.mp4\r\n10.0_2205_pokey-cyan-spitz-f153ac423f61-20220415-090602.mp4 10.0_4215_wimpy-cobalt-impala-f153ac423f61-20220414-114335.mp4\r\n10.0_2206_pokey-cyan-spitz-f153ac423f61-20220415-091109.mp4 10.0_4216_wimpy-cobalt-impala-f153ac423f61-20220414-114903.mp4\r\n10.0_2207_pokey-cyan-spitz-f153ac423f61-20220415-091609.mp4 10.0_4217_wimpy-cobalt-impala-f153ac423f61-20220414-132650.mp4\r\n10.0_2208_pokey-cyan-spitz-f153ac423f61-20220415-092105.mp4 10.0_4218_wimpy-cobalt-impala-f153ac423f61-20220414-133326.mp4\r\n10.0_2209_pokey-cyan-spitz-f153ac423f61-20220416-085759.mp4 10.0_4219_wimpy-cobalt-impala-f153ac423f61-20220414-133919.mp4\r\n10.0_220_cheeky-cornflower-setter-8c2849f92943-20220423-144309.mp4 10.0_421_cheeky-cornflower-setter-db485e7cdf63-20220416-103603.mp4\r\n10.0_2210_pokey-cyan-spitz-f153ac423f61-20220416-090303.mp4 10.0_4220_wimpy-cobalt-impala-f153ac423f61-20220414-150646.mp4\r\n10.0_2211_pokey-cyan-spitz-f153ac423f61-20220416-090800.mp4 10.0_4221_wimpy-cobalt-impala-f153ac423f61-20220414-151236.mp4\r\n10.0_2212_pokey-cyan-spitz-f153ac423f61-20220416-091257.mp4 10.0_4222_wimpy-cobalt-impala-f153ac423f61-20220414-151805.mp4\r\n10.0_2213_pokey-cyan-spitz-f153ac423f61-20220416-091753.mp4 10.0_4223_wimpy-cobalt-impala-f153ac423f61-20220414-152320.mp4\r\n10.0_2214_pokey-cyan-spitz-f153ac423f61-20220417-003752.mp4 10.0_4224_wimpy-cobalt-impala-f153ac423f61-20220414-152919.mp4\r\n10.0_2215_pokey-cyan-spitz-f153ac423f61-20220417-004257.mp4 10.0_4225_wimpy-cobalt-impala-f153ac423f61-20220414-153428.mp4\r\n10.0_2216_pokey-cyan-spitz-f153ac423f61-20220417-004834.mp4 10.0_4226_wimpy-cobalt-impala-f153ac423f61-20220414-153934.mp4\r\n10.0_2217_pokey-cyan-spitz-f153ac423f61-20220417-005331.mp4 10.0_4227_wimpy-cobalt-impala-f153ac423f61-20220414-154437.mp4\r\n10.0_2218_pokey-cyan-spitz-f153ac423f61-20220417-233446.mp4 10.0_4228_wimpy-cobalt-impala-f153ac423f61-20220416-103525.mp4\r\n10.0_2219_pokey-cyan-spitz-f153ac423f61-20220417-234124.mp4 10.0_4229_wimpy-cobalt-impala-f153ac423f61-20220416-104216.mp4\r\n10.0_221_cheeky-cornflower-setter-8c2849f92943-20220423-144829.mp4 10.0_422_cheeky-cornflower-setter-db485e7cdf63-20220416-104112.mp4\r\n10.0_2220_pokey-cyan-spitz-f153ac423f61-20220417-234634.mp4 10.0_4230_wimpy-cobalt-impala-f57716aff49d-20220416-113739.mp4\r\n10.0_2221_pokey-cyan-spitz-f153ac423f61-20220417-235130.mp4 10.0_4231_wimpy-cobalt-impala-fd946a8a39ce-20220416-104710.mp4\r\n10.0_2222_pokey-cyan-spitz-f153ac423f61-20220417-235626.mp4 10.0_4232_woozy-ruby-ostrich-005f7e884124-20220415-145337.mp4\r\n10.0_2223_pokey-cyan-spitz-f153ac423f61-20220418-000127.mp4 10.0_4233_woozy-ruby-ostrich-0a73c128eaad-20220414-093137.mp4\r\n10.0_2224_pokey-cyan-spitz-f153ac423f61-20220418-135037.mp4 10.0_4234_woozy-ruby-ostrich-0d3cf37d7d7a-20220417-005104.mp4\r\n10.0_2225_pokey-cyan-spitz-f153ac423f61-20220418-135539.mp4 10.0_4235_woozy-ruby-ostrich-0d59f05f71c8-20220414-203648.mp4\r\n10.0_2226_pokey-cyan-spitz-f153ac423f61-20220419-155322.mp4 10.0_4236_woozy-ruby-ostrich-14100d7ce20d-20220420-084911.mp4\r\n10.0_2227_pokey-cyan-spitz-f153ac423f61-20220419-155826.mp4 10.0_4237_woozy-ruby-ostrich-14100d7ce20d-20220420-085409.mp4\r\n10.0_2228_pokey-cyan-spitz-f153ac423f61-20220419-160324.mp4 10.0_4238_woozy-ruby-ostrich-166d77682426-20220414-192825.mp4\r\n10.0_2229_pokey-cyan-spitz-f153ac423f61-20220419-160820.mp4 10.0_4239_woozy-ruby-ostrich-2251e3407c8d-20220419-055504.mp4\r\n10.0_222_cheeky-cornflower-setter-8fa13e2f0734-20220417-182202.mp4 10.0_423_cheeky-cornflower-setter-dbdf48490176-20220418-191104.mp4\r\n10.0_2230_pokey-cyan-spitz-f153ac423f61-20220419-161316.mp4 10.0_4240_woozy-ruby-ostrich-2251e3407c8d-20220419-060002.mp4\r\n10.0_2231_pokey-cyan-spitz-f153ac423f61-20220419-162732.mp4 10.0_4241_woozy-ruby-ostrich-285c959283c7-20220415-153406.mp4\r\n10.0_2232_pokey-cyan-spitz-f153ac423f61-20220419-163236.mp4 10.0_4242_woozy-ruby-ostrich-2e2461d4c3a9-20220414-122229.mp4\r\n10.0_2233_pokey-cyan-spitz-f153ac423f61-20220419-163733.mp4 10.0_4243_woozy-ruby-ostrich-33c437b9e2df-20220416-170957.mp4\r\n10.0_2234_pokey-cyan-spitz-f153ac423f61-20220419-164233.mp4 10.0_4244_woozy-ruby-ostrich-36e6a60ea6e6-20220420-154253.mp4\r\n10.0_2235_pokey-cyan-spitz-f153ac423f61-20220419-164729.mp4 10.0_4245_woozy-ruby-ostrich-36e6a60ea6e6-20220420-154751.mp4\r\n10.0_2236_pokey-cyan-spitz-f153ac423f61-20220422-133910.mp4 10.0_4246_woozy-ruby-ostrich-36e6a60ea6e6-20220420-155249.mp4\r\n10.0_2237_pokey-cyan-spitz-f153ac423f61-20220422-134410.mp4 10.0_4247_woozy-ruby-ostrich-36e6a60ea6e6-20220420-155747.mp4\r\n10.0_2238_pokey-cyan-spitz-f153ac423f61-20220422-134907.mp4 10.0_4248_woozy-ruby-ostrich-36e6a60ea6e6-20220420-160245.mp4\r\n10.0_2239_pokey-cyan-spitz-f153ac423f61-20220423-005916.mp4 10.0_4249_woozy-ruby-ostrich-39fd36f107bb-20220414-200614.mp4\r\n10.0_223_cheeky-cornflower-setter-8fa13e2f0734-20220417-182710.mp4 10.0_424_cheeky-cornflower-setter-dbdf48490176-20220418-191613.mp4\r\n10.0_2240_pokey-cyan-spitz-f153ac423f61-20220423-010553.mp4 10.0_4250_woozy-ruby-ostrich-39fd36f107bb-20220414-201111.mp4\r\n10.0_2241_pokey-cyan-spitz-f153ac423f61-20220423-011051.mp4 10.0_4251_woozy-ruby-ostrich-3cd3ceb40a21-20220420-003619.mp4\r\n10.0_2242_pokey-cyan-spitz-f153ac423f61-20220423-011547.mp4 10.0_4252_woozy-ruby-ostrich-3cd3ceb40a21-20220420-004117.mp4\r\n10.0_2243_pokey-cyan-spitz-ff0910c6463c-20220414-132213.mp4 10.0_4253_woozy-ruby-ostrich-3cd3ceb40a21-20220420-004615.mp4\r\n10.0_2244_pokey-cyan-spitz-ff0910c6463c-20220414-132812.mp4 10.0_4254_woozy-ruby-ostrich-3cd3ceb40a21-20220420-005112.mp4\r\n10.0_2245_pokey-cyan-spitz-ff0910c6463c-20220414-133308.mp4 10.0_4255_woozy-ruby-ostrich-3cd3ceb40a21-20220420-005610.mp4\r\n10.0_2246_scaly-fuchsia-wasp-002e8900e587-20220419-134152.mp4 10.0_4256_woozy-ruby-ostrich-428ac7fa7243-20220416-164944.mp4\r\n10.0_2247_scaly-fuchsia-wasp-002e8900e587-20220419-134653.mp4 10.0_4257_woozy-ruby-ostrich-4c908a00c315-20220414-020127.mp4\r\n10.0_2248_scaly-fuchsia-wasp-002e8900e587-20220419-135155.mp4 10.0_4258_woozy-ruby-ostrich-59cb71cfdea2-20220420-112737.mp4\r\n10.0_2249_scaly-fuchsia-wasp-002e8900e587-20220419-135654.mp4 10.0_4259_woozy-ruby-ostrich-59cb71cfdea2-20220420-113235.mp4\r\n10.0_224_cheeky-cornflower-setter-8fa13e2f0734-20220417-183216.mp4 10.0_425_cheeky-cornflower-setter-dbdf48490176-20220418-192120.mp4\r\n10.0_2250_scaly-fuchsia-wasp-002e8900e587-20220419-140153.mp4 10.0_4260_woozy-ruby-ostrich-59cb71cfdea2-20220420-113753.mp4\r\n10.0_2251_scaly-fuchsia-wasp-02476e9ec1fc-20220419-112522.mp4 10.0_4261_woozy-ruby-ostrich-59cb71cfdea2-20220420-114251.mp4\r\n10.0_2252_scaly-fuchsia-wasp-02476e9ec1fc-20220419-113023.mp4 10.0_4262_woozy-ruby-ostrich-5a378fb030bc-20220414-043632.mp4\r\n10.0_2253_scaly-fuchsia-wasp-02476e9ec1fc-20220419-113918.mp4 10.0_4263_woozy-ruby-ostrich-5ab48ebcf297-20220416-043745.mp4\r\n10.0_2254_scaly-fuchsia-wasp-02476e9ec1fc-20220419-114417.mp4 10.0_4264_woozy-ruby-ostrich-5e7e9e72fc6d-20220417-185246.mp4\r\n10.0_2255_scaly-fuchsia-wasp-02476e9ec1fc-20220419-114917.mp4 10.0_4265_woozy-ruby-ostrich-6fbf3bebc5dd-20220416-095528.mp4\r\n10.0_2256_scaly-fuchsia-wasp-0573fd29c8f6-20220422-153515.mp4 10.0_4266_woozy-ruby-ostrich-72ea688010ba-20220415-045504.mp4\r\n10.0_2257_scaly-fuchsia-wasp-0573fd29c8f6-20220422-154020.mp4 10.0_4267_woozy-ruby-ostrich-744fc8da10e2-20220415-122826.mp4\r\n10.0_2258_scaly-fuchsia-wasp-0573fd29c8f6-20220422-154520.mp4 10.0_4268_woozy-ruby-ostrich-82608be7bab4-20220420-114742.mp4\r\n10.0_2259_scaly-fuchsia-wasp-0573fd29c8f6-20220422-155019.mp4 10.0_4269_woozy-ruby-ostrich-848db6515d5d-20220419-060825.mp4\r\n10.0_225_cheeky-cornflower-setter-8fa13e2f0734-20220417-183722.mp4 10.0_426_cheeky-cornflower-setter-dd1ece57dcad-20220418-125652.mp4\r\n10.0_2260_scaly-fuchsia-wasp-0573fd29c8f6-20220422-155518.mp4 10.0_4270_woozy-ruby-ostrich-848db6515d5d-20220419-061322.mp4\r\n10.0_2261_scaly-fuchsia-wasp-0767616f5886-20220415-123924.mp4 10.0_4271_woozy-ruby-ostrich-8df8ad11bfcb-20220416-093516.mp4\r\n10.0_2262_scaly-fuchsia-wasp-0767616f5886-20220415-124426.mp4 10.0_4272_woozy-ruby-ostrich-90203254f954-20220416-230259.mp4\r\n10.0_2263_scaly-fuchsia-wasp-0767616f5886-20220415-124930.mp4 10.0_4273_woozy-ruby-ostrich-90203254f954-20220416-230757.mp4\r\n10.0_2264_scaly-fuchsia-wasp-0767616f5886-20220415-125429.mp4 10.0_4274_woozy-ruby-ostrich-9569891815d6-20220420-025254.mp4\r\n10.0_2265_scaly-fuchsia-wasp-1d8fbaed685b-20220422-161651.mp4 10.0_4275_woozy-ruby-ostrich-9622936f0f1b-20220420-010613.mp4\r\n10.0_2266_scaly-fuchsia-wasp-1d8fbaed685b-20220422-162152.mp4 10.0_4276_woozy-ruby-ostrich-9622936f0f1b-20220420-011111.mp4\r\n10.0_2267_scaly-fuchsia-wasp-1d8fbaed685b-20220422-162654.mp4 10.0_4277_woozy-ruby-ostrich-9b378ab3d24d-20220418-010438.mp4\r\n10.0_2268_scaly-fuchsia-wasp-4ccbc7880630-20220415-121704.mp4 10.0_4278_woozy-ruby-ostrich-ab7c60a3bc09-20220420-085722.mp4\r\n10.0_2269_scaly-fuchsia-wasp-4ccbc7880630-20220415-122205.mp4 10.0_4279_woozy-ruby-ostrich-ab7c60a3bc09-20220420-090221.mp4\r\n10.0_226_cheeky-cornflower-setter-93b6aeff27cc-20220418-134529.mp4 10.0_427_cheeky-cornflower-setter-dd593da526a5-20220416-130957.mp4\r\n10.0_2270_scaly-fuchsia-wasp-4ccbc7880630-20220415-122706.mp4 10.0_4280_woozy-ruby-ostrich-ab7c60a3bc09-20220420-090718.mp4\r\n10.0_2271_scaly-fuchsia-wasp-4ccbc7880630-20220415-123205.mp4 10.0_4281_woozy-ruby-ostrich-ab7c60a3bc09-20220420-091222.mp4\r\n10.0_2272_scaly-fuchsia-wasp-4ccbc7880630-20220415-123703.mp4 10.0_4282_woozy-ruby-ostrich-ab7c60a3bc09-20220420-091724.mp4\r\n10.0_2273_scaly-fuchsia-wasp-736206b71320-20220415-125537.mp4 10.0_4283_woozy-ruby-ostrich-b54a219d0b60-20220420-083545.mp4\r\n10.0_2274_scaly-fuchsia-wasp-763b1aa4c0eb-20220420-192720.mp4 10.0_4284_woozy-ruby-ostrich-b54a219d0b60-20220420-084046.mp4\r\n10.0_2275_scaly-fuchsia-wasp-8032fffc6d94-20220420-191436.mp4 10.0_4285_woozy-ruby-ostrich-b54a219d0b60-20220420-084543.mp4\r\n10.0_2276_scaly-fuchsia-wasp-8032fffc6d94-20220420-191938.mp4 10.0_4286_woozy-ruby-ostrich-b69b109a8128-20220419-061549.mp4\r\n10.0_2277_scaly-fuchsia-wasp-8d57340c712b-20220422-163015.mp4 10.0_4287_woozy-ruby-ostrich-b69b109a8128-20220419-062047.mp4\r\n10.0_2278_scaly-fuchsia-wasp-8d57340c712b-20220422-163520.mp4 10.0_4288_woozy-ruby-ostrich-b69b109a8128-20220419-062551.mp4\r\n10.0_2279_scaly-fuchsia-wasp-8d57340c712b-20220422-164048.mp4 10.0_4289_woozy-ruby-ostrich-b69b109a8128-20220419-063049.mp4\r\n10.0_227_cheeky-cornflower-setter-93b6aeff27cc-20220418-135037.mp4 10.0_428_cheeky-cornflower-setter-dd593da526a5-20220416-131506.mp4\r\n10.0_2280_scaly-fuchsia-wasp-8d57340c712b-20220422-164547.mp4 10.0_4290_woozy-ruby-ostrich-b69b109a8128-20220419-063546.mp4\r\n10.0_2281_scaly-fuchsia-wasp-8d57340c712b-20220422-165045.mp4 10.0_4291_woozy-ruby-ostrich-ba6416e61906-20220417-043839.mp4\r\n10.0_2282_scaly-fuchsia-wasp-911fe42fb6ff-20220419-134121.mp4 10.0_4292_woozy-ruby-ostrich-ba6416e61906-20220417-044337.mp4\r\n10.0_2283_scaly-fuchsia-wasp-9633765921fd-20220419-132859.mp4 10.0_4293_woozy-ruby-ostrich-c3548d2cd2fc-20220416-173010.mp4\r\n10.0_2284_scaly-fuchsia-wasp-9633765921fd-20220419-133407.mp4 10.0_4294_woozy-ruby-ostrich-c4d13b934232-20220416-101541.mp4\r\n10.0_2285_scaly-fuchsia-wasp-9633765921fd-20220419-133910.mp4 10.0_4295_woozy-ruby-ostrich-c6eff05b8234-20220420-001847.mp4\r\n10.0_2286_scaly-fuchsia-wasp-d41e471314f8-20220422-155629.mp4 10.0_4296_woozy-ruby-ostrich-c6eff05b8234-20220420-002345.mp4\r\n10.0_2287_scaly-fuchsia-wasp-d41e471314f8-20220422-160130.mp4 10.0_4297_woozy-ruby-ostrich-c6eff05b8234-20220420-002907.mp4\r\n10.0_2288_scaly-fuchsia-wasp-d41e471314f8-20220422-160632.mp4 10.0_4298_woozy-ruby-ostrich-c6eff05b8234-20220420-003404.mp4\r\n10.0_2289_scaly-fuchsia-wasp-d41e471314f8-20220422-161131.mp4 10.0_4299_woozy-ruby-ostrich-c8d21d172bb6-20220416-091503.mp4\r\n10.0_228_cheeky-cornflower-setter-93b6aeff27cc-20220418-135549.mp4 10.0_429_cheeky-cornflower-setter-dd593da526a5-20220416-132016.mp4\r\n10.0_2290_scaly-fuchsia-wasp-d41e471314f8-20220422-161629.mp4 10.0_4300_woozy-ruby-ostrich-d0b45ff53e71-20220420-025537.mp4\r\n10.0_2291_scaly-fuchsia-wasp-dd6d84441115-20220415-130220.mp4 10.0_4301_woozy-ruby-ostrich-d5ec6014f0b8-20220420-023447.mp4\r\n10.0_2292_scaly-fuchsia-wasp-dd6d84441115-20220415-130723.mp4 10.0_4302_woozy-ruby-ostrich-dd398e374040-20220414-201633.mp4\r\n10.0_2293_scaly-fuchsia-wasp-dd6d84441115-20220415-131227.mp4 10.0_4303_woozy-ruby-ostrich-e05a0401b02f-20220420-084737.mp4\r\n10.0_2294_scaly-fuchsia-wasp-dd6d84441115-20220415-131728.mp4 10.0_4304_woozy-ruby-ostrich-e2d18df1542e-20220417-183234.mp4\r\n10.0_2295_scaly-fuchsia-wasp-de0a8f7671d3-20220419-130210.mp4 10.0_4305_woozy-ruby-ostrich-ec7f1acc01eb-20220415-052206.mp4\r\n10.0_2296_scaly-fuchsia-wasp-de0a8f7671d3-20220419-130710.mp4 10.0_4306_woozy-ruby-ostrich-ee9663eff043-20220415-151352.mp4\r\n10.0_2297_scaly-fuchsia-wasp-de0a8f7671d3-20220419-131212.mp4 10.0_4307_woozy-ruby-ostrich-ef3397771faf-20220416-085505.mp4\r\n10.0_2298_scaly-fuchsia-wasp-de0a8f7671d3-20220419-131710.mp4 10.0_4308_woozy-ruby-ostrich-f153ac423f61-20220414-014537.mp4\r\n10.0_2299_scaly-fuchsia-wasp-de0a8f7671d3-20220419-132213.mp4 10.0_4309_woozy-ruby-ostrich-f153ac423f61-20220414-015038.mp4\r\n10.0_229_cheeky-cornflower-setter-950ba61d98d2-20220415-112211.mp4 10.0_430_cheeky-cornflower-setter-dd593da526a5-20220416-132525.mp4\r\n10.0_2300_scaly-fuchsia-wasp-e9efe2b53fa7-20220422-165142.mp4 10.0_4310_woozy-ruby-ostrich-f153ac423f61-20220414-015536.mp4\r\n10.0_2301_scaly-fuchsia-wasp-e9efe2b53fa7-20220422-165642.mp4 10.0_4311_woozy-ruby-ostrich-f153ac423f61-20220414-033917.mp4\r\n10.0_2302_scaly-fuchsia-wasp-e9efe2b53fa7-20220422-170147.mp4 10.0_4312_woozy-ruby-ostrich-f153ac423f61-20220414-034417.mp4\r\n10.0_2303_scaly-fuchsia-wasp-f153ac423f61-20220415-115527.mp4 10.0_4313_woozy-ruby-ostrich-f153ac423f61-20220414-041509.mp4\r\n10.0_2304_scaly-fuchsia-wasp-f153ac423f61-20220415-120032.mp4 10.0_4314_woozy-ruby-ostrich-f153ac423f61-20220414-042009.mp4\r\n10.0_2305_scaly-fuchsia-wasp-f153ac423f61-20220415-120550.mp4 10.0_4315_woozy-ruby-ostrich-f153ac423f61-20220414-043508.mp4\r\n10.0_2306_scaly-fuchsia-wasp-f153ac423f61-20220415-121050.mp4 10.0_4316_woozy-ruby-ostrich-f153ac423f61-20220414-091107.mp4\r\n10.0_2307_scaly-fuchsia-wasp-f153ac423f61-20220415-121558.mp4 10.0_4317_woozy-ruby-ostrich-f153ac423f61-20220414-091611.mp4\r\n10.0_2308_scaly-fuchsia-wasp-f153ac423f61-20220415-140822.mp4 10.0_4318_woozy-ruby-ostrich-f153ac423f61-20220414-092109.mp4\r\n10.0_2309_scaly-fuchsia-wasp-f153ac423f61-20220415-141326.mp4 10.0_4319_woozy-ruby-ostrich-f153ac423f61-20220414-092607.mp4\r\n10.0_230_cheeky-cornflower-setter-950ba61d98d2-20220415-112721.mp4 10.0_431_cheeky-cornflower-setter-dfbf60a8ea61-20220414-132226.mp4\r\n10.0_2310_scaly-fuchsia-wasp-f153ac423f61-20220419-110555.mp4 10.0_4320_woozy-ruby-ostrich-f153ac423f61-20220414-120214.mp4\r\n10.0_2311_scaly-fuchsia-wasp-f153ac423f61-20220419-111107.mp4 10.0_4321_woozy-ruby-ostrich-f153ac423f61-20220414-120713.mp4\r\n10.0_2312_scaly-fuchsia-wasp-f153ac423f61-20220419-111611.mp4 10.0_4322_woozy-ruby-ostrich-f153ac423f61-20220414-121211.mp4\r\n10.0_2313_scaly-fuchsia-wasp-f153ac423f61-20220419-112112.mp4 10.0_4323_woozy-ruby-ostrich-f153ac423f61-20220414-121708.mp4\r\n10.0_2314_scaly-fuchsia-wasp-f153ac423f61-20220419-123857.mp4 10.0_4324_woozy-ruby-ostrich-f153ac423f61-20220414-190714.mp4\r\n10.0_2315_scaly-fuchsia-wasp-f153ac423f61-20220419-124535.mp4 10.0_4325_woozy-ruby-ostrich-f153ac423f61-20220414-191222.mp4\r\n10.0_2316_scaly-fuchsia-wasp-f153ac423f61-20220419-125037.mp4 10.0_4326_woozy-ruby-ostrich-f153ac423f61-20220414-191741.mp4\r\n10.0_2317_scaly-fuchsia-wasp-f153ac423f61-20220419-125538.mp4 10.0_4327_woozy-ruby-ostrich-f153ac423f61-20220414-192238.mp4\r\n10.0_2318_scaly-fuchsia-wasp-f153ac423f61-20220419-130038.mp4 10.0_4328_woozy-ruby-ostrich-f153ac423f61-20220414-195615.mp4\r\n10.0_2319_scaly-fuchsia-wasp-f153ac423f61-20220420-185321.mp4 10.0_4329_woozy-ruby-ostrich-f153ac423f61-20220414-200115.mp4\r\n10.0_231_cheeky-cornflower-setter-950ba61d98d2-20220415-113229.mp4 10.0_432_cheeky-cornflower-setter-dfbf60a8ea61-20220414-132915.mp4\r\n10.0_2320_scaly-fuchsia-wasp-f153ac423f61-20220420-185825.mp4 10.0_4330_woozy-ruby-ostrich-f153ac423f61-20220414-232816.mp4\r\n10.0_2321_scaly-fuchsia-wasp-f153ac423f61-20220420-190328.mp4 10.0_4331_woozy-ruby-ostrich-f153ac423f61-20220414-233316.mp4\r\n10.0_2322_scaly-fuchsia-wasp-f153ac423f61-20220420-190827.mp4 10.0_4332_woozy-ruby-ostrich-f153ac423f61-20220414-234839.mp4\r\n10.0_2323_scaly-fuchsia-wasp-f153ac423f61-20220420-191325.mp4 10.0_4333_woozy-ruby-ostrich-f153ac423f61-20220414-235338.mp4\r\n10.0_2324_scaly-fuchsia-wasp-f153ac423f61-20220422-151411.mp4 10.0_4334_woozy-ruby-ostrich-f153ac423f61-20220414-235837.mp4\r\n10.0_2325_scaly-fuchsia-wasp-f153ac423f61-20220422-151917.mp4 10.0_4335_woozy-ruby-ostrich-f153ac423f61-20220415-043451.mp4\r\n10.0_2326_scaly-fuchsia-wasp-f153ac423f61-20220422-152418.mp4 10.0_4336_woozy-ruby-ostrich-f153ac423f61-20220415-043950.mp4\r\n10.0_2327_scaly-fuchsia-wasp-f153ac423f61-20220422-152917.mp4 10.0_4337_woozy-ruby-ostrich-f153ac423f61-20220415-044448.mp4\r\n10.0_2328_scaly-fuchsia-wasp-f153ac423f61-20220422-153416.mp4 10.0_4338_woozy-ruby-ostrich-f153ac423f61-20220415-044946.mp4\r\n10.0_2329_scaly-fuchsia-wasp-fb6ec294d9f4-20220422-162947.mp4 10.0_4339_woozy-ruby-ostrich-f153ac423f61-20220415-120730.mp4\r\n10.0_232_cheeky-cornflower-setter-95d3901d1eb6-20220423-205308.mp4 10.0_433_cheeky-cornflower-setter-dfbf60a8ea61-20220414-133423.mp4\r\n10.0_2330_shabby-pink-molly-05f3417088d2-20220421-085721.mp4 10.0_4340_woozy-ruby-ostrich-f153ac423f61-20220415-121252.mp4\r\n10.0_2331_shabby-pink-molly-05f3417088d2-20220421-090223.mp4 10.0_4341_woozy-ruby-ostrich-f153ac423f61-20220415-121749.mp4\r\n10.0_2332_shabby-pink-molly-09dc0a856544-20220416-130525.mp4 10.0_4342_woozy-ruby-ostrich-f153ac423f61-20220415-122251.mp4\r\n10.0_2333_shabby-pink-molly-09dc0a856544-20220416-131027.mp4 10.0_4343_woozy-ruby-ostrich-f153ac423f61-20220415-143310.mp4\r\n10.0_2334_shabby-pink-molly-09dc0a856544-20220416-131529.mp4 10.0_4344_woozy-ruby-ostrich-f153ac423f61-20220415-143809.mp4\r\n10.0_2335_shabby-pink-molly-09dc0a856544-20220416-132031.mp4 10.0_4345_woozy-ruby-ostrich-f153ac423f61-20220415-144309.mp4\r\n10.0_2336_shabby-pink-molly-09dc0a856544-20220416-132532.mp4 10.0_4346_woozy-ruby-ostrich-f153ac423f61-20220416-042248.mp4\r\n10.0_2337_shabby-pink-molly-0aa52c82857b-20220424-195031.mp4 10.0_4347_woozy-ruby-ostrich-f153ac423f61-20220416-042749.mp4\r\n10.0_2338_shabby-pink-molly-0aa52c82857b-20220424-195533.mp4 10.0_4348_woozy-ruby-ostrich-f153ac423f61-20220416-043254.mp4\r\n10.0_2339_shabby-pink-molly-0aa52c82857b-20220424-200035.mp4 10.0_4349_woozy-ruby-ostrich-f153ac423f61-20220416-065312.mp4\r\n10.0_233_cheeky-cornflower-setter-95d3901d1eb6-20220423-210413.mp4 10.0_434_cheeky-cornflower-setter-dfbf60a8ea61-20220414-133931.mp4\r\n10.0_2340_shabby-pink-molly-0aa52c82857b-20220424-200537.mp4 10.0_4350_woozy-ruby-ostrich-f153ac423f61-20220416-065812.mp4\r\n10.0_2341_shabby-pink-molly-0aa52c82857b-20220424-201038.mp4 10.0_4351_woozy-ruby-ostrich-f153ac423f61-20220416-070310.mp4\r\n10.0_2342_shabby-pink-molly-0b427e25d052-20220416-165016.mp4 10.0_4352_woozy-ruby-ostrich-f153ac423f61-20220416-083442.mp4\r\n10.0_2343_shabby-pink-molly-0b427e25d052-20220416-165518.mp4 10.0_4353_woozy-ruby-ostrich-f153ac423f61-20220416-083941.mp4\r\n10.0_2344_shabby-pink-molly-0be06245e969-20220419-083620.mp4 10.0_4354_woozy-ruby-ostrich-f153ac423f61-20220416-162928.mp4\r\n10.0_2345_shabby-pink-molly-0ecc0b9bbec0-20220414-090754.mp4 10.0_4355_woozy-ruby-ostrich-f153ac423f61-20220416-163924.mp4\r\n10.0_2346_shabby-pink-molly-155fb38e1aa4-20220414-091227.mp4 10.0_4356_woozy-ruby-ostrich-f153ac423f61-20220416-164918.mp4\r\n10.0_2347_shabby-pink-molly-155fb38e1aa4-20220414-091729.mp4 10.0_4357_woozy-ruby-ostrich-f153ac423f61-20220416-225446.mp4\r\n10.0_2348_shabby-pink-molly-155fb38e1aa4-20220414-092231.mp4 10.0_4358_woozy-ruby-ostrich-f153ac423f61-20220416-225945.mp4\r\n10.0_2349_shabby-pink-molly-16e5b6aec9e4-20220414-093216.mp4 10.0_4359_woozy-ruby-ostrich-f153ac423f61-20220417-003048.mp4\r\n10.0_234_cheeky-cornflower-setter-95f3b39e4391-20220415-125408.mp4 10.0_435_cheeky-cornflower-setter-e0cd49a3e0aa-20220423-185726.mp4\r\n10.0_2350_shabby-pink-molly-17d8e86ca6d4-20220416-171113.mp4 10.0_4360_woozy-ruby-ostrich-f153ac423f61-20220417-003547.mp4\r\n10.0_2351_shabby-pink-molly-17d8e86ca6d4-20220416-171616.mp4 10.0_4361_woozy-ruby-ostrich-f153ac423f61-20220417-004048.mp4\r\n10.0_2352_shabby-pink-molly-189dbc7d5b82-20220421-080721.mp4 10.0_4362_woozy-ruby-ostrich-f153ac423f61-20220417-004553.mp4\r\n10.0_2353_shabby-pink-molly-189dbc7d5b82-20220421-081222.mp4 10.0_4363_woozy-ruby-ostrich-f153ac423f61-20220417-043005.mp4\r\n10.0_2354_shabby-pink-molly-189dbc7d5b82-20220421-081724.mp4 10.0_4364_woozy-ruby-ostrich-f153ac423f61-20220417-043504.mp4\r\n10.0_2355_shabby-pink-molly-189dbc7d5b82-20220421-082225.mp4 10.0_4365_woozy-ruby-ostrich-f153ac423f61-20220417-181222.mp4\r\n10.0_2356_shabby-pink-molly-1a8b59a4c823-20220421-090956.mp4 10.0_4366_woozy-ruby-ostrich-f153ac423f61-20220417-181720.mp4\r\n10.0_2357_shabby-pink-molly-1a8b59a4c823-20220421-091458.mp4 10.0_4367_woozy-ruby-ostrich-f153ac423f61-20220417-182218.mp4\r\n10.0_2358_shabby-pink-molly-1a8b59a4c823-20220421-091959.mp4 10.0_4368_woozy-ruby-ostrich-f153ac423f61-20220417-182715.mp4\r\n10.0_2359_shabby-pink-molly-21109099d9d1-20220419-085725.mp4 10.0_4369_woozy-ruby-ostrich-f153ac423f61-20220417-220355.mp4\r\n10.0_235_cheeky-cornflower-setter-95f3b39e4391-20220415-125918.mp4 10.0_436_cheeky-cornflower-setter-e0cd49a3e0aa-20220423-190821.mp4\r\n10.0_2360_shabby-pink-molly-21109099d9d1-20220419-090227.mp4 10.0_4370_woozy-ruby-ostrich-f153ac423f61-20220417-221214.mp4\r\n10.0_2361_shabby-pink-molly-21109099d9d1-20220419-090729.mp4 10.0_4371_woozy-ruby-ostrich-f153ac423f61-20220418-004426.mp4\r\n10.0_2362_shabby-pink-molly-21109099d9d1-20220419-091230.mp4 10.0_4372_woozy-ruby-ostrich-f153ac423f61-20220418-004925.mp4\r\n10.0_2363_shabby-pink-molly-21109099d9d1-20220419-091732.mp4 10.0_4373_woozy-ruby-ostrich-f153ac423f61-20220418-005423.mp4\r\n10.0_2364_shabby-pink-molly-255f90ece28e-20220416-113133.mp4 10.0_4374_woozy-ruby-ostrich-f153ac423f61-20220418-033403.mp4\r\n10.0_2365_shabby-pink-molly-255f90ece28e-20220416-113636.mp4 10.0_4375_woozy-ruby-ostrich-f153ac423f61-20220418-033902.mp4\r\n10.0_2366_shabby-pink-molly-255f90ece28e-20220416-114138.mp4 10.0_4376_woozy-ruby-ostrich-f153ac423f61-20220418-034400.mp4\r\n10.0_2367_shabby-pink-molly-255f90ece28e-20220416-114641.mp4 10.0_4377_woozy-ruby-ostrich-f153ac423f61-20220418-034858.mp4\r\n10.0_2368_shabby-pink-molly-264697320021-20220420-092537.mp4 10.0_4378_woozy-ruby-ostrich-f153ac423f61-20220418-063346.mp4\r\n10.0_2369_shabby-pink-molly-264697320021-20220420-093038.mp4 10.0_4379_woozy-ruby-ostrich-f153ac423f61-20220418-063845.mp4\r\n10.0_236_cheeky-cornflower-setter-98133ed4f2fc-20220419-092628.mp4 10.0_437_cheeky-cornflower-setter-e2be17bf2af2-20220417-151910.mp4\r\n10.0_2370_shabby-pink-molly-264697320021-20220420-093540.mp4 10.0_4380_woozy-ruby-ostrich-f153ac423f61-20220418-064343.mp4\r\n10.0_2371_shabby-pink-molly-264697320021-20220420-094041.mp4 10.0_4381_woozy-ruby-ostrich-f153ac423f61-20220418-071712.mp4\r\n10.0_2372_shabby-pink-molly-2f0d7ce69f89-20220416-122853.mp4 10.0_4382_woozy-ruby-ostrich-f153ac423f61-20220418-072211.mp4\r\n10.0_2373_shabby-pink-molly-2f0d7ce69f89-20220416-123355.mp4 10.0_4383_woozy-ruby-ostrich-f153ac423f61-20220418-072714.mp4\r\n10.0_2374_shabby-pink-molly-2f0d7ce69f89-20220416-123857.mp4 10.0_4384_woozy-ruby-ostrich-f153ac423f61-20220419-053352.mp4\r\n10.0_2375_shabby-pink-molly-35bf59b96d1a-20220414-080905.mp4 10.0_4385_woozy-ruby-ostrich-f153ac423f61-20220419-053850.mp4\r\n10.0_2376_shabby-pink-molly-3a103bd23e05-20220414-090202.mp4 10.0_4386_woozy-ruby-ostrich-f153ac423f61-20220419-054348.mp4\r\n10.0_2377_shabby-pink-molly-3a103bd23e05-20220414-090704.mp4 10.0_4387_woozy-ruby-ostrich-f153ac423f61-20220419-054845.mp4\r\n10.0_2378_shabby-pink-molly-3d5587cf7eb7-20220424-194902.mp4 10.0_4388_woozy-ruby-ostrich-f153ac423f61-20220419-055354.mp4\r\n10.0_2379_shabby-pink-molly-4738bca9e7fe-20220416-152224.mp4 10.0_4389_woozy-ruby-ostrich-f153ac423f61-20220419-235459.mp4\r\n10.0_237_cheeky-cornflower-setter-98133ed4f2fc-20220419-093138.mp4 10.0_438_cheeky-cornflower-setter-e2be17bf2af2-20220417-152417.mp4\r\n10.0_2380_shabby-pink-molly-4738bca9e7fe-20220416-152726.mp4 10.0_4390_woozy-ruby-ostrich-f153ac423f61-20220420-000003.mp4\r\n10.0_2381_shabby-pink-molly-4738bca9e7fe-20220416-153228.mp4 10.0_4391_woozy-ruby-ostrich-f153ac423f61-20220420-000500.mp4\r\n10.0_2382_shabby-pink-molly-4738bca9e7fe-20220416-153730.mp4 10.0_4392_woozy-ruby-ostrich-f153ac423f61-20220420-001006.mp4\r\n10.0_2383_shabby-pink-molly-4738bca9e7fe-20220416-154231.mp4 10.0_4393_woozy-ruby-ostrich-f153ac423f61-20220420-001547.mp4\r\n10.0_2384_shabby-pink-molly-477fb23e35ef-20220416-165925.mp4 10.0_4394_woozy-ruby-ostrich-f153ac423f61-20220420-021434.mp4\r\n10.0_2385_shabby-pink-molly-477fb23e35ef-20220416-170427.mp4 10.0_4395_woozy-ruby-ostrich-f153ac423f61-20220420-021936.mp4\r\n10.0_2386_shabby-pink-molly-477fb23e35ef-20220416-170929.mp4 10.0_4396_woozy-ruby-ostrich-f153ac423f61-20220420-022434.mp4\r\n10.0_2387_shabby-pink-molly-48b53b50e25d-20220414-081054.mp4 10.0_4397_woozy-ruby-ostrich-f153ac423f61-20220420-022932.mp4\r\n10.0_2388_shabby-pink-molly-492a65fc7235-20220414-081255.mp4 10.0_4398_woozy-ruby-ostrich-f153ac423f61-20220420-023429.mp4\r\n10.0_2389_shabby-pink-molly-4ea7f0f9605d-20220420-101245.mp4 10.0_4399_woozy-ruby-ostrich-f153ac423f61-20220420-081510.mp4\r\n10.0_238_cheeky-cornflower-setter-991c0914481d-20220419-111038.mp4 10.0_439_cheeky-cornflower-setter-e2ccef430e37-20220414-174005.mp4\r\n10.0_2390_shabby-pink-molly-4ea7f0f9605d-20220420-101747.mp4 10.0_4400_woozy-ruby-ostrich-f153ac423f61-20220420-082009.mp4\r\n10.0_2391_shabby-pink-molly-4ea7f0f9605d-20220420-102248.mp4 10.0_4401_woozy-ruby-ostrich-f153ac423f61-20220420-082507.mp4\r\n10.0_2392_shabby-pink-molly-4ea7f0f9605d-20220420-102750.mp4 10.0_4402_woozy-ruby-ostrich-f153ac423f61-20220420-083004.mp4\r\n10.0_2393_shabby-pink-molly-51ac39e6e130-20220416-134801.mp4 10.0_4403_woozy-ruby-ostrich-f153ac423f61-20220420-083502.mp4\r\n10.0_2394_shabby-pink-molly-51ac39e6e130-20220416-135303.mp4 10.0_4404_woozy-ruby-ostrich-f153ac423f61-20220420-110645.mp4\r\n10.0_2395_shabby-pink-molly-51ac39e6e130-20220416-135804.mp4 10.0_4405_woozy-ruby-ostrich-f153ac423f61-20220420-111144.mp4\r\n10.0_2396_shabby-pink-molly-51ac39e6e130-20220416-140306.mp4 10.0_4406_woozy-ruby-ostrich-f153ac423f61-20220420-111641.mp4\r\n10.0_2397_shabby-pink-molly-51ac39e6e130-20220416-140808.mp4 10.0_4407_woozy-ruby-ostrich-f153ac423f61-20220420-112157.mp4\r\n10.0_2398_shabby-pink-molly-54a2b6b85a2d-20220419-075201.mp4 10.0_4408_woozy-ruby-ostrich-f153ac423f61-20220420-112655.mp4\r\n10.0_2399_shabby-pink-molly-54a2b6b85a2d-20220419-075703.mp4 10.0_4409_woozy-ruby-ostrich-f153ac423f61-20220420-152230.mp4\r\n10.0_239_cheeky-cornflower-setter-991c0914481d-20220419-111546.mp4 10.0_440_cheeky-cornflower-setter-e2ccef430e37-20220414-174555.mp4\r\n10.0_2400_shabby-pink-molly-5d419c6b4640-20220416-162716.mp4 10.0_4410_woozy-ruby-ostrich-f153ac423f61-20220420-152738.mp4\r\n10.0_2401_shabby-pink-molly-5d419c6b4640-20220416-163218.mp4 10.0_4411_woozy-ruby-ostrich-f153ac423f61-20220420-153235.mp4\r\n10.0_2402_shabby-pink-molly-5d419c6b4640-20220416-163720.mp4 10.0_4412_woozy-ruby-ostrich-f153ac423f61-20220420-153742.mp4\r\n10.0_2403_shabby-pink-molly-5d419c6b4640-20220416-164223.mp4 10.0_4413_woozy-ruby-ostrich-f153ac423f61-20220420-154240.mp4\r\n10.0_2404_shabby-pink-molly-5d419c6b4640-20220416-164725.mp4 10.0_4414_woozy-ruby-ostrich-f81ddc088496-20220416-044148.mp4\r\n10.0_2405_shabby-pink-molly-5d68f85ed866-20220414-092659.mp4 10.0_4415_woozy-ruby-ostrich-fbbe44b63eb5-20220420-005726.mp4\r\n10.0_2406_shabby-pink-molly-5e60ebc3e19e-20220419-091942.mp4 10.0_4416_woozy-ruby-ostrich-fbbe44b63eb5-20220420-010224.mp4\r\n10.0_2407_shabby-pink-molly-5e60ebc3e19e-20220419-092444.mp4 10.0_4417_woozy-ruby-ostrich-ff7516c11cee-20220419-060339.mp4\r\n10.0_2408_shabby-pink-molly-5e60ebc3e19e-20220419-092946.mp4 10.0_441_cheeky-cornflower-setter-e2ccef430e37-20220414-175100.mp4\r\n10.0_2409_shabby-pink-molly-5e60ebc3e19e-20220419-093447.mp4 10.0_442_cheeky-cornflower-setter-e44a6c43c94a-20220422-121637.mp4\r\n10.0_240_cheeky-cornflower-setter-991c0914481d-20220419-112052.mp4 10.0_443_cheeky-cornflower-setter-e44a6c43c94a-20220422-122600.mp4\r\n10.0_2410_shabby-pink-molly-5e60ebc3e19e-20220419-093949.mp4 10.0_444_cheeky-cornflower-setter-e53917553fcb-20220423-123016.mp4\r\n10.0_2411_shabby-pink-molly-645d83ad9a55-20220416-172105.mp4 10.0_445_cheeky-cornflower-setter-e53917553fcb-20220423-124038.mp4\r\n10.0_2412_shabby-pink-molly-645d83ad9a55-20220416-172607.mp4 10.0_446_cheeky-cornflower-setter-e53917553fcb-20220423-125047.mp4\r\n10.0_2413_shabby-pink-molly-645d83ad9a55-20220416-173109.mp4 10.0_447_cheeky-cornflower-setter-e59ca3547906-20220419-150446.mp4\r\n10.0_2414_shabby-pink-molly-6623a5b829ed-20220419-081823.mp4 10.0_448_cheeky-cornflower-setter-e59ca3547906-20220419-150954.mp4\r\n10.0_2415_shabby-pink-molly-6623a5b829ed-20220419-082325.mp4 10.0_449_cheeky-cornflower-setter-e59ca3547906-20220419-151515.mp4\r\n10.0_2416_shabby-pink-molly-6623a5b829ed-20220419-082826.mp4 10.0_450_cheeky-cornflower-setter-e6e025efec8c-20220417-094436.mp4\r\n10.0_2417_shabby-pink-molly-6623a5b829ed-20220419-083328.mp4 10.0_451_cheeky-cornflower-setter-e6e025efec8c-20220417-094945.mp4\r\n10.0_2418_shabby-pink-molly-6bdcc4372297-20220414-080627.mp4 10.0_452_cheeky-cornflower-setter-e6e025efec8c-20220417-100006.mp4\r\n10.0_2419_shabby-pink-molly-6dca2119c0d0-20220420-112534.mp4 10.0_453_cheeky-cornflower-setter-e8b6a71198ec-20220418-140524.mp4\r\n10.0_241_cheeky-cornflower-setter-991c0914481d-20220419-112558.mp4 10.0_454_cheeky-cornflower-setter-e8b6a71198ec-20220418-141032.mp4\r\n10.0_2420_shabby-pink-molly-6dca2119c0d0-20220420-113041.mp4 10.0_455_cheeky-cornflower-setter-e8b6a71198ec-20220418-141543.mp4\r\n10.0_2421_shabby-pink-molly-6dca2119c0d0-20220420-113543.mp4 10.0_456_cheeky-cornflower-setter-e9a333cd51bf-20220418-111519.mp4\r\n10.0_2422_shabby-pink-molly-6dca2119c0d0-20220420-114045.mp4 10.0_457_cheeky-cornflower-setter-ea325edb7e44-20220418-170909.mp4\r\n10.0_2423_shabby-pink-molly-6dca2119c0d0-20220420-114548.mp4 10.0_458_cheeky-cornflower-setter-edf57f76f9a2-20220416-094153.mp4\r\n10.0_2424_shabby-pink-molly-6e3b1c915f6d-20220416-154339.mp4 10.0_459_cheeky-cornflower-setter-edf57f76f9a2-20220416-094728.mp4\r\n10.0_2425_shabby-pink-molly-6e3b1c915f6d-20220416-154841.mp4 10.0_460_cheeky-cornflower-setter-edf57f76f9a2-20220416-095312.mp4\r\n10.0_2426_shabby-pink-molly-6e3b1c915f6d-20220416-155343.mp4 10.0_461_cheeky-cornflower-setter-edf57f76f9a2-20220416-095900.mp4\r\n10.0_2427_shabby-pink-molly-6e3b1c915f6d-20220416-155845.mp4 10.0_462_cheeky-cornflower-setter-f0c8631cf6af-20220414-143622.mp4\r\n10.0_2428_shabby-pink-molly-70a4e0c13d92-20220414-110616.mp4 10.0_463_cheeky-cornflower-setter-f0c8631cf6af-20220414-144204.mp4\r\n10.0_2429_shabby-pink-molly-70a4e0c13d92-20220414-111119.mp4 10.0_464_cheeky-cornflower-setter-f14dc0345a2e-20220422-220713.mp4\r\n10.0_242_cheeky-cornflower-setter-9978e4199995-20220422-125454.mp4 10.0_465_cheeky-cornflower-setter-f14dc0345a2e-20220422-221613.mp4\r\n10.0_2430_shabby-pink-molly-70a4e0c13d92-20220414-111620.mp4 10.0_466_cheeky-cornflower-setter-f14dc0345a2e-20220422-222451.mp4\r\n10.0_2431_shabby-pink-molly-70a4e0c13d92-20220414-112122.mp4 10.0_467_cheeky-cornflower-setter-f153ac423f61-20220414-122124.mp4\r\n10.0_2432_shabby-pink-molly-70a4e0c13d92-20220414-112623.mp4 10.0_468_cheeky-cornflower-setter-f153ac423f61-20220414-122703.mp4\r\n10.0_2433_shabby-pink-molly-79e7bbf667ef-20220421-093044.mp4 10.0_469_cheeky-cornflower-setter-f153ac423f61-20220414-123306.mp4\r\n10.0_2434_shabby-pink-molly-79e7bbf667ef-20220421-093546.mp4 10.0_470_cheeky-cornflower-setter-f153ac423f61-20220414-124130.mp4\r\n10.0_2435_shabby-pink-molly-79f951b3bc27-20220414-081216.mp4 10.0_471_cheeky-cornflower-setter-f153ac423f61-20220414-124939.mp4\r\n10.0_2436_shabby-pink-molly-7cce2f5290cc-20220424-111602.mp4 10.0_472_cheeky-cornflower-setter-f153ac423f61-20220414-125602.mp4\r\n10.0_2437_shabby-pink-molly-7cce2f5290cc-20220424-112105.mp4 10.0_473_cheeky-cornflower-setter-f153ac423f61-20220414-130226.mp4\r\n10.0_2438_shabby-pink-molly-7cce2f5290cc-20220424-112607.mp4 10.0_474_cheeky-cornflower-setter-f153ac423f61-20220414-171805.mp4\r\n10.0_2439_shabby-pink-molly-7cce2f5290cc-20220424-113108.mp4 10.0_475_cheeky-cornflower-setter-f153ac423f61-20220414-172325.mp4\r\n10.0_243_cheeky-cornflower-setter-9978e4199995-20220422-130748.mp4 10.0_476_cheeky-cornflower-setter-f153ac423f61-20220414-172831.mp4\r\n10.0_2440_shabby-pink-molly-7cce2f5290cc-20220424-113610.mp4 10.0_477_cheeky-cornflower-setter-f153ac423f61-20220414-173338.mp4\r\n10.0_2441_shabby-pink-molly-7cfd756ce4ab-20220414-092851.mp4 10.0_478_cheeky-cornflower-setter-f153ac423f61-20220414-202837.mp4\r\n10.0_2442_shabby-pink-molly-7dd581611fb0-20220421-093936.mp4 10.0_479_cheeky-cornflower-setter-f153ac423f61-20220414-203400.mp4\r\n10.0_2443_shabby-pink-molly-7dd581611fb0-20220421-094438.mp4 10.0_480_cheeky-cornflower-setter-f153ac423f61-20220414-203908.mp4\r\n10.0_2444_shabby-pink-molly-7e276fd4c36f-20220419-084040.mp4 10.0_481_cheeky-cornflower-setter-f153ac423f61-20220414-204415.mp4\r\n10.0_2445_shabby-pink-molly-7e276fd4c36f-20220419-084542.mp4 10.0_482_cheeky-cornflower-setter-f153ac423f61-20220415-091448.mp4\r\n10.0_2446_shabby-pink-molly-86d27cb24f42-20220424-212153.mp4 10.0_483_cheeky-cornflower-setter-f153ac423f61-20220415-092006.mp4\r\n10.0_2447_shabby-pink-molly-86d27cb24f42-20220424-212655.mp4 10.0_484_cheeky-cornflower-setter-f153ac423f61-20220415-120445.mp4\r\n10.0_2448_shabby-pink-molly-86d27cb24f42-20220424-213157.mp4 10.0_485_cheeky-cornflower-setter-f153ac423f61-20220415-121008.mp4\r\n10.0_2449_shabby-pink-molly-88d5939282ee-20220420-094244.mp4 10.0_486_cheeky-cornflower-setter-f153ac423f61-20220415-121516.mp4\r\n10.0_244_cheeky-cornflower-setter-99cf993a1840-20220416-212958.mp4 10.0_487_cheeky-cornflower-setter-f153ac423f61-20220415-165933.mp4\r\n10.0_2450_shabby-pink-molly-8c87984cfdb5-20220414-081147.mp4 10.0_488_cheeky-cornflower-setter-f153ac423f61-20220415-170559.mp4\r\n10.0_2451_shabby-pink-molly-8e1888fb7974-20220421-094507.mp4 10.0_489_cheeky-cornflower-setter-f153ac423f61-20220415-171103.mp4\r\n10.0_2452_shabby-pink-molly-90feff906c1d-20220424-113720.mp4 10.0_490_cheeky-cornflower-setter-f153ac423f61-20220415-210120.mp4\r\n10.0_2453_shabby-pink-molly-90feff906c1d-20220424-114222.mp4 10.0_491_cheeky-cornflower-setter-f153ac423f61-20220415-210701.mp4\r\n10.0_2454_shabby-pink-molly-90feff906c1d-20220424-114724.mp4 10.0_492_cheeky-cornflower-setter-f153ac423f61-20220415-211207.mp4\r\n10.0_2455_shabby-pink-molly-90feff906c1d-20220424-115226.mp4 10.0_493_cheeky-cornflower-setter-f153ac423f61-20220415-221914.mp4\r\n10.0_2456_shabby-pink-molly-90feff906c1d-20220424-115728.mp4 10.0_494_cheeky-cornflower-setter-f153ac423f61-20220415-222438.mp4\r\n10.0_2457_shabby-pink-molly-930277f0f5d5-20220416-160459.mp4 10.0_495_cheeky-cornflower-setter-f153ac423f61-20220415-222944.mp4\r\n10.0_2458_shabby-pink-molly-930277f0f5d5-20220416-161001.mp4 10.0_496_cheeky-cornflower-setter-f153ac423f61-20220415-223448.mp4\r\n10.0_2459_shabby-pink-molly-930277f0f5d5-20220416-161503.mp4 10.0_497_cheeky-cornflower-setter-f153ac423f61-20220416-084430.mp4\r\n10.0_245_cheeky-cornflower-setter-99cf993a1840-20220416-213633.mp4 10.0_498_cheeky-cornflower-setter-f153ac423f61-20220416-085014.mp4\r\n10.0_2460_shabby-pink-molly-930277f0f5d5-20220416-162005.mp4 10.0_499_cheeky-cornflower-setter-f153ac423f61-20220416-085550.mp4\r\n10.0_2461_shabby-pink-molly-930277f0f5d5-20220416-162506.mp4 10.0_500_cheeky-cornflower-setter-f153ac423f61-20220416-111803.mp4\r\n10.0_2462_shabby-pink-molly-9566b8f59631-20220414-080848.mp4 10.0_501_cheeky-cornflower-setter-f153ac423f61-20220416-112324.mp4\r\n10.0_2463_shabby-pink-molly-95ec28153400-20220424-213423.mp4 10.0_502_cheeky-cornflower-setter-f153ac423f61-20220416-112833.mp4\r\n10.0_2464_shabby-pink-molly-982ca0f029d0-20220414-085626.mp4 10.0_503_cheeky-cornflower-setter-f153ac423f61-20220416-113340.mp4\r\n10.0_2465_shabby-pink-molly-a5caac12128c-20220416-132647.mp4 10.0_504_cheeky-cornflower-setter-f153ac423f61-20220416-173618.mp4\r\n10.0_2466_shabby-pink-molly-a5caac12128c-20220416-133150.mp4 10.0_505_cheeky-cornflower-setter-f153ac423f61-20220416-174136.mp4\r\n10.0_2467_shabby-pink-molly-a5caac12128c-20220416-133652.mp4 10.0_506_cheeky-cornflower-setter-f153ac423f61-20220416-174644.mp4\r\n10.0_2468_shabby-pink-molly-a5caac12128c-20220416-134153.mp4 10.0_507_cheeky-cornflower-setter-f153ac423f61-20220416-175150.mp4\r\n10.0_2469_shabby-pink-molly-a5caac12128c-20220416-134655.mp4 10.0_508_cheeky-cornflower-setter-f153ac423f61-20220416-184705.mp4\r\n10.0_246_cheeky-cornflower-setter-99cf993a1840-20220416-214147.mp4 10.0_509_cheeky-cornflower-setter-f153ac423f61-20220416-185230.mp4\r\n10.0_2470_shabby-pink-molly-aef3b6e106f9-20220414-083003.mp4 10.0_510_cheeky-cornflower-setter-f153ac423f61-20220416-185814.mp4\r\n10.0_2471_shabby-pink-molly-aef3b6e106f9-20220414-083505.mp4 10.0_511_cheeky-cornflower-setter-f153ac423f61-20220416-190352.mp4\r\n10.0_2472_shabby-pink-molly-aef3b6e106f9-20220414-084006.mp4 10.0_512_cheeky-cornflower-setter-f153ac423f61-20220416-210622.mp4\r\n10.0_2473_shabby-pink-molly-aef3b6e106f9-20220414-084508.mp4 10.0_513_cheeky-cornflower-setter-f153ac423f61-20220416-211148.mp4\r\n10.0_2474_shabby-pink-molly-aef3b6e106f9-20220414-085009.mp4 10.0_514_cheeky-cornflower-setter-f153ac423f61-20220416-211659.mp4\r\n10.0_2475_shabby-pink-molly-b2e1f60aa219-20220414-092427.mp4 10.0_515_cheeky-cornflower-setter-f153ac423f61-20220416-212206.mp4\r\n10.0_2476_shabby-pink-molly-b4d769163550-20220414-093031.mp4 10.0_516_cheeky-cornflower-setter-f153ac423f61-20220417-091629.mp4\r\n10.0_2477_shabby-pink-molly-b5b626e6b29d-20220420-094307.mp4 10.0_517_cheeky-cornflower-setter-f153ac423f61-20220417-092210.mp4\r\n10.0_2478_shabby-pink-molly-b76de5f30fa1-20220419-075902.mp4 10.0_518_cheeky-cornflower-setter-f153ac423f61-20220417-092726.mp4\r\n10.0_2479_shabby-pink-molly-b76de5f30fa1-20220419-080404.mp4 10.0_519_cheeky-cornflower-setter-f153ac423f61-20220417-093234.mp4\r\n10.0_247_cheeky-cornflower-setter-99cf993a1840-20220416-214655.mp4 10.0_520_cheeky-cornflower-setter-f153ac423f61-20220417-102048.mp4\r\n10.0_2480_shabby-pink-molly-b76de5f30fa1-20220419-080906.mp4 10.0_521_cheeky-cornflower-setter-f153ac423f61-20220417-102607.mp4\r\n10.0_2481_shabby-pink-molly-bd16f47f6c88-20220416-122303.mp4 10.0_522_cheeky-cornflower-setter-f153ac423f61-20220417-103114.mp4\r\n10.0_2482_shabby-pink-molly-bd16f47f6c88-20220416-122805.mp4 10.0_523_cheeky-cornflower-setter-f153ac423f61-20220417-103620.mp4\r\n10.0_2483_shabby-pink-molly-bfc809ffdd45-20220424-213711.mp4 10.0_524_cheeky-cornflower-setter-f153ac423f61-20220417-104951.mp4\r\n10.0_2484_shabby-pink-molly-cc65216dd828-20220419-075832.mp4 10.0_525_cheeky-cornflower-setter-f153ac423f61-20220417-105512.mp4\r\n10.0_2485_shabby-pink-molly-cc6e2016d7a9-20220416-120150.mp4 10.0_526_cheeky-cornflower-setter-f153ac423f61-20220417-105917.mp4\r\n10.0_2486_shabby-pink-molly-cc6e2016d7a9-20220416-120653.mp4 10.0_527_cheeky-cornflower-setter-f153ac423f61-20220417-110441.mp4\r\n10.0_2487_shabby-pink-molly-cc6e2016d7a9-20220416-121155.mp4 10.0_528_cheeky-cornflower-setter-f153ac423f61-20220417-111246.mp4\r\n10.0_2488_shabby-pink-molly-cc6e2016d7a9-20220416-121657.mp4 10.0_529_cheeky-cornflower-setter-f153ac423f61-20220417-111808.mp4\r\n10.0_2489_shabby-pink-molly-cc6e2016d7a9-20220416-122200.mp4 10.0_530_cheeky-cornflower-setter-f153ac423f61-20220417-142935.mp4\r\n10.0_248_cheeky-cornflower-setter-9b1dbda4f579-20220415-172400.mp4 10.0_531_cheeky-cornflower-setter-f153ac423f61-20220417-143455.mp4\r\n10.0_2490_shabby-pink-molly-d079ec65b5bf-20220421-082816.mp4 10.0_532_cheeky-cornflower-setter-f153ac423f61-20220417-144001.mp4\r\n10.0_2491_shabby-pink-molly-d079ec65b5bf-20220421-083318.mp4 10.0_533_cheeky-cornflower-setter-f153ac423f61-20220417-144508.mp4\r\n10.0_2492_shabby-pink-molly-d079ec65b5bf-20220421-083819.mp4 10.0_534_cheeky-cornflower-setter-f153ac423f61-20220417-163733.mp4\r\n10.0_2493_shabby-pink-molly-d079ec65b5bf-20220421-084321.mp4 10.0_535_cheeky-cornflower-setter-f153ac423f61-20220417-164300.mp4\r\n10.0_2494_shabby-pink-molly-d1b19e929d39-20220416-122832.mp4 10.0_536_cheeky-cornflower-setter-f153ac423f61-20220417-164810.mp4\r\n10.0_2495_shabby-pink-molly-d6af4d671098-20220419-084704.mp4 10.0_537_cheeky-cornflower-setter-f153ac423f61-20220417-165317.mp4\r\n10.0_2496_shabby-pink-molly-d6af4d671098-20220419-085205.mp4 10.0_538_cheeky-cornflower-setter-f153ac423f61-20220417-180517.mp4\r\n10.0_2497_shabby-pink-molly-d6d187b99d70-20220416-111038.mp4 10.0_539_cheeky-cornflower-setter-f153ac423f61-20220417-181108.mp4\r\n10.0_2498_shabby-pink-molly-d6d187b99d70-20220416-111540.mp4 10.0_540_cheeky-cornflower-setter-f153ac423f61-20220417-181613.mp4\r\n10.0_2499_shabby-pink-molly-d6d187b99d70-20220416-112043.mp4 10.0_541_cheeky-cornflower-setter-f153ac423f61-20220417-203316.mp4\r\n10.0_249_cheeky-cornflower-setter-9b1dbda4f579-20220415-173139.mp4 10.0_542_cheeky-cornflower-setter-f153ac423f61-20220417-203838.mp4\r\n10.0_2500_shabby-pink-molly-d6d187b99d70-20220416-112544.mp4 10.0_543_cheeky-cornflower-setter-f153ac423f61-20220417-204347.mp4\r\n10.0_2501_shabby-pink-molly-d6d187b99d70-20220416-113046.mp4 10.0_544_cheeky-cornflower-setter-f153ac423f61-20220417-204900.mp4\r\n10.0_2502_shabby-pink-molly-d9c4a415703b-20220414-090052.mp4 10.0_545_cheeky-cornflower-setter-f153ac423f61-20220417-205405.mp4\r\n10.0_2503_shabby-pink-molly-de0b3def6ba3-20220414-092446.mp4 10.0_546_cheeky-cornflower-setter-f153ac423f61-20220417-212046.mp4\r\n10.0_2504_shabby-pink-molly-deb8c3a7a516-20220414-081325.mp4 10.0_547_cheeky-cornflower-setter-f153ac423f61-20220417-212606.mp4\r\n10.0_2505_shabby-pink-molly-def0671b8070-20220416-124408.mp4 10.0_548_cheeky-cornflower-setter-f153ac423f61-20220417-213112.mp4\r\n10.0_2506_shabby-pink-molly-def0671b8070-20220416-124910.mp4 10.0_549_cheeky-cornflower-setter-f153ac423f61-20220417-215126.mp4\r\n10.0_2507_shabby-pink-molly-def0671b8070-20220416-125412.mp4 10.0_550_cheeky-cornflower-setter-f153ac423f61-20220417-215705.mp4\r\n10.0_2508_shabby-pink-molly-def0671b8070-20220416-125914.mp4 10.0_551_cheeky-cornflower-setter-f153ac423f61-20220417-220226.mp4\r\n10.0_2509_shabby-pink-molly-def0671b8070-20220416-130415.mp4 10.0_552_cheeky-cornflower-setter-f153ac423f61-20220417-220757.mp4\r\n10.0_250_cheeky-cornflower-setter-9b1dbda4f579-20220415-173643.mp4 10.0_553_cheeky-cornflower-setter-f153ac423f61-20220418-093410.mp4\r\n10.0_2510_shabby-pink-molly-e029affba56b-20220414-080544.mp4 10.0_554_cheeky-cornflower-setter-f153ac423f61-20220418-093931.mp4\r\n10.0_2511_shabby-pink-molly-e2c55d184867-20220414-090131.mp4 10.0_555_cheeky-cornflower-setter-f153ac423f61-20220418-094439.mp4\r\n10.0_2512_shabby-pink-molly-e8f3e7158f70-20220414-081122.mp4 10.0_556_cheeky-cornflower-setter-f153ac423f61-20220418-100216.mp4\r\n10.0_2513_shabby-pink-molly-e91f414b12d7-20220420-094621.mp4 10.0_557_cheeky-cornflower-setter-f153ac423f61-20220418-100740.mp4\r\n10.0_2514_shabby-pink-molly-e91f414b12d7-20220420-095123.mp4 10.0_558_cheeky-cornflower-setter-f153ac423f61-20220418-101249.mp4\r\n10.0_2515_shabby-pink-molly-e91f414b12d7-20220420-095624.mp4 10.0_559_cheeky-cornflower-setter-f153ac423f61-20220418-105506.mp4\r\n10.0_2516_shabby-pink-molly-e91f414b12d7-20220420-100125.mp4 10.0_560_cheeky-cornflower-setter-f153ac423f61-20220418-110024.mp4\r\n10.0_2517_shabby-pink-molly-e91f414b12d7-20220420-100627.mp4 10.0_561_cheeky-cornflower-setter-f153ac423f61-20220418-110533.mp4\r\n10.0_2518_shabby-pink-molly-f153ac423f61-20220414-075514.mp4 10.0_562_cheeky-cornflower-setter-f153ac423f61-20220418-111036.mp4\r\n10.0_2519_shabby-pink-molly-f153ac423f61-20220414-080018.mp4 10.0_563_cheeky-cornflower-setter-f153ac423f61-20220418-120640.mp4\r\n10.0_251_cheeky-cornflower-setter-9b1dbda4f579-20220415-174147.mp4 10.0_564_cheeky-cornflower-setter-f153ac423f61-20220418-121227.mp4\r\n10.0_2520_shabby-pink-molly-f153ac423f61-20220414-080521.mp4 10.0_565_cheeky-cornflower-setter-f153ac423f61-20220418-121803.mp4\r\n10.0_2521_shabby-pink-molly-f153ac423f61-20220414-104518.mp4 10.0_566_cheeky-cornflower-setter-f153ac423f61-20220418-122339.mp4\r\n10.0_2522_shabby-pink-molly-f153ac423f61-20220414-105021.mp4 10.0_567_cheeky-cornflower-setter-f153ac423f61-20220418-124530.mp4\r\n10.0_2523_shabby-pink-molly-f153ac423f61-20220414-105523.mp4 10.0_568_cheeky-cornflower-setter-f153ac423f61-20220418-125115.mp4\r\n10.0_2524_shabby-pink-molly-f153ac423f61-20220414-110025.mp4 10.0_569_cheeky-cornflower-setter-f153ac423f61-20220418-165452.mp4\r\n10.0_2525_shabby-pink-molly-f153ac423f61-20220414-110526.mp4 10.0_570_cheeky-cornflower-setter-f153ac423f61-20220418-170016.mp4\r\n10.0_2526_shabby-pink-molly-f153ac423f61-20220416-104923.mp4 10.0_571_cheeky-cornflower-setter-f153ac423f61-20220418-170526.mp4\r\n10.0_2527_shabby-pink-molly-f153ac423f61-20220416-105426.mp4 10.0_572_cheeky-cornflower-setter-f153ac423f61-20220418-183513.mp4\r\n10.0_2528_shabby-pink-molly-f153ac423f61-20220416-105928.mp4 10.0_573_cheeky-cornflower-setter-f153ac423f61-20220418-184034.mp4\r\n10.0_2529_shabby-pink-molly-f153ac423f61-20220416-110430.mp4 10.0_574_cheeky-cornflower-setter-f153ac423f61-20220418-184541.mp4\r\n10.0_252_cheeky-cornflower-setter-9b4d35d6fd86-20220422-171443.mp4 10.0_575_cheeky-cornflower-setter-f153ac423f61-20220418-194414.mp4\r\n10.0_2530_shabby-pink-molly-f153ac423f61-20220416-110932.mp4 10.0_576_cheeky-cornflower-setter-f153ac423f61-20220418-194936.mp4\r\n10.0_2531_shabby-pink-molly-f153ac423f61-20220416-150105.mp4 10.0_577_cheeky-cornflower-setter-f153ac423f61-20220418-195444.mp4\r\n10.0_2532_shabby-pink-molly-f153ac423f61-20220416-150615.mp4 10.0_578_cheeky-cornflower-setter-f153ac423f61-20220419-091502.mp4\r\n10.0_2533_shabby-pink-molly-f153ac423f61-20220416-151117.mp4 10.0_579_cheeky-cornflower-setter-f153ac423f61-20220419-092032.mp4\r\n10.0_2534_shabby-pink-molly-f153ac423f61-20220416-151619.mp4 10.0_580_cheeky-cornflower-setter-f153ac423f61-20220419-092541.mp4\r\n10.0_2535_shabby-pink-molly-f153ac423f61-20220416-152121.mp4 10.0_581_cheeky-cornflower-setter-f153ac423f61-20220419-105345.mp4\r\n10.0_2536_shabby-pink-molly-f153ac423f61-20220419-073037.mp4 10.0_582_cheeky-cornflower-setter-f153ac423f61-20220419-105912.mp4\r\n10.0_2537_shabby-pink-molly-f153ac423f61-20220419-073539.mp4 10.0_583_cheeky-cornflower-setter-f153ac423f61-20220419-110420.mp4\r\n10.0_2538_shabby-pink-molly-f153ac423f61-20220419-074042.mp4 10.0_584_cheeky-cornflower-setter-f153ac423f61-20220419-123621.mp4\r\n10.0_2539_shabby-pink-molly-f153ac423f61-20220419-074544.mp4 10.0_585_cheeky-cornflower-setter-f153ac423f61-20220419-124149.mp4\r\n10.0_253_cheeky-cornflower-setter-9b4d35d6fd86-20220422-171951.mp4 10.0_586_cheeky-cornflower-setter-f153ac423f61-20220419-141308.mp4\r\n10.0_2540_shabby-pink-molly-f153ac423f61-20220419-075046.mp4 10.0_587_cheeky-cornflower-setter-f153ac423f61-20220419-141827.mp4\r\n10.0_2541_shabby-pink-molly-f153ac423f61-20220420-090424.mp4 10.0_588_cheeky-cornflower-setter-f153ac423f61-20220419-144004.mp4\r\n10.0_2542_shabby-pink-molly-f153ac423f61-20220420-090927.mp4 10.0_589_cheeky-cornflower-setter-f153ac423f61-20220419-144520.mp4\r\n10.0_2543_shabby-pink-molly-f153ac423f61-20220420-091428.mp4 10.0_590_cheeky-cornflower-setter-f153ac423f61-20220419-145022.mp4\r\n10.0_2544_shabby-pink-molly-f153ac423f61-20220420-091929.mp4 10.0_591_cheeky-cornflower-setter-f153ac423f61-20220419-172947.mp4\r\n10.0_2545_shabby-pink-molly-f153ac423f61-20220420-092430.mp4 10.0_592_cheeky-cornflower-setter-f153ac423f61-20220419-174033.mp4\r\n10.0_2546_shabby-pink-molly-f153ac423f61-20220420-110413.mp4 10.0_593_cheeky-cornflower-setter-f153ac423f61-20220419-174538.mp4\r\n10.0_2547_shabby-pink-molly-f153ac423f61-20220420-110915.mp4 10.0_594_cheeky-cornflower-setter-f153ac423f61-20220419-175042.mp4\r\n10.0_2548_shabby-pink-molly-f153ac423f61-20220420-111418.mp4 10.0_595_cheeky-cornflower-setter-f153ac423f61-20220419-194318.mp4\r\n10.0_2549_shabby-pink-molly-f153ac423f61-20220420-111920.mp4 10.0_596_cheeky-cornflower-setter-f153ac423f61-20220419-194839.mp4\r\n10.0_254_cheeky-cornflower-setter-9b4d35d6fd86-20220422-172457.mp4 10.0_597_cheeky-cornflower-setter-f153ac423f61-20220419-195347.mp4\r\n10.0_2550_shabby-pink-molly-f153ac423f61-20220420-112422.mp4 10.0_598_cheeky-cornflower-setter-f153ac423f61-20220419-195853.mp4\r\n10.0_2551_shabby-pink-molly-f153ac423f61-20220421-074109.mp4 10.0_599_cheeky-cornflower-setter-f153ac423f61-20220420-163425.mp4\r\n10.0_2552_shabby-pink-molly-f153ac423f61-20220421-074611.mp4 10.0_600_cheeky-cornflower-setter-f153ac423f61-20220420-164057.mp4\r\n10.0_2553_shabby-pink-molly-f153ac423f61-20220421-075113.mp4 10.0_601_cheeky-cornflower-setter-f153ac423f61-20220420-164608.mp4\r\n10.0_2554_shabby-pink-molly-f153ac423f61-20220421-075615.mp4 10.0_602_cheeky-cornflower-setter-f153ac423f61-20220420-200708.mp4\r\n10.0_2555_shabby-pink-molly-f153ac423f61-20220421-080116.mp4 10.0_603_cheeky-cornflower-setter-f153ac423f61-20220421-000106.mp4\r\n10.0_2556_shabby-pink-molly-f153ac423f61-20220424-105225.mp4 10.0_604_cheeky-cornflower-setter-f153ac423f61-20220421-000623.mp4\r\n10.0_2557_shabby-pink-molly-f153ac423f61-20220424-105728.mp4 10.0_605_cheeky-cornflower-setter-f153ac423f61-20220421-090757.mp4\r\n10.0_2558_shabby-pink-molly-f153ac423f61-20220424-110230.mp4 10.0_606_cheeky-cornflower-setter-f153ac423f61-20220421-091326.mp4\r\n10.0_2559_shabby-pink-molly-f153ac423f61-20220424-110731.mp4 10.0_607_cheeky-cornflower-setter-f153ac423f61-20220421-091834.mp4\r\n10.0_255_cheeky-cornflower-setter-9be13dccb165-20220415-194430.mp4 10.0_608_cheeky-cornflower-setter-f153ac423f61-20220421-092341.mp4\r\n10.0_2560_shabby-pink-molly-f153ac423f61-20220424-111233.mp4 10.0_609_cheeky-cornflower-setter-f153ac423f61-20220421-102529.mp4\r\n10.0_2561_shabby-pink-molly-f153ac423f61-20220424-192928.mp4 10.0_610_cheeky-cornflower-setter-f153ac423f61-20220421-103051.mp4\r\n10.0_2562_shabby-pink-molly-f153ac423f61-20220424-193434.mp4 10.0_611_cheeky-cornflower-setter-f153ac423f61-20220421-103557.mp4\r\n10.0_2563_shabby-pink-molly-f153ac423f61-20220424-193937.mp4 10.0_612_cheeky-cornflower-setter-f153ac423f61-20220421-104245.mp4\r\n10.0_2564_shabby-pink-molly-f153ac423f61-20220424-194438.mp4 10.0_613_cheeky-cornflower-setter-f153ac423f61-20220421-104805.mp4\r\n10.0_2565_shabby-pink-molly-f153ac423f61-20220424-204323.mp4 10.0_614_cheeky-cornflower-setter-f153ac423f61-20220421-111811.mp4\r\n10.0_2566_shabby-pink-molly-f153ac423f61-20220424-204825.mp4 10.0_615_cheeky-cornflower-setter-f153ac423f61-20220421-112335.mp4\r\n10.0_2567_shabby-pink-molly-f153ac423f61-20220424-205327.mp4 10.0_616_cheeky-cornflower-setter-f153ac423f61-20220421-112848.mp4\r\n10.0_2568_shabby-pink-molly-f153ac423f61-20220424-205829.mp4 10.0_617_cheeky-cornflower-setter-f153ac423f61-20220421-113354.mp4\r\n10.0_2569_shabby-pink-molly-f35fc91db4d3-20220414-081351.mp4 10.0_618_cheeky-cornflower-setter-f153ac423f61-20220421-120250.mp4\r\n10.0_256_cheeky-cornflower-setter-9be13dccb165-20220415-194938.mp4 10.0_619_cheeky-cornflower-setter-f153ac423f61-20220421-122213.mp4\r\n10.0_2570_shabby-pink-molly-f35fc91db4d3-20220414-081852.mp4 10.0_620_cheeky-cornflower-setter-f153ac423f61-20220421-123232.mp4\r\n10.0_2571_shabby-pink-molly-f35fc91db4d3-20220414-082354.mp4 10.0_621_cheeky-cornflower-setter-f153ac423f61-20220421-125701.mp4\r\n10.0_2572_shabby-pink-molly-f35fc91db4d3-20220414-082856.mp4 10.0_622_cheeky-cornflower-setter-f153ac423f61-20220421-131058.mp4\r\n10.0_2573_shabby-pink-molly-f36c9f3c29c5-20220416-172031.mp4 10.0_623_cheeky-cornflower-setter-f153ac423f61-20220421-140623.mp4\r\n10.0_2574_shabby-pink-molly-f7bf68088160-20220414-092728.mp4 10.0_624_cheeky-cornflower-setter-f153ac423f61-20220421-141916.mp4\r\n10.0_2575_shabby-pink-molly-fa5ded7c8be9-20220424-205944.mp4 10.0_625_cheeky-cornflower-setter-f153ac423f61-20220421-185749.mp4\r\n10.0_2576_shabby-pink-molly-fa5ded7c8be9-20220424-210449.mp4 10.0_626_cheeky-cornflower-setter-f153ac423f61-20220421-190308.mp4\r\n10.0_2577_shabby-pink-molly-fa5ded7c8be9-20220424-210951.mp4 10.0_627_cheeky-cornflower-setter-f153ac423f61-20220421-190815.mp4\r\n10.0_2578_shabby-pink-molly-fa5ded7c8be9-20220424-211453.mp4 10.0_628_cheeky-cornflower-setter-f153ac423f61-20220421-214925.mp4\r\n10.0_2579_shabby-pink-molly-fa5ded7c8be9-20220424-211955.mp4 10.0_629_cheeky-cornflower-setter-f153ac423f61-20220421-220109.mp4\r\n10.0_257_cheeky-cornflower-setter-9cd1ced83221-20220418-131240.mp4 10.0_630_cheeky-cornflower-setter-f153ac423f61-20220422-091709.mp4\r\n10.0_2580_shabby-pink-molly-fc60b94130f2-20220421-084917.mp4 10.0_631_cheeky-cornflower-setter-f153ac423f61-20220422-092819.mp4\r\n10.0_2581_shabby-pink-molly-fc60b94130f2-20220421-085418.mp4 10.0_632_cheeky-cornflower-setter-f153ac423f61-20220422-093648.mp4\r\n10.0_2582_shabby-pink-molly-fd12c9c9a0a5-20220421-092158.mp4 10.0_633_cheeky-cornflower-setter-f153ac423f61-20220422-161254.mp4\r\n10.0_2583_shabby-viridian-beaver-036cc0a39334-20220422-220659.mp4 10.0_634_cheeky-cornflower-setter-f153ac423f61-20220422-161813.mp4\r\n10.0_2584_shabby-viridian-beaver-036cc0a39334-20220422-221201.mp4 10.0_635_cheeky-cornflower-setter-f153ac423f61-20220422-162319.mp4\r\n10.0_2585_shabby-viridian-beaver-036cc0a39334-20220422-221701.mp4 10.0_636_cheeky-cornflower-setter-f153ac423f61-20220422-200619.mp4\r\n10.0_2586_shabby-viridian-beaver-03c7ba5694ef-20220422-185210.mp4 10.0_637_cheeky-cornflower-setter-f153ac423f61-20220422-201938.mp4\r\n10.0_2587_shabby-viridian-beaver-03c7ba5694ef-20220422-185709.mp4 10.0_638_cheeky-cornflower-setter-f153ac423f61-20220423-090803.mp4\r\n10.0_2588_shabby-viridian-beaver-05b1deb6ec65-20220418-214651.mp4 10.0_639_cheeky-cornflower-setter-f153ac423f61-20220423-092731.mp4\r\n10.0_2589_shabby-viridian-beaver-05b1deb6ec65-20220418-215153.mp4 10.0_640_cheeky-cornflower-setter-f153ac423f61-20220423-140148.mp4\r\n10.0_258_cheeky-cornflower-setter-9cd1ced83221-20220418-131814.mp4 10.0_641_cheeky-cornflower-setter-f153ac423f61-20220423-140711.mp4\r\n10.0_2590_shabby-viridian-beaver-099db18ce475-20220421-232028.mp4 10.0_642_cheeky-cornflower-setter-f153ac423f61-20220423-141220.mp4\r\n10.0_2591_shabby-viridian-beaver-099db18ce475-20220421-232552.mp4 10.0_643_cheeky-cornflower-setter-f153ac423f61-20220423-162528.mp4\r\n10.0_2592_shabby-viridian-beaver-099db18ce475-20220421-233207.mp4 10.0_644_cheeky-cornflower-setter-f153ac423f61-20220423-163050.mp4\r\n10.0_2593_shabby-viridian-beaver-099db18ce475-20220421-233709.mp4 10.0_645_cheeky-cornflower-setter-f153ac423f61-20220423-182859.mp4\r\n10.0_2594_shabby-viridian-beaver-099db18ce475-20220421-234208.mp4 10.0_646_cheeky-cornflower-setter-f153ac423f61-20220423-184050.mp4\r\n10.0_2595_shabby-viridian-beaver-0a070fcf4c0c-20220421-235548.mp4 10.0_647_cheeky-cornflower-setter-f153ac423f61-20220423-203401.mp4\r\n10.0_2596_shabby-viridian-beaver-0a070fcf4c0c-20220422-000049.mp4 10.0_648_cheeky-cornflower-setter-f153ac423f61-20220423-204517.mp4\r\n10.0_2597_shabby-viridian-beaver-0a070fcf4c0c-20220422-000549.mp4 10.0_649_cheeky-cornflower-setter-f153ac423f61-20220423-230956.mp4\r\n10.0_2598_shabby-viridian-beaver-0a070fcf4c0c-20220422-001048.mp4 10.0_650_cheeky-cornflower-setter-f153ac423f61-20220423-231514.mp4\r\n10.0_2599_shabby-viridian-beaver-0a070fcf4c0c-20220422-001555.mp4 10.0_651_cheeky-cornflower-setter-f153ac423f61-20220423-232022.mp4\r\n10.0_259_cheeky-cornflower-setter-9cd1ced83221-20220418-132346.mp4 10.0_652_cheeky-cornflower-setter-f153ac423f61-20220423-232530.mp4\r\n10.0_2600_shabby-viridian-beaver-0c5f77442a8d-20220421-134922.mp4 10.0_653_cheeky-cornflower-setter-f15c95480f3d-20220422-202607.mp4\r\n10.0_2601_shabby-viridian-beaver-0c5f77442a8d-20220421-135423.mp4 10.0_654_cheeky-cornflower-setter-f15c95480f3d-20220422-203835.mp4\r\n10.0_2602_shabby-viridian-beaver-0c5f77442a8d-20220421-135925.mp4 10.0_655_cheeky-cornflower-setter-f22b793a1ab1-20220417-155531.mp4\r\n10.0_2603_shabby-viridian-beaver-0c5f77442a8d-20220421-140424.mp4 10.0_656_cheeky-cornflower-setter-f22b793a1ab1-20220417-160039.mp4\r\n10.0_2604_shabby-viridian-beaver-0eae00e92420-20220419-164109.mp4 10.0_657_cheeky-cornflower-setter-f22b793a1ab1-20220417-160547.mp4\r\n10.0_2605_shabby-viridian-beaver-0eae00e92420-20220419-164607.mp4 10.0_658_cheeky-cornflower-setter-f22b793a1ab1-20220417-161053.mp4\r\n10.0_2606_shabby-viridian-beaver-0eae00e92420-20220419-165105.mp4 10.0_659_cheeky-cornflower-setter-f2b3363ac094-20220418-185252.mp4\r\n10.0_2607_shabby-viridian-beaver-0eae00e92420-20220419-165603.mp4 10.0_660_cheeky-cornflower-setter-f2b3363ac094-20220418-185802.mp4\r\n10.0_2608_shabby-viridian-beaver-0eae00e92420-20220419-170100.mp4 10.0_661_cheeky-cornflower-setter-f512cef00969-20220414-142324.mp4\r\n10.0_2609_shabby-viridian-beaver-12ea2b6465c8-20220421-184855.mp4 10.0_662_cheeky-cornflower-setter-f512cef00969-20220414-142832.mp4\r\n10.0_260_cheeky-cornflower-setter-9dafcf4c0add-20220414-145539.mp4 10.0_663_cheeky-cornflower-setter-f512cef00969-20220414-143339.mp4\r\n10.0_2610_shabby-viridian-beaver-12ea2b6465c8-20220421-185356.mp4 10.0_664_cheeky-cornflower-setter-f5d630ba8da9-20220416-180721.mp4\r\n10.0_2611_shabby-viridian-beaver-12ea2b6465c8-20220421-185856.mp4 10.0_665_cheeky-cornflower-setter-f89835e89f33-20220422-111344.mp4\r\n10.0_2612_shabby-viridian-beaver-136b0e439e67-20220421-181549.mp4 10.0_666_cheeky-cornflower-setter-f89835e89f33-20220422-112351.mp4\r\n10.0_2613_shabby-viridian-beaver-136b0e439e67-20220421-182050.mp4 10.0_667_cheeky-cornflower-setter-f89835e89f33-20220422-113259.mp4\r\n10.0_2614_shabby-viridian-beaver-136b0e439e67-20220421-182550.mp4 10.0_668_cheeky-cornflower-setter-f94e696efa8d-20220422-204826.mp4\r\n10.0_2615_shabby-viridian-beaver-13888bb8bc74-20220421-021021.mp4 10.0_669_cheeky-cornflower-setter-f94e696efa8d-20220422-210021.mp4\r\n10.0_2616_shabby-viridian-beaver-156f72f6f1a0-20220416-165030.mp4 10.0_670_cheeky-cornflower-setter-f96720dc9495-20220423-132506.mp4\r\n10.0_2617_shabby-viridian-beaver-156f72f6f1a0-20220416-165529.mp4 10.0_671_cheeky-cornflower-setter-fd5609901096-20220415-181519.mp4\r\n10.0_2618_shabby-viridian-beaver-1640d8de5acc-20220415-174349.mp4 10.0_672_cheeky-cornflower-setter-fd5609901096-20220415-182035.mp4\r\n10.0_2619_shabby-viridian-beaver-17bc4310e13b-20220419-222731.mp4 10.0_673_cheeky-cornflower-setter-fd5609901096-20220415-182547.mp4\r\n10.0_261_cheeky-cornflower-setter-9dafcf4c0add-20220414-150045.mp4 10.0_674_cheeky-cornflower-setter-fd5609901096-20220415-183059.mp4\r\n10.0_2620_shabby-viridian-beaver-17bc4310e13b-20220419-223230.mp4 10.0_675_cheeky-cornflower-setter-fe4d959462d8-20220422-095902.mp4\r\n10.0_2621_shabby-viridian-beaver-17bc4310e13b-20220419-223733.mp4 10.0_676_cheeky-cornflower-setter-feb304f75639-20220422-162849.mp4\r\n10.0_2622_shabby-viridian-beaver-1892d59807be-20220416-181828.mp4 10.0_677_cheeky-cornflower-setter-feb304f75639-20220422-163358.mp4\r\n10.0_2623_shabby-viridian-beaver-1892d59807be-20220416-182326.mp4 10.0_678_cheeky-cornflower-setter-feb304f75639-20220422-163905.mp4\r\n10.0_2624_shabby-viridian-beaver-1892d59807be-20220416-182824.mp4 10.0_679_cheeky-cornflower-setter-ff2387ef8d43-20220415-092355.mp4\r\n10.0_2625_shabby-viridian-beaver-1892d59807be-20220416-183322.mp4 10.0_680_cheeky-cornflower-setter-ff2387ef8d43-20220415-092902.mp4\r\n10.0_2626_shabby-viridian-beaver-1ac2504d6280-20220416-164043.mp4 10.0_681_cheeky-cornflower-setter-ff2387ef8d43-20220415-093408.mp4\r\n10.0_2627_shabby-viridian-beaver-1ac2504d6280-20220416-164543.mp4 10.0_682_cheeky-cornflower-setter-ff75054633c6-20220417-211137.mp4\r\n10.0_2628_shabby-viridian-beaver-1c32e9827770-20220421-020050.mp4 10.0_683_cheeky-cornflower-setter-ff75054633c6-20220417-211647.mp4\r\n10.0_2629_shabby-viridian-beaver-1e037095b252-20220416-175747.mp4 10.0_684_cheeky-cornflower-setter-ffe5b68b1dc1-20220421-190909.mp4\r\n10.0_262_cheeky-cornflower-setter-9dafcf4c0add-20220414-150551.mp4 10.0_685_cheeky-cornflower-setter-ffe5b68b1dc1-20220421-191425.mp4\r\n10.0_2630_shabby-viridian-beaver-1e037095b252-20220416-180255.mp4 10.0_686_cheeky-cornflower-setter-ffe5b68b1dc1-20220421-191929.mp4\r\n10.0_2631_shabby-viridian-beaver-1e037095b252-20220416-180755.mp4 10.0_687_gimpy-jade-panda-02f73c968eb5-20220416-084709.mp4\r\n10.0_2632_shabby-viridian-beaver-2225a96461d1-20220421-145723.mp4 10.0_688_gimpy-jade-panda-02f73c968eb5-20220416-085229.mp4\r\n10.0_2633_shabby-viridian-beaver-2225a96461d1-20220421-150221.mp4 10.0_689_gimpy-jade-panda-039ed8302d6f-20220419-223112.mp4\r\n10.0_2634_shabby-viridian-beaver-2225a96461d1-20220421-150719.mp4 10.0_690_gimpy-jade-panda-039ed8302d6f-20220419-223624.mp4\r\n10.0_2635_shabby-viridian-beaver-2225a96461d1-20220421-151217.mp4 10.0_691_gimpy-jade-panda-039ed8302d6f-20220419-224122.mp4\r\n10.0_2636_shabby-viridian-beaver-2225a96461d1-20220421-151715.mp4 10.0_692_gimpy-jade-panda-039ed8302d6f-20220419-224619.mp4\r\n10.0_2637_shabby-viridian-beaver-2548b93151c0-20220419-211309.mp4 10.0_693_gimpy-jade-panda-03da51409f17-20220417-181112.mp4\r\n10.0_2638_shabby-viridian-beaver-2548b93151c0-20220419-211807.mp4 10.0_694_gimpy-jade-panda-04367d28c5e3-20220416-165946.mp4\r\n10.0_2639_shabby-viridian-beaver-2548b93151c0-20220419-212306.mp4 10.0_695_gimpy-jade-panda-04367d28c5e3-20220416-170526.mp4\r\n10.0_263_cheeky-cornflower-setter-9e737287fa37-20220422-135431.mp4 10.0_696_gimpy-jade-panda-048fa4f471d5-20220423-153249.mp4\r\n10.0_2640_shabby-viridian-beaver-2548b93151c0-20220419-212804.mp4 10.0_697_gimpy-jade-panda-0b2e206cb266-20220423-184621.mp4\r\n10.0_2641_shabby-viridian-beaver-2548b93151c0-20220419-213302.mp4 10.0_698_gimpy-jade-panda-0b2e206cb266-20220423-185616.mp4\r\n10.0_2642_shabby-viridian-beaver-2783098a4adf-20220416-154138.mp4 10.0_699_gimpy-jade-panda-0cc6de39917b-20220417-110722.mp4\r\n10.0_2643_shabby-viridian-beaver-2783098a4adf-20220416-154636.mp4 10.0_700_gimpy-jade-panda-0cc6de39917b-20220417-111310.mp4\r\n10.0_2644_shabby-viridian-beaver-2783098a4adf-20220416-155134.mp4 10.0_701_gimpy-jade-panda-0cc6de39917b-20220417-111810.mp4\r\n10.0_2645_shabby-viridian-beaver-2783098a4adf-20220416-155632.mp4 10.0_702_gimpy-jade-panda-0cc6de39917b-20220417-112307.mp4\r\n10.0_2646_shabby-viridian-beaver-2786eaf35935-20220417-222010.mp4 10.0_703_gimpy-jade-panda-0cc6de39917b-20220417-112811.mp4\r\n10.0_2647_shabby-viridian-beaver-2786eaf35935-20220417-222508.mp4 10.0_704_gimpy-jade-panda-0d5323b592a9-20220421-215234.mp4\r\n10.0_2648_shabby-viridian-beaver-2786eaf35935-20220417-223006.mp4 10.0_705_gimpy-jade-panda-0d5323b592a9-20220421-215733.mp4\r\n10.0_2649_shabby-viridian-beaver-2786eaf35935-20220417-223504.mp4 10.0_706_gimpy-jade-panda-0de3b8e67449-20220415-155931.mp4\r\n10.0_264_cheeky-cornflower-setter-9e737287fa37-20220422-140514.mp4 10.0_707_gimpy-jade-panda-0de3b8e67449-20220415-160429.mp4\r\n10.0_2650_shabby-viridian-beaver-278d2862e73e-20220422-225640.mp4 10.0_708_gimpy-jade-panda-0de3b8e67449-20220415-160952.mp4\r\n10.0_2651_shabby-viridian-beaver-278d2862e73e-20220422-230138.mp4 10.0_709_gimpy-jade-panda-0de3b8e67449-20220415-161450.mp4\r\n10.0_2652_shabby-viridian-beaver-278d2862e73e-20220422-230637.mp4 10.0_710_gimpy-jade-panda-0de3b8e67449-20220415-161959.mp4\r\n10.0_2653_shabby-viridian-beaver-278d2862e73e-20220422-231135.mp4 10.0_711_gimpy-jade-panda-0de3b8e67449-20220415-162501.mp4\r\n10.0_2654_shabby-viridian-beaver-278d2862e73e-20220422-231633.mp4 10.0_712_gimpy-jade-panda-0de3b8e67449-20220415-162959.mp4\r\n10.0_2655_shabby-viridian-beaver-28b01cd16756-20220424-020846.mp4 10.0_713_gimpy-jade-panda-0de3b8e67449-20220415-163459.mp4\r\n10.0_2656_shabby-viridian-beaver-2a2c02f1709a-20220417-173749.mp4 10.0_714_gimpy-jade-panda-1005523505ba-20220415-080522.mp4\r\n10.0_2657_shabby-viridian-beaver-2a2c02f1709a-20220417-174247.mp4 10.0_715_gimpy-jade-panda-1005523505ba-20220415-081020.mp4\r\n10.0_2658_shabby-viridian-beaver-2a2c02f1709a-20220417-174746.mp4 10.0_716_gimpy-jade-panda-105c95b372b8-20220415-101230.mp4\r\n10.0_2659_shabby-viridian-beaver-2a2c02f1709a-20220417-175244.mp4 10.0_717_gimpy-jade-panda-105c95b372b8-20220415-101728.mp4\r\n10.0_265_cheeky-cornflower-setter-a0b3f4373131-20220414-183608.mp4 10.0_718_gimpy-jade-panda-105c95b372b8-20220415-102226.mp4\r\n10.0_2660_shabby-viridian-beaver-2a2c02f1709a-20220417-175742.mp4 10.0_719_gimpy-jade-panda-105c95b372b8-20220415-102739.mp4\r\n10.0_2661_shabby-viridian-beaver-2ea65a7f619b-20220414-230739.mp4 10.0_720_gimpy-jade-panda-1174fd3a98a7-20220417-054542.mp4\r\n10.0_2662_shabby-viridian-beaver-2ea65a7f619b-20220414-231240.mp4 10.0_721_gimpy-jade-panda-1190ce9a6d5a-20220415-120903.mp4\r\n10.0_2663_shabby-viridian-beaver-2ea65a7f619b-20220414-231739.mp4 10.0_722_gimpy-jade-panda-14d2c87c6691-20220423-064342.mp4\r\n10.0_2664_shabby-viridian-beaver-2ea65a7f619b-20220414-232237.mp4 10.0_723_gimpy-jade-panda-15c3b21eb3fb-20220416-093725.mp4\r\n10.0_2665_shabby-viridian-beaver-2fa3730da531-20220416-164321.mp4 10.0_724_gimpy-jade-panda-15c3b21eb3fb-20220416-094354.mp4\r\n10.0_2666_shabby-viridian-beaver-2fa3730da531-20220416-164819.mp4 10.0_725_gimpy-jade-panda-1648a33b9786-20220414-105451.mp4\r\n10.0_2667_shabby-viridian-beaver-2fb987a77305-20220420-164614.mp4 10.0_726_gimpy-jade-panda-1648a33b9786-20220414-105950.mp4\r\n10.0_2668_shabby-viridian-beaver-2fb987a77305-20220420-165134.mp4 10.0_727_gimpy-jade-panda-16abab15c31e-20220414-085533.mp4\r\n10.0_2669_shabby-viridian-beaver-2febec83024b-20220422-231418.mp4 10.0_728_gimpy-jade-panda-16abab15c31e-20220414-090154.mp4\r\n10.0_266_cheeky-cornflower-setter-a0b3f4373131-20220414-184116.mp4 10.0_729_gimpy-jade-panda-18b4827b22c5-20220416-233340.mp4\r\n10.0_2670_shabby-viridian-beaver-2febec83024b-20220422-231918.mp4 10.0_730_gimpy-jade-panda-18b4827b22c5-20220416-233845.mp4\r\n10.0_2671_shabby-viridian-beaver-2febec83024b-20220422-232422.mp4 10.0_731_gimpy-jade-panda-19b1044b6c4f-20220417-071354.mp4\r\n10.0_2672_shabby-viridian-beaver-2febec83024b-20220422-232920.mp4 10.0_732_gimpy-jade-panda-1af5e0d7f847-20220423-185655.mp4\r\n10.0_2673_shabby-viridian-beaver-30781ff50662-20220421-213316.mp4 10.0_733_gimpy-jade-panda-1b9aafe05bfb-20220417-090703.mp4\r\n10.0_2674_shabby-viridian-beaver-30781ff50662-20220421-213814.mp4 10.0_734_gimpy-jade-panda-1b9aafe05bfb-20220417-091437.mp4\r\n10.0_2675_shabby-viridian-beaver-30781ff50662-20220421-214312.mp4 10.0_735_gimpy-jade-panda-1dd4076be456-20220420-164128.mp4\r\n10.0_2676_shabby-viridian-beaver-30781ff50662-20220421-214811.mp4 10.0_736_gimpy-jade-panda-1fcd22d44061-20220414-005530.mp4\r\n10.0_2677_shabby-viridian-beaver-30781ff50662-20220421-215308.mp4 10.0_737_gimpy-jade-panda-22be9074ab94-20220413-203808.mp4\r\n10.0_2678_shabby-viridian-beaver-30e0571a1931-20220415-162537.mp4 10.0_738_gimpy-jade-panda-22be9074ab94-20220413-204317.mp4\r\n10.0_2679_shabby-viridian-beaver-30e0571a1931-20220415-163035.mp4 10.0_739_gimpy-jade-panda-22be9074ab94-20220413-204823.mp4\r\n10.0_267_cheeky-cornflower-setter-a0b3f4373131-20220414-184624.mp4 10.0_740_gimpy-jade-panda-2316005c9223-20220417-090218.mp4\r\n10.0_2680_shabby-viridian-beaver-30e0571a1931-20220415-163533.mp4 10.0_741_gimpy-jade-panda-2450ca19247e-20220420-164542.mp4\r\n10.0_2681_shabby-viridian-beaver-30e0571a1931-20220415-164031.mp4 10.0_742_gimpy-jade-panda-2450ca19247e-20220420-165141.mp4\r\n10.0_2682_shabby-viridian-beaver-30e0571a1931-20220415-164529.mp4 10.0_743_gimpy-jade-panda-28a4593bd88a-20220413-211416.mp4\r\n10.0_2683_shabby-viridian-beaver-313c03b4babb-20220418-224756.mp4 10.0_744_gimpy-jade-panda-28a4593bd88a-20220413-211914.mp4\r\n",,terminal_output +331,843562,"TERMINAL",0,0,"10.0_2684_shabby-viridian-beaver-313c03b4babb-20220418-225256.mp4 10.0_745_gimpy-jade-panda-292b5f14f096-20220423-102611.mp4\r\n10.0_2685_shabby-viridian-beaver-317558c84e5f-20220416-222531.mp4 10.0_746_gimpy-jade-panda-29ed977ed297-20220414-013421.mp4\r\n10.0_2686_shabby-viridian-beaver-317558c84e5f-20220416-223029.mp4 10.0_747_gimpy-jade-panda-29ed977ed297-20220414-013954.mp4\r\n10.0_2687_shabby-viridian-beaver-317558c84e5f-20220416-223527.mp4 10.0_748_gimpy-jade-panda-29f25484c76d-20220423-152157.mp4\r\n10.0_2688_shabby-viridian-beaver-317558c84e5f-20220416-224026.mp4 10.0_749_gimpy-jade-panda-29f25484c76d-20220423-152655.mp4\r\n10.0_2689_shabby-viridian-beaver-3251aec8582f-20220417-155334.mp4 10.0_750_gimpy-jade-panda-2a72b304a067-20220419-194704.mp4\r\n10.0_268_cheeky-cornflower-setter-a19edab26569-20220419-100931.mp4 10.0_751_gimpy-jade-panda-2b32b41ca7e0-20220416-231423.mp4\r\n10.0_2690_shabby-viridian-beaver-3251aec8582f-20220417-155833.mp4 10.0_752_gimpy-jade-panda-2b32b41ca7e0-20220416-231925.mp4\r\n10.0_2691_shabby-viridian-beaver-3251aec8582f-20220417-160333.mp4 10.0_753_gimpy-jade-panda-2b32b41ca7e0-20220416-232423.mp4\r\n10.0_2692_shabby-viridian-beaver-32e96bff3884-20220422-224028.mp4 10.0_754_gimpy-jade-panda-2b32b41ca7e0-20220416-232931.mp4\r\n10.0_2693_shabby-viridian-beaver-33129604f522-20220422-165926.mp4 10.0_755_gimpy-jade-panda-2b9ae08e0a63-20220417-072925.mp4\r\n10.0_2694_shabby-viridian-beaver-33129604f522-20220422-170424.mp4 10.0_756_gimpy-jade-panda-2c7ecd3b0546-20220415-022320.mp4\r\n10.0_2695_shabby-viridian-beaver-33129604f522-20220422-170923.mp4 10.0_757_gimpy-jade-panda-2c7ecd3b0546-20220415-022818.mp4\r\n10.0_2696_shabby-viridian-beaver-33129604f522-20220422-171421.mp4 10.0_758_gimpy-jade-panda-2c7ecd3b0546-20220415-023334.mp4\r\n10.0_2697_shabby-viridian-beaver-33129604f522-20220422-171919.mp4 10.0_759_gimpy-jade-panda-2df8ae708ce5-20220421-221815.mp4\r\n10.0_2698_shabby-viridian-beaver-33898e1394b9-20220419-143250.mp4 10.0_760_gimpy-jade-panda-2df8ae708ce5-20220421-222337.mp4\r\n10.0_2699_shabby-viridian-beaver-33898e1394b9-20220419-143750.mp4 10.0_761_gimpy-jade-panda-2f151ca9898d-20220417-150801.mp4\r\n10.0_269_cheeky-cornflower-setter-a19edab26569-20220419-101441.mp4 10.0_762_gimpy-jade-panda-2f151ca9898d-20220417-151304.mp4\r\n10.0_2700_shabby-viridian-beaver-33898e1394b9-20220419-144248.mp4 10.0_763_gimpy-jade-panda-2f151ca9898d-20220417-151845.mp4\r\n10.0_2701_shabby-viridian-beaver-33898e1394b9-20220419-144747.mp4 10.0_764_gimpy-jade-panda-2f92ef577db6-20220416-235629.mp4\r\n10.0_2702_shabby-viridian-beaver-33898e1394b9-20220419-145402.mp4 10.0_765_gimpy-jade-panda-34c92bb13796-20220415-095624.mp4\r\n10.0_2703_shabby-viridian-beaver-33cef7a39444-20220419-160613.mp4 10.0_766_gimpy-jade-panda-34c92bb13796-20220415-100134.mp4\r\n10.0_2704_shabby-viridian-beaver-33cef7a39444-20220419-161112.mp4 10.0_767_gimpy-jade-panda-34c92bb13796-20220415-100631.mp4\r\n10.0_2705_shabby-viridian-beaver-33cef7a39444-20220419-161612.mp4 10.0_768_gimpy-jade-panda-34c92bb13796-20220415-101133.mp4\r\n10.0_2706_shabby-viridian-beaver-33cef7a39444-20220419-162131.mp4 10.0_769_gimpy-jade-panda-354714d1afa5-20220423-110407.mp4\r\n10.0_2707_shabby-viridian-beaver-34f840a24873-20220421-190126.mp4 10.0_770_gimpy-jade-panda-354714d1afa5-20220423-111039.mp4\r\n10.0_2708_shabby-viridian-beaver-34f840a24873-20220421-190628.mp4 10.0_771_gimpy-jade-panda-36fe7903bcbd-20220416-165323.mp4\r\n10.0_2709_shabby-viridian-beaver-35a657fd6712-20220417-151847.mp4 10.0_772_gimpy-jade-panda-36fe7903bcbd-20220416-165822.mp4\r\n10.0_270_cheeky-cornflower-setter-a19edab26569-20220419-101952.mp4 10.0_773_gimpy-jade-panda-38c2205ad20e-20220415-082808.mp4\r\n10.0_2710_shabby-viridian-beaver-35a657fd6712-20220417-152346.mp4 10.0_774_gimpy-jade-panda-38c2205ad20e-20220415-083311.mp4\r\n10.0_2711_shabby-viridian-beaver-35a657fd6712-20220417-152926.mp4 10.0_775_gimpy-jade-panda-38c2205ad20e-20220415-083851.mp4\r\n10.0_2712_shabby-viridian-beaver-365069637cff-20220421-191441.mp4 10.0_776_gimpy-jade-panda-396d8ca20377-20220414-111641.mp4\r\n10.0_2713_shabby-viridian-beaver-365069637cff-20220421-191939.mp4 10.0_777_gimpy-jade-panda-396d8ca20377-20220414-112206.mp4\r\n10.0_2714_shabby-viridian-beaver-365069637cff-20220421-192437.mp4 10.0_778_gimpy-jade-panda-396d8ca20377-20220414-112748.mp4\r\n10.0_2715_shabby-viridian-beaver-365069637cff-20220421-192936.mp4 10.0_779_gimpy-jade-panda-396d8ca20377-20220414-113246.mp4\r\n10.0_2716_shabby-viridian-beaver-39186be09856-20220421-170058.mp4 10.0_780_gimpy-jade-panda-39f3a86de73d-20220416-184648.mp4\r\n10.0_2717_shabby-viridian-beaver-39186be09856-20220421-170557.mp4 10.0_781_gimpy-jade-panda-39f3a86de73d-20220416-185206.mp4\r\n10.0_2718_shabby-viridian-beaver-39186be09856-20220421-171055.mp4 10.0_782_gimpy-jade-panda-39f3a86de73d-20220416-185704.mp4\r\n10.0_2719_shabby-viridian-beaver-39186be09856-20220421-171553.mp4 10.0_783_gimpy-jade-panda-3c82abcb5b5e-20220416-112907.mp4\r\n10.0_271_cheeky-cornflower-setter-a20b52c9eeda-20220420-171746.mp4 10.0_784_gimpy-jade-panda-3c82abcb5b5e-20220416-113459.mp4\r\n10.0_2720_shabby-viridian-beaver-39186be09856-20220421-172051.mp4 10.0_785_gimpy-jade-panda-3c82abcb5b5e-20220416-113956.mp4\r\n10.0_2721_shabby-viridian-beaver-3d12f8b4a673-20220422-221341.mp4 10.0_786_gimpy-jade-panda-3cc9d5786872-20220416-185843.mp4\r\n10.0_2722_shabby-viridian-beaver-3d12f8b4a673-20220422-221840.mp4 10.0_787_gimpy-jade-panda-3cc9d5786872-20220416-190341.mp4\r\n10.0_2723_shabby-viridian-beaver-3d12f8b4a673-20220422-222338.mp4 10.0_788_gimpy-jade-panda-3d5125d55a08-20220423-071758.mp4\r\n10.0_2724_shabby-viridian-beaver-3d12f8b4a673-20220422-222836.mp4 10.0_789_gimpy-jade-panda-3d5125d55a08-20220423-072256.mp4\r\n10.0_2725_shabby-viridian-beaver-3d12f8b4a673-20220422-223334.mp4 10.0_790_gimpy-jade-panda-3d65e5581c11-20220417-143235.mp4\r\n10.0_2726_shabby-viridian-beaver-3f8524455e0d-20220415-165217.mp4 10.0_791_gimpy-jade-panda-3d65e5581c11-20220417-143819.mp4\r\n10.0_2727_shabby-viridian-beaver-3f9bf469c1a4-20220416-140506.mp4 10.0_792_gimpy-jade-panda-3d65e5581c11-20220417-144330.mp4\r\n10.0_2728_shabby-viridian-beaver-3f9bf469c1a4-20220416-141007.mp4 10.0_793_gimpy-jade-panda-3f668b9b9a16-20220417-181524.mp4\r\n10.0_2729_shabby-viridian-beaver-3f9bf469c1a4-20220416-141506.mp4 10.0_794_gimpy-jade-panda-3f668b9b9a16-20220417-182055.mp4\r\n10.0_272_cheeky-cornflower-setter-a335aa525829-20220414-181115.mp4 10.0_795_gimpy-jade-panda-3f668b9b9a16-20220417-182554.mp4\r\n10.0_2730_shabby-viridian-beaver-3f9bf469c1a4-20220416-142005.mp4 10.0_796_gimpy-jade-panda-3f6abdd58c70-20220423-142107.mp4\r\n10.0_2731_shabby-viridian-beaver-44698d3259fe-20220417-005755.mp4 10.0_797_gimpy-jade-panda-4044d74e35b0-20220423-171227.mp4\r\n10.0_2732_shabby-viridian-beaver-44698d3259fe-20220417-010254.mp4 10.0_798_gimpy-jade-panda-40c973e5020d-20220416-234624.mp4\r\n10.0_2733_shabby-viridian-beaver-44698d3259fe-20220417-010753.mp4 10.0_799_gimpy-jade-panda-40c973e5020d-20220416-235122.mp4\r\n10.0_2734_shabby-viridian-beaver-44698d3259fe-20220417-011251.mp4 10.0_800_gimpy-jade-panda-4176f36b5ef5-20220423-090734.mp4\r\n10.0_2735_shabby-viridian-beaver-44698d3259fe-20220417-011750.mp4 10.0_801_gimpy-jade-panda-4176f36b5ef5-20220423-091233.mp4\r\n10.0_2736_shabby-viridian-beaver-453655248a79-20220417-191752.mp4 10.0_802_gimpy-jade-panda-4176f36b5ef5-20220423-091731.mp4\r\n10.0_2737_shabby-viridian-beaver-453655248a79-20220417-192250.mp4 10.0_803_gimpy-jade-panda-43425d6333e5-20220421-214935.mp4\r\n10.0_2738_shabby-viridian-beaver-453655248a79-20220417-192748.mp4 10.0_804_gimpy-jade-panda-444d1bfbac90-20220423-102958.mp4\r\n10.0_2739_shabby-viridian-beaver-453655248a79-20220417-193246.mp4 10.0_805_gimpy-jade-panda-444d1bfbac90-20220423-103630.mp4\r\n10.0_273_cheeky-cornflower-setter-a335aa525829-20220414-181623.mp4 10.0_806_gimpy-jade-panda-45dec39be8a7-20220423-102039.mp4\r\n10.0_2740_shabby-viridian-beaver-45bd84a48bb5-20220421-174201.mp4 10.0_807_gimpy-jade-panda-45dec39be8a7-20220423-102539.mp4\r\n10.0_2741_shabby-viridian-beaver-45bd84a48bb5-20220421-174701.mp4 10.0_808_gimpy-jade-panda-46119a2e0f7a-20220423-064422.mp4\r\n10.0_2742_shabby-viridian-beaver-45bd84a48bb5-20220421-175159.mp4 10.0_809_gimpy-jade-panda-46b79c48f1ff-20220415-123623.mp4\r\n10.0_2743_shabby-viridian-beaver-45bd84a48bb5-20220421-175657.mp4 10.0_810_gimpy-jade-panda-46b79c48f1ff-20220415-124335.mp4\r\n10.0_2744_shabby-viridian-beaver-45bd84a48bb5-20220421-180155.mp4 10.0_811_gimpy-jade-panda-46b79c48f1ff-20220415-124832.mp4\r\n10.0_2745_shabby-viridian-beaver-46be5b66ce64-20220419-215708.mp4 10.0_812_gimpy-jade-panda-46b79c48f1ff-20220415-125330.mp4\r\n10.0_2746_shabby-viridian-beaver-46be5b66ce64-20220419-220207.mp4 10.0_813_gimpy-jade-panda-4707c99bcc91-20220414-104323.mp4\r\n10.0_2747_shabby-viridian-beaver-46be5b66ce64-20220419-220709.mp4 10.0_814_gimpy-jade-panda-4707c99bcc91-20220414-104821.mp4\r\n10.0_2748_shabby-viridian-beaver-5224882d86b5-20220421-154528.mp4 10.0_815_gimpy-jade-panda-48711222cdbe-20220415-075459.mp4\r\n10.0_2749_shabby-viridian-beaver-5224882d86b5-20220421-155028.mp4 10.0_816_gimpy-jade-panda-48eadb8bd054-20220413-205117.mp4\r\n10.0_274_cheeky-cornflower-setter-a335aa525829-20220414-182130.mp4 10.0_817_gimpy-jade-panda-48eadb8bd054-20220413-205615.mp4\r\n10.0_2750_shabby-viridian-beaver-56010f17b6b0-20220421-215515.mp4 10.0_818_gimpy-jade-panda-48eadb8bd054-20220413-210137.mp4\r\n10.0_2751_shabby-viridian-beaver-56010f17b6b0-20220421-220024.mp4 10.0_819_gimpy-jade-panda-48eadb8bd054-20220413-210635.mp4\r\n10.0_2752_shabby-viridian-beaver-56010f17b6b0-20220421-220525.mp4 10.0_820_gimpy-jade-panda-49d984b83554-20220423-064312.mp4\r\n10.0_2753_shabby-viridian-beaver-56c4987b3019-20220422-163811.mp4 10.0_821_gimpy-jade-panda-4bb35f526014-20220417-160347.mp4\r\n10.0_2754_shabby-viridian-beaver-56c4987b3019-20220422-164310.mp4 10.0_822_gimpy-jade-panda-4fc2d2a55e63-20220415-075835.mp4\r\n10.0_2755_shabby-viridian-beaver-56c4987b3019-20220422-164808.mp4 10.0_823_gimpy-jade-panda-4fe6092c9ba6-20220414-005124.mp4\r\n10.0_2756_shabby-viridian-beaver-56c4987b3019-20220422-165306.mp4 10.0_824_gimpy-jade-panda-5009c7e054ad-20220423-150419.mp4\r\n10.0_2757_shabby-viridian-beaver-56c4987b3019-20220422-165804.mp4 10.0_825_gimpy-jade-panda-5009c7e054ad-20220423-151132.mp4\r\n10.0_2758_shabby-viridian-beaver-5849c5ce0da0-20220421-223049.mp4 10.0_826_gimpy-jade-panda-5009c7e054ad-20220423-151634.mp4\r\n10.0_2759_shabby-viridian-beaver-5849c5ce0da0-20220421-223548.mp4 10.0_827_gimpy-jade-panda-50ad5de6d9e3-20220417-073734.mp4\r\n10.0_275_cheeky-cornflower-setter-a335aa525829-20220414-182637.mp4 10.0_828_gimpy-jade-panda-517f671e7d78-20220423-122106.mp4\r\n10.0_2760_shabby-viridian-beaver-5849c5ce0da0-20220421-224049.mp4 10.0_829_gimpy-jade-panda-517f671e7d78-20220423-122644.mp4\r\n10.0_2761_shabby-viridian-beaver-58819cbf914b-20220420-193028.mp4 10.0_830_gimpy-jade-panda-52c03aa94abe-20220419-222712.mp4\r\n10.0_2762_shabby-viridian-beaver-58819cbf914b-20220420-193527.mp4 10.0_831_gimpy-jade-panda-53992730c99f-20220423-153745.mp4\r\n10.0_2763_shabby-viridian-beaver-58819cbf914b-20220420-194130.mp4 10.0_832_gimpy-jade-panda-53b92c6e9dff-20220423-111241.mp4\r\n10.0_2764_shabby-viridian-beaver-5a514507e621-20220423-171326.mp4 10.0_833_gimpy-jade-panda-53b92c6e9dff-20220423-111739.mp4\r\n10.0_2765_shabby-viridian-beaver-5a514507e621-20220423-171825.mp4 10.0_834_gimpy-jade-panda-53b92c6e9dff-20220423-112238.mp4\r\n10.0_2766_shabby-viridian-beaver-5a514507e621-20220423-172325.mp4 10.0_835_gimpy-jade-panda-53b92c6e9dff-20220423-112855.mp4\r\n10.0_2767_shabby-viridian-beaver-5a514507e621-20220423-172824.mp4 10.0_836_gimpy-jade-panda-53b92c6e9dff-20220423-113354.mp4\r\n10.0_2768_shabby-viridian-beaver-5cc51fc95496-20220419-170401.mp4 10.0_837_gimpy-jade-panda-551cc4be800d-20220414-110042.mp4\r\n10.0_2769_shabby-viridian-beaver-5cc51fc95496-20220419-170859.mp4 10.0_838_gimpy-jade-panda-551cc4be800d-20220414-110648.mp4\r\n10.0_276_cheeky-cornflower-setter-a3ab4badecca-20220422-105014.mp4 10.0_839_gimpy-jade-panda-551cc4be800d-20220414-111145.mp4\r\n10.0_2770_shabby-viridian-beaver-5cc51fc95496-20220419-171357.mp4 10.0_840_gimpy-jade-panda-583d001053ae-20220414-074601.mp4\r\n10.0_2771_shabby-viridian-beaver-5cc51fc95496-20220419-171854.mp4 10.0_841_gimpy-jade-panda-583d001053ae-20220414-075059.mp4\r\n10.0_2772_shabby-viridian-beaver-5cc51fc95496-20220419-172352.mp4 10.0_842_gimpy-jade-panda-583d001053ae-20220414-075609.mp4\r\n10.0_2773_shabby-viridian-beaver-5cc74851c46e-20220420-184535.mp4 10.0_843_gimpy-jade-panda-583d001053ae-20220414-080117.mp4\r\n10.0_2774_shabby-viridian-beaver-5cc74851c46e-20220420-185034.mp4 10.0_844_gimpy-jade-panda-583d001053ae-20220414-080615.mp4\r\n10.0_2775_shabby-viridian-beaver-5cc74851c46e-20220420-185534.mp4 10.0_845_gimpy-jade-panda-5925722495d9-20220417-053701.mp4\r\n10.0_2776_shabby-viridian-beaver-5d31648d39a2-20220416-191243.mp4 10.0_846_gimpy-jade-panda-5a280944e2e0-20220415-092406.mp4\r\n10.0_2777_shabby-viridian-beaver-5d31648d39a2-20220416-191741.mp4 10.0_847_gimpy-jade-panda-5a280944e2e0-20220415-092904.mp4\r\n10.0_2778_shabby-viridian-beaver-5d31648d39a2-20220416-192240.mp4 10.0_848_gimpy-jade-panda-5a9e0e40e576-20220417-160603.mp4\r\n10.0_2779_shabby-viridian-beaver-5d31648d39a2-20220416-192738.mp4 10.0_849_gimpy-jade-panda-5a9e0e40e576-20220417-161416.mp4\r\n10.0_277_cheeky-cornflower-setter-a3ab4badecca-20220422-105948.mp4 10.0_850_gimpy-jade-panda-5cdb88ec3eb6-20220422-200611.mp4\r\n10.0_2780_shabby-viridian-beaver-5d31648d39a2-20220416-193236.mp4 10.0_851_gimpy-jade-panda-5cdb88ec3eb6-20220422-201117.mp4\r\n10.0_2781_shabby-viridian-beaver-5f4a91c6e5a3-20220419-172450.mp4 10.0_852_gimpy-jade-panda-60e44861ea5f-20220419-193805.mp4\r\n10.0_2782_shabby-viridian-beaver-5f4a91c6e5a3-20220419-172948.mp4 10.0_853_gimpy-jade-panda-60e44861ea5f-20220419-194327.mp4\r\n10.0_2783_shabby-viridian-beaver-5f4a91c6e5a3-20220419-173446.mp4 10.0_854_gimpy-jade-panda-61c081941fef-20220413-192256.mp4\r\n10.0_2784_shabby-viridian-beaver-5f4a91c6e5a3-20220419-173944.mp4 10.0_855_gimpy-jade-panda-624b4d339f5a-20220423-065150.mp4\r\n10.0_2785_shabby-viridian-beaver-5f4a91c6e5a3-20220419-174442.mp4 10.0_856_gimpy-jade-panda-624b4d339f5a-20220423-065746.mp4\r\n10.0_2786_shabby-viridian-beaver-5fce3fb68f5d-20220414-223017.mp4 10.0_857_gimpy-jade-panda-634e23eb0ca2-20220415-112645.mp4\r\n10.0_2787_shabby-viridian-beaver-5fce3fb68f5d-20220414-223516.mp4 10.0_858_gimpy-jade-panda-64400ee6eaa2-20220420-164224.mp4\r\n10.0_2788_shabby-viridian-beaver-5fce3fb68f5d-20220414-224015.mp4 10.0_859_gimpy-jade-panda-6765a47ba046-20220417-092050.mp4\r\n10.0_2789_shabby-viridian-beaver-5fce3fb68f5d-20220414-224520.mp4 10.0_860_gimpy-jade-panda-6b9fa1864620-20220417-173702.mp4\r\n10.0_278_cheeky-cornflower-setter-a3ab4badecca-20220422-110744.mp4 10.0_861_gimpy-jade-panda-6b9fa1864620-20220417-174236.mp4\r\n10.0_2790_shabby-viridian-beaver-5fce3fb68f5d-20220414-225040.mp4 10.0_862_gimpy-jade-panda-6fb175670cdc-20220420-162454.mp4\r\n10.0_2791_shabby-viridian-beaver-5fce3fb68f5d-20220414-225539.mp4 10.0_863_gimpy-jade-panda-6fb175670cdc-20220420-162953.mp4\r\n10.0_2792_shabby-viridian-beaver-5fce3fb68f5d-20220414-230039.mp4 10.0_864_gimpy-jade-panda-7025fb9451ee-20220423-064408.mp4\r\n10.0_2793_shabby-viridian-beaver-5fce3fb68f5d-20220414-230538.mp4 10.0_865_gimpy-jade-panda-709f153dd52d-20220423-142601.mp4\r\n10.0_2794_shabby-viridian-beaver-600a38731038-20220416-181221.mp4 10.0_866_gimpy-jade-panda-73a2f6d4ede0-20220421-214549.mp4\r\n10.0_2795_shabby-viridian-beaver-600a38731038-20220416-181720.mp4 10.0_867_gimpy-jade-panda-7769c38aa432-20220416-184236.mp4\r\n10.0_2796_shabby-viridian-beaver-600a38731038-20220416-182219.mp4 10.0_868_gimpy-jade-panda-7af0243f5bc3-20220415-122510.mp4\r\n10.0_2797_shabby-viridian-beaver-65cce62e9db2-20220421-162659.mp4 10.0_869_gimpy-jade-panda-7af0aefdafb4-20220416-190704.mp4\r\n10.0_2798_shabby-viridian-beaver-65cce62e9db2-20220421-163157.mp4 10.0_870_gimpy-jade-panda-7af0aefdafb4-20220416-191202.mp4\r\n10.0_2799_shabby-viridian-beaver-65cce62e9db2-20220421-163656.mp4 10.0_871_gimpy-jade-panda-7af0aefdafb4-20220416-191707.mp4\r\n10.0_279_cheeky-cornflower-setter-a49ea31e5516-20220422-123446.mp4 10.0_872_gimpy-jade-panda-7bfea912cb75-20220414-012703.mp4\r\n10.0_2800_shabby-viridian-beaver-65cce62e9db2-20220421-164154.mp4 10.0_873_gimpy-jade-panda-7bfea912cb75-20220414-013209.mp4\r\n10.0_2801_shabby-viridian-beaver-66da9afd47dd-20220419-161001.mp4 10.0_874_gimpy-jade-panda-8332d832c099-20220413-211200.mp4\r\n10.0_2802_shabby-viridian-beaver-66da9afd47dd-20220419-161459.mp4 10.0_875_gimpy-jade-panda-83db28acd905-20220415-080032.mp4\r\n10.0_2803_shabby-viridian-beaver-66da9afd47dd-20220419-161956.mp4 10.0_876_gimpy-jade-panda-8407d37505b6-20220419-221503.mp4\r\n10.0_2804_shabby-viridian-beaver-66da9afd47dd-20220419-162454.mp4 10.0_877_gimpy-jade-panda-874b1340cd87-20220420-165547.mp4\r\n10.0_2805_shabby-viridian-beaver-66da9afd47dd-20220419-162952.mp4 10.0_878_gimpy-jade-panda-874b1340cd87-20220420-170048.mp4\r\n10.0_2806_shabby-viridian-beaver-67a3970f7a21-20220420-185947.mp4 10.0_879_gimpy-jade-panda-874b1340cd87-20220420-170551.mp4\r\n10.0_2807_shabby-viridian-beaver-67a3970f7a21-20220420-190446.mp4 10.0_880_gimpy-jade-panda-88f1250b727f-20220421-222524.mp4\r\n10.0_2808_shabby-viridian-beaver-67a3970f7a21-20220420-191001.mp4 10.0_881_gimpy-jade-panda-8ace72ac5cba-20220415-074412.mp4\r\n10.0_2809_shabby-viridian-beaver-69981936957f-20220420-165513.mp4 10.0_882_gimpy-jade-panda-8ace72ac5cba-20220415-075006.mp4\r\n10.0_280_cheeky-cornflower-setter-a49ea31e5516-20220422-124426.mp4 10.0_883_gimpy-jade-panda-982a1b292859-20220416-212916.mp4\r\n10.0_2810_shabby-viridian-beaver-69981936957f-20220420-170013.mp4 10.0_884_gimpy-jade-panda-982a1b292859-20220416-213540.mp4\r\n10.0_2811_shabby-viridian-beaver-69981936957f-20220420-170512.mp4 10.0_885_gimpy-jade-panda-982a1b292859-20220416-214038.mp4\r\n10.0_2812_shabby-viridian-beaver-69981936957f-20220420-171011.mp4 10.0_886_gimpy-jade-panda-982a1b292859-20220416-214536.mp4\r\n10.0_2813_shabby-viridian-beaver-69981936957f-20220420-171511.mp4 10.0_887_gimpy-jade-panda-994e1498277f-20220416-111243.mp4\r\n10.0_2814_shabby-viridian-beaver-6a733578ad80-20220422-212356.mp4 10.0_888_gimpy-jade-panda-99eeca393629-20220417-140144.mp4\r\n10.0_2815_shabby-viridian-beaver-6a733578ad80-20220422-212904.mp4 10.0_889_gimpy-jade-panda-99eeca393629-20220417-140807.mp4\r\n10.0_2816_shabby-viridian-beaver-6aabd574896a-20220416-151907.mp4 10.0_890_gimpy-jade-panda-99eeca393629-20220417-141305.mp4\r\n10.0_2817_shabby-viridian-beaver-6aabd574896a-20220416-152406.mp4 10.0_891_gimpy-jade-panda-9a0aee73c714-20220420-171212.mp4\r\n10.0_2818_shabby-viridian-beaver-6aabd574896a-20220416-152904.mp4 10.0_892_gimpy-jade-panda-9a0aee73c714-20220420-171715.mp4\r\n10.0_2819_shabby-viridian-beaver-6aabd574896a-20220416-153402.mp4 10.0_893_gimpy-jade-panda-9a5ea79449fe-20220420-192352.mp4\r\n10.0_281_cheeky-cornflower-setter-a49ea31e5516-20220422-125300.mp4 10.0_894_gimpy-jade-panda-9a5ea79449fe-20220420-192851.mp4\r\n10.0_2820_shabby-viridian-beaver-6aabd574896a-20220416-153900.mp4 10.0_895_gimpy-jade-panda-9ad90fd67bb1-20220417-073453.mp4\r\n10.0_2821_shabby-viridian-beaver-6b05178ea9d0-20220419-182534.mp4 10.0_896_gimpy-jade-panda-9c1d7174e84a-20220423-164654.mp4\r\n10.0_2822_shabby-viridian-beaver-6b05178ea9d0-20220419-183049.mp4 10.0_897_gimpy-jade-panda-9c1d7174e84a-20220423-165208.mp4\r\n10.0_2823_shabby-viridian-beaver-6b05178ea9d0-20220419-183550.mp4 10.0_898_gimpy-jade-panda-9c1d7174e84a-20220423-165803.mp4\r\n10.0_2824_shabby-viridian-beaver-6b05178ea9d0-20220419-184049.mp4 10.0_899_gimpy-jade-panda-9c1d7174e84a-20220423-170340.mp4\r\n10.0_2825_shabby-viridian-beaver-6b05178ea9d0-20220419-184548.mp4 10.0_900_gimpy-jade-panda-9c1d7174e84a-20220423-170850.mp4\r\n10.0_2826_shabby-viridian-beaver-6d0ceadffbfe-20220423-000115.mp4 10.0_901_gimpy-jade-panda-9c1ef0a42554-20220414-072119.mp4\r\n10.0_2827_shabby-viridian-beaver-6d0ceadffbfe-20220423-000614.mp4 10.0_902_gimpy-jade-panda-9c1ef0a42554-20220414-072658.mp4\r\n10.0_2828_shabby-viridian-beaver-6d0ceadffbfe-20220423-001114.mp4 10.0_903_gimpy-jade-panda-9f7716f9ed97-20220421-220310.mp4\r\n10.0_2829_shabby-viridian-beaver-6d0ceadffbfe-20220423-001614.mp4 10.0_904_gimpy-jade-panda-9f7716f9ed97-20220421-220922.mp4\r\n10.0_282_cheeky-cornflower-setter-a63451666f1e-20220418-132827.mp4 10.0_905_gimpy-jade-panda-9f7716f9ed97-20220421-221419.mp4\r\n10.0_2830_shabby-viridian-beaver-6d2a20590c23-20220422-181009.mp4 10.0_906_gimpy-jade-panda-a1bd1367c34b-20220419-221641.mp4\r\n10.0_2831_shabby-viridian-beaver-6d2a20590c23-20220422-181509.mp4 10.0_907_gimpy-jade-panda-a1bd1367c34b-20220419-222313.mp4\r\n10.0_2832_shabby-viridian-beaver-6ed094e5ba41-20220422-234920.mp4 10.0_908_gimpy-jade-panda-a24a1eca0b07-20220423-141648.mp4\r\n10.0_2833_shabby-viridian-beaver-6ed094e5ba41-20220422-235419.mp4 10.0_909_gimpy-jade-panda-a6a2fe256fa2-20220414-080629.mp4\r\n10.0_2834_shabby-viridian-beaver-6ed094e5ba41-20220422-235918.mp4 10.0_910_gimpy-jade-panda-a6a2fe256fa2-20220414-081311.mp4\r\n10.0_2835_shabby-viridian-beaver-6fd9a085e22b-20220417-220952.mp4 10.0_911_gimpy-jade-panda-a7bcad415154-20220416-182435.mp4\r\n10.0_2836_shabby-viridian-beaver-6fd9a085e22b-20220417-221450.mp4 10.0_912_gimpy-jade-panda-a7bcad415154-20220416-183018.mp4\r\n10.0_2837_shabby-viridian-beaver-70748cfc0d0b-20220419-234316.mp4 10.0_913_gimpy-jade-panda-a86b71bd16cf-20220417-103446.mp4\r\n10.0_2838_shabby-viridian-beaver-70748cfc0d0b-20220419-234816.mp4 10.0_914_gimpy-jade-panda-a86b71bd16cf-20220417-103944.mp4\r\n10.0_2839_shabby-viridian-beaver-724faeb8b5b5-20220419-145842.mp4 10.0_915_gimpy-jade-panda-a9b5409dfd7f-20220417-091848.mp4\r\n10.0_283_cheeky-cornflower-setter-a7571f853c8f-20220420-202416.mp4 10.0_916_gimpy-jade-panda-acc12bb04f6e-20220415-091407.mp4\r\n10.0_2840_shabby-viridian-beaver-724faeb8b5b5-20220419-150341.mp4 10.0_917_gimpy-jade-panda-ad42297df017-20220423-124152.mp4\r\n10.0_2841_shabby-viridian-beaver-724faeb8b5b5-20220419-150841.mp4 10.0_918_gimpy-jade-panda-ae29c6226078-20220417-145135.mp4\r\n10.0_2842_shabby-viridian-beaver-72aef1020fc9-20220415-113120.mp4 10.0_919_gimpy-jade-panda-ae29c6226078-20220417-145934.mp4\r\n10.0_2843_shabby-viridian-beaver-72aef1020fc9-20220415-113619.mp4 10.0_920_gimpy-jade-panda-ae8240d9992e-20220417-150457.mp4\r\n10.0_2844_shabby-viridian-beaver-72aef1020fc9-20220415-114119.mp4 10.0_921_gimpy-jade-panda-aeaefe6fc5d0-20220420-163521.mp4\r\n10.0_2845_shabby-viridian-beaver-72aef1020fc9-20220415-114619.mp4 10.0_922_gimpy-jade-panda-aeaefe6fc5d0-20220420-164020.mp4\r\n10.0_2846_shabby-viridian-beaver-78738be124cf-20220417-013836.mp4 10.0_923_gimpy-jade-panda-b1da62559f57-20220417-141730.mp4\r\n10.0_2847_shabby-viridian-beaver-78738be124cf-20220417-014335.mp4 10.0_924_gimpy-jade-panda-b1da62559f57-20220417-142228.mp4\r\n10.0_2848_shabby-viridian-beaver-78738be124cf-20220417-014834.mp4 10.0_925_gimpy-jade-panda-b1da62559f57-20220417-142726.mp4\r\n10.0_2849_shabby-viridian-beaver-794480f587de-20220421-140725.mp4 10.0_926_gimpy-jade-panda-b94b52171160-20220414-011136.mp4\r\n10.0_284_cheeky-cornflower-setter-a7571f853c8f-20220420-202925.mp4 10.0_927_gimpy-jade-panda-b94b52171160-20220414-011637.mp4\r\n10.0_2850_shabby-viridian-beaver-794480f587de-20220421-141225.mp4 10.0_928_gimpy-jade-panda-b94b52171160-20220414-012134.mp4\r\n10.0_2851_shabby-viridian-beaver-794480f587de-20220421-141725.mp4 10.0_929_gimpy-jade-panda-ba4b263cb71d-20220423-064822.mp4\r\n10.0_2852_shabby-viridian-beaver-794480f587de-20220421-142224.mp4 10.0_930_gimpy-jade-panda-bc2468269e7a-20220414-014218.mp4\r\n10.0_2853_shabby-viridian-beaver-794480f587de-20220421-142724.mp4 10.0_931_gimpy-jade-panda-bc51b54e4bd9-20220423-141950.mp4\r\n10.0_2854_shabby-viridian-beaver-7b8110d5fb42-20220416-170015.mp4 10.0_932_gimpy-jade-panda-be858e866099-20220417-073000.mp4\r\n10.0_2855_shabby-viridian-beaver-7c3db9b98148-20220422-215714.mp4 10.0_933_gimpy-jade-panda-c26bdf5694e0-20220423-104211.mp4\r\n10.0_2856_shabby-viridian-beaver-7c3db9b98148-20220422-220213.mp4 10.0_934_gimpy-jade-panda-c26bdf5694e0-20220423-104709.mp4\r\n10.0_2857_shabby-viridian-beaver-8193dee5e77b-20220421-003515.mp4 10.0_935_gimpy-jade-panda-c28e2f3fa90e-20220423-145740.mp4\r\n10.0_2858_shabby-viridian-beaver-8193dee5e77b-20220421-004027.mp4 10.0_936_gimpy-jade-panda-c28e2f3fa90e-20220423-150240.mp4\r\n10.0_2859_shabby-viridian-beaver-8193dee5e77b-20220421-004525.mp4 10.0_937_gimpy-jade-panda-c37fd220ebaa-20220422-201210.mp4\r\n10.0_285_cheeky-cornflower-setter-a7571f853c8f-20220420-203433.mp4 10.0_938_gimpy-jade-panda-c37fd220ebaa-20220422-201714.mp4\r\n10.0_2860_shabby-viridian-beaver-8193dee5e77b-20220421-005025.mp4 10.0_939_gimpy-jade-panda-c37fd220ebaa-20220422-202211.mp4\r\n10.0_2861_shabby-viridian-beaver-84e001edfb5a-20220417-164902.mp4 10.0_940_gimpy-jade-panda-c3f440ba3b68-20220417-104802.mp4\r\n10.0_2862_shabby-viridian-beaver-87267f247bfe-20220421-002011.mp4 10.0_941_gimpy-jade-panda-c3f440ba3b68-20220417-105415.mp4\r\n10.0_2863_shabby-viridian-beaver-87267f247bfe-20220421-002515.mp4 10.0_942_gimpy-jade-panda-c3f440ba3b68-20220417-105913.mp4\r\n10.0_2864_shabby-viridian-beaver-87267f247bfe-20220421-003015.mp4 10.0_943_gimpy-jade-panda-c4416bcf7225-20220417-173012.mp4\r\n10.0_2865_shabby-viridian-beaver-875598743525-20220418-221333.mp4 10.0_944_gimpy-jade-panda-c4416bcf7225-20220417-173542.mp4\r\n10.0_2866_shabby-viridian-beaver-875598743525-20220418-222605.mp4 10.0_945_gimpy-jade-panda-c5b1450c7ddf-20220420-192907.mp4\r\n10.0_2867_shabby-viridian-beaver-87c7646beda6-20220417-175844.mp4 10.0_946_gimpy-jade-panda-c5b1450c7ddf-20220420-193449.mp4\r\n10.0_2868_shabby-viridian-beaver-87c7646beda6-20220417-180343.mp4 10.0_947_gimpy-jade-panda-c5b1450c7ddf-20220420-194000.mp4\r\n10.0_2869_shabby-viridian-beaver-880b1c1bf1d3-20220421-151005.mp4 10.0_948_gimpy-jade-panda-c8f324ffbd87-20220416-111640.mp4\r\n10.0_286_cheeky-cornflower-setter-a7571f853c8f-20220420-203946.mp4 10.0_949_gimpy-jade-panda-ca5670ec86d6-20220413-212127.mp4\r\n10.0_2870_shabby-viridian-beaver-880b1c1bf1d3-20220421-151513.mp4 10.0_950_gimpy-jade-panda-ca5670ec86d6-20220413-212626.mp4\r\n10.0_2871_shabby-viridian-beaver-880b1c1bf1d3-20220421-152013.mp4 10.0_951_gimpy-jade-panda-cc93773b2df7-20220417-170844.mp4\r\n10.0_2872_shabby-viridian-beaver-880b1c1bf1d3-20220421-152517.mp4 10.0_952_gimpy-jade-panda-cc93773b2df7-20220417-171342.mp4\r\n10.0_2873_shabby-viridian-beaver-89912b58f5a5-20220416-165104.mp4 10.0_953_gimpy-jade-panda-cfa10c78a474-20220417-172330.mp4\r\n10.0_2874_shabby-viridian-beaver-89912b58f5a5-20220416-165603.mp4 10.0_954_gimpy-jade-panda-cfa10c78a474-20220417-172828.mp4\r\n10.0_2875_shabby-viridian-beaver-89912b58f5a5-20220416-170605.mp4 10.0_955_gimpy-jade-panda-d00852ea6331-20220415-023723.mp4\r\n10.0_2876_shabby-viridian-beaver-8a224cb88f19-20220416-220320.mp4 10.0_956_gimpy-jade-panda-d00852ea6331-20220415-024221.mp4\r\n10.0_2877_shabby-viridian-beaver-8a224cb88f19-20220416-220819.mp4 10.0_957_gimpy-jade-panda-d00852ea6331-20220415-024719.mp4\r\n10.0_2878_shabby-viridian-beaver-8ccefe134a1f-20220417-165320.mp4 10.0_958_gimpy-jade-panda-d24ca3eac9a7-20220415-121408.mp4\r\n10.0_2879_shabby-viridian-beaver-8ccefe134a1f-20220417-165819.mp4 10.0_959_gimpy-jade-panda-d24ca3eac9a7-20220415-122042.mp4\r\n10.0_287_cheeky-cornflower-setter-a8271ffc905a-20220419-114130.mp4 10.0_960_gimpy-jade-panda-d259f95d63f4-20220417-072842.mp4\r\n10.0_2880_shabby-viridian-beaver-8ccefe134a1f-20220417-170317.mp4 10.0_961_gimpy-jade-panda-d3e1dcd9c2be-20220416-070014.mp4\r\n10.0_2881_shabby-viridian-beaver-8ccefe134a1f-20220417-170815.mp4 10.0_962_gimpy-jade-panda-d3e1dcd9c2be-20220416-070523.mp4\r\n10.0_2882_shabby-viridian-beaver-8ccefe134a1f-20220417-171313.mp4 10.0_963_gimpy-jade-panda-d3e1dcd9c2be-20220416-071043.mp4\r\n10.0_2883_shabby-viridian-beaver-8e148bcbdae4-20220421-221029.mp4 10.0_964_gimpy-jade-panda-d3e1dcd9c2be-20220416-071613.mp4\r\n10.0_2884_shabby-viridian-beaver-8e148bcbdae4-20220421-221529.mp4 10.0_965_gimpy-jade-panda-d3e1dcd9c2be-20220416-072144.mp4\r\n10.0_2885_shabby-viridian-beaver-8e148bcbdae4-20220421-222028.mp4 10.0_966_gimpy-jade-panda-d43db865d5f4-20220423-184539.mp4\r\n10.0_2886_shabby-viridian-beaver-8e148bcbdae4-20220421-222527.mp4 10.0_967_gimpy-jade-panda-d6a25bfbaafa-20220415-032640.mp4\r\n10.0_2887_shabby-viridian-beaver-8e148bcbdae4-20220421-223028.mp4 10.0_968_gimpy-jade-panda-d6a25bfbaafa-20220415-033138.mp4\r\n10.0_2888_shabby-viridian-beaver-8e8e9f3227dd-20220416-162256.mp4 10.0_969_gimpy-jade-panda-d6a25bfbaafa-20220415-033644.mp4\r\n10.0_2889_shabby-viridian-beaver-8e8e9f3227dd-20220416-162755.mp4 10.0_970_gimpy-jade-panda-d6a25bfbaafa-20220415-034142.mp4\r\n10.0_288_cheeky-cornflower-setter-a8fa0b8f8c02-20220421-002126.mp4 10.0_971_gimpy-jade-panda-d6a25bfbaafa-20220415-034733.mp4\r\n10.0_2890_shabby-viridian-beaver-8e8e9f3227dd-20220416-163253.mp4 10.0_972_gimpy-jade-panda-d6d6ef1d9ac2-20220414-073740.mp4\r\n10.0_2891_shabby-viridian-beaver-8e8e9f3227dd-20220416-163751.mp4 10.0_973_gimpy-jade-panda-d6d6ef1d9ac2-20220414-074253.mp4\r\n10.0_2892_shabby-viridian-beaver-8e8e9f3227dd-20220416-164249.mp4 10.0_974_gimpy-jade-panda-d78027a39214-20220415-113449.mp4\r\n10.0_2893_shabby-viridian-beaver-8f4f4f030ab3-20220417-225848.mp4 10.0_975_gimpy-jade-panda-d78027a39214-20220415-114132.mp4\r\n10.0_2894_shabby-viridian-beaver-8f4f4f030ab3-20220417-230847.mp4 10.0_976_gimpy-jade-panda-d78027a39214-20220415-114646.mp4\r\n10.0_2895_shabby-viridian-beaver-90117de50fa9-20220417-153308.mp4 10.0_977_gimpy-jade-panda-d78027a39214-20220415-115143.mp4\r\n10.0_2896_shabby-viridian-beaver-90117de50fa9-20220417-153809.mp4 10.0_978_gimpy-jade-panda-d7c9e6fae62c-20220417-053716.mp4\r\n10.0_2897_shabby-viridian-beaver-90117de50fa9-20220417-154309.mp4 10.0_979_gimpy-jade-panda-d7c9e6fae62c-20220417-054249.mp4\r\n10.0_2898_shabby-viridian-beaver-90117de50fa9-20220417-154808.mp4 10.0_980_gimpy-jade-panda-d7e153c09b1e-20220415-024944.mp4\r\n10.0_2899_shabby-viridian-beaver-90117de50fa9-20220417-155307.mp4 10.0_981_gimpy-jade-panda-d7e153c09b1e-20220415-025445.mp4\r\n10.0_289_cheeky-cornflower-setter-a8fa0b8f8c02-20220421-002650.mp4 10.0_982_gimpy-jade-panda-d7e153c09b1e-20220415-025943.mp4\r\n10.0_2900_shabby-viridian-beaver-922bac605e0c-20220419-172533.mp4 10.0_983_gimpy-jade-panda-d8a70472af9d-20220423-063825.mp4\r\n10.0_2901_shabby-viridian-beaver-922bac605e0c-20220419-173032.mp4 10.0_984_gimpy-jade-panda-dbdef3a9b225-20220414-084435.mp4\r\n10.0_2902_shabby-viridian-beaver-92ea1f7fac67-20220419-182607.mp4 10.0_985_gimpy-jade-panda-dbdef3a9b225-20220414-085033.mp4\r\n10.0_2903_shabby-viridian-beaver-92ea1f7fac67-20220419-183106.mp4 10.0_986_gimpy-jade-panda-dc5e2f25e189-20220415-112757.mp4\r\n10.0_2904_shabby-viridian-beaver-92ea1f7fac67-20220419-183604.mp4 10.0_987_gimpy-jade-panda-dc5e2f25e189-20220415-113318.mp4\r\n10.0_2905_shabby-viridian-beaver-92ea1f7fac67-20220419-184102.mp4 10.0_988_gimpy-jade-panda-de9869db1b2f-20220417-173604.mp4\r\n10.0_2906_shabby-viridian-beaver-92ea1f7fac67-20220419-184600.mp4 10.0_989_gimpy-jade-panda-e035a5cce677-20220423-063107.mp4\r\n10.0_2907_shabby-viridian-beaver-95640076154f-20220417-164831.mp4 10.0_990_gimpy-jade-panda-e0b67b54a735-20220415-030629.mp4\r\n10.0_2908_shabby-viridian-beaver-963a26af1dc8-20220421-155719.mp4 10.0_991_gimpy-jade-panda-e0b67b54a735-20220415-031128.mp4\r\n10.0_2909_shabby-viridian-beaver-963a26af1dc8-20220421-160217.mp4 10.0_992_gimpy-jade-panda-e0b67b54a735-20220415-031626.mp4\r\n10.0_290_cheeky-cornflower-setter-a8fa0b8f8c02-20220421-003158.mp4 10.0_993_gimpy-jade-panda-e0b67b54a735-20220415-032153.mp4\r\n10.0_2910_shabby-viridian-beaver-9711530cff81-20220416-182526.mp4 10.0_994_gimpy-jade-panda-e253133fe0ff-20220417-073425.mp4\r\n10.0_2911_shabby-viridian-beaver-9711530cff81-20220416-183025.mp4 10.0_995_gimpy-jade-panda-e3e9009213ad-20220415-080233.mp4\r\n10.0_2912_shabby-viridian-beaver-9711530cff81-20220416-183524.mp4 10.0_996_gimpy-jade-panda-e4c8446a5972-20220415-122650.mp4\r\n10.0_2913_shabby-viridian-beaver-9711530cff81-20220416-184024.mp4 10.0_997_gimpy-jade-panda-e4c8446a5972-20220415-123149.mp4\r\n10.0_2914_shabby-viridian-beaver-97336475120d-20220418-215857.mp4 10.0_998_gimpy-jade-panda-e58168182a84-20220423-105535.mp4\r\n10.0_2915_shabby-viridian-beaver-97336475120d-20220418-220856.mp4 10.0_999_gimpy-jade-panda-e58168182a84-20220423-110112.mp4\r\n10.0_2916_shabby-viridian-beaver-97c2e1ab4d7c-20220417-164751.mp4 checkpoints\r\n10.0_2917_shabby-viridian-beaver-980970f2f31f-20220421-005539.mp4 data\r\n10.0_2918_shabby-viridian-beaver-980970f2f31f-20220421-010123.mp4 logs\r\n10.0_2919_shabby-viridian-beaver-980970f2f31f-20220421-010623.mp4 scripts\r\n10.0_291_cheeky-cornflower-setter-a8fa0b8f8c02-20220421-003707.mp4\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +332,862146,"TERMINAL",0,0,"tmux",,terminal_focus +333,868120,"TERMINAL",0,0,"ls",,terminal_command +334,868350,"TERMINAL",0,0,"]633;E;2025-06-24 16:09:14 ls;3588c04d-0da0-40eb-9980-9a3b4883c9d8]633;C10.0_001_cheeky-cornflower-setter-02e496ce4abb-20220421-092639.mp4 10.0_2920_shabby-viridian-beaver-980970f2f31f-20220421-011128.mp4\r\n10.0_002_cheeky-cornflower-setter-02e496ce4abb-20220421-093149.mp4 10.0_2921_shabby-viridian-beaver-9891c74371a7-20220421-022323.mp4\r\n10.0_003_cheeky-cornflower-setter-032f4eb01e68-20220418-125807.mp4 10.0_2922_shabby-viridian-beaver-9914271526d5-20220416-173531.mp4\r\n10.0_004_cheeky-cornflower-setter-032f4eb01e68-20220418-130337.mp4 10.0_2923_shabby-viridian-beaver-9914271526d5-20220416-174032.mp4\r\n10.0_005_cheeky-cornflower-setter-054834d1b04a-20220419-154302.mp4 10.0_2924_shabby-viridian-beaver-9914271526d5-20220416-174534.mp4\r\n10.0_006_cheeky-cornflower-setter-0a5ba522405b-20220422-133010.mp4 10.0_2925_shabby-viridian-beaver-9914271526d5-20220416-175034.mp4\r\n10.0_007_cheeky-cornflower-setter-0a5ba522405b-20220422-134025.mp4 10.0_2926_shabby-viridian-beaver-9914271526d5-20220416-175534.mp4\r\n10.0_008_cheeky-cornflower-setter-0a5ba522405b-20220422-134954.mp4 10.0_2927_shabby-viridian-beaver-9ba9cade00b5-20220422-181714.mp4\r\n10.0_009_cheeky-cornflower-setter-0ac982de1b70-20220420-180354.mp4 10.0_2928_shabby-viridian-beaver-9ca372a90269-20220423-173314.mp4\r\n10.0_010_cheeky-cornflower-setter-0ada408c4d80-20220422-191527.mp4 10.0_2929_shabby-viridian-beaver-9ca372a90269-20220423-173814.mp4\r\n10.0_011_cheeky-cornflower-setter-0ada408c4d80-20220422-192043.mp4 10.0_292_cheeky-cornflower-setter-a9389e9fbaa7-20220415-114933.mp4\r\n10.0_012_cheeky-cornflower-setter-0ada408c4d80-20220422-192548.mp4 10.0_2930_shabby-viridian-beaver-9ca372a90269-20220423-174330.mp4\r\n10.0_013_cheeky-cornflower-setter-0af0903eb6f4-20220415-183319.mp4 10.0_2931_shabby-viridian-beaver-9ca372a90269-20220423-174836.mp4\r\n10.0_014_cheeky-cornflower-setter-0af0903eb6f4-20220415-183830.mp4 10.0_2932_shabby-viridian-beaver-9d77e3241a80-20220414-212622.mp4\r\n10.0_015_cheeky-cornflower-setter-0af0903eb6f4-20220415-184336.mp4 10.0_2933_shabby-viridian-beaver-9d77e3241a80-20220414-213125.mp4\r\n10.0_016_cheeky-cornflower-setter-0af0903eb6f4-20220415-184840.mp4 10.0_2934_shabby-viridian-beaver-9d77e3241a80-20220414-213624.mp4\r\n10.0_017_cheeky-cornflower-setter-127b15c845d8-20220423-192214.mp4 10.0_2935_shabby-viridian-beaver-9d77e3241a80-20220414-214125.mp4\r\n10.0_018_cheeky-cornflower-setter-127b15c845d8-20220423-193357.mp4 10.0_2936_shabby-viridian-beaver-9d77e3241a80-20220414-214623.mp4\r\n10.0_019_cheeky-cornflower-setter-12c743997864-20220421-094401.mp4 10.0_2937_shabby-viridian-beaver-9f85154d3756-20220414-232758.mp4\r\n10.0_020_cheeky-cornflower-setter-12c743997864-20220421-094915.mp4 10.0_2938_shabby-viridian-beaver-9f89fe9f64dc-20220416-164732.mp4\r\n10.0_021_cheeky-cornflower-setter-12c743997864-20220421-095421.mp4 10.0_2939_shabby-viridian-beaver-a13b46374df6-20220416-201436.mp4\r\n10.0_022_cheeky-cornflower-setter-12c743997864-20220421-095927.mp4 10.0_293_cheeky-cornflower-setter-a9389e9fbaa7-20220415-115450.mp4\r\n10.0_023_cheeky-cornflower-setter-16ba410524b0-20220422-164119.mp4 10.0_2940_shabby-viridian-beaver-a13b46374df6-20220416-201938.mp4\r\n10.0_024_cheeky-cornflower-setter-16ba410524b0-20220422-164627.mp4 10.0_2941_shabby-viridian-beaver-a5507780a678-20220419-154939.mp4\r\n10.0_025_cheeky-cornflower-setter-176978c155fd-20220423-170106.mp4 10.0_2942_shabby-viridian-beaver-a5507780a678-20220419-155437.mp4\r\n10.0_026_cheeky-cornflower-setter-176978c155fd-20220423-170615.mp4 10.0_2943_shabby-viridian-beaver-a5507780a678-20220419-155936.mp4\r\n10.0_027_cheeky-cornflower-setter-176978c155fd-20220423-171127.mp4 10.0_2944_shabby-viridian-beaver-a5507780a678-20220419-160434.mp4\r\n10.0_028_cheeky-cornflower-setter-176978c155fd-20220423-171635.mp4 10.0_2945_shabby-viridian-beaver-a7083c83103d-20220416-145844.mp4\r\n10.0_029_cheeky-cornflower-setter-17827639bd19-20220421-171653.mp4 10.0_2946_shabby-viridian-beaver-a7083c83103d-20220416-150343.mp4\r\n10.0_030_cheeky-cornflower-setter-17827639bd19-20220421-172815.mp4 10.0_2947_shabby-viridian-beaver-a7083c83103d-20220416-150841.mp4\r\n10.0_031_cheeky-cornflower-setter-181b0454f4f4-20220414-130924.mp4 10.0_2948_shabby-viridian-beaver-a7083c83103d-20220416-151339.mp4\r\n10.0_032_cheeky-cornflower-setter-181b0454f4f4-20220414-131435.mp4 10.0_2949_shabby-viridian-beaver-a7083c83103d-20220416-151837.mp4\r\n10.0_033_cheeky-cornflower-setter-181b0454f4f4-20220414-132008.mp4 10.0_294_cheeky-cornflower-setter-a9389e9fbaa7-20220415-120002.mp4\r\n10.0_034_cheeky-cornflower-setter-1931b8e22571-20220415-175444.mp4 10.0_2950_shabby-viridian-beaver-a984fb2faaba-20220422-172302.mp4\r\n10.0_035_cheeky-cornflower-setter-1931b8e22571-20220415-175952.mp4 10.0_2951_shabby-viridian-beaver-a984fb2faaba-20220422-172800.mp4\r\n10.0_036_cheeky-cornflower-setter-1931b8e22571-20220415-180459.mp4 10.0_2952_shabby-viridian-beaver-a984fb2faaba-20220422-173258.mp4\r\n10.0_037_cheeky-cornflower-setter-1931b8e22571-20220415-181006.mp4 10.0_2953_shabby-viridian-beaver-a984fb2faaba-20220422-173756.mp4\r\n10.0_038_cheeky-cornflower-setter-197c48bc8410-20220418-202601.mp4 10.0_2954_shabby-viridian-beaver-a984fb2faaba-20220422-174254.mp4\r\n10.0_039_cheeky-cornflower-setter-197c48bc8410-20220418-203109.mp4 10.0_2955_shabby-viridian-beaver-ab3623c51ba5-20220421-234228.mp4\r\n10.0_040_cheeky-cornflower-setter-197c48bc8410-20220418-203615.mp4 10.0_2956_shabby-viridian-beaver-ab3623c51ba5-20220421-234727.mp4\r\n10.0_041_cheeky-cornflower-setter-197c48bc8410-20220418-204120.mp4 10.0_2957_shabby-viridian-beaver-ab3623c51ba5-20220421-235226.mp4\r\n10.0_042_cheeky-cornflower-setter-1d6469cf1ed4-20220421-150148.mp4 10.0_2958_shabby-viridian-beaver-aed0f89b8e7b-20220421-133225.mp4\r\n10.0_043_cheeky-cornflower-setter-1d6469cf1ed4-20220421-151142.mp4 10.0_2959_shabby-viridian-beaver-aed0f89b8e7b-20220421-133725.mp4\r\n10.0_044_cheeky-cornflower-setter-1d6469cf1ed4-20220421-152035.mp4 10.0_295_cheeky-cornflower-setter-a96ba7af6501-20220415-130410.mp4\r\n10.0_045_cheeky-cornflower-setter-1e6d6a927704-20220421-222712.mp4 10.0_2960_shabby-viridian-beaver-aed0f89b8e7b-20220421-134227.mp4\r\n10.0_046_cheeky-cornflower-setter-20ce2340fa61-20220422-193319.mp4 10.0_2961_shabby-viridian-beaver-aed0f89b8e7b-20220421-134833.mp4\r\n10.0_047_cheeky-cornflower-setter-22bbc5451fc6-20220423-234543.mp4 10.0_2962_shabby-viridian-beaver-afdd36f9755d-20220422-181800.mp4\r\n10.0_048_cheeky-cornflower-setter-22bbc5451fc6-20220423-235051.mp4 10.0_2963_shabby-viridian-beaver-afdd36f9755d-20220422-182258.mp4\r\n10.0_049_cheeky-cornflower-setter-22bbc5451fc6-20220423-235558.mp4 10.0_2964_shabby-viridian-beaver-afdd36f9755d-20220422-182756.mp4\r\n10.0_050_cheeky-cornflower-setter-252cc4423611-20220415-093732.mp4 10.0_2965_shabby-viridian-beaver-afdd36f9755d-20220422-183254.mp4\r\n10.0_051_cheeky-cornflower-setter-252cc4423611-20220415-094244.mp4 10.0_2966_shabby-viridian-beaver-afdd36f9755d-20220422-183752.mp4\r\n10.0_052_cheeky-cornflower-setter-252cc4423611-20220415-094759.mp4 10.0_2967_shabby-viridian-beaver-b064d8e1dc68-20220417-011815.mp4\r\n10.0_053_cheeky-cornflower-setter-252cc4423611-20220415-095306.mp4 10.0_2968_shabby-viridian-beaver-b064d8e1dc68-20220417-012315.mp4\r\n10.0_054_cheeky-cornflower-setter-26364ef97db4-20220414-135515.mp4 10.0_2969_shabby-viridian-beaver-b064d8e1dc68-20220417-012813.mp4\r\n10.0_055_cheeky-cornflower-setter-26364ef97db4-20220414-140227.mp4 10.0_296_cheeky-cornflower-setter-aa25537c8104-20220417-222246.mp4\r\n10.0_056_cheeky-cornflower-setter-26364ef97db4-20220414-140802.mp4 10.0_2970_shabby-viridian-beaver-b4b0df4b10d5-20220416-173638.mp4\r\n10.0_057_cheeky-cornflower-setter-26364ef97db4-20220414-141309.mp4 10.0_2971_shabby-viridian-beaver-b4b0df4b10d5-20220416-174136.mp4\r\n10.0_058_cheeky-cornflower-setter-2656cd13f4b9-20220421-195821.mp4 10.0_2972_shabby-viridian-beaver-b4b0df4b10d5-20220416-174634.mp4\r\n10.0_059_cheeky-cornflower-setter-2656cd13f4b9-20220421-200328.mp4 10.0_2973_shabby-viridian-beaver-b4b0df4b10d5-20220416-175132.mp4\r\n10.0_060_cheeky-cornflower-setter-2656cd13f4b9-20220421-200834.mp4 10.0_2974_shabby-viridian-beaver-b4b0df4b10d5-20220416-175630.mp4\r\n10.0_061_cheeky-cornflower-setter-272c5c5ac644-20220422-212427.mp4 10.0_2975_shabby-viridian-beaver-b54066467270-20220422-213356.mp4\r\n10.0_062_cheeky-cornflower-setter-272c5c5ac644-20220422-213359.mp4 10.0_2976_shabby-viridian-beaver-b54066467270-20220422-213855.mp4\r\n10.0_063_cheeky-cornflower-setter-281e7c31fca8-20220414-161230.mp4 10.0_2977_shabby-viridian-beaver-b54066467270-20220422-214355.mp4\r\n10.0_064_cheeky-cornflower-setter-281e7c31fca8-20220414-161738.mp4 10.0_2978_shabby-viridian-beaver-b54066467270-20220422-214856.mp4\r\n10.0_065_cheeky-cornflower-setter-281e7c31fca8-20220414-162243.mp4 10.0_2979_shabby-viridian-beaver-b6693c992e74-20220420-182533.mp4\r\n10.0_066_cheeky-cornflower-setter-281e7c31fca8-20220414-162750.mp4 10.0_297_cheeky-cornflower-setter-aa25537c8104-20220417-222802.mp4\r\n10.0_067_cheeky-cornflower-setter-288fa74a3fc8-20220417-184116.mp4 10.0_2980_shabby-viridian-beaver-b6693c992e74-20220420-183054.mp4\r\n10.0_068_cheeky-cornflower-setter-288fa74a3fc8-20220417-184628.mp4 10.0_2981_shabby-viridian-beaver-b6693c992e74-20220420-183554.mp4\r\n10.0_069_cheeky-cornflower-setter-288fa74a3fc8-20220417-185134.mp4 10.0_2982_shabby-viridian-beaver-b6693c992e74-20220420-184054.mp4\r\n10.0_070_cheeky-cornflower-setter-288fa74a3fc8-20220417-185640.mp4 10.0_2983_shabby-viridian-beaver-b6f1e3ddce83-20220417-185824.mp4\r\n10.0_071_cheeky-cornflower-setter-2bfe8ff50d8e-20220421-155039.mp4 10.0_2984_shabby-viridian-beaver-b6f1e3ddce83-20220417-190322.mp4\r\n10.0_072_cheeky-cornflower-setter-2d2c4899a6cd-20220418-200110.mp4 10.0_2985_shabby-viridian-beaver-b6f1e3ddce83-20220417-190820.mp4\r\n10.0_073_cheeky-cornflower-setter-2d2c4899a6cd-20220418-200620.mp4 10.0_2986_shabby-viridian-beaver-b6f1e3ddce83-20220417-191318.mp4\r\n10.0_074_cheeky-cornflower-setter-2d2c4899a6cd-20220418-201126.mp4 10.0_2987_shabby-viridian-beaver-b8f84f80381d-20220416-192722.mp4\r\n10.0_075_cheeky-cornflower-setter-2d2c4899a6cd-20220418-201632.mp4 10.0_2988_shabby-viridian-beaver-bb505e62deea-20220421-172117.mp4\r\n10.0_076_cheeky-cornflower-setter-2d2c4899a6cd-20220418-202137.mp4 10.0_2989_shabby-viridian-beaver-bb505e62deea-20220421-172615.mp4\r\n10.0_077_cheeky-cornflower-setter-2e243327430e-20220416-114203.mp4 10.0_298_cheeky-cornflower-setter-aa25537c8104-20220417-223309.mp4\r\n10.0_078_cheeky-cornflower-setter-2e243327430e-20220416-114714.mp4 10.0_2990_shabby-viridian-beaver-bb505e62deea-20220421-173113.mp4\r\n10.0_079_cheeky-cornflower-setter-2e5442b10f7b-20220423-213954.mp4 10.0_2991_shabby-viridian-beaver-bb505e62deea-20220421-173612.mp4\r\n10.0_080_cheeky-cornflower-setter-2e5442b10f7b-20220423-215003.mp4 10.0_2992_shabby-viridian-beaver-bb505e62deea-20220421-174109.mp4\r\n10.0_081_cheeky-cornflower-setter-3174e27044c4-20220421-173930.mp4 10.0_2993_shabby-viridian-beaver-c07b4afc04b6-20220417-164606.mp4\r\n10.0_082_cheeky-cornflower-setter-3174e27044c4-20220421-175046.mp4 10.0_2994_shabby-viridian-beaver-c0e469e7c4d4-20220417-221837.mp4\r\n10.0_083_cheeky-cornflower-setter-3a8b5114df50-20220416-104717.mp4 10.0_2995_shabby-viridian-beaver-c0e469e7c4d4-20220417-222336.mp4\r\n10.0_084_cheeky-cornflower-setter-3a8b5114df50-20220416-105225.mp4 10.0_2996_shabby-viridian-beaver-c0e469e7c4d4-20220417-222835.mp4\r\n10.0_085_cheeky-cornflower-setter-3a8b5114df50-20220416-105732.mp4 10.0_2997_shabby-viridian-beaver-c0e469e7c4d4-20220417-223341.mp4\r\n10.0_086_cheeky-cornflower-setter-3a8b5114df50-20220416-110237.mp4 10.0_2998_shabby-viridian-beaver-c1d96290b039-20220416-163931.mp4\r\n10.0_087_cheeky-cornflower-setter-3d5544d0b9a4-20220414-213305.mp4 10.0_2999_shabby-viridian-beaver-c31aa22a7f33-20220422-233343.mp4\r\n10.0_088_cheeky-cornflower-setter-3d5544d0b9a4-20220414-213813.mp4 10.0_299_cheeky-cornflower-setter-aa25537c8104-20220417-223815.mp4\r\n10.0_089_cheeky-cornflower-setter-3d5544d0b9a4-20220414-214319.mp4 10.0_3000_shabby-viridian-beaver-c31aa22a7f33-20220422-233843.mp4\r\n10.0_090_cheeky-cornflower-setter-3d5544d0b9a4-20220414-214825.mp4 10.0_3001_shabby-viridian-beaver-c31aa22a7f33-20220422-234342.mp4\r\n10.0_091_cheeky-cornflower-setter-3ef2fda79f91-20220415-195339.mp4 10.0_3002_shabby-viridian-beaver-c3df7dcc66a5-20220417-232423.mp4\r\n10.0_092_cheeky-cornflower-setter-416482eef705-20220421-093541.mp4 10.0_3003_shabby-viridian-beaver-c505dd8ce14d-20220416-195350.mp4\r\n10.0_093_cheeky-cornflower-setter-438b99d2ddf9-20220414-145012.mp4 10.0_3004_shabby-viridian-beaver-c505dd8ce14d-20220416-195849.mp4\r\n10.0_094_cheeky-cornflower-setter-438b99d2ddf9-20220414-145519.mp4 10.0_3005_shabby-viridian-beaver-c505dd8ce14d-20220416-200351.mp4\r\n10.0_095_cheeky-cornflower-setter-43a8b07d6bad-20220423-094036.mp4 10.0_3006_shabby-viridian-beaver-c505dd8ce14d-20220416-200852.mp4\r\n10.0_096_cheeky-cornflower-setter-43a8b07d6bad-20220423-095122.mp4 10.0_3007_shabby-viridian-beaver-c505dd8ce14d-20220416-201357.mp4\r\n10.0_097_cheeky-cornflower-setter-46070b828653-20220422-184520.mp4 10.0_3008_shabby-viridian-beaver-c6206c7bb31a-20220414-210557.mp4\r\n10.0_098_cheeky-cornflower-setter-46070b828653-20220422-185028.mp4 10.0_3009_shabby-viridian-beaver-c6206c7bb31a-20220414-211056.mp4\r\n10.0_099_cheeky-cornflower-setter-46070b828653-20220422-185538.mp4 10.0_300_cheeky-cornflower-setter-ab2c749a1b63-20220414-211228.mp4\r\n10.0_1000_gimpy-jade-panda-e6e54e4bb98a-20220423-162154.mp4 10.0_3010_shabby-viridian-beaver-c6206c7bb31a-20220414-211602.mp4\r\n10.0_1001_gimpy-jade-panda-e6e54e4bb98a-20220423-162709.mp4 10.0_3011_shabby-viridian-beaver-c6206c7bb31a-20220414-212100.mp4\r\n10.0_1002_gimpy-jade-panda-e6e54e4bb98a-20220423-163326.mp4 10.0_3012_shabby-viridian-beaver-c6206c7bb31a-20220414-212601.mp4\r\n10.0_1003_gimpy-jade-panda-e6e54e4bb98a-20220423-163823.mp4 10.0_3013_shabby-viridian-beaver-c853d01608f2-20220421-182832.mp4\r\n10.0_1004_gimpy-jade-panda-ea75b587987a-20220419-195251.mp4 10.0_3014_shabby-viridian-beaver-c853d01608f2-20220421-183331.mp4\r\n10.0_1005_gimpy-jade-panda-eaab8e99b47f-20220423-123148.mp4 10.0_3015_shabby-viridian-beaver-c853d01608f2-20220421-183836.mp4\r\n10.0_1006_gimpy-jade-panda-eaab8e99b47f-20220423-123712.mp4 10.0_3016_shabby-viridian-beaver-c853d01608f2-20220421-184334.mp4\r\n10.0_1007_gimpy-jade-panda-eb195871bda7-20220415-020304.mp4 10.0_3017_shabby-viridian-beaver-c853d01608f2-20220421-184835.mp4\r\n10.0_1008_gimpy-jade-panda-eb195871bda7-20220415-020807.mp4 10.0_3018_shabby-viridian-beaver-c9d6123fcc72-20220416-175656.mp4\r\n10.0_1009_gimpy-jade-panda-eb195871bda7-20220415-021333.mp4 10.0_3019_shabby-viridian-beaver-c9d6123fcc72-20220416-180154.mp4\r\n10.0_100_cheeky-cornflower-setter-46070b828653-20220422-190134.mp4 10.0_301_cheeky-cornflower-setter-ab2c749a1b63-20220414-211737.mp4\r\n10.0_1010_gimpy-jade-panda-eb195871bda7-20220415-021830.mp4 10.0_3020_shabby-viridian-beaver-c9d6123fcc72-20220416-180652.mp4\r\n10.0_1011_gimpy-jade-panda-ec818f707c1c-20220416-110111.mp4 10.0_3021_shabby-viridian-beaver-c9d6123fcc72-20220416-181150.mp4\r\n10.0_1012_gimpy-jade-panda-ec818f707c1c-20220416-110609.mp4 10.0_3022_shabby-viridian-beaver-c9d6123fcc72-20220416-181648.mp4\r\n10.0_1013_gimpy-jade-panda-eda8724b1df3-20220423-084717.mp4 10.0_3023_shabby-viridian-beaver-ca15fff793b0-20220416-214257.mp4\r\n10.0_1014_gimpy-jade-panda-eda8724b1df3-20220423-085215.mp4 10.0_3024_shabby-viridian-beaver-ca15fff793b0-20220416-214755.mp4\r\n10.0_1015_gimpy-jade-panda-eda8724b1df3-20220423-085842.mp4 10.0_3025_shabby-viridian-beaver-ca15fff793b0-20220416-215254.mp4\r\n10.0_1016_gimpy-jade-panda-f153ac423f61-20220413-190453.mp4 10.0_3026_shabby-viridian-beaver-ca15fff793b0-20220416-215752.mp4\r\n10.0_1017_gimpy-jade-panda-f153ac423f61-20220413-191008.mp4 10.0_3027_shabby-viridian-beaver-ca15fff793b0-20220416-220250.mp4\r\n10.0_1018_gimpy-jade-panda-f153ac423f61-20220413-191506.mp4 10.0_3028_shabby-viridian-beaver-cf3db8bfd5db-20220420-154621.mp4\r\n10.0_1019_gimpy-jade-panda-f153ac423f61-20220413-192004.mp4 10.0_3029_shabby-viridian-beaver-cf3db8bfd5db-20220420-155121.mp4\r\n10.0_101_cheeky-cornflower-setter-481edbebfb75-20220423-111033.mp4 10.0_302_cheeky-cornflower-setter-ab2c749a1b63-20220414-212243.mp4\r\n10.0_1020_gimpy-jade-panda-f153ac423f61-20220413-224027.mp4 10.0_3030_shabby-viridian-beaver-cf3db8bfd5db-20220420-155620.mp4\r\n10.0_1021_gimpy-jade-panda-f153ac423f61-20220413-224610.mp4 10.0_3031_shabby-viridian-beaver-cf3db8bfd5db-20220420-160119.mp4\r\n10.0_1022_gimpy-jade-panda-f153ac423f61-20220414-004420.mp4 10.0_3032_shabby-viridian-beaver-cf3db8bfd5db-20220420-160618.mp4\r\n10.0_1023_gimpy-jade-panda-f153ac423f61-20220414-004921.mp4 10.0_3033_shabby-viridian-beaver-cfb07e8db714-20220421-014021.mp4\r\n10.0_1024_gimpy-jade-panda-f153ac423f61-20220414-071604.mp4 10.0_3034_shabby-viridian-beaver-cfb07e8db714-20220421-014526.mp4\r\n10.0_1025_gimpy-jade-panda-f153ac423f61-20220414-103340.mp4 10.0_3035_shabby-viridian-beaver-cfb07e8db714-20220421-015533.mp4\r\n10.0_1026_gimpy-jade-panda-f153ac423f61-20220414-103843.mp4 10.0_3036_shabby-viridian-beaver-d1f59d83182c-20220419-233012.mp4\r\n10.0_1027_gimpy-jade-panda-f153ac423f61-20220414-134222.mp4 10.0_3037_shabby-viridian-beaver-d1f59d83182c-20220419-233624.mp4\r\n10.0_1028_gimpy-jade-panda-f153ac423f61-20220415-015339.mp4 10.0_3038_shabby-viridian-beaver-d1f59d83182c-20220419-234124.mp4\r\n10.0_1029_gimpy-jade-panda-f153ac423f61-20220415-015844.mp4 10.0_3039_shabby-viridian-beaver-d2b910a8df5e-20220419-190633.mp4\r\n10.0_102_cheeky-cornflower-setter-481edbebfb75-20220423-112718.mp4 10.0_303_cheeky-cornflower-setter-ab2c749a1b63-20220414-212749.mp4\r\n10.0_1030_gimpy-jade-panda-f153ac423f61-20220415-073150.mp4 10.0_3040_shabby-viridian-beaver-d2b910a8df5e-20220419-191132.mp4\r\n10.0_1031_gimpy-jade-panda-f153ac423f61-20220415-073832.mp4 10.0_3041_shabby-viridian-beaver-d343e462eab1-20220421-152626.mp4\r\n10.0_1032_gimpy-jade-panda-f153ac423f61-20220415-091830.mp4 10.0_3042_shabby-viridian-beaver-d343e462eab1-20220421-153126.mp4\r\n10.0_1033_gimpy-jade-panda-f153ac423f61-20220415-092332.mp4 10.0_3043_shabby-viridian-beaver-d343e462eab1-20220421-153627.mp4\r\n10.0_1034_gimpy-jade-panda-f153ac423f61-20220415-093314.mp4 10.0_3044_shabby-viridian-beaver-d343e462eab1-20220421-154128.mp4\r\n10.0_1035_gimpy-jade-panda-f153ac423f61-20220415-093821.mp4 10.0_3045_shabby-viridian-beaver-d4a305d66731-20220422-184029.mp4\r\n10.0_1036_gimpy-jade-panda-f153ac423f61-20220415-112013.mp4 10.0_3046_shabby-viridian-beaver-d4a305d66731-20220422-184530.mp4\r\n10.0_1037_gimpy-jade-panda-f153ac423f61-20220415-112522.mp4 10.0_3047_shabby-viridian-beaver-d4a305d66731-20220422-185029.mp4\r\n10.0_1038_gimpy-jade-panda-f153ac423f61-20220415-155006.mp4 10.0_3048_shabby-viridian-beaver-d4fce6feadea-20220417-171341.mp4\r\n10.0_1039_gimpy-jade-panda-f153ac423f61-20220415-155506.mp4 10.0_3049_shabby-viridian-beaver-d4fce6feadea-20220417-171839.mp4\r\n10.0_103_cheeky-cornflower-setter-481edbebfb75-20220423-113629.mp4 10.0_304_cheeky-cornflower-setter-ab54b635f00b-20220422-164714.mp4\r\n10.0_1040_gimpy-jade-panda-f153ac423f61-20220416-063647.mp4 10.0_3050_shabby-viridian-beaver-d4fce6feadea-20220417-172338.mp4\r\n10.0_1041_gimpy-jade-panda-f153ac423f61-20220416-064256.mp4 10.0_3051_shabby-viridian-beaver-d4fce6feadea-20220417-172836.mp4\r\n10.0_1042_gimpy-jade-panda-f153ac423f61-20220416-064842.mp4 10.0_3052_shabby-viridian-beaver-d5b2f0b06c76-20220416-142058.mp4\r\n10.0_1043_gimpy-jade-panda-f153ac423f61-20220416-065426.mp4 10.0_3053_shabby-viridian-beaver-d5b2f0b06c76-20220416-142605.mp4\r\n10.0_1044_gimpy-jade-panda-f153ac423f61-20220416-084353.mp4 10.0_3054_shabby-viridian-beaver-d5b2f0b06c76-20220416-143325.mp4\r\n10.0_1045_gimpy-jade-panda-f153ac423f61-20220416-092719.mp4 10.0_3055_shabby-viridian-beaver-d5b2f0b06c76-20220416-143824.mp4\r\n10.0_1046_gimpy-jade-panda-f153ac423f61-20220416-093222.mp4 10.0_3056_shabby-viridian-beaver-d5b2f0b06c76-20220416-144323.mp4\r\n10.0_1047_gimpy-jade-panda-f153ac423f61-20220416-104735.mp4 10.0_3057_shabby-viridian-beaver-d617ee418e62-20220419-180545.mp4\r\n10.0_1048_gimpy-jade-panda-f153ac423f61-20220416-105417.mp4 10.0_3058_shabby-viridian-beaver-d617ee418e62-20220419-181043.mp4\r\n10.0_1049_gimpy-jade-panda-f153ac423f61-20220416-111833.mp4 10.0_3059_shabby-viridian-beaver-d617ee418e62-20220419-181541.mp4\r\n10.0_104_cheeky-cornflower-setter-48407103b7d6-20220417-153305.mp4 10.0_305_cheeky-cornflower-setter-ab54b635f00b-20220422-165221.mp4\r\n10.0_1050_gimpy-jade-panda-f153ac423f61-20220416-112334.mp4 10.0_3060_shabby-viridian-beaver-d617ee418e62-20220419-182039.mp4\r\n10.0_1051_gimpy-jade-panda-f153ac423f61-20220416-133235.mp4 10.0_3061_shabby-viridian-beaver-d617ee418e62-20220419-182537.mp4\r\n10.0_1052_gimpy-jade-panda-f153ac423f61-20220416-133812.mp4 10.0_3062_shabby-viridian-beaver-d7cea060d9ee-20220417-223835.mp4\r\n10.0_1053_gimpy-jade-panda-f153ac423f61-20220416-134311.mp4 10.0_3063_shabby-viridian-beaver-d7cea060d9ee-20220417-224334.mp4\r\n10.0_1054_gimpy-jade-panda-f153ac423f61-20220416-163542.mp4 10.0_3064_shabby-viridian-beaver-d7cea060d9ee-20220417-224834.mp4\r\n10.0_1055_gimpy-jade-panda-f153ac423f61-20220416-164214.mp4 10.0_3065_shabby-viridian-beaver-d7cea060d9ee-20220417-225332.mp4\r\n10.0_1056_gimpy-jade-panda-f153ac423f61-20220416-164712.mp4 10.0_3066_shabby-viridian-beaver-da94ac4ba2f2-20220419-221114.mp4\r\n10.0_1057_gimpy-jade-panda-f153ac423f61-20220416-181209.mp4 10.0_3067_shabby-viridian-beaver-da94ac4ba2f2-20220419-221614.mp4\r\n10.0_1058_gimpy-jade-panda-f153ac423f61-20220416-181755.mp4 10.0_3068_shabby-viridian-beaver-da94ac4ba2f2-20220419-222117.mp4\r\n10.0_1059_gimpy-jade-panda-f153ac423f61-20220416-183811.mp4 10.0_3069_shabby-viridian-beaver-da94ac4ba2f2-20220419-222625.mp4\r\n10.0_105_cheeky-cornflower-setter-48407103b7d6-20220417-153859.mp4 10.0_306_cheeky-cornflower-setter-ab54b635f00b-20220422-165727.mp4\r\n10.0_1060_gimpy-jade-panda-f153ac423f61-20220416-212555.mp4 10.0_3070_shabby-viridian-beaver-db517f92ebf2-20220416-221212.mp4\r\n10.0_1061_gimpy-jade-panda-f153ac423f61-20220416-225949.mp4 10.0_3071_shabby-viridian-beaver-db9bfe2519e6-20220417-232348.mp4\r\n10.0_1062_gimpy-jade-panda-f153ac423f61-20220416-230552.mp4 10.0_3072_shabby-viridian-beaver-dd0bbb21491a-20220419-185442.mp4\r\n10.0_1063_gimpy-jade-panda-f153ac423f61-20220416-231049.mp4 10.0_3073_shabby-viridian-beaver-dd0bbb21491a-20220419-185940.mp4\r\n10.0_1064_gimpy-jade-panda-f153ac423f61-20220417-052410.mp4 10.0_3074_shabby-viridian-beaver-dd0bbb21491a-20220419-190439.mp4\r\n10.0_1065_gimpy-jade-panda-f153ac423f61-20220417-052921.mp4 10.0_3075_shabby-viridian-beaver-dd1317050544-20220416-163045.mp4\r\n10.0_1066_gimpy-jade-panda-f153ac423f61-20220417-053419.mp4 10.0_3076_shabby-viridian-beaver-dd1317050544-20220416-163544.mp4\r\n10.0_1067_gimpy-jade-panda-f153ac423f61-20220417-071007.mp4 10.0_3077_shabby-viridian-beaver-e1ff4a8c1142-20220424-014826.mp4\r\n10.0_1068_gimpy-jade-panda-f153ac423f61-20220417-071955.mp4 10.0_3078_shabby-viridian-beaver-e1ff4a8c1142-20220424-015324.mp4\r\n10.0_1069_gimpy-jade-panda-f153ac423f61-20220417-072601.mp4 10.0_3079_shabby-viridian-beaver-e1ff4a8c1142-20220424-015822.mp4\r\n10.0_106_cheeky-cornflower-setter-4a5cd44ff498-20220419-153320.mp4 10.0_307_cheeky-cornflower-setter-ab6bc00f251c-20220421-004038.mp4\r\n10.0_1070_gimpy-jade-panda-f153ac423f61-20220417-084844.mp4 10.0_3080_shabby-viridian-beaver-e1ff4a8c1142-20220424-020320.mp4\r\n10.0_1071_gimpy-jade-panda-f153ac423f61-20220417-085606.mp4 10.0_3081_shabby-viridian-beaver-e1ff4a8c1142-20220424-020818.mp4\r\n10.0_1072_gimpy-jade-panda-f153ac423f61-20220417-102417.mp4 10.0_3082_shabby-viridian-beaver-e54ed14ed7be-20220417-180438.mp4\r\n10.0_1073_gimpy-jade-panda-f153ac423f61-20220417-102921.mp4 10.0_3083_shabby-viridian-beaver-e54ed14ed7be-20220417-180937.mp4\r\n10.0_1074_gimpy-jade-panda-f153ac423f61-20220417-122643.mp4 10.0_3084_shabby-viridian-beaver-e54ed14ed7be-20220417-181436.mp4\r\n10.0_1075_gimpy-jade-panda-f153ac423f61-20220417-123258.mp4 10.0_3085_shabby-viridian-beaver-e6dd9e39eac7-20220416-221630.mp4\r\n10.0_1076_gimpy-jade-panda-f153ac423f61-20220417-123928.mp4 10.0_3086_shabby-viridian-beaver-e6dd9e39eac7-20220416-222129.mp4\r\n10.0_1077_gimpy-jade-panda-f153ac423f61-20220417-124427.mp4 10.0_3087_shabby-viridian-beaver-e93be360fa26-20220422-190703.mp4\r\n10.0_1078_gimpy-jade-panda-f153ac423f61-20220417-124925.mp4 10.0_3088_shabby-viridian-beaver-e93be360fa26-20220422-191201.mp4\r\n10.0_1079_gimpy-jade-panda-f153ac423f61-20220417-164818.mp4 10.0_3089_shabby-viridian-beaver-e93be360fa26-20220422-191659.mp4\r\n10.0_107_cheeky-cornflower-setter-4a5cd44ff498-20220419-153826.mp4 10.0_308_cheeky-cornflower-setter-ab6bc00f251c-20220421-004554.mp4\r\n10.0_1080_gimpy-jade-panda-f153ac423f61-20220417-165400.mp4 10.0_3090_shabby-viridian-beaver-e93be360fa26-20220422-192157.mp4\r\n10.0_1081_gimpy-jade-panda-f153ac423f61-20220417-165858.mp4 10.0_3091_shabby-viridian-beaver-ea29fb5e1692-20220417-151037.mp4\r\n10.0_1082_gimpy-jade-panda-f153ac423f61-20220417-170405.mp4 10.0_3092_shabby-viridian-beaver-ea29fb5e1692-20220417-151539.mp4\r\n10.0_1083_gimpy-jade-panda-f153ac423f61-20220419-184750.mp4 10.0_3093_shabby-viridian-beaver-eb12a3cf93ac-20220422-215249.mp4\r\n10.0_1084_gimpy-jade-panda-f153ac423f61-20220419-185256.mp4 10.0_3094_shabby-viridian-beaver-eb12a3cf93ac-20220422-215747.mp4\r\n10.0_1085_gimpy-jade-panda-f153ac423f61-20220419-185905.mp4 10.0_3095_shabby-viridian-beaver-eb12a3cf93ac-20220422-220245.mp4\r\n10.0_1086_gimpy-jade-panda-f153ac423f61-20220419-221151.mp4 10.0_3096_shabby-viridian-beaver-eb12a3cf93ac-20220422-220743.mp4\r\n10.0_1087_gimpy-jade-panda-f153ac423f61-20220420-161420.mp4 10.0_3097_shabby-viridian-beaver-eb23358b091d-20220421-143554.mp4\r\n10.0_1088_gimpy-jade-panda-f153ac423f61-20220420-161923.mp4 10.0_3098_shabby-viridian-beaver-eb23358b091d-20220421-144053.mp4\r\n10.0_1089_gimpy-jade-panda-f153ac423f61-20220420-190241.mp4 10.0_3099_shabby-viridian-beaver-eb23358b091d-20220421-144551.mp4\r\n10.0_108_cheeky-cornflower-setter-4c19fa9f69c7-20220415-195243.mp4 10.0_309_cheeky-cornflower-setter-ab6bc00f251c-20220421-005100.mp4\r\n10.0_1090_gimpy-jade-panda-f153ac423f61-20220420-190724.mp4 10.0_3100_shabby-viridian-beaver-eb23358b091d-20220421-145049.mp4\r\n10.0_1091_gimpy-jade-panda-f153ac423f61-20220420-191226.mp4 10.0_3101_shabby-viridian-beaver-eb23358b091d-20220421-145546.mp4\r\n10.0_1092_gimpy-jade-panda-f153ac423f61-20220420-191844.mp4 10.0_3102_shabby-viridian-beaver-ecec37d84616-20220421-154621.mp4\r\n10.0_1093_gimpy-jade-panda-f153ac423f61-20220421-205555.mp4 10.0_3103_shabby-viridian-beaver-ecec37d84616-20220421-155119.mp4\r\n10.0_1094_gimpy-jade-panda-f153ac423f61-20220421-210055.mp4 10.0_3104_shabby-viridian-beaver-ecec37d84616-20220421-155618.mp4\r\n10.0_1095_gimpy-jade-panda-f153ac423f61-20220421-210607.mp4 10.0_3105_shabby-viridian-beaver-edf2db7c6a6e-20220421-160641.mp4\r\n10.0_1096_gimpy-jade-panda-f153ac423f61-20220421-213019.mp4 10.0_3106_shabby-viridian-beaver-edf2db7c6a6e-20220421-161140.mp4\r\n10.0_1097_gimpy-jade-panda-f153ac423f61-20220421-213521.mp4 10.0_3107_shabby-viridian-beaver-edf2db7c6a6e-20220421-161638.mp4\r\n10.0_1098_gimpy-jade-panda-f153ac423f61-20220421-214126.mp4 10.0_3108_shabby-viridian-beaver-edf2db7c6a6e-20220421-162136.mp4\r\n10.0_1099_gimpy-jade-panda-f153ac423f61-20220422-195226.mp4 10.0_3109_shabby-viridian-beaver-edf2db7c6a6e-20220421-162634.mp4\r\n10.0_109_cheeky-cornflower-setter-4cf439b98bb9-20220417-114931.mp4 10.0_310_cheeky-cornflower-setter-ab6bc00f251c-20220421-005609.mp4\r\n10.0_1100_gimpy-jade-panda-f153ac423f61-20220422-195727.mp4 10.0_3110_shabby-viridian-beaver-eec55d8880d0-20220419-235111.mp4\r\n10.0_1101_gimpy-jade-panda-f153ac423f61-20220422-200225.mp4 10.0_3111_shabby-viridian-beaver-eec55d8880d0-20220419-235612.mp4\r\n10.0_1102_gimpy-jade-panda-f153ac423f61-20220423-062112.mp4 10.0_3112_shabby-viridian-beaver-eec55d8880d0-20220420-000112.mp4\r\n10.0_1103_gimpy-jade-panda-f153ac423f61-20220423-062612.mp4 10.0_3113_shabby-viridian-beaver-eec55d8880d0-20220420-001113.mp4\r\n10.0_1104_gimpy-jade-panda-f153ac423f61-20220423-070110.mp4 10.0_3114_shabby-viridian-beaver-ef7aa39a12a5-20220415-165406.mp4\r\n10.0_1105_gimpy-jade-panda-f153ac423f61-20220423-070611.mp4 10.0_3115_shabby-viridian-beaver-ef7aa39a12a5-20220415-165904.mp4\r\n10.0_1106_gimpy-jade-panda-f153ac423f61-20220423-071109.mp4 10.0_3116_shabby-viridian-beaver-ef7aa39a12a5-20220415-170402.mp4\r\n10.0_1107_gimpy-jade-panda-f153ac423f61-20220423-082755.mp4 10.0_3117_shabby-viridian-beaver-f0d12becd2e5-20220415-174741.mp4\r\n10.0_1108_gimpy-jade-panda-f153ac423f61-20220423-083257.mp4 10.0_3118_shabby-viridian-beaver-f0d12becd2e5-20220415-175239.mp4\r\n10.0_1109_gimpy-jade-panda-f153ac423f61-20220423-083955.mp4 10.0_3119_shabby-viridian-beaver-f0d12becd2e5-20220415-175737.mp4\r\n10.0_110_cheeky-cornflower-setter-4cf439b98bb9-20220417-115441.mp4 10.0_311_cheeky-cornflower-setter-ac90fb8338ac-20220415-171357.mp4\r\n10.0_1110_gimpy-jade-panda-f153ac423f61-20220423-120630.mp4 10.0_3120_shabby-viridian-beaver-f0d12becd2e5-20220415-180235.mp4\r\n10.0_1111_gimpy-jade-panda-f153ac423f61-20220423-120733.mp4 10.0_3121_shabby-viridian-beaver-f153ac423f61-20220414-204520.mp4\r\n10.0_1112_gimpy-jade-panda-f153ac423f61-20220423-121234.mp4 10.0_3122_shabby-viridian-beaver-f153ac423f61-20220414-205023.mp4\r\n10.0_1113_gimpy-jade-panda-f153ac423f61-20220423-141118.mp4 10.0_3123_shabby-viridian-beaver-f153ac423f61-20220414-205522.mp4\r\n10.0_1114_gimpy-jade-panda-f153ac423f61-20220423-141619.mp4 10.0_3124_shabby-viridian-beaver-f153ac423f61-20220414-210025.mp4\r\n10.0_1115_gimpy-jade-panda-f153ac423f61-20220423-184312.mp4 10.0_3125_shabby-viridian-beaver-f153ac423f61-20220415-111832.mp4\r\n10.0_1116_gimpy-jade-panda-f265152f242d-20220423-124454.mp4 10.0_3126_shabby-viridian-beaver-f153ac423f61-20220415-112335.mp4\r\n10.0_1117_gimpy-jade-panda-f265152f242d-20220423-124953.mp4 10.0_3127_shabby-viridian-beaver-f153ac423f61-20220415-112841.mp4\r\n10.0_1118_gimpy-jade-panda-f4f28bb43dd8-20220419-200052.mp4 10.0_3128_shabby-viridian-beaver-f153ac423f61-20220415-151732.mp4\r\n10.0_1119_gimpy-jade-panda-f4f28bb43dd8-20220419-200550.mp4 10.0_3129_shabby-viridian-beaver-f153ac423f61-20220415-152237.mp4\r\n10.0_111_cheeky-cornflower-setter-4cf439b98bb9-20220417-115953.mp4 10.0_312_cheeky-cornflower-setter-ac90fb8338ac-20220415-171915.mp4\r\n10.0_1120_gimpy-jade-panda-f4f28bb43dd8-20220419-201048.mp4 10.0_3130_shabby-viridian-beaver-f153ac423f61-20220415-152737.mp4\r\n10.0_1121_gimpy-jade-panda-f4f28bb43dd8-20220419-201546.mp4 10.0_3131_shabby-viridian-beaver-f153ac423f61-20220415-153235.mp4\r\n10.0_1122_gimpy-jade-panda-f75d38595abb-20220414-005941.mp4 10.0_3132_shabby-viridian-beaver-f153ac423f61-20220415-153733.mp4\r\n10.0_1123_gimpy-jade-panda-f75d38595abb-20220414-010443.mp4 10.0_3133_shabby-viridian-beaver-f153ac423f61-20220415-154231.mp4\r\n10.0_1124_gimpy-jade-panda-f75d38595abb-20220414-010940.mp4 10.0_3134_shabby-viridian-beaver-f153ac423f61-20220415-155516.mp4\r\n10.0_1125_gimpy-jade-panda-f8cc588987aa-20220421-222752.mp4 10.0_3135_shabby-viridian-beaver-f153ac423f61-20220415-160015.mp4\r\n10.0_1126_gimpy-jade-panda-faea34b7e9e8-20220423-063401.mp4 10.0_3136_shabby-viridian-beaver-f153ac423f61-20220415-160513.mp4\r\n10.0_1127_gimpy-jade-panda-ffbdbf62a4ff-20220416-111504.mp4 10.0_3137_shabby-viridian-beaver-f153ac423f61-20220415-161011.mp4\r\n10.0_1128_gloppy-persimmon-ferret-f153ac423f61-20220420-161822.mp4 10.0_3138_shabby-viridian-beaver-f153ac423f61-20220415-161509.mp4\r\n10.0_1129_lanky-flax-dormouse-011aaabe97ae-20220422-174402.mp4 10.0_3139_shabby-viridian-beaver-f153ac423f61-20220415-170618.mp4\r\n10.0_112_cheeky-cornflower-setter-4f0508964551-20220421-132319.mp4 10.0_313_cheeky-cornflower-setter-acb518cb0f5f-20220414-175510.mp4\r\n10.0_1130_lanky-flax-dormouse-068b463e6850-20220422-174803.mp4 10.0_3140_shabby-viridian-beaver-f153ac423f61-20220415-171117.mp4\r\n10.0_1131_lanky-flax-dormouse-80468f377208-20220422-194904.mp4 10.0_3141_shabby-viridian-beaver-f153ac423f61-20220415-171616.mp4\r\n10.0_1132_lanky-flax-dormouse-80468f377208-20220422-195406.mp4 10.0_3142_shabby-viridian-beaver-f153ac423f61-20220415-172114.mp4\r\n10.0_1133_lanky-flax-dormouse-80468f377208-20220422-195908.mp4 10.0_3143_shabby-viridian-beaver-f153ac423f61-20220415-172611.mp4\r\n10.0_1134_lanky-flax-dormouse-93edcc99e448-20220422-190917.mp4 10.0_3144_shabby-viridian-beaver-f153ac423f61-20220415-222730.mp4\r\n10.0_1135_lanky-flax-dormouse-93edcc99e448-20220422-191418.mp4 10.0_3145_shabby-viridian-beaver-f153ac423f61-20220415-222837.mp4\r\n10.0_1136_lanky-flax-dormouse-93edcc99e448-20220422-191920.mp4 10.0_3146_shabby-viridian-beaver-f153ac423f61-20220415-223340.mp4\r\n10.0_1137_lanky-flax-dormouse-93edcc99e448-20220422-192422.mp4 10.0_3147_shabby-viridian-beaver-f153ac423f61-20220416-134017.mp4\r\n10.0_1138_lanky-flax-dormouse-93edcc99e448-20220422-192923.mp4 10.0_3148_shabby-viridian-beaver-f153ac423f61-20220416-134523.mp4\r\n10.0_1139_lanky-flax-dormouse-b2ec621154da-20220422-174056.mp4 10.0_3149_shabby-viridian-beaver-f153ac423f61-20220416-135022.mp4\r\n10.0_113_cheeky-cornflower-setter-4f0508964551-20220421-133351.mp4 10.0_314_cheeky-cornflower-setter-acb518cb0f5f-20220414-180018.mp4\r\n10.0_1140_lanky-flax-dormouse-dcd43ad3c854-20220422-181809.mp4 10.0_3150_shabby-viridian-beaver-f153ac423f61-20220416-135528.mp4\r\n10.0_1141_lanky-flax-dormouse-dcd43ad3c854-20220422-182315.mp4 10.0_3151_shabby-viridian-beaver-f153ac423f61-20220416-141348.mp4\r\n10.0_1142_lanky-flax-dormouse-dcd43ad3c854-20220422-182817.mp4 10.0_3152_shabby-viridian-beaver-f153ac423f61-20220416-143502.mp4\r\n10.0_1143_lanky-flax-dormouse-dcd43ad3c854-20220422-183318.mp4 10.0_3153_shabby-viridian-beaver-f153ac423f61-20220416-144001.mp4\r\n10.0_1144_lanky-flax-dormouse-f153ac423f61-20220422-162941.mp4 10.0_3154_shabby-viridian-beaver-f153ac423f61-20220416-144500.mp4\r\n10.0_1145_lanky-flax-dormouse-f153ac423f61-20220422-163443.mp4 10.0_3155_shabby-viridian-beaver-f153ac423f61-20220416-144958.mp4\r\n10.0_1146_lanky-flax-dormouse-f153ac423f61-20220422-163944.mp4 10.0_3156_shabby-viridian-beaver-f153ac423f61-20220416-145456.mp4\r\n10.0_1147_lanky-flax-dormouse-f153ac423f61-20220422-164445.mp4 10.0_3157_shabby-viridian-beaver-f153ac423f61-20220416-161021.mp4\r\n10.0_1148_lanky-flax-dormouse-f153ac423f61-20220422-185400.mp4 10.0_3158_shabby-viridian-beaver-f153ac423f61-20220416-161526.mp4\r\n10.0_1149_lanky-flax-dormouse-f153ac423f61-20220422-190108.mp4 10.0_3159_shabby-viridian-beaver-f153ac423f61-20220416-162025.mp4\r\n10.0_114_cheeky-cornflower-setter-4f0508964551-20220421-134234.mp4 10.0_315_cheeky-cornflower-setter-acb518cb0f5f-20220414-180524.mp4\r\n10.0_1150_lanky-flax-dormouse-f371dc823d1d-20220422-171655.mp4 10.0_3160_shabby-viridian-beaver-f153ac423f61-20220416-162524.mp4\r\n10.0_1151_lanky-flax-dormouse-f371dc823d1d-20220422-172501.mp4 10.0_3161_shabby-viridian-beaver-f153ac423f61-20220416-163023.mp4\r\n10.0_1152_lanky-flax-dormouse-f371dc823d1d-20220422-173002.mp4 10.0_3162_shabby-viridian-beaver-f153ac423f61-20220416-192900.mp4\r\n10.0_1153_lanky-flax-dormouse-f371dc823d1d-20220422-173504.mp4 10.0_3163_shabby-viridian-beaver-f153ac423f61-20220416-193403.mp4\r\n10.0_1154_lanky-flax-dormouse-f569f2c0c2df-20220422-170154.mp4 10.0_3164_shabby-viridian-beaver-f153ac423f61-20220416-193906.mp4\r\n10.0_1155_lanky-flax-dormouse-f569f2c0c2df-20220422-170655.mp4 10.0_3165_shabby-viridian-beaver-f153ac423f61-20220416-194404.mp4\r\n10.0_1156_lanky-flax-dormouse-f569f2c0c2df-20220422-171157.mp4 10.0_3166_shabby-viridian-beaver-f153ac423f61-20220416-211134.mp4\r\n10.0_1157_lanky-flax-dormouse-f9b0098ad379-20220422-175132.mp4 10.0_3167_shabby-viridian-beaver-f153ac423f61-20220416-211633.mp4\r\n10.0_1158_lanky-flax-dormouse-f9b0098ad379-20220422-175633.mp4 10.0_3168_shabby-viridian-beaver-f153ac423f61-20220416-212132.mp4\r\n10.0_1159_lanky-flax-dormouse-fad9fc5a7736-20220422-164522.mp4 10.0_3169_shabby-viridian-beaver-f153ac423f61-20220416-212630.mp4\r\n10.0_115_cheeky-cornflower-setter-527e9fca1a87-20220416-134005.mp4 10.0_316_cheeky-cornflower-setter-acf0ef1d038b-20220415-130120.mp4\r\n10.0_1160_lanky-flax-dormouse-fad9fc5a7736-20220422-165039.mp4 10.0_3170_shabby-viridian-beaver-f153ac423f61-20220416-213128.mp4\r\n10.0_1161_lanky-flax-dormouse-fad9fc5a7736-20220422-165540.mp4 10.0_3171_shabby-viridian-beaver-f153ac423f61-20220417-004519.mp4\r\n10.0_1162_lanky-flax-dormouse-fe45ab9f0c58-20220422-180245.mp4 10.0_3172_shabby-viridian-beaver-f153ac423f61-20220417-005019.mp4\r\n10.0_1163_lanky-flax-dormouse-fe45ab9f0c58-20220422-180747.mp4 10.0_3173_shabby-viridian-beaver-f153ac423f61-20220417-005524.mp4\r\n10.0_1164_lanky-flax-dormouse-fe45ab9f0c58-20220422-181249.mp4 10.0_3174_shabby-viridian-beaver-f153ac423f61-20220417-145516.mp4\r\n10.0_1165_lovely-persimmon-angora-002ea7e12da0-20220419-035059.mp4 10.0_3175_shabby-viridian-beaver-f153ac423f61-20220417-150019.mp4\r\n10.0_1166_lovely-persimmon-angora-002ea7e12da0-20220419-040511.mp4 10.0_3176_shabby-viridian-beaver-f153ac423f61-20220417-150522.mp4\r\n10.0_1167_lovely-persimmon-angora-002ea7e12da0-20220419-041009.mp4 10.0_3177_shabby-viridian-beaver-f153ac423f61-20220417-163230.mp4\r\n10.0_1168_lovely-persimmon-angora-008e23129e39-20220422-213842.mp4 10.0_3178_shabby-viridian-beaver-f153ac423f61-20220417-163729.mp4\r\n10.0_1169_lovely-persimmon-angora-008e23129e39-20220422-214342.mp4 10.0_3179_shabby-viridian-beaver-f153ac423f61-20220417-164228.mp4\r\n10.0_116_cheeky-cornflower-setter-527e9fca1a87-20220416-134542.mp4 10.0_317_cheeky-cornflower-setter-ad550e4f789d-20220421-144319.mp4\r\n10.0_1170_lovely-persimmon-angora-035e82ddbcca-20220423-072433.mp4 10.0_3180_shabby-viridian-beaver-f153ac423f61-20220417-215745.mp4\r\n10.0_1171_lovely-persimmon-angora-035e82ddbcca-20220423-072938.mp4 10.0_3181_shabby-viridian-beaver-f153ac423f61-20220417-215815.mp4\r\n10.0_1172_lovely-persimmon-angora-035e82ddbcca-20220423-073438.mp4 10.0_3182_shabby-viridian-beaver-f153ac423f61-20220417-220244.mp4\r\n10.0_1173_lovely-persimmon-angora-035e82ddbcca-20220423-073937.mp4 10.0_3183_shabby-viridian-beaver-f153ac423f61-20220417-220319.mp4\r\n10.0_1174_lovely-persimmon-angora-035e82ddbcca-20220423-074436.mp4 10.0_3184_shabby-viridian-beaver-f153ac423f61-20220417-220743.mp4\r\n10.0_1175_lovely-persimmon-angora-036ca6aebecb-20220417-171551.mp4 10.0_3185_shabby-viridian-beaver-f153ac423f61-20220417-220829.mp4\r\n10.0_1176_lovely-persimmon-angora-036ca6aebecb-20220417-172056.mp4 10.0_3186_shabby-viridian-beaver-f153ac423f61-20220417-221329.mp4\r\n10.0_1177_lovely-persimmon-angora-036ca6aebecb-20220417-172555.mp4 10.0_3187_shabby-viridian-beaver-f153ac423f61-20220418-212223.mp4\r\n10.0_1178_lovely-persimmon-angora-036ca6aebecb-20220417-173054.mp4 10.0_3188_shabby-viridian-beaver-f153ac423f61-20220418-212755.mp4\r\n10.0_1179_lovely-persimmon-angora-036ca6aebecb-20220417-173553.mp4 10.0_3189_shabby-viridian-beaver-f153ac423f61-20220418-213316.mp4\r\n10.0_117_cheeky-cornflower-setter-53762638fef9-20220416-191127.mp4 10.0_318_cheeky-cornflower-setter-ad550e4f789d-20220421-145326.mp4\r\n10.0_1180_lovely-persimmon-angora-03ea7a071963-20220420-001633.mp4 10.0_3190_shabby-viridian-beaver-f153ac423f61-20220419-133219.mp4\r\n10.0_1181_lovely-persimmon-angora-03ea7a071963-20220420-002728.mp4 10.0_3191_shabby-viridian-beaver-f153ac423f61-20220419-133719.mp4\r\n10.0_1182_lovely-persimmon-angora-03ea7a071963-20220420-003728.mp4 10.0_3192_shabby-viridian-beaver-f153ac423f61-20220419-134218.mp4\r\n10.0_1183_lovely-persimmon-angora-04b81856635a-20220423-051010.mp4 10.0_3193_shabby-viridian-beaver-f153ac423f61-20220419-134717.mp4\r\n10.0_1184_lovely-persimmon-angora-04b81856635a-20220423-051820.mp4 10.0_3194_shabby-viridian-beaver-f153ac423f61-20220419-141440.mp4\r\n10.0_1185_lovely-persimmon-angora-04b81856635a-20220423-052458.mp4 10.0_3195_shabby-viridian-beaver-f153ac423f61-20220419-142010.mp4\r\n10.0_1186_lovely-persimmon-angora-05144f5bd6f9-20220416-215832.mp4 10.0_3196_shabby-viridian-beaver-f153ac423f61-20220419-142520.mp4\r\n10.0_1187_lovely-persimmon-angora-05144f5bd6f9-20220416-220351.mp4 10.0_3197_shabby-viridian-beaver-f153ac423f61-20220419-143020.mp4\r\n10.0_1188_lovely-persimmon-angora-05144f5bd6f9-20220416-220849.mp4 10.0_3198_shabby-viridian-beaver-f153ac423f61-20220419-153012.mp4\r\n10.0_1189_lovely-persimmon-angora-05144f5bd6f9-20220416-221347.mp4 10.0_3199_shabby-viridian-beaver-f153ac423f61-20220419-153511.mp4\r\n10.0_118_cheeky-cornflower-setter-53762638fef9-20220416-191641.mp4 10.0_319_cheeky-cornflower-setter-aeb1b2e29425-20220423-222130.mp4\r\n10.0_1190_lovely-persimmon-angora-05144f5bd6f9-20220416-221942.mp4 10.0_3200_shabby-viridian-beaver-f153ac423f61-20220419-154009.mp4\r\n10.0_1191_lovely-persimmon-angora-09de7b1e2256-20220417-105542.mp4 10.0_3201_shabby-viridian-beaver-f153ac423f61-20220419-154507.mp4\r\n10.0_1192_lovely-persimmon-angora-09de7b1e2256-20220417-110042.mp4 10.0_3202_shabby-viridian-beaver-f153ac423f61-20220419-170532.mp4\r\n10.0_1193_lovely-persimmon-angora-09de7b1e2256-20220417-110540.mp4 10.0_3203_shabby-viridian-beaver-f153ac423f61-20220419-171032.mp4\r\n10.0_1194_lovely-persimmon-angora-09de7b1e2256-20220417-111038.mp4 10.0_3204_shabby-viridian-beaver-f153ac423f61-20220419-171536.mp4\r\n10.0_1195_lovely-persimmon-angora-09de7b1e2256-20220417-111535.mp4 10.0_3205_shabby-viridian-beaver-f153ac423f61-20220419-172036.mp4\r\n10.0_1196_lovely-persimmon-angora-0a781cae44df-20220419-052411.mp4 10.0_3206_shabby-viridian-beaver-f153ac423f61-20220419-205248.mp4\r\n10.0_1197_lovely-persimmon-angora-0a83db7d2339-20220414-155348.mp4 10.0_3207_shabby-viridian-beaver-f153ac423f61-20220419-205747.mp4\r\n10.0_1198_lovely-persimmon-angora-0a83db7d2339-20220414-160852.mp4 10.0_3208_shabby-viridian-beaver-f153ac423f61-20220419-210245.mp4\r\n10.0_1199_lovely-persimmon-angora-0a9ed113a260-20220421-095938.mp4 10.0_3209_shabby-viridian-beaver-f153ac423f61-20220419-210744.mp4\r\n10.0_119_cheeky-cornflower-setter-53762638fef9-20220416-192200.mp4 10.0_320_cheeky-cornflower-setter-aeb1b2e29425-20220423-223332.mp4\r\n10.0_1200_lovely-persimmon-angora-0a9ed113a260-20220421-100447.mp4 10.0_3210_shabby-viridian-beaver-f153ac423f61-20220419-211242.mp4\r\n10.0_1201_lovely-persimmon-angora-0b53a01d0957-20220416-063903.mp4 10.0_3211_shabby-viridian-beaver-f153ac423f61-20220419-214507.mp4\r\n10.0_1202_lovely-persimmon-angora-0b53a01d0957-20220416-064411.mp4 10.0_3212_shabby-viridian-beaver-f153ac423f61-20220419-215007.mp4\r\n10.0_1203_lovely-persimmon-angora-0b53a01d0957-20220416-064910.mp4 10.0_3213_shabby-viridian-beaver-f153ac423f61-20220419-215507.mp4\r\n10.0_1204_lovely-persimmon-angora-0b53a01d0957-20220416-065411.mp4 10.0_3214_shabby-viridian-beaver-f153ac423f61-20220420-144027.mp4\r\n10.0_1205_lovely-persimmon-angora-0c796d22a51e-20220419-163300.mp4 10.0_3215_shabby-viridian-beaver-f153ac423f61-20220420-144528.mp4\r\n10.0_1206_lovely-persimmon-angora-0c796d22a51e-20220419-163804.mp4 10.0_3216_shabby-viridian-beaver-f153ac423f61-20220420-145028.mp4\r\n10.0_1207_lovely-persimmon-angora-0c796d22a51e-20220419-164303.mp4 10.0_3217_shabby-viridian-beaver-f153ac423f61-20220420-145528.mp4\r\n10.0_1208_lovely-persimmon-angora-0c796d22a51e-20220419-164802.mp4 10.0_3218_shabby-viridian-beaver-f153ac423f61-20220420-150038.mp4\r\n10.0_1209_lovely-persimmon-angora-0c796d22a51e-20220419-165301.mp4 10.0_3219_shabby-viridian-beaver-f153ac423f61-20220420-152638.mp4\r\n10.0_120_cheeky-cornflower-setter-53762638fef9-20220416-192709.mp4 10.0_321_cheeky-cornflower-setter-b26308bded20-20220419-201805.mp4\r\n10.0_1210_lovely-persimmon-angora-0d202e98ada7-20220422-202405.mp4 10.0_3220_shabby-viridian-beaver-f153ac423f61-20220420-153139.mp4\r\n10.0_1211_lovely-persimmon-angora-0d202e98ada7-20220422-202910.mp4 10.0_3221_shabby-viridian-beaver-f153ac423f61-20220420-153638.mp4\r\n10.0_1212_lovely-persimmon-angora-0d202e98ada7-20220422-203410.mp4 10.0_3222_shabby-viridian-beaver-f153ac423f61-20220420-154138.mp4\r\n10.0_1213_lovely-persimmon-angora-0df04913c84f-20220420-062103.mp4 10.0_3223_shabby-viridian-beaver-f153ac423f61-20220421-131519.mp4\r\n10.0_1214_lovely-persimmon-angora-0df04913c84f-20220420-062609.mp4 10.0_3224_shabby-viridian-beaver-f153ac423f61-20220421-132029.mp4\r\n10.0_1215_lovely-persimmon-angora-0df04913c84f-20220420-063110.mp4 10.0_3225_shabby-viridian-beaver-f153ac423f61-20220421-132528.mp4\r\n10.0_1216_lovely-persimmon-angora-0df04913c84f-20220420-063611.mp4 10.0_3226_shabby-viridian-beaver-f153ac423f61-20220421-133027.mp4\r\n10.0_1217_lovely-persimmon-angora-0df04913c84f-20220420-064111.mp4 10.0_3227_shabby-viridian-beaver-f153ac423f61-20220421-141536.mp4\r\n10.0_1218_lovely-persimmon-angora-0e5ca1312f2a-20220420-170449.mp4 10.0_3228_shabby-viridian-beaver-f153ac423f61-20220421-142035.mp4\r\n10.0_1219_lovely-persimmon-angora-0e5ca1312f2a-20220420-170951.mp4 10.0_3229_shabby-viridian-beaver-f153ac423f61-20220421-142534.mp4\r\n10.0_121_cheeky-cornflower-setter-555af94e270c-20220420-201219.mp4 10.0_322_cheeky-cornflower-setter-b26308bded20-20220419-202315.mp4\r\n10.0_1220_lovely-persimmon-angora-0e5ca1312f2a-20220420-171450.mp4 10.0_3230_shabby-viridian-beaver-f153ac423f61-20220421-143032.mp4\r\n10.0_1221_lovely-persimmon-angora-0e5ca1312f2a-20220420-171948.mp4 10.0_3231_shabby-viridian-beaver-f153ac423f61-20220421-143530.mp4\r\n10.0_1222_lovely-persimmon-angora-0e5ca1312f2a-20220420-172446.mp4 10.0_3232_shabby-viridian-beaver-f153ac423f61-20220421-145606.mp4\r\n10.0_1223_lovely-persimmon-angora-12097610a85a-20220423-053531.mp4 10.0_3233_shabby-viridian-beaver-f153ac423f61-20220421-150108.mp4\r\n10.0_1224_lovely-persimmon-angora-140a4190c27f-20220419-235500.mp4 10.0_3234_shabby-viridian-beaver-f153ac423f61-20220421-150609.mp4\r\n10.0_1225_lovely-persimmon-angora-140a4190c27f-20220420-001111.mp4 10.0_3235_shabby-viridian-beaver-f153ac423f61-20220421-205823.mp4\r\n10.0_1226_lovely-persimmon-angora-1420180093e5-20220420-134037.mp4 10.0_3236_shabby-viridian-beaver-f153ac423f61-20220421-210323.mp4\r\n10.0_1227_lovely-persimmon-angora-1420180093e5-20220420-134709.mp4 10.0_3237_shabby-viridian-beaver-f153ac423f61-20220421-210821.mp4\r\n10.0_1228_lovely-persimmon-angora-14ead13b694f-20220422-045759.mp4 10.0_3238_shabby-viridian-beaver-f153ac423f61-20220421-211319.mp4\r\n10.0_1229_lovely-persimmon-angora-14ead13b694f-20220422-050301.mp4 10.0_3239_shabby-viridian-beaver-f153ac423f61-20220421-211817.mp4\r\n10.0_122_cheeky-cornflower-setter-56f853943b31-20220421-103921.mp4 10.0_323_cheeky-cornflower-setter-b47fb53f94b0-20220423-211534.mp4\r\n10.0_1230_lovely-persimmon-angora-14ead13b694f-20220422-050759.mp4 10.0_3240_shabby-viridian-beaver-f153ac423f61-20220422-160440.mp4\r\n10.0_1231_lovely-persimmon-angora-15246d623756-20220420-141834.mp4 10.0_3241_shabby-viridian-beaver-f153ac423f61-20220422-161754.mp4\r\n10.0_1232_lovely-persimmon-angora-1585e6411fcb-20220420-163000.mp4 10.0_3242_shabby-viridian-beaver-f153ac423f61-20220422-162405.mp4\r\n10.0_1233_lovely-persimmon-angora-15abf42a291b-20220423-080951.mp4 10.0_3243_shabby-viridian-beaver-f153ac423f61-20220422-162904.mp4\r\n10.0_1234_lovely-persimmon-angora-15abf42a291b-20220423-081507.mp4 10.0_3244_shabby-viridian-beaver-f153ac423f61-20220422-163401.mp4\r\n10.0_1235_lovely-persimmon-angora-15abf42a291b-20220423-082005.mp4 10.0_3245_shabby-viridian-beaver-f153ac423f61-20220422-180213.mp4\r\n10.0_1236_lovely-persimmon-angora-15abf42a291b-20220423-082504.mp4 10.0_3246_shabby-viridian-beaver-f153ac423f61-20220422-180718.mp4\r\n10.0_1237_lovely-persimmon-angora-15abf42a291b-20220423-084446.mp4 10.0_3247_shabby-viridian-beaver-f153ac423f61-20220422-182041.mp4\r\n10.0_1238_lovely-persimmon-angora-15abf42a291b-20220423-084947.mp4 10.0_3248_shabby-viridian-beaver-f153ac423f61-20220422-182542.mp4\r\n10.0_1239_lovely-persimmon-angora-15abf42a291b-20220423-085445.mp4 10.0_3249_shabby-viridian-beaver-f153ac423f61-20220422-183044.mp4\r\n10.0_123_cheeky-cornflower-setter-5a26e44d190d-20220422-192854.mp4 10.0_324_cheeky-cornflower-setter-b47fb53f94b0-20220423-212528.mp4\r\n10.0_1240_lovely-persimmon-angora-15abf42a291b-20220423-085944.mp4 10.0_3250_shabby-viridian-beaver-f153ac423f61-20220422-183545.mp4\r\n10.0_1241_lovely-persimmon-angora-15abf42a291b-20220423-090443.mp4 10.0_3251_shabby-viridian-beaver-f153ac423f61-20220422-213341.mp4\r\n10.0_1242_lovely-persimmon-angora-15e7d175e2e2-20220416-050300.mp4 10.0_3252_shabby-viridian-beaver-f153ac423f61-20220422-213840.mp4\r\n10.0_1243_lovely-persimmon-angora-1654ae366c37-20220422-141149.mp4 10.0_3253_shabby-viridian-beaver-f153ac423f61-20220422-214338.mp4\r\n10.0_1244_lovely-persimmon-angora-1654ae366c37-20220422-141653.mp4 10.0_3254_shabby-viridian-beaver-f153ac423f61-20220422-214836.mp4\r\n10.0_1245_lovely-persimmon-angora-1654ae366c37-20220422-142153.mp4 10.0_3255_shabby-viridian-beaver-f153ac423f61-20220423-162322.mp4\r\n10.0_1246_lovely-persimmon-angora-1654ae366c37-20220422-142651.mp4 10.0_3256_shabby-viridian-beaver-f153ac423f61-20220423-162907.mp4\r\n10.0_1247_lovely-persimmon-angora-1654ae366c37-20220422-143151.mp4 10.0_3257_shabby-viridian-beaver-f153ac423f61-20220423-163406.mp4\r\n10.0_1248_lovely-persimmon-angora-16b58e2e63d4-20220420-183713.mp4 10.0_3258_shabby-viridian-beaver-f153ac423f61-20220423-163914.mp4\r\n10.0_1249_lovely-persimmon-angora-16b58e2e63d4-20220420-184246.mp4 10.0_3259_shabby-viridian-beaver-f153ac423f61-20220423-182710.mp4\r\n10.0_124_cheeky-cornflower-setter-5ae43471cf61-20220415-190732.mp4 10.0_325_cheeky-cornflower-setter-b47fb53f94b0-20220423-213427.mp4\r\n10.0_1250_lovely-persimmon-angora-16b58e2e63d4-20220420-184745.mp4 10.0_3260_shabby-viridian-beaver-f153ac423f61-20220423-183209.mp4\r\n10.0_1251_lovely-persimmon-angora-16b58e2e63d4-20220420-185244.mp4 10.0_3261_shabby-viridian-beaver-f153ac423f61-20220423-183707.mp4\r\n10.0_1252_lovely-persimmon-angora-187a492183d7-20220421-045306.mp4 10.0_3262_shabby-viridian-beaver-f153ac423f61-20220423-184205.mp4\r\n10.0_1253_lovely-persimmon-angora-187a492183d7-20220421-045808.mp4 10.0_3263_shabby-viridian-beaver-f153ac423f61-20220423-184703.mp4\r\n10.0_1254_lovely-persimmon-angora-187a492183d7-20220421-050307.mp4 10.0_3264_shabby-viridian-beaver-f153ac423f61-20220423-232531.mp4\r\n10.0_1255_lovely-persimmon-angora-187a492183d7-20220421-050806.mp4 10.0_3265_shabby-viridian-beaver-f153ac423f61-20220423-233030.mp4\r\n10.0_1256_lovely-persimmon-angora-187a492183d7-20220421-051305.mp4 10.0_3266_shabby-viridian-beaver-f153ac423f61-20220423-233529.mp4\r\n10.0_1257_lovely-persimmon-angora-1c4c461b59ff-20220419-143514.mp4 10.0_3267_shabby-viridian-beaver-f153ac423f61-20220423-234027.mp4\r\n10.0_1258_lovely-persimmon-angora-1c4c461b59ff-20220419-144017.mp4 10.0_3268_shabby-viridian-beaver-f153ac423f61-20220423-234525.mp4\r\n10.0_1259_lovely-persimmon-angora-1c4c461b59ff-20220419-144516.mp4 10.0_3269_shabby-viridian-beaver-f20116fc09d7-20220415-154725.mp4\r\n10.0_125_cheeky-cornflower-setter-5ae43471cf61-20220415-191238.mp4 10.0_326_cheeky-cornflower-setter-b70ccca3edf2-20220423-150833.mp4\r\n10.0_1260_lovely-persimmon-angora-1c4c461b59ff-20220419-145016.mp4 10.0_3270_shabby-viridian-beaver-f20116fc09d7-20220415-155223.mp4\r\n10.0_1261_lovely-persimmon-angora-1c8bc3190b1e-20220419-041241.mp4 10.0_3271_shabby-viridian-beaver-f2be760b6170-20220416-185217.mp4\r\n10.0_1262_lovely-persimmon-angora-1c8bc3190b1e-20220419-041749.mp4 10.0_3272_shabby-viridian-beaver-f2be760b6170-20220416-185715.mp4\r\n10.0_1263_lovely-persimmon-angora-1c9c7e2affb2-20220416-093427.mp4 10.0_3273_shabby-viridian-beaver-f2be760b6170-20220416-190213.mp4\r\n10.0_1264_lovely-persimmon-angora-1e25bb76c9d9-20220420-163544.mp4 10.0_3274_shabby-viridian-beaver-f2be760b6170-20220416-190711.mp4\r\n10.0_1265_lovely-persimmon-angora-1e25bb76c9d9-20220420-164045.mp4 10.0_3275_shabby-viridian-beaver-f2be760b6170-20220416-191209.mp4\r\n10.0_1266_lovely-persimmon-angora-1e25bb76c9d9-20220420-164545.mp4 10.0_3276_shabby-viridian-beaver-f60fdabfb97c-20220419-165539.mp4\r\n10.0_1267_lovely-persimmon-angora-1e25bb76c9d9-20220420-165043.mp4 10.0_3277_shabby-viridian-beaver-f60fdabfb97c-20220419-170041.mp4\r\n10.0_1268_lovely-persimmon-angora-1e25bb76c9d9-20220420-165543.mp4 10.0_3278_shabby-viridian-beaver-fb193d5a1dd3-20220418-222731.mp4\r\n10.0_1269_lovely-persimmon-angora-1eb7e9488409-20220419-171857.mp4 10.0_3279_shabby-viridian-beaver-fb193d5a1dd3-20220418-223732.mp4\r\n10.0_126_cheeky-cornflower-setter-5ae43471cf61-20220415-191742.mp4 10.0_327_cheeky-cornflower-setter-b70ccca3edf2-20220423-151340.mp4\r\n10.0_1270_lovely-persimmon-angora-1eb7e9488409-20220419-172401.mp4 10.0_3280_shabby-viridian-beaver-fb193d5a1dd3-20220418-224233.mp4\r\n10.0_1271_lovely-persimmon-angora-1eb7e9488409-20220419-172859.mp4 10.0_3281_shabby-viridian-beaver-fb2041864717-20220422-215417.mp4\r\n10.0_1272_lovely-persimmon-angora-1eb7e9488409-20220419-173359.mp4 10.0_3282_shabby-viridian-beaver-fb774c5ee8c7-20220419-184607.mp4\r\n10.0_1273_lovely-persimmon-angora-1edf0bcaf2e6-20220415-210825.mp4 10.0_3283_shabby-viridian-beaver-fb774c5ee8c7-20220419-185109.mp4\r\n10.0_1274_lovely-persimmon-angora-1fb702eb3fd8-20220416-224242.mp4 10.0_3284_shabby-viridian-beaver-fc8f881d71d0-20220416-140028.mp4\r\n10.0_1275_lovely-persimmon-angora-1fb702eb3fd8-20220416-224745.mp4 10.0_3285_shabby-viridian-beaver-fcf04e6e8f51-20220416-194529.mp4\r\n10.0_1276_lovely-persimmon-angora-1fb702eb3fd8-20220416-225244.mp4 10.0_3286_shabby-viridian-beaver-fcf04e6e8f51-20220416-195028.mp4\r\n10.0_1277_lovely-persimmon-angora-1fb702eb3fd8-20220417-001006.mp4 10.0_3287_shabby-viridian-beaver-fd8a7cbf43a0-20220419-191429.mp4\r\n10.0_1278_lovely-persimmon-angora-1fb702eb3fd8-20220417-001508.mp4 10.0_3288_shabby-viridian-beaver-fd8a7cbf43a0-20220419-191928.mp4\r\n10.0_1279_lovely-persimmon-angora-2244086134f2-20220421-024158.mp4 10.0_3289_shabby-viridian-beaver-fd8a7cbf43a0-20220419-192427.mp4\r\n10.0_127_cheeky-cornflower-setter-5ae43471cf61-20220415-192246.mp4 10.0_328_cheeky-cornflower-setter-b70ccca3edf2-20220423-151848.mp4\r\n10.0_1280_lovely-persimmon-angora-2244086134f2-20220421-024703.mp4 10.0_3290_shabby-viridian-beaver-fd8a7cbf43a0-20220419-192926.mp4\r\n10.0_1281_lovely-persimmon-angora-2244086134f2-20220421-025205.mp4 10.0_3291_shabby-viridian-beaver-fe21c23b45a9-20220415-223817.mp4\r\n10.0_1282_lovely-persimmon-angora-22bbb473cada-20220422-223842.mp4 10.0_3292_shabby-viridian-beaver-fe21c23b45a9-20220415-224318.mp4\r\n10.0_1283_lovely-persimmon-angora-22bbb473cada-20220422-224345.mp4 10.0_3293_shabby-viridian-beaver-fe21c23b45a9-20220415-224817.mp4\r\n10.0_1284_lovely-persimmon-angora-22bbb473cada-20220422-224843.mp4 10.0_3294_shabby-viridian-beaver-fe21c23b45a9-20220415-225320.mp4\r\n10.0_1285_lovely-persimmon-angora-22bbb473cada-20220422-225342.mp4 10.0_3295_shabby-viridian-beaver-ffde53b7eae1-20220420-001147.mp4\r\n10.0_1286_lovely-persimmon-angora-22bbb473cada-20220422-225840.mp4 10.0_3296_sleepy-sangria-bat-0025cfc857cb-20220421-091522.mp4\r\n10.0_1287_lovely-persimmon-angora-22c2fd122070-20220419-052805.mp4 10.0_3297_sleepy-sangria-bat-0025cfc857cb-20220421-092022.mp4\r\n10.0_1288_lovely-persimmon-angora-22c2fd122070-20220419-053317.mp4 10.0_3298_sleepy-sangria-bat-02bf421f1710-20220423-194519.mp4\r\n10.0_1289_lovely-persimmon-angora-22c2fd122070-20220419-053818.mp4 10.0_3299_sleepy-sangria-bat-02bf421f1710-20220423-195030.mp4\r\n10.0_128_cheeky-cornflower-setter-5d1a60d7597b-20220415-124432.mp4 10.0_329_cheeky-cornflower-setter-b7219c8fae54-20220419-200126.mp4\r\n10.0_1290_lovely-persimmon-angora-22c2fd122070-20220419-054321.mp4 10.0_3300_sleepy-sangria-bat-0dc3dd49c6a9-20220422-153403.mp4\r\n10.0_1291_lovely-persimmon-angora-24f3e4f55656-20220417-160454.mp4 10.0_3301_sleepy-sangria-bat-0dc3dd49c6a9-20220422-153900.mp4\r\n10.0_1292_lovely-persimmon-angora-24f3e4f55656-20220417-160957.mp4 10.0_3302_sleepy-sangria-bat-145efaa52ab8-20220421-085159.mp4\r\n10.0_1293_lovely-persimmon-angora-24f3e4f55656-20220417-161455.mp4 10.0_3303_sleepy-sangria-bat-145efaa52ab8-20220421-085657.mp4\r\n10.0_1294_lovely-persimmon-angora-24f3e4f55656-20220417-161952.mp4 10.0_3304_sleepy-sangria-bat-145efaa52ab8-20220421-090158.mp4\r\n10.0_1295_lovely-persimmon-angora-24f3e4f55656-20220417-162451.mp4 10.0_3305_sleepy-sangria-bat-145efaa52ab8-20220421-090656.mp4\r\n10.0_1296_lovely-persimmon-angora-25906f726967-20220417-111614.mp4 10.0_3306_sleepy-sangria-bat-14ad8f0512d2-20220423-105149.mp4\r\n10.0_1297_lovely-persimmon-angora-25906f726967-20220417-112115.mp4 10.0_3307_sleepy-sangria-bat-14ad8f0512d2-20220423-105937.mp4\r\n10.0_1298_lovely-persimmon-angora-25906f726967-20220417-112614.mp4 10.0_3308_sleepy-sangria-bat-14ad8f0512d2-20220423-110435.mp4\r\n10.0_1299_lovely-persimmon-angora-25906f726967-20220417-113111.mp4 10.0_3309_sleepy-sangria-bat-14ad8f0512d2-20220423-110932.mp4\r\n10.0_129_cheeky-cornflower-setter-5d1a60d7597b-20220415-124943.mp4 10.0_330_cheeky-cornflower-setter-b7219c8fae54-20220419-200634.mp4\r\n10.0_1300_lovely-persimmon-angora-25906f726967-20220417-113609.mp4 10.0_3310_sleepy-sangria-bat-15dd4daaf9fa-20220423-082007.mp4\r\n10.0_1301_lovely-persimmon-angora-26b8db3a1263-20220418-211643.mp4 10.0_3311_sleepy-sangria-bat-15dd4daaf9fa-20220423-082506.mp4\r\n10.0_1302_lovely-persimmon-angora-27cb9ddbbbaa-20220419-173923.mp4 10.0_3312_sleepy-sangria-bat-174d23926b18-20220419-191854.mp4\r\n10.0_1303_lovely-persimmon-angora-27cb9ddbbbaa-20220419-175945.mp4 10.0_3313_sleepy-sangria-bat-174d23926b18-20220419-192351.mp4\r\n10.0_1304_lovely-persimmon-angora-28c19408e783-20220416-145224.mp4 10.0_3314_sleepy-sangria-bat-174d23926b18-20220419-192849.mp4\r\n10.0_1305_lovely-persimmon-angora-28c387928916-20220419-204042.mp4 10.0_3315_sleepy-sangria-bat-174d23926b18-20220419-193347.mp4\r\n10.0_1306_lovely-persimmon-angora-296c71edb8f1-20220419-060613.mp4 10.0_3316_sleepy-sangria-bat-1fad6e6a6ba0-20220419-000511.mp4\r\n10.0_1307_lovely-persimmon-angora-296c71edb8f1-20220419-061118.mp4 10.0_3317_sleepy-sangria-bat-1fad6e6a6ba0-20220419-001009.mp4\r\n10.0_1308_lovely-persimmon-angora-2d967542e926-20220421-015105.mp4 10.0_3318_sleepy-sangria-bat-2939d2a26960-20220423-083849.mp4\r\n10.0_1309_lovely-persimmon-angora-2d967542e926-20220421-015609.mp4 10.0_3319_sleepy-sangria-bat-2939d2a26960-20220423-094026.mp4\r\n10.0_130_cheeky-cornflower-setter-5d1d8215a178-20220419-112926.mp4 10.0_331_cheeky-cornflower-setter-b7219c8fae54-20220419-201141.mp4\r\n10.0_1310_lovely-persimmon-angora-2d967542e926-20220421-020107.mp4 10.0_3320_sleepy-sangria-bat-298bc4e8de1c-20220419-185734.mp4\r\n10.0_1311_lovely-persimmon-angora-2d967542e926-20220421-020605.mp4 10.0_3321_sleepy-sangria-bat-298bc4e8de1c-20220419-190232.mp4\r\n10.0_1312_lovely-persimmon-angora-2d967542e926-20220421-021104.mp4 10.0_3322_sleepy-sangria-bat-2ee6b91385c0-20220418-210158.mp4\r\n10.0_1313_lovely-persimmon-angora-2d9af197000c-20220421-213424.mp4 10.0_3323_sleepy-sangria-bat-35bcf77512ba-20220422-154127.mp4\r\n10.0_1314_lovely-persimmon-angora-2d9af197000c-20220421-213933.mp4 10.0_3324_sleepy-sangria-bat-35bcf77512ba-20220422-154629.mp4\r\n10.0_1315_lovely-persimmon-angora-2d9af197000c-20220421-214433.mp4 10.0_3325_sleepy-sangria-bat-35bcf77512ba-20220422-155126.mp4\r\n10.0_1316_lovely-persimmon-angora-2d9af197000c-20220421-214933.mp4 10.0_3326_sleepy-sangria-bat-396c536d3234-20220421-095352.mp4\r\n10.0_1317_lovely-persimmon-angora-2d9af197000c-20220421-215432.mp4 10.0_3327_sleepy-sangria-bat-396c536d3234-20220421-095849.mp4\r\n10.0_1318_lovely-persimmon-angora-2e79ccf83302-20220416-171017.mp4 10.0_3328_sleepy-sangria-bat-396c536d3234-20220421-100347.mp4\r\n10.0_1319_lovely-persimmon-angora-2e79ccf83302-20220416-171518.mp4 10.0_3329_sleepy-sangria-bat-3ae0dca6d3ec-20220422-192616.mp4\r\n10.0_131_cheeky-cornflower-setter-5d1d8215a178-20220419-113437.mp4 10.0_332_cheeky-cornflower-setter-b8644a28c4d6-20220423-130347.mp4\r\n10.0_1320_lovely-persimmon-angora-2e79ccf83302-20220416-172018.mp4 10.0_3330_sleepy-sangria-bat-3ae0dca6d3ec-20220422-193113.mp4\r\n10.0_1321_lovely-persimmon-angora-2e79ccf83302-20220416-172517.mp4 10.0_3331_sleepy-sangria-bat-3ae0dca6d3ec-20220422-193611.mp4\r\n10.0_1322_lovely-persimmon-angora-2e79ccf83302-20220416-173016.mp4 10.0_3332_sleepy-sangria-bat-3fb82658e8aa-20220418-200900.mp4\r\n10.0_1323_lovely-persimmon-angora-2efab21458e7-20220415-060225.mp4 10.0_3333_sleepy-sangria-bat-3fb82658e8aa-20220418-201357.mp4\r\n10.0_1324_lovely-persimmon-angora-2ff9311c3dab-20220419-201530.mp4 10.0_3334_sleepy-sangria-bat-3fb82658e8aa-20220418-201856.mp4\r\n10.0_1325_lovely-persimmon-angora-2ffa23d19ca5-20220417-113640.mp4 10.0_3335_sleepy-sangria-bat-3fb82658e8aa-20220418-202353.mp4\r\n10.0_1326_lovely-persimmon-angora-2ffa23d19ca5-20220417-114140.mp4 10.0_3336_sleepy-sangria-bat-3fb82658e8aa-20220418-202851.mp4\r\n10.0_1327_lovely-persimmon-angora-2ffa23d19ca5-20220417-114638.mp4 10.0_3337_sleepy-sangria-bat-45f92ba107af-20220419-113854.mp4\r\n10.0_1328_lovely-persimmon-angora-2ffa23d19ca5-20220417-115136.mp4 10.0_3338_sleepy-sangria-bat-45f92ba107af-20220419-114353.mp4\r\n10.0_1329_lovely-persimmon-angora-2ffa23d19ca5-20220417-115635.mp4 10.0_3339_sleepy-sangria-bat-45f92ba107af-20220419-114851.mp4\r\n10.0_132_cheeky-cornflower-setter-5d1d8215a178-20220419-113944.mp4 10.0_333_cheeky-cornflower-setter-b9121b1486bf-20220418-153719.mp4\r\n10.0_1330_lovely-persimmon-angora-30447142d295-20220419-215121.mp4 10.0_3340_sleepy-sangria-bat-496a1ee918e0-20220423-103139.mp4\r\n10.0_1331_lovely-persimmon-angora-30447142d295-20220419-215629.mp4 10.0_3341_sleepy-sangria-bat-496a1ee918e0-20220423-103646.mp4\r\n10.0_1332_lovely-persimmon-angora-30447142d295-20220419-220128.mp4 10.0_3342_sleepy-sangria-bat-496a1ee918e0-20220423-104145.mp4\r\n10.0_1333_lovely-persimmon-angora-30447142d295-20220419-222237.mp4 10.0_3343_sleepy-sangria-bat-496a1ee918e0-20220423-104642.mp4\r\n10.0_1334_lovely-persimmon-angora-30447142d295-20220419-225045.mp4 10.0_3344_sleepy-sangria-bat-4c37c16f5fe6-20220419-075239.mp4\r\n10.0_1335_lovely-persimmon-angora-3073016c6b98-20220421-230808.mp4 10.0_3345_sleepy-sangria-bat-4c37c16f5fe6-20220419-075738.mp4\r\n10.0_1336_lovely-persimmon-angora-3084f92078a7-20220419-190114.mp4 10.0_3346_sleepy-sangria-bat-4c8353b1ebf4-20220419-113229.mp4\r\n10.0_1337_lovely-persimmon-angora-3084f92078a7-20220419-190615.mp4 10.0_3347_sleepy-sangria-bat-4c8353b1ebf4-20220419-113728.mp4\r\n10.0_1338_lovely-persimmon-angora-3084f92078a7-20220419-191114.mp4 10.0_3348_sleepy-sangria-bat-5184c5576611-20220422-144244.mp4\r\n10.0_1339_lovely-persimmon-angora-3084f92078a7-20220419-191714.mp4 10.0_3349_sleepy-sangria-bat-5184c5576611-20220422-144743.mp4\r\n10.0_133_cheeky-cornflower-setter-5e8ad2e9bd01-20220423-115712.mp4 10.0_334_cheeky-cornflower-setter-b9121b1486bf-20220418-154228.mp4\r\n10.0_1340_lovely-persimmon-angora-3084f92078a7-20220419-192213.mp4 10.0_3350_sleepy-sangria-bat-5184c5576611-20220422-145241.mp4\r\n10.0_1341_lovely-persimmon-angora-31305535aafe-20220423-013037.mp4 10.0_3351_sleepy-sangria-bat-5184c5576611-20220422-145738.mp4\r\n10.0_1342_lovely-persimmon-angora-31305535aafe-20220423-014202.mp4 10.0_3352_sleepy-sangria-bat-5184c5576611-20220422-150236.mp4\r\n10.0_1343_lovely-persimmon-angora-31305535aafe-20220423-015234.mp4 10.0_3353_sleepy-sangria-bat-5770aab0eacf-20220423-201006.mp4\r\n10.0_1344_lovely-persimmon-angora-31e7f88a96bd-20220415-213028.mp4 10.0_3354_sleepy-sangria-bat-5770aab0eacf-20220423-201501.mp4\r\n10.0_1345_lovely-persimmon-angora-31ecfc70a1c6-20220421-021144.mp4 10.0_3355_sleepy-sangria-bat-5770aab0eacf-20220423-201958.mp4\r\n10.0_1346_lovely-persimmon-angora-31ecfc70a1c6-20220421-021650.mp4 10.0_3356_sleepy-sangria-bat-5770aab0eacf-20220423-202453.mp4\r\n10.0_1347_lovely-persimmon-angora-31ecfc70a1c6-20220421-022150.mp4 10.0_3357_sleepy-sangria-bat-5770aab0eacf-20220423-202949.mp4\r\n10.0_1348_lovely-persimmon-angora-31ecfc70a1c6-20220421-022648.mp4 10.0_3358_sleepy-sangria-bat-5b6b7a0ee938-20220418-234424.mp4\r\n10.0_1349_lovely-persimmon-angora-31ecfc70a1c6-20220421-023146.mp4 10.0_3359_sleepy-sangria-bat-5b6b7a0ee938-20220418-234936.mp4\r\n10.0_134_cheeky-cornflower-setter-5e8ad2e9bd01-20220423-120803.mp4 10.0_335_cheeky-cornflower-setter-b9121b1486bf-20220418-154737.mp4\r\n10.0_1350_lovely-persimmon-angora-3288377c952d-20220420-163416.mp4 10.0_3360_sleepy-sangria-bat-5b6b7a0ee938-20220418-235435.mp4\r\n10.0_1351_lovely-persimmon-angora-33265ab24837-20220420-053047.mp4 10.0_3361_sleepy-sangria-bat-5b6b7a0ee938-20220418-235932.mp4\r\n10.0_1352_lovely-persimmon-angora-334c8decb5fa-20220415-062620.mp4 10.0_3362_sleepy-sangria-bat-5b6b7a0ee938-20220419-000429.mp4\r\n10.0_1353_lovely-persimmon-angora-336494bc7dce-20220414-055654.mp4 10.0_3363_sleepy-sangria-bat-659413519dee-20220423-094613.mp4\r\n10.0_1354_lovely-persimmon-angora-336494bc7dce-20220414-060158.mp4 10.0_3364_sleepy-sangria-bat-659413519dee-20220423-095111.mp4\r\n10.0_1355_lovely-persimmon-angora-336494bc7dce-20220414-060657.mp4 10.0_3365_sleepy-sangria-bat-659413519dee-20220423-095608.mp4\r\n10.0_1356_lovely-persimmon-angora-3404e92e626c-20220420-145427.mp4 10.0_3366_sleepy-sangria-bat-69ec1452a14b-20220418-205425.mp4\r\n10.0_1357_lovely-persimmon-angora-3404e92e626c-20220420-145930.mp4 10.0_3367_sleepy-sangria-bat-69ec1452a14b-20220418-205925.mp4\r\n10.0_1358_lovely-persimmon-angora-3404e92e626c-20220420-150430.mp4 10.0_3368_sleepy-sangria-bat-6d257b873b79-20220418-204120.mp4\r\n10.0_1359_lovely-persimmon-angora-3404e92e626c-20220420-150927.mp4 10.0_3369_sleepy-sangria-bat-6d257b873b79-20220418-204617.mp4\r\n10.0_135_cheeky-cornflower-setter-603ae953a25f-20220417-205436.mp4 10.0_336_cheeky-cornflower-setter-ba761252d897-20220419-094338.mp4\r\n10.0_1360_lovely-persimmon-angora-3404e92e626c-20220420-151426.mp4 10.0_3370_sleepy-sangria-bat-6d257b873b79-20220418-205115.mp4\r\n10.0_1361_lovely-persimmon-angora-34e052d104c7-20220415-050919.mp4 10.0_3371_sleepy-sangria-bat-6e8b1824d178-20220421-091247.mp4\r\n10.0_1362_lovely-persimmon-angora-352cffd8e048-20220419-152548.mp4 10.0_3372_sleepy-sangria-bat-8098c744ddd2-20220421-094050.mp4\r\n10.0_1363_lovely-persimmon-angora-3548d13fdcf3-20220422-075440.mp4 10.0_3373_sleepy-sangria-bat-900bba940d98-20220421-083811.mp4\r\n10.0_1364_lovely-persimmon-angora-3548d13fdcf3-20220422-080005.mp4 10.0_3374_sleepy-sangria-bat-900bba940d98-20220421-084309.mp4\r\n10.0_1365_lovely-persimmon-angora-3548d13fdcf3-20220422-080503.mp4 10.0_3375_sleepy-sangria-bat-900bba940d98-20220421-084807.mp4\r\n10.0_1366_lovely-persimmon-angora-3548d13fdcf3-20220422-081001.mp4 10.0_3376_sleepy-sangria-bat-94c55b03c383-20220421-131426.mp4\r\n10.0_1367_lovely-persimmon-angora-3657d516f483-20220416-095509.mp4 10.0_3377_sleepy-sangria-bat-94c55b03c383-20220421-131924.mp4\r\n10.0_1368_lovely-persimmon-angora-37459773914b-20220420-114827.mp4 10.0_3378_sleepy-sangria-bat-96d58ff0544b-20220422-184809.mp4\r\n10.0_1369_lovely-persimmon-angora-37459773914b-20220420-115328.mp4 10.0_3379_sleepy-sangria-bat-96d58ff0544b-20220422-185307.mp4\r\n10.0_136_cheeky-cornflower-setter-603ae953a25f-20220417-210004.mp4 10.0_337_cheeky-cornflower-setter-ba761252d897-20220419-094848.mp4\r\n10.0_1370_lovely-persimmon-angora-37459773914b-20220420-115826.mp4 10.0_3380_sleepy-sangria-bat-96d58ff0544b-20220422-185805.mp4\r\n10.0_1371_lovely-persimmon-angora-37459773914b-20220420-120326.mp4 10.0_3381_sleepy-sangria-bat-96d58ff0544b-20220422-190303.mp4\r\n10.0_1372_lovely-persimmon-angora-3a253264372c-20220416-152319.mp4 10.0_3382_sleepy-sangria-bat-96d58ff0544b-20220422-190800.mp4\r\n10.0_1373_lovely-persimmon-angora-3a253264372c-20220416-152824.mp4 10.0_3383_sleepy-sangria-bat-9c76ecb83494-20220423-111316.mp4\r\n10.0_1374_lovely-persimmon-angora-3a253264372c-20220416-153323.mp4 10.0_3384_sleepy-sangria-bat-9c76ecb83494-20220423-111813.mp4\r\n10.0_1375_lovely-persimmon-angora-3a3b72afb244-20220419-192250.mp4 10.0_3385_sleepy-sangria-bat-a06163ca0757-20220419-191705.mp4\r\n10.0_1376_lovely-persimmon-angora-3a3b72afb244-20220419-192752.mp4 10.0_3386_sleepy-sangria-bat-a4c5196155a2-20220419-001159.mp4\r\n10.0_1377_lovely-persimmon-angora-3ad5180d2c59-20220416-022422.mp4 10.0_3387_sleepy-sangria-bat-a4c5196155a2-20220419-005156.mp4\r\n10.0_1378_lovely-persimmon-angora-3ad5180d2c59-20220416-023734.mp4 10.0_3388_sleepy-sangria-bat-a4c5196155a2-20220419-005653.mp4\r\n10.0_1379_lovely-persimmon-angora-3ad5180d2c59-20220416-024231.mp4 10.0_3389_sleepy-sangria-bat-a4c5196155a2-20220419-010151.mp4\r\n10.0_137_cheeky-cornflower-setter-603ae953a25f-20220417-210521.mp4 10.0_338_cheeky-cornflower-setter-ba761252d897-20220419-095402.mp4\r\n10.0_1380_lovely-persimmon-angora-3ad5180d2c59-20220416-024730.mp4 10.0_3390_sleepy-sangria-bat-a6ce56407b9d-20220423-095713.mp4\r\n10.0_1381_lovely-persimmon-angora-3ad5180d2c59-20220416-025228.mp4 10.0_3391_sleepy-sangria-bat-ad6c33905986-20220421-092210.mp4\r\n10.0_1382_lovely-persimmon-angora-3b30c4a4049a-20220420-130935.mp4 10.0_3392_sleepy-sangria-bat-ad6c33905986-20220421-092738.mp4\r\n10.0_1383_lovely-persimmon-angora-3b30c4a4049a-20220420-131436.mp4 10.0_3393_sleepy-sangria-bat-ad6c33905986-20220421-093235.mp4\r\n10.0_1384_lovely-persimmon-angora-3c78468a9042-20220419-145545.mp4 10.0_3394_sleepy-sangria-bat-b2a5afa4351e-20220421-091217.mp4\r\n10.0_1385_lovely-persimmon-angora-3c78468a9042-20220419-150045.mp4 10.0_3395_sleepy-sangria-bat-b2a7525cf086-20220419-080541.mp4\r\n10.0_1386_lovely-persimmon-angora-3c78468a9042-20220419-150543.mp4 10.0_3396_sleepy-sangria-bat-b2a7525cf086-20220419-081047.mp4\r\n10.0_1387_lovely-persimmon-angora-3c78468a9042-20220419-151042.mp4 10.0_3397_sleepy-sangria-bat-c884235aa093-20220422-194033.mp4\r\n10.0_1388_lovely-persimmon-angora-3d74490f8409-20220420-163118.mp4 10.0_3398_sleepy-sangria-bat-c884235aa093-20220422-194533.mp4\r\n10.0_1389_lovely-persimmon-angora-414f1d1a86b7-20220420-135058.mp4 10.0_3399_sleepy-sangria-bat-c884235aa093-20220422-195031.mp4\r\n10.0_138_cheeky-cornflower-setter-603ae953a25f-20220417-211032.mp4 10.0_339_cheeky-cornflower-setter-ba761252d897-20220419-095909.mp4\r\n10.0_1390_lovely-persimmon-angora-414f1d1a86b7-20220420-135718.mp4 10.0_3400_sleepy-sangria-bat-c884235aa093-20220422-195529.mp4\r\n10.0_1391_lovely-persimmon-angora-4212e3280f44-20220422-005831.mp4 10.0_3401_sleepy-sangria-bat-c884235aa093-20220422-200026.mp4\r\n10.0_1392_lovely-persimmon-angora-4212e3280f44-20220422-010331.mp4 10.0_3402_sleepy-sangria-bat-c9625ede275b-20220421-094149.mp4\r\n10.0_1393_lovely-persimmon-angora-4212e3280f44-20220422-010831.mp4 10.0_3403_sleepy-sangria-bat-d10cb639eb47-20220421-094602.mp4\r\n10.0_1394_lovely-persimmon-angora-4212e3280f44-20220422-011333.mp4 10.0_3404_sleepy-sangria-bat-d10cb639eb47-20220421-095100.mp4\r\n10.0_1395_lovely-persimmon-angora-4212e3280f44-20220422-011834.mp4 10.0_3405_sleepy-sangria-bat-e280bfe2e7f2-20220418-203322.mp4\r\n10.0_1396_lovely-persimmon-angora-422fb1d1c106-20220421-065801.mp4 10.0_3406_sleepy-sangria-bat-e280bfe2e7f2-20220418-203819.mp4\r\n10.0_1397_lovely-persimmon-angora-422fb1d1c106-20220421-070303.mp4 10.0_3407_sleepy-sangria-bat-ec361314e1ef-20220421-093605.mp4\r\n10.0_1398_lovely-persimmon-angora-4647402a7d60-20220416-144819.mp4 10.0_3408_sleepy-sangria-bat-f153ac423f61-20220414-083132.mp4\r\n10.0_1399_lovely-persimmon-angora-4651643a9112-20220416-185933.mp4 10.0_3409_sleepy-sangria-bat-f153ac423f61-20220414-083631.mp4\r\n10.0_139_cheeky-cornflower-setter-62c1ef37385e-20220416-101441.mp4 10.0_340_cheeky-cornflower-setter-bb79267bce10-20220423-201318.mp4\r\n10.0_1400_lovely-persimmon-angora-4651643a9112-20220416-190437.mp4 10.0_3410_sleepy-sangria-bat-f153ac423f61-20220414-090329.mp4\r\n10.0_1401_lovely-persimmon-angora-4651643a9112-20220416-190936.mp4 10.0_3411_sleepy-sangria-bat-f153ac423f61-20220414-090827.mp4\r\n10.0_1402_lovely-persimmon-angora-4651643a9112-20220416-191435.mp4 10.0_3412_sleepy-sangria-bat-f153ac423f61-20220414-091838.mp4\r\n10.0_1403_lovely-persimmon-angora-4651643a9112-20220416-191934.mp4 10.0_3413_sleepy-sangria-bat-f153ac423f61-20220414-092347.mp4\r\n10.0_1404_lovely-persimmon-angora-475f5933cfa7-20220416-065610.mp4 10.0_3414_sleepy-sangria-bat-f153ac423f61-20220414-093630.mp4\r\n10.0_1405_lovely-persimmon-angora-475f5933cfa7-20220416-070121.mp4 10.0_3415_sleepy-sangria-bat-f153ac423f61-20220414-094128.mp4\r\n10.0_1406_lovely-persimmon-angora-475f5933cfa7-20220416-071121.mp4 10.0_3416_sleepy-sangria-bat-f153ac423f61-20220414-104630.mp4\r\n10.0_1407_lovely-persimmon-angora-4843c8b8be9c-20220417-153645.mp4 10.0_3417_sleepy-sangria-bat-f153ac423f61-20220414-105210.mp4\r\n10.0_1408_lovely-persimmon-angora-48bf00edae01-20220421-043237.mp4 10.0_3418_sleepy-sangria-bat-f153ac423f61-20220414-112115.mp4\r\n10.0_1409_lovely-persimmon-angora-48bf00edae01-20220421-043739.mp4 10.0_3419_sleepy-sangria-bat-f153ac423f61-20220414-123403.mp4\r\n10.0_140_cheeky-cornflower-setter-62c1ef37385e-20220416-102007.mp4 10.0_341_cheeky-cornflower-setter-bb79267bce10-20220423-202445.mp4\r\n10.0_1410_lovely-persimmon-angora-48bf00edae01-20220421-044238.mp4 10.0_3420_sleepy-sangria-bat-f153ac423f61-20220414-124315.mp4\r\n10.0_1411_lovely-persimmon-angora-48bf00edae01-20220421-044736.mp4 10.0_3421_sleepy-sangria-bat-f153ac423f61-20220414-124813.mp4\r\n10.0_1412_lovely-persimmon-angora-48bf00edae01-20220421-045234.mp4 10.0_3422_sleepy-sangria-bat-f153ac423f61-20220414-125310.mp4\r\n10.0_1413_lovely-persimmon-angora-49d1202850a7-20220421-110810.mp4 10.0_3423_sleepy-sangria-bat-f153ac423f61-20220414-131854.mp4\r\n10.0_1414_lovely-persimmon-angora-4d1f198cb701-20220422-073411.mp4 10.0_3424_sleepy-sangria-bat-f153ac423f61-20220414-132357.mp4\r\n10.0_1415_lovely-persimmon-angora-4d1f198cb701-20220422-073914.mp4 10.0_3425_sleepy-sangria-bat-f153ac423f61-20220416-134138.mp4\r\n10.0_1416_lovely-persimmon-angora-4d1f198cb701-20220422-074413.mp4 10.0_3426_sleepy-sangria-bat-f153ac423f61-20220416-134638.mp4\r\n10.0_1417_lovely-persimmon-angora-4d1f198cb701-20220422-074912.mp4 10.0_3427_sleepy-sangria-bat-f153ac423f61-20220416-140510.mp4\r\n10.0_1418_lovely-persimmon-angora-4d1f198cb701-20220422-075411.mp4 10.0_3428_sleepy-sangria-bat-f153ac423f61-20220416-141008.mp4\r\n10.0_1419_lovely-persimmon-angora-4d8e395803e9-20220422-210039.mp4 10.0_3429_sleepy-sangria-bat-f153ac423f61-20220416-141506.mp4\r\n10.0_141_cheeky-cornflower-setter-64d26e336638-20220417-145631.mp4 10.0_342_cheeky-cornflower-setter-bb8af8e8276f-20220419-110706.mp4\r\n10.0_1420_lovely-persimmon-angora-4d8e395803e9-20220422-211257.mp4 10.0_3430_sleepy-sangria-bat-f153ac423f61-20220416-174123.mp4\r\n10.0_1421_lovely-persimmon-angora-4d8e395803e9-20220422-212253.mp4 10.0_3431_sleepy-sangria-bat-f153ac423f61-20220416-174628.mp4\r\n10.0_1422_lovely-persimmon-angora-4e0615a6802e-20220421-065428.mp4 10.0_3432_sleepy-sangria-bat-f153ac423f61-20220418-195822.mp4\r\n10.0_1423_lovely-persimmon-angora-4e6c840dbd29-20220420-175239.mp4 10.0_3433_sleepy-sangria-bat-f153ac423f61-20220418-200413.mp4\r\n10.0_1424_lovely-persimmon-angora-4e6c840dbd29-20220420-175746.mp4 10.0_3434_sleepy-sangria-bat-f153ac423f61-20220418-233736.mp4\r\n10.0_1425_lovely-persimmon-angora-4edb8898a34e-20220420-162029.mp4 10.0_3435_sleepy-sangria-bat-f153ac423f61-20220418-234235.mp4\r\n10.0_1426_lovely-persimmon-angora-505c82e4e26a-20220417-201445.mp4 10.0_3436_sleepy-sangria-bat-f153ac423f61-20220419-074604.mp4\r\n10.0_1427_lovely-persimmon-angora-505c82e4e26a-20220417-201949.mp4 10.0_3437_sleepy-sangria-bat-f153ac423f61-20220419-075112.mp4\r\n10.0_1428_lovely-persimmon-angora-505c82e4e26a-20220417-202448.mp4 10.0_3438_sleepy-sangria-bat-f153ac423f61-20220419-112036.mp4\r\n10.0_1429_lovely-persimmon-angora-505c82e4e26a-20220417-202947.mp4 10.0_3439_sleepy-sangria-bat-f153ac423f61-20220419-112534.mp4\r\n10.0_142_cheeky-cornflower-setter-64d26e336638-20220417-150219.mp4 10.0_343_cheeky-cornflower-setter-bc4987dff6a7-20220423-220043.mp4\r\n10.0_1430_lovely-persimmon-angora-5169bb1b965f-20220420-003757.mp4 10.0_3440_sleepy-sangria-bat-f153ac423f61-20220419-184021.mp4\r\n10.0_1431_lovely-persimmon-angora-5169bb1b965f-20220420-004804.mp4 10.0_3441_sleepy-sangria-bat-f153ac423f61-20220419-184519.mp4\r\n10.0_1432_lovely-persimmon-angora-5169bb1b965f-20220420-005805.mp4 10.0_3442_sleepy-sangria-bat-f153ac423f61-20220419-185017.mp4\r\n10.0_1433_lovely-persimmon-angora-519543ffb3ff-20220420-102616.mp4 10.0_3443_sleepy-sangria-bat-f153ac423f61-20220419-185514.mp4\r\n10.0_1434_lovely-persimmon-angora-519543ffb3ff-20220420-103119.mp4 10.0_3444_sleepy-sangria-bat-f153ac423f61-20220419-194644.mp4\r\n10.0_1435_lovely-persimmon-angora-519543ffb3ff-20220420-103618.mp4 10.0_3445_sleepy-sangria-bat-f153ac423f61-20220419-195143.mp4\r\n10.0_1436_lovely-persimmon-angora-5214c796ec92-20220421-222924.mp4 10.0_3446_sleepy-sangria-bat-f153ac423f61-20220419-195641.mp4\r\n10.0_1437_lovely-persimmon-angora-5214c796ec92-20220421-223425.mp4 10.0_3447_sleepy-sangria-bat-f153ac423f61-20220420-121808.mp4\r\n10.0_1438_lovely-persimmon-angora-5214c796ec92-20220421-223924.mp4 10.0_3448_sleepy-sangria-bat-f153ac423f61-20220420-122310.mp4\r\n10.0_1439_lovely-persimmon-angora-530398bfed86-20220419-202013.mp4 10.0_3449_sleepy-sangria-bat-f153ac423f61-20220420-122808.mp4\r\n10.0_143_cheeky-cornflower-setter-64d26e336638-20220417-150726.mp4 10.0_344_cheeky-cornflower-setter-bc4987dff6a7-20220423-221053.mp4\r\n10.0_1440_lovely-persimmon-angora-530398bfed86-20220419-203514.mp4 10.0_3450_sleepy-sangria-bat-f153ac423f61-20220420-123306.mp4\r\n10.0_1441_lovely-persimmon-angora-5370508beb1f-20220419-061637.mp4 10.0_3451_sleepy-sangria-bat-f153ac423f61-20220420-123803.mp4\r\n10.0_1442_lovely-persimmon-angora-53d61a51fb45-20220418-070612.mp4 10.0_3452_sleepy-sangria-bat-f153ac423f61-20220420-195234.mp4\r\n10.0_1443_lovely-persimmon-angora-53d61a51fb45-20220418-071119.mp4 10.0_3453_sleepy-sangria-bat-f153ac423f61-20220420-195732.mp4\r\n10.0_1444_lovely-persimmon-angora-53d61a51fb45-20220418-071619.mp4 10.0_3454_sleepy-sangria-bat-f153ac423f61-20220420-200230.mp4\r\n10.0_1445_lovely-persimmon-angora-53d61a51fb45-20220418-072120.mp4 10.0_3455_sleepy-sangria-bat-f153ac423f61-20220421-083145.mp4\r\n10.0_1446_lovely-persimmon-angora-54559f55b0ac-20220419-041958.mp4 10.0_3456_sleepy-sangria-bat-f153ac423f61-20220421-083643.mp4\r\n10.0_1447_lovely-persimmon-angora-571b2b041533-20220423-000650.mp4 10.0_3457_sleepy-sangria-bat-f153ac423f61-20220421-091455.mp4\r\n10.0_1448_lovely-persimmon-angora-5734d26786c1-20220417-134921.mp4 10.0_3458_sleepy-sangria-bat-f153ac423f61-20220421-130011.mp4\r\n10.0_1449_lovely-persimmon-angora-587b22a134cc-20220421-025934.mp4 10.0_3459_sleepy-sangria-bat-f153ac423f61-20220421-130526.mp4\r\n10.0_144_cheeky-cornflower-setter-65ecf468b668-20220418-130826.mp4 10.0_345_cheeky-cornflower-setter-bf89cc58758a-20220414-205319.mp4\r\n10.0_1450_lovely-persimmon-angora-5a2f21a32abf-20220414-231147.mp4 10.0_3460_sleepy-sangria-bat-f153ac423f61-20220421-131024.mp4\r\n10.0_1451_lovely-persimmon-angora-5afd3b4eead3-20220415-192240.mp4 10.0_3461_sleepy-sangria-bat-f153ac423f61-20220422-142154.mp4\r\n10.0_1452_lovely-persimmon-angora-5b6e42917ab6-20220422-234451.mp4 10.0_3462_sleepy-sangria-bat-f153ac423f61-20220422-142654.mp4\r\n10.0_1453_lovely-persimmon-angora-5cfbbfb6dc01-20220417-135348.mp4 10.0_3463_sleepy-sangria-bat-f153ac423f61-20220422-143153.mp4\r\n10.0_1454_lovely-persimmon-angora-5f071212c398-20220421-051339.mp4 10.0_3464_sleepy-sangria-bat-f153ac423f61-20220422-143650.mp4\r\n10.0_1455_lovely-persimmon-angora-5f071212c398-20220421-051841.mp4 10.0_3465_sleepy-sangria-bat-f153ac423f61-20220422-183907.mp4\r\n10.0_1456_lovely-persimmon-angora-5f071212c398-20220421-052339.mp4 10.0_3466_sleepy-sangria-bat-f153ac423f61-20220422-184405.mp4\r\n10.0_1457_lovely-persimmon-angora-5f071212c398-20220421-052837.mp4 10.0_3467_sleepy-sangria-bat-f153ac423f61-20220423-075950.mp4\r\n10.0_1458_lovely-persimmon-angora-5f564d869597-20220422-191422.mp4 10.0_3468_sleepy-sangria-bat-f153ac423f61-20220423-080448.mp4\r\n10.0_1459_lovely-persimmon-angora-5f564d869597-20220422-193004.mp4 10.0_3469_sleepy-sangria-bat-f153ac423f61-20220423-080946.mp4\r\n10.0_145_cheeky-cornflower-setter-6a13704ffb3a-20220421-152435.mp4 10.0_346_cheeky-cornflower-setter-bf89cc58758a-20220414-205826.mp4\r\n10.0_1460_lovely-persimmon-angora-5f564d869597-20220422-193503.mp4 10.0_3470_sleepy-sangria-bat-f153ac423f61-20220423-081443.mp4\r\n10.0_1461_lovely-persimmon-angora-607d3aa51fea-20220417-223957.mp4 10.0_3471_sleepy-sangria-bat-f153ac423f61-20220423-081941.mp4\r\n10.0_1462_lovely-persimmon-angora-607d3aa51fea-20220417-224501.mp4 10.0_3472_sleepy-sangria-bat-f153ac423f61-20220423-101106.mp4\r\n",,terminal_output +335,868352,"TERMINAL",0,0,"ls",,terminal_focus +336,868446,"TERMINAL",0,0,"10.0_1463_lovely-persimmon-angora-607d3aa51fea-20220417-225003.mp4 10.0_3473_sleepy-sangria-bat-f153ac423f61-20220423-101604.mp4\r\n10.0_1464_lovely-persimmon-angora-607d3aa51fea-20220417-225504.mp4 10.0_3474_sleepy-sangria-bat-f153ac423f61-20220423-102102.mp4\r\n10.0_1465_lovely-persimmon-angora-607d3aa51fea-20220417-230002.mp4 10.0_3475_sleepy-sangria-bat-f153ac423f61-20220423-102600.mp4\r\n10.0_1466_lovely-persimmon-angora-630146405c59-20220420-093409.mp4 10.0_3476_sleepy-sangria-bat-f153ac423f61-20220423-103057.mp4\r\n10.0_1467_lovely-persimmon-angora-630146405c59-20220420-093912.mp4 10.0_3477_sleepy-sangria-bat-f153ac423f61-20220423-134112.mp4\r\n10.0_1468_lovely-persimmon-angora-630146405c59-20220420-094411.mp4 10.0_3478_sleepy-sangria-bat-f153ac423f61-20220423-134610.mp4\r\n10.0_1469_lovely-persimmon-angora-630146405c59-20220420-094910.mp4 10.0_3479_sleepy-sangria-bat-f153ac423f61-20220423-135108.mp4\r\n10.0_146_cheeky-cornflower-setter-6a13704ffb3a-20220421-153440.mp4 10.0_347_cheeky-cornflower-setter-bf89cc58758a-20220414-210333.mp4\r\n10.0_1470_lovely-persimmon-angora-630146405c59-20220420-095408.mp4 10.0_3480_sleepy-sangria-bat-f153ac423f61-20220423-135605.mp4\r\n10.0_1471_lovely-persimmon-angora-649904ae671b-20220420-134734.mp4 10.0_3481_sleepy-sangria-bat-f153ac423f61-20220423-175602.mp4\r\n10.0_1472_lovely-persimmon-angora-656b0f8dff54-20220417-173620.mp4 10.0_3482_sleepy-sangria-bat-f153ac423f61-20220423-180106.mp4\r\n10.0_1473_lovely-persimmon-angora-656b0f8dff54-20220417-174123.mp4 10.0_3483_sleepy-sangria-bat-f153ac423f61-20220423-180604.mp4\r\n10.0_1474_lovely-persimmon-angora-656b0f8dff54-20220417-174624.mp4 10.0_3484_sleepy-sangria-bat-f153ac423f61-20220423-181101.mp4\r\n10.0_1475_lovely-persimmon-angora-656b0f8dff54-20220417-175122.mp4 10.0_3485_sleepy-sangria-bat-f153ac423f61-20220423-192037.mp4\r\n10.0_1476_lovely-persimmon-angora-656b0f8dff54-20220417-175621.mp4 10.0_3486_sleepy-sangria-bat-f153ac423f61-20220423-192535.mp4\r\n10.0_1477_lovely-persimmon-angora-65993931df7a-20220423-090516.mp4 10.0_3487_sleepy-sangria-bat-f153ac423f61-20220423-193033.mp4\r\n10.0_1478_lovely-persimmon-angora-65993931df7a-20220423-091020.mp4 10.0_3488_sleepy-sangria-bat-f153ac423f61-20220423-193531.mp4\r\n10.0_1479_lovely-persimmon-angora-65993931df7a-20220423-091519.mp4 10.0_3489_sleepy-sangria-bat-f153ac423f61-20220423-194028.mp4\r\n10.0_147_cheeky-cornflower-setter-6b3831c95bf8-20220417-112336.mp4 10.0_348_cheeky-cornflower-setter-bf8ed7e000e0-20220417-170003.mp4\r\n10.0_1480_lovely-persimmon-angora-65993931df7a-20220423-092017.mp4 10.0_3490_sleepy-sangria-bat-fa0de4ef2478-20220423-082844.mp4\r\n10.0_1481_lovely-persimmon-angora-65993931df7a-20220423-092522.mp4 10.0_3491_sleepy-sangria-bat-fa0de4ef2478-20220423-083341.mp4\r\n10.0_1482_lovely-persimmon-angora-6a1dbd38c061-20220419-145138.mp4 10.0_3492_snippy-chartreuse-mastiff-540f6a3be856-20220418-221234.mp4\r\n10.0_1483_lovely-persimmon-angora-6b076902d6d1-20220420-025445.mp4 10.0_3493_snippy-chartreuse-mastiff-68b5723ce118-20220418-215842.mp4\r\n10.0_1484_lovely-persimmon-angora-6b076902d6d1-20220420-025957.mp4 10.0_3494_snippy-chartreuse-mastiff-68b5723ce118-20220418-220340.mp4\r\n10.0_1485_lovely-persimmon-angora-6b9f856320a4-20220416-210808.mp4 10.0_3495_snippy-chartreuse-mastiff-68b5723ce118-20220418-220839.mp4\r\n10.0_1486_lovely-persimmon-angora-6b9f856320a4-20220416-211509.mp4 10.0_3496_snippy-chartreuse-mastiff-6cbb3de3d25d-20220418-221344.mp4\r\n10.0_1487_lovely-persimmon-angora-6d78b882a101-20220422-132722.mp4 10.0_3497_snippy-chartreuse-mastiff-6cbb3de3d25d-20220418-221841.mp4\r\n10.0_1488_lovely-persimmon-angora-6d78b882a101-20220422-133227.mp4 10.0_3498_snippy-chartreuse-mastiff-6cbb3de3d25d-20220418-222342.mp4\r\n10.0_1489_lovely-persimmon-angora-6d78b882a101-20220422-133726.mp4 10.0_3499_snippy-chartreuse-mastiff-6cbb3de3d25d-20220418-222839.mp4\r\n10.0_148_cheeky-cornflower-setter-6b3831c95bf8-20220417-112844.mp4 10.0_349_cheeky-cornflower-setter-bf8ed7e000e0-20220417-170515.mp4\r\n10.0_1490_lovely-persimmon-angora-6d78b882a101-20220422-134224.mp4 10.0_3500_snippy-chartreuse-mastiff-f153ac423f61-20220418-214117.mp4\r\n10.0_1491_lovely-persimmon-angora-6d78b882a101-20220422-134724.mp4 10.0_3501_snippy-chartreuse-mastiff-f153ac423f61-20220418-214616.mp4\r\n10.0_1492_lovely-persimmon-angora-6e7076db228a-20220419-180013.mp4 10.0_3502_snippy-chartreuse-mastiff-f153ac423f61-20220418-215115.mp4\r\n10.0_1493_lovely-persimmon-angora-6fcfe95568b8-20220420-053933.mp4 10.0_3503_snippy-chartreuse-mastiff-f153ac423f61-20220418-215614.mp4\r\n10.0_1494_lovely-persimmon-angora-6fcfe95568b8-20220420-054441.mp4 10.0_3504_squeaky-magnolia-ocelot-014f0ece98db-20220418-131818.mp4\r\n10.0_1495_lovely-persimmon-angora-6fcfe95568b8-20220420-054945.mp4 10.0_3505_squeaky-magnolia-ocelot-06d076f8aae5-20220421-094345.mp4\r\n10.0_1496_lovely-persimmon-angora-6fcfe95568b8-20220420-055448.mp4 10.0_3506_squeaky-magnolia-ocelot-06d076f8aae5-20220421-094845.mp4\r\n10.0_1497_lovely-persimmon-angora-6fcfe95568b8-20220420-055949.mp4 10.0_3507_squeaky-magnolia-ocelot-06d076f8aae5-20220421-095341.mp4\r\n10.0_1498_lovely-persimmon-angora-712ead71701b-20220416-082630.mp4 10.0_3508_squeaky-magnolia-ocelot-06d076f8aae5-20220421-095837.mp4\r\n10.0_1499_lovely-persimmon-angora-71e999b8825e-20220416-161141.mp4 10.0_3509_squeaky-magnolia-ocelot-06d076f8aae5-20220421-100332.mp4\r\n10.0_149_cheeky-cornflower-setter-6b3831c95bf8-20220417-113353.mp4 10.0_350_cheeky-cornflower-setter-bf8ed7e000e0-20220417-171029.mp4\r\n10.0_1500_lovely-persimmon-angora-71e999b8825e-20220416-161644.mp4 10.0_3510_squeaky-magnolia-ocelot-06ddd1ba5402-20220419-122246.mp4\r\n10.0_1501_lovely-persimmon-angora-71e999b8825e-20220416-162142.mp4 10.0_3511_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-143307.mp4\r\n10.0_1502_lovely-persimmon-angora-71e999b8825e-20220416-162641.mp4 10.0_3512_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-143812.mp4\r\n10.0_1503_lovely-persimmon-angora-71e999b8825e-20220416-163139.mp4 10.0_3513_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-144309.mp4\r\n10.0_1504_lovely-persimmon-angora-72cb86c4a5cf-20220417-140116.mp4 10.0_3514_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-144804.mp4\r\n10.0_1505_lovely-persimmon-angora-72cb86c4a5cf-20220417-140741.mp4 10.0_3515_squeaky-magnolia-ocelot-0a163c4e54b9-20220419-145300.mp4\r\n10.0_1506_lovely-persimmon-angora-72cb86c4a5cf-20220417-141356.mp4 10.0_3516_squeaky-magnolia-ocelot-12c3ac2ddd81-20220418-175609.mp4\r\n10.0_1507_lovely-persimmon-angora-72da6caace0d-20220418-222516.mp4 10.0_3517_squeaky-magnolia-ocelot-12c3ac2ddd81-20220418-180105.mp4\r\n10.0_1508_lovely-persimmon-angora-72da6caace0d-20220418-223711.mp4 10.0_3518_squeaky-magnolia-ocelot-12c3ac2ddd81-20220418-180602.mp4\r\n10.0_1509_lovely-persimmon-angora-72da6caace0d-20220418-224212.mp4 10.0_3519_squeaky-magnolia-ocelot-12c3ac2ddd81-20220418-181057.mp4\r\n10.0_150_cheeky-cornflower-setter-6b3831c95bf8-20220417-113902.mp4 10.0_351_cheeky-cornflower-setter-bf8ed7e000e0-20220417-171541.mp4\r\n10.0_1510_lovely-persimmon-angora-72da6caace0d-20220418-224711.mp4 10.0_3520_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-201359.mp4\r\n10.0_1511_lovely-persimmon-angora-7320f0823e89-20220417-103104.mp4 10.0_3521_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-201856.mp4\r\n10.0_1512_lovely-persimmon-angora-7320f0823e89-20220417-103607.mp4 10.0_3522_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-202352.mp4\r\n10.0_1513_lovely-persimmon-angora-7320f0823e89-20220417-104107.mp4 10.0_3523_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-202848.mp4\r\n10.0_1514_lovely-persimmon-angora-7320f0823e89-20220417-105020.mp4 10.0_3524_squeaky-magnolia-ocelot-1630dd37bd5f-20220421-203346.mp4\r\n10.0_1515_lovely-persimmon-angora-7320f0823e89-20220417-105518.mp4 10.0_3525_squeaky-magnolia-ocelot-18af0fece069-20220420-104912.mp4\r\n10.0_1516_lovely-persimmon-angora-738809e79cc7-20220416-145446.mp4 10.0_3526_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-190056.mp4\r\n10.0_1517_lovely-persimmon-angora-738809e79cc7-20220416-145947.mp4 10.0_3527_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-190554.mp4\r\n10.0_1518_lovely-persimmon-angora-738809e79cc7-20220416-150446.mp4 10.0_3528_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-191050.mp4\r\n10.0_1519_lovely-persimmon-angora-738809e79cc7-20220416-150944.mp4 10.0_3529_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-192144.mp4\r\n10.0_151_cheeky-cornflower-setter-6b3831c95bf8-20220417-114517.mp4 10.0_352_cheeky-cornflower-setter-bf8ed7e000e0-20220417-172052.mp4\r\n10.0_1520_lovely-persimmon-angora-738809e79cc7-20220416-151443.mp4 10.0_3530_squeaky-magnolia-ocelot-19e1fd29bbc4-20220419-192640.mp4\r\n10.0_1521_lovely-persimmon-angora-743ac0c64519-20220416-212236.mp4 10.0_3531_squeaky-magnolia-ocelot-1bf1b2dfc348-20220419-122814.mp4\r\n10.0_1522_lovely-persimmon-angora-745ac70d0d29-20220417-143242.mp4 10.0_3532_squeaky-magnolia-ocelot-1bf1b2dfc348-20220419-123311.mp4\r\n10.0_1523_lovely-persimmon-angora-745ac70d0d29-20220417-143935.mp4 10.0_3533_squeaky-magnolia-ocelot-1bf1b2dfc348-20220419-123808.mp4\r\n10.0_1524_lovely-persimmon-angora-745ac70d0d29-20220417-144614.mp4 10.0_3534_squeaky-magnolia-ocelot-1d447a45b314-20220418-135427.mp4\r\n10.0_1525_lovely-persimmon-angora-745ac70d0d29-20220417-145244.mp4 10.0_3535_squeaky-magnolia-ocelot-2008cc72bb84-20220419-110840.mp4\r\n10.0_1526_lovely-persimmon-angora-745ac70d0d29-20220417-145911.mp4 10.0_3536_squeaky-magnolia-ocelot-2008cc72bb84-20220419-111541.mp4\r\n10.0_1527_lovely-persimmon-angora-74bbc35ef0c9-20220421-062643.mp4 10.0_3537_squeaky-magnolia-ocelot-2008cc72bb84-20220419-112037.mp4\r\n10.0_1528_lovely-persimmon-angora-74bbc35ef0c9-20220421-063144.mp4 10.0_3538_squeaky-magnolia-ocelot-2409199cd25b-20220422-153821.mp4\r\n10.0_1529_lovely-persimmon-angora-74bbc35ef0c9-20220421-063643.mp4 10.0_3539_squeaky-magnolia-ocelot-2812d6574782-20220420-103125.mp4\r\n10.0_152_cheeky-cornflower-setter-6c257421683e-20220422-114532.mp4 10.0_353_cheeky-cornflower-setter-c2135fcb03e2-20220415-110233.mp4\r\n10.0_1530_lovely-persimmon-angora-74bbc35ef0c9-20220421-064141.mp4 10.0_3540_squeaky-magnolia-ocelot-2812d6574782-20220420-103622.mp4\r\n10.0_1531_lovely-persimmon-angora-74bbc35ef0c9-20220421-064639.mp4 10.0_3541_squeaky-magnolia-ocelot-2812d6574782-20220420-104118.mp4\r\n10.0_1532_lovely-persimmon-angora-7553a4656624-20220415-053007.mp4 10.0_3542_squeaky-magnolia-ocelot-2812d6574782-20220420-104614.mp4\r\n10.0_1533_lovely-persimmon-angora-7599fb6e7242-20220417-040443.mp4 10.0_3543_squeaky-magnolia-ocelot-2a3c7528f150-20220416-190221.mp4\r\n10.0_1534_lovely-persimmon-angora-7599fb6e7242-20220417-042846.mp4 10.0_3544_squeaky-magnolia-ocelot-2a3c7528f150-20220416-190718.mp4\r\n10.0_1535_lovely-persimmon-angora-7599fb6e7242-20220417-043844.mp4 10.0_3545_squeaky-magnolia-ocelot-2d4575cab47f-20220418-134308.mp4\r\n10.0_1536_lovely-persimmon-angora-75fb305ee084-20220420-131844.mp4 10.0_3546_squeaky-magnolia-ocelot-2d4575cab47f-20220418-134804.mp4\r\n10.0_1537_lovely-persimmon-angora-75fb305ee084-20220420-132351.mp4 10.0_3547_squeaky-magnolia-ocelot-2d4575cab47f-20220418-135259.mp4\r\n10.0_1538_lovely-persimmon-angora-75fb305ee084-20220420-132915.mp4 10.0_3548_squeaky-magnolia-ocelot-3073a7d167db-20220415-071601.mp4\r\n10.0_1539_lovely-persimmon-angora-7658aa66e22a-20220422-234549.mp4 10.0_3549_squeaky-magnolia-ocelot-3073a7d167db-20220415-072113.mp4\r\n10.0_153_cheeky-cornflower-setter-6c257421683e-20220422-115440.mp4 10.0_354_cheeky-cornflower-setter-c2135fcb03e2-20220415-110741.mp4\r\n10.0_1540_lovely-persimmon-angora-7658aa66e22a-20220422-235556.mp4 10.0_3550_squeaky-magnolia-ocelot-3073a7d167db-20220415-072643.mp4\r\n10.0_1541_lovely-persimmon-angora-7658aa66e22a-20220423-000613.mp4 10.0_3551_squeaky-magnolia-ocelot-30c53141cff1-20220423-125207.mp4\r\n10.0_1542_lovely-persimmon-angora-7693e78d9d23-20220422-023053.mp4 10.0_3552_squeaky-magnolia-ocelot-32604c565cdb-20220422-154318.mp4\r\n10.0_1543_lovely-persimmon-angora-7693e78d9d23-20220422-025123.mp4 10.0_3553_squeaky-magnolia-ocelot-32604c565cdb-20220422-154821.mp4\r\n10.0_1544_lovely-persimmon-angora-77892a1198a4-20220422-143959.mp4 10.0_3554_squeaky-magnolia-ocelot-32604c565cdb-20220422-155317.mp4\r\n10.0_1545_lovely-persimmon-angora-77892a1198a4-20220422-144459.mp4 10.0_3555_squeaky-magnolia-ocelot-34778870719a-20220420-093459.mp4\r\n10.0_1546_lovely-persimmon-angora-77892a1198a4-20220422-144959.mp4 10.0_3556_squeaky-magnolia-ocelot-34778870719a-20220420-093957.mp4\r\n10.0_1547_lovely-persimmon-angora-791cca4a10a8-20220421-061219.mp4 10.0_3557_squeaky-magnolia-ocelot-34778870719a-20220420-094454.mp4\r\n10.0_1548_lovely-persimmon-angora-791cca4a10a8-20220421-061722.mp4 10.0_3558_squeaky-magnolia-ocelot-34778870719a-20220420-094950.mp4\r\n10.0_1549_lovely-persimmon-angora-791cca4a10a8-20220421-062220.mp4 10.0_3559_squeaky-magnolia-ocelot-3daa55bc69c3-20220416-092140.mp4\r\n10.0_154_cheeky-cornflower-setter-6cdc9b43a3a1-20220414-154844.mp4 10.0_355_cheeky-cornflower-setter-c2135fcb03e2-20220415-111248.mp4\r\n10.0_1550_lovely-persimmon-angora-79ffbb3df854-20220419-225534.mp4 10.0_3560_squeaky-magnolia-ocelot-40e41609dcd6-20220419-134424.mp4\r\n10.0_1551_lovely-persimmon-angora-7a854d9279bb-20220416-141734.mp4 10.0_3561_squeaky-magnolia-ocelot-40e41609dcd6-20220419-134921.mp4\r\n10.0_1552_lovely-persimmon-angora-7a854d9279bb-20220416-142241.mp4 10.0_3562_squeaky-magnolia-ocelot-40e41609dcd6-20220419-135417.mp4\r\n10.0_1553_lovely-persimmon-angora-7a854d9279bb-20220416-142742.mp4 10.0_3563_squeaky-magnolia-ocelot-4374ef1ea56b-20220415-080216.mp4\r\n10.0_1554_lovely-persimmon-angora-7a854d9279bb-20220416-143243.mp4 10.0_3564_squeaky-magnolia-ocelot-437519d58aac-20220419-135903.mp4\r\n10.0_1555_lovely-persimmon-angora-7b0cd2f1abf6-20220417-040147.mp4 10.0_3565_squeaky-magnolia-ocelot-437519d58aac-20220419-140400.mp4\r\n10.0_1556_lovely-persimmon-angora-7b22fa365d46-20220417-005705.mp4 10.0_3566_squeaky-magnolia-ocelot-437f3ba7c0ae-20220420-162319.mp4\r\n10.0_1557_lovely-persimmon-angora-7b22fa365d46-20220417-010219.mp4 10.0_3567_squeaky-magnolia-ocelot-437f3ba7c0ae-20220420-162931.mp4\r\n10.0_1558_lovely-persimmon-angora-7b38d5bef285-20220420-162259.mp4 10.0_3568_squeaky-magnolia-ocelot-437f3ba7c0ae-20220420-163427.mp4\r\n10.0_1559_lovely-persimmon-angora-7b38d5bef285-20220420-162801.mp4 10.0_3569_squeaky-magnolia-ocelot-44552e98ff73-20220422-104038.mp4\r\n10.0_155_cheeky-cornflower-setter-6cdc9b43a3a1-20220414-155352.mp4 10.0_356_cheeky-cornflower-setter-c2135fcb03e2-20220415-111756.mp4\r\n10.0_1560_lovely-persimmon-angora-7ba4c487812f-20220420-052539.mp4 10.0_3570_squeaky-magnolia-ocelot-44552e98ff73-20220422-104536.mp4\r\n10.0_1561_lovely-persimmon-angora-7d0fcab76bc2-20220416-163208.mp4 10.0_3571_squeaky-magnolia-ocelot-44552e98ff73-20220422-105033.mp4\r\n10.0_1562_lovely-persimmon-angora-7d0fcab76bc2-20220416-163710.mp4 10.0_3572_squeaky-magnolia-ocelot-44552e98ff73-20220422-105532.mp4\r\n10.0_1563_lovely-persimmon-angora-7d682bb20698-20220416-101545.mp4 10.0_3573_squeaky-magnolia-ocelot-44552e98ff73-20220422-110035.mp4\r\n10.0_1564_lovely-persimmon-angora-7ea730c64398-20220419-231200.mp4 10.0_3574_squeaky-magnolia-ocelot-47bc6ce2160b-20220417-171141.mp4\r\n10.0_1565_lovely-persimmon-angora-7f8e825a27df-20220416-015033.mp4 10.0_3575_squeaky-magnolia-ocelot-4a6ecdce0ea7-20220418-132354.mp4\r\n10.0_1566_lovely-persimmon-angora-7f8e825a27df-20220416-015708.mp4 10.0_3576_squeaky-magnolia-ocelot-4a6ecdce0ea7-20220418-132850.mp4\r\n10.0_1567_lovely-persimmon-angora-7f8e825a27df-20220416-020227.mp4 10.0_3577_squeaky-magnolia-ocelot-4a6ecdce0ea7-20220418-133346.mp4\r\n10.0_1568_lovely-persimmon-angora-7f8e825a27df-20220416-020740.mp4 10.0_3578_squeaky-magnolia-ocelot-4e1570f2d15d-20220421-203828.mp4\r\n10.0_1569_lovely-persimmon-angora-823d9b71dfcf-20220420-203025.mp4 10.0_3579_squeaky-magnolia-ocelot-4e1570f2d15d-20220421-204404.mp4\r\n10.0_156_cheeky-cornflower-setter-6cdc9b43a3a1-20220414-155901.mp4 10.0_357_cheeky-cornflower-setter-c290786d2cef-20220420-165322.mp4\r\n10.0_1570_lovely-persimmon-angora-823d9b71dfcf-20220420-204531.mp4 10.0_3580_squeaky-magnolia-ocelot-4e1570f2d15d-20220421-204901.mp4\r\n10.0_1571_lovely-persimmon-angora-82b80f21cf6e-20220421-032231.mp4 10.0_3581_squeaky-magnolia-ocelot-4e3bbb8b3b56-20220421-163102.mp4\r\n10.0_1572_lovely-persimmon-angora-82b80f21cf6e-20220421-033234.mp4 10.0_3582_squeaky-magnolia-ocelot-509691f9120b-20220420-101429.mp4\r\n10.0_1573_lovely-persimmon-angora-82b80f21cf6e-20220421-033733.mp4 10.0_3583_squeaky-magnolia-ocelot-509691f9120b-20220420-101926.mp4\r\n10.0_1574_lovely-persimmon-angora-82d0d7dcc979-20220420-172715.mp4 10.0_3584_squeaky-magnolia-ocelot-509691f9120b-20220420-102423.mp4\r\n10.0_1575_lovely-persimmon-angora-82d0d7dcc979-20220420-173217.mp4 10.0_3585_squeaky-magnolia-ocelot-509691f9120b-20220420-102919.mp4\r\n10.0_1576_lovely-persimmon-angora-82d0d7dcc979-20220420-173715.mp4 10.0_3586_squeaky-magnolia-ocelot-572c5f6bd98a-20220423-125145.mp4\r\n10.0_1577_lovely-persimmon-angora-82d0d7dcc979-20220420-174213.mp4 10.0_3587_squeaky-magnolia-ocelot-594c751a895b-20220419-232431.mp4\r\n10.0_1578_lovely-persimmon-angora-82d0d7dcc979-20220420-174712.mp4 10.0_3588_squeaky-magnolia-ocelot-594c751a895b-20220419-232939.mp4\r\n10.0_1579_lovely-persimmon-angora-84f724b3baed-20220414-232640.mp4 10.0_3589_squeaky-magnolia-ocelot-594c751a895b-20220419-233447.mp4\r\n10.0_157_cheeky-cornflower-setter-6cdc9b43a3a1-20220414-160408.mp4 10.0_358_cheeky-cornflower-setter-c290786d2cef-20220420-165901.mp4\r\n10.0_1580_lovely-persimmon-angora-851a639dc84a-20220421-095507.mp4 10.0_3590_squeaky-magnolia-ocelot-5a7a8c971ab1-20220419-184714.mp4\r\n10.0_1581_lovely-persimmon-angora-874d22448215-20220417-151944.mp4 10.0_3591_squeaky-magnolia-ocelot-5a7a8c971ab1-20220419-185210.mp4\r\n10.0_1582_lovely-persimmon-angora-87969cb13a0b-20220422-015932.mp4 10.0_3592_squeaky-magnolia-ocelot-5a7a8c971ab1-20220419-185706.mp4\r\n10.0_1583_lovely-persimmon-angora-87969cb13a0b-20220422-022001.mp4 10.0_3593_squeaky-magnolia-ocelot-62e20e313587-20220418-124909.mp4\r\n10.0_1584_lovely-persimmon-angora-87969cb13a0b-20220422-023011.mp4 10.0_3594_squeaky-magnolia-ocelot-687c157128ad-20220423-125830.mp4\r\n10.0_1585_lovely-persimmon-angora-879a9cb0694a-20220419-034702.mp4 10.0_3595_squeaky-magnolia-ocelot-6b7bcb068069-20220421-104438.mp4\r\n10.0_1586_lovely-persimmon-angora-884b1b11bf54-20220422-160156.mp4 10.0_3596_squeaky-magnolia-ocelot-6b7bcb068069-20220421-104939.mp4\r\n10.0_1587_lovely-persimmon-angora-887b54a21b84-20220420-185422.mp4 10.0_3597_squeaky-magnolia-ocelot-7082b4853688-20220421-201325.mp4\r\n10.0_1588_lovely-persimmon-angora-887b54a21b84-20220420-185925.mp4 10.0_3598_squeaky-magnolia-ocelot-7560471e5ff8-20220419-112432.mp4\r\n10.0_1589_lovely-persimmon-angora-8a79a71ce6fe-20220420-175206.mp4 10.0_3599_squeaky-magnolia-ocelot-75bba839d2d3-20220420-183705.mp4\r\n10.0_158_cheeky-cornflower-setter-6ec9971f230b-20220422-190211.mp4 10.0_359_cheeky-cornflower-setter-c290786d2cef-20220420-170449.mp4\r\nl10.0_1590_lovely-persimmon-angora-8b10c346c832-20220422-134754.mp4 10.0_3600_squeaky-magnolia-ocelot-75bba839d2d3-20220420-184218.mp4\r\n10.0_1591_lovely-persimmon-angora-8b10c346c832-20220422-135259.mp4 10.0_3601_squeaky-magnolia-ocelot-75bba839d2d3-20220420-184840.mp4\r\n10.0_1592_lovely-persimmon-angora-8b10c346c832-20220422-135758.mp4 10.0_3602_squeaky-magnolia-ocelot-75bba839d2d3-20220420-185345.mp4\r\n10.0_1593_lovely-persimmon-angora-8b10c346c832-20220422-140257.mp4 10.0_3603_squeaky-magnolia-ocelot-76c99768d6e7-20220421-163845.mp4\r\n10.0_1594_lovely-persimmon-angora-8b10c346c832-20220422-140755.mp4 10.0_3604_squeaky-magnolia-ocelot-7b1546816d10-20220418-135457.mp4\r\n10.0_1595_lovely-persimmon-angora-8b54ea8e8ed7-20220420-141937.mp4 10.0_3605_squeaky-magnolia-ocelot-7b1546816d10-20220418-135953.mp4\r\n10.0_1596_lovely-persimmon-angora-8c0e49539e32-20220421-053239.mp4 10.0_3606_squeaky-magnolia-ocelot-7b1546816d10-20220418-140450.mp4\r\n10.0_1597_lovely-persimmon-angora-8cb1a92f3ff1-20220415-054155.mp4 10.0_3607_squeaky-magnolia-ocelot-7b1546816d10-20220418-140949.mp4\r\n10.0_1598_lovely-persimmon-angora-8e1349148c0d-20220420-005836.mp4 10.0_3608_squeaky-magnolia-ocelot-7ed546aa8ac8-20220422-155642.mp4\r\n10.0_1599_lovely-persimmon-angora-8e1349148c0d-20220420-010841.mp4 10.0_3609_squeaky-magnolia-ocelot-84ba90bac6b1-20220418-185044.mp4\r\n10.0_159_cheeky-cornflower-setter-6ec9971f230b-20220422-190719.mp4 10.0_360_cheeky-cornflower-setter-c34dc04557cf-20220421-160213.mp4\r\n10.0_1600_lovely-persimmon-angora-8e1349148c0d-20220420-011341.mp4 10.0_3610_squeaky-magnolia-ocelot-84ba90bac6b1-20220418-185649.mp4\r\n10.0_1601_lovely-persimmon-angora-8e1349148c0d-20220420-011842.mp4 10.0_3611_squeaky-magnolia-ocelot-84ba90bac6b1-20220418-190145.mp4\r\n10.0_1602_lovely-persimmon-angora-8f82d8bef92b-20220422-052120.mp4 10.0_3612_squeaky-magnolia-ocelot-8705f48637db-20220418-142538.mp4\r\n10.0_1603_lovely-persimmon-angora-92167b438183-20220420-135754.mp4 10.0_3613_squeaky-magnolia-ocelot-8705f48637db-20220418-143035.mp4\r\n10.0_1604_lovely-persimmon-angora-9274900cd269-20220418-233538.mp4 10.0_3614_squeaky-magnolia-ocelot-8705f48637db-20220418-143531.mp4\r\n10.0_1605_lovely-persimmon-angora-9285d21834d6-20220417-201028.mp4 10.0_3615_squeaky-magnolia-ocelot-8705f48637db-20220418-144026.mp4\r\n10.0_1606_lovely-persimmon-angora-92a1403d8e58-20220422-063402.mp4 10.0_3616_squeaky-magnolia-ocelot-8895e0c8f9ab-20220422-154249.mp4\r\n10.0_1607_lovely-persimmon-angora-92a1403d8e58-20220422-063937.mp4 10.0_3617_squeaky-magnolia-ocelot-8a68bfa92033-20220418-124134.mp4\r\n10.0_1608_lovely-persimmon-angora-92a1403d8e58-20220422-064435.mp4 10.0_3618_squeaky-magnolia-ocelot-8a68bfa92033-20220418-124631.mp4\r\n10.0_1609_lovely-persimmon-angora-92a1403d8e58-20220422-064934.mp4 10.0_3619_squeaky-magnolia-ocelot-8b0f1efce180-20220419-145329.mp4\r\n10.0_160_cheeky-cornflower-setter-6ec9971f230b-20220422-191225.mp4 10.0_361_cheeky-cornflower-setter-c34dc04557cf-20220421-161509.mp4\r\n10.0_1610_lovely-persimmon-angora-92a1403d8e58-20220422-065432.mp4 10.0_3620_squeaky-magnolia-ocelot-8b0f1efce180-20220419-145826.mp4\r\n10.0_1611_lovely-persimmon-angora-92de05e1a4b2-20220421-052900.mp4 10.0_3621_squeaky-magnolia-ocelot-8ef0953f796f-20220419-114908.mp4\r\n10.0_1612_lovely-persimmon-angora-93ba749bfcef-20220417-192215.mp4 10.0_3622_squeaky-magnolia-ocelot-8ef0953f796f-20220419-115404.mp4\r\n10.0_1613_lovely-persimmon-angora-93ba749bfcef-20220417-192723.mp4 10.0_3623_squeaky-magnolia-ocelot-944bda236649-20220420-183501.mp4\r\n10.0_1614_lovely-persimmon-angora-983cb1144d74-20220420-202159.mp4 10.0_3624_squeaky-magnolia-ocelot-98544c74f937-20220416-191633.mp4\r\n10.0_1615_lovely-persimmon-angora-98fb1d3cb54d-20220422-221722.mp4 10.0_3625_squeaky-magnolia-ocelot-98544c74f937-20220416-192155.mp4\r\n10.0_1616_lovely-persimmon-angora-98fb1d3cb54d-20220422-222227.mp4 10.0_3626_squeaky-magnolia-ocelot-98544c74f937-20220416-192652.mp4\r\n10.0_1617_lovely-persimmon-angora-98fb1d3cb54d-20220422-222728.mp4 10.0_3627_squeaky-magnolia-ocelot-9a4c635be656-20220418-144540.mp4\r\n10.0_1618_lovely-persimmon-angora-9c19aa19eedb-20220420-103936.mp4 10.0_3628_squeaky-magnolia-ocelot-9a4c635be656-20220418-145141.mp4\r\n10.0_1619_lovely-persimmon-angora-9c19aa19eedb-20220420-104436.mp4 10.0_3629_squeaky-magnolia-ocelot-9a4c635be656-20220418-145636.mp4\r\n10.0_161_cheeky-cornflower-setter-6f87b3c3dddb-20220422-100602.mp4 10.0_362_cheeky-cornflower-setter-c4d6b5fb4546-20220422-172623.mp4\r\n10.0_1620_lovely-persimmon-angora-9c19aa19eedb-20220420-104936.mp4 10.0_3630_squeaky-magnolia-ocelot-9a9fe6424d2f-20220422-104013.mp4\r\n10.0_1621_lovely-persimmon-angora-9c19aa19eedb-20220420-105434.mp4 10.0_3631_squeaky-magnolia-ocelot-a05db94b82dc-20220418-132310.mp4\r\n10.0_1622_lovely-persimmon-angora-9c19aa19eedb-20220420-105932.mp4 10.0_3632_squeaky-magnolia-ocelot-a2f688c7f691-20220419-121241.mp4\r\n10.0_1623_lovely-persimmon-angora-9c55ac71265b-20220415-162902.mp4 10.0_3633_squeaky-magnolia-ocelot-a2f688c7f691-20220419-121738.mp4\r\n10.0_1624_lovely-persimmon-angora-9e9259261254-20220417-001537.mp4 10.0_3634_squeaky-magnolia-ocelot-a68ae1347a2d-20220418-174653.mp4\r\n10.0_1625_lovely-persimmon-angora-9e9259261254-20220417-002042.mp4 10.0_3635_squeaky-magnolia-ocelot-a68ae1347a2d-20220418-175149.mp4\r\n10.0_1626_lovely-persimmon-angora-9e9259261254-20220417-002544.mp4 10.0_3636_squeaky-magnolia-ocelot-a9b6ce96cf49-20220419-113219.mp4\r\n10.0_1627_lovely-persimmon-angora-9e9259261254-20220417-003043.mp4 10.0_3637_squeaky-magnolia-ocelot-a9b6ce96cf49-20220419-113716.mp4\r\n10.0_1628_lovely-persimmon-angora-9e9259261254-20220417-003544.mp4 10.0_3638_squeaky-magnolia-ocelot-a9b6ce96cf49-20220419-114212.mp4\r\n10.0_1629_lovely-persimmon-angora-a39257c803d3-20220422-051333.mp4 10.0_3639_squeaky-magnolia-ocelot-a9b6ce96cf49-20220419-114707.mp4\r\n10.0_162_cheeky-cornflower-setter-6f87b3c3dddb-20220422-101442.mp4 10.0_363_cheeky-cornflower-setter-c4d6b5fb4546-20220422-173131.mp4\r\n10.0_1630_lovely-persimmon-angora-a39257c803d3-20220422-051833.mp4 10.0_3640_squeaky-magnolia-ocelot-b562089220e9-20220421-205153.mp4\r\n10.0_1631_lovely-persimmon-angora-a45c77c2e4c8-20220421-060632.mp4 10.0_3641_squeaky-magnolia-ocelot-b562089220e9-20220421-205652.mp4\r\n10.0_1632_lovely-persimmon-angora-a45c77c2e4c8-20220421-061137.mp4 10.0_3642_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-210235.mp4\r\n10.0_1633_lovely-persimmon-angora-a4b5febb19f2-20220422-081228.mp4 10.0_3643_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-210732.mp4\r\n10.0_1634_lovely-persimmon-angora-a54f5e1be8e9-20220418-205501.mp4 10.0_3644_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-211230.mp4\r\n10.0_1635_lovely-persimmon-angora-a54f5e1be8e9-20220418-210008.mp4 10.0_3645_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-211726.mp4\r\n10.0_1636_lovely-persimmon-angora-a54f5e1be8e9-20220418-211015.mp4 10.0_3646_squeaky-magnolia-ocelot-b578ce4a6eac-20220421-212222.mp4\r\n10.0_1637_lovely-persimmon-angora-a73c527286bf-20220420-142119.mp4 10.0_3647_squeaky-magnolia-ocelot-b7bcde739d78-20220418-170334.mp4\r\n10.0_1638_lovely-persimmon-angora-a73c527286bf-20220420-142623.mp4 10.0_3648_squeaky-magnolia-ocelot-b7bcde739d78-20220418-170830.mp4\r\n10.0_1639_lovely-persimmon-angora-a73c527286bf-20220420-143123.mp4 10.0_3649_squeaky-magnolia-ocelot-b7bcde739d78-20220418-171327.mp4\r\n10.0_163_cheeky-cornflower-setter-6f87b3c3dddb-20220422-102242.mp4 10.0_364_cheeky-cornflower-setter-c4d6b5fb4546-20220422-173637.mp4\r\n10.0_1640_lovely-persimmon-angora-a7594e0b7b4f-20220416-173057.mp4 10.0_3650_squeaky-magnolia-ocelot-b7bcde739d78-20220418-171830.mp4\r\n10.0_1641_lovely-persimmon-angora-a7594e0b7b4f-20220416-173601.mp4 10.0_3651_squeaky-magnolia-ocelot-bf12350083f0-20220418-182741.mp4\r\n10.0_1642_lovely-persimmon-angora-a7594e0b7b4f-20220416-174101.mp4 10.0_3652_squeaky-magnolia-ocelot-bf12350083f0-20220418-183534.mp4\r\n10.0_1643_lovely-persimmon-angora-a7594e0b7b4f-20220416-174600.mp4 10.0_3653_squeaky-magnolia-ocelot-bf12350083f0-20220418-184030.mp4\r\n10.0_1644_lovely-persimmon-angora-a7594e0b7b4f-20220416-175058.mp4 10.0_3654_squeaky-magnolia-ocelot-bff4f3affedb-20220420-145009.mp4\r\n10.0_1645_lovely-persimmon-angora-aa507976f992-20220422-003756.mp4 10.0_3655_squeaky-magnolia-ocelot-bff4f3affedb-20220420-145506.mp4\r\n10.0_1646_lovely-persimmon-angora-aa507976f992-20220422-004306.mp4 10.0_3656_squeaky-magnolia-ocelot-bff4f3affedb-20220420-150003.mp4\r\n10.0_1647_lovely-persimmon-angora-aa507976f992-20220422-004807.mp4 10.0_3657_squeaky-magnolia-ocelot-c00c560150ef-20220414-002316.mp4\r\n10.0_1648_lovely-persimmon-angora-aa507976f992-20220422-005306.mp4 10.0_3658_squeaky-magnolia-ocelot-c00c560150ef-20220414-002823.mp4\r\n10.0_1649_lovely-persimmon-angora-aa507976f992-20220422-005804.mp4 10.0_3659_squeaky-magnolia-ocelot-c00c560150ef-20220414-003331.mp4\r\n10.0_164_cheeky-cornflower-setter-6ff7b0654865-20220417-221751.mp4 10.0_365_cheeky-cornflower-setter-c4d6b5fb4546-20220422-174145.mp4\r\n10.0_1650_lovely-persimmon-angora-aa90003efe45-20220421-105449.mp4 10.0_3660_squeaky-magnolia-ocelot-c27170917897-20220420-095758.mp4\r\n10.0_1651_lovely-persimmon-angora-aa90003efe45-20220421-110001.mp4 10.0_3661_squeaky-magnolia-ocelot-c27170917897-20220420-100254.mp4\r\n10.0_1652_lovely-persimmon-angora-aa90003efe45-20220421-110500.mp4 10.0_3662_squeaky-magnolia-ocelot-c8e48bec54e9-20220419-210807.mp4\r\n10.0_1653_lovely-persimmon-angora-aacc8c7541f8-20220418-235715.mp4 10.0_3663_squeaky-magnolia-ocelot-c8e48bec54e9-20220419-211304.mp4\r\n10.0_1654_lovely-persimmon-angora-aacc8c7541f8-20220419-000217.mp4 10.0_3664_squeaky-magnolia-ocelot-c8e48bec54e9-20220419-211801.mp4\r\n10.0_1655_lovely-persimmon-angora-aacc8c7541f8-20220419-000716.mp4 10.0_3665_squeaky-magnolia-ocelot-ca157d463591-20220421-205722.mp4\r\n10.0_1656_lovely-persimmon-angora-aacc8c7541f8-20220419-001712.mp4 10.0_3666_squeaky-magnolia-ocelot-d4a075adc507-20220421-210034.mp4\r\n10.0_1657_lovely-persimmon-angora-abacff6369d0-20220419-054520.mp4 10.0_3667_squeaky-magnolia-ocelot-d6c1bc7490be-20220422-103929.mp4\r\n10.0_1658_lovely-persimmon-angora-abacff6369d0-20220419-055027.mp4 10.0_3668_squeaky-magnolia-ocelot-d8cd6c643374-20220422-110756.mp4\r\n10.0_1659_lovely-persimmon-angora-abacff6369d0-20220419-055530.mp4 10.0_3669_squeaky-magnolia-ocelot-dda7999f1355-20220418-172658.mp4\r\n10.0_165_cheeky-cornflower-setter-7217827eaef1-20220421-201157.mp4 10.0_366_cheeky-cornflower-setter-c6297b561a50-20220416-120659.mp4\r\n10.0_1660_lovely-persimmon-angora-abacff6369d0-20220419-060028.mp4 10.0_3670_squeaky-magnolia-ocelot-e86b50fc95bf-20220419-234208.mp4\r\n10.0_1661_lovely-persimmon-angora-abacff6369d0-20220419-060547.mp4 10.0_3671_squeaky-magnolia-ocelot-e86b50fc95bf-20220419-234748.mp4\r\n10.0_1662_lovely-persimmon-angora-acc1a2d99214-20220417-044419.mp4 10.0_3672_squeaky-magnolia-ocelot-eab3e7650201-20220418-172912.mp4\r\n10.0_1663_lovely-persimmon-angora-acc1a2d99214-20220417-044928.mp4 10.0_3673_squeaky-magnolia-ocelot-eab3e7650201-20220418-173408.mp4\r\n10.0_1664_lovely-persimmon-angora-acc1a2d99214-20220417-045429.mp4 10.0_3674_squeaky-magnolia-ocelot-eeb60b256fac-20220419-210740.mp4\r\n10.0_1665_lovely-persimmon-angora-ae35eac0eacd-20220417-152508.mp4 10.0_3675_squeaky-magnolia-ocelot-ef2d20665a3a-20220420-144944.mp4\r\n10.0_1666_lovely-persimmon-angora-ae446d9309d0-20220420-060019.mp4 10.0_3676_squeaky-magnolia-ocelot-f1133d7a9b5f-20220421-104130.mp4\r\n10.0_1667_lovely-persimmon-angora-ae446d9309d0-20220420-060531.mp4 10.0_3677_squeaky-magnolia-ocelot-f153ac423f61-20220414-001232.mp4\r\n10.0_1668_lovely-persimmon-angora-ae446d9309d0-20220420-061031.mp4 10.0_3678_squeaky-magnolia-ocelot-f153ac423f61-20220414-001910.mp4\r\n10.0_1669_lovely-persimmon-angora-ae446d9309d0-20220420-061531.mp4 10.0_3679_squeaky-magnolia-ocelot-f153ac423f61-20220415-004400.mp4\r\n10.0_166_cheeky-cornflower-setter-7217827eaef1-20220421-201710.mp4 10.0_367_cheeky-cornflower-setter-c6297b561a50-20220416-122903.mp4\r\n10.0_1670_lovely-persimmon-angora-ae446d9309d0-20220420-062031.mp4 10.0_3680_squeaky-magnolia-ocelot-f153ac423f61-20220415-004928.mp4\r\n10.0_1671_lovely-persimmon-angora-aeeafe5a39f9-20220416-204707.mp4 10.0_3681_squeaky-magnolia-ocelot-f153ac423f61-20220415-083209.mp4\r\n10.0_1672_lovely-persimmon-angora-aeeafe5a39f9-20220416-205209.mp4 10.0_3682_squeaky-magnolia-ocelot-f153ac423f61-20220415-083746.mp4\r\n10.0_1673_lovely-persimmon-angora-aeeafe5a39f9-20220416-205728.mp4 10.0_3683_squeaky-magnolia-ocelot-f153ac423f61-20220415-192535.mp4\r\n10.0_1674_lovely-persimmon-angora-aeeafe5a39f9-20220416-210225.mp4 10.0_3684_squeaky-magnolia-ocelot-f153ac423f61-20220415-193137.mp4\r\n10.0_1675_lovely-persimmon-angora-af9325c2c9c4-20220416-025255.mp4 10.0_3685_squeaky-magnolia-ocelot-f153ac423f61-20220416-005538.mp4\r\n10.0_1676_lovely-persimmon-angora-af9325c2c9c4-20220416-045810.mp4 10.0_3686_squeaky-magnolia-ocelot-f153ac423f61-20220416-010117.mp4\r\n10.0_1677_lovely-persimmon-angora-b062ffdaa573-20220417-193200.mp4 10.0_3687_squeaky-magnolia-ocelot-f153ac423f61-20220416-010708.mp4\r\n10.0_1678_lovely-persimmon-angora-b062ffdaa573-20220417-193704.mp4 10.0_3688_squeaky-magnolia-ocelot-f153ac423f61-20220416-090044.mp4\r\n10.0_1679_lovely-persimmon-angora-b062ffdaa573-20220417-194204.mp4 10.0_3689_squeaky-magnolia-ocelot-f153ac423f61-20220416-090619.mp4\r\n10.0_167_cheeky-cornflower-setter-723604d6e602-20220420-174416.mp4 10.0_368_cheeky-cornflower-setter-c6297b561a50-20220416-123413.mp4\r\n10.0_1680_lovely-persimmon-angora-b0d63660cf9f-20220417-022829.mp4 10.0_3690_squeaky-magnolia-ocelot-f153ac423f61-20220416-091641.mp4\r\n10.0_1681_lovely-persimmon-angora-b0d63660cf9f-20220417-023517.mp4 10.0_3691_squeaky-magnolia-ocelot-f153ac423f61-20220416-184014.mp4\r\n10.0_1682_lovely-persimmon-angora-b0d63660cf9f-20220417-024017.mp4 10.0_3692_squeaky-magnolia-ocelot-f153ac423f61-20220416-184531.mp4\r\n10.0_1683_lovely-persimmon-angora-b0d63660cf9f-20220417-025045.mp4 10.0_3693_squeaky-magnolia-ocelot-f153ac423f61-20220416-185644.mp4\r\n10.0_1684_lovely-persimmon-angora-b0d63660cf9f-20220417-034915.mp4 10.0_3694_squeaky-magnolia-ocelot-f153ac423f61-20220416-190140.mp4\r\n10.0_1685_lovely-persimmon-angora-b0d63660cf9f-20220417-035415.mp4 10.0_3695_squeaky-magnolia-ocelot-f153ac423f61-20220417-165043.mp4\r\n10.0_1686_lovely-persimmon-angora-b0d63660cf9f-20220417-035913.mp4 10.0_3696_squeaky-magnolia-ocelot-f153ac423f61-20220417-165905.mp4\r\n10.0_1687_lovely-persimmon-angora-b0e50721b322-20220421-030157.mp4 10.0_3697_squeaky-magnolia-ocelot-f153ac423f61-20220417-170747.mp4\r\n10.0_1688_lovely-persimmon-angora-b0e50721b322-20220421-030700.mp4 10.0_3698_squeaky-magnolia-ocelot-f153ac423f61-20220417-194751.mp4\r\n10.0_1689_lovely-persimmon-angora-b0e50721b322-20220421-031158.mp4 10.0_3699_squeaky-magnolia-ocelot-f153ac423f61-20220417-195803.mp4\r\n10.0_168_cheeky-cornflower-setter-7448b3f2b8bb-20220416-115105.mp4 10.0_369_cheeky-cornflower-setter-c6297b561a50-20220416-123917.mp4\r\n10.0_1690_lovely-persimmon-angora-b0e50721b322-20220421-031658.mp4 10.0_3700_squeaky-magnolia-ocelot-f153ac423f61-20220418-124038.mp4\r\n10.0_1691_lovely-persimmon-angora-b27741f177a5-20220417-133254.mp4 10.0_3701_squeaky-magnolia-ocelot-f153ac423f61-20220418-131326.mp4\r\n10.0_1692_lovely-persimmon-angora-b27741f177a5-20220417-133757.mp4 10.0_3702_squeaky-magnolia-ocelot-f153ac423f61-20220418-131533.mp4\r\n10.0_1693_lovely-persimmon-angora-b27741f177a5-20220417-134256.mp4 10.0_3703_squeaky-magnolia-ocelot-f153ac423f61-20220418-172017.mp4\r\n10.0_1694_lovely-persimmon-angora-b2ae22bb1cdc-20220420-125812.mp4 10.0_3704_squeaky-magnolia-ocelot-f153ac423f61-20220418-172515.mp4\r\n10.0_1695_lovely-persimmon-angora-b2ae22bb1cdc-20220420-130312.mp4 10.0_3705_squeaky-magnolia-ocelot-f153ac423f61-20220419-105215.mp4\r\n10.0_1696_lovely-persimmon-angora-b2ae22bb1cdc-20220420-130810.mp4 10.0_3706_squeaky-magnolia-ocelot-f153ac423f61-20220419-105832.mp4\r\n10.0_1697_lovely-persimmon-angora-b4dc0063a05c-20220416-075823.mp4 10.0_3707_squeaky-magnolia-ocelot-f153ac423f61-20220419-110332.mp4\r\n10.0_1698_lovely-persimmon-angora-b687234e7ec0-20220417-145949.mp4 10.0_3708_squeaky-magnolia-ocelot-f153ac423f61-20220419-133218.mp4\r\n10.0_1699_lovely-persimmon-angora-b687234e7ec0-20220417-150737.mp4 10.0_3709_squeaky-magnolia-ocelot-f153ac423f61-20220419-133716.mp4\r\n10.0_169_cheeky-cornflower-setter-7448b3f2b8bb-20220416-115616.mp4 10.0_370_cheeky-cornflower-setter-c9fb3ae774a8-20220416-092047.mp4\r\n10.0_1700_lovely-persimmon-angora-b687234e7ec0-20220417-151454.mp4 10.0_3710_squeaky-magnolia-ocelot-f153ac423f61-20220419-184144.mp4\r\n10.0_1701_lovely-persimmon-angora-b87797273388-20220422-232835.mp4 10.0_3711_squeaky-magnolia-ocelot-f153ac423f61-20220419-184643.mp4\r\n10.0_1702_lovely-persimmon-angora-b87797273388-20220422-233348.mp4 10.0_3712_squeaky-magnolia-ocelot-f153ac423f61-20220419-194115.mp4\r\n10.0_1703_lovely-persimmon-angora-b87797273388-20220422-233848.mp4 10.0_3713_squeaky-magnolia-ocelot-f153ac423f61-20220419-194615.mp4\r\n10.0_1704_lovely-persimmon-angora-b893f912bf4e-20220416-141251.mp4 10.0_3714_squeaky-magnolia-ocelot-f153ac423f61-20220419-195113.mp4\r\n10.0_1705_lovely-persimmon-angora-b989537e4c4a-20220422-201916.mp4 10.0_3715_squeaky-magnolia-ocelot-f153ac423f61-20220419-195609.mp4\r\n10.0_1706_lovely-persimmon-angora-b9f3e68450c9-20220417-135820.mp4 10.0_3716_squeaky-magnolia-ocelot-f153ac423f61-20220419-202235.mp4\r\n10.0_1707_lovely-persimmon-angora-baa861c67ad7-20220422-115523.mp4 10.0_3717_squeaky-magnolia-ocelot-f153ac423f61-20220419-202816.mp4\r\n10.0_1708_lovely-persimmon-angora-baa861c67ad7-20220422-120038.mp4 10.0_3718_squeaky-magnolia-ocelot-f153ac423f61-20220419-203314.mp4\r\n10.0_1709_lovely-persimmon-angora-baf0a3c43217-20220420-053833.mp4 10.0_3719_squeaky-magnolia-ocelot-f153ac423f61-20220419-203810.mp4\r\n10.0_170_cheeky-cornflower-setter-7448b3f2b8bb-20220416-120125.mp4 10.0_371_cheeky-cornflower-setter-c9fb3ae774a8-20220416-092641.mp4\r\n10.0_1710_lovely-persimmon-angora-bb4a6ad29303-20220417-133204.mp4 10.0_3720_squeaky-magnolia-ocelot-f153ac423f61-20220419-205517.mp4\r\n10.0_1711_lovely-persimmon-angora-bb630d112590-20220421-211345.mp4 10.0_3721_squeaky-magnolia-ocelot-f153ac423f61-20220419-210017.mp4\r\n10.0_1712_lovely-persimmon-angora-bb630d112590-20220421-211853.mp4 10.0_3722_squeaky-magnolia-ocelot-f153ac423f61-20220419-210516.mp4\r\n10.0_1713_lovely-persimmon-angora-bb630d112590-20220421-212353.mp4 10.0_3723_squeaky-magnolia-ocelot-f153ac423f61-20220419-231040.mp4\r\n10.0_1714_lovely-persimmon-angora-bb630d112590-20220421-212852.mp4 10.0_3724_squeaky-magnolia-ocelot-f153ac423f61-20220419-231606.mp4\r\n10.0_1715_lovely-persimmon-angora-bbafafd7409e-20220419-154900.mp4 10.0_3725_squeaky-magnolia-ocelot-f153ac423f61-20220420-092708.mp4\r\n10.0_1716_lovely-persimmon-angora-bbafafd7409e-20220419-155404.mp4 10.0_3726_squeaky-magnolia-ocelot-f153ac423f61-20220420-093209.mp4\r\n10.0_1717_lovely-persimmon-angora-bbafafd7409e-20220419-160143.mp4 10.0_3727_squeaky-magnolia-ocelot-f153ac423f61-20220420-113949.mp4\r\n10.0_1718_lovely-persimmon-angora-bc2fb6b8559c-20220422-171559.mp4 10.0_3728_squeaky-magnolia-ocelot-f153ac423f61-20220420-114449.mp4\r\n10.0_1719_lovely-persimmon-angora-bdb46ca7568b-20220420-183308.mp4 10.0_3729_squeaky-magnolia-ocelot-f153ac423f61-20220420-114945.mp4\r\n10.0_171_cheeky-cornflower-setter-7503ef8f9615-20220423-104736.mp4 10.0_372_cheeky-cornflower-setter-c9fb3ae774a8-20220416-093226.mp4\r\n10.0_1720_lovely-persimmon-angora-bf5cca93adea-20220417-212526.mp4 10.0_3730_squeaky-magnolia-ocelot-f153ac423f61-20220420-115440.mp4\r\n10.0_1721_lovely-persimmon-angora-bf5cca93adea-20220417-213032.mp4 10.0_3731_squeaky-magnolia-ocelot-f153ac423f61-20220420-143111.mp4\r\n10.0_1722_lovely-persimmon-angora-bf5cca93adea-20220417-213532.mp4 10.0_3732_squeaky-magnolia-ocelot-f153ac423f61-20220420-143612.mp4\r\n10.0_1723_lovely-persimmon-angora-bf5cca93adea-20220417-214032.mp4 10.0_3733_squeaky-magnolia-ocelot-f153ac423f61-20220420-155934.mp4\r\n10.0_1724_lovely-persimmon-angora-bf5cca93adea-20220417-214532.mp4 10.0_3734_squeaky-magnolia-ocelot-f153ac423f61-20220420-160526.mp4\r\n10.0_1725_lovely-persimmon-angora-c036e60c2d9e-20220414-022114.mp4 10.0_3735_squeaky-magnolia-ocelot-f153ac423f61-20220420-161022.mp4\r\n10.0_1726_lovely-persimmon-angora-c036e60c2d9e-20220414-023119.mp4 10.0_3736_squeaky-magnolia-ocelot-f153ac423f61-20220420-161518.mp4\r\n10.0_1727_lovely-persimmon-angora-c38efc5b96f0-20220420-112758.mp4 10.0_3737_squeaky-magnolia-ocelot-f153ac423f61-20220420-162045.mp4\r\n10.0_1728_lovely-persimmon-angora-c38efc5b96f0-20220420-113300.mp4 10.0_3738_squeaky-magnolia-ocelot-f153ac423f61-20220420-173650.mp4\r\n10.0_1729_lovely-persimmon-angora-c38efc5b96f0-20220420-113759.mp4 10.0_3739_squeaky-magnolia-ocelot-f153ac423f61-20220420-174202.mp4\r\n10.0_172_cheeky-cornflower-setter-7503ef8f9615-20220423-105746.mp4 10.0_373_cheeky-cornflower-setter-c9fb3ae774a8-20220416-093805.mp4\r\n10.0_1730_lovely-persimmon-angora-c38efc5b96f0-20220420-114257.mp4 10.0_3740_squeaky-magnolia-ocelot-f153ac423f61-20220420-181501.mp4\r\n10.0_1731_lovely-persimmon-angora-c38efc5b96f0-20220420-114757.mp4 10.0_3741_squeaky-magnolia-ocelot-f153ac423f61-20220420-182003.mp4\r\n10.0_1732_lovely-persimmon-angora-c4e13cf9bc11-20220420-095657.mp4 10.0_3742_squeaky-magnolia-ocelot-f153ac423f61-20220420-182518.mp4\r\n10.0_1733_lovely-persimmon-angora-c4e13cf9bc11-20220420-100202.mp4 10.0_3743_squeaky-magnolia-ocelot-f153ac423f61-20220420-183016.mp4\r\n10.0_1734_lovely-persimmon-angora-c4e13cf9bc11-20220420-100701.mp4 10.0_3744_squeaky-magnolia-ocelot-f153ac423f61-20220421-092702.mp4\r\n10.0_1735_lovely-persimmon-angora-c4e13cf9bc11-20220420-101159.mp4 10.0_3745_squeaky-magnolia-ocelot-f153ac423f61-20220421-093201.mp4\r\n10.0_1736_lovely-persimmon-angora-c4e13cf9bc11-20220420-101657.mp4 10.0_3746_squeaky-magnolia-ocelot-f153ac423f61-20220421-093657.mp4\r\n10.0_1737_lovely-persimmon-angora-c5792a32f2cd-20220419-151550.mp4 10.0_3747_squeaky-magnolia-ocelot-f153ac423f61-20220421-094154.mp4\r\n10.0_1738_lovely-persimmon-angora-c589086127c9-20220414-161419.mp4 10.0_3748_squeaky-magnolia-ocelot-f153ac423f61-20220421-102110.mp4\r\n10.0_1739_lovely-persimmon-angora-c589086127c9-20220414-163500.mp4 10.0_3749_squeaky-magnolia-ocelot-f153ac423f61-20220421-102609.mp4\r\n10.0_173_cheeky-cornflower-setter-7503ef8f9615-20220423-110628.mp4 10.0_374_cheeky-cornflower-setter-ccfa04f03dad-20220422-141330.mp4\r\n10.0_1740_lovely-persimmon-angora-c5c7cfa6e670-20220421-032102.mp4 10.0_3750_squeaky-magnolia-ocelot-f153ac423f61-20220421-103106.mp4\r\n10.0_1741_lovely-persimmon-angora-c60a7e1de8f0-20220420-232245.mp4 10.0_3751_squeaky-magnolia-ocelot-f153ac423f61-20220421-103602.mp4\r\n10.0_1742_lovely-persimmon-angora-c67c67e78b76-20220416-124451.mp4 10.0_3752_squeaky-magnolia-ocelot-f153ac423f61-20220421-104101.mp4\r\n10.0_1743_lovely-persimmon-angora-c67c67e78b76-20220416-125348.mp4 10.0_3753_squeaky-magnolia-ocelot-f153ac423f61-20220421-161204.mp4\r\n10.0_1744_lovely-persimmon-angora-c67c67e78b76-20220416-130238.mp4 10.0_3754_squeaky-magnolia-ocelot-f153ac423f61-20220421-161704.mp4\r\n10.0_1745_lovely-persimmon-angora-c67c67e78b76-20220416-131130.mp4 10.0_3755_squeaky-magnolia-ocelot-f153ac423f61-20220421-162202.mp4\r\n10.0_1746_lovely-persimmon-angora-c67c67e78b76-20220416-132038.mp4 10.0_3756_squeaky-magnolia-ocelot-f153ac423f61-20220421-162657.mp4\r\n10.0_1747_lovely-persimmon-angora-c78dc69f2f2e-20220419-034255.mp4 10.0_3757_squeaky-magnolia-ocelot-f153ac423f61-20220421-194921.mp4\r\n10.0_1748_lovely-persimmon-angora-c7ff6ee370b8-20220421-005633.mp4 10.0_3758_squeaky-magnolia-ocelot-f153ac423f61-20220421-195422.mp4\r\n10.0_1749_lovely-persimmon-angora-c7ff6ee370b8-20220421-010138.mp4 10.0_3759_squeaky-magnolia-ocelot-f153ac423f61-20220421-195921.mp4\r\n10.0_174_cheeky-cornflower-setter-787dfe04fef1-20220421-223712.mp4 10.0_375_cheeky-cornflower-setter-ccfa04f03dad-20220422-142253.mp4\r\n10.0_1750_lovely-persimmon-angora-c813a805fb70-20220417-210238.mp4 10.0_3760_squeaky-magnolia-ocelot-f153ac423f61-20220421-200452.mp4\r\n10.0_1751_lovely-persimmon-angora-c813a805fb70-20220417-210743.mp4 10.0_3761_squeaky-magnolia-ocelot-f153ac423f61-20220421-200952.mp4\r\n10.0_1752_lovely-persimmon-angora-c813a805fb70-20220417-211242.mp4 10.0_3762_squeaky-magnolia-ocelot-f153ac423f61-20220422-103015.mp4\r\n10.0_1753_lovely-persimmon-angora-c813a805fb70-20220417-211741.mp4 10.0_3763_squeaky-magnolia-ocelot-f153ac423f61-20220422-103631.mp4\r\n10.0_1754_lovely-persimmon-angora-c813a805fb70-20220417-212240.mp4 10.0_3764_squeaky-magnolia-ocelot-f153ac423f61-20220422-152429.mp4\r\n10.0_1755_lovely-persimmon-angora-c8d366effbf3-20220420-200758.mp4 10.0_3765_squeaky-magnolia-ocelot-f153ac423f61-20220422-153358.mp4\r\n10.0_1756_lovely-persimmon-angora-c8d366effbf3-20220420-201302.mp4 10.0_3766_squeaky-magnolia-ocelot-f153ac423f61-20220423-115959.mp4\r\n10.0_1757_lovely-persimmon-angora-c8e0a1a3c13d-20220415-002801.mp4 10.0_3767_squeaky-magnolia-ocelot-f153ac423f61-20220423-120458.mp4\r\n10.0_1758_lovely-persimmon-angora-c950a9c61b37-20220416-164309.mp4 10.0_3768_squeaky-magnolia-ocelot-f153ac423f61-20220423-124544.mp4\r\n10.0_1759_lovely-persimmon-angora-c950a9c61b37-20220416-164808.mp4 10.0_3769_squeaky-magnolia-ocelot-f153ac423f61-20220423-125043.mp4\r\n10.0_175_cheeky-cornflower-setter-787dfe04fef1-20220421-224854.mp4 10.0_376_cheeky-cornflower-setter-cd5648bf09ae-20220415-103637.mp4\r\n10.0_1760_lovely-persimmon-angora-c9a524a2caf4-20220417-125105.mp4 10.0_3770_squeaky-magnolia-ocelot-f56f56ccd855-20220415-005146.mp4\r\n10.0_1761_lovely-persimmon-angora-c9a524a2caf4-20220417-125609.mp4 10.0_3771_squeaky-magnolia-ocelot-f605f250420e-20220423-125538.mp4\r\n10.0_1762_lovely-persimmon-angora-c9a524a2caf4-20220417-130110.mp4 10.0_3772_squeaky-magnolia-ocelot-fac13dcac333-20220420-143859.mp4\r\n10.0_1763_lovely-persimmon-angora-c9a524a2caf4-20220417-130613.mp4 10.0_3773_squeaky-magnolia-ocelot-fac13dcac333-20220420-144357.mp4\r\n10.0_1764_lovely-persimmon-angora-c9a524a2caf4-20220417-131112.mp4 10.0_3774_squeaky-magnolia-ocelot-fac13dcac333-20220420-144855.mp4\r\n10.0_1765_lovely-persimmon-angora-cc042994889d-20220419-161219.mp4 10.0_3775_squeaky-magnolia-ocelot-fb069e40ae68-20220422-153543.mp4\r\n10.0_1766_lovely-persimmon-angora-cc042994889d-20220419-161727.mp4 10.0_3776_squeaky-magnolia-ocelot-fd2a1f8db04f-20220420-185858.mp4\r\n10.0_1767_lovely-persimmon-angora-cc042994889d-20220419-162227.mp4 10.0_3777_squeaky-magnolia-ocelot-fd2a1f8db04f-20220420-190354.mp4\r\n10.0_1768_lovely-persimmon-angora-cc042994889d-20220419-162730.mp4 10.0_3778_squeaky-magnolia-ocelot-fe1a26e3b219-20220422-110102.mp4\r\n10.0_1769_lovely-persimmon-angora-cc042994889d-20220419-163231.mp4 10.0_3779_squeaky-magnolia-ocelot-fe1a26e3b219-20220422-110604.mp4\r\n10.0_176_cheeky-cornflower-setter-79ad03731a24-20220421-165011.mp4 10.0_377_cheeky-cornflower-setter-cd5648bf09ae-20220415-104155.mp4\r\n10.0_1770_lovely-persimmon-angora-cc9eaa7bf430-20220417-132257.mp4 10.0_3780_squeaky-magnolia-ocelot-fe72543968b9-20220420-174555.mp4\r\n10.0_1771_lovely-persimmon-angora-cc9eaa7bf430-20220417-132802.mp4 10.0_3781_squeaky-magnolia-ocelot-fe72543968b9-20220420-175057.mp4\r\n10.0_1772_lovely-persimmon-angora-cdd7cdcf2ee7-20220419-160618.mp4 10.0_3782_squeaky-magnolia-ocelot-fe72543968b9-20220420-175554.mp4\r\n10.0_1773_lovely-persimmon-angora-cdd7cdcf2ee7-20220419-161124.mp4 10.0_3783_squeaky-ultramarine-chihuahua-48861dd4cfd2-20220421-175641.mp4\r\n10.0_1774_lovely-persimmon-angora-cf4b1c19d48e-20220421-034300.mp4 10.0_3784_squeaky-ultramarine-chihuahua-f153ac423f61-20220422-162008.mp4\r\n10.0_1775_lovely-persimmon-angora-cf4b1c19d48e-20220421-034802.mp4 10.0_3785_squeaky-ultramarine-chihuahua-f153ac423f61-20220422-163021.mp4\r\n10.0_1776_lovely-persimmon-angora-cf4b1c19d48e-20220421-035302.mp4 10.0_3786_tasty-brass-devil-12bd37539153-20220421-213743.mp4\r\n10.0_1777_lovely-persimmon-angora-cf4b1c19d48e-20220421-035801.mp4 10.0_3787_tasty-brass-devil-1b9620bc90f9-20220421-222506.mp4\r\n10.0_1778_lovely-persimmon-angora-cfc304041054-20220422-173641.mp4 10.0_3788_tasty-brass-devil-338858448ff5-20220422-221333.mp4\r\n10.0_1779_lovely-persimmon-angora-cfc912b8cdc4-20220415-153131.mp4 10.0_3789_tasty-brass-devil-338858448ff5-20220422-221915.mp4\r\n10.0_177_cheeky-cornflower-setter-79ad03731a24-20220421-170149.mp4 10.0_378_cheeky-cornflower-setter-cd5648bf09ae-20220415-104704.mp4\r\n10.0_1780_lovely-persimmon-angora-d1cf3570c5a1-20220420-053534.mp4 10.0_3790_tasty-brass-devil-338858448ff5-20220422-222420.mp4\r\n10.0_1781_lovely-persimmon-angora-d435015ffed4-20220417-194537.mp4 10.0_3791_tasty-brass-devil-3b145051e67d-20220420-173351.mp4\r\n10.0_1782_lovely-persimmon-angora-d435015ffed4-20220417-195040.mp4 10.0_3792_tasty-brass-devil-3b145051e67d-20220420-173856.mp4\r\n10.0_1783_lovely-persimmon-angora-d435015ffed4-20220417-195539.mp4 10.0_3793_tasty-brass-devil-3ea05598e5dc-20220421-191302.mp4\r\n10.0_1784_lovely-persimmon-angora-d435015ffed4-20220417-200037.mp4 10.0_3794_tasty-brass-devil-4ec549b39185-20220421-190538.mp4\r\n10.0_1785_lovely-persimmon-angora-d435015ffed4-20220417-200535.mp4 10.0_3795_tasty-brass-devil-5cafe17f1385-20220421-221204.mp4\r\n10.0_1786_lovely-persimmon-angora-d7d54ce0b48b-20220418-233610.mp4 10.0_3796_tasty-brass-devil-69d7c7e8c97d-20220422-222541.mp4\r\n10.0_1787_lovely-persimmon-angora-d7d54ce0b48b-20220418-234144.mp4 10.0_3797_tasty-brass-devil-69d7c7e8c97d-20220422-223114.mp4\r\n10.0_1788_lovely-persimmon-angora-d7d54ce0b48b-20220418-234645.mp4 10.0_3798_tasty-brass-devil-69d7c7e8c97d-20220422-223616.mp4\r\n10.0_1789_lovely-persimmon-angora-d7d54ce0b48b-20220418-235144.mp4 10.0_3799_tasty-brass-devil-69d7c7e8c97d-20220422-224116.mp4\r\n10.0_178_cheeky-cornflower-setter-79ad03731a24-20220421-171142.mp4 10.0_379_cheeky-cornflower-setter-cd5648bf09ae-20220415-105338.mp4\r\n10.0_1790_lovely-persimmon-angora-d7d54ce0b48b-20220418-235645.mp4 10.0_3800_tasty-brass-devil-706d9c49b15d-20220421-192057.mp4\r\n10.0_1791_lovely-persimmon-angora-d83511c11be7-20220419-171816.mp4 10.0_3801_tasty-brass-devil-87fa282322ed-20220422-224233.mp4\r\n10.0_1792_lovely-persimmon-angora-d84353b050a8-20220416-071656.mp4 10.0_3802_tasty-brass-devil-883743e47966-20220421-215432.mp4\r\n10.0_1793_lovely-persimmon-angora-dae40f77f53e-20220420-022228.mp4 10.0_3803_tasty-brass-devil-e178112752b4-20220421-185646.mp4\r\n10.0_1794_lovely-persimmon-angora-dae40f77f53e-20220420-023231.mp4 10.0_3804_tasty-brass-devil-f153ac423f61-20220420-171714.mp4\r\n10.0_1795_lovely-persimmon-angora-dae91dfb2ec3-20220420-120550.mp4 10.0_3805_tasty-brass-devil-f153ac423f61-20220420-172225.mp4\r\n10.0_1796_lovely-persimmon-angora-df04e456ec77-20220420-110014.mp4 10.0_3806_tasty-brass-devil-f153ac423f61-20220422-220609.mp4\r\n10.0_1797_lovely-persimmon-angora-df04e456ec77-20220420-110516.mp4 10.0_3807_tasty-brass-devil-f153ac423f61-20220422-221154.mp4\r\n10.0_1798_lovely-persimmon-angora-df04e456ec77-20220420-111015.mp4 10.0_3808_thirsty-lavender-koala-0543a255a641-20220416-125010.mp4\r\n10.0_1799_lovely-persimmon-angora-df04e456ec77-20220420-111513.mp4 10.0_3809_thirsty-lavender-koala-0543a255a641-20220416-125536.mp4\r\n10.0_179_cheeky-cornflower-setter-79d73f9f8fc3-20220414-151429.mp4 10.0_380_cheeky-cornflower-setter-cd8c9e0bf301-20220414-215741.mp4\r\n10.0_1800_lovely-persimmon-angora-df04e456ec77-20220420-112012.mp4 10.0_3810_thirsty-lavender-koala-0543a255a641-20220416-130034.mp4\r\n10.0_1801_lovely-persimmon-angora-df807369ab80-20220421-025659.mp4 10.0_3811_thirsty-lavender-koala-0c8937e6ead3-20220422-220729.mp4\r\n10.0_1802_lovely-persimmon-angora-dfca91a33b40-20220422-065459.mp4 10.0_3812_thirsty-lavender-koala-0ecc1595ea52-20220421-132533.mp4\r\n10.0_1803_lovely-persimmon-angora-dfca91a33b40-20220422-070001.mp4 10.0_3813_thirsty-lavender-koala-0ecc1595ea52-20220421-133121.mp4\r\n10.0_1804_lovely-persimmon-angora-dfca91a33b40-20220422-070500.mp4 10.0_3814_thirsty-lavender-koala-0ecc1595ea52-20220421-133625.mp4\r\n10.0_1805_lovely-persimmon-angora-dfca91a33b40-20220422-070958.mp4 10.0_3815_thirsty-lavender-koala-0ff3ba13a6c4-20220421-153153.mp4\r\n10.0_1806_lovely-persimmon-angora-dfca91a33b40-20220422-071456.mp4 10.0_3816_thirsty-lavender-koala-0ff3ba13a6c4-20220421-153725.mp4\r\n10.0_1807_lovely-persimmon-angora-e0a0af213a69-20220423-062534.mp4 10.0_3817_thirsty-lavender-koala-0ff3ba13a6c4-20220421-154222.mp4\r\n10.0_1808_lovely-persimmon-angora-e0a0af213a69-20220423-063039.mp4 10.0_3818_thirsty-lavender-koala-20f9ff9174f2-20220421-142442.mp4\r\n10.0_1809_lovely-persimmon-angora-e0a0af213a69-20220423-063539.mp4 10.0_3819_thirsty-lavender-koala-20f9ff9174f2-20220421-142954.mp4\r\n10.0_180_cheeky-cornflower-setter-79d73f9f8fc3-20220414-151936.mp4 10.0_381_cheeky-cornflower-setter-cd8c9e0bf301-20220414-220248.mp4\r\n10.0_1810_lovely-persimmon-angora-e0a0af213a69-20220423-064543.mp4 10.0_3820_thirsty-lavender-koala-20f9ff9174f2-20220421-143451.mp4\r\n10.0_1811_lovely-persimmon-angora-e10920a66232-20220416-135812.mp4 10.0_3821_thirsty-lavender-koala-2376d626134c-20220422-222301.mp4\r\n10.0_1812_lovely-persimmon-angora-e10920a66232-20220416-140321.mp4 10.0_3822_thirsty-lavender-koala-255fd62039fc-20220422-163300.mp4\r\n10.0_1813_lovely-persimmon-angora-e10920a66232-20220416-140821.mp4 10.0_3823_thirsty-lavender-koala-255fd62039fc-20220422-163838.mp4\r\n10.0_1814_lovely-persimmon-angora-e118fb40d762-20220414-220127.mp4 10.0_3824_thirsty-lavender-koala-2bf96cf1cb83-20220423-101514.mp4\r\n10.0_1815_lovely-persimmon-angora-e118fb40d762-20220414-221636.mp4 10.0_3825_thirsty-lavender-koala-2cf25990e889-20220422-212548.mp4\r\n10.0_1816_lovely-persimmon-angora-e2e35d105af3-20220416-202508.mp4 10.0_3826_thirsty-lavender-koala-2fe551b60791-20220416-180717.mp4\r\n10.0_1817_lovely-persimmon-angora-e2e35d105af3-20220416-203012.mp4 10.0_3827_thirsty-lavender-koala-3773550e150d-20220415-134217.mp4\r\n10.0_1818_lovely-persimmon-angora-e2e35d105af3-20220416-203532.mp4 10.0_3828_thirsty-lavender-koala-42089d83d4e4-20220421-134352.mp4\r\n10.0_1819_lovely-persimmon-angora-e2e35d105af3-20220416-204030.mp4 10.0_3829_thirsty-lavender-koala-42089d83d4e4-20220421-134925.mp4\r\n10.0_181_cheeky-cornflower-setter-79d73f9f8fc3-20220414-152443.mp4 10.0_382_cheeky-cornflower-setter-cd8c9e0bf301-20220414-220755.mp4\r\n10.0_1820_lovely-persimmon-angora-e2e35d105af3-20220416-204529.mp4 10.0_3830_thirsty-lavender-koala-42089d83d4e4-20220421-135421.mp4\r\n10.0_1821_lovely-persimmon-angora-e3337d81bb7b-20220420-133023.mp4 10.0_3831_thirsty-lavender-koala-42089d83d4e4-20220421-135918.mp4\r\n10.0_1822_lovely-persimmon-angora-e3337d81bb7b-20220420-133547.mp4 10.0_3832_thirsty-lavender-koala-43892bddfd51-20220416-173120.mp4\r\n10.0_1823_lovely-persimmon-angora-e37f0d371772-20220416-143909.mp4 10.0_3833_thirsty-lavender-koala-43892bddfd51-20220416-173618.mp4\r\n10.0_1824_lovely-persimmon-angora-e37f0d371772-20220416-144423.mp4 10.0_3834_thirsty-lavender-koala-43892bddfd51-20220416-174613.mp4\r\n10.0_1825_lovely-persimmon-angora-e40403c0dcee-20220414-140813.mp4 10.0_3835_thirsty-lavender-koala-4862fe7507ca-20220423-095833.mp4\r\n10.0_1826_lovely-persimmon-angora-e4510d540dbb-20220417-162525.mp4 10.0_3836_thirsty-lavender-koala-4862fe7507ca-20220423-100330.mp4\r\n10.0_1827_lovely-persimmon-angora-e4510d540dbb-20220417-163218.mp4 10.0_3837_thirsty-lavender-koala-4862fe7507ca-20220423-100858.mp4\r\n10.0_1828_lovely-persimmon-angora-e4510d540dbb-20220417-163716.mp4 10.0_3838_thirsty-lavender-koala-4d117fe5a5ee-20220416-130555.mp4\r\n10.0_1829_lovely-persimmon-angora-e4510d540dbb-20220417-164214.mp4 10.0_3839_thirsty-lavender-koala-4d117fe5a5ee-20220416-132048.mp4\r\n10.0_182_cheeky-cornflower-setter-7cd15ca835b6-20220420-201311.mp4 10.0_383_cheeky-cornflower-setter-cd8c9e0bf301-20220414-221303.mp4\r\n10.0_1830_lovely-persimmon-angora-e4510d540dbb-20220417-165214.mp4 10.0_3840_thirsty-lavender-koala-4efd6fc3dc4b-20220421-151037.mp4\r\n10.0_1831_lovely-persimmon-angora-e467aaf6d38c-20220421-064711.mp4 10.0_3841_thirsty-lavender-koala-4efd6fc3dc4b-20220421-151535.mp4\r\n10.0_1832_lovely-persimmon-angora-e467aaf6d38c-20220421-065212.mp4 10.0_3842_thirsty-lavender-koala-4efd6fc3dc4b-20220421-152032.mp4\r\n10.0_1833_lovely-persimmon-angora-e4afd0be60f1-20220422-204232.mp4 10.0_3843_thirsty-lavender-koala-4efd6fc3dc4b-20220421-152529.mp4\r\n10.0_1834_lovely-persimmon-angora-e4afd0be60f1-20220422-204737.mp4 10.0_3844_thirsty-lavender-koala-4efd6fc3dc4b-20220421-153026.mp4\r\n10.0_1835_lovely-persimmon-angora-e4afd0be60f1-20220422-205237.mp4 10.0_3845_thirsty-lavender-koala-4fd79ebae56b-20220414-110605.mp4\r\n10.0_1836_lovely-persimmon-angora-e4afd0be60f1-20220422-205737.mp4 10.0_3846_thirsty-lavender-koala-4fd79ebae56b-20220414-111241.mp4\r\n10.0_1837_lovely-persimmon-angora-e57d4b67dcb9-20220419-234606.mp4 10.0_3847_thirsty-lavender-koala-4fd79ebae56b-20220414-111738.mp4\r\n10.0_1838_lovely-persimmon-angora-e7d3ea0daba5-20220416-192002.mp4 10.0_3848_thirsty-lavender-koala-502cf1ac45cf-20220415-222024.mp4\r\n10.0_1839_lovely-persimmon-angora-e7d3ea0daba5-20220416-192504.mp4 10.0_3849_thirsty-lavender-koala-502cf1ac45cf-20220415-222531.mp4\r\n10.0_183_cheeky-cornflower-setter-7cd15ca835b6-20220420-201826.mp4 10.0_384_cheeky-cornflower-setter-ce7dbae7bd6a-20220416-193016.mp4\r\n10.0_1840_lovely-persimmon-angora-e7d3ea0daba5-20220416-193003.mp4 10.0_3850_thirsty-lavender-koala-502cf1ac45cf-20220415-223533.mp4\r\n10.0_1841_lovely-persimmon-angora-e7d3ea0daba5-20220416-193501.mp4 10.0_3851_thirsty-lavender-koala-52ecd2aff04a-20220416-183141.mp4\r\n10.0_1842_lovely-persimmon-angora-e7d3ea0daba5-20220416-200323.mp4 10.0_3852_thirsty-lavender-koala-693ab1d7d7e4-20220415-144607.mp4\r\n10.0_1843_lovely-persimmon-angora-e7d3ea0daba5-20220416-200825.mp4 10.0_3853_thirsty-lavender-koala-6c43e4e407b0-20220414-181751.mp4\r\n10.0_1844_lovely-persimmon-angora-e7d3ea0daba5-20220416-201330.mp4 10.0_3854_thirsty-lavender-koala-6c43e4e407b0-20220414-182249.mp4\r\n10.0_1845_lovely-persimmon-angora-e7d3ea0daba5-20220416-201829.mp4 10.0_3855_thirsty-lavender-koala-6c43e4e407b0-20220414-183246.mp4\r\n10.0_1846_lovely-persimmon-angora-e7d3ea0daba5-20220416-202328.mp4 10.0_3856_thirsty-lavender-koala-718512a73cdc-20220422-223324.mp4\r\n10.0_1847_lovely-persimmon-angora-e8321a83e6c1-20220419-233234.mp4 10.0_3857_thirsty-lavender-koala-77119e4deab7-20220416-133551.mp4\r\n10.0_1848_lovely-persimmon-angora-e83836eb0ed8-20220417-003614.mp4 10.0_3858_thirsty-lavender-koala-7e08c32439a0-20220423-114014.mp4\r\n10.0_1849_lovely-persimmon-angora-e83836eb0ed8-20220417-004131.mp4 10.0_3859_thirsty-lavender-koala-7e08c32439a0-20220423-114512.mp4\r\n10.0_184_cheeky-cornflower-setter-7d4d09bb280b-20220423-163544.mp4 10.0_385_cheeky-cornflower-setter-ce7dbae7bd6a-20220416-193525.mp4\r\n10.0_1850_lovely-persimmon-angora-e83836eb0ed8-20220417-004631.mp4 10.0_3860_thirsty-lavender-koala-7e08c32439a0-20220423-115045.mp4\r\n10.0_1851_lovely-persimmon-angora-e83836eb0ed8-20220417-005132.mp4 10.0_3861_thirsty-lavender-koala-7e950daeeca2-20220421-140147.mp4\r\n10.0_1852_lovely-persimmon-angora-e83836eb0ed8-20220417-005633.mp4 10.0_3862_thirsty-lavender-koala-7e950daeeca2-20220421-140646.mp4\r\n10.0_1853_lovely-persimmon-angora-e8c33774b577-20220416-222207.mp4 10.0_3863_thirsty-lavender-koala-7e950daeeca2-20220421-141231.mp4\r\n10.0_1854_lovely-persimmon-angora-e8c33774b577-20220416-222710.mp4 10.0_3864_thirsty-lavender-koala-81c80338521d-20220421-154425.mp4\r\n10.0_1855_lovely-persimmon-angora-e8c33774b577-20220416-223210.mp4 10.0_3865_thirsty-lavender-koala-81c80338521d-20220421-154955.mp4\r\n10.0_1856_lovely-persimmon-angora-e8c33774b577-20220416-223712.mp4 10.0_3866_thirsty-lavender-koala-8bb68fe642ce-20220422-154237.mp4\r\n10.0_1857_lovely-persimmon-angora-e8c33774b577-20220416-224212.mp4 10.0_3867_thirsty-lavender-koala-8bb68fe642ce-20220422-154806.mp4\r\n10.0_1858_lovely-persimmon-angora-e9d3643790ff-20220417-050458.mp4 10.0_3868_thirsty-lavender-koala-8bb68fe642ce-20220422-155303.mp4\r\n10.0_1859_lovely-persimmon-angora-e9d3643790ff-20220417-052002.mp4 10.0_3869_thirsty-lavender-koala-917af9ac292f-20220422-101246.mp4\r\n10.0_185_cheeky-cornflower-setter-7d4d09bb280b-20220423-164052.mp4 10.0_386_cheeky-cornflower-setter-ce7dbae7bd6a-20220416-194037.mp4\r\n10.0_1860_lovely-persimmon-angora-ebac0c263475-20220419-151848.mp4 10.0_3870_thirsty-lavender-koala-917af9ac292f-20220422-101925.mp4\r\n10.0_1861_lovely-persimmon-angora-ec643bba6ada-20220421-231508.mp4 10.0_3871_thirsty-lavender-koala-917af9ac292f-20220422-102422.mp4\r\n10.0_1862_lovely-persimmon-angora-ec643bba6ada-20220421-232510.mp4 10.0_3872_thirsty-lavender-koala-99a1aab577d2-20220414-193807.mp4\r\n10.0_1863_lovely-persimmon-angora-ee3de6717128-20220417-131957.mp4 10.0_3873_thirsty-lavender-koala-99a1aab577d2-20220414-194305.mp4\r\n10.0_1864_lovely-persimmon-angora-eec6b71912af-20220420-131754.mp4 10.0_3874_thirsty-lavender-koala-9c9d0760b4bc-20220422-102627.mp4\r\n10.0_1865_lovely-persimmon-angora-eef2c1a86a1d-20220416-073730.mp4 10.0_3875_thirsty-lavender-koala-9c9d0760b4bc-20220422-103154.mp4\r\n10.0_1866_lovely-persimmon-angora-eff2f1b6996c-20220417-131144.mp4 10.0_3876_thirsty-lavender-koala-9c9d0760b4bc-20220422-103651.mp4\r\n10.0_1867_lovely-persimmon-angora-eff2f1b6996c-20220417-131648.mp4 10.0_3877_thirsty-lavender-koala-9ef285ede667-20220422-160013.mp4\r\n10.0_1868_lovely-persimmon-angora-f0cfbb279849-20220416-091353.mp4 10.0_3878_thirsty-lavender-koala-9ef285ede667-20220422-160512.mp4\r\n10.0_1869_lovely-persimmon-angora-f1513f6b0399-20220417-075108.mp4 10.0_3879_thirsty-lavender-koala-9ef285ede667-20220422-161037.mp4\r\n10.0_186_cheeky-cornflower-setter-7d8eb5a47fda-20220415-192920.mp4 10.0_387_cheeky-cornflower-setter-ce7dbae7bd6a-20220416-194546.mp4\r\n10.0_1870_lovely-persimmon-angora-f1513f6b0399-20220417-075613.mp4 10.0_3880_thirsty-lavender-koala-a3e0d0d187c4-20220415-142550.mp4\r\n10.0_1871_lovely-persimmon-angora-f1513f6b0399-20220417-100015.mp4 10.0_3881_thirsty-lavender-koala-a8194d8dd0a3-20220422-213939.mp4\r\n10.0_1872_lovely-persimmon-angora-f1513f6b0399-20220417-100513.mp4 10.0_3882_thirsty-lavender-koala-ac739fefa8ef-20220422-162045.mp4\r\n10.0_1873_lovely-persimmon-angora-f153ac423f61-20220414-003212.mp4 10.0_3883_thirsty-lavender-koala-ac739fefa8ef-20220422-162614.mp4\r\n10.0_1874_lovely-persimmon-angora-f153ac423f61-20220414-003738.mp4 10.0_3884_thirsty-lavender-koala-ac8f09955e0a-20220415-230421.mp4\r\n10.0_1875_lovely-persimmon-angora-f153ac423f61-20220414-004237.mp4 10.0_3885_thirsty-lavender-koala-acdcb46bc891-20220415-224147.mp4\r\n10.0_1876_lovely-persimmon-angora-f153ac423f61-20220414-004738.mp4 10.0_3886_thirsty-lavender-koala-af565fed5e04-20220423-120319.mp4\r\n10.0_1877_lovely-persimmon-angora-f153ac423f61-20220414-015945.mp4 10.0_3887_thirsty-lavender-koala-af565fed5e04-20220423-120906.mp4\r\n10.0_1878_lovely-persimmon-angora-f153ac423f61-20220414-020538.mp4 10.0_3888_thirsty-lavender-koala-af565fed5e04-20220423-121403.mp4\r\n10.0_1879_lovely-persimmon-angora-f153ac423f61-20220414-021039.mp4 10.0_3889_thirsty-lavender-koala-bba3a3c37083-20220423-110525.mp4\r\n10.0_187_cheeky-cornflower-setter-7d8eb5a47fda-20220415-193427.mp4 10.0_388_cheeky-cornflower-setter-cf48c30a59e3-20220417-172123.mp4\r\n10.0_1880_lovely-persimmon-angora-f153ac423f61-20220414-021538.mp4 10.0_3890_thirsty-lavender-koala-bba3a3c37083-20220423-111022.mp4\r\n10.0_1881_lovely-persimmon-angora-f153ac423f61-20220414-053602.mp4 10.0_3891_thirsty-lavender-koala-bba3a3c37083-20220423-111554.mp4\r\n10.0_1882_lovely-persimmon-angora-f153ac423f61-20220414-054122.mp4 10.0_3892_thirsty-lavender-koala-c59401659108-20220416-193247.mp4\r\n10.0_1883_lovely-persimmon-angora-f153ac423f61-20220414-054621.mp4 10.0_3893_thirsty-lavender-koala-ce6d15d483fc-20220417-134839.mp4\r\n10.0_1884_lovely-persimmon-angora-f153ac423f61-20220414-055119.mp4 10.0_3894_thirsty-lavender-koala-ce6d15d483fc-20220417-140012.mp4\r\n10.0_1885_lovely-persimmon-angora-f153ac423f61-20220414-055618.mp4 10.0_3895_thirsty-lavender-koala-ce85cc648a7d-20220422-151545.mp4\r\n10.0_1886_lovely-persimmon-angora-f153ac423f61-20220414-133303.mp4 10.0_3896_thirsty-lavender-koala-ce85cc648a7d-20220422-152115.mp4\r\n10.0_1887_lovely-persimmon-angora-f153ac423f61-20220414-135251.mp4 10.0_3897_thirsty-lavender-koala-ce85cc648a7d-20220422-152635.mp4\r\n10.0_1888_lovely-persimmon-angora-f153ac423f61-20220414-135749.mp4 10.0_3898_thirsty-lavender-koala-ce85cc648a7d-20220422-153132.mp4\r\n10.0_1889_lovely-persimmon-angora-f153ac423f61-20220414-140248.mp4 10.0_3899_thirsty-lavender-koala-ce85cc648a7d-20220422-153629.mp4\r\n10.0_188_cheeky-cornflower-setter-8106e54c1f1d-20220420-204314.mp4 10.0_389_cheeky-cornflower-setter-cf48c30a59e3-20220417-172633.mp4\r\n10.0_1890_lovely-persimmon-angora-f153ac423f61-20220414-152920.mp4 10.0_3900_thirsty-lavender-koala-d060b1cf599c-20220415-132121.mp4\r\n10.0_1891_lovely-persimmon-angora-f153ac423f61-20220414-153442.mp4 10.0_3901_thirsty-lavender-koala-d060b1cf599c-20220415-132710.mp4\r\n10.0_1892_lovely-persimmon-angora-f153ac423f61-20220414-153942.mp4 10.0_3902_thirsty-lavender-koala-d060b1cf599c-20220415-133208.mp4\r\n10.0_1893_lovely-persimmon-angora-f153ac423f61-20220414-154821.mp4 10.0_3903_thirsty-lavender-koala-d060b1cf599c-20220415-134202.mp4\r\n10.0_1894_lovely-persimmon-angora-f153ac423f61-20220414-201333.mp4 10.0_3904_thirsty-lavender-koala-d43d8cbefa87-20220421-155602.mp4\r\n10.0_1895_lovely-persimmon-angora-f153ac423f61-20220414-201859.mp4 10.0_3905_thirsty-lavender-koala-d43d8cbefa87-20220421-160059.mp4\r\n10.0_1896_lovely-persimmon-angora-f153ac423f61-20220414-214029.mp4 10.0_3906_thirsty-lavender-koala-d43d8cbefa87-20220421-160635.mp4\r\n10.0_1897_lovely-persimmon-angora-f153ac423f61-20220414-214558.mp4 10.0_3907_thirsty-lavender-koala-d5a0b46b0c5f-20220415-140336.mp4\r\n10.0_1898_lovely-persimmon-angora-f153ac423f61-20220414-215058.mp4 10.0_3908_thirsty-lavender-koala-daff1950abd8-20220416-140705.mp4\r\n10.0_1899_lovely-persimmon-angora-f153ac423f61-20220414-215557.mp4 10.0_3909_thirsty-lavender-koala-db68ef1f01e5-20220414-193208.mp4\r\n10.0_189_cheeky-cornflower-setter-8106e54c1f1d-20220420-204821.mp4 10.0_390_cheeky-cornflower-setter-cf48c30a59e3-20220417-173148.mp4\r\n10.0_1900_lovely-persimmon-angora-f153ac423f61-20220414-220056.mp4 10.0_3910_thirsty-lavender-koala-db68ef1f01e5-20220414-193705.mp4\r\n10.0_1901_lovely-persimmon-angora-f153ac423f61-20220414-224855.mp4 10.0_3911_thirsty-lavender-koala-dd4ac20aefbf-20220423-111808.mp4\r\n10.0_1902_lovely-persimmon-angora-f153ac423f61-20220414-225415.mp4 10.0_3912_thirsty-lavender-koala-dd4ac20aefbf-20220423-112336.mp4\r\n10.0_1903_lovely-persimmon-angora-f153ac423f61-20220414-225914.mp4 10.0_3913_thirsty-lavender-koala-dd4ac20aefbf-20220423-113329.mp4\r\n10.0_1904_lovely-persimmon-angora-f153ac423f61-20220414-230412.mp4 10.0_3914_thirsty-lavender-koala-e25a58e01929-20220423-115201.mp4\r\n10.0_1905_lovely-persimmon-angora-f153ac423f61-20220415-035506.mp4 10.0_3915_thirsty-lavender-koala-e25a58e01929-20220423-115737.mp4\r\n10.0_1906_lovely-persimmon-angora-f153ac423f61-20220415-040555.mp4 10.0_3916_thirsty-lavender-koala-e25a58e01929-20220423-120234.mp4\r\n10.0_1907_lovely-persimmon-angora-f153ac423f61-20220415-041115.mp4 10.0_3917_thirsty-lavender-koala-e75b261d85e2-20220421-144910.mp4\r\n10.0_1908_lovely-persimmon-angora-f153ac423f61-20220415-045351.mp4 10.0_3918_thirsty-lavender-koala-e75b261d85e2-20220421-145503.mp4\r\n10.0_1909_lovely-persimmon-angora-f153ac423f61-20220415-045912.mp4 10.0_3919_thirsty-lavender-koala-e75b261d85e2-20220421-145959.mp4\r\n10.0_190_cheeky-cornflower-setter-8106e54c1f1d-20220420-205328.mp4 10.0_391_cheeky-cornflower-setter-cf48c30a59e3-20220417-173659.mp4\r\n10.0_1910_lovely-persimmon-angora-f153ac423f61-20220415-050413.mp4 10.0_3920_thirsty-lavender-koala-e783ff4c52c6-20220422-210956.mp4\r\n10.0_1911_lovely-persimmon-angora-f153ac423f61-20220415-103536.mp4 10.0_3921_thirsty-lavender-koala-ed13419c690c-20220422-215455.mp4\r\n10.0_1912_lovely-persimmon-angora-f153ac423f61-20220415-104057.mp4 10.0_3922_thirsty-lavender-koala-f153ac423f61-20220414-104227.mp4\r\n10.0_1913_lovely-persimmon-angora-f153ac423f61-20220415-104556.mp4 10.0_3923_thirsty-lavender-koala-f153ac423f61-20220414-104437.mp4\r\n10.0_1914_lovely-persimmon-angora-f153ac423f61-20220415-105054.mp4 10.0_3924_thirsty-lavender-koala-f153ac423f61-20220414-105052.mp4\r\n10.0_1915_lovely-persimmon-angora-f153ac423f61-20220415-111653.mp4 10.0_3925_thirsty-lavender-koala-f153ac423f61-20220414-105550.mp4\r\n10.0_1916_lovely-persimmon-angora-f153ac423f61-20220415-112209.mp4 10.0_3926_thirsty-lavender-koala-f153ac423f61-20220414-110046.mp4\r\n10.0_1917_lovely-persimmon-angora-f153ac423f61-20220415-150158.mp4 10.0_3927_thirsty-lavender-koala-f153ac423f61-20220414-110544.mp4\r\n10.0_1918_lovely-persimmon-angora-f153ac423f61-20220415-150723.mp4 10.0_3928_thirsty-lavender-koala-f153ac423f61-20220414-175738.mp4\r\n10.0_1919_lovely-persimmon-angora-f153ac423f61-20220415-151222.mp4 10.0_3929_thirsty-lavender-koala-f153ac423f61-20220414-180237.mp4\r\n10.0_191_cheeky-cornflower-setter-8106e54c1f1d-20220420-205834.mp4 10.0_392_cheeky-cornflower-setter-d17755b9f798-20220415-100935.mp4\r\n10.0_1920_lovely-persimmon-angora-f153ac423f61-20220415-151723.mp4 10.0_3930_thirsty-lavender-koala-f153ac423f61-20220414-180743.mp4\r\n10.0_1921_lovely-persimmon-angora-f153ac423f61-20220415-190151.mp4 10.0_3931_thirsty-lavender-koala-f153ac423f61-20220414-181241.mp4\r\n10.0_1922_lovely-persimmon-angora-f153ac423f61-20220415-190711.mp4 10.0_3932_thirsty-lavender-koala-f153ac423f61-20220414-192402.mp4\r\n10.0_1923_lovely-persimmon-angora-f153ac423f61-20220415-191212.mp4 10.0_3933_thirsty-lavender-koala-f153ac423f61-20220414-192912.mp4\r\n10.0_1924_lovely-persimmon-angora-f153ac423f61-20220415-191713.mp4 10.0_3934_thirsty-lavender-koala-f153ac423f61-20220415-130820.mp4\r\n10.0_1925_lovely-persimmon-angora-f153ac423f61-20220415-192215.mp4 10.0_3935_thirsty-lavender-koala-f153ac423f61-20220415-131319.mp4\r\n10.0_1926_lovely-persimmon-angora-f153ac423f61-20220415-195645.mp4 10.0_3936_thirsty-lavender-koala-f153ac423f61-20220415-131817.mp4\r\n10.0_1927_lovely-persimmon-angora-f153ac423f61-20220415-200205.mp4 10.0_3937_thirsty-lavender-koala-f153ac423f61-20220415-220216.mp4\r\n10.0_1928_lovely-persimmon-angora-f153ac423f61-20220415-200705.mp4 10.0_3938_thirsty-lavender-koala-f153ac423f61-20220415-220749.mp4\r\n10.0_1929_lovely-persimmon-angora-f153ac423f61-20220415-205356.mp4 10.0_3939_thirsty-lavender-koala-f153ac423f61-20220415-221251.mp4\r\n10.0_192_cheeky-cornflower-setter-81a52cd113c1-20220416-132756.mp4 10.0_393_cheeky-cornflower-setter-d17755b9f798-20220415-101444.mp4\r\n10.0_1930_lovely-persimmon-angora-f153ac423f61-20220415-205919.mp4 10.0_3940_thirsty-lavender-koala-f153ac423f61-20220415-221749.mp4\r\n10.0_1931_lovely-persimmon-angora-f153ac423f61-20220415-210420.mp4 10.0_3941_thirsty-lavender-koala-f153ac423f61-20220416-124041.mp4\r\n10.0_1932_lovely-persimmon-angora-f153ac423f61-20220416-011800.mp4 10.0_3942_thirsty-lavender-koala-f153ac423f61-20220416-124539.mp4\r\n10.0_1933_lovely-persimmon-angora-f153ac423f61-20220416-012231.mp4 10.0_3943_thirsty-lavender-koala-f153ac423f61-20220416-170339.mp4\r\n10.0_1934_lovely-persimmon-angora-f153ac423f61-20220416-012806.mp4 10.0_3944_thirsty-lavender-koala-f153ac423f61-20220416-170837.mp4\r\n10.0_1935_lovely-persimmon-angora-f153ac423f61-20220416-013308.mp4 10.0_3945_thirsty-lavender-koala-f153ac423f61-20220416-171335.mp4\r\n10.0_1936_lovely-persimmon-angora-f153ac423f61-20220416-013813.mp4 10.0_3946_thirsty-lavender-koala-f153ac423f61-20220416-171832.mp4\r\n10.0_1937_lovely-persimmon-angora-f153ac423f61-20220416-014551.mp4 10.0_3947_thirsty-lavender-koala-f153ac423f61-20220416-172329.mp4\r\n10.0_1938_lovely-persimmon-angora-f153ac423f61-20220416-063505.mp4 10.0_3948_thirsty-lavender-koala-f153ac423f61-20220417-133055.mp4\r\n10.0_1939_lovely-persimmon-angora-f153ac423f61-20220416-135137.mp4 10.0_3949_thirsty-lavender-koala-f153ac423f61-20220417-133630.mp4\r\n10.0_193_cheeky-cornflower-setter-81a52cd113c1-20220416-133316.mp4 10.0_394_cheeky-cornflower-setter-d17755b9f798-20220415-101953.mp4\r\n10.0_1940_lovely-persimmon-angora-f153ac423f61-20220416-135709.mp4 10.0_3950_thirsty-lavender-koala-f153ac423f61-20220417-134133.mp4\r\n10.0_1941_lovely-persimmon-angora-f153ac423f61-20220416-180543.mp4 10.0_3951_thirsty-lavender-koala-f153ac423f61-20220417-134630.mp4\r\n10.0_1942_lovely-persimmon-angora-f153ac423f61-20220416-181112.mp4 10.0_3952_thirsty-lavender-koala-f153ac423f61-20220421-130403.mp4\r\n10.0_1943_lovely-persimmon-angora-f153ac423f61-20220416-181617.mp4 10.0_3953_thirsty-lavender-koala-f153ac423f61-20220421-130914.mp4\r\n10.0_1944_lovely-persimmon-angora-f153ac423f61-20220416-182117.mp4 10.0_3954_thirsty-lavender-koala-f153ac423f61-20220421-131518.mp4\r\n10.0_1945_lovely-persimmon-angora-f153ac423f61-20220416-182617.mp4 10.0_3955_thirsty-lavender-koala-f153ac423f61-20220421-132015.mp4\r\n10.0_1946_lovely-persimmon-angora-f153ac423f61-20220416-213717.mp4 10.0_3956_thirsty-lavender-koala-f153ac423f61-20220421-132512.mp4\r\n10.0_1947_lovely-persimmon-angora-f153ac423f61-20220416-214236.mp4 10.0_3957_thirsty-lavender-koala-f153ac423f61-20220422-095927.mp4\r\n10.0_1948_lovely-persimmon-angora-f153ac423f61-20220416-214736.mp4 10.0_3958_thirsty-lavender-koala-f153ac423f61-20220422-100500.mp4\r\n10.0_1949_lovely-persimmon-angora-f153ac423f61-20220416-215235.mp4 10.0_3959_thirsty-lavender-koala-f153ac423f61-20220422-100957.mp4\r\n10.0_194_cheeky-cornflower-setter-824504a2f291-20220415-122034.mp4 10.0_395_cheeky-cornflower-setter-d17755b9f798-20220415-102458.mp4\r\n10.0_1950_lovely-persimmon-angora-f153ac423f61-20220417-020701.mp4 10.0_3960_thirsty-lavender-koala-f153ac423f61-20220422-150214.mp4\r\n10.0_1951_lovely-persimmon-angora-f153ac423f61-20220417-021225.mp4 10.0_3961_thirsty-lavender-koala-f153ac423f61-20220422-150758.mp4\r\n10.0_1952_lovely-persimmon-angora-f153ac423f61-20220417-021724.mp4 10.0_3962_thirsty-lavender-koala-f153ac423f61-20220422-151255.mp4\r\n10.0_1953_lovely-persimmon-angora-f153ac423f61-20220417-022222.mp4 10.0_3963_thirsty-lavender-koala-f153ac423f61-20220422-205523.mp4\r\n10.0_1954_lovely-persimmon-angora-f153ac423f61-20220417-022804.mp4 10.0_3964_thirsty-lavender-koala-f153ac423f61-20220422-210050.mp4\r\n10.0_1955_lovely-persimmon-angora-f153ac423f61-20220417-071515.mp4 10.0_3965_thirsty-lavender-koala-f153ac423f61-20220422-210603.mp4\r\n10.0_1956_lovely-persimmon-angora-f153ac423f61-20220417-072035.mp4 10.0_3966_thirsty-lavender-koala-f153ac423f61-20220423-094206.mp4\r\n10.0_1957_lovely-persimmon-angora-f153ac423f61-20220417-072533.mp4 10.0_3967_thirsty-lavender-koala-f153ac423f61-20220423-094704.mp4\r\n10.0_1958_lovely-persimmon-angora-f153ac423f61-20220417-073031.mp4 10.0_3968_thirsty-lavender-koala-f153ac423f61-20220423-095239.mp4\r\n10.0_1959_lovely-persimmon-angora-f153ac423f61-20220417-073529.mp4 10.0_3969_thirsty-lavender-koala-f153ac423f61-20220423-105025.mp4\r\n10.0_195_cheeky-cornflower-setter-824504a2f291-20220415-122544.mp4 10.0_396_cheeky-cornflower-setter-d2855cba09a2-20220423-233116.mp4\r\n10.0_1960_lovely-persimmon-angora-f153ac423f61-20220417-154400.mp4 10.0_3970_thirsty-lavender-koala-f153ac423f61-20220423-105853.mp4\r\n10.0_1961_lovely-persimmon-angora-f153ac423f61-20220417-154918.mp4 10.0_3971_thirsty-lavender-koala-f153ac423f61-20220423-110429.mp4\r\n10.0_1962_lovely-persimmon-angora-f153ac423f61-20220417-155416.mp4 10.0_3972_trippy-red-llama-02630dd4ef35-20220422-163101.mp4\r\n10.0_1963_lovely-persimmon-angora-f153ac423f61-20220417-155914.mp4 10.0_3973_trippy-red-llama-02630dd4ef35-20220422-163608.mp4\r\n10.0_1964_lovely-persimmon-angora-f153ac423f61-20220417-160413.mp4 10.0_3974_trippy-red-llama-02630dd4ef35-20220422-164116.mp4\r\n10.0_1965_lovely-persimmon-angora-f153ac423f61-20220417-165500.mp4 10.0_3975_trippy-red-llama-02e87d0b4b50-20220416-154702.mp4\r\n10.0_1966_lovely-persimmon-angora-f153ac423f61-20220417-170025.mp4 10.0_3976_trippy-red-llama-02e87d0b4b50-20220416-155214.mp4\r\n10.0_1967_lovely-persimmon-angora-f153ac423f61-20220417-170526.mp4 10.0_3977_trippy-red-llama-02e87d0b4b50-20220416-155724.mp4\r\n10.0_1968_lovely-persimmon-angora-f153ac423f61-20220417-171025.mp4 10.0_3978_trippy-red-llama-02e87d0b4b50-20220416-160231.mp4\r\n10.0_1969_lovely-persimmon-angora-f153ac423f61-20220417-171524.mp4 10.0_3979_trippy-red-llama-02e87d0b4b50-20220416-160740.mp4\r\n10.0_196_cheeky-cornflower-setter-824504a2f291-20220415-123050.mp4 10.0_397_cheeky-cornflower-setter-d2855cba09a2-20220423-233628.mp4\r\n10.0_1970_lovely-persimmon-angora-f153ac423f61-20220418-064518.mp4 10.0_3980_trippy-red-llama-0347c3d99bba-20220416-165611.mp4\r\n10.0_1971_lovely-persimmon-angora-f153ac423f61-20220418-065042.mp4 10.0_3981_trippy-red-llama-0347c3d99bba-20220416-170124.mp4\r\n10.0_1972_lovely-persimmon-angora-f153ac423f61-20220418-065541.mp4 10.0_3982_trippy-red-llama-0347c3d99bba-20220416-170653.mp4\r\n10.0_1973_lovely-persimmon-angora-f153ac423f61-20220418-070041.mp4 10.0_3983_trippy-red-llama-0347c3d99bba-20220416-171426.mp4\r\n10.0_1974_lovely-persimmon-angora-f153ac423f61-20220418-070543.mp4 10.0_3984_trippy-red-llama-0347c3d99bba-20220416-171934.mp4\r\n10.0_1975_lovely-persimmon-angora-f153ac423f61-20220418-203358.mp4 10.0_3985_trippy-red-llama-0d94a3d90657-20220422-184954.mp4\r\n10.0_1976_lovely-persimmon-angora-f153ac423f61-20220418-203929.mp4 10.0_3986_trippy-red-llama-0d94a3d90657-20220422-185525.mp4\r\n10.0_1977_lovely-persimmon-angora-f153ac423f61-20220418-204432.mp4 10.0_3987_trippy-red-llama-105381fac26f-20220416-193806.mp4\r\n10.0_1978_lovely-persimmon-angora-f153ac423f61-20220418-204931.mp4 10.0_3988_trippy-red-llama-105381fac26f-20220416-194338.mp4\r\n10.0_1979_lovely-persimmon-angora-f153ac423f61-20220418-205430.mp4 10.0_3989_trippy-red-llama-105381fac26f-20220416-194848.mp4\r\n10.0_197_cheeky-cornflower-setter-824504a2f291-20220415-123556.mp4 10.0_398_cheeky-cornflower-setter-d2855cba09a2-20220423-234139.mp4\r\n10.0_1980_lovely-persimmon-angora-f153ac423f61-20220418-214011.mp4 10.0_3990_trippy-red-llama-1390064b21f8-20220415-220506.mp4\r\n10.0_1981_lovely-persimmon-angora-f153ac423f61-20220418-220947.mp4 10.0_3991_trippy-red-llama-28314073c243-20220415-192000.mp4\r\n10.0_1982_lovely-persimmon-angora-f153ac423f61-20220418-221447.mp4 10.0_3992_trippy-red-llama-28314073c243-20220415-192513.mp4\r\n10.0_1983_lovely-persimmon-angora-f153ac423f61-20220418-221945.mp4 10.0_3993_trippy-red-llama-28402705d5ed-20220415-211256.mp4\r\n10.0_1984_lovely-persimmon-angora-f153ac423f61-20220418-222445.mp4 10.0_3994_trippy-red-llama-28402705d5ed-20220415-211830.mp4\r\n10.0_1985_lovely-persimmon-angora-f153ac423f61-20220419-032131.mp4 10.0_3995_trippy-red-llama-28402705d5ed-20220415-212350.mp4\r\n10.0_1986_lovely-persimmon-angora-f153ac423f61-20220419-032719.mp4 10.0_3996_trippy-red-llama-285c4becc17a-20220416-172922.mp4\r\n10.0_1987_lovely-persimmon-angora-f153ac423f61-20220419-033224.mp4 10.0_3997_trippy-red-llama-285c4becc17a-20220416-173436.mp4\r\n10.0_1988_lovely-persimmon-angora-f153ac423f61-20220419-033726.mp4 10.0_3998_trippy-red-llama-2d46b49dc77d-20220420-153412.mp4\r\n10.0_1989_lovely-persimmon-angora-f153ac423f61-20220419-034225.mp4 10.0_3999_trippy-red-llama-2d46b49dc77d-20220420-153924.mp4\r\n10.0_198_cheeky-cornflower-setter-82f9b652399f-20220416-215325.mp4 10.0_399_cheeky-cornflower-setter-d47fb613a557-20220415-212006.mp4\r\n10.0_1990_lovely-persimmon-angora-f153ac423f61-20220419-143043.mp4 10.0_4000_trippy-red-llama-2d46b49dc77d-20220420-154458.mp4\r\n10.0_1991_lovely-persimmon-angora-f153ac423f61-20220419-171113.mp4 10.0_4001_trippy-red-llama-2d46b49dc77d-20220420-155009.mp4\r\n10.0_1992_lovely-persimmon-angora-f153ac423f61-20220419-171633.mp4 10.0_4002_trippy-red-llama-31f00fbc6b1b-20220415-214406.mp4\r\n10.0_1993_lovely-persimmon-angora-f153ac423f61-20220419-200147.mp4 10.0_4003_trippy-red-llama-31f00fbc6b1b-20220415-214929.mp4\r\n10.0_1994_lovely-persimmon-angora-f153ac423f61-20220419-200721.mp4 10.0_4004_trippy-red-llama-31f00fbc6b1b-20220415-215445.mp4\r\n10.0_1995_lovely-persimmon-angora-f153ac423f61-20220419-201227.mp4 10.0_4005_trippy-red-llama-31f00fbc6b1b-20220415-215957.mp4\r\n10.0_1996_lovely-persimmon-angora-f153ac423f61-20220419-213041.mp4 10.0_4006_trippy-red-llama-39bb8cd6cf7b-20220420-161358.mp4\r\n10.0_1997_lovely-persimmon-angora-f153ac423f61-20220419-213557.mp4 10.0_4007_trippy-red-llama-39bb8cd6cf7b-20220420-161948.mp4\r\n10.0_1998_lovely-persimmon-angora-f153ac423f61-20220419-214057.mp4 10.0_4008_trippy-red-llama-39bb8cd6cf7b-20220420-162731.mp4\r\n10.0_1999_lovely-persimmon-angora-f153ac423f61-20220419-214555.mp4 10.0_4009_trippy-red-llama-39bb8cd6cf7b-20220420-163238.mp4\r\n10.0_199_cheeky-cornflower-setter-82f9b652399f-20220416-215836.mp4 10.0_400_cheeky-cornflower-setter-d47fb613a557-20220415-212533.mp4\r\n10.0_2000_lovely-persimmon-angora-f153ac423f61-20220419-215054.mp4 10.0_4010_trippy-red-llama-3ad0c143bca6-20220416-195839.mp4\r\n10.0_2001_lovely-persimmon-angora-f153ac423f61-20220420-020138.mp4 10.0_4011_trippy-red-llama-3ad0c143bca6-20220416-200430.mp4\r\n10.0_2002_lovely-persimmon-angora-f153ac423f61-20220420-020659.mp4 10.0_4012_trippy-red-llama-3ad0c143bca6-20220416-200954.mp4\r\n10.0_2003_lovely-persimmon-angora-f153ac423f61-20220420-021158.mp4 10.0_4013_trippy-red-llama-3ad0c143bca6-20220416-201508.mp4\r\n10.0_2004_lovely-persimmon-angora-f153ac423f61-20220420-021657.mp4 10.0_4014_trippy-red-llama-3ad0c143bca6-20220416-202017.mp4\r\n10.0_2005_lovely-persimmon-angora-f153ac423f61-20220420-022156.mp4 10.0_4015_trippy-red-llama-402454d3c21d-20220415-192856.mp4\r\n10.0_2006_lovely-persimmon-angora-f153ac423f61-20220420-023558.mp4 10.0_4016_trippy-red-llama-402454d3c21d-20220415-193424.mp4\r\n10.0_2007_lovely-persimmon-angora-f153ac423f61-20220420-024136.mp4 10.0_4017_trippy-red-llama-402454d3c21d-20220415-193939.mp4\r\n10.0_2008_lovely-persimmon-angora-f153ac423f61-20220420-024637.mp4 10.0_4018_trippy-red-llama-4d6b87ad1adf-20220421-195903.mp4\r\n10.0_2009_lovely-persimmon-angora-f153ac423f61-20220420-025135.mp4 10.0_4019_trippy-red-llama-4d6b87ad1adf-20220421-200433.mp4\r\n10.0_200_cheeky-cornflower-setter-82f9b652399f-20220416-220352.mp4 10.0_401_cheeky-cornflower-setter-d47fb613a557-20220415-213102.mp4\r\n10.0_2010_lovely-persimmon-angora-f153ac423f61-20220420-091325.mp4 10.0_4020_trippy-red-llama-4d6b87ad1adf-20220421-200953.mp4\r\n10.0_2011_lovely-persimmon-angora-f153ac423f61-20220420-091845.mp4 10.0_4021_trippy-red-llama-54b229e79dd2-20220421-221850.mp4\r\n10.0_2012_lovely-persimmon-angora-f153ac423f61-20220420-092345.mp4 10.0_4022_trippy-red-llama-54b229e79dd2-20220421-222403.mp4\r\n10.0_2013_lovely-persimmon-angora-f153ac423f61-20220420-092844.mp4 10.0_4023_trippy-red-llama-54b229e79dd2-20220421-222915.mp4\r\n10.0_2014_lovely-persimmon-angora-f153ac423f61-20220420-093342.mp4 10.0_4024_trippy-red-llama-5b608d905cc3-20220422-183900.mp4\r\n10.0_2015_lovely-persimmon-angora-f153ac423f61-20220420-141117.mp4 10.0_4025_trippy-red-llama-5b608d905cc3-20220422-184408.mp4\r\n10.0_2016_lovely-persimmon-angora-f153ac423f61-20220420-141650.mp4 10.0_4026_trippy-red-llama-5b608d905cc3-20220422-184928.mp4\r\n10.0_2017_lovely-persimmon-angora-f153ac423f61-20220420-174349.mp4 10.0_4027_trippy-red-llama-5f0eebfff0c8-20220421-223745.mp4\r\n10.0_2018_lovely-persimmon-angora-f153ac423f61-20220420-174908.mp4 10.0_4028_trippy-red-llama-60ed08c3094d-20220422-151422.mp4\r\n10.0_2019_lovely-persimmon-angora-f153ac423f61-20220420-181226.mp4 10.0_4029_trippy-red-llama-6254d31ede86-20220420-175218.mp4\r\n10.0_201_cheeky-cornflower-setter-82f9b652399f-20220416-220902.mp4 10.0_402_cheeky-cornflower-setter-d6271ff1db34-20220418-112646.mp4\r\n10.0_2020_lovely-persimmon-angora-f153ac423f61-20220420-181741.mp4 10.0_4030_trippy-red-llama-6412a8fe3bcc-20220421-215219.mp4\r\n10.0_2021_lovely-persimmon-angora-f153ac423f61-20220420-182240.mp4 10.0_4031_trippy-red-llama-6412a8fe3bcc-20220421-215818.mp4\r\n10.0_2022_lovely-persimmon-angora-f153ac423f61-20220420-182740.mp4 10.0_4032_trippy-red-llama-6412a8fe3bcc-20220421-220508.mp4\r\n10.0_2023_lovely-persimmon-angora-f153ac423f61-20220420-183239.mp4 10.0_4033_trippy-red-llama-6412a8fe3bcc-20220421-221023.mp4\r\n10.0_2024_lovely-persimmon-angora-f153ac423f61-20220420-194711.mp4 10.0_4034_trippy-red-llama-6a74b3f7f1e8-20220420-164011.mp4\r\n10.0_2025_lovely-persimmon-angora-f153ac423f61-20220420-195230.mp4 10.0_4035_trippy-red-llama-6a74b3f7f1e8-20220420-164520.mp4\r\n10.0_2026_lovely-persimmon-angora-f153ac423f61-20220420-195729.mp4 10.0_4036_trippy-red-llama-6a74b3f7f1e8-20220420-165030.mp4\r\n10.0_2027_lovely-persimmon-angora-f153ac423f61-20220420-200228.mp4 10.0_4037_trippy-red-llama-6a74b3f7f1e8-20220420-165536.mp4\r\n10.0_2028_lovely-persimmon-angora-f153ac423f61-20220420-221956.mp4 10.0_4038_trippy-red-llama-6a74b3f7f1e8-20220420-170043.mp4\r\n10.0_2029_lovely-persimmon-angora-f153ac423f61-20220420-222519.mp4 10.0_4039_trippy-red-llama-7e95232b0cbf-20220420-175404.mp4\r\n10.0_202_cheeky-cornflower-setter-85a9d0b40dcd-20220416-175809.mp4 10.0_403_cheeky-cornflower-setter-d6271ff1db34-20220418-113151.mp4\r\n10.0_2030_lovely-persimmon-angora-f153ac423f61-20220420-223018.mp4 10.0_4040_trippy-red-llama-7f91f89f534d-20220416-161343.mp4\r\n10.0_2031_lovely-persimmon-angora-f153ac423f61-20220420-225549.mp4 10.0_4041_trippy-red-llama-7f91f89f534d-20220416-161923.mp4\r\n10.0_2032_lovely-persimmon-angora-f153ac423f61-20220420-230138.mp4 10.0_4042_trippy-red-llama-7f91f89f534d-20220416-162456.mp4\r\n10.0_2033_lovely-persimmon-angora-f153ac423f61-20220420-230713.mp4 10.0_4043_trippy-red-llama-7f91f89f534d-20220416-163009.mp4\r\n10.0_2034_lovely-persimmon-angora-f153ac423f61-20220420-231214.mp4 10.0_4044_trippy-red-llama-84207d1e3d50-20220416-175603.mp4\r\n10.0_2035_lovely-persimmon-angora-f153ac423f61-20220420-231716.mp4 10.0_4045_trippy-red-llama-84207d1e3d50-20220416-180108.mp4\r\n10.0_2036_lovely-persimmon-angora-f153ac423f61-20220420-232218.mp4 10.0_4046_trippy-red-llama-84207d1e3d50-20220416-180617.mp4\r\n10.0_2037_lovely-persimmon-angora-f153ac423f61-20220421-004227.mp4 10.0_4047_trippy-red-llama-84207d1e3d50-20220416-181130.mp4\r\n10.0_2038_lovely-persimmon-angora-f153ac423f61-20220421-004744.mp4 10.0_4048_trippy-red-llama-84207d1e3d50-20220416-181641.mp4\r\n10.0_2039_lovely-persimmon-angora-f153ac423f61-20220421-005244.mp4 10.0_4049_trippy-red-llama-8a9365b90a99-20220422-190720.mp4\r\n10.0_203_cheeky-cornflower-setter-85a9d0b40dcd-20220416-180318.mp4 10.0_404_cheeky-cornflower-setter-d6271ff1db34-20220418-113655.mp4\r\n10.0_2040_lovely-persimmon-angora-f153ac423f61-20220421-012737.mp4 10.0_4050_trippy-red-llama-8a9365b90a99-20220422-191315.mp4\r\n10.0_2041_lovely-persimmon-angora-f153ac423f61-20220421-013257.mp4 10.0_4051_trippy-red-llama-8a9365b90a99-20220422-192019.mp4\r\n10.0_2042_lovely-persimmon-angora-f153ac423f61-20220421-013756.mp4 10.0_4052_trippy-red-llama-8aa1ae3eb518-20220422-181527.mp4\r\n10.0_2043_lovely-persimmon-angora-f153ac423f61-20220421-014255.mp4 10.0_4053_trippy-red-llama-8aa1ae3eb518-20220422-182046.mp4\r\n10.0_2044_lovely-persimmon-angora-f153ac423f61-20220421-014753.mp4 10.0_4054_trippy-red-llama-8aa1ae3eb518-20220422-182600.mp4\r\n10.0_2045_lovely-persimmon-angora-f153ac423f61-20220421-041154.mp4 10.0_4055_trippy-red-llama-9abeeaa15f61-20220421-201303.mp4\r\n10.0_2046_lovely-persimmon-angora-f153ac423f61-20220421-041711.mp4 10.0_4056_trippy-red-llama-9abeeaa15f61-20220421-201820.mp4\r\n10.0_2047_lovely-persimmon-angora-f153ac423f61-20220421-042210.mp4 10.0_4057_trippy-red-llama-a0e3295e243d-20220415-234637.mp4\r\n10.0_2048_lovely-persimmon-angora-f153ac423f61-20220421-042709.mp4 10.0_4058_trippy-red-llama-a0e3295e243d-20220415-235156.mp4\r\n10.0_2049_lovely-persimmon-angora-f153ac423f61-20220421-043208.mp4 10.0_4059_trippy-red-llama-a0e3295e243d-20220415-235710.mp4\r\n10.0_204_cheeky-cornflower-setter-88b199c32cb1-20220421-192515.mp4 10.0_405_cheeky-cornflower-setter-d7ba96c35954-20220423-141526.mp4\r\n10.0_2050_lovely-persimmon-angora-f153ac423f61-20220421-054547.mp4 10.0_4060_trippy-red-llama-a0e3295e243d-20220416-000222.mp4\r\n10.0_2051_lovely-persimmon-angora-f153ac423f61-20220421-055106.mp4 10.0_4061_trippy-red-llama-a1e3f6dfbf3f-20220422-151618.mp4\r\n10.0_2052_lovely-persimmon-angora-f153ac423f61-20220421-055606.mp4 10.0_4062_trippy-red-llama-a1e3f6dfbf3f-20220422-152231.mp4\r\n10.0_2053_lovely-persimmon-angora-f153ac423f61-20220421-060105.mp4 10.0_4063_trippy-red-llama-a607cb7a59d6-20220416-190705.mp4\r\n10.0_2054_lovely-persimmon-angora-f153ac423f61-20220421-060603.mp4 10.0_4064_trippy-red-llama-a607cb7a59d6-20220416-191220.mp4\r\n10.0_2055_lovely-persimmon-angora-f153ac423f61-20220421-093412.mp4 10.0_4065_trippy-red-llama-a607cb7a59d6-20220416-191730.mp4\r\n10.0_2056_lovely-persimmon-angora-f153ac423f61-20220421-093928.mp4 10.0_4066_trippy-red-llama-a607cb7a59d6-20220416-192236.mp4\r\n10.0_2057_lovely-persimmon-angora-f153ac423f61-20220421-094431.mp4 10.0_4067_trippy-red-llama-a607cb7a59d6-20220416-192742.mp4\r\n10.0_2058_lovely-persimmon-angora-f153ac423f61-20220421-094931.mp4 10.0_4068_trippy-red-llama-abb00dcfc2b8-20220415-191536.mp4\r\n10.0_2059_lovely-persimmon-angora-f153ac423f61-20220421-095430.mp4 10.0_4069_trippy-red-llama-ad3f3d4f06bc-20220415-192634.mp4\r\n10.0_205_cheeky-cornflower-setter-88b199c32cb1-20220421-193024.mp4 10.0_406_cheeky-cornflower-setter-d7ba96c35954-20220423-142035.mp4\r\n10.0_2060_lovely-persimmon-angora-f153ac423f61-20220421-104605.mp4 10.0_4070_trippy-red-llama-b0ef4896aac5-20220415-194134.mp4\r\n10.0_2061_lovely-persimmon-angora-f153ac423f61-20220421-105227.mp4 10.0_4071_trippy-red-llama-b0ef4896aac5-20220415-194645.mp4\r\n10.0_2062_lovely-persimmon-angora-f153ac423f61-20220421-190118.mp4 10.0_4072_trippy-red-llama-b380da9155f1-20220421-185327.mp4\r\n10.0_2063_lovely-persimmon-angora-f153ac423f61-20220421-190642.mp4 10.0_4073_trippy-red-llama-b380da9155f1-20220421-185850.mp4\r\n10.0_2064_lovely-persimmon-angora-f153ac423f61-20220421-191144.mp4 10.0_4074_trippy-red-llama-b380da9155f1-20220421-190412.mp4\r\n10.0_2065_lovely-persimmon-angora-f153ac423f61-20220421-191642.mp4 10.0_4075_trippy-red-llama-b380da9155f1-20220421-190925.mp4\r\n10.0_2066_lovely-persimmon-angora-f153ac423f61-20220421-192142.mp4 10.0_4076_trippy-red-llama-b380da9155f1-20220421-191435.mp4\r\n10.0_2067_lovely-persimmon-angora-f153ac423f61-20220421-200103.mp4 10.0_4077_trippy-red-llama-bb52638e65d6-20220420-181422.mp4\r\n10.0_2068_lovely-persimmon-angora-f153ac423f61-20220421-200626.mp4 10.0_4078_trippy-red-llama-bb52638e65d6-20220420-181934.mp4\r\n10.0_2069_lovely-persimmon-angora-f153ac423f61-20220421-201125.mp4 10.0_4079_trippy-red-llama-bb52638e65d6-20220420-182443.mp4\r\n10.0_206_cheeky-cornflower-setter-88b199c32cb1-20220421-193530.mp4 10.0_407_cheeky-cornflower-setter-d7ba96c35954-20220423-142543.mp4\r\n10.0_2070_lovely-persimmon-angora-f153ac423f61-20220421-201625.mp4 10.0_4080_trippy-red-llama-c60e862e7b98-20220415-203413.mp4\r\n10.0_2071_lovely-persimmon-angora-f153ac423f61-20220421-202124.mp4 10.0_4081_trippy-red-llama-c60e862e7b98-20220415-203927.mp4\r\n10.0_2072_lovely-persimmon-angora-f153ac423f61-20220421-205302.mp4 10.0_4082_trippy-red-llama-c60e862e7b98-20220415-204445.mp4\r\n10.0_2073_lovely-persimmon-angora-f153ac423f61-20220421-205820.mp4 10.0_4083_trippy-red-llama-c60e862e7b98-20220415-204959.mp4\r\n10.0_2074_lovely-persimmon-angora-f153ac423f61-20220421-210320.mp4 10.0_4084_trippy-red-llama-c60e862e7b98-20220415-205516.mp4\r\n10.0_2075_lovely-persimmon-angora-f153ac423f61-20220421-210817.mp4 10.0_4085_trippy-red-llama-c8804f6d4981-20220421-201153.mp4\r\n10.0_2076_lovely-persimmon-angora-f153ac423f61-20220421-211315.mp4 10.0_4086_trippy-red-llama-cbd071ff0ee7-20220415-222546.mp4\r\n10.0_2077_lovely-persimmon-angora-f153ac423f61-20220421-225405.mp4 10.0_4087_trippy-red-llama-cbd071ff0ee7-20220415-223101.mp4\r\n10.0_2078_lovely-persimmon-angora-f153ac423f61-20220421-225926.mp4 10.0_4088_trippy-red-llama-cbd071ff0ee7-20220415-223611.mp4\r\n10.0_2079_lovely-persimmon-angora-f153ac423f61-20220421-230426.mp4 10.0_4089_trippy-red-llama-cbd071ff0ee7-20220415-224122.mp4\r\n10.0_207_cheeky-cornflower-setter-88b199c32cb1-20220421-194037.mp4 10.0_408_cheeky-cornflower-setter-d7ba96c35954-20220423-143049.mp4\r\n10.0_2080_lovely-persimmon-angora-f153ac423f61-20220422-001712.mp4 10.0_4090_trippy-red-llama-cbd071ff0ee7-20220415-224631.mp4\r\n10.0_2081_lovely-persimmon-angora-f153ac423f61-20220422-002232.mp4 10.0_4091_trippy-red-llama-ce476b3bd455-20220421-203045.mp4\r\n10.0_2082_lovely-persimmon-angora-f153ac423f61-20220422-002731.mp4 10.0_4092_trippy-red-llama-ce476b3bd455-20220421-203857.mp4\r\n10.0_2083_lovely-persimmon-angora-f153ac423f61-20220422-003230.mp4 10.0_4093_trippy-red-llama-ce476b3bd455-20220421-204424.mp4\r\n10.0_2084_lovely-persimmon-angora-f153ac423f61-20220422-003729.mp4 10.0_4094_trippy-red-llama-ce476b3bd455-20220421-204939.mp4\r\n10.0_2085_lovely-persimmon-angora-f153ac423f61-20220422-013823.mp4 10.0_4095_trippy-red-llama-d6087be5f80c-20220421-205319.mp4\r\n10.0_2086_lovely-persimmon-angora-f153ac423f61-20220422-014352.mp4 10.0_4096_trippy-red-llama-d8c451cba964-20220420-160048.mp4\r\n10.0_2087_lovely-persimmon-angora-f153ac423f61-20220422-014854.mp4 10.0_4097_trippy-red-llama-d8c451cba964-20220420-160624.mp4\r\n10.0_2088_lovely-persimmon-angora-f153ac423f61-20220422-015356.mp4 10.0_4098_trippy-red-llama-d8c451cba964-20220420-161129.mp4\r\n10.0_2089_lovely-persimmon-angora-f153ac423f61-20220422-015901.mp4 10.0_4099_trippy-red-llama-e63bcce8f826-20220420-174153.mp4\r\n10.0_208_cheeky-cornflower-setter-8915620646e9-20220423-164356.mp4 10.0_409_cheeky-cornflower-setter-d89692dfa401-20220423-145110.mp4\r\n10.0_2090_lovely-persimmon-angora-f153ac423f61-20220422-043708.mp4 10.0_4100_trippy-red-llama-e63bcce8f826-20220420-174701.mp4\r\n10.0_2091_lovely-persimmon-angora-f153ac423f61-20220422-044230.mp4 10.0_4101_trippy-red-llama-e6f2d13c94c0-20220422-195539.mp4\r\n10.0_2092_lovely-persimmon-angora-f153ac423f61-20220422-044730.mp4 10.0_4102_trippy-red-llama-e6f2d13c94c0-20220422-200049.mp4\r\n10.0_2093_lovely-persimmon-angora-f153ac423f61-20220422-045232.mp4 10.0_4103_trippy-red-llama-e6f2d13c94c0-20220422-200639.mp4\r\n10.0_2094_lovely-persimmon-angora-f153ac423f61-20220422-045732.mp4 10.0_4104_trippy-red-llama-e6f2d13c94c0-20220422-201155.mp4\r\n10.0_2095_lovely-persimmon-angora-f153ac423f61-20220422-061326.mp4 10.0_4105_trippy-red-llama-e6f2d13c94c0-20220422-201710.mp4\r\n10.0_2096_lovely-persimmon-angora-f153ac423f61-20220422-061839.mp4 10.0_4106_trippy-red-llama-ea7cbc7cc38a-20220420-174929.mp4\r\n10.0_2097_lovely-persimmon-angora-f153ac423f61-20220422-062338.mp4 10.0_4107_trippy-red-llama-ee64961df4a6-20220416-173545.mp4\r\n10.0_2098_lovely-persimmon-angora-f153ac423f61-20220422-062836.mp4 10.0_4108_trippy-red-llama-ee64961df4a6-20220416-174052.mp4\r\n10.0_2099_lovely-persimmon-angora-f153ac423f61-20220422-063335.mp4 10.0_4109_trippy-red-llama-ee64961df4a6-20220416-174602.mp4\r\n10.0_209_cheeky-cornflower-setter-8915620646e9-20220423-164903.mp4 10.0_410_cheeky-cornflower-setter-d89692dfa401-20220423-145618.mp4\r\n10.0_2100_lovely-persimmon-angora-f153ac423f61-20220422-114041.mp4 10.0_4110_trippy-red-llama-f153ac423f61-20220414-191258.mp4\r\n10.0_2101_lovely-persimmon-angora-f153ac423f61-20220422-114607.mp4 10.0_4111_trippy-red-llama-f153ac423f61-20220414-191843.mp4\r\n10.0_2102_lovely-persimmon-angora-f153ac423f61-20220422-115108.mp4 10.0_4112_trippy-red-llama-f153ac423f61-20220414-192359.mp4\r\n10.0_2103_lovely-persimmon-angora-f153ac423f61-20220422-130534.mp4 10.0_4113_trippy-red-llama-f153ac423f61-20220414-192904.mp4\r\n10.0_2104_lovely-persimmon-angora-f153ac423f61-20220422-131100.mp4 10.0_4114_trippy-red-llama-f153ac423f61-20220414-193413.mp4\r\n10.0_2105_lovely-persimmon-angora-f153ac423f61-20220422-131601.mp4 10.0_4115_trippy-red-llama-f153ac423f61-20220415-190256.mp4\r\n10.0_2106_lovely-persimmon-angora-f153ac423f61-20220422-132100.mp4 10.0_4116_trippy-red-llama-f153ac423f61-20220415-190850.mp4\r\n10.0_2107_lovely-persimmon-angora-f153ac423f61-20220422-132558.mp4 10.0_4117_trippy-red-llama-f153ac423f61-20220415-191411.mp4\r\n10.0_2108_lovely-persimmon-angora-f153ac423f61-20220422-154952.mp4 10.0_4118_trippy-red-llama-f153ac423f61-20220415-233005.mp4\r\n10.0_2109_lovely-persimmon-angora-f153ac423f61-20220422-190219.mp4 10.0_4119_trippy-red-llama-f153ac423f61-20220415-233541.mp4\r\n10.0_210_cheeky-cornflower-setter-8915620646e9-20220423-165409.mp4 10.0_411_cheeky-cornflower-setter-d89692dfa401-20220423-150124.mp4\r\n10.0_2110_lovely-persimmon-angora-f153ac423f61-20220422-190745.mp4 10.0_4120_trippy-red-llama-f153ac423f61-20220415-234056.mp4\r\n1",,terminal_output +337,868688,"TERMINAL",0,0,"0.0_2111_lovely-persimmon-angora-f153ac423f61-20220422-191245.mp4 10.0_4121_trippy-red-llama-f153ac423f61-20220416-151840.mp4\r\n10.0_2112_lovely-persimmon-angora-f153ac423f61-20220422-195835.mp4 10.0_4122_trippy-red-llama-f153ac423f61-20220416-152415.mp4\r\n10.0_2113_lovely-persimmon-angora-f153ac423f61-20220422-200353.mp4 10.0_4123_trippy-red-llama-f153ac423f61-20220416-153006.mp4\r\n10.0_2114_lovely-persimmon-angora-f153ac423f61-20220422-200852.mp4 10.0_4124_trippy-red-llama-f153ac423f61-20220416-153512.mp4\r\n10.0_2115_lovely-persimmon-angora-f153ac423f61-20220422-201351.mp4 10.0_4125_trippy-red-llama-f153ac423f61-20220419-215020.mp4\r\n10.0_2116_lovely-persimmon-angora-f153ac423f61-20220422-201850.mp4 10.0_4126_trippy-red-llama-f153ac423f61-20220419-215543.mp4\r\n10.0_2117_lovely-persimmon-angora-f153ac423f61-20220422-220847.mp4 10.0_4127_trippy-red-llama-f153ac423f61-20220419-220053.mp4\r\n10.0_2118_lovely-persimmon-angora-f153ac423f61-20220422-221405.mp4 10.0_4128_trippy-red-llama-f153ac423f61-20220419-220604.mp4\r\n10.0_2119_lovely-persimmon-angora-f153ac423f61-20220422-232504.mp4 10.0_4129_trippy-red-llama-f153ac423f61-20220420-142644.mp4\r\n10.0_211_cheeky-cornflower-setter-8915620646e9-20220423-165915.mp4 10.0_412_cheeky-cornflower-setter-d89692dfa401-20220423-150630.mp4\r\n10.0_2120_lovely-persimmon-angora-f153ac423f61-20220423-010944.mp4 10.0_4130_trippy-red-llama-f153ac423f61-20220420-143154.mp4\r\n10.0_2121_lovely-persimmon-angora-f153ac423f61-20220423-011509.mp4 10.0_4131_trippy-red-llama-f153ac423f61-20220420-143703.mp4\r\n10.0_2122_lovely-persimmon-angora-f153ac423f61-20220423-012010.mp4 10.0_4132_trippy-red-llama-f153ac423f61-20220420-144208.mp4\r\n10.0_2123_lovely-persimmon-angora-f153ac423f61-20220423-012510.mp4 10.0_4133_trippy-red-llama-f153ac423f61-20220420-144715.mp4\r\n10.0_2124_lovely-persimmon-angora-f153ac423f61-20220423-013011.mp4 10.0_4134_trippy-red-llama-f153ac423f61-20220421-171531.mp4\r\n10.0_2125_lovely-persimmon-angora-f153ac423f61-20220423-044856.mp4 10.0_4135_trippy-red-llama-f153ac423f61-20220421-172141.mp4\r\n10.0_2126_lovely-persimmon-angora-f153ac423f61-20220423-045434.mp4 10.0_4136_trippy-red-llama-f153ac423f61-20220421-182937.mp4\r\n10.0_2127_lovely-persimmon-angora-f153ac423f61-20220423-045935.mp4 10.0_4137_trippy-red-llama-f153ac423f61-20220421-183522.mp4\r\n10.0_2128_lovely-persimmon-angora-f153ac423f61-20220423-050934.mp4 10.0_4138_trippy-red-llama-f153ac423f61-20220421-184035.mp4\r\n10.0_2129_lovely-persimmon-angora-f153ac423f61-20220423-060343.mp4 10.0_4139_trippy-red-llama-f153ac423f61-20220421-212027.mp4\r\n10.0_212_cheeky-cornflower-setter-89d5c5c457f1-20220415-214246.mp4 10.0_413_cheeky-cornflower-setter-d9a1272ce70b-20220422-214517.mp4\r\n10.0_2130_lovely-persimmon-angora-f153ac423f61-20220423-061003.mp4 10.0_4140_trippy-red-llama-f153ac423f61-20220421-212554.mp4\r\n10.0_2131_lovely-persimmon-angora-f153ac423f61-20220423-061503.mp4 10.0_4141_trippy-red-llama-f153ac423f61-20220421-213059.mp4\r\n10.0_2132_lovely-persimmon-angora-f153ac423f61-20220423-062004.mp4 10.0_4142_trippy-red-llama-f153ac423f61-20220422-142514.mp4\r\n10.0_2133_lovely-persimmon-angora-f153ac423f61-20220423-062503.mp4 10.0_4143_trippy-red-llama-f153ac423f61-20220422-143121.mp4\r\n10.0_2134_lovely-persimmon-angora-f153ac423f61-20220423-065545.mp4 10.0_4144_trippy-red-llama-f153ac423f61-20220422-143648.mp4\r\n10.0_2135_lovely-persimmon-angora-f153ac423f61-20220423-070108.mp4 10.0_4145_trippy-red-llama-f153ac423f61-20220422-144214.mp4\r\n10.0_2136_lovely-persimmon-angora-f153ac423f61-20220423-070609.mp4 10.0_4146_trippy-red-llama-f153ac423f61-20220422-150454.mp4\r\n10.0_2137_lovely-persimmon-angora-f153ac423f61-20220423-071108.mp4 10.0_4147_trippy-red-llama-f153ac423f61-20220422-151032.mp4\r\n10.0_2138_lovely-persimmon-angora-f153ac423f61-20220423-071607.mp4 10.0_4148_trippy-red-llama-f153ac423f61-20220422-221103.mp4\r\n10.0_2139_lovely-persimmon-angora-f153ac423f61-20220423-153422.mp4 10.0_4149_trippy-red-llama-f153ac423f61-20220422-221642.mp4\r\n10.0_213_cheeky-cornflower-setter-89d5c5c457f1-20220415-214754.mp4 10.0_414_cheeky-cornflower-setter-d9a1272ce70b-20220422-215531.mp4\r\n10.0_2140_lovely-persimmon-angora-f153ac423f61-20220423-153939.mp4 10.0_4150_trippy-red-llama-f153ac423f61-20220422-222211.mp4\r\n10.0_2141_lovely-persimmon-angora-f153ac423f61-20220423-154438.mp4 10.0_4151_trippy-red-llama-f153ac423f61-20220422-222740.mp4\r\n10.0_2142_lovely-persimmon-angora-f153ac423f61-20220423-154937.mp4 10.0_4152_trippy-red-llama-fddd40941cf1-20220422-165928.mp4\r\n10.0_2143_lovely-persimmon-angora-f153ac423f61-20220423-155436.mp4 10.0_4153_trippy-red-llama-fddd40941cf1-20220422-171248.mp4\r\n10.0_2144_lovely-persimmon-angora-f1b95c470518-20220421-052935.mp4 10.0_4154_trippy-red-llama-fddd40941cf1-20220422-171756.mp4\r\n10.0_2145_lovely-persimmon-angora-f27f4d100a8f-20220419-001748.mp4 10.0_4155_trippy-red-llama-fddd40941cf1-20220422-172302.mp4\r\n10.0_2146_lovely-persimmon-angora-f27f4d100a8f-20220419-003307.mp4 10.0_4156_trippy-red-llama-fddd40941cf1-20220422-172808.mp4\r\n10.0_2147_lovely-persimmon-angora-f32d7e380279-20220417-152126.mp4 10.0_4157_whiny-ecru-cougar-7b14f8f52995-20220421-221823.mp4\r\n10.0_2148_lovely-persimmon-angora-f36743e50f01-20220416-104819.mp4 10.0_4158_whiny-ecru-cougar-7b14f8f52995-20220421-222612.mp4\r\n10.0_2149_lovely-persimmon-angora-f369e8992739-20220416-151517.mp4 10.0_4159_whiny-ecru-cougar-7b14f8f52995-20220421-223150.mp4\r\n10.0_214_cheeky-cornflower-setter-89d5c5c457f1-20220415-215307.mp4 10.0_415_cheeky-cornflower-setter-d9a1272ce70b-20220422-220516.mp4\r\n10.0_2150_lovely-persimmon-angora-f3ea8fc97403-20220419-151208.mp4 10.0_4160_whiny-ecru-cougar-7b14f8f52995-20220421-223806.mp4\r\n10.0_2151_lovely-persimmon-angora-f46bc3abf94d-20220421-202201.mp4 10.0_4161_whiny-ecru-cougar-8c093ded192a-20220421-220400.mp4\r\n10.0_2152_lovely-persimmon-angora-f46bc3abf94d-20220421-202715.mp4 10.0_4162_whiny-ecru-cougar-8c093ded192a-20220421-220859.mp4\r\n10.0_2153_lovely-persimmon-angora-f46bc3abf94d-20220421-203215.mp4 10.0_4163_whiny-ecru-cougar-8c093ded192a-20220421-221404.mp4\r\n10.0_2154_lovely-persimmon-angora-f46bc3abf94d-20220421-203717.mp4 10.0_4164_whiny-ecru-cougar-ad5923505ae6-20220420-173733.mp4\r\n10.0_2155_lovely-persimmon-angora-f6791608179e-20220415-153655.mp4 10.0_4165_whiny-ecru-cougar-ad5923505ae6-20220420-174430.mp4\r\n10.0_2156_lovely-persimmon-angora-f700b7829053-20220421-192212.mp4 10.0_4166_whiny-ecru-cougar-f0e9226ea6c2-20220420-171841.mp4\r\n10.0_2157_lovely-persimmon-angora-f700b7829053-20220421-193224.mp4 10.0_4167_whiny-ecru-cougar-f0e9226ea6c2-20220420-172340.mp4\r\n10.0_2158_lovely-persimmon-angora-f749b7315146-20220419-165330.mp4 10.0_4168_whiny-ecru-cougar-f0e9226ea6c2-20220420-172839.mp4\r\n10.0_2159_lovely-persimmon-angora-f79dd7d09b78-20220414-024227.mp4 10.0_4169_whiny-ecru-cougar-f0e9226ea6c2-20220420-173338.mp4\r\n10.0_215_cheeky-cornflower-setter-8b2cb0ac1c27-20220418-155845.mp4 10.0_416_cheeky-cornflower-setter-da8a2ceb1034-20220423-095847.mp4\r\n10.0_2160_lovely-persimmon-angora-f7d3d8194684-20220417-141548.mp4 10.0_4170_whiny-ecru-cougar-f153ac423f61-20220420-151022.mp4\r\n10.0_2161_lovely-persimmon-angora-f7f244d134f3-20220419-230018.mp4 10.0_4171_whiny-ecru-cougar-f153ac423f61-20220420-151523.mp4\r\n10.0_2162_lovely-persimmon-angora-f7f244d134f3-20220419-230519.mp4 10.0_4172_whiny-ecru-cougar-f153ac423f61-20220420-152022.mp4\r\n10.0_2163_lovely-persimmon-angora-f8bd3267693d-20220421-112846.mp4 10.0_4173_whiny-ecru-cougar-f153ac423f61-20220421-215249.mp4\r\n10.0_2164_lovely-persimmon-angora-fbead622894d-20220419-152108.mp4 10.0_4174_whiny-ecru-cougar-f153ac423f61-20220421-215842.mp4\r\n10.0_2165_lovely-persimmon-angora-fd99ceb25c0e-20220417-101037.mp4 10.0_4175_whiny-ecru-cougar-febc1f9b57b5-20220420-174611.mp4\r\n10.0_2166_lovely-persimmon-angora-fd99ceb25c0e-20220417-101543.mp4 10.0_4176_wiggy-aquamarine-tapir-f153ac423f61-20220421-192208.mp4\r\n10.0_2167_lovely-persimmon-angora-fd99ceb25c0e-20220417-102043.mp4 10.0_4177_wiggy-aquamarine-tapir-f153ac423f61-20220421-192706.mp4\r\n10.0_2168_lovely-persimmon-angora-fd99ceb25c0e-20220417-102541.mp4 10.0_4178_wiggy-aquamarine-tapir-f153ac423f61-20220421-193204.mp4\r\n10.0_2169_lovely-persimmon-angora-fd99ceb25c0e-20220417-103040.mp4 10.0_4179_wiggy-aquamarine-tapir-f153ac423f61-20220421-193702.mp4\r\n10.0_216_cheeky-cornflower-setter-8b2cb0ac1c27-20220418-160357.mp4 10.0_417_cheeky-cornflower-setter-da8a2ceb1034-20220423-100910.mp4\r\n10.0_2170_lovely-persimmon-angora-fe4e817f31fd-20220416-212605.mp4 10.0_4180_wiggy-aquamarine-tapir-f153ac423f61-20220421-215321.mp4\r\n10.0_2171_lovely-persimmon-angora-fe4e817f31fd-20220416-213105.mp4 10.0_4181_wimpy-cobalt-impala-04b3573fe3c9-20220414-115103.mp4\r\n10.0_2172_lovely-persimmon-angora-fe4f52329e9c-20220420-101900.mp4 10.0_4182_wimpy-cobalt-impala-0748e5929abd-20220416-115248.mp4\r\n10.0_2173_lovely-persimmon-angora-fe4f52329e9c-20220420-102404.mp4 10.0_4183_wimpy-cobalt-impala-1364eb6a1d0b-20220414-115222.mp4\r\n10.0_2174_lovely-persimmon-angora-fe52164b85b8-20220422-143218.mp4 10.0_4184_wimpy-cobalt-impala-1364eb6a1d0b-20220414-115744.mp4\r\n10.0_2175_lovely-persimmon-angora-fe52164b85b8-20220422-143722.mp4 10.0_4185_wimpy-cobalt-impala-1364eb6a1d0b-20220414-120312.mp4\r\n10.0_2176_lovely-persimmon-angora-fe566a072954-20220415-051447.mp4 10.0_4186_wimpy-cobalt-impala-1364eb6a1d0b-20220414-120821.mp4\r\n10.0_2177_lovely-persimmon-angora-ffbcb8a2e45b-20220414-005307.mp4 10.0_4187_wimpy-cobalt-impala-1364eb6a1d0b-20220414-124805.mp4\r\n10.0_2178_pokey-cyan-spitz-15235b20a711-20220417-010004.mp4 10.0_4188_wimpy-cobalt-impala-1fdcdccf3d1a-20220416-123449.mp4\r\n10.0_2179_pokey-cyan-spitz-15235b20a711-20220417-010503.mp4 10.0_4189_wimpy-cobalt-impala-1fdcdccf3d1a-20220416-124116.mp4\r\n10.0_217_cheeky-cornflower-setter-8b2cb0ac1c27-20220418-160914.mp4 10.0_418_cheeky-cornflower-setter-da8a2ceb1034-20220423-101814.mp4\r\n10.0_2180_pokey-cyan-spitz-15235b20a711-20220417-011000.mp4 10.0_4190_wimpy-cobalt-impala-1fdcdccf3d1a-20220416-124712.mp4\r\n10.0_2181_pokey-cyan-spitz-15235b20a711-20220417-011751.mp4 10.0_4191_wimpy-cobalt-impala-1fdcdccf3d1a-20220416-125231.mp4\r\n10.0_2182_pokey-cyan-spitz-19fdcb5129a3-20220418-000412.mp4 10.0_4192_wimpy-cobalt-impala-2b6f0674987c-20220416-112151.mp4\r\n10.0_2183_pokey-cyan-spitz-19fdcb5129a3-20220418-000910.mp4 10.0_4193_wimpy-cobalt-impala-3accb87d1d19-20220414-124854.mp4\r\n10.0_2184_pokey-cyan-spitz-19fdcb5129a3-20220418-001407.mp4 10.0_4194_wimpy-cobalt-impala-3accb87d1d19-20220414-125430.mp4\r\n10.0_2185_pokey-cyan-spitz-19fdcb5129a3-20220418-001903.mp4 10.0_4195_wimpy-cobalt-impala-539b640cabd4-20220414-125724.mp4\r\n10.0_2186_pokey-cyan-spitz-19fdcb5129a3-20220418-002359.mp4 10.0_4196_wimpy-cobalt-impala-6f47f4627a32-20220416-125718.mp4\r\n10.0_2187_pokey-cyan-spitz-4818a893d19d-20220418-135803.mp4 10.0_4197_wimpy-cobalt-impala-6f4a1a0c6c12-20220414-134156.mp4\r\n10.0_2188_pokey-cyan-spitz-9e6a3ee7d939-20220414-134224.mp4 10.0_4198_wimpy-cobalt-impala-742318ada170-20220416-110033.mp4\r\n10.0_2189_pokey-cyan-spitz-9e6a3ee7d939-20220414-134823.mp4 10.0_4199_wimpy-cobalt-impala-742318ada170-20220416-110744.mp4\r\n10.0_218_cheeky-cornflower-setter-8be84bc679ae-20220415-183222.mp4 10.0_419_cheeky-cornflower-setter-db485e7cdf63-20220416-102539.mp4\r\n10.0_2190_pokey-cyan-spitz-9e6a3ee7d939-20220414-135324.mp4 10.0_4200_wimpy-cobalt-impala-742318ada170-20220416-111405.mp4\r\n10.0_2191_pokey-cyan-spitz-9e6a3ee7d939-20220414-135821.mp4 10.0_4201_wimpy-cobalt-impala-742318ada170-20220416-111957.mp4\r\n10.0_2192_pokey-cyan-spitz-be6ff163db6b-20220417-005606.mp4 10.0_4202_wimpy-cobalt-impala-790fd0d8c309-20220416-112656.mp4\r\n10.0_2193_pokey-cyan-spitz-d688164b0d01-20220418-135928.mp4 10.0_4203_wimpy-cobalt-impala-790fd0d8c309-20220416-113418.mp4\r\n10.0_2194_pokey-cyan-spitz-de3c993a61cb-20220422-135247.mp4 10.0_4204_wimpy-cobalt-impala-8ee8318c805e-20220416-104303.mp4\r\n10.0_2195_pokey-cyan-spitz-de3c993a61cb-20220422-142738.mp4 10.0_4205_wimpy-cobalt-impala-947c100f712e-20220416-114406.mp4\r\n10.0_2196_pokey-cyan-spitz-de3c993a61cb-20220422-143237.mp4 10.0_4206_wimpy-cobalt-impala-947c100f712e-20220416-114946.mp4\r\n10.0_2197_pokey-cyan-spitz-de3c993a61cb-20220422-143739.mp4 10.0_4207_wimpy-cobalt-impala-b4e722133e39-20220414-134347.mp4\r\n10.0_2198_pokey-cyan-spitz-de3c993a61cb-20220422-144237.mp4 10.0_4208_wimpy-cobalt-impala-b4e722133e39-20220414-134907.mp4\r\n10.0_2199_pokey-cyan-spitz-f153ac423f61-20220414-124129.mp4 10.0_4209_wimpy-cobalt-impala-bfc888b760fe-20220416-125346.mp4\r\n10.0_219_cheeky-cornflower-setter-8c2849f92943-20220423-143802.mp4 10.0_420_cheeky-cornflower-setter-db485e7cdf63-20220416-103055.mp4\r\n10.0_2200_pokey-cyan-spitz-f153ac423f61-20220414-124630.mp4 10.0_4210_wimpy-cobalt-impala-cc02120345fe-20220416-105216.mp4\r\n10.0_2201_pokey-cyan-spitz-f153ac423f61-20220414-125128.mp4 10.0_4211_wimpy-cobalt-impala-cc02120345fe-20220416-105743.mp4\r\n10.0_2202_pokey-cyan-spitz-f153ac423f61-20220414-125625.mp4 10.0_4212_wimpy-cobalt-impala-d972de266fe3-20220416-114127.mp4\r\n10.0_2203_pokey-cyan-spitz-f153ac423f61-20220414-220808.mp4 10.0_4213_wimpy-cobalt-impala-ef4d2e845104-20220414-125857.mp4\r\n10.0_2204_pokey-cyan-spitz-f153ac423f61-20220415-090030.mp4 10.0_4214_wimpy-cobalt-impala-f153ac423f61-20220414-113739.mp4\r\n10.0_2205_pokey-cyan-spitz-f153ac423f61-20220415-090602.mp4 10.0_4215_wimpy-cobalt-impala-f153ac423f61-20220414-114335.mp4\r\n10.0_2206_pokey-cyan-spitz-f153ac423f61-20220415-091109.mp4 10.0_4216_wimpy-cobalt-impala-f153ac423f61-20220414-114903.mp4\r\n10.0_2207_pokey-cyan-spitz-f153ac423f61-20220415-091609.mp4 10.0_4217_wimpy-cobalt-impala-f153ac423f61-20220414-132650.mp4\r\n10.0_2208_pokey-cyan-spitz-f153ac423f61-20220415-092105.mp4 10.0_4218_wimpy-cobalt-impala-f153ac423f61-20220414-133326.mp4\r\n10.0_2209_pokey-cyan-spitz-f153ac423f61-20220416-085759.mp4 10.0_4219_wimpy-cobalt-impala-f153ac423f61-20220414-133919.mp4\r\n10.0_220_cheeky-cornflower-setter-8c2849f92943-20220423-144309.mp4 10.0_421_cheeky-cornflower-setter-db485e7cdf63-20220416-103603.mp4\r\n10.0_2210_pokey-cyan-spitz-f153ac423f61-20220416-090303.mp4 10.0_4220_wimpy-cobalt-impala-f153ac423f61-20220414-150646.mp4\r\n10.0_2211_pokey-cyan-spitz-f153ac423f61-20220416-090800.mp4 10.0_4221_wimpy-cobalt-impala-f153ac423f61-20220414-151236.mp4\r\n10.0_2212_pokey-cyan-spitz-f153ac423f61-20220416-091257.mp4 10.0_4222_wimpy-cobalt-impala-f153ac423f61-20220414-151805.mp4\r\n10.0_2213_pokey-cyan-spitz-f153ac423f61-20220416-091753.mp4 10.0_4223_wimpy-cobalt-impala-f153ac423f61-20220414-152320.mp4\r\n10.0_2214_pokey-cyan-spitz-f153ac423f61-20220417-003752.mp4 10.0_4224_wimpy-cobalt-impala-f153ac423f61-20220414-152919.mp4\r\n10.0_2215_pokey-cyan-spitz-f153ac423f61-20220417-004257.mp4 10.0_4225_wimpy-cobalt-impala-f153ac423f61-20220414-153428.mp4\r\n10.0_2216_pokey-cyan-spitz-f153ac423f61-20220417-004834.mp4 10.0_4226_wimpy-cobalt-impala-f153ac423f61-20220414-153934.mp4\r\n10.0_2217_pokey-cyan-spitz-f153ac423f61-20220417-005331.mp4 10.0_4227_wimpy-cobalt-impala-f153ac423f61-20220414-154437.mp4\r\n10.0_2218_pokey-cyan-spitz-f153ac423f61-20220417-233446.mp4 10.0_4228_wimpy-cobalt-impala-f153ac423f61-20220416-103525.mp4\r\n10.0_2219_pokey-cyan-spitz-f153ac423f61-20220417-234124.mp4 10.0_4229_wimpy-cobalt-impala-f153ac423f61-20220416-104216.mp4\r\n10.0_221_cheeky-cornflower-setter-8c2849f92943-20220423-144829.mp4 10.0_422_cheeky-cornflower-setter-db485e7cdf63-20220416-104112.mp4\r\n10.0_2220_pokey-cyan-spitz-f153ac423f61-20220417-234634.mp4 10.0_4230_wimpy-cobalt-impala-f57716aff49d-20220416-113739.mp4\r\n10.0_2221_pokey-cyan-spitz-f153ac423f61-20220417-235130.mp4 10.0_4231_wimpy-cobalt-impala-fd946a8a39ce-20220416-104710.mp4\r\n10.0_2222_pokey-cyan-spitz-f153ac423f61-20220417-235626.mp4 10.0_4232_woozy-ruby-ostrich-005f7e884124-20220415-145337.mp4\r\n10.0_2223_pokey-cyan-spitz-f153ac423f61-20220418-000127.mp4 10.0_4233_woozy-ruby-ostrich-0a73c128eaad-20220414-093137.mp4\r\n10.0_2224_pokey-cyan-spitz-f153ac423f61-20220418-135037.mp4 10.0_4234_woozy-ruby-ostrich-0d3cf37d7d7a-20220417-005104.mp4\r\n10.0_2225_pokey-cyan-spitz-f153ac423f61-20220418-135539.mp4 10.0_4235_woozy-ruby-ostrich-0d59f05f71c8-20220414-203648.mp4\r\n10.0_2226_pokey-cyan-spitz-f153ac423f61-20220419-155322.mp4 10.0_4236_woozy-ruby-ostrich-14100d7ce20d-20220420-084911.mp4\r\n10.0_2227_pokey-cyan-spitz-f153ac423f61-20220419-155826.mp4 10.0_4237_woozy-ruby-ostrich-14100d7ce20d-20220420-085409.mp4\r\n10.0_2228_pokey-cyan-spitz-f153ac423f61-20220419-160324.mp4 10.0_4238_woozy-ruby-ostrich-166d77682426-20220414-192825.mp4\r\n10.0_2229_pokey-cyan-spitz-f153ac423f61-20220419-160820.mp4 10.0_4239_woozy-ruby-ostrich-2251e3407c8d-20220419-055504.mp4\r\n10.0_222_cheeky-cornflower-setter-8fa13e2f0734-20220417-182202.mp4 10.0_423_cheeky-cornflower-setter-dbdf48490176-20220418-191104.mp4\r\n10.0_2230_pokey-cyan-spitz-f153ac423f61-20220419-161316.mp4 10.0_4240_woozy-ruby-ostrich-2251e3407c8d-20220419-060002.mp4\r\n10.0_2231_pokey-cyan-spitz-f153ac423f61-20220419-162732.mp4 10.0_4241_woozy-ruby-ostrich-285c959283c7-20220415-153406.mp4\r\n10.0_2232_pokey-cyan-spitz-f153ac423f61-20220419-163236.mp4 10.0_4242_woozy-ruby-ostrich-2e2461d4c3a9-20220414-122229.mp4\r\n10.0_2233_pokey-cyan-spitz-f153ac423f61-20220419-163733.mp4 10.0_4243_woozy-ruby-ostrich-33c437b9e2df-20220416-170957.mp4\r\n10.0_2234_pokey-cyan-spitz-f153ac423f61-20220419-164233.mp4 10.0_4244_woozy-ruby-ostrich-36e6a60ea6e6-20220420-154253.mp4\r\n10.0_2235_pokey-cyan-spitz-f153ac423f61-20220419-164729.mp4 10.0_4245_woozy-ruby-ostrich-36e6a60ea6e6-20220420-154751.mp4\r\n10.0_2236_pokey-cyan-spitz-f153ac423f61-20220422-133910.mp4 10.0_4246_woozy-ruby-ostrich-36e6a60ea6e6-20220420-155249.mp4\r\n10.0_2237_pokey-cyan-spitz-f153ac423f61-20220422-134410.mp4 10.0_4247_woozy-ruby-ostrich-36e6a60ea6e6-20220420-155747.mp4\r\n10.0_2238_pokey-cyan-spitz-f153ac423f61-20220422-134907.mp4 10.0_4248_woozy-ruby-ostrich-36e6a60ea6e6-20220420-160245.mp4\r\n10.0_2239_pokey-cyan-spitz-f153ac423f61-20220423-005916.mp4 10.0_4249_woozy-ruby-ostrich-39fd36f107bb-20220414-200614.mp4\r\n10.0_223_cheeky-cornflower-setter-8fa13e2f0734-20220417-182710.mp4 10.0_424_cheeky-cornflower-setter-dbdf48490176-20220418-191613.mp4\r\n10.0_2240_pokey-cyan-spitz-f153ac423f61-20220423-010553.mp4 10.0_4250_woozy-ruby-ostrich-39fd36f107bb-20220414-201111.mp4\r\n10.0_2241_pokey-cyan-spitz-f153ac423f61-20220423-011051.mp4 10.0_4251_woozy-ruby-ostrich-3cd3ceb40a21-20220420-003619.mp4\r\n10.0_2242_pokey-cyan-spitz-f153ac423f61-20220423-011547.mp4 10.0_4252_woozy-ruby-ostrich-3cd3ceb40a21-20220420-004117.mp4\r\n10.0_2243_pokey-cyan-spitz-ff0910c6463c-20220414-132213.mp4 10.0_4253_woozy-ruby-ostrich-3cd3ceb40a21-20220420-004615.mp4\r\n10.0_2244_pokey-cyan-spitz-ff0910c6463c-20220414-132812.mp4 10.0_4254_woozy-ruby-ostrich-3cd3ceb40a21-20220420-005112.mp4\r\n10.0_2245_pokey-cyan-spitz-ff0910c6463c-20220414-133308.mp4 10.0_4255_woozy-ruby-ostrich-3cd3ceb40a21-20220420-005610.mp4\r\n10.0_2246_scaly-fuchsia-wasp-002e8900e587-20220419-134152.mp4 10.0_4256_woozy-ruby-ostrich-428ac7fa7243-20220416-164944.mp4\r\n10.0_2247_scaly-fuchsia-wasp-002e8900e587-20220419-134653.mp4 10.0_4257_woozy-ruby-ostrich-4c908a00c315-20220414-020127.mp4\r\n10.0_2248_scaly-fuchsia-wasp-002e8900e587-20220419-135155.mp4 10.0_4258_woozy-ruby-ostrich-59cb71cfdea2-20220420-112737.mp4\r\n10.0_2249_scaly-fuchsia-wasp-002e8900e587-20220419-135654.mp4 10.0_4259_woozy-ruby-ostrich-59cb71cfdea2-20220420-113235.mp4\r\n10.0_224_cheeky-cornflower-setter-8fa13e2f0734-20220417-183216.mp4 10.0_425_cheeky-cornflower-setter-dbdf48490176-20220418-192120.mp4\r\n10.0_2250_scaly-fuchsia-wasp-002e8900e587-20220419-140153.mp4 10.0_4260_woozy-ruby-ostrich-59cb71cfdea2-20220420-113753.mp4\r\n10.0_2251_scaly-fuchsia-wasp-02476e9ec1fc-20220419-112522.mp4 10.0_4261_woozy-ruby-ostrich-59cb71cfdea2-20220420-114251.mp4\r\n10.0_2252_scaly-fuchsia-wasp-02476e9ec1fc-20220419-113023.mp4 10.0_4262_woozy-ruby-ostrich-5a378fb030bc-20220414-043632.mp4\r\n10.0_2253_scaly-fuchsia-wasp-02476e9ec1fc-20220419-113918.mp4 10.0_4263_woozy-ruby-ostrich-5ab48ebcf297-20220416-043745.mp4\r\n10.0_2254_scaly-fuchsia-wasp-02476e9ec1fc-20220419-114417.mp4 10.0_4264_woozy-ruby-ostrich-5e7e9e72fc6d-20220417-185246.mp4\r\n10.0_2255_scaly-fuchsia-wasp-02476e9ec1fc-20220419-114917.mp4 10.0_4265_woozy-ruby-ostrich-6fbf3bebc5dd-20220416-095528.mp4\r\n10.0_2256_scaly-fuchsia-wasp-0573fd29c8f6-20220422-153515.mp4 10.0_4266_woozy-ruby-ostrich-72ea688010ba-20220415-045504.mp4\r\n10.0_2257_scaly-fuchsia-wasp-0573fd29c8f6-20220422-154020.mp4 10.0_4267_woozy-ruby-ostrich-744fc8da10e2-20220415-122826.mp4\r\n10.0_2258_scaly-fuchsia-wasp-0573fd29c8f6-20220422-154520.mp4 10.0_4268_woozy-ruby-ostrich-82608be7bab4-20220420-114742.mp4\r\n10.0_2259_scaly-fuchsia-wasp-0573fd29c8f6-20220422-155019.mp4 10.0_4269_woozy-ruby-ostrich-848db6515d5d-20220419-060825.mp4\r\n10.0_225_cheeky-cornflower-setter-8fa13e2f0734-20220417-183722.mp4 10.0_426_cheeky-cornflower-setter-dd1ece57dcad-20220418-125652.mp4\r\n10.0_2260_scaly-fuchsia-wasp-0573fd29c8f6-20220422-155518.mp4 10.0_4270_woozy-ruby-ostrich-848db6515d5d-20220419-061322.mp4\r\n10.0_2261_scaly-fuchsia-wasp-0767616f5886-20220415-123924.mp4 10.0_4271_woozy-ruby-ostrich-8df8ad11bfcb-20220416-093516.mp4\r\n10.0_2262_scaly-fuchsia-wasp-0767616f5886-20220415-124426.mp4 10.0_4272_woozy-ruby-ostrich-90203254f954-20220416-230259.mp4\r\n10.0_2263_scaly-fuchsia-wasp-0767616f5886-20220415-124930.mp4 10.0_4273_woozy-ruby-ostrich-90203254f954-20220416-230757.mp4\r\n10.0_2264_scaly-fuchsia-wasp-0767616f5886-20220415-125429.mp4 10.0_4274_woozy-ruby-ostrich-9569891815d6-20220420-025254.mp4\r\n10.0_2265_scaly-fuchsia-wasp-1d8fbaed685b-20220422-161651.mp4 10.0_4275_woozy-ruby-ostrich-9622936f0f1b-20220420-010613.mp4\r\n10.0_2266_scaly-fuchsia-wasp-1d8fbaed685b-20220422-162152.mp4 10.0_4276_woozy-ruby-ostrich-9622936f0f1b-20220420-011111.mp4\r\n10.0_2267_scaly-fuchsia-wasp-1d8fbaed685b-20220422-162654.mp4 10.0_4277_woozy-ruby-ostrich-9b378ab3d24d-20220418-010438.mp4\r\n10.0_2268_scaly-fuchsia-wasp-4ccbc7880630-20220415-121704.mp4 10.0_4278_woozy-ruby-ostrich-ab7c60a3bc09-20220420-085722.mp4\r\n10.0_2269_scaly-fuchsia-wasp-4ccbc7880630-20220415-122205.mp4 10.0_4279_woozy-ruby-ostrich-ab7c60a3bc09-20220420-090221.mp4\r\n10.0_226_cheeky-cornflower-setter-93b6aeff27cc-20220418-134529.mp4 10.0_427_cheeky-cornflower-setter-dd593da526a5-20220416-130957.mp4\r\n10.0_2270_scaly-fuchsia-wasp-4ccbc7880630-20220415-122706.mp4 10.0_4280_woozy-ruby-ostrich-ab7c60a3bc09-20220420-090718.mp4\r\n10.0_2271_scaly-fuchsia-wasp-4ccbc7880630-20220415-123205.mp4 10.0_4281_woozy-ruby-ostrich-ab7c60a3bc09-20220420-091222.mp4\r\n10.0_2272_scaly-fuchsia-wasp-4ccbc7880630-20220415-123703.mp4 10.0_4282_woozy-ruby-ostrich-ab7c60a3bc09-20220420-091724.mp4\r\n10.0_2273_scaly-fuchsia-wasp-736206b71320-20220415-125537.mp4 10.0_4283_woozy-ruby-ostrich-b54a219d0b60-20220420-083545.mp4\r\n10.0_2274_scaly-fuchsia-wasp-763b1aa4c0eb-20220420-192720.mp4 10.0_4284_woozy-ruby-ostrich-b54a219d0b60-20220420-084046.mp4\r\n10.0_2275_scaly-fuchsia-wasp-8032fffc6d94-20220420-191436.mp4 10.0_4285_woozy-ruby-ostrich-b54a219d0b60-20220420-084543.mp4\r\n10.0_2276_scaly-fuchsia-wasp-8032fffc6d94-20220420-191938.mp4 10.0_4286_woozy-ruby-ostrich-b69b109a8128-20220419-061549.mp4\r\n10.0_2277_scaly-fuchsia-wasp-8d57340c712b-20220422-163015.mp4 10.0_4287_woozy-ruby-ostrich-b69b109a8128-20220419-062047.mp4\r\n10.0_2278_scaly-fuchsia-wasp-8d57340c712b-20220422-163520.mp4 10.0_4288_woozy-ruby-ostrich-b69b109a8128-20220419-062551.mp4\r\n10.0_2279_scaly-fuchsia-wasp-8d57340c712b-20220422-164048.mp4 10.0_4289_woozy-ruby-ostrich-b69b109a8128-20220419-063049.mp4\r\n10.0_227_cheeky-cornflower-setter-93b6aeff27cc-20220418-135037.mp4 10.0_428_cheeky-cornflower-setter-dd593da526a5-20220416-131506.mp4\r\n10.0_2280_scaly-fuchsia-wasp-8d57340c712b-20220422-164547.mp4 10.0_4290_woozy-ruby-ostrich-b69b109a8128-20220419-063546.mp4\r\n10.0_2281_scaly-fuchsia-wasp-8d57340c712b-20220422-165045.mp4 10.0_4291_woozy-ruby-ostrich-ba6416e61906-20220417-043839.mp4\r\n10.0_2282_scaly-fuchsia-wasp-911fe42fb6ff-20220419-134121.mp4 10.0_4292_woozy-ruby-ostrich-ba6416e61906-20220417-044337.mp4\r\n10.0_2283_scaly-fuchsia-wasp-9633765921fd-20220419-132859.mp4 10.0_4293_woozy-ruby-ostrich-c3548d2cd2fc-20220416-173010.mp4\r\n10.0_2284_scaly-fuchsia-wasp-9633765921fd-20220419-133407.mp4 10.0_4294_woozy-ruby-ostrich-c4d13b934232-20220416-101541.mp4\r\n10.0_2285_scaly-fuchsia-wasp-9633765921fd-20220419-133910.mp4 10.0_4295_woozy-ruby-ostrich-c6eff05b8234-20220420-001847.mp4\r\n10.0_2286_scaly-fuchsia-wasp-d41e471314f8-20220422-155629.mp4 10.0_4296_woozy-ruby-ostrich-c6eff05b8234-20220420-002345.mp4\r\n10.0_2287_scaly-fuchsia-wasp-d41e471314f8-20220422-160130.mp4 10.0_4297_woozy-ruby-ostrich-c6eff05b8234-20220420-002907.mp4\r\n10.0_2288_scaly-fuchsia-wasp-d41e471314f8-20220422-160632.mp4 10.0_4298_woozy-ruby-ostrich-c6eff05b8234-20220420-003404.mp4\r\n10.0_2289_scaly-fuchsia-wasp-d41e471314f8-20220422-161131.mp4 10.0_4299_woozy-ruby-ostrich-c8d21d172bb6-20220416-091503.mp4\r\n10.0_228_cheeky-cornflower-setter-93b6aeff27cc-20220418-135549.mp4 10.0_429_cheeky-cornflower-setter-dd593da526a5-20220416-132016.mp4\r\n10.0_2290_scaly-fuchsia-wasp-d41e471314f8-20220422-161629.mp4 10.0_4300_woozy-ruby-ostrich-d0b45ff53e71-20220420-025537.mp4\r\n10.0_2291_scaly-fuchsia-wasp-dd6d84441115-20220415-130220.mp4 10.0_4301_woozy-ruby-ostrich-d5ec6014f0b8-20220420-023447.mp4\r\n10.0_2292_scaly-fuchsia-wasp-dd6d84441115-20220415-130723.mp4 10.0_4302_woozy-ruby-ostrich-dd398e374040-20220414-201633.mp4\r\n10.0_2293_scaly-fuchsia-wasp-dd6d84441115-20220415-131227.mp4 10.0_4303_woozy-ruby-ostrich-e05a0401b02f-20220420-084737.mp4\r\n10.0_2294_scaly-fuchsia-wasp-dd6d84441115-20220415-131728.mp4 10.0_4304_woozy-ruby-ostrich-e2d18df1542e-20220417-183234.mp4\r\n10.0_2295_scaly-fuchsia-wasp-de0a8f7671d3-20220419-130210.mp4 10.0_4305_woozy-ruby-ostrich-ec7f1acc01eb-20220415-052206.mp4\r\n10.0_2296_scaly-fuchsia-wasp-de0a8f7671d3-20220419-130710.mp4 10.0_4306_woozy-ruby-ostrich-ee9663eff043-20220415-151352.mp4\r\n10.0_2297_scaly-fuchsia-wasp-de0a8f7671d3-20220419-131212.mp4 10.0_4307_woozy-ruby-ostrich-ef3397771faf-20220416-085505.mp4\r\n10.0_2298_scaly-fuchsia-wasp-de0a8f7671d3-20220419-131710.mp4 10.0_4308_woozy-ruby-ostrich-f153ac423f61-20220414-014537.mp4\r\n10.0_2299_scaly-fuchsia-wasp-de0a8f7671d3-20220419-132213.mp4 10.0_4309_woozy-ruby-ostrich-f153ac423f61-20220414-015038.mp4\r\n10.0_229_cheeky-cornflower-setter-950ba61d98d2-20220415-112211.mp4 10.0_430_cheeky-cornflower-setter-dd593da526a5-20220416-132525.mp4\r\n10.0_2300_scaly-fuchsia-wasp-e9efe2b53fa7-20220422-165142.mp4 10.0_4310_woozy-ruby-ostrich-f153ac423f61-20220414-015536.mp4\r\n10.0_2301_scaly-fuchsia-wasp-e9efe2b53fa7-20220422-165642.mp4 10.0_4311_woozy-ruby-ostrich-f153ac423f61-20220414-033917.mp4\r\n10.0_2302_scaly-fuchsia-wasp-e9efe2b53fa7-20220422-170147.mp4 10.0_4312_woozy-ruby-ostrich-f153ac423f61-20220414-034417.mp4\r\n10.0_2303_scaly-fuchsia-wasp-f153ac423f61-20220415-115527.mp4 10.0_4313_woozy-ruby-ostrich-f153ac423f61-20220414-041509.mp4\r\n10.0_2304_scaly-fuchsia-wasp-f153ac423f61-20220415-120032.mp4 10.0_4314_woozy-ruby-ostrich-f153ac423f61-20220414-042009.mp4\r\n10.0_2305_scaly-fuchsia-wasp-f153ac423f61-20220415-120550.mp4 10.0_4315_woozy-ruby-ostrich-f153ac423f61-20220414-043508.mp4\r\n10.0_2306_scaly-fuchsia-wasp-f153ac423f61-20220415-121050.mp4 10.0_4316_woozy-ruby-ostrich-f153ac423f61-20220414-091107.mp4\r\n10.0_2307_scaly-fuchsia-wasp-f153ac423f61-20220415-121558.mp4 10.0_4317_woozy-ruby-ostrich-f153ac423f61-20220414-091611.mp4\r\n10.0_2308_scaly-fuchsia-wasp-f153ac423f61-20220415-140822.mp4 10.0_4318_woozy-ruby-ostrich-f153ac423f61-20220414-092109.mp4\r\n10.0_2309_scaly-fuchsia-wasp-f153ac423f61-20220415-141326.mp4 10.0_4319_woozy-ruby-ostrich-f153ac423f61-20220414-092607.mp4\r\n10.0_230_cheeky-cornflower-setter-950ba61d98d2-20220415-112721.mp4 10.0_431_cheeky-cornflower-setter-dfbf60a8ea61-20220414-132226.mp4\r\n10.0_2310_scaly-fuchsia-wasp-f153ac423f61-20220419-110555.mp4 10.0_4320_woozy-ruby-ostrich-f153ac423f61-20220414-120214.mp4\r\n10.0_2311_scaly-fuchsia-wasp-f153ac423f61-20220419-111107.mp4 10.0_4321_woozy-ruby-ostrich-f153ac423f61-20220414-120713.mp4\r\n10.0_2312_scaly-fuchsia-wasp-f153ac423f61-20220419-111611.mp4 10.0_4322_woozy-ruby-ostrich-f153ac423f61-20220414-121211.mp4\r\n10.0_2313_scaly-fuchsia-wasp-f153ac423f61-20220419-112112.mp4 10.0_4323_woozy-ruby-ostrich-f153ac423f61-20220414-121708.mp4\r\n10.0_2314_scaly-fuchsia-wasp-f153ac423f61-20220419-123857.mp4 10.0_4324_woozy-ruby-ostrich-f153ac423f61-20220414-190714.mp4\r\n10.0_2315_scaly-fuchsia-wasp-f153ac423f61-20220419-124535.mp4 10.0_4325_woozy-ruby-ostrich-f153ac423f61-20220414-191222.mp4\r\n10.0_2316_scaly-fuchsia-wasp-f153ac423f61-20220419-125037.mp4 10.0_4326_woozy-ruby-ostrich-f153ac423f61-20220414-191741.mp4\r\n10.0_2317_scaly-fuchsia-wasp-f153ac423f61-20220419-125538.mp4 10.0_4327_woozy-ruby-ostrich-f153ac423f61-20220414-192238.mp4\r\n10.0_2318_scaly-fuchsia-wasp-f153ac423f61-20220419-130038.mp4 10.0_4328_woozy-ruby-ostrich-f153ac423f61-20220414-195615.mp4\r\n10.0_2319_scaly-fuchsia-wasp-f153ac423f61-20220420-185321.mp4 10.0_4329_woozy-ruby-ostrich-f153ac423f61-20220414-200115.mp4\r\n10.0_231_cheeky-cornflower-setter-950ba61d98d2-20220415-113229.mp4 10.0_432_cheeky-cornflower-setter-dfbf60a8ea61-20220414-132915.mp4\r\n10.0_2320_scaly-fuchsia-wasp-f153ac423f61-20220420-185825.mp4 10.0_4330_woozy-ruby-ostrich-f153ac423f61-20220414-232816.mp4\r\n10.0_2321_scaly-fuchsia-wasp-f153ac423f61-20220420-190328.mp4 10.0_4331_woozy-ruby-ostrich-f153ac423f61-20220414-233316.mp4\r\n10.0_2322_scaly-fuchsia-wasp-f153ac423f61-20220420-190827.mp4 10.0_4332_woozy-ruby-ostrich-f153ac423f61-20220414-234839.mp4\r\n10.0_2323_scaly-fuchsia-wasp-f153ac423f61-20220420-191325.mp4 10.0_4333_woozy-ruby-ostrich-f153ac423f61-20220414-235338.mp4\r\n10.0_2324_scaly-fuchsia-wasp-f153ac423f61-20220422-151411.mp4 10.0_4334_woozy-ruby-ostrich-f153ac423f61-20220414-235837.mp4\r\n10.0_2325_scaly-fuchsia-wasp-f153ac423f61-20220422-151917.mp4 10.0_4335_woozy-ruby-ostrich-f153ac423f61-20220415-043451.mp4\r\n10.0_2326_scaly-fuchsia-wasp-f153ac423f61-20220422-152418.mp4 10.0_4336_woozy-ruby-ostrich-f153ac423f61-20220415-043950.mp4\r\n10.0_2327_scaly-fuchsia-wasp-f153ac423f61-20220422-152917.mp4 10.0_4337_woozy-ruby-ostrich-f153ac423f61-20220415-044448.mp4\r\n10.0_2328_scaly-fuchsia-wasp-f153ac423f61-20220422-153416.mp4 10.0_4338_woozy-ruby-ostrich-f153ac423f61-20220415-044946.mp4\r\n10.0_2329_scaly-fuchsia-wasp-fb6ec294d9f4-20220422-162947.mp4 10.0_4339_woozy-ruby-ostrich-f153ac423f61-20220415-120730.mp4\r\n10.0_232_cheeky-cornflower-setter-95d3901d1eb6-20220423-205308.mp4 10.0_433_cheeky-cornflower-setter-dfbf60a8ea61-20220414-133423.mp4\r\n10.0_2330_shabby-pink-molly-05f3417088d2-20220421-085721.mp4 10.0_4340_woozy-ruby-ostrich-f153ac423f61-20220415-121252.mp4\r\n10.0_2331_shabby-pink-molly-05f3417088d2-20220421-090223.mp4 10.0_4341_woozy-ruby-ostrich-f153ac423f61-20220415-121749.mp4\r\n10.0_2332_shabby-pink-molly-09dc0a856544-20220416-130525.mp4 10.0_4342_woozy-ruby-ostrich-f153ac423f61-20220415-122251.mp4\r\n10.0_2333_shabby-pink-molly-09dc0a856544-20220416-131027.mp4 10.0_4343_woozy-ruby-ostrich-f153ac423f61-20220415-143310.mp4\r\n10.0_2334_shabby-pink-molly-09dc0a856544-20220416-131529.mp4 10.0_4344_woozy-ruby-ostrich-f153ac423f61-20220415-143809.mp4\r\n10.0_2335_shabby-pink-molly-09dc0a856544-20220416-132031.mp4 10.0_4345_woozy-ruby-ostrich-f153ac423f61-20220415-144309.mp4\r\n10.0_2336_shabby-pink-molly-09dc0a856544-20220416-132532.mp4 10.0_4346_woozy-ruby-ostrich-f153ac423f61-20220416-042248.mp4\r\n10.0_2337_shabby-pink-molly-0aa52c82857b-20220424-195031.mp4 10.0_4347_woozy-ruby-ostrich-f153ac423f61-20220416-042749.mp4\r\n10.0_2338_shabby-pink-molly-0aa52c82857b-20220424-195533.mp4 10.0_4348_woozy-ruby-ostrich-f153ac423f61-20220416-043254.mp4\r\n10.0_2339_shabby-pink-molly-0aa52c82857b-20220424-200035.mp4 10.0_4349_woozy-ruby-ostrich-f153ac423f61-20220416-065312.mp4\r\n10.0_233_cheeky-cornflower-setter-95d3901d1eb6-20220423-210413.mp4 10.0_434_cheeky-cornflower-setter-dfbf60a8ea61-20220414-133931.mp4\r\n10.0_2340_shabby-pink-molly-0aa52c82857b-20220424-200537.mp4 10.0_4350_woozy-ruby-ostrich-f153ac423f61-20220416-065812.mp4\r\n10.0_2341_shabby-pink-molly-0aa52c82857b-20220424-201038.mp4 10.0_4351_woozy-ruby-ostrich-f153ac423f61-20220416-070310.mp4\r\n10.0_2342_shabby-pink-molly-0b427e25d052-20220416-165016.mp4 10.0_4352_woozy-ruby-ostrich-f153ac423f61-20220416-083442.mp4\r\n10.0_2343_shabby-pink-molly-0b427e25d052-20220416-165518.mp4 10.0_4353_woozy-ruby-ostrich-f153ac423f61-20220416-083941.mp4\r\n10.0_2344_shabby-pink-molly-0be06245e969-20220419-083620.mp4 10.0_4354_woozy-ruby-ostrich-f153ac423f61-20220416-162928.mp4\r\n10.0_2345_shabby-pink-molly-0ecc0b9bbec0-20220414-090754.mp4 10.0_4355_woozy-ruby-ostrich-f153ac423f61-20220416-163924.mp4\r\n10.0_2346_shabby-pink-molly-155fb38e1aa4-20220414-091227.mp4 10.0_4356_woozy-ruby-ostrich-f153ac423f61-20220416-164918.mp4\r\n10.0_2347_shabby-pink-molly-155fb38e1aa4-20220414-091729.mp4 10.0_4357_woozy-ruby-ostrich-f153ac423f61-20220416-225446.mp4\r\n10.0_2348_shabby-pink-molly-155fb38e1aa4-20220414-092231.mp4 10.0_4358_woozy-ruby-ostrich-f153ac423f61-20220416-225945.mp4\r\n10.0_2349_shabby-pink-molly-16e5b6aec9e4-20220414-093216.mp4 10.0_4359_woozy-ruby-ostrich-f153ac423f61-20220417-003048.mp4\r\n10.0_234_cheeky-cornflower-setter-95f3b39e4391-20220415-125408.mp4 10.0_435_cheeky-cornflower-setter-e0cd49a3e0aa-20220423-185726.mp4\r\n10.0_2350_shabby-pink-molly-17d8e86ca6d4-20220416-171113.mp4 10.0_4360_woozy-ruby-ostrich-f153ac423f61-20220417-003547.mp4\r\n10.0_2351_shabby-pink-molly-17d8e86ca6d4-20220416-171616.mp4 10.0_4361_woozy-ruby-ostrich-f153ac423f61-20220417-004048.mp4\r\n10.0_2352_shabby-pink-molly-189dbc7d5b82-20220421-080721.mp4 10.0_4362_woozy-ruby-ostrich-f153ac423f61-20220417-004553.mp4\r\n10.0_2353_shabby-pink-molly-189dbc7d5b82-20220421-081222.mp4 10.0_4363_woozy-ruby-ostrich-f153ac423f61-20220417-043005.mp4\r\n10.0_2354_shabby-pink-molly-189dbc7d5b82-20220421-081724.mp4 10.0_4364_woozy-ruby-ostrich-f153ac423f61-20220417-043504.mp4\r\n10.0_2355_shabby-pink-molly-189dbc7d5b82-20220421-082225.mp4 10.0_4365_woozy-ruby-ostrich-f153ac423f61-20220417-181222.mp4\r\n10.0_2356_shabby-pink-molly-1a8b59a4c823-20220421-090956.mp4 10.0_4366_woozy-ruby-ostrich-f153ac423f61-20220417-181720.mp4\r\n10.0_2357_shabby-pink-molly-1a8b59a4c823-20220421-091458.mp4 10.0_4367_woozy-ruby-ostrich-f153ac423f61-20220417-182218.mp4\r\n10.0_2358_shabby-pink-molly-1a8b59a4c823-20220421-091959.mp4 10.0_4368_woozy-ruby-ostrich-f153ac423f61-20220417-182715.mp4\r\n10.0_2359_shabby-pink-molly-21109099d9d1-20220419-085725.mp4 10.0_4369_woozy-ruby-ostrich-f153ac423f61-20220417-220355.mp4\r\n10.0_235_cheeky-cornflower-setter-95f3b39e4391-20220415-125918.mp4 10.0_436_cheeky-cornflower-setter-e0cd49a3e0aa-20220423-190821.mp4\r\n10.0_2360_shabby-pink-molly-21109099d9d1-20220419-090227.mp4 10.0_4370_woozy-ruby-ostrich-f153ac423f61-20220417-221214.mp4\r\n10.0_2361_shabby-pink-molly-21109099d9d1-20220419-090729.mp4 10.0_4371_woozy-ruby-ostrich-f153ac423f61-20220418-004426.mp4\r\n10.0_2362_shabby-pink-molly-21109099d9d1-20220419-091230.mp4 10.0_4372_woozy-ruby-ostrich-f153ac423f61-20220418-004925.mp4\r\n10.0_2363_shabby-pink-molly-21109099d9d1-20220419-091732.mp4 10.0_4373_woozy-ruby-ostrich-f153ac423f61-20220418-005423.mp4\r\n10.0_2364_shabby-pink-molly-255f90ece28e-20220416-113133.mp4 10.0_4374_woozy-ruby-ostrich-f153ac423f61-20220418-033403.mp4\r\n10.0_2365_shabby-pink-molly-255f90ece28e-20220416-113636.mp4 10.0_4375_woozy-ruby-ostrich-f153ac423f61-20220418-033902.mp4\r\n10.0_2366_shabby-pink-molly-255f90ece28e-20220416-114138.mp4 10.0_4376_woozy-ruby-ostrich-f153ac423f61-20220418-034400.mp4\r\n10.0_2367_shabby-pink-molly-255f90ece28e-20220416-114641.mp4 10.0_4377_woozy-ruby-ostrich-f153ac423f61-20220418-034858.mp4\r\n10.0_2368_shabby-pink-molly-264697320021-20220420-092537.mp4 10.0_4378_woozy-ruby-ostrich-f153ac423f61-20220418-063346.mp4\r\n10.0_2369_shabby-pink-molly-264697320021-20220420-093038.mp4 10.0_4379_woozy-ruby-ostrich-f153ac423f61-20220418-063845.mp4\r\n10.0_236_cheeky-cornflower-setter-98133ed4f2fc-20220419-092628.mp4 10.0_437_cheeky-cornflower-setter-e2be17bf2af2-20220417-151910.mp4\r\n10.0_2370_shabby-pink-molly-264697320021-20220420-093540.mp4 10.0_4380_woozy-ruby-ostrich-f153ac423f61-20220418-064343.mp4\r\n10.0_2371_shabby-pink-molly-264697320021-20220420-094041.mp4 10.0_4381_woozy-ruby-ostrich-f153ac423f61-20220418-071712.mp4\r\n10.0_2372_shabby-pink-molly-2f0d7ce69f89-20220416-122853.mp4 10.0_4382_woozy-ruby-ostrich-f153ac423f61-20220418-072211.mp4\r\n10.0_2373_shabby-pink-molly-2f0d7ce69f89-20220416-123355.mp4 10.0_4383_woozy-ruby-ostrich-f153ac423f61-20220418-072714.mp4\r\n10.0_2374_shabby-pink-molly-2f0d7ce69f89-20220416-123857.mp4 10.0_4384_woozy-ruby-ostrich-f153ac423f61-20220419-053352.mp4\r\n10.0_2375_shabby-pink-molly-35bf59b96d1a-20220414-080905.mp4 10.0_4385_woozy-ruby-ostrich-f153ac423f61-20220419-053850.mp4\r\n10.0_2376_shabby-pink-molly-3a103bd23e05-20220414-090202.mp4 10.0_4386_woozy-ruby-ostrich-f153ac423f61-20220419-054348.mp4\r\n10.0_2377_shabby-pink-molly-3a103bd23e05-20220414-090704.mp4 10.0_4387_woozy-ruby-ostrich-f153ac423f61-20220419-054845.mp4\r\n10.0_2378_shabby-pink-molly-3d5587cf7eb7-20220424-194902.mp4 10.0_4388_woozy-ruby-ostrich-f153ac423f61-20220419-055354.mp4\r\n10.0_2379_shabby-pink-molly-4738bca9e7fe-20220416-152224.mp4 10.0_4389_woozy-ruby-ostrich-f153ac423f61-20220419-235459.mp4\r\n10.0_237_cheeky-cornflower-setter-98133ed4f2fc-20220419-093138.mp4 10.0_438_cheeky-cornflower-setter-e2be17bf2af2-20220417-152417.mp4\r\n10.0_2380_shabby-pink-molly-4738bca9e7fe-20220416-152726.mp4 10.0_4390_woozy-ruby-ostrich-f153ac423f61-20220420-000003.mp4\r\n10.0_2381_shabby-pink-molly-4738bca9e7fe-20220416-153228.mp4 10.0_4391_woozy-ruby-ostrich-f153ac423f61-20220420-000500.mp4\r\n10.0_2382_shabby-pink-molly-4738bca9e7fe-20220416-153730.mp4 10.0_4392_woozy-ruby-ostrich-f153ac423f61-20220420-001006.mp4\r\n10.0_2383_shabby-pink-molly-4738bca9e7fe-20220416-154231.mp4 10.0_4393_woozy-ruby-ostrich-f153ac423f61-20220420-001547.mp4\r\n10.0_2384_shabby-pink-molly-477fb23e35ef-20220416-165925.mp4 10.0_4394_woozy-ruby-ostrich-f153ac423f61-20220420-021434.mp4\r\n10.0_2385_shabby-pink-molly-477fb23e35ef-20220416-170427.mp4 10.0_4395_woozy-ruby-ostrich-f153ac423f61-20220420-021936.mp4\r\n10.0_2386_shabby-pink-molly-477fb23e35ef-20220416-170929.mp4 10.0_4396_woozy-ruby-ostrich-f153ac423f61-20220420-022434.mp4\r\n10.0_2387_shabby-pink-molly-48b53b50e25d-20220414-081054.mp4 10.0_4397_woozy-ruby-ostrich-f153ac423f61-20220420-022932.mp4\r\n10.0_2388_shabby-pink-molly-492a65fc7235-20220414-081255.mp4 10.0_4398_woozy-ruby-ostrich-f153ac423f61-20220420-023429.mp4\r\n10.0_2389_shabby-pink-molly-4ea7f0f9605d-20220420-101245.mp4 10.0_4399_woozy-ruby-ostrich-f153ac423f61-20220420-081510.mp4\r\n10.0_238_cheeky-cornflower-setter-991c0914481d-20220419-111038.mp4 10.0_439_cheeky-cornflower-setter-e2ccef430e37-20220414-174005.mp4\r\n10.0_2390_shabby-pink-molly-4ea7f0f9605d-20220420-101747.mp4 10.0_4400_woozy-ruby-ostrich-f153ac423f61-20220420-082009.mp4\r\n10.0_2391_shabby-pink-molly-4ea7f0f9605d-20220420-102248.mp4 10.0_4401_woozy-ruby-ostrich-f153ac423f61-20220420-082507.mp4\r\n10.0_2392_shabby-pink-molly-4ea7f0f9605d-20220420-102750.mp4 10.0_4402_woozy-ruby-ostrich-f153ac423f61-20220420-083004.mp4\r\n10.0_2393_shabby-pink-molly-51ac39e6e130-20220416-134801.mp4 10.0_4403_woozy-ruby-ostrich-f153ac423f61-20220420-083502.mp4\r\n10.0_2394_shabby-pink-molly-51ac39e6e130-20220416-135303.mp4 10.0_4404_woozy-ruby-ostrich-f153ac423f61-20220420-110645.mp4\r\n10.0_2395_shabby-pink-molly-51ac39e6e130-20220416-135804.mp4 10.0_4405_woozy-ruby-ostrich-f153ac423f61-20220420-111144.mp4\r\n10.0_2396_shabby-pink-molly-51ac39e6e130-20220416-140306.mp4 10.0_4406_woozy-ruby-ostrich-f153ac423f61-20220420-111641.mp4\r\n10.0_2397_shabby-pink-molly-51ac39e6e130-20220416-140808.mp4 10.0_4407_woozy-ruby-ostrich-f153ac423f61-20220420-112157.mp4\r\n10.0_2398_shabby-pink-molly-54a2b6b85a2d-20220419-075201.mp4 10.0_4408_woozy-ruby-ostrich-f153ac423f61-20220420-112655.mp4\r\n10.0_2399_shabby-pink-molly-54a2b6b85a2d-20220419-075703.mp4 10.0_4409_woozy-ruby-ostrich-f153ac423f61-20220420-152230.mp4\r\n10.0_239_cheeky-cornflower-setter-991c0914481d-20220419-111546.mp4 10.0_440_cheeky-cornflower-setter-e2ccef430e37-20220414-174555.mp4\r\n10.0_2400_shabby-pink-molly-5d419c6b4640-20220416-162716.mp4 10.0_4410_woozy-ruby-ostrich-f153ac423f61-20220420-152738.mp4\r\n10.0_2401_shabby-pink-molly-5d419c6b4640-20220416-163218.mp4 10.0_4411_woozy-ruby-ostrich-f153ac423f61-20220420-153235.mp4\r\n10.0_2402_shabby-pink-molly-5d419c6b4640-20220416-163720.mp4 10.0_4412_woozy-ruby-ostrich-f153ac423f61-20220420-153742.mp4\r\n10.0_2403_shabby-pink-molly-5d419c6b4640-20220416-164223.mp4 10.0_4413_woozy-ruby-ostrich-f153ac423f61-20220420-154240.mp4\r\n10.0_2404_shabby-pink-molly-5d419c6b4640-20220416-164725.mp4 10.0_4414_woozy-ruby-ostrich-f81ddc088496-20220416-044148.mp4\r\n10.0_2405_shabby-pink-molly-5d68f85ed866-20220414-092659.mp4 10.0_4415_woozy-ruby-ostrich-fbbe44b63eb5-20220420-005726.mp4\r\n10.0_2406_shabby-pink-molly-5e60ebc3e19e-20220419-091942.mp4 10.0_4416_woozy-ruby-ostrich-fbbe44b63eb5-20220420-010224.mp4\r\n10.0_2407_shabby-pink-molly-5e60ebc3e19e-20220419-092444.mp4 10.0_4417_woozy-ruby-ostrich-ff7516c11cee-20220419-060339.mp4\r\n10.0_2408_shabby-pink-molly-5e60ebc3e19e-20220419-092946.mp4 10.0_441_cheeky-cornflower-setter-e2ccef430e37-20220414-175100.mp4\r\n10.0_2409_shabby-pink-molly-5e60ebc3e19e-20220419-093447.mp4 10.0_442_cheeky-cornflower-setter-e44a6c43c94a-20220422-121637.mp4\r\n10.0_240_cheeky-cornflower-setter-991c0914481d-20220419-112052.mp4 10.0_443_cheeky-cornflower-setter-e44a6c43c94a-20220422-122600.mp4\r\n10.0_2410_shabby-pink-molly-5e60ebc3e19e-20220419-093949.mp4 10.0_444_cheeky-cornflower-setter-e53917553fcb-20220423-123016.mp4\r\n10.0_2411_shabby-pink-molly-645d83ad9a55-20220416-172105.mp4 10.0_445_cheeky-cornflower-setter-e53917553fcb-20220423-124038.mp4\r\n10.0_2412_shabby-pink-molly-645d83ad9a55-20220416-172607.mp4 10.0_446_cheeky-cornflower-setter-e53917553fcb-20220423-125047.mp4\r\n10.0_2413_shabby-pink-molly-645d83ad9a55-20220416-173109.mp4 10.0_447_cheeky-cornflower-setter-e59ca3547906-20220419-150446.mp4\r\n10.0_2414_shabby-pink-molly-6623a5b829ed-20220419-081823.mp4 10.0_448_cheeky-cornflower-setter-e59ca3547906-20220419-150954.mp4\r\n10.0_2415_shabby-pink-molly-6623a5b829ed-20220419-082325.mp4 10.0_449_cheeky-cornflower-setter-e59ca3547906-20220419-151515.mp4\r\n10.0_2416_shabby-pink-molly-6623a5b829ed-20220419-082826.mp4 10.0_450_cheeky-cornflower-setter-e6e025efec8c-20220417-094436.mp4\r\n10.0_2417_shabby-pink-molly-6623a5b829ed-20220419-083328.mp4 10.0_451_cheeky-cornflower-setter-e6e025efec8c-20220417-094945.mp4\r\n10.0_2418_shabby-pink-molly-6bdcc4372297-20220414-080627.mp4 10.0_452_cheeky-cornflower-setter-e6e025efec8c-20220417-100006.mp4\r\n10.0_2419_shabby-pink-molly-6dca2119c0d0-20220420-112534.mp4 10.0_453_cheeky-cornflower-setter-e8b6a71198ec-20220418-140524.mp4\r\n10.0_241_cheeky-cornflower-setter-991c0914481d-20220419-112558.mp4 10.0_454_cheeky-cornflower-setter-e8b6a71198ec-20220418-141032.mp4\r\n10.0_2420_shabby-pink-molly-6dca2119c0d0-20220420-113041.mp4 10.0_455_cheeky-cornflower-setter-e8b6a71198ec-20220418-141543.mp4\r\n10.0_2421_shabby-pink-molly-6dca2119c0d0-20220420-113543.mp4 10.0_456_cheeky-cornflower-setter-e9a333cd51bf-20220418-111519.mp4\r\n10.0_2422_shabby-pink-molly-6dca2119c0d0-20220420-114045.mp4 10.0_457_cheeky-cornflower-setter-ea325edb7e44-20220418-170909.mp4\r\n10.0_2423_shabby-pink-molly-6dca2119c0d0-20220420-114548.mp4 10.0_458_cheeky-cornflower-setter-edf57f76f9a2-20220416-094153.mp4\r\n10.0_2424_shabby-pink-molly-6e3b1c915f6d-20220416-154339.mp4 10.0_459_cheeky-cornflower-setter-edf57f76f9a2-20220416-094728.mp4\r\n10.0_2425_shabby-pink-molly-6e3b1c915f6d-20220416-154841.mp4 10.0_460_cheeky-cornflower-setter-edf57f76f9a2-20220416-095312.mp4\r\n10.0_2426_shabby-pink-molly-6e3b1c915f6d-20220416-155343.mp4 10.0_461_cheeky-cornflower-setter-edf57f76f9a2-20220416-095900.mp4\r\n10.0_2427_shabby-pink-molly-6e3b1c915f6d-20220416-155845.mp4 10.0_462_cheeky-cornflower-setter-f0c8631cf6af-20220414-143622.mp4\r\n10.0_2428_shabby-pink-molly-70a4e0c13d92-20220414-110616.mp4 10.0_463_cheeky-cornflower-setter-f0c8631cf6af-20220414-144204.mp4\r\n10.0_2429_shabby-pink-molly-70a4e0c13d92-20220414-111119.mp4 10.0_464_cheeky-cornflower-setter-f14dc0345a2e-20220422-220713.mp4\r\n10.0_242_cheeky-cornflower-setter-9978e4199995-20220422-125454.mp4 10.0_465_cheeky-cornflower-setter-f14dc0345a2e-20220422-221613.mp4\r\n10.0_2430_shabby-pink-molly-70a4e0c13d92-20220414-111620.mp4 10.0_466_cheeky-cornflower-setter-f14dc0345a2e-20220422-222451.mp4\r\n10.0_2431_shabby-pink-molly-70a4e0c13d92-20220414-112122.mp4 10.0_467_cheeky-cornflower-setter-f153ac423f61-20220414-122124.mp4\r\n10.0_2432_shabby-pink-molly-70a4e0c13d92-20220414-112623.mp4 10.0_468_cheeky-cornflower-setter-f153ac423f61-20220414-122703.mp4\r\n10.0_2433_shabby-pink-molly-79e7bbf667ef-20220421-093044.mp4 10.0_469_cheeky-cornflower-setter-f153ac423f61-20220414-123306.mp4\r\n10.0_2434_shabby-pink-molly-79e7bbf667ef-20220421-093546.mp4 10.0_470_cheeky-cornflower-setter-f153ac423f61-20220414-124130.mp4\r\n10.0_2435_shabby-pink-molly-79f951b3bc27-20220414-081216.mp4 10.0_471_cheeky-cornflower-setter-f153ac423f61-20220414-124939.mp4\r\n10.0_2436_shabby-pink-molly-7cce2f5290cc-20220424-111602.mp4 10.0_472_cheeky-cornflower-setter-f153ac423f61-20220414-125602.mp4\r\n10.0_2437_shabby-pink-molly-7cce2f5290cc-20220424-112105.mp4 10.0_473_cheeky-cornflower-setter-f153ac423f61-20220414-130226.mp4\r\n10.0_2438_shabby-pink-molly-7cce2f5290cc-20220424-112607.mp4 10.0_474_cheeky-cornflower-setter-f153ac423f61-20220414-171805.mp4\r\n10.0_2439_shabby-pink-molly-7cce2f5290cc-20220424-113108.mp4 10.0_475_cheeky-cornflower-setter-f153ac423f61-20220414-172325.mp4\r\n10.0_243_cheeky-cornflower-setter-9978e4199995-20220422-130748.mp4 10.0_476_cheeky-cornflower-setter-f153ac423f61-20220414-172831.mp4\r\n10.0_2440_shabby-pink-molly-7cce2f5290cc-20220424-113610.mp4 10.0_477_cheeky-cornflower-setter-f153ac423f61-20220414-173338.mp4\r\n10.0_2441_shabby-pink-molly-7cfd756ce4ab-20220414-092851.mp4 10.0_478_cheeky-cornflower-setter-f153ac423f61-20220414-202837.mp4\r\n10.0_2442_shabby-pink-molly-7dd581611fb0-20220421-093936.mp4 10.0_479_cheeky-cornflower-setter-f153ac423f61-20220414-203400.mp4\r\n10.0_2443_shabby-pink-molly-7dd581611fb0-20220421-094438.mp4 10.0_480_cheeky-cornflower-setter-f153ac423f61-20220414-203908.mp4\r\n10.0_2444_shabby-pink-molly-7e276fd4c36f-20220419-084040.mp4 10.0_481_cheeky-cornflower-setter-f153ac423f61-20220414-204415.mp4\r\n10.0_2445_shabby-pink-molly-7e276fd4c36f-20220419-084542.mp4 10.0_482_cheeky-cornflower-setter-f153ac423f61-20220415-091448.mp4\r\n10.0_2446_shabby-pink-molly-86d27cb24f42-20220424-212153.mp4 10.0_483_cheeky-cornflower-setter-f153ac423f61-20220415-092006.mp4\r\n10.0_2447_shabby-pink-molly-86d27cb24f42-20220424-212655.mp4 10.0_484_cheeky-cornflower-setter-f153ac423f61-20220415-120445.mp4\r\n10.0_2448_shabby-pink-molly-86d27cb24f42-20220424-213157.mp4 10.0_485_cheeky-cornflower-setter-f153ac423f61-20220415-121008.mp4\r\n10.0_2449_shabby-pink-molly-88d5939282ee-20220420-094244.mp4 10.0_486_cheeky-cornflower-setter-f153ac423f61-20220415-121516.mp4\r\n10.0_244_cheeky-cornflower-setter-99cf993a1840-20220416-212958.mp4 10.0_487_cheeky-cornflower-setter-f153ac423f61-20220415-165933.mp4\r\n10.0_2450_shabby-pink-molly-8c87984cfdb5-20220414-081147.mp4 10.0_488_cheeky-cornflower-setter-f153ac423f61-20220415-170559.mp4\r\n10.0_2451_shabby-pink-molly-8e1888fb7974-20220421-094507.mp4 10.0_489_cheeky-cornflower-setter-f153ac423f61-20220415-171103.mp4\r\n10.0_2452_shabby-pink-molly-90feff906c1d-20220424-113720.mp4 10.0_490_cheeky-cornflower-setter-f153ac423f61-20220415-210120.mp4\r\n10.0_2453_shabby-pink-molly-90feff906c1d-20220424-114222.mp4 10.0_491_cheeky-cornflower-setter-f153ac423f61-20220415-210701.mp4\r\n10.0_2454_shabby-pink-molly-90feff906c1d-20220424-114724.mp4 10.0_492_cheeky-cornflower-setter-f153ac423f61-20220415-211207.mp4\r\n10.0_2455_shabby-pink-molly-90feff906c1d-20220424-115226.mp4 10.0_493_cheeky-cornflower-setter-f153ac423f61-20220415-221914.mp4\r\n10.0_2456_shabby-pink-molly-90feff906c1d-20220424-115728.mp4 10.0_494_cheeky-cornflower-setter-f153ac423f61-20220415-222438.mp4\r\n10.0_2457_shabby-pink-molly-930277f0f5d5-20220416-160459.mp4 10.0_495_cheeky-cornflower-setter-f153ac423f61-20220415-222944.mp4\r\n10.0_2458_shabby-pink-molly-930277f0f5d5-20220416-161001.mp4 10.0_496_cheeky-cornflower-setter-f153ac423f61-20220415-223448.mp4\r\n10.0_2459_shabby-pink-molly-930277f0f5d5-20220416-161503.mp4 10.0_497_cheeky-cornflower-setter-f153ac423f61-20220416-084430.mp4\r\n10.0_245_cheeky-cornflower-setter-99cf993a1840-20220416-213633.mp4 10.0_498_cheeky-cornflower-setter-f153ac423f61-20220416-085014.mp4\r\n10.0_2460_shabby-pink-molly-930277f0f5d5-20220416-162005.mp4 10.0_499_cheeky-cornflower-setter-f153ac423f61-20220416-085550.mp4\r\n10.0_2461_shabby-pink-molly-930277f0f5d5-20220416-162506.mp4 10.0_500_cheeky-cornflower-setter-f153ac423f61-20220416-111803.mp4\r\n10.0_2462_shabby-pink-molly-9566b8f59631-20220414-080848.mp4 10.0_501_cheeky-cornflower-setter-f153ac423f61-20220416-112324.mp4\r\n10.0_2463_shabby-pink-molly-95ec28153400-20220424-213423.mp4 10.0_502_cheeky-cornflower-setter-f153ac423f61-20220416-112833.mp4\r\n10.0_2464_shabby-pink-molly-982ca0f029d0-20220414-085626.mp4 10.0_503_cheeky-cornflower-setter-f153ac423f61-20220416-113340.mp4\r\n10.0_2465_shabby-pink-molly-a5caac12128c-20220416-132647.mp4 10.0_504_cheeky-cornflower-setter-f153ac423f61-20220416-173618.mp4\r\n10.0_2466_shabby-pink-molly-a5caac12128c-20220416-133150.mp4 10.0_505_cheeky-cornflower-setter-f153ac423f61-20220416-174136.mp4\r\n10.0_2467_shabby-pink-molly-a5caac12128c-20220416-133652.mp4 10.0_506_cheeky-cornflower-setter-f153ac423f61-20220416-174644.mp4\r\n10.0_2468_shabby-pink-molly-a5caac12128c-20220416-134153.mp4 10.0_507_cheeky-cornflower-setter-f153ac423f61-20220416-175150.mp4\r\n10.0_2469_shabby-pink-molly-a5caac12128c-20220416-134655.mp4 10.0_508_cheeky-cornflower-setter-f153ac423f61-20220416-184705.mp4\r\n10.0_246_cheeky-cornflower-setter-99cf993a1840-20220416-214147.mp4 10.0_509_cheeky-cornflower-setter-f153ac423f61-20220416-185230.mp4\r\n10.0_2470_shabby-pink-molly-aef3b6e106f9-20220414-083003.mp4 10.0_510_cheeky-cornflower-setter-f153ac423f61-20220416-185814.mp4\r\n10.0_2471_shabby-pink-molly-aef3b6e106f9-20220414-083505.mp4 10.0_511_cheeky-cornflower-setter-f153ac423f61-20220416-190352.mp4\r\n10.0_2472_shabby-pink-molly-aef3b6e106f9-20220414-084006.mp4 10.0_512_cheeky-cornflower-setter-f153ac423f61-20220416-210622.mp4\r\n10.0_2473_shabby-pink-molly-aef3b6e106f9-20220414-084508.mp4 10.0_513_cheeky-cornflower-setter-f153ac423f61-20220416-211148.mp4\r\n10.0_2474_shabby-pink-molly-aef3b6e106f9-20220414-085009.mp4 10.0_514_cheeky-cornflower-setter-f153ac423f61-20220416-211659.mp4\r\n10.0_2475_shabby-pink-molly-b2e1f60aa219-20220414-092427.mp4 10.0_515_cheeky-cornflower-setter-f153ac423f61-20220416-212206.mp4\r\n10.0_2476_shabby-pink-molly-b4d769163550-20220414-093031.mp4 10.0_516_cheeky-cornflower-setter-f153ac423f61-20220417-091629.mp4\r\n10.0_2477_shabby-pink-molly-b5b626e6b29d-20220420-094307.mp4 10.0_517_cheeky-cornflower-setter-f153ac423f61-20220417-092210.mp4\r\n10.0_2478_shabby-pink-molly-b76de5f30fa1-20220419-075902.mp4 10.0_518_cheeky-cornflower-setter-f153ac423f61-20220417-092726.mp4\r\n10.0_2479_shabby-pink-molly-b76de5f30fa1-20220419-080404.mp4 10.0_519_cheeky-cornflower-setter-f153ac423f61-20220417-093234.mp4\r\n10.0_247_cheeky-cornflower-setter-99cf993a1840-20220416-214655.mp4 10.0_520_cheeky-cornflower-setter-f153ac423f61-20220417-102048.mp4\r\n10.0_2480_shabby-pink-molly-b76de5f30fa1-20220419-080906.mp4 10.0_521_cheeky-cornflower-setter-f153ac423f61-20220417-102607.mp4\r\n10.0_2481_shabby-pink-molly-bd16f47f6c88-20220416-122303.mp4 10.0_522_cheeky-cornflower-setter-f153ac423f61-20220417-103114.mp4\r\n10.0_2482_shabby-pink-molly-bd16f47f6c88-20220416-122805.mp4 10.0_523_cheeky-cornflower-setter-f153ac423f61-20220417-103620.mp4\r\n10.0_2483_shabby-pink-molly-bfc809ffdd45-20220424-213711.mp4 10.0_524_cheeky-cornflower-setter-f153ac423f61-20220417-104951.mp4\r\n10.0_2484_shabby-pink-molly-cc65216dd828-20220419-075832.mp4 10.0_525_cheeky-cornflower-setter-f153ac423f61-20220417-105512.mp4\r\n10.0_2485_shabby-pink-molly-cc6e2016d7a9-20220416-120150.mp4 10.0_526_cheeky-cornflower-setter-f153ac423f61-20220417-105917.mp4\r\n10.0_2486_shabby-pink-molly-cc6e2016d7a9-20220416-120653.mp4 10.0_527_cheeky-cornflower-setter-f153ac423f61-20220417-110441.mp4\r\n10.0_2487_shabby-pink-molly-cc6e2016d7a9-20220416-121155.mp4 10.0_528_cheeky-cornflower-setter-f153ac423f61-20220417-111246.mp4\r\n10.0_2488_shabby-pink-molly-cc6e2016d7a9-20220416-121657.mp4 10.0_529_cheeky-cornflower-setter-f153ac423f61-20220417-111808.mp4\r\n10.0_2489_shabby-pink-molly-cc6e2016d7a9-20220416-122200.mp4 10.0_530_cheeky-cornflower-setter-f153ac423f61-20220417-142935.mp4\r\n10.0_248_cheeky-cornflower-setter-9b1dbda4f579-20220415-172400.mp4 10.0_531_cheeky-cornflower-setter-f153ac423f61-20220417-143455.mp4\r\n10.0_2490_shabby-pink-molly-d079ec65b5bf-20220421-082816.mp4 10.0_532_cheeky-cornflower-setter-f153ac423f61-20220417-144001.mp4\r\n10.0_2491_shabby-pink-molly-d079ec65b5bf-20220421-083318.mp4 10.0_533_cheeky-cornflower-setter-f153ac423f61-20220417-144508.mp4\r\n10.0_2492_shabby-pink-molly-d079ec65b5bf-20220421-083819.mp4 10.0_534_cheeky-cornflower-setter-f153ac423f61-20220417-163733.mp4\r\n10.0_2493_shabby-pink-molly-d079ec65b5bf-20220421-084321.mp4 10.0_535_cheeky-cornflower-setter-f153ac423f61-20220417-164300.mp4\r\n10.0_2494_shabby-pink-molly-d1b19e929d39-20220416-122832.mp4 10.0_536_cheeky-cornflower-setter-f153ac423f61-20220417-164810.mp4\r\n10.0_2495_shabby-pink-molly-d6af4d671098-20220419-084704.mp4 10.0_537_cheeky-cornflower-setter-f153ac423f61-20220417-165317.mp4\r\n10.0_2496_shabby-pink-molly-d6af4d671098-20220419-085205.mp4 10.0_538_cheeky-cornflower-setter-f153ac423f61-20220417-180517.mp4\r\n10.0_2497_shabby-pink-molly-d6d187b99d70-20220416-111038.mp4 10.0_539_cheeky-cornflower-setter-f153ac423f61-20220417-181108.mp4\r\n10.0_2498_shabby-pink-molly-d6d187b99d70-20220416-111540.mp4 10.0_540_cheeky-cornflower-setter-f153ac423f61-20220417-181613.mp4\r\n10.0_2499_shabby-pink-molly-d6d187b99d70-20220416-112043.mp4 10.0_541_cheeky-cornflower-setter-f153ac423f61-20220417-203316.mp4\r\n10.0_249_cheeky-cornflower-setter-9b1dbda4f579-20220415-173139.mp4 10.0_542_cheeky-cornflower-setter-f153ac423f61-20220417-203838.mp4\r\n10.0_2500_shabby-pink-molly-d6d187b99d70-20220416-112544.mp4 10.0_543_cheeky-cornflower-setter-f153ac423f61-20220417-204347.mp4\r\n10.0_2501_shabby-pink-molly-d6d187b99d70-20220416-113046.mp4 10.0_544_cheeky-cornflower-setter-f153ac423f61-20220417-204900.mp4\r\n10.0_2502_shabby-pink-molly-d9c4a415703b-20220414-090052.mp4 10.0_545_cheeky-cornflower-setter-f153ac423f61-20220417-205405.mp4\r\n10.0_2503_shabby-pink-molly-de0b3def6ba3-20220414-092446.mp4 10.0_546_cheeky-cornflower-setter-f153ac423f61-20220417-212046.mp4\r\n10.0_2504_shabby-pink-molly-deb8c3a7a516-20220414-081325.mp4 10.0_547_cheeky-cornflower-setter-f153ac423f61-20220417-212606.mp4\r\n10.0_2505_shabby-pink-molly-def0671b8070-20220416-124408.mp4 10.0_548_cheeky-cornflower-setter-f153ac423f61-20220417-213112.mp4\r\n10.0_2506_shabby-pink-molly-def0671b8070-20220416-124910.mp4 10.0_549_cheeky-cornflower-setter-f153ac423f61-20220417-215126.mp4\r\n10.0_2507_shabby-pink-molly-def0671b8070-20220416-125412.mp4 10.0_550_cheeky-cornflower-setter-f153ac423f61-20220417-215705.mp4\r\n10.0_2508_shabby-pink-molly-def0671b8070-20220416-125914.mp4 10.0_551_cheeky-cornflower-setter-f153ac423f61-20220417-220226.mp4\r\n10.0_2509_shabby-pink-molly-def0671b8070-20220416-130415.mp4 10.0_552_cheeky-cornflower-setter-f153ac423f61-20220417-220757.mp4\r\n10.0_250_cheeky-cornflower-setter-9b1dbda4f579-20220415-173643.mp4 10.0_553_cheeky-cornflower-setter-f153ac423f61-20220418-093410.mp4\r\n10.0_2510_shabby-pink-molly-e029affba56b-20220414-080544.mp4 10.0_554_cheeky-cornflower-setter-f153ac423f61-20220418-093931.mp4\r\n10.0_2511_shabby-pink-molly-e2c55d184867-20220414-090131.mp4 10.0_555_cheeky-cornflower-setter-f153ac423f61-20220418-094439.mp4\r\n10.0_2512_shabby-pink-molly-e8f3e7158f70-20220414-081122.mp4 10.0_556_cheeky-cornflower-setter-f153ac423f61-20220418-100216.mp4\r\n10.0_2513_shabby-pink-molly-e91f414b12d7-20220420-094621.mp4 10.0_557_cheeky-cornflower-setter-f153ac423f61-20220418-100740.mp4\r\n10.0_2514_shabby-pink-molly-e91f414b12d7-20220420-095123.mp4 10.0_558_cheeky-cornflower-setter-f153ac423f61-20220418-101249.mp4\r\n10.0_2515_shabby-pink-molly-e91f414b12d7-20220420-095624.mp4 10.0_559_cheeky-cornflower-setter-f153ac423f61-20220418-105506.mp4\r\n10.0_2516_shabby-pink-molly-e91f414b12d7-20220420-100125.mp4 10.0_560_cheeky-cornflower-setter-f153ac423f61-20220418-110024.mp4\r\n10.0_2517_shabby-pink-molly-e91f414b12d7-20220420-100627.mp4 10.0_561_cheeky-cornflower-setter-f153ac423f61-20220418-110533.mp4\r\n10.0_2518_shabby-pink-molly-f153ac423f61-20220414-075514.mp4 10.0_562_cheeky-cornflower-setter-f153ac423f61-20220418-111036.mp4\r\n10.0_2519_shabby-pink-molly-f153ac423f61-20220414-080018.mp4 10.0_563_cheeky-cornflower-setter-f153ac423f61-20220418-120640.mp4\r\n10.0_251_cheeky-cornflower-setter-9b1dbda4f579-20220415-174147.mp4 10.0_564_cheeky-cornflower-setter-f153ac423f61-20220418-121227.mp4\r\n10.0_2520_shabby-pink-molly-f153ac423f61-20220414-080521.mp4 10.0_565_cheeky-cornflower-setter-f153ac423f61-20220418-121803.mp4\r\n10.0_2521_shabby-pink-molly-f153ac423f61-20220414-104518.mp4 10.0_566_cheeky-cornflower-setter-f153ac423f61-20220418-122339.mp4\r\n10.0_2522_shabby-pink-molly-f153ac423f61-20220414-105021.mp4 10.0_567_cheeky-cornflower-setter-f153ac423f61-20220418-124530.mp4\r\n10.0_2523_shabby-pink-molly-f153ac423f61-20220414-105523.mp4 10.0_568_cheeky-cornflower-setter-f153ac423f61-20220418-125115.mp4\r\n10.0_2524_shabby-pink-molly-f153ac423f61-20220414-110025.mp4 10.0_569_cheeky-cornflower-setter-f153ac423f61-20220418-165452.mp4\r\n10.0_2525_shabby-pink-molly-f153ac423f61-20220414-110526.mp4 10.0_570_cheeky-cornflower-setter-f153ac423f61-20220418-170016.mp4\r\n10.0_2526_shabby-pink-molly-f153ac423f61-20220416-104923.mp4 10.0_571_cheeky-cornflower-setter-f153ac423f61-20220418-170526.mp4\r\n10.0_2527_shabby-pink-molly-f153ac423f61-20220416-105426.mp4 10.0_572_cheeky-cornflower-setter-f153ac423f61-20220418-183513.mp4\r\n10.0_2528_shabby-pink-molly-f153ac423f61-20220416-105928.mp4 10.0_573_cheeky-cornflower-setter-f153ac423f61-20220418-184034.mp4\r\n10.0_2529_shabby-pink-molly-f153ac423f61-20220416-110430.mp4 10.0_574_cheeky-cornflower-setter-f153ac423f61-20220418-184541.mp4\r\n10.0_252_cheeky-cornflower-setter-9b4d35d6fd86-20220422-171443.mp4 10.0_575_cheeky-cornflower-setter-f153ac423f61-20220418-194414.mp4\r\n10.0_2530_shabby-pink-molly-f153ac423f61-20220416-110932.mp4 10.0_576_cheeky-cornflower-setter-f153ac423f61-20220418-194936.mp4\r\n10.0_2531_shabby-pink-molly-f153ac423f61-20220416-150105.mp4 10.0_577_cheeky-cornflower-setter-f153ac423f61-20220418-195444.mp4\r\n10.0_2532_shabby-pink-molly-f153ac423f61-20220416-150615.mp4 10.0_578_cheeky-cornflower-setter-f153ac423f61-20220419-091502.mp4\r\n10.0_2533_shabby-pink-molly-f153ac423f61-20220416-151117.mp4 10.0_579_cheeky-cornflower-setter-f153ac423f61-20220419-092032.mp4\r\n10.0_2534_shabby-pink-molly-f153ac423f61-20220416-151619.mp4 10.0_580_cheeky-cornflower-setter-f153ac423f61-20220419-092541.mp4\r\n10.0_2535_shabby-pink-molly-f153ac423f61-20220416-152121.mp4 10.0_581_cheeky-cornflower-setter-f153ac423f61-20220419-105345.mp4\r\n10.0_2536_shabby-pink-molly-f153ac423f61-20220419-073037.mp4 10.0_582_cheeky-cornflower-setter-f153ac423f61-20220419-105912.mp4\r\n10.0_2537_shabby-pink-molly-f153ac423f61-20220419-073539.mp4 10.0_583_cheeky-cornflower-setter-f153ac423f61-20220419-110420.mp4\r\n10.0_2538_shabby-pink-molly-f153ac423f61-20220419-074042.mp4 10.0_584_cheeky-cornflower-setter-f153ac423f61-20220419-123621.mp4\r\n10.0_2539_shabby-pink-molly-f153ac423f61-20220419-074544.mp4 10.0_585_cheeky-cornflower-setter-f153ac423f61-20220419-124149.mp4\r\n10.0_253_cheeky-cornflower-setter-9b4d35d6fd86-20220422-171951.mp4 10.0_586_cheeky-cornflower-setter-f153ac423f61-20220419-141308.mp4\r\n10.0_2540_shabby-pink-molly-f153ac423f61-20220419-075046.mp4 10.0_587_cheeky-cornflower-setter-f153ac423f61-20220419-141827.mp4\r\n10.0_2541_shabby-pink-molly-f153ac423f61-20220420-090424.mp4 10.0_588_cheeky-cornflower-setter-f153ac423f61-20220419-144004.mp4\r\n10.0_2542_shabby-pink-molly-f153ac423f61-20220420-090927.mp4 10.0_589_cheeky-cornflower-setter-f153ac423f61-20220419-144520.mp4\r\n10.0_2543_shabby-pink-molly-f153ac423f61-20220420-091428.mp4 10.0_590_cheeky-cornflower-setter-f153ac423f61-20220419-145022.mp4\r\n10.0_2544_shabby-pink-molly-f153ac423f61-20220420-091929.mp4 10.0_591_cheeky-cornflower-setter-f153ac423f61-20220419-172947.mp4\r\n10.0_2545_shabby-pink-molly-f153ac423f61-20220420-092430.mp4 10.0_592_cheeky-cornflower-setter-f153ac423f61-20220419-174033.mp4\r\n10.0_2546_shabby-pink-molly-f153ac423f61-20220420-110413.mp4 10.0_593_cheeky-cornflower-setter-f153ac423f61-20220419-174538.mp4\r\n10.0_2547_shabby-pink-molly-f153ac423f61-20220420-110915.mp4 10.0_594_cheeky-cornflower-setter-f153ac423f61-20220419-175042.mp4\r\n10.0_2548_shabby-pink-molly-f153ac423f61-20220420-111418.mp4 10.0_595_cheeky-cornflower-setter-f153ac423f61-20220419-194318.mp4\r\n10.0_2549_shabby-pink-molly-f153ac423f61-20220420-111920.mp4 10.0_596_cheeky-cornflower-setter-f153ac423f61-20220419-194839.mp4\r\n10.0_254_cheeky-cornflower-setter-9b4d35d6fd86-20220422-172457.mp4 10.0_597_cheeky-cornflower-setter-f153ac423f61-20220419-195347.mp4\r\n10.0_2550_shabby-pink-molly-f153ac423f61-20220420-112422.mp4 10.0_598_cheeky-cornflower-setter-f153ac423f61-20220419-195853.mp4\r\n10.0_2551_shabby-pink-molly-f153ac423f61-20220421-074109.mp4 10.0_599_cheeky-cornflower-setter-f153ac423f61-20220420-163425.mp4\r\n10.0_2552_shabby-pink-molly-f153ac423f61-20220421-074611.mp4 10.0_600_cheeky-cornflower-setter-f153ac423f61-20220420-164057.mp4\r\n10.0_2553_shabby-pink-molly-f153ac423f61-20220421-075113.mp4 10.0_601_cheeky-cornflower-setter-f153ac423f61-20220420-164608.mp4\r\n10.0_2554_shabby-pink-molly-f153ac423f61-20220421-075615.mp4 10.0_602_cheeky-cornflower-setter-f153ac423f61-20220420-200708.mp4\r\n10.0_2555_shabby-pink-molly-f153ac423f61-20220421-080116.mp4 10.0_603_cheeky-cornflower-setter-f153ac423f61-20220421-000106.mp4\r\n10.0_2556_shabby-pink-molly-f153ac423f61-20220424-105225.mp4 10.0_604_cheeky-cornflower-setter-f153ac423f61-20220421-000623.mp4\r\n10.0_2557_shabby-pink-molly-f153ac423f61-20220424-105728.mp4 10.0_605_cheeky-cornflower-setter-f153ac423f61-20220421-090757.mp4\r\n10.0_2558_shabby-pink-molly-f153ac423f61-20220424-110230.mp4 10.0_606_cheeky-cornflower-setter-f153ac423f61-20220421-091326.mp4\r\n10.0_2559_shabby-pink-molly-f153ac423f61-20220424-110731.mp4 10.0_607_cheeky-cornflower-setter-f153ac423f61-20220421-091834.mp4\r\n10.0_255_cheeky-cornflower-setter-9be13dccb165-20220415-194430.mp4 10.0_608_cheeky-cornflower-setter-f153ac423f61-20220421-092341.mp4\r\n10.0_2560_shabby-pink-molly-f153ac423f61-20220424-111233.mp4 10.0_609_cheeky-cornflower-setter-f153ac423f61-20220421-102529.mp4\r\n10.0_2561_shabby-pink-molly-f153ac423f61-20220424-192928.mp4 10.0_610_cheeky-cornflower-setter-f153ac423f61-20220421-103051.mp4\r\n10.0_2562_shabby-pink-molly-f153ac423f61-20220424-193434.mp4 10.0_611_cheeky-cornflower-setter-f153ac423f61-20220421-103557.mp4\r\n10.0_2563_shabby-pink-molly-f153ac423f61-20220424-193937.mp4 10.0_612_cheeky-cornflower-setter-f153ac423f61-20220421-104245.mp4\r\n10.0_2564_shabby-pink-molly-f153ac423f61-20220424-194438.mp4 10.0_613_cheeky-cornflower-setter-f153ac423f61-20220421-104805.mp4\r\n10.0_2565_shabby-pink-molly-f153ac423f61-20220424-204323.mp4 10.0_614_cheeky-cornflower-setter-f153ac423f61-20220421-111811.mp4\r\n10.0_2566_shabby-pink-molly-f153ac423f61-20220424-204825.mp4 10.0_615_cheeky-cornflower-setter-f153ac423f61-20220421-112335.mp4\r\n10.0_2567_shabby-pink-molly-f153ac423f61-20220424-205327.mp4 10.0_616_cheeky-cornflower-setter-f153ac423f61-20220421-112848.mp4\r\n10.0_2568_shabby-pink-molly-f153ac423f61-20220424-205829.mp4 10.0_617_cheeky-cornflower-setter-f153ac423f61-20220421-113354.mp4\r\n10.0_2569_shabby-pink-molly-f35fc91db4d3-20220414-081351.mp4 10.0_618_cheeky-cornflower-setter-f153ac423f61-20220421-120250.mp4\r\n10.0_256_cheeky-cornflower-setter-9be13dccb165-20220415-194938.mp4 10.0_619_cheeky-cornflower-setter-f153ac423f61-20220421-122213.mp4\r\n10.0_2570_shabby-pink-molly-f35fc91db4d3-20220414-081852.mp4 10.0_620_cheeky-cornflower-setter-f153ac423f61-20220421-123232.mp4\r\n10.0_2571_shabby-pink-molly-f35fc91db4d3-20220414-082354.mp4 10.0_621_cheeky-cornflower-setter-f153ac423f61-20220421-125701.mp4\r\n10.0_2572_shabby-pink-molly-f35fc91db4d3-20220414-082856.mp4 10.0_622_cheeky-cornflower-setter-f153ac423f61-20220421-131058.mp4\r\n10.0_2573_shabby-pink-molly-f36c9f3c29c5-20220416-172031.mp4 10.0_623_cheeky-cornflower-setter-f153ac423f61-20220421-140623.mp4\r\n10.0_2574_shabby-pink-molly-f7bf68088160-20220414-092728.mp4 10.0_624_cheeky-cornflower-setter-f153ac423f61-20220421-141916.mp4\r\n10.0_2575_shabby-pink-molly-fa5ded7c8be9-20220424-205944.mp4 10.0_625_cheeky-cornflower-setter-f153ac423f61-20220421-185749.mp4\r\n10.0_2576_shabby-pink-molly-fa5ded7c8be9-20220424-210449.mp4 10.0_626_cheeky-cornflower-setter-f153ac423f61-20220421-190308.mp4\r\n10.0_2577_shabby-pink-molly-fa5ded7c8be9-20220424-210951.mp4 10.0_627_cheeky-cornflower-setter-f153ac423f61-20220421-190815.mp4\r\n10.0_2578_shabby-pink-molly-fa5ded7c8be9-20220424-211453.mp4 10.0_628_cheeky-cornflower-setter-f153ac423f61-20220421-214925.mp4\r\n10.0_2579_shabby-pink-molly-fa5ded7c8be9-20220424-211955.mp4 10.0_629_cheeky-cornflower-setter-f153ac423f61-20220421-220109.mp4\r\n10.0_257_cheeky-cornflower-setter-9cd1ced83221-20220418-131240.mp4 10.0_630_cheeky-cornflower-setter-f153ac423f61-20220422-091709.mp4\r\n10.0_2580_shabby-pink-molly-fc60b94130f2-20220421-084917.mp4 10.0_631_cheeky-cornflower-setter-f153ac423f61-20220422-092819.mp4\r\n10.0_2581_shabby-pink-molly-fc60b94130f2-20220421-085418.mp4 10.0_632_cheeky-cornflower-setter-f153ac423f61-20220422-093648.mp4\r\n10.0_2582_shabby-pink-molly-fd12c9c9a0a5-20220421-092158.mp4 10.0_633_cheeky-cornflower-setter-f153ac423f61-20220422-161254.mp4\r\n10.0_2583_shabby-viridian-beaver-036cc0a39334-20220422-220659.mp4 10.0_634_cheeky-cornflower-setter-f153ac423f61-20220422-161813.mp4\r\n10.0_2584_shabby-viridian-beaver-036cc0a39334-20220422-221201.mp4 10.0_635_cheeky-cornflower-setter-f153ac423f61-20220422-162319.mp4\r\n10.0_2585_shabby-viridian-beaver-036cc0a39334-20220422-221701.mp4 10.0_636_cheeky-cornflower-setter-f153ac423f61-20220422-200619.mp4\r\n10.0_2586_shabby-viridian-beaver-03c7ba5694ef-20220422-185210.mp4 10.0_637_cheeky-cornflower-setter-f153ac423f61-20220422-201938.mp4\r\n10.0_2587_shabby-viridian-beaver-03c7ba5694ef-20220422-185709.mp4 10.0_638_cheeky-cornflower-setter-f153ac423f61-20220423-090803.mp4\r\n10.0_2588_shabby-viridian-beaver-05b1deb6ec65-20220418-214651.mp4 10.0_639_cheeky-cornflower-setter-f153ac423f61-20220423-092731.mp4\r\n10.0_2589_shabby-viridian-beaver-05b1deb6ec65-20220418-215153.mp4 10.0_640_cheeky-cornflower-setter-f153ac423f61-20220423-140148.mp4\r\n10.0_258_cheeky-cornflower-setter-9cd1ced83221-20220418-131814.mp4 10.0_641_cheeky-cornflower-setter-f153ac423f61-20220423-140711.mp4\r\n10.0_2590_shabby-viridian-beaver-099db18ce475-20220421-232028.mp4 10.0_642_cheeky-cornflower-setter-f153ac423f61-20220423-141220.mp4\r\n10.0_2591_shabby-viridian-beaver-099db18ce475-20220421-232552.mp4 10.0_643_cheeky-cornflower-setter-f153ac423f61-20220423-162528.mp4\r\n10.0_2592_shabby-viridian-beaver-099db18ce475-20220421-233207.mp4 10.0_644_cheeky-cornflower-setter-f153ac423f61-20220423-163050.mp4\r\n10.0_2593_shabby-viridian-beaver-099db18ce475-20220421-233709.mp4 10.0_645_cheeky-cornflower-setter-f153ac423f61-20220423-182859.mp4\r\n10.0_2594_shabby-viridian-beaver-099db18ce475-20220421-234208.mp4 10.0_646_cheeky-cornflower-setter-f153ac423f61-20220423-184050.mp4\r\n10.0_2595_shabby-viridian-beaver-0a070fcf4c0c-20220421-235548.mp4 10.0_647_cheeky-cornflower-setter-f153ac423f61-20220423-203401.mp4\r\n10.0_2596_shabby-viridian-beaver-0a070fcf4c0c-20220422-000049.mp4 10.0_648_cheeky-cornflower-setter-f153ac423f61-20220423-204517.mp4\r\n10.0_2597_shabby-viridian-beaver-0a070fcf4c0c-20220422-000549.mp4 10.0_649_cheeky-cornflower-setter-f153ac423f61-20220423-230956.mp4\r\n10.0_2598_shabby-viridian-beaver-0a070fcf4c0c-20220422-001048.mp4 10.0_650_cheeky-cornflower-setter-f153ac423f61-20220423-231514.mp4\r\n10.0_2599_shabby-viridian-beaver-0a070fcf4c0c-20220422-001555.mp4 10.0_651_cheeky-cornflower-setter-f153ac423f61-20220423-232022.mp4\r\n10.0_259_cheeky-cornflower-setter-9cd1ced83221-20220418-132346.mp4 10.0_652_cheeky-cornflower-setter-f153ac423f61-20220423-232530.mp4\r\n10.0_2600_shabby-viridian-beaver-0c5f77442a8d-20220421-134922.mp4 10.0_653_cheeky-cornflower-setter-f15c95480f3d-20220422-202607.mp4\r\n10.0_2601_shabby-viridian-beaver-0c5f77442a8d-20220421-135423.mp4 10.0_654_cheeky-cornflower-setter-f15c95480f3d-20220422-203835.mp4\r\n10.0_2602_shabby-viridian-beaver-0c5f77442a8d-20220421-135925.mp4 10.0_655_cheeky-cornflower-setter-f22b793a1ab1-20220417-155531.mp4\r\n10.0_2603_shabby-viridian-beaver-0c5f77442a8d-20220421-140424.mp4 10.0_656_cheeky-cornflower-setter-f22b793a1ab1-20220417-160039.mp4\r\n10.0_2604_shabby-viridian-beaver-0eae00e92420-20220419-164109.mp4 10.0_657_cheeky-cornflower-setter-f22b793a1ab1-20220417-160547.mp4\r\n10.0_2605_shabby-viridian-beaver-0eae00e92420-20220419-164607.mp4 10.0_658_cheeky-cornflower-setter-f22b793a1ab1-20220417-161053.mp4\r\n10.0_2606_shabby-viridian-beaver-0eae00e92420-20220419-165105.mp4 10.0_659_cheeky-cornflower-setter-f2b3363ac094-20220418-185252.mp4\r\n10.0_2607_shabby-viridian-beaver-0eae00e92420-20220419-165603.mp4 10.0_660_cheeky-cornflower-setter-f2b3363ac094-20220418-185802.mp4\r\n10.0_2608_shabby-viridian-beaver-0eae00e92420-20220419-170100.mp4 10.0_661_cheeky-cornflower-setter-f512cef00969-20220414-142324.mp4\r\n10.0_2609_shabby-viridian-beaver-12ea2b6465c8-20220421-184855.mp4 10.0_662_cheeky-cornflower-setter-f512cef00969-20220414-142832.mp4\r\n10.0_260_cheeky-cornflower-setter-9dafcf4c0add-20220414-145539.mp4 10.0_663_cheeky-cornflower-setter-f512cef00969-20220414-143339.mp4\r\n10.0_2610_shabby-viridian-beaver-12ea2b6465c8-20220421-185356.mp4 10.0_664_cheeky-cornflower-setter-f5d630ba8da9-20220416-180721.mp4\r\n10.0_2611_shabby-viridian-beaver-12ea2b6465c8-20220421-185856.mp4 10.0_665_cheeky-cornflower-setter-f89835e89f33-20220422-111344.mp4\r\n10.0_2612_shabby-viridian-beaver-136b0e439e67-20220421-181549.mp4 10.0_666_cheeky-cornflower-setter-f89835e89f33-20220422-112351.mp4\r\n10.0_2613_shabby-viridian-beaver-136b0e439e67-20220421-182050.mp4 10.0_667_cheeky-cornflower-setter-f89835e89f33-20220422-113259.mp4\r\n10.0_2614_shabby-viridian-beaver-136b0e439e67-20220421-182550.mp4 10.0_668_cheeky-cornflower-setter-f94e696efa8d-20220422-204826.mp4\r\n10.0_2615_shabby-viridian-beaver-13888bb8bc74-20220421-021021.mp4 10.0_669_cheeky-cornflower-setter-f94e696efa8d-20220422-210021.mp4\r\n10.0_2616_shabby-viridian-beaver-156f72f6f1a0-20220416-165030.mp4 10.0_670_cheeky-cornflower-setter-f96720dc9495-20220423-132506.mp4\r\n10.0_2617_shabby-viridian-beaver-156f72f6f1a0-20220416-165529.mp4 10.0_671_cheeky-cornflower-setter-fd5609901096-20220415-181519.mp4\r\n10.0_2618_shabby-viridian-beaver-1640d8de5acc-20220415-174349.mp4 10.0_672_cheeky-cornflower-setter-fd5609901096-20220415-182035.mp4\r\n10.0_2619_shabby-viridian-beaver-17bc4310e13b-20220419-222731.mp4 10.0_673_cheeky-cornflower-setter-fd5609901096-20220415-182547.mp4\r\n10.0_261_cheeky-cornflower-setter-9dafcf4c0add-20220414-150045.mp4 10.0_674_cheeky-cornflower-setter-fd5609901096-20220415-183059.mp4\r\n10.0_2620_shabby-viridian-beaver-17bc4310e13b-20220419-223230.mp4 10.0_675_cheeky-cornflower-setter-fe4d959462d8-20220422-095902.mp4\r\n10.0_2621_shabby-viridian-beaver-17bc4310e13b-20220419-223733.mp4 10.0_676_cheeky-cornflower-setter-feb304f75639-20220422-162849.mp4\r\n10.0_2622_shabby-viridian-beaver-1892d59807be-20220416-181828.mp4 10.0_677_cheeky-cornflower-setter-feb304f75639-20220422-163358.mp4\r\n10.0_2623_shabby-viridian-beaver-1892d59807be-20220416-182326.mp4 10.0_678_cheeky-cornflower-setter-feb304f75639-20220422-163905.mp4\r\n10.0_2624_shabby-viridian-beaver-1892d59807be-20220416-182824.mp4 10.0_679_cheeky-cornflower-setter-ff2387ef8d43-20220415-092355.mp4\r\n10.0_2625_shabby-viridian-beaver-1892d59807be-20220416-183322.mp4 10.0_680_cheeky-cornflower-setter-ff2387ef8d43-20220415-092902.mp4\r\n10.0_2626_shabby-viridian-beaver-1ac2504d6280-20220416-164043.mp4 10.0_681_cheeky-cornflower-setter-ff2387ef8d43-20220415-093408.mp4\r\n10.0_2627_shabby-viridian-beaver-1ac2504d6280-20220416-164543.mp4 10.0_682_cheeky-cornflower-setter-ff75054633c6-20220417-211137.mp4\r\n10.0_2628_shabby-viridian-beaver-1c32e9827770-20220421-020050.mp4 10.0_683_cheeky-cornflower-setter-ff75054633c6-20220417-211647.mp4\r\n10.0_2629_shabby-viridian-beaver-1e037095b252-20220416-175747.mp4 10.0_684_cheeky-cornflower-setter-ffe5b68b1dc1-20220421-190909.mp4\r\n10.0_262_cheeky-cornflower-setter-9dafcf4c0add-20220414-150551.mp4 10.0_685_cheeky-cornflower-setter-ffe5b68b1dc1-20220421-191425.mp4\r\n10.0_2630_shabby-viridian-beaver-1e037095b252-20220416-180255.mp4 10.0_686_cheeky-cornflower-setter-ffe5b68b1dc1-20220421-191929.mp4\r\n10.0_2631_shabby-viridian-beaver-1e037095b252-20220416-180755.mp4 10.0_687_gimpy-jade-panda-02f73c968eb5-20220416-084709.mp4\r\n10.0_2632_shabby-viridian-beaver-2225a96461d1-20220421-145723.mp4 10.0_688_gimpy-jade-panda-02f73c968eb5-20220416-085229.mp4\r\n10.0_2633_shabby-viridian-beaver-2225a96461d1-20220421-150221.mp4 10.0_689_gimpy-jade-panda-039ed8302d6f-20220419-223112.mp4\r\n10.0_2634_shabby-viridian-beaver-2225a96461d1-20220421-150719.mp4 10.0_690_gimpy-jade-panda-039ed8302d6f-20220419-223624.mp4\r\n10.0_2635_shabby-viridian-beaver-2225a96461d1-20220421-151217.mp4 10.0_691_gimpy-jade-panda-039ed8302d6f-20220419-224122.mp4\r\n10.0_2636_shabby-viridian-beaver-2225a96461d1-20220421-151715.mp4 10.0_692_gimpy-jade-panda-039ed8302d6f-20220419-224619.mp4\r\n10.0_2637_shabby-viridian-beaver-2548b93151c0-20220419-211309.mp4 10.0_693_gimpy-jade-panda-03da51409f17-20220417-181112.mp4\r\n10.0_2638_shabby-viridian-beaver-2548b93151c0-20220419-211807.mp4 10.0_694_gimpy-jade-panda-04367d28c5e3-20220416-165946.mp4\r\n10.0_2639_shabby-viridian-beaver-2548b93151c0-20220419-212306.mp4 10.0_695_gimpy-jade-panda-04367d28c5e3-20220416-170526.mp4\r\n10.0_263_cheeky-cornflower-setter-9e737287fa37-20220422-135431.mp4 10.0_696_gimpy-jade-panda-048fa4f471d5-20220423-153249.mp4\r\n10.0_2640_shabby-viridian-beaver-2548b93151c0-20220419-212804.mp4 10.0_697_gimpy-jade-panda-0b2e206cb266-20220423-184621.mp4\r\n10.0_2641_shabby-viridian-beaver-2548b93151c0-20220419-213302.mp4 10.0_698_gimpy-jade-panda-0b2e206cb266-20220423-185616.mp4\r\n10.0_2642_shabby-viridian-beaver-2783098a4adf-20220416-154138.mp4 10.0_699_gimpy-jade-panda-0cc6de39917b-20220417-110722.mp4\r\n10.0_2643_shabby-viridian-beaver-2783098a4adf-20220416-154636.mp4 10.0_700_gimpy-jade-panda-0cc6de39917b-20220417-111310.mp4\r\n10.0_2644_shabby-viridian-beaver-2783098a4adf-20220416-155134.mp4 10.0_701_gimpy-jade-panda-0cc6de39917b-20220417-111810.mp4\r\n10.0_2645_shabby-viridian-beaver-2783098a4adf-20220416-155632.mp4 10.0_702_gimpy-jade-panda-0cc6de39917b-20220417-112307.mp4\r\n10.0_2646_shabby-viridian-beaver-2786eaf35935-20220417-222010.mp4 10.0_703_gimpy-jade-panda-0cc6de39917b-20220417-112811.mp4\r\n10.0_2647_shabby-viridian-beaver-2786eaf35935-20220417-222508.mp4 10.0_704_gimpy-jade-panda-0d5323b592a9-20220421-215234.mp4\r\n10.0_2648_shabby-viridian-beaver-2786eaf35935-20220417-223006.mp4 10.0_705_gimpy-jade-panda-0d5323b592a9-20220421-215733.mp4\r\n10.0_2649_shabby-viridian-beaver-2786eaf35935-20220417-223504.mp4 10.0_706_gimpy-jade-panda-0de3b8e67449-20220415-155931.mp4\r\n10.0_264_cheeky-cornflower-setter-9e737287fa37-20220422-140514.mp4 10.0_707_gimpy-jade-panda-0de3b8e67449-20220415-160429.mp4\r\n10.0_2650_shabby-viridian-beaver-278d2862e73e-20220422-225640.mp4 10.0_708_gimpy-jade-panda-0de3b8e67449-20220415-160952.mp4\r\n10.0_2651_shabby-viridian-beaver-278d2862e73e-20220422-230138.mp4 10.0_709_gimpy-jade-panda-0de3b8e67449-20220415-161450.mp4\r\n10.0_2652_shabby-viridian-beaver-278d2862e73e-20220422-230637.mp4 10.0_710_gimpy-jade-panda-0de3b8e67449-20220415-161959.mp4\r\n10.0_2653_shabby-viridian-beaver-278d2862e73e-20220422-231135.mp4 10.0_711_gimpy-jade-panda-0de3b8e67449-20220415-162501.mp4\r\n10.0_2654_shabby-viridian-beaver-278d2862e73e-20220422-231633.mp4 10.0_712_gimpy-jade-panda-0de3b8e67449-20220415-162959.mp4\r\n10.0_2655_shabby-viridian-beaver-28b01cd16756-20220424-020846.mp4 10.0_713_gimpy-jade-panda-0de3b8e67449-20220415-163459.mp4\r\n10.0_2656_shabby-viridian-beaver-2a2c02f1709a-20220417-173749.mp4 10.0_714_gimpy-jade-panda-1005523505ba-20220415-080522.mp4\r\n10.0_2657_shabby-viridian-beaver-2a2c02f1709a-20220417-174247.mp4 10.0_715_gimpy-jade-panda-1005523505ba-20220415-081020.mp4\r\n10.0_2658_shabby-viridian-beaver-2a2c02f1709a-20220417-174746.mp4 10.0_716_gimpy-jade-panda-105c95b372b8-20220415-101230.mp4\r\n10.0_2659_shabby-viridian-beaver-2a2c02f1709a-20220417-175244.mp4 10.0_717_gimpy-jade-panda-105c95b372b8-20220415-101728.mp4\r\n10.0_265_cheeky-cornflower-setter-a0b3f4373131-20220414-183608.mp4 10.0_718_gimpy-jade-panda-105c95b372b8-20220415-102226.mp4\r\n10.0_2660_shabby-viridian-beaver-2a2c02f1709a-20220417-175742.mp4 10.0_719_gimpy-jade-panda-105c95b372b8-20220415-102739.mp4\r\n10.0_2661_shabby-viridian-beaver-2ea65a7f619b-20220414-230739.mp4 10.0_720_gimpy-jade-panda-1174fd3a98a7-20220417-054542.mp4\r\n10.0_2662_shabby-viridian-beaver-2ea65a7f619b-20220414-231240.mp4 10.0_721_gimpy-jade-panda-1190ce9a6d5a-20220415-120903.mp4\r\n10.0_2663_shabby-viridian-beaver-2ea65a7f619b-20220414-231739.mp4 10.0_722_gimpy-jade-panda-14d2c87c6691-20220423-064342.mp4\r\n10.0_2664_shabby-viridian-beaver-2ea65a7f619b-20220414-232237.mp4 10.0_723_gimpy-jade-panda-15c3b21eb3fb-20220416-093725.mp4\r\n10.0_2665_shabby-viridian-beaver-2fa3730da531-20220416-164321.mp4 10.0_724_gimpy-jade-panda-15c3b21eb3fb-20220416-094354.mp4\r\n10.0_2666_shabby-viridian-beaver-2fa3730da531-20220416-164819.mp4 10.0_725_gimpy-jade-panda-1648a33b9786-20220414-105451.mp4\r\n10.0_2667_shabby-viridian-beaver-2fb987a77305-20220420-164614.mp4 10.0_726_gimpy-jade-panda-1648a33b9786-20220414-105950.mp4\r\n10.0_2668_shabby-viridian-beaver-2fb987a77305-20220420-165134.mp4 10.0_727_gimpy-jade-panda-16abab15c31e-20220414-085533.mp4\r\n10.0_2669_shabby-viridian-beaver-2febec83024b-20220422-231418.mp4 10.0_728_gimpy-jade-panda-16abab15c31e-20220414-090154.mp4\r\n10.0_266_cheeky-cornflower-setter-a0b3f4373131-20220414-184116.mp4 10.0_729_gimpy-jade-panda-18b4827b22c5-20220416-233340.mp4\r\n10.0_2670_shabby-viridian-beaver-2febec83024b-20220422-231918.mp4 10.0_730_gimpy-jade-panda-18b4827b22c5-20220416-233845.mp4\r\n",,terminal_output +338,868698,"TERMINAL",0,0,"10.0_2671_shabby-viridian-beaver-2febec83024b-20220422-232422.mp4 10.0_731_gimpy-jade-panda-19b1044b6c4f-20220417-071354.mp4\r\n10.0_2672_shabby-viridian-beaver-2febec83024b-20220422-232920.mp4 10.0_732_gimpy-jade-panda-1af5e0d7f847-20220423-185655.mp4\r\n10.0_2673_shabby-viridian-beaver-30781ff50662-20220421-213316.mp4 10.0_733_gimpy-jade-panda-1b9aafe05bfb-20220417-090703.mp4\r\n10.0_2674_shabby-viridian-beaver-30781ff50662-20220421-213814.mp4 10.0_734_gimpy-jade-panda-1b9aafe05bfb-20220417-091437.mp4\r\n10.0_2675_shabby-viridian-beaver-30781ff50662-20220421-214312.mp4 10.0_735_gimpy-jade-panda-1dd4076be456-20220420-164128.mp4\r\n10.0_2676_shabby-viridian-beaver-30781ff50662-20220421-214811.mp4 10.0_736_gimpy-jade-panda-1fcd22d44061-20220414-005530.mp4\r\n10.0_2677_shabby-viridian-beaver-30781ff50662-20220421-215308.mp4 10.0_737_gimpy-jade-panda-22be9074ab94-20220413-203808.mp4\r\n10.0_2678_shabby-viridian-beaver-30e0571a1931-20220415-162537.mp4 10.0_738_gimpy-jade-panda-22be9074ab94-20220413-204317.mp4\r\n10.0_2679_shabby-viridian-beaver-30e0571a1931-20220415-163035.mp4 10.0_739_gimpy-jade-panda-22be9074ab94-20220413-204823.mp4\r\n10.0_267_cheeky-cornflower-setter-a0b3f4373131-20220414-184624.mp4 10.0_740_gimpy-jade-panda-2316005c9223-20220417-090218.mp4\r\n10.0_2680_shabby-viridian-beaver-30e0571a1931-20220415-163533.mp4 10.0_741_gimpy-jade-panda-2450ca19247e-20220420-164542.mp4\r\n10.0_2681_shabby-viridian-beaver-30e0571a1931-20220415-164031.mp4 10.0_742_gimpy-jade-panda-2450ca19247e-20220420-165141.mp4\r\n10.0_2682_shabby-viridian-beaver-30e0571a1931-20220415-164529.mp4 10.0_743_gimpy-jade-panda-28a4593bd88a-20220413-211416.mp4\r\n10.0_2683_shabby-viridian-beaver-313c03b4babb-20220418-224756.mp4 10.0_744_gimpy-jade-panda-28a4593bd88a-20220413-211914.mp4\r\n10.0_2684_shabby-viridian-beaver-313c03b4babb-20220418-225256.mp4 10.0_745_gimpy-jade-panda-292b5f14f096-20220423-102611.mp4\r\n10.0_2685_shabby-viridian-beaver-317558c84e5f-20220416-222531.mp4 10.0_746_gimpy-jade-panda-29ed977ed297-20220414-013421.mp4\r\n10.0_2686_shabby-viridian-beaver-317558c84e5f-20220416-223029.mp4 10.0_747_gimpy-jade-panda-29ed977ed297-20220414-013954.mp4\r\n10.0_2687_shabby-viridian-beaver-317558c84e5f-20220416-223527.mp4 10.0_748_gimpy-jade-panda-29f25484c76d-20220423-152157.mp4\r\n10.0_2688_shabby-viridian-beaver-317558c84e5f-20220416-224026.mp4 10.0_749_gimpy-jade-panda-29f25484c76d-20220423-152655.mp4\r\n10.0_2689_shabby-viridian-beaver-3251aec8582f-20220417-155334.mp4 10.0_750_gimpy-jade-panda-2a72b304a067-20220419-194704.mp4\r\n10.0_268_cheeky-cornflower-setter-a19edab26569-20220419-100931.mp4 10.0_751_gimpy-jade-panda-2b32b41ca7e0-20220416-231423.mp4\r\n10.0_2690_shabby-viridian-beaver-3251aec8582f-20220417-155833.mp4 10.0_752_gimpy-jade-panda-2b32b41ca7e0-20220416-231925.mp4\r\n10.0_2691_shabby-viridian-beaver-3251aec8582f-20220417-160333.mp4 10.0_753_gimpy-jade-panda-2b32b41ca7e0-20220416-232423.mp4\r\n10.0_2692_shabby-viridian-beaver-32e96bff3884-20220422-224028.mp4 10.0_754_gimpy-jade-panda-2b32b41ca7e0-20220416-232931.mp4\r\n10.0_2693_shabby-viridian-beaver-33129604f522-20220422-165926.mp4 10.0_755_gimpy-jade-panda-2b9ae08e0a63-20220417-072925.mp4\r\n10.0_2694_shabby-viridian-beaver-33129604f522-20220422-170424.mp4 10.0_756_gimpy-jade-panda-2c7ecd3b0546-20220415-022320.mp4\r\n10.0_2695_shabby-viridian-beaver-33129604f522-20220422-170923.mp4 10.0_757_gimpy-jade-panda-2c7ecd3b0546-20220415-022818.mp4\r\n10.0_2696_shabby-viridian-beaver-33129604f522-20220422-171421.mp4 10.0_758_gimpy-jade-panda-2c7ecd3b0546-20220415-023334.mp4\r\n10.0_2697_shabby-viridian-beaver-33129604f522-20220422-171919.mp4 10.0_759_gimpy-jade-panda-2df8ae708ce5-20220421-221815.mp4\r\n10.0_2698_shabby-viridian-beaver-33898e1394b9-20220419-143250.mp4 10.0_760_gimpy-jade-panda-2df8ae708ce5-20220421-222337.mp4\r\n10.0_2699_shabby-viridian-beaver-33898e1394b9-20220419-143750.mp4 10.0_761_gimpy-jade-panda-2f151ca9898d-20220417-150801.mp4\r\n10.0_269_cheeky-cornflower-setter-a19edab26569-20220419-101441.mp4 10.0_762_gimpy-jade-panda-2f151ca9898d-20220417-151304.mp4\r\n10.0_2700_shabby-viridian-beaver-33898e1394b9-20220419-144248.mp4 10.0_763_gimpy-jade-panda-2f151ca9898d-20220417-151845.mp4\r\n10.0_2701_shabby-viridian-beaver-33898e1394b9-20220419-144747.mp4 10.0_764_gimpy-jade-panda-2f92ef577db6-20220416-235629.mp4\r\n10.0_2702_shabby-viridian-beaver-33898e1394b9-20220419-145402.mp4 10.0_765_gimpy-jade-panda-34c92bb13796-20220415-095624.mp4\r\n10.0_2703_shabby-viridian-beaver-33cef7a39444-20220419-160613.mp4 10.0_766_gimpy-jade-panda-34c92bb13796-20220415-100134.mp4\r\n10.0_2704_shabby-viridian-beaver-33cef7a39444-20220419-161112.mp4 10.0_767_gimpy-jade-panda-34c92bb13796-20220415-100631.mp4\r\n10.0_2705_shabby-viridian-beaver-33cef7a39444-20220419-161612.mp4 10.0_768_gimpy-jade-panda-34c92bb13796-20220415-101133.mp4\r\n10.0_2706_shabby-viridian-beaver-33cef7a39444-20220419-162131.mp4 10.0_769_gimpy-jade-panda-354714d1afa5-20220423-110407.mp4\r\n10.0_2707_shabby-viridian-beaver-34f840a24873-20220421-190126.mp4 10.0_770_gimpy-jade-panda-354714d1afa5-20220423-111039.mp4\r\n10.0_2708_shabby-viridian-beaver-34f840a24873-20220421-190628.mp4 10.0_771_gimpy-jade-panda-36fe7903bcbd-20220416-165323.mp4\r\n10.0_2709_shabby-viridian-beaver-35a657fd6712-20220417-151847.mp4 10.0_772_gimpy-jade-panda-36fe7903bcbd-20220416-165822.mp4\r\n10.0_270_cheeky-cornflower-setter-a19edab26569-20220419-101952.mp4 10.0_773_gimpy-jade-panda-38c2205ad20e-20220415-082808.mp4\r\n10.0_2710_shabby-viridian-beaver-35a657fd6712-20220417-152346.mp4 10.0_774_gimpy-jade-panda-38c2205ad20e-20220415-083311.mp4\r\n10.0_2711_shabby-viridian-beaver-35a657fd6712-20220417-152926.mp4 10.0_775_gimpy-jade-panda-38c2205ad20e-20220415-083851.mp4\r\n10.0_2712_shabby-viridian-beaver-365069637cff-20220421-191441.mp4 10.0_776_gimpy-jade-panda-396d8ca20377-20220414-111641.mp4\r\n10.0_2713_shabby-viridian-beaver-365069637cff-20220421-191939.mp4 10.0_777_gimpy-jade-panda-396d8ca20377-20220414-112206.mp4\r\n10.0_2714_shabby-viridian-beaver-365069637cff-20220421-192437.mp4 10.0_778_gimpy-jade-panda-396d8ca20377-20220414-112748.mp4\r\n10.0_2715_shabby-viridian-beaver-365069637cff-20220421-192936.mp4 10.0_779_gimpy-jade-panda-396d8ca20377-20220414-113246.mp4\r\n10.0_2716_shabby-viridian-beaver-39186be09856-20220421-170058.mp4 10.0_780_gimpy-jade-panda-39f3a86de73d-20220416-184648.mp4\r\n10.0_2717_shabby-viridian-beaver-39186be09856-20220421-170557.mp4 10.0_781_gimpy-jade-panda-39f3a86de73d-20220416-185206.mp4\r\n10.0_2718_shabby-viridian-beaver-39186be09856-20220421-171055.mp4 10.0_782_gimpy-jade-panda-39f3a86de73d-20220416-185704.mp4\r\n10.0_2719_shabby-viridian-beaver-39186be09856-20220421-171553.mp4 10.0_783_gimpy-jade-panda-3c82abcb5b5e-20220416-112907.mp4\r\n10.0_271_cheeky-cornflower-setter-a20b52c9eeda-20220420-171746.mp4 10.0_784_gimpy-jade-panda-3c82abcb5b5e-20220416-113459.mp4\r\n10.0_2720_shabby-viridian-beaver-39186be09856-20220421-172051.mp4 10.0_785_gimpy-jade-panda-3c82abcb5b5e-20220416-113956.mp4\r\n10.0_2721_shabby-viridian-beaver-3d12f8b4a673-20220422-221341.mp4 10.0_786_gimpy-jade-panda-3cc9d5786872-20220416-185843.mp4\r\n10.0_2722_shabby-viridian-beaver-3d12f8b4a673-20220422-221840.mp4 10.0_787_gimpy-jade-panda-3cc9d5786872-20220416-190341.mp4\r\n10.0_2723_shabby-viridian-beaver-3d12f8b4a673-20220422-222338.mp4 10.0_788_gimpy-jade-panda-3d5125d55a08-20220423-071758.mp4\r\n10.0_2724_shabby-viridian-beaver-3d12f8b4a673-20220422-222836.mp4 10.0_789_gimpy-jade-panda-3d5125d55a08-20220423-072256.mp4\r\n10.0_2725_shabby-viridian-beaver-3d12f8b4a673-20220422-223334.mp4 10.0_790_gimpy-jade-panda-3d65e5581c11-20220417-143235.mp4\r\n10.0_2726_shabby-viridian-beaver-3f8524455e0d-20220415-165217.mp4 10.0_791_gimpy-jade-panda-3d65e5581c11-20220417-143819.mp4\r\n10.0_2727_shabby-viridian-beaver-3f9bf469c1a4-20220416-140506.mp4 10.0_792_gimpy-jade-panda-3d65e5581c11-20220417-144330.mp4\r\n10.0_2728_shabby-viridian-beaver-3f9bf469c1a4-20220416-141007.mp4 10.0_793_gimpy-jade-panda-3f668b9b9a16-20220417-181524.mp4\r\n10.0_2729_shabby-viridian-beaver-3f9bf469c1a4-20220416-141506.mp4 10.0_794_gimpy-jade-panda-3f668b9b9a16-20220417-182055.mp4\r\n10.0_272_cheeky-cornflower-setter-a335aa525829-20220414-181115.mp4 10.0_795_gimpy-jade-panda-3f668b9b9a16-20220417-182554.mp4\r\n10.0_2730_shabby-viridian-beaver-3f9bf469c1a4-20220416-142005.mp4 10.0_796_gimpy-jade-panda-3f6abdd58c70-20220423-142107.mp4\r\n10.0_2731_shabby-viridian-beaver-44698d3259fe-20220417-005755.mp4 10.0_797_gimpy-jade-panda-4044d74e35b0-20220423-171227.mp4\r\n10.0_2732_shabby-viridian-beaver-44698d3259fe-20220417-010254.mp4 10.0_798_gimpy-jade-panda-40c973e5020d-20220416-234624.mp4\r\n10.0_2733_shabby-viridian-beaver-44698d3259fe-20220417-010753.mp4 10.0_799_gimpy-jade-panda-40c973e5020d-20220416-235122.mp4\r\n10.0_2734_shabby-viridian-beaver-44698d3259fe-20220417-011251.mp4 10.0_800_gimpy-jade-panda-4176f36b5ef5-20220423-090734.mp4\r\n10.0_2735_shabby-viridian-beaver-44698d3259fe-20220417-011750.mp4 10.0_801_gimpy-jade-panda-4176f36b5ef5-20220423-091233.mp4\r\n10.0_2736_shabby-viridian-beaver-453655248a79-20220417-191752.mp4 10.0_802_gimpy-jade-panda-4176f36b5ef5-20220423-091731.mp4\r\n10.0_2737_shabby-viridian-beaver-453655248a79-20220417-192250.mp4 10.0_803_gimpy-jade-panda-43425d6333e5-20220421-214935.mp4\r\n10.0_2738_shabby-viridian-beaver-453655248a79-20220417-192748.mp4 10.0_804_gimpy-jade-panda-444d1bfbac90-20220423-102958.mp4\r\n10.0_2739_shabby-viridian-beaver-453655248a79-20220417-193246.mp4 10.0_805_gimpy-jade-panda-444d1bfbac90-20220423-103630.mp4\r\n10.0_273_cheeky-cornflower-setter-a335aa525829-20220414-181623.mp4 10.0_806_gimpy-jade-panda-45dec39be8a7-20220423-102039.mp4\r\n10.0_2740_shabby-viridian-beaver-45bd84a48bb5-20220421-174201.mp4 10.0_807_gimpy-jade-panda-45dec39be8a7-20220423-102539.mp4\r\n10.0_2741_shabby-viridian-beaver-45bd84a48bb5-20220421-174701.mp4 10.0_808_gimpy-jade-panda-46119a2e0f7a-20220423-064422.mp4\r\n10.0_2742_shabby-viridian-beaver-45bd84a48bb5-20220421-175159.mp4 10.0_809_gimpy-jade-panda-46b79c48f1ff-20220415-123623.mp4\r\n10.0_2743_shabby-viridian-beaver-45bd84a48bb5-20220421-175657.mp4 10.0_810_gimpy-jade-panda-46b79c48f1ff-20220415-124335.mp4\r\n10.0_2744_shabby-viridian-beaver-45bd84a48bb5-20220421-180155.mp4 10.0_811_gimpy-jade-panda-46b79c48f1ff-20220415-124832.mp4\r\n10.0_2745_shabby-viridian-beaver-46be5b66ce64-20220419-215708.mp4 10.0_812_gimpy-jade-panda-46b79c48f1ff-20220415-125330.mp4\r\n10.0_2746_shabby-viridian-beaver-46be5b66ce64-20220419-220207.mp4 10.0_813_gimpy-jade-panda-4707c99bcc91-20220414-104323.mp4\r\n10.0_2747_shabby-viridian-beaver-46be5b66ce64-20220419-220709.mp4 10.0_814_gimpy-jade-panda-4707c99bcc91-20220414-104821.mp4\r\n10.0_2748_shabby-viridian-beaver-5224882d86b5-20220421-154528.mp4 10.0_815_gimpy-jade-panda-48711222cdbe-20220415-075459.mp4\r\n10.0_2749_shabby-viridian-beaver-5224882d86b5-20220421-155028.mp4 10.0_816_gimpy-jade-panda-48eadb8bd054-20220413-205117.mp4\r\n10.0_274_cheeky-cornflower-setter-a335aa525829-20220414-182130.mp4 10.0_817_gimpy-jade-panda-48eadb8bd054-20220413-205615.mp4\r\n10.0_2750_shabby-viridian-beaver-56010f17b6b0-20220421-215515.mp4 10.0_818_gimpy-jade-panda-48eadb8bd054-20220413-210137.mp4\r\n10.0_2751_shabby-viridian-beaver-56010f17b6b0-20220421-220024.mp4 10.0_819_gimpy-jade-panda-48eadb8bd054-20220413-210635.mp4\r\n10.0_2752_shabby-viridian-beaver-56010f17b6b0-20220421-220525.mp4 10.0_820_gimpy-jade-panda-49d984b83554-20220423-064312.mp4\r\n10.0_2753_shabby-viridian-beaver-56c4987b3019-20220422-163811.mp4 10.0_821_gimpy-jade-panda-4bb35f526014-20220417-160347.mp4\r\n10.0_2754_shabby-viridian-beaver-56c4987b3019-20220422-164310.mp4 10.0_822_gimpy-jade-panda-4fc2d2a55e63-20220415-075835.mp4\r\n10.0_2755_shabby-viridian-beaver-56c4987b3019-20220422-164808.mp4 10.0_823_gimpy-jade-panda-4fe6092c9ba6-20220414-005124.mp4\r\n10.0_2756_shabby-viridian-beaver-56c4987b3019-20220422-165306.mp4 10.0_824_gimpy-jade-panda-5009c7e054ad-20220423-150419.mp4\r\n10.0_2757_shabby-viridian-beaver-56c4987b3019-20220422-165804.mp4 10.0_825_gimpy-jade-panda-5009c7e054ad-20220423-151132.mp4\r\n10.0_2758_shabby-viridian-beaver-5849c5ce0da0-20220421-223049.mp4 10.0_826_gimpy-jade-panda-5009c7e054ad-20220423-151634.mp4\r\n10.0_2759_shabby-viridian-beaver-5849c5ce0da0-20220421-223548.mp4 10.0_827_gimpy-jade-panda-50ad5de6d9e3-20220417-073734.mp4\r\n10.0_275_cheeky-cornflower-setter-a335aa525829-20220414-182637.mp4 10.0_828_gimpy-jade-panda-517f671e7d78-20220423-122106.mp4\r\n10.0_2760_shabby-viridian-beaver-5849c5ce0da0-20220421-224049.mp4 10.0_829_gimpy-jade-panda-517f671e7d78-20220423-122644.mp4\r\n10.0_2761_shabby-viridian-beaver-58819cbf914b-20220420-193028.mp4 10.0_830_gimpy-jade-panda-52c03aa94abe-20220419-222712.mp4\r\n10.0_2762_shabby-viridian-beaver-58819cbf914b-20220420-193527.mp4 10.0_831_gimpy-jade-panda-53992730c99f-20220423-153745.mp4\r\n10.0_2763_shabby-viridian-beaver-58819cbf914b-20220420-194130.mp4 10.0_832_gimpy-jade-panda-53b92c6e9dff-20220423-111241.mp4\r\n10.0_2764_shabby-viridian-beaver-5a514507e621-20220423-171326.mp4 10.0_833_gimpy-jade-panda-53b92c6e9dff-20220423-111739.mp4\r\n10.0_2765_shabby-viridian-beaver-5a514507e621-20220423-171825.mp4 10.0_834_gimpy-jade-panda-53b92c6e9dff-20220423-112238.mp4\r\n10.0_2766_shabby-viridian-beaver-5a514507e621-20220423-172325.mp4 10.0_835_gimpy-jade-panda-53b92c6e9dff-20220423-112855.mp4\r\n10.0_2767_shabby-viridian-beaver-5a514507e621-20220423-172824.mp4 10.0_836_gimpy-jade-panda-53b92c6e9dff-20220423-113354.mp4\r\n10.0_2768_shabby-viridian-beaver-5cc51fc95496-20220419-170401.mp4 10.0_837_gimpy-jade-panda-551cc4be800d-20220414-110042.mp4\r\n10.0_2769_shabby-viridian-beaver-5cc51fc95496-20220419-170859.mp4 10.0_838_gimpy-jade-panda-551cc4be800d-20220414-110648.mp4\r\n10.0_276_cheeky-cornflower-setter-a3ab4badecca-20220422-105014.mp4 10.0_839_gimpy-jade-panda-551cc4be800d-20220414-111145.mp4\r\n10.0_2770_shabby-viridian-beaver-5cc51fc95496-20220419-171357.mp4 10.0_840_gimpy-jade-panda-583d001053ae-20220414-074601.mp4\r\n10.0_2771_shabby-viridian-beaver-5cc51fc95496-20220419-171854.mp4 10.0_841_gimpy-jade-panda-583d001053ae-20220414-075059.mp4\r\n10.0_2772_shabby-viridian-beaver-5cc51fc95496-20220419-172352.mp4 10.0_842_gimpy-jade-panda-583d001053ae-20220414-075609.mp4\r\n10.0_2773_shabby-viridian-beaver-5cc74851c46e-20220420-184535.mp4 10.0_843_gimpy-jade-panda-583d001053ae-20220414-080117.mp4\r\n10.0_2774_shabby-viridian-beaver-5cc74851c46e-20220420-185034.mp4 10.0_844_gimpy-jade-panda-583d001053ae-20220414-080615.mp4\r\n10.0_2775_shabby-viridian-beaver-5cc74851c46e-20220420-185534.mp4 10.0_845_gimpy-jade-panda-5925722495d9-20220417-053701.mp4\r\n10.0_2776_shabby-viridian-beaver-5d31648d39a2-20220416-191243.mp4 10.0_846_gimpy-jade-panda-5a280944e2e0-20220415-092406.mp4\r\n10.0_2777_shabby-viridian-beaver-5d31648d39a2-20220416-191741.mp4 10.0_847_gimpy-jade-panda-5a280944e2e0-20220415-092904.mp4\r\n10.0_2778_shabby-viridian-beaver-5d31648d39a2-20220416-192240.mp4 10.0_848_gimpy-jade-panda-5a9e0e40e576-20220417-160603.mp4\r\n10.0_2779_shabby-viridian-beaver-5d31648d39a2-20220416-192738.mp4 10.0_849_gimpy-jade-panda-5a9e0e40e576-20220417-161416.mp4\r\n10.0_277_cheeky-cornflower-setter-a3ab4badecca-20220422-105948.mp4 10.0_850_gimpy-jade-panda-5cdb88ec3eb6-20220422-200611.mp4\r\n10.0_2780_shabby-viridian-beaver-5d31648d39a2-20220416-193236.mp4 10.0_851_gimpy-jade-panda-5cdb88ec3eb6-20220422-201117.mp4\r\n10.0_2781_shabby-viridian-beaver-5f4a91c6e5a3-20220419-172450.mp4 10.0_852_gimpy-jade-panda-60e44861ea5f-20220419-193805.mp4\r\n10.0_2782_shabby-viridian-beaver-5f4a91c6e5a3-20220419-172948.mp4 10.0_853_gimpy-jade-panda-60e44861ea5f-20220419-194327.mp4\r\n10.0_2783_shabby-viridian-beaver-5f4a91c6e5a3-20220419-173446.mp4 10.0_854_gimpy-jade-panda-61c081941fef-20220413-192256.mp4\r\n10.0_2784_shabby-viridian-beaver-5f4a91c6e5a3-20220419-173944.mp4 10.0_855_gimpy-jade-panda-624b4d339f5a-20220423-065150.mp4\r\n10.0_2785_shabby-viridian-beaver-5f4a91c6e5a3-20220419-174442.mp4 10.0_856_gimpy-jade-panda-624b4d339f5a-20220423-065746.mp4\r\n10.0_2786_shabby-viridian-beaver-5fce3fb68f5d-20220414-223017.mp4 10.0_857_gimpy-jade-panda-634e23eb0ca2-20220415-112645.mp4\r\n10.0_2787_shabby-viridian-beaver-5fce3fb68f5d-20220414-223516.mp4 10.0_858_gimpy-jade-panda-64400ee6eaa2-20220420-164224.mp4\r\n10.0_2788_shabby-viridian-beaver-5fce3fb68f5d-20220414-224015.mp4 10.0_859_gimpy-jade-panda-6765a47ba046-20220417-092050.mp4\r\n10.0_2789_shabby-viridian-beaver-5fce3fb68f5d-20220414-224520.mp4 10.0_860_gimpy-jade-panda-6b9fa1864620-20220417-173702.mp4\r\n10.0_278_cheeky-cornflower-setter-a3ab4badecca-20220422-110744.mp4 10.0_861_gimpy-jade-panda-6b9fa1864620-20220417-174236.mp4\r\n10.0_2790_shabby-viridian-beaver-5fce3fb68f5d-20220414-225040.mp4 10.0_862_gimpy-jade-panda-6fb175670cdc-20220420-162454.mp4\r\n10.0_2791_shabby-viridian-beaver-5fce3fb68f5d-20220414-225539.mp4 10.0_863_gimpy-jade-panda-6fb175670cdc-20220420-162953.mp4\r\n10.0_2792_shabby-viridian-beaver-5fce3fb68f5d-20220414-230039.mp4 10.0_864_gimpy-jade-panda-7025fb9451ee-20220423-064408.mp4\r\n10.0_2793_shabby-viridian-beaver-5fce3fb68f5d-20220414-230538.mp4 10.0_865_gimpy-jade-panda-709f153dd52d-20220423-142601.mp4\r\n10.0_2794_shabby-viridian-beaver-600a38731038-20220416-181221.mp4 10.0_866_gimpy-jade-panda-73a2f6d4ede0-20220421-214549.mp4\r\n10.0_2795_shabby-viridian-beaver-600a38731038-20220416-181720.mp4 10.0_867_gimpy-jade-panda-7769c38aa432-20220416-184236.mp4\r\n10.0_2796_shabby-viridian-beaver-600a38731038-20220416-182219.mp4 10.0_868_gimpy-jade-panda-7af0243f5bc3-20220415-122510.mp4\r\n10.0_2797_shabby-viridian-beaver-65cce62e9db2-20220421-162659.mp4 10.0_869_gimpy-jade-panda-7af0aefdafb4-20220416-190704.mp4\r\n10.0_2798_shabby-viridian-beaver-65cce62e9db2-20220421-163157.mp4 10.0_870_gimpy-jade-panda-7af0aefdafb4-20220416-191202.mp4\r\n10.0_2799_shabby-viridian-beaver-65cce62e9db2-20220421-163656.mp4 10.0_871_gimpy-jade-panda-7af0aefdafb4-20220416-191707.mp4\r\n10.0_279_cheeky-cornflower-setter-a49ea31e5516-20220422-123446.mp4 10.0_872_gimpy-jade-panda-7bfea912cb75-20220414-012703.mp4\r\n10.0_2800_shabby-viridian-beaver-65cce62e9db2-20220421-164154.mp4 10.0_873_gimpy-jade-panda-7bfea912cb75-20220414-013209.mp4\r\n10.0_2801_shabby-viridian-beaver-66da9afd47dd-20220419-161001.mp4 10.0_874_gimpy-jade-panda-8332d832c099-20220413-211200.mp4\r\n10.0_2802_shabby-viridian-beaver-66da9afd47dd-20220419-161459.mp4 10.0_875_gimpy-jade-panda-83db28acd905-20220415-080032.mp4\r\n10.0_2803_shabby-viridian-beaver-66da9afd47dd-20220419-161956.mp4 10.0_876_gimpy-jade-panda-8407d37505b6-20220419-221503.mp4\r\n10.0_2804_shabby-viridian-beaver-66da9afd47dd-20220419-162454.mp4 10.0_877_gimpy-jade-panda-874b1340cd87-20220420-165547.mp4\r\n10.0_2805_shabby-viridian-beaver-66da9afd47dd-20220419-162952.mp4 10.0_878_gimpy-jade-panda-874b1340cd87-20220420-170048.mp4\r\n10.0_2806_shabby-viridian-beaver-67a3970f7a21-20220420-185947.mp4 10.0_879_gimpy-jade-panda-874b1340cd87-20220420-170551.mp4\r\n10.0_2807_shabby-viridian-beaver-67a3970f7a21-20220420-190446.mp4 10.0_880_gimpy-jade-panda-88f1250b727f-20220421-222524.mp4\r\n10.0_2808_shabby-viridian-beaver-67a3970f7a21-20220420-191001.mp4 10.0_881_gimpy-jade-panda-8ace72ac5cba-20220415-074412.mp4\r\n10.0_2809_shabby-viridian-beaver-69981936957f-20220420-165513.mp4 10.0_882_gimpy-jade-panda-8ace72ac5cba-20220415-075006.mp4\r\n10.0_280_cheeky-cornflower-setter-a49ea31e5516-20220422-124426.mp4 10.0_883_gimpy-jade-panda-982a1b292859-20220416-212916.mp4\r\n10.0_2810_shabby-viridian-beaver-69981936957f-20220420-170013.mp4 10.0_884_gimpy-jade-panda-982a1b292859-20220416-213540.mp4\r\n10.0_2811_shabby-viridian-beaver-69981936957f-20220420-170512.mp4 10.0_885_gimpy-jade-panda-982a1b292859-20220416-214038.mp4\r\n10.0_2812_shabby-viridian-beaver-69981936957f-20220420-171011.mp4 10.0_886_gimpy-jade-panda-982a1b292859-20220416-214536.mp4\r\n10.0_2813_shabby-viridian-beaver-69981936957f-20220420-171511.mp4 10.0_887_gimpy-jade-panda-994e1498277f-20220416-111243.mp4\r\n10.0_2814_shabby-viridian-beaver-6a733578ad80-20220422-212356.mp4 10.0_888_gimpy-jade-panda-99eeca393629-20220417-140144.mp4\r\n10.0_2815_shabby-viridian-beaver-6a733578ad80-20220422-212904.mp4 10.0_889_gimpy-jade-panda-99eeca393629-20220417-140807.mp4\r\n10.0_2816_shabby-viridian-beaver-6aabd574896a-20220416-151907.mp4 10.0_890_gimpy-jade-panda-99eeca393629-20220417-141305.mp4\r\n10.0_2817_shabby-viridian-beaver-6aabd574896a-20220416-152406.mp4 10.0_891_gimpy-jade-panda-9a0aee73c714-20220420-171212.mp4\r\n10.0_2818_shabby-viridian-beaver-6aabd574896a-20220416-152904.mp4 10.0_892_gimpy-jade-panda-9a0aee73c714-20220420-171715.mp4\r\n10.0_2819_shabby-viridian-beaver-6aabd574896a-20220416-153402.mp4 10.0_893_gimpy-jade-panda-9a5ea79449fe-20220420-192352.mp4\r\n10.0_281_cheeky-cornflower-setter-a49ea31e5516-20220422-125300.mp4 10.0_894_gimpy-jade-panda-9a5ea79449fe-20220420-192851.mp4\r\n10.0_2820_shabby-viridian-beaver-6aabd574896a-20220416-153900.mp4 10.0_895_gimpy-jade-panda-9ad90fd67bb1-20220417-073453.mp4\r\n10.0_2821_shabby-viridian-beaver-6b05178ea9d0-20220419-182534.mp4 10.0_896_gimpy-jade-panda-9c1d7174e84a-20220423-164654.mp4\r\n10.0_2822_shabby-viridian-beaver-6b05178ea9d0-20220419-183049.mp4 10.0_897_gimpy-jade-panda-9c1d7174e84a-20220423-165208.mp4\r\n10.0_2823_shabby-viridian-beaver-6b05178ea9d0-20220419-183550.mp4 10.0_898_gimpy-jade-panda-9c1d7174e84a-20220423-165803.mp4\r\n10.0_2824_shabby-viridian-beaver-6b05178ea9d0-20220419-184049.mp4 10.0_899_gimpy-jade-panda-9c1d7174e84a-20220423-170340.mp4\r\n10.0_2825_shabby-viridian-beaver-6b05178ea9d0-20220419-184548.mp4 10.0_900_gimpy-jade-panda-9c1d7174e84a-20220423-170850.mp4\r\n10.0_2826_shabby-viridian-beaver-6d0ceadffbfe-20220423-000115.mp4 10.0_901_gimpy-jade-panda-9c1ef0a42554-20220414-072119.mp4\r\n10.0_2827_shabby-viridian-beaver-6d0ceadffbfe-20220423-000614.mp4 10.0_902_gimpy-jade-panda-9c1ef0a42554-20220414-072658.mp4\r\n10.0_2828_shabby-viridian-beaver-6d0ceadffbfe-20220423-001114.mp4 10.0_903_gimpy-jade-panda-9f7716f9ed97-20220421-220310.mp4\r\n10.0_2829_shabby-viridian-beaver-6d0ceadffbfe-20220423-001614.mp4 10.0_904_gimpy-jade-panda-9f7716f9ed97-20220421-220922.mp4\r\n10.0_282_cheeky-cornflower-setter-a63451666f1e-20220418-132827.mp4 10.0_905_gimpy-jade-panda-9f7716f9ed97-20220421-221419.mp4\r\n10.0_2830_shabby-viridian-beaver-6d2a20590c23-20220422-181009.mp4 10.0_906_gimpy-jade-panda-a1bd1367c34b-20220419-221641.mp4\r\n10.0_2831_shabby-viridian-beaver-6d2a20590c23-20220422-181509.mp4 10.0_907_gimpy-jade-panda-a1bd1367c34b-20220419-222313.mp4\r\n10.0_2832_shabby-viridian-beaver-6ed094e5ba41-20220422-234920.mp4 10.0_908_gimpy-jade-panda-a24a1eca0b07-20220423-141648.mp4\r\n10.0_2833_shabby-viridian-beaver-6ed094e5ba41-20220422-235419.mp4 10.0_909_gimpy-jade-panda-a6a2fe256fa2-20220414-080629.mp4\r\n10.0_2834_shabby-viridian-beaver-6ed094e5ba41-20220422-235918.mp4 10.0_910_gimpy-jade-panda-a6a2fe256fa2-20220414-081311.mp4\r\n10.0_2835_shabby-viridian-beaver-6fd9a085e22b-20220417-220952.mp4 10.0_911_gimpy-jade-panda-a7bcad415154-20220416-182435.mp4\r\n10.0_2836_shabby-viridian-beaver-6fd9a085e22b-20220417-221450.mp4 10.0_912_gimpy-jade-panda-a7bcad415154-20220416-183018.mp4\r\n10.0_2837_shabby-viridian-beaver-70748cfc0d0b-20220419-234316.mp4 10.0_913_gimpy-jade-panda-a86b71bd16cf-20220417-103446.mp4\r\n10.0_2838_shabby-viridian-beaver-70748cfc0d0b-20220419-234816.mp4 10.0_914_gimpy-jade-panda-a86b71bd16cf-20220417-103944.mp4\r\n10.0_2839_shabby-viridian-beaver-724faeb8b5b5-20220419-145842.mp4 10.0_915_gimpy-jade-panda-a9b5409dfd7f-20220417-091848.mp4\r\n10.0_283_cheeky-cornflower-setter-a7571f853c8f-20220420-202416.mp4 10.0_916_gimpy-jade-panda-acc12bb04f6e-20220415-091407.mp4\r\n10.0_2840_shabby-viridian-beaver-724faeb8b5b5-20220419-150341.mp4 10.0_917_gimpy-jade-panda-ad42297df017-20220423-124152.mp4\r\n10.0_2841_shabby-viridian-beaver-724faeb8b5b5-20220419-150841.mp4 10.0_918_gimpy-jade-panda-ae29c6226078-20220417-145135.mp4\r\n10.0_2842_shabby-viridian-beaver-72aef1020fc9-20220415-113120.mp4 10.0_919_gimpy-jade-panda-ae29c6226078-20220417-145934.mp4\r\n10.0_2843_shabby-viridian-beaver-72aef1020fc9-20220415-113619.mp4 10.0_920_gimpy-jade-panda-ae8240d9992e-20220417-150457.mp4\r\n10.0_2844_shabby-viridian-beaver-72aef1020fc9-20220415-114119.mp4 10.0_921_gimpy-jade-panda-aeaefe6fc5d0-20220420-163521.mp4\r\n10.0_2845_shabby-viridian-beaver-72aef1020fc9-20220415-114619.mp4 10.0_922_gimpy-jade-panda-aeaefe6fc5d0-20220420-164020.mp4\r\n10.0_2846_shabby-viridian-beaver-78738be124cf-20220417-013836.mp4 10.0_923_gimpy-jade-panda-b1da62559f57-20220417-141730.mp4\r\n10.0_2847_shabby-viridian-beaver-78738be124cf-20220417-014335.mp4 10.0_924_gimpy-jade-panda-b1da62559f57-20220417-142228.mp4\r\n10.0_2848_shabby-viridian-beaver-78738be124cf-20220417-014834.mp4 10.0_925_gimpy-jade-panda-b1da62559f57-20220417-142726.mp4\r\n10.0_2849_shabby-viridian-beaver-794480f587de-20220421-140725.mp4 10.0_926_gimpy-jade-panda-b94b52171160-20220414-011136.mp4\r\n10.0_284_cheeky-cornflower-setter-a7571f853c8f-20220420-202925.mp4 10.0_927_gimpy-jade-panda-b94b52171160-20220414-011637.mp4\r\n10.0_2850_shabby-viridian-beaver-794480f587de-20220421-141225.mp4 10.0_928_gimpy-jade-panda-b94b52171160-20220414-012134.mp4\r\n10.0_2851_shabby-viridian-beaver-794480f587de-20220421-141725.mp4 10.0_929_gimpy-jade-panda-ba4b263cb71d-20220423-064822.mp4\r\n10.0_2852_shabby-viridian-beaver-794480f587de-20220421-142224.mp4 10.0_930_gimpy-jade-panda-bc2468269e7a-20220414-014218.mp4\r\n10.0_2853_shabby-viridian-beaver-794480f587de-20220421-142724.mp4 10.0_931_gimpy-jade-panda-bc51b54e4bd9-20220423-141950.mp4\r\n10.0_2854_shabby-viridian-beaver-7b8110d5fb42-20220416-170015.mp4 10.0_932_gimpy-jade-panda-be858e866099-20220417-073000.mp4\r\n10.0_2855_shabby-viridian-beaver-7c3db9b98148-20220422-215714.mp4 10.0_933_gimpy-jade-panda-c26bdf5694e0-20220423-104211.mp4\r\n10.0_2856_shabby-viridian-beaver-7c3db9b98148-20220422-220213.mp4 10.0_934_gimpy-jade-panda-c26bdf5694e0-20220423-104709.mp4\r\n10.0_2857_shabby-viridian-beaver-8193dee5e77b-20220421-003515.mp4 10.0_935_gimpy-jade-panda-c28e2f3fa90e-20220423-145740.mp4\r\n10.0_2858_shabby-viridian-beaver-8193dee5e77b-20220421-004027.mp4 10.0_936_gimpy-jade-panda-c28e2f3fa90e-20220423-150240.mp4\r\n10.0_2859_shabby-viridian-beaver-8193dee5e77b-20220421-004525.mp4 10.0_937_gimpy-jade-panda-c37fd220ebaa-20220422-201210.mp4\r\n10.0_285_cheeky-cornflower-setter-a7571f853c8f-20220420-203433.mp4 10.0_938_gimpy-jade-panda-c37fd220ebaa-20220422-201714.mp4\r\n10.0_2860_shabby-viridian-beaver-8193dee5e77b-20220421-005025.mp4 10.0_939_gimpy-jade-panda-c37fd220ebaa-20220422-202211.mp4\r\n10.0_2861_shabby-viridian-beaver-84e001edfb5a-20220417-164902.mp4 10.0_940_gimpy-jade-panda-c3f440ba3b68-20220417-104802.mp4\r\n10.0_2862_shabby-viridian-beaver-87267f247bfe-20220421-002011.mp4 10.0_941_gimpy-jade-panda-c3f440ba3b68-20220417-105415.mp4\r\n10.0_2863_shabby-viridian-beaver-87267f247bfe-20220421-002515.mp4 10.0_942_gimpy-jade-panda-c3f440ba3b68-20220417-105913.mp4\r\n10.0_2864_shabby-viridian-beaver-87267f247bfe-20220421-003015.mp4 10.0_943_gimpy-jade-panda-c4416bcf7225-20220417-173012.mp4\r\n10.0_2865_shabby-viridian-beaver-875598743525-20220418-221333.mp4 10.0_944_gimpy-jade-panda-c4416bcf7225-20220417-173542.mp4\r\n10.0_2866_shabby-viridian-beaver-875598743525-20220418-222605.mp4 10.0_945_gimpy-jade-panda-c5b1450c7ddf-20220420-192907.mp4\r\n10.0_2867_shabby-viridian-beaver-87c7646beda6-20220417-175844.mp4 10.0_946_gimpy-jade-panda-c5b1450c7ddf-20220420-193449.mp4\r\n10.0_2868_shabby-viridian-beaver-87c7646beda6-20220417-180343.mp4 10.0_947_gimpy-jade-panda-c5b1450c7ddf-20220420-194000.mp4\r\n10.0_2869_shabby-viridian-beaver-880b1c1bf1d3-20220421-151005.mp4 10.0_948_gimpy-jade-panda-c8f324ffbd87-20220416-111640.mp4\r\n10.0_286_cheeky-cornflower-setter-a7571f853c8f-20220420-203946.mp4 10.0_949_gimpy-jade-panda-ca5670ec86d6-20220413-212127.mp4\r\n10.0_2870_shabby-viridian-beaver-880b1c1bf1d3-20220421-151513.mp4 10.0_950_gimpy-jade-panda-ca5670ec86d6-20220413-212626.mp4\r\n10.0_2871_shabby-viridian-beaver-880b1c1bf1d3-20220421-152013.mp4 10.0_951_gimpy-jade-panda-cc93773b2df7-20220417-170844.mp4\r\n10.0_2872_shabby-viridian-beaver-880b1c1bf1d3-20220421-152517.mp4 10.0_952_gimpy-jade-panda-cc93773b2df7-20220417-171342.mp4\r\n10.0_2873_shabby-viridian-beaver-89912b58f5a5-20220416-165104.mp4 10.0_953_gimpy-jade-panda-cfa10c78a474-20220417-172330.mp4\r\n10.0_2874_shabby-viridian-beaver-89912b58f5a5-20220416-165603.mp4 10.0_954_gimpy-jade-panda-cfa10c78a474-20220417-172828.mp4\r\n10.0_2875_shabby-viridian-beaver-89912b58f5a5-20220416-170605.mp4 10.0_955_gimpy-jade-panda-d00852ea6331-20220415-023723.mp4\r\n10.0_2876_shabby-viridian-beaver-8a224cb88f19-20220416-220320.mp4 10.0_956_gimpy-jade-panda-d00852ea6331-20220415-024221.mp4\r\n10.0_2877_shabby-viridian-beaver-8a224cb88f19-20220416-220819.mp4 10.0_957_gimpy-jade-panda-d00852ea6331-20220415-024719.mp4\r\n10.0_2878_shabby-viridian-beaver-8ccefe134a1f-20220417-165320.mp4 10.0_958_gimpy-jade-panda-d24ca3eac9a7-20220415-121408.mp4\r\n10.0_2879_shabby-viridian-beaver-8ccefe134a1f-20220417-165819.mp4 10.0_959_gimpy-jade-panda-d24ca3eac9a7-20220415-122042.mp4\r\n10.0_287_cheeky-cornflower-setter-a8271ffc905a-20220419-114130.mp4 10.0_960_gimpy-jade-panda-d259f95d63f4-20220417-072842.mp4\r\n10.0_2880_shabby-viridian-beaver-8ccefe134a1f-20220417-170317.mp4 10.0_961_gimpy-jade-panda-d3e1dcd9c2be-20220416-070014.mp4\r\n10.0_2881_shabby-viridian-beaver-8ccefe134a1f-20220417-170815.mp4 10.0_962_gimpy-jade-panda-d3e1dcd9c2be-20220416-070523.mp4\r\n10.0_2882_shabby-viridian-beaver-8ccefe134a1f-20220417-171313.mp4 10.0_963_gimpy-jade-panda-d3e1dcd9c2be-20220416-071043.mp4\r\n10.0_2883_shabby-viridian-beaver-8e148bcbdae4-20220421-221029.mp4 10.0_964_gimpy-jade-panda-d3e1dcd9c2be-20220416-071613.mp4\r\n10.0_2884_shabby-viridian-beaver-8e148bcbdae4-20220421-221529.mp4 10.0_965_gimpy-jade-panda-d3e1dcd9c2be-20220416-072144.mp4\r\n10.0_2885_shabby-viridian-beaver-8e148bcbdae4-20220421-222028.mp4 10.0_966_gimpy-jade-panda-d43db865d5f4-20220423-184539.mp4\r\n10.0_2886_shabby-viridian-beaver-8e148bcbdae4-20220421-222527.mp4 10.0_967_gimpy-jade-panda-d6a25bfbaafa-20220415-032640.mp4\r\n10.0_2887_shabby-viridian-beaver-8e148bcbdae4-20220421-223028.mp4 10.0_968_gimpy-jade-panda-d6a25bfbaafa-20220415-033138.mp4\r\n10.0_2888_shabby-viridian-beaver-8e8e9f3227dd-20220416-162256.mp4 10.0_969_gimpy-jade-panda-d6a25bfbaafa-20220415-033644.mp4\r\n10.0_2889_shabby-viridian-beaver-8e8e9f3227dd-20220416-162755.mp4 10.0_970_gimpy-jade-panda-d6a25bfbaafa-20220415-034142.mp4\r\n10.0_288_cheeky-cornflower-setter-a8fa0b8f8c02-20220421-002126.mp4 10.0_971_gimpy-jade-panda-d6a25bfbaafa-20220415-034733.mp4\r\n10.0_2890_shabby-viridian-beaver-8e8e9f3227dd-20220416-163253.mp4 10.0_972_gimpy-jade-panda-d6d6ef1d9ac2-20220414-073740.mp4\r\n10.0_2891_shabby-viridian-beaver-8e8e9f3227dd-20220416-163751.mp4 10.0_973_gimpy-jade-panda-d6d6ef1d9ac2-20220414-074253.mp4\r\n10.0_2892_shabby-viridian-beaver-8e8e9f3227dd-20220416-164249.mp4 10.0_974_gimpy-jade-panda-d78027a39214-20220415-113449.mp4\r\n10.0_2893_shabby-viridian-beaver-8f4f4f030ab3-20220417-225848.mp4 10.0_975_gimpy-jade-panda-d78027a39214-20220415-114132.mp4\r\n10.0_2894_shabby-viridian-beaver-8f4f4f030ab3-20220417-230847.mp4 10.0_976_gimpy-jade-panda-d78027a39214-20220415-114646.mp4\r\n10.0_2895_shabby-viridian-beaver-90117de50fa9-20220417-153308.mp4 10.0_977_gimpy-jade-panda-d78027a39214-20220415-115143.mp4\r\n10.0_2896_shabby-viridian-beaver-90117de50fa9-20220417-153809.mp4 10.0_978_gimpy-jade-panda-d7c9e6fae62c-20220417-053716.mp4\r\n10.0_2897_shabby-viridian-beaver-90117de50fa9-20220417-154309.mp4 10.0_979_gimpy-jade-panda-d7c9e6fae62c-20220417-054249.mp4\r\n10.0_2898_shabby-viridian-beaver-90117de50fa9-20220417-154808.mp4 10.0_980_gimpy-jade-panda-d7e153c09b1e-20220415-024944.mp4\r\n10.0_2899_shabby-viridian-beaver-90117de50fa9-20220417-155307.mp4 10.0_981_gimpy-jade-panda-d7e153c09b1e-20220415-025445.mp4\r\n10.0_289_cheeky-cornflower-setter-a8fa0b8f8c02-20220421-002650.mp4 10.0_982_gimpy-jade-panda-d7e153c09b1e-20220415-025943.mp4\r\n10.0_2900_shabby-viridian-beaver-922bac605e0c-20220419-172533.mp4 10.0_983_gimpy-jade-panda-d8a70472af9d-20220423-063825.mp4\r\n10.0_2901_shabby-viridian-beaver-922bac605e0c-20220419-173032.mp4 10.0_984_gimpy-jade-panda-dbdef3a9b225-20220414-084435.mp4\r\n10.0_2902_shabby-viridian-beaver-92ea1f7fac67-20220419-182607.mp4 10.0_985_gimpy-jade-panda-dbdef3a9b225-20220414-085033.mp4\r\n10.0_2903_shabby-viridian-beaver-92ea1f7fac67-20220419-183106.mp4 10.0_986_gimpy-jade-panda-dc5e2f25e189-20220415-112757.mp4\r\n10.0_2904_shabby-viridian-beaver-92ea1f7fac67-20220419-183604.mp4 10.0_987_gimpy-jade-panda-dc5e2f25e189-20220415-113318.mp4\r\n10.0_2905_shabby-viridian-beaver-92ea1f7fac67-20220419-184102.mp4 10.0_988_gimpy-jade-panda-de9869db1b2f-20220417-173604.mp4\r\n10.0_2906_shabby-viridian-beaver-92ea1f7fac67-20220419-184600.mp4 10.0_989_gimpy-jade-panda-e035a5cce677-20220423-063107.mp4\r\n10.0_2907_shabby-viridian-beaver-95640076154f-20220417-164831.mp4 10.0_990_gimpy-jade-panda-e0b67b54a735-20220415-030629.mp4\r\n10.0_2908_shabby-viridian-beaver-963a26af1dc8-20220421-155719.mp4 10.0_991_gimpy-jade-panda-e0b67b54a735-20220415-031128.mp4\r\n10.0_2909_shabby-viridian-beaver-963a26af1dc8-20220421-160217.mp4 10.0_992_gimpy-jade-panda-e0b67b54a735-20220415-031626.mp4\r\n10.0_290_cheeky-cornflower-setter-a8fa0b8f8c02-20220421-003158.mp4 10.0_993_gimpy-jade-panda-e0b67b54a735-20220415-032153.mp4\r\n10.0_2910_shabby-viridian-beaver-9711530cff81-20220416-182526.mp4 10.0_994_gimpy-jade-panda-e253133fe0ff-20220417-073425.mp4\r\n10.0_2911_shabby-viridian-beaver-9711530cff81-20220416-183025.mp4 10.0_995_gimpy-jade-panda-e3e9009213ad-20220415-080233.mp4\r\n10.0_2912_shabby-viridian-beaver-9711530cff81-20220416-183524.mp4 10.0_996_gimpy-jade-panda-e4c8446a5972-20220415-122650.mp4\r\n10.0_2913_shabby-viridian-beaver-9711530cff81-20220416-184024.mp4 10.0_997_gimpy-jade-panda-e4c8446a5972-20220415-123149.mp4\r\n10.0_2914_shabby-viridian-beaver-97336475120d-20220418-215857.mp4 10.0_998_gimpy-jade-panda-e58168182a84-20220423-105535.mp4\r\n10.0_2915_shabby-viridian-beaver-97336475120d-20220418-220856.mp4 10.0_999_gimpy-jade-panda-e58168182a84-20220423-110112.mp4\r\n10.0_2916_shabby-viridian-beaver-97c2e1ab4d7c-20220417-164751.mp4 checkpoints\r\n10.0_2917_shabby-viridian-beaver-980970f2f31f-20220421-005539.mp4 data\r\n10.0_2918_shabby-viridian-beaver-980970f2f31f-20220421-010123.mp4 logs\r\n10.0_2919_shabby-viridian-beaver-980970f2f31f-20220421-010623.mp4 scripts\r\n10.0_291_cheeky-cornflower-setter-a8fa0b8f8c02-20220421-003707.mp4\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +339,870053,"TERMINAL",0,0,"tmux",,terminal_focus +340,870334,"TERMINAL",0,0,"bash",,terminal_focus +341,882888,"TERMINAL",0,0,"mv *.mp4 data/open_ai_minecraft/",,terminal_command +342,882941,"TERMINAL",0,0,"]633;E;2025-06-24 16:09:39 mv *.mp4 data/open_ai_minecraft/;3588c04d-0da0-40eb-9980-9a3b4883c9d8]633;C",,terminal_output +343,899913,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +344,970972,"TERMINAL",0,0,"cd data/open_ai_minecraft/",,terminal_command +345,970979,"TERMINAL",0,0,"]633;E;2025-06-24 16:11:07 cd data/open_ai_minecraft/;3588c04d-0da0-40eb-9980-9a3b4883c9d8]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +346,971527,"TERMINAL",0,0,"ls",,terminal_command +347,971578,"TERMINAL",0,0,"]633;E;2025-06-24 16:11:08 ls;3588c04d-0da0-40eb-9980-9a3b4883c9d8]633;C",,terminal_output +348,979414,"TERMINAL",0,0,"",,terminal_focus +349,980124,"TERMINAL",0,0,"ls",,terminal_focus +350,981736,"TERMINAL",0,0,"tmux",,terminal_focus +351,981737,"TERMINAL",0,0,"bash",,terminal_focus +352,982145,"TERMINAL",0,0,"bash",,terminal_focus +353,994587,"TERMINAL",0,0,"mkdir 6.x",,terminal_command +354,994607,"TERMINAL",0,0,"]633;E;2025-06-24 16:11:31 mkdir 6.x;00b432d4-e712-4beb-bca6-8ba399fb3372]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +355,1017453,"TERMINAL",0,0,"mkdir 7.x 8.x 9.x 10.x",,terminal_command +356,1017474,"TERMINAL",0,0,"]633;E;2025-06-24 16:11:54 mkdir 7.x 8.x 9.x 10.x;00b432d4-e712-4beb-bca6-8ba399fb3372]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +357,1161434,"TERMINAL",0,0,"ls",,terminal_command +358,1161487,"TERMINAL",0,0,"]633;E;2025-06-24 16:14:18 ls;00b432d4-e712-4beb-bca6-8ba399fb3372]633;C",,terminal_output +359,1163204,"TERMINAL",0,0,"^C\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;130",,terminal_output +360,1187978,"TERMINAL",0,0,"mkdir 6xx 7xx 8xx 9xx 10xx",,terminal_command +361,1188000,"TERMINAL",0,0,"]633;E;2025-06-24 16:14:44 mkdir 6xx 7xx 8xx 9xx 10xx;00b432d4-e712-4beb-bca6-8ba399fb3372]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +362,1207770,"TERMINAL",0,0,"rm -r 6.x 7.x 8.x 9.x 10x.",,terminal_command +363,1207804,"TERMINAL",0,0,"]633;E;2025-06-24 16:15:04 rm -r 6.x 7.x 8.x 9.x 10x.;00b432d4-e712-4beb-bca6-8ba399fb3372]633;Crm: cannot remove '10x.': No such file or directory\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;1",,terminal_output +364,1213089,"TERMINAL",0,0,"mkdir 6xx 7xx 8xx 9xx 10.x",,terminal_command +365,1213109,"TERMINAL",0,0,"]633;E;2025-06-24 16:15:09 mkdir 6xx 7xx 8xx 9xx 10.x;00b432d4-e712-4beb-bca6-8ba399fb3372]633;Cmkdir: cannot create directory ‘6xx’: File exists\r\nmkdir: cannot create directory ‘7xx’: File exists\r\nmkdir: cannot create directory ‘8xx’: File exists\r\nmkdir: cannot create directory ‘9xx’: File exists\r\nmkdir: cannot create directory ‘10.x’: File exists\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;1",,terminal_output +366,1222218,"TERMINAL",0,0,"mkdir 6xx 7xx 8xx 9xx 10xx",,terminal_command +367,1222238,"TERMINAL",0,0,"]633;E;2025-06-24 16:15:19 mkdir 6xx 7xx 8xx 9xx 10xx;00b432d4-e712-4beb-bca6-8ba399fb3372]633;Cmkdir: cannot create directory ‘6xx’: File exists\r\nmkdir: cannot create directory ‘7xx’: File exists\r\nmkdir: cannot create directory ‘8xx’: File exists\r\nmkdir: cannot create directory ‘9xx’: File exists\r\nmkdir: cannot create directory ‘10xx’: File exists\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;1",,terminal_output +368,1225999,"TERMINAL",0,0,"rm -r 6.x 7.x 8.x 9.x 10.x",,terminal_command +369,1226016,"TERMINAL",0,0,"]633;E;2025-06-24 16:15:22 rm -r 6.x 7.x 8.x 9.x 10.x;00b432d4-e712-4beb-bca6-8ba399fb3372]633;Crm: cannot remove '6.x': No such file or directory\r\nrm: cannot remove '7.x': No such file or directory\r\nrm: cannot remove '8.x': No such file or directory\r\nrm: cannot remove '9.x': No such file or directory\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;1",,terminal_output +370,1237837,"TERMINAL",0,0,"mv 6.* 6xx",,terminal_command +371,1237887,"TERMINAL",0,0,"]633;E;2025-06-24 16:15:34 mv 6.* 6xx;00b432d4-e712-4beb-bca6-8ba399fb3372]633;C",,terminal_output +372,1250017,"scripts/data_mover.sh",0,0,"",shellscript,tab +373,1250718,"scripts/data_mover.sh",363,0,"",shellscript,selection_mouse +374,1250720,"scripts/data_mover.sh",362,0,"",shellscript,selection_command +375,1253227,"scripts/data_mover.sh",363,0,"\n ",shellscript,content +376,1253231,"scripts/data_mover.sh",365,0,"\n ",shellscript,content +377,1253231,"scripts/data_mover.sh",364,1,"",shellscript,content +378,1253235,"scripts/data_mover.sh",366,0,"\n ",shellscript,content +379,1253235,"scripts/data_mover.sh",365,1,"",shellscript,content +380,1253249,"scripts/data_mover.sh",367,0,"\n ",shellscript,content +381,1253249,"scripts/data_mover.sh",366,1,"",shellscript,content +382,1254072,"scripts/data_mover.sh",367,1,"",shellscript,content +383,1254388,"scripts/data_mover.sh",367,0," mv 6.* 6xx",shellscript,content +384,1254393,"scripts/data_mover.sh",377,0,"",shellscript,selection_command +385,1255989,"scripts/data_mover.sh",366,0,"",shellscript,selection_command +386,1257436,"scripts/data_mover.sh",366,0," ",shellscript,content +387,1259008,"scripts/data_mover.sh",369,0,"",shellscript,selection_command +388,1259456,"scripts/data_mover.sh",365,0,"",shellscript,selection_command +389,1259897,"scripts/data_mover.sh",364,0,"",shellscript,selection_command +390,1261001,"scripts/data_mover.sh",365,0,"",shellscript,selection_command +391,1261002,"scripts/data_mover.sh",369,0,"",shellscript,selection_command +392,1262022,"scripts/data_mover.sh",366,4,"",shellscript,content +393,1262022,"scripts/data_mover.sh",365,0,"echo ""Renaming 6.0 data...""",shellscript,content +394,1262033,"scripts/data_mover.sh",392,0,"",shellscript,selection_command +395,1263682,"scripts/data_mover.sh",403,0,"9xx\necho ""Renaming 10.0 data...""\nmv 10.* 10",shellscript,content +396,1263682,"scripts/data_mover.sh",402,1,"",shellscript,content +397,1263682,"scripts/data_mover.sh",399,0,"7.* 7xx\necho ""Renaming 8.0 data...""\nmv 8.* 8xx\necho ""Renaming 9.0 data...""\nmv 9",shellscript,content +398,1263682,"scripts/data_mover.sh",398,1,"",shellscript,content +399,1263683,"scripts/data_mover.sh",395,0,"""Renaming 7.0 data...""\n",shellscript,content +400,1263683,"scripts/data_mover.sh",394,0,"echo",shellscript,content +401,1263683,"scripts/data_mover.sh",393,0,"mv 6.* 6xx",shellscript,content +402,1264441,"scripts/data_mover.sh",391,0,"",shellscript,selection_command +403,1264610,"scripts/data_mover.sh",364,0,"",shellscript,selection_command +404,1266177,"scripts/data_mover.sh",354,0,"",shellscript,selection_command +405,1266548,"scripts/data_mover.sh",364,0,"",shellscript,selection_command +406,1268409,"scripts/data_mover.sh",364,1,"\n",shellscript,selection_command +407,1268410,"scripts/data_mover.sh",328,36," mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +408,1268411,"scripts/data_mover.sh",294,70," echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +409,1268411,"scripts/data_mover.sh",259,105," mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +410,1268411,"scripts/data_mover.sh",226,138," echo ""Transferring 9.0 data...""\n mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +411,1268449,"scripts/data_mover.sh",191,173," mv data/open_ai_minecraft/8.*/* .\n echo ""Transferring 9.0 data...""\n mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +412,1268483,"scripts/data_mover.sh",158,206," echo ""Transferring 8.0 data...""\n mv data/open_ai_minecraft/8.*/* .\n echo ""Transferring 9.0 data...""\n mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +413,1268517,"scripts/data_mover.sh",123,241," mv data/open_ai_minecraft/7.*/* .\n echo ""Transferring 8.0 data...""\n mv data/open_ai_minecraft/8.*/* .\n echo ""Transferring 9.0 data...""\n mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +414,1268550,"scripts/data_mover.sh",90,274," echo ""Transferring 7.0 data...""\n mv data/open_ai_minecraft/7.*/* .\n echo ""Transferring 8.0 data...""\n mv data/open_ai_minecraft/8.*/* .\n echo ""Transferring 9.0 data...""\n mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +415,1268584,"scripts/data_mover.sh",55,309," mv data/open_ai_minecraft/6.*/* .\n echo ""Transferring 7.0 data...""\n mv data/open_ai_minecraft/7.*/* .\n echo ""Transferring 8.0 data...""\n mv data/open_ai_minecraft/8.*/* .\n echo ""Transferring 9.0 data...""\n mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +416,1268813,"scripts/data_mover.sh",23,341," echo ""Transfering 6.0 data...""\n mv data/open_ai_minecraft/6.*/* .\n echo ""Transferring 7.0 data...""\n mv data/open_ai_minecraft/7.*/* .\n echo ""Transferring 8.0 data...""\n mv data/open_ai_minecraft/8.*/* .\n echo ""Transferring 9.0 data...""\n mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +417,1268973,"scripts/data_mover.sh",0,364," echo ""Moving data...""\n echo ""Transfering 6.0 data...""\n mv data/open_ai_minecraft/6.*/* .\n echo ""Transferring 7.0 data...""\n mv data/open_ai_minecraft/7.*/* .\n echo ""Transferring 8.0 data...""\n mv data/open_ai_minecraft/8.*/* .\n echo ""Transferring 9.0 data...""\n mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +418,1269260,"scripts/data_mover.sh",23,341," echo ""Transfering 6.0 data...""\n mv data/open_ai_minecraft/6.*/* .\n echo ""Transferring 7.0 data...""\n mv data/open_ai_minecraft/7.*/* .\n echo ""Transferring 8.0 data...""\n mv data/open_ai_minecraft/8.*/* .\n echo ""Transferring 9.0 data...""\n mv data/open_ai_minecraft/9.*/* .\n echo ""Transferring 10.0 data...""\n mv data/open_ai_minecraft/10.*/* .\n",shellscript,selection_command +419,1269623,"scripts/data_mover.sh",23,342,"",shellscript,content +420,1271142,"scripts/data_mover.sh",51,0,"",shellscript,selection_command +421,1271143,"scripts/data_mover.sh",62,0,"",shellscript,selection_command +422,1271741,"scripts/data_mover.sh",51,0,"",shellscript,selection_command +423,1272928,"scripts/data_mover.sh",23,0,"",shellscript,selection_command +424,1272929,"scripts/data_mover.sh",28,0,"",shellscript,selection_command +425,1273240,"scripts/data_mover.sh",5,0,"",shellscript,selection_command +426,1273611,"scripts/data_mover.sh",28,0,"",shellscript,selection_command +427,1274592,"scripts/data_mover.sh",5,0,"",shellscript,selection_command +428,1274593,"scripts/data_mover.sh",1,0,"",shellscript,selection_command +429,1275191,"scripts/data_mover.sh",0,0,"",shellscript,selection_command +430,1275461,"scripts/data_mover.sh",0,1,"",shellscript,content +431,1275693,"scripts/data_mover.sh",22,0,"",shellscript,selection_command +432,1277198,"scripts/data_mover.sh",28,0,"",shellscript,selection_command +433,1277760,"scripts/data_mover.sh",28,9,"",shellscript,content +434,1278878,"scripts/data_mover.sh",28,0,"M",shellscript,content +435,1278879,"scripts/data_mover.sh",29,0,"",shellscript,selection_keyboard +436,1278882,"scripts/data_mover.sh",29,0,"o",shellscript,content +437,1278883,"scripts/data_mover.sh",30,0,"",shellscript,selection_keyboard +438,1281502,"scripts/data_mover.sh",65,0,"Mov",shellscript,content +439,1281502,"scripts/data_mover.sh",60,5,"",shellscript,content +440,1281503,"scripts/data_mover.sh",30,0,"ving ",shellscript,content +441,1282221,"scripts/data_mover.sh",34,0,"",shellscript,selection_command +442,1282457,"scripts/data_mover.sh",57,0,"",shellscript,selection_command +443,1282643,"scripts/data_mover.sh",71,0,"",shellscript,selection_command +444,1283586,"scripts/data_mover.sh",94,0,"",shellscript,selection_command +445,1283588,"scripts/data_mover.sh",108,0,"",shellscript,selection_command +446,1283588,"scripts/data_mover.sh",133,0,"",shellscript,selection_command +447,1283589,"scripts/data_mover.sh",147,0,"",shellscript,selection_command +448,1283589,"scripts/data_mover.sh",172,0,"",shellscript,selection_command +449,1287025,"scripts/data_mover.sh",95,0,".",shellscript,content +450,1287026,"scripts/data_mover.sh",92,3,"",shellscript,content +451,1287026,"scripts/data_mover.sh",91,0,"/*",shellscript,content +452,1287026,"scripts/data_mover.sh",88,0,"data/open_ai_minecraft/",shellscript,content +453,1287026,"scripts/data_mover.sh",58,0,".",shellscript,content +454,1287026,"scripts/data_mover.sh",55,3,"",shellscript,content +455,1287026,"scripts/data_mover.sh",54,0,"/*",shellscript,content +456,1287026,"scripts/data_mover.sh",51,0,"data/open_ai_minecraft/",shellscript,content +457,1288838,"scripts/data_mover.sh",193,0,"",shellscript,selection_command +458,1288839,"scripts/data_mover.sh",179,0,"",shellscript,selection_command +459,1289943,"scripts/data_mover.sh",261,0,".",shellscript,content +460,1289944,"scripts/data_mover.sh",257,4,"",shellscript,content +461,1289944,"scripts/data_mover.sh",256,0,"/*",shellscript,content +462,1289944,"scripts/data_mover.sh",252,0,"data/open_ai_minecraft/",shellscript,content +463,1289944,"scripts/data_mover.sh",231,0,"Mov",shellscript,content +464,1289944,"scripts/data_mover.sh",226,5,"",shellscript,content +465,1289944,"scripts/data_mover.sh",219,0,".",shellscript,content +466,1289944,"scripts/data_mover.sh",216,3,"",shellscript,content +467,1289944,"scripts/data_mover.sh",214,0,"*/",shellscript,content +468,1289944,"scripts/data_mover.sh",212,0,"data/open_ai_minecraft/",shellscript,content +469,1289944,"scripts/data_mover.sh",192,0,"Mov",shellscript,content +470,1289944,"scripts/data_mover.sh",187,5,"",shellscript,content +471,1289945,"scripts/data_mover.sh",180,0,".",shellscript,content +472,1289945,"scripts/data_mover.sh",177,3,"",shellscript,content +473,1289945,"scripts/data_mover.sh",176,0,"/*",shellscript,content +474,1289945,"scripts/data_mover.sh",173,0,"data/open_ai_minecraft/",shellscript,content +475,1289945,"scripts/data_mover.sh",153,0,"Mov",shellscript,content +476,1289945,"scripts/data_mover.sh",148,5,"",shellscript,content +477,1290902,"scripts/data_mover.sh",166,0,"",shellscript,selection_command +478,1291062,"scripts/data_mover.sh",140,0,"",shellscript,selection_command +479,1291226,"scripts/data_mover.sh",106,0,"",shellscript,selection_command +480,1292224,"scripts/data_mover.sh",80,0,"",shellscript,selection_command +481,1293778,"scripts/data_mover.sh",141,0,"0",shellscript,content +482,1293779,"scripts/data_mover.sh",140,0,"data/open_ai_minecraft/7",shellscript,content +483,1293779,"scripts/data_mover.sh",81,0,"0",shellscript,content +484,1293779,"scripts/data_mover.sh",80,0,"data/open_ai_minecraft/6",shellscript,content +485,1294533,"scripts/data_mover.sh",104,1,"",shellscript,content +486,1294752,"scripts/data_mover.sh",104,1,"",shellscript,content +487,1294774,"scripts/data_mover.sh",103,0,"",shellscript,selection_command +488,1295295,"scripts/data_mover.sh",104,0,"",shellscript,selection_command +489,1295697,"scripts/data_mover.sh",104,0,"x",shellscript,content +490,1295698,"scripts/data_mover.sh",105,0,"",shellscript,selection_keyboard +491,1295856,"scripts/data_mover.sh",105,0,"x",shellscript,content +492,1295857,"scripts/data_mover.sh",106,0,"",shellscript,selection_keyboard +493,1296846,"scripts/data_mover.sh",191,0,"xx",shellscript,content +494,1296847,"scripts/data_mover.sh",189,2,"",shellscript,content +495,1297501,"scripts/data_mover.sh",105,0,"",shellscript,selection_command +496,1297586,"scripts/data_mover.sh",131,0,"",shellscript,selection_command +497,1297759,"scripts/data_mover.sh",190,0,"",shellscript,selection_command +498,1297911,"scripts/data_mover.sh",216,0,"",shellscript,selection_command +499,1298253,"scripts/data_mover.sh",250,0,"",shellscript,selection_command +500,1298647,"scripts/data_mover.sh",311,0,"data/open_ai_minecraft/9xx",shellscript,content +501,1298648,"scripts/data_mover.sh",310,1,"",shellscript,content +502,1298648,"scripts/data_mover.sh",251,0,"data/open_ai_minecraft/8xx",shellscript,content +503,1298648,"scripts/data_mover.sh",250,1,"",shellscript,content +504,1298912,"scripts/data_mover.sh",301,0,"",shellscript,selection_command +505,1299270,"scripts/data_mover.sh",360,0,"",shellscript,selection_command +506,1299455,"scripts/data_mover.sh",387,0,"",shellscript,selection_command +507,1299841,"scripts/data_mover.sh",422,0,"",shellscript,selection_command +508,1300145,"scripts/data_mover.sh",423,0,"data/open_ai_minecraft/10xx",shellscript,content +509,1300146,"scripts/data_mover.sh",422,1,"",shellscript,content +510,1308036,"TERMINAL",0,0,"bash",,terminal_focus +511,1317941,"TERMINAL",0,0,"./scripts/data_mover.sh",,terminal_command +512,1317993,"TERMINAL",0,0,"]633;E;2025-06-24 16:16:54 ./scripts/data_mover.sh ;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;CMoving data...\r\nMoving 6.0 data...\r\n",,terminal_output +513,1318055,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/6.*/*': No such file or directory\r\nMoving 7.0 data...\r\n",,terminal_output +514,1324407,"TERMINAL",0,0,"^C",,terminal_output +515,1324812,"TERMINAL",0,0,"^C",,terminal_output +516,1325232,"scripts/data_mover.sh",0,0,"",shellscript,tab +517,1326120,"scripts/data_mover.sh",78,0,"",shellscript,selection_mouse +518,1326722,"scripts/data_mover.sh",77,0,"",shellscript,selection_command +519,1327540,"scripts/data_mover.sh",77,1,"",shellscript,content +520,1327668,"scripts/data_mover.sh",77,1,"",shellscript,content +521,1327755,"scripts/data_mover.sh",129,0,"",shellscript,selection_command +522,1327798,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;130]633;P;Cwd=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared",,terminal_output +523,1328122,"scripts/data_mover.sh",160,0,"",shellscript,selection_command +524,1328474,"scripts/data_mover.sh",160,1,"",shellscript,content +525,1328617,"scripts/data_mover.sh",160,1,"",shellscript,content +526,1329667,"scripts/data_mover.sh",327,2,"",shellscript,content +527,1329668,"scripts/data_mover.sh",243,2,"",shellscript,content +528,1330428,"scripts/data_mover.sh",212,0,"",shellscript,selection_command +529,1330571,"scripts/data_mover.sh",243,0,"",shellscript,selection_command +530,1330722,"scripts/data_mover.sh",295,0,"",shellscript,selection_command +531,1330889,"scripts/data_mover.sh",326,0,"",shellscript,selection_command +532,1331018,"scripts/data_mover.sh",379,0,"",shellscript,selection_command +533,1331402,"scripts/data_mover.sh",410,0,"",shellscript,selection_command +534,1331721,"scripts/data_mover.sh",411,2,"",shellscript,content +535,1334981,"TERMINAL",0,0,"./scripts/data_mover.sh",,terminal_command +536,1335041,"TERMINAL",0,0,"]633;E;2025-06-24 16:17:11 ./scripts/data_mover.sh ;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;CMoving data...\r\nMoving 6.0 data...\r\n",,terminal_output +537,1335126,"TERMINAL",0,0,"mv: cannot stat 'data/open_ai_minecraft/6.*': No such file or directory\r\nMoving 7.0 data...\r\n",,terminal_output +538,1352790,"TERMINAL",0,0,"bash",,terminal_focus +539,1353603,"TERMINAL",0,0,"tmux",,terminal_focus +540,1353603,"TERMINAL",0,0,"bash",,terminal_focus +541,1355811,"TERMINAL",0,0,"Moving 8.0 data...\r\n",,terminal_output +542,1364843,"TERMINAL",0,0,"Moving 9.0 data...\r\n",,terminal_output +543,1377633,"TERMINAL",0,0,"Moving 10.0 data...\r\n",,terminal_output +544,1393514,"TERMINAL",0,0,"",,terminal_focus +545,1394057,"TERMINAL",0,0,"bash",,terminal_focus +546,1397846,"TERMINAL",0,0,"cd data/open_ai_minecraft/",,terminal_command +547,1397855,"TERMINAL",0,0,"]633;E;2025-06-24 16:18:14 cd data/open_ai_minecraft/;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +548,1398210,"TERMINAL",0,0,"ls",,terminal_command +549,1398228,"TERMINAL",0,0,"]633;E;2025-06-24 16:18:15 ls;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C10xx 6xx 7xx 8xx 9xx\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +550,1401922,"TERMINAL",0,0,"ls -l",,terminal_command +551,1401939,"TERMINAL",0,0,"]633;E;2025-06-24 16:18:18 ls -l ;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;Ctotal 24576\r\ndrwxrwx---+ 2 tum_ind3695 hk-project-pai00039 524288 Jun 24 16:17 10xx\r\ndrwxrwx---+ 2 tum_ind3695 hk-project-pai00039 4194304 Jun 24 16:16 6xx\r\ndrwxrwx---+ 2 tum_ind3695 hk-project-pai00039 2097152 Jun 24 16:17 7xx\r\ndrwxrwx---+ 2 tum_ind3695 hk-project-pai00039 524288 Jun 24 16:17 8xx\r\ndrwxrwx---+ 2 tum_ind3695 hk-project-pai00039 1048576 Jun 24 16:17 9xx\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +552,1407237,"TERMINAL",0,0,"ls -l | wc -l",,terminal_command +553,1407253,"TERMINAL",0,0,"]633;E;2025-06-24 16:18:24 ls -l | wc -l;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C6\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +554,1418713,"TERMINAL",0,0,"ls -l 10xx/ | wc -l",,terminal_command +555,1418764,"TERMINAL",0,0,"]633;E;2025-06-24 16:18:35 ls -l 10xx/ | wc -l;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +556,1418937,"TERMINAL",0,0,"4418\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +557,1422478,"TERMINAL",0,0,"ls -l 6xx/ | wc -l",,terminal_command +558,1422529,"TERMINAL",0,0,"]633;E;2025-06-24 16:18:39 ls -l 6xx/ | wc -l;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +559,1427118,"TERMINAL",0,0,"27392\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +560,1430940,"TERMINAL",0,0,"ls -l 7xx/ | wc -l",,terminal_command +561,1430994,"TERMINAL",0,0,"]633;E;2025-06-24 16:18:47 ls -l 7xx/ | wc -l;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +562,1433466,"TERMINAL",0,0,"15074\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +563,1436165,"TERMINAL",0,0,"ls -l 8xx/ | wc -l",,terminal_command +564,1436215,"TERMINAL",0,0,"]633;E;2025-06-24 16:18:53 ls -l 8xx/ | wc -l;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +565,1436729,"TERMINAL",0,0,"4298\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +566,1441623,"TERMINAL",0,0,"ls -l 9xx/ | wc -l",,terminal_command +567,1441676,"TERMINAL",0,0,"]633;E;2025-06-24 16:18:58 ls -l 9xx/ | wc -l;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +568,1442685,"TERMINAL",0,0,"7716\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +569,1456138,"TERMINAL",0,0,"tmux",,terminal_focus +570,1618563,"TERMINAL",0,0,"bash",,terminal_focus +571,1623418,"TERMINAL",0,0,"cd 6xx/",,terminal_command +572,1623425,"TERMINAL",0,0,"]633;E;2025-06-24 16:22:00 cd 6xx/;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/6xx]633;D;0",,terminal_output +573,1633195,"TERMINAL",0,0,"ls 6.Display all 27391 possibilities? (y or n)^C",,terminal_command +574,1633208,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/6xx]633;D",,terminal_output +575,1641023,"TERMINAL",0,0,"ls 6.0",,terminal_command +576,1641038,"TERMINAL",0,0,"]633;E;2025-06-24 16:22:17 ls 6.0;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;Cls: cannot access '6.0': No such file or directory\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/6xx]633;D;2",,terminal_output +577,1663489,"TERMINAL",0,0,"ls 6.1Display all 27055 possibilities? (y or n)^C",,terminal_command +578,1663507,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/6xx]633;D",,terminal_output +579,1665150,"TERMINAL",0,0,"ls 6.2",,terminal_command +580,1665168,"TERMINAL",0,0,"]633;E;2025-06-24 16:22:42 ls 6.2;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;Cls: cannot access '6.2': No such file or directory\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/6xx]633;D;2",,terminal_output +581,1670977,"TERMINAL",0,0,"ls 6.3",,terminal_command +582,1670979,"TERMINAL",0,0,"]633;E;2025-06-24 16:22:47 ls 6.3;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;Cls: cannot access '6.3': No such file or directory\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/6xx]633;D;2",,terminal_output +583,1766773,"TERMINAL",0,0,"tmux",,terminal_focus +584,1767627,"TERMINAL",0,0,"bash",,terminal_focus +585,2266743,"TERMINAL",0,0,"cd",,terminal_command +586,2266746,"TERMINAL",0,0,"]633;E;2025-06-24 16:32:43 cd ;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:~]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695",,terminal_output +587,2269152,"TERMINAL",0,0,"binger",,terminal_command +588,2269155,"TERMINAL",0,0,"]633;E;2025-06-24 16:32:45 binger;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +589,2270792,"TERMINAL",0,0,"ls",,terminal_command +590,2270818,"TERMINAL",0,0,"]633;E;2025-06-24 16:32:47 ls;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;Ccheckpoints data logs scripts\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +591,2272101,"TERMINAL",0,0,"cd data/",,terminal_command +592,2272106,"TERMINAL",0,0,"]633;E;2025-06-24 16:32:48 cd data/;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data]633;D;0",,terminal_output +593,2272482,"TERMINAL",0,0,"ls",,terminal_command +594,2272537,"TERMINAL",0,0,"]633;E;2025-06-24 16:32:49 ls;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +595,2272671,"TERMINAL",0,0,"checkpoints knoms_mp4 knoms_tfrecords knoms_tfrecords_500_shards open_ai_minecraft_first_try\r\ncoinrun knoms_mp4_clips knoms_tfrecords_200_shards knoms_tfrecords_500_shards_overfit_1 procgen_env_16_episodes_20000\r\ndata_knoms knoms_npy knoms_tfrecords_2_shards_overfit knoms_tfrecords_500_shards_overfit_10\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data]633;D;0",,terminal_output +596,2279965,"TERMINAL",0,0,"mkdir open_ai_minecraft",,terminal_command +597,2279981,"TERMINAL",0,0,"]633;E;2025-06-24 16:32:56 mkdir open_ai_minecraft;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data]633;D;0",,terminal_output +598,2696610,"TERMINAL",0,0,"cp -r open_ai_minecraft open_ai_minecraft_subset",,terminal_command +599,2696660,"TERMINAL",0,0,"]633;E;2025-06-24 16:39:53 cp -r open_ai_minecraft open_ai_minecraft_subset;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +600,2698138,"TERMINAL",0,0,"^C\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data]633;D;130",,terminal_output +601,2700478,"TERMINAL",0,0,"cd open_ai_minecraft",,terminal_command +602,2700493,"TERMINAL",0,0,"]633;E;2025-06-24 16:39:57 cd open_ai_minecraft;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +603,2712838,"TERMINAL",0,0,"cp -r all_6xx_Jun_29/ all_6xx_Jun_29_subset",,terminal_command +604,2712890,"TERMINAL",0,0,"]633;E;2025-06-24 16:40:09 cp -r all_6xx_Jun_29/ all_6xx_Jun_29_subset;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +605,2742635,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +606,2768339,"TERMINAL",0,0,"tmux",,terminal_focus +607,2768604,"TERMINAL",0,0,"bash",,terminal_focus +608,2776631,"TERMINAL",0,0,"cd all_^C",,terminal_command +609,2776643,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D",,terminal_output +610,2803310,"TERMINAL",0,0,"mv all_6xx_Jun_29_subset/ tester_subset",,terminal_command +611,2803328,"TERMINAL",0,0,"]633;E;2025-06-24 16:41:40 mv all_6xx_Jun_29_subset/ tester_subset;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +612,3605774,"TERMINAL",0,0,"ls",,terminal_command +613,3605784,"TERMINAL",0,0,"]633;E;2025-06-24 16:55:02 ls;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;Call_10xx_Jun_29 all_6xx_Jun_29 all_7xx_Apr_6 all_8xx_Jun_29 all_9xx_Jun_29 tester_subset\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft]633;D;0",,terminal_output +614,3609581,"TERMINAL",0,0,"cd tester_subset/",,terminal_command +615,3609583,"TERMINAL",0,0,"]633;E;2025-06-24 16:55:06 cd tester_subset/;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset]633;D;0",,terminal_output +616,3610259,"TERMINAL",0,0,"pwd",,terminal_command +617,3610267,"TERMINAL",0,0,"]633;E;2025-06-24 16:55:07 pwd;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset]633;D;0",,terminal_output +618,5390443,"TERMINAL",0,0,"cd /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/6xx6.11_257_Player171-f153ac423f61-20210708-123639.mp4",,terminal_command +619,5390451,"TERMINAL",0,0,"]633;E;2025-06-24 17:24:47 cd /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/6xx6.11_257_Player171-f153ac423f61-20210708-123639.mp4;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;Cbash: cd: /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/6xx6.11_257_Player171-f153ac423f61-20210708-123639.mp4: No such file or directory\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset]633;D;1",,terminal_output +620,5395045,"TERMINAL",0,0,"cd /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/",,terminal_command +621,5395054,"TERMINAL",0,0,"]633;E;2025-06-24 17:24:51 cd /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try]633;D;0",,terminal_output +622,5458229,"scripts/data_mover.sh",0,0,"",shellscript,tab +623,6186963,"scripts/data_mover.sh",0,0,"",shellscript,tab +624,6444559,"scripts/data_mover.sh",0,0,"",shellscript,tab +625,6476442,"scripts/data_mover.sh",439,0,"",shellscript,selection_mouse +626,6476444,"scripts/data_mover.sh",438,0,"",shellscript,selection_command +627,6789247,"scripts/data_mover.sh",439,0,"",shellscript,selection_mouse +628,6789249,"scripts/data_mover.sh",438,0,"",shellscript,selection_command +629,6799455,"TERMINAL",0,0,"cd 6.10_1228_Player786-48b5fb389e50-20210629-231909.mp4lsjldkfj^C",,terminal_command +630,6799473,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try]633;D",,terminal_output +631,6803171,"TERMINAL",0,0,"cd 6xx/",,terminal_command +632,6803174,"TERMINAL",0,0,"]633;E;2025-06-24 17:48:20 cd 6xx/;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/6xx]633;D;0",,terminal_output +633,6803578,"TERMINAL",0,0,"ls",,terminal_command +634,6803630,"TERMINAL",0,0,"]633;E;2025-06-24 17:48:20 ls;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +635,6808060,"TERMINAL",0,0,"6.0_001_Player249-60b420bb3851-20210504-224830.mp4 6.13_19003_Player927-f153ac423f61-20211011-203600.mp4\r\n6.0_002_Player266-60b420bb3851-20210504-212613.mp4 6.13_19004_Player927-f153ac423f61-20211011-203719.mp4\r\n6.0_003_Player266-7acb933dbe70-20210504-212627.mp4 6.13_19005_Player927-f153ac423f61-20211011-203828.mp4\r\n6.0_004_Player389-60b420bb3851-20210504-212732.mp4 6.13_19006_Player927-f153ac423f61-20211011-203946.mp4\r\n6.0_005_Player548-60b420bb3851-20210504-203311.mp4 6.13_19007_Player927-f153ac423f61-20211011-204111.mp4\r\n6.0_006_ilge-60b420bb3851-20210505-230344.mp4 6.13_19008_Player927-f153ac423f61-20211011-204243.mp4\r\n6.10_001_Player103-f153ac423f61-20210625-075919.mp4 6.13_19009_Player927-f153ac423f61-20211011-204424.mp4\r\n6.10_002_Player103-f153ac423f61-20210625-080926.mp4 6.13_1900_Player165-468d44352a42-20211215-130028.mp4\r\n6.10_003_Player103-f153ac423f61-20210625-081924.mp4 6.13_19010_Player927-f153ac423f61-20211011-204602.mp4\r\n6.10_004_Player103-f153ac423f61-20210625-082922.mp4 6.13_19011_Player927-f153ac423f61-20211111-140211.mp4\r\n6.10_005_Player103-f153ac423f61-20210625-083920.mp4 6.13_19012_Player927-f153ac423f61-20211111-140421.mp4\r\n6.10_006_Player103-f153ac423f61-20210625-084923.mp4 6.13_19013_Player927-f153ac423f61-20211111-140624.mp4\r\n6.10_007_Player103-f153ac423f61-20210625-085923.mp4 6.13_19014_Player927-f153ac423f61-20211111-140828.mp4\r\n6.10_008_Player103-f153ac423f61-20210625-090921.mp4 6.13_19015_Player927-f153ac423f61-20211111-141029.mp4\r\n6.10_009_Player103-f153ac423f61-20210625-091919.mp4 6.13_19016_Player927-f153ac423f61-20211111-141231.mp4\r\n6.10_010_Player103-f153ac423f61-20210625-092923.mp4 6.13_19017_Player927-f153ac423f61-20211111-141431.mp4\r\n6.10_011_Player103-f153ac423f61-20210625-093926.mp4 6.13_19018_Player927-f153ac423f61-20211111-141632.mp4\r\n6.10_012_Player103-f153ac423f61-20210625-094943.mp4 6.13_19019_Player927-f153ac423f61-20211111-141833.mp4\r\n6.10_013_Player11-f153ac423f61-20210625-221300.mp4 6.13_1901_Player165-468d44352a42-20211215-130331.mp4\r\n6.10_014_Player11-f153ac423f61-20210625-221915.mp4 6.13_19020_Player927-f153ac423f61-20211111-142034.mp4\r\n6.10_015_Player11-f153ac423f61-20210625-222626.mp4 6.13_19021_Player927-f153ac423f61-20211111-142235.mp4\r\n6.10_016_Player11-f153ac423f61-20210625-223326.mp4 6.13_19022_Player927-f153ac423f61-20211111-142436.mp4\r\n6.10_017_Player11-f153ac423f61-20210625-223846.mp4 6.13_19023_Player927-f153ac423f61-20211111-142638.mp4\r\n6.10_018_Player11-f153ac423f61-20210625-224409.mp4 6.13_19024_Player927-f153ac423f61-20211111-142839.mp4\r\n6.10_019_Player11-f153ac423f61-20210625-224926.mp4 6.13_19025_Player927-f153ac423f61-20211111-143039.mp4\r\n6.1_001_Player34-f153ac423f61-20210506-120858.mp4 6.13_19026_Player927-f153ac423f61-20211111-143240.mp4\r\n6.10_020_Player11-f153ac423f61-20210625-225500.mp4 6.13_19027_Player927-f153ac423f61-20211111-143441.mp4\r\n6.10_021_Player11-f153ac423f61-20210625-230143.mp4 6.13_19028_Player927-f153ac423f61-20211111-143642.mp4\r\n6.10_022_Player11-f153ac423f61-20210625-230844.mp4 6.13_19029_Player927-f153ac423f61-20211111-143844.mp4\r\n6.10_023_Player11-f153ac423f61-20210625-231543.mp4 6.13_1902_Player165-468d44352a42-20211215-130635.mp4\r\n6.10_024_Player11-f153ac423f61-20210625-232244.mp4 6.13_19030_Player927-f153ac423f61-20211111-144044.mp4\r\n6.10_025_Player11-f153ac423f61-20210625-232923.mp4 6.13_19031_Player927-f153ac423f61-20211111-144244.mp4\r\n6.10_026_Player11-f153ac423f61-20210625-233619.mp4 6.13_19032_Player927-f153ac423f61-20211111-144445.mp4\r\n6.10_027_Player11-f153ac423f61-20210625-234302.mp4 6.13_19033_Player927-f153ac423f61-20211111-144646.mp4\r\n6.10_028_Player11-f153ac423f61-20210625-234934.mp4 6.13_19034_Player927-f153ac423f61-20211111-144847.mp4\r\n6.10_029_Player11-f153ac423f61-20210625-235522.mp4 6.13_19035_Player927-f153ac423f61-20211111-145047.mp4\r\n6.1_002_Player808-f153ac423f61-20210509-214738.mp4 6.13_19036_Player927-f153ac423f61-20211111-145248.mp4\r\n6.10_030_Player11-f153ac423f61-20210626-000026.mp4 6.13_19037_Player927-f153ac423f61-20211111-145449.mp4\r\n6.10_031_Player11-f153ac423f61-20210626-000534.mp4 6.13_19038_Player927-f153ac423f61-20211111-145650.mp4\r\n6.10_032_Player11-f153ac423f61-20210626-001038.mp4 6.13_19039_Player927-f153ac423f61-20211111-145852.mp4\r\n6.10_033_Player11-f153ac423f61-20210626-001603.mp4 6.13_1903_Player165-468d44352a42-20211215-130940.mp4\r\n6.10_034_Player11-f153ac423f61-20210626-002117.mp4 6.13_19040_Player927-f153ac423f61-20211111-150053.mp4\r\n6.10_035_Player11-f153ac423f61-20210626-002638.mp4 6.13_19041_Player927-f153ac423f61-20211111-150253.mp4\r\n6.10_036_Player11-f153ac423f61-20210626-003202.mp4 6.13_19042_Player927-f153ac423f61-20211111-150455.mp4\r\n6.10_037_Player11-f153ac423f61-20210626-003730.mp4 6.13_19043_Player927-f153ac423f61-20211111-150655.mp4\r\n6.10_038_Player11-f153ac423f61-20210626-004257.mp4 6.13_19044_Player927-f153ac423f61-20211111-150856.mp4\r\n6.10_039_Player11-f153ac423f61-20210626-004811.mp4 6.13_19045_Player927-f153ac423f61-20211111-151057.mp4\r\n6.10_040_Player11-f153ac423f61-20210626-005333.mp4 6.13_19046_Player927-f153ac423f61-20211111-151258.mp4\r\n6.10_041_Player11-f153ac423f61-20210626-005858.mp4 6.13_19047_Player927-f153ac423f61-20211111-151458.mp4\r\n6.10_042_Player11-f153ac423f61-20210626-010418.mp4 6.13_19048_Player927-f153ac423f61-20211111-151659.mp4\r\n6.10_043_Player113-f153ac423f61-20210629-105613.mp4 6.13_19049_Player927-f153ac423f61-20211111-151900.mp4\r\n6.10_044_Player113-f153ac423f61-20210629-110121.mp4 6.13_1904_Player165-468d44352a42-20211215-131246.mp4\r\n6.10_045_Player113-f153ac423f61-20210629-110630.mp4 6.13_19050_Player927-f153ac423f61-20211111-152101.mp4\r\n6.10_046_Player113-f153ac423f61-20210629-111146.mp4 6.13_19051_Player927-f153ac423f61-20211111-152302.mp4\r\n6.10_047_Player113-f153ac423f61-20210629-111647.mp4 6.13_19052_Player927-f153ac423f61-20211111-152503.mp4\r\n6.10_048_Player113-f153ac423f61-20210629-112150.mp4 6.13_19053_Player927-f153ac423f61-20211111-152804.mp4\r\n6.10_049_Player113-f153ac423f61-20210629-112701.mp4 6.13_19054_Player927-f153ac423f61-20211111-153005.mp4\r\n6.10_050_Player113-f153ac423f61-20210629-113218.mp4 6.13_19055_Player927-f153ac423f61-20211111-153205.mp4\r\n6.10_051_Player128-f153ac423f61-20210622-101937.mp4 6.13_19056_Player927-f153ac423f61-20211111-153405.mp4\r\n6.10_052_Player128-f153ac423f61-20210622-102703.mp4 6.13_19057_Player927-f153ac423f61-20211111-153608.mp4\r\n6.10_053_Player128-f153ac423f61-20210622-103208.mp4 6.13_19058_Player927-f153ac423f61-20211111-153809.mp4\r\n6.10_054_Player128-f153ac423f61-20210622-103715.mp4 6.13_19059_Player927-f153ac423f61-20211111-154010.mp4\r\n6.10_055_Player128-f153ac423f61-20210622-104223.mp4 6.13_1905_Player165-468d44352a42-20211215-131554.mp4\r\n6.10_056_Player128-f153ac423f61-20210622-104735.mp4 6.13_19060_Player927-f153ac423f61-20211111-154210.mp4\r\n6.10_057_Player128-f153ac423f61-20210622-105246.mp4 6.13_19061_Player927-f153ac423f61-20211111-154411.mp4\r\n6.10_058_Player128-f153ac423f61-20210622-110318.mp4 6.13_19062_Player927-f153ac423f61-20211111-154612.mp4\r\n6.10_059_Player128-f153ac423f61-20210622-110830.mp4 6.13_19063_Player927-f153ac423f61-20211111-154814.mp4\r\n6.10_060_Player128-f153ac423f61-20210622-111343.mp4 6.13_19064_Player927-f153ac423f61-20211111-155015.mp4\r\n6.10_061_Player129-f153ac423f61-20210617-171344.mp4 6.13_19065_Player927-f153ac423f61-20211111-155216.mp4\r\n6.10_062_Player129-f153ac423f61-20210617-172319.mp4 6.13_19066_Player927-f153ac423f61-20211111-155416.mp4\r\n6.10_063_Player129-f153ac423f61-20210617-173110.mp4 6.13_19067_Player927-f153ac423f61-20211111-155616.mp4\r\n6.10_064_Player129-f153ac423f61-20210617-173830.mp4 6.13_19068_Player927-f153ac423f61-20211111-155817.mp4\r\n6.10_065_Player129-f153ac423f61-20210617-174611.mp4 6.13_19069_Player927-f153ac423f61-20211111-160017.mp4\r\n6.10_066_Player129-f153ac423f61-20210617-175456.mp4 6.13_1906_Player165-468d44352a42-20211215-132005.mp4\r\n6.10_067_Player129-f153ac423f61-20210617-180333.mp4 6.13_19070_Player927-f153ac423f61-20211111-160218.mp4\r\n6.10_068_Player129-f153ac423f61-20210624-101123.mp4 6.13_19071_Player927-f153ac423f61-20211111-160418.mp4\r\n6.10_069_Player129-f153ac423f61-20210624-101837.mp4 6.13_19072_Player927-f153ac423f61-20211111-160619.mp4\r\n6.10_070_Player131-5fce71a395cb-20210625-142603.mp4 6.13_19073_Player927-f153ac423f61-20211111-160820.mp4\r\n6.10_071_Player131-99cbcf810854-20210625-142238.mp4 6.13_19074_Player927-f153ac423f61-20211111-161020.mp4\r\n6.10_072_Player131-df5600356481-20210625-142122.mp4 6.13_19075_Player927-f153ac423f61-20211111-161221.mp4\r\n6.10_073_Player131-f153ac423f61-20210625-124055.mp4 6.13_19076_Player927-f153ac423f61-20211111-161422.mp4\r\n6.10_074_Player131-f153ac423f61-20210625-124731.mp4 6.13_19077_Player927-f153ac423f61-20211111-161623.mp4\r\n6.10_075_Player131-f153ac423f61-20210625-125420.mp4 6.13_19078_Player927-f153ac423f61-20211111-161824.mp4\r\n6.10_076_Player131-f153ac423f61-20210625-130048.mp4 6.13_19079_Player927-f153ac423f61-20211111-162024.mp4\r\n6.10_077_Player131-f153ac423f61-20210625-130728.mp4 6.13_1907_Player165-468d44352a42-20211215-132415.mp4\r\n6.10_078_Player131-f153ac423f61-20210625-131402.mp4 6.13_19080_Player927-f153ac423f61-20211111-162227.mp4\r\n6.10_079_Player131-f153ac423f61-20210625-132120.mp4 6.13_19081_Player927-f153ac423f61-20211111-162428.mp4\r\n6.10_080_Player131-f153ac423f61-20210625-132855.mp4 6.13_19082_Player927-f153ac423f61-20211111-162629.mp4\r\n6.10_081_Player131-f153ac423f61-20210625-133624.mp4 6.13_19083_Player927-f153ac423f61-20211111-162832.mp4\r\n6.10_082_Player131-f153ac423f61-20210625-134325.mp4 6.13_19084_Player927-f153ac423f61-20211111-163033.mp4\r\n6.10_083_Player131-f153ac423f61-20210625-135027.mp4 6.13_19085_Player927-f153ac423f61-20211111-163233.mp4\r\n6.10_084_Player131-f153ac423f61-20210625-135732.mp4 6.13_19086_Player927-f153ac423f61-20211111-163434.mp4\r\n6.10_085_Player131-f153ac423f61-20210625-140327.mp4 6.13_19087_Player927-f153ac423f61-20211111-163634.mp4\r\n6.10_086_Player131-f153ac423f61-20210625-140847.mp4 6.13_19088_Player927-f153ac423f61-20211111-164035.mp4\r\n6.10_087_Player131-f153ac423f61-20210625-141400.mp4 6.13_19089_Player927-f153ac423f61-20211111-164239.mp4\r\n6.10_088_Player131-f153ac423f61-20210625-141912.mp4 6.13_1908_Player165-468d44352a42-20211215-132924.mp4\r\n6.10_089_Player146-ab656afc7610-20210701-114117.mp4 6.13_19090_Player927-f153ac423f61-20211111-164448.mp4\r\n6.10_090_Player146-ab656afc7610-20210701-115800.mp4 6.13_19091_Player927-f153ac423f61-20211111-164751.mp4\r\n6.10_091_Player146-f153ac423f61-20210701-111117.mp4 6.13_19092_Player927-f153ac423f61-20211111-165054.mp4\r\n6.10_092_Player146-f153ac423f61-20210701-112632.mp4 6.13_19093_Player927-f153ac423f61-20211111-165355.mp4\r\n6.10_093_Player17-f153ac423f61-20210709-210935.mp4 6.13_19094_Player927-f153ac423f61-20211111-165701.mp4\r\n6.10_094_Player17-f153ac423f61-20210709-212824.mp4 6.13_19095_Player927-f153ac423f61-20211111-170004.mp4\r\n6.10_095_Player17-f153ac423f61-20210709-214047.mp4 6.13_19096_Player927-f153ac423f61-20211111-170307.mp4\r\n6.10_096_Player17-f153ac423f61-20210709-215232.mp4 6.13_19097_Player927-f153ac423f61-20211111-170612.mp4\r\n6.10_097_Player17-f153ac423f61-20210709-220934.mp4 6.13_19098_Player927-f153ac423f61-20211111-170916.mp4\r\n6.10_098_Player17-f153ac423f61-20210709-222038.mp4 6.13_19099_Player927-f153ac423f61-20211111-171222.mp4\r\n6.10_099_Player17-f153ac423f61-20210709-223308.mp4 6.13_1909_Player165-468d44352a42-20211215-133336.mp4\r\n6.10_1000_Player68-2011d6753a39-20210621-193553.mp4 6.13_190_Player106-f153ac423f61-20211008-173938.mp4\r\n6.10_1001_Player68-2011d6753a39-20210621-194202.mp4 6.13_19100_Player927-f153ac423f61-20211111-171529.mp4\r\n6.10_1002_Player68-2011d6753a39-20210621-194838.mp4 6.13_19101_Player927-f153ac423f61-20211111-171831.mp4\r\n6.10_1003_Player68-2011d6753a39-20210621-195429.mp4 6.13_19102_Player927-f153ac423f61-20211111-172134.mp4\r\n6.10_1004_Player68-f153ac423f61-20210609-171449.mp4 6.13_19103_Player927-f153ac423f61-20211111-172435.mp4\r\n6.10_1005_Player68-f153ac423f61-20210621-184439.mp4 6.13_19104_Player927-f153ac423f61-20211111-172736.mp4\r\n6.10_1006_Player68-f153ac423f61-20210621-185056.mp4 6.13_19105_Player927-f153ac423f61-20211111-173037.mp4\r\n6.10_1007_Player68-f153ac423f61-20210621-185748.mp4 6.13_19106_Player927-f153ac423f61-20211111-173339.mp4\r\n6.10_1008_Player68-f153ac423f61-20210621-190414.mp4 6.13_19107_Player929-f153ac423f61-20211027-193128.mp4\r\n6.10_1009_Player68-f153ac423f61-20210621-191003.mp4 6.13_19108_Player929-f153ac423f61-20211027-194612.mp4\r\n6.10_100_Player17-f153ac423f61-20210709-224536.mp4 6.13_19109_Player929-f153ac423f61-20211027-200717.mp4\r\n6.10_1010_Player694-f153ac423f61-20210618-040321.mp4 6.13_1910_Player165-468d44352a42-20211215-133947.mp4\r\n6.10_1011_Player694-f153ac423f61-20210618-040830.mp4 6.13_19110_Player929-f153ac423f61-20211027-203355.mp4\r\n6.10_1012_Player694-f153ac423f61-20210618-041339.mp4 6.13_19111_Player929-f153ac423f61-20211027-205919.mp4\r\n6.10_1013_Player694-f153ac423f61-20210618-041846.mp4 6.13_19112_Player929-f153ac423f61-20211027-212229.mp4\r\n6.10_1014_Player694-f153ac423f61-20210618-042357.mp4 6.13_19113_Player929-f153ac423f61-20211027-214138.mp4\r\n6.10_1015_Player694-f153ac423f61-20210618-042917.mp4 6.13_19114_Player932-1dbd746ac3bc-20211130-174955.mp4\r\n6.10_1016_Player694-f153ac423f61-20210618-043424.mp4 6.13_19115_Player932-255c3ac25cae-20211125-085727.mp4\r\n6.10_1017_Player694-f153ac423f61-20210618-043924.mp4 6.13_19116_Player932-255c3ac25cae-20211125-090130.mp4\r\n6.10_1018_Player694-f153ac423f61-20210618-044425.mp4 6.13_19117_Player932-255c3ac25cae-20211125-090536.mp4\r\n6.10_1019_Player694-f153ac423f61-20210618-044925.mp4 6.13_19118_Player932-255c3ac25cae-20211125-090938.mp4\r\n6.10_101_Player17-f153ac423f61-20210709-225726.mp4 6.13_19119_Player932-255c3ac25cae-20211125-091341.mp4\r\n6.10_1020_Player694-f153ac423f61-20210618-045426.mp4 6.13_1911_Player165-468d44352a42-20211215-134559.mp4\r\n6.10_1021_Player694-f153ac423f61-20210618-045929.mp4 6.13_19120_Player932-255c3ac25cae-20211125-091746.mp4\r\n6.10_1022_Player694-f153ac423f61-20210618-050429.mp4 6.13_19121_Player932-255c3ac25cae-20211125-092148.mp4\r\n6.10_1023_Player694-f153ac423f61-20210618-050930.mp4 6.13_19122_Player932-255c3ac25cae-20211125-092551.mp4\r\n6.10_1024_Player694-f153ac423f61-20210618-051430.mp4 6.13_19123_Player932-255c3ac25cae-20211125-093057.mp4\r\n6.10_1025_Player694-f153ac423f61-20210618-051931.mp4 6.13_19124_Player932-255c3ac25cae-20211125-093459.mp4\r\n6.10_1026_Player694-f153ac423f61-20210618-052431.mp4 6.13_19125_Player932-255c3ac25cae-20211125-093902.mp4\r\n6.10_1027_Player694-f153ac423f61-20210618-052931.mp4 6.13_19126_Player932-255c3ac25cae-20211125-094406.mp4\r\n6.10_1028_Player694-f153ac423f61-20210618-053431.mp4 6.13_19127_Player932-255c3ac25cae-20211125-094810.mp4\r\n6.10_1029_Player694-f153ac423f61-20210618-053931.mp4 6.13_19128_Player932-255c3ac25cae-20211125-095213.mp4\r\n6.10_102_Player17-f153ac423f61-20210709-230822.mp4 6.13_19129_Player932-255c3ac25cae-20211125-095617.mp4\r\n6.10_1030_Player694-f153ac423f61-20210618-054431.mp4 6.13_1912_Player165-468d44352a42-20211215-135206.mp4\r\n6.10_1031_Player694-f153ac423f61-20210618-054933.mp4 6.13_19130_Player932-255c3ac25cae-20211125-100023.mp4\r\n6.10_1032_Player694-f153ac423f61-20210618-055435.mp4 6.13_19131_Player932-255c3ac25cae-20211125-100425.mp4\r\n6.10_1033_Player694-f153ac423f61-20210618-055938.mp4 6.13_19132_Player932-255c3ac25cae-20211125-100830.mp4\r\n6.10_1034_Player694-f153ac423f61-20210618-060441.mp4 6.13_19133_Player932-255c3ac25cae-20211125-101234.mp4\r\n6.10_1035_Player694-f153ac423f61-20210618-060943.mp4 6.13_19134_Player932-255c3ac25cae-20211125-101743.mp4\r\n6.10_1036_Player694-f153ac423f61-20210618-061447.mp4 6.13_19135_Player932-255c3ac25cae-20211125-102147.mp4\r\n6.10_1037_Player694-f153ac423f61-20210618-061950.mp4 6.13_19136_Player932-3eff7c82dd4c-20211125-122922.mp4\r\n6.10_1038_Player694-f153ac423f61-20210618-062452.mp4 6.13_19137_Player932-3eff7c82dd4c-20211125-123329.mp4\r\n6.10_1039_Player694-f153ac423f61-20210618-062954.mp4 6.13_19138_Player932-3eff7c82dd4c-20211125-123730.mp4\r\n6.10_103_Player17-f153ac423f61-20210709-232100.mp4 6.13_19139_Player932-3eff7c82dd4c-20211125-124134.mp4\r\n6.10_1040_Player694-f153ac423f61-20210618-063457.mp4 6.13_1913_Player165-468d44352a42-20211215-135813.mp4\r\n6.10_1041_Player694-f153ac423f61-20210618-063958.mp4 6.13_19140_Player932-3eff7c82dd4c-20211125-124536.mp4\r\n6.10_1042_Player694-f153ac423f61-20210618-064501.mp4 6.13_19141_Player932-3eff7c82dd4c-20211125-124942.mp4\r\n6.10_1043_Player694-f153ac423f61-20210618-065003.mp4 6.13_19142_Player932-3eff7c82dd4c-20211125-125344.mp4\r\n6.10_1044_Player694-f153ac423f61-20210618-065506.mp4 6.13_19143_Player932-3eff7c82dd4c-20211125-125856.mp4\r\n6.10_1045_Player694-f153ac423f61-20210618-070009.mp4 6.13_19144_Player932-3eff7c82dd4c-20211125-130259.mp4\r\n6.10_1046_Player694-f153ac423f61-20210618-070513.mp4 6.13_19145_Player932-3eff7c82dd4c-20211125-130705.mp4\r\n6.10_1047_Player694-f153ac423f61-20210618-071015.mp4 6.13_19146_Player932-3eff7c82dd4c-20211125-131108.mp4\r\n6.10_1048_Player694-f153ac423f61-20210618-071518.mp4 6.13_19147_Player932-3eff7c82dd4c-20211125-131522.mp4\r\n6.10_1049_Player694-f153ac423f61-20210618-072022.mp4 6.13_19148_Player932-3eff7c82dd4c-20211125-131928.mp4\r\n6.10_104_Player17-f153ac423f61-20210709-233136.mp4 6.13_19149_Player932-3eff7c82dd4c-20211125-132333.mp4\r\n6.10_1050_Player694-f153ac423f61-20210618-072525.mp4 6.13_1914_Player165-468d44352a42-20211215-140524.mp4\r\n6.10_1051_Player694-f153ac423f61-20210618-073027.mp4 6.13_19150_Player932-3eff7c82dd4c-20211125-132736.mp4\r\n6.10_1052_Player694-f153ac423f61-20210618-073530.mp4 6.13_19151_Player932-3eff7c82dd4c-20211125-133140.mp4\r\n6.10_1053_Player694-f153ac423f61-20210618-074033.mp4 6.13_19152_Player932-3eff7c82dd4c-20211125-133547.mp4\r\n6.10_1054_Player694-f153ac423f61-20210618-074536.mp4 6.13_19153_Player932-3eff7c82dd4c-20211125-133951.mp4\r\n6.10_1055_Player694-f153ac423f61-20210618-075038.mp4 6.13_19154_Player932-3eff7c82dd4c-20211125-134456.mp4\r\n6.10_1056_Player694-f153ac423f61-20210618-075541.mp4 6.13_19155_Player932-3eff7c82dd4c-20211125-134900.mp4\r\n6.10_1057_Player694-f153ac423f61-20210618-080044.mp4 6.13_19156_Player932-3eff7c82dd4c-20211125-135305.mp4\r\n6.10_1058_Player7-db6fed5a7d9d-20210610-223916.mp4 6.13_19157_Player932-3eff7c82dd4c-20211125-135716.mp4\r\n6.10_1059_Player7-f153ac423f61-20210610-221021.mp4 6.13_19158_Player932-3eff7c82dd4c-20211125-140120.mp4\r\n6.10_105_Player17-f153ac423f61-20210709-234218.mp4 6.13_19159_Player932-3eff7c82dd4c-20211125-140522.mp4\r\n6.10_1060_Player7-f153ac423f61-20210610-221525.mp4 6.13_1915_Player165-468d44352a42-20211215-141135.mp4\r\n6.10_1061_Player7-f153ac423f61-20210610-222026.mp4 6.13_19160_Player932-5cbc4c40225f-20211130-173824.mp4\r\n6.10_1062_Player7-f153ac423f61-20210610-222527.mp4 6.13_19161_Player932-5cbc4c40225f-20211130-173925.mp4\r\n6.10_1063_Player7-f153ac423f61-20210610-223027.mp4 6.13_19162_Player932-5cbc4c40225f-20211130-174026.mp4\r\n6.10_1064_Player704-150e71c6ca3b-20210612-154004.mp4 6.13_19163_Player932-5cbc4c40225f-20211130-174128.mp4\r\n6.10_1065_Player704-150e71c6ca3b-20210612-154533.mp4 6.13_19164_Player932-61e9761a1668-20211130-173401.mp4\r\n6.10_1066_Player704-150e71c6ca3b-20210612-155138.mp4 6.13_19165_Player932-61e9761a1668-20211130-173502.mp4\r\n6.10_1067_Player704-150e71c6ca3b-20210612-155730.mp4 6.13_19166_Player932-61e9761a1668-20211130-173603.mp4\r\n6.10_1068_Player704-150e71c6ca3b-20210612-160311.mp4 6.13_19167_Player932-61e9761a1668-20211130-173704.mp4\r\n6.10_1069_Player704-217c9c5570ef-20210612-160825.mp4 6.13_19168_Player932-69e63e61574f-20211130-174238.mp4\r\n6.10_106_Player17-f153ac423f61-20210709-235310.mp4 6.13_19169_Player932-69e63e61574f-20211130-174340.mp4\r\n6.10_1070_Player704-217c9c5570ef-20210612-161411.mp4 6.13_1916_Player165-b7719d7ac80a-20211215-145356.mp4\r\n6.10_1071_Player704-217c9c5570ef-20210612-161956.mp4 6.13_19170_Player932-69e63e61574f-20211130-174441.mp4\r\n6.10_1072_Player704-2c45dab21568-20210612-163219.mp4 6.13_19171_Player932-69e63e61574f-20211130-174542.mp4\r\n6.10_1073_Player704-2c45dab21568-20210612-163739.mp4 6.13_19172_Player932-69e63e61574f-20211130-174643.mp4\r\n6.10_1074_Player704-413f504093eb-20210612-162427.mp4 6.13_19173_Player932-69e63e61574f-20211130-174746.mp4\r\n6.10_1075_Player704-413f504093eb-20210612-162958.mp4 6.13_19174_Player932-69f5a555cf4a-20211130-171421.mp4\r\n6.10_1076_Player704-6f7ebb5e31af-20210612-163751.mp4 6.13_19175_Player932-69f5a555cf4a-20211130-171522.mp4\r\n6.10_1077_Player704-6f7ebb5e31af-20210612-164255.mp4 6.13_19176_Player932-69f5a555cf4a-20211130-171623.mp4\r\n6.10_1078_Player704-6f7ebb5e31af-20210612-164800.mp4 6.13_19177_Player932-69f5a555cf4a-20211130-171724.mp4\r\n6.10_1079_Player704-f153ac423f61-20210612-152755.mp4 6.13_19178_Player932-69f5a555cf4a-20211130-171824.mp4\r\n6.10_107_Player17-f153ac423f61-20210710-000504.mp4 6.13_19179_Player932-69f5a555cf4a-20211130-171925.mp4\r\n6.10_1080_Player704-f153ac423f61-20210612-153321.mp4 6.13_1917_Player165-b7719d7ac80a-20211215-150109.mp4\r\n6.10_1081_Player704-f153ac423f61-20210612-153836.mp4 6.13_19180_Player932-69f5a555cf4a-20211130-172026.mp4\r\n6.10_1082_Player707-a41ba1d26af5-20210615-230939.mp4 6.13_19181_Player932-69f5a555cf4a-20211130-172126.mp4\r\n6.10_1083_Player707-a41ba1d26af5-20210615-231454.mp4 6.13_19182_Player932-69f5a555cf4a-20211130-172227.mp4\r\n6.10_1084_Player707-a41ba1d26af5-20210615-232008.mp4 6.13_19183_Player932-69f5a555cf4a-20211130-172327.mp4\r\n6.10_1085_Player707-a41ba1d26af5-20210615-232518.mp4 6.13_19184_Player932-69f5a555cf4a-20211130-172427.mp4\r\n6.10_1086_Player707-a41ba1d26af5-20210615-233029.mp4 6.13_19185_Player932-69f5a555cf4a-20211130-172528.mp4\r\n6.10_1087_Player707-a41ba1d26af5-20210615-233541.mp4 6.13_19186_Player932-69f5a555cf4a-20211130-172628.mp4\r\n6.10_1088_Player707-a41ba1d26af5-20210615-234045.mp4 6.13_19187_Player932-69f5a555cf4a-20211130-172728.mp4\r\n6.10_1089_Player707-a41ba1d26af5-20210615-234555.mp4 6.13_19188_Player932-69f5a555cf4a-20211130-172841.mp4\r\n6.10_108_Player17-f153ac423f61-20210710-001743.mp4 6.13_19189_Player932-875842d2e0bb-20211125-111839.mp4\r\n6.10_1090_Player707-a41ba1d26af5-20210615-235100.mp4 6.13_1918_Player165-b7719d7ac80a-20211215-150721.mp4\r\n6.10_1091_Player707-f153ac423f61-20210615-220812.mp4 6.13_19190_Player932-875842d2e0bb-20211125-112244.mp4\r\n6.10_1092_Player707-f153ac423f61-20210615-221346.mp4 6.13_19191_Player932-94c6d1a06c37-20211130-171324.mp4\r\n6.10_1093_Player707-f153ac423f61-20210615-221914.mp4 6.13_19192_Player932-cceebc05bd3f-20211130-173002.mp4\r\n6.10_1094_Player707-f153ac423f61-20210615-222419.mp4 6.13_19193_Player932-cceebc05bd3f-20211130-173103.mp4\r\n6.10_1095_Player707-f153ac423f61-20210615-223219.mp4 6.13_19194_Player932-cceebc05bd3f-20211130-173204.mp4\r\n6.10_1096_Player707-f153ac423f61-20210615-223724.mp4 6.13_19195_Player932-cceebc05bd3f-20211130-173305.mp4\r\n6.10_1097_Player707-f153ac423f61-20210615-224227.mp4 6.13_19196_Player932-cd6496334bc4-20211130-175210.mp4\r\n6.10_1098_Player707-f153ac423f61-20210615-224726.mp4 6.13_19197_Player932-f153ac423f61-20210804-145728.mp4\r\n6.10_1099_Player707-f153ac423f61-20210615-225239.mp4 6.13_19198_Player932-f153ac423f61-20210804-150052.mp4\r\n6.10_109_Player171-f153ac423f61-20210619-142347.mp4 6.13_19199_Player932-f153ac423f61-20210804-151100.mp4\r\n6.10_1100_Player707-f153ac423f61-20210615-225744.mp4 6.13_1919_Player165-b7719d7ac80a-20211215-151330.mp4\r\n6.10_1101_Player707-f153ac423f61-20210615-230246.mp4 6.13_191_Player107-f153ac423f61-20210811-123025.mp4\r\n6.10_1102_Player707-f153ac423f61-20210615-230750.mp4 6.13_19200_Player932-f153ac423f61-20210804-151406.mp4\r\n6.10_1103_Player714-476b197aa277-20210609-104030.mp4 6.13_19201_Player932-f153ac423f61-20210804-151653.mp4\r\n6.10_1104_Player714-f153ac423f61-20210609-104006.mp4 6.13_19202_Player932-f153ac423f61-20210804-152001.mp4\r\n6.10_1105_Player726-99e5026956ee-20210701-233320.mp4 6.13_19203_Player932-f153ac423f61-20210804-152307.mp4\r\n6.10_1106_Player726-c3197d403285-20210701-233304.mp4 6.13_19204_Player932-f153ac423f61-20210804-152631.mp4\r\n6.10_1107_Player726-f153ac423f61-20210701-224921.mp4 6.13_19205_Player932-f153ac423f61-20210804-152934.mp4\r\n6.10_1108_Player726-f153ac423f61-20210701-225559.mp4 6.13_19206_Player932-f153ac423f61-20210804-153345.mp4\r\n6.10_1109_Player726-f153ac423f61-20210701-230226.mp4 6.13_19207_Player932-f153ac423f61-20210804-153649.mp4\r\n6.10_110_Player172-f153ac423f61-20210623-185010.mp4 6.13_19208_Player932-f153ac423f61-20210804-154103.mp4\r\n6.10_1110_Player726-f153ac423f61-20210701-230946.mp4 6.13_19209_Player932-f153ac423f61-20210804-154407.mp4\r\n6.10_1111_Player726-f153ac423f61-20210701-231622.mp4 6.13_1920_Player165-d931d0ef4e8c-20211215-163045.mp4\r\n6.10_1112_Player726-f153ac423f61-20210701-232259.mp4 6.13_19210_Player932-f153ac423f61-20210804-154718.mp4\r\n6.10_1113_Player726-f153ac423f61-20210701-232925.mp4 6.13_19211_Player932-f153ac423f61-20210804-155022.mp4\r\n6.10_1114_Player73-f153ac423f61-20210609-104257.mp4 6.13_19212_Player932-f153ac423f61-20210804-155409.mp4\r\n6.10_1115_Player734-f153ac423f61-20210612-190758.mp4 6.13_19213_Player932-f153ac423f61-20210804-155727.mp4\r\n6.10_1116_Player734-f153ac423f61-20210612-191406.mp4 6.13_19214_Player932-f153ac423f61-20210804-160116.mp4\r\n6.10_1117_Player734-f153ac423f61-20210612-192044.mp4 6.13_19215_Player932-f153ac423f61-20210804-160407.mp4\r\n6.10_1118_Player734-f153ac423f61-20210612-192653.mp4 6.13_19216_Player932-f153ac423f61-20210804-160713.mp4\r\n6.10_1119_Player734-f153ac423f61-20210612-193229.mp4 6.13_19217_Player932-f153ac423f61-20210804-161021.mp4\r\n6.10_111_Player172-f153ac423f61-20210623-185520.mp4 6.13_19218_Player932-f153ac423f61-20210804-161330.mp4\r\n6.10_1120_Player734-f153ac423f61-20210612-193810.mp4 6.13_19219_Player932-f153ac423f61-20210804-161712.mp4\r\n6.10_1121_Player734-f153ac423f61-20210612-194329.mp4 6.13_1921_Player165-d931d0ef4e8c-20211215-163647.mp4\r\n6.10_1122_Player734-f153ac423f61-20210612-194845.mp4 6.13_19220_Player932-f153ac423f61-20210911-105926.mp4\r\n6.10_1123_Player734-f153ac423f61-20210612-195415.mp4 6.13_19221_Player932-f153ac423f61-20210911-110736.mp4\r\n6.10_1124_Player734-f153ac423f61-20210612-200053.mp4 6.13_19222_Player932-f153ac423f61-20210911-111455.mp4\r\n6.10_1125_Player734-f153ac423f61-20210612-200753.mp4 6.13_19223_Player932-f153ac423f61-20210911-112338.mp4\r\n6.10_1126_Player734-f153ac423f61-20210612-201308.mp4 6.13_19224_Player932-f153ac423f61-20210911-113050.mp4\r\n6.10_1127_Player734-f153ac423f61-20210612-201822.mp4 6.13_19225_Player932-f153ac423f61-20210911-114151.mp4\r\n6.10_1128_Player734-f153ac423f61-20210612-202345.mp4 6.13_19226_Player932-f153ac423f61-20210911-115019.mp4\r\n6.10_1129_Player734-f153ac423f61-20210612-202911.mp4 6.13_19227_Player932-f153ac423f61-20211125-080420.mp4\r\n6.10_112_Player172-f153ac423f61-20210623-190026.mp4 6.13_19228_Player932-f153ac423f61-20211125-080836.mp4\r\n6.10_1130_Player734-f153ac423f61-20210612-203445.mp4 6.13_19229_Player932-f153ac423f61-20211125-081242.mp4\r\n6.10_1131_Player734-f153ac423f61-20210612-204015.mp4 6.13_1922_Player165-d931d0ef4e8c-20211215-164250.mp4\r\n6.10_1132_Player734-f153ac423f61-20210614-080718.mp4 6.13_19230_Player932-f153ac423f61-20211125-081644.mp4\r\n6.10_1133_Player734-f24aefaeda34-20210612-204321.mp4 6.13_19231_Player932-f153ac423f61-20211125-082155.mp4\r\n6.10_1134_Player734-f24aefaeda34-20210612-204825.mp4 6.13_19232_Player932-f153ac423f61-20211125-082558.mp4\r\n6.10_1135_Player759-f153ac423f61-20210701-205223.mp4 6.13_19233_Player932-f153ac423f61-20211125-082959.mp4\r\n6.10_1136_Player759-f153ac423f61-20210701-210734.mp4 6.13_19234_Player932-f153ac423f61-20211125-083400.mp4\r\n6.10_1137_Player759-f153ac423f61-20210701-212243.mp4 6.13_19235_Player932-f153ac423f61-20211125-083909.mp4\r\n6.10_1138_Player759-f153ac423f61-20210701-213752.mp4 6.13_19236_Player932-f153ac423f61-20211125-084315.mp4\r\n6.10_1139_Player759-f153ac423f61-20210701-215252.mp4 6.13_19237_Player932-f153ac423f61-20211130-171142.mp4\r\n6.10_113_Player180-f153ac423f61-20210613-215519.mp4 6.13_19238_Player932-f153ac423f61-20211130-171246.mp4\r\n6.10_1140_Player759-f153ac423f61-20210701-220751.mp4 6.13_19239_Player932-fe07364ba2b5-20211125-141726.mp4\r\n6.10_1141_Player76-f153ac423f61-20210615-103702.mp4 6.13_1923_Player165-d931d0ef4e8c-20211215-164854.mp4\r\n6.10_1142_Player76-f153ac423f61-20210615-104735.mp4 6.13_19240_Player932-fe07364ba2b5-20211125-142136.mp4\r\n6.10_1143_Player76-f153ac423f61-20210615-105801.mp4 6.13_19241_Player932-fe07364ba2b5-20211125-142540.mp4\r\n6.10_1144_Player76-f153ac423f61-20210615-110625.mp4 6.13_19242_Player932-fe07364ba2b5-20211125-142946.mp4\r\n6.10_1145_Player76-f153ac423f61-20210615-111140.mp4 6.13_19243_Player932-fe07364ba2b5-20211125-143357.mp4\r\n6.10_1146_Player76-f153ac423f61-20210615-111640.mp4 6.13_19244_Player932-fe07364ba2b5-20211125-143806.mp4\r\n6.10_1147_Player76-f153ac423f61-20210615-112206.mp4 6.13_19245_Player932-fe07364ba2b5-20211125-144210.mp4\r\n6.10_1148_Player76-f153ac423f61-20210615-112736.mp4 6.13_19246_Player933-678a8b72fcba-20210727-111230.mp4\r\n6.10_1149_Player76-f153ac423f61-20210615-113308.mp4 6.13_19247_Player933-678a8b72fcba-20210727-112853.mp4\r\n6.10_114_Player180-f153ac423f61-20210613-220107.mp4 6.13_19248_Player933-678a8b72fcba-20210727-114617.mp4\r\n6.10_1150_Player76-f153ac423f61-20210615-114048.mp4 6.13_19249_Player933-678a8b72fcba-20210727-120356.mp4\r\n6.10_1151_Player76-f153ac423f61-20210615-114824.mp4 6.13_1924_Player165-d931d0ef4e8c-20211215-165500.mp4\r\n6.10_1152_Player76-f153ac423f61-20210615-115529.mp4 6.13_19250_Player933-678a8b72fcba-20210727-122122.mp4\r\n6.10_1153_Player76-f153ac423f61-20210615-120224.mp4 6.13_19251_Player933-678a8b72fcba-20210727-123847.mp4\r\n6.10_1154_Player76-f153ac423f61-20210615-120747.mp4 6.13_19252_Player933-678a8b72fcba-20210727-125459.mp4\r\n6.10_1155_Player76-f153ac423f61-20210615-121247.mp4 6.13_19253_Player933-678a8b72fcba-20210727-131109.mp4\r\n6.10_1156_Player76-f153ac423f61-20210615-121747.mp4 6.13_19254_Player933-678a8b72fcba-20210727-132843.mp4\r\n6.10_1157_Player76-f153ac423f61-20210615-122328.mp4 6.13_19255_Player933-678a8b72fcba-20210727-134455.mp4\r\n6.10_1158_Player763-f153ac423f61-20210613-130859.mp4 6.13_19256_Player933-678a8b72fcba-20210727-140312.mp4\r\n6.10_1159_Player763-f153ac423f61-20210613-131410.mp4 6.13_19257_Player933-678a8b72fcba-20210727-142031.mp4\r\n6.10_115_Player180-f153ac423f61-20210613-220656.mp4 6.13_19258_Player933-678a8b72fcba-20210727-143801.mp4\r\n6.10_1160_Player763-f153ac423f61-20210613-133506.mp4 6.13_19259_Player933-678a8b72fcba-20210727-145514.mp4\r\n6.10_1161_Player763-f153ac423f61-20210614-120916.mp4 6.13_1925_Player165-d931d0ef4e8c-20211215-170102.mp4\r\n6.10_1162_Player763-f153ac423f61-20210614-121458.mp4 6.13_19260_Player933-678a8b72fcba-20210727-151131.mp4\r\n6.10_1163_Player763-f153ac423f61-20210614-122146.mp4 6.13_19261_Player933-ef857d085c6f-20210727-153952.mp4\r\n6.10_1164_Player763-f153ac423f61-20210614-122700.mp4 6.13_19262_Player933-ef857d085c6f-20210727-155615.mp4\r\n6.10_1165_Player763-f153ac423f61-20210614-123208.mp4 6.13_19263_Player933-ef857d085c6f-20210727-161236.mp4\r\n6.10_1166_Player763-f153ac423f61-20210614-123717.mp4 6.13_19264_Player933-ef857d085c6f-20210727-162850.mp4\r\n6.10_1167_Player763-f153ac423f61-20210614-124223.mp4 6.13_19265_Player933-ef857d085c6f-20210727-164820.mp4\r\n6.10_1168_Player763-f153ac423f61-20210614-124734.mp4 6.13_19266_Player933-ef857d085c6f-20210727-170554.mp4\r\n6.10_1169_Player763-f153ac423f61-20210614-125249.mp4 6.13_19267_Player933-ef857d085c6f-20210727-172327.mp4\r\n6.10_116_Player184-f153ac423f61-20210625-200305.mp4 6.13_19268_Player933-ef857d085c6f-20210727-173957.mp4\r\n6.10_1170_Player763-f153ac423f61-20210614-125756.mp4 6.13_19269_Player933-ef857d085c6f-20210727-175839.mp4\r\n6.10_1171_Player763-f153ac423f61-20210614-130302.mp4 6.13_1926_Player165-d931d0ef4e8c-20211215-170708.mp4\r\n6.10_1172_Player763-f153ac423f61-20210614-130819.mp4 6.13_19270_Player933-ef857d085c6f-20210727-181742.mp4\r\n6.10_1173_Player767-f153ac423f61-20210613-132139.mp4 6.13_19271_Player933-f153ac423f61-20210727-061953.mp4\r\n6.10_1174_Player767-f153ac423f61-20210613-132645.mp4 6.13_19272_Player933-f153ac423f61-20210727-063625.mp4\r\n6.10_1175_Player767-f153ac423f61-20210613-133146.mp4 6.13_19273_Player933-f153ac423f61-20210727-065454.mp4\r\n6.10_1176_Player767-f153ac423f61-20210613-133646.mp4 6.13_19274_Player933-f153ac423f61-20210727-071108.mp4\r\n6.10_1177_Player767-f153ac423f61-20210613-134145.mp4 6.13_19275_Player933-f153ac423f61-20210727-072719.mp4\r\n6.10_1178_Player767-f153ac423f61-20210613-134644.mp4 6.13_19276_Player933-f153ac423f61-20210727-074438.mp4\r\n6.10_1179_Player767-f153ac423f61-20210613-135143.mp4 6.13_19277_Player933-f153ac423f61-20210727-080055.mp4\r\n6.10_117_Player184-f153ac423f61-20210625-200929.mp4 6.13_19278_Player933-f153ac423f61-20210727-081714.mp4\r\n6.10_1180_Player767-f153ac423f61-20210613-135644.mp4 6.13_19279_Player933-f153ac423f61-20210727-083445.mp4\r\n6.10_1181_Player767-f153ac423f61-20210613-140333.mp4 6.13_1927_Player165-d931d0ef4e8c-20211215-171311.mp4\r\n6.10_1182_Player767-f153ac423f61-20210613-140835.mp4 6.13_19280_Player933-f153ac423f61-20210727-085201.mp4\r\n6.10_1183_Player767-f153ac423f61-20210613-141334.mp4 6.13_19281_Player933-f153ac423f61-20210727-091035.mp4\r\n6.10_1184_Player767-f153ac423f61-20210613-141833.mp4 6.13_19282_Player933-f153ac423f61-20210727-092652.mp4\r\n6.10_1185_Player767-f153ac423f61-20210613-142333.mp4 6.13_19283_Player933-f153ac423f61-20210727-094518.mp4\r\n6.10_1186_Player767-f153ac423f61-20210613-142832.mp4 6.13_19284_Player933-f153ac423f61-20210727-100238.mp4\r\n6.10_1187_Player767-f153ac423f61-20210613-143330.mp4 6.13_19285_Player933-f153ac423f61-20210727-102008.mp4\r\n6.10_1188_Player767-f153ac423f61-20210613-143829.mp4 6.13_19286_Player933-f153ac423f61-20210727-103731.mp4\r\n6.10_1189_Player767-f153ac423f61-20210613-144329.mp4 6.13_19287_Player934-c78eb9d230df-20211130-210433.mp4\r\n6.10_118_Player184-f153ac423f61-20210625-201544.mp4 6.13_19288_Player934-c78eb9d230df-20211130-210534.mp4\r\n6.10_1190_Player767-f153ac423f61-20210613-144829.mp4 6.13_19289_Player934-c78eb9d230df-20211130-210634.mp4\r\n6.10_1191_Player767-f153ac423f61-20210613-145329.mp4 6.13_1928_Player165-f153ac423f61-20211215-115305.mp4\r\n6.10_1192_Player767-f153ac423f61-20210613-145829.mp4 6.13_19290_Player934-c78eb9d230df-20211130-210735.mp4\r\n6.10_1193_Player767-f153ac423f61-20210613-150328.mp4 6.13_19291_Player934-c78eb9d230df-20211130-210835.mp4\r\n6.10_1194_Player767-f153ac423f61-20210613-150835.mp4 6.13_19292_Player934-c78eb9d230df-20211130-210935.mp4\r\n6.10_1195_Player767-f153ac423f61-20210613-151344.mp4 6.13_19293_Player934-c78eb9d230df-20211130-211035.mp4\r\n6.10_1196_Player78-f153ac423f61-20210630-112548.mp4 6.13_19294_Player934-c78eb9d230df-20211130-211136.mp4\r\n6.10_1197_Player78-f153ac423f61-20210630-113101.mp4 6.13_19295_Player934-c78eb9d230df-20211130-211236.mp4\r\n6.10_1198_Player78-f153ac423f61-20210630-113605.mp4 6.13_19296_Player934-c78eb9d230df-20211130-211337.mp4\r\n6.10_1199_Player78-f153ac423f61-20210630-114115.mp4 6.13_19297_Player934-c78eb9d230df-20211130-211437.mp4\r\n6.10_119_Player184-f153ac423f61-20210625-202122.mp4 6.13_19298_Player934-c78eb9d230df-20211130-211538.mp4\r\n6.10_1200_Player78-f153ac423f61-20210630-114626.mp4 6.13_19299_Player934-c78eb9d230df-20211130-211639.mp4\r\n6.10_1201_Player78-f153ac423f61-20210630-115142.mp4 6.13_1929_Player165-f153ac423f61-20211215-121557.mp4\r\n6.10_1202_Player78-f153ac423f61-20210630-115653.mp4 6.13_192_Player107-f153ac423f61-20210811-123129.mp4\r\n6.10_1203_Player78-f153ac423f61-20210630-120404.mp4 6.13_19300_Player934-c78eb9d230df-20211130-211739.mp4\r\n6.10_1204_Player78-f153ac423f61-20210630-120941.mp4 6.13_19301_Player934-c78eb9d230df-20211130-211840.mp4\r\n6.10_1205_Player78-f153ac423f61-20210630-121449.mp4 6.13_19302_Player934-c78eb9d230df-20211130-211940.mp4\r\n6.10_1206_Player782-f153ac423f61-20210621-135747.mp4 6.13_19303_Player934-c78eb9d230df-20211130-212040.mp4\r\n6.10_1207_Player782-f153ac423f61-20210621-140814.mp4 6.13_19304_Player934-c78eb9d230df-20211130-212145.mp4\r\n6.10_1208_Player782-f153ac423f61-20210621-141809.mp4 6.13_19305_Player934-c78eb9d230df-20211130-212245.mp4\r\n6.10_1209_Player782-f153ac423f61-20210621-145838.mp4 6.13_19306_Player934-c78eb9d230df-20211130-212345.mp4\r\n6.10_120_Player184-f153ac423f61-20210625-202718.mp4 6.13_19307_Player934-c78eb9d230df-20211130-212445.mp4\r\n6.10_1210_Player782-f153ac423f61-20210621-150712.mp4 6.13_19308_Player934-c78eb9d230df-20211130-212546.mp4\r\n6.10_1211_Player782-f153ac423f61-20210621-151554.mp4 6.13_19309_Player934-c78eb9d230df-20211130-212646.mp4\r\n6.10_1212_Player782-f153ac423f61-20210621-152531.mp4 6.13_1930_Player166-5ead945ca31a-20211109-115417.mp4\r\n6.10_1213_Player782-f153ac423f61-20210621-153512.mp4 6.13_19310_Player934-c78eb9d230df-20211130-212752.mp4\r\n6.10_1214_Player782-f153ac423f61-20210621-154626.mp4 6.13_19311_Player934-c78eb9d230df-20211130-212852.mp4\r\n6.10_1215_Player782-f153ac423f61-20210621-155518.mp4 6.13_19312_Player934-c78eb9d230df-20211130-212952.mp4\r\n6.10_1216_Player786-1b73c4764e53-20210629-230839.mp4 6.13_19313_Player934-c78eb9d230df-20211130-213052.mp4\r\n6.10_1217_Player786-1b73c4764e53-20210629-231342.mp4 6.13_19314_Player934-c78eb9d230df-20211130-213152.mp4\r\n6.10_1218_Player786-1b73c4764e53-20210629-231845.mp4 6.13_19315_Player934-c78eb9d230df-20211130-213252.mp4\r\n6.10_1219_Player786-1f4da319150a-20210629-221135.mp4 6.13_19316_Player934-c78eb9d230df-20211130-213352.mp4\r\n6.10_121_Player184-f153ac423f61-20210625-203326.mp4 6.13_19317_Player934-c78eb9d230df-20211130-213553.mp4\r\n6.10_1220_Player786-1f4da319150a-20210629-221814.mp4 6.13_19318_Player934-c78eb9d230df-20211130-213653.mp4\r\n6.10_1221_Player786-1f4da319150a-20210629-222511.mp4 6.13_19319_Player934-c78eb9d230df-20211130-213754.mp4\r\n6.10_1222_Player786-1f4da319150a-20210629-223203.mp4 6.13_1931_Player166-5ead945ca31a-20211109-115615.mp4\r\n6.10_1223_Player786-2819556d35af-20210629-224556.mp4 6.13_19320_Player934-c78eb9d230df-20211130-213854.mp4\r\n6.10_1224_Player786-2819556d35af-20210629-225102.mp4 6.13_19321_Player934-c78eb9d230df-20211130-213955.mp4\r\n6.10_1225_Player786-2819556d35af-20210629-225602.mp4 6.13_19322_Player934-c78eb9d230df-20211130-214055.mp4\r\n6.10_1226_Player786-2819556d35af-20210629-230104.mp4 6.13_19323_Player934-c78eb9d230df-20211130-214155.mp4\r\n6.10_1227_Player786-2819556d35af-20210629-230603.mp4 6.13_19324_Player934-c78eb9d230df-20211130-214256.mp4\r\n6.10_1228_Player786-48b5fb389e50-20210629-231909.mp4 6.13_19325_Player934-c78eb9d230df-20211130-214401.mp4\r\n6.10_1229_Player786-48b5fb389e50-20210629-232410.mp4 6.13_19326_Player934-c78eb9d230df-20211130-214502.mp4\r\n6.10_122_Player198-f153ac423f61-20210612-075924.mp4 6.13_19327_Player934-c78eb9d230df-20211130-214602.mp4\r\n6.10_1230_Player786-48b5fb389e50-20210629-232921.mp4 6.13_19328_Player934-c78eb9d230df-20211130-214702.mp4\r\n6.10_1231_Player786-48b5fb389e50-20210629-233512.mp4 6.13_19329_Player934-c78eb9d230df-20211130-214802.mp4\r\n6.10_1232_Player786-48b5fb389e50-20210629-234039.mp4 6.13_1932_Player166-5ead945ca31a-20211109-115811.mp4\r\n6.10_1233_Player786-abc096b12e1d-20210629-234405.mp4 6.13_19330_Player934-c78eb9d230df-20211130-214902.mp4\r\n6.10_1234_Player786-da23c9206104-20210629-230827.mp4 6.13_19331_Player934-c78eb9d230df-20211130-215103.mp4\r\n6.10_1235_Player786-f153ac423f61-20210625-152110.mp4 6.13_19332_Player934-c78eb9d230df-20211130-215203.mp4\r\n6.10_1236_Player786-f153ac423f61-20210625-152658.mp4 6.13_19333_Player934-c78eb9d230df-20211130-215303.mp4\r\n6.10_1237_Player786-f153ac423f61-20210625-153212.mp4 6.13_19334_Player934-c78eb9d230df-20211130-215404.mp4\r\n6.10_1238_Player786-f153ac423f61-20210625-153725.mp4 6.13_19335_Player934-c78eb9d230df-20211130-215504.mp4\r\n6.10_1239_Player786-f153ac423f61-20210625-154244.mp4 6.13_19336_Player934-c78eb9d230df-20211130-215604.mp4\r\n6.10_123_Player201-f153ac423f61-20210619-192953.mp4 6.13_19337_Player934-c78eb9d230df-20211130-215704.mp4\r\n6.10_1240_Player786-f153ac423f61-20210625-154803.mp4 6.13_19338_Player934-c78eb9d230df-20211130-215805.mp4\r\n6.10_1241_Player786-f153ac423f61-20210625-155504.mp4 6.13_19339_Player934-c78eb9d230df-20211130-215905.mp4\r\n6.10_1242_Player786-f153ac423f61-20210625-160125.mp4 6.13_1933_Player166-5ead945ca31a-20211109-120004.mp4\r\n6.10_1243_Player786-f153ac423f61-20210625-160757.mp4 6.13_19340_Player934-c78eb9d230df-20211130-220105.mp4\r\n6.10_1244_Player786-f153ac423f61-20210625-161411.mp4 6.13_19341_Player934-c78eb9d230df-20211130-220206.mp4\r\n6.10_1245_Player786-f153ac423f61-20210629-215436.mp4 6.13_19342_Player934-c78eb9d230df-20211130-220306.mp4\r\n6.10_1246_Player786-f153ac423f61-20210629-220110.mp4 6.13_19343_Player934-c78eb9d230df-20211130-220406.mp4\r\n6.10_1247_Player786-f153ac423f61-20210629-220714.mp4 6.13_19344_Player934-c78eb9d230df-20211130-220507.mp4\r\n6.10_1248_Player802-16ef36532e2d-20210625-200525.mp4 6.13_19345_Player934-c78eb9d230df-20211130-220607.mp4\r\n6.10_1249_Player802-16ef36532e2d-20210625-201148.mp4 6.13_19346_Player934-c78eb9d230df-20211130-220707.mp4\r\n6.10_124_Player201-f153ac423f61-20210619-193930.mp4 6.13_19347_Player934-c78eb9d230df-20211130-220807.mp4\r\n6.10_1250_Player802-27628ea602f6-20210625-194124.mp4 6.13_19348_Player934-c78eb9d230df-20211130-221007.mp4\r\n6.10_1251_Player802-45de8e8906fa-20210625-200258.mp4 6.13_19349_Player934-c78eb9d230df-20211130-221108.mp4\r\n6.10_1252_Player802-4ae52bd350ce-20210625-195634.mp4 6.13_1934_Player166-5ead945ca31a-20211109-120200.mp4\r\n6.10_1253_Player802-4e0e75e9fd40-20210625-195758.mp4 6.13_19350_Player934-c78eb9d230df-20211130-221208.mp4\r\n6.10_1254_Player802-579b93c2564c-20210625-192558.mp4 6.13_19351_Player934-c78eb9d230df-20211130-221308.mp4\r\n6.10_1255_Player802-579b93c2564c-20210625-193105.mp4 6.13_19352_Player934-c78eb9d230df-20211130-221408.mp4\r\n6.10_1256_Player802-579b93c2564c-20210625-193622.mp4 6.13_19353_Player934-c78eb9d230df-20211130-221509.mp4\r\n6.10_1257_Player802-90aad814b352-20210625-194048.mp4 6.13_19354_Player934-c78eb9d230df-20211130-221609.mp4\r\n6.10_1258_Player802-ddf8e3c93ab5-20210625-191632.mp4 6.13_19355_Player934-c78eb9d230df-20211130-221709.mp4\r\n6.10_1259_Player802-ddf8e3c93ab5-20210625-192144.mp4 6.13_19356_Player934-c78eb9d230df-20211130-221809.mp4\r\n6.10_125_Player201-f153ac423f61-20210619-194835.mp4 6.13_19357_Player934-c78eb9d230df-20211130-221909.mp4\r\n6.10_1260_Player802-f153ac423f61-20210625-191403.mp4 6.13_19358_Player934-c78eb9d230df-20211130-222110.mp4\r\n6.10_1261_Player802-fbe31376ccef-20210625-194341.mp4 6.13_19359_Player934-c78eb9d230df-20211130-222210.mp4\r\n6.10_1262_Player802-fbe31376ccef-20210625-194846.mp4 6.13_1935_Player166-5ead945ca31a-20211109-120342.mp4\r\n6.10_1263_Player802-fbe31376ccef-20210625-195404.mp4 6.13_19360_Player934-c78eb9d230df-20211130-222311.mp4\r\n6.10_1264_Player802-fdd01abca185-20210625-201800.mp4 6.13_19361_Player934-c78eb9d230df-20211130-222411.mp4\r\n6.10_1265_Player808-f153ac423f61-20210615-221535.mp4 6.13_19362_Player934-c78eb9d230df-20211130-222511.mp4\r\n6.10_1266_Player809-f153ac423f61-20210620-155955.mp4 6.13_19363_Player934-c78eb9d230df-20211130-222612.mp4\r\n6.10_1267_Player809-f153ac423f61-20210620-160601.mp4 6.13_19364_Player934-c78eb9d230df-20211130-222712.mp4\r\n6.10_1268_Player809-f153ac423f61-20210620-161143.mp4 6.13_19365_Player934-c78eb9d230df-20211130-222812.mp4\r\n6.10_1269_Player809-f153ac423f61-20210620-161708.mp4 6.13_19366_Player934-c78eb9d230df-20211130-222912.mp4\r\n6.10_126_Player201-f153ac423f61-20210619-195731.mp4 6.13_19367_Player934-c78eb9d230df-20211130-223113.mp4\r\n6.10_1270_Player809-f153ac423f61-20210620-162224.mp4 6.13_19368_Player934-c78eb9d230df-20211130-223314.mp4\r\n6.10_1271_Player809-f153ac423f61-20210620-162812.mp4 6.13_19369_Player934-c78eb9d230df-20211130-223414.mp4\r\n6.10_1272_Player809-f153ac423f61-20210620-163415.mp4 6.13_1936_Player166-5ead945ca31a-20211109-120523.mp4\r\n6.10_1273_Player809-f153ac423f61-20210620-164000.mp4 6.13_19370_Player934-c78eb9d230df-20211130-223614.mp4\r\n6.10_1274_Player813-94050f681037-20210626-124013.mp4 6.13_19371_Player934-c78eb9d230df-20211130-223715.mp4\r\n6.10_1275_Player813-94050f681037-20210626-124529.mp4 6.13_19372_Player934-c78eb9d230df-20211130-223815.mp4\r\n6.10_1276_Player813-94050f681037-20210626-125037.mp4 6.13_19373_Player934-c78eb9d230df-20211130-223916.mp4\r\n6.10_1277_Player813-94050f681037-20210626-125543.mp4 6.13_19374_Player934-c78eb9d230df-20211130-224017.mp4\r\n6.10_1278_Player813-94050f681037-20210626-130048.mp4 6.13_19375_Player934-c78eb9d230df-20211130-224217.mp4\r\n6.10_1279_Player813-94050f681037-20210626-130551.mp4 6.13_19376_Player934-c78eb9d230df-20211130-224430.mp4\r\n6.10_127_Player201-f153ac423f61-20210619-200608.mp4 6.13_19377_Player934-c78eb9d230df-20211130-224638.mp4\r\n6.10_1280_Player813-94050f681037-20210626-131055.mp4 6.13_19378_Player934-c78eb9d230df-20211130-224939.mp4\r\n6.10_1281_Player813-94050f681037-20210626-131600.mp4 6.13_19379_Player934-c78eb9d230df-20211130-225340.mp4\r\n6.10_1282_Player813-94050f681037-20210626-132105.mp4 6.13_1937_Player166-5ead945ca31a-20211109-120722.mp4\r\n6.10_1283_Player813-94050f681037-20210626-132610.mp4 6.13_19380_Player934-f153ac423f61-20211130-210231.mp4\r\n6.10_1284_Player813-94050f681037-20210626-133117.mp4 6.13_19381_Player934-f153ac423f61-20211130-210332.mp4\r\n6.10_1285_Player813-94050f681037-20210626-133622.mp4 6.13_19382_Player935-f153ac423f61-20211224-175331.mp4\r\n6.10_1286_Player813-94050f681037-20210626-134128.mp4 6.13_19383_Player935-f153ac423f61-20211224-180249.mp4\r\n6.10_1287_Player813-94050f681037-20210626-134633.mp4 6.13_19384_Player935-f153ac423f61-20211224-181120.mp4\r\n6.10_1288_Player813-f153ac423f61-20210626-104746.mp4 6.13_19385_Player935-f153ac423f61-20211224-181951.mp4\r\n6.10_1289_Player813-f153ac423f61-20210626-105439.mp4 6.13_19386_Player936-f153ac423f61-20211110-095951.mp4\r\n6.10_128_Player201-f153ac423f61-20210619-201504.mp4 6.13_19387_Player936-f153ac423f61-20211110-100609.mp4\r\n6.10_1290_Player813-f153ac423f61-20210626-105953.mp4 6.13_19388_Player936-f153ac423f61-20211110-101213.mp4\r\n6.10_1291_Player813-f153ac423f61-20210626-110457.mp4 6.13_19389_Player936-f153ac423f61-20211110-101920.mp4\r\n6.10_1292_Player813-f153ac423f61-20210626-111039.mp4 6.13_1938_Player166-5ead945ca31a-20211109-120921.mp4\r\n6.10_1293_Player813-f153ac423f61-20210626-111549.mp4 6.13_19390_Player936-f153ac423f61-20211110-102624.mp4\r\n6.10_1294_Player813-f153ac423f61-20210626-112100.mp4 6.13_19391_Player936-f153ac423f61-20211110-103327.mp4\r\n6.10_1295_Player813-f153ac423f61-20210626-112737.mp4 6.13_19392_Player936-f153ac423f61-20211110-104034.mp4\r\n6.10_1296_Player813-f153ac423f61-20210626-113300.mp4 6.13_19393_Player936-f153ac423f61-20211110-104639.mp4\r\n6.10_1297_Player813-f153ac423f61-20210626-113827.mp4 6.13_19394_Player936-f153ac423f61-20211110-105246.mp4\r\n6.10_1298_Player813-f153ac423f61-20210626-114332.mp4 6.13_19395_Player936-f153ac423f61-20211110-105852.mp4\r\n6.10_1299_Player813-f153ac423f61-20210626-114837.mp4 6.13_19396_Player936-f153ac423f61-20211110-110456.mp4\r\n6.10_129_Player201-f153ac423f61-20210619-202542.mp4 6.13_19397_Player936-f153ac423f61-20211110-111204.mp4\r\n6.10_1300_Player813-f153ac423f61-20210626-115343.mp4 6.13_19398_Player936-f153ac423f61-20211110-111810.mp4\r\n6.10_1301_Player813-f153ac423f61-20210626-115850.mp4 6.13_19399_Player936-f153ac423f61-20211110-112415.mp4\r\n6.10_1302_Player813-f153ac423f61-20210626-120353.mp4 6.13_1939_Player166-5ead945ca31a-20211109-121118.mp4\r\n6.10_1303_Player813-f153ac423f61-20210626-120859.mp4 6.13_193_Player107-f153ac423f61-20210811-123232.mp4\r\n6.10_1304_Player813-f153ac423f61-20210626-121404.mp4 6.13_19400_Player936-f153ac423f61-20211110-113018.mp4\r\n6.10_1305_Player813-f153ac423f61-20210626-121909.mp4 6.13_19401_Player936-f153ac423f61-20211110-113620.mp4\r\n6.10_1306_Player813-f153ac423f61-20210626-122411.mp4 6.13_19402_Player936-f153ac423f61-20211110-114324.mp4\r\n6.10_1307_Player813-f153ac423f61-20210626-122916.mp4 6.13_19403_Player936-f153ac423f61-20211110-115035.mp4\r\n6.10_1308_Player813-f153ac423f61-20210626-123424.mp4 6.13_19404_Player936-f153ac423f61-20211110-115745.mp4\r\n6.10_1309_Player813-f153ac423f61-20210626-123933.mp4 6.13_19405_Player937-f153ac423f61-20211205-002418.mp4\r\n6.10_130_Player201-f153ac423f61-20210619-203428.mp4 6.13_19406_Player938-66082f50fd05-20210925-125017.mp4\r\n6.10_1310_Player815-f153ac423f61-20210608-160706.mp4 6.13_19407_Player938-66082f50fd05-20210925-125142.mp4\r\n6.10_1311_Player829-f153ac423f61-20210629-100347.mp4 6.13_19408_Player938-66082f50fd05-20210925-125306.mp4\r\n6.10_1312_Player829-f153ac423f61-20210629-100917.mp4 6.13_19409_Player938-66082f50fd05-20210925-125426.mp4\r\n6.10_1313_Player829-f153ac423f61-20210629-101434.mp4 6.13_1940_Player166-5ead945ca31a-20211109-121310.mp4\r\n6.10_1314_Player829-f153ac423f61-20210629-102016.mp4 6.13_19410_Player938-66082f50fd05-20210925-125544.mp4\r\n6.10_1315_Player829-f153ac423f61-20210629-102541.mp4 6.13_19411_Player938-66082f50fd05-20210925-125702.mp4\r\n6.10_1316_Player829-f153ac423f61-20210629-103058.mp4 6.13_19412_Player938-66082f50fd05-20210925-125824.mp4\r\n6.10_1317_Player829-f153ac423f61-20210629-103612.mp4 6.13_19413_Player938-696c7617cc96-20210909-114010.mp4\r\n6.10_1318_Player829-f153ac423f61-20210629-104134.mp4 6.13_19414_Player938-696c7617cc96-20210909-114826.mp4\r\n6.10_1319_Player829-f153ac423f61-20210629-104646.mp4 6.13_19415_Player938-696c7617cc96-20210909-115632.mp4\r\n6.10_131_Player201-f153ac423f61-20210619-204312.mp4 6.13_19416_Player938-696c7617cc96-20210909-120445.mp4\r\n6.10_1320_Player829-f153ac423f61-20210629-105307.mp4 6.13_19417_Player938-696c7617cc96-20210909-121251.mp4\r\n6.10_1321_Player829-f153ac423f61-20210629-105815.mp4 6.13_19418_Player938-696c7617cc96-20210909-122206.mp4\r\n6.10_1322_Player829-f153ac423f61-20210629-110316.mp4 6.13_19419_Player938-696c7617cc96-20210909-123245.mp4\r\n6.10_1323_Player829-f153ac423f61-20210629-110816.mp4 6.13_1941_Player166-f153ac423f61-20211109-110035.mp4\r\n6.10_1324_Player829-f153ac423f61-20210629-111316.mp4 6.13_19420_Player938-696c7617cc96-20210909-124052.mp4\r\n6.10_1325_Player829-f153ac423f61-20210629-111817.mp4 6.13_19421_Player938-696c7617cc96-20210909-124901.mp4\r\n6.10_1326_Player829-f153ac423f61-20210629-112317.mp4 6.13_19422_Player938-696c7617cc96-20210909-125716.mp4\r\n6.10_1327_Player829-f153ac423f61-20210629-112820.mp4 6.13_19423_Player938-696c7617cc96-20210909-130422.mp4\r\n6.10_1328_Player829-f153ac423f61-20210629-113321.mp4 6.13_19424_Player938-696c7617cc96-20210909-131126.mp4\r\n6.10_1329_Player829-f153ac423f61-20210629-113831.mp4 6.13_19425_Player938-696c7617cc96-20210909-131934.mp4\r\n6.10_132_Player201-f153ac423f61-20210619-205205.mp4 6.13_19426_Player938-696c7617cc96-20210909-132739.mp4\r\n6.10_1330_Player829-f153ac423f61-20210629-114345.mp4 6.13_19427_Player938-696c7617cc96-20210909-133817.mp4\r\n6.10_1331_Player829-f153ac423f61-20210629-114911.mp4 6.13_19428_Player938-696c7617cc96-20210909-134524.mp4\r\n6.10_1332_Player829-f153ac423f61-20210629-115446.mp4 6.13_19429_Player938-696c7617cc96-20210909-135336.mp4\r\n6.10_1333_Player829-f153ac423f61-20210629-115956.mp4 6.13_1942_Player166-f153ac423f61-20211109-110205.mp4\r\n6.10_1334_Player829-f153ac423f61-20210629-120515.mp4 6.13_19430_Player938-696c7617cc96-20210909-140042.mp4\r\n6.10_1335_Player829-f153ac423f61-20210629-121030.mp4 6.13_19431_Player938-696c7617cc96-20210909-140749.mp4\r\n6.10_1336_Player829-f153ac423f61-20210629-121547.mp4 6.13_19432_Player938-696c7617cc96-20210909-141455.mp4\r\n6.10_1337_Player836-f153ac423f61-20210612-100013.mp4 6.13_19433_Player938-696c7617cc96-20210909-142413.mp4\r\n6.10_1338_Player836-f153ac423f61-20210612-102130.mp4 6.13_19434_Player938-696c7617cc96-20210909-143219.mp4\r\n6.10_1339_Player836-f153ac423f61-20210612-104424.mp4 6.13_19435_Player938-696c7617cc96-20210909-143925.mp4\r\n6.10_133_Player201-f153ac423f61-20210619-210054.mp4 6.13_19436_Player938-696c7617cc96-20210909-144731.mp4\r\n6.10_1340_Player836-f153ac423f61-20210630-104931.mp4 6.13_19437_Player938-696c7617cc96-20210909-145436.mp4\r\n6.10_1341_Player836-f153ac423f61-20210630-105504.mp4 6.13_19438_Player938-696c7617cc96-20210909-150143.mp4\r\n6.10_1342_Player836-f153ac423f61-20210630-110014.mp4 6.13_19439_Player938-696c7617cc96-20210909-151118.mp4\r\n6.10_1343_Player836-f153ac423f61-20210630-110525.mp4 6.13_1943_Player166-f153ac423f61-20211109-110315.mp4\r\n6.10_1344_Player836-f153ac423f61-20210630-111037.mp4 6.13_19440_Player938-696c7617cc96-20210909-151938.mp4\r\n6.10_1345_Player836-f153ac423f61-20210630-111551.mp4 6.13_19441_Player938-696c7617cc96-20210909-153026.mp4\r\n6.10_1346_Player837-f153ac423f61-20210619-214027.mp4 6.13_19442_Player938-696c7617cc96-20210909-153833.mp4\r\n6.10_1347_Player837-f153ac423f61-20210619-214619.mp4 6.13_19443_Player938-696c7617cc96-20210909-154644.mp4\r\n6.10_1348_Player837-f153ac423f61-20210619-215204.mp4 6.13_19444_Player938-696c7617cc96-20210909-155606.mp4\r\n6.10_1349_Player837-f153ac423f61-20210619-215757.mp4 6.13_19445_Player938-696c7617cc96-20210909-160413.mp4\r\n6.10_134_Player201-f153ac423f61-20210619-211005.mp4 6.13_19446_Player938-696c7617cc96-20210909-161223.mp4\r\n6.10_1350_Player837-f153ac423f61-20210619-220347.mp4 6.13_19447_Player938-696c7617cc96-20210909-162034.mp4\r\n6.10_1351_Player846-f153ac423f61-20210612-000223.mp4 6.13_19448_Player938-696c7617cc96-20210909-162843.mp4\r\n6.10_1352_Player846-f153ac423f61-20210612-000843.mp4 6.13_19449_Player938-f153ac423f61-20210909-105917.mp4\r\n6.10_1353_Player846-f153ac423f61-20210612-001456.mp4 6.13_1944_Player166-f153ac423f61-20211109-110426.mp4\r\n6.10_1354_Player846-f153ac423f61-20210612-002046.mp4 6.13_19450_Player938-f153ac423f61-20210909-110634.mp4\r\n6.10_1355_Player846-f153ac423f61-20210612-002608.mp4 6.13_19451_Player938-f153ac423f61-20210909-111719.mp4\r\n6.10_1356_Player846-f153ac423f61-20210612-003127.mp4 6.13_19452_Player938-f153ac423f61-20210909-112530.mp4\r\n6.10_1357_Player846-f153ac423f61-20210612-003652.mp4 6.13_19453_Player938-f153ac423f61-20210909-113236.mp4\r\n6.10_1358_Player846-f153ac423f61-20210612-004219.mp4 6.13_19454_Player938-f153ac423f61-20210925-120358.mp4\r\n6.10_1359_Player850-648df8b95f85-20210611-234220.mp4 6.13_19455_Player938-f153ac423f61-20210925-120530.mp4\r\n6.10_135_Player201-f153ac423f61-20210619-211923.mp4 6.13_19456_Player938-f153ac423f61-20210925-120654.mp4\r\n6.10_1360_Player850-7ab7b68b5939-20210611-233608.mp4 6.13_19457_Player938-f153ac423f61-20210925-120818.mp4\r\n6.10_1361_Player850-87d07075448d-20210611-234725.mp4 6.13_19458_Player938-f153ac423f61-20210925-120940.mp4\r\n6.10_1362_Player850-f153ac423f61-20210611-222523.mp4 6.13_19459_Player938-f153ac423f61-20210925-121103.mp4\r\n6.10_1363_Player850-f153ac423f61-20210611-223025.mp4 6.13_1945_Player166-f153ac423f61-20211109-110547.mp4\r\n6.10_1364_Player850-f153ac423f61-20210611-223801.mp4 6.13_19460_Player938-f153ac423f61-20210925-121232.mp4\r\n6.10_1365_Player850-f153ac423f61-20210611-224300.mp4 6.13_19461_Player938-f153ac423f61-20210925-121405.mp4\r\n6.10_1366_Player850-f153ac423f61-20210611-224759.mp4 6.13_19462_Player938-f153ac423f61-20210925-121521.mp4\r\n6.10_1367_Player850-f153ac423f61-20210611-225258.mp4 6.13_19463_Player938-f153ac423f61-20210925-121648.mp4\r\n6.10_1368_Player850-f153ac423f61-20210611-225757.mp4 6.13_19464_Player938-f153ac423f61-20210925-121808.mp4\r\n6.10_1369_Player850-f153ac423f61-20210611-230256.mp4 6.13_19465_Player938-f153ac423f61-20210925-121920.mp4\r\n6.10_136_Player201-f153ac423f61-20210619-213128.mp4 6.13_19466_Player938-f153ac423f61-20210925-122029.mp4\r\n6.10_1370_Player850-f153ac423f61-20210611-230755.mp4 6.13_19467_Player938-f153ac423f61-20210925-122143.mp4\r\n6.10_1371_Player850-f153ac423f61-20210611-231253.mp4 6.13_19468_Player938-f153ac423f61-20210925-122307.mp4\r\n6.10_1372_Player850-f153ac423f61-20210611-231753.mp4 6.13_19469_Player938-f153ac423f61-20210925-122433.mp4\r\n6.10_1373_Player850-f153ac423f61-20210611-232252.mp4 6.13_1946_Player166-f153ac423f61-20211109-110734.mp4\r\n6.10_1374_Player850-f153ac423f61-20210611-232751.mp4 6.13_19470_Player938-f153ac423f61-20210925-122554.mp4\r\n6.10_1375_Player850-f153ac423f61-20210611-233253.mp4 6.13_19471_Player938-f153ac423f61-20210925-122716.mp4\r\n6.10_1376_Player853-f153ac423f61-20210629-195319.mp4 6.13_19472_Player938-f153ac423f61-20210925-122830.mp4\r\n6.10_1377_Player853-f153ac423f61-20210629-195821.mp4 6.13_19473_Player938-f153ac423f61-20210925-122946.mp4\r\n6.10_1378_Player868-3f8cfdce6cb0-20210623-120015.mp4 6.13_19474_Player938-f153ac423f61-20210925-123106.mp4\r\n6.10_1379_Player868-3f8cfdce6cb0-20210623-120655.mp4 6.13_19475_Player938-f153ac423f61-20210925-123235.mp4\r\n6.10_137_Player201-f153ac423f61-20210619-214054.mp4 6.13_19476_Player938-f153ac423f61-20210925-123404.mp4\r\n6.10_1380_Player868-3f8cfdce6cb0-20210623-121328.mp4 6.13_19477_Player938-f153ac423f61-20210925-123522.mp4\r\n6.10_1381_Player868-3f8cfdce6cb0-20210623-121855.mp4 6.13_19478_Player938-f153ac423f61-20210925-123640.mp4\r\n6.10_1382_Player868-3f8cfdce6cb0-20210623-122403.mp4 6.13_19479_Player938-f153ac423f61-20210925-123802.mp4\r\n6.10_1383_Player868-3f8cfdce6cb0-20210623-122919.mp4 6.13_1947_Player166-f153ac423f61-20211109-110929.mp4\r\n6.10_1384_Player868-f153ac423f61-20210623-112257.mp4 6.13_19480_Player938-f153ac423f61-20210925-123939.mp4\r\n6.10_1385_Player868-f153ac423f61-20210623-113030.mp4 6.13_19481_Player938-f153ac423f61-20210925-124114.mp4\r\n6.10_1386_Player868-f153ac423f61-20210623-113649.mp4 6.13_19482_Player938-f153ac423f61-20210925-124245.mp4\r\n6.10_1387_Player868-f153ac423f61-20210623-114702.mp4 6.13_19483_Player938-f153ac423f61-20210925-124417.mp4\r\n6.10_1388_Player868-f153ac423f61-20210623-115258.mp4 6.13_19484_Player938-f153ac423f61-20210925-124546.mp4\r\n6.10_1389_Player868-f153ac423f61-20210623-115909.mp4 6.13_19485_Player938-f153ac423f61-20210925-124712.mp4\r\n6.10_138_Player201-f153ac423f61-20210619-215022.mp4 6.13_19486_Player938-f153ac423f61-20210925-124827.mp4\r\n6.10_1390_Player868-f153ac423f61-20210624-195927.mp4 6.13_19487_Player938-f153ac423f61-20210925-124956.mp4\r\n6.10_1391_Player868-f153ac423f61-20210624-200613.mp4 6.13_19488_Player942-4269bfd9fbf7-20211110-211059.mp4\r\n6.10_1392_Player868-f153ac423f61-20210624-201311.mp4 6.13_19489_Player942-f153ac423f61-20211110-205735.mp4\r\n6.10_1393_Player868-f153ac423f61-20210624-201923.mp4 6.13_1948_Player166-f153ac423f61-20211109-111118.mp4\r\n6.10_1394_Player868-f153ac423f61-20210624-202516.mp4 6.13_19490_Player945-f153ac423f61-20210809-130034.mp4\r\n6.10_1395_Player868-f153ac423f61-20210624-203236.mp4 6.13_19491_Player945-f153ac423f61-20210809-131348.mp4\r\n6.10_1396_Player868-f153ac423f61-20210624-204020.mp4 6.13_19492_Player945-f153ac423f61-20210809-135919.mp4\r\n6.10_1397_Player868-f153ac423f61-20210624-204735.mp4 6.13_19493_Player946-b31384f3b49f-20210907-082647.mp4\r\n6.10_1398_Player868-f153ac423f61-20210624-205443.mp4 6.13_19494_Player946-b31384f3b49f-20210907-083050.mp4\r\n6.10_1399_Player868-f153ac423f61-20210624-210159.mp4 6.13_19495_Player946-b31384f3b49f-20210907-083454.mp4\r\n6.10_139_Player201-f153ac423f61-20210619-220002.mp4 6.13_19496_Player946-b31384f3b49f-20210907-083900.mp4\r\n6.10_1400_Player871-2e9a64a90d31-20210627-153136.mp4 6.13_19497_Player946-b31384f3b49f-20210907-084412.mp4\r\n6.10_1401_Player871-2e9a64a90d31-20210627-154112.mp4 6.13_19498_Player946-b31384f3b49f-20210907-085020.mp4\r\n6.10_1402_Player871-2e9a64a90d31-20210627-154641.mp4 6.13_19499_Player946-b31384f3b49f-20210907-085621.mp4\r\n6.10_1403_Player871-2e9a64a90d31-20210627-155325.mp4 6.13_1949_Player166-f153ac423f61-20211109-111254.mp4\r\n6.10_1404_Player871-2e9a64a90d31-20210627-155832.mp4 6.13_194_Player107-f153ac423f61-20210811-123335.mp4\r\n6.10_1405_Player871-2e9a64a90d31-20210627-160338.mp4 6.13_19500_Player946-b31384f3b49f-20210907-090227.mp4\r\n6.10_1406_Player871-2e9a64a90d31-20210627-160845.mp4 6.13_19501_Player946-b31384f3b49f-20210907-090832.mp4\r\n6.10_1407_Player871-2e9a64a90d31-20210627-161349.mp4 6.13_19502_Player946-b31384f3b49f-20210907-091436.mp4\r\n6.10_1408_Player871-2e9a64a90d31-20210627-161856.mp4 6.13_19503_Player946-b31384f3b49f-20210907-092141.mp4\r\n6.10_1409_Player871-2e9a64a90d31-20210627-162511.mp4 6.13_19504_Player946-b31384f3b49f-20210907-093049.mp4\r\n6.10_140_Player201-f153ac423f61-20210619-221052.mp4 6.13_19505_Player946-b31384f3b49f-20210907-093800.mp4\r\n6.10_1410_Player871-2e9a64a90d31-20210627-172442.mp4 6.13_19506_Player946-b31384f3b49f-20210907-094404.mp4\r\n6.10_1411_Player871-2e9a64a90d31-20210627-172956.mp4 6.13_19507_Player946-b31384f3b49f-20210907-095007.mp4\r\n6.10_1412_Player871-2e9a64a90d31-20210627-174436.mp4 6.13_19508_Player946-b31384f3b49f-20210907-095611.mp4\r\n6.10_1413_Player871-2e9a64a90d31-20210627-174944.mp4 6.13_19509_Player946-b31384f3b49f-20210907-100422.mp4\r\n6.10_1414_Player871-2e9a64a90d31-20210627-175454.mp4 6.13_1950_Player166-f153ac423f61-20211109-111427.mp4\r\n6.10_1415_Player871-2e9a64a90d31-20210627-180045.mp4 6.13_19510_Player946-b31384f3b49f-20210907-101027.mp4\r\n6.10_1416_Player871-411d631bdf1c-20210627-181837.mp4 6.13_19511_Player946-b31384f3b49f-20210907-101647.mp4\r\n6.10_1417_Player871-56653dc33342-20210627-182137.mp4 6.13_19512_Player946-b31384f3b49f-20210907-102251.mp4\r\n6.10_1418_Player871-f153ac423f61-20210627-152332.mp4 6.13_19513_Player946-b31384f3b49f-20210907-102855.mp4\r\n6.10_1419_Player871-f153ac423f61-20210627-152916.mp4 6.13_19514_Player946-b31384f3b49f-20210907-103459.mp4\r\n6.10_141_Player201-f153ac423f61-20210619-222023.mp4 6.13_19515_Player946-b31384f3b49f-20210907-104102.mp4\r\n6.10_1420_Player878-f153ac423f61-20210624-234909.mp4 6.13_19516_Player946-b31384f3b49f-20210907-104705.mp4\r\n6.10_1421_Player878-f153ac423f61-20210624-235500.mp4 6.13_19517_Player946-b31384f3b49f-20210907-105310.mp4\r\n6.10_1422_Player878-f153ac423f61-20210625-000136.mp4 6.13_19518_Player946-b31384f3b49f-20210907-110026.mp4\r\n6.10_1423_Player878-f153ac423f61-20210625-000752.mp4 6.13_19519_Player946-b31384f3b49f-20210907-110627.mp4\r\n6.10_1424_Player878-f153ac423f61-20210625-001337.mp4 6.13_1951_Player166-f153ac423f61-20211109-111557.mp4\r\n6.10_1425_Player878-f153ac423f61-20210625-001855.mp4 6.13_19520_Player946-b31384f3b49f-20210907-111334.mp4\r\n6.10_1426_Player878-f153ac423f61-20210625-002402.mp4 6.13_19521_Player946-b31384f3b49f-20210907-111935.mp4\r\n6.10_1427_Player878-f153ac423f61-20210625-002908.mp4 6.13_19522_Player946-b31384f3b49f-20210907-112539.mp4\r\n6.10_1428_Player878-f153ac423f61-20210625-003422.mp4 6.13_19523_Player946-b31384f3b49f-20210907-113145.mp4\r\n6.10_1429_Player878-f153ac423f61-20210625-004110.mp4 6.13_19524_Player946-b31384f3b49f-20210907-113748.mp4\r\n6.10_142_Player201-f153ac423f61-20210619-222954.mp4 6.13_19525_Player946-b31384f3b49f-20210907-114350.mp4\r\n6.10_1430_Player878-f153ac423f61-20210625-004813.mp4 6.13_19526_Player946-b31384f3b49f-20210907-114953.mp4\r\n6.10_1431_Player878-f153ac423f61-20210625-005427.mp4 6.13_19527_Player946-b31384f3b49f-20210907-115557.mp4\r\n6.10_1432_Player878-f153ac423f61-20210625-005943.mp4 6.13_19528_Player946-b31384f3b49f-20210907-120202.mp4\r\n6.10_1433_Player878-f153ac423f61-20210625-010511.mp4 6.13_19529_Player946-b31384f3b49f-20210907-120805.mp4\r\n6.10_1434_Player878-f153ac423f61-20210625-011025.mp4 6.13_1952_Player166-f153ac423f61-20211109-111730.mp4\r\n6.10_1435_Player883-f153ac423f61-20210608-155017.mp4 6.13_19530_Player946-b31384f3b49f-20210907-121507.mp4\r\n6.10_1436_Player892-f153ac423f61-20210615-203745.mp4 6.13_19531_Player946-b31384f3b49f-20210907-122109.mp4\r\n6.10_1437_Player892-f153ac423f61-20210615-204341.mp4 6.13_19532_Player946-b31384f3b49f-20210907-122714.mp4\r\n6.10_1438_Player892-f153ac423f61-20210615-204920.mp4 6.13_19533_Player946-b31384f3b49f-20210907-123423.mp4\r\n6.10_1439_Player892-f153ac423f61-20210615-205500.mp4 6.13_19534_Player946-b31384f3b49f-20210907-124028.mp4\r\n6.10_143_Player201-f153ac423f61-20210619-223916.mp4 6.13_19535_Player946-b31384f3b49f-20210907-124736.mp4\r\n6.10_1440_Player892-f153ac423f61-20210615-210017.mp4 6.13_19536_Player946-b31384f3b49f-20210907-125342.mp4\r\n6.10_1441_Player893-f153ac423f61-20210614-232315.mp4 6.13_19537_Player946-b31384f3b49f-20210907-130047.mp4\r\n6.10_1442_Player893-f153ac423f61-20210614-232827.mp4 6.13_19538_Player946-b31384f3b49f-20210907-130752.mp4\r\n6.10_1443_Player893-f153ac423f61-20210614-233336.mp4 6.13_19539_Player946-b31384f3b49f-20210907-131402.mp4\r\n6.10_1444_Player893-f153ac423f61-20210614-233845.mp4 6.13_1953_Player166-f153ac423f61-20211109-111857.mp4\r\n6.10_1445_Player893-f153ac423f61-20210614-234351.mp4 6.13_19540_Player946-b31384f3b49f-20210907-132002.mp4\r\n6.10_1446_Player893-f153ac423f61-20210614-234909.mp4 6.13_19541_Player946-b31384f3b49f-20210907-132731.mp4\r\n6.10_1447_Player893-f153ac423f61-20210614-235428.mp4 6.13_19542_Player946-b31384f3b49f-20210907-133354.mp4\r\n6.10_1448_Player893-f153ac423f61-20210614-235947.mp4 6.13_19543_Player946-b31384f3b49f-20210907-133956.mp4\r\n6.10_1449_Player893-f153ac423f61-20210615-000455.mp4 6.13_19544_Player946-b31384f3b49f-20210907-134814.mp4\r\n6.10_144_Player201-f153ac423f61-20210619-224841.mp4 6.13_19545_Player946-b31384f3b49f-20210907-135418.mp4\r\n6.10_1450_Player893-f153ac423f61-20210615-001001.mp4 6.13_19546_Player946-b31384f3b49f-20210907-140233.mp4\r\n6.10_1451_Player893-f153ac423f61-20210615-001506.mp4 6.13_19547_Player946-b31384f3b49f-20210907-140954.mp4\r\n6.10_1452_Player902-f153ac423f61-20210625-191053.mp4 6.13_19548_Player946-b31384f3b49f-20210907-141602.mp4\r\n6.10_1453_Player902-f153ac423f61-20210625-191718.mp4 6.13_19549_Player946-b31384f3b49f-20210907-142305.mp4\r\n6.10_1454_Player902-f153ac423f61-20210625-192323.mp4 6.13_1954_Player166-f153ac423f61-20211109-112019.mp4\r\n6.10_1455_Player902-f153ac423f61-20210625-192954.mp4 6.13_19550_Player946-b31384f3b49f-20210907-143008.mp4\r\n6.10_1456_Player902-f153ac423f61-20210625-193701.mp4 6.13_19551_Player946-b31384f3b49f-20210907-143611.mp4\r\n6.10_1457_Player902-f153ac423f61-20210625-194305.mp4 6.13_19552_Player946-b31384f3b49f-20210907-144214.mp4\r\n6.10_1458_Player908-f153ac423f61-20210625-104955.mp4 6.13_19553_Player946-b31384f3b49f-20210907-144816.mp4\r\n6.10_1459_Player908-f153ac423f61-20210625-105514.mp4 6.13_19554_Player946-b31384f3b49f-20210907-145517.mp4\r\n6.10_145_Player204-f153ac423f61-20210614-191853.mp4 6.13_19555_Player946-b31384f3b49f-20210907-150118.mp4\r\n6.10_1460_Player908-f153ac423f61-20210625-110021.mp4 6.13_19556_Player946-b31384f3b49f-20210907-150722.mp4\r\n6.10_1461_Player908-f153ac423f61-20210625-110525.mp4 6.13_19557_Player946-b31384f3b49f-20210907-151327.mp4\r\n6.10_1462_Player908-f153ac423f61-20210625-111039.mp4 6.13_19558_Player946-b31384f3b49f-20210907-152137.mp4\r\n6.10_1463_Player908-f153ac423f61-20210625-111547.mp4 6.13_19559_Player946-b31384f3b49f-20210907-152743.mp4\r\n6.10_1464_Player908-f153ac423f61-20210625-112052.mp4 6.13_1955_Player166-f153ac423f61-20211109-112147.mp4\r\n6.10_1465_Player908-f153ac423f61-20210625-112614.mp4 6.13_19560_Player946-b31384f3b49f-20210907-153350.mp4\r\n6.10_1466_Player908-f153ac423f61-20210625-113122.mp4 6.13_19561_Player946-b31384f3b49f-20210907-154101.mp4\r\n6.10_1467_Player908-f153ac423f61-20210625-113641.mp4 6.13_19562_Player946-b31384f3b49f-20210907-154704.mp4\r\n6.10_1468_Player908-f153ac423f61-20210625-114153.mp4 6.13_19563_Player946-b31384f3b49f-20210907-155407.mp4\r\n6.10_1469_Player908-f153ac423f61-20210625-114700.mp4 6.13_19564_Player946-b31384f3b49f-20210907-160011.mp4\r\n6.10_146_Player204-f153ac423f61-20210614-192356.mp4 6.13_19565_Player946-b31384f3b49f-20210907-160716.mp4\r\n6.10_1470_Player908-f153ac423f61-20210625-115450.mp4 6.13_19566_Player946-b31384f3b49f-20210907-161318.mp4\r\n6.10_1471_Player908-f153ac423f61-20210625-120010.mp4 6.13_19567_Player946-b31384f3b49f-20210907-162132.mp4\r\n6.10_1472_Player908-f153ac423f61-20210625-120517.mp4 6.13_19568_Player946-b31384f3b49f-20210907-162737.mp4\r\n6.10_1473_Player908-f153ac423f61-20210625-121031.mp4 6.13_19569_Player946-b31384f3b49f-20210907-163347.mp4\r\n6.10_1474_Player927-f153ac423f61-20210622-172239.mp4 6.13_1956_Player166-f153ac423f61-20211109-112321.mp4\r\n6.10_1475_Player929-f153ac423f61-20210622-200654.mp4 6.13_19570_Player946-b31384f3b49f-20210907-164052.mp4\r\n6.10_1476_Player929-f153ac423f61-20210622-201653.mp4 6.13_19571_Player946-b31384f3b49f-20210907-164656.mp4\r\n6.10_1477_Player929-f153ac423f61-20210622-202655.mp4 6.13_19572_Player946-f153ac423f61-20210907-075838.mp4\r\n6.10_1478_Player929-f153ac423f61-20210622-203707.mp4 6.13_19573_Player946-f153ac423f61-20210907-075946.mp4\r\n6.10_1479_Player929-f153ac423f61-20210622-204617.mp4 6.13_19574_Player946-f153ac423f61-20210907-080047.mp4\r\n6.10_147_Player204-f153ac423f61-20210614-192857.mp4 6.13_19575_Player946-f153ac423f61-20210907-080147.mp4\r\n6.10_1480_Player929-f153ac423f61-20210622-205448.mp4 6.13_19576_Player946-f153ac423f61-20210907-080248.mp4\r\n6.10_1481_Player930-f153ac423f61-20210628-182547.mp4 6.13_19577_Player946-f153ac423f61-20210907-080349.mp4\r\n6.10_1482_Player930-f153ac423f61-20210628-183507.mp4 6.13_19578_Player946-f153ac423f61-20210907-080451.mp4\r\n6.10_1483_Player953-f153ac423f61-20210629-173141.mp4 6.13_19579_Player946-f153ac423f61-20210907-080553.mp4\r\n6.10_1484_Player953-f153ac423f61-20210629-173737.mp4 6.13_1957_Player166-f153ac423f61-20211109-112443.mp4\r\n6.10_1485_Player953-f153ac423f61-20210629-174335.mp4 6.13_19580_Player946-f153ac423f61-20210907-080655.mp4\r\n6.10_1486_Player953-f153ac423f61-20210629-174916.mp4 6.13_19581_Player946-f153ac423f61-20210907-080755.mp4\r\n6.10_1487_Player953-f153ac423f61-20210629-175511.mp4 6.13_19582_Player946-f153ac423f61-20210907-080958.mp4\r\n6.10_1488_Player953-f153ac423f61-20210629-180046.mp4 6.13_19583_Player946-f153ac423f61-20210907-081204.mp4\r\n6.10_1489_Player953-f153ac423f61-20210629-180706.mp4 6.13_19584_Player946-f153ac423f61-20210907-081409.mp4\r\n6.10_148_Player204-f153ac423f61-20210614-193400.mp4 6.13_19585_Player946-f153ac423f61-20210907-081614.mp4\r\n6.10_1490_Player953-f153ac423f61-20210629-181331.mp4 6.13_19586_Player946-f153ac423f61-20210907-081925.mp4\r\n6.10_1491_Player953-f153ac423f61-20210629-181924.mp4 6.13_19587_Player946-f153ac423f61-20210907-082236.mp4\r\n6.10_1492_Player957-f153ac423f61-20210629-104602.mp4 6.13_19588_Player947-1c81d0799314-20210808-165112.mp4\r\n6.10_1493_Player957-f153ac423f61-20210629-105230.mp4 6.13_19589_Player947-1c81d0799314-20210808-165214.mp4\r\n6.10_1494_Player957-f153ac423f61-20210629-105821.mp4 6.13_1958_Player166-f153ac423f61-20211109-112607.mp4\r\n6.10_1495_Player957-f153ac423f61-20210629-110336.mp4 6.13_19590_Player947-1c81d0799314-20210808-165316.mp4\r\n6.10_1496_Player957-f153ac423f61-20210629-110925.mp4 6.13_19591_Player947-1c81d0799314-20210808-165420.mp4\r\n6.10_1497_Player957-f153ac423f61-20210629-111442.mp4 6.13_19592_Player947-1c81d0799314-20210808-165527.mp4\r\n6.10_1498_Player957-f153ac423f61-20210629-112100.mp4 6.13_19593_Player947-1c81d0799314-20210808-165632.mp4\r\n6.10_1499_Player957-f153ac423f61-20210629-112655.mp4 6.13_19594_Player947-1c81d0799314-20210808-165741.mp4\r\n6.10_149_Player204-f153ac423f61-20210630-161717.mp4 6.13_19595_Player947-1c81d0799314-20210808-165854.mp4\r\n6.10_1500_Player962-f153ac423f61-20210615-204309.mp4 6.13_19596_Player947-1c81d0799314-20210808-165959.mp4\r\n6.10_1501_Player962-f153ac423f61-20210615-204816.mp4 6.13_19597_Player947-1c81d0799314-20210808-170100.mp4\r\n6.10_1502_Player962-f153ac423f61-20210615-205322.mp4 6.13_19598_Player947-1c81d0799314-20210808-170201.mp4\r\n6.10_1503_Player967-39f4211bd961-20210618-233224.mp4 6.13_19599_Player947-1c81d0799314-20210808-170302.mp4\r\n6.10_1504_Player967-39f4211bd961-20210618-233725.mp4 6.13_1959_Player166-f153ac423f61-20211109-112916.mp4\r\n6.10_1505_Player967-39f4211bd961-20210618-234224.mp4 6.13_195_Player107-f153ac423f61-20210811-123441.mp4\r\n6.10_1506_Player967-39f4211bd961-20210618-234723.mp4 6.13_19600_Player947-1c81d0799314-20210808-170403.mp4\r\n6.10_1507_Player967-39f4211bd961-20210618-235222.mp4 6.13_19601_Player947-1c81d0799314-20210808-170504.mp4\r\n6.10_1508_Player967-39f4211bd961-20210618-235721.mp4 6.13_19602_Player947-1c81d0799314-20210808-170604.mp4\r\n6.10_1509_Player967-f153ac423f61-20210618-222834.mp4 6.13_19603_Player947-1c81d0799314-20210808-170705.mp4\r\n6.10_150_Player204-f153ac423f61-20210630-162234.mp4 6.13_19604_Player947-1c81d0799314-20210808-170805.mp4\r\n6.10_1510_Player967-f153ac423f61-20210618-223340.mp4 6.13_19605_Player947-1c81d0799314-20210808-170905.mp4\r\n6.10_1511_Player967-f153ac423f61-20210618-223839.mp4 6.13_19606_Player947-1c81d0799314-20210808-171006.mp4\r\n6.10_1512_Player967-f153ac423f61-20210618-224337.mp4 6.13_19607_Player947-1c81d0799314-20210808-171106.mp4\r\n6.10_1513_Player967-f153ac423f61-20210618-224836.mp4 6.13_19608_Player947-1c81d0799314-20210808-171206.mp4\r\n6.10_1514_Player967-f153ac423f61-20210618-225335.mp4 6.13_19609_Player947-1c81d0799314-20210808-171306.mp4\r\n6.10_1515_Player967-f153ac423f61-20210618-225833.mp4 6.13_1960_Player166-f153ac423f61-20211109-113043.mp4\r\n6.10_1516_Player968-f153ac423f61-20210702-202035.mp4 6.13_19610_Player947-1c81d0799314-20210808-171406.mp4\r\n6.10_1517_Player970-f153ac423f61-20210618-022040.mp4 6.13_19611_Player947-1c81d0799314-20210808-171507.mp4\r\n6.10_1518_Player970-f153ac423f61-20210618-022544.mp4 6.13_19612_Player947-1c81d0799314-20210808-171607.mp4\r\n6.10_1519_Player970-f153ac423f61-20210618-023043.mp4 6.13_19613_Player947-1c81d0799314-20210808-171748.mp4\r\n6.10_151_Player204-f153ac423f61-20210630-162741.mp4 6.13_19614_Player947-1c81d0799314-20210808-171849.mp4\r\n6.10_1520_Player970-f153ac423f61-20210618-023542.mp4 6.13_19615_Player947-1c81d0799314-20210808-171949.mp4\r\n6.10_1521_Player970-f153ac423f61-20210618-024041.mp4 6.13_19616_Player947-1c81d0799314-20210808-172050.mp4\r\n6.10_1522_Player970-f153ac423f61-20210618-024540.mp4 6.13_19617_Player947-1c81d0799314-20210808-172151.mp4\r\n6.10_1523_Player970-f153ac423f61-20210618-025040.mp4 6.13_19618_Player947-1c81d0799314-20210808-172251.mp4\r\n6.10_1524_Player970-f153ac423f61-20210618-025540.mp4 6.13_19619_Player947-1c81d0799314-20210808-172352.mp4\r\n6.10_1525_Player970-f153ac423f61-20210618-030042.mp4 6.13_1961_Player166-f153ac423f61-20211109-113202.mp4\r\n6.10_1526_Player970-f153ac423f61-20210618-030545.mp4 6.13_19620_Player947-1c81d0799314-20210808-172452.mp4\r\n6.10_1527_Player970-f153ac423f61-20210618-031048.mp4 6.13_19621_Player947-1c81d0799314-20210808-172553.mp4\r\n6.10_1528_Player970-f153ac423f61-20210618-031552.mp4 6.13_19622_Player947-1c81d0799314-20210808-172653.mp4\r\n6.10_1529_Player970-f153ac423f61-20210618-032103.mp4 6.13_19623_Player947-1c81d0799314-20210808-172754.mp4\r\n6.10_152_Player204-f153ac423f61-20210630-163355.mp4 6.13_19624_Player947-1c81d0799314-20210808-172855.mp4\r\n6.10_1530_Player970-f153ac423f61-20210618-032606.mp4 6.13_19625_Player947-1c81d0799314-20210808-172956.mp4\r\n6.10_1531_Player970-f153ac423f61-20210618-033108.mp4 6.13_19626_Player947-1c81d0799314-20210808-173056.mp4\r\n6.10_1532_Player970-f153ac423f61-20210618-033613.mp4 6.13_19627_Player947-1c81d0799314-20210808-173156.mp4\r\n6.10_1533_Player970-f153ac423f61-20210618-034121.mp4 6.13_19628_Player947-1c81d0799314-20210808-173256.mp4\r\n6.10_1534_Player970-f153ac423f61-20210618-034621.mp4 6.13_19629_Player947-1c81d0799314-20210808-173356.mp4\r\n6.10_1535_Player970-f153ac423f61-20210618-035127.mp4 6.13_1962_Player166-f153ac423f61-20211109-113341.mp4\r\n6.10_1536_Player991-f153ac423f61-20210629-200754.mp4 6.13_19630_Player947-1c81d0799314-20210808-173457.mp4\r\n6.10_1537_Player991-f153ac423f61-20210629-201452.mp4 6.13_19631_Player947-1c81d0799314-20210808-173559.mp4\r\n6.10_1538_Player995-f153ac423f61-20210629-090705.mp4 6.13_19632_Player947-1c81d0799314-20210808-173700.mp4\r\n6.10_1539_Player995-f153ac423f61-20210629-091243.mp4 6.13_19633_Player947-1c81d0799314-20210808-173800.mp4\r\n6.10_153_Player204-f153ac423f61-20210630-163923.mp4 6.13_19634_Player947-1c81d0799314-20210808-173901.mp4\r\n6.10_1540_Player995-f153ac423f61-20210629-091808.mp4 6.13_19635_Player947-1c81d0799314-20210808-174001.mp4\r\n6.10_1541_Player995-f153ac423f61-20210629-092403.mp4 6.13_19636_Player947-1c81d0799314-20210808-174101.mp4\r\n6.10_1542_Player995-f153ac423f61-20210629-092936.mp4 6.13_19637_Player947-1c81d0799314-20210808-174201.mp4\r\n6.10_1543_Player995-f153ac423f61-20210629-093534.mp4 6.13_19638_Player947-1c81d0799314-20210808-174301.mp4\r\n6.10_1544_Player995-f153ac423f61-20210629-094129.mp4 6.13_19639_Player947-1c81d0799314-20210808-174402.mp4\r\n6.10_1545_Player995-f153ac423f61-20210629-094721.mp4 6.13_1963_Player166-f153ac423f61-20211109-113520.mp4\r\n6.10_1546_Player995-f153ac423f61-20210629-095311.mp4 6.13_19640_Player947-1c81d0799314-20210808-174503.mp4\r\n6.10_1547_Player995-f153ac423f61-20210629-100423.mp4 6.13_19641_Player947-1c81d0799314-20210808-174604.mp4\r\n6.10_1548_Player995-f153ac423f61-20210629-101612.mp4 6.13_19642_Player947-1c81d0799314-20210808-174705.mp4\r\n6.10_1549_Player995-f153ac423f61-20210629-102234.mp4 6.13_19643_Player947-1c81d0799314-20210808-174806.mp4\r\n6.10_154_Player204-f153ac423f61-20210630-164505.mp4 6.13_19644_Player947-1c81d0799314-20210808-174907.mp4\r\n6.10_1550_Player996-f153ac423f61-20210626-140341.mp4 6.13_19645_Player947-1c81d0799314-20210808-175008.mp4\r\n6.10_1551_Player996-f153ac423f61-20210626-140900.mp4 6.13_19646_Player947-1c81d0799314-20210808-175108.mp4\r\n6.10_1552_Player996-f153ac423f61-20210626-141409.mp4 6.13_19647_Player947-1c81d0799314-20210808-175210.mp4\r\n6.10_1553_Player996-f153ac423f61-20210626-141919.mp4 6.13_19648_Player947-1c81d0799314-20210808-175311.mp4\r\n6.10_155_Player204-f153ac423f61-20210630-165015.mp4 6.13_19649_Player947-1c81d0799314-20210808-175412.mp4\r\n6.10_156_Player204-f153ac423f61-20210630-165533.mp4 6.13_1964_Player166-f153ac423f61-20211109-113701.mp4\r\n6.10_157_Player204-f153ac423f61-20210630-170214.mp4 6.13_19650_Player947-1c81d0799314-20210808-175513.mp4\r\n6.10_158_Player204-f153ac423f61-20210630-170926.mp4 6.13_19651_Player947-1c81d0799314-20210808-175614.mp4\r\n6.10_159_Player204-f153ac423f61-20210630-171504.mp4 6.13_19652_Player947-800660849074-20210808-164748.mp4\r\n6.10_160_Player204-f153ac423f61-20210630-172013.mp4 6.13_19653_Player947-800660849074-20210808-164923.mp4\r\n6.10_161_Player204-f153ac423f61-20210630-172520.mp4 6.13_19654_Player947-f153ac423f61-20210725-171728.mp4\r\n6.10_162_Player204-f153ac423f61-20210630-173030.mp4 6.13_19655_Player947-f153ac423f61-20210725-171853.mp4\r\n6.10_163_Player204-f153ac423f61-20210630-173536.mp4 6.13_19656_Player947-f153ac423f61-20210725-172008.mp4\r\n",,terminal_output +636,6808222,"TERMINAL",0,0,"6.10_164_Player204-f153ac423f61-20210630-174059.mp4 6.13_19657_Player947-f153ac423f61-20210725-172119.mp4\r\n6.10_165_Player204-f153ac423f61-20210630-174623.mp4 6.13_19658_Player947-f153ac423f61-20210725-172237.mp4\r\n6.10_166_Player209-f153ac423f61-20210628-104721.mp4 6.13_19659_Player947-f153ac423f61-20210725-172349.mp4\r\n6.10_167_Player226-f153ac423f61-20210621-130954.mp4 6.13_1965_Player166-f153ac423f61-20211109-113837.mp4\r\n6.10_168_Player226-f153ac423f61-20210621-131604.mp4 6.13_19660_Player947-f153ac423f61-20210725-172458.mp4\r\n6.10_169_Player226-f153ac423f61-20210621-132229.mp4 6.13_19661_Player947-f153ac423f61-20210725-172605.mp4\r\n6.10_170_Player226-f153ac423f61-20210621-132848.mp4 6.13_19662_Player947-f153ac423f61-20210725-172716.mp4\r\n6.10_171_Player226-f153ac423f61-20210621-133455.mp4 6.13_19663_Player947-f153ac423f61-20210725-172828.mp4\r\n6.10_172_Player226-f153ac423f61-20210621-134130.mp4 6.13_19664_Player947-f153ac423f61-20210725-172939.mp4\r\n6.10_173_Player226-f153ac423f61-20210621-134739.mp4 6.13_19665_Player947-f153ac423f61-20210725-173045.mp4\r\n6.10_174_Player232-f153ac423f61-20210616-102605.mp4 6.13_19666_Player947-f153ac423f61-20210725-173151.mp4\r\n6.10_175_Player232-f153ac423f61-20210616-103230.mp4 6.13_19667_Player947-f153ac423f61-20210725-173313.mp4\r\n6.10_176_Player232-f153ac423f61-20210616-103816.mp4 6.13_19668_Player947-f153ac423f61-20210725-173430.mp4\r\n6.10_177_Player232-f153ac423f61-20210616-104358.mp4 6.13_19669_Player947-f153ac423f61-20210725-173537.mp4\r\n6.10_178_Player232-f153ac423f61-20210616-104921.mp4 6.13_1966_Player166-f153ac423f61-20211109-114013.mp4\r\n6.10_179_Player232-f153ac423f61-20210616-105427.mp4 6.13_19670_Player947-f153ac423f61-20210725-173641.mp4\r\n6.10_180_Player232-f153ac423f61-20210616-105931.mp4 6.13_19671_Player947-f153ac423f61-20210725-173749.mp4\r\n6.10_181_Player232-f153ac423f61-20210616-110436.mp4 6.13_19672_Player947-f153ac423f61-20210725-173859.mp4\r\n6.10_182_Player232-f153ac423f61-20210616-111529.mp4 6.13_19673_Player947-f153ac423f61-20210725-174002.mp4\r\n6.10_183_Player232-f153ac423f61-20210616-112032.mp4 6.13_19674_Player947-f153ac423f61-20210725-174107.mp4\r\n6.10_184_Player232-f153ac423f61-20210616-112530.mp4 6.13_19675_Player947-f153ac423f61-20210725-174211.mp4\r\n6.10_185_Player232-f153ac423f61-20210616-113124.mp4 6.13_19676_Player947-f153ac423f61-20210725-174316.mp4\r\n6.10_186_Player232-f153ac423f61-20210616-113722.mp4 6.13_19677_Player947-f153ac423f61-20210725-174420.mp4\r\n6.10_187_Player232-f153ac423f61-20210616-114806.mp4 6.13_19678_Player947-f153ac423f61-20210725-174528.mp4\r\n6.10_188_Player237-f153ac423f61-20210616-121839.mp4 6.13_19679_Player947-f153ac423f61-20210725-174635.mp4\r\n6.10_189_Player237-f153ac423f61-20210616-122419.mp4 6.13_1967_Player166-f153ac423f61-20211109-114215.mp4\r\n6.10_190_Player237-f153ac423f61-20210616-123036.mp4 6.13_19680_Player947-f153ac423f61-20210725-174745.mp4\r\n6.10_191_Player237-f153ac423f61-20210616-123646.mp4 6.13_19681_Player947-f153ac423f61-20210725-174852.mp4\r\n6.10_192_Player237-f153ac423f61-20210616-124254.mp4 6.13_19682_Player947-f153ac423f61-20210725-174956.mp4\r\n6.10_193_Player237-f153ac423f61-20210616-124913.mp4 6.13_19683_Player947-f153ac423f61-20210725-175101.mp4\r\n6.10_194_Player237-f153ac423f61-20210616-125420.mp4 6.13_19684_Player947-f153ac423f61-20210725-175205.mp4\r\n6.10_195_Player237-f153ac423f61-20210616-125930.mp4 6.13_19685_Player947-f153ac423f61-20210725-175322.mp4\r\n6.10_196_Player237-f922e6834431-20210616-130346.mp4 6.13_19686_Player947-f153ac423f61-20210725-175439.mp4\r\n6.10_197_Player237-f922e6834431-20210616-130907.mp4 6.13_19687_Player947-f153ac423f61-20210725-175554.mp4\r\n6.10_198_Player241-f153ac423f61-20210612-154613.mp4 6.13_19688_Player947-f153ac423f61-20210725-175711.mp4\r\n6.10_199_Player241-f153ac423f61-20210612-155125.mp4 6.13_19689_Player947-f153ac423f61-20210725-175824.mp4\r\n6.10_200_Player241-f153ac423f61-20210612-155633.mp4 6.13_1968_Player166-f153ac423f61-20211109-114408.mp4\r\n6.10_201_Player241-f153ac423f61-20210612-160137.mp4 6.13_19690_Player947-f153ac423f61-20210725-175938.mp4\r\n6.10_202_Player241-f153ac423f61-20210612-160636.mp4 6.13_19691_Player947-f153ac423f61-20210725-180046.mp4\r\n6.10_203_Player241-f153ac423f61-20210612-161135.mp4 6.13_19692_Player947-f153ac423f61-20210725-180158.mp4\r\n6.10_204_Player241-f153ac423f61-20210612-161635.mp4 6.13_19693_Player947-f153ac423f61-20210725-180306.mp4\r\n6.10_205_Player241-f153ac423f61-20210612-162135.mp4 6.13_19694_Player947-f153ac423f61-20210725-180410.mp4\r\n6.10_206_Player241-f153ac423f61-20210612-162635.mp4 6.13_19695_Player947-f153ac423f61-20210725-180519.mp4\r\n6.10_207_Player241-f153ac423f61-20210612-163136.mp4 6.13_19696_Player947-f153ac423f61-20210725-180629.mp4\r\n6.10_208_Player241-f153ac423f61-20210612-163637.mp4 6.13_19697_Player947-f153ac423f61-20210725-180746.mp4\r\n6.10_209_Player241-f153ac423f61-20210612-164139.mp4 6.13_19698_Player947-f153ac423f61-20210725-180859.mp4\r\n6.10_210_Player241-f153ac423f61-20210612-164640.mp4 6.13_19699_Player947-f153ac423f61-20210725-181004.mp4\r\n6.10_211_Player267-f153ac423f61-20210609-103857.mp4 6.13_1969_Player166-f153ac423f61-20211109-114557.mp4\r\n6.10_212_Player272-f153ac423f61-20210701-144442.mp4 6.13_196_Player107-f153ac423f61-20210811-123546.mp4\r\n6.10_213_Player272-f153ac423f61-20210701-145009.mp4 6.13_19700_Player947-f153ac423f61-20210808-163045.mp4\r\n6.10_214_Player272-f153ac423f61-20210701-145554.mp4 6.13_19701_Player947-f153ac423f61-20210808-163149.mp4\r\n6.10_215_Player272-f153ac423f61-20210701-150130.mp4 6.13_19702_Player947-f153ac423f61-20210808-163250.mp4\r\n6.10_216_Player272-f153ac423f61-20210701-150636.mp4 6.13_19703_Player947-f153ac423f61-20210808-163351.mp4\r\n6.10_217_Player272-f153ac423f61-20210701-151142.mp4 6.13_19704_Player947-f153ac423f61-20210808-163452.mp4\r\n6.10_218_Player272-f153ac423f61-20210701-151653.mp4 6.13_19705_Player947-f153ac423f61-20210808-163554.mp4\r\n6.10_219_Player272-f153ac423f61-20210701-152201.mp4 6.13_19706_Player947-f153ac423f61-20210808-163655.mp4\r\n6.10_220_Player272-f153ac423f61-20210701-152723.mp4 6.13_19707_Player947-f153ac423f61-20210808-163757.mp4\r\n6.10_221_Player272-f153ac423f61-20210701-153239.mp4 6.13_19708_Player947-f153ac423f61-20210808-163858.mp4\r\n6.10_222_Player272-f153ac423f61-20210701-153822.mp4 6.13_19709_Player947-f153ac423f61-20210808-163959.mp4\r\n6.10_223_Player272-f153ac423f61-20210701-154333.mp4 6.13_1970_Player166-f153ac423f61-20211109-114800.mp4\r\n6.10_224_Player275-362318622703-20210623-132748.mp4 6.13_19710_Player947-f153ac423f61-20210808-164100.mp4\r\n6.10_225_Player275-362318622703-20210623-133256.mp4 6.13_19711_Player947-f153ac423f61-20210808-164204.mp4\r\n6.10_226_Player275-514ad4a31206-20210623-133826.mp4 6.13_19712_Player947-f153ac423f61-20210808-164312.mp4\r\n6.10_227_Player275-514ad4a31206-20210623-134331.mp4 6.13_19713_Player947-f153ac423f61-20210808-164417.mp4\r\n6.10_228_Player275-514ad4a31206-20210623-134832.mp4 6.13_19714_Player947-f153ac423f61-20210808-164519.mp4\r\n6.10_229_Player275-514ad4a31206-20210623-135334.mp4 6.13_19715_Player947-f153ac423f61-20210808-164621.mp4\r\n6.10_230_Player275-514ad4a31206-20210623-135839.mp4 6.13_19716_Player948-f153ac423f61-20211124-185640.mp4\r\n6.10_231_Player275-514ad4a31206-20210623-140340.mp4 6.13_19717_Player948-f153ac423f61-20211124-185835.mp4\r\n6.10_232_Player275-514ad4a31206-20210623-140841.mp4 6.13_19718_Player948-f153ac423f61-20211124-190009.mp4\r\n6.10_233_Player275-514ad4a31206-20210623-141342.mp4 6.13_19719_Player948-f153ac423f61-20211124-190140.mp4\r\n6.10_234_Player275-514ad4a31206-20210623-141844.mp4 6.13_1971_Player166-f153ac423f61-20211109-114954.mp4\r\n6.10_235_Player275-514ad4a31206-20210623-142345.mp4 6.13_19720_Player948-f153ac423f61-20211124-190322.mp4\r\n6.10_236_Player275-514ad4a31206-20210623-142847.mp4 6.13_19721_Player948-f153ac423f61-20211124-190509.mp4\r\n6.10_237_Player275-514ad4a31206-20210623-143353.mp4 6.13_19722_Player948-f153ac423f61-20211124-190836.mp4\r\n6.10_238_Player275-514ad4a31206-20210623-143853.mp4 6.13_19723_Player948-f153ac423f61-20211124-191204.mp4\r\n6.10_239_Player275-514ad4a31206-20210623-144354.mp4 6.13_19724_Player948-f153ac423f61-20211124-191530.mp4\r\n6.10_240_Player275-514ad4a31206-20210623-144857.mp4 6.13_19725_Player948-f153ac423f61-20211124-191730.mp4\r\n6.10_241_Player275-514ad4a31206-20210623-145404.mp4 6.13_19726_Player948-f153ac423f61-20211124-191931.mp4\r\n6.10_242_Player275-514ad4a31206-20210623-145925.mp4 6.13_19727_Player950-d79055a990a7-20211126-013856.mp4\r\n6.10_243_Player275-514ad4a31206-20210623-150932.mp4 6.13_19728_Player950-d79055a990a7-20211126-013957.mp4\r\n6.10_244_Player275-514ad4a31206-20210623-151946.mp4 6.13_19729_Player950-d79055a990a7-20211126-014057.mp4\r\n6.10_245_Player275-514ad4a31206-20210623-152955.mp4 6.13_1972_Player166-f153ac423f61-20211109-115142.mp4\r\n6.10_246_Player275-514ad4a31206-20210623-154000.mp4 6.13_19730_Player950-d79055a990a7-20211126-014157.mp4\r\n6.10_247_Player275-514ad4a31206-20210623-155004.mp4 6.13_19731_Player950-d79055a990a7-20211126-014258.mp4\r\n6.10_248_Player275-514ad4a31206-20210623-160013.mp4 6.13_19732_Player950-d79055a990a7-20211126-014358.mp4\r\n6.10_249_Player275-514ad4a31206-20210623-161019.mp4 6.13_19733_Player950-d79055a990a7-20211126-014458.mp4\r\n6.10_250_Player275-514ad4a31206-20210623-162040.mp4 6.13_19734_Player950-d79055a990a7-20211126-014558.mp4\r\n6.10_251_Player275-514ad4a31206-20210623-163104.mp4 6.13_19735_Player950-d79055a990a7-20211126-014658.mp4\r\n6.10_252_Player275-514ad4a31206-20210623-164116.mp4 6.13_19736_Player950-d79055a990a7-20211126-014758.mp4\r\n6.10_253_Player275-514ad4a31206-20210623-165140.mp4 6.13_19737_Player950-d79055a990a7-20211126-014858.mp4\r\n6.10_254_Player275-514ad4a31206-20210623-170205.mp4 6.13_19738_Player950-d79055a990a7-20211126-014958.mp4\r\n6.10_255_Player275-514ad4a31206-20210623-171217.mp4 6.13_19739_Player950-d79055a990a7-20211126-015058.mp4\r\n6.10_256_Player275-514ad4a31206-20210623-172219.mp4 6.13_1973_Player166-f153ac423f61-20211109-115343.mp4\r\n6.10_257_Player275-514ad4a31206-20210623-173222.mp4 6.13_19740_Player950-d79055a990a7-20211126-015158.mp4\r\n6.10_258_Player275-6a0c370ec842-20210623-131305.mp4 6.13_19741_Player950-d79055a990a7-20211126-015258.mp4\r\n6.10_259_Player275-6a0c370ec842-20210623-131806.mp4 6.13_19742_Player950-d79055a990a7-20211126-015358.mp4\r\n6.10_260_Player275-6a0c370ec842-20210623-132310.mp4 6.13_19743_Player950-d79055a990a7-20211126-015458.mp4\r\n6.10_261_Player275-f153ac423f61-20210623-124837.mp4 6.13_19744_Player950-d79055a990a7-20211126-015558.mp4\r\n6.10_262_Player275-f153ac423f61-20210623-125341.mp4 6.13_19745_Player950-d79055a990a7-20211126-015658.mp4\r\n6.10_263_Player275-f153ac423f61-20210623-125842.mp4 6.13_19746_Player950-d79055a990a7-20211126-015758.mp4\r\n6.10_264_Player275-f153ac423f61-20210623-130341.mp4 6.13_19747_Player950-d79055a990a7-20211126-015858.mp4\r\n6.10_265_Player275-f153ac423f61-20210623-130844.mp4 6.13_19748_Player950-d79055a990a7-20211126-015958.mp4\r\n6.10_266_Player279-7f5f50068f41-20210626-152317.mp4 6.13_19749_Player950-d79055a990a7-20211126-020058.mp4\r\n6.10_267_Player279-f153ac423f61-20210626-150835.mp4 6.13_1974_Player168-f153ac423f61-20210803-145418.mp4\r\n6.10_268_Player279-f153ac423f61-20210626-151406.mp4 6.13_19750_Player950-d79055a990a7-20211126-020158.mp4\r\n6.10_269_Player279-f153ac423f61-20210626-151937.mp4 6.13_19751_Player950-d79055a990a7-20211126-020258.mp4\r\n6.10_270_Player283-f153ac423f61-20210615-180256.mp4 6.13_19752_Player950-d79055a990a7-20211126-020358.mp4\r\n6.10_271_Player283-f153ac423f61-20210615-180803.mp4 6.13_19753_Player950-d79055a990a7-20211126-020458.mp4\r\n6.10_272_Player283-f153ac423f61-20210615-181302.mp4 6.13_19754_Player950-d79055a990a7-20211126-020558.mp4\r\n6.10_273_Player283-f153ac423f61-20210615-181801.mp4 6.13_19755_Player950-d79055a990a7-20211126-020658.mp4\r\n6.10_274_Player283-f153ac423f61-20210615-182259.mp4 6.13_19756_Player950-d79055a990a7-20211126-020758.mp4\r\n6.10_275_Player283-f153ac423f61-20210615-182759.mp4 6.13_19757_Player950-d79055a990a7-20211126-020858.mp4\r\n6.10_276_Player283-f153ac423f61-20210615-183257.mp4 6.13_19758_Player950-d79055a990a7-20211126-021058.mp4\r\n6.10_277_Player283-f153ac423f61-20210615-183756.mp4 6.13_19759_Player950-d79055a990a7-20211126-021157.mp4\r\n6.10_278_Player283-f153ac423f61-20210615-184255.mp4 6.13_1975_Player168-f153ac423f61-20210803-145840.mp4\r\n6.10_279_Player283-f153ac423f61-20210615-184754.mp4 6.13_19760_Player950-d79055a990a7-20211126-021257.mp4\r\n6.10_280_Player283-f153ac423f61-20210615-185255.mp4 6.13_19761_Player950-d79055a990a7-20211126-021357.mp4\r\n6.10_281_Player283-f153ac423f61-20210615-185758.mp4 6.13_19762_Player950-d79055a990a7-20211126-021457.mp4\r\n6.10_282_Player283-f153ac423f61-20210615-190302.mp4 6.13_19763_Player950-d79055a990a7-20211126-021557.mp4\r\n6.10_283_Player283-f153ac423f61-20210615-190805.mp4 6.13_19764_Player950-d79055a990a7-20211126-021657.mp4\r\n6.10_284_Player283-f153ac423f61-20210615-191304.mp4 6.13_19765_Player950-d79055a990a7-20211126-021757.mp4\r\n6.10_285_Player283-f153ac423f61-20210615-191804.mp4 6.13_19766_Player950-d79055a990a7-20211126-021857.mp4\r\n6.10_286_Player283-f153ac423f61-20210615-192303.mp4 6.13_19767_Player950-d79055a990a7-20211126-021957.mp4\r\n6.10_287_Player283-f153ac423f61-20210615-192803.mp4 6.13_19768_Player950-d79055a990a7-20211126-022057.mp4\r\n6.10_288_Player283-f153ac423f61-20210615-193303.mp4 6.13_19769_Player950-d79055a990a7-20211126-022157.mp4\r\n6.10_289_Player283-f153ac423f61-20210615-193803.mp4 6.13_1976_Player168-f153ac423f61-20210803-150245.mp4\r\n6.10_290_Player283-f153ac423f61-20210615-194303.mp4 6.13_19770_Player950-d79055a990a7-20211126-022257.mp4\r\n6.10_291_Player283-f153ac423f61-20210615-194803.mp4 6.13_19771_Player950-d79055a990a7-20211126-022357.mp4\r\n6.10_292_Player283-f153ac423f61-20210615-195542.mp4 6.13_19772_Player950-d79055a990a7-20211126-022457.mp4\r\n6.10_293_Player283-f153ac423f61-20210615-200107.mp4 6.13_19773_Player950-d79055a990a7-20211126-022557.mp4\r\n6.10_294_Player283-f153ac423f61-20210615-200606.mp4 6.13_19774_Player950-d79055a990a7-20211126-022657.mp4\r\n6.10_295_Player283-f153ac423f61-20210615-201321.mp4 6.13_19775_Player950-d79055a990a7-20211126-022757.mp4\r\n6.10_296_Player283-f153ac423f61-20210615-201820.mp4 6.13_19776_Player950-d79055a990a7-20211126-023057.mp4\r\n6.10_297_Player283-f153ac423f61-20210615-202319.mp4 6.13_19777_Player950-d79055a990a7-20211126-023158.mp4\r\n6.10_298_Player283-f153ac423f61-20210615-202819.mp4 6.13_19778_Player950-d79055a990a7-20211126-023258.mp4\r\n6.10_299_Player283-f153ac423f61-20210615-203322.mp4 6.13_19779_Player950-d79055a990a7-20211126-023557.mp4\r\n6.10_300_Player283-f153ac423f61-20210615-203823.mp4 6.13_1977_Player168-f153ac423f61-20210803-150649.mp4\r\n6.10_301_Player283-f153ac423f61-20210615-204326.mp4 6.13_19780_Player950-d79055a990a7-20211126-023657.mp4\r\n6.10_302_Player283-f153ac423f61-20210615-204837.mp4 6.13_19781_Player950-d79055a990a7-20211126-023757.mp4\r\n6.10_303_Player283-f153ac423f61-20210615-205339.mp4 6.13_19782_Player950-d79055a990a7-20211126-023857.mp4\r\n6.10_304_Player283-f153ac423f61-20210615-205842.mp4 6.13_19783_Player950-d79055a990a7-20211126-023957.mp4\r\n6.10_305_Player283-f153ac423f61-20210615-210343.mp4 6.13_19784_Player950-d79055a990a7-20211126-024057.mp4\r\n6.10_306_Player283-f153ac423f61-20210615-210849.mp4 6.13_19785_Player950-d79055a990a7-20211126-024157.mp4\r\n6.10_307_Player283-f153ac423f61-20210615-211353.mp4 6.13_19786_Player950-d79055a990a7-20211126-024257.mp4\r\n6.10_308_Player283-f153ac423f61-20210615-211856.mp4 6.13_19787_Player950-d79055a990a7-20211126-024358.mp4\r\n6.10_309_Player283-f153ac423f61-20210615-212401.mp4 6.13_19788_Player950-d79055a990a7-20211126-024458.mp4\r\n6.10_310_Player283-f153ac423f61-20210615-212903.mp4 6.13_19789_Player950-d79055a990a7-20211126-024558.mp4\r\n6.10_311_Player283-f153ac423f61-20210615-213407.mp4 6.13_1978_Player168-f153ac423f61-20210803-150953.mp4\r\n6.10_312_Player283-f153ac423f61-20210615-213910.mp4 6.13_19790_Player950-d79055a990a7-20211126-024659.mp4\r\n6.10_313_Player283-f153ac423f61-20210615-214414.mp4 6.13_19791_Player950-d79055a990a7-20211126-024759.mp4\r\n6.10_314_Player283-f153ac423f61-20210615-214917.mp4 6.13_19792_Player950-d79055a990a7-20211126-024859.mp4\r\n6.10_315_Player283-f153ac423f61-20210615-215420.mp4 6.13_19793_Player950-f153ac423f61-20210915-083057.mp4\r\n6.10_316_Player283-f153ac423f61-20210615-215921.mp4 6.13_19794_Player950-f153ac423f61-20210915-084117.mp4\r\n6.10_317_Player296-37ed40303d2b-20210615-183511.mp4 6.13_19795_Player950-f153ac423f61-20210915-085121.mp4\r\n6.10_318_Player296-f153ac423f61-20210615-181839.mp4 6.13_19796_Player950-f153ac423f61-20210915-090022.mp4\r\n6.10_319_Player296-f153ac423f61-20210615-183005.mp4 6.13_19797_Player950-f153ac423f61-20210915-091031.mp4\r\n6.10_320_Player296-f153ac423f61-20210617-030725.mp4 6.13_19798_Player950-f153ac423f61-20210915-091935.mp4\r\n6.10_321_Player296-f153ac423f61-20210617-031417.mp4 6.13_19799_Player950-f153ac423f61-20210915-092948.mp4\r\n6.10_322_Player296-f153ac423f61-20210617-032455.mp4 6.13_1979_Player168-f153ac423f61-20210803-151255.mp4\r\n6.10_323_Player296-f153ac423f61-20210617-034600.mp4 6.13_197_Player107-f153ac423f61-20210811-123648.mp4\r\n6.10_324_Player296-f153ac423f61-20210617-040202.mp4 6.13_19800_Player950-f153ac423f61-20210915-093955.mp4\r\n6.10_325_Player296-f153ac423f61-20210617-045146.mp4 6.13_19801_Player950-f153ac423f61-20210915-094859.mp4\r\n6.10_326_Player296-f153ac423f61-20210617-063858.mp4 6.13_19802_Player950-f153ac423f61-20210915-095803.mp4\r\n6.10_327_Player296-f153ac423f61-20210623-224649.mp4 6.13_19803_Player950-f153ac423f61-20210915-100710.mp4\r\n6.10_328_Player296-f153ac423f61-20210623-225242.mp4 6.13_19804_Player950-f153ac423f61-20210915-101829.mp4\r\n6.10_329_Player296-f153ac423f61-20210623-225904.mp4 6.13_19805_Player950-f153ac423f61-20210915-103002.mp4\r\n6.10_330_Player296-f153ac423f61-20210623-230521.mp4 6.13_19806_Player950-f153ac423f61-20210915-103908.mp4\r\n6.10_331_Player296-f153ac423f61-20210623-231150.mp4 6.13_19807_Player950-f153ac423f61-20210915-104803.mp4\r\n6.10_332_Player296-f153ac423f61-20210623-231733.mp4 6.13_19808_Player950-f153ac423f61-20211126-011858.mp4\r\n6.10_333_Player296-f153ac423f61-20210623-232329.mp4 6.13_19809_Player950-f153ac423f61-20211126-012000.mp4\r\n6.10_334_Player296-f153ac423f61-20210623-233024.mp4 6.13_1980_Player168-f153ac423f61-20210803-151702.mp4\r\n6.10_335_Player30-f153ac423f61-20210618-182747.mp4 6.13_19810_Player950-f153ac423f61-20211126-012100.mp4\r\n6.10_336_Player30-f153ac423f61-20210618-183410.mp4 6.13_19811_Player950-f153ac423f61-20211126-012200.mp4\r\n6.10_337_Player30-f153ac423f61-20210618-183916.mp4 6.13_19812_Player950-f153ac423f61-20211126-012300.mp4\r\n6.10_338_Player30-f153ac423f61-20210618-184440.mp4 6.13_19813_Player950-f153ac423f61-20211126-012400.mp4\r\n6.10_339_Player30-f153ac423f61-20210618-184945.mp4 6.13_19814_Player950-f153ac423f61-20211126-012501.mp4\r\n6.10_340_Player30-f153ac423f61-20210618-185706.mp4 6.13_19815_Player950-f153ac423f61-20211126-012601.mp4\r\n6.10_341_Player30-f153ac423f61-20210618-190418.mp4 6.13_19816_Player950-f153ac423f61-20211126-012701.mp4\r\n6.10_342_Player30-f153ac423f61-20210618-190932.mp4 6.13_19817_Player950-f153ac423f61-20211126-012802.mp4\r\n6.10_343_Player30-f153ac423f61-20210618-191443.mp4 6.13_19818_Player950-f153ac423f61-20211126-012902.mp4\r\n6.10_344_Player30-f153ac423f61-20210618-192012.mp4 6.13_19819_Player950-f153ac423f61-20211126-013002.mp4\r\n6.10_345_Player30-f153ac423f61-20210618-192529.mp4 6.13_1981_Player168-f153ac423f61-20210803-152009.mp4\r\n6.10_346_Player30-f153ac423f61-20210618-193032.mp4 6.13_19820_Player950-f153ac423f61-20211126-013102.mp4\r\n6.10_347_Player301-f153ac423f61-20210621-211226.mp4 6.13_19821_Player950-f153ac423f61-20211126-013202.mp4\r\n6.10_348_Player306-5c1b98aea558-20210701-160313.mp4 6.13_19822_Player950-f153ac423f61-20211126-013302.mp4\r\n6.10_349_Player306-e6e6a32d22c5-20210701-160754.mp4 6.13_19823_Player950-fb0f9d49f153-20211126-013416.mp4\r\n6.10_350_Player306-f153ac423f61-20210701-155326.mp4 6.13_19824_Player950-fb0f9d49f153-20211126-013516.mp4\r\n6.10_351_Player306-f153ac423f61-20210701-155838.mp4 6.13_19825_Player950-fb0f9d49f153-20211126-013616.mp4\r\n6.10_352_Player309-f153ac423f61-20210620-122512.mp4 6.13_19826_Player950-fb0f9d49f153-20211126-013717.mp4\r\n6.10_353_Player309-f153ac423f61-20210620-124045.mp4 6.13_19827_Player950-fb0f9d49f153-20211126-013817.mp4\r\n6.10_354_Player309-f153ac423f61-20210620-124603.mp4 6.13_19828_Player952-f153ac423f61-20211113-095833.mp4\r\n6.10_355_Player309-f153ac423f61-20210620-125135.mp4 6.13_19829_Player952-f153ac423f61-20211113-100144.mp4\r\n6.10_356_Player309-f153ac423f61-20210620-125751.mp4 6.13_1982_Player168-f153ac423f61-20210803-152315.mp4\r\n6.10_357_Player309-f153ac423f61-20210620-130325.mp4 6.13_19830_Player952-f153ac423f61-20211113-100447.mp4\r\n6.10_358_Player309-f153ac423f61-20210620-130906.mp4 6.13_19831_Player952-f153ac423f61-20211113-100750.mp4\r\n6.10_359_Player309-f153ac423f61-20210620-131424.mp4 6.13_19832_Player952-f153ac423f61-20211113-101051.mp4\r\n6.10_360_Player309-f153ac423f61-20210620-131930.mp4 6.13_19833_Player952-f153ac423f61-20211113-101354.mp4\r\n6.10_361_Player309-f153ac423f61-20210620-132443.mp4 6.13_19834_Player952-f153ac423f61-20211113-101656.mp4\r\n6.10_362_Player309-f153ac423f61-20210620-132947.mp4 6.13_19835_Player952-f153ac423f61-20211113-101957.mp4\r\n6.10_363_Player312-f153ac423f61-20210611-221600.mp4 6.13_19836_Player952-f153ac423f61-20211113-102403.mp4\r\n6.10_364_Player312-f153ac423f61-20210611-222114.mp4 6.13_19837_Player952-f153ac423f61-20211113-102705.mp4\r\n6.10_365_Player312-f153ac423f61-20210611-222612.mp4 6.13_19838_Player952-f153ac423f61-20211113-103107.mp4\r\n6.10_366_Player312-f153ac423f61-20210611-223108.mp4 6.13_19839_Player952-f153ac423f61-20211113-103408.mp4\r\n6.10_367_Player312-f153ac423f61-20210611-223605.mp4 6.13_1983_Player168-f153ac423f61-20210803-152822.mp4\r\n6.10_368_Player312-f153ac423f61-20210611-224108.mp4 6.13_19840_Player952-f153ac423f61-20211113-103712.mp4\r\n6.10_369_Player312-f153ac423f61-20210611-224614.mp4 6.13_19841_Player952-f153ac423f61-20211113-104014.mp4\r\n6.10_370_Player312-f153ac423f61-20210611-225112.mp4 6.13_19842_Player952-f153ac423f61-20211113-104417.mp4\r\n6.10_371_Player312-f153ac423f61-20210611-225620.mp4 6.13_19843_Player952-f153ac423f61-20211113-104719.mp4\r\n6.10_372_Player312-f153ac423f61-20210611-230122.mp4 6.13_19844_Player952-f153ac423f61-20211113-105121.mp4\r\n6.10_373_Player312-f153ac423f61-20210611-230620.mp4 6.13_19845_Player952-f153ac423f61-20211113-105424.mp4\r\n6.10_374_Player312-f153ac423f61-20210611-231117.mp4 6.13_19846_Player952-f153ac423f61-20211113-105827.mp4\r\n6.10_375_Player312-f153ac423f61-20210611-231621.mp4 6.13_19847_Player952-f153ac423f61-20211113-110130.mp4\r\n6.10_376_Player312-f153ac423f61-20210611-232127.mp4 6.13_19848_Player952-f153ac423f61-20211113-110433.mp4\r\n6.10_377_Player312-f153ac423f61-20210611-232628.mp4 6.13_19849_Player952-f153ac423f61-20211113-110737.mp4\r\n6.10_378_Player312-f153ac423f61-20210611-233127.mp4 6.13_1984_Player168-f153ac423f61-20210803-153126.mp4\r\n6.10_379_Player312-f153ac423f61-20210611-233624.mp4 6.13_19850_Player952-f153ac423f61-20211113-111137.mp4\r\n6.10_380_Player312-f153ac423f61-20210611-234131.mp4 6.13_19851_Player952-f153ac423f61-20211113-111439.mp4\r\n6.10_381_Player312-f153ac423f61-20210611-234629.mp4 6.13_19852_Player952-f153ac423f61-20211113-111841.mp4\r\n6.10_382_Player312-f153ac423f61-20210611-235128.mp4 6.13_19853_Player952-f153ac423f61-20211113-112142.mp4\r\n6.10_383_Player32-2b82a384438e-20210612-093550.mp4 6.13_19854_Player952-f153ac423f61-20211113-112443.mp4\r\n6.10_384_Player32-2b82a384438e-20210612-094052.mp4 6.13_19855_Player952-f153ac423f61-20211113-112744.mp4\r\n6.10_385_Player32-2b82a384438e-20210612-094555.mp4 6.13_19856_Player952-f153ac423f61-20211113-113046.mp4\r\n6.10_386_Player32-4f31d2e30be6-20210612-093218.mp4 6.13_19857_Player952-f153ac423f61-20211113-113348.mp4\r\n6.10_387_Player32-f153ac423f61-20210612-080711.mp4 6.13_19858_Player952-f153ac423f61-20211113-113652.mp4\r\n6.10_388_Player32-f153ac423f61-20210612-081215.mp4 6.13_19859_Player952-f153ac423f61-20211113-113953.mp4\r\n6.10_389_Player32-f153ac423f61-20210612-081718.mp4 6.13_1985_Player168-f153ac423f61-20210803-153533.mp4\r\n6.10_390_Player32-f153ac423f61-20210612-082226.mp4 6.13_19860_Player952-f153ac423f61-20211113-114254.mp4\r\n6.10_391_Player32-f153ac423f61-20210612-082728.mp4 6.13_19861_Player952-f153ac423f61-20211113-114557.mp4\r\n6.10_392_Player32-f153ac423f61-20210612-083229.mp4 6.13_19862_Player952-f153ac423f61-20211113-114901.mp4\r\n6.10_393_Player32-f153ac423f61-20210612-083728.mp4 6.13_19863_Player952-f153ac423f61-20211113-115205.mp4\r\n6.10_394_Player32-f153ac423f61-20210612-084230.mp4 6.13_19864_Player952-f153ac423f61-20211113-115507.mp4\r\n6.10_395_Player32-f153ac423f61-20210612-084730.mp4 6.13_19865_Player952-f153ac423f61-20211113-115808.mp4\r\n6.10_396_Player32-f153ac423f61-20210612-085230.mp4 6.13_19866_Player952-f153ac423f61-20211113-120110.mp4\r\n6.10_397_Player32-f153ac423f61-20210612-085731.mp4 6.13_19867_Player952-f153ac423f61-20211113-120412.mp4\r\n6.10_398_Player32-f153ac423f61-20210612-090230.mp4 6.13_19868_Player952-f153ac423f61-20211113-120714.mp4\r\n6.10_399_Player32-f153ac423f61-20210612-090730.mp4 6.13_19869_Player952-f153ac423f61-20211113-121016.mp4\r\n6.10_400_Player32-f153ac423f61-20210612-091229.mp4 6.13_1986_Player168-f153ac423f61-20210803-153840.mp4\r\n6.10_401_Player32-f153ac423f61-20210612-091730.mp4 6.13_19870_Player952-f153ac423f61-20211113-121319.mp4\r\n6.10_402_Player32-f153ac423f61-20210612-092234.mp4 6.13_19871_Player952-f153ac423f61-20211113-121621.mp4\r\n6.10_403_Player32-f153ac423f61-20210612-092735.mp4 6.13_19872_Player952-f153ac423f61-20211113-121923.mp4\r\n6.10_404_Player323-f153ac423f61-20210624-104332.mp4 6.13_19873_Player952-f153ac423f61-20211113-122227.mp4\r\n6.10_405_Player323-f153ac423f61-20210624-104946.mp4 6.13_19874_Player952-f153ac423f61-20211113-122630.mp4\r\n6.10_406_Player323-f153ac423f61-20210624-105544.mp4 6.13_19875_Player952-f153ac423f61-20211113-122935.mp4\r\n6.10_407_Player323-f153ac423f61-20210624-110141.mp4 6.13_19876_Player952-f153ac423f61-20211113-123236.mp4\r\n6.10_408_Player323-f153ac423f61-20210624-110734.mp4 6.13_19877_Player952-f153ac423f61-20211113-123537.mp4\r\n6.10_409_Player323-f153ac423f61-20210624-111324.mp4 6.13_19878_Player952-f153ac423f61-20211113-123941.mp4\r\n6.10_410_Player323-f153ac423f61-20210624-111923.mp4 6.13_19879_Player952-f153ac423f61-20211113-124241.mp4\r\n6.10_411_Player323-f153ac423f61-20210624-112532.mp4 6.13_1987_Player168-f153ac423f61-20210913-123816.mp4\r\n6.10_412_Player323-f153ac423f61-20210624-113048.mp4 6.13_19880_Player952-f153ac423f61-20211113-124543.mp4\r\n6.10_413_Player323-f153ac423f61-20210624-113605.mp4 6.13_19881_Player952-f153ac423f61-20211113-124844.mp4\r\n6.10_414_Player323-f153ac423f61-20210624-114111.mp4 6.13_19882_Player952-f153ac423f61-20211113-125246.mp4\r\n6.10_415_Player324-f153ac423f61-20210617-172612.mp4 6.13_19883_Player952-f153ac423f61-20211113-125546.mp4\r\n6.10_416_Player324-f153ac423f61-20210617-173133.mp4 6.13_19884_Player952-f153ac423f61-20211113-125847.mp4\r\n6.10_417_Player324-f153ac423f61-20210617-173754.mp4 6.13_19885_Player952-f153ac423f61-20211113-130153.mp4\r\n6.10_418_Player324-f153ac423f61-20210617-174340.mp4 6.13_19886_Player952-f153ac423f61-20211113-130454.mp4\r\n6.10_419_Player351-f153ac423f61-20210623-190841.mp4 6.13_19887_Player952-f153ac423f61-20211113-130756.mp4\r\n6.10_420_Player351-f153ac423f61-20210623-191354.mp4 6.13_19888_Player952-f153ac423f61-20211113-131057.mp4\r\n6.10_421_Player351-f153ac423f61-20210623-191932.mp4 6.13_19889_Player952-f153ac423f61-20211113-131359.mp4\r\n6.10_422_Player351-f153ac423f61-20210623-192547.mp4 6.13_1988_Player168-f153ac423f61-20210913-124840.mp4\r\n6.10_423_Player351-f153ac423f61-20210623-193217.mp4 6.13_19890_Player952-f153ac423f61-20211113-131700.mp4\r\n6.10_424_Player351-f153ac423f61-20210623-193914.mp4 6.13_19891_Player952-f153ac423f61-20211113-132000.mp4\r\n6.10_425_Player351-f153ac423f61-20210623-194559.mp4 6.13_19892_Player952-f153ac423f61-20211113-132300.mp4\r\n6.10_426_Player351-f153ac423f61-20210623-195247.mp4 6.13_19893_Player952-f153ac423f61-20211113-132601.mp4\r\n6.10_427_Player351-f153ac423f61-20210623-195844.mp4 6.13_19894_Player952-f153ac423f61-20211113-132901.mp4\r\n6.10_428_Player351-f153ac423f61-20210623-200407.mp4 6.13_19895_Player952-f153ac423f61-20211113-133304.mp4\r\n6.10_429_Player351-f153ac423f61-20210623-200911.mp4 6.13_19896_Player952-f153ac423f61-20211113-133604.mp4\r\n6.10_430_Player351-f153ac423f61-20210623-201413.mp4 6.13_19897_Player952-f153ac423f61-20211113-133909.mp4\r\n6.10_431_Player36-a4810246bd6e-20210611-164347.mp4 6.13_19898_Player952-f153ac423f61-20211113-134209.mp4\r\n6.10_432_Player36-d98f0b6b56a3-20210611-164426.mp4 6.13_19899_Player952-f153ac423f61-20211113-134612.mp4\r\n6.10_433_Player36-f153ac423f61-20210611-164245.mp4 6.13_1989_Player168-f153ac423f61-20210913-125750.mp4\r\n6.10_434_Player360-9cbdab9dd075-20210616-222214.mp4 6.13_198_Player107-f153ac423f61-20210811-123752.mp4\r\n6.10_435_Player360-9cbdab9dd075-20210616-222807.mp4 6.13_19900_Player952-f153ac423f61-20211113-134914.mp4\r\n6.10_436_Player360-9cbdab9dd075-20210616-223421.mp4 6.13_19901_Player952-f153ac423f61-20211113-135215.mp4\r\n6.10_437_Player360-9cbdab9dd075-20210616-224043.mp4 6.13_19902_Player952-f153ac423f61-20211113-135516.mp4\r\n6.10_438_Player360-9cbdab9dd075-20210616-224711.mp4 6.13_19903_Player952-f153ac423f61-20211113-135918.mp4\r\n6.10_439_Player360-9cbdab9dd075-20210616-225344.mp4 6.13_19904_Player952-f153ac423f61-20211113-140220.mp4\r\n6.10_440_Player360-9cbdab9dd075-20210616-230033.mp4 6.13_19905_Player952-f153ac423f61-20211113-140520.mp4\r\n6.10_441_Player360-9cbdab9dd075-20210616-230657.mp4 6.13_19906_Player952-f153ac423f61-20211113-140821.mp4\r\n6.10_442_Player360-9cbdab9dd075-20210616-231344.mp4 6.13_19907_Player952-f153ac423f61-20211113-141128.mp4\r\n6.10_443_Player360-9cbdab9dd075-20210616-232017.mp4 6.13_19908_Player952-f153ac423f61-20211113-141428.mp4\r\n6.10_444_Player360-9cbdab9dd075-20210616-232540.mp4 6.13_19909_Player952-f153ac423f61-20211113-141829.mp4\r\n6.10_445_Player360-9cbdab9dd075-20210616-233049.mp4 6.13_1990_Player168-f153ac423f61-20210913-130809.mp4\r\n6.10_446_Player360-9cbdab9dd075-20210616-233617.mp4 6.13_19910_Player952-f153ac423f61-20211113-142132.mp4\r\n6.10_447_Player360-9cbdab9dd075-20210616-234141.mp4 6.13_19911_Player952-f153ac423f61-20211113-142435.mp4\r\n6.10_448_Player360-dc8808f7838c-20210616-221425.mp4 6.13_19912_Player952-f153ac423f61-20211113-142736.mp4\r\n6.10_449_Player360-dc8808f7838c-20210616-222102.mp4 6.13_19913_Player952-f153ac423f61-20211113-143039.mp4\r\n6.10_450_Player360-f153ac423f61-20210616-214509.mp4 6.13_19914_Player952-f153ac423f61-20211113-143340.mp4\r\n6.10_451_Player360-f153ac423f61-20210616-215219.mp4 6.13_19915_Player952-f153ac423f61-20211113-143643.mp4\r\n6.10_452_Player360-f153ac423f61-20210616-215850.mp4 6.13_19916_Player952-f153ac423f61-20211113-143944.mp4\r\n6.10_453_Player360-f153ac423f61-20210616-220524.mp4 6.13_19917_Player952-f153ac423f61-20211113-144350.mp4\r\n6.10_454_Player360-f153ac423f61-20210616-221145.mp4 6.13_19918_Player952-f153ac423f61-20211113-144652.mp4\r\n6.10_455_Player363-f153ac423f61-20210613-101959.mp4 6.13_19919_Player952-f153ac423f61-20211113-144954.mp4\r\n6.10_456_Player363-f153ac423f61-20210622-233230.mp4 6.13_1991_Player168-f153ac423f61-20210913-131711.mp4\r\n6.10_457_Player363-f153ac423f61-20210622-233857.mp4 6.13_19920_Player952-f153ac423f61-20211113-145256.mp4\r\n6.10_458_Player363-f153ac423f61-20210622-234508.mp4 6.13_19921_Player952-f153ac423f61-20211214-203516.mp4\r\n6.10_459_Player363-f153ac423f61-20210622-235031.mp4 6.13_19922_Player956-18a8adda4624-20211213-174526.mp4\r\n6.10_460_Player363-f153ac423f61-20210622-235601.mp4 6.13_19923_Player956-18a8adda4624-20211213-174930.mp4\r\n6.10_461_Player371-f153ac423f61-20210703-123451.mp4 6.13_19924_Player956-18a8adda4624-20211213-175332.mp4\r\n6.10_462_Player371-f153ac423f61-20210703-124707.mp4 6.13_19925_Player956-18a8adda4624-20211213-175941.mp4\r\n6.10_463_Player371-f153ac423f61-20210703-125810.mp4 6.13_19926_Player956-f153ac423f61-20211213-172935.mp4\r\n6.10_464_Player371-f153ac423f61-20210703-130841.mp4 6.13_19927_Player956-f153ac423f61-20211213-173239.mp4\r\n6.10_465_Player371-f153ac423f61-20210703-132025.mp4 6.13_19928_Player956-f153ac423f61-20211213-173642.mp4\r\n6.10_466_Player371-f153ac423f61-20210703-133116.mp4 6.13_19929_Player956-f153ac423f61-20211213-174048.mp4\r\n6.10_467_Player371-f153ac423f61-20210703-134328.mp4 6.13_1992_Player168-f153ac423f61-20210913-132613.mp4\r\n6.10_468_Player371-f153ac423f61-20210703-135438.mp4 6.13_19930_Player964-a3c55d19348b-20210726-184746.mp4\r\n6.10_469_Player371-f153ac423f61-20210703-140626.mp4 6.13_19931_Player964-a3c55d19348b-20210726-184848.mp4\r\n6.10_470_Player378-f153ac423f61-20210701-200524.mp4 6.13_19932_Player964-a3c55d19348b-20210726-184954.mp4\r\n6.10_471_Player378-f153ac423f61-20210701-201741.mp4 6.13_19933_Player964-a3c55d19348b-20210726-185103.mp4\r\n6.10_472_Player378-f153ac423f61-20210701-202911.mp4 6.13_19934_Player964-f153ac423f61-20210726-175207.mp4\r\n6.10_473_Player378-f153ac423f61-20210701-204021.mp4 6.13_19935_Player964-f153ac423f61-20210726-175319.mp4\r\n6.10_474_Player378-f153ac423f61-20210701-205039.mp4 6.13_19936_Player964-f153ac423f61-20210726-175428.mp4\r\n6.10_475_Player378-f153ac423f61-20210701-210102.mp4 6.13_19937_Player964-f153ac423f61-20210726-175538.mp4\r\n6.10_476_Player378-f153ac423f61-20210701-211750.mp4 6.13_19938_Player964-f153ac423f61-20210726-175650.mp4\r\n6.10_477_Player378-f153ac423f61-20210701-213100.mp4 6.13_19939_Player964-f153ac423f61-20210726-175753.mp4\r\n6.10_478_Player384-f153ac423f61-20210614-171538.mp4 6.13_1993_Player168-f153ac423f61-20210913-133518.mp4\r\n6.10_479_Player384-f153ac423f61-20210614-172042.mp4 6.13_19940_Player964-f153ac423f61-20210726-175914.mp4\r\n6.10_480_Player384-f153ac423f61-20210614-172542.mp4 6.13_19941_Player964-f153ac423f61-20210726-180027.mp4\r\n6.10_481_Player384-f153ac423f61-20210614-173040.mp4 6.13_19942_Player964-f153ac423f61-20210726-180131.mp4\r\n6.10_482_Player384-f153ac423f61-20210614-173539.mp4 6.13_19943_Player964-f153ac423f61-20210726-180239.mp4\r\n6.10_483_Player384-f153ac423f61-20210614-174038.mp4 6.13_19944_Player964-f153ac423f61-20210726-180353.mp4\r\n6.10_484_Player384-f153ac423f61-20210614-174538.mp4 6.13_19945_Player964-f153ac423f61-20210726-180506.mp4\r\n6.10_485_Player384-f153ac423f61-20210614-175040.mp4 6.13_19946_Player964-f153ac423f61-20210726-180616.mp4\r\n6.10_486_Player384-f153ac423f61-20210614-175540.mp4 6.13_19947_Player964-f153ac423f61-20210726-180723.mp4\r\n6.10_487_Player384-f153ac423f61-20210614-180039.mp4 6.13_19948_Player964-f153ac423f61-20210726-180828.mp4\r\n6.10_488_Player384-f153ac423f61-20210614-180916.mp4 6.13_19949_Player964-f153ac423f61-20210726-180934.mp4\r\n6.10_489_Player384-f153ac423f61-20210614-181414.mp4 6.13_1994_Player168-f153ac423f61-20210913-134326.mp4\r\n6.10_490_Player384-f153ac423f61-20210614-181913.mp4 6.13_19950_Player964-f153ac423f61-20210726-181042.mp4\r\n6.10_491_Player384-f153ac423f61-20210614-182529.mp4 6.13_19951_Player964-f153ac423f61-20210726-181145.mp4\r\n6.10_492_Player384-f153ac423f61-20210614-183202.mp4 6.13_19952_Player964-f153ac423f61-20210726-181255.mp4\r\n6.10_493_Player384-f153ac423f61-20210614-185825.mp4 6.13_19953_Player964-f153ac423f61-20210726-181358.mp4\r\n6.10_494_Player384-f153ac423f61-20210614-190324.mp4 6.13_19954_Player964-f153ac423f61-20210726-181510.mp4\r\n6.10_495_Player384-f153ac423f61-20210614-190823.mp4 6.13_19955_Player964-f153ac423f61-20210726-181634.mp4\r\n6.10_496_Player384-f153ac423f61-20210614-192627.mp4 6.13_19956_Player964-f153ac423f61-20210726-181750.mp4\r\n6.10_497_Player384-f153ac423f61-20210614-193128.mp4 6.13_19957_Player964-f153ac423f61-20210726-181922.mp4\r\n6.10_498_Player384-f153ac423f61-20210614-194107.mp4 6.13_19958_Player964-f153ac423f61-20210726-182055.mp4\r\n6.10_499_Player384-f153ac423f61-20210614-194607.mp4 6.13_19959_Player964-f153ac423f61-20210726-182227.mp4\r\n6.10_500_Player384-f153ac423f61-20210614-195107.mp4 6.13_1995_Player168-f153ac423f61-20210913-135229.mp4\r\n6.10_501_Player384-f153ac423f61-20210614-195607.mp4 6.13_19960_Player964-f153ac423f61-20210726-182358.mp4\r\n6.10_502_Player384-f153ac423f61-20210614-200145.mp4 6.13_19961_Player964-f153ac423f61-20210726-182535.mp4\r\n6.10_503_Player384-f153ac423f61-20210614-200645.mp4 6.13_19962_Player964-f153ac423f61-20210726-182706.mp4\r\n6.10_504_Player384-f153ac423f61-20210614-201151.mp4 6.13_19963_Player964-f153ac423f61-20210726-182834.mp4\r\n6.10_505_Player384-f153ac423f61-20210614-201657.mp4 6.13_19964_Player964-f153ac423f61-20210726-182951.mp4\r\n6.10_506_Player384-f153ac423f61-20210614-202200.mp4 6.13_19965_Player964-f153ac423f61-20210726-183054.mp4\r\n6.10_507_Player384-f153ac423f61-20210614-202701.mp4 6.13_19966_Player964-f153ac423f61-20210726-183213.mp4\r\n6.10_508_Player384-f153ac423f61-20210614-203207.mp4 6.13_19967_Player964-f153ac423f61-20210726-183339.mp4\r\n6.10_509_Player395-f153ac423f61-20210615-012428.mp4 6.13_19968_Player964-f153ac423f61-20210726-183452.mp4\r\n6.10_510_Player395-f153ac423f61-20210615-013016.mp4 6.13_19969_Player964-f153ac423f61-20210726-183617.mp4\r\n6.10_511_Player395-f153ac423f61-20210615-013531.mp4 6.13_1996_Player168-f153ac423f61-20210913-140241.mp4\r\n6.10_512_Player395-f153ac423f61-20210615-014043.mp4 6.13_19970_Player964-f153ac423f61-20210726-183741.mp4\r\n6.10_513_Player395-f153ac423f61-20210615-014556.mp4 6.13_19971_Player964-f153ac423f61-20210726-183902.mp4\r\n6.10_514_Player401-e6fb25f4974f-20210630-173046.mp4 6.13_19972_Player964-f153ac423f61-20210726-184025.mp4\r\n6.10_515_Player401-e6fb25f4974f-20210630-174018.mp4 6.13_19973_Player964-f153ac423f61-20210726-184149.mp4\r\n6.10_516_Player401-e6fb25f4974f-20210630-175007.mp4 6.13_19974_Player964-f153ac423f61-20210726-184315.mp4\r\n6.10_517_Player401-e6fb25f4974f-20210630-180209.mp4 6.13_19975_Player964-f153ac423f61-20210726-184425.mp4\r\n6.10_518_Player401-e6fb25f4974f-20210630-181223.mp4 6.13_19976_Player964-f153ac423f61-20210726-184533.mp4\r\n6.10_519_Player401-e6fb25f4974f-20210630-182156.mp4 6.13_19977_Player964-f153ac423f61-20210726-184656.mp4\r\n6.10_520_Player401-e6fb25f4974f-20210630-183153.mp4 6.13_19978_Player964-f153ac423f61-20210905-204357.mp4\r\n6.10_521_Player401-e6fb25f4974f-20210630-184239.mp4 6.13_19979_Player964-f153ac423f61-20210905-204608.mp4\r\n6.10_522_Player401-e6fb25f4974f-20210630-185338.mp4 6.13_1997_Player168-f153ac423f61-20210913-141145.mp4\r\n6.10_523_Player401-e6fb25f4974f-20210630-190414.mp4 6.13_19980_Player964-f153ac423f61-20210905-204812.mp4\r\n6.10_524_Player401-f153ac423f61-20210630-165848.mp4 6.13_19981_Player964-f153ac423f61-20210905-205013.mp4\r\n6.10_525_Player401-f153ac423f61-20210630-171009.mp4 6.13_19982_Player964-f153ac423f61-20210905-205213.mp4\r\n6.10_526_Player401-f153ac423f61-20210630-172045.mp4 6.13_19983_Player964-f153ac423f61-20210905-205414.mp4\r\n6.10_527_Player406-f153ac423f61-20210630-220829.mp4 6.13_19984_Player964-f153ac423f61-20210905-205614.mp4\r\n6.10_528_Player406-f153ac423f61-20210630-222336.mp4 6.13_19985_Player964-f153ac423f61-20210905-205815.mp4\r\n6.10_529_Player406-f153ac423f61-20210630-223836.mp4 6.13_19986_Player964-f153ac423f61-20210905-210018.mp4\r\n6.10_530_Player406-f153ac423f61-20210630-225342.mp4 6.13_19987_Player964-f153ac423f61-20210905-210218.mp4\r\n6.10_531_Player406-f153ac423f61-20210630-230841.mp4 6.13_19988_Player964-f153ac423f61-20210905-210420.mp4\r\n6.10_532_Player406-f153ac423f61-20210630-232340.mp4 6.13_19989_Player964-f153ac423f61-20210905-210624.mp4\r\n6.10_533_Player413-f153ac423f61-20210620-141107.mp4 6.13_1998_Player169-f153ac423f61-20210828-153046.mp4\r\n6.10_534_Player413-f153ac423f61-20210620-141650.mp4 6.13_19990_Player964-f153ac423f61-20210905-210825.mp4\r\n6.10_535_Player413-f153ac423f61-20210620-142248.mp4 6.13_19991_Player964-f153ac423f61-20210905-211031.mp4\r\n6.10_536_Player413-f153ac423f61-20210620-142824.mp4 6.13_19992_Player964-f153ac423f61-20210905-211234.mp4\r\n6.10_537_Player413-f153ac423f61-20210620-143345.mp4 6.13_19993_Player964-f153ac423f61-20210905-211436.mp4\r\n6.10_538_Player413-f153ac423f61-20210620-143930.mp4 6.13_19994_Player964-f153ac423f61-20210905-211637.mp4\r\n6.10_539_Player413-f153ac423f61-20210620-144501.mp4 6.13_19995_Player964-f153ac423f61-20210905-211839.mp4\r\n6.10_540_Player413-f153ac423f61-20210620-145040.mp4 6.13_19996_Player964-f153ac423f61-20210905-212041.mp4\r\n6.10_541_Player413-f153ac423f61-20210620-145605.mp4 6.13_19997_Player964-f153ac423f61-20210905-212243.mp4\r\n6.10_542_Player413-f153ac423f61-20210620-150141.mp4 6.13_19998_Player964-f153ac423f61-20210905-212446.mp4\r\n6.10_543_Player416-f153ac423f61-20210619-142920.mp4 6.13_19999_Player964-f153ac423f61-20210905-212648.mp4\r\n6.10_544_Player416-f153ac423f61-20210619-143432.mp4 6.13_1999_Player17-f153ac423f61-20211026-155957.mp4\r\n6.10_545_Player416-f153ac423f61-20210619-145534.mp4 6.13_199_Player107-f153ac423f61-20210811-123853.mp4\r\n6.10_546_Player416-f153ac423f61-20210619-151126.mp4 6.13_20000_Player964-f153ac423f61-20210905-212852.mp4\r\n6.10_547_Player416-f153ac423f61-20210619-151640.mp4 6.13_20001_Player964-f153ac423f61-20210905-213055.mp4\r\n6.10_548_Player416-f153ac423f61-20210619-152157.mp4 6.13_20002_Player964-f153ac423f61-20210905-213258.mp4\r\n6.10_549_Player416-f153ac423f61-20210619-152756.mp4 6.13_20003_Player964-f153ac423f61-20210905-213500.mp4\r\n6.10_550_Player416-f153ac423f61-20210619-153333.mp4 6.13_20004_Player964-f153ac423f61-20210905-213701.mp4\r\n6.10_551_Player442-f153ac423f61-20210623-175408.mp4 6.13_20005_Player964-f153ac423f61-20210905-213903.mp4\r\n6.10_552_Player442-f153ac423f61-20210623-180426.mp4 6.13_20006_Player964-f153ac423f61-20210905-214105.mp4\r\n6.10_553_Player442-f153ac423f61-20210623-183934.mp4 6.13_20007_Player964-f153ac423f61-20210905-214308.mp4\r\n6.10_554_Player442-f153ac423f61-20210623-185438.mp4 6.13_20008_Player964-f153ac423f61-20210905-214510.mp4\r\n6.10_555_Player448-f153ac423f61-20210616-181531.mp4 6.13_20009_Player965-f153ac423f61-20211209-214809.mp4\r\n6.10_556_Player448-f153ac423f61-20210616-182036.mp4 6.13_2000_Player17-f153ac423f61-20211026-160801.mp4\r\n6.10_557_Player448-f153ac423f61-20210616-182540.mp4 6.13_20010_Player965-f153ac423f61-20211209-214955.mp4\r\n6.10_558_Player448-f153ac423f61-20210616-183043.mp4 6.13_20011_Player965-f153ac423f61-20211209-215217.mp4\r\n6.10_559_Player448-f153ac423f61-20210616-183542.mp4 6.13_20012_Player965-f153ac423f61-20211209-215600.mp4\r\n6.10_560_Player448-f153ac423f61-20210616-184042.mp4 6.13_20013_Player965-f153ac423f61-20211209-215735.mp4\r\n6.10_561_Player448-f153ac423f61-20210616-184542.mp4 6.13_20014_Player965-f153ac423f61-20211209-220019.mp4\r\n6.10_562_Player448-f153ac423f61-20210616-185047.mp4 6.13_20015_Player965-f153ac423f61-20211209-220146.mp4\r\n6.10_563_Player448-f153ac423f61-20210616-185550.mp4 6.13_20016_Player965-f153ac423f61-20211209-220324.mp4\r\n6.10_564_Player448-f153ac423f61-20210616-190055.mp4 6.13_20017_Player965-f153ac423f61-20211209-220506.mp4\r\n6.10_565_Player448-f153ac423f61-20210616-190600.mp4 6.13_20018_Player965-f153ac423f61-20211209-220649.mp4\r\n6.10_566_Player448-f153ac423f61-20210616-191119.mp4 6.13_20019_Player965-f153ac423f61-20211209-220822.mp4\r\n6.10_567_Player448-f153ac423f61-20210616-191627.mp4 6.13_2001_Player17-f153ac423f61-20211026-161752.mp4\r\n6.10_568_Player448-f153ac423f61-20210616-192535.mp4 6.13_20020_Player965-f153ac423f61-20211209-221002.mp4\r\n6.10_569_Player448-f153ac423f61-20210616-193035.mp4 6.13_20021_Player965-f153ac423f61-20211209-221142.mp4\r\n6.10_570_Player448-f153ac423f61-20210616-193622.mp4 6.13_20022_Player965-f153ac423f61-20211209-221312.mp4\r\n6.10_571_Player448-f153ac423f61-20210616-194126.mp4 6.13_20023_Player965-f153ac423f61-20211209-221444.mp4\r\n6.10_572_Player448-f153ac423f61-20210616-194629.mp4 6.13_20024_Player965-f153ac423f61-20211209-221614.mp4\r\n6.10_573_Player448-f153ac423f61-20210616-195131.mp4 6.13_20025_Player965-f153ac423f61-20211209-221747.mp4\r\n6.10_574_Player448-f153ac423f61-20210616-195631.mp4 6.13_20026_Player965-f153ac423f61-20211209-222057.mp4\r\n6.10_575_Player448-f153ac423f61-20210616-200132.mp4 6.13_20027_Player965-f153ac423f61-20211209-222239.mp4\r\n6.10_576_Player448-f153ac423f61-20210616-200632.mp4 6.13_20028_Player965-f153ac423f61-20211209-222422.mp4\r\n6.10_577_Player448-f153ac423f61-20210616-201904.mp4 6.13_20029_Player965-f153ac423f61-20211209-222606.mp4\r\n6.10_578_Player448-f153ac423f61-20210616-202405.mp4 6.13_2002_Player17-f153ac423f61-20211026-162806.mp4\r\n6.10_579_Player448-f153ac423f61-20210616-202904.mp4 6.13_20030_Player965-f153ac423f61-20211209-222751.mp4\r\n6.10_580_Player448-f153ac423f61-20210616-203405.mp4 6.13_20031_Player965-f153ac423f61-20211209-222936.mp4\r\n6.10_581_Player448-f153ac423f61-20210616-203906.mp4 6.13_20032_Player965-f153ac423f61-20211209-223117.mp4\r\n6.10_582_Player448-f153ac423f61-20210616-204407.mp4 6.13_20033_Player965-f153ac423f61-20211209-223304.mp4\r\n6.10_583_Player448-f153ac423f61-20210616-204908.mp4 6.13_20034_Player965-f153ac423f61-20211209-223450.mp4\r\n6.10_584_Player448-f153ac423f61-20210616-205409.mp4 6.13_20035_Player965-f153ac423f61-20211209-223638.mp4\r\n6.10_585_Player448-f153ac423f61-20210616-205912.mp4 6.13_20036_Player965-f153ac423f61-20211209-223826.mp4\r\n6.10_586_Player448-f153ac423f61-20210616-210414.mp4 6.13_20037_Player965-f153ac423f61-20211209-224006.mp4\r\n6.10_587_Player448-f153ac423f61-20210616-210916.mp4 6.13_20038_Player965-f153ac423f61-20211209-224218.mp4\r\n6.10_588_Player448-f153ac423f61-20210616-211416.mp4 6.13_20039_Player965-f153ac423f61-20211209-224402.mp4\r\n6.10_589_Player448-f153ac423f61-20210616-211918.mp4 6.13_2003_Player17-f153ac423f61-20211026-163724.mp4\r\n6.10_590_Player448-f153ac423f61-20210616-212419.mp4 6.13_20040_Player965-f153ac423f61-20211209-224544.mp4\r\n6.10_591_Player448-f153ac423f61-20210616-212921.mp4 6.13_20041_Player965-f153ac423f61-20211209-224728.mp4\r\n6.10_592_Player448-f153ac423f61-20210616-213423.mp4 6.13_20042_Player965-f153ac423f61-20211209-225926.mp4\r\n6.10_593_Player448-f153ac423f61-20210616-213926.mp4 6.13_20043_Player965-f153ac423f61-20211209-230111.mp4\r\n6.10_594_Player448-f153ac423f61-20210616-214427.mp4 6.13_20044_Player965-f153ac423f61-20211209-230252.mp4\r\n6.10_595_Player448-f153ac423f61-20210616-214928.mp4 6.13_20045_Player965-f153ac423f61-20211209-230427.mp4\r\n6.10_596_Player448-f153ac423f61-20210616-215430.mp4 6.13_20046_Player965-f153ac423f61-20211209-230654.mp4\r\n6.10_597_Player448-f153ac423f61-20210616-215932.mp4 6.13_20047_Player965-f153ac423f61-20211209-230820.mp4\r\n6.10_598_Player448-f153ac423f61-20210616-220433.mp4 6.13_20048_Player965-f153ac423f61-20211209-230944.mp4\r\n6.10_599_Player448-f153ac423f61-20210616-220936.mp4 6.13_20049_Player965-f153ac423f61-20211209-231123.mp4\r\n6.10_600_Player448-f153ac423f61-20210616-221437.mp4 6.13_2004_Player17-f153ac423f61-20211026-164828.mp4\r\n6.10_601_Player448-f153ac423f61-20210616-221949.mp4 6.13_20050_Player97-8afaddf32e80-20211220-005605.mp4\r\n6.10_602_Player460-f153ac423f61-20210615-193939.mp4 6.13_20051_Player97-8afaddf32e80-20211220-010252.mp4\r\n6.10_603_Player460-f153ac423f61-20210615-194534.mp4 6.13_20052_Player97-8afaddf32e80-20211220-012230.mp4\r\n6.10_604_Player460-f153ac423f61-20210615-195136.mp4 6.13_20053_Player97-8afaddf32e80-20211220-015625.mp4\r\n6.10_605_Player460-f153ac423f61-20210615-195738.mp4 6.13_20054_Player97-f153ac423f61-20211209-060052.mp4\r\n6.10_606_Player460-f153ac423f61-20210615-200355.mp4 6.13_20055_Player97-f153ac423f61-20211209-062215.mp4\r\n6.10_607_Player460-f153ac423f61-20210615-200915.mp4 6.13_20056_Player97-f153ac423f61-20211209-064448.mp4\r\n6.10_608_Player460-f153ac423f61-20210615-201446.mp4 6.13_20057_Player97-f153ac423f61-20211219-230035.mp4\r\n6.10_609_Player466-f153ac423f61-20210612-170916.mp4 6.13_20058_Player97-f153ac423f61-20211219-230816.mp4\r\n6.10_610_Player466-f153ac423f61-20210612-171423.mp4 6.13_20059_Player97-f153ac423f61-20211219-233154.mp4\r\n6.10_611_Player466-f153ac423f61-20210612-171923.mp4 6.13_2005_Player17-f153ac423f61-20211026-165757.mp4\r\n6.10_612_Player466-f153ac423f61-20210612-172424.mp4 6.13_20060_Player97-f153ac423f61-20211220-000754.mp4\r\n6.10_613_Player466-f153ac423f61-20210612-172928.mp4 6.13_20061_Player970-f153ac423f61-20210914-063026.mp4\r\n6.10_614_Player466-f153ac423f61-20210612-173431.mp4 6.13_20062_Player970-f153ac423f61-20210914-064049.mp4\r\n6.10_615_Player466-f153ac423f61-20210612-173932.mp4 6.13_20063_Player970-f153ac423f61-20210914-065115.mp4\r\n6.10_616_Player467-f153ac423f61-20210611-225354.mp4 6.13_20064_Player970-f153ac423f61-20210914-070028.mp4\r\n6.10_617_Player467-f153ac423f61-20210611-225904.mp4 6.13_20065_Player970-f153ac423f61-20210914-071157.mp4\r\n6.10_618_Player467-f153ac423f61-20210611-230404.mp4 6.13_20066_Player970-f153ac423f61-20210914-072103.mp4\r\n6.10_619_Player467-f153ac423f61-20210611-230902.mp4 6.13_20067_Player970-f153ac423f61-20210914-073222.mp4\r\n6.10_620_Player467-f153ac423f61-20210611-231401.mp4 6.13_20068_Player970-f153ac423f61-20210914-074135.mp4\r\n6.10_621_Player467-f153ac423f61-20210611-231901.mp4 6.13_20069_Player970-f153ac423f61-20210914-075147.mp4\r\n6.10_622_Player467-f153ac423f61-20210611-232436.mp4 6.13_2006_Player17-f153ac423f61-20211026-170736.mp4\r\n6.10_623_Player467-f153ac423f61-20210611-232935.mp4 6.13_20070_Player970-f153ac423f61-20210914-080214.mp4\r\n6.10_624_Player467-f153ac423f61-20210611-233436.mp4 6.13_20071_Player970-f153ac423f61-20210914-081740.mp4\r\n6.10_625_Player467-f153ac423f61-20210611-233936.mp4 6.13_20072_Player970-f153ac423f61-20210914-082646.mp4\r\n6.10_626_Player467-f153ac423f61-20210611-234437.mp4 6.13_20073_Player970-f153ac423f61-20210914-083550.mp4\r\n6.10_627_Player467-f153ac423f61-20210611-234936.mp4 6.13_20074_Player970-f153ac423f61-20210914-084703.mp4\r\n6.10_628_Player469-f153ac423f61-20210611-123021.mp4 6.13_20075_Player970-f153ac423f61-20210914-085605.mp4\r\n6.10_629_Player469-f153ac423f61-20210611-123630.mp4 6.13_20076_Player970-f153ac423f61-20210914-090619.mp4\r\n6.10_630_Player469-f153ac423f61-20210611-124139.mp4 6.13_20077_Player970-f153ac423f61-20210914-091527.mp4\r\n6.10_631_Player469-f153ac423f61-20210611-124657.mp4 6.13_20078_Player970-f153ac423f61-20210914-092710.mp4\r\n6.10_632_Player469-f153ac423f61-20210611-125708.mp4 6.13_20079_Player970-f153ac423f61-20210914-093618.mp4\r\n6.10_633_Player469-f153ac423f61-20210611-131249.mp4 6.13_2007_Player17-f153ac423f61-20211026-171558.mp4\r\n6.10_634_Player469-f153ac423f61-20210611-131756.mp4 6.13_20080_Player970-f153ac423f61-20210914-094522.mp4\r\n6.10_635_Player469-f153ac423f61-20210611-132339.mp4 6.13_20081_Player970-f153ac423f61-20210914-095433.mp4\r\n6.10_636_Player47-f153ac423f61-20210618-202956.mp4 6.13_20082_Player970-f153ac423f61-20210914-100446.mp4\r\n6.10_637_Player47-f153ac423f61-20210618-203520.mp4 6.13_20083_Player970-f153ac423f61-20210914-101352.mp4\r\n6.10_638_Player471-25972aec391f-20210617-210242.mp4 6.13_20084_Player970-f153ac423f61-20210914-102743.mp4\r\n6.10_639_Player471-25972aec391f-20210617-211106.mp4 6.13_20085_Player971-f153ac423f61-20211014-183616.mp4\r\n6.10_640_Player471-25972aec391f-20210617-211941.mp4 6.13_20086_Player971-f153ac423f61-20211014-184337.mp4\r\n6.10_641_Player471-25972aec391f-20210617-212917.mp4 6.13_20087_Player971-f153ac423f61-20211014-185045.mp4\r\n6.10_642_Player471-f153ac423f61-20210617-200012.mp4 6.13_20088_Player971-f153ac423f61-20211014-185750.mp4\r\n6.10_643_Player471-f153ac423f61-20210617-201002.mp4 6.13_20089_Player971-f153ac423f61-20211014-190458.mp4\r\n6.10_644_Player471-f153ac423f61-20210617-201924.mp4 6.13_2008_Player17-f153ac423f61-20211026-172728.mp4\r\n6.10_645_Player471-f153ac423f61-20210617-202821.mp4 6.13_20090_Player971-f153ac423f61-20211014-191304.mp4\r\n6.10_646_Player471-f153ac423f61-20210617-203708.mp4 6.13_20091_Player971-f153ac423f61-20211014-192010.mp4\r\n6.10_647_Player471-f153ac423f61-20210629-114615.mp4 6.13_20092_Player971-f153ac423f61-20211014-192713.mp4\r\n6.10_648_Player471-f153ac423f61-20210629-115216.mp4 6.13_20093_Player971-f153ac423f61-20211014-193420.mp4\r\n6.10_649_Player471-f153ac423f61-20210629-115839.mp4 6.13_20094_Player971-f153ac423f61-20211014-194125.mp4\r\n6.10_650_Player471-f153ac423f61-20210629-120446.mp4 6.13_20095_Player971-f153ac423f61-20211014-194829.mp4\r\n6.10_651_Player471-f153ac423f61-20210629-121107.mp4 6.13_20096_Player971-f153ac423f61-20211014-195534.mp4\r\n6.10_652_Player471-f153ac423f61-20210629-121829.mp4 6.13_20097_Player971-f153ac423f61-20211014-200238.mp4\r\n6.10_653_Player471-f153ac423f61-20210629-122520.mp4 6.13_20098_Player971-f153ac423f61-20211014-200942.mp4\r\n6.10_654_Player471-f153ac423f61-20210629-123109.mp4 6.13_20099_Player971-f153ac423f61-20211014-201644.mp4\r\n6.10_655_Player471-f153ac423f61-20210629-123735.mp4 6.13_2009_Player17-f153ac423f61-20211026-173712.mp4\r\n6.10_656_Player471-f153ac423f61-20210629-124331.mp4 6.13_200_Player107-f153ac423f61-20210811-123953.mp4\r\n6.10_657_Player480-f153ac423f61-20210705-192717.mp4 6.13_20100_Player971-f153ac423f61-20211014-202352.mp4\r\n6.10_658_Player480-f153ac423f61-20210705-194020.mp4 6.13_20101_Player976-1b7662c56dae-20211101-154049.mp4\r\n6.10_659_Player480-f153ac423f61-20210705-195218.mp4 6.13_20102_Player976-1bf05d5ea144-20211101-154033.mp4\r\n6.10_660_Player480-f153ac423f61-20210705-200335.mp4 6.13_20103_Player976-a1af2170187d-20211101-154129.mp4\r\n6.10_661_Player480-f153ac423f61-20210705-201424.mp4 6.13_20104_Player976-a1af2170187d-20211101-154319.mp4\r\n6.10_662_Player480-f153ac423f61-20210705-202611.mp4 6.13_20105_Player976-a1af2170187d-20211101-154437.mp4\r\n6.10_663_Player480-f153ac423f61-20210705-203643.mp4 6.13_20106_Player976-dede24106ebf-20211101-154655.mp4\r\n6.10_664_Player480-f153ac423f61-20210705-205219.mp4 6.13_20107_Player976-dede24106ebf-20211101-154813.mp4\r\n6.10_665_Player480-f153ac423f61-20210705-210824.mp4 6.13_20108_Player976-dede24106ebf-20211101-154924.mp4\r\n6.10_666_Player480-f153ac423f61-20210705-212104.mp4 6.13_20109_Player976-dede24106ebf-20211101-155033.mp4\r\n6.10_667_Player480-f153ac423f61-20210705-213249.mp4 6.13_2010_Player17-f153ac423f61-20211026-174705.mp4\r\n6.10_668_Player490-00b406d1d424-20210630-091436.mp4 6.13_20110_Player976-dede24106ebf-20211101-155140.mp4\r\n6.10_669_Player490-00b406d1d424-20210630-091936.mp4 6.13_20111_Player976-dede24106ebf-20211101-155257.mp4\r\n6.10_670_Player490-00b406d1d424-20210630-092440.mp4 6.13_20112_Player976-dede24106ebf-20211101-155409.mp4\r\n6.10_671_Player490-00b406d1d424-20210630-092939.mp4 6.13_20113_Player976-dede24106ebf-20211101-155518.mp4\r\n6.10_672_Player490-00b406d1d424-20210630-093449.mp4 6.13_20114_Player976-dede24106ebf-20211101-155631.mp4\r\n6.10_673_Player490-00b406d1d424-20210630-093958.mp4 6.13_20115_Player976-dede24106ebf-20211101-155746.mp4\r\n6.10_674_Player490-5f6b6cb8b2d1-20210630-094220.mp4 6.13_20116_Player976-dede24106ebf-20211101-155915.mp4\r\n6.10_675_Player490-5f6b6cb8b2d1-20210630-095803.mp4 6.13_20117_Player976-dede24106ebf-20211101-160057.mp4\r\n6.10_676_Player490-5f6b6cb8b2d1-20210630-101311.mp4 6.13_20118_Player976-dede24106ebf-20211101-160258.mp4\r\n6.10_677_Player490-5f6b6cb8b2d1-20210630-102819.mp4 6.13_20119_Player976-dede24106ebf-20211101-160431.mp4\r\n6.10_678_Player490-5f6b6cb8b2d1-20210630-104325.mp4 6.13_2011_Player17-f153ac423f61-20211026-175646.mp4\r\n6.10_679_Player490-5f6b6cb8b2d1-20210630-110052.mp4 6.13_20120_Player976-dede24106ebf-20211101-160543.mp4\r\n6.10_680_Player490-5f6b6cb8b2d1-20210630-111603.mp4 6.13_20121_Player976-dede24106ebf-20211101-160703.mp4\r\n6.10_681_Player490-5f6b6cb8b2d1-20210630-113457.mp4 6.13_20122_Player976-dede24106ebf-20211101-160806.mp4\r\n6.10_682_Player490-5f6b6cb8b2d1-20210630-115024.mp4 6.13_20123_Player976-dede24106ebf-20211101-160911.mp4\r\n6.10_683_Player490-5f6b6cb8b2d1-20210630-120534.mp4 6.13_20124_Player976-dede24106ebf-20211101-161018.mp4\r\n6.10_684_Player490-5f6b6cb8b2d1-20210630-122040.mp4 6.13_20125_Player976-dede24106ebf-20211101-161123.mp4\r\n6.10_685_Player490-7f72fdbb822e-20210630-085007.mp4 6.13_20126_Player976-dede24106ebf-20211101-161229.mp4\r\n6.10_686_Player490-b2a13e32b898-20210630-091059.mp4 6.13_20127_Player976-dede24106ebf-20211101-161341.mp4\r\n6.10_687_Player490-d0c5b28f3946-20210630-085305.mp4 6.13_20128_Player976-dede24106ebf-20211101-161447.mp4\r\n6.10_688_Player490-d0c5b28f3946-20210630-085810.mp4 6.13_20129_Player976-dede24106ebf-20211101-161623.mp4\r\n6.10_689_Player490-d0c5b28f3946-20210630-090314.mp4 6.13_2012_Player173-243718243294-20210917-183525.mp4\r\n6.10_690_Player490-d0c5b28f3946-20210630-090819.mp4 6.13_20130_Player976-dede24106ebf-20211101-161805.mp4\r\n6.10_691_Player490-f153ac423f61-20210630-075130.mp4 6.13_20131_Player976-f153ac423f61-20211101-152511.mp4\r\n6.10_692_Player490-f153ac423f61-20210630-080700.mp4 6.13_20132_Player976-f153ac423f61-20211101-152708.mp4\r\n6.10_693_Player490-f153ac423f61-20210630-082203.mp4 6.13_20133_Player976-f153ac423f61-20211101-152856.mp4\r\n6.10_694_Player490-f153ac423f61-20210630-083711.mp4 6.13_20134_Player976-f153ac423f61-20211101-153039.mp4\r\n6.10_695_Player490-f84ac8a94f38-20210630-085126.mp4 6.13_20135_Player976-f153ac423f61-20211101-153235.mp4\r\n6.10_696_Player498-f153ac423f61-20210629-215304.mp4 6.13_20136_Player976-f153ac423f61-20211101-153425.mp4\r\n6.10_697_Player498-f153ac423f61-20210629-215925.mp4 6.13_20137_Player976-f153ac423f61-20211101-153617.mp4\r\n6.10_698_Player498-f153ac423f61-20210629-220522.mp4 6.13_20138_Player976-f153ac423f61-20211101-153812.mp4\r\n6.10_699_Player498-f153ac423f61-20210629-221025.mp4 6.13_20139_Player976-f153ac423f61-20211101-154000.mp4\r\n6.10_700_Player498-f153ac423f61-20210629-221528.mp4 6.13_2013_Player173-243718243294-20210917-184430.mp4\r\n6.10_701_Player498-f153ac423f61-20210629-222030.mp4 6.13_20140_Player977-f153ac423f61-20210803-164757.mp4\r\n6.10_702_Player498-f153ac423f61-20210629-222532.mp4 6.13_20141_Player977-f153ac423f61-20210803-164904.mp4\r\n6.10_703_Player499-f153ac423f61-20210620-192602.mp4 6.13_20142_Player977-f153ac423f61-20210803-165007.mp4\r\n6.10_704_Player499-f153ac423f61-20210620-194609.mp4 6.13_20143_Player977-f153ac423f61-20210803-165107.mp4\r\n6.10_705_Player503-f153ac423f61-20210619-204736.mp4 6.13_20144_Player977-f153ac423f61-20210803-165208.mp4\r\n6.10_706_Player503-f153ac423f61-20210619-205300.mp4 6.13_20145_Player977-f153ac423f61-20210803-165308.mp4\r\n6.10_707_Player503-f153ac423f61-20210619-205832.mp4 6.13_20146_Player977-f153ac423f61-20210803-165409.mp4\r\n6.10_708_Player504-f153ac423f61-20210701-110007.mp4 6.13_20147_Player977-f153ac423f61-20210803-165510.mp4\r\n6.10_709_Player504-f153ac423f61-20210701-110524.mp4 6.13_20148_Player977-f153ac423f61-20210803-165611.mp4\r\n6.10_710_Player504-f153ac423f61-20210701-111103.mp4 6.13_20149_Player977-f153ac423f61-20210803-165712.mp4\r\n6.10_711_Player504-f153ac423f61-20210701-111610.mp4 6.13_2014_Player173-243718243294-20210917-185333.mp4\r\n6.10_712_Player504-f153ac423f61-20210701-112248.mp4 6.13_20150_Player977-f153ac423f61-20210803-165818.mp4\r\n6.10_713_Player504-f153ac423f61-20210701-112748.mp4 6.13_20151_Player977-f153ac423f61-20210803-165920.mp4\r\n6.10_714_Player504-f153ac423f61-20210701-113249.mp4 6.13_20152_Player977-f153ac423f61-20210803-170021.mp4\r\n6.10_715_Player504-f153ac423f61-20210701-113751.mp4 6.13_20153_Player977-f153ac423f61-20210803-170124.mp4\r\n6.10_716_Player504-f153ac423f61-20210701-114253.mp4 6.13_20154_Player977-f153ac423f61-20210803-170225.mp4\r\n6.10_717_Player504-f153ac423f61-20210701-114755.mp4 6.13_20155_Player977-f153ac423f61-20210803-170327.mp4\r\n6.10_718_Player504-f153ac423f61-20210701-115258.mp4 6.13_20156_Player977-f153ac423f61-20210803-170428.mp4\r\n6.10_719_Player504-f153ac423f61-20210701-115802.mp4 6.13_20157_Player977-f153ac423f61-20210803-171024.mp4\r\n6.10_720_Player504-f153ac423f61-20210701-120307.mp4 6.13_20158_Player977-f153ac423f61-20210803-171126.mp4\r\n6.10_721_Player504-f153ac423f61-20210701-120813.mp4 6.13_20159_Player977-f153ac423f61-20210803-171228.mp4\r\n6.10_722_Player504-f153ac423f61-20210701-121319.mp4 6.13_2015_Player173-243718243294-20210917-190449.mp4\r\n6.10_723_Player504-f153ac423f61-20210701-121823.mp4 6.13_20160_Player977-f153ac423f61-20210803-171330.mp4\r\n6.10_724_Player504-f153ac423f61-20210701-122325.mp4 6.13_20161_Player977-f153ac423f61-20210803-171432.mp4\r\n6.10_725_Player504-f153ac423f61-20210701-122832.mp4 6.13_20162_Player977-f153ac423f61-20210803-171534.mp4\r\n6.10_726_Player504-f153ac423f61-20210701-123341.mp4 6.13_20163_Player977-f153ac423f61-20210803-171637.mp4\r\n6.10_727_Player511-f153ac423f61-20210617-132026.mp4 6.13_20164_Player977-f153ac423f61-20210803-171740.mp4\r\n6.10_728_Player511-f153ac423f61-20210617-132544.mp4 6.13_20165_Player977-f153ac423f61-20210803-171843.mp4\r\n6.10_729_Player511-f153ac423f61-20210617-133057.mp4 6.13_20166_Player977-f153ac423f61-20210803-171945.mp4\r\n6.10_730_Player511-f153ac423f61-20210617-133607.mp4 6.13_20167_Player977-f153ac423f61-20210803-172209.mp4\r\n6.10_731_Player511-f153ac423f61-20210617-134115.mp4 6.13_20168_Player977-f153ac423f61-20210803-172310.mp4\r\n6.10_732_Player511-f153ac423f61-20210617-134626.mp4 6.13_20169_Player977-f153ac423f61-20210803-172410.mp4\r\n6.10_733_Player511-f153ac423f61-20210617-135134.mp4 6.13_2016_Player173-243718243294-20210917-191457.mp4\r\n6.10_734_Player511-f153ac423f61-20210617-135641.mp4 6.13_20170_Player977-f153ac423f61-20210803-172511.mp4\r\n6.10_735_Player511-f153ac423f61-20210617-140151.mp4 6.13_20171_Player977-f153ac423f61-20210803-172612.mp4\r\n6.10_736_Player511-f153ac423f61-20210617-140706.mp4 6.13_20172_Player977-f153ac423f61-20210803-172714.mp4\r\n6.10_737_Player511-f153ac423f61-20210617-141223.mp4 6.13_20173_Player977-f153ac423f61-20210803-172817.mp4\r\n6.10_738_Player511-f153ac423f61-20210617-141729.mp4 6.13_20174_Player977-f153ac423f61-20210803-172919.mp4\r\n6.10_739_Player511-f153ac423f61-20210617-142235.mp4 6.13_20175_Player977-f153ac423f61-20210803-173021.mp4\r\n6.10_740_Player511-f153ac423f61-20210617-142748.mp4 6.13_20176_Player977-f153ac423f61-20210803-173123.mp4\r\n6.10_741_Player525-f153ac423f61-20210713-173734.mp4 6.13_20177_Player977-f153ac423f61-20210803-173224.mp4\r\n6.10_742_Player525-f153ac423f61-20210713-175020.mp4 6.13_20178_Player977-f153ac423f61-20210803-173326.mp4\r\n6.10_743_Player525-f153ac423f61-20210713-180202.mp4 6.13_20179_Player977-f153ac423f61-20210803-173427.mp4\r\n6.10_744_Player525-f153ac423f61-20210713-181400.mp4 6.13_2017_Player173-243718243294-20210917-192959.mp4\r\n6.10_745_Player525-f153ac423f61-20210713-182656.mp4 6.13_20180_Player977-f153ac423f61-20210803-173528.mp4\r\n6.10_746_Player55-f153ac423f61-20210621-182212.mp4 6.13_20181_Player977-f153ac423f61-20210803-173629.mp4\r\n6.10_747_Player55-f153ac423f61-20210621-182723.mp4 6.13_20182_Player977-f153ac423f61-20210803-173730.mp4\r\n6.10_748_Player55-f153ac423f61-20210621-183225.mp4 6.13_20183_Player977-f153ac423f61-20210803-173831.mp4\r\n6.10_749_Player55-f153ac423f61-20210621-183728.mp4 6.13_20184_Player977-f153ac423f61-20210803-173932.mp4\r\n6.10_750_Player55-f153ac423f61-20210621-184229.mp4 6.13_20185_Player977-f153ac423f61-20210803-174032.mp4\r\n6.10_751_Player55-f153ac423f61-20210621-184730.mp4 6.13_20186_Player977-f153ac423f61-20210803-174135.mp4\r\n6.10_752_Player55-f153ac423f61-20210621-185230.mp4 6.13_20187_Player977-f153ac423f61-20210803-174237.mp4\r\n6.10_753_Player55-f153ac423f61-20210621-185732.mp4 6.13_20188_Player977-f153ac423f61-20210803-174338.mp4\r\n6.10_754_Player55-f153ac423f61-20210621-190234.mp4 6.13_20189_Player977-f153ac423f61-20210803-174440.mp4\r\n6.10_755_Player55-f153ac423f61-20210621-190734.mp4 6.13_2018_Player173-243718243294-20210917-194014.mp4\r\n6.10_756_Player555-f153ac423f61-20210628-105134.mp4 6.13_20190_Player977-f153ac423f61-20210803-174542.mp4\r\n6.10_757_Player555-f153ac423f61-20210628-105759.mp4 6.13_20191_Player977-f153ac423f61-20210803-174648.mp4\r\n6.10_758_Player555-f153ac423f61-20210628-110309.mp4 6.13_20192_Player977-f153ac423f61-20210803-174756.mp4\r\n6.10_759_Player555-f153ac423f61-20210628-110820.mp4 6.13_20193_Player977-f153ac423f61-20210803-174859.mp4\r\n6.10_760_Player555-f153ac423f61-20210628-111352.mp4 6.13_20194_Player977-f153ac423f61-20210803-175026.mp4\r\n6.10_761_Player555-f153ac423f61-20210628-111904.mp4 6.13_20195_Player977-f153ac423f61-20210803-175130.mp4\r\n6.10_762_Player555-f153ac423f61-20210628-112418.mp4 6.13_20196_Player977-f153ac423f61-20210803-175237.mp4\r\n6.10_763_Player555-f153ac423f61-20210628-112929.mp4 6.13_20197_Player977-f153ac423f61-20210803-175340.mp4\r\n6.10_764_Player555-f153ac423f61-20210628-113440.mp4 6.13_20198_Player977-f153ac423f61-20210803-175444.mp4\r\n6.10_765_Player555-f153ac423f61-20210628-113948.mp4 6.13_20199_Player977-f153ac423f61-20210803-175547.mp4\r\n6.10_766_Player555-f153ac423f61-20210628-114458.mp4 6.13_2019_Player173-243718243294-20210917-194917.mp4\r\n6.10_767_Player555-f153ac423f61-20210628-115013.mp4 6.13_201_Player107-f153ac423f61-20210811-124054.mp4\r\n6.10_768_Player555-f153ac423f61-20210628-115534.mp4 6.13_20200_Player977-f153ac423f61-20210803-175652.mp4\r\n6.10_769_Player555-f153ac423f61-20210628-120043.mp4 6.13_20201_Player977-f153ac423f61-20210803-175755.mp4\r\n6.10_770_Player555-f153ac423f61-20210628-121046.mp4 6.13_20202_Player977-f153ac423f61-20210803-175858.mp4\r\n6.10_771_Player555-f153ac423f61-20210628-121547.mp4 6.13_20203_Player977-f153ac423f61-20210803-180004.mp4\r\n6.10_772_Player555-f153ac423f61-20210628-122104.mp4 6.13_20204_Player977-f153ac423f61-20210803-180107.mp4\r\n6.10_773_Player555-f153ac423f61-20210628-122623.mp4 6.13_20205_Player977-f153ac423f61-20210803-180209.mp4\r\n6.10_774_Player555-f153ac423f61-20210628-123152.mp4 6.13_20206_Player977-f153ac423f61-20210803-180314.mp4\r\n6.10_775_Player555-f153ac423f61-20210628-123659.mp4 6.13_20207_Player977-f153ac423f61-20210803-180417.mp4\r\n6.10_776_Player558-c3360f9a9608-20210626-135443.mp4 6.13_20208_Player977-f153ac423f61-20210803-180520.mp4\r\n6.10_777_Player558-e694338e60ea-20210626-130820.mp4 6.13_20209_Player977-f153ac423f61-20210803-180622.mp4\r\n6.10_778_Player558-f153ac423f61-20210626-123204.mp4 6.13_2020_Player173-243718243294-20210917-195928.mp4\r\n6.10_779_Player558-f153ac423f61-20210626-123725.mp4 6.13_20210_Player977-f153ac423f61-20210803-180724.mp4\r\n6.10_780_Player560-f153ac423f61-20210617-094954.mp4 6.13_20211_Player977-f153ac423f61-20210803-180831.mp4\r\n6.10_781_Player560-f153ac423f61-20210617-095507.mp4 6.13_20212_Player978-f153ac423f61-20210721-161447.mp4\r\n6.10_782_Player560-f153ac423f61-20210617-100106.mp4 6.13_20213_Player978-f153ac423f61-20210721-161600.mp4\r\n6.10_783_Player560-f153ac423f61-20210617-100628.mp4 6.13_20214_Player978-f153ac423f61-20210721-161710.mp4\r\n6.10_784_Player560-f153ac423f61-20210617-101133.mp4 6.13_20215_Player978-f153ac423f61-20210721-161825.mp4\r\n6.10_785_Player560-f153ac423f61-20210617-101648.mp4 6.13_20216_Player978-f153ac423f61-20210721-161933.mp4\r\n6.10_786_Player560-f153ac423f61-20210617-102204.mp4 6.13_20217_Player978-f153ac423f61-20210721-162046.mp4\r\n6.10_787_Player560-f153ac423f61-20210617-102720.mp4 6.13_20218_Player978-f153ac423f61-20210721-162200.mp4\r\n6.10_788_Player560-f153ac423f61-20210617-103235.mp4 6.13_20219_Player978-f153ac423f61-20210721-162312.mp4\r\n6.10_789_Player560-f153ac423f61-20210617-103813.mp4 6.13_2021_Player173-243718243294-20210917-200939.mp4\r\n6.10_790_Player560-f153ac423f61-20210617-104538.mp4 6.13_20220_Player978-f153ac423f61-20210721-162413.mp4\r\n6.10_791_Player560-f153ac423f61-20210617-105039.mp4 6.13_20221_Player978-f153ac423f61-20210721-162518.mp4\r\n6.10_792_Player560-f153ac423f61-20210617-105544.mp4 6.13_20222_Player978-f153ac423f61-20210721-162620.mp4\r\n6.10_793_Player560-f153ac423f61-20210617-110052.mp4 6.13_20223_Player978-f153ac423f61-20210721-162724.mp4\r\n6.10_794_Player560-f153ac423f61-20210617-111105.mp4 6.13_20224_Player978-f153ac423f61-20210721-162829.mp4\r\n6.10_795_Player560-f153ac423f61-20210617-111616.mp4 6.13_20225_Player978-f153ac423f61-20210721-162934.mp4\r\n6.10_796_Player560-f153ac423f61-20210617-112115.mp4 6.13_20226_Player978-f153ac423f61-20210721-163038.mp4\r\n6.10_797_Player560-f153ac423f61-20210617-112620.mp4 6.13_20227_Player978-f153ac423f61-20210721-163151.mp4\r\n6.10_798_Player560-f153ac423f61-20210617-113324.mp4 6.13_20228_Player978-f153ac423f61-20210721-163256.mp4\r\n6.10_799_Player560-f153ac423f61-20210617-113905.mp4 6.13_20229_Player978-f153ac423f61-20210721-163356.mp4\r\n6.10_800_Player560-f153ac423f61-20210617-114536.mp4 6.13_2022_Player173-243718243294-20210917-201840.mp4\r\n6.10_801_Player573-92638089f184-20210622-101654.mp4 6.13_20230_Player978-f153ac423f61-20210721-163458.mp4\r\n6.10_802_Player573-92638089f184-20210622-102156.mp4 6.13_20231_Player978-f153ac423f61-20210721-163558.mp4\r\n6.10_803_Player573-92638089f184-20210622-102659.mp4 6.13_20232_Player978-f153ac423f61-20210721-163659.mp4\r\n6.10_804_Player573-92638089f184-20210622-103205.mp4 6.13_20233_Player978-f153ac423f61-20210721-163800.mp4\r\n6.10_805_Player573-92638089f184-20210622-103713.mp4 6.13_20234_Player978-f153ac423f61-20210721-163901.mp4\r\n6.10_806_Player573-92638089f184-20210622-104216.mp4 6.13_20235_Player978-f153ac423f61-20210721-164001.mp4\r\n6.10_807_Player573-92638089f184-20210622-104725.mp4 6.13_20236_Player978-f153ac423f61-20210721-164101.mp4\r\n6.10_808_Player573-92638089f184-20210622-105236.mp4 6.13_20237_Player978-f153ac423f61-20210721-164203.mp4\r\n6.10_809_Player573-92638089f184-20210622-105742.mp4 6.13_20238_Player978-f153ac423f61-20210721-164303.mp4\r\n6.10_810_Player573-92638089f184-20210622-111030.mp4 6.13_20239_Player978-f153ac423f61-20210721-164403.mp4\r\n6.10_811_Player573-92638089f184-20210622-111534.mp4 6.13_2023_Player173-243718243294-20210917-203007.mp4\r\n6.10_812_Player573-92638089f184-20210622-112040.mp4 6.13_20240_Player978-f153ac423f61-20210721-164505.mp4\r\n6.10_813_Player573-92638089f184-20210622-112544.mp4 6.13_20241_Player978-f153ac423f61-20210721-164606.mp4\r\n6.10_814_Player573-92638089f184-20210622-113048.mp4 6.13_20242_Player978-f153ac423f61-20210721-164707.mp4\r\n6.10_815_Player573-92638089f184-20210622-113552.mp4 6.13_20243_Player978-f153ac423f61-20210721-164807.mp4\r\n6.10_816_Player573-92638089f184-20210622-114058.mp4 6.13_20244_Player978-f153ac423f61-20210721-164908.mp4\r\n6.10_817_Player573-f153ac423f61-20210622-095922.mp4 6.13_20245_Player978-f153ac423f61-20210721-165008.mp4\r\n6.10_818_Player573-f153ac423f61-20210622-100434.mp4 6.13_20246_Player978-f153ac423f61-20210721-165109.mp4\r\n6.10_819_Player573-f153ac423f61-20210622-100936.mp4 6.13_20247_Player978-f153ac423f61-20210721-165211.mp4\r\n6.10_820_Player579-f153ac423f61-20210617-101011.mp4 6.13_20248_Player978-f153ac423f61-20210721-165313.mp4\r\n6.10_821_Player579-f153ac423f61-20210617-101858.mp4 6.13_20249_Player978-f153ac423f61-20210721-165413.mp4\r\n6.10_822_Player579-f153ac423f61-20210617-102958.mp4 6.13_2024_Player173-243718243294-20210917-203912.mp4\r\n6.10_823_Player588-f153ac423f61-20210622-112501.mp4 6.13_20250_Player978-f153ac423f61-20210721-165519.mp4\r\n6.10_824_Player588-f153ac423f61-20210622-113011.mp4 6.13_20251_Player978-f153ac423f61-20210721-165630.mp4\r\n6.10_825_Player588-f153ac423f61-20210622-113516.mp4 6.13_20252_Player978-f153ac423f61-20210721-165740.mp4\r\n6.10_826_Player588-f153ac423f61-20210622-114023.mp4 6.13_20253_Player978-f153ac423f61-20210721-165842.mp4\r\n6.10_827_Player588-f153ac423f61-20210622-114543.mp4 6.13_20254_Player978-f153ac423f61-20210721-165956.mp4\r\n6.10_828_Player588-f153ac423f61-20210622-115058.mp4 6.13_20255_Player978-f153ac423f61-20210721-170117.mp4\r\n6.10_829_Player588-f153ac423f61-20210622-115625.mp4 6.13_20256_Player978-f153ac423f61-20210721-170234.mp4\r\n6.10_830_Player588-f153ac423f61-20210622-120147.mp4 6.13_20257_Player978-f153ac423f61-20210721-170344.mp4\r\n6.10_831_Player588-f153ac423f61-20210622-120657.mp4 6.13_20258_Player978-f153ac423f61-20210721-170457.mp4\r\n6.10_832_Player588-f153ac423f61-20210622-121332.mp4 6.13_20259_Player978-f153ac423f61-20210721-170613.mp4\r\n6.10_833_Player588-f153ac423f61-20210622-121837.mp4 6.13_2025_Player173-243718243294-20210917-204812.mp4\r\n6.10_834_Player594-f153ac423f61-20210616-223656.mp4 6.13_20260_Player978-f153ac423f61-20210721-170726.mp4\r\n6.10_835_Player594-f153ac423f61-20210616-224200.mp4 6.13_20261_Player978-f153ac423f61-20210721-170839.mp4\r\n6.10_836_Player594-f153ac423f61-20210616-224700.mp4 6.13_20262_Player978-f153ac423f61-20210721-170946.mp4\r\n6.10_837_Player594-f153ac423f61-20210616-225159.mp4 6.13_20263_Player978-f153ac423f61-20210721-171100.mp4\r\n6.10_838_Player594-f153ac423f61-20210616-225657.mp4 6.13_20264_Player978-f153ac423f61-20210721-171206.mp4\r\n6.10_839_Player594-f153ac423f61-20210616-230156.mp4 6.13_20265_Player978-f153ac423f61-20210721-171309.mp4\r\n6.10_840_Player598-f153ac423f61-20210617-222040.mp4 6.13_20266_Player978-f153ac423f61-20210721-171421.mp4\r\n6.10_841_Player598-f153ac423f61-20210617-222704.mp4 6.13_20267_Player978-f153ac423f61-20210721-171529.mp4\r\n6.10_842_Player598-f153ac423f61-20210617-223249.mp4 6.13_20268_Player978-f153ac423f61-20210721-171647.mp4\r\n6.10_843_Player598-f153ac423f61-20210617-223754.mp4 6.13_20269_Player978-f153ac423f61-20210721-171749.mp4\r\n6.10_844_Player598-f153ac423f61-20210617-224301.mp4 6.13_2026_Player173-243718243294-20210917-205824.mp4\r\n6.10_845_Player598-f153ac423f61-20210617-224832.mp4 6.13_20270_Player978-f153ac423f61-20210721-171849.mp4\r\n6.10_846_Player598-f153ac423f61-20210617-225340.mp4 6.13_20271_Player978-f153ac423f61-20210721-171950.mp4\r\n6.10_847_Player598-f153ac423f61-20210617-225845.mp4 6.13_20272_Player978-f153ac423f61-20210721-172053.mp4\r\n6.10_848_Player598-f153ac423f61-20210617-230358.mp4 6.13_20273_Player978-f153ac423f61-20210721-172201.mp4\r\n6.10_849_Player598-f153ac423f61-20210617-230908.mp4 6.13_20274_Player978-f153ac423f61-20210721-172308.mp4\r\n6.10_850_Player6-53d705725915-20210626-162219.mp4 6.13_20275_Player978-f153ac423f61-20210721-172411.mp4\r\n6.10_851_Player6-900437e4bc85-20210626-161933.mp4 6.13_20276_Player978-f153ac423f61-20210721-172624.mp4\r\n6.10_852_Player6-f153ac423f61-20210626-160641.mp4 6.13_20277_Player978-f153ac423f61-20210721-172729.mp4\r\n6.10_853_Player602-f153ac423f61-20210610-225318.mp4 6.13_20278_Player978-f153ac423f61-20210721-172830.mp4\r\n6.10_854_Player602-f153ac423f61-20210610-225823.mp4 6.13_20279_Player978-f153ac423f61-20210721-172941.mp4\r\n6.10_855_Player602-f153ac423f61-20210610-230326.mp4 6.13_2027_Player173-243718243294-20210917-210936.mp4\r\n6.10_856_Player602-f153ac423f61-20210610-230827.mp4 6.13_20280_Player978-f153ac423f61-20210721-173056.mp4\r\n6.10_857_Player602-f153ac423f61-20210610-231333.mp4 6.13_20281_Player978-f153ac423f61-20210721-173211.mp4\r\n6.10_858_Player602-f153ac423f61-20210610-231834.mp4 6.13_20282_Player979-308655f01765-20211223-190932.mp4\r\n6.10_859_Player602-f153ac423f61-20210610-232334.mp4 6.13_20283_Player979-308655f01765-20211223-191237.mp4\r\n6.10_860_Player607-f153ac423f61-20210625-132957.mp4 6.13_20284_Player979-308655f01765-20211223-191547.mp4\r\n6.10_861_Player608-f153ac423f61-20210701-122344.mp4 6.13_20285_Player979-308655f01765-20211223-191751.mp4\r\n6.10_862_Player608-f153ac423f61-20210701-123856.mp4 6.13_20286_Player979-308655f01765-20211223-192154.mp4\r\n6.10_863_Player608-f153ac423f61-20210701-125352.mp4 6.13_20287_Player979-308655f01765-20211223-192357.mp4\r\n6.10_864_Player608-f153ac423f61-20210701-130853.mp4 6.13_20288_Player979-308655f01765-20211223-192657.mp4\r\n6.10_865_Player608-f153ac423f61-20210701-132351.mp4 6.13_20289_Player979-308655f01765-20211223-193000.mp4\r\n6.10_866_Player608-f153ac423f61-20210701-133850.mp4 6.13_2028_Player173-243718243294-20210917-211837.mp4\r\n6.10_867_Player608-f153ac423f61-20210701-135349.mp4 6.13_20290_Player979-308655f01765-20211223-193313.mp4\r\n6.10_868_Player608-f153ac423f61-20210701-140858.mp4 6.13_20291_Player979-308655f01765-20211223-193724.mp4\r\n6.10_869_Player608-f153ac423f61-20210701-142402.mp4 6.13_20292_Player979-308655f01765-20211223-194030.mp4\r\n6.10_870_Player608-f153ac423f61-20210701-143859.mp4 6.13_20293_Player979-308655f01765-20211223-194336.mp4\r\n6.10_871_Player608-f153ac423f61-20210701-151519.mp4 6.13_20294_Player979-a6cb8d115d43-20211223-190730.mp4\r\n6.10_872_Player608-f153ac423f61-20210701-153022.mp4 6.13_20295_Player979-ba9dcbd38236-20211223-194637.mp4\r\n6.10_873_Player61-f153ac423f61-20210623-132811.mp4 6.13_20296_Player979-ba9dcbd38236-20211223-195049.mp4\r\n6.10_874_Player61-f153ac423f61-20210629-160330.mp4 6.13_20297_Player979-f153ac423f61-20211023-150824.mp4\r\n6.10_875_Player61-f153ac423f61-20210629-160846.mp4 6.13_20298_Player979-f153ac423f61-20211023-151143.mp4\r\n6.10_876_Player61-f153ac423f61-20210629-161356.mp4 6.13_20299_Player979-f153ac423f61-20211023-151457.mp4\r\n6.10_877_Player61-f153ac423f61-20210629-161900.mp4 6.13_2029_Player173-243718243294-20210917-212952.mp4\r\n6.10_878_Player61-f153ac423f61-20210629-162415.mp4 6.13_202_Player107-f153ac423f61-20210811-124155.mp4\r\n6.10_879_Player61-f153ac423f61-20210629-162941.mp4 6.13_20300_Player979-f153ac423f61-20211023-151807.mp4\r\n6.10_880_Player61-f153ac423f61-20210629-163449.mp4 6.13_20301_Player979-f153ac423f61-20211023-152146.mp4\r\n6.10_881_Player61-f153ac423f61-20210629-164011.mp4 6.13_20302_Player979-f153ac423f61-20211023-152553.mp4\r\n6.10_882_Player629-f153ac423f61-20210628-221716.mp4 6.13_20303_Player979-f153ac423f61-20211023-152900.mp4\r\n6.10_883_Player629-f153ac423f61-20210628-222246.mp4 6.13_20304_Player979-f153ac423f61-20211223-190404.mp4\r\n6.10_884_Player629-f153ac423f61-20210628-222750.mp4 6.13_20305_Player980-f153ac423f61-20211220-200118.mp4\r\n6.10_885_Player629-f153ac423f61-20210628-223346.mp4 6.13_20306_Player980-f153ac423f61-20211220-200341.mp4\r\n6.10_886_Player629-f153ac423f61-20210628-223942.mp4 6.13_20307_Player980-f153ac423f61-20211220-200530.mp4\r\n6.10_887_Player629-f153ac423f61-20210628-224509.mp4 6.13_20308_Player980-f153ac423f61-20211220-200708.mp4\r\n6.10_888_Player629-f153ac423f61-20210628-225058.mp4 6.13_20309_Player980-f153ac423f61-20211220-200849.mp4\r\n6.10_889_Player629-f153ac423f61-20210628-225642.mp4 6.13_2030_Player173-243718243294-20210917-213902.mp4\r\n6.10_890_Player629-f153ac423f61-20210628-230229.mp4 6.13_20310_Player980-f153ac423f61-20211220-201039.mp4\r\n6.10_891_Player629-f153ac423f61-20210628-230759.mp4 6.13_20311_Player980-f153ac423f61-20211220-201229.mp4\r\n6.10_892_Player629-f153ac423f61-20210628-231337.mp4 6.13_20312_Player980-f153ac423f61-20211220-201423.mp4\r\n6.10_893_Player629-f153ac423f61-20210628-231910.mp4 6.13_20313_Player980-f153ac423f61-20211220-201613.mp4\r\n6.10_894_Player629-f153ac423f61-20210628-232429.mp4 6.13_20314_Player980-f153ac423f61-20211220-201803.mp4\r\n6.10_895_Player629-f153ac423f61-20210628-233000.mp4 6.13_20315_Player980-f153ac423f61-20211220-201954.mp4\r\n6.10_896_Player629-f153ac423f61-20210628-233505.mp4 6.13_20316_Player980-f153ac423f61-20211220-202148.mp4\r\n6.10_897_Player629-f153ac423f61-20210628-234023.mp4 6.13_20317_Player980-f153ac423f61-20211220-202340.mp4\r\n6.10_898_Player629-f153ac423f61-20210628-235109.mp4 6.13_20318_Player980-f153ac423f61-20211220-202532.mp4\r\n6.10_899_Player629-f153ac423f61-20210629-000142.mp4 6.13_20319_Player980-f153ac423f61-20211220-202727.mp4\r\n6.10_900_Player637-61bede435707-20210614-120822.mp4 6.13_2031_Player173-243718243294-20210917-215314.mp4\r\n6.10_901_Player637-61bede435707-20210614-121850.mp4 6.13_20320_Player980-f153ac423f61-20211220-202923.mp4\r\n6.10_902_Player637-f153ac423f61-20210614-105137.mp4 6.13_20321_Player980-f153ac423f61-20211220-203118.mp4\r\n6.10_903_Player637-f153ac423f61-20210614-105648.mp4 6.13_20322_Player980-f153ac423f61-20211220-203313.mp4\r\n6.10_904_Player637-f153ac423f61-20210614-110200.mp4 6.13_20323_Player980-f153ac423f61-20211220-203509.mp4\r\n6.10_905_Player637-f153ac423f61-20210614-110710.mp4 6.13_20324_Player980-f153ac423f61-20211220-203701.mp4\r\n6.10_906_Player637-f153ac423f61-20210614-111223.mp4 6.13_20325_Player980-f153ac423f61-20211220-203852.mp4\r\n6.10_907_Player637-f153ac423f61-20210614-111734.mp4 6.13_20326_Player980-f153ac423f61-20211220-204042.mp4\r\n6.10_908_Player637-f153ac423f61-20210614-112249.mp4 6.13_20327_Player980-f153ac423f61-20211220-204241.mp4\r\n6.10_909_Player637-f153ac423f61-20210614-112802.mp4 6.13_20328_Player980-f153ac423f61-20211220-204432.mp4\r\n6.10_910_Player637-f153ac423f61-20210614-113315.mp4 6.13_20329_Player980-f153ac423f61-20211220-204633.mp4\r\n",,terminal_output +637,6808403,"TERMINAL",0,0,"6.10_911_Player637-f153ac423f61-20210614-113832.mp4 6.13_2032_Player173-f153ac423f61-20210917-141631.mp4\r\n6.10_912_Player637-f153ac423f61-20210614-114345.mp4 6.13_20330_Player980-f153ac423f61-20211220-204958.mp4\r\n6.10_913_Player637-f153ac423f61-20210614-114850.mp4 6.13_20331_Player980-f153ac423f61-20211220-205151.mp4\r\n6.10_914_Player637-f153ac423f61-20210614-115403.mp4 6.13_20332_Player980-f153ac423f61-20211220-205348.mp4\r\n6.10_915_Player637-f153ac423f61-20210614-115917.mp4 6.13_20333_Player980-f153ac423f61-20211220-205540.mp4\r\n6.10_916_Player637-f153ac423f61-20210614-120429.mp4 6.13_20334_Player980-f153ac423f61-20211220-205722.mp4\r\n6.10_917_Player643-56017bdbf67d-20210625-103904.mp4 6.13_20335_Player980-f153ac423f61-20211220-205907.mp4\r\n6.10_918_Player643-f153ac423f61-20210625-103834.mp4 6.13_20336_Player980-f153ac423f61-20211220-210058.mp4\r\n6.10_919_Player644-f153ac423f61-20210617-115832.mp4 6.13_20337_Player980-f153ac423f61-20211220-210255.mp4\r\n6.10_920_Player644-f153ac423f61-20210617-120435.mp4 6.13_20338_Player980-f153ac423f61-20211220-210451.mp4\r\n6.10_921_Player644-f153ac423f61-20210617-120939.mp4 6.13_20339_Player980-f153ac423f61-20211220-210647.mp4\r\n6.10_922_Player644-f153ac423f61-20210617-121458.mp4 6.13_2033_Player173-f153ac423f61-20210917-142551.mp4\r\n6.10_923_Player644-f153ac423f61-20210617-122012.mp4 6.13_20340_Player980-f153ac423f61-20211220-210839.mp4\r\n6.10_924_Player644-f153ac423f61-20210617-122647.mp4 6.13_20341_Player980-f153ac423f61-20211220-211033.mp4\r\n6.10_925_Player644-f153ac423f61-20210617-123219.mp4 6.13_20342_Player980-f153ac423f61-20211220-211224.mp4\r\n6.10_926_Player644-f153ac423f61-20210617-123803.mp4 6.13_20343_Player980-f153ac423f61-20211220-211420.mp4\r\n6.10_927_Player644-f153ac423f61-20210617-124436.mp4 6.13_20344_Player980-f153ac423f61-20211220-211614.mp4\r\n6.10_928_Player644-f153ac423f61-20210617-124953.mp4 6.13_20345_Player980-f153ac423f61-20211220-211815.mp4\r\n6.10_929_Player647-f153ac423f61-20210623-192958.mp4 6.13_20346_Player980-f153ac423f61-20211220-212018.mp4\r\n6.10_930_Player647-f153ac423f61-20210623-193459.mp4 6.13_20347_Player980-f153ac423f61-20211220-212206.mp4\r\n6.10_931_Player647-f153ac423f61-20210623-193957.mp4 6.13_20348_Player980-f153ac423f61-20211220-212358.mp4\r\n6.10_932_Player647-f153ac423f61-20210623-194455.mp4 6.13_20349_Player980-f153ac423f61-20211220-212548.mp4\r\n6.10_933_Player647-f153ac423f61-20210623-194955.mp4 6.13_2034_Player173-f153ac423f61-20210917-143719.mp4\r\n6.10_934_Player649-f153ac423f61-20210620-090704.mp4 6.13_20350_Player980-f153ac423f61-20211220-212740.mp4\r\n6.10_935_Player649-f153ac423f61-20210620-091438.mp4 6.13_20351_Player980-f153ac423f61-20211220-212935.mp4\r\n6.10_936_Player652-f153ac423f61-20210617-182320.mp4 6.13_20352_Player980-f153ac423f61-20211220-213134.mp4\r\n6.10_937_Player652-f153ac423f61-20210617-182823.mp4 6.13_20353_Player980-f153ac423f61-20211220-213327.mp4\r\n6.10_938_Player652-f153ac423f61-20210617-183335.mp4 6.13_20354_Player980-f153ac423f61-20211220-213521.mp4\r\n6.10_939_Player652-f153ac423f61-20210617-183840.mp4 6.13_20355_Player980-f153ac423f61-20211220-213717.mp4\r\n6.10_940_Player652-f153ac423f61-20210617-184348.mp4 6.13_20356_Player980-f153ac423f61-20211220-213915.mp4\r\n6.10_941_Player652-f153ac423f61-20210617-184856.mp4 6.13_20357_Player980-f153ac423f61-20211220-214107.mp4\r\n6.10_942_Player652-f153ac423f61-20210617-185357.mp4 6.13_20358_Player980-f153ac423f61-20211220-214251.mp4\r\n6.10_943_Player652-f153ac423f61-20210617-185901.mp4 6.13_20359_Player980-f153ac423f61-20211220-214444.mp4\r\n6.10_944_Player652-f153ac423f61-20210617-190401.mp4 6.13_2035_Player173-f153ac423f61-20210917-144724.mp4\r\n6.10_945_Player652-f153ac423f61-20210617-190901.mp4 6.13_20360_Player980-f153ac423f61-20211220-214638.mp4\r\n6.10_946_Player652-f153ac423f61-20210617-191403.mp4 6.13_20361_Player980-f153ac423f61-20211220-214831.mp4\r\n6.10_947_Player652-f153ac423f61-20210617-191904.mp4 6.13_20362_Player980-f153ac423f61-20211220-215025.mp4\r\n6.10_948_Player652-f153ac423f61-20210617-192403.mp4 6.13_20363_Player980-f153ac423f61-20211220-215210.mp4\r\n6.10_949_Player652-f153ac423f61-20210617-192906.mp4 6.13_20364_Player980-f153ac423f61-20211220-215401.mp4\r\n6.10_950_Player652-f153ac423f61-20210617-193411.mp4 6.13_20365_Player980-f153ac423f61-20211220-215552.mp4\r\n6.10_951_Player652-f153ac423f61-20210617-193932.mp4 6.13_20366_Player980-f153ac423f61-20211220-215741.mp4\r\n6.10_952_Player652-f153ac423f61-20210617-194603.mp4 6.13_20367_Player980-f153ac423f61-20211220-215934.mp4\r\n6.10_953_Player652-f153ac423f61-20210617-195103.mp4 6.13_20368_Player980-f153ac423f61-20211220-220124.mp4\r\n6.10_954_Player652-f153ac423f61-20210617-195603.mp4 6.13_20369_Player980-f153ac423f61-20211220-220314.mp4\r\n6.10_955_Player652-f153ac423f61-20210617-200104.mp4 6.13_2036_Player173-f153ac423f61-20210917-145629.mp4\r\n6.10_956_Player652-f153ac423f61-20210617-200607.mp4 6.13_20370_Player981-f153ac423f61-20211014-232809.mp4\r\n6.10_957_Player652-f153ac423f61-20210617-201110.mp4 6.13_20371_Player984-0ac58e164e3c-20211219-152656.mp4\r\n6.10_958_Player652-f153ac423f61-20210617-201615.mp4 6.13_20372_Player984-448235d49147-20211125-125237.mp4\r\n6.10_959_Player652-f153ac423f61-20210617-202116.mp4 6.13_20373_Player984-448235d49147-20211125-125337.mp4\r\n6.10_960_Player652-f153ac423f61-20210617-202617.mp4 6.13_20374_Player984-448235d49147-20211125-125437.mp4\r\n6.10_961_Player652-f153ac423f61-20210617-203118.mp4 6.13_20375_Player984-448235d49147-20211125-125538.mp4\r\n6.10_962_Player652-f153ac423f61-20210617-203619.mp4 6.13_20376_Player984-448235d49147-20211125-125638.mp4\r\n6.10_963_Player652-f153ac423f61-20210617-204122.mp4 6.13_20377_Player984-448235d49147-20211125-125738.mp4\r\n6.10_964_Player652-f153ac423f61-20210617-204623.mp4 6.13_20378_Player984-448235d49147-20211125-125838.mp4\r\n6.10_965_Player652-f153ac423f61-20210617-205124.mp4 6.13_20379_Player984-448235d49147-20211125-125938.mp4\r\n6.10_966_Player652-f153ac423f61-20210617-205626.mp4 6.13_2037_Player173-f153ac423f61-20210917-150535.mp4\r\n6.10_967_Player652-f153ac423f61-20210617-210127.mp4 6.13_20380_Player984-448235d49147-20211125-130038.mp4\r\n6.10_968_Player661-f153ac423f61-20210626-192030.mp4 6.13_20381_Player984-448235d49147-20211125-130138.mp4\r\n6.10_969_Player661-f153ac423f61-20210626-193053.mp4 6.13_20382_Player984-448235d49147-20211125-130238.mp4\r\n6.10_970_Player661-f153ac423f61-20210626-193925.mp4 6.13_20383_Player984-448235d49147-20211125-130338.mp4\r\n6.10_971_Player661-f153ac423f61-20210626-194910.mp4 6.13_20384_Player984-448235d49147-20211125-130438.mp4\r\n6.10_972_Player661-f153ac423f61-20210626-200106.mp4 6.13_20385_Player984-448235d49147-20211125-130538.mp4\r\n6.10_973_Player661-f153ac423f61-20210626-201130.mp4 6.13_20386_Player984-448235d49147-20211125-130638.mp4\r\n6.10_974_Player661-f153ac423f61-20210626-202125.mp4 6.13_20387_Player984-448235d49147-20211125-130738.mp4\r\n6.10_975_Player661-f153ac423f61-20210626-203310.mp4 6.13_20388_Player984-448235d49147-20211125-130838.mp4\r\n6.10_976_Player661-f153ac423f61-20210626-204500.mp4 6.13_20389_Player984-448235d49147-20211125-130938.mp4\r\n6.10_977_Player661-f153ac423f61-20210626-205547.mp4 6.13_2038_Player173-f153ac423f61-20210917-151440.mp4\r\n6.10_978_Player661-f153ac423f61-20210626-210633.mp4 6.13_20390_Player984-448235d49147-20211125-131038.mp4\r\n6.10_979_Player661-f153ac423f61-20210626-211725.mp4 6.13_20391_Player984-448235d49147-20211125-131138.mp4\r\n6.10_980_Player661-f153ac423f61-20210626-212833.mp4 6.13_20392_Player984-448235d49147-20211125-131238.mp4\r\n6.10_981_Player661-f153ac423f61-20210626-213935.mp4 6.13_20393_Player984-448235d49147-20211125-131338.mp4\r\n6.10_982_Player661-f153ac423f61-20210626-214938.mp4 6.13_20394_Player984-448235d49147-20211125-131438.mp4\r\n6.10_983_Player662-f153ac423f61-20210610-213509.mp4 6.13_20395_Player984-448235d49147-20211125-131538.mp4\r\n6.10_984_Player662-f153ac423f61-20210610-214012.mp4 6.13_20396_Player984-448235d49147-20211125-131638.mp4\r\n6.10_985_Player662-f153ac423f61-20210610-214514.mp4 6.13_20397_Player984-448235d49147-20211125-131738.mp4\r\n6.10_986_Player662-f153ac423f61-20210610-215014.mp4 6.13_20398_Player984-448235d49147-20211125-131838.mp4\r\n6.10_987_Player662-f153ac423f61-20210610-215513.mp4 6.13_20399_Player984-448235d49147-20211125-131938.mp4\r\n6.10_988_Player662-f153ac423f61-20210610-220014.mp4 6.13_2039_Player173-f153ac423f61-20210917-152450.mp4\r\n6.10_989_Player663-f153ac423f61-20210609-123236.mp4 6.13_203_Player107-f153ac423f61-20210811-124257.mp4\r\n6.10_990_Player664-5677cd03f9cb-20210622-221139.mp4 6.13_20400_Player984-448235d49147-20211125-132038.mp4\r\n6.10_991_Player664-5677cd03f9cb-20210622-221641.mp4 6.13_20401_Player984-448235d49147-20211125-132138.mp4\r\n6.10_992_Player664-f153ac423f61-20210622-220930.mp4 6.13_20402_Player984-448235d49147-20211125-132238.mp4\r\n6.10_993_Player67-f153ac423f61-20210624-103946.mp4 6.13_20403_Player984-448235d49147-20211125-132338.mp4\r\n6.10_994_Player679-f153ac423f61-20210610-203533.mp4 6.13_20404_Player984-448235d49147-20211125-132438.mp4\r\n6.10_995_Player679-f153ac423f61-20210610-204048.mp4 6.13_20405_Player984-448235d49147-20211125-132538.mp4\r\n6.10_996_Player68-2011d6753a39-20210621-191100.mp4 6.13_20406_Player984-448235d49147-20211125-132638.mp4\r\n6.10_997_Player68-2011d6753a39-20210621-191718.mp4 6.13_20407_Player984-448235d49147-20211125-132738.mp4\r\n6.10_998_Player68-2011d6753a39-20210621-192346.mp4 6.13_20408_Player984-448235d49147-20211125-132838.mp4\r\n6.10_999_Player68-2011d6753a39-20210621-193000.mp4 6.13_20409_Player984-ad9323731810-20211219-152814.mp4\r\n6.11_001_Player113-f153ac423f61-20210719-133040.mp4 6.13_2040_Player173-f153ac423f61-20210917-153354.mp4\r\n6.11_002_Player113-f153ac423f61-20210719-133610.mp4 6.13_20410_Player984-ad9323731810-20211219-152917.mp4\r\n6.11_003_Player113-f153ac423f61-20210719-134116.mp4 6.13_20411_Player984-ad9323731810-20211219-153019.mp4\r\n6.11_004_Player113-f153ac423f61-20210719-135147.mp4 6.13_20412_Player984-ad9323731810-20211219-153120.mp4\r\n6.11_005_Player113-f153ac423f61-20210719-135736.mp4 6.13_20413_Player984-c4ac191c24dd-20211026-131341.mp4\r\n6.11_006_Player113-f153ac423f61-20210719-140400.mp4 6.13_20414_Player984-c4ac191c24dd-20211026-131527.mp4\r\n6.11_007_Player113-f153ac423f61-20210719-140941.mp4 6.13_20415_Player984-c4ac191c24dd-20211026-131718.mp4\r\n6.11_008_Player113-f153ac423f61-20210719-141956.mp4 6.13_20416_Player984-d425518546f4-20211219-150210.mp4\r\n6.11_009_Player113-f153ac423f61-20210719-142548.mp4 6.13_20417_Player984-d425518546f4-20211219-150310.mp4\r\n6.11_010_Player113-f153ac423f61-20210719-143138.mp4 6.13_20418_Player984-d425518546f4-20211219-150413.mp4\r\n6.11_011_Player113-f153ac423f61-20210719-143757.mp4 6.13_20419_Player984-d425518546f4-20211219-150618.mp4\r\n6.11_012_Player113-f153ac423f61-20210719-144415.mp4 6.13_2041_Player173-f153ac423f61-20210917-154256.mp4\r\n6.11_013_Player113-f153ac423f61-20210719-144959.mp4 6.13_20420_Player984-d425518546f4-20211219-150827.mp4\r\n6.11_014_Player113-f153ac423f61-20210719-145558.mp4 6.13_20421_Player984-d425518546f4-20211219-150927.mp4\r\n6.11_015_Player113-f153ac423f61-20210719-150202.mp4 6.13_20422_Player984-d425518546f4-20211219-151126.mp4\r\n6.11_016_Player113-f153ac423f61-20210719-150806.mp4 6.13_20423_Player984-d425518546f4-20211219-151227.mp4\r\n6.11_017_Player119-f153ac423f61-20210716-194055.mp4 6.13_20424_Player984-d425518546f4-20211219-151330.mp4\r\n6.11_018_Player119-f153ac423f61-20210716-195130.mp4 6.13_20425_Player984-d425518546f4-20211219-151435.mp4\r\n6.11_019_Player12-f153ac423f61-20210717-195716.mp4 6.13_20426_Player984-d425518546f4-20211219-151536.mp4\r\n6.11_020_Player12-f153ac423f61-20210717-200430.mp4 6.13_20427_Player984-d425518546f4-20211219-151637.mp4\r\n6.11_021_Player12-f153ac423f61-20210717-201004.mp4 6.13_20428_Player984-d425518546f4-20211219-151737.mp4\r\n6.11_022_Player12-f153ac423f61-20210717-201548.mp4 6.13_20429_Player984-d425518546f4-20211219-151837.mp4\r\n6.11_023_Player12-f153ac423f61-20210717-202243.mp4 6.13_2042_Player173-f153ac423f61-20210917-155401.mp4\r\n6.11_024_Player12-f153ac423f61-20210717-202819.mp4 6.13_20430_Player984-d425518546f4-20211219-151937.mp4\r\n6.11_025_Player12-f153ac423f61-20210717-203321.mp4 6.13_20431_Player984-d425518546f4-20211219-152138.mp4\r\n6.11_026_Player12-f153ac423f61-20210717-203831.mp4 6.13_20432_Player984-d425518546f4-20211219-152337.mp4\r\n6.11_027_Player12-f153ac423f61-20210717-204332.mp4 6.13_20433_Player984-d425518546f4-20211219-152540.mp4\r\n6.11_028_Player12-f153ac423f61-20210717-204904.mp4 6.13_20434_Player984-d8687e6c0bb2-20211219-153317.mp4\r\n6.11_029_Player12-f153ac423f61-20210717-205411.mp4 6.13_20435_Player984-d8687e6c0bb2-20211219-153518.mp4\r\n6.11_030_Player12-f153ac423f61-20210717-205917.mp4 6.13_20436_Player984-d8687e6c0bb2-20211219-153619.mp4\r\n6.11_031_Player12-f153ac423f61-20210717-210518.mp4 6.13_20437_Player984-d8687e6c0bb2-20211219-153720.mp4\r\n6.11_032_Player12-f153ac423f61-20210717-211102.mp4 6.13_20438_Player984-d8687e6c0bb2-20211219-153854.mp4\r\n6.11_033_Player12-f153ac423f61-20210717-211606.mp4 6.13_20439_Player984-d8687e6c0bb2-20211219-154056.mp4\r\n6.11_034_Player12-f153ac423f61-20210717-212111.mp4 6.13_2043_Player173-f153ac423f61-20210917-160522.mp4\r\n6.11_035_Player12-f153ac423f61-20210717-212658.mp4 6.13_20440_Player984-d8687e6c0bb2-20211219-154155.mp4\r\n6.11_036_Player12-f153ac423f61-20210717-213335.mp4 6.13_20441_Player984-d8687e6c0bb2-20211219-154357.mp4\r\n6.11_037_Player12-f153ac423f61-20210717-214036.mp4 6.13_20442_Player984-d8687e6c0bb2-20211219-154558.mp4\r\n6.11_038_Player129-15dc4522cfb6-20210801-170256.mp4 6.13_20443_Player984-d8687e6c0bb2-20211219-154658.mp4\r\n6.11_039_Player129-15dc4522cfb6-20210801-170807.mp4 6.13_20444_Player984-d8687e6c0bb2-20211219-154903.mp4\r\n6.11_040_Player129-18d96b3bf32d-20210730-000834.mp4 6.13_20445_Player984-d8687e6c0bb2-20211219-155110.mp4\r\n6.11_041_Player129-1bf616ad27cf-20210730-001152.mp4 6.13_20446_Player984-d8687e6c0bb2-20211219-155211.mp4\r\n6.11_042_Player129-424b00dbfbec-20210801-170943.mp4 6.13_20447_Player984-d8687e6c0bb2-20211219-155313.mp4\r\n6.11_043_Player129-4ad9ea034a19-20210801-165838.mp4 6.13_20448_Player984-d8687e6c0bb2-20211219-155514.mp4\r\n6.11_044_Player129-4b1fe795e018-20210801-221842.mp4 6.13_20449_Player984-d8687e6c0bb2-20211219-155614.mp4\r\n6.11_045_Player129-588d028484d4-20210730-001808.mp4 6.13_2044_Player173-f153ac423f61-20210917-161531.mp4\r\n6.11_046_Player129-588d028484d4-20210730-174726.mp4 6.13_20450_Player984-d8687e6c0bb2-20211219-155814.mp4\r\n6.11_047_Player129-588d028484d4-20210730-175513.mp4 6.13_20451_Player984-d8687e6c0bb2-20211219-155915.mp4\r\n6.11_048_Player129-588d028484d4-20210730-180040.mp4 6.13_20452_Player984-d8687e6c0bb2-20211219-160015.mp4\r\n6.11_049_Player129-5e4c762b8319-20210729-143542.mp4 6.13_20453_Player984-d8687e6c0bb2-20211219-160216.mp4\r\n6.11_050_Player129-5e4c762b8319-20210729-144057.mp4 6.13_20454_Player984-d8687e6c0bb2-20211219-160327.mp4\r\n6.11_051_Player129-5e4c762b8319-20210729-144605.mp4 6.13_20455_Player984-d8687e6c0bb2-20211219-160528.mp4\r\n6.11_052_Player129-5e4c762b8319-20210729-232954.mp4 6.13_20456_Player984-d8687e6c0bb2-20211219-160729.mp4\r\n6.11_053_Player129-80a6c8b022cc-20210729-134028.mp4 6.13_20457_Player984-d8687e6c0bb2-20211219-160829.mp4\r\n6.11_054_Player129-80a6c8b022cc-20210729-134536.mp4 6.13_20458_Player984-d8687e6c0bb2-20211219-161032.mp4\r\n6.11_055_Player129-80a6c8b022cc-20210729-135046.mp4 6.13_20459_Player984-d8687e6c0bb2-20211219-161234.mp4\r\n6.11_056_Player129-80a6c8b022cc-20210729-135603.mp4 6.13_2045_Player173-f153ac423f61-20210917-162538.mp4\r\n6.11_057_Player129-831d04016986-20210729-234608.mp4 6.13_20460_Player984-d8687e6c0bb2-20211219-161440.mp4\r\n6.11_058_Player129-8a0b70170646-20210731-005233.mp4 6.13_20461_Player984-d8687e6c0bb2-20211219-161648.mp4\r\n6.11_059_Player129-8a0b70170646-20210801-163604.mp4 6.13_20462_Player984-d8687e6c0bb2-20211219-161850.mp4\r\n6.11_060_Player129-8a0b70170646-20210801-164118.mp4 6.13_20463_Player984-d8687e6c0bb2-20211219-162050.mp4\r\n6.11_061_Player129-b3819dff2ed2-20210729-234957.mp4 6.13_20464_Player984-f153ac423f61-20211019-215141.mp4\r\n6.11_062_Player129-cc3afa2a9410-20210801-171132.mp4 6.13_20465_Player984-f153ac423f61-20211019-215327.mp4\r\n6.11_063_Player129-cc3afa2a9410-20210801-171639.mp4 6.13_20466_Player984-f153ac423f61-20211019-215505.mp4\r\n6.11_064_Player129-cc3afa2a9410-20210801-172148.mp4 6.13_20467_Player984-f153ac423f61-20211019-215641.mp4\r\n6.11_065_Player129-cc3afa2a9410-20210801-172654.mp4 6.13_20468_Player984-f153ac423f61-20211019-215817.mp4\r\n6.11_066_Player129-cc3afa2a9410-20210801-173206.mp4 6.13_20469_Player984-f153ac423f61-20211019-215952.mp4\r\n6.11_067_Player129-cc3afa2a9410-20210801-173714.mp4 6.13_2046_Player173-f153ac423f61-20210917-163543.mp4\r\n6.11_068_Player129-cc3afa2a9410-20210801-174223.mp4 6.13_20470_Player984-f153ac423f61-20211019-220144.mp4\r\n6.11_069_Player129-cc3afa2a9410-20210801-174728.mp4 6.13_20471_Player984-f153ac423f61-20211019-220341.mp4\r\n6.11_070_Player129-cda39df9171c-20210730-182842.mp4 6.13_20472_Player984-f153ac423f61-20211019-220540.mp4\r\n6.11_071_Player129-cda39df9171c-20210731-002734.mp4 6.13_20473_Player984-f153ac423f61-20211019-220740.mp4\r\n6.11_072_Player129-cda39df9171c-20210731-003241.mp4 6.13_20474_Player984-f153ac423f61-20211019-220940.mp4\r\n6.11_073_Player129-cda39df9171c-20210731-003749.mp4 6.13_20475_Player984-f153ac423f61-20211019-221144.mp4\r\n6.11_074_Player129-cda39df9171c-20210731-004301.mp4 6.13_20476_Player984-f153ac423f61-20211019-221344.mp4\r\n6.11_075_Player129-cda39df9171c-20210731-004811.mp4 6.13_20477_Player984-f153ac423f61-20211019-221542.mp4\r\n6.11_076_Player129-d02ed22e3153-20210730-181429.mp4 6.13_20478_Player984-f153ac423f61-20211019-221737.mp4\r\n6.11_077_Player129-e264242db07a-20210801-175027.mp4 6.13_20479_Player984-f153ac423f61-20211019-221928.mp4\r\n6.11_078_Player129-e264242db07a-20210801-175545.mp4 6.13_2047_Player173-f153ac423f61-20210917-164445.mp4\r\n6.11_079_Player129-e264242db07a-20210801-180254.mp4 6.13_20480_Player984-f153ac423f61-20211019-222255.mp4\r\n6.11_080_Player129-e264242db07a-20210801-180805.mp4 6.13_20481_Player984-f153ac423f61-20211019-222438.mp4\r\n6.11_081_Player129-e264242db07a-20210801-181314.mp4 6.13_20482_Player984-f153ac423f61-20211019-222625.mp4\r\n6.11_082_Player129-e264242db07a-20210801-181926.mp4 6.13_20483_Player984-f153ac423f61-20211019-222802.mp4\r\n6.11_083_Player129-e264242db07a-20210801-182438.mp4 6.13_20484_Player984-f153ac423f61-20211019-222939.mp4\r\n6.11_084_Player129-e264242db07a-20210801-182949.mp4 6.13_20485_Player984-f153ac423f61-20211019-223115.mp4\r\n6.11_085_Player129-e264242db07a-20210801-183458.mp4 6.13_20486_Player984-f153ac423f61-20211019-223244.mp4\r\n6.11_086_Player129-e264242db07a-20210801-201127.mp4 6.13_20487_Player984-f153ac423f61-20211019-223423.mp4\r\n6.11_087_Player129-e264242db07a-20210801-201640.mp4 6.13_20488_Player984-f153ac423f61-20211019-223600.mp4\r\n6.11_088_Player129-e264242db07a-20210801-202151.mp4 6.13_20489_Player984-f153ac423f61-20211019-223738.mp4\r\n6.11_089_Player129-e264242db07a-20210801-202939.mp4 6.13_2048_Player175-f153ac423f61-20211110-142007.mp4\r\n6.11_090_Player129-e264242db07a-20210801-205727.mp4 6.13_20490_Player984-f153ac423f61-20211019-223919.mp4\r\n6.11_091_Player129-e264242db07a-20210801-210241.mp4 6.13_20491_Player984-f153ac423f61-20211019-224058.mp4\r\n6.11_092_Player129-e264242db07a-20210801-210750.mp4 6.13_20492_Player984-f153ac423f61-20211019-224236.mp4\r\n6.11_093_Player129-e264242db07a-20210801-214443.mp4 6.13_20493_Player984-f153ac423f61-20211019-224414.mp4\r\n6.11_094_Player129-e264242db07a-20210801-221349.mp4 6.13_20494_Player984-f153ac423f61-20211019-224548.mp4\r\n6.11_095_Player129-e82dbae558e4-20210730-001249.mp4 6.13_20495_Player984-f153ac423f61-20211019-224724.mp4\r\n6.11_096_Player129-eb68123bd2b2-20210801-222454.mp4 6.13_20496_Player984-f153ac423f61-20211019-224850.mp4\r\n6.11_097_Player129-eb68123bd2b2-20210801-223022.mp4 6.13_20497_Player984-f153ac423f61-20211019-225013.mp4\r\n6.11_098_Player129-f153ac423f61-20210729-133013.mp4 6.13_20498_Player984-f153ac423f61-20211019-225140.mp4\r\n6.11_099_Player129-f153ac423f61-20210729-133522.mp4 6.13_20499_Player984-f153ac423f61-20211019-225303.mp4\r\n6.11_1000_Player612-f153ac423f61-20210704-204049.mp4 6.13_2049_Player177-208ee2ffd595-20211130-202512.mp4\r\n6.11_1001_Player612-f153ac423f61-20210704-204717.mp4 6.13_204_Player107-f153ac423f61-20210811-124358.mp4\r\n6.11_1002_Player612-f153ac423f61-20210704-205326.mp4 6.13_20500_Player984-f153ac423f61-20211019-225443.mp4\r\n6.11_1003_Player612-f153ac423f61-20210704-210043.mp4 6.13_20501_Player984-f153ac423f61-20211019-225626.mp4\r\n6.11_1004_Player612-f153ac423f61-20210704-210751.mp4 6.13_20502_Player984-f153ac423f61-20211019-225813.mp4\r\n6.11_1005_Player612-f153ac423f61-20210704-211326.mp4 6.13_20503_Player984-f153ac423f61-20211019-225949.mp4\r\n6.11_1006_Player612-f153ac423f61-20210704-211910.mp4 6.13_20504_Player984-f153ac423f61-20211019-230127.mp4\r\n6.11_1007_Player612-f8f3164fa704-20210704-215004.mp4 6.13_20505_Player984-f153ac423f61-20211019-230307.mp4\r\n6.11_1008_Player612-f8f3164fa704-20210704-215523.mp4 6.13_20506_Player984-f153ac423f61-20211019-230446.mp4\r\n6.11_1009_Player612-f8f3164fa704-20210704-220053.mp4 6.13_20507_Player984-f153ac423f61-20211019-230626.mp4\r\n6.11_100_Player129-f9c390c177fb-20210730-180615.mp4 6.13_20508_Player984-f153ac423f61-20211019-230806.mp4\r\n6.11_1010_Player612-f8f3164fa704-20210704-220624.mp4 6.13_20509_Player984-f153ac423f61-20211019-230953.mp4\r\n6.11_1011_Player612-f8f3164fa704-20210704-221137.mp4 6.13_2050_Player177-33dbf5888359-20211130-184348.mp4\r\n6.11_1012_Player612-f8f3164fa704-20210704-221715.mp4 6.13_20510_Player984-f153ac423f61-20211019-231136.mp4\r\n6.11_1013_Player612-f8f3164fa704-20210704-222231.mp4 6.13_20511_Player984-f153ac423f61-20211019-231325.mp4\r\n6.11_1014_Player612-f8f3164fa704-20210704-222742.mp4 6.13_20512_Player984-f153ac423f61-20211019-231517.mp4\r\n6.11_1015_Player612-f8f3164fa704-20210704-223327.mp4 6.13_20513_Player984-f153ac423f61-20211019-231643.mp4\r\n6.11_1016_Player613-f153ac423f61-20210702-184919.mp4 6.13_20514_Player984-f153ac423f61-20211019-231817.mp4\r\n6.11_1017_Player613-f153ac423f61-20210702-185437.mp4 6.13_20515_Player984-f153ac423f61-20211019-231957.mp4\r\n6.11_1018_Player613-f153ac423f61-20210702-190010.mp4 6.13_20516_Player984-f153ac423f61-20211019-232125.mp4\r\n6.11_1019_Player613-f153ac423f61-20210702-190602.mp4 6.13_20517_Player984-f153ac423f61-20211019-232258.mp4\r\n6.11_101_Player129-f9c390c177fb-20210730-181124.mp4 6.13_20518_Player984-f153ac423f61-20211019-232437.mp4\r\n6.11_1020_Player613-f153ac423f61-20210702-191109.mp4 6.13_20519_Player984-f153ac423f61-20211019-232615.mp4\r\n6.11_1021_Player613-f153ac423f61-20210702-191622.mp4 6.13_2051_Player177-33dbf5888359-20211130-184753.mp4\r\n6.11_1022_Player613-f153ac423f61-20210702-192135.mp4 6.13_20520_Player984-f153ac423f61-20211019-232740.mp4\r\n6.11_1023_Player613-f153ac423f61-20210702-192643.mp4 6.13_20521_Player984-f153ac423f61-20211019-232909.mp4\r\n6.11_1024_Player613-f153ac423f61-20210702-193159.mp4 6.13_20522_Player984-f153ac423f61-20211019-233041.mp4\r\n6.11_1025_Player613-f153ac423f61-20210702-193659.mp4 6.13_20523_Player984-f153ac423f61-20211019-233216.mp4\r\n6.11_1026_Player613-f153ac423f61-20210702-194159.mp4 6.13_20524_Player984-f153ac423f61-20211019-233353.mp4\r\n6.11_1027_Player613-f153ac423f61-20210702-194712.mp4 6.13_20525_Player984-f153ac423f61-20211019-233530.mp4\r\n6.11_1028_Player613-f153ac423f61-20210702-195245.mp4 6.13_20526_Player984-f153ac423f61-20211019-233706.mp4\r\n6.11_1029_Player613-f153ac423f61-20210702-195854.mp4 6.13_20527_Player984-f153ac423f61-20211019-233846.mp4\r\n6.11_102_Player129-fa5497b38062-20210730-181539.mp4 6.13_20528_Player984-f153ac423f61-20211019-234014.mp4\r\n6.11_1030_Player613-f153ac423f61-20210702-200412.mp4 6.13_20529_Player984-f153ac423f61-20211019-234151.mp4\r\n6.11_1031_Player629-1d772c4b16d8-20210802-105045.mp4 6.13_2052_Player177-33dbf5888359-20211130-185259.mp4\r\n6.11_1032_Player629-1d772c4b16d8-20210802-120837.mp4 6.13_20530_Player984-f153ac423f61-20211019-234329.mp4\r\n6.11_1033_Player629-f153ac423f61-20210802-100155.mp4 6.13_20531_Player984-f153ac423f61-20211019-234455.mp4\r\n6.11_1034_Player629-f153ac423f61-20210802-104831.mp4 6.13_20532_Player984-f153ac423f61-20211019-234630.mp4\r\n6.11_1035_Player657-f153ac423f61-20210707-190219.mp4 6.13_20533_Player984-f153ac423f61-20211019-234801.mp4\r\n6.11_1036_Player657-f153ac423f61-20210707-190744.mp4 6.13_20534_Player984-f153ac423f61-20211019-234941.mp4\r\n6.11_1037_Player657-f153ac423f61-20210707-191320.mp4 6.13_20535_Player984-f153ac423f61-20211019-235125.mp4\r\n6.11_1038_Player657-f153ac423f61-20210707-191840.mp4 6.13_20536_Player984-f153ac423f61-20211019-235321.mp4\r\n6.11_1039_Player657-f153ac423f61-20210707-192408.mp4 6.13_20537_Player984-f153ac423f61-20211019-235459.mp4\r\n6.11_103_Player129-fa5497b38062-20210730-182048.mp4 6.13_20538_Player984-f153ac423f61-20211019-235634.mp4\r\n6.11_1040_Player657-f153ac423f61-20210707-192956.mp4 6.13_20539_Player984-f153ac423f61-20211019-235805.mp4\r\n6.11_1041_Player657-f153ac423f61-20210707-193544.mp4 6.13_2053_Player177-96cfe2f4cbe0-20211130-185928.mp4\r\n6.11_1042_Player657-f153ac423f61-20210707-194130.mp4 6.13_20540_Player984-f153ac423f61-20211019-235938.mp4\r\n6.11_1043_Player657-f153ac423f61-20210707-194721.mp4 6.13_20541_Player984-f153ac423f61-20211020-000117.mp4\r\n6.11_1044_Player657-f153ac423f61-20210707-195307.mp4 6.13_20542_Player984-f153ac423f61-20211020-000257.mp4\r\n6.11_1045_Player67-f153ac423f61-20210707-144531.mp4 6.13_20543_Player984-f153ac423f61-20211020-000419.mp4\r\n6.11_1046_Player67-f153ac423f61-20210707-150608.mp4 6.13_20544_Player984-f153ac423f61-20211020-000552.mp4\r\n6.11_1047_Player67-f153ac423f61-20210707-153527.mp4 6.13_20545_Player984-f153ac423f61-20211020-000726.mp4\r\n6.11_1048_Player67-f153ac423f61-20210707-165842.mp4 6.13_20546_Player984-f153ac423f61-20211020-000913.mp4\r\n6.11_1049_Player67-f153ac423f61-20210707-173958.mp4 6.13_20547_Player984-f153ac423f61-20211020-001053.mp4\r\n6.11_104_Player129-fa5497b38062-20210730-182600.mp4 6.13_20548_Player984-f153ac423f61-20211020-001227.mp4\r\n6.11_1050_Player670-d23dd6a792f5-20210713-203933.mp4 6.13_20549_Player984-f153ac423f61-20211020-001403.mp4\r\n6.11_1051_Player670-d23dd6a792f5-20210713-204746.mp4 6.13_2054_Player177-96cfe2f4cbe0-20211130-190332.mp4\r\n6.11_1052_Player670-d23dd6a792f5-20210713-205258.mp4 6.13_20550_Player984-f153ac423f61-20211020-001539.mp4\r\n6.11_1053_Player670-f153ac423f61-20210713-202234.mp4 6.13_20551_Player984-f153ac423f61-20211020-001715.mp4\r\n6.11_1054_Player670-f153ac423f61-20210713-202754.mp4 6.13_20552_Player984-f153ac423f61-20211020-001849.mp4\r\n6.11_1055_Player670-f153ac423f61-20210713-203311.mp4 6.13_20553_Player984-f153ac423f61-20211020-002032.mp4\r\n6.11_1056_Player670-f153ac423f61-20210713-203823.mp4 6.13_20554_Player984-f153ac423f61-20211020-002207.mp4\r\n6.11_1057_Player674-a76b9b479412-20210720-122656.mp4 6.13_20555_Player984-f153ac423f61-20211020-002344.mp4\r\n6.11_1058_Player674-a76b9b479412-20210720-123703.mp4 6.13_20556_Player984-f153ac423f61-20211020-002512.mp4\r\n6.11_1059_Player674-a76b9b479412-20210720-124707.mp4 6.13_20557_Player984-f153ac423f61-20211020-002641.mp4\r\n6.11_105_Player129-fdc8560179d2-20210729-235310.mp4 6.13_20558_Player984-f153ac423f61-20211020-002821.mp4\r\n6.11_1060_Player674-d373dbdac9ef-20210720-120138.mp4 6.13_20559_Player984-f153ac423f61-20211020-002957.mp4\r\n6.11_1061_Player674-d373dbdac9ef-20210720-120650.mp4 6.13_2055_Player177-96cfe2f4cbe0-20211130-190735.mp4\r\n6.11_1062_Player674-d373dbdac9ef-20210720-121151.mp4 6.13_20560_Player984-f153ac423f61-20211020-003130.mp4\r\n6.11_1063_Player674-d373dbdac9ef-20210720-121654.mp4 6.13_20561_Player984-f153ac423f61-20211020-003325.mp4\r\n6.11_1064_Player674-f153ac423f61-20210720-114254.mp4 6.13_20562_Player984-f153ac423f61-20211020-003513.mp4\r\n6.11_1065_Player674-f153ac423f61-20210720-114757.mp4 6.13_20563_Player984-f153ac423f61-20211020-003656.mp4\r\n6.11_1066_Player674-f153ac423f61-20210720-115301.mp4 6.13_20564_Player984-f153ac423f61-20211020-003838.mp4\r\n6.11_1067_Player674-f153ac423f61-20210720-115809.mp4 6.13_20565_Player984-f153ac423f61-20211020-004022.mp4\r\n6.11_1068_Player683-6431715ba425-20210720-182458.mp4 6.13_20566_Player984-f153ac423f61-20211026-110218.mp4\r\n6.11_1069_Player683-6431715ba425-20210720-183617.mp4 6.13_20567_Player984-f153ac423f61-20211026-110421.mp4\r\n6.11_106_Player129-fdc8560179d2-20210729-235839.mp4 6.13_20568_Player984-f153ac423f61-20211026-110608.mp4\r\n6.11_1070_Player683-f153ac423f61-20210720-164407.mp4 6.13_20569_Player984-f153ac423f61-20211026-110800.mp4\r\n6.11_1071_Player683-f153ac423f61-20210720-164911.mp4 6.13_2056_Player177-96cfe2f4cbe0-20211130-191246.mp4\r\n6.11_1072_Player683-f153ac423f61-20210720-165410.mp4 6.13_20570_Player984-f153ac423f61-20211026-110948.mp4\r\n6.11_1073_Player683-f153ac423f61-20210720-170407.mp4 6.13_20571_Player984-f153ac423f61-20211026-111125.mp4\r\n6.11_1074_Player683-f153ac423f61-20210720-172214.mp4 6.13_20572_Player984-f153ac423f61-20211026-111251.mp4\r\n6.11_1075_Player683-f153ac423f61-20210720-172714.mp4 6.13_20573_Player984-f153ac423f61-20211026-111427.mp4\r\n6.11_1076_Player683-f153ac423f61-20210720-173712.mp4 6.13_20574_Player984-f153ac423f61-20211026-111559.mp4\r\n6.11_1077_Player683-f153ac423f61-20210720-175208.mp4 6.13_20575_Player984-f153ac423f61-20211026-111742.mp4\r\n6.11_1078_Player683-f153ac423f61-20210720-180708.mp4 6.13_20576_Player984-f153ac423f61-20211026-111928.mp4\r\n6.11_1079_Player687-f153ac423f61-20210703-175224.mp4 6.13_20577_Player984-f153ac423f61-20211026-112103.mp4\r\n6.11_107_Player129-fdc8560179d2-20210730-000352.mp4 6.13_20578_Player984-f153ac423f61-20211026-112244.mp4\r\n6.11_1080_Player687-f153ac423f61-20210703-175811.mp4 6.13_20579_Player984-f153ac423f61-20211026-112403.mp4\r\n6.11_1081_Player687-f153ac423f61-20210703-180452.mp4 6.13_2057_Player177-96cfe2f4cbe0-20211130-191648.mp4\r\n6.11_1082_Player687-f153ac423f61-20210703-181115.mp4 6.13_20580_Player984-f153ac423f61-20211026-112525.mp4\r\n6.11_1083_Player687-f153ac423f61-20210703-182333.mp4 6.13_20581_Player984-f153ac423f61-20211026-112656.mp4\r\n6.11_1084_Player687-f153ac423f61-20210703-183041.mp4 6.13_20582_Player984-f153ac423f61-20211026-112828.mp4\r\n6.11_1085_Player687-f153ac423f61-20210703-183702.mp4 6.13_20583_Player984-f153ac423f61-20211026-113006.mp4\r\n6.11_1086_Player687-f153ac423f61-20210703-184231.mp4 6.13_20584_Player984-f153ac423f61-20211026-113144.mp4\r\n6.11_1087_Player687-f153ac423f61-20210703-185357.mp4 6.13_20585_Player984-f153ac423f61-20211026-113312.mp4\r\n6.11_1088_Player687-f153ac423f61-20210703-190012.mp4 6.13_20586_Player984-f153ac423f61-20211026-113434.mp4\r\n6.11_1089_Player687-f153ac423f61-20210703-191126.mp4 6.13_20587_Player984-f153ac423f61-20211026-113603.mp4\r\n6.11_108_Player131-f153ac423f61-20210713-112721.mp4 6.13_20588_Player984-f153ac423f61-20211026-113737.mp4\r\n6.11_1090_Player693-f153ac423f61-20210702-162147.mp4 6.13_20589_Player984-f153ac423f61-20211026-113907.mp4\r\n6.11_1091_Player693-f153ac423f61-20210702-162822.mp4 6.13_2058_Player177-96cfe2f4cbe0-20211130-192051.mp4\r\n6.11_1092_Player693-f153ac423f61-20210702-163512.mp4 6.13_20590_Player984-f153ac423f61-20211026-114036.mp4\r\n6.11_1093_Player693-f153ac423f61-20210702-164147.mp4 6.13_20591_Player984-f153ac423f61-20211026-114158.mp4\r\n6.11_1094_Player693-f153ac423f61-20210702-164753.mp4 6.13_20592_Player984-f153ac423f61-20211026-114325.mp4\r\n6.11_1095_Player693-f153ac423f61-20210702-165401.mp4 6.13_20593_Player984-f153ac423f61-20211026-114503.mp4\r\n6.11_1096_Player693-f153ac423f61-20210702-170016.mp4 6.13_20594_Player984-f153ac423f61-20211026-114643.mp4\r\n6.11_1097_Player70-46dbc846f330-20210710-180957.mp4 6.13_20595_Player984-f153ac423f61-20211026-114839.mp4\r\n6.11_1098_Player70-84ccaa2bded4-20210710-181313.mp4 6.13_20596_Player984-f153ac423f61-20211026-115019.mp4\r\n6.11_1099_Player70-84ccaa2bded4-20210710-181833.mp4 6.13_20597_Player984-f153ac423f61-20211026-115156.mp4\r\n6.11_109_Player131-f153ac423f61-20210713-113240.mp4 6.13_20598_Player984-f153ac423f61-20211026-115322.mp4\r\n6.11_1100_Player70-84ccaa2bded4-20210710-182419.mp4 6.13_20599_Player984-f153ac423f61-20211026-115506.mp4\r\n6.11_1101_Player70-84ccaa2bded4-20210710-182950.mp4 6.13_2059_Player177-96cfe2f4cbe0-20211130-192455.mp4\r\n6.11_1102_Player70-acabd1e0e0c8-20210710-183408.mp4 6.13_205_Player107-f153ac423f61-20210811-124459.mp4\r\n6.11_1103_Player70-acabd1e0e0c8-20210710-183919.mp4 6.13_20600_Player984-f153ac423f61-20211026-115631.mp4\r\n6.11_1104_Player70-acabd1e0e0c8-20210710-184441.mp4 6.13_20601_Player984-f153ac423f61-20211026-115803.mp4\r\n6.11_1105_Player70-acabd1e0e0c8-20210710-185011.mp4 6.13_20602_Player984-f153ac423f61-20211026-115925.mp4\r\n6.11_1106_Player70-acabd1e0e0c8-20210710-185553.mp4 6.13_20603_Player984-f153ac423f61-20211026-120054.mp4\r\n6.11_1107_Player70-acabd1e0e0c8-20210710-190118.mp4 6.13_20604_Player984-f153ac423f61-20211026-120245.mp4\r\n6.11_1108_Player70-acabd1e0e0c8-20210710-190700.mp4 6.13_20605_Player984-f153ac423f61-20211026-120428.mp4\r\n6.11_1109_Player70-acabd1e0e0c8-20210710-191234.mp4 6.13_20606_Player984-f153ac423f61-20211026-120550.mp4\r\n6.11_110_Player131-f153ac423f61-20210713-113745.mp4 6.13_20607_Player984-f153ac423f61-20211026-120723.mp4\r\n6.11_1110_Player70-acabd1e0e0c8-20210710-191811.mp4 6.13_20608_Player984-f153ac423f61-20211026-120850.mp4\r\n6.11_1111_Player70-acabd1e0e0c8-20210710-192342.mp4 6.13_20609_Player984-f153ac423f61-20211026-121020.mp4\r\n6.11_1112_Player70-acabd1e0e0c8-20210710-192956.mp4 6.13_2060_Player177-96cfe2f4cbe0-20211130-192900.mp4\r\n6.11_1113_Player70-acabd1e0e0c8-20210710-193621.mp4 6.13_20610_Player984-f153ac423f61-20211026-121201.mp4\r\n6.11_1114_Player70-acabd1e0e0c8-20210710-194226.mp4 6.13_20611_Player984-f153ac423f61-20211026-121332.mp4\r\n6.11_1115_Player70-acabd1e0e0c8-20210710-194859.mp4 6.13_20612_Player984-f153ac423f61-20211026-121505.mp4\r\n6.11_1116_Player70-acabd1e0e0c8-20210710-195627.mp4 6.13_20613_Player984-f153ac423f61-20211026-121638.mp4\r\n6.11_1117_Player70-acabd1e0e0c8-20210710-200347.mp4 6.13_20614_Player984-f153ac423f61-20211026-121828.mp4\r\n6.11_1118_Player70-acabd1e0e0c8-20210710-201058.mp4 6.13_20615_Player984-f153ac423f61-20211026-121956.mp4\r\n6.11_1119_Player70-acabd1e0e0c8-20210710-201707.mp4 6.13_20616_Player984-f153ac423f61-20211026-122119.mp4\r\n6.11_111_Player131-f153ac423f61-20210713-114249.mp4 6.13_20617_Player984-f153ac423f61-20211026-122242.mp4\r\n6.11_1120_Player70-acabd1e0e0c8-20210710-202317.mp4 6.13_20618_Player984-f153ac423f61-20211026-122415.mp4\r\n6.11_1121_Player70-acabd1e0e0c8-20210710-203057.mp4 6.13_20619_Player984-f153ac423f61-20211026-122547.mp4\r\n6.11_1122_Player70-f153ac423f61-20210710-180343.mp4 6.13_2061_Player177-96cfe2f4cbe0-20211130-193309.mp4\r\n6.11_1123_Player70-f153ac423f61-20210710-180935.mp4 6.13_20620_Player984-f153ac423f61-20211026-122740.mp4\r\n6.11_1124_Player706-6aab01173445-20210715-220509.mp4 6.13_20621_Player984-f153ac423f61-20211026-122934.mp4\r\n6.11_1125_Player706-6aab01173445-20210715-221012.mp4 6.13_20622_Player984-f153ac423f61-20211026-123103.mp4\r\n6.11_1126_Player706-6aab01173445-20210715-221516.mp4 6.13_20623_Player984-f153ac423f61-20211026-123229.mp4\r\n6.11_1127_Player706-f153ac423f61-20210715-220436.mp4 6.13_20624_Player984-f153ac423f61-20211026-123355.mp4\r\n6.11_1128_Player727-52760a71fc4c-20210702-175012.mp4 6.13_20625_Player984-f153ac423f61-20211026-123526.mp4\r\n6.11_1129_Player727-b8cef854456f-20210702-121552.mp4 6.13_20626_Player984-f153ac423f61-20211026-123703.mp4\r\n6.11_112_Player131-f153ac423f61-20210713-114755.mp4 6.13_20627_Player984-f153ac423f61-20211026-123841.mp4\r\n6.11_1130_Player727-b8cef854456f-20210702-123057.mp4 6.13_20628_Player984-f153ac423f61-20211026-124004.mp4\r\n6.11_1131_Player727-b8cef854456f-20210702-124606.mp4 6.13_20629_Player984-f153ac423f61-20211026-124139.mp4\r\n6.11_1132_Player727-b8cef854456f-20210702-130113.mp4 6.13_2062_Player177-96cfe2f4cbe0-20211130-193713.mp4\r\n6.11_1133_Player727-b8cef854456f-20210702-131611.mp4 6.13_20630_Player984-f153ac423f61-20211026-124309.mp4\r\n6.11_1134_Player727-b8cef854456f-20210702-133115.mp4 6.13_20631_Player984-f153ac423f61-20211026-124447.mp4\r\n6.11_1135_Player727-b8cef854456f-20210702-134624.mp4 6.13_20632_Player984-f153ac423f61-20211026-124614.mp4\r\n6.11_1136_Player727-b8cef854456f-20210702-140124.mp4 6.13_20633_Player984-f153ac423f61-20211026-124749.mp4\r\n6.11_1137_Player727-b8cef854456f-20210702-141630.mp4 6.13_20634_Player984-f153ac423f61-20211026-124921.mp4\r\n6.11_1138_Player727-b8cef854456f-20210702-143138.mp4 6.13_20635_Player984-f153ac423f61-20211026-125053.mp4\r\n6.11_1139_Player727-b8cef854456f-20210702-144644.mp4 6.13_20636_Player984-f153ac423f61-20211026-125220.mp4\r\n6.11_113_Player131-f153ac423f61-20210713-115309.mp4 6.13_20637_Player984-f153ac423f61-20211026-125405.mp4\r\n6.11_1140_Player727-b8cef854456f-20210702-150143.mp4 6.13_20638_Player984-f153ac423f61-20211026-125545.mp4\r\n6.11_1141_Player727-b8cef854456f-20210702-151644.mp4 6.13_20639_Player984-f153ac423f61-20211026-125711.mp4\r\n6.11_1142_Player727-b8cef854456f-20210702-153143.mp4 6.13_2063_Player177-96cfe2f4cbe0-20211130-194120.mp4\r\n6.11_1143_Player727-b8cef854456f-20210702-154646.mp4 6.13_20640_Player984-f153ac423f61-20211026-125834.mp4\r\n6.11_1144_Player727-b8cef854456f-20210702-160148.mp4 6.13_20641_Player984-f153ac423f61-20211026-130001.mp4\r\n6.11_1145_Player727-b8cef854456f-20210702-161651.mp4 6.13_20642_Player984-f153ac423f61-20211026-130127.mp4\r\n6.11_1146_Player727-b8cef854456f-20210702-163152.mp4 6.13_20643_Player984-f153ac423f61-20211026-130257.mp4\r\n6.11_1147_Player727-b8cef854456f-20210702-164652.mp4 6.13_20644_Player984-f153ac423f61-20211026-130422.mp4\r\n6.11_1148_Player727-b8cef854456f-20210702-170155.mp4 6.13_20645_Player984-f153ac423f61-20211026-130558.mp4\r\n6.11_1149_Player727-b8cef854456f-20210702-171658.mp4 6.13_20646_Player984-f153ac423f61-20211026-130816.mp4\r\n6.11_114_Player131-f153ac423f61-20210713-115816.mp4 6.13_20647_Player984-f153ac423f61-20211026-131025.mp4\r\n6.11_1150_Player727-b8cef854456f-20210702-173204.mp4 6.13_20648_Player984-f153ac423f61-20211026-131216.mp4\r\n6.11_1151_Player727-f153ac423f61-20210702-094334.mp4 6.13_20649_Player984-f153ac423f61-20211125-123246.mp4\r\n6.11_1152_Player727-f153ac423f61-20210702-095843.mp4 6.13_2064_Player177-96cfe2f4cbe0-20211130-194529.mp4\r\n6.11_1153_Player727-f153ac423f61-20210702-101341.mp4 6.13_20650_Player984-f153ac423f61-20211125-123347.mp4\r\n6.11_1154_Player727-f153ac423f61-20210702-102844.mp4 6.13_20651_Player984-f153ac423f61-20211125-123447.mp4\r\n6.11_1155_Player727-f153ac423f61-20210702-104346.mp4 6.13_20652_Player984-f153ac423f61-20211125-123547.mp4\r\n6.11_1156_Player727-f153ac423f61-20210702-105900.mp4 6.13_20653_Player984-f153ac423f61-20211125-123648.mp4\r\n6.11_1157_Player727-f153ac423f61-20210702-111400.mp4 6.13_20654_Player984-f153ac423f61-20211125-123748.mp4\r\n6.11_1158_Player727-f153ac423f61-20210702-112902.mp4 6.13_20655_Player984-f153ac423f61-20211125-123848.mp4\r\n6.11_1159_Player727-f153ac423f61-20210702-114403.mp4 6.13_20656_Player984-f153ac423f61-20211125-123948.mp4\r\n6.11_115_Player131-f153ac423f61-20210713-120328.mp4 6.13_20657_Player984-f153ac423f61-20211125-124048.mp4\r\n6.11_1160_Player727-f153ac423f61-20210702-115911.mp4 6.13_20658_Player984-f153ac423f61-20211125-124148.mp4\r\n6.11_1161_Player727-f153ac423f61-20210716-124453.mp4 6.13_20659_Player984-f153ac423f61-20211125-124248.mp4\r\n6.11_1162_Player727-f153ac423f61-20210716-124956.mp4 6.13_2065_Player177-96cfe2f4cbe0-20211130-194935.mp4\r\n6.11_1163_Player727-f153ac423f61-20210716-125503.mp4 6.13_20660_Player984-f153ac423f61-20211125-124348.mp4\r\n6.11_1164_Player727-f153ac423f61-20210716-130002.mp4 6.13_20661_Player984-f153ac423f61-20211125-124448.mp4\r\n6.11_1165_Player727-f153ac423f61-20210716-130502.mp4 6.13_20662_Player984-f153ac423f61-20211125-124548.mp4\r\n6.11_1166_Player727-f153ac423f61-20210716-131001.mp4 6.13_20663_Player984-f153ac423f61-20211125-124648.mp4\r\n6.11_1167_Player727-f153ac423f61-20210716-131501.mp4 6.13_20664_Player984-f153ac423f61-20211125-124748.mp4\r\n6.11_1168_Player727-f153ac423f61-20210716-132006.mp4 6.13_20665_Player984-f153ac423f61-20211125-124848.mp4\r\n6.11_1169_Player727-f153ac423f61-20210716-132522.mp4 6.13_20666_Player984-f153ac423f61-20211125-124948.mp4\r\n6.11_116_Player131-f153ac423f61-20210713-120832.mp4 6.13_20667_Player984-f153ac423f61-20211125-125048.mp4\r\n6.11_1170_Player727-f153ac423f61-20210716-133052.mp4 6.13_20668_Player984-f153ac423f61-20211125-125147.mp4\r\n6.11_1171_Player727-f153ac423f61-20210716-133626.mp4 6.13_20669_Player984-f153ac423f61-20211219-143952.mp4\r\n6.11_1172_Player727-f153ac423f61-20210716-134240.mp4 6.13_2066_Player177-96cfe2f4cbe0-20211130-195450.mp4\r\n6.11_1173_Player758-4363dfb4e7e7-20210719-235454.mp4 6.13_20670_Player984-f153ac423f61-20211219-144055.mp4\r\n6.11_1174_Player758-4363dfb4e7e7-20210719-235954.mp4 6.13_20671_Player984-f153ac423f61-20211219-144201.mp4\r\n6.11_1175_Player758-4363dfb4e7e7-20210720-000454.mp4 6.13_20672_Player984-f153ac423f61-20211219-144306.mp4\r\n6.11_1176_Player758-4363dfb4e7e7-20210720-000953.mp4 6.13_20673_Player984-f153ac423f61-20211219-144412.mp4\r\n6.11_1177_Player758-4363dfb4e7e7-20210720-001452.mp4 6.13_20674_Player984-f153ac423f61-20211219-144514.mp4\r\n6.11_1178_Player758-4363dfb4e7e7-20210720-001951.mp4 6.13_20675_Player984-f153ac423f61-20211219-144615.mp4\r\n6.11_1179_Player758-4363dfb4e7e7-20210720-002449.mp4 6.13_20676_Player984-f153ac423f61-20211219-144715.mp4\r\n6.11_117_Player131-f153ac423f61-20210713-121508.mp4 6.13_20677_Player984-f153ac423f61-20211219-144816.mp4\r\n6.11_1180_Player758-4363dfb4e7e7-20210720-002948.mp4 6.13_20678_Player984-f153ac423f61-20211219-144920.mp4\r\n6.11_1181_Player758-711bb99fca70-20210720-144713.mp4 6.13_20679_Player984-f153ac423f61-20211219-145025.mp4\r\n6.11_1182_Player758-711bb99fca70-20210720-150221.mp4 6.13_2067_Player177-96cfe2f4cbe0-20211130-195858.mp4\r\n6.11_1183_Player758-711bb99fca70-20210720-152239.mp4 6.13_20680_Player984-f153ac423f61-20211219-145225.mp4\r\n6.11_1184_Player758-711bb99fca70-20210720-154256.mp4 6.13_20681_Player984-f153ac423f61-20211219-145326.mp4\r\n6.11_1185_Player758-711bb99fca70-20210720-155757.mp4 6.13_20682_Player984-f153ac423f61-20211219-145428.mp4\r\n6.11_1186_Player758-711bb99fca70-20210720-161814.mp4 6.13_20683_Player984-f153ac423f61-20211219-145627.mp4\r\n6.11_1187_Player758-711bb99fca70-20210720-163819.mp4 6.13_20684_Player984-f153ac423f61-20211219-145828.mp4\r\n6.11_1188_Player758-711bb99fca70-20210720-165836.mp4 6.13_20685_Player984-f153ac423f61-20211219-145928.mp4\r\n6.11_1189_Player758-711bb99fca70-20210720-171855.mp4 6.13_20686_Player984-f7e7b5530b9b-20211219-150031.mp4\r\n6.11_118_Player131-f153ac423f61-20210713-122024.mp4 6.13_20687_Player985-f153ac423f61-20210914-113106.mp4\r\n6.11_1190_Player758-711bb99fca70-20210720-173902.mp4 6.13_20688_Player985-f153ac423f61-20210914-114117.mp4\r\n6.11_1191_Player758-711bb99fca70-20210720-175909.mp4 6.13_20689_Player985-f153ac423f61-20210914-115022.mp4\r\n6.11_1192_Player758-7dfbcee01058-20210719-235205.mp4 6.13_2068_Player177-96cfe2f4cbe0-20211130-200309.mp4\r\n6.11_1193_Player758-f153ac423f61-20210719-230421.mp4 6.13_20690_Player985-f153ac423f61-20210914-115931.mp4\r\n6.11_1194_Player758-f153ac423f61-20210719-230924.mp4 6.13_20691_Player985-f153ac423f61-20210914-120939.mp4\r\n6.11_1195_Player758-f153ac423f61-20210719-231424.mp4 6.13_20692_Player985-f153ac423f61-20210914-121842.mp4\r\n6.11_1196_Player758-f153ac423f61-20210719-231924.mp4 6.13_20693_Player985-f153ac423f61-20210914-122743.mp4\r\n6.11_1197_Player758-f153ac423f61-20210719-232423.mp4 6.13_20694_Player985-f153ac423f61-20210914-123800.mp4\r\n6.11_1198_Player758-f153ac423f61-20210719-232922.mp4 6.13_20695_Player985-f153ac423f61-20210914-124704.mp4\r\n6.11_1199_Player758-f153ac423f61-20210719-233420.mp4 6.13_20696_Player985-f153ac423f61-20210914-125729.mp4\r\n6.11_119_Player131-f153ac423f61-20210713-122615.mp4 6.13_20697_Player985-f153ac423f61-20210914-130844.mp4\r\n6.11_1200_Player758-f153ac423f61-20210719-233919.mp4 6.13_20698_Player985-f153ac423f61-20210914-131748.mp4\r\n6.11_1201_Player758-f153ac423f61-20210719-234417.mp4 6.13_20699_Player985-f153ac423f61-20211215-211443.mp4\r\n6.11_1202_Player758-f153ac423f61-20210719-234917.mp4 6.13_2069_Player177-96cfe2f4cbe0-20211130-200715.mp4\r\n6.11_1203_Player758-f153ac423f61-20210720-075438.mp4 6.13_206_Player107-f153ac423f61-20210811-124600.mp4\r\n6.11_1204_Player758-f153ac423f61-20210720-080450.mp4 6.13_20700_Player985-f153ac423f61-20211215-211634.mp4\r\n6.11_1205_Player758-f153ac423f61-20210720-081452.mp4 6.13_20701_Player985-f153ac423f61-20211215-211841.mp4\r\n6.11_1206_Player758-f153ac423f61-20210720-082454.mp4 6.13_20702_Player985-f153ac423f61-20211215-212220.mp4\r\n6.11_1207_Player758-f153ac423f61-20210720-083459.mp4 6.13_20703_Player985-f153ac423f61-20211215-212406.mp4\r\n6.11_1208_Player758-f153ac423f61-20210720-084509.mp4 6.13_20704_Player985-f153ac423f61-20211215-212631.mp4\r\n6.11_1209_Player758-f153ac423f61-20210720-085514.mp4 6.13_20705_Player985-f153ac423f61-20211215-212839.mp4\r\n6.11_120_Player131-f153ac423f61-20210713-123139.mp4 6.13_20706_Player985-f153ac423f61-20211215-213057.mp4\r\n6.11_1210_Player758-f153ac423f61-20210720-091017.mp4 6.13_20707_Player985-f153ac423f61-20211215-213302.mp4\r\n6.11_1211_Player758-f153ac423f61-20210720-092541.mp4 6.13_20708_Player985-f153ac423f61-20211215-213514.mp4\r\n6.11_1212_Player758-f153ac423f61-20210720-094051.mp4 6.13_20709_Player985-f153ac423f61-20211215-213739.mp4\r\n6.11_1213_Player758-f153ac423f61-20210720-095602.mp4 6.13_2070_Player177-96cfe2f4cbe0-20211130-201121.mp4\r\n6.11_1214_Player758-f153ac423f61-20210720-101116.mp4 6.13_20710_Player985-f153ac423f61-20211215-213958.mp4\r\n6.11_1215_Player758-f153ac423f61-20210720-102636.mp4 6.13_20711_Player985-f153ac423f61-20211215-214213.mp4\r\n6.11_1216_Player758-f153ac423f61-20210720-104705.mp4 6.13_20712_Player985-f153ac423f61-20211215-214428.mp4\r\n6.11_1217_Player758-f153ac423f61-20210720-110728.mp4 6.13_20713_Player985-f153ac423f61-20211215-214645.mp4\r\n6.11_1218_Player758-f153ac423f61-20210720-112728.mp4 6.13_20714_Player985-f153ac423f61-20211215-214900.mp4\r\n6.11_1219_Player758-f153ac423f61-20210720-114731.mp4 6.13_20715_Player985-f153ac423f61-20211215-215127.mp4\r\n6.11_121_Player146-b74e4f0c9452-20210715-211406.mp4 6.13_20716_Player985-f153ac423f61-20211215-215327.mp4\r\n6.11_1220_Player759-f153ac423f61-20210704-130908.mp4 6.13_20717_Player985-f153ac423f61-20211215-215546.mp4\r\n6.11_1221_Player759-f153ac423f61-20210704-131617.mp4 6.13_20718_Player985-f153ac423f61-20211215-215805.mp4\r\n6.11_1222_Player759-f153ac423f61-20210704-132318.mp4 6.13_20719_Player988-f153ac423f61-20210828-152819.mp4\r\n6.11_1223_Player759-f153ac423f61-20210704-133011.mp4 6.13_2071_Player177-acba41e530f7-20211130-201610.mp4\r\n6.11_1224_Player759-f153ac423f61-20210704-133646.mp4 6.13_20720_Player99-f153ac423f61-20210802-123810.mp4\r\n6.11_1225_Player759-f153ac423f61-20210704-134257.mp4 6.13_20721_Player99-f153ac423f61-20210802-123922.mp4\r\n6.11_1226_Player759-f153ac423f61-20210704-135108.mp4 6.13_20722_Player99-f153ac423f61-20210802-124030.mp4\r\n6.11_1227_Player759-f153ac423f61-20210704-140425.mp4 6.13_20723_Player99-f153ac423f61-20210802-124141.mp4\r\n6.11_1228_Player759-f153ac423f61-20210704-141130.mp4 6.13_20724_Player99-f153ac423f61-20210802-124250.mp4\r\n6.11_1229_Player767-6ca5675a2242-20210718-194948.mp4 6.13_20725_Player99-f153ac423f61-20210802-124404.mp4\r\n6.11_122_Player146-b74e4f0c9452-20210715-211951.mp4 6.13_20726_Player99-f153ac423f61-20210802-124517.mp4\r\n6.11_1230_Player767-6ca5675a2242-20210718-195447.mp4 6.13_20727_Player99-f153ac423f61-20210802-124634.mp4\r\n6.11_1231_Player767-6ca5675a2242-20210718-195946.mp4 6.13_20728_Player99-f153ac423f61-20210802-124749.mp4\r\n6.11_1232_Player767-6ca5675a2242-20210718-200444.mp4 6.13_20729_Player99-f153ac423f61-20210802-124900.mp4\r\n6.11_1233_Player767-6ca5675a2242-20210718-200943.mp4 6.13_2072_Player177-c20d0ec0c424-20211130-172646.mp4\r\n6.11_1234_Player767-6ca5675a2242-20210718-201442.mp4 6.13_20730_Player99-f153ac423f61-20210802-125015.mp4\r\n6.11_1235_Player767-6ca5675a2242-20210718-201941.mp4 6.13_20731_Player99-f153ac423f61-20210802-125138.mp4\r\n6.11_1236_Player767-6ca5675a2242-20210718-202439.mp4 6.13_20732_Player99-f153ac423f61-20210802-125300.mp4\r\n6.11_1237_Player767-6ca5675a2242-20210718-202939.mp4 6.13_20733_Player99-f153ac423f61-20210802-125413.mp4\r\n6.11_1238_Player767-6ca5675a2242-20210718-203437.mp4 6.13_20734_Player99-f153ac423f61-20210802-125528.mp4\r\n6.11_1239_Player767-6ca5675a2242-20210718-203936.mp4 6.13_20735_Player990-f153ac423f61-20210822-164350.mp4\r\n6.11_123_Player146-b74e4f0c9452-20210715-212459.mp4 6.13_20736_Player990-f153ac423f61-20210822-164521.mp4\r\n6.11_1240_Player767-6ca5675a2242-20210718-204434.mp4 6.13_20737_Player990-f153ac423f61-20210822-164640.mp4\r\n6.11_1241_Player767-6ca5675a2242-20210718-204933.mp4 6.13_20738_Player990-f153ac423f61-20210822-164800.mp4\r\n6.11_1242_Player767-6ca5675a2242-20210718-205431.mp4 6.13_20739_Player990-f153ac423f61-20210822-165036.mp4\r\n6.11_1243_Player767-6ca5675a2242-20210718-205930.mp4 6.13_2073_Player177-c20d0ec0c424-20211130-173049.mp4\r\n6.11_1244_Player767-6ca5675a2242-20210718-210428.mp4 6.13_20740_Player990-f153ac423f61-20210822-165311.mp4\r\n6.11_1245_Player767-6ca5675a2242-20210718-210926.mp4 6.13_20741_Player990-f153ac423f61-20210822-165713.mp4\r\n6.11_1246_Player767-6ca5675a2242-20210718-211425.mp4 6.13_20742_Player990-f153ac423f61-20210822-170227.mp4\r\n6.11_1247_Player767-6ca5675a2242-20210718-211923.mp4 6.13_20743_Player990-f153ac423f61-20210822-171249.mp4\r\n6.11_1248_Player767-f153ac423f61-20210718-173756.mp4 6.13_20744_Player993-f153ac423f61-20210803-125636.mp4\r\n6.11_1249_Player767-f153ac423f61-20210718-174302.mp4 6.13_20745_Player993-f153ac423f61-20210803-130745.mp4\r\n6.11_124_Player146-b74e4f0c9452-20210715-213003.mp4 6.13_20746_Player993-f153ac423f61-20210808-125351.mp4\r\n6.11_1250_Player767-f153ac423f61-20210718-174806.mp4 6.13_20747_Player993-f153ac423f61-20210808-125458.mp4\r\n6.11_1251_Player767-f153ac423f61-20210718-175309.mp4 6.13_20748_Player993-f153ac423f61-20210808-125602.mp4\r\n6.11_1252_Player767-f153ac423f61-20210718-180318.mp4 6.13_20749_Player993-f153ac423f61-20210808-125703.mp4\r\n6.11_1253_Player767-f153ac423f61-20210718-181317.mp4 6.13_2074_Player177-c20d0ec0c424-20211130-173555.mp4\r\n6.11_1254_Player767-f153ac423f61-20210718-181816.mp4 6.13_20750_Player993-f153ac423f61-20210808-125804.mp4\r\n6.11_1255_Player767-f153ac423f61-20210718-182315.mp4 6.13_20751_Player993-f153ac423f61-20210808-125905.mp4\r\n6.11_1256_Player767-f153ac423f61-20210718-182813.mp4 6.13_20752_Player993-f153ac423f61-20210808-130007.mp4\r\n6.11_1257_Player767-f153ac423f61-20210718-183313.mp4 6.13_20753_Player993-f153ac423f61-20210808-130108.mp4\r\n6.11_1258_Player767-f153ac423f61-20210718-183811.mp4 6.13_20754_Player993-f153ac423f61-20210808-130208.mp4\r\n6.11_1259_Player767-f153ac423f61-20210718-184310.mp4 6.13_20755_Player993-f153ac423f61-20210808-130310.mp4\r\n6.11_125_Player146-b74e4f0c9452-20210715-213508.mp4 6.13_20756_Player993-f153ac423f61-20210808-130411.mp4\r\n6.11_1260_Player767-f153ac423f61-20210718-184809.mp4 6.13_20757_Player993-f153ac423f61-20210808-130512.mp4\r\n6.11_1261_Player767-f153ac423f61-20210718-185307.mp4 6.13_20758_Player993-f153ac423f61-20210808-130614.mp4\r\n6.11_1262_Player767-f153ac423f61-20210718-185805.mp4 6.13_20759_Player993-f153ac423f61-20210808-130715.mp4\r\n6.11_1263_Player767-f153ac423f61-20210718-190304.mp4 6.13_2075_Player177-c20d0ec0c424-20211130-174059.mp4\r\n6.11_1264_Player767-f153ac423f61-20210718-190802.mp4 6.13_20760_Player993-f153ac423f61-20210808-130816.mp4\r\n6.11_1265_Player767-f153ac423f61-20210718-191301.mp4 6.13_20761_Player993-f153ac423f61-20210808-130918.mp4\r\n6.11_1266_Player767-f153ac423f61-20210718-191800.mp4 6.13_20762_Player993-f153ac423f61-20210808-131019.mp4\r\n6.11_1267_Player767-f153ac423f61-20210718-192258.mp4 6.13_20763_Player993-f153ac423f61-20210808-131120.mp4\r\n6.11_1268_Player767-f153ac423f61-20210718-192757.mp4 6.13_20764_Player993-f153ac423f61-20210808-131221.mp4\r\n6.11_1269_Player767-f153ac423f61-20210718-193255.mp4 6.13_20765_Player993-f153ac423f61-20210808-131322.mp4\r\n6.11_126_Player146-b74e4f0c9452-20210715-214032.mp4 6.13_20766_Player993-f153ac423f61-20210808-131422.mp4\r\n6.11_1270_Player767-f153ac423f61-20210718-193753.mp4 6.13_20767_Player993-f153ac423f61-20210808-131523.mp4\r\n6.11_1271_Player767-f153ac423f61-20210718-194252.mp4 6.13_20768_Player993-f153ac423f61-20210808-131624.mp4\r\n6.11_1272_Player776-f153ac423f61-20210707-114144.mp4 6.13_20769_Player993-f153ac423f61-20210808-131726.mp4\r\n6.11_1273_Player776-f153ac423f61-20210707-115655.mp4 6.13_2076_Player177-c20d0ec0c424-20211130-174502.mp4\r\n6.11_1274_Player776-f153ac423f61-20210707-121157.mp4 6.13_20770_Player993-f153ac423f61-20210808-131826.mp4\r\n6.11_1275_Player776-f153ac423f61-20210707-122659.mp4 6.13_20771_Player993-f153ac423f61-20210808-131927.mp4\r\n6.11_1276_Player776-f153ac423f61-20210707-124159.mp4 6.13_20772_Player994-22b7685f393d-20211012-181935.mp4\r\n6.11_1277_Player776-f153ac423f61-20210707-125705.mp4 6.13_20773_Player994-22b7685f393d-20211012-182058.mp4\r\n6.11_1278_Player776-f153ac423f61-20210707-131206.mp4 6.13_20774_Player994-22b7685f393d-20211012-182225.mp4\r\n6.11_1279_Player776-f153ac423f61-20210707-132711.mp4 6.13_20775_Player994-22b7685f393d-20211012-182344.mp4\r\n6.11_127_Player146-b74e4f0c9452-20210715-214546.mp4 6.13_20776_Player994-22b7685f393d-20211012-182517.mp4\r\n6.11_1280_Player776-f153ac423f61-20210707-134212.mp4 6.13_20777_Player994-22b7685f393d-20211012-182647.mp4\r\n6.11_1281_Player776-f153ac423f61-20210707-135831.mp4 6.13_20778_Player994-22b7685f393d-20211012-182820.mp4\r\n6.11_1282_Player776-f153ac423f61-20210707-141348.mp4 6.13_20779_Player994-22b7685f393d-20211012-182948.mp4\r\n6.11_1283_Player776-f153ac423f61-20210707-142904.mp4 6.13_2077_Player177-c20d0ec0c424-20211130-174904.mp4\r\n6.11_1284_Player776-f153ac423f61-20210707-144420.mp4 6.13_20780_Player994-22b7685f393d-20211012-183059.mp4\r\n6.11_1285_Player804-14abb127a39d-20210718-232914.mp4 6.13_20781_Player994-22b7685f393d-20211012-183212.mp4\r\n6.11_1286_Player806-f153ac423f61-20210703-172229.mp4 6.13_20782_Player994-22b7685f393d-20211012-183327.mp4\r\n6.11_1287_Player806-f153ac423f61-20210703-172855.mp4 6.13_20783_Player994-22b7685f393d-20211012-183447.mp4\r\n6.11_1288_Player806-f9f866fb4ef1-20210703-173149.mp4 6.13_20784_Player994-22b7685f393d-20211012-183611.mp4\r\n6.11_1289_Player806-f9f866fb4ef1-20210703-173829.mp4 6.13_20785_Player994-22b7685f393d-20211012-183742.mp4\r\n6.11_128_Player146-f153ac423f61-20210715-201314.mp4 6.13_20786_Player994-22b7685f393d-20211012-183910.mp4\r\n6.11_1290_Player806-f9f866fb4ef1-20210703-174512.mp4 6.13_20787_Player994-22b7685f393d-20211012-184032.mp4\r\n6.11_1291_Player806-f9f866fb4ef1-20210703-175124.mp4 6.13_20788_Player994-f153ac423f61-20211012-181240.mp4\r\n6.11_1292_Player806-f9f866fb4ef1-20210703-175802.mp4 6.13_20789_Player994-f153ac423f61-20211012-181402.mp4\r\n6.11_1293_Player806-f9f866fb4ef1-20210703-180444.mp4 6.13_2078_Player177-c20d0ec0c424-20211130-175307.mp4\r\n6.11_1294_Player806-f9f866fb4ef1-20210703-181127.mp4 6.13_20790_Player994-f153ac423f61-20211012-181516.mp4\r\n6.11_1295_Player806-f9f866fb4ef1-20210703-181814.mp4 6.13_20791_Player994-f153ac423f61-20211012-181631.mp4\r\n6.11_1296_Player806-f9f866fb4ef1-20210703-182438.mp4 6.13_20792_Player994-f153ac423f61-20211012-181755.mp4\r\n6.11_1297_Player806-f9f866fb4ef1-20210703-183018.mp4 6.13_20793_Player994-f153ac423f61-20211012-181917.mp4\r\n6.11_1298_Player806-f9f866fb4ef1-20210703-183530.mp4 6.13_20794_Player997-f153ac423f61-20211120-131532.mp4\r\n6.11_1299_Player813-f153ac423f61-20210716-114851.mp4 6.13_20795_Player998-f153ac423f61-20211105-170559.mp4\r\n6.11_129_Player146-f153ac423f61-20210715-201924.mp4 6.13_20796_Player998-f153ac423f61-20211105-170739.mp4\r\n6.11_1300_Player813-f153ac423f61-20210716-115509.mp4 6.13_20797_Player998-f153ac423f61-20211105-170843.mp4\r\n6.11_1301_Player813-f153ac423f61-20210716-120059.mp4 6.13_20798_Player998-f153ac423f61-20211105-170949.mp4\r\n6.11_1302_Player813-f153ac423f61-20210716-120612.mp4 6.13_20799_Player999-0d3804be265f-20211123-160539.mp4\r\n6.11_1303_Player813-f153ac423f61-20210716-121202.mp4 6.13_2079_Player177-c20d0ec0c424-20211130-175709.mp4\r\n6.11_1304_Player813-f153ac423f61-20210716-121814.mp4 6.13_207_Player107-f153ac423f61-20210811-124702.mp4\r\n6.11_1305_Player813-f153ac423f61-20210716-122323.mp4 6.13_20800_Player999-0d3804be265f-20211123-160640.mp4\r\n6.11_1306_Player813-f153ac423f61-20210716-122826.mp4 6.13_20801_Player999-0d3804be265f-20211123-160739.mp4\r\n6.11_1307_Player813-f153ac423f61-20210716-123337.mp4 6.13_20802_Player999-0d3804be265f-20211123-160839.mp4\r\n6.11_1308_Player813-f153ac423f61-20210716-123850.mp4 6.13_20803_Player999-0d3804be265f-20211123-160939.mp4\r\n6.11_1309_Player819-f153ac423f61-20210707-102647.mp4 6.13_20804_Player999-0d3804be265f-20211123-161039.mp4\r\n6.11_130_Player146-f153ac423f61-20210715-202717.mp4 6.13_20805_Player999-0d3804be265f-20211123-161139.mp4\r\n6.11_1310_Player819-f153ac423f61-20210707-103204.mp4 6.13_20806_Player999-0d3804be265f-20211123-161239.mp4\r\n6.11_1311_Player819-f153ac423f61-20210707-103711.mp4 6.13_20807_Player999-0d3804be265f-20211123-161338.mp4\r\n6.11_1312_Player819-f153ac423f61-20210707-104209.mp4 6.13_20808_Player999-0d3804be265f-20211123-161438.mp4\r\n6.11_1313_Player819-f153ac423f61-20210707-104710.mp4 6.13_20809_Player999-0d3804be265f-20211123-161538.mp4\r\n6.11_1314_Player819-f153ac423f61-20210707-105213.mp4 6.13_2080_Player177-c20d0ec0c424-20211130-180216.mp4\r\n6.11_1315_Player819-f153ac423f61-20210707-105713.mp4 6.13_20810_Player999-0d3804be265f-20211123-161638.mp4\r\n6.11_1316_Player819-f153ac423f61-20210707-110213.mp4 6.13_20811_Player999-0d3804be265f-20211123-161738.mp4\r\n6.11_1317_Player819-f153ac423f61-20210707-110718.mp4 6.13_20812_Player999-0d3804be265f-20211123-161838.mp4\r\n6.11_1318_Player819-f153ac423f61-20210707-111222.mp4 6.13_20813_Player999-0d3804be265f-20211123-161939.mp4\r\n6.11_1319_Player819-f153ac423f61-20210707-111723.mp4 6.13_20814_Player999-0d3804be265f-20211123-162039.mp4\r\n6.11_131_Player146-f153ac423f61-20210715-203243.mp4 6.13_20815_Player999-0d3804be265f-20211123-162139.mp4\r\n6.11_1320_Player819-f153ac423f61-20210707-112225.mp4 6.13_20816_Player999-0d3804be265f-20211123-162240.mp4\r\n6.11_1321_Player819-f153ac423f61-20210707-112725.mp4 6.13_20817_Player999-0d3804be265f-20211123-162340.mp4\r\n6.11_1322_Player819-f153ac423f61-20210707-113227.mp4 6.13_20818_Player999-f153ac423f61-20210817-125058.mp4\r\n6.11_1323_Player819-f153ac423f61-20210707-113729.mp4 6.13_20819_Player999-f153ac423f61-20210817-125203.mp4\r\n6.11_1324_Player819-f153ac423f61-20210707-114230.mp4 6.13_2081_Player177-c20d0ec0c424-20211130-180618.mp4\r\n6.11_1325_Player819-f153ac423f61-20210707-114728.mp4 6.13_20820_Player999-f153ac423f61-20210817-125307.mp4\r\n6.11_1326_Player819-f153ac423f61-20210707-115229.mp4 6.13_20821_Player999-f153ac423f61-20210817-125409.mp4\r\n6.11_1327_Player819-f153ac423f61-20210707-115908.mp4 6.13_20822_Player999-f153ac423f61-20210817-125512.mp4\r\n6.11_1328_Player819-f153ac423f61-20210707-120407.mp4 6.13_20823_Player999-f153ac423f61-20210817-125616.mp4\r\n6.11_1329_Player819-f153ac423f61-20210707-120911.mp4 6.13_20824_Player999-f153ac423f61-20210817-125721.mp4\r\n6.11_132_Player146-f153ac423f61-20210715-204415.mp4 6.13_20825_Player999-f153ac423f61-20210817-125827.mp4\r\n6.11_1330_Player819-f153ac423f61-20210707-121411.mp4 6.13_20826_Player999-f153ac423f61-20210817-125932.mp4\r\n6.11_1331_Player819-f153ac423f61-20210707-121915.mp4 6.13_20827_Player999-f153ac423f61-20210817-130035.mp4\r\n6.11_1332_Player819-f153ac423f61-20210707-122415.mp4 6.13_20828_Player999-f153ac423f61-20210817-130137.mp4\r\n6.11_1333_Player819-f153ac423f61-20210707-122925.mp4 6.13_20829_Player999-f153ac423f61-20210817-130239.mp4\r\n6.11_1334_Player83-0528ea8de9b4-20210719-144415.mp4 6.13_2082_Player177-c20d0ec0c424-20211130-181019.mp4\r\n6.11_1335_Player83-0528ea8de9b4-20210719-144950.mp4 6.13_20830_Player999-f153ac423f61-20210817-130343.mp4\r\n6.11_1336_Player83-0b3cc9b0866d-20210718-235626.mp4 6.13_20831_Player999-f153ac423f61-20210817-130446.mp4\r\n6.11_1337_Player83-0c463f302bdc-20210715-153006.mp4 6.13_20832_Player999-f153ac423f61-20210817-130550.mp4\r\n6.11_1338_Player83-0c463f302bdc-20210715-153538.mp4 6.13_20833_Player999-f153ac423f61-20210817-130653.mp4\r\n6.11_1339_Player83-0c463f302bdc-20210715-154457.mp4 6.13_20834_Player999-f153ac423f61-20210817-130755.mp4\r\n6.11_133_Player146-f153ac423f61-20210715-205012.mp4 6.13_20835_Player999-f153ac423f61-20210817-130901.mp4\r\n6.11_1340_Player83-0c463f302bdc-20210715-155042.mp4 6.13_20836_Player999-f153ac423f61-20210817-131010.mp4\r\n6.11_1341_Player83-0c463f302bdc-20210715-155648.mp4 6.13_20837_Player999-f153ac423f61-20210817-131113.mp4\r\n6.11_1342_Player83-0c463f302bdc-20210715-160249.mp4 6.13_20838_Player999-f153ac423f61-20210817-131214.mp4\r\n6.11_1343_Player83-0c463f302bdc-20210715-160839.mp4 6.13_20839_Player999-f153ac423f61-20210817-131315.mp4\r\n6.11_1344_Player83-0c463f302bdc-20210715-161425.mp4 6.13_2083_Player177-c20d0ec0c424-20211130-181524.mp4\r\n6.11_1345_Player83-0c463f302bdc-20210715-161957.mp4 6.13_20840_Player999-f153ac423f61-20210817-131416.mp4\r\n6.11_1346_Player83-0c463f302bdc-20210715-162543.mp4 6.13_20841_Player999-f153ac423f61-20210817-131517.mp4\r\n6.11_1347_Player83-0c463f302bdc-20210718-150215.mp4 6.13_20842_Player999-f153ac423f61-20210817-131618.mp4\r\n6.11_1348_Player83-0c463f302bdc-20210718-150838.mp4 6.13_20843_Player999-f153ac423f61-20210817-131721.mp4\r\n6.11_1349_Player83-0c463f302bdc-20210718-154431.mp4 6.13_20844_Player999-f153ac423f61-20210817-131826.mp4\r\n6.11_134_Player146-f153ac423f61-20210715-205726.mp4 6.13_20845_Player999-f153ac423f61-20210817-131928.mp4\r\n6.11_1350_Player83-0c463f302bdc-20210718-155019.mp4 6.13_20846_Player999-f153ac423f61-20210817-132031.mp4\r\n6.11_1351_Player83-0c768ced9c9c-20210719-142020.mp4 6.13_20847_Player999-f153ac423f61-20210817-132134.mp4\r\n6.11_1352_Player83-0c768ced9c9c-20210719-142623.mp4 6.13_20848_Player999-f153ac423f61-20210817-132241.mp4\r\n6.11_1353_Player83-0c768ced9c9c-20210719-143504.mp4 6.13_20849_Player999-f153ac423f61-20210910-121834.mp4\r\n6.11_1354_Player83-239681f0ed5e-20210720-175622.mp4 6.13_2084_Player177-c20d0ec0c424-20211130-181928.mp4\r\n6.11_1355_Player83-239681f0ed5e-20210720-180155.mp4 6.13_20850_Player999-f153ac423f61-20210910-122654.mp4\r\n6.11_1356_Player83-24bd69eaa3b2-20210718-155830.mp4 6.13_20851_Player999-f153ac423f61-20210910-123505.mp4\r\n6.11_1357_Player83-24bd69eaa3b2-20210718-160358.mp4 6.13_20852_Player999-f153ac423f61-20210910-124412.mp4\r\n6.11_1358_Player83-24bd69eaa3b2-20210718-160938.mp4 6.13_20853_Player999-f153ac423f61-20210910-125222.mp4\r\n6.11_1359_Player83-24bd69eaa3b2-20210718-161530.mp4 6.13_20854_Player999-f153ac423f61-20210910-130140.mp4\r\n6.11_135_Player146-f153ac423f61-20210715-210421.mp4 6.13_20855_Player999-f153ac423f61-20210910-130947.mp4\r\n6.11_1360_Player83-24bd69eaa3b2-20210718-162116.mp4 6.13_20856_Player999-f153ac423f61-20210910-131755.mp4\r\n6.11_1361_Player83-24bd69eaa3b2-20210718-162708.mp4 6.13_20857_Player999-f153ac423f61-20210910-132601.mp4\r\n6.11_1362_Player83-24bd69eaa3b2-20210718-163259.mp4 6.13_20858_Player999-f153ac423f61-20210910-133407.mp4\r\n6.11_1363_Player83-24bd69eaa3b2-20210718-163847.mp4 6.13_20859_Player999-f153ac423f61-20210910-134539.mp4\r\n6.11_1364_Player83-24bd69eaa3b2-20210718-164436.mp4 6.13_2085_Player177-c20d0ec0c424-20211130-182437.mp4\r\n6.11_1365_Player83-427325118c8e-20210719-143740.mp4 6.13_20860_Player999-f153ac423f61-20210910-135452.mp4\r\n6.11_1366_Player83-4a85fb5d9e5a-20210718-235948.mp4 6.13_20861_Player999-f153ac423f61-20210910-140257.mp4\r\n6.11_1367_Player83-4a85fb5d9e5a-20210719-000556.mp4 6.13_20862_Player999-f153ac423f61-20210910-141206.mp4\r\n6.11_1368_Player83-57f0203a2d3c-20210718-164808.mp4 6.13_20863_Player999-f153ac423f61-20210910-142013.mp4\r\n6.11_1369_Player83-57f0203a2d3c-20210718-165427.mp4 6.13_20864_Player999-f153ac423f61-20210910-142820.mp4\r\n6.11_136_Player146-f153ac423f61-20210715-211020.mp4 6.13_20865_Player999-f153ac423f61-20210910-143835.mp4\r\n6.11_1370_Player83-57f0203a2d3c-20210718-170009.mp4 6.13_20866_Player999-f153ac423f61-20210910-144642.mp4\r\n6.11_1371_Player83-62e179f07ab5-20210718-170513.mp4 6.13_20867_Player999-f153ac423f61-20210910-145920.mp4\r\n6.11_1372_Player83-62e179f07ab5-20210718-171049.mp4 6.13_20868_Player999-f153ac423f61-20210910-150839.mp4\r\n6.11_1373_Player83-62e179f07ab5-20210718-171626.mp4 6.13_20869_Player999-f153ac423f61-20210910-151646.mp4\r\n6.11_1374_Player83-62e179f07ab5-20210718-172408.mp4 6.13_2086_Player177-f153ac423f61-20211130-145953.mp4\r\n6.11_1375_Player83-62e179f07ab5-20210718-172955.mp4 6.13_20870_Player999-f153ac423f61-20210910-152716.mp4\r\n6.11_1376_Player83-62e179f07ab5-20210718-173547.mp4 6.13_20871_Player999-f153ac423f61-20211123-155640.mp4\r\n6.11_1377_Player83-62e179f07ab5-20210718-174130.mp4 6.13_20872_Player999-f153ac423f61-20211123-155741.mp4\r\n6.11_1378_Player83-663b4a9bf3f9-20210719-135946.mp4 6.13_20873_Player999-f153ac423f61-20211123-155840.mp4\r\n6.11_1379_Player83-67a92854fcf5-20210719-144336.mp4 6.13_20874_Player999-f153ac423f61-20211123-155940.mp4\r\n6.11_137_Player148-11d51f62bd79-20210705-175408.mp4 6.13_20875_Player999-f153ac423f61-20211123-160041.mp4\r\n6.11_1380_Player83-6bc85a148c12-20210718-174606.mp4 6.13_20876_Player999-f153ac423f61-20211123-160141.mp4\r\n6.11_1381_Player83-6bc85a148c12-20210718-175152.mp4 6.13_20877_Player999-f153ac423f61-20211123-160240.mp4\r\n6.11_1382_Player83-6bc85a148c12-20210718-175732.mp4 6.13_20878_Player999-f153ac423f61-20211123-160341.mp4\r\n6.11_1383_Player83-6bc85a148c12-20210718-234537.mp4 6.13_20879_Player999-f153ac423f61-20211123-160441.mp4\r\n6.11_1384_Player83-70f2d4293d93-20210720-180611.mp4 6.13_2087_Player177-f153ac423f61-20211130-150410.mp4\r\n6.11_1385_Player83-82d5f994c4ff-20210719-131935.mp4 6.13_20880_treechop-038741db91df-20210907-121237.mp4\r\n6.11_1386_Player83-85826ce10dde-20210720-181101.mp4 6.13_20881_treechop-038741db91df-20210907-124130.mp4\r\n6.11_1387_Player83-adf9e1b89d56-20210718-234820.mp4 6.13_20882_treechop-038741db91df-20210907-132340.mp4\r\n6.11_1388_Player83-adf9e1b89d56-20210718-235422.mp4 6.13_20883_treechop-038741db91df-20210907-134108.mp4\r\n6.11_1389_Player83-d1491889ce51-20210718-155553.mp4 6.13_20884_treechop-05e006bbcdec-20210904-175328.mp4\r\n6.11_138_Player148-11d51f62bd79-20210705-180915.mp4 6.13_20885_treechop-05e006bbcdec-20210904-175433.mp4\r\n6.11_1390_Player83-d319de0341ce-20210719-140210.mp4 6.13_20886_treechop-05e006bbcdec-20210904-175534.mp4\r\n6.11_1391_Player83-e0f3cda4af8e-20210719-145059.mp4 6.13_20887_treechop-05e006bbcdec-20210904-175635.mp4\r\n6.11_1392_Player83-e0f3cda4af8e-20210719-145614.mp4 6.13_20888_treechop-05e006bbcdec-20210904-175737.mp4\r\n6.11_1393_Player83-e0f3cda4af8e-20210720-115608.mp4 6.13_20889_treechop-05e006bbcdec-20210904-175838.mp4\r\n6.11_1394_Player83-e0f3cda4af8e-20210720-120210.mp4 6.13_2088_Player177-f153ac423f61-20211130-150914.mp4\r\n6.11_1395_Player83-e0f3cda4af8e-20210720-120739.mp4 6.13_20890_treechop-05e006bbcdec-20210904-175940.mp4\r\n6.11_1396_Player83-e0f3cda4af8e-20210720-121311.mp4 6.13_20891_treechop-05e006bbcdec-20210904-180040.mp4\r\n6.11_1397_Player83-e0f3cda4af8e-20210720-121922.mp4 6.13_20892_treechop-05e006bbcdec-20210904-180142.mp4\r\n6.11_1398_Player83-e0f3cda4af8e-20210720-122616.mp4 6.13_20893_treechop-05e006bbcdec-20210904-180244.mp4\r\n6.11_1399_Player83-e0f3cda4af8e-20210720-143502.mp4 6.13_20894_treechop-05e006bbcdec-20210904-180347.mp4\r\n6.11_139_Player148-2fe88f61e887-20210705-154605.mp4 6.13_20895_treechop-05e006bbcdec-20210904-180449.mp4\r\n6.11_1400_Player83-e698ae77cdf9-20210720-180942.mp4 6.13_20896_treechop-05e006bbcdec-20210904-180550.mp4\r\n6.11_1401_Player83-ecf65663c1f4-20210715-133030.mp4 6.13_20897_treechop-05e006bbcdec-20210904-180653.mp4\r\n6.11_1402_Player83-ecf65663c1f4-20210715-133531.mp4 6.13_20898_treechop-05e006bbcdec-20210904-180755.mp4\r\n6.11_1403_Player83-ecf65663c1f4-20210715-134033.mp4 6.13_20899_treechop-05e006bbcdec-20210904-180856.mp4\r\n6.11_1404_Player83-ecf65663c1f4-20210715-134535.mp4 6.13_2089_Player177-f153ac423f61-20211130-151315.mp4\r\n6.11_1405_Player83-ecf65663c1f4-20210715-135036.mp4 6.13_208_Player107-f153ac423f61-20210811-124802.mp4\r\n6.11_1406_Player83-ecf65663c1f4-20210715-135539.mp4 6.13_20900_treechop-05e006bbcdec-20210904-180956.mp4\r\n6.11_1407_Player83-ecf65663c1f4-20210715-140046.mp4 6.13_20901_treechop-05e006bbcdec-20210904-181058.mp4\r\n6.11_1408_Player83-f153ac423f61-20210715-131240.mp4 6.13_20902_treechop-05e006bbcdec-20210904-181200.mp4\r\n6.11_1409_Player83-f153ac423f61-20210715-131743.mp4 6.13_20903_treechop-05e006bbcdec-20210904-181304.mp4\r\n6.11_140_Player148-2fe88f61e887-20210705-160120.mp4 6.13_20904_treechop-05e006bbcdec-20210904-181409.mp4\r\n6.11_1410_Player83-f153ac423f61-20210715-132243.mp4 6.13_20905_treechop-05e006bbcdec-20210904-181512.mp4\r\n6.11_1411_Player83-f153ac423f61-20210715-132741.mp4 6.13_20906_treechop-05e006bbcdec-20210904-181614.mp4\r\n6.11_1412_Player83-f153ac423f61-20210715-152030.mp4 6.13_20907_treechop-05e006bbcdec-20210904-181716.mp4\r\n6.11_1413_Player83-f153ac423f61-20210715-152637.mp4 6.13_20908_treechop-05e006bbcdec-20210904-181818.mp4\r\n6.11_1414_Player831-f153ac423f61-20210710-114419.mp4 6.13_20909_treechop-05e006bbcdec-20210904-181920.mp4\r\n6.11_1415_Player831-f153ac423f61-20210710-115009.mp4 6.13_2090_Player177-f153ac423f61-20211130-151717.mp4\r\n6.11_1416_Player831-f153ac423f61-20210710-115533.mp4 6.13_20910_treechop-05e006bbcdec-20210904-182021.mp4\r\n6.11_1417_Player831-f153ac423f61-20210710-120105.mp4 6.13_20911_treechop-05e006bbcdec-20210904-182124.mp4\r\n6.11_1418_Player831-f153ac423f61-20210710-120639.mp4 6.13_20912_treechop-05e006bbcdec-20210904-182226.mp4\r\n6.11_1419_Player831-f153ac423f61-20210710-122317.mp4 6.13_20913_treechop-05e006bbcdec-20210904-182331.mp4\r\n6.11_141_Player148-2fe88f61e887-20210705-161642.mp4 6.13_20914_treechop-05e006bbcdec-20210904-182435.mp4\r\n6.11_1420_Player831-f153ac423f61-20210710-122834.mp4 6.13_20915_treechop-05e006bbcdec-20210904-182537.mp4\r\n6.11_1421_Player831-f153ac423f61-20210710-123400.mp4 6.13_20916_treechop-05e006bbcdec-20210904-182638.mp4\r\n6.11_1422_Player831-f153ac423f61-20210710-123918.mp4 6.13_20917_treechop-05e006bbcdec-20210904-182739.mp4\r\n6.11_1423_Player831-f153ac423f61-20210710-124423.mp4 6.13_20918_treechop-05e006bbcdec-20210904-182841.mp4\r\n6.11_1424_Player831-f153ac423f61-20210710-124930.mp4 6.13_20919_treechop-05e006bbcdec-20210904-182943.mp4\r\n6.11_1425_Player831-f153ac423f61-20210710-125503.mp4 6.13_2091_Player177-f153ac423f61-20211130-152221.mp4\r\n6.11_1426_Player831-f153ac423f61-20210710-130027.mp4 6.13_20920_treechop-05e006bbcdec-20210904-183045.mp4\r\n6.11_1427_Player831-f153ac423f61-20210710-130600.mp4 6.13_20921_treechop-05e006bbcdec-20210904-183147.mp4\r\n6.11_1428_Player831-f153ac423f61-20210710-131113.mp4 6.13_20922_treechop-05e006bbcdec-20210904-183250.mp4\r\n6.11_1429_Player832-2b218d0dfecd-20210717-235311.mp4 6.13_20923_treechop-05e006bbcdec-20210904-183353.mp4\r\n6.11_142_Player148-2fe88f61e887-20210705-163154.mp4 6.13_20924_treechop-05e006bbcdec-20210904-183454.mp4\r\n6.11_1430_Player832-f153ac423f61-20210717-222502.mp4 6.13_20925_treechop-05e006bbcdec-20210904-183557.mp4\r\n6.11_1431_Player832-f153ac423f61-20210717-223701.mp4 6.13_20926_treechop-05e006bbcdec-20210904-183659.mp4\r\n6.11_1432_Player834-f153ac423f61-20210715-131440.mp4 6.13_20927_treechop-05e006bbcdec-20210904-183803.mp4\r\n6.11_1433_Player834-f153ac423f61-20210715-132244.mp4 6.13_20928_treechop-05e006bbcdec-20210904-183905.mp4\r\n6.11_1434_Player834-f153ac423f61-20210715-133143.mp4 6.13_20929_treechop-05e006bbcdec-20210904-184006.mp4\r\n6.11_1435_Player834-f153ac423f61-20210715-133855.mp4 6.13_2092_Player177-f153ac423f61-20211130-152638.mp4\r\n6.11_1436_Player834-f153ac423f61-20210715-134444.mp4 6.13_20930_treechop-05e006bbcdec-20210904-184108.mp4\r\n6.11_1437_Player834-f153ac423f61-20210715-135112.mp4 6.13_20931_treechop-05e006bbcdec-20210904-184208.mp4\r\n6.11_1438_Player834-f153ac423f61-20210715-135617.mp4 6.13_20932_treechop-05e006bbcdec-20210904-184309.mp4\r\n6.11_1439_Player834-f153ac423f61-20210715-140131.mp4 6.13_20933_treechop-05e006bbcdec-20210904-184415.mp4\r\n6.11_143_Player148-2fe88f61e887-20210705-165202.mp4 6.13_20934_treechop-05e006bbcdec-20210904-184518.mp4\r\n6.11_1440_Player838-667a893045fe-20210713-225720.mp4 6.13_20935_treechop-05e006bbcdec-20210904-184623.mp4\r\n6.11_1441_Player838-bd709d3bf9f5-20210713-225617.mp4 6.13_20936_treechop-05e006bbcdec-20210904-184728.mp4\r\n6.11_1442_Player838-f153ac423f61-20210713-222034.mp4 6.13_20937_treechop-05e006bbcdec-20210904-184830.mp4\r\n6.11_1443_Player838-f153ac423f61-20210713-222536.mp4 6.13_20938_treechop-05e006bbcdec-20210904-184933.mp4\r\n6.11_1444_Player838-f153ac423f61-20210713-223040.mp4 6.13_20939_treechop-05e006bbcdec-20210904-185041.mp4\r\n6.11_1445_Player838-f153ac423f61-20210713-223541.mp4 6.13_2093_Player177-f153ac423f61-20211130-153138.mp4\r\n6.11_1446_Player838-f153ac423f61-20210713-224040.mp4 6.13_20940_treechop-05e006bbcdec-20210904-185146.mp4\r\n6.11_1447_Player838-f153ac423f61-20210713-224539.mp4 6.13_20941_treechop-05e006bbcdec-20210904-185249.mp4\r\n6.11_1448_Player838-f153ac423f61-20210713-225039.mp4 6.13_20942_treechop-05e006bbcdec-20210904-185354.mp4\r\n6.11_1449_Player838-f153ac423f61-20210713-225539.mp4 6.13_20943_treechop-05e006bbcdec-20210904-185458.mp4\r\n6.11_144_Player148-2fe88f61e887-20210705-171219.mp4 6.13_20944_treechop-33d09f58d4ab-20210921-152814.mp4\r\n6.11_1450_Player849-f153ac423f61-20210709-151701.mp4 6.13_20945_treechop-33d09f58d4ab-20210921-152917.mp4\r\n6.11_1451_Player849-f153ac423f61-20210709-152314.mp4 6.13_20946_treechop-33d09f58d4ab-20210921-153019.mp4\r\n6.11_1452_Player849-f153ac423f61-20210709-153039.mp4 6.13_20947_treechop-33d09f58d4ab-20210921-153122.mp4\r\n6.11_1453_Player849-f153ac423f61-20210709-153757.mp4 6.13_20948_treechop-33d09f58d4ab-20210921-153223.mp4\r\n6.11_1454_Player849-f153ac423f61-20210709-154552.mp4 6.13_20949_treechop-33d09f58d4ab-20210921-153325.mp4\r\n6.11_1455_Player849-f153ac423f61-20210709-155331.mp4 6.13_2094_Player177-f153ac423f61-20211130-153729.mp4\r\n6.11_1456_Player849-f153ac423f61-20210709-155957.mp4 6.13_20950_treechop-33d09f58d4ab-20210921-153427.mp4\r\n6.11_1457_Player849-f153ac423f61-20210709-160545.mp4 6.13_20951_treechop-33d09f58d4ab-20210921-153528.mp4\r\n6.11_1458_Player849-f153ac423f61-20210709-161139.mp4 6.13_20952_treechop-33d09f58d4ab-20210921-153630.mp4\r\n6.11_1459_Player849-f153ac423f61-20210709-161725.mp4 6.13_20953_treechop-33d09f58d4ab-20210921-153732.mp4\r\n6.11_145_Player148-2fe88f61e887-20210705-172729.mp4 6.13_20954_treechop-33d09f58d4ab-20210921-153833.mp4\r\n6.11_1460_Player849-f153ac423f61-20210709-162322.mp4 6.13_20955_treechop-33d09f58d4ab-20210921-153935.mp4\r\n6.11_1461_Player849-f153ac423f61-20210709-162910.mp4 6.13_20956_treechop-33d09f58d4ab-20210921-154038.mp4\r\n6.11_1462_Player849-f153ac423f61-20210709-163517.mp4 6.13_20957_treechop-33d09f58d4ab-20210921-154139.mp4\r\n6.11_1463_Player849-f153ac423f61-20210709-164101.mp4 6.13_20958_treechop-33d09f58d4ab-20210921-154241.mp4\r\n6.11_1464_Player849-f153ac423f61-20210709-164637.mp4 6.13_20959_treechop-33d09f58d4ab-20210921-154344.mp4\r\n6.11_1465_Player849-f153ac423f61-20210709-165201.mp4 6.13_2095_Player177-f153ac423f61-20211130-154133.mp4\r\n6.11_1466_Player849-f153ac423f61-20210709-165732.mp4 6.13_20960_treechop-33d09f58d4ab-20210921-154445.mp4\r\n6.11_1467_Player849-f153ac423f61-20210709-170310.mp4 6.13_20961_treechop-33d09f58d4ab-20210921-154548.mp4\r\n6.11_1468_Player849-f153ac423f61-20210709-170823.mp4 6.13_20962_treechop-33d09f58d4ab-20210921-154651.mp4\r\n6.11_1469_Player85-f153ac423f61-20210705-154401.mp4 6.13_20963_treechop-33d09f58d4ab-20210921-154753.mp4\r\n6.11_146_Player148-2fe88f61e887-20210705-174240.mp4 6.13_20964_treechop-33d09f58d4ab-20210921-154854.mp4\r\n6.11_1470_Player85-f153ac423f61-20210705-155039.mp4 6.13_20965_treechop-33d09f58d4ab-20210921-154955.mp4\r\n6.11_1471_Player85-f153ac423f61-20210705-155720.mp4 6.13_20966_treechop-33d09f58d4ab-20210921-155056.mp4\r\n6.11_1472_Player85-f153ac423f61-20210705-160444.mp4 6.13_20967_treechop-33d09f58d4ab-20210921-155157.mp4\r\n6.11_1473_Player85-f153ac423f61-20210705-161147.mp4 6.13_20968_treechop-33d09f58d4ab-20210921-155258.mp4\r\n6.11_1474_Player85-f153ac423f61-20210705-161845.mp4 6.13_20969_treechop-33d09f58d4ab-20210921-155400.mp4\r\n6.11_1475_Player85-f153ac423f61-20210705-162552.mp4 6.13_2096_Player177-f153ac423f61-20211130-154537.mp4\r\n6.11_1476_Player85-f153ac423f61-20210705-163307.mp4 6.13_20970_treechop-33d09f58d4ab-20210921-155501.mp4\r\n6.11_1477_Player85-f153ac423f61-20210705-164012.mp4 6.13_20971_treechop-33d09f58d4ab-20210921-155602.mp4\r\n6.11_1478_Player85-f153ac423f61-20210705-164545.mp4 6.13_20972_treechop-33d09f58d4ab-20210921-155703.mp4\r\n6.11_1479_Player853-f153ac423f61-20210716-120206.mp4 6.13_20973_treechop-33d09f58d4ab-20210921-155804.mp4\r\n6.11_147_Player148-39b1b64221f5-20210705-142953.mp4 6.13_20974_treechop-33d09f58d4ab-20210921-155905.mp4\r\n6.11_1480_Player853-f153ac423f61-20210716-120708.mp4 6.13_20975_treechop-33d09f58d4ab-20210921-160005.mp4\r\n6.11_1481_Player853-f153ac423f61-20210716-121207.mp4 6.13_20976_treechop-33d09f58d4ab-20210921-160106.mp4\r\n6.11_1482_Player853-f153ac423f61-20210716-121707.mp4 6.13_20977_treechop-33d09f58d4ab-20210921-160207.mp4\r\n6.11_1483_Player853-f153ac423f61-20210716-122206.mp4 6.13_20978_treechop-33d09f58d4ab-20210921-160308.mp4\r\n6.11_1484_Player853-f153ac423f61-20210716-122705.mp4 6.13_20979_treechop-33d09f58d4ab-20210921-160408.mp4\r\n6.11_1485_Player853-f153ac423f61-20210716-123203.mp4 6.13_2097_Player177-f153ac423f61-20211130-155040.mp4\r\n6.11_1486_Player853-f153ac423f61-20210716-123702.mp4 6.13_20980_treechop-33d09f58d4ab-20210921-160509.mp4\r\n6.11_1487_Player853-f153ac423f61-20210716-124200.mp4 6.13_20981_treechop-33d09f58d4ab-20210921-160610.mp4\r\n6.11_1488_Player853-f153ac423f61-20210716-130157.mp4 6.13_20982_treechop-33d09f58d4ab-20210921-160711.mp4\r\n6.11_1489_Player855-f153ac423f61-20210703-143137.mp4 6.13_20983_treechop-33d09f58d4ab-20210921-160812.mp4\r\n6.11_148_Player148-39b1b64221f5-20210705-144504.mp4 6.13_20984_treechop-33d09f58d4ab-20210921-160913.mp4\r\n6.11_1490_Player855-f153ac423f61-20210703-143826.mp4 6.13_20985_treechop-33d09f58d4ab-20210921-161014.mp4\r\n6.11_1491_Player855-f153ac423f61-20210703-144526.mp4 6.13_20986_treechop-33d09f58d4ab-20210921-161118.mp4\r\n6.11_1492_Player855-f153ac423f61-20210703-145241.mp4 6.13_20987_treechop-33d09f58d4ab-20210921-161219.mp4\r\n6.11_1493_Player855-f153ac423f61-20210703-145948.mp4 6.13_20988_treechop-33d09f58d4ab-20210921-161320.mp4\r\n6.11_1494_Player855-f153ac423f61-20210703-150652.mp4 6.13_20989_treechop-33d09f58d4ab-20210921-161421.mp4\r\n6.11_1495_Player855-f153ac423f61-20210703-151219.mp4 6.13_2098_Player177-f153ac423f61-20211130-155549.mp4\r\n6.11_1496_Player855-f153ac423f61-20210703-151733.mp4 6.13_20990_treechop-33d09f58d4ab-20210921-161522.mp4\r\n6.11_1497_Player855-f153ac423f61-20210703-152256.mp4 6.13_20991_treechop-33d09f58d4ab-20210921-161623.mp4\r\n6.11_1498_Player855-f153ac423f61-20210703-152804.mp4 6.13_20992_treechop-33d09f58d4ab-20210921-161725.mp4\r\n6.11_1499_Player855-f153ac423f61-20210703-153347.mp4 6.13_20993_treechop-33d09f58d4ab-20210921-161825.mp4\r\n6.11_149_Player148-39b1b64221f5-20210705-150009.mp4 6.13_20994_treechop-33d09f58d4ab-20210921-161926.mp4\r\n6.11_1500_Player863-20550fc39e43-20210712-173547.mp4 6.13_20995_treechop-33d09f58d4ab-20210921-162029.mp4\r\n6.11_1501_Player863-375f1399fc35-20210712-173644.mp4 6.13_20996_treechop-33d09f58d4ab-20210921-162131.mp4\r\n6.11_1502_Player863-375f1399fc35-20210712-174223.mp4 6.13_20997_treechop-33d09f58d4ab-20210921-162233.mp4\r\n6.11_1503_Player863-375f1399fc35-20210712-174822.mp4 6.13_20998_treechop-33d09f58d4ab-20210921-162334.mp4\r\n6.11_1504_Player863-3fc53d0361cd-20210712-172624.mp4 6.13_20999_treechop-33d09f58d4ab-20210921-162434.mp4\r\n6.11_1505_Player863-4a8458c74844-20210712-170908.mp4 6.13_2099_Player177-f153ac423f61-20211130-155951.mp4\r\n6.11_1506_Player863-7378dea3131c-20210712-175318.mp4 6.13_209_Player107-f153ac423f61-20210811-124903.mp4\r\n6.11_1507_Player863-7378dea3131c-20210712-175917.mp4 6.13_21000_treechop-33d09f58d4ab-20210921-162535.mp4\r\n6.11_1508_Player863-7378dea3131c-20210712-180518.mp4 6.13_21001_treechop-33d09f58d4ab-20210921-162635.mp4\r\n6.11_1509_Player863-7378dea3131c-20210712-181041.mp4 6.13_21002_treechop-33d09f58d4ab-20210921-162737.mp4\r\n6.11_150_Player148-39b1b64221f5-20210705-151524.mp4 6.13_21003_treechop-33d09f58d4ab-20210921-162839.mp4\r\n6.11_1510_Player863-7378dea3131c-20210712-181634.mp4 6.13_21004_treechop-33d09f58d4ab-20210921-162940.mp4\r\n6.11_1511_Player863-7378dea3131c-20210712-191734.mp4 6.13_21005_treechop-33d09f58d4ab-20210921-163042.mp4\r\n6.11_1512_Player863-7b776a3fd761-20210712-171000.mp4 6.13_21006_treechop-33d09f58d4ab-20210921-163143.mp4\r\n6.11_1513_Player863-7b776a3fd761-20210712-171558.mp4 6.13_21007_treechop-33d09f58d4ab-20210921-163245.mp4\r\n6.11_1514_Player863-7b776a3fd761-20210712-172207.mp4 6.13_21008_treechop-33d09f58d4ab-20210921-163347.mp4\r\n6.11_1515_Player863-80b8b61b3fe2-20210712-192345.mp4 6.13_21009_treechop-33d09f58d4ab-20210921-163448.mp4\r\n6.11_1516_Player863-cd2f59902286-20210712-192447.mp4 6.13_2100_Player177-f153ac423f61-20211130-160356.mp4\r\n6.11_1517_Player863-d6d59fd7936f-20210712-172536.mp4 6.13_21010_treechop-33d09f58d4ab-20210921-163550.mp4\r\n6.11_1518_Player863-d9dea1d66bfb-20210712-192135.mp4 6.13_21011_treechop-33d09f58d4ab-20210921-163650.mp4\r\n6.11_1519_Player863-eb8360d8bde7-20210712-173014.mp4 6.13_21012_treechop-33d09f58d4ab-20210921-163752.mp4\r\n6.11_151_Player148-92fdccf44d01-20210705-182407.mp4 6.13_21013_treechop-33d09f58d4ab-20210921-163853.mp4\r\n6.11_1520_Player863-f153ac423f61-20210712-170732.mp4 6.13_21014_treechop-33d09f58d4ab-20210921-163954.mp4\r\n6.11_1521_Player87-f153ac423f61-20210716-165254.mp4 6.13_21015_treechop-33d09f58d4ab-20210921-164055.mp4\r\n6.11_1522_Player87-f153ac423f61-20210716-165756.mp4 6.13_21016_treechop-33d09f58d4ab-20210921-164156.mp4\r\n6.11_1523_Player880-f153ac423f61-20210718-102852.mp4 6.13_21017_treechop-33d09f58d4ab-20210921-164256.mp4\r\n6.11_1524_Player880-f153ac423f61-20210718-103430.mp4 6.13_21018_treechop-33d09f58d4ab-20210921-164358.mp4\r\n6.11_1525_Player880-f153ac423f61-20210718-104010.mp4 6.13_21019_treechop-33d09f58d4ab-20210921-164459.mp4\r\n6.11_1526_Player880-f153ac423f61-20210718-104516.mp4 6.13_2101_Player177-f153ac423f61-20211130-160902.mp4\r\n6.11_1527_Player880-f153ac423f61-20210718-105027.mp4 6.13_21020_treechop-33d09f58d4ab-20210921-164600.mp4\r\n6.11_1528_Player880-f153ac423f61-20210718-105542.mp4 6.13_21021_treechop-33d09f58d4ab-20210921-164702.mp4\r\n6.11_1529_Player880-f153ac423f61-20210718-110208.mp4 6.13_21022_treechop-33d09f58d4ab-20210921-164908.mp4\r\n6.11_152_Player148-f153ac423f61-20210705-093339.mp4 6.13_21023_treechop-33d09f58d4ab-20210921-165009.mp4\r\n6.11_1530_Player880-f153ac423f61-20210718-110715.mp4 6.13_21024_treechop-33d09f58d4ab-20210921-165110.mp4\r\n6.11_1531_Player880-f153ac423f61-20210718-111219.mp4 6.13_21025_treechop-33d09f58d4ab-20210921-165211.mp4\r\n6.11_1532_Player880-f153ac423f61-20210718-111734.mp4 6.13_21026_treechop-33d09f58d4ab-20210921-165312.mp4\r\n6.11_1533_Player880-f153ac423f61-20210718-112240.mp4 6.13_21027_treechop-33d09f58d4ab-20210921-165413.mp4\r\n6.11_1534_Player880-f153ac423f61-20210718-112756.mp4 6.13_21028_treechop-33d09f58d4ab-20210921-165514.mp4\r\n6.11_1535_Player880-f153ac423f61-20210718-113306.mp4 6.13_21029_treechop-33d09f58d4ab-20210921-165615.mp4\r\n6.11_1536_Player884-f153ac423f61-20210709-172807.mp4 6.13_2102_Player177-f153ac423f61-20211130-161306.mp4\r\n6.11_1537_Player884-f153ac423f61-20210709-174319.mp4 6.13_21030_treechop-33d09f58d4ab-20210921-165716.mp4\r\n6.11_1538_Player884-f153ac423f61-20210709-175832.mp4 6.13_21031_treechop-33d09f58d4ab-20210921-165817.mp4\r\n6.11_1539_Player884-f153ac423f61-20210709-181344.mp4 6.13_21032_treechop-33d09f58d4ab-20210921-165919.mp4\r\n6.11_153_Player148-f153ac423f61-20210705-095350.mp4 6.13_21033_treechop-33d09f58d4ab-20210921-170020.mp4\r\n6.11_1540_Player898-39d94b461f44-20210704-165630.mp4 6.13_21034_treechop-33d09f58d4ab-20210921-170121.mp4\r\n6.11_1541_Player898-9fc58403cd55-20210704-165855.mp4 6.13_21035_treechop-33d09f58d4ab-20210921-170223.mp4\r\n6.11_1542_Player898-9fc58403cd55-20210704-170414.mp4 6.13_21036_treechop-33d09f58d4ab-20210921-170325.mp4\r\n6.11_1543_Player898-9fc58403cd55-20210704-170942.mp4 6.13_21037_treechop-33d09f58d4ab-20210921-170426.mp4\r\n6.11_1544_Player898-9fc58403cd55-20210704-171533.mp4 6.13_21038_treechop-33d09f58d4ab-20210921-170527.mp4\r\n6.11_1545_Player898-9fc58403cd55-20210704-172121.mp4 6.13_21039_treechop-33d09f58d4ab-20210921-170628.mp4\r\n6.11_1546_Player898-9fc58403cd55-20210704-172656.mp4 6.13_2103_Player177-f153ac423f61-20211130-161813.mp4\r\n6.11_1547_Player898-9fc58403cd55-20210704-173224.mp4 6.13_21040_treechop-33d09f58d4ab-20210921-170729.mp4\r\n6.11_1548_Player898-f153ac423f61-20210704-155820.mp4 6.13_21041_treechop-33d09f58d4ab-20210921-170831.mp4\r\n6.11_1549_Player898-f153ac423f61-20210704-160501.mp4 6.13_21042_treechop-33d09f58d4ab-20210921-170933.mp4\r\n6.11_154_Player148-f153ac423f61-20210705-100907.mp4 6.13_21043_treechop-33d09f58d4ab-20210921-171035.mp4\r\n6.11_1550_Player898-f153ac423f61-20210704-161228.mp4 6.13_21044_treechop-33d09f58d4ab-20210921-171136.mp4\r\n6.11_1551_Player898-f153ac423f61-20210704-161852.mp4 6.13_21045_treechop-33d09f58d4ab-20210921-171238.mp4\r\n6.11_1552_Player898-f153ac423f61-20210704-162505.mp4 6.13_21046_treechop-33d09f58d4ab-20210921-171340.mp4\r\n6.11_1553_Player898-f153ac423f61-20210704-163034.mp4 6.13_21047_treechop-33d09f58d4ab-20210921-171442.mp4\r\n6.11_1554_Player898-f153ac423f61-20210704-163550.mp4 6.13_21048_treechop-33d09f58d4ab-20210921-171543.mp4\r\n6.11_1555_Player898-f153ac423f61-20210704-164133.mp4 6.13_21049_treechop-33d09f58d4ab-20210921-171644.mp4\r\n6.11_1556_Player898-f153ac423f61-20210704-164704.mp4 6.13_2104_Player177-f153ac423f61-20211130-162220.mp4\r\n6.11_1557_Player898-f153ac423f61-20210704-165227.mp4 6.13_21050_treechop-33d09f58d4ab-20210921-171745.mp4\r\n6.11_1558_Player898-f3ea4f8dbfc8-20210704-165536.mp4 6.13_21051_treechop-33d09f58d4ab-20210921-171847.mp4\r\n6.11_1559_Player899-66c0a870f23a-20210704-104213.mp4 6.13_21052_treechop-33d09f58d4ab-20210921-171948.mp4\r\n6.11_155_Player148-f153ac423f61-20210705-102415.mp4 6.13_21053_treechop-33d09f58d4ab-20210921-172049.mp4\r\n6.11_1560_Player899-66c0a870f23a-20210704-104719.mp4 6.13_21054_treechop-33d09f58d4ab-20210921-172150.mp4\r\n6.11_1561_Player899-66c0a870f23a-20210704-105228.mp4 6.13_21055_treechop-33d09f58d4ab-20210921-172251.mp4\r\n6.11_1562_Player899-66c0a870f23a-20210704-105744.mp4 6.13_21056_treechop-4311a18dfab2-20210927-175933.mp4\r\n6.11_1563_Player899-66c0a870f23a-20210704-110306.mp4 6.13_21057_treechop-4311a18dfab2-20210927-180035.mp4\r\n6.11_1564_Player899-66c0a870f23a-20210704-110843.mp4 6.13_21058_treechop-4311a18dfab2-20210927-180139.mp4\r\n6.11_1565_Player899-66c0a870f23a-20210704-111409.mp4 6.13_21059_treechop-4311a18dfab2-20210927-180241.mp4\r\n6.11_1566_Player899-66c0a870f23a-20210704-111927.mp4 6.13_2105_Player177-f153ac423f61-20211130-162627.mp4\r\n6.11_1567_Player899-f153ac423f61-20210704-090951.mp4 6.13_21060_treechop-4311a18dfab2-20210927-180343.mp4\r\n6.11_1568_Player899-f153ac423f61-20210704-091625.mp4 6.13_21061_treechop-4311a18dfab2-20210927-180447.mp4\r\n6.11_1569_Player899-f153ac423f61-20210704-092309.mp4 6.13_21062_treechop-4311a18dfab2-20210927-180550.mp4\r\n6.11_156_Player148-f153ac423f61-20210705-103930.mp4 6.13_21063_treechop-4311a18dfab2-20210927-180654.mp4\r\n6.11_1570_Player899-f153ac423f61-20210704-092935.mp4 6.13_21064_treechop-4311a18dfab2-20210927-180759.mp4\r\n6.11_1571_Player899-f153ac423f61-20210704-093635.mp4 6.13_21065_treechop-4311a18dfab2-20210927-180902.mp4\r\n6.11_1572_Player899-f153ac423f61-20210704-094302.mp4 6.13_21066_treechop-4311a18dfab2-20210927-181004.mp4\r\n6.11_1573_Player899-f153ac423f61-20210704-094925.mp4 6.13_21067_treechop-4311a18dfab2-20210927-181105.mp4\r\n6.11_1574_Player899-f153ac423f61-20210704-095440.mp4 6.13_21068_treechop-4311a18dfab2-20210927-181208.mp4\r\n6.11_1575_Player899-f153ac423f61-20210704-095953.mp4 6.13_21069_treechop-4311a18dfab2-20210927-181309.mp4\r\n6.11_1576_Player899-f153ac423f61-20210704-100513.mp4 6.13_2106_Player177-f153ac423f61-20211130-163029.mp4\r\n6.11_1577_Player899-f153ac423f61-20210704-101025.mp4 6.13_21070_treechop-4311a18dfab2-20210927-181600.mp4\r\n6.11_1578_Player899-f153ac423f61-20210704-101536.mp4 6.13_21071_treechop-4311a18dfab2-20210927-181705.mp4\r\n6.11_1579_Player899-f153ac423f61-20210704-102107.mp4 6.13_21072_treechop-4311a18dfab2-20210927-181807.mp4\r\n6.11_157_Player148-f153ac423f61-20210705-105504.mp4 6.13_21073_treechop-4311a18dfab2-20210927-181909.mp4\r\n6.11_1580_Player899-f153ac423f61-20210704-102620.mp4 6.13_21074_treechop-4311a18dfab2-20210927-182012.mp4\r\n6.11_1581_Player899-f153ac423f61-20210704-103123.mp4 6.13_21075_treechop-4311a18dfab2-20210927-182118.mp4\r\n6.11_1582_Player899-f153ac423f61-20210704-103623.mp4 6.13_21076_treechop-4311a18dfab2-20210927-182220.mp4\r\n6.11_1583_Player899-f153ac423f61-20210704-104138.mp4 6.13_21077_treechop-4311a18dfab2-20210927-182322.mp4\r\n6.11_1584_Player901-f153ac423f61-20210716-144031.mp4 6.13_21078_treechop-4311a18dfab2-20210927-182423.mp4\r\n6.11_1585_Player901-f153ac423f61-20210716-144715.mp4 6.13_21079_treechop-4311a18dfab2-20210927-182524.mp4\r\n6.11_1586_Player901-f153ac423f61-20210716-145414.mp4 6.13_2107_Player177-f153ac423f61-20211130-163431.mp4\r\n6.11_1587_Player901-f153ac423f61-20210716-150047.mp4 6.13_21080_treechop-4311a18dfab2-20210927-182626.mp4\r\n6.11_1588_Player901-f153ac423f61-20210716-150707.mp4 6.13_21081_treechop-4686da572088-20210920-173605.mp4\r\n6.11_1589_Player901-f153ac423f61-20210716-151327.mp4 6.13_21082_treechop-4686da572088-20210920-173707.mp4\r\n6.11_158_Player148-f153ac423f61-20210705-111520.mp4 6.13_21083_treechop-4686da572088-20210920-173809.mp4\r\n",,terminal_output +638,6808571,"TERMINAL",0,0,"6.11_1590_Player901-f153ac423f61-20210716-152004.mp4 6.13_21084_treechop-4686da572088-20210920-173911.mp4\r\n6.11_1591_Player901-f153ac423f61-20210716-152739.mp4 6.13_21085_treechop-4686da572088-20210920-174012.mp4\r\n6.11_1592_Player901-f153ac423f61-20210716-153510.mp4 6.13_21086_treechop-4686da572088-20210920-174113.mp4\r\n6.11_1593_Player901-f153ac423f61-20210716-154029.mp4 6.13_21087_treechop-4686da572088-20210920-174215.mp4\r\n6.11_1594_Player901-f153ac423f61-20210716-154546.mp4 6.13_21088_treechop-4686da572088-20210920-174316.mp4\r\n6.11_1595_Player901-f153ac423f61-20210716-155100.mp4 6.13_21089_treechop-4686da572088-20210920-174417.mp4\r\n6.11_1596_Player901-f153ac423f61-20210716-155616.mp4 6.13_2108_Player177-f153ac423f61-20211130-163933.mp4\r\n6.11_1597_Player901-f153ac423f61-20210716-160135.mp4 6.13_21090_treechop-4686da572088-20210920-174519.mp4\r\n6.11_1598_Player901-f153ac423f61-20210716-160658.mp4 6.13_21091_treechop-4686da572088-20210920-174620.mp4\r\n6.11_1599_Player901-f153ac423f61-20210716-161213.mp4 6.13_21092_treechop-4686da572088-20210920-174722.mp4\r\n6.11_159_Player148-f153ac423f61-20210705-113029.mp4 6.13_21093_treechop-4686da572088-20210920-174823.mp4\r\n6.11_1600_Player911-f153ac423f61-20210719-153814.mp4 6.13_21094_treechop-4686da572088-20210920-174924.mp4\r\n6.11_1601_Player911-f153ac423f61-20210719-154318.mp4 6.13_21095_treechop-4686da572088-20210920-175026.mp4\r\n6.11_1602_Player911-f153ac423f61-20210719-154817.mp4 6.13_21096_treechop-4686da572088-20210920-175127.mp4\r\n6.11_1603_Player911-f153ac423f61-20210719-155317.mp4 6.13_21097_treechop-4686da572088-20210920-175227.mp4\r\n6.11_1604_Player911-f153ac423f61-20210719-155815.mp4 6.13_21098_treechop-4686da572088-20210920-175328.mp4\r\n6.11_1605_Player911-f153ac423f61-20210719-160315.mp4 6.13_21099_treechop-4686da572088-20210920-175429.mp4\r\n6.11_1606_Player911-f153ac423f61-20210719-160814.mp4 6.13_2109_Player177-f153ac423f61-20211130-164338.mp4\r\n6.11_1607_Player911-f153ac423f61-20210719-161313.mp4 6.13_210_Player107-f153ac423f61-20210811-125004.mp4\r\n6.11_1608_Player911-f153ac423f61-20210719-162310.mp4 6.13_21100_treechop-4686da572088-20210920-175529.mp4\r\n6.11_1609_Player911-f153ac423f61-20210719-162808.mp4 6.13_21101_treechop-49af20bb188d-20210920-173450.mp4\r\n6.11_160_Player148-f153ac423f61-20210705-114527.mp4 6.13_21102_treechop-49af20bb188d-20210920-173555.mp4\r\n6.11_1610_Player916-f153ac423f61-20210720-134142.mp4 6.13_21103_treechop-51c189b66aa3-20210908-215455.mp4\r\n6.11_1611_Player916-f153ac423f61-20210720-134645.mp4 6.13_21104_treechop-51c189b66aa3-20210908-220539.mp4\r\n6.11_1612_Player916-f153ac423f61-20210720-135145.mp4 6.13_21105_treechop-51c189b66aa3-20210908-222403.mp4\r\n6.11_1613_Player916-f153ac423f61-20210720-135644.mp4 6.13_21106_treechop-51c189b66aa3-20210908-223742.mp4\r\n6.11_1614_Player916-f153ac423f61-20210720-140142.mp4 6.13_21107_treechop-51c189b66aa3-20210908-230939.mp4\r\n6.11_1615_Player916-f153ac423f61-20210720-140642.mp4 6.13_21108_treechop-51c189b66aa3-20210909-001819.mp4\r\n6.11_1616_Player916-f153ac423f61-20210720-141640.mp4 6.13_21109_treechop-51c189b66aa3-20210909-012511.mp4\r\n6.11_1617_Player919-f153ac423f61-20210720-101345.mp4 6.13_2110_Player177-f153ac423f61-20211130-164739.mp4\r\n6.11_1618_Player919-f153ac423f61-20210720-102038.mp4 6.13_21110_treechop-51c189b66aa3-20210909-012715.mp4\r\n6.11_1619_Player919-f153ac423f61-20210720-102747.mp4 6.13_21111_treechop-51c189b66aa3-20210909-012917.mp4\r\n6.11_161_Player148-f153ac423f61-20210705-120032.mp4 6.13_21112_treechop-51c189b66aa3-20210909-014237.mp4\r\n6.11_1620_Player919-f153ac423f61-20210720-103407.mp4 6.13_21113_treechop-51c189b66aa3-20210909-014949.mp4\r\n6.11_1621_Player919-f153ac423f61-20210720-104103.mp4 6.13_21114_treechop-5ed3772fa6f9-20210920-170847.mp4\r\n6.11_1622_Player919-f153ac423f61-20210720-104643.mp4 6.13_21115_treechop-5ed3772fa6f9-20210920-170950.mp4\r\n6.11_1623_Player919-f153ac423f61-20210720-105150.mp4 6.13_21116_treechop-5ed3772fa6f9-20210920-171051.mp4\r\n6.11_1624_Player919-f153ac423f61-20210720-105654.mp4 6.13_21117_treechop-5ed3772fa6f9-20210920-171151.mp4\r\n6.11_1625_Player919-f153ac423f61-20210720-110217.mp4 6.13_21118_treechop-5ed3772fa6f9-20210920-171252.mp4\r\n6.11_1626_Player919-f153ac423f61-20210720-110813.mp4 6.13_21119_treechop-5ed3772fa6f9-20210920-171352.mp4\r\n6.11_1627_Player919-f153ac423f61-20210720-111401.mp4 6.13_2111_Player177-f153ac423f61-20211130-165247.mp4\r\n6.11_1628_Player939-f153ac423f61-20210712-150841.mp4 6.13_21120_treechop-5ed3772fa6f9-20210920-171454.mp4\r\n6.11_1629_Player939-f153ac423f61-20210712-151356.mp4 6.13_21121_treechop-5ed3772fa6f9-20210920-171554.mp4\r\n6.11_162_Player148-f153ac423f61-20210705-121547.mp4 6.13_21122_treechop-5ed3772fa6f9-20210920-171655.mp4\r\n6.11_1630_Player939-f153ac423f61-20210712-151859.mp4 6.13_21123_treechop-5ed3772fa6f9-20210920-171755.mp4\r\n6.11_1631_Player939-f153ac423f61-20210712-152401.mp4 6.13_21124_treechop-5ed3772fa6f9-20210920-171856.mp4\r\n6.11_1632_Player939-f153ac423f61-20210712-152903.mp4 6.13_21125_treechop-5ed3772fa6f9-20210920-171957.mp4\r\n6.11_1633_Player939-f153ac423f61-20210712-153407.mp4 6.13_21126_treechop-5ed3772fa6f9-20210920-172059.mp4\r\n6.11_1634_Player939-f153ac423f61-20210712-153910.mp4 6.13_21127_treechop-5ed3772fa6f9-20210920-172203.mp4\r\n6.11_1635_Player939-f153ac423f61-20210712-154412.mp4 6.13_21128_treechop-5ed3772fa6f9-20210920-172305.mp4\r\n6.11_1636_Player939-f153ac423f61-20210712-154914.mp4 6.13_21129_treechop-5ed3772fa6f9-20210920-172405.mp4\r\n6.11_1637_Player939-f153ac423f61-20210712-155920.mp4 6.13_2112_Player177-fb287ebb5cea-20211130-202029.mp4\r\n6.11_1638_Player939-f153ac423f61-20210712-160425.mp4 6.13_21130_treechop-5ed3772fa6f9-20210920-172506.mp4\r\n6.11_1639_Player939-f153ac423f61-20210712-160936.mp4 6.13_21131_treechop-5ed3772fa6f9-20210920-172607.mp4\r\n6.11_163_Player148-f153ac423f61-20210705-123110.mp4 6.13_21132_treechop-5ed3772fa6f9-20210920-172708.mp4\r\n6.11_1640_Player962-258719387df3-20210712-002025.mp4 6.13_21133_treechop-5ed3772fa6f9-20210920-172810.mp4\r\n6.11_1641_Player962-43dad614e833-20210712-001023.mp4 6.13_21134_treechop-5ed3772fa6f9-20210920-172912.mp4\r\n6.11_1642_Player962-43dad614e833-20210712-001544.mp4 6.13_21135_treechop-5ed3772fa6f9-20210920-173013.mp4\r\n6.11_1643_Player962-499a85ed77ff-20210711-231622.mp4 6.13_21136_treechop-5ed3772fa6f9-20210920-173114.mp4\r\n6.11_1644_Player962-499a85ed77ff-20210711-232143.mp4 6.13_21137_treechop-5ed3772fa6f9-20210920-173216.mp4\r\n6.11_1645_Player962-499a85ed77ff-20210711-232714.mp4 6.13_21138_treechop-5ed3772fa6f9-20210920-173318.mp4\r\n6.11_1646_Player962-642effcfbfa5-20210712-002508.mp4 6.13_21139_treechop-5ed3772fa6f9-20210920-173419.mp4\r\n6.11_1647_Player962-b757f57fa641-20210711-231421.mp4 6.13_2113_Player180-f153ac423f61-20211011-204804.mp4\r\n6.11_1648_Player962-ddd464d07f3a-20210711-233130.mp4 6.13_21140_treechop-7b0eef636c60-20210908-154843.mp4\r\n6.11_1649_Player962-ddd464d07f3a-20210711-233647.mp4 6.13_21141_treechop-8626c9de60e4-20210919-111959.mp4\r\n6.11_164_Player148-f153ac423f61-20210705-124624.mp4 6.13_21142_treechop-8626c9de60e4-20210919-112101.mp4\r\n6.11_1650_Player962-ddd464d07f3a-20210711-234157.mp4 6.13_21143_treechop-8626c9de60e4-20210919-112318.mp4\r\n6.11_1651_Player962-ddd464d07f3a-20210712-000102.mp4 6.13_21144_treechop-8626c9de60e4-20210919-112418.mp4\r\n6.11_1652_Player962-ddd464d07f3a-20210712-000614.mp4 6.13_21145_treechop-8626c9de60e4-20210919-112519.mp4\r\n6.11_1653_Player962-f153ac423f61-20210711-230750.mp4 6.13_21146_treechop-8626c9de60e4-20210919-112620.mp4\r\n6.11_1654_Player962-f153ac423f61-20210711-231322.mp4 6.13_21147_treechop-8626c9de60e4-20210919-112722.mp4\r\n6.11_1655_Player978-c97c07ca3d9d-20210719-003333.mp4 6.13_21148_treechop-8626c9de60e4-20210919-112823.mp4\r\n6.11_1656_Player978-f153ac423f61-20210718-225801.mp4 6.13_21149_treechop-8626c9de60e4-20210919-112924.mp4\r\n6.11_1657_Player978-f153ac423f61-20210718-230305.mp4 6.13_2114_Player180-f153ac423f61-20211011-204950.mp4\r\n6.11_1658_Player978-f153ac423f61-20210718-230803.mp4 6.13_21150_treechop-8626c9de60e4-20210919-113025.mp4\r\n6.11_1659_Player978-f153ac423f61-20210718-231301.mp4 6.13_21151_treechop-8626c9de60e4-20210919-113126.mp4\r\n6.11_165_Player148-f153ac423f61-20210705-130141.mp4 6.13_21152_treechop-8626c9de60e4-20210919-113227.mp4\r\n6.11_1660_Player978-f153ac423f61-20210718-231800.mp4 6.13_21153_treechop-8626c9de60e4-20210919-113327.mp4\r\n6.11_1661_Player978-f153ac423f61-20210718-232259.mp4 6.13_21154_treechop-8626c9de60e4-20210919-113427.mp4\r\n6.11_1662_Player978-f153ac423f61-20210718-232758.mp4 6.13_21155_treechop-8626c9de60e4-20210919-113527.mp4\r\n6.11_1663_Player978-f153ac423f61-20210718-233257.mp4 6.13_21156_treechop-8626c9de60e4-20210919-113628.mp4\r\n6.11_1664_Player978-f153ac423f61-20210718-233758.mp4 6.13_21157_treechop-8626c9de60e4-20210919-113728.mp4\r\n6.11_1665_Player978-f153ac423f61-20210718-234256.mp4 6.13_21158_treechop-8626c9de60e4-20210919-113828.mp4\r\n6.11_1666_Player978-f153ac423f61-20210718-234754.mp4 6.13_21159_treechop-8626c9de60e4-20210919-113929.mp4\r\n6.11_1667_Player978-f153ac423f61-20210718-235253.mp4 6.13_2115_Player180-f153ac423f61-20211011-205120.mp4\r\n6.11_1668_Player978-f153ac423f61-20210718-235751.mp4 6.13_21160_treechop-8626c9de60e4-20210919-114030.mp4\r\n6.11_1669_Player978-f153ac423f61-20210719-000249.mp4 6.13_21161_treechop-8626c9de60e4-20210919-114132.mp4\r\n6.11_166_Player148-f153ac423f61-20210705-131703.mp4 6.13_21162_treechop-8626c9de60e4-20210919-114235.mp4\r\n6.11_1670_Player978-f153ac423f61-20210719-000748.mp4 6.13_21163_treechop-8626c9de60e4-20210919-114336.mp4\r\n6.11_1671_Player978-f153ac423f61-20210719-001247.mp4 6.13_21164_treechop-8626c9de60e4-20210919-114436.mp4\r\n6.11_1672_Player978-f153ac423f61-20210719-001745.mp4 6.13_21165_treechop-8626c9de60e4-20210919-114536.mp4\r\n6.11_1673_Player978-f153ac423f61-20210719-002244.mp4 6.13_21166_treechop-8626c9de60e4-20210919-114637.mp4\r\n6.11_1674_Player978-f153ac423f61-20210719-002742.mp4 6.13_21167_treechop-8626c9de60e4-20210919-114738.mp4\r\n6.11_1675_Player992-f153ac423f61-20210719-135502.mp4 6.13_21168_treechop-8626c9de60e4-20210919-114839.mp4\r\n6.11_1676_Player992-f153ac423f61-20210719-140006.mp4 6.13_21169_treechop-8626c9de60e4-20210919-114940.mp4\r\n6.11_1677_Player992-f153ac423f61-20210719-140505.mp4 6.13_2116_Player180-f153ac423f61-20211011-205240.mp4\r\n6.11_1678_Player992-f153ac423f61-20210719-141003.mp4 6.13_21170_treechop-8626c9de60e4-20210919-115040.mp4\r\n6.11_1679_Player992-f153ac423f61-20210719-141502.mp4 6.13_21171_treechop-8626c9de60e4-20210919-115140.mp4\r\n6.11_167_Player148-f153ac423f61-20210705-133719.mp4 6.13_21172_treechop-8626c9de60e4-20210919-115241.mp4\r\n6.11_1680_Player992-f153ac423f61-20210719-142001.mp4 6.13_21173_treechop-8626c9de60e4-20210919-115341.mp4\r\n6.11_1681_Player998-29b0529865d6-20210709-090400.mp4 6.13_21174_treechop-8626c9de60e4-20210919-115441.mp4\r\n6.11_1682_Player998-29b0529865d6-20210709-091908.mp4 6.13_21175_treechop-8626c9de60e4-20210919-115542.mp4\r\n6.11_1683_Player998-7c6491c35a43-20210709-104219.mp4 6.13_21176_treechop-8626c9de60e4-20210919-115642.mp4\r\n6.11_1684_Player998-7c6491c35a43-20210709-105722.mp4 6.13_21177_treechop-8626c9de60e4-20210919-115743.mp4\r\n6.11_1685_Player998-7c6491c35a43-20210709-111227.mp4 6.13_21178_treechop-8626c9de60e4-20210919-115843.mp4\r\n6.11_1686_Player998-7c6491c35a43-20210709-112742.mp4 6.13_21179_treechop-8626c9de60e4-20210919-115943.mp4\r\n6.11_1687_Player998-7c6491c35a43-20210709-114257.mp4 6.13_2117_Player180-f153ac423f61-20211011-205402.mp4\r\n6.11_1688_Player998-7c6491c35a43-20210709-115802.mp4 6.13_21180_treechop-8626c9de60e4-20210919-120044.mp4\r\n6.11_1689_Player998-7c6491c35a43-20210709-121329.mp4 6.13_21181_treechop-8626c9de60e4-20210919-120144.mp4\r\n6.11_168_Player148-f153ac423f61-20210705-135230.mp4 6.13_21182_treechop-8626c9de60e4-20210919-120244.mp4\r\n6.11_1690_Player998-7c6491c35a43-20210709-122839.mp4 6.13_21183_treechop-8626c9de60e4-20210919-120345.mp4\r\n6.11_1691_Player998-7c6491c35a43-20210709-124354.mp4 6.13_21184_treechop-8626c9de60e4-20210919-120445.mp4\r\n6.11_1692_Player998-7c6491c35a43-20210709-130431.mp4 6.13_21185_treechop-89a9ddf0aab7-20210904-132921.mp4\r\n6.11_1693_Player998-7c6491c35a43-20210709-131953.mp4 6.13_21186_treechop-89a9ddf0aab7-20210904-133122.mp4\r\n6.11_1694_Player998-7c6491c35a43-20210709-133510.mp4 6.13_21187_treechop-89a9ddf0aab7-20210904-133324.mp4\r\n6.11_1695_Player998-7c6491c35a43-20210709-135123.mp4 6.13_21188_treechop-89a9ddf0aab7-20210904-133526.mp4\r\n6.11_1696_Player998-7c6491c35a43-20210709-140650.mp4 6.13_21189_treechop-89a9ddf0aab7-20210904-133728.mp4\r\n6.11_1697_Player998-7c6491c35a43-20210709-142213.mp4 6.13_2118_Player180-f153ac423f61-20211011-205516.mp4\r\n6.11_1698_Player998-7c6491c35a43-20210709-143730.mp4 6.13_21190_treechop-89a9ddf0aab7-20210904-133930.mp4\r\n6.11_1699_Player998-7c6491c35a43-20210709-145300.mp4 6.13_21191_treechop-89a9ddf0aab7-20210904-134132.mp4\r\n6.11_169_Player162-027309d06dd8-20210710-172836.mp4 6.13_21192_treechop-89a9ddf0aab7-20210904-134234.mp4\r\n6.11_1700_Player998-7c6491c35a43-20210709-150821.mp4 6.13_21193_treechop-89a9ddf0aab7-20210904-134335.mp4\r\n6.11_1701_Player998-7c6491c35a43-20210709-152340.mp4 6.13_21194_treechop-89a9ddf0aab7-20210904-134435.mp4\r\n6.11_1702_Player998-7c6491c35a43-20210709-153919.mp4 6.13_21195_treechop-89a9ddf0aab7-20210904-134538.mp4\r\n6.11_1703_Player998-7c6491c35a43-20210709-155447.mp4 6.13_21196_treechop-89a9ddf0aab7-20210904-134638.mp4\r\n6.11_1704_Player998-c1146bdd8501-20210709-095547.mp4 6.13_21197_treechop-89a9ddf0aab7-20210904-134739.mp4\r\n6.11_1705_Player998-c1146bdd8501-20210709-101049.mp4 6.13_21198_treechop-89a9ddf0aab7-20210904-134841.mp4\r\n6.11_1706_Player998-c1146bdd8501-20210709-102549.mp4 6.13_21199_treechop-89a9ddf0aab7-20210904-134943.mp4\r\n6.11_1707_Player998-f153ac423f61-20210709-054617.mp4 6.13_2119_Player180-f153ac423f61-20211011-205628.mp4\r\n6.11_1708_Player998-f153ac423f61-20210709-060126.mp4 6.13_211_Player107-f153ac423f61-20210811-125104.mp4\r\n6.11_1709_Player998-f153ac423f61-20210709-061640.mp4 6.13_21200_treechop-89a9ddf0aab7-20210904-135043.mp4\r\n6.11_170_Player162-15d8cdc5f543-20210710-183032.mp4 6.13_21201_treechop-89a9ddf0aab7-20210904-135144.mp4\r\n6.11_1710_Player998-f153ac423f61-20210709-063146.mp4 6.13_21202_treechop-89a9ddf0aab7-20210904-135246.mp4\r\n6.11_1711_Player998-f153ac423f61-20210709-064651.mp4 6.13_21203_treechop-89a9ddf0aab7-20210904-135346.mp4\r\n6.11_1712_Player998-f153ac423f61-20210709-070155.mp4 6.13_21204_treechop-89a9ddf0aab7-20210904-135446.mp4\r\n6.11_1713_Player998-f153ac423f61-20210709-071701.mp4 6.13_21205_treechop-89a9ddf0aab7-20210904-135547.mp4\r\n6.11_1714_Player998-f153ac423f61-20210709-073203.mp4 6.13_21206_treechop-89a9ddf0aab7-20210904-135648.mp4\r\n6.11_1715_Player998-f153ac423f61-20210709-074705.mp4 6.13_21207_treechop-89a9ddf0aab7-20210904-135749.mp4\r\n6.11_1716_Player998-f153ac423f61-20210709-080209.mp4 6.13_21208_treechop-89a9ddf0aab7-20210904-135850.mp4\r\n6.11_1717_Player998-f153ac423f61-20210709-081719.mp4 6.13_21209_treechop-89a9ddf0aab7-20210904-135950.mp4\r\n6.11_1718_Player998-f153ac423f61-20210709-083224.mp4 6.13_2120_Player180-f153ac423f61-20211011-205750.mp4\r\n6.11_1719_Player998-f153ac423f61-20210709-084740.mp4 6.13_21210_treechop-89a9ddf0aab7-20210904-140051.mp4\r\n6.11_171_Player162-19449843a443-20210710-174855.mp4 6.13_21211_treechop-89a9ddf0aab7-20210904-140152.mp4\r\n6.11_172_Player162-19449843a443-20210710-175538.mp4 6.13_21212_treechop-89a9ddf0aab7-20210904-140253.mp4\r\n6.11_173_Player162-19449843a443-20210710-180055.mp4 6.13_21213_treechop-89a9ddf0aab7-20210904-140353.mp4\r\n6.11_174_Player162-19449843a443-20210710-181224.mp4 6.13_21214_treechop-89a9ddf0aab7-20210904-140454.mp4\r\n6.11_175_Player162-1fec8e454069-20210710-172031.mp4 6.13_21215_treechop-89a9ddf0aab7-20210904-140758.mp4\r\n6.11_176_Player162-1fec8e454069-20210710-172543.mp4 6.13_21216_treechop-89a9ddf0aab7-20210904-141001.mp4\r\n6.11_177_Player162-22abe7970a9a-20210711-122342.mp4 6.13_21217_treechop-89a9ddf0aab7-20210904-141203.mp4\r\n6.11_178_Player162-22abe7970a9a-20210711-122905.mp4 6.13_21218_treechop-89a9ddf0aab7-20210904-141304.mp4\r\n6.11_179_Player162-22abe7970a9a-20210711-123428.mp4 6.13_21219_treechop-89a9ddf0aab7-20210904-141506.mp4\r\n6.11_180_Player162-22abe7970a9a-20210711-123957.mp4 6.13_2121_Player180-f153ac423f61-20211011-205908.mp4\r\n6.11_181_Player162-22abe7970a9a-20210711-124514.mp4 6.13_21220_treechop-984393664dfd-20210924-161533.mp4\r\n6.11_182_Player162-22abe7970a9a-20210711-125028.mp4 6.13_21221_treechop-984393664dfd-20210924-161635.mp4\r\n6.11_183_Player162-23407cc7ad45-20210711-125112.mp4 6.13_21222_treechop-984393664dfd-20210924-161737.mp4\r\n6.11_184_Player162-23407cc7ad45-20210711-125628.mp4 6.13_21223_treechop-984393664dfd-20210924-161839.mp4\r\n6.11_185_Player162-23407cc7ad45-20210711-130148.mp4 6.13_21224_treechop-984393664dfd-20210924-161941.mp4\r\n6.11_186_Player162-23407cc7ad45-20210711-130704.mp4 6.13_21225_treechop-984393664dfd-20210924-162042.mp4\r\n6.11_187_Player162-23407cc7ad45-20210711-131229.mp4 6.13_21226_treechop-984393664dfd-20210924-162143.mp4\r\n6.11_188_Player162-23407cc7ad45-20210711-131736.mp4 6.13_21227_treechop-984393664dfd-20210924-162244.mp4\r\n6.11_189_Player162-23407cc7ad45-20210711-132258.mp4 6.13_21228_treechop-984393664dfd-20210924-162345.mp4\r\n6.11_190_Player162-23407cc7ad45-20210711-132808.mp4 6.13_21229_treechop-984393664dfd-20210924-162445.mp4\r\n6.11_191_Player162-23407cc7ad45-20210711-133314.mp4 6.13_2122_Player180-f153ac423f61-20211011-210029.mp4\r\n6.11_192_Player162-23407cc7ad45-20210711-133825.mp4 6.13_21230_treechop-984393664dfd-20210924-162546.mp4\r\n6.11_193_Player162-23407cc7ad45-20210711-134340.mp4 6.13_21231_treechop-984393664dfd-20210924-162647.mp4\r\n6.11_194_Player162-23407cc7ad45-20210711-134850.mp4 6.13_21232_treechop-984393664dfd-20210924-162747.mp4\r\n6.11_195_Player162-23407cc7ad45-20210711-135404.mp4 6.13_21233_treechop-984393664dfd-20210924-162848.mp4\r\n6.11_196_Player162-4f90bc9e8728-20210710-185828.mp4 6.13_21234_treechop-984393664dfd-20210924-162949.mp4\r\n6.11_197_Player162-4f90bc9e8728-20210710-190346.mp4 6.13_21235_treechop-984393664dfd-20210924-163050.mp4\r\n6.11_198_Player162-4f90bc9e8728-20210710-190915.mp4 6.13_21236_treechop-984393664dfd-20210924-163151.mp4\r\n6.11_199_Player162-4f90bc9e8728-20210710-191427.mp4 6.13_21237_treechop-984393664dfd-20210924-163252.mp4\r\n6.11_200_Player162-4f90bc9e8728-20210710-192043.mp4 6.13_21238_treechop-984393664dfd-20210924-163354.mp4\r\n6.11_201_Player162-4f90bc9e8728-20210710-192638.mp4 6.13_21239_treechop-984393664dfd-20210924-163455.mp4\r\n6.11_202_Player162-539fe42908db-20210710-181439.mp4 6.13_2123_Player180-f153ac423f61-20211011-210148.mp4\r\n6.11_203_Player162-539fe42908db-20210710-182003.mp4 6.13_21240_treechop-984393664dfd-20210924-163557.mp4\r\n6.11_204_Player162-539fe42908db-20210710-182520.mp4 6.13_21241_treechop-984393664dfd-20210924-163658.mp4\r\n6.11_205_Player162-726426eecc67-20210710-164703.mp4 6.13_21242_treechop-984393664dfd-20210924-163759.mp4\r\n6.11_206_Player162-726426eecc67-20210710-165230.mp4 6.13_21243_treechop-984393664dfd-20210924-163900.mp4\r\n6.11_207_Player162-726426eecc67-20210710-165748.mp4 6.13_21244_treechop-984393664dfd-20210924-164012.mp4\r\n6.11_208_Player162-726426eecc67-20210710-170309.mp4 6.13_21245_treechop-984393664dfd-20210924-164113.mp4\r\n6.11_209_Player162-7605d7b822ff-20210710-173235.mp4 6.13_21246_treechop-984393664dfd-20210924-164213.mp4\r\n6.11_210_Player162-7df4a732929e-20210711-122012.mp4 6.13_21247_treechop-984393664dfd-20210924-164315.mp4\r\n6.11_211_Player162-86be64805057-20210710-163737.mp4 6.13_21248_treechop-984393664dfd-20210924-164415.mp4\r\n6.11_212_Player162-86be64805057-20210710-164251.mp4 6.13_21249_treechop-984393664dfd-20210924-164517.mp4\r\n6.11_213_Player162-930d9f6d591f-20210710-171057.mp4 6.13_2124_Player180-f153ac423f61-20211011-210316.mp4\r\n6.11_214_Player162-930d9f6d591f-20210710-171610.mp4 6.13_21250_treechop-984393664dfd-20210924-164618.mp4\r\n6.11_215_Player162-9a8ac3075e57-20210710-183149.mp4 6.13_21251_treechop-984393664dfd-20210924-164719.mp4\r\n6.11_216_Player162-9a8ac3075e57-20210710-183713.mp4 6.13_21252_treechop-984393664dfd-20210924-164820.mp4\r\n6.11_217_Player162-9a8ac3075e57-20210710-184230.mp4 6.13_21253_treechop-984393664dfd-20210924-164921.mp4\r\n6.11_218_Player162-9a8ac3075e57-20210710-184754.mp4 6.13_21254_treechop-984393664dfd-20210924-165022.mp4\r\n6.11_219_Player162-9a8ac3075e57-20210710-185305.mp4 6.13_21255_treechop-984393664dfd-20210924-165123.mp4\r\n6.11_220_Player162-ab634f32206d-20210711-121323.mp4 6.13_21256_treechop-984393664dfd-20210924-165224.mp4\r\n6.11_221_Player162-b9a8c160a761-20210711-113632.mp4 6.13_21257_treechop-984393664dfd-20210924-165326.mp4\r\n6.11_222_Player162-b9a8c160a761-20210711-114206.mp4 6.13_21258_treechop-984393664dfd-20210924-165427.mp4\r\n6.11_223_Player162-b9a8c160a761-20210711-114727.mp4 6.13_21259_treechop-984393664dfd-20210924-165528.mp4\r\n6.11_224_Player162-b9a8c160a761-20210711-115243.mp4 6.13_2125_Player180-f153ac423f61-20211011-210446.mp4\r\n6.11_225_Player162-b9a8c160a761-20210711-115811.mp4 6.13_21260_treechop-984393664dfd-20210924-165629.mp4\r\n6.11_226_Player162-b9a8c160a761-20210711-120324.mp4 6.13_21261_treechop-984393664dfd-20210924-165731.mp4\r\n6.11_227_Player162-b9a8c160a761-20210711-120834.mp4 6.13_21262_treechop-984393664dfd-20210924-165832.mp4\r\n6.11_228_Player162-c7eddeb2c2dd-20210710-183059.mp4 6.13_21263_treechop-984393664dfd-20210924-165932.mp4\r\n6.11_229_Player162-d03918d9afd4-20210711-121504.mp4 6.13_21264_treechop-984393664dfd-20210924-170035.mp4\r\n6.11_230_Player162-d28ba9e7dc57-20210710-192737.mp4 6.13_21265_treechop-984393664dfd-20210924-170136.mp4\r\n6.11_231_Player162-e5ffb228e477-20210710-163653.mp4 6.13_21266_treechop-984393664dfd-20210924-170236.mp4\r\n6.11_232_Player162-f153ac423f61-20210710-162316.mp4 6.13_21267_treechop-984393664dfd-20210924-170338.mp4\r\n6.11_233_Player162-f153ac423f61-20210710-162838.mp4 6.13_21268_treechop-984393664dfd-20210924-170439.mp4\r\n6.11_234_Player162-f153ac423f61-20210710-163405.mp4 6.13_21269_treechop-984393664dfd-20210924-170540.mp4\r\n6.11_235_Player162-f9292c4c4fe9-20210710-173607.mp4 6.13_2126_Player180-f153ac423f61-20211011-210612.mp4\r\n6.11_236_Player162-f9292c4c4fe9-20210710-174124.mp4 6.13_21270_treechop-984393664dfd-20210924-170641.mp4\r\n6.11_237_Player162-f9292c4c4fe9-20210710-174638.mp4 6.13_21271_treechop-984393664dfd-20210924-170742.mp4\r\n6.11_238_Player166-f153ac423f61-20210702-224630.mp4 6.13_21272_treechop-984393664dfd-20210924-170843.mp4\r\n6.11_239_Player166-f153ac423f61-20210702-225246.mp4 6.13_21273_treechop-984393664dfd-20210924-170945.mp4\r\n6.11_240_Player166-f153ac423f61-20210702-225924.mp4 6.13_21274_treechop-984393664dfd-20210924-171046.mp4\r\n6.11_241_Player166-f153ac423f61-20210702-230527.mp4 6.13_21275_treechop-984393664dfd-20210924-171147.mp4\r\n6.11_242_Player166-f153ac423f61-20210702-231123.mp4 6.13_21276_treechop-984393664dfd-20210924-171248.mp4\r\n6.11_243_Player167-f153ac423f61-20210719-180740.mp4 6.13_21277_treechop-984393664dfd-20210924-171349.mp4\r\n6.11_244_Player167-f153ac423f61-20210719-181438.mp4 6.13_21278_treechop-984393664dfd-20210924-171451.mp4\r\n6.11_245_Player167-f153ac423f61-20210719-182153.mp4 6.13_21279_treechop-984393664dfd-20210924-171551.mp4\r\n6.11_246_Player170-f153ac423f61-20210718-001556.mp4 6.13_2127_Player180-f153ac423f61-20211011-210736.mp4\r\n6.11_247_Player170-f153ac423f61-20210718-002233.mp4 6.13_21280_treechop-984393664dfd-20210924-171652.mp4\r\n6.11_248_Player170-f153ac423f61-20210718-003018.mp4 6.13_21281_treechop-984393664dfd-20210924-171753.mp4\r\n6.11_249_Player170-f153ac423f61-20210718-003644.mp4 6.13_21282_treechop-984393664dfd-20210924-171854.mp4\r\n6.11_250_Player170-f153ac423f61-20210718-004319.mp4 6.13_21283_treechop-984393664dfd-20210924-171955.mp4\r\n6.11_251_Player170-f153ac423f61-20210718-005031.mp4 6.13_21284_treechop-984393664dfd-20210924-172056.mp4\r\n6.11_252_Player170-f153ac423f61-20210718-005743.mp4 6.13_21285_treechop-984393664dfd-20210924-172158.mp4\r\n6.11_253_Player170-f153ac423f61-20210718-010510.mp4 6.13_21286_treechop-984393664dfd-20210924-172258.mp4\r\n6.11_254_Player171-f153ac423f61-20210708-122007.mp4 6.13_21287_treechop-984393664dfd-20210924-172359.mp4\r\n6.11_255_Player171-f153ac423f61-20210708-122512.mp4 6.13_21288_treechop-984393664dfd-20210924-172459.mp4\r\n6.11_256_Player171-f153ac423f61-20210708-123024.mp4 6.13_21289_treechop-984393664dfd-20210924-172601.mp4\r\n6.11_257_Player171-f153ac423f61-20210708-123639.mp4 6.13_2128_Player180-f153ac423f61-20211011-210858.mp4\r\n6.11_258_Player171-f153ac423f61-20210708-124142.mp4 6.13_21290_treechop-984393664dfd-20210924-172701.mp4\r\n6.11_259_Player171-f153ac423f61-20210708-124742.mp4 6.13_21291_treechop-984393664dfd-20210924-172803.mp4\r\n6.11_260_Player171-f153ac423f61-20210708-125318.mp4 6.13_21292_treechop-984393664dfd-20210924-172905.mp4\r\n6.11_261_Player171-f153ac423f61-20210708-125850.mp4 6.13_21293_treechop-984393664dfd-20210924-173006.mp4\r\n6.11_262_Player171-f153ac423f61-20210708-130413.mp4 6.13_21294_treechop-984393664dfd-20210924-173107.mp4\r\n6.11_263_Player171-f153ac423f61-20210708-130936.mp4 6.13_21295_treechop-984393664dfd-20210924-173209.mp4\r\n6.11_264_Player171-f153ac423f61-20210708-131437.mp4 6.13_21296_treechop-984393664dfd-20210924-173310.mp4\r\n6.11_265_Player171-f153ac423f61-20210708-131939.mp4 6.13_21297_treechop-984393664dfd-20210924-173412.mp4\r\n6.11_266_Player171-f153ac423f61-20210708-132439.mp4 6.13_21298_treechop-984393664dfd-20210924-173514.mp4\r\n6.11_267_Player171-f153ac423f61-20210708-132944.mp4 6.13_21299_treechop-984393664dfd-20210924-173616.mp4\r\n6.11_268_Player171-f153ac423f61-20210708-133505.mp4 6.13_2129_Player180-f153ac423f61-20211011-211025.mp4\r\n6.11_269_Player171-f153ac423f61-20210708-134020.mp4 6.13_212_Player107-f153ac423f61-20210811-125205.mp4\r\n6.11_270_Player171-f153ac423f61-20210708-134545.mp4 6.13_21300_treechop-984393664dfd-20210924-173719.mp4\r\n6.11_271_Player171-f153ac423f61-20210708-135118.mp4 6.13_21301_treechop-984393664dfd-20210924-173821.mp4\r\n6.11_272_Player196-f153ac423f61-20210711-112002.mp4 6.13_21302_treechop-984393664dfd-20210924-173922.mp4\r\n6.11_273_Player196-f153ac423f61-20210711-112700.mp4 6.13_21303_treechop-984393664dfd-20210924-174023.mp4\r\n6.11_274_Player196-f153ac423f61-20210711-113412.mp4 6.13_21304_treechop-984393664dfd-20210924-174124.mp4\r\n6.11_275_Player196-f153ac423f61-20210711-114053.mp4 6.13_21305_treechop-984393664dfd-20210924-174225.mp4\r\n6.11_276_Player196-f153ac423f61-20210711-114617.mp4 6.13_21306_treechop-984393664dfd-20210924-174326.mp4\r\n6.11_277_Player196-f153ac423f61-20210711-115151.mp4 6.13_21307_treechop-984393664dfd-20210924-174427.mp4\r\n6.11_278_Player196-f153ac423f61-20210711-115738.mp4 6.13_21308_treechop-984393664dfd-20210924-174528.mp4\r\n6.11_279_Player196-f153ac423f61-20210711-120321.mp4 6.13_21309_treechop-984393664dfd-20210924-174630.mp4\r\n6.11_280_Player196-f153ac423f61-20210711-120948.mp4 6.13_2130_Player180-f153ac423f61-20211011-211149.mp4\r\n6.11_281_Player196-f153ac423f61-20210711-121557.mp4 6.13_21310_treechop-984393664dfd-20210924-174733.mp4\r\n6.11_282_Player196-f153ac423f61-20210711-122130.mp4 6.13_21311_treechop-984393664dfd-20210924-174834.mp4\r\n6.11_283_Player196-f153ac423f61-20210711-122702.mp4 6.13_21312_treechop-984393664dfd-20210924-174936.mp4\r\n6.11_284_Player196-f153ac423f61-20210711-123230.mp4 6.13_21313_treechop-984393664dfd-20210924-175038.mp4\r\n6.11_285_Player2-f153ac423f61-20210705-103651.mp4 6.13_21314_treechop-984393664dfd-20210924-175140.mp4\r\n6.11_286_Player2-f153ac423f61-20210705-104203.mp4 6.13_21315_treechop-984393664dfd-20210924-175241.mp4\r\n6.11_287_Player2-f153ac423f61-20210705-104713.mp4 6.13_21316_treechop-984393664dfd-20210924-175342.mp4\r\n6.11_288_Player2-f153ac423f61-20210705-105235.mp4 6.13_21317_treechop-984393664dfd-20210924-175442.mp4\r\n6.11_289_Player2-f153ac423f61-20210705-110559.mp4 6.13_21318_treechop-984393664dfd-20210924-175543.mp4\r\n6.11_290_Player2-f153ac423f61-20210705-111315.mp4 6.13_21319_treechop-984393664dfd-20210924-175644.mp4\r\n6.11_291_Player2-f153ac423f61-20210705-111917.mp4 6.13_2131_Player182-f153ac423f61-20211224-192807.mp4\r\n6.11_292_Player2-f153ac423f61-20210705-112655.mp4 6.13_21320_treechop-984393664dfd-20210924-175744.mp4\r\n6.11_293_Player2-f153ac423f61-20210705-113351.mp4 6.13_21321_treechop-984393664dfd-20210924-175845.mp4\r\n6.11_294_Player2-f153ac423f61-20210705-114112.mp4 6.13_21322_treechop-984393664dfd-20210924-175946.mp4\r\n6.11_295_Player2-f153ac423f61-20210705-114723.mp4 6.13_21323_treechop-984393664dfd-20210924-180047.mp4\r\n6.11_296_Player209-648849016346-20210706-092841.mp4 6.13_21324_treechop-984393664dfd-20210924-180149.mp4\r\n6.11_297_Player209-648849016346-20210706-094343.mp4 6.13_21325_treechop-984393664dfd-20210924-180250.mp4\r\n6.11_298_Player209-648849016346-20210706-095845.mp4 6.13_21326_treechop-984393664dfd-20210924-180352.mp4\r\n6.11_299_Player209-648849016346-20210706-101350.mp4 6.13_21327_treechop-984393664dfd-20210924-180453.mp4\r\n6.11_300_Player209-c2f4b926d030-20210706-151834.mp4 6.13_21328_treechop-984393664dfd-20210924-180554.mp4\r\n6.11_301_Player209-c2f4b926d030-20210706-153343.mp4 6.13_21329_treechop-984393664dfd-20210924-180655.mp4\r\n6.11_302_Player209-c2f4b926d030-20210706-154848.mp4 6.13_2132_Player182-f153ac423f61-20211224-194221.mp4\r\n6.11_303_Player209-c2f4b926d030-20210706-160403.mp4 6.13_21330_treechop-99f29b959a67-20210917-222757.mp4\r\n6.11_304_Player209-c2f4b926d030-20210706-161911.mp4 6.13_21331_treechop-d6288aaaa8f7-20210906-005427.mp4\r\n6.11_305_Player209-c2f4b926d030-20210706-163421.mp4 6.13_21332_treechop-d6288aaaa8f7-20210906-005528.mp4\r\n6.11_306_Player209-c2f4b926d030-20210706-164929.mp4 6.13_21333_treechop-d6288aaaa8f7-20210906-005630.mp4\r\n6.11_307_Player209-c2f4b926d030-20210706-170437.mp4 6.13_21334_treechop-d6288aaaa8f7-20210906-005731.mp4\r\n6.11_308_Player209-c2f4b926d030-20210706-172457.mp4 6.13_21335_treechop-d6288aaaa8f7-20210906-005832.mp4\r\n6.11_309_Player209-f153ac423f61-20210706-085414.mp4 6.13_21336_treechop-d6288aaaa8f7-20210906-005934.mp4\r\n6.11_310_Player209-f153ac423f61-20210706-090939.mp4 6.13_21337_treechop-d6288aaaa8f7-20210906-010035.mp4\r\n6.11_311_Player209-f8a118162c8a-20210706-103059.mp4 6.13_21338_treechop-d6288aaaa8f7-20210906-010136.mp4\r\n6.11_312_Player209-f8a118162c8a-20210706-104611.mp4 6.13_21339_treechop-d6288aaaa8f7-20210906-010238.mp4\r\n6.11_313_Player209-f8a118162c8a-20210706-110126.mp4 6.13_2133_Player182-f153ac423f61-20211224-195534.mp4\r\n6.11_314_Player209-f8a118162c8a-20210706-111633.mp4 6.13_21340_treechop-d6288aaaa8f7-20210906-010339.mp4\r\n6.11_315_Player209-f8a118162c8a-20210706-113136.mp4 6.13_21341_treechop-d6288aaaa8f7-20210906-010441.mp4\r\n6.11_316_Player209-f8a118162c8a-20210706-114640.mp4 6.13_21342_treechop-d6288aaaa8f7-20210906-010542.mp4\r\n6.11_317_Player209-f8a118162c8a-20210706-120152.mp4 6.13_21343_treechop-d6288aaaa8f7-20210906-010644.mp4\r\n6.11_318_Player209-f8a118162c8a-20210706-121659.mp4 6.13_21344_treechop-d6288aaaa8f7-20210906-010745.mp4\r\n6.11_319_Player209-f8a118162c8a-20210706-123205.mp4 6.13_21345_treechop-d6288aaaa8f7-20210906-010848.mp4\r\n6.11_320_Player209-f8a118162c8a-20210706-124704.mp4 6.13_21346_treechop-d6288aaaa8f7-20210906-010949.mp4\r\n6.11_321_Player209-f8a118162c8a-20210706-130214.mp4 6.13_21347_treechop-d6288aaaa8f7-20210906-011051.mp4\r\n6.11_322_Player209-f8a118162c8a-20210706-131722.mp4 6.13_21348_treechop-d6288aaaa8f7-20210906-011153.mp4\r\n6.11_323_Player209-f8a118162c8a-20210706-133231.mp4 6.13_21349_treechop-d6288aaaa8f7-20210906-011254.mp4\r\n6.11_324_Player209-f8a118162c8a-20210706-134738.mp4 6.13_2134_Player186-f153ac423f61-20211008-215426.mp4\r\n6.11_325_Player209-f8a118162c8a-20210706-140249.mp4 6.13_21350_treechop-d6288aaaa8f7-20210906-011355.mp4\r\n6.11_326_Player257-f153ac423f61-20210705-215024.mp4 6.13_21351_treechop-d6288aaaa8f7-20210906-011456.mp4\r\n6.11_327_Player257-f153ac423f61-20210705-215550.mp4 6.13_21352_treechop-d6288aaaa8f7-20210906-011556.mp4\r\n6.11_328_Player257-f153ac423f61-20210705-220134.mp4 6.13_21353_treechop-d6288aaaa8f7-20210906-011657.mp4\r\n6.11_329_Player257-f153ac423f61-20210705-220701.mp4 6.13_21354_treechop-d6288aaaa8f7-20210906-011758.mp4\r\n6.11_330_Player257-f153ac423f61-20210705-221240.mp4 6.13_21355_treechop-d6288aaaa8f7-20210906-011900.mp4\r\n6.11_331_Player257-f153ac423f61-20210705-221852.mp4 6.13_21356_treechop-d6288aaaa8f7-20210906-012001.mp4\r\n6.11_332_Player257-f153ac423f61-20210705-222433.mp4 6.13_21357_treechop-d6288aaaa8f7-20210906-012102.mp4\r\n6.11_333_Player257-f153ac423f61-20210705-223040.mp4 6.13_21358_treechop-d6288aaaa8f7-20210906-012204.mp4\r\n6.11_334_Player257-f153ac423f61-20210705-223624.mp4 6.13_21359_treechop-d6288aaaa8f7-20210906-012305.mp4\r\n6.11_335_Player257-f153ac423f61-20210705-224202.mp4 6.13_2135_Player186-f153ac423f61-20211008-220415.mp4\r\n6.11_336_Player259-f153ac423f61-20210710-005105.mp4 6.13_21360_treechop-d6288aaaa8f7-20210906-012406.mp4\r\n6.11_337_Player259-f153ac423f61-20210710-010723.mp4 6.13_21361_treechop-db601ab443fe-20210912-184241.mp4\r\n6.11_338_Player259-f153ac423f61-20210710-012736.mp4 6.13_21362_treechop-db601ab443fe-20210912-184358.mp4\r\n6.11_339_Player259-f153ac423f61-20210710-014828.mp4 6.13_21363_treechop-db601ab443fe-20210912-184507.mp4\r\n6.11_340_Player259-f153ac423f61-20210710-020418.mp4 6.13_21364_treechop-db601ab443fe-20210912-184612.mp4\r\n6.11_341_Player262-2867d2659213-20210715-234925.mp4 6.13_21365_treechop-db601ab443fe-20210912-184722.mp4\r\n6.11_342_Player262-be7c9cdea040-20210715-234327.mp4 6.13_21366_treechop-db601ab443fe-20210912-184832.mp4\r\n6.11_343_Player262-c09e7355c337-20210716-000724.mp4 6.13_21367_treechop-db601ab443fe-20210912-184943.mp4\r\n6.11_344_Player262-c09e7355c337-20210716-001223.mp4 6.13_21368_treechop-db601ab443fe-20210912-185049.mp4\r\n6.11_345_Player262-c09e7355c337-20210716-001722.mp4 6.13_21369_treechop-db601ab443fe-20210912-185159.mp4\r\n6.11_346_Player262-c09e7355c337-20210716-002220.mp4 6.13_2136_Player186-f153ac423f61-20211008-222303.mp4\r\n6.11_347_Player262-c09e7355c337-20210716-002718.mp4 6.13_21370_treechop-f153ac423f61-20210904-125049.mp4\r\n6.11_348_Player262-c09e7355c337-20210716-003217.mp4 6.13_21371_treechop-f153ac423f61-20210904-125154.mp4\r\n6.11_349_Player262-c09e7355c337-20210716-003716.mp4 6.13_21372_treechop-f153ac423f61-20210904-125255.mp4\r\n6.11_350_Player262-c09e7355c337-20210716-004215.mp4 6.13_21373_treechop-f153ac423f61-20210904-125355.mp4\r\n6.11_351_Player262-c09e7355c337-20210716-004714.mp4 6.13_21374_treechop-f153ac423f61-20210904-125456.mp4\r\n6.11_352_Player262-c09e7355c337-20210716-005212.mp4 6.13_21375_treechop-f153ac423f61-20210904-125558.mp4\r\n6.11_353_Player262-c09e7355c337-20210716-005710.mp4 6.13_21376_treechop-f153ac423f61-20210904-125700.mp4\r\n6.11_354_Player262-c09e7355c337-20210716-010209.mp4 6.13_21377_treechop-f153ac423f61-20210904-125802.mp4\r\n6.11_355_Player262-c09e7355c337-20210716-010707.mp4 6.13_21378_treechop-f153ac423f61-20210904-125903.mp4\r\n6.11_356_Player262-c09e7355c337-20210716-011206.mp4 6.13_21379_treechop-f153ac423f61-20210904-130005.mp4\r\n6.11_357_Player262-db3ac3a72663-20210715-235534.mp4 6.13_2137_Player186-f153ac423f61-20211008-223800.mp4\r\n6.11_358_Player262-db3ac3a72663-20210716-000033.mp4 6.13_21380_treechop-f153ac423f61-20210904-130106.mp4\r\n6.11_359_Player262-db3ac3a72663-20210716-000531.mp4 6.13_21381_treechop-f153ac423f61-20210904-130207.mp4\r\n6.11_360_Player262-f153ac423f61-20210715-233358.mp4 6.13_21382_treechop-f153ac423f61-20210904-130309.mp4\r\n6.11_361_Player262-f153ac423f61-20210715-233902.mp4 6.13_21383_treechop-f153ac423f61-20210904-130409.mp4\r\n6.11_362_Player262-fbab91572066-20210715-234200.mp4 6.13_21384_treechop-f153ac423f61-20210904-130511.mp4\r\n6.11_363_Player270-f153ac423f61-20210713-163928.mp4 6.13_21385_treechop-f153ac423f61-20210904-130612.mp4\r\n6.11_364_Player270-f153ac423f61-20210713-164543.mp4 6.13_21386_treechop-f153ac423f61-20210904-130713.mp4\r\n6.11_365_Player270-f153ac423f61-20210713-165149.mp4 6.13_21387_treechop-f153ac423f61-20210904-130814.mp4\r\n6.11_366_Player270-f153ac423f61-20210713-165720.mp4 6.13_21388_treechop-f153ac423f61-20210904-130916.mp4\r\n6.11_367_Player270-f153ac423f61-20210713-170846.mp4 6.13_21389_treechop-f153ac423f61-20210904-131016.mp4\r\n6.11_368_Player270-f153ac423f61-20210713-172112.mp4 6.13_2138_Player188-f153ac423f61-20210729-152312.mp4\r\n6.11_369_Player270-f153ac423f61-20210713-172716.mp4 6.13_21390_treechop-f153ac423f61-20210904-131118.mp4\r\n6.11_370_Player270-f153ac423f61-20210713-173345.mp4 6.13_21391_treechop-f153ac423f61-20210904-131219.mp4\r\n6.11_371_Player274-f153ac423f61-20210708-160003.mp4 6.13_21392_treechop-f153ac423f61-20210904-131421.mp4\r\n6.11_372_Player274-f153ac423f61-20210708-161519.mp4 6.13_21393_treechop-f153ac423f61-20210904-131623.mp4\r\n6.11_373_Player274-f153ac423f61-20210708-163023.mp4 6.13_21394_treechop-f153ac423f61-20210904-131724.mp4\r\n6.11_374_Player274-f153ac423f61-20210708-164530.mp4 6.13_21395_treechop-f153ac423f61-20210904-131927.mp4\r\n6.11_375_Player274-f153ac423f61-20210708-170036.mp4 6.13_21396_treechop-f153ac423f61-20210904-132128.mp4\r\n6.11_376_Player274-f153ac423f61-20210708-171551.mp4 6.13_21397_treechop-f153ac423f61-20210904-132230.mp4\r\n6.11_377_Player274-f153ac423f61-20210708-173100.mp4 6.13_21398_treechop-f153ac423f61-20210904-132333.mp4\r\n6.11_378_Player274-f153ac423f61-20210708-174610.mp4 6.13_21399_treechop-f153ac423f61-20210904-132434.mp4\r\n6.11_379_Player274-f153ac423f61-20210708-180119.mp4 6.13_2139_Player188-f153ac423f61-20210729-152418.mp4\r\n6.11_380_Player277-f153ac423f61-20210703-134746.mp4 6.13_213_Player107-f153ac423f61-20211204-155512.mp4\r\n6.11_381_Player277-f153ac423f61-20210703-135312.mp4 6.13_21400_treechop-f153ac423f61-20210904-132535.mp4\r\n6.11_382_Player277-f153ac423f61-20210703-135840.mp4 6.13_21401_treechop-f153ac423f61-20210904-132636.mp4\r\n6.11_383_Player277-f153ac423f61-20210703-140406.mp4 6.13_21402_treechop-f153ac423f61-20210904-132737.mp4\r\n6.11_384_Player293-f153ac423f61-20210708-160523.mp4 6.13_21403_treechop-f153ac423f61-20210904-175258.mp4\r\n6.11_385_Player293-f153ac423f61-20210708-161131.mp4 6.13_21404_treechop-f153ac423f61-20210904-220806.mp4\r\n6.11_386_Player293-f153ac423f61-20210708-161757.mp4 6.13_21405_treechop-f153ac423f61-20210904-221034.mp4\r\n6.11_387_Player293-f153ac423f61-20210708-162502.mp4 6.13_21406_treechop-f153ac423f61-20210904-221138.mp4\r\n6.11_388_Player293-f153ac423f61-20210708-163219.mp4 6.13_21407_treechop-f153ac423f61-20210904-221340.mp4\r\n6.11_389_Player293-f153ac423f61-20210708-163943.mp4 6.13_21408_treechop-f153ac423f61-20210904-221404.mp4\r\n6.11_390_Player293-f153ac423f61-20210708-164709.mp4 6.13_21409_treechop-f153ac423f61-20210904-221441.mp4\r\n6.11_391_Player306-b1737c1b67e1-20210715-130444.mp4 6.13_2140_Player188-f153ac423f61-20210729-152525.mp4\r\n6.11_392_Player306-f153ac423f61-20210715-123414.mp4 6.13_21410_treechop-f153ac423f61-20210904-221542.mp4\r\n6.11_393_Player306-f153ac423f61-20210715-123918.mp4 6.13_21411_treechop-f153ac423f61-20210904-221642.mp4\r\n6.11_394_Player306-f153ac423f61-20210715-124418.mp4 6.13_21412_treechop-f153ac423f61-20210904-221743.mp4\r\n6.11_395_Player306-f153ac423f61-20210715-124916.mp4 6.13_21413_treechop-f153ac423f61-20210904-221845.mp4\r\n6.11_396_Player306-f153ac423f61-20210715-125414.mp4 6.13_21414_treechop-f153ac423f61-20210904-221946.mp4\r\n6.11_397_Player306-f153ac423f61-20210715-125913.mp4 6.13_21415_treechop-f153ac423f61-20210904-222047.mp4\r\n6.11_398_Player306-f153ac423f61-20210715-130411.mp4 6.13_21416_treechop-f153ac423f61-20210904-222150.mp4\r\n6.11_399_Player315-f153ac423f61-20210705-202502.mp4 6.13_21417_treechop-f153ac423f61-20210904-222223.mp4\r\n6.11_400_Player315-f153ac423f61-20210705-203213.mp4 6.13_21418_treechop-f153ac423f61-20210904-222253.mp4\r\n6.11_401_Player315-f153ac423f61-20210705-203919.mp4 6.13_21419_treechop-f153ac423f61-20210904-222354.mp4\r\n6.11_402_Player315-f153ac423f61-20210705-204512.mp4 6.13_2141_Player188-f153ac423f61-20210729-152643.mp4\r\n6.11_403_Player315-f153ac423f61-20210705-205153.mp4 6.13_21420_treechop-f153ac423f61-20210904-222556.mp4\r\n6.11_404_Player32-f153ac423f61-20210702-102425.mp4 6.13_21421_treechop-f153ac423f61-20210904-222758.mp4\r\n6.11_405_Player32-f153ac423f61-20210702-102944.mp4 6.13_21422_treechop-f153ac423f61-20210904-222859.mp4\r\n6.11_406_Player32-f153ac423f61-20210702-103445.mp4 6.13_21423_treechop-f153ac423f61-20210904-223000.mp4\r\n6.11_407_Player32-f153ac423f61-20210702-103945.mp4 6.13_21424_treechop-f153ac423f61-20210904-223101.mp4\r\n6.11_408_Player32-f153ac423f61-20210702-104448.mp4 6.13_21425_treechop-f153ac423f61-20210904-223303.mp4\r\n6.11_409_Player32-f153ac423f61-20210702-104948.mp4 6.13_21426_treechop-f153ac423f61-20210904-223506.mp4\r\n6.11_410_Player32-f153ac423f61-20210702-105452.mp4 6.13_21427_treechop-f153ac423f61-20210904-223555.mp4\r\n6.11_411_Player32-f153ac423f61-20210702-105955.mp4 6.13_21428_treechop-f153ac423f61-20210904-223709.mp4\r\n6.11_412_Player32-f153ac423f61-20210702-110507.mp4 6.13_21429_treechop-f153ac423f61-20210904-224110.mp4\r\n6.11_413_Player32-f153ac423f61-20210702-111023.mp4 6.13_2142_Player188-f153ac423f61-20210729-152746.mp4\r\n6.11_414_Player32-f153ac423f61-20210702-111918.mp4 6.13_21430_treechop-f153ac423f61-20210904-224415.mp4\r\n6.11_415_Player32-f153ac423f61-20210702-112424.mp4 6.13_21431_treechop-f153ac423f61-20210904-224428.mp4\r\n6.11_416_Player32-f153ac423f61-20210702-112940.mp4 6.13_21432_treechop-f153ac423f61-20210904-224617.mp4\r\n6.11_417_Player32-f153ac423f61-20210702-113446.mp4 6.13_21433_treechop-f153ac423f61-20210904-224630.mp4\r\n6.11_418_Player32-f153ac423f61-20210702-113953.mp4 6.13_21434_treechop-f153ac423f61-20210904-224733.mp4\r\n6.11_419_Player32-f153ac423f61-20210702-114508.mp4 6.13_21435_treechop-f153ac423f61-20210904-224817.mp4\r\n6.11_420_Player32-f153ac423f61-20210702-115010.mp4 6.13_21436_treechop-f153ac423f61-20210904-224834.mp4\r\n6.11_421_Player32-f153ac423f61-20210702-115523.mp4 6.13_21437_treechop-f153ac423f61-20210904-224935.mp4\r\n6.11_422_Player32-f153ac423f61-20210702-120032.mp4 6.13_21438_treechop-f153ac423f61-20210904-225019.mp4\r\n6.11_423_Player32-f153ac423f61-20210702-120536.mp4 6.13_21439_treechop-f153ac423f61-20210904-225039.mp4\r\n6.11_424_Player320-f153ac423f61-20210704-144430.mp4 6.13_2143_Player188-f153ac423f61-20210729-152851.mp4\r\n6.11_425_Player320-f153ac423f61-20210704-145107.mp4 6.13_21440_treechop-f153ac423f61-20210904-225143.mp4\r\n6.11_426_Player320-f153ac423f61-20210704-145828.mp4 6.13_21441_treechop-f153ac423f61-20210904-225222.mp4\r\n6.11_427_Player320-f153ac423f61-20210704-150518.mp4 6.13_21442_treechop-f153ac423f61-20210904-225245.mp4\r\n6.11_428_Player320-f153ac423f61-20210704-151101.mp4 6.13_21443_treechop-f153ac423f61-20210904-225323.mp4\r\n6.11_429_Player320-f153ac423f61-20210704-151613.mp4 6.13_21444_treechop-f153ac423f61-20210904-225346.mp4\r\n6.11_430_Player320-f153ac423f61-20210704-152129.mp4 6.13_21445_treechop-f153ac423f61-20210904-225424.mp4\r\n6.11_431_Player320-f153ac423f61-20210704-152636.mp4 6.13_21446_treechop-f153ac423f61-20210904-225449.mp4\r\n6.11_432_Player320-f153ac423f61-20210704-153151.mp4 6.13_21447_treechop-f153ac423f61-20210904-225525.mp4\r\n6.11_433_Player340-108cd3ac06ec-20210721-174424.mp4 6.13_21448_treechop-f153ac423f61-20210904-225551.mp4\r\n6.11_434_Player340-185fd75c3eaf-20210723-150124.mp4 6.13_21449_treechop-f153ac423f61-20210904-225627.mp4\r\n6.11_435_Player340-185fd75c3eaf-20210723-150642.mp4 6.13_2144_Player188-f153ac423f61-20210729-152953.mp4\r\n6.11_436_Player340-185fd75c3eaf-20210723-151204.mp4 6.13_21450_treechop-f153ac423f61-20210904-225653.mp4\r\n6.11_437_Player340-185fd75c3eaf-20210723-151714.mp4 6.13_21451_treechop-f153ac423f61-20210904-225755.mp4\r\n6.11_438_Player340-185fd75c3eaf-20210723-152243.mp4 6.13_21452_treechop-f153ac423f61-20210904-225829.mp4\r\n6.11_439_Player340-185fd75c3eaf-20210723-152800.mp4 6.13_21453_treechop-f153ac423f61-20210904-225857.mp4\r\n6.11_440_Player340-185fd75c3eaf-20210723-153311.mp4 6.13_21454_treechop-f153ac423f61-20210904-225959.mp4\r\n6.11_441_Player340-185fd75c3eaf-20210723-153826.mp4 6.13_21455_treechop-f153ac423f61-20210904-230101.mp4\r\n6.11_442_Player340-185fd75c3eaf-20210723-154336.mp4 6.13_21456_treechop-f153ac423f61-20210904-230205.mp4\r\n6.11_443_Player340-1fc5ed18ecb2-20210722-163109.mp4 6.13_21457_treechop-f153ac423f61-20210904-230234.mp4\r\n6.11_444_Player340-1fc5ed18ecb2-20210722-163631.mp4 6.13_21458_treechop-f153ac423f61-20210904-230306.mp4\r\n6.11_445_Player340-1fc5ed18ecb2-20210722-164206.mp4 6.13_21459_treechop-f153ac423f61-20210904-230411.mp4\r\n6.11_446_Player340-3a2f486eca23-20210721-164650.mp4 6.13_2145_Player188-f153ac423f61-20210729-153056.mp4\r\n6.11_447_Player340-3a2f486eca23-20210721-165208.mp4 6.13_21460_treechop-f153ac423f61-20210904-230512.mp4\r\n6.11_448_Player340-3a2f486eca23-20210721-165731.mp4 6.13_21461_treechop-f153ac423f61-20210904-230615.mp4\r\n6.11_449_Player340-3a2f486eca23-20210721-170246.mp4 6.13_21462_treechop-f153ac423f61-20210904-230717.mp4\r\n6.11_450_Player340-3a2f486eca23-20210721-170805.mp4 6.13_21463_treechop-f153ac423f61-20210904-230819.mp4\r\n6.11_451_Player340-3a2f486eca23-20210721-171401.mp4 6.13_21464_treechop-f153ac423f61-20210904-230921.mp4\r\n6.11_452_Player340-3a2f486eca23-20210721-172252.mp4 6.13_21465_treechop-f153ac423f61-20210904-233912.mp4\r\n6.11_453_Player340-3ec3e8d99add-20210721-181455.mp4 6.13_21466_treechop-f153ac423f61-20210904-234014.mp4\r\n6.11_454_Player340-3ec3e8d99add-20210722-153744.mp4 6.13_21467_treechop-f153ac423f61-20210904-234116.mp4\r\n6.11_455_Player340-3ec3e8d99add-20210722-154301.mp4 6.13_21468_treechop-f153ac423f61-20210904-234217.mp4\r\n6.11_456_Player340-3ec3e8d99add-20210722-154817.mp4 6.13_21469_treechop-f153ac423f61-20210904-234318.mp4\r\n6.11_457_Player340-3ec3e8d99add-20210722-155337.mp4 6.13_2146_Player188-f153ac423f61-20210729-153158.mp4\r\n6.11_458_Player340-3ec3e8d99add-20210722-160518.mp4 6.13_21470_treechop-f153ac423f61-20210904-234419.mp4\r\n6.11_459_Player340-46b2d95703f7-20210721-181332.mp4 6.13_21471_treechop-f153ac423f61-20210904-234621.mp4\r\n6.11_460_Player340-659d5c9c05fc-20210722-160839.mp4 6.13_21472_treechop-f153ac423f61-20210904-234825.mp4\r\n6.11_461_Player340-66c7e817e1b4-20210723-181846.mp4 6.13_21473_treechop-f153ac423f61-20210904-234927.mp4\r\n6.11_462_Player340-66c7e817e1b4-20210723-182409.mp4 6.13_21474_treechop-f153ac423f61-20210904-235028.mp4\r\n6.11_463_Player340-66c7e817e1b4-20210723-182923.mp4 6.13_21475_treechop-f153ac423f61-20210904-235129.mp4\r\n6.11_464_Player340-66c7e817e1b4-20210723-183442.mp4 6.13_21476_treechop-f153ac423f61-20210904-235231.mp4\r\n6.11_465_Player340-66c7e817e1b4-20210723-185222.mp4 6.13_21477_treechop-f153ac423f61-20210904-235332.mp4\r\n6.11_466_Player340-66c7e817e1b4-20210723-185745.mp4 6.13_21478_treechop-f153ac423f61-20210904-235432.mp4\r\n6.11_467_Player340-66c7e817e1b4-20210723-190303.mp4 6.13_21479_treechop-f153ac423f61-20210904-235534.mp4\r\n6.11_468_Player340-66c7e817e1b4-20210723-190828.mp4 6.13_2147_Player188-f153ac423f61-20210729-153301.mp4\r\n6.11_469_Player340-66c7e817e1b4-20210723-191355.mp4 6.13_21480_treechop-f153ac423f61-20210904-235636.mp4\r\n6.11_470_Player340-66c7e817e1b4-20210723-191924.mp4 6.13_21481_treechop-f153ac423f61-20210904-235737.mp4\r\n6.11_471_Player340-66c7e817e1b4-20210724-172848.mp4 6.13_21482_treechop-f153ac423f61-20210904-235838.mp4\r\n6.11_472_Player340-66c7e817e1b4-20210724-173914.mp4 6.13_21483_treechop-f153ac423f61-20210904-235925.mp4\r\n6.11_473_Player340-66c7e817e1b4-20210724-174429.mp4 6.13_21484_treechop-f153ac423f61-20210904-235939.mp4\r\n6.11_474_Player340-66c7e817e1b4-20210724-174943.mp4 6.13_21485_treechop-f153ac423f61-20210905-000032.mp4\r\n6.11_475_Player340-66c7e817e1b4-20210724-175649.mp4 6.13_21486_treechop-f153ac423f61-20210905-000040.mp4\r\n6.11_476_Player340-681580a0b077-20210722-161009.mp4 6.13_21487_treechop-f153ac423f61-20210905-000134.mp4\r\n6.11_477_Player340-681580a0b077-20210722-161539.mp4 6.13_21488_treechop-f153ac423f61-20210905-000142.mp4\r\n6.11_478_Player340-681580a0b077-20210722-162051.mp4 6.13_21489_treechop-f153ac423f61-20210905-000237.mp4\r\n6.11_479_Player340-681580a0b077-20210722-162628.mp4 6.13_2148_Player188-f153ac423f61-20210729-153403.mp4\r\n6.11_480_Player340-81d7fea94862-20210723-142515.mp4 6.13_21490_treechop-f153ac423f61-20210905-000243.mp4\r\n6.11_481_Player340-81d7fea94862-20210723-143128.mp4 6.13_21491_treechop-f153ac423f61-20210905-000339.mp4\r\n6.11_482_Player340-81d7fea94862-20210723-145453.mp4 6.13_21492_treechop-f153ac423f61-20210905-000344.mp4\r\n6.11_483_Player340-81d7fea94862-20210723-150006.mp4 6.13_21493_treechop-f153ac423f61-20210905-000441.mp4\r\n6.11_484_Player340-83dd2732ee5a-20210724-180227.mp4 6.13_21494_treechop-f153ac423f61-20210905-000445.mp4\r\n6.11_485_Player340-83dd2732ee5a-20210724-181013.mp4 6.13_21495_treechop-f153ac423f61-20210905-000545.mp4\r\n6.11_486_Player340-860b537484d3-20210723-154500.mp4 6.13_21496_treechop-f153ac423f61-20210905-000546.mp4\r\n6.11_487_Player340-860b537484d3-20210723-155022.mp4 6.13_21497_treechop-f153ac423f61-20210905-000646.mp4\r\n6.11_488_Player340-860b537484d3-20210723-155706.mp4 6.13_21498_treechop-f153ac423f61-20210905-000647.mp4\r\n6.11_489_Player340-860b537484d3-20210723-160227.mp4 6.13_21499_treechop-f153ac423f61-20210905-000748.mp4\r\n6.11_490_Player340-860b537484d3-20210723-160738.mp4 6.13_2149_Player188-f153ac423f61-20210729-153505.mp4\r\n6.11_491_Player340-860b537484d3-20210723-161242.mp4 6.13_214_Player107-f153ac423f61-20211204-161654.mp4\r\n6.11_492_Player340-860b537484d3-20210723-174207.mp4 6.13_21500_treechop-f153ac423f61-20210905-000749.mp4\r\n6.11_493_Player340-860b537484d3-20210723-174712.mp4 6.13_21501_treechop-f153ac423f61-20210905-000850.mp4\r\n6.11_494_Player340-860b537484d3-20210723-175256.mp4 6.13_21502_treechop-f153ac423f61-20210905-000950.mp4\r\n6.11_495_Player340-860b537484d3-20210723-175821.mp4 6.13_21503_treechop-f153ac423f61-20210905-000953.mp4\r\n6.11_496_Player340-860b537484d3-20210723-180551.mp4 6.13_21504_treechop-f153ac423f61-20210905-001052.mp4\r\n6.11_497_Player340-8a8cca064ddc-20210721-164203.mp4 6.13_21505_treechop-f153ac423f61-20210905-001055.mp4\r\n6.11_498_Player340-90502d1f3464-20210724-181218.mp4 6.13_21506_treechop-f153ac423f61-20210905-001153.mp4\r\n6.11_499_Player340-90502d1f3464-20210724-181732.mp4 6.13_21507_treechop-f153ac423f61-20210905-001158.mp4\r\n6.11_500_Player340-907a0d8cae03-20210722-162854.mp4 6.13_21508_treechop-f153ac423f61-20210905-001255.mp4\r\n6.11_501_Player340-9bcc2c62c5ce-20210722-164906.mp4 6.13_21509_treechop-f153ac423f61-20210905-001303.mp4\r\n6.11_502_Player340-a50acb924ac7-20210720-182052.mp4 6.13_2150_Player188-f153ac423f61-20210729-153607.mp4\r\n6.11_503_Player340-aa14c580f747-20210724-181128.mp4 6.13_21510_treechop-f153ac423f61-20210905-001355.mp4\r\n6.11_504_Player340-aff2af78ca39-20210723-181628.mp4 6.13_21511_treechop-f153ac423f61-20210905-001431.mp4\r\n6.11_505_Player340-b64fc5da79d3-20210721-172759.mp4 6.13_21512_treechop-f153ac423f61-20210905-001457.mp4\r\n6.11_506_Player340-c595f2e1d58d-20210721-172932.mp4 6.13_21513_treechop-f153ac423f61-20210905-001558.mp4\r\n6.11_507_Player340-c595f2e1d58d-20210721-173455.mp4 6.13_21514_treechop-f153ac423f61-20210905-001602.mp4\r\n6.11_508_Player340-c595f2e1d58d-20210721-174335.mp4 6.13_21515_treechop-f153ac423f61-20210905-001659.mp4\r\n6.11_509_Player340-cd64f717619f-20210721-181246.mp4 6.13_21516_treechop-f153ac423f61-20210905-001729.mp4\r\n6.11_510_Player340-cfd70b3a891d-20210722-165027.mp4 6.13_21517_treechop-f153ac423f61-20210905-001800.mp4\r\n6.11_511_Player340-cfd70b3a891d-20210722-165545.mp4 6.13_21518_treechop-f153ac423f61-20210905-001852.mp4\r\n6.11_512_Player340-e37853a826d8-20210721-181158.mp4 6.13_21519_treechop-f153ac423f61-20210905-001901.mp4\r\n6.11_513_Player340-e82df6c148c2-20210723-181010.mp4 6.13_2151_Player188-f153ac423f61-20210729-153710.mp4\r\n6.11_514_Player340-ea256762d926-20210722-164637.mp4 6.13_21520_treechop-f153ac423f61-20210905-002001.mp4\r\n6.11_515_Player340-f68fd577b27c-20210722-170025.mp4 6.13_21521_treechop-f153ac423f61-20210905-002024.mp4\r\n6.11_516_Player340-fe743f2fc0bf-20210721-175040.mp4 6.13_21522_treechop-f153ac423f61-20210905-002101.mp4\r\n6.11_517_Player340-fe743f2fc0bf-20210721-175557.mp4 6.13_21523_treechop-f153ac423f61-20210905-002138.mp4\r\n6.11_518_Player340-fe743f2fc0bf-20210721-180334.mp4 6.13_21524_treechop-f153ac423f61-20210905-002202.mp4\r\n6.11_519_Player340-fe743f2fc0bf-20210721-180846.mp4 6.13_21525_treechop-f153ac423f61-20210905-002239.mp4\r\n6.11_520_Player344-1e0eeec342a9-20210717-002656.mp4 6.13_21526_treechop-f153ac423f61-20210905-002304.mp4\r\n6.11_521_Player344-f153ac423f61-20210716-225104.mp4 6.13_21527_treechop-f153ac423f61-20210905-002340.mp4\r\n6.11_522_Player345-f153ac423f61-20210708-000156.mp4 6.13_21528_treechop-f153ac423f61-20210905-002405.mp4\r\n6.11_523_Player345-f153ac423f61-20210708-001329.mp4 6.13_21529_treechop-f153ac423f61-20210905-002442.mp4\r\n6.11_524_Player370-f153ac423f61-20210712-101023.mp4 6.13_2152_Player188-f153ac423f61-20210729-153811.mp4\r\n6.11_525_Player370-f153ac423f61-20210712-101546.mp4 6.13_21530_treechop-f153ac423f61-20210905-002507.mp4\r\n6.11_526_Player370-f153ac423f61-20210712-102053.mp4 6.13_21531_treechop-f153ac423f61-20210905-002545.mp4\r\n6.11_527_Player370-f153ac423f61-20210712-102557.mp4 6.13_21532_treechop-f153ac423f61-20210905-002608.mp4\r\n6.11_528_Player370-f153ac423f61-20210712-103057.mp4 6.13_21533_treechop-f153ac423f61-20210905-002650.mp4\r\n6.11_529_Player370-f153ac423f61-20210712-103607.mp4 6.13_21534_treechop-f153ac423f61-20210905-002753.mp4\r\n6.11_530_Player370-f153ac423f61-20210712-104112.mp4 6.13_21535_treechop-f153ac423f61-20210905-002810.mp4\r\n6.11_531_Player370-f153ac423f61-20210712-104620.mp4 6.13_21536_treechop-f153ac423f61-20210905-002855.mp4\r\n6.11_532_Player370-f153ac423f61-20210712-105123.mp4 6.13_21537_treechop-f153ac423f61-20210905-002911.mp4\r\n6.11_533_Player370-f153ac423f61-20210712-105629.mp4 6.13_21538_treechop-f153ac423f61-20210905-002955.mp4\r\n6.11_534_Player370-f153ac423f61-20210712-110139.mp4 6.13_21539_treechop-f153ac423f61-20210905-003011.mp4\r\n6.11_535_Player370-f153ac423f61-20210712-110805.mp4 6.13_2153_Player188-f153ac423f61-20210729-153918.mp4\r\n6.11_536_Player370-f153ac423f61-20210712-111313.mp4 6.13_21540_treechop-f153ac423f61-20210905-003058.mp4\r\n6.11_537_Player370-f153ac423f61-20210712-111824.mp4 6.13_21541_treechop-f153ac423f61-20210905-003113.mp4\r\n6.11_538_Player370-f153ac423f61-20210712-112332.mp4 6.13_21542_treechop-f153ac423f61-20210905-003159.mp4\r\n6.11_539_Player370-f153ac423f61-20210712-112837.mp4 6.13_21543_treechop-f153ac423f61-20210905-003214.mp4\r\n6.11_540_Player370-f153ac423f61-20210712-113354.mp4 6.13_21544_treechop-f153ac423f61-20210905-003301.mp4\r\n6.11_541_Player370-f153ac423f61-20210712-113913.mp4 6.13_21545_treechop-f153ac423f61-20210905-003316.mp4\r\n6.11_542_Player370-f153ac423f61-20210712-114423.mp4 6.13_21546_treechop-f153ac423f61-20210905-003403.mp4\r\n6.11_543_Player370-f153ac423f61-20210712-114927.mp4 6.13_21547_treechop-f153ac423f61-20210905-003419.mp4\r\n6.11_544_Player370-f153ac423f61-20210712-115436.mp4 6.13_21548_treechop-f153ac423f61-20210905-003505.mp4\r\n6.11_545_Player370-f153ac423f61-20210712-115943.mp4 6.13_21549_treechop-f153ac423f61-20210905-003522.mp4\r\n6.11_546_Player370-f153ac423f61-20210712-120454.mp4 6.13_2154_Player188-f153ac423f61-20210729-154028.mp4\r\n6.11_547_Player370-f153ac423f61-20210712-121005.mp4 6.13_21550_treechop-f153ac423f61-20210905-003607.mp4\r\n6.11_548_Player373-704aa97ec779-20210713-165031.mp4 6.13_21551_treechop-f153ac423f61-20210905-003625.mp4\r\n6.11_549_Player373-704aa97ec779-20210713-165539.mp4 6.13_21552_treechop-f153ac423f61-20210905-003709.mp4\r\n6.11_550_Player373-704aa97ec779-20210713-170045.mp4 6.13_21553_treechop-f153ac423f61-20210905-003729.mp4\r\n6.11_551_Player373-704aa97ec779-20210713-170551.mp4 6.13_21554_treechop-f153ac423f61-20210905-003831.mp4\r\n6.11_552_Player373-704aa97ec779-20210713-171057.mp4 6.13_21555_treechop-f153ac423f61-20210905-003936.mp4\r\n6.11_553_Player373-c0a96943ced5-20210713-190603.mp4 6.13_21556_treechop-f153ac423f61-20210905-004039.mp4\r\n6.11_554_Player373-f153ac423f61-20210713-163713.mp4 6.13_21557_treechop-f153ac423f61-20210905-004141.mp4\r\n6.11_555_Player373-f153ac423f61-20210713-164235.mp4 6.13_21558_treechop-f153ac423f61-20210905-004244.mp4\r\n6.11_556_Player373-f153ac423f61-20210713-164742.mp4 6.13_21559_treechop-f153ac423f61-20210905-004345.mp4\r\n6.11_557_Player374-2f7d0b239146-20210716-161944.mp4 6.13_2155_Player188-f153ac423f61-20210729-154130.mp4\r\n6.11_558_Player374-2f7d0b239146-20210716-162446.mp4 6.13_21560_treechop-f153ac423f61-20210905-004446.mp4\r\n6.11_559_Player374-2f7d0b239146-20210716-162948.mp4 6.13_21561_treechop-f153ac423f61-20210905-004547.mp4\r\n6.11_560_Player374-36599a377af1-20210716-083804.mp4 6.13_21562_treechop-f153ac423f61-20210905-103440.mp4\r\n6.11_561_Player374-3e828199d9fe-20210716-132103.mp4 6.13_21563_treechop-f153ac423f61-20210905-104116.mp4\r\n6.11_562_Player374-3e828199d9fe-20210716-132606.mp4 6.13_21564_treechop-f153ac423f61-20210905-104132.mp4\r\n6.11_563_Player374-3e828199d9fe-20210716-133108.mp4 6.13_21565_treechop-f153ac423f61-20210905-104238.mp4\r\n6.11_564_Player374-3e828199d9fe-20210716-133616.mp4 6.13_21566_treechop-f153ac423f61-20210905-104341.mp4\r\n6.11_565_Player374-3e828199d9fe-20210716-134128.mp4 6.13_21567_treechop-f153ac423f61-20210905-104446.mp4\r\n6.11_566_Player374-3e828199d9fe-20210716-134636.mp4 6.13_21568_treechop-f153ac423f61-20210905-104547.mp4\r\n6.11_567_Player374-3e828199d9fe-20210716-135144.mp4 6.13_21569_treechop-f153ac423f61-20210905-104652.mp4\r\n6.11_568_Player374-3e828199d9fe-20210716-135650.mp4 6.13_2156_Player188-f153ac423f61-20210729-154233.mp4\r\n6.11_569_Player374-3e828199d9fe-20210716-140152.mp4 6.13_21570_treechop-f153ac423f61-20210905-104753.mp4\r\n6.11_570_Player374-3e828199d9fe-20210716-140654.mp4 6.13_21571_treechop-f153ac423f61-20210905-104855.mp4\r\n6.11_571_Player374-3e828199d9fe-20210716-141159.mp4 6.13_21572_treechop-f153ac423f61-20210905-104957.mp4\r\n6.11_572_Player374-3e828199d9fe-20210716-141706.mp4 6.13_21573_treechop-f153ac423f61-20210905-105022.mp4\r\n6.11_573_Player374-3e828199d9fe-20210716-142208.mp4 6.13_21574_treechop-f153ac423f61-20210905-105059.mp4\r\n6.11_574_Player374-3e828199d9fe-20210716-142711.mp4 6.13_21575_treechop-f153ac423f61-20210905-105203.mp4\r\n6.11_575_Player374-3e828199d9fe-20210716-143212.mp4 6.13_21576_treechop-f153ac423f61-20210905-105304.mp4\r\n6.11_576_Player374-3e828199d9fe-20210716-143715.mp4 6.13_21577_treechop-f153ac423f61-20210905-105453.mp4\r\n6.11_577_Player374-3e828199d9fe-20210716-144217.mp4 6.13_21578_treechop-f153ac423f61-20210905-105758.mp4\r\n6.11_578_Player374-3e828199d9fe-20210716-144721.mp4 6.13_21579_treechop-f153ac423f61-20210905-105859.mp4\r\n6.11_579_Player374-3e828199d9fe-20210716-145221.mp4 6.13_2157_Player188-f153ac423f61-20210729-154334.mp4\r\n6.11_580_Player374-3e828199d9fe-20210716-145722.mp4 6.13_21580_treechop-f153ac423f61-20210905-105924.mp4\r\n6.11_581_Player374-3e828199d9fe-20210716-150230.mp4 6.13_21581_treechop-f153ac423f61-20210905-110001.mp4\r\n6.11_582_Player374-3e828199d9fe-20210716-150731.mp4 6.13_21582_treechop-f153ac423f61-20210905-110103.mp4\r\n6.11_583_Player374-3e828199d9fe-20210716-151234.mp4 6.13_21583_treechop-f153ac423f61-20210905-110206.mp4\r\n6.11_584_Player374-3e828199d9fe-20210716-151735.mp4 6.13_21584_treechop-f153ac423f61-20210905-110309.mp4\r\n6.11_585_Player374-3e828199d9fe-20210716-152237.mp4 6.13_21585_treechop-f153ac423f61-20210905-110411.mp4\r\n6.11_586_Player374-3e828199d9fe-20210716-152738.mp4 6.13_21586_treechop-f153ac423f61-20210905-110512.mp4\r\n6.11_587_Player374-3e828199d9fe-20210716-153240.mp4 6.13_21587_treechop-f153ac423f61-20210905-110615.mp4\r\n6.11_588_Player374-3e828199d9fe-20210716-153742.mp4 6.13_21588_treechop-f153ac423f61-20210905-110701.mp4\r\n6.11_589_Player374-3e828199d9fe-20210716-154244.mp4 6.13_21589_treechop-f153ac423f61-20210905-110716.mp4\r\n6.11_590_Player374-3e828199d9fe-20210716-154746.mp4 6.13_2158_Player188-f153ac423f61-20210729-154436.mp4\r\n6.11_591_Player374-3e828199d9fe-20210716-155249.mp4 6.13_21590_treechop-f153ac423f61-20210905-110819.mp4\r\n6.11_592_Player374-3e828199d9fe-20210716-155755.mp4 6.13_21591_treechop-f153ac423f61-20210905-110920.mp4\r\n6.11_593_Player374-3e828199d9fe-20210716-160257.mp4 6.13_21592_treechop-f153ac423f61-20210905-111022.mp4\r\n6.11_594_Player374-3e828199d9fe-20210716-160757.mp4 6.13_21593_treechop-f153ac423f61-20210905-111125.mp4\r\n6.11_595_Player374-3e828199d9fe-20210716-161302.mp4 6.13_21594_treechop-f153ac423f61-20210905-111227.mp4\r\n6.11_596_Player374-560a9a629e91-20210716-103700.mp4 6.13_21595_treechop-f153ac423f61-20210905-111329.mp4\r\n6.11_597_Player374-560a9a629e91-20210716-105729.mp4 6.13_21596_treechop-f153ac423f61-20210905-111431.mp4\r\n6.11_598_Player374-560a9a629e91-20210716-111759.mp4 6.13_21597_treechop-f153ac423f61-20210905-111532.mp4\r\n6.11_599_Player374-560a9a629e91-20210716-113855.mp4 6.13_21598_treechop-f153ac423f61-20210905-111633.mp4\r\n6.11_600_Player374-685a0ea9bc07-20210716-101617.mp4 6.13_21599_treechop-f153ac423f61-20210905-111656.mp4\r\n6.11_601_Player374-6975ecb9e19d-20210716-061832.mp4 6.13_2159_Player188-f153ac423f61-20210729-154538.mp4\r\n6.11_602_Player374-6975ecb9e19d-20210716-063832.mp4 6.13_215_Player107-f153ac423f61-20211204-163819.mp4\r\n6.11_603_Player374-6975ecb9e19d-20210716-065904.mp4 6.13_21600_treechop-f153ac423f61-20210905-111734.mp4\r\n6.11_604_Player374-6975ecb9e19d-20210716-071920.mp4 6.13_21601_treechop-f153ac423f61-20210905-111837.mp4\r\n6.11_605_Player374-6975ecb9e19d-20210716-073957.mp4 6.13_21602_treechop-f153ac423f61-20210905-111938.mp4\r\n6.11_606_Player374-6975ecb9e19d-20210716-080044.mp4 6.13_21603_treechop-f153ac423f61-20210905-112040.mp4\r\n6.11_607_Player374-6975ecb9e19d-20210716-082140.mp4 6.13_21604_treechop-f153ac423f61-20210905-112142.mp4\r\n6.11_608_Player374-6976565f7c60-20210716-124325.mp4 6.13_21605_treechop-f153ac423f61-20210905-112244.mp4\r\n6.11_609_Player374-6976565f7c60-20210716-130454.mp4 6.13_21606_treechop-f153ac423f61-20210905-112346.mp4\r\n6.11_610_Player374-a6f9e8f74fdd-20210716-095640.mp4 6.13_21607_treechop-f153ac423f61-20210905-132042.mp4\r\n6.11_611_Player374-ccc1889ce8f1-20210716-164128.mp4 6.13_21608_treechop-f153ac423f61-20210905-132728.mp4\r\n6.11_612_Player374-ccc1889ce8f1-20210716-164627.mp4 6.13_21609_treechop-f153ac423f61-20210905-133816.mp4\r\n6.11_613_Player374-ccc1889ce8f1-20210716-165128.mp4 6.13_2160_Player188-f153ac423f61-20210729-154640.mp4\r\n6.11_614_Player374-ccc1889ce8f1-20210716-165630.mp4 6.13_21610_treechop-f153ac423f61-20210905-134730.mp4\r\n6.11_615_Player374-ccc1889ce8f1-20210716-170131.mp4 6.13_21611_treechop-f153ac423f61-20210905-135751.mp4\r\n6.11_616_Player374-ccc1889ce8f1-20210716-170630.mp4 6.13_21612_treechop-f153ac423f61-20210905-140809.mp4\r\n6.11_617_Player374-ccc1889ce8f1-20210716-171129.mp4 6.13_21613_treechop-f153ac423f61-20210905-152748.mp4\r\n6.11_618_Player374-ccc1889ce8f1-20210716-171630.mp4 6.13_21614_treechop-f153ac423f61-20210905-152854.mp4\r\n6.11_619_Player374-ccc1889ce8f1-20210716-172131.mp4 6.13_21615_treechop-f153ac423f61-20210905-152956.mp4\r\n6.11_620_Player374-ccc1889ce8f1-20210716-172630.mp4 6.13_21616_treechop-f153ac423f61-20210905-153057.mp4\r\n6.11_621_Player374-ccc1889ce8f1-20210716-173133.mp4 6.13_21617_treechop-f153ac423f61-20210905-153200.mp4\r\n6.11_622_Player374-ccc1889ce8f1-20210716-173637.mp4 6.13_21618_treechop-f153ac423f61-20210905-153302.mp4\r\n6.11_623_Player374-ccc1889ce8f1-20210716-174141.mp4 6.13_21619_treechop-f153ac423f61-20210905-153403.mp4\r\n6.11_624_Player374-ccc1889ce8f1-20210716-174643.mp4 6.13_2161_Player188-f153ac423f61-20210729-154741.mp4\r\n6.11_625_Player374-d2f7c2e9c02f-20210716-085601.mp4 6.13_21620_treechop-f153ac423f61-20210905-153505.mp4\r\n6.11_626_Player374-d2f7c2e9c02f-20210716-091601.mp4 6.13_21621_treechop-f153ac423f61-20210905-153607.mp4\r\n6.11_627_Player374-d2f7c2e9c02f-20210716-093620.mp4 6.13_21622_treechop-f153ac423f61-20210905-153709.mp4\r\n6.11_628_Player374-f153ac423f61-20210716-053833.mp4 6.13_21623_treechop-f153ac423f61-20210905-153810.mp4\r\n6.11_629_Player374-f153ac423f61-20210716-055854.mp4 6.13_21624_treechop-f153ac423f61-20210905-153911.mp4\r\n6.11_630_Player383-f153ac423f61-20210709-221351.mp4 6.13_21625_treechop-f153ac423f61-20210905-154013.mp4\r\n6.11_631_Player383-f153ac423f61-20210709-221903.mp4 6.13_21626_treechop-f153ac423f61-20210905-154114.mp4\r\n6.11_632_Player383-f153ac423f61-20210709-222438.mp4 6.13_21627_treechop-f153ac423f61-20210905-154215.mp4\r\n6.11_633_Player383-f153ac423f61-20210709-223029.mp4 6.13_21628_treechop-f153ac423f61-20210905-154316.mp4\r\n6.11_634_Player401-f153ac423f61-20210720-140225.mp4 6.13_21629_treechop-f153ac423f61-20210905-154418.mp4\r\n6.11_635_Player401-f153ac423f61-20210720-140920.mp4 6.13_2162_Player188-f153ac423f61-20210729-154843.mp4\r\n6.11_636_Player401-f153ac423f61-20210720-141505.mp4 6.13_21630_treechop-f153ac423f61-20210905-154519.mp4\r\n6.11_637_Player401-f153ac423f61-20210720-142059.mp4 6.13_21631_treechop-f153ac423f61-20210905-154620.mp4\r\n6.11_638_Player401-f153ac423f61-20210720-142630.mp4 6.13_21632_treechop-f153ac423f61-20210905-154721.mp4\r\n6.11_639_Player401-f153ac423f61-20210720-143138.mp4 6.13_21633_treechop-f153ac423f61-20210905-154823.mp4\r\n6.11_640_Player401-f153ac423f61-20210720-143654.mp4 6.13_21634_treechop-f153ac423f61-20210905-165319.mp4\r\n6.11_641_Player401-f153ac423f61-20210720-144312.mp4 6.13_21635_treechop-f153ac423f61-20210905-165425.mp4\r\n6.11_642_Player401-f153ac423f61-20210720-145121.mp4 6.13_21636_treechop-f153ac423f61-20210905-165527.mp4\r\n6.11_643_Player401-f153ac423f61-20210720-145648.mp4 6.13_21637_treechop-f153ac423f61-20210905-165628.mp4\r\n6.11_644_Player401-f153ac423f61-20210720-150313.mp4 6.13_21638_treechop-f153ac423f61-20210905-165729.mp4\r\n6.11_645_Player401-f153ac423f61-20210720-150905.mp4 6.13_21639_treechop-f153ac423f61-20210905-165831.mp4\r\n6.11_646_Player401-f153ac423f61-20210720-151439.mp4 6.13_2163_Player188-f153ac423f61-20210729-154944.mp4\r\n6.11_647_Player408-f153ac423f61-20210704-115821.mp4 6.13_21640_treechop-f153ac423f61-20210905-165933.mp4\r\n6.11_648_Player408-f153ac423f61-20210704-120505.mp4 6.13_21641_treechop-f153ac423f61-20210905-170035.mp4\r\n6.11_649_Player408-f153ac423f61-20210704-121155.mp4 6.13_21642_treechop-f153ac423f61-20210905-170138.mp4\r\n6.11_650_Player408-f153ac423f61-20210704-121907.mp4 6.13_21643_treechop-f153ac423f61-20210905-170239.mp4\r\n6.11_651_Player408-f153ac423f61-20210704-122639.mp4 6.13_21644_treechop-f153ac423f61-20210905-170341.mp4\r\n6.11_652_Player408-f153ac423f61-20210704-123401.mp4 6.13_21645_treechop-f153ac423f61-20210905-170443.mp4\r\n6.11_653_Player408-f153ac423f61-20210704-124109.mp4 6.13_21646_treechop-f153ac423f61-20210905-170545.mp4\r\n6.11_654_Player408-f153ac423f61-20210704-124753.mp4 6.13_21647_treechop-f153ac423f61-20210905-170647.mp4\r\n6.11_655_Player418-f153ac423f61-20210706-104010.mp4 6.13_21648_treechop-f153ac423f61-20210905-170748.mp4\r\n6.11_656_Player418-f153ac423f61-20210706-104551.mp4 6.13_21649_treechop-f153ac423f61-20210905-170849.mp4\r\n6.11_657_Player418-f153ac423f61-20210706-105150.mp4 6.13_2164_Player188-f153ac423f61-20210729-155046.mp4\r\n6.11_658_Player418-f153ac423f61-20210706-105656.mp4 6.13_21650_treechop-f153ac423f61-20210905-170950.mp4\r\n6.11_659_Player418-f153ac423f61-20210706-110232.mp4 6.13_21651_treechop-f153ac423f61-20210905-171052.mp4\r\n6.11_660_Player418-f153ac423f61-20210706-110801.mp4 6.13_21652_treechop-f153ac423f61-20210905-171153.mp4\r\n6.11_661_Player418-f153ac423f61-20210706-111332.mp4 6.13_21653_treechop-f153ac423f61-20210905-171254.mp4\r\n6.11_662_Player418-f153ac423f61-20210706-111834.mp4 6.13_21654_treechop-f153ac423f61-20210905-171356.mp4\r\n6.11_663_Player418-f153ac423f61-20210706-112334.mp4 6.13_21655_treechop-f153ac423f61-20210905-171457.mp4\r\n6.11_664_Player418-f153ac423f61-20210706-112837.mp4 6.13_21656_treechop-f153ac423f61-20210905-171558.mp4\r\n6.11_665_Player418-f153ac423f61-20210706-113342.mp4 6.13_21657_treechop-f153ac423f61-20210905-171659.mp4\r\n6.11_666_Player418-f153ac423f61-20210706-113842.mp4 6.13_21658_treechop-f153ac423f61-20210905-171801.mp4\r\n6.11_667_Player418-f153ac423f61-20210706-114343.mp4 6.13_21659_treechop-f153ac423f61-20210905-171903.mp4\r\n6.11_668_Player418-f153ac423f61-20210706-114854.mp4 6.13_2165_Player188-f153ac423f61-20210729-155148.mp4\r\n6.11_669_Player418-f153ac423f61-20210706-115451.mp4 6.13_21660_treechop-f153ac423f61-20210905-172005.mp4\r\n6.11_670_Player418-f153ac423f61-20210706-115958.mp4 6.13_21661_treechop-f153ac423f61-20210905-172107.mp4\r\n6.11_671_Player421-7f5a50c446a3-20210709-230341.mp4 6.13_21662_treechop-f153ac423f61-20210905-172207.mp4\r\n6.11_672_Player421-7f5a50c446a3-20210709-230850.mp4 6.13_21663_treechop-f153ac423f61-20210905-172308.mp4\r\n6.11_673_Player421-7f5a50c446a3-20210709-231410.mp4 6.13_21664_treechop-f153ac423f61-20210905-172408.mp4\r\n6.11_674_Player421-7f5a50c446a3-20210709-231924.mp4 6.13_21665_treechop-f153ac423f61-20210905-172510.mp4\r\n6.11_675_Player421-7f5a50c446a3-20210709-232451.mp4 6.13_21666_treechop-f153ac423f61-20210905-172611.mp4\r\n6.11_676_Player421-7f5a50c446a3-20210709-233034.mp4 6.13_21667_treechop-f153ac423f61-20210905-172712.mp4\r\n6.11_677_Player421-7f5a50c446a3-20210709-233633.mp4 6.13_21668_treechop-f153ac423f61-20210905-172814.mp4\r\n6.11_678_Player421-7f5a50c446a3-20210709-234219.mp4 6.13_21669_treechop-f153ac423f61-20210905-172916.mp4\r\n6.11_679_Player421-7f5a50c446a3-20210709-234847.mp4 6.13_2166_Player188-f153ac423f61-20210729-155249.mp4\r\n6.11_680_Player421-7f5a50c446a3-20210709-235548.mp4 6.13_21670_treechop-f153ac423f61-20210905-173018.mp4\r\n6.11_681_Player421-7f5a50c446a3-20210710-000237.mp4 6.13_21671_treechop-f153ac423f61-20210905-173119.mp4\r\n6.11_682_Player421-f153ac423f61-20210709-225229.mp4 6.13_21672_treechop-f153ac423f61-20210905-173221.mp4\r\n6.11_683_Player421-f153ac423f61-20210709-225805.mp4 6.13_21673_treechop-f153ac423f61-20210905-173322.mp4\r\n6.11_684_Player426-f153ac423f61-20210715-144228.mp4 6.13_21674_treechop-f153ac423f61-20210905-173426.mp4\r\n6.11_685_Player426-f153ac423f61-20210715-144728.mp4 6.13_21675_treechop-f153ac423f61-20210905-173528.mp4\r\n6.11_686_Player426-f153ac423f61-20210715-145227.mp4 6.13_21676_treechop-f153ac423f61-20210905-173636.mp4\r\n6.11_687_Player426-f153ac423f61-20210715-145726.mp4 6.13_21677_treechop-f153ac423f61-20210905-173748.mp4\r\n6.11_688_Player426-f153ac423f61-20210715-150225.mp4 6.13_21678_treechop-f153ac423f61-20210905-173851.mp4\r\n6.11_689_Player426-f153ac423f61-20210715-150724.mp4 6.13_21679_treechop-f153ac423f61-20210905-173952.mp4\r\n6.11_690_Player426-f153ac423f61-20210715-151223.mp4 6.13_2167_Player188-f153ac423f61-20210729-155351.mp4\r\n6.11_691_Player426-f153ac423f61-20210715-151722.mp4 6.13_21680_treechop-f153ac423f61-20210905-174054.mp4\r\n6.11_692_Player426-f153ac423f61-20210715-152220.mp4 6.13_21681_treechop-f153ac423f61-20210905-174321.mp4\r\n6.11_693_Player426-f153ac423f61-20210715-152719.mp4 6.13_21682_treechop-f153ac423f61-20210905-174427.mp4\r\n6.11_694_Player426-f153ac423f61-20210715-153219.mp4 6.13_21683_treechop-f153ac423f61-20210905-174529.mp4\r\n6.11_695_Player426-f153ac423f61-20210715-153718.mp4 6.13_21684_treechop-f153ac423f61-20210905-174630.mp4\r\n6.11_696_Player426-f153ac423f61-20210715-154217.mp4 6.13_21685_treechop-f153ac423f61-20210905-174732.mp4\r\n6.11_697_Player426-f153ac423f61-20210715-154716.mp4 6.13_21686_treechop-f153ac423f61-20210905-174833.mp4\r\n6.11_698_Player426-f153ac423f61-20210715-155215.mp4 6.13_21687_treechop-f153ac423f61-20210905-174936.mp4\r\n6.11_699_Player426-f153ac423f61-20210715-155714.mp4 6.13_21688_treechop-f153ac423f61-20210905-175038.mp4\r\n6.11_700_Player426-f153ac423f61-20210715-160710.mp4 6.13_21689_treechop-f153ac423f61-20210905-175140.mp4\r\n6.11_701_Player426-f153ac423f61-20210715-161708.mp4 6.13_2168_Player188-f153ac423f61-20210729-155452.mp4\r\n6.11_702_Player426-f153ac423f61-20210715-162706.mp4 6.13_21690_treechop-f153ac423f61-20210905-175241.mp4\r\n6.11_703_Player426-f153ac423f61-20210715-164202.mp4 6.13_21691_treechop-f153ac423f61-20210905-175343.mp4\r\n6.11_704_Player426-f153ac423f61-20210715-170212.mp4 6.13_21692_treechop-f153ac423f61-20210905-175446.mp4\r\n6.11_705_Player429-f153ac423f61-20210714-151046.mp4 6.13_21693_treechop-f153ac423f61-20210905-175549.mp4\r\n6.11_706_Player429-f153ac423f61-20210714-151556.mp4 6.13_21694_treechop-f153ac423f61-20210905-175650.mp4\r\n6.11_707_Player429-f153ac423f61-20210714-152105.mp4 6.13_21695_treechop-f153ac423f61-20210905-175753.mp4\r\n6.11_708_Player429-f153ac423f61-20210714-152622.mp4 6.13_21696_treechop-f153ac423f61-20210905-175855.mp4\r\n6.11_709_Player429-f153ac423f61-20210714-153135.mp4 6.13_21697_treechop-f153ac423f61-20210905-175956.mp4\r\n6.11_710_Player429-f153ac423f61-20210714-153655.mp4 6.13_21698_treechop-f153ac423f61-20210905-180058.mp4\r\n6.11_711_Player429-f153ac423f61-20210714-154209.mp4 6.13_21699_treechop-f153ac423f61-20210905-180200.mp4\r\n6.11_712_Player429-f153ac423f61-20210714-154714.mp4 6.13_2169_Player188-f153ac423f61-20210729-155553.mp4\r\n6.11_713_Player429-f153ac423f61-20210714-155235.mp4 6.13_216_Player107-f153ac423f61-20211204-165941.mp4\r\n6.11_714_Player429-f153ac423f61-20210714-155752.mp4 6.13_21700_treechop-f153ac423f61-20210905-180302.mp4\r\n6.11_715_Player429-f153ac423f61-20210714-160308.mp4 6.13_21701_treechop-f153ac423f61-20210905-180404.mp4\r\n6.11_716_Player429-f153ac423f61-20210714-160905.mp4 6.13_21702_treechop-f153ac423f61-20210905-180505.mp4\r\n6.11_717_Player429-f153ac423f61-20210714-161440.mp4 6.13_21703_treechop-f153ac423f61-20210905-180608.mp4\r\n6.11_718_Player429-f153ac423f61-20210714-161947.mp4 6.13_21704_treechop-f153ac423f61-20210905-180709.mp4\r\n6.11_719_Player429-f153ac423f61-20210714-162501.mp4 6.13_21705_treechop-f153ac423f61-20210905-180811.mp4\r\n6.11_720_Player429-f153ac423f61-20210714-163005.mp4 6.13_21706_treechop-f153ac423f61-20210905-180912.mp4\r\n6.11_721_Player429-f153ac423f61-20210714-163513.mp4 6.13_21707_treechop-f153ac423f61-20210905-181012.mp4\r\n6.11_722_Player429-f153ac423f61-20210714-164017.mp4 6.13_21708_treechop-f153ac423f61-20210905-181114.mp4\r\n6.11_723_Player429-f153ac423f61-20210714-164524.mp4 6.13_21709_treechop-f153ac423f61-20210905-181214.mp4\r\n6.11_724_Player429-f153ac423f61-20210714-165043.mp4 6.13_2170_Player188-f153ac423f61-20210729-155654.mp4\r\n6.11_725_Player444-f153ac423f61-20210715-130951.mp4 6.13_21710_treechop-f153ac423f61-20210905-181315.mp4\r\n6.11_726_Player447-f153ac423f61-20210712-224805.mp4 6.13_21711_treechop-f153ac423f61-20210905-181416.mp4\r\n6.11_727_Player463-f153ac423f61-20210707-170704.mp4 6.13_21712_treechop-f153ac423f61-20210905-181516.mp4\r\n6.11_728_Player463-f153ac423f61-20210707-171234.mp4 6.13_21713_treechop-f153ac423f61-20210905-181617.mp4\r\n6.11_729_Player463-f153ac423f61-20210707-171750.mp4 6.13_21714_treechop-f153ac423f61-20210905-181718.mp4\r\n6.11_730_Player463-f153ac423f61-20210707-172311.mp4 6.13_21715_treechop-f153ac423f61-20210905-181819.mp4\r\n6.11_731_Player463-f153ac423f61-20210707-172901.mp4 6.13_21716_treechop-f153ac423f61-20210905-181919.mp4\r\n6.11_732_Player463-f153ac423f61-20210707-173457.mp4 6.13_21717_treechop-f153ac423f61-20210905-182020.mp4\r\n6.11_733_Player463-f153ac423f61-20210707-174115.mp4 6.13_21718_treechop-f153ac423f61-20210905-182122.mp4\r\n6.11_734_Player463-f153ac423f61-20210707-174937.mp4 6.13_21719_treechop-f153ac423f61-20210905-182223.mp4\r\n6.11_735_Player463-f153ac423f61-20210707-175618.mp4 6.13_2171_Player188-f153ac423f61-20210729-155754.mp4\r\n6.11_736_Player463-f153ac423f61-20210707-180231.mp4 6.13_21720_treechop-f153ac423f61-20210905-182324.mp4\r\n6.11_737_Player469-f153ac423f61-20210720-235217.mp4 6.13_21721_treechop-f153ac423f61-20210905-182424.mp4\r\n6.11_738_Player469-f153ac423f61-20210720-235720.mp4 6.13_21722_treechop-f153ac423f61-20210905-182526.mp4\r\n6.11_739_Player469-f153ac423f61-20210721-000221.mp4 6.13_21723_treechop-f153ac423f61-20210905-182627.mp4\r\n6.11_740_Player469-f153ac423f61-20210721-000724.mp4 6.13_21724_treechop-f153ac423f61-20210905-182728.mp4\r\n6.11_741_Player469-f153ac423f61-20210721-001224.mp4 6.13_21725_treechop-f153ac423f61-20210905-182829.mp4\r\n6.11_742_Player469-f153ac423f61-20210721-001723.mp4 6.13_21726_treechop-f153ac423f61-20210905-182930.mp4\r\n6.11_743_Player483-f153ac423f61-20210716-154312.mp4 6.13_21727_treechop-f153ac423f61-20210905-183031.mp4\r\n6.11_744_Player483-f153ac423f61-20210716-155343.mp4 6.13_21728_treechop-f153ac423f61-20210905-183132.mp4\r\n6.11_745_Player483-f153ac423f61-20210716-160404.mp4 6.13_21729_treechop-f153ac423f61-20210905-183232.mp4\r\n6.11_746_Player483-f153ac423f61-20210716-161421.mp4 6.13_2172_Player188-f153ac423f61-20210729-155857.mp4\r\n6.11_747_Player483-f153ac423f61-20210716-162432.mp4 6.13_21730_treechop-f153ac423f61-20210905-183333.mp4\r\n6.11_748_Player483-f153ac423f61-20210716-162949.mp4 6.13_21731_treechop-f153ac423f61-20210905-183434.mp4\r\n6.11_749_Player483-f153ac423f61-20210716-163502.mp4 6.13_21732_treechop-f153ac423f61-20210905-183535.mp4\r\n6.11_750_Player483-f153ac423f61-20210716-164007.mp4 6.13_21733_treechop-f153ac423f61-20210905-183636.mp4\r\n6.11_751_Player483-f153ac423f61-20210716-164529.mp4 6.13_21734_treechop-f153ac423f61-20210905-183738.mp4\r\n6.11_752_Player483-f153ac423f61-20210716-165101.mp4 6.13_21735_treechop-f153ac423f61-20210905-183838.mp4\r\n6.11_753_Player485-d554447c62b1-20210702-230438.mp4 6.13_21736_treechop-f153ac423f61-20210905-183939.mp4\r\n6.11_754_Player485-f153ac423f61-20210702-202537.mp4 6.13_21737_treechop-f153ac423f61-20210905-184040.mp4\r\n6.11_755_Player485-f153ac423f61-20210702-204050.mp4 6.13_21738_treechop-f153ac423f61-20210905-184142.mp4\r\n6.11_756_Player485-f153ac423f61-20210702-205553.mp4 6.13_21739_treechop-f153ac423f61-20210905-184243.mp4\r\n6.11_757_Player485-f153ac423f61-20210702-211111.mp4 6.13_2173_Player188-f153ac423f61-20210729-155958.mp4\r\n6.11_758_Player485-f153ac423f61-20210702-212626.mp4 6.13_21740_treechop-f153ac423f61-20210905-184343.mp4\r\n6.11_759_Player485-f153ac423f61-20210702-214140.mp4 6.13_21741_treechop-f153ac423f61-20210905-184444.mp4\r\n6.11_760_Player485-f153ac423f61-20210702-215651.mp4 6.13_21742_treechop-f153ac423f61-20210905-184544.mp4\r\n6.11_761_Player485-f153ac423f61-20210702-221150.mp4 6.13_21743_treechop-f153ac423f61-20210905-184645.mp4\r\n6.11_762_Player485-f153ac423f61-20210702-223149.mp4 6.13_21744_treechop-f153ac423f61-20210905-184747.mp4\r\n6.11_763_Player485-f153ac423f61-20210702-224657.mp4 6.13_21745_treechop-f153ac423f61-20210905-184848.mp4\r\n6.11_764_Player489-7b5ed73aa2d4-20210719-183049.mp4 6.13_21746_treechop-f153ac423f61-20210905-184949.mp4\r\n6.11_765_Player489-7b5ed73aa2d4-20210719-184559.mp4 6.13_21747_treechop-f153ac423f61-20210905-185049.mp4\r\n6.11_766_Player489-b0de52c698b7-20210719-123807.mp4 6.13_21748_treechop-f153ac423f61-20210905-185150.mp4\r\n6.11_767_Player489-b0de52c698b7-20210719-124817.mp4 6.13_21749_treechop-f153ac423f61-20210905-185251.mp4\r\n6.11_768_Player489-b0de52c698b7-20210719-125818.mp4 6.13_2174_Player188-f153ac423f61-20210729-160059.mp4\r\n6.11_769_Player489-b0de52c698b7-20210719-130819.mp4 6.13_21750_treechop-f153ac423f61-20210905-185352.mp4\r\n6.11_770_Player489-b0de52c698b7-20210719-131821.mp4 6.13_21751_treechop-f153ac423f61-20210905-185453.mp4\r\n6.11_771_Player489-b0de52c698b7-20210719-132821.mp4 6.13_21752_treechop-f153ac423f61-20210905-185554.mp4\r\n6.11_772_Player489-b0de52c698b7-20210719-133827.mp4 6.13_21753_treechop-f153ac423f61-20210905-185655.mp4\r\n6.11_773_Player489-b0de52c698b7-20210719-134830.mp4 6.13_21754_treechop-f153ac423f61-20210905-185757.mp4\r\n6.11_774_Player489-b0de52c698b7-20210719-135833.mp4 6.13_21755_treechop-f153ac423f61-20210905-185858.mp4\r\n6.11_775_Player489-b0de52c698b7-20210719-140835.mp4 6.13_21756_treechop-f153ac423f61-20210905-185958.mp4\r\n6.11_776_Player489-b0de52c698b7-20210719-141838.mp4 6.13_21757_treechop-f153ac423f61-20210905-190059.mp4\r\n6.11_777_Player489-b0de52c698b7-20210719-142845.mp4 6.13_21758_treechop-f153ac423f61-20210905-190201.mp4\r\n6.11_778_Player489-b0de52c698b7-20210719-143847.mp4 6.13_21759_treechop-f153ac423f61-20210905-190302.mp4\r\n6.11_779_Player489-b0de52c698b7-20210719-144851.mp4 6.13_2175_Player188-f153ac423f61-20210729-160200.mp4",,terminal_output +639,6808748,"TERMINAL",0,0,"\r\n6.11_780_Player489-b0de52c698b7-20210719-145855.mp4 6.13_21760_treechop-f153ac423f61-20210905-190402.mp4\r\n6.11_781_Player489-b0de52c698b7-20210719-150856.mp4 6.13_21761_treechop-f153ac423f61-20210905-190503.mp4\r\n6.11_782_Player489-b0de52c698b7-20210719-151858.mp4 6.13_21762_treechop-f153ac423f61-20210905-190603.mp4\r\n6.11_783_Player489-b0de52c698b7-20210719-152910.mp4 6.13_21763_treechop-f153ac423f61-20210905-190704.mp4\r\n6.11_784_Player489-b0de52c698b7-20210719-153915.mp4 6.13_21764_treechop-f153ac423f61-20210905-190805.mp4\r\n6.11_785_Player489-b0de52c698b7-20210719-154933.mp4 6.13_21765_treechop-f153ac423f61-20210905-190906.mp4\r\n6.11_786_Player489-b0de52c698b7-20210719-155950.mp4 6.13_21766_treechop-f153ac423f61-20210905-191006.mp4\r\n6.11_787_Player489-b0de52c698b7-20210719-161004.mp4 6.13_21767_treechop-f153ac423f61-20210905-191107.mp4\r\n6.11_788_Player489-b0de52c698b7-20210719-162552.mp4 6.13_21768_treechop-f153ac423f61-20210905-191209.mp4\r\n6.11_789_Player489-b0de52c698b7-20210719-164107.mp4 6.13_21769_treechop-f153ac423f61-20210905-191309.mp4\r\n6.11_790_Player489-b0de52c698b7-20210719-165622.mp4 6.13_2176_Player188-f153ac423f61-20210729-160405.mp4\r\n6.11_791_Player489-b0de52c698b7-20210719-171129.mp4 6.13_21770_treechop-f153ac423f61-20210905-191410.mp4\r\n6.11_792_Player489-b0de52c698b7-20210719-172646.mp4 6.13_21771_treechop-f153ac423f61-20210905-191510.mp4\r\n6.11_793_Player489-b0de52c698b7-20210719-174208.mp4 6.13_21772_treechop-f153ac423f61-20210905-191611.mp4\r\n6.11_794_Player489-b0de52c698b7-20210719-175724.mp4 6.13_21773_treechop-f153ac423f61-20210905-191711.mp4\r\n6.11_795_Player489-b0de52c698b7-20210719-181239.mp4 6.13_21774_treechop-f153ac423f61-20210905-191812.mp4\r\n6.11_796_Player489-f153ac423f61-20210719-092229.mp4 6.13_21775_treechop-f153ac423f61-20210905-191913.mp4\r\n6.11_797_Player489-f153ac423f61-20210719-092739.mp4 6.13_21776_treechop-f153ac423f61-20210905-192014.mp4\r\n6.11_798_Player489-f153ac423f61-20210719-093753.mp4 6.13_21777_treechop-f153ac423f61-20210905-192115.mp4\r\n6.11_799_Player489-f153ac423f61-20210719-094255.mp4 6.13_21778_treechop-f153ac423f61-20210905-192216.mp4\r\n6.11_800_Player489-f153ac423f61-20210719-095258.mp4 6.13_21779_treechop-f153ac423f61-20210905-192317.mp4\r\n6.11_801_Player489-f153ac423f61-20210719-095800.mp4 6.13_2177_Player188-f153ac423f61-20210729-160506.mp4\r\n6.11_802_Player489-f153ac423f61-20210719-100302.mp4 6.13_21780_treechop-f153ac423f61-20210905-192418.mp4\r\n6.11_803_Player489-f153ac423f61-20210719-100804.mp4 6.13_21781_treechop-f153ac423f61-20210905-192520.mp4\r\n6.11_804_Player489-f153ac423f61-20210719-101807.mp4 6.13_21782_treechop-f153ac423f61-20210905-192621.mp4\r\n6.11_805_Player489-f153ac423f61-20210719-102812.mp4 6.13_21783_treechop-f153ac423f61-20210905-192721.mp4\r\n6.11_806_Player489-f153ac423f61-20210719-103816.mp4 6.13_21784_treechop-f153ac423f61-20210905-192823.mp4\r\n6.11_807_Player489-f153ac423f61-20210719-104832.mp4 6.13_21785_treechop-f153ac423f61-20210905-192923.mp4\r\n6.11_808_Player489-f153ac423f61-20210719-105837.mp4 6.13_21786_treechop-f153ac423f61-20210905-193024.mp4\r\n6.11_809_Player489-f153ac423f61-20210719-110838.mp4 6.13_21787_treechop-f153ac423f61-20210905-212207.mp4\r\n6.11_810_Player489-f153ac423f61-20210719-111844.mp4 6.13_21788_treechop-f153ac423f61-20210905-213147.mp4\r\n6.11_811_Player489-f153ac423f61-20210719-112856.mp4 6.13_21789_treechop-f153ac423f61-20210905-214340.mp4\r\n6.11_812_Player489-f153ac423f61-20210719-113855.mp4 6.13_2178_Player188-f153ac423f61-20210729-160607.mp4\r\n6.11_813_Player489-f153ac423f61-20210719-114858.mp4 6.13_21790_treechop-f153ac423f61-20210905-215524.mp4\r\n6.11_814_Player489-f153ac423f61-20210719-115902.mp4 6.13_21791_treechop-f153ac423f61-20210905-220714.mp4\r\n6.11_815_Player491-f153ac423f61-20210719-153305.mp4 6.13_21792_treechop-f153ac423f61-20210905-221751.mp4\r\n6.11_816_Player491-f153ac423f61-20210719-153840.mp4 6.13_21793_treechop-f153ac423f61-20210905-225303.mp4\r\n6.11_817_Player491-f153ac423f61-20210719-154357.mp4 6.13_21794_treechop-f153ac423f61-20210905-230546.mp4\r\n6.11_818_Player491-f153ac423f61-20210719-154857.mp4 6.13_21795_treechop-f153ac423f61-20210905-231945.mp4\r\n6.11_819_Player491-f153ac423f61-20210719-155420.mp4 6.13_21796_treechop-f153ac423f61-20210905-232337.mp4\r\n6.11_820_Player491-f153ac423f61-20210719-155926.mp4 6.13_21797_treechop-f153ac423f61-20210905-232442.mp4\r\n6.11_821_Player491-f153ac423f61-20210719-160430.mp4 6.13_21798_treechop-f153ac423f61-20210905-232543.mp4\r\n6.11_822_Player491-f153ac423f61-20210719-160936.mp4 6.13_21799_treechop-f153ac423f61-20210905-232645.mp4\r\n6.11_823_Player491-f153ac423f61-20210719-161441.mp4 6.13_2179_Player188-f153ac423f61-20210729-160712.mp4\r\n6.11_824_Player491-f153ac423f61-20210719-161951.mp4 6.13_217_Player107-f153ac423f61-20211204-172917.mp4\r\n6.11_825_Player491-f153ac423f61-20210719-162455.mp4 6.13_21800_treechop-f153ac423f61-20210905-232747.mp4\r\n6.11_826_Player491-f153ac423f61-20210719-163006.mp4 6.13_21801_treechop-f153ac423f61-20210905-232848.mp4\r\n6.11_827_Player491-f153ac423f61-20210719-163521.mp4 6.13_21802_treechop-f153ac423f61-20210905-232950.mp4\r\n6.11_828_Player491-f153ac423f61-20210719-164034.mp4 6.13_21803_treechop-f153ac423f61-20210905-233048.mp4\r\n6.11_829_Player495-f153ac423f61-20210716-112345.mp4 6.13_21804_treechop-f153ac423f61-20210905-233051.mp4\r\n6.11_830_Player495-f153ac423f61-20210716-112848.mp4 6.13_21805_treechop-f153ac423f61-20210905-233153.mp4\r\n6.11_831_Player495-f153ac423f61-20210716-113347.mp4 6.13_21806_treechop-f153ac423f61-20210905-233254.mp4\r\n6.11_832_Player495-f153ac423f61-20210716-113846.mp4 6.13_21807_treechop-f153ac423f61-20210905-233356.mp4\r\n6.11_833_Player495-f153ac423f61-20210716-114345.mp4 6.13_21808_treechop-f153ac423f61-20210905-233457.mp4\r\n6.11_834_Player495-f153ac423f61-20210716-173545.mp4 6.13_21809_treechop-f153ac423f61-20210905-233558.mp4\r\n6.11_835_Player495-f153ac423f61-20210716-174051.mp4 6.13_2180_Player188-f153ac423f61-20210729-160813.mp4\r\n6.11_836_Player495-f153ac423f61-20210716-174557.mp4 6.13_21810_treechop-f153ac423f61-20210905-233659.mp4\r\n6.11_837_Player495-f153ac423f61-20210716-175107.mp4 6.13_21811_treechop-f153ac423f61-20210905-233800.mp4\r\n6.11_838_Player495-f153ac423f61-20210716-180110.mp4 6.13_21812_treechop-f153ac423f61-20210905-233901.mp4\r\n6.11_839_Player497-3d291217a717-20210701-235843.mp4 6.13_21813_treechop-f153ac423f61-20210905-234004.mp4\r\n6.11_840_Player497-3d291217a717-20210702-000347.mp4 6.13_21814_treechop-f153ac423f61-20210905-234105.mp4\r\n6.11_841_Player497-3d291217a717-20210702-000905.mp4 6.13_21815_treechop-f153ac423f61-20210905-234206.mp4\r\n6.11_842_Player497-3d291217a717-20210702-001445.mp4 6.13_21816_treechop-f153ac423f61-20210905-234307.mp4\r\n6.11_843_Player497-3d291217a717-20210702-001945.mp4 6.13_21817_treechop-f153ac423f61-20210905-234408.mp4\r\n6.11_844_Player497-3d291217a717-20210702-002445.mp4 6.13_21818_treechop-f153ac423f61-20210905-234509.mp4\r\n6.11_845_Player497-437fd56476b5-20210701-234402.mp4 6.13_21819_treechop-f153ac423f61-20210905-234610.mp4\r\n6.11_846_Player497-a664ddeb298f-20210701-234416.mp4 6.13_2181_Player188-f153ac423f61-20210729-160921.mp4\r\n6.11_847_Player497-a664ddeb298f-20210701-234919.mp4 6.13_21820_treechop-f153ac423f61-20210905-234711.mp4\r\n6.11_848_Player497-a664ddeb298f-20210701-235419.mp4 6.13_21821_treechop-f153ac423f61-20210905-234811.mp4\r\n6.11_849_Player497-f153ac423f61-20210701-234035.mp4 6.13_21822_treechop-f153ac423f61-20210905-234913.mp4\r\n6.11_850_Player52-cb11bc36ac9d-20210706-211408.mp4 6.13_21823_treechop-f153ac423f61-20210905-235014.mp4\r\n6.11_851_Player52-f153ac423f61-20210706-195156.mp4 6.13_21824_treechop-f153ac423f61-20210905-235116.mp4\r\n6.11_852_Player52-f153ac423f61-20210706-195848.mp4 6.13_21825_treechop-f153ac423f61-20210905-235217.mp4\r\n6.11_853_Player52-f153ac423f61-20210706-200712.mp4 6.13_21826_treechop-f153ac423f61-20210905-235318.mp4\r\n6.11_854_Player52-f153ac423f61-20210706-201608.mp4 6.13_21827_treechop-f153ac423f61-20210905-235420.mp4\r\n6.11_855_Player52-f153ac423f61-20210706-202326.mp4 6.13_21828_treechop-f153ac423f61-20210905-235521.mp4\r\n6.11_856_Player52-f153ac423f61-20210706-202914.mp4 6.13_21829_treechop-f153ac423f61-20210905-235622.mp4\r\n6.11_857_Player52-f153ac423f61-20210706-203437.mp4 6.13_2182_Player188-f153ac423f61-20210729-161027.mp4\r\n6.11_858_Player52-f153ac423f61-20210706-204004.mp4 6.13_21830_treechop-f153ac423f61-20210905-235723.mp4\r\n6.11_859_Player52-f153ac423f61-20210706-204609.mp4 6.13_21831_treechop-f153ac423f61-20210905-235825.mp4\r\n6.11_860_Player52-f153ac423f61-20210706-205137.mp4 6.13_21832_treechop-f153ac423f61-20210905-235926.mp4\r\n6.11_861_Player52-f153ac423f61-20210706-205658.mp4 6.13_21833_treechop-f153ac423f61-20210906-000027.mp4\r\n6.11_862_Player52-f153ac423f61-20210706-210226.mp4 6.13_21834_treechop-f153ac423f61-20210906-000332.mp4\r\n6.11_863_Player52-f153ac423f61-20210706-210757.mp4 6.13_21835_treechop-f153ac423f61-20210906-000534.mp4\r\n6.11_864_Player52-f153ac423f61-20210706-211325.mp4 6.13_21836_treechop-f153ac423f61-20210906-000635.mp4\r\n6.11_865_Player524-f153ac423f61-20210717-151639.mp4 6.13_21837_treechop-f153ac423f61-20210906-000736.mp4\r\n6.11_866_Player524-f153ac423f61-20210717-152212.mp4 6.13_21838_treechop-f153ac423f61-20210906-000838.mp4\r\n6.11_867_Player524-f153ac423f61-20210717-153225.mp4 6.13_21839_treechop-f153ac423f61-20210906-000939.mp4\r\n6.11_868_Player524-f153ac423f61-20210717-153727.mp4 6.13_2183_Player188-f153ac423f61-20210729-161129.mp4\r\n6.11_869_Player524-f153ac423f61-20210717-154234.mp4 6.13_21840_treechop-f153ac423f61-20210906-001040.mp4\r\n6.11_870_Player524-f153ac423f61-20210717-154742.mp4 6.13_21841_treechop-f153ac423f61-20210906-001141.mp4\r\n6.11_871_Player524-f153ac423f61-20210717-155250.mp4 6.13_21842_treechop-f153ac423f61-20210906-001243.mp4\r\n6.11_872_Player524-f153ac423f61-20210717-155805.mp4 6.13_21843_treechop-f153ac423f61-20210906-001344.mp4\r\n6.11_873_Player524-f153ac423f61-20210717-160317.mp4 6.13_21844_treechop-f153ac423f61-20210906-001446.mp4\r\n6.11_874_Player525-f153ac423f61-20210711-170350.mp4 6.13_21845_treechop-f153ac423f61-20210906-001547.mp4\r\n6.11_875_Player525-f153ac423f61-20210711-171039.mp4 6.13_21846_treechop-f153ac423f61-20210906-001648.mp4\r\n6.11_876_Player525-f153ac423f61-20210711-171820.mp4 6.13_21847_treechop-f153ac423f61-20210906-001749.mp4\r\n6.11_877_Player525-f153ac423f61-20210711-172650.mp4 6.13_21848_treechop-f153ac423f61-20210906-004229.mp4\r\n6.11_878_Player525-f153ac423f61-20210711-173458.mp4 6.13_21849_treechop-f153ac423f61-20210906-004330.mp4\r\n6.11_879_Player525-f153ac423f61-20210711-174239.mp4 6.13_2184_Player188-f153ac423f61-20210729-161232.mp4\r\n6.11_880_Player525-f153ac423f61-20210711-175008.mp4 6.13_21850_treechop-f153ac423f61-20210906-004432.mp4\r\n6.11_881_Player525-f153ac423f61-20210711-175603.mp4 6.13_21851_treechop-f153ac423f61-20210906-004534.mp4\r\n6.11_882_Player525-f153ac423f61-20210711-180144.mp4 6.13_21852_treechop-f153ac423f61-20210906-004638.mp4\r\n6.11_883_Player525-f153ac423f61-20210711-180730.mp4 6.13_21853_treechop-f153ac423f61-20210906-004741.mp4\r\n6.11_884_Player525-f153ac423f61-20210711-181313.mp4 6.13_21854_treechop-f153ac423f61-20210906-004847.mp4\r\n6.11_885_Player525-f153ac423f61-20210711-181909.mp4 6.13_21855_treechop-f153ac423f61-20210906-004950.mp4\r\n6.11_886_Player525-f153ac423f61-20210711-182428.mp4 6.13_21856_treechop-f153ac423f61-20210906-005054.mp4\r\n6.11_887_Player525-f153ac423f61-20210711-183018.mp4 6.13_21857_treechop-f153ac423f61-20210906-005157.mp4\r\n6.11_888_Player525-f153ac423f61-20210711-183548.mp4 6.13_21858_treechop-f153ac423f61-20210906-005259.mp4\r\n6.11_889_Player525-f153ac423f61-20210711-184145.mp4 6.13_21859_treechop-f153ac423f61-20210906-165003.mp4\r\n6.11_890_Player537-f153ac423f61-20210703-225052.mp4 6.13_2185_Player188-f153ac423f61-20210729-161340.mp4\r\n6.11_891_Player537-f153ac423f61-20210703-225716.mp4 6.13_21860_treechop-f153ac423f61-20210906-165109.mp4\r\n6.11_892_Player537-f153ac423f61-20210703-230340.mp4 6.13_21861_treechop-f153ac423f61-20210906-165212.mp4\r\n6.11_893_Player537-f153ac423f61-20210703-231104.mp4 6.13_21862_treechop-f153ac423f61-20210906-165315.mp4\r\n6.11_894_Player537-f153ac423f61-20210703-231835.mp4 6.13_21863_treechop-f153ac423f61-20210906-165416.mp4\r\n6.11_895_Player537-f153ac423f61-20210703-232539.mp4 6.13_21864_treechop-f153ac423f61-20210906-165519.mp4\r\n6.11_896_Player537-f153ac423f61-20210703-233253.mp4 6.13_21865_treechop-f153ac423f61-20210906-165620.mp4\r\n6.11_897_Player537-f153ac423f61-20210725-143840.mp4 6.13_21866_treechop-f153ac423f61-20210906-165721.mp4\r\n6.11_898_Player537-f153ac423f61-20210725-144344.mp4 6.13_21867_treechop-f153ac423f61-20210906-165827.mp4\r\n6.11_899_Player537-f153ac423f61-20210725-144852.mp4 6.13_21868_treechop-f153ac423f61-20210906-165931.mp4\r\n6.11_900_Player537-f153ac423f61-20210725-145359.mp4 6.13_21869_treechop-f153ac423f61-20210906-170033.mp4\r\n6.11_901_Player537-f153ac423f61-20210725-145949.mp4 6.13_2186_Player188-f153ac423f61-20210729-161444.mp4\r\n6.11_902_Player545-f153ac423f61-20210710-140736.mp4 6.13_21870_treechop-f153ac423f61-20210906-170135.mp4\r\n6.11_903_Player545-f153ac423f61-20210710-141333.mp4 6.13_21871_treechop-f153ac423f61-20210906-170237.mp4\r\n6.11_904_Player545-f153ac423f61-20210710-141940.mp4 6.13_21872_treechop-f153ac423f61-20210906-170339.mp4\r\n6.11_905_Player545-f153ac423f61-20210710-142532.mp4 6.13_21873_treechop-f153ac423f61-20210906-170442.mp4\r\n6.11_906_Player545-f153ac423f61-20210710-143034.mp4 6.13_21874_treechop-f153ac423f61-20210906-170545.mp4\r\n6.11_907_Player545-f153ac423f61-20210710-143643.mp4 6.13_21875_treechop-f153ac423f61-20210906-170646.mp4\r\n6.11_908_Player559-0b7ef85bc5a1-20210708-130305.mp4 6.13_21876_treechop-f153ac423f61-20210906-170746.mp4\r\n6.11_909_Player559-0b7ef85bc5a1-20210708-131814.mp4 6.13_21877_treechop-f153ac423f61-20210906-170847.mp4\r\n6.11_910_Player559-0b7ef85bc5a1-20210708-133334.mp4 6.13_21878_treechop-f153ac423f61-20210906-170948.mp4\r\n6.11_911_Player559-0b7ef85bc5a1-20210708-134900.mp4 6.13_21879_treechop-f153ac423f61-20210906-171050.mp4\r\n6.11_912_Player559-0b7ef85bc5a1-20210708-140422.mp4 6.13_2187_Player188-f153ac423f61-20210729-161547.mp4\r\n6.11_913_Player559-ad755eadf564-20210708-142151.mp4 6.13_21880_treechop-f153ac423f61-20210906-171151.mp4\r\n6.11_914_Player559-ad755eadf564-20210708-143709.mp4 6.13_21881_treechop-f153ac423f61-20210906-171252.mp4\r\n6.11_915_Player559-ad755eadf564-20210708-145243.mp4 6.13_21882_treechop-f153ac423f61-20210906-171353.mp4\r\n6.11_916_Player559-ad755eadf564-20210708-150753.mp4 6.13_21883_treechop-f153ac423f61-20210906-171455.mp4\r\n6.11_917_Player559-f153ac423f61-20210708-114621.mp4 6.13_21884_treechop-f153ac423f61-20210906-171557.mp4\r\n6.11_918_Player559-f153ac423f61-20210708-120137.mp4 6.13_21885_treechop-f153ac423f61-20210906-171658.mp4\r\n6.11_919_Player559-f153ac423f61-20210708-121648.mp4 6.13_21886_treechop-f153ac423f61-20210906-171759.mp4\r\n6.11_920_Player559-f153ac423f61-20210708-123159.mp4 6.13_21887_treechop-f153ac423f61-20210906-171859.mp4\r\n6.11_921_Player559-f41f0c97a132-20210708-124738.mp4 6.13_21888_treechop-f153ac423f61-20210906-172000.mp4\r\n6.11_922_Player578-f153ac423f61-20210715-073612.mp4 6.13_21889_treechop-f153ac423f61-20210906-172103.mp4\r\n6.11_923_Player578-f153ac423f61-20210715-075632.mp4 6.13_2188_Player188-f153ac423f61-20210729-161655.mp4\r\n6.11_924_Player578-f153ac423f61-20210715-081645.mp4 6.13_21890_treechop-f153ac423f61-20210906-172205.mp4\r\n6.11_925_Player578-f153ac423f61-20210715-083651.mp4 6.13_21891_treechop-f153ac423f61-20210906-172307.mp4\r\n6.11_926_Player578-f153ac423f61-20210715-085705.mp4 6.13_21892_treechop-f153ac423f61-20210906-172411.mp4\r\n6.11_927_Player578-f153ac423f61-20210715-091716.mp4 6.13_21893_treechop-f153ac423f61-20210906-172512.mp4\r\n6.11_928_Player580-f153ac423f61-20210709-114401.mp4 6.13_21894_treechop-f153ac423f61-20210906-172614.mp4\r\n6.11_929_Player580-f153ac423f61-20210709-114910.mp4 6.13_21895_treechop-f153ac423f61-20210906-172716.mp4\r\n6.11_930_Player580-f153ac423f61-20210709-115413.mp4 6.13_21896_treechop-f153ac423f61-20210906-173006.mp4\r\n6.11_931_Player580-f153ac423f61-20210709-115939.mp4 6.13_21897_treechop-f153ac423f61-20210906-173107.mp4\r\n6.11_932_Player580-f153ac423f61-20210709-120442.mp4 6.13_21898_treechop-f153ac423f61-20210906-173208.mp4\r\n6.11_933_Player580-f153ac423f61-20210709-120945.mp4 6.13_21899_treechop-f153ac423f61-20210906-173309.mp4\r\n6.11_934_Player580-f153ac423f61-20210709-121510.mp4 6.13_2189_Player188-f153ac423f61-20210729-161757.mp4\r\n6.11_935_Player580-f153ac423f61-20210709-122017.mp4 6.13_218_Player107-f153ac423f61-20211204-180641.mp4\r\n6.11_936_Player580-f153ac423f61-20210709-122646.mp4 6.13_21900_treechop-f153ac423f61-20210906-173412.mp4\r\n6.11_937_Player580-f153ac423f61-20210709-123158.mp4 6.13_21901_treechop-f153ac423f61-20210906-173515.mp4\r\n6.11_938_Player580-f153ac423f61-20210709-123738.mp4 6.13_21902_treechop-f153ac423f61-20210906-173618.mp4\r\n6.11_939_Player580-f153ac423f61-20210709-124239.mp4 6.13_21903_treechop-f153ac423f61-20210906-173721.mp4\r\n6.11_940_Player580-f153ac423f61-20210709-124740.mp4 6.13_21904_treechop-f153ac423f61-20210906-173823.mp4\r\n6.11_941_Player580-f153ac423f61-20210709-125243.mp4 6.13_21905_treechop-f153ac423f61-20210906-173930.mp4\r\n6.11_942_Player580-f153ac423f61-20210709-125745.mp4 6.13_21906_treechop-f153ac423f61-20210906-174033.mp4\r\n6.11_943_Player580-f153ac423f61-20210709-130250.mp4 6.13_21907_treechop-f153ac423f61-20210906-174135.mp4\r\n6.11_944_Player580-f153ac423f61-20210709-130754.mp4 6.13_21908_treechop-f153ac423f61-20210906-174238.mp4\r\n6.11_945_Player580-f153ac423f61-20210709-131258.mp4 6.13_21909_treechop-f153ac423f61-20210906-174339.mp4\r\n6.11_946_Player593-f153ac423f61-20210708-191158.mp4 6.13_2190_Player188-f153ac423f61-20210729-161859.mp4\r\n6.11_947_Player593-f153ac423f61-20210708-191752.mp4 6.13_21910_treechop-f153ac423f61-20210906-174441.mp4\r\n6.11_948_Player603-f153ac423f61-20210709-162057.mp4 6.13_21911_treechop-f153ac423f61-20210906-174544.mp4\r\n6.11_949_Player603-f153ac423f61-20210709-162601.mp4 6.13_21912_treechop-f153ac423f61-20210906-174646.mp4\r\n6.11_950_Player603-f153ac423f61-20210709-163107.mp4 6.13_21913_treechop-f153ac423f61-20210906-174955.mp4\r\n6.11_951_Player603-f153ac423f61-20210709-163654.mp4 6.13_21914_treechop-f153ac423f61-20210906-175056.mp4\r\n6.11_952_Player603-f153ac423f61-20210709-164219.mp4 6.13_21915_treechop-f153ac423f61-20210906-175157.mp4\r\n6.11_953_Player603-f153ac423f61-20210709-164728.mp4 6.13_21916_treechop-f153ac423f61-20210906-175258.mp4\r\n6.11_954_Player603-f153ac423f61-20210709-165231.mp4 6.13_21917_treechop-f153ac423f61-20210906-175401.mp4\r\n6.11_955_Player603-f153ac423f61-20210709-165737.mp4 6.13_21918_treechop-f153ac423f61-20210906-175502.mp4\r\n6.11_956_Player603-f153ac423f61-20210709-170241.mp4 6.13_21919_treechop-f153ac423f61-20210906-175603.mp4\r\n6.11_957_Player603-f153ac423f61-20210709-170809.mp4 6.13_2191_Player188-f153ac423f61-20210729-162001.mp4\r\n6.11_958_Player603-f153ac423f61-20210709-171312.mp4 6.13_21920_treechop-f153ac423f61-20210906-175704.mp4\r\n6.11_959_Player603-f153ac423f61-20210709-171815.mp4 6.13_21921_treechop-f153ac423f61-20210906-175806.mp4\r\n6.11_960_Player603-f153ac423f61-20210709-172317.mp4 6.13_21922_treechop-f153ac423f61-20210906-175907.mp4\r\n6.11_961_Player603-f153ac423f61-20210709-172820.mp4 6.13_21923_treechop-f153ac423f61-20210906-180008.mp4\r\n6.11_962_Player603-f153ac423f61-20210709-173322.mp4 6.13_21924_treechop-f153ac423f61-20210906-180111.mp4\r\n6.11_963_Player603-f153ac423f61-20210709-173824.mp4 6.13_21925_treechop-f153ac423f61-20210906-180212.mp4\r\n6.11_964_Player603-f153ac423f61-20210709-174327.mp4 6.13_21926_treechop-f153ac423f61-20210906-180316.mp4\r\n6.11_965_Player608-3e4b3372b175-20210715-175115.mp4 6.13_21927_treechop-f153ac423f61-20210906-180419.mp4\r\n6.11_966_Player608-3e4b3372b175-20210715-181139.mp4 6.13_21928_treechop-f153ac423f61-20210906-180522.mp4\r\n6.11_967_Player608-519431f476f7-20210715-134443.mp4 6.13_21929_treechop-f153ac423f61-20210906-180625.mp4\r\n6.11_968_Player608-59a2a309309b-20210715-140415.mp4 6.13_2192_Player188-f153ac423f61-20210729-162104.mp4\r\n6.11_969_Player608-59a2a309309b-20210715-142425.mp4 6.13_21930_treechop-f153ac423f61-20210906-180727.mp4\r\n6.11_970_Player608-a53dfcf9e71b-20210715-132837.mp4 6.13_21931_treechop-f153ac423f61-20210906-180829.mp4\r\n6.11_971_Player608-a99d7cacd0b7-20210715-150414.mp4 6.13_21932_treechop-f153ac423f61-20210906-180930.mp4\r\n6.11_972_Player608-a99d7cacd0b7-20210715-152437.mp4 6.13_21933_treechop-f153ac423f61-20210906-181031.mp4\r\n6.11_973_Player608-a99d7cacd0b7-20210715-154450.mp4 6.13_21934_treechop-f153ac423f61-20210906-181134.mp4\r\n6.11_974_Player608-a99d7cacd0b7-20210715-160521.mp4 6.13_21935_treechop-f153ac423f61-20210906-181236.mp4\r\n6.11_975_Player608-a99d7cacd0b7-20210715-162555.mp4 6.13_21936_treechop-f153ac423f61-20210906-181338.mp4\r\n6.11_976_Player608-a99d7cacd0b7-20210715-164613.mp4 6.13_21937_treechop-f153ac423f61-20210906-181440.mp4\r\n6.11_977_Player608-dcceff77e478-20210715-131012.mp4 6.13_21938_treechop-f153ac423f61-20210906-181542.mp4\r\n6.11_978_Player608-f153ac423f61-20210715-095119.mp4 6.13_21939_treechop-f153ac423f61-20210906-181647.mp4\r\n6.11_979_Player608-f153ac423f61-20210715-101214.mp4 6.13_2193_Player188-f153ac423f61-20210729-162208.mp4\r\n6.11_980_Player608-f153ac423f61-20210715-103232.mp4 6.13_21940_treechop-f153ac423f61-20210906-181749.mp4\r\n6.11_981_Player608-f153ac423f61-20210715-105239.mp4 6.13_21941_treechop-f153ac423f61-20210906-181851.mp4\r\n6.11_982_Player608-f153ac423f61-20210715-111252.mp4 6.13_21942_treechop-f153ac423f61-20210906-181952.mp4\r\n6.11_983_Player608-f153ac423f61-20210715-113308.mp4 6.13_21943_treechop-f153ac423f61-20210906-182054.mp4\r\n6.11_984_Player608-f153ac423f61-20210715-115317.mp4 6.13_21944_treechop-f153ac423f61-20210906-182157.mp4\r\n6.11_985_Player608-f153ac423f61-20210715-121329.mp4 6.13_21945_treechop-f153ac423f61-20210906-182258.mp4\r\n6.11_986_Player608-f153ac423f61-20210715-123342.mp4 6.13_21946_treechop-f153ac423f61-20210906-182359.mp4\r\n6.11_987_Player608-f153ac423f61-20210715-125355.mp4 6.13_21947_treechop-f153ac423f61-20210906-182500.mp4\r\n6.11_988_Player608-fe04384a253d-20210715-183247.mp4 6.13_21948_treechop-f153ac423f61-20210906-182602.mp4\r\n6.11_989_Player608-fe04384a253d-20210715-185301.mp4 6.13_21949_treechop-f153ac423f61-20210906-182706.mp4\r\n6.11_990_Player608-fe04384a253d-20210715-191316.mp4 6.13_2194_Player188-f153ac423f61-20210729-162309.mp4\r\n6.11_991_Player612-d511828e9db9-20210704-212713.mp4 6.13_21950_treechop-f153ac423f61-20210906-182808.mp4\r\n6.11_992_Player612-d511828e9db9-20210704-213222.mp4 6.13_21951_treechop-f153ac423f61-20210906-182911.mp4\r\n6.11_993_Player612-d511828e9db9-20210704-213840.mp4 6.13_21952_treechop-f153ac423f61-20210906-183011.mp4\r\n6.11_994_Player612-d511828e9db9-20210704-214522.mp4 6.13_21953_treechop-f153ac423f61-20210906-183113.mp4\r\n6.11_995_Player612-f153ac423f61-20210704-200619.mp4 6.13_21954_treechop-f153ac423f61-20210906-183214.mp4\r\n6.11_996_Player612-f153ac423f61-20210704-201326.mp4 6.13_21955_treechop-f153ac423f61-20210906-183317.mp4\r\n6.11_997_Player612-f153ac423f61-20210704-202027.mp4 6.13_21956_treechop-f153ac423f61-20210906-183418.mp4\r\n6.11_998_Player612-f153ac423f61-20210704-202716.mp4 6.13_21957_treechop-f153ac423f61-20210906-183521.mp4\r\n6.11_999_Player612-f153ac423f61-20210704-203418.mp4 6.13_21958_treechop-f153ac423f61-20210906-183623.mp4\r\n6.12_001_Player125-f153ac423f61-20211008-124403.mp4 6.13_21959_treechop-f153ac423f61-20210906-183725.mp4\r\n6.12_002_Player125-f153ac423f61-20211008-124508.mp4 6.13_2195_Player188-f153ac423f61-20210729-162417.mp4\r\n6.12_003_Player2-f153ac423f61-20210813-175957.mp4 6.13_21960_treechop-f153ac423f61-20210906-183826.mp4\r\n6.12_004_Player2-f153ac423f61-20210813-180059.mp4 6.13_21961_treechop-f153ac423f61-20210906-215730.mp4\r\n6.12_005_Player2-f153ac423f61-20210813-180200.mp4 6.13_21962_treechop-f153ac423f61-20210906-215834.mp4\r\n6.12_006_Player2-f153ac423f61-20210813-180301.mp4 6.13_21963_treechop-f153ac423f61-20210906-220039.mp4\r\n6.12_007_Player2-f153ac423f61-20210813-180402.mp4 6.13_21964_treechop-f153ac423f61-20210906-220546.mp4\r\n6.12_008_Player2-f153ac423f61-20210813-180502.mp4 6.13_21965_treechop-f153ac423f61-20210906-221459.mp4\r\n6.12_009_Player2-f153ac423f61-20210813-180603.mp4 6.13_21966_treechop-f153ac423f61-20210906-223446.mp4\r\n6.12_010_Player2-f153ac423f61-20210813-180703.mp4 6.13_21967_treechop-f153ac423f61-20210906-225635.mp4\r\n6.12_011_Player2-f153ac423f61-20210813-180804.mp4 6.13_21968_treechop-f153ac423f61-20210907-115553.mp4\r\n6.12_012_Player2-f153ac423f61-20210813-180904.mp4 6.13_21969_treechop-f153ac423f61-20210907-115700.mp4\r\n6.12_013_Player2-f153ac423f61-20210813-181005.mp4 6.13_2196_Player188-f153ac423f61-20210729-162531.mp4\r\n6.12_014_Player2-f153ac423f61-20210813-181105.mp4 6.13_21970_treechop-f153ac423f61-20210907-120107.mp4\r\n6.12_015_Player20-f153ac423f61-20210824-221956.mp4 6.13_21971_treechop-f153ac423f61-20210907-120313.mp4\r\n6.12_016_Player20-f153ac423f61-20210824-222128.mp4 6.13_21972_treechop-f153ac423f61-20210907-120418.mp4\r\n6.12_017_Player20-f153ac423f61-20210824-222229.mp4 6.13_21973_treechop-f153ac423f61-20210907-120524.mp4\r\n6.12_018_Player20-f153ac423f61-20210824-222330.mp4 6.13_21974_treechop-f153ac423f61-20210907-120629.mp4\r\n6.12_019_Player20-f153ac423f61-20210824-222431.mp4 6.13_21975_treechop-f153ac423f61-20210907-120733.mp4\r\n6.12_020_Player20-f153ac423f61-20210824-222531.mp4 6.13_21976_treechop-f153ac423f61-20210907-120835.mp4\r\n6.12_021_Player20-f153ac423f61-20210824-222632.mp4 6.13_21977_treechop-f153ac423f61-20210907-120939.mp4\r\n6.12_022_Player20-f153ac423f61-20210824-222732.mp4 6.13_21978_treechop-f153ac423f61-20210907-121044.mp4\r\n6.12_023_Player20-f153ac423f61-20210824-222833.mp4 6.13_21979_treechop-f153ac423f61-20210907-121150.mp4\r\n6.12_024_Player20-f153ac423f61-20210824-222934.mp4 6.13_2197_Player188-f153ac423f61-20210729-162648.mp4\r\n6.12_025_Player20-f153ac423f61-20210824-223034.mp4 6.13_21980_treechop-f153ac423f61-20210907-121254.mp4\r\n6.12_026_Player20-f153ac423f61-20210824-223135.mp4 6.13_21981_treechop-f153ac423f61-20210907-121356.mp4\r\n6.12_027_Player20-f153ac423f61-20210824-223235.mp4 6.13_21982_treechop-f153ac423f61-20210907-121457.mp4\r\n6.12_028_Player20-f153ac423f61-20210824-223336.mp4 6.13_21983_treechop-f153ac423f61-20210907-121557.mp4\r\n6.12_029_Player20-f153ac423f61-20210824-223436.mp4 6.13_21984_treechop-f153ac423f61-20210907-121701.mp4\r\n6.12_030_Player20-f153ac423f61-20210824-223547.mp4 6.13_21985_treechop-f153ac423f61-20210907-121804.mp4\r\n6.12_031_Player20-f153ac423f61-20210824-223647.mp4 6.13_21986_treechop-f153ac423f61-20210907-121904.mp4\r\n6.12_032_Player20-f153ac423f61-20210824-223748.mp4 6.13_21987_treechop-f153ac423f61-20210907-122005.mp4\r\n6.12_033_Player20-f153ac423f61-20210824-223848.mp4 6.13_21988_treechop-f153ac423f61-20210907-122112.mp4\r\n6.12_034_Player20-f153ac423f61-20210824-223948.mp4 6.13_21989_treechop-f153ac423f61-20210907-122212.mp4\r\n6.12_035_Player20-f153ac423f61-20210824-224049.mp4 6.13_2198_Player188-f153ac423f61-20210729-162809.mp4\r\n6.12_036_Player20-f153ac423f61-20210824-224149.mp4 6.13_21990_treechop-f153ac423f61-20210907-122314.mp4\r\n6.12_037_Player20-f153ac423f61-20210824-224250.mp4 6.13_21991_treechop-f153ac423f61-20210907-122415.mp4\r\n6.12_038_Player211-f153ac423f61-20210901-171416.mp4 6.13_21992_treechop-f153ac423f61-20210907-122517.mp4\r\n6.12_039_Player211-f153ac423f61-20210901-171518.mp4 6.13_21993_treechop-f153ac423f61-20210907-122619.mp4\r\n6.12_040_Player211-f153ac423f61-20210901-171619.mp4 6.13_21994_treechop-f153ac423f61-20210907-122721.mp4\r\n6.12_041_Player211-f153ac423f61-20210901-171719.mp4 6.13_21995_treechop-f153ac423f61-20210907-122822.mp4\r\n6.12_042_Player211-f153ac423f61-20210901-171820.mp4 6.13_21996_treechop-f153ac423f61-20210907-122928.mp4\r\n6.12_043_Player211-f153ac423f61-20210901-171920.mp4 6.13_21997_treechop-f153ac423f61-20210907-123036.mp4\r\n6.12_044_Player211-f153ac423f61-20210901-172021.mp4 6.13_21998_treechop-f153ac423f61-20210907-123140.mp4\r\n6.12_045_Player211-f153ac423f61-20210901-172122.mp4 6.13_21999_treechop-f153ac423f61-20210907-123244.mp4\r\n6.12_046_Player211-f153ac423f61-20210901-172222.mp4 6.13_2199_Player188-f153ac423f61-20210729-162926.mp4\r\n6.12_047_Player211-f153ac423f61-20210901-172323.mp4 6.13_219_Player108-f153ac423f61-20211207-105626.mp4\r\n6.12_048_Player211-f153ac423f61-20210901-172424.mp4 6.13_22000_treechop-f153ac423f61-20210907-123348.mp4\r\n6.12_049_Player211-f153ac423f61-20210901-172524.mp4 6.13_22001_treechop-f153ac423f61-20210907-123451.mp4\r\n6.12_050_Player211-f153ac423f61-20210901-172625.mp4 6.13_22002_treechop-f153ac423f61-20210907-123554.mp4\r\n6.12_051_Player211-f153ac423f61-20211020-122724.mp4 6.13_22003_treechop-f153ac423f61-20210907-123655.mp4\r\n6.12_052_Player211-f153ac423f61-20211020-122831.mp4 6.13_22004_treechop-f153ac423f61-20210907-123757.mp4\r\n6.12_053_Player211-f153ac423f61-20211020-122944.mp4 6.13_22005_treechop-f153ac423f61-20210907-123957.mp4\r\n6.12_054_Player211-f153ac423f61-20211020-123059.mp4 6.13_22006_treechop-f153ac423f61-20210907-124126.mp4\r\n6.12_055_Player211-f153ac423f61-20211020-123202.mp4 6.13_22007_treechop-f153ac423f61-20210907-124227.mp4\r\n6.12_056_Player211-f153ac423f61-20211020-123303.mp4 6.13_22008_treechop-f153ac423f61-20210907-124328.mp4\r\n6.12_057_Player211-f153ac423f61-20211020-123405.mp4 6.13_22009_treechop-f153ac423f61-20210907-124430.mp4\r\n6.12_058_Player231-f153ac423f61-20211006-130730.mp4 6.13_2200_Player188-f153ac423f61-20210729-163040.mp4\r\n6.12_059_Player243-f153ac423f61-20210826-212056.mp4 6.13_22010_treechop-f153ac423f61-20210907-124531.mp4\r\n6.12_060_Player243-f153ac423f61-20210826-212159.mp4 6.13_22011_treechop-f153ac423f61-20210907-124635.mp4\r\n6.12_061_Player243-f153ac423f61-20210826-212300.mp4 6.13_22012_treechop-f153ac423f61-20210907-124739.mp4\r\n6.12_062_Player243-f153ac423f61-20210826-212418.mp4 6.13_22013_treechop-f153ac423f61-20210907-211427.mp4\r\n6.12_063_Player243-f153ac423f61-20210826-212518.mp4 6.13_22014_treechop-f153ac423f61-20210907-211531.mp4\r\n6.12_064_Player243-f153ac423f61-20210826-212619.mp4 6.13_22015_treechop-f153ac423f61-20210907-211633.mp4\r\n6.12_065_Player243-f153ac423f61-20210826-212720.mp4 6.13_22016_treechop-f153ac423f61-20210907-211737.mp4\r\n6.12_066_Player243-f153ac423f61-20210826-212821.mp4 6.13_22017_treechop-f153ac423f61-20210907-211839.mp4\r\n6.12_067_Player243-f153ac423f61-20210826-212921.mp4 6.13_22018_treechop-f153ac423f61-20210907-212044.mp4\r\n6.12_068_Player243-f153ac423f61-20210826-213022.mp4 6.13_22019_treechop-f153ac423f61-20210907-212350.mp4\r\n6.12_069_Player243-f153ac423f61-20210826-213122.mp4 6.13_2201_Player188-f153ac423f61-20210729-163157.mp4\r\n6.12_070_Player245-f153ac423f61-20210819-143539.mp4 6.13_22020_treechop-f153ac423f61-20210907-212656.mp4\r\n6.12_071_Player245-f153ac423f61-20210819-143641.mp4 6.13_22021_treechop-f153ac423f61-20210907-213102.mp4\r\n6.12_072_Player245-f153ac423f61-20210819-143742.mp4 6.13_22022_treechop-f153ac423f61-20210907-213814.mp4\r\n6.12_073_Player245-f153ac423f61-20210819-143842.mp4 6.13_22023_treechop-f153ac423f61-20210907-214932.mp4\r\n6.12_074_Player245-f153ac423f61-20210819-143942.mp4 6.13_22024_treechop-f153ac423f61-20210907-220313.mp4\r\n6.12_075_Player245-f153ac423f61-20210819-144043.mp4 6.13_22025_treechop-f153ac423f61-20210907-221939.mp4\r\n6.12_076_Player245-f153ac423f61-20210819-144143.mp4 6.13_22026_treechop-f153ac423f61-20210907-225717.mp4\r\n6.12_077_Player245-f153ac423f61-20210819-144243.mp4 6.13_22027_treechop-f153ac423f61-20210907-230023.mp4\r\n6.12_078_Player245-f153ac423f61-20210819-144344.mp4 6.13_22028_treechop-f153ac423f61-20210907-230737.mp4\r\n6.12_079_Player245-f153ac423f61-20210819-144444.mp4 6.13_22029_treechop-f153ac423f61-20210907-231636.mp4\r\n6.12_080_Player245-f153ac423f61-20210819-144544.mp4 6.13_2202_Player188-f153ac423f61-20210729-163313.mp4\r\n6.12_081_Player245-f153ac423f61-20210819-144644.mp4 6.13_22030_treechop-f153ac423f61-20210907-232750.mp4\r\n6.12_082_Player245-f153ac423f61-20210819-144745.mp4 6.13_22031_treechop-f153ac423f61-20210907-234045.mp4\r\n6.12_083_Player245-f153ac423f61-20210819-144845.mp4 6.13_22032_treechop-f153ac423f61-20210907-235203.mp4\r\n6.12_084_Player245-f153ac423f61-20210819-144945.mp4 6.13_22033_treechop-f153ac423f61-20210908-000834.mp4\r\n6.12_085_Player245-f153ac423f61-20210819-145046.mp4 6.13_22034_treechop-f153ac423f61-20210908-002558.mp4\r\n6.12_086_Player245-f153ac423f61-20210819-145146.mp4 6.13_22035_treechop-f153ac423f61-20210908-003933.mp4\r\n6.12_087_Player245-f153ac423f61-20210819-145247.mp4 6.13_22036_treechop-f153ac423f61-20210908-125931.mp4\r\n6.12_088_Player245-f153ac423f61-20210819-145350.mp4 6.13_22037_treechop-f153ac423f61-20210908-130036.mp4\r\n6.12_089_Player245-f153ac423f61-20210819-145451.mp4 6.13_22038_treechop-f153ac423f61-20210908-130340.mp4\r\n6.12_090_Player245-f153ac423f61-20210819-145552.mp4 6.13_22039_treechop-f153ac423f61-20210908-130855.mp4\r\n6.12_091_Player245-f153ac423f61-20210819-145653.mp4 6.13_2203_Player188-f153ac423f61-20210729-163416.mp4\r\n6.12_092_Player245-f153ac423f61-20210819-145850.mp4 6.13_22040_treechop-f153ac423f61-20210908-131512.mp4\r\n6.12_093_Player245-f153ac423f61-20210819-150031.mp4 6.13_22041_treechop-f153ac423f61-20210908-132528.mp4\r\n6.12_094_Player245-f153ac423f61-20210819-150132.mp4 6.13_22042_treechop-f153ac423f61-20210908-134151.mp4\r\n6.12_095_Player245-f153ac423f61-20210819-150236.mp4 6.13_22043_treechop-f153ac423f61-20210908-153913.mp4\r\n6.12_096_Player245-f153ac423f61-20210819-150342.mp4 6.13_22044_treechop-f153ac423f61-20210908-154018.mp4\r\n6.12_097_Player245-f153ac423f61-20210819-150444.mp4 6.13_22045_treechop-f153ac423f61-20210908-213732.mp4\r\n6.12_098_Player245-f153ac423f61-20210819-150545.mp4 6.13_22046_treechop-f153ac423f61-20210909-131044.mp4\r\n6.12_099_Player245-f153ac423f61-20210819-150645.mp4 6.13_22047_treechop-f153ac423f61-20210909-131149.mp4\r\n6.12_100_Player245-f153ac423f61-20210819-150746.mp4 6.13_22048_treechop-f153ac423f61-20210909-131252.mp4\r\n6.12_101_Player245-f153ac423f61-20210819-150846.mp4 6.13_22049_treechop-f153ac423f61-20210909-131357.mp4\r\n6.12_102_Player245-f153ac423f61-20210819-150947.mp4 6.13_2204_Player188-f153ac423f61-20210729-163523.mp4\r\n6.12_103_Player245-f153ac423f61-20210819-151047.mp4 6.13_22050_treechop-f153ac423f61-20210909-131503.mp4\r\n6.12_104_Player249-b23562d7db12-20210817-212118.mp4 6.13_22051_treechop-f153ac423f61-20210909-131607.mp4\r\n6.12_105_Player249-b23562d7db12-20210817-212239.mp4 6.13_22052_treechop-f153ac423f61-20210909-131709.mp4\r\n6.12_106_Player249-b23562d7db12-20210817-212340.mp4 6.13_22053_treechop-f153ac423f61-20210909-131811.mp4\r\n6.12_107_Player249-b23562d7db12-20210817-212440.mp4 6.13_22054_treechop-f153ac423f61-20210909-131916.mp4\r\n6.12_108_Player249-b23562d7db12-20210817-212541.mp4 6.13_22055_treechop-f153ac423f61-20210909-132019.mp4\r\n6.12_109_Player249-b23562d7db12-20210817-212641.mp4 6.13_22056_treechop-f153ac423f61-20210909-132121.mp4\r\n6.12_110_Player249-b23562d7db12-20210817-212741.mp4 6.13_22057_treechop-f153ac423f61-20210909-132224.mp4\r\n6.12_111_Player249-b23562d7db12-20210817-212842.mp4 6.13_22058_treechop-f153ac423f61-20210909-132326.mp4\r\n6.12_112_Player249-b23562d7db12-20210817-212942.mp4 6.13_22059_treechop-f153ac423f61-20210909-132427.mp4\r\n6.12_113_Player249-b23562d7db12-20210817-213042.mp4 6.13_2205_Player188-f153ac423f61-20210729-163629.mp4\r\n6.12_114_Player249-b23562d7db12-20210817-213143.mp4 6.13_22060_treechop-f153ac423f61-20210909-132530.mp4\r\n6.12_115_Player249-f153ac423f61-20210817-212059.mp4 6.13_22061_treechop-f153ac423f61-20210909-132632.mp4\r\n6.12_116_Player254-f153ac423f61-20210812-101841.mp4 6.13_22062_treechop-f153ac423f61-20210909-132733.mp4\r\n6.12_117_Player321-f153ac423f61-20210907-150010.mp4 6.13_22063_treechop-f153ac423f61-20210909-132834.mp4\r\n6.12_118_Player377-207f1df5e835-20210813-175545.mp4 6.13_22064_treechop-f153ac423f61-20210909-132937.mp4\r\n6.12_119_Player377-f153ac423f61-20210813-174325.mp4 6.13_22065_treechop-f153ac423f61-20210909-133039.mp4\r\n6.12_120_Player377-f153ac423f61-20210813-174427.mp4 6.13_22066_treechop-f153ac423f61-20210909-133140.mp4\r\n6.12_121_Player377-f153ac423f61-20210813-174528.mp4 6.13_22067_treechop-f153ac423f61-20210909-133241.mp4\r\n6.12_122_Player377-f153ac423f61-20210813-174629.mp4 6.13_22068_treechop-f153ac423f61-20210909-133343.mp4\r\n6.12_123_Player377-f153ac423f61-20210813-174729.mp4 6.13_22069_treechop-f153ac423f61-20210909-133444.mp4\r\n6.12_124_Player377-f153ac423f61-20210813-174829.mp4 6.13_2206_Player188-f153ac423f61-20210729-163738.mp4\r\n6.12_125_Player377-f153ac423f61-20210813-174930.mp4 6.13_22070_treechop-f153ac423f61-20210909-133546.mp4\r\n6.12_126_Player377-f153ac423f61-20210813-175030.mp4 6.13_22071_treechop-f153ac423f61-20210909-133647.mp4\r\n6.12_127_Player377-f153ac423f61-20210813-175131.mp4 6.13_22072_treechop-f153ac423f61-20210909-133750.mp4\r\n6.12_128_Player377-f153ac423f61-20210813-175231.mp4 6.13_22073_treechop-f153ac423f61-20210909-133852.mp4\r\n6.12_129_Player377-f153ac423f61-20210813-175331.mp4 6.13_22074_treechop-f153ac423f61-20210909-133954.mp4\r\n6.12_130_Player377-f153ac423f61-20210813-175431.mp4 6.13_22075_treechop-f153ac423f61-20210909-134057.mp4\r\n6.12_131_Player377-f153ac423f61-20210813-175532.mp4 6.13_22076_treechop-f153ac423f61-20210909-134200.mp4\r\n6.12_132_Player391-f153ac423f61-20211008-174255.mp4 6.13_22077_treechop-f153ac423f61-20210909-134302.mp4\r\n6.12_133_Player391-f153ac423f61-20211008-174357.mp4 6.13_22078_treechop-f153ac423f61-20210909-134404.mp4\r\n6.12_134_Player391-f153ac423f61-20211008-174458.mp4 6.13_22079_treechop-f153ac423f61-20210909-134506.mp4\r\n6.12_135_Player391-f153ac423f61-20211008-174559.mp4 6.13_2207_Player188-f153ac423f61-20210729-163843.mp4\r\n6.12_136_Player391-f153ac423f61-20211008-174659.mp4 6.13_22080_treechop-f153ac423f61-20210909-134609.mp4\r\n6.12_137_Player391-f153ac423f61-20211008-174759.mp4 6.13_22081_treechop-f153ac423f61-20210909-134711.mp4\r\n6.12_138_Player391-f153ac423f61-20211008-174900.mp4 6.13_22082_treechop-f153ac423f61-20210909-134812.mp4\r\n6.12_139_Player391-f153ac423f61-20211008-175000.mp4 6.13_22083_treechop-f153ac423f61-20210909-134915.mp4\r\n6.12_140_Player391-f153ac423f61-20211008-175100.mp4 6.13_22084_treechop-f153ac423f61-20210909-135016.mp4\r\n6.12_141_Player391-f153ac423f61-20211008-175201.mp4 6.13_22085_treechop-f153ac423f61-20210909-135118.mp4\r\n6.12_142_Player391-f153ac423f61-20211008-175301.mp4 6.13_22086_treechop-f153ac423f61-20210909-135220.mp4\r\n6.12_143_Player391-f153ac423f61-20211008-175401.mp4 6.13_22087_treechop-f153ac423f61-20210909-135322.mp4\r\n6.12_144_Player391-f153ac423f61-20211008-175502.mp4 6.13_22088_treechop-f153ac423f61-20210909-135422.mp4\r\n6.12_145_Player391-f153ac423f61-20211008-175602.mp4 6.13_22089_treechop-f153ac423f61-20210909-135525.mp4\r\n6.12_146_Player391-f153ac423f61-20211008-175703.mp4 6.13_2208_Player188-f153ac423f61-20210729-164001.mp4\r\n6.12_147_Player391-f153ac423f61-20211008-175803.mp4 6.13_22090_treechop-f153ac423f61-20210909-211720.mp4\r\n6.12_148_Player391-f153ac423f61-20211008-175933.mp4 6.13_22091_treechop-f153ac423f61-20210909-211822.mp4\r\n6.12_149_Player391-f153ac423f61-20211008-180034.mp4 6.13_22092_treechop-f153ac423f61-20210909-211925.mp4\r\n6.12_150_Player391-f153ac423f61-20211008-180134.mp4 6.13_22093_treechop-f153ac423f61-20210909-212028.mp4\r\n6.12_151_Player391-f153ac423f61-20211008-180235.mp4 6.13_22094_treechop-f153ac423f61-20210909-212130.mp4\r\n6.12_152_Player391-f7a29f82bbf8-20211008-180247.mp4 6.13_22095_treechop-f153ac423f61-20210909-212234.mp4\r\n6.12_153_Player391-f7a29f82bbf8-20211008-180348.mp4 6.13_22096_treechop-f153ac423f61-20210909-212335.mp4\r\n6.12_154_Player391-f7a29f82bbf8-20211008-180448.mp4 6.13_22097_treechop-f153ac423f61-20210909-212438.mp4\r\n6.12_155_Player391-f7a29f82bbf8-20211008-180549.mp4 6.13_22098_treechop-f153ac423f61-20210909-212538.mp4\r\n6.12_156_Player391-f7a29f82bbf8-20211008-180649.mp4 6.13_22099_treechop-f153ac423f61-20210909-212643.mp4\r\n6.12_157_Player391-f7a29f82bbf8-20211008-180749.mp4 6.13_2209_Player188-f153ac423f61-20210729-164130.mp4\r\n6.12_158_Player391-f7a29f82bbf8-20211008-180850.mp4 6.13_220_Player108-f153ac423f61-20211207-105809.mp4\r\n6.12_159_Player391-f7a29f82bbf8-20211008-180950.mp4 6.13_22100_treechop-f153ac423f61-20210909-212747.mp4\r\n6.12_160_Player391-f7a29f82bbf8-20211008-181051.mp4 6.13_22101_treechop-f153ac423f61-20210909-212851.mp4\r\n6.12_161_Player391-f7a29f82bbf8-20211008-181151.mp4 6.13_22102_treechop-f153ac423f61-20210909-212953.mp4\r\n6.12_162_Player391-f7a29f82bbf8-20211008-181251.mp4 6.13_22103_treechop-f153ac423f61-20210909-213054.mp4\r\n6.12_163_Player391-f7a29f82bbf8-20211008-181359.mp4 6.13_22104_treechop-f153ac423f61-20210909-213157.mp4\r\n6.12_164_Player391-f7a29f82bbf8-20211008-181459.mp4 6.13_22105_treechop-f153ac423f61-20210909-213302.mp4\r\n6.12_165_Player391-f7a29f82bbf8-20211008-181600.mp4 6.13_22106_treechop-f153ac423f61-20210909-213406.mp4\r\n6.12_166_Player391-f7a29f82bbf8-20211008-181700.mp4 6.13_22107_treechop-f153ac423f61-20210909-213508.mp4\r\n6.12_167_Player391-f7a29f82bbf8-20211008-181800.mp4 6.13_22108_treechop-f153ac423f61-20210909-213609.mp4\r\n6.12_168_Player44-f153ac423f61-20210719-163910.mp4 6.13_22109_treechop-f153ac423f61-20210909-213711.mp4\r\n6.12_169_Player44-f153ac423f61-20210719-164011.mp4 6.13_2210_Player188-f153ac423f61-20210729-164300.mp4\r\n6.12_170_Player488-f153ac423f61-20210830-155106.mp4 6.13_22110_treechop-f153ac423f61-20210909-213813.mp4\r\n6.12_171_Player488-f153ac423f61-20210830-155208.mp4 6.13_22111_treechop-f153ac423f61-20210909-213914.mp4\r\n6.12_172_Player530-f153ac423f61-20210720-122724.mp4 6.13_22112_treechop-f153ac423f61-20210909-214015.mp4\r\n6.12_173_Player588-f153ac423f61-20210816-173534.mp4 6.13_22113_treechop-f153ac423f61-20210909-214115.mp4\r\n6.12_174_Player588-f153ac423f61-20210816-173637.mp4 6.13_22114_treechop-f153ac423f61-20210909-214217.mp4\r\n6.12_175_Player588-f153ac423f61-20210816-173737.mp4 6.13_22115_treechop-f153ac423f61-20210909-214318.mp4\r\n6.12_176_Player588-f153ac423f61-20210816-173838.mp4 6.13_22116_treechop-f153ac423f61-20210909-214419.mp4\r\n6.12_177_Player588-f153ac423f61-20210816-173938.mp4 6.13_22117_treechop-f153ac423f61-20210909-214520.mp4\r\n6.12_178_Player588-f153ac423f61-20210816-174039.mp4 6.13_22118_treechop-f153ac423f61-20210909-214621.mp4\r\n6.12_179_Player588-f153ac423f61-20210816-174140.mp4 6.13_22119_treechop-f153ac423f61-20210909-214723.mp4\r\n6.12_180_Player588-f153ac423f61-20210816-174241.mp4 6.13_2211_Player188-f153ac423f61-20210729-164431.mp4\r\n6.12_181_Player588-f153ac423f61-20210816-174341.mp4 6.13_22120_treechop-f153ac423f61-20210909-214824.mp4\r\n6.12_182_Player588-f153ac423f61-20210816-174442.mp4 6.13_22121_treechop-f153ac423f61-20210909-214927.mp4\r\n6.12_183_Player588-f153ac423f61-20210816-174542.mp4 6.13_22122_treechop-f153ac423f61-20210909-215029.mp4\r\n6.12_184_Player588-f153ac423f61-20210816-174643.mp4 6.13_22123_treechop-f153ac423f61-20210909-215130.mp4\r\n6.12_185_Player588-f153ac423f61-20210816-174743.mp4 6.13_22124_treechop-f153ac423f61-20210909-215231.mp4\r\n6.12_186_Player588-f153ac423f61-20210816-174843.mp4 6.13_22125_treechop-f153ac423f61-20210909-215334.mp4\r\n6.12_187_Player588-f153ac423f61-20210816-174943.mp4 6.13_22126_treechop-f153ac423f61-20210909-215438.mp4\r\n6.12_188_Player588-f153ac423f61-20210816-175044.mp4 6.13_22127_treechop-f153ac423f61-20210909-215542.mp4\r\n6.12_189_Player588-f153ac423f61-20210816-175144.mp4 6.13_22128_treechop-f153ac423f61-20210909-215646.mp4\r\n6.12_190_Player588-f153ac423f61-20210816-175244.mp4 6.13_22129_treechop-f153ac423f61-20210909-215746.mp4\r\n6.12_191_Player588-f153ac423f61-20210816-175345.mp4 6.13_2212_Player189-f153ac423f61-20210803-134340.mp4\r\n6.12_192_Player588-f153ac423f61-20210816-175445.mp4 6.13_22130_treechop-f153ac423f61-20210909-215846.mp4\r\n6.12_193_Player588-f153ac423f61-20210816-175545.mp4 6.13_22131_treechop-f153ac423f61-20210909-215948.mp4\r\n6.12_194_Player588-f153ac423f61-20210816-175645.mp4 6.13_22132_treechop-f153ac423f61-20210909-220052.mp4\r\n6.12_195_Player588-f153ac423f61-20210816-175746.mp4 6.13_22133_treechop-f153ac423f61-20210909-220157.mp4\r\n6.12_196_Player588-f153ac423f61-20210816-175846.mp4 6.13_22134_treechop-f153ac423f61-20210910-132737.mp4\r\n6.12_197_Player588-f153ac423f61-20210816-175946.mp4 6.13_22135_treechop-f153ac423f61-20210910-132850.mp4\r\n6.12_198_Player588-f153ac423f61-20210816-180046.mp4 6.13_22136_treechop-f153ac423f61-20210910-132952.mp4\r\n6.12_199_Player588-f153ac423f61-20210816-180147.mp4 6.13_22137_treechop-f153ac423f61-20210910-133053.mp4\r\n6.12_200_Player596-45686be776e9-20210813-130925.mp4 6.13_22138_treechop-f153ac423f61-20210910-133153.mp4\r\n6.12_201_Player596-45686be776e9-20210813-131057.mp4 6.13_22139_treechop-f153ac423f61-20210910-133254.mp4\r\n6.12_202_Player596-45686be776e9-20210813-131159.mp4 6.13_2213_Player189-f153ac423f61-20210803-134446.mp4\r\n6.12_203_Player596-45686be776e9-20210813-131300.mp4 6.13_22140_treechop-f153ac423f61-20210910-133356.mp4\r\n6.12_204_Player596-45686be776e9-20210813-131401.mp4 6.13_22141_treechop-f153ac423f61-20210910-133458.mp4\r\n6.12_205_Player596-d6fb584189d3-20210813-130829.mp4 6.13_22142_treechop-f153ac423f61-20210910-133602.mp4\r\n6.12_206_Player596-f153ac423f61-20210813-130320.mp4 6.13_22143_treechop-f153ac423f61-20210910-133706.mp4\r\n6.12_207_Player596-f153ac423f61-20210813-130422.mp4 6.13_22144_treechop-f153ac423f61-20210910-133813.mp4\r\n6.12_208_Player596-f153ac423f61-20210813-130523.mp4 6.13_22145_treechop-f153ac423f61-20210910-133917.mp4\r\n6.12_209_Player596-f153ac423f61-20210813-130624.mp4 6.13_22146_treechop-f153ac423f61-20210910-134059.mp4\r\n6.12_210_Player596-f153ac423f61-20210813-130724.mp4 6.13_22147_treechop-f153ac423f61-20210910-134201.mp4\r\n6.12_211_Player626-f153ac423f61-20210902-153044.mp4 6.13_22148_treechop-f153ac423f61-20210910-134304.mp4\r\n6.12_212_Player626-f153ac423f61-20210902-153226.mp4 6.13_22149_treechop-f153ac423f61-20210910-134405.mp4\r\n6.12_213_Player626-f153ac423f61-20210902-153326.mp4 6.13_2214_Player189-f153ac423f61-20210803-134547.mp4\r\n6.12_214_Player626-f153ac423f61-20210902-153427.mp4 6.13_22150_treechop-f153ac423f61-20210910-134507.mp4\r\n6.12_215_Player634-48dc488c310a-20210811-104855.mp4 6.13_22151_treechop-f153ac423f61-20210910-134609.mp4\r\n6.12_216_Player634-9e7763380404-20210811-105031.mp4 6.13_22152_treechop-f153ac423f61-20210910-134710.mp4\r\n6.12_217_Player634-f153ac423f61-20210811-104757.mp4 6.13_22153_treechop-f153ac423f61-20210910-134811.mp4\r\n6.12_218_Player656-f153ac423f61-20210825-171204.mp4 6.13_22154_treechop-f153ac423f61-20210910-134913.mp4\r\n6.12_219_Player656-f153ac423f61-20210825-171307.mp4 6.13_22155_treechop-f153ac423f61-20210910-135016.mp4\r\n6.12_220_Player656-f153ac423f61-20210825-171408.mp4 6.13_22156_treechop-f153ac423f61-20210910-135116.mp4\r\n6.12_221_Player656-f153ac423f61-20210825-171509.mp4 6.13_22157_treechop-f153ac423f61-20210910-135217.mp4\r\n6.12_222_Player656-f153ac423f61-20210825-171610.mp4 6.13_22158_treechop-f153ac423f61-20210910-135318.mp4\r\n6.12_223_Player656-f153ac423f61-20210825-171711.mp4 6.13_22159_treechop-f153ac423f61-20210910-135418.mp4\r\n6.12_224_Player656-f153ac423f61-20210825-171812.mp4 6.13_2215_Player189-f153ac423f61-20210803-134648.mp4\r\n6.12_225_Player656-f153ac423f61-20210825-171913.mp4 6.13_22160_treechop-f153ac423f61-20210910-135520.mp4\r\n6.12_226_Player690-f153ac423f61-20211006-145310.mp4 6.13_22161_treechop-f153ac423f61-20210910-135621.mp4\r\n6.12_227_Player690-f153ac423f61-20211006-145414.mp4 6.13_22162_treechop-f153ac423f61-20210910-135723.mp4\r\n6.12_228_Player73-f153ac423f61-20210817-135251.mp4 6.13_22163_treechop-f153ac423f61-20210910-135824.mp4\r\n6.12_229_Player764-96a9ca4a0370-20210901-171123.mp4 6.13_22164_treechop-f153ac423f61-20210910-135924.mp4\r\n6.12_230_Player764-f153ac423f61-20210901-165124.mp4 6.13_22165_treechop-f153ac423f61-20210910-140026.mp4\r\n6.12_231_Player764-f153ac423f61-20210901-165227.mp4 6.13_22166_treechop-f153ac423f61-20210910-182109.mp4\r\n6.12_232_Player764-f153ac423f61-20210901-165338.mp4 6.13_22167_treechop-f153ac423f61-20210910-182951.mp4\r\n6.12_233_Player764-f153ac423f61-20210901-165439.mp4 6.13_22168_treechop-f153ac423f61-20210910-184017.mp4\r\n6.12_234_Player764-f153ac423f61-20210901-165540.mp4 6.13_22169_treechop-f153ac423f61-20210910-185049.mp4\r\n6.12_235_Player764-f153ac423f61-20210901-165640.mp4 6.13_2216_Player189-f153ac423f61-20210803-134748.mp4\r\n6.12_236_Player764-f153ac423f61-20210901-165741.mp4 6.13_22170_treechop-f153ac423f61-20210910-190047.mp4\r\n6.12_237_Player764-f153ac423f61-20210901-165843.mp4 6.13_22171_treechop-f153ac423f61-20210910-191213.mp4\r\n6.12_238_Player764-f153ac423f61-20210901-165943.mp4 6.13_22172_treechop-f153ac423f61-20210910-192427.mp4\r\n6.12_239_Player764-f153ac423f61-20210901-170046.mp4 6.13_22173_treechop-f153ac423f61-20210910-193507.mp4\r\n6.12_240_Player764-f153ac423f61-20210901-170146.mp4 6.13_22174_treechop-f153ac423f61-20210910-194522.mp4\r\n6.12_241_Player764-f153ac423f61-20210901-170247.mp4 6.13_22175_treechop-f153ac423f61-20210910-195937.mp4\r\n6.12_242_Player764-f153ac423f61-20210901-170355.mp4 6.13_22176_treechop-f153ac423f61-20210911-095850.mp4\r\n6.12_243_Player764-f153ac423f61-20210901-170455.mp4 6.13_22177_treechop-f153ac423f61-20210911-101831.mp4\r\n6.12_244_Player764-f153ac423f61-20210901-170556.mp4 6.13_22178_treechop-f153ac423f61-20210911-121601.mp4\r\n6.12_245_Player764-f153ac423f61-20210901-170656.mp4 6.13_22179_treechop-f153ac423f61-20210911-122436.mp4\r\n6.12_246_Player764-f153ac423f61-20210901-170756.mp4 6.13_2217_Player189-f153ac423f61-20210803-134849.mp4\r\n6.12_247_Player764-f153ac423f61-20210901-170857.mp4 6.13_22180_treechop-f153ac423f61-20210911-123606.mp4\r\n6.12_248_Player764-f153ac423f61-20210901-170957.mp4 6.13_22181_treechop-f153ac423f61-20210911-124858.mp4\r\n6.12_249_Player764-f153ac423f61-20210901-171058.mp4 6.13_22182_treechop-f153ac423f61-20210911-130252.mp4\r\n6.12_250_Player816-f153ac423f61-20210819-163946.mp4 6.13_22183_treechop-f153ac423f61-20210911-131357.mp4\r\n6.12_251_Player816-f153ac423f61-20210819-164047.mp4 6.13_22184_treechop-f153ac423f61-20210911-214757.mp4\r\n6.12_252_Player816-f153ac423f61-20210819-164148.mp4 6.13_22185_treechop-f153ac423f61-20210911-214902.mp4\r\n6.12_253_Player816-f153ac423f61-20210819-164248.mp4 6.13_22186_treechop-f153ac423f61-20210911-215005.mp4\r\n6.12_254_Player816-f153ac423f61-20210819-164349.mp4 6.13_22187_treechop-f153ac423f61-20210911-215107.mp4\r\n6.12_255_Player816-f153ac423f61-20210819-164450.mp4 6.13_22188_treechop-f153ac423f61-20210911-215208.mp4\r\n6.12_256_Player816-f153ac423f61-20210819-164550.mp4 6.13_22189_treechop-f153ac423f61-20210911-215311.mp4\r\n6.12_257_Player816-f153ac423f61-20210819-164651.mp4 6.13_2218_Player189-f153ac423f61-20210803-134951.mp4\r\n6.12_258_Player816-f153ac423f61-20210819-164751.mp4 6.13_22190_treechop-f153ac423f61-20210911-215416.mp4\r\n6.12_259_Player816-f153ac423f61-20210819-164924.mp4 6.13_22191_treechop-f153ac423f61-20210911-215522.mp4\r\n6.12_260_Player816-f153ac423f61-20210819-165025.mp4 6.13_22192_treechop-f153ac423f61-20210911-215628.mp4\r\n6.12_261_Player816-f153ac423f61-20210819-165148.mp4 6.13_22193_treechop-f153ac423f61-20210911-215734.mp4\r\n6.12_262_Player816-f153ac423f61-20210819-165248.mp4 6.13_22194_treechop-f153ac423f61-20210911-215836.mp4\r\n6.12_263_Player816-f153ac423f61-20210819-165348.mp4 6.13_22195_treechop-f153ac423f61-20210911-215939.mp4\r\n6.12_264_Player816-f153ac423f61-20210819-165449.mp4 6.13_22196_treechop-f153ac423f61-20210911-220041.mp4\r\n6.12_265_Player816-f153ac423f61-20210819-165549.mp4 6.13_22197_treechop-f153ac423f61-20210911-220142.mp4\r\n6.12_266_Player816-f153ac423f61-20210819-165650.mp4 6.13_22198_treechop-f153ac423f61-20210911-220244.mp4\r\n6.12_267_Player816-f153ac423f61-20210819-165750.mp4 6.13_22199_treechop-f153ac423f61-20210911-220345.mp4\r\n6.12_268_Player816-f153ac423f61-20210819-165850.mp4 6.13_2219_Player189-f153ac423f61-20210803-135053.mp4\r\n6.12_269_Player816-f153ac423f61-20210819-165951.mp4 6.13_221_Player108-f153ac423f61-20211207-105925.mp4\r\n6.12_270_Player816-f153ac423f61-20210819-170051.mp4 6.13_22200_treechop-f153ac423f61-20210911-220449.mp4\r\n6.12_271_Player816-f153ac423f61-20210819-170151.mp4 6.13_22201_treechop-f153ac423f61-20210911-220553.mp4\r\n6.12_272_Player816-f153ac423f61-20210819-170251.mp4 6.13_22202_treechop-f153ac423f61-20210911-220656.mp4\r\n6.12_273_Player816-f153ac423f61-20210819-170352.mp4 6.13_22203_treechop-f153ac423f61-20210911-220800.mp4\r\n6.12_274_Player816-f153ac423f61-20210819-170452.mp4 6.13_22204_treechop-f153ac423f61-20210911-220902.mp4\r\n6.12_275_Player816-f153ac423f61-20210819-170552.mp4 6.13_22205_treechop-f153ac423f61-20210911-221007.mp4\r\n6.12_276_Player816-f153ac423f61-20210819-170653.mp4 6.13_22206_treechop-f153ac423f61-20210911-221110.mp4\r\n6.12_277_Player816-f153ac423f61-20210819-170753.mp4 6.13_22207_treechop-f153ac423f61-20210911-221212.mp4\r\n6.12_278_Player816-f153ac423f61-20210819-170853.mp4 6.13_22208_treechop-f153ac423f61-20210911-221315.mp4\r\n6.12_279_Player816-f153ac423f61-20210819-170954.mp4 6.13_22209_treechop-f153ac423f61-20210911-221417.mp4\r\n6.12_280_Player816-f153ac423f61-20210819-171055.mp4 6.13_2220_Player189-f153ac423f61-20210803-135154.mp4\r\n6.12_281_Player816-f153ac423f61-20210819-171156.mp4 6.13_22210_treechop-f153ac423f61-20210911-221521.mp4\r\n6.12_282_Player864-f153ac423f61-20210913-152434.mp4 6.13_22211_treechop-f153ac423f61-20210911-221623.mp4\r\n6.12_283_Player864-f153ac423f61-20210913-152536.mp4 6.13_22212_treechop-f153ac423f61-20210911-221727.mp4\r\n6.12_284_Player881-f153ac423f61-20211018-142723.mp4 6.13_22213_treechop-f153ac423f61-20210911-221828.mp4\r\n6.12_285_Player881-f153ac423f61-20211018-142825.mp4 6.13_22214_treechop-f153ac423f61-20210911-221931.mp4\r\n6.12_286_Player881-f153ac423f61-20211018-142926.mp4 6.13_22215_treechop-f153ac423f61-20210911-222031.mp4\r\n6.12_287_Player881-f153ac423f61-20211018-143027.mp4 6.13_22216_treechop-f153ac423f61-20210911-222132.mp4\r\n6.12_288_Player881-f153ac423f61-20211018-143127.mp4 6.13_22217_treechop-f153ac423f61-20210911-222233.mp4\r\n6.12_289_Player881-f153ac423f61-20211018-143227.mp4 6.13_22218_treechop-f153ac423f61-20210911-222336.mp4\r\n6.12_290_Player881-f153ac423f61-20211018-143328.mp4 6.13_22219_treechop-f153ac423f61-20210911-222437.mp4\r\n6.12_291_Player881-f153ac423f61-20211018-143428.mp4 6.13_2221_Player189-f153ac423f61-20210803-135255.mp4\r\n6.12_292_Player881-f153ac423f61-20211018-143529.mp4 6.13_22220_treechop-f153ac423f61-20210911-222539.mp4\r\n6.12_293_Player881-f153ac423f61-20211018-143629.mp4 6.13_22221_treechop-f153ac423f61-20210911-222643.mp4\r\n6.12_294_Player881-f153ac423f61-20211018-143730.mp4 6.13_22222_treechop-f153ac423f61-20210911-222749.mp4\r\n6.12_295_Player881-f153ac423f61-20211018-143830.mp4 6.13_22223_treechop-f153ac423f61-20210911-222851.mp4\r\n6.12_296_Player881-f153ac423f61-20211018-143931.mp4 6.13_22224_treechop-f153ac423f61-20210911-222953.mp4\r\n6.12_297_Player881-f153ac423f61-20211018-144031.mp4 6.13_22225_treechop-f153ac423f61-20210911-223058.mp4\r\n6.12_298_Player881-f153ac423f61-20211018-144131.mp4 6.13_22226_treechop-f153ac423f61-20210911-223202.mp4\r\n6.12_299_Player881-f153ac423f61-20211018-144421.mp4 6.13_22227_treechop-f153ac423f61-20210911-223308.mp4\r\n6.12_300_Player881-f153ac423f61-20211018-144522.mp4 6.13_22228_treechop-f153ac423f61-20210911-223410.mp4\r\n6.12_301_Player881-f153ac423f61-20211018-144622.mp4 6.13_22229_treechop-f153ac423f61-20210911-223515.mp4\r\n6.12_302_Player881-f153ac423f61-20211018-144722.mp4 6.13_2222_Player189-f153ac423f61-20210803-135356.mp4\r\n6.12_303_Player881-f153ac423f61-20211018-144823.mp4 6.13_22230_treechop-f153ac423f61-20210911-223619.mp4\r\n6.12_304_Player881-f153ac423f61-20211018-144923.mp4 6.13_22231_treechop-f153ac423f61-20210911-223723.mp4\r\n6.12_305_Player881-f153ac423f61-20211018-145024.mp4 6.13_22232_treechop-f153ac423f61-20210911-223826.mp4\r\n6.12_306_Player881-f153ac423f61-20211018-145124.mp4 6.13_22233_treechop-f153ac423f61-20210911-223929.mp4\r\n6.12_307_Player881-f153ac423f61-20211018-145225.mp4 6.13_22234_treechop-f153ac423f61-20210911-224040.mp4\r\n6.12_308_Player881-f153ac423f61-20211018-145327.mp4 6.13_22235_treechop-f153ac423f61-20210911-224150.mp4\r\n6.12_309_Player881-f153ac423f61-20211018-145428.mp4 6.13_22236_treechop-f153ac423f61-20210911-224255.mp4\r\n6.12_310_Player881-f153ac423f61-20211018-145528.mp4 6.13_22237_treechop-f153ac423f61-20210911-224358.mp4\r\n6.12_311_Player881-f153ac423f61-20211018-155331.mp4 6.13_22238_treechop-f153ac423f61-20210911-224459.mp4\r\n6.12_312_Player881-f153ac423f61-20211018-155432.mp4 6.13_22239_treechop-f153ac423f61-20210911-224603.mp4\r\n6.12_313_Player899-f153ac423f61-20210907-190250.mp4 6.13_2223_Player189-f153ac423f61-20210803-135457.mp4\r\n6.12_314_Player899-f153ac423f61-20210907-190352.mp4 6.13_22240_treechop-f153ac423f61-20210911-224705.mp4\r\n6.12_315_Player899-f153ac423f61-20210907-190453.mp4 6.13_22241_treechop-f153ac423f61-20210911-224831.mp4\r\n6.12_316_Player899-f153ac423f61-20210907-190554.mp4 6.13_22242_treechop-f153ac423f61-20210911-225003.mp4\r\n6.12_317_Player899-f153ac423f61-20210907-190803.mp4 6.13_22243_treechop-f153ac423f61-20210911-225136.mp4\r\n6.12_318_Player899-f153ac423f61-20210907-190904.mp4 6.13_22244_treechop-f153ac423f61-20210911-225319.mp4\r\n6.12_319_Player899-f153ac423f61-20210907-191004.mp4 6.13_22245_treechop-f153ac423f61-20210911-225455.mp4\r\n6.12_320_Player899-f153ac423f61-20210907-191104.mp4 6.13_22246_treechop-f153ac423f61-20210911-225604.mp4\r\n6.12_321_Player899-f153ac423f61-20210907-191205.mp4 6.13_22247_treechop-f153ac423f61-20210911-225726.mp4\r\n6.12_322_Player899-f153ac423f61-20210907-191305.mp4 6.13_22248_treechop-f153ac423f61-20210911-225829.mp4\r\n6.12_323_Player899-f153ac423f61-20210907-191406.mp4 6.13_22249_treechop-f153ac423f61-20210911-225940.mp4\r\n6.12_324_Player989-f153ac423f61-20210728-090941.mp4 6.13_2224_Player189-f153ac423f61-20210803-135559.mp4\r\n6.13_001_Player0-f153ac423f61-20211118-163849.mp4 6.13_22250_treechop-f153ac423f61-20210911-230041.mp4\r\n6.13_002_Player1-26ca25b7fefc-20210905-152132.mp4 6.13_22251_treechop-f153ac423f61-20210911-230142.mp4\r\n6.13_003_Player1-26ca25b7fefc-20210905-152300.mp4 6.13_22252_treechop-f153ac423f61-20210911-230244.mp4\r\n6.13_004_Player1-26ca25b7fefc-20210905-152410.mp4 6.13_22253_treechop-f153ac423f61-20210911-230347.mp4\r\n6.13_005_Player1-26ca25b7fefc-20210905-152516.mp4 6.13_22254_treechop-f153ac423f61-20210911-230449.mp4\r\n6.13_006_Player1-26ca25b7fefc-20210905-152624.mp4 6.13_22255_treechop-f153ac423f61-20210912-100746.mp4\r\n6.13_007_Player1-26ca25b7fefc-20210905-152742.mp4 6.13_22256_treechop-f153ac423f61-20210912-100853.mp4\r\n6.13_008_Player1-26ca25b7fefc-20210905-153951.mp4 6.13_22257_treechop-f153ac423f61-20210912-100956.mp4\r\n6.13_009_Player1-26ca25b7fefc-20210905-154104.mp4 6.13_22258_treechop-f153ac423f61-20210912-101103.mp4\r\n6.13_010_Player1-26ca25b7fefc-20210905-154217.mp4 6.13_22259_treechop-f153ac423f61-20210912-101204.mp4\r\n6.13_011_Player1-26ca25b7fefc-20210905-154329.mp4 6.13_2225_Player189-f153ac423f61-20210803-135700.mp4\r\n6.13_012_Player1-26ca25b7fefc-20210905-154440.mp4 6.13_22260_treechop-f153ac423f61-20210912-101306.mp4\r\n6.13_013_Player1-26ca25b7fefc-20210905-154555.mp4 6.13_22261_treechop-f153ac423f61-20210912-101407.mp4\r\n6.13_014_Player1-26ca25b7fefc-20210905-154703.mp4 6.13_22262_treechop-f153ac423f61-20210912-101509.mp4\r\n6.13_015_Player1-26ca25b7fefc-20210905-154809.mp4 6.13_22263_treechop-f153ac423f61-20210912-101610.mp4\r\n6.13_016_Player1-26ca25b7fefc-20210905-154916.mp4 6.13_22264_treechop-f153ac423f61-20210912-101711.mp4\r\n6.13_017_Player1-26ca25b7fefc-20210905-155022.mp4 6.13_22265_treechop-f153ac423f61-20210912-101813.mp4\r\n6.13_018_Player1-26ca25b7fefc-20210905-155129.mp4 6.13_22266_treechop-f153ac423f61-20210912-105041.mp4\r\n6.13_019_Player1-26ca25b7fefc-20210905-155236.mp4 6.13_22267_treechop-f153ac423f61-20210912-105148.mp4\r\n6.13_020_Player1-26ca25b7fefc-20210905-155342.mp4 6.13_22268_treechop-f153ac423f61-20210912-105253.mp4\r\n6.13_021_Player1-26ca25b7fefc-20210905-155448.mp4 6.13_22269_treechop-f153ac423f61-20210912-105357.mp4\r\n6.13_022_Player1-26ca25b7fefc-20210905-155554.mp4 6.13_2226_Player189-f153ac423f61-20210803-135800.mp4\r\n6.13_023_Player1-26ca25b7fefc-20210905-155700.mp4 6.13_22270_treechop-f153ac423f61-20210912-105459.mp4\r\n6.13_024_Player1-26ca25b7fefc-20210905-155809.mp4 6.13_22271_treechop-f153ac423f61-20210912-105601.mp4\r\n6.13_025_Player1-26ca25b7fefc-20210905-155918.mp4 6.13_22272_treechop-f153ac423f61-20210912-105702.mp4\r\n6.13_026_Player1-26ca25b7fefc-20210905-160028.mp4 6.13_22273_treechop-f153ac423f61-20210912-105803.mp4\r\n6.13_027_Player1-26ca25b7fefc-20210905-160136.mp4 6.13_22274_treechop-f153ac423f61-20210912-105904.mp4\r\n6.13_028_Player1-26ca25b7fefc-20210905-160242.mp4 6.13_22275_treechop-f153ac423f61-20210912-110005.mp4\r\n6.13_029_Player1-26ca25b7fefc-20210905-160354.mp4 6.13_22276_treechop-f153ac423f61-20210912-110106.mp4\r\n6.13_030_Player1-26ca25b7fefc-20210905-160507.mp4 6.13_22277_treechop-f153ac423f61-20210912-110209.mp4\r\n6.13_031_Player1-5bdc37945330-20210905-150903.mp4 6.13_22278_treechop-f153ac423f61-20210912-110313.mp4\r\n6.13_032_Player1-5bdc37945330-20210905-151014.mp4 6.13_22279_treechop-f153ac423f61-20210912-110418.mp4\r\n6.13_033_Player1-97a3810c08c7-20210905-124610.mp4 6.13_2227_Player189-f153ac423f61-20210803-135901.mp4\r\n6.13_034_Player1-97a3810c08c7-20210905-124728.mp4 6.13_22280_treechop-f153ac423f61-20210912-110522.mp4\r\n6.13_035_Player1-97a3810c08c7-20210905-124843.mp4 6.13_22281_treechop-f153ac423f61-20210912-110627.mp4\r\n6.13_036_Player1-bc283b8bcb61-20210905-160643.mp4 6.13_22282_treechop-f153ac423f61-20210912-110730.mp4\r\n6.13_037_Player1-bc283b8bcb61-20210905-160756.mp4 6.13_22283_treechop-f153ac423f61-20210912-110835.mp4\r\n6.13_038_Player1-bc283b8bcb61-20210905-161219.mp4 6.13_22284_treechop-f153ac423f61-20210912-110939.mp4\r\n6.13_039_Player1-bc283b8bcb61-20210905-161326.mp4 6.13_22285_treechop-f153ac423f61-20210912-111050.mp4\r\n6.13_040_Player1-bc283b8bcb61-20210905-161432.mp4 6.13_22286_treechop-f153ac423f61-20210912-111157.mp4\r\n6.13_041_Player1-bc283b8bcb61-20210905-161536.mp4 6.13_22287_treechop-f153ac423f61-20210912-111303.mp4\r\n6.13_042_Player1-bc283b8bcb61-20210905-161639.mp4 6.13_22288_treechop-f153ac423f61-20210912-111409.mp4\r\n6.13_043_Player1-bc283b8bcb61-20210905-161744.mp4 6.13_22289_treechop-f153ac423f61-20210912-111510.mp4\r\n6.13_044_Player1-bc283b8bcb61-20210905-161850.mp4 6.13_2228_Player189-f153ac423f61-20210803-140002.mp4\r\n6.13_045_Player1-bc283b8bcb61-20210905-161954.mp4 6.13_22290_treechop-f153ac423f61-20210912-111613.mp4\r\n6.13_046_Player1-bc283b8bcb61-20210905-162100.mp4 6.13_22291_treechop-f153ac423f61-20210912-111719.mp4\r\n6.13_047_Player1-bc283b8bcb61-20210905-162211.mp4 6.13_22292_treechop-f153ac423f61-20210912-111821.mp4\r\n6.13_048_Player1-bc283b8bcb61-20210905-162321.mp4 6.13_22293_treechop-f153ac423f61-20210912-111924.mp4\r\n6.13_049_Player1-bc283b8bcb61-20210905-162432.mp4 6.13_22294_treechop-f153ac423f61-20210912-112038.mp4\r\n6.13_050_Player1-bc283b8bcb61-20210905-162542.mp4 6.13_22295_treechop-f153ac423f61-20210912-112146.mp4\r\n6.13_051_Player1-bc283b8bcb61-20210905-162644.mp4 6.13_22296_treechop-f153ac423f61-20210912-112248.mp4\r\n6.13_052_Player1-bc283b8bcb61-20210905-162749.mp4 6.13_22297_treechop-f153ac423f61-20210912-112351.mp4\r\n6.13_053_Player1-bc283b8bcb61-20210905-162857.mp4 6.13_22298_treechop-f153ac423f61-20210912-112453.mp4\r\n6.13_054_Player1-bc283b8bcb61-20210905-163010.mp4 6.13_22299_treechop-f153ac423f61-20210912-112557.mp4\r\n6.13_055_Player1-bc283b8bcb61-20210905-163119.mp4 6.13_2229_Player189-f153ac423f61-20210803-140104.mp4\r\n6.13_056_Player1-bc283b8bcb61-20210905-163225.mp4 6.13_222_Player108-f153ac423f61-20211207-110030.mp4\r\n6.13_057_Player1-bc283b8bcb61-20210905-163337.mp4 6.13_22300_treechop-f153ac423f61-20210912-112658.mp4\r\n6.13_058_Player1-bc283b8bcb61-20210905-163448.mp4 6.13_22301_treechop-f153ac423f61-20210912-112759.mp4\r\n6.13_059_Player1-bc283b8bcb61-20210905-163555.mp4 6.13_22302_treechop-f153ac423f61-20210912-112903.mp4\r\n6.13_060_Player1-bc283b8bcb61-20210905-163704.mp4 6.13_22303_treechop-f153ac423f61-20210912-113003.mp4\r\n6.13_061_Player1-bc283b8bcb61-20210905-163810.mp4 6.13_22304_treechop-f153ac423f61-20210912-113106.mp4\r\n6.13_062_Player1-bc283b8bcb61-20210905-163919.mp4 6.13_22305_treechop-f153ac423f61-20210912-113208.mp4\r\n6.13_063_Player1-bc283b8bcb61-20210905-164025.mp4 6.13_22306_treechop-f153ac423f61-20210912-113309.mp4\r\n6.13_064_Player1-bc283b8bcb61-20210905-164142.mp4 6.13_22307_treechop-f153ac423f61-20210912-113410.mp4\r\n6.13_065_Player1-d11324222908-20210905-125114.mp4 6.13_22308_treechop-f153ac423f61-20210912-113511.mp4\r\n6.13_066_Player1-d11324222908-20210905-125231.mp4 6.13_22309_treechop-f153ac423f61-20210912-113614.mp4\r\n6.13_067_Player1-d11324222908-20210905-125351.mp4 6.13_2230_Player189-f153ac423f61-20210803-140206.mp4\r\n6.13_068_Player1-d11324222908-20210905-125511.mp4 6.13_22310_treechop-f153ac423f61-20210912-113717.mp4\r\n6.13_069_Player1-d11324222908-20210905-125629.mp4 6.13_22311_treechop-f153ac423f61-20210912-113819.mp4\r\n6.13_070_Player1-d11324222908-20210905-125745.mp4 6.13_22312_treechop-f153ac423f61-20210912-113921.mp4\r\n6.13_071_Player1-d11324222908-20210905-125853.mp4 6.13_22313_treechop-f153ac423f61-20210912-114024.mp4\r\n6.13_072_Player1-d11324222908-20210905-125959.mp4 6.13_22314_treechop-f153ac423f61-20210912-114124.mp4\r\n6.13_073_Player1-d11324222908-20210905-130342.mp4 6.13_22315_treechop-f153ac423f61-20210912-114226.mp4\r\n6.13_074_Player1-d11324222908-20210905-130525.mp4 6.13_22316_treechop-f153ac423f61-20210912-114327.mp4\r\n6.13_075_Player1-d11324222908-20210905-130707.mp4 6.13_22317_treechop-f153ac423f61-20210912-114427.mp4\r\n6.13_076_Player1-d11324222908-20210905-130814.mp4 6.13_22318_treechop-f153ac423f61-20210912-114528.mp4\r\n6.13_077_Player1-d11324222908-20210905-130924.mp4 6.13_22319_treechop-f153ac423f61-20210912-114631.mp4\r\n6.13_078_Player1-d11324222908-20210905-131033.mp4 6.13_2231_Player189-f153ac423f61-20210803-140308.mp4\r\n6.13_079_Player1-e7450ecc15b1-20210905-131125.mp4 6.13_22320_treechop-f153ac423f61-20210912-114736.mp4\r\n6.13_080_Player1-e7450ecc15b1-20210905-131234.mp4 6.13_22321_treechop-f153ac423f61-20210912-114837.mp4\r\n6.13_081_Player1-e7450ecc15b1-20210905-131342.mp4 6.13_22322_treechop-f153ac423f61-20210912-114939.mp4\r\n6.13_082_Player1-e7450ecc15b1-20210905-131446.mp4 6.13_22323_treechop-f153ac423f61-20210912-115042.mp4\r\n6.13_083_Player1-f153ac423f61-20210905-122557.mp4 6.13_22324_treechop-f153ac423f61-20210912-115145.mp4\r\n6.13_084_Player1-f153ac423f61-20210905-122808.mp4 6.13_22325_treechop-f153ac423f61-20210912-115247.mp4\r\n6.13_085_Player1-f153ac423f61-20210905-122920.mp4 6.13_22326_treechop-f153ac423f61-20210912-115349.mp4\r\n6.13_086_Player1-f153ac423f61-20210905-123034.mp4 6.13_22327_treechop-f153ac423f61-20210912-115450.mp4\r\n6.13_087_Player1-f153ac423f61-20210905-123151.mp4 6.13_22328_treechop-f153ac423f61-20210912-115552.mp4\r\n6.13_088_Player1-f153ac423f61-20210905-123307.mp4 6.13_22329_treechop-f153ac423f61-20210912-115703.mp4\r\n6.13_089_Player1-f153ac423f61-20210905-123424.mp4 6.13_2232_Player189-f153ac423f61-20210803-140409.mp4\r\n6.13_090_Player1-f153ac423f61-20210905-123537.mp4 6.13_22330_treechop-f153ac423f61-20210912-115806.mp4\r\n6.13_091_Player1-f153ac423f61-20210905-123651.mp4 6.13_22331_treechop-f153ac423f61-20210912-115907.mp4\r\n6.13_092_Player1-f153ac423f61-20210905-123804.mp4 6.13_22332_treechop-f153ac423f61-20210912-120008.mp4\r\n6.13_093_Player1-f153ac423f61-20210905-123915.mp4 6.13_22333_treechop-f153ac423f61-20210912-120108.mp4\r\n6.13_094_Player1-f153ac423f61-20210905-124026.mp4 6.13_22334_treechop-f153ac423f61-20210912-120211.mp4\r\n6.13_095_Player1-f153ac423f61-20210905-124140.mp4 6.13_22335_treechop-f153ac423f61-20210912-120314.mp4\r\n6.13_096_Player1-f153ac423f61-20210905-124254.mp4 6.13_22336_treechop-f153ac423f61-20210912-120424.mp4\r\n6.13_097_Player1-f153ac423f61-20210905-124407.mp4 6.13_22337_treechop-f153ac423f61-20210912-120525.mp4\r\n6.13_098_Player1-f153ac423f61-20210905-124525.mp4 6.13_22338_treechop-f153ac423f61-20210912-120627.mp4\r\n6.13_099_Player1-f153ac423f61-20210907-214144.mp4 6.13_22339_treechop-f153ac423f61-20210912-120728.mp4\r\n6.13_10000_Player507-bf10ea8b34b4-20210831-142953.mp4 6.13_2233_Player189-f153ac423f61-20210803-140509.mp4\r\n6.13_10001_Player507-bf10ea8b34b4-20210831-143058.mp4 6.13_22340_treechop-f153ac423f61-20210912-120830.mp4\r\n6.13_10002_Player507-bf10ea8b34b4-20210831-143158.mp4 6.13_22341_treechop-f153ac423f61-20210912-120931.mp4\r\n6.13_10003_Player507-bf10ea8b34b4-20210831-143259.mp4 6.13_22342_treechop-f153ac423f61-20210912-121032.mp4\r\n6.13_10004_Player507-bf10ea8b34b4-20210831-143359.mp4 6.13_22343_treechop-f153ac423f61-20210912-121132.mp4\r\n6.13_10005_Player507-bf10ea8b34b4-20210831-143500.mp4 6.13_22344_treechop-f153ac423f61-20210912-121233.mp4\r\n6.13_10006_Player507-bf10ea8b34b4-20210831-143600.mp4 6.13_22345_treechop-f153ac423f61-20210912-121335.mp4\r\n6.13_10007_Player507-bf10ea8b34b4-20210831-143701.mp4 6.13_22346_treechop-f153ac423f61-20210912-121436.mp4\r\n6.13_10008_Player507-bf10ea8b34b4-20210831-143802.mp4 6.13_22347_treechop-f153ac423f61-20210912-121537.mp4\r\n6.13_10009_Player507-bf10ea8b34b4-20210831-143903.mp4 6.13_22348_treechop-f153ac423f61-20210912-121638.mp4\r\n6.13_1000_Player128-f153ac423f61-20211212-191344.mp4 6.13_22349_treechop-f153ac423f61-20210912-121739.mp4\r\n6.13_10010_Player507-bf10ea8b34b4-20210831-144004.mp4 6.13_2234_Player189-f153ac423f61-20210803-140610.mp4\r\n6.13_10011_Player507-bf10ea8b34b4-20210831-144105.mp4 6.13_22350_treechop-f153ac423f61-20210912-121839.mp4\r\n6.13_10012_Player507-bf10ea8b34b4-20210831-144207.mp4 6.13_22351_treechop-f153ac423f61-20210912-121940.mp4\r\n6.13_10013_Player507-bf10ea8b34b4-20210831-144308.mp4 6.13_22352_treechop-f153ac423f61-20210912-122042.mp4\r\n6.13_10014_Player507-bf10ea8b34b4-20210831-144409.mp4 6.13_22353_treechop-f153ac423f61-20210912-122143.mp4\r\n6.13_10015_Player507-bf10ea8b34b4-20210831-144511.mp4 6.13_22354_treechop-f153ac423f61-20210912-122244.mp4\r\n6.13_10016_Player507-bf10ea8b34b4-20210831-144612.mp4 6.13_22355_treechop-f153ac423f61-20210912-122345.mp4\r\n6.13_10017_Player507-bf10ea8b34b4-20210831-144715.mp4 6.13_22356_treechop-f153ac423f61-20210912-122446.mp4\r\n6.13_10018_Player507-bf10ea8b34b4-20210831-144817.mp4 6.13_22357_treechop-f153ac423f61-20210912-122548.mp4\r\n6.13_10019_Player507-bf10ea8b34b4-20210831-144918.mp4 6.13_22358_treechop-f153ac423f61-20210912-122650.mp4\r\n6.13_1001_Player128-f153ac423f61-20211212-191445.mp4 6.13_22359_treechop-f153ac423f61-20210912-122750.mp4\r\n6.13_10020_Player507-bf10ea8b34b4-20210831-145021.mp4 6.13_2235_Player189-f153ac423f61-20210803-140711.mp4\r\n6.13_10021_Player507-bf10ea8b34b4-20210831-145139.mp4 6.13_22360_treechop-f153ac423f61-20210912-122851.mp4\r\n6.13_10022_Player507-bf10ea8b34b4-20210831-145250.mp4 6.13_22361_treechop-f153ac423f61-20210912-122952.mp4\r\n6.13_10023_Player507-bf10ea8b34b4-20210831-145424.mp4 6.13_22362_treechop-f153ac423f61-20210912-123053.mp4\r\n6.13_10024_Player507-f153ac423f61-20210831-133523.mp4 6.13_22363_treechop-f153ac423f61-20210912-123154.mp4\r\n6.13_10025_Player507-f153ac423f61-20210831-133625.mp4 6.13_22364_treechop-f153ac423f61-20210912-123254.mp4\r\n6.13_10026_Player507-f153ac423f61-20210831-133728.mp4 6.13_22365_treechop-f153ac423f61-20210912-123354.mp4\r\n6.13_10027_Player507-f153ac423f61-20210831-133836.mp4 6.13_22366_treechop-f153ac423f61-20210912-123455.mp4\r\n6.13_10028_Player507-f153ac423f61-20210831-133943.mp4 6.13_22367_treechop-f153ac423f61-20210912-123555.mp4\r\n6.13_10029_Player507-f153ac423f61-20210831-134046.mp4 6.13_22368_treechop-f153ac423f61-20210912-123656.mp4\r\n6.13_1002_Player128-f153ac423f61-20211212-191545.mp4 6.13_22369_treechop-f153ac423f61-20210912-123757.mp4\r\n6.13_10030_Player507-f153ac423f61-20210831-134147.mp4 6.13_2236_Player189-f153ac423f61-20210803-140811.mp4\r\n6.13_10031_Player507-f153ac423f61-20210831-134249.mp4 6.13_22370_treechop-f153ac423f61-20210912-123857.mp4\r\n6.13_10032_Player507-f153ac423f61-20210831-134356.mp4 6.13_22371_treechop-f153ac423f61-20210912-123959.mp4\r\n6.13_10033_Player507-f153ac423f61-20210831-134456.mp4 6.13_22372_treechop-f153ac423f61-20210912-124100.mp4\r\n6.13_10034_Player507-f153ac423f61-20210831-134557.mp4 6.13_22373_treechop-f153ac423f61-20210912-124201.mp4\r\n6.13_10035_Player507-f153ac423f61-20210831-134700.mp4 6.13_22374_treechop-f153ac423f61-20210912-124301.mp4\r\n6.13_10036_Player507-f153ac423f61-20210831-134807.mp4 6.13_22375_treechop-f153ac423f61-20210912-124402.mp4\r\n6.13_10037_Player507-f153ac423f61-20210831-134913.mp4 6.13_22376_treechop-f153ac423f61-20210912-124503.mp4\r\n6.13_10038_Player507-f153ac423f61-20210831-135021.mp4 6.13_22377_treechop-f153ac423f61-20210912-124604.mp4\r\n6.13_10039_Player507-f153ac423f61-20210831-135131.mp4 6.13_22378_treechop-f153ac423f61-20210912-124704.mp4\r\n6.13_1003_Player128-f153ac423f61-20211212-191645.mp4 6.13_22379_treechop-f153ac423f61-20210912-124805.mp4\r\n6.13_10040_Player507-f153ac423f61-20210831-135242.mp4 6.13_2237_Player189-f153ac423f61-20210803-140912.mp4\r\n6.13_10041_Player507-f153ac423f61-20210831-135359.mp4 6.13_22380_treechop-f153ac423f61-20210912-124906.mp4\r\n6.13_10042_Player507-f153ac423f61-20210831-135508.mp4 6.13_22381_treechop-f153ac423f61-20210912-125008.mp4\r\n6.13_10043_Player507-f153ac423f61-20210831-135618.mp4 6.13_22382_treechop-f153ac423f61-20210912-125109.mp4\r\n6.13_10044_Player51-f153ac423f61-20210813-173841.mp4 6.13_22383_treechop-f153ac423f61-20210912-125210.mp4\r\n6.13_10045_Player51-f153ac423f61-20210813-181330.mp4 6.13_22384_treechop-f153ac423f61-20210912-125311.mp4\r\n6.13_10046_Player51-f153ac423f61-20210813-184950.mp4 6.13_22385_treechop-f153ac423f61-20210912-125412.mp4\r\n6.13_10047_Player51-f153ac423f61-20210813-192320.mp4 6.13_22386_treechop-f153ac423f61-20210912-125513.mp4\r\n6.13_10048_Player51-f153ac423f61-20210813-195925.mp4 6.13_22387_treechop-f153ac423f61-20210912-125614.mp4\r\n6.13_10049_Player51-f153ac423f61-20210813-203456.mp4 6.13_22388_treechop-f153ac423f61-20210912-125715.mp4\r\n6.13_1004_Player128-f153ac423f61-20211212-191745.mp4 6.13_22389_treechop-f153ac423f61-20210912-125815.mp4\r\n6.13_10050_Player51-f153ac423f61-20210813-211318.mp4 6.13_2238_Player189-f153ac423f61-20210803-141012.mp4\r\n6.13_10051_Player51-f153ac423f61-20210813-214730.mp4 6.13_22390_treechop-f153ac423f61-20210912-125916.mp4\r\n6.13_10052_Player51-f153ac423f61-20210813-222008.mp4 6.13_22391_treechop-f153ac423f61-20210912-130017.mp4\r\n6.13_10053_Player51-f153ac423f61-20210813-225754.mp4 6.13_22392_treechop-f153ac423f61-20210912-130118.mp4\r\n6.13_10054_Player512-78dafa20428b-20211116-182550.mp4 6.13_22393_treechop-f153ac423f61-20210912-130219.mp4\r\n6.13_10055_Player512-78dafa20428b-20211116-182655.mp4 6.13_22394_treechop-f153ac423f61-20210912-184049.mp4\r\n6.13_10056_Player512-78dafa20428b-20211116-182758.mp4 6.13_22395_treechop-f153ac423f61-20210912-214425.mp4\r\n6.13_10057_Player512-78dafa20428b-20211116-182900.mp4 6.13_22396_treechop-f153ac423f61-20210912-214536.mp4\r\n6.13_10058_Player512-78dafa20428b-20211116-183002.mp4 6.13_22397_treechop-f153ac423f61-20210912-214637.mp4\r\n6.13_10059_Player512-78dafa20428b-20211116-183103.mp4 6.13_22398_treechop-f153ac423f61-20210912-214740.mp4\r\n6.13_1005_Player128-f153ac423f61-20211212-191846.mp4 6.13_22399_treechop-f153ac423f61-20210912-214841.mp4\r\n6.13_10060_Player512-78dafa20428b-20211116-183207.mp4 6.13_2239_Player189-f153ac423f61-20210803-141113.mp4\r\n6.13_10061_Player512-78dafa20428b-20211116-183311.mp4 6.13_223_Player108-f153ac423f61-20211207-110146.mp4\r\n6.13_10062_Player512-78dafa20428b-20211116-183412.mp4 6.13_22400_treechop-f153ac423f61-20210912-214954.mp4\r\n6.13_10063_Player512-78dafa20428b-20211116-183517.mp4 6.13_22401_treechop-f153ac423f61-20210912-215058.mp4\r\n6.13_10064_Player512-78dafa20428b-20211116-183624.mp4 6.13_22402_treechop-f153ac423f61-20210912-215200.mp4\r\n6.13_10065_Player512-78dafa20428b-20211116-183727.mp4 6.13_22403_treechop-f153ac423f61-20210912-215310.mp4\r\n6.13_10066_Player512-d9cf8609513f-20211116-183915.mp4 6.13_22404_treechop-f153ac423f61-20210912-215429.mp4\r\n6.13_10067_Player512-d9cf8609513f-20211116-184024.mp4 6.13_22405_treechop-f153ac423f61-20210912-215536.mp4\r\n6.13_10068_Player512-d9cf8609513f-20211116-184128.mp4 6.13_22406_treechop-f153ac423f61-20210912-215647.mp4\r\n6.13_10069_Player512-d9cf8609513f-20211116-184236.mp4 6.13_22407_treechop-f153ac423f61-20210912-215754.mp4\r\n6.13_1006_Player129-13ae0bb87eaa-20210803-155739.mp4 6.13_22408_treechop-f153ac423f61-20210912-215856.mp4\r\n6.13_10070_Player512-f153ac423f61-20211116-175146.mp4 6.13_22409_treechop-f153ac423f61-20210912-215958.mp4\r\n6.13_10071_Player512-f153ac423f61-20211116-175302.mp4 6.13_2240_Player189-f153ac423f61-20210803-141214.mp4\r\n6.13_10072_Player512-f153ac423f61-20211116-175425.mp4 6.13_22410_treechop-f153ac423f61-20210912-220102.mp4\r\n6.13_10073_Player512-f153ac423f61-20211116-175546.mp4 6.13_22411_treechop-f153ac423f61-20210912-220203.mp4\r\n6.13_10074_Player512-f153ac423f61-20211116-175656.mp4 6.13_22412_treechop-f153ac423f61-20210912-220304.mp4\r\n6.13_10075_Player512-f153ac423f61-20211116-175807.mp4 6.13_22413_treechop-f153ac423f61-20210912-220406.mp4\r\n6.13_10076_Player512-f153ac423f61-20211116-175919.mp4 6.13_22414_treechop-f153ac423f61-20210912-220507.mp4\r\n6.13_10077_Player512-f153ac423f61-20211116-180034.mp4 6.13_22415_treechop-f153ac423f61-20210912-220608.mp4\r\n6.13_10078_Player512-f153ac423f61-20211116-180151.mp4 6.13_22416_treechop-f153ac423f61-20210912-220708.mp4\r\n6.13_10079_Player512-f153ac423f61-20211116-180304.mp4 6.13_22417_treechop-f153ac423f61-20210912-220809.mp4\r\n6.13_1007_Player129-13ae0bb87eaa-20210803-162214.mp4 6.13_22418_treechop-f153ac423f61-20210912-220910.mp4\r\n6.13_10080_Player512-f153ac423f61-20211116-180423.mp4 6.13_22419_treechop-f153ac423f61-20210912-221011.mp4\r\n6.13_10081_Player512-f153ac423f61-20211116-180540.mp4 6.13_2241_Player189-f153ac423f61-20210803-141314.mp4\r\n6.13_10082_Player512-f153ac423f61-20211116-180706.mp4 6.13_22420_treechop-f153ac423f61-20210912-221112.mp4\r\n6.13_10083_Player512-f153ac423f61-20211116-180813.mp4 6.13_22421_treechop-f153ac423f61-20210912-221213.mp4\r\n6.13_10084_Player512-f153ac423f61-20211116-180918.mp4 6.13_22422_treechop-f153ac423f61-20210912-221314.mp4\r\n6.13_10085_Player512-f153ac423f61-20211116-181021.mp4 6.13_22423_treechop-f153ac423f61-20210912-221415.mp4\r\n6.13_10086_Player512-f153ac423f61-20211116-181127.mp4 6.13_22424_treechop-f153ac423f61-20210912-221516.mp4\r\n6.13_10087_Player512-f153ac423f61-20211116-181241.mp4 6.13_22425_treechop-f153ac423f61-20210912-221617.mp4\r\n6.13_10088_Player512-f153ac423f61-20211116-181356.mp4 6.13_22426_treechop-f153ac423f61-20210912-221719.mp4\r\n6.13_10089_Player512-f153ac423f61-20211116-181512.mp4 6.13_22427_treechop-f153ac423f61-20210912-221820.mp4\r\n6.13_1008_Player129-192489f25954-20210803-133102.mp4 6.13_22428_treechop-f153ac423f61-20210912-221921.mp4\r\n6.13_10090_Player512-f153ac423f61-20211116-181636.mp4 6.13_22429_treechop-f153ac423f61-20210912-222022.mp4\r\n6.13_10091_Player512-f153ac423f61-20211116-181805.mp4 6.13_2242_Player189-f153ac423f61-20210803-141414.mp4\r\n6.13_10092_Player512-f153ac423f61-20211116-181929.mp4 6.13_22430_treechop-f153ac423f61-20210912-222122.mp4\r\n6.13_10093_Player512-f153ac423f61-20211116-182053.mp4 6.13_22431_treechop-f153ac423f61-20210912-222223.mp4\r\n6.13_10094_Player512-f153ac423f61-20211116-182224.mp4 6.13_22432_treechop-f153ac423f61-20210912-222325.mp4\r\n6.13_10095_Player512-f153ac423f61-20211116-182405.mp4 6.13_22433_treechop-f153ac423f61-20210912-222427.mp4\r\n6.13_10096_Player514-f153ac423f61-20211024-124627.mp4 6.13_22434_treechop-f153ac423f61-20210912-222528.mp4\r\n6.13_10097_Player514-f153ac423f61-20211024-124817.mp4 6.13_22435_treechop-f153ac423f61-20210912-222630.mp4\r\n6.13_10098_Player514-f153ac423f61-20211024-124951.mp4 6.13_22436_treechop-f153ac423f61-20210912-222731.mp4\r\n6.13_10099_Player514-f153ac423f61-20211024-125132.mp4 6.13_22437_treechop-f153ac423f61-20210912-222833.mp4\r\n6.13_1009_Player129-192489f25954-20210803-135911.mp4 6.13_22438_treechop-f153ac423f61-20210912-222935.mp4\r\n",,terminal_output +640,6808915,"TERMINAL",0,0,"6.13_100_Player1-f153ac423f61-20210907-214731.mp4 6.13_22439_treechop-f153ac423f61-20210912-223038.mp4\r\n6.13_10100_Player514-f153ac423f61-20211024-125311.mp4 6.13_2243_Player189-f153ac423f61-20210803-141515.mp4\r\n6.13_10101_Player514-f153ac423f61-20211024-125459.mp4 6.13_22440_treechop-f153ac423f61-20210912-223141.mp4\r\n6.13_10102_Player514-f153ac423f61-20211024-125651.mp4 6.13_22441_treechop-f153ac423f61-20210912-223242.mp4\r\n6.13_10103_Player514-f153ac423f61-20211024-125827.mp4 6.13_22442_treechop-f153ac423f61-20210913-121214.mp4\r\n6.13_10104_Player514-f153ac423f61-20211024-130001.mp4 6.13_22443_treechop-f153ac423f61-20210913-121319.mp4\r\n6.13_10105_Player514-f153ac423f61-20211024-130131.mp4 6.13_22444_treechop-f153ac423f61-20210913-121423.mp4\r\n6.13_10106_Player514-f153ac423f61-20211024-130310.mp4 6.13_22445_treechop-f153ac423f61-20210913-121526.mp4\r\n6.13_10107_Player514-f153ac423f61-20211024-130452.mp4 6.13_22446_treechop-f153ac423f61-20210913-121630.mp4\r\n6.13_10108_Player514-f153ac423f61-20211024-130629.mp4 6.13_22447_treechop-f153ac423f61-20210913-121733.mp4\r\n6.13_10109_Player514-f153ac423f61-20211024-130809.mp4 6.13_22448_treechop-f153ac423f61-20210913-121837.mp4\r\n6.13_1010_Player129-192489f25954-20210803-142740.mp4 6.13_22449_treechop-f153ac423f61-20210913-121938.mp4\r\n6.13_10110_Player514-f153ac423f61-20211024-130946.mp4 6.13_2244_Player189-f153ac423f61-20210803-141617.mp4\r\n6.13_10111_Player514-f153ac423f61-20211024-131111.mp4 6.13_22450_treechop-f153ac423f61-20210913-122040.mp4\r\n6.13_10112_Player514-f153ac423f61-20211024-131252.mp4 6.13_22451_treechop-f153ac423f61-20210913-122143.mp4\r\n6.13_10113_Player514-f153ac423f61-20211024-131437.mp4 6.13_22452_treechop-f153ac423f61-20210913-122247.mp4\r\n6.13_10114_Player514-f153ac423f61-20211024-131629.mp4 6.13_22453_treechop-f153ac423f61-20210913-122349.mp4\r\n6.13_10115_Player514-f153ac423f61-20211024-131826.mp4 6.13_22454_treechop-f153ac423f61-20210913-150243.mp4\r\n6.13_10116_Player514-f153ac423f61-20211024-132010.mp4 6.13_22455_treechop-f153ac423f61-20210913-151326.mp4\r\n6.13_10117_Player514-f153ac423f61-20211024-132200.mp4 6.13_22456_treechop-f153ac423f61-20210913-152533.mp4\r\n6.13_10118_Player514-f153ac423f61-20211024-132347.mp4 6.13_22457_treechop-f153ac423f61-20210913-153904.mp4\r\n6.13_10119_Player514-f153ac423f61-20211024-132532.mp4 6.13_22458_treechop-f153ac423f61-20210913-171122.mp4\r\n6.13_1011_Player129-192489f25954-20210803-145405.mp4 6.13_22459_treechop-f153ac423f61-20210913-171230.mp4\r\n6.13_10120_Player514-f153ac423f61-20211024-132720.mp4 6.13_2245_Player189-f153ac423f61-20210803-141718.mp4\r\n6.13_10121_Player514-f153ac423f61-20211024-132847.mp4 6.13_22460_treechop-f153ac423f61-20210913-171335.mp4\r\n6.13_10122_Player514-f153ac423f61-20211024-133027.mp4 6.13_22461_treechop-f153ac423f61-20210913-171437.mp4\r\n6.13_10123_Player514-f153ac423f61-20211024-133156.mp4 6.13_22462_treechop-f153ac423f61-20210913-171541.mp4\r\n6.13_10124_Player514-f153ac423f61-20211024-133331.mp4 6.13_22463_treechop-f153ac423f61-20210913-171645.mp4\r\n6.13_10125_Player514-f153ac423f61-20211024-133455.mp4 6.13_22464_treechop-f153ac423f61-20210913-171748.mp4\r\n6.13_10126_Player514-f153ac423f61-20211024-133633.mp4 6.13_22465_treechop-f153ac423f61-20210913-171851.mp4\r\n6.13_10127_Player514-f153ac423f61-20211024-133808.mp4 6.13_22466_treechop-f153ac423f61-20210913-171952.mp4\r\n6.13_10128_Player515-f153ac423f61-20210831-184121.mp4 6.13_22467_treechop-f153ac423f61-20210913-172052.mp4\r\n6.13_10129_Player515-f153ac423f61-20210831-184227.mp4 6.13_22468_treechop-f153ac423f61-20210913-172200.mp4\r\n6.13_1012_Player129-64bcb9fdadb3-20210803-111829.mp4 6.13_22469_treechop-f153ac423f61-20210913-172319.mp4\r\n6.13_10130_Player515-f153ac423f61-20210831-184332.mp4 6.13_2246_Player189-f153ac423f61-20210803-141819.mp4\r\n6.13_10131_Player515-f153ac423f61-20210831-184437.mp4 6.13_22470_treechop-f153ac423f61-20210913-172433.mp4\r\n6.13_10132_Player515-f153ac423f61-20210831-184541.mp4 6.13_22471_treechop-f153ac423f61-20210913-172543.mp4\r\n6.13_10133_Player515-f153ac423f61-20210831-184647.mp4 6.13_22472_treechop-f153ac423f61-20210913-172647.mp4\r\n6.13_10134_Player515-f153ac423f61-20210831-184753.mp4 6.13_22473_treechop-f153ac423f61-20210913-172749.mp4\r\n6.13_10135_Player515-f153ac423f61-20210831-184900.mp4 6.13_22474_treechop-f153ac423f61-20210913-172903.mp4\r\n6.13_10136_Player515-f153ac423f61-20210831-185005.mp4 6.13_22475_treechop-f153ac423f61-20210913-173006.mp4\r\n6.13_10137_Player515-f153ac423f61-20210831-185111.mp4 6.13_22476_treechop-f153ac423f61-20210913-173109.mp4\r\n6.13_10138_Player515-f153ac423f61-20210831-185214.mp4 6.13_22477_treechop-f153ac423f61-20210913-173213.mp4\r\n6.13_10139_Player515-f153ac423f61-20210831-185320.mp4 6.13_22478_treechop-f153ac423f61-20210913-173317.mp4\r\n6.13_1013_Player129-64bcb9fdadb3-20210803-114433.mp4 6.13_22479_treechop-f153ac423f61-20210913-173418.mp4\r\n6.13_10140_Player515-f153ac423f61-20210831-185424.mp4 6.13_2247_Player189-f153ac423f61-20210803-141921.mp4\r\n6.13_10141_Player515-f153ac423f61-20210831-185534.mp4 6.13_22480_treechop-f153ac423f61-20210913-173521.mp4\r\n6.13_10142_Player515-f153ac423f61-20210831-185646.mp4 6.13_22481_treechop-f153ac423f61-20210913-173627.mp4\r\n6.13_10143_Player515-f153ac423f61-20210831-185758.mp4 6.13_22482_treechop-f153ac423f61-20210913-173733.mp4\r\n6.13_10144_Player515-f153ac423f61-20210831-185905.mp4 6.13_22483_treechop-f153ac423f61-20210913-173837.mp4\r\n6.13_10145_Player515-f153ac423f61-20210831-190006.mp4 6.13_22484_treechop-f153ac423f61-20210913-173939.mp4\r\n6.13_10146_Player515-f153ac423f61-20210831-190108.mp4 6.13_22485_treechop-f153ac423f61-20210913-174045.mp4\r\n6.13_10147_Player515-f153ac423f61-20210831-190209.mp4 6.13_22486_treechop-f153ac423f61-20210913-174152.mp4\r\n6.13_10148_Player515-f153ac423f61-20210831-190310.mp4 6.13_22487_treechop-f153ac423f61-20210913-174308.mp4\r\n6.13_10149_Player515-f153ac423f61-20210831-190412.mp4 6.13_22488_treechop-f153ac423f61-20210913-174414.mp4\r\n6.13_1014_Player129-64bcb9fdadb3-20210803-121301.mp4 6.13_22489_treechop-f153ac423f61-20210913-174516.mp4\r\n6.13_10150_Player515-f153ac423f61-20210831-190515.mp4 6.13_2248_Player189-f153ac423f61-20210803-142022.mp4\r\n6.13_10151_Player515-f153ac423f61-20210831-190922.mp4 6.13_22490_treechop-f153ac423f61-20210913-174619.mp4\r\n6.13_10152_Player516-f153ac423f61-20211012-190215.mp4 6.13_22491_treechop-f153ac423f61-20210913-174724.mp4\r\n6.13_10153_Player516-f153ac423f61-20211012-200436.mp4 6.13_22492_treechop-f153ac423f61-20210913-174830.mp4\r\n6.13_10154_Player519-f153ac423f61-20211028-072015.mp4 6.13_22493_treechop-f153ac423f61-20210913-174934.mp4\r\n6.13_10155_Player519-f153ac423f61-20211028-072724.mp4 6.13_22494_treechop-f153ac423f61-20210913-175040.mp4\r\n6.13_10156_Player519-f153ac423f61-20211028-073426.mp4 6.13_22495_treechop-f153ac423f61-20210913-175146.mp4\r\n6.13_10157_Player519-f153ac423f61-20211028-074129.mp4 6.13_22496_treechop-f153ac423f61-20210913-175249.mp4\r\n6.13_10158_Player519-f153ac423f61-20211028-075034.mp4 6.13_22497_treechop-f153ac423f61-20210913-175351.mp4\r\n6.13_10159_Player519-f153ac423f61-20211028-075848.mp4 6.13_22498_treechop-f153ac423f61-20210913-175453.mp4\r\n6.13_1015_Player129-64bcb9fdadb3-20210803-123854.mp4 6.13_22499_treechop-f153ac423f61-20210913-175554.mp4\r\n6.13_10160_Player519-f153ac423f61-20211028-080550.mp4 6.13_2249_Player189-f153ac423f61-20210803-142123.mp4\r\n6.13_10161_Player519-f153ac423f61-20211028-081252.mp4 6.13_224_Player108-f153ac423f61-20211207-110255.mp4\r\n6.13_10162_Player519-f153ac423f61-20211028-082202.mp4 6.13_22500_treechop-f153ac423f61-20210913-175656.mp4\r\n6.13_10163_Player519-f153ac423f61-20211028-083008.mp4 6.13_22501_treechop-f153ac423f61-20210913-175802.mp4\r\n6.13_10164_Player519-f153ac423f61-20211028-083710.mp4 6.13_22502_treechop-f153ac423f61-20210913-175911.mp4\r\n6.13_10165_Player519-f153ac423f61-20211028-084513.mp4 6.13_22503_treechop-f153ac423f61-20210913-180025.mp4\r\n6.13_10166_Player519-f153ac423f61-20211028-085215.mp4 6.13_22504_treechop-f153ac423f61-20210913-180127.mp4\r\n6.13_10167_Player519-f153ac423f61-20211028-090127.mp4 6.13_22505_treechop-f153ac423f61-20210913-180229.mp4\r\n6.13_10168_Player519-f153ac423f61-20211028-090829.mp4 6.13_22506_treechop-f153ac423f61-20210913-180331.mp4\r\n6.13_10169_Player519-f153ac423f61-20211028-091746.mp4 6.13_22507_treechop-f153ac423f61-20210913-180434.mp4\r\n6.13_1016_Player129-f153ac423f61-20210803-081341.mp4 6.13_22508_treechop-f153ac423f61-20210913-180536.mp4\r\n6.13_10170_Player519-f153ac423f61-20211028-092447.mp4 6.13_22509_treechop-f153ac423f61-20210913-180637.mp4\r\n6.13_10171_Player519-f153ac423f61-20211028-093252.mp4 6.13_2250_Player189-f153ac423f61-20210803-142224.mp4\r\n6.13_10172_Player519-f153ac423f61-20211028-093958.mp4 6.13_22510_treechop-f153ac423f61-20210913-180739.mp4\r\n6.13_10173_Player519-f153ac423f61-20211028-094803.mp4 6.13_22511_treechop-f153ac423f61-20210913-180841.mp4\r\n6.13_10174_Player519-f153ac423f61-20211028-095506.mp4 6.13_22512_treechop-f153ac423f61-20210913-180943.mp4\r\n6.13_10175_Player519-f153ac423f61-20211028-100313.mp4 6.13_22513_treechop-f153ac423f61-20210913-181046.mp4\r\n6.13_10176_Player52-f153ac423f61-20210902-084343.mp4 6.13_22514_treechop-f153ac423f61-20210913-181147.mp4\r\n6.13_10177_Player52-f153ac423f61-20210902-084533.mp4 6.13_22515_treechop-f153ac423f61-20210913-181248.mp4\r\n6.13_10178_Player52-f153ac423f61-20210902-084710.mp4 6.13_22516_treechop-f153ac423f61-20210913-181350.mp4\r\n6.13_10179_Player52-f153ac423f61-20210902-084854.mp4 6.13_22517_treechop-f153ac423f61-20210913-181455.mp4\r\n6.13_1017_Player129-f153ac423f61-20210803-083859.mp4 6.13_22518_treechop-f153ac423f61-20210913-181558.mp4\r\n6.13_10180_Player52-f153ac423f61-20210902-085039.mp4 6.13_22519_treechop-f153ac423f61-20210913-181700.mp4\r\n6.13_10181_Player52-f153ac423f61-20210902-085225.mp4 6.13_2251_Player189-f153ac423f61-20210803-142326.mp4\r\n6.13_10182_Player52-f153ac423f61-20210902-085406.mp4 6.13_22520_treechop-f153ac423f61-20210913-181802.mp4\r\n6.13_10183_Player52-f153ac423f61-20210902-085537.mp4 6.13_22521_treechop-f153ac423f61-20210913-181906.mp4\r\n6.13_10184_Player52-f153ac423f61-20210902-085713.mp4 6.13_22522_treechop-f153ac423f61-20210913-182008.mp4\r\n6.13_10185_Player52-f153ac423f61-20210902-085904.mp4 6.13_22523_treechop-f153ac423f61-20210913-182111.mp4\r\n6.13_10186_Player52-f153ac423f61-20210902-090057.mp4 6.13_22524_treechop-f153ac423f61-20210913-182213.mp4\r\n6.13_10187_Player52-f153ac423f61-20210902-090247.mp4 6.13_22525_treechop-f153ac423f61-20210915-182814.mp4\r\n6.13_10188_Player52-f153ac423f61-20210902-090419.mp4 6.13_22526_treechop-f153ac423f61-20210915-182921.mp4\r\n6.13_10189_Player52-f153ac423f61-20210902-090609.mp4 6.13_22527_treechop-f153ac423f61-20210915-183024.mp4\r\n6.13_1018_Player129-f153ac423f61-20210803-090455.mp4 6.13_22528_treechop-f153ac423f61-20210915-183127.mp4\r\n6.13_10190_Player52-f153ac423f61-20210902-090809.mp4 6.13_22529_treechop-f153ac423f61-20210915-183231.mp4\r\n6.13_10191_Player52-f153ac423f61-20210902-091007.mp4 6.13_2252_Player189-f153ac423f61-20210803-142434.mp4\r\n6.13_10192_Player52-f153ac423f61-20210902-091146.mp4 6.13_22530_treechop-f153ac423f61-20210915-183335.mp4\r\n6.13_10193_Player52-f153ac423f61-20210902-091331.mp4 6.13_22531_treechop-f153ac423f61-20210915-183441.mp4\r\n6.13_10194_Player52-f153ac423f61-20210902-091521.mp4 6.13_22532_treechop-f153ac423f61-20210915-183543.mp4\r\n6.13_10195_Player52-f153ac423f61-20210902-091705.mp4 6.13_22533_treechop-f153ac423f61-20210915-183644.mp4\r\n6.13_10196_Player52-f153ac423f61-20210902-091857.mp4 6.13_22534_treechop-f153ac423f61-20210915-183745.mp4\r\n6.13_10197_Player52-f153ac423f61-20210902-092045.mp4 6.13_22535_treechop-f153ac423f61-20210915-183848.mp4\r\n6.13_10198_Player52-f153ac423f61-20210902-092231.mp4 6.13_22536_treechop-f153ac423f61-20210915-183950.mp4\r\n6.13_10199_Player523-f153ac423f61-20210808-145038.mp4 6.13_22537_treechop-f153ac423f61-20210915-184051.mp4\r\n6.13_1019_Player132-35462f94e50b-20211213-191349.mp4 6.13_22538_treechop-f153ac423f61-20210915-184153.mp4\r\n6.13_101_Player1-f153ac423f61-20210907-215703.mp4 6.13_22539_treechop-f153ac423f61-20210915-184256.mp4\r\n6.13_10200_Player523-f153ac423f61-20210808-150140.mp4 6.13_2253_Player189-f153ac423f61-20210803-142543.mp4\r\n6.13_10201_Player523-f153ac423f61-20210808-150641.mp4 6.13_22540_treechop-f153ac423f61-20210915-184359.mp4\r\n6.13_10202_Player523-f153ac423f61-20210808-151046.mp4 6.13_22541_treechop-f153ac423f61-20210915-184503.mp4\r\n6.13_10203_Player523-f153ac423f61-20210808-151347.mp4 6.13_22542_treechop-f153ac423f61-20210915-184607.mp4\r\n6.13_10204_Player523-f153ac423f61-20210808-151658.mp4 6.13_22543_treechop-f153ac423f61-20210915-184710.mp4\r\n6.13_10205_Player523-f153ac423f61-20210808-152014.mp4 6.13_22544_treechop-f153ac423f61-20210915-184812.mp4\r\n6.13_10206_Player523-f153ac423f61-20210808-152329.mp4 6.13_22545_treechop-f153ac423f61-20210915-184913.mp4\r\n6.13_10207_Player523-f153ac423f61-20210808-152643.mp4 6.13_22546_treechop-f153ac423f61-20210915-185016.mp4\r\n6.13_10208_Player523-f153ac423f61-20210808-152952.mp4 6.13_22547_treechop-f153ac423f61-20210915-185118.mp4\r\n6.13_10209_Player523-f153ac423f61-20210808-153301.mp4 6.13_22548_treechop-f153ac423f61-20210915-185218.mp4\r\n6.13_1020_Player132-35462f94e50b-20211213-191536.mp4 6.13_22549_treechop-f153ac423f61-20210915-185321.mp4\r\n6.13_10210_Player523-f153ac423f61-20210808-153608.mp4 6.13_2254_Player189-f153ac423f61-20210803-142650.mp4\r\n6.13_10211_Player523-f153ac423f61-20210808-153923.mp4 6.13_22550_treechop-f153ac423f61-20210915-185431.mp4\r\n6.13_10212_Player524-f153ac423f61-20211211-152804.mp4 6.13_22551_treechop-f153ac423f61-20210915-185535.mp4\r\n6.13_10213_Player524-f153ac423f61-20211211-153238.mp4 6.13_22552_treechop-f153ac423f61-20210915-185638.mp4\r\n6.13_10214_Player524-f153ac423f61-20211211-153610.mp4 6.13_22553_treechop-f153ac423f61-20210915-185739.mp4\r\n6.13_10215_Player524-f153ac423f61-20211211-154050.mp4 6.13_22554_treechop-f153ac423f61-20210915-185842.mp4\r\n6.13_10216_Player524-f153ac423f61-20211211-154413.mp4 6.13_22555_treechop-f153ac423f61-20210915-185945.mp4\r\n6.13_10217_Player524-f153ac423f61-20211211-154821.mp4 6.13_22556_treechop-f153ac423f61-20210915-190045.mp4\r\n6.13_10218_Player524-f153ac423f61-20211211-155141.mp4 6.13_22557_treechop-f153ac423f61-20210915-190149.mp4\r\n6.13_10219_Player524-f153ac423f61-20211211-155648.mp4 6.13_22558_treechop-f153ac423f61-20210915-190252.mp4\r\n6.13_1021_Player132-35462f94e50b-20211213-191713.mp4 6.13_22559_treechop-f153ac423f61-20210915-190354.mp4\r\n6.13_10220_Player524-f153ac423f61-20211211-160154.mp4 6.13_2255_Player189-f153ac423f61-20210803-142757.mp4\r\n6.13_10221_Player524-f153ac423f61-20211211-160602.mp4 6.13_22560_treechop-f153ac423f61-20210915-190455.mp4\r\n6.13_10222_Player525-f153ac423f61-20211122-112231.mp4 6.13_22561_treechop-f153ac423f61-20210915-190557.mp4\r\n6.13_10223_Player525-f153ac423f61-20211122-112426.mp4 6.13_22562_treechop-f153ac423f61-20210915-190700.mp4\r\n6.13_10224_Player525-f153ac423f61-20211122-112619.mp4 6.13_22563_treechop-f153ac423f61-20210915-190803.mp4\r\n6.13_10225_Player525-f153ac423f61-20211122-112813.mp4 6.13_22564_treechop-f153ac423f61-20210915-190905.mp4\r\n6.13_10226_Player525-f153ac423f61-20211122-113020.mp4 6.13_22565_treechop-f153ac423f61-20210915-191005.mp4\r\n6.13_10227_Player525-f153ac423f61-20211122-113221.mp4 6.13_22566_treechop-f153ac423f61-20210915-191106.mp4\r\n6.13_10228_Player525-f153ac423f61-20211122-113423.mp4 6.13_22567_treechop-f153ac423f61-20210915-191206.mp4\r\n6.13_10229_Player525-f153ac423f61-20211122-113625.mp4 6.13_22568_treechop-f153ac423f61-20210915-191309.mp4\r\n6.13_1022_Player132-35462f94e50b-20211213-191902.mp4 6.13_22569_treechop-f153ac423f61-20210915-191409.mp4\r\n6.13_10230_Player525-f153ac423f61-20211122-113822.mp4 6.13_2256_Player189-f153ac423f61-20210803-142858.mp4\r\n6.13_10231_Player525-f153ac423f61-20211122-114020.mp4 6.13_22570_treechop-f153ac423f61-20210915-191510.mp4\r\n6.13_10232_Player525-f153ac423f61-20211122-114221.mp4 6.13_22571_treechop-f153ac423f61-20210915-191611.mp4\r\n6.13_10233_Player525-f153ac423f61-20211122-114418.mp4 6.13_22572_treechop-f153ac423f61-20210915-191712.mp4\r\n6.13_10234_Player525-f153ac423f61-20211122-114614.mp4 6.13_22573_treechop-f153ac423f61-20210915-191813.mp4\r\n6.13_10235_Player525-f153ac423f61-20211122-114806.mp4 6.13_22574_treechop-f153ac423f61-20210915-195404.mp4\r\n6.13_10236_Player525-f153ac423f61-20211122-115001.mp4 6.13_22575_treechop-f153ac423f61-20210915-195507.mp4\r\n6.13_10237_Player525-f153ac423f61-20211122-115153.mp4 6.13_22576_treechop-f153ac423f61-20210915-195610.mp4\r\n6.13_10238_Player525-f153ac423f61-20211122-115350.mp4 6.13_22577_treechop-f153ac423f61-20210915-195711.mp4\r\n6.13_10239_Player525-f153ac423f61-20211122-115548.mp4 6.13_22578_treechop-f153ac423f61-20210915-195811.mp4\r\n6.13_1023_Player132-f153ac423f61-20211213-190352.mp4 6.13_22579_treechop-f153ac423f61-20210915-195913.mp4\r\n6.13_10240_Player525-f153ac423f61-20211122-115740.mp4 6.13_2257_Player189-f153ac423f61-20210803-142958.mp4\r\n6.13_10241_Player525-f153ac423f61-20211122-115934.mp4 6.13_22580_treechop-f153ac423f61-20210915-200015.mp4\r\n6.13_10242_Player525-f153ac423f61-20211122-120133.mp4 6.13_22581_treechop-f153ac423f61-20210915-200118.mp4\r\n6.13_10243_Player525-f153ac423f61-20211122-120331.mp4 6.13_22582_treechop-f153ac423f61-20210915-200219.mp4\r\n6.13_10244_Player525-f153ac423f61-20211122-120530.mp4 6.13_22583_treechop-f153ac423f61-20210915-200321.mp4\r\n6.13_10245_Player525-f153ac423f61-20211122-120738.mp4 6.13_22584_treechop-f153ac423f61-20210915-200423.mp4\r\n6.13_10246_Player525-f153ac423f61-20211122-120950.mp4 6.13_22585_treechop-f153ac423f61-20210915-200527.mp4\r\n6.13_10247_Player525-f153ac423f61-20211122-121157.mp4 6.13_22586_treechop-f153ac423f61-20210915-200629.mp4\r\n6.13_10248_Player525-f153ac423f61-20211122-121402.mp4 6.13_22587_treechop-f153ac423f61-20210915-200731.mp4\r\n6.13_10249_Player525-f153ac423f61-20211122-121555.mp4 6.13_22588_treechop-f153ac423f61-20210915-200834.mp4\r\n6.13_1024_Player132-f153ac423f61-20211213-190516.mp4 6.13_22589_treechop-f153ac423f61-20210915-200939.mp4\r\n6.13_10250_Player525-f153ac423f61-20211122-121745.mp4 6.13_2258_Player189-f153ac423f61-20210803-143059.mp4\r\n6.13_10251_Player525-f153ac423f61-20211122-121900.mp4 6.13_22590_treechop-f153ac423f61-20210915-201040.mp4\r\n6.13_10252_Player525-f153ac423f61-20211122-122003.mp4 6.13_22591_treechop-f153ac423f61-20210915-201142.mp4\r\n6.13_10253_Player525-f153ac423f61-20211122-122115.mp4 6.13_22592_treechop-f153ac423f61-20210915-201244.mp4\r\n6.13_10254_Player525-f153ac423f61-20211122-122224.mp4 6.13_22593_treechop-f153ac423f61-20210915-201348.mp4\r\n6.13_10255_Player525-f153ac423f61-20211122-122343.mp4 6.13_22594_treechop-f153ac423f61-20210915-201451.mp4\r\n6.13_10256_Player525-f153ac423f61-20211122-122525.mp4 6.13_22595_treechop-f153ac423f61-20210915-201553.mp4\r\n6.13_10257_Player526-f153ac423f61-20210825-120536.mp4 6.13_22596_treechop-f153ac423f61-20210915-201658.mp4\r\n6.13_10258_Player526-f153ac423f61-20210825-120640.mp4 6.13_22597_treechop-f153ac423f61-20210915-201759.mp4\r\n6.13_10259_Player527-f153ac423f61-20211027-115622.mp4 6.13_22598_treechop-f153ac423f61-20210915-201901.mp4\r\n6.13_1025_Player132-f153ac423f61-20211213-190642.mp4 6.13_22599_treechop-f153ac423f61-20210916-173459.mp4\r\n6.13_10260_Player527-f153ac423f61-20211027-115818.mp4 6.13_2259_Player189-f153ac423f61-20210803-143200.mp4\r\n6.13_10261_Player527-f153ac423f61-20211027-120004.mp4 6.13_225_Player108-f153ac423f61-20211207-110400.mp4\r\n6.13_10262_Player527-f153ac423f61-20211027-120146.mp4 6.13_22600_treechop-f153ac423f61-20210916-174202.mp4\r\n6.13_10263_Player527-f153ac423f61-20211027-120329.mp4 6.13_22601_treechop-f153ac423f61-20210916-174636.mp4\r\n6.13_10264_Player527-f153ac423f61-20211027-120513.mp4 6.13_22602_treechop-f153ac423f61-20210916-174745.mp4\r\n6.13_10265_Player527-f153ac423f61-20211027-120703.mp4 6.13_22603_treechop-f153ac423f61-20210916-174851.mp4\r\n6.13_10266_Player527-f153ac423f61-20211027-120913.mp4 6.13_22604_treechop-f153ac423f61-20210916-174952.mp4\r\n6.13_10267_Player527-f153ac423f61-20211027-121101.mp4 6.13_22605_treechop-f153ac423f61-20210916-175057.mp4\r\n6.13_10268_Player527-f153ac423f61-20211027-121240.mp4 6.13_22606_treechop-f153ac423f61-20210916-175107.mp4\r\n6.13_10269_Player527-f153ac423f61-20211027-121421.mp4 6.13_22607_treechop-f153ac423f61-20210916-175201.mp4\r\n6.13_1026_Player132-f153ac423f61-20211213-190810.mp4 6.13_22608_treechop-f153ac423f61-20210916-175303.mp4\r\n6.13_10270_Player527-f153ac423f61-20211027-121617.mp4 6.13_22609_treechop-f153ac423f61-20210916-175405.mp4\r\n6.13_10271_Player527-f153ac423f61-20211027-121817.mp4 6.13_2260_Player189-f153ac423f61-20211213-133924.mp4\r\n6.13_10272_Player527-f153ac423f61-20211027-122039.mp4 6.13_22610_treechop-f153ac423f61-20210916-175508.mp4\r\n6.13_10273_Player527-f153ac423f61-20211027-122242.mp4 6.13_22611_treechop-f153ac423f61-20210916-175610.mp4\r\n6.13_10274_Player527-f153ac423f61-20211027-122427.mp4 6.13_22612_treechop-f153ac423f61-20210916-175714.mp4\r\n6.13_10275_Player527-f153ac423f61-20211027-122648.mp4 6.13_22613_treechop-f153ac423f61-20210916-175816.mp4\r\n6.13_10276_Player527-f153ac423f61-20211027-122835.mp4 6.13_22614_treechop-f153ac423f61-20210916-175917.mp4\r\n6.13_10277_Player527-f153ac423f61-20211027-123019.mp4 6.13_22615_treechop-f153ac423f61-20210916-175921.mp4\r\n6.13_10278_Player527-f153ac423f61-20211027-123337.mp4 6.13_22616_treechop-f153ac423f61-20210916-180025.mp4\r\n6.13_10279_Player527-f153ac423f61-20211027-123509.mp4 6.13_22617_treechop-f153ac423f61-20210916-180128.mp4\r\n6.13_1027_Player132-f153ac423f61-20211213-190939.mp4 6.13_22618_treechop-f153ac423f61-20210916-180230.mp4\r\n6.13_10280_Player527-f153ac423f61-20211027-123704.mp4 6.13_22619_treechop-f153ac423f61-20210916-180333.mp4\r\n6.13_10281_Player527-f153ac423f61-20211027-123834.mp4 6.13_2261_Player189-f153ac423f61-20211213-134127.mp4\r\n6.13_10282_Player527-f153ac423f61-20211027-123937.mp4 6.13_22620_treechop-f153ac423f61-20210916-180437.mp4\r\n6.13_10283_Player527-f153ac423f61-20211027-124047.mp4 6.13_22621_treechop-f153ac423f61-20210916-180540.mp4\r\n6.13_10284_Player527-f153ac423f61-20211027-124156.mp4 6.13_22622_treechop-f153ac423f61-20210916-180657.mp4\r\n6.13_10285_Player527-f153ac423f61-20211027-124303.mp4 6.13_22623_treechop-f153ac423f61-20210916-180822.mp4\r\n6.13_10286_Player527-f153ac423f61-20211027-124430.mp4 6.13_22624_treechop-f153ac423f61-20210916-180928.mp4\r\n6.13_10287_Player527-f153ac423f61-20211027-124610.mp4 6.13_22625_treechop-f153ac423f61-20210916-181030.mp4\r\n6.13_10288_Player527-f153ac423f61-20211027-124751.mp4 6.13_22626_treechop-f153ac423f61-20210916-181133.mp4\r\n6.13_10289_Player527-f153ac423f61-20211027-124924.mp4 6.13_22627_treechop-f153ac423f61-20210916-181236.mp4\r\n6.13_1028_Player132-f153ac423f61-20211213-191120.mp4 6.13_22628_treechop-f153ac423f61-20210916-181341.mp4\r\n6.13_10290_Player527-f153ac423f61-20211027-125051.mp4 6.13_22629_treechop-f153ac423f61-20210916-181444.mp4\r\n6.13_10291_Player527-f153ac423f61-20211027-125232.mp4 6.13_2262_Player189-f153ac423f61-20211213-134327.mp4\r\n6.13_10292_Player527-f153ac423f61-20211027-125401.mp4 6.13_22630_treechop-f153ac423f61-20210916-181547.mp4\r\n6.13_10293_Player527-f153ac423f61-20211027-125528.mp4 6.13_22631_treechop-f153ac423f61-20210916-181649.mp4\r\n6.13_10294_Player527-f153ac423f61-20211027-125657.mp4 6.13_22632_treechop-f153ac423f61-20210916-181752.mp4\r\n6.13_10295_Player527-f153ac423f61-20211027-125832.mp4 6.13_22633_treechop-f153ac423f61-20210916-181854.mp4\r\n6.13_10296_Player527-f153ac423f61-20211027-130001.mp4 6.13_22634_treechop-f153ac423f61-20210916-182205.mp4\r\n6.13_10297_Player527-f153ac423f61-20211027-130134.mp4 6.13_22635_treechop-f153ac423f61-20210916-182305.mp4\r\n6.13_10298_Player527-f153ac423f61-20211027-130312.mp4 6.13_22636_treechop-f153ac423f61-20210916-182407.mp4\r\n6.13_10299_Player527-f153ac423f61-20211027-130437.mp4 6.13_22637_treechop-f153ac423f61-20210916-182509.mp4\r\n6.13_1029_Player134-f153ac423f61-20210920-161229.mp4 6.13_22638_treechop-f153ac423f61-20210916-182610.mp4\r\n6.13_102_Player1-f153ac423f61-20210907-220406.mp4 6.13_22639_treechop-f153ac423f61-20210916-182713.mp4\r\n6.13_10300_Player527-f153ac423f61-20211027-130559.mp4 6.13_2263_Player189-f153ac423f61-20211213-134528.mp4\r\n6.13_10301_Player527-f153ac423f61-20211027-130724.mp4 6.13_22640_treechop-f153ac423f61-20210916-182814.mp4\r\n6.13_10302_Player527-f153ac423f61-20211027-130858.mp4 6.13_22641_treechop-f153ac423f61-20210916-182916.mp4\r\n6.13_10303_Player527-f153ac423f61-20211027-131038.mp4 6.13_22642_treechop-f153ac423f61-20210916-183016.mp4\r\n6.13_10304_Player527-f153ac423f61-20211027-131211.mp4 6.13_22643_treechop-f153ac423f61-20210916-183118.mp4\r\n6.13_10305_Player527-f153ac423f61-20211027-131346.mp4 6.13_22644_treechop-f153ac423f61-20210916-183218.mp4\r\n6.13_10306_Player527-f153ac423f61-20211027-131537.mp4 6.13_22645_treechop-f153ac423f61-20210916-183321.mp4\r\n6.13_10307_Player528-111b16aaecca-20211127-153805.mp4 6.13_22646_treechop-f153ac423f61-20210916-183423.mp4\r\n6.13_10308_Player528-111b16aaecca-20211127-153954.mp4 6.13_22647_treechop-f153ac423f61-20210916-183523.mp4\r\n6.13_10309_Player528-111b16aaecca-20211127-154144.mp4 6.13_22648_treechop-f153ac423f61-20210916-183625.mp4\r\n6.13_1030_Player134-f153ac423f61-20210920-162106.mp4 6.13_22649_treechop-f153ac423f61-20210916-183726.mp4\r\n6.13_10310_Player528-111b16aaecca-20211127-154329.mp4 6.13_2264_Player189-f153ac423f61-20211213-134728.mp4\r\n6.13_10311_Player528-111b16aaecca-20211127-154517.mp4 6.13_22650_treechop-f153ac423f61-20210916-183828.mp4\r\n6.13_10312_Player528-111b16aaecca-20211127-154709.mp4 6.13_22651_treechop-f153ac423f61-20210916-183929.mp4\r\n6.13_10313_Player528-111b16aaecca-20211127-154901.mp4 6.13_22652_treechop-f153ac423f61-20210916-184030.mp4\r\n6.13_10314_Player528-111b16aaecca-20211127-155051.mp4 6.13_22653_treechop-f153ac423f61-20210916-184131.mp4\r\n6.13_10315_Player528-111b16aaecca-20211127-155239.mp4 6.13_22654_treechop-f153ac423f61-20210916-184233.mp4\r\n6.13_10316_Player528-111b16aaecca-20211127-155429.mp4 6.13_22655_treechop-f153ac423f61-20210916-184334.mp4\r\n6.13_10317_Player528-111b16aaecca-20211127-155616.mp4 6.13_22656_treechop-f153ac423f61-20210916-184436.mp4\r\n6.13_10318_Player528-111b16aaecca-20211127-155805.mp4 6.13_22657_treechop-f153ac423f61-20210916-184539.mp4\r\n6.13_10319_Player528-111b16aaecca-20211127-155954.mp4 6.13_22658_treechop-f153ac423f61-20210916-184642.mp4\r\n6.13_1031_Player134-f153ac423f61-20210920-162840.mp4 6.13_22659_treechop-f153ac423f61-20210916-184744.mp4\r\n6.13_10320_Player528-111b16aaecca-20211127-160145.mp4 6.13_2265_Player189-f153ac423f61-20211213-134828.mp4\r\n6.13_10321_Player528-111b16aaecca-20211127-160329.mp4 6.13_22660_treechop-f153ac423f61-20210916-184845.mp4\r\n6.13_10322_Player528-111b16aaecca-20211127-160524.mp4 6.13_22661_treechop-f153ac423f61-20210916-184946.mp4\r\n6.13_10323_Player528-111b16aaecca-20211127-160710.mp4 6.13_22662_treechop-f153ac423f61-20210916-185048.mp4\r\n6.13_10324_Player528-111b16aaecca-20211127-160848.mp4 6.13_22663_treechop-f153ac423f61-20210916-185150.mp4\r\n6.13_10325_Player528-111b16aaecca-20211127-160951.mp4 6.13_22664_treechop-f153ac423f61-20210916-185253.mp4\r\n6.13_10326_Player528-111b16aaecca-20211127-161055.mp4 6.13_22665_treechop-f153ac423f61-20210916-185355.mp4\r\n6.13_10327_Player528-111b16aaecca-20211127-161156.mp4 6.13_22666_treechop-f153ac423f61-20210916-185457.mp4\r\n6.13_10328_Player528-111b16aaecca-20211127-161258.mp4 6.13_22667_treechop-f153ac423f61-20210916-185558.mp4\r\n6.13_10329_Player528-111b16aaecca-20211127-161400.mp4 6.13_22668_treechop-f153ac423f61-20210917-112921.mp4\r\n6.13_1032_Player134-f153ac423f61-20210920-163603.mp4 6.13_22669_treechop-f153ac423f61-20210917-113027.mp4\r\n6.13_10330_Player528-111b16aaecca-20211127-161505.mp4 6.13_2266_Player189-f153ac423f61-20211213-134929.mp4\r\n6.13_10331_Player528-111b16aaecca-20211127-161609.mp4 6.13_22670_treechop-f153ac423f61-20210917-113134.mp4\r\n6.13_10332_Player528-111b16aaecca-20211127-161716.mp4 6.13_22671_treechop-f153ac423f61-20210917-113242.mp4\r\n6.13_10333_Player528-111b16aaecca-20211127-161832.mp4 6.13_22672_treechop-f153ac423f61-20210917-113349.mp4\r\n6.13_10334_Player528-111b16aaecca-20211127-161944.mp4 6.13_22673_treechop-f153ac423f61-20210917-113454.mp4\r\n6.13_10335_Player528-111b16aaecca-20211127-162059.mp4 6.13_22674_treechop-f153ac423f61-20210917-113603.mp4\r\n6.13_10336_Player528-111b16aaecca-20211127-162208.mp4 6.13_22675_treechop-f153ac423f61-20210917-113711.mp4\r\n6.13_10337_Player528-111b16aaecca-20211127-162324.mp4 6.13_22676_treechop-f153ac423f61-20210917-113816.mp4\r\n6.13_10338_Player528-111b16aaecca-20211127-162435.mp4 6.13_22677_treechop-f153ac423f61-20210917-113923.mp4\r\n6.13_10339_Player528-111b16aaecca-20211127-162543.mp4 6.13_22678_treechop-f153ac423f61-20210917-114159.mp4\r\n6.13_1033_Player134-f153ac423f61-20210920-164320.mp4 6.13_22679_treechop-f153ac423f61-20210917-114306.mp4\r\n6.13_10340_Player528-111b16aaecca-20211127-162646.mp4 6.13_2267_Player189-f153ac423f61-20211213-135029.mp4\r\n6.13_10341_Player528-111b16aaecca-20211127-162752.mp4 6.13_22680_treechop-f153ac423f61-20210917-114408.mp4\r\n6.13_10342_Player528-111b16aaecca-20211127-162926.mp4 6.13_22681_treechop-f153ac423f61-20210917-114515.mp4\r\n6.13_10343_Player528-111b16aaecca-20211127-163102.mp4 6.13_22682_treechop-f153ac423f61-20210917-114623.mp4\r\n6.13_10344_Player528-111b16aaecca-20211127-163220.mp4 6.13_22683_treechop-f153ac423f61-20210917-114728.mp4\r\n6.13_10345_Player528-111b16aaecca-20211127-163323.mp4 6.13_22684_treechop-f153ac423f61-20210917-114834.mp4\r\n6.13_10346_Player528-111b16aaecca-20211127-163430.mp4 6.13_22685_treechop-f153ac423f61-20210917-114937.mp4\r\n6.13_10347_Player528-111b16aaecca-20211127-163543.mp4 6.13_22686_treechop-f153ac423f61-20210917-115044.mp4\r\n6.13_10348_Player528-111b16aaecca-20211127-163648.mp4 6.13_22687_treechop-f153ac423f61-20210917-115200.mp4\r\n6.13_10349_Player528-111b16aaecca-20211127-163755.mp4 6.13_22688_treechop-f153ac423f61-20210917-115308.mp4\r\n6.13_1034_Player134-f153ac423f61-20210920-165004.mp4 6.13_22689_treechop-f153ac423f61-20210917-115412.mp4\r\n6.13_10350_Player528-111b16aaecca-20211127-163903.mp4 6.13_2268_Player189-f153ac423f61-20211213-135230.mp4\r\n6.13_10351_Player528-111b16aaecca-20211127-164006.mp4 6.13_22690_treechop-f153ac423f61-20210917-115522.mp4\r\n6.13_10352_Player528-111b16aaecca-20211127-164109.mp4 6.13_22691_treechop-f153ac423f61-20210917-115632.mp4\r\n6.13_10353_Player528-111b16aaecca-20211127-164213.mp4 6.13_22692_treechop-f153ac423f61-20210917-115739.mp4\r\n6.13_10354_Player528-111b16aaecca-20211127-164317.mp4 6.13_22693_treechop-f153ac423f61-20210917-115847.mp4\r\n6.13_10355_Player528-111b16aaecca-20211127-164428.mp4 6.13_22694_treechop-f153ac423f61-20210917-115954.mp4\r\n6.13_10356_Player528-111b16aaecca-20211127-164538.mp4 6.13_22695_treechop-f153ac423f61-20210917-120101.mp4\r\n6.13_10357_Player528-111b16aaecca-20211127-164648.mp4 6.13_22696_treechop-f153ac423f61-20210917-120206.mp4\r\n6.13_10358_Player528-111b16aaecca-20211127-164757.mp4 6.13_22697_treechop-f153ac423f61-20210917-120310.mp4\r\n6.13_10359_Player528-111b16aaecca-20211127-164906.mp4 6.13_22698_treechop-f153ac423f61-20210917-120414.mp4\r\n6.13_1035_Player134-f153ac423f61-20210920-165601.mp4 6.13_22699_treechop-f153ac423f61-20210917-120523.mp4\r\n6.13_10360_Player528-111b16aaecca-20211127-165010.mp4 6.13_2269_Player189-f57a6ab6f0f0-20211213-135414.mp4\r\n6.13_10361_Player528-111b16aaecca-20211127-165116.mp4 6.13_226_Player108-f153ac423f61-20211207-110513.mp4\r\n6.13_10362_Player528-111b16aaecca-20211127-165226.mp4 6.13_22700_treechop-f153ac423f61-20210917-120637.mp4\r\n6.13_10363_Player528-111b16aaecca-20211127-165342.mp4 6.13_22701_treechop-f153ac423f61-20210917-120847.mp4\r\n6.13_10364_Player528-111b16aaecca-20211127-165457.mp4 6.13_22702_treechop-f153ac423f61-20210917-120950.mp4\r\n6.13_10365_Player528-111b16aaecca-20211127-165609.mp4 6.13_22703_treechop-f153ac423f61-20210917-121148.mp4\r\n6.13_10366_Player528-111b16aaecca-20211127-165717.mp4 6.13_22704_treechop-f153ac423f61-20210917-121259.mp4\r\n6.13_10367_Player528-111b16aaecca-20211127-165831.mp4 6.13_22705_treechop-f153ac423f61-20210917-121411.mp4\r\n6.13_10368_Player528-111b16aaecca-20211127-165941.mp4 6.13_22706_treechop-f153ac423f61-20210917-121517.mp4\r\n6.13_10369_Player528-111b16aaecca-20211127-170048.mp4 6.13_22707_treechop-f153ac423f61-20210917-121624.mp4\r\n6.13_1036_Player134-f153ac423f61-20210920-170526.mp4 6.13_22708_treechop-f153ac423f61-20210917-121734.mp4\r\n6.13_10370_Player528-111b16aaecca-20211127-170159.mp4 6.13_22709_treechop-f153ac423f61-20210917-121845.mp4\r\n6.13_10371_Player528-111b16aaecca-20211127-170312.mp4 6.13_2270_Player189-f57a6ab6f0f0-20211213-135616.mp4\r\n6.13_10372_Player528-2a43cdf4d105-20211127-170448.mp4 6.13_22710_treechop-f153ac423f61-20210917-121951.mp4\r\n6.13_10373_Player528-2a43cdf4d105-20211127-170554.mp4 6.13_22711_treechop-f153ac423f61-20210917-122057.mp4\r\n6.13_10374_Player528-2a43cdf4d105-20211127-170658.mp4 6.13_22712_treechop-f153ac423f61-20210917-122205.mp4\r\n6.13_10375_Player528-2a43cdf4d105-20211127-170805.mp4 6.13_22713_treechop-f153ac423f61-20210917-122322.mp4\r\n6.13_10376_Player528-2a43cdf4d105-20211127-170917.mp4 6.13_22714_treechop-f153ac423f61-20210917-122431.mp4\r\n6.13_10377_Player528-2a43cdf4d105-20211127-171039.mp4 6.13_22715_treechop-f153ac423f61-20210917-122537.mp4\r\n6.13_10378_Player528-2a43cdf4d105-20211127-171158.mp4 6.13_22716_treechop-f153ac423f61-20210917-122643.mp4\r\n6.13_10379_Player528-2a43cdf4d105-20211127-171316.mp4 6.13_22717_treechop-f153ac423f61-20210917-125942.mp4\r\n6.13_1037_Player134-f153ac423f61-20210920-171452.mp4 6.13_22718_treechop-f153ac423f61-20210917-130047.mp4\r\n6.13_10380_Player528-2a43cdf4d105-20211127-171420.mp4 6.13_22719_treechop-f153ac423f61-20210917-130150.mp4\r\n6.13_10381_Player528-2a43cdf4d105-20211127-171526.mp4 6.13_2271_Player189-f57a6ab6f0f0-20211213-135818.mp4\r\n6.13_10382_Player528-2a43cdf4d105-20211127-171627.mp4 6.13_22720_treechop-f153ac423f61-20210917-130251.mp4\r\n6.13_10383_Player528-2a43cdf4d105-20211127-171730.mp4 6.13_22721_treechop-f153ac423f61-20210917-130353.mp4\r\n6.13_10384_Player528-e14d230e98b9-20211127-171828.mp4 6.13_22722_treechop-f153ac423f61-20210917-130456.mp4\r\n6.13_10385_Player528-e14d230e98b9-20211127-172007.mp4 6.13_22723_treechop-f153ac423f61-20210917-130559.mp4\r\n6.13_10386_Player528-e14d230e98b9-20211127-172140.mp4 6.13_22724_treechop-f153ac423f61-20210917-130701.mp4\r\n6.13_10387_Player528-e14d230e98b9-20211127-172323.mp4 6.13_22725_treechop-f153ac423f61-20210917-130804.mp4\r\n6.13_10388_Player528-e14d230e98b9-20211127-172428.mp4 6.13_22726_treechop-f153ac423f61-20210917-130906.mp4\r\n6.13_10389_Player528-e14d230e98b9-20211127-172532.mp4 6.13_22727_treechop-f153ac423f61-20210917-131009.mp4\r\n6.13_1038_Player134-f153ac423f61-20210920-172330.mp4 6.13_22728_treechop-f153ac423f61-20210917-131110.mp4\r\n6.13_10390_Player528-e14d230e98b9-20211127-172645.mp4 6.13_22729_treechop-f153ac423f61-20210917-131215.mp4\r\n6.13_10391_Player528-e14d230e98b9-20211127-172806.mp4 6.13_2272_Player189-f57a6ab6f0f0-20211213-140020.mp4\r\n6.13_10392_Player528-e14d230e98b9-20211127-172924.mp4 6.13_22730_treechop-f153ac423f61-20210917-131319.mp4\r\n6.13_10393_Player528-e14d230e98b9-20211127-173036.mp4 6.13_22731_treechop-f153ac423f61-20210917-131421.mp4\r\n6.13_10394_Player528-e14d230e98b9-20211127-173155.mp4 6.13_22732_treechop-f153ac423f61-20210917-131522.mp4\r\n6.13_10395_Player528-e14d230e98b9-20211127-173311.mp4 6.13_22733_treechop-f153ac423f61-20210917-131622.mp4\r\n6.13_10396_Player528-e14d230e98b9-20211127-173427.mp4 6.13_22734_treechop-f153ac423f61-20210917-131723.mp4\r\n6.13_10397_Player528-e14d230e98b9-20211127-173544.mp4 6.13_22735_treechop-f153ac423f61-20210917-164142.mp4\r\n6.13_10398_Player528-e14d230e98b9-20211127-173652.mp4 6.13_22736_treechop-f153ac423f61-20210917-164804.mp4\r\n6.13_10399_Player528-e14d230e98b9-20211127-173757.mp4 6.13_22737_treechop-f153ac423f61-20210917-164905.mp4\r\n6.13_1039_Player134-f153ac423f61-20210920-172905.mp4 6.13_22738_treechop-f153ac423f61-20210917-165006.mp4\r\n6.13_103_Player1-f153ac423f61-20210907-221339.mp4 6.13_22739_treechop-f153ac423f61-20210917-165111.mp4\r\n6.13_10400_Player528-e14d230e98b9-20211127-173907.mp4 6.13_2273_Player189-f57a6ab6f0f0-20211213-140221.mp4\r\n6.13_10401_Player528-e14d230e98b9-20211127-174021.mp4 6.13_22740_treechop-f153ac423f61-20210917-165213.mp4\r\n6.13_10402_Player528-e14d230e98b9-20211127-174124.mp4 6.13_22741_treechop-f153ac423f61-20210917-165314.mp4\r\n6.13_10403_Player528-e14d230e98b9-20211127-174227.mp4 6.13_22742_treechop-f153ac423f61-20210917-165415.mp4\r\n6.13_10404_Player528-e14d230e98b9-20211127-174345.mp4 6.13_22743_treechop-f153ac423f61-20210917-165515.mp4\r\n6.13_10405_Player528-e14d230e98b9-20211127-174520.mp4 6.13_22744_treechop-f153ac423f61-20210917-165617.mp4\r\n6.13_10406_Player528-e14d230e98b9-20211127-174659.mp4 6.13_22745_treechop-f153ac423f61-20210917-165719.mp4\r\n6.13_10407_Player528-e14d230e98b9-20211127-174830.mp4 6.13_22746_treechop-f153ac423f61-20210917-165821.mp4\r\n6.13_10408_Player528-e14d230e98b9-20211127-174958.mp4 6.13_22747_treechop-f153ac423f61-20210917-165923.mp4\r\n6.13_10409_Player528-e14d230e98b9-20211127-175133.mp4 6.13_22748_treechop-f153ac423f61-20210917-170025.mp4\r\n6.13_1040_Player134-f153ac423f61-20210920-173440.mp4 6.13_22749_treechop-f153ac423f61-20210917-170126.mp4\r\n6.13_10410_Player528-e14d230e98b9-20211127-175238.mp4 6.13_2274_Player189-f57a6ab6f0f0-20211213-140421.mp4\r\n6.13_10411_Player528-e14d230e98b9-20211127-175342.mp4 6.13_22750_treechop-f153ac423f61-20210917-170230.mp4\r\n6.13_10412_Player528-f153ac423f61-20210725-230702.mp4 6.13_22751_treechop-f153ac423f61-20210917-170332.mp4\r\n6.13_10413_Player528-f153ac423f61-20210725-230908.mp4 6.13_22752_treechop-f153ac423f61-20210917-170433.mp4\r\n6.13_10414_Player528-f153ac423f61-20210725-231109.mp4 6.13_22753_treechop-f153ac423f61-20210917-170534.mp4\r\n6.13_10415_Player528-f153ac423f61-20210725-232414.mp4 6.13_22754_treechop-f153ac423f61-20210917-170635.mp4\r\n6.13_10416_Player528-f153ac423f61-20210725-233921.mp4 6.13_22755_treechop-f153ac423f61-20210917-170735.mp4\r\n6.13_10417_Player528-f153ac423f61-20210725-235328.mp4 6.13_22756_treechop-f153ac423f61-20210917-170836.mp4\r\n6.13_10418_Player528-f153ac423f61-20210726-000435.mp4 6.13_22757_treechop-f153ac423f61-20210917-170938.mp4\r\n6.13_10419_Player528-f153ac423f61-20210726-001238.mp4 6.13_22758_treechop-f153ac423f61-20210917-171040.mp4\r\n6.13_1041_Player134-f153ac423f61-20210920-174009.mp4 6.13_22759_treechop-f153ac423f61-20210917-171144.mp4\r\n6.13_10420_Player528-f153ac423f61-20210726-001843.mp4 6.13_2275_Player189-f57a6ab6f0f0-20211213-140622.mp4\r\n6.13_10421_Player528-f153ac423f61-20210726-003151.mp4 6.13_22760_treechop-f153ac423f61-20210917-171248.mp4\r\n6.13_10422_Player528-f153ac423f61-20210726-004801.mp4 6.13_22761_treechop-f153ac423f61-20210917-171350.mp4\r\n6.13_10423_Player528-f153ac423f61-20210726-005303.mp4 6.13_22762_treechop-f153ac423f61-20210917-171452.mp4\r\n6.13_10424_Player528-f153ac423f61-20210726-005806.mp4 6.13_22763_treechop-f153ac423f61-20210917-171554.mp4\r\n6.13_10425_Player528-f153ac423f61-20210726-010409.mp4 6.13_22764_treechop-f153ac423f61-20210917-171655.mp4\r\n6.13_10426_Player528-f153ac423f61-20210726-010811.mp4 6.13_22765_treechop-f153ac423f61-20210917-171757.mp4\r\n6.13_10427_Player528-f153ac423f61-20210726-011316.mp4 6.13_22766_treechop-f153ac423f61-20210917-171859.mp4\r\n6.13_10428_Player528-f153ac423f61-20210726-012119.mp4 6.13_22767_treechop-f153ac423f61-20210917-172001.mp4\r\n6.13_10429_Player528-f153ac423f61-20210726-012722.mp4 6.13_22768_treechop-f153ac423f61-20210917-175410.mp4\r\n6.13_1042_Player134-f153ac423f61-20210920-174818.mp4 6.13_22769_treechop-f153ac423f61-20210917-175514.mp4\r\n6.13_10430_Player528-f153ac423f61-20210726-013527.mp4 6.13_2276_Player189-f57a6ab6f0f0-20211213-140822.mp4\r\n6.13_10431_Player528-f153ac423f61-20210726-014332.mp4 6.13_22770_treechop-f153ac423f61-20210917-175618.mp4\r\n6.13_10432_Player528-f153ac423f61-20210730-192020.mp4 6.13_22771_treechop-f153ac423f61-20210917-175721.mp4\r\n6.13_10433_Player528-f153ac423f61-20210730-192133.mp4 6.13_22772_treechop-f153ac423f61-20210917-175822.mp4\r\n6.13_10434_Player528-f153ac423f61-20210730-192243.mp4 6.13_22773_treechop-f153ac423f61-20210917-175925.mp4\r\n6.13_10435_Player528-f153ac423f61-20211127-145653.mp4 6.13_22774_treechop-f153ac423f61-20210917-180028.mp4\r\n6.13_10436_Player528-f153ac423f61-20211127-145900.mp4 6.13_22775_treechop-f153ac423f61-20210917-180131.mp4\r\n6.13_10437_Player528-f153ac423f61-20211127-150051.mp4 6.13_22776_treechop-f153ac423f61-20210917-180235.mp4\r\n6.13_10438_Player528-f153ac423f61-20211127-150247.mp4 6.13_22777_treechop-f153ac423f61-20210917-180337.mp4\r\n6.13_10439_Player528-f153ac423f61-20211127-150432.mp4 6.13_22778_treechop-f153ac423f61-20210917-180438.mp4\r\n6.13_1043_Player134-f153ac423f61-20210920-175357.mp4 6.13_22779_treechop-f153ac423f61-20210917-180540.mp4\r\n6.13_10440_Player528-f153ac423f61-20211127-150634.mp4 6.13_2277_Player189-f57a6ab6f0f0-20211213-141024.mp4\r\n6.13_10441_Player528-f153ac423f61-20211127-150834.mp4 6.13_22780_treechop-f153ac423f61-20210917-180641.mp4\r\n6.13_10442_Player528-f153ac423f61-20211127-151030.mp4 6.13_22781_treechop-f153ac423f61-20210917-180744.mp4\r\n6.13_10443_Player528-f153ac423f61-20211127-151220.mp4 6.13_22782_treechop-f153ac423f61-20210917-180848.mp4\r\n6.13_10444_Player528-f153ac423f61-20211127-151411.mp4 6.13_22783_treechop-f153ac423f61-20210917-180951.mp4\r\n6.13_10445_Player528-f153ac423f61-20211127-151602.mp4 6.13_22784_treechop-f153ac423f61-20210917-181054.mp4\r\n6.13_10446_Player528-f153ac423f61-20211127-151751.mp4 6.13_22785_treechop-f153ac423f61-20210917-181157.mp4\r\n6.13_10447_Player528-f153ac423f61-20211127-151939.mp4 6.13_22786_treechop-f153ac423f61-20210917-181258.mp4\r\n6.13_10448_Player528-f153ac423f61-20211127-152136.mp4 6.13_22787_treechop-f153ac423f61-20210917-181359.mp4\r\n6.13_10449_Player528-f153ac423f61-20211127-152326.mp4 6.13_22788_treechop-f153ac423f61-20210917-181500.mp4\r\n6.13_1044_Player134-f153ac423f61-20210920-175921.mp4 6.13_22789_treechop-f153ac423f61-20210917-181609.mp4\r\n6.13_10450_Player528-f153ac423f61-20211127-152516.mp4 6.13_2278_Player189-f57a6ab6f0f0-20211213-141226.mp4\r\n6.13_10451_Player528-f153ac423f61-20211127-152707.mp4 6.13_22790_treechop-f153ac423f61-20210917-181713.mp4\r\n6.13_10452_Player528-f153ac423f61-20211127-152856.mp4 6.13_22791_treechop-f153ac423f61-20210917-181814.mp4\r\n6.13_10453_Player528-f153ac423f61-20211127-153051.mp4 6.13_22792_treechop-f153ac423f61-20210917-181918.mp4\r\n6.13_10454_Player528-f153ac423f61-20211127-153242.mp4 6.13_22793_treechop-f153ac423f61-20210917-182019.mp4\r\n6.13_10455_Player528-f153ac423f61-20211127-153437.mp4 6.13_22794_treechop-f153ac423f61-20210917-182120.mp4\r\n6.13_10456_Player528-f153ac423f61-20211127-153630.mp4 6.13_22795_treechop-f153ac423f61-20210917-182221.mp4\r\n6.13_10457_Player529-59ee5086eac9-20210905-091042.mp4 6.13_22796_treechop-f153ac423f61-20210917-182322.mp4\r\n6.13_10458_Player529-59ee5086eac9-20210905-091243.mp4 6.13_22797_treechop-f153ac423f61-20210917-182423.mp4\r\n6.13_10459_Player529-59ee5086eac9-20210905-091444.mp4 6.13_22798_treechop-f153ac423f61-20210917-182524.mp4\r\n6.13_1045_Player134-f153ac423f61-20210920-180735.mp4 6.13_22799_treechop-f153ac423f61-20210917-182624.mp4\r\n6.13_10460_Player529-59ee5086eac9-20210905-091644.mp4 6.13_2279_Player189-f57a6ab6f0f0-20211213-141428.mp4\r\n6.13_10461_Player529-59ee5086eac9-20210905-091844.mp4 6.13_227_Player108-f153ac423f61-20211207-110617.mp4\r\n6.13_10462_Player529-59ee5086eac9-20210905-092044.mp4 6.13_22800_treechop-f153ac423f61-20210917-182725.mp4\r\n6.13_10463_Player529-59ee5086eac9-20210905-092246.mp4 6.13_22801_treechop-f153ac423f61-20210917-182826.mp4\r\n6.13_10464_Player529-59ee5086eac9-20210905-092446.mp4 6.13_22802_treechop-f153ac423f61-20210917-182929.mp4\r\n6.13_10465_Player529-59ee5086eac9-20210905-092646.mp4 6.13_22803_treechop-f153ac423f61-20210917-183036.mp4\r\n6.13_10466_Player529-59ee5086eac9-20210905-092846.mp4 6.13_22804_treechop-f153ac423f61-20210917-183152.mp4\r\n6.13_10467_Player529-59ee5086eac9-20210905-093046.mp4 6.13_22805_treechop-f153ac423f61-20210917-183302.mp4\r\n6.13_10468_Player529-59ee5086eac9-20210905-093247.mp4 6.13_22806_treechop-f153ac423f61-20210917-183407.mp4\r\n6.13_10469_Player529-59ee5086eac9-20210905-093447.mp4 6.13_22807_treechop-f153ac423f61-20210917-183509.mp4\r\n6.13_1046_Player134-f153ac423f61-20210920-181534.mp4 6.13_22808_treechop-f153ac423f61-20210917-183614.mp4\r\n6.13_10470_Player529-59ee5086eac9-20210905-093648.mp4 6.13_22809_treechop-f153ac423f61-20210917-183716.mp4\r\n6.13_10471_Player529-59ee5086eac9-20210905-093851.mp4 6.13_2280_Player189-f57a6ab6f0f0-20211213-141538.mp4\r\n6.13_10472_Player529-59ee5086eac9-20210905-094054.mp4 6.13_22810_treechop-f153ac423f61-20210917-183818.mp4\r\n6.13_10473_Player529-59ee5086eac9-20210905-094257.mp4 6.13_22811_treechop-f153ac423f61-20210917-183921.mp4\r\n6.13_10474_Player529-59ee5086eac9-20210905-094501.mp4 6.13_22812_treechop-f153ac423f61-20210917-184022.mp4\r\n6.13_10475_Player529-59ee5086eac9-20210905-094703.mp4 6.13_22813_treechop-f153ac423f61-20210917-184123.mp4\r\n6.13_10476_Player529-59ee5086eac9-20210905-094905.mp4 6.13_22814_treechop-f153ac423f61-20210917-184225.mp4\r\n6.13_10477_Player529-59ee5086eac9-20210905-095106.mp4 6.13_22815_treechop-f153ac423f61-20210917-184328.mp4\r\n6.13_10478_Player529-59ee5086eac9-20210905-095307.mp4 6.13_22816_treechop-f153ac423f61-20210917-184431.mp4\r\n6.13_10479_Player529-59ee5086eac9-20210905-095509.mp4 6.13_22817_treechop-f153ac423f61-20210917-184534.mp4\r\n6.13_1047_Player135-8f4111be01cc-20210827-163418.mp4 6.13_22818_treechop-f153ac423f61-20210917-184634.mp4\r\n6.13_10480_Player529-59ee5086eac9-20210905-095710.mp4 6.13_22819_treechop-f153ac423f61-20210917-184736.mp4\r\n6.13_10481_Player529-59ee5086eac9-20210905-095911.mp4 6.13_2281_Player189-f57a6ab6f0f0-20211213-141739.mp4\r\n6.13_10482_Player529-59ee5086eac9-20210905-100112.mp4 6.13_22820_treechop-f153ac423f61-20210917-184838.mp4\r\n6.13_10483_Player529-59ee5086eac9-20210905-100314.mp4 6.13_22821_treechop-f153ac423f61-20210917-184941.mp4\r\n6.13_10484_Player529-59ee5086eac9-20210905-100517.mp4 6.13_22822_treechop-f153ac423f61-20210917-185041.mp4\r\n6.13_10485_Player529-59ee5086eac9-20210905-100732.mp4 6.13_22823_treechop-f153ac423f61-20210917-185142.mp4\r\n6.13_10486_Player529-59ee5086eac9-20210905-100935.mp4 6.13_22824_treechop-f153ac423f61-20210917-185244.mp4\r\n6.13_10487_Player529-59ee5086eac9-20210905-101135.mp4 6.13_22825_treechop-f153ac423f61-20210917-185346.mp4\r\n6.13_10488_Player529-59ee5086eac9-20210905-101338.mp4 6.13_22826_treechop-f153ac423f61-20210917-185503.mp4\r\n6.13_10489_Player529-59ee5086eac9-20210905-101540.mp4 6.13_22827_treechop-f153ac423f61-20210917-185604.mp4\r\n6.13_1048_Player135-8f4111be01cc-20210827-164200.mp4 6.13_22828_treechop-f153ac423f61-20210917-185706.mp4\r\n6.13_10490_Player529-59ee5086eac9-20210905-101743.mp4 6.13_22829_treechop-f153ac423f61-20210917-185806.mp4\r\n6.13_10491_Player529-59ee5086eac9-20210905-101945.mp4 6.13_2282_Player19-0de8de60b936-20211130-143930.mp4\r\n6.13_10492_Player529-59ee5086eac9-20210905-102148.mp4 6.13_22830_treechop-f153ac423f61-20210917-190043.mp4\r\n6.13_10493_Player529-59ee5086eac9-20210905-102350.mp4 6.13_22831_treechop-f153ac423f61-20210917-190145.mp4\r\n6.13_10494_Player529-59ee5086eac9-20210905-102553.mp4 6.13_22832_treechop-f153ac423f61-20210917-190247.mp4\r\n6.13_10495_Player529-59ee5086eac9-20210905-102759.mp4 6.13_22833_treechop-f153ac423f61-20210917-190348.mp4\r\n6.13_10496_Player529-59ee5086eac9-20210905-103002.mp4 6.13_22834_treechop-f153ac423f61-20210917-190449.mp4\r\n6.13_10497_Player529-59ee5086eac9-20210905-103207.mp4 6.13_22835_treechop-f153ac423f61-20210917-190551.mp4\r\n6.13_10498_Player529-59ee5086eac9-20210905-103409.mp4 6.13_22836_treechop-f153ac423f61-20210917-190652.mp4\r\n6.13_10499_Player529-59ee5086eac9-20210905-103613.mp4 6.13_22837_treechop-f153ac423f61-20210917-190753.mp4\r\n6.13_1049_Player135-f153ac423f61-20210827-163142.mp4 6.13_22838_treechop-f153ac423f61-20210917-190854.mp4\r\n6.13_104_Player100-63eefbd0685a-20211220-201321.mp4 6.13_22839_treechop-f153ac423f61-20210917-190955.mp4\r\n6.13_10500_Player529-59ee5086eac9-20210905-103815.mp4 6.13_2283_Player19-0de8de60b936-20211130-144030.mp4\r\n6.13_10501_Player529-59ee5086eac9-20210905-104024.mp4 6.13_22840_treechop-f153ac423f61-20210917-191057.mp4\r\n6.13_10502_Player529-59ee5086eac9-20210905-104226.mp4 6.13_22841_treechop-f153ac423f61-20210917-191158.mp4\r\n6.13_10503_Player529-59ee5086eac9-20210905-104437.mp4 6.13_22842_treechop-f153ac423f61-20210917-191259.mp4\r\n6.13_10504_Player529-59ee5086eac9-20210905-104641.mp4 6.13_22843_treechop-f153ac423f61-20210917-191400.mp4\r\n6.13_10505_Player529-59ee5086eac9-20210905-104845.mp4 6.13_22844_treechop-f153ac423f61-20210917-191502.mp4\r\n6.13_10506_Player529-59ee5086eac9-20210905-105050.mp4 6.13_22845_treechop-f153ac423f61-20210917-191603.mp4\r\n6.13_10507_Player529-59ee5086eac9-20210905-105252.mp4 6.13_22846_treechop-f153ac423f61-20210917-191703.mp4\r\n6.13_10508_Player529-59ee5086eac9-20210905-105454.mp4 6.13_22847_treechop-f153ac423f61-20210917-191805.mp4\r\n6.13_10509_Player529-59ee5086eac9-20210905-105655.mp4 6.13_22848_treechop-f153ac423f61-20210917-214831.mp4\r\n6.13_1050_Player137-498a7e4d4b64-20210722-132902.mp4 6.13_22849_treechop-f153ac423f61-20210917-214937.mp4\r\n6.13_10510_Player529-59ee5086eac9-20210905-105856.mp4 6.13_2284_Player19-0de8de60b936-20211130-144233.mp4\r\n6.13_10511_Player529-59ee5086eac9-20210905-110056.mp4 6.13_22850_treechop-f153ac423f61-20210917-215040.mp4\r\n6.13_10512_Player529-59ee5086eac9-20210905-110256.mp4 6.13_22851_treechop-f153ac423f61-20210917-215143.mp4\r\n6.13_10513_Player529-59ee5086eac9-20210905-110456.mp4 6.13_22852_treechop-f153ac423f61-20210917-215244.mp4\r\n6.13_10514_Player529-59ee5086eac9-20210905-110656.mp4 6.13_22853_treechop-f153ac423f61-20210917-215346.mp4\r\n6.13_10515_Player529-59ee5086eac9-20210905-110856.mp4 6.13_22854_treechop-f153ac423f61-20210917-215448.mp4\r\n6.13_10516_Player529-59ee5086eac9-20210905-111057.mp4 6.13_22855_treechop-f153ac423f61-20210917-215549.mp4\r\n6.13_10517_Player529-59ee5086eac9-20210905-111257.mp4 6.13_22856_treechop-f153ac423f61-20210917-215650.mp4\r\n6.13_10518_Player529-59ee5086eac9-20210905-111458.mp4 6.13_22857_treechop-f153ac423f61-20210917-215751.mp4\r\n6.13_10519_Player529-59ee5086eac9-20210905-111700.mp4 6.13_22858_treechop-f153ac423f61-20210917-215852.mp4\r\n6.13_1051_Player137-498a7e4d4b64-20210722-133011.mp4 6.13_22859_treechop-f153ac423f61-20210917-215955.mp4\r\n6.13_10520_Player529-59ee5086eac9-20210905-111903.mp4 6.13_2285_Player19-0de8de60b936-20211130-144435.mp4\r\n6.13_10521_Player529-59ee5086eac9-20210905-112105.mp4 6.13_22860_treechop-f153ac423f61-20210917-220106.mp4\r\n6.13_10522_Player529-59ee5086eac9-20210905-112307.mp4 6.13_22861_treechop-f153ac423f61-20210917-220208.mp4\r\n6.13_10523_Player529-59ee5086eac9-20210905-112509.mp4 6.13_22862_treechop-f153ac423f61-20210917-220310.mp4\r\n6.13_10524_Player529-59ee5086eac9-20210905-112710.mp4 6.13_22863_treechop-f153ac423f61-20210917-220411.mp4\r\n6.13_10525_Player529-59ee5086eac9-20210905-112911.mp4 6.13_22864_treechop-f153ac423f61-20210917-220514.mp4\r\n6.13_10526_Player529-59ee5086eac9-20210905-113113.mp4 6.13_22865_treechop-f153ac423f61-20210917-220615.mp4\r\n6.13_10527_Player529-59ee5086eac9-20210905-113318.mp4 6.13_22866_treechop-f153ac423f61-20210917-220718.mp4\r\n6.13_10528_Player529-59ee5086eac9-20210905-113521.mp4 6.13_22867_treechop-f153ac423f61-20210917-220819.mp4\r\n6.13_10529_Player529-59ee5086eac9-20210905-113723.mp4 6.13_22868_treechop-f153ac423f61-20210917-220920.mp4\r\n6.13_1052_Player137-498a7e4d4b64-20210722-133134.mp4 6.13_22869_treechop-f153ac423f61-20210917-221022.mp4\r\n6.13_10530_Player529-59ee5086eac9-20210905-113924.mp4 6.13_2286_Player19-0de8de60b936-20211130-144637.mp4\r\n6.13_10531_Player529-59ee5086eac9-20210905-114126.mp4 6.13_22870_treechop-f153ac423f61-20210917-221123.mp4\r\n6.13_10532_Player529-59ee5086eac9-20210905-114328.mp4 6.13_22871_treechop-f153ac423f61-20210917-221225.mp4\r\n6.13_10533_Player529-59ee5086eac9-20210905-114531.mp4 6.13_22872_treechop-f153ac423f61-20210917-221326.mp4\r\n6.13_10534_Player529-59ee5086eac9-20210905-114732.mp4 6.13_22873_treechop-f153ac423f61-20210917-221428.mp4\r\n6.13_10535_Player529-59ee5086eac9-20210905-114934.mp4 6.13_22874_treechop-f153ac423f61-20210917-221529.mp4\r\n6.13_10536_Player529-59ee5086eac9-20210905-115135.mp4 6.13_22875_treechop-f153ac423f61-20210917-221633.mp4\r\n6.13_10537_Player529-59ee5086eac9-20210905-115336.mp4 6.13_22876_treechop-f153ac423f61-20210917-221734.mp4\r\n6.13_10538_Player529-59ee5086eac9-20210905-115538.mp4 6.13_22877_treechop-f153ac423f61-20210917-221838.mp4\r\n6.13_10539_Player529-59ee5086eac9-20210905-115739.mp4 6.13_22878_treechop-f153ac423f61-20210917-222111.mp4\r\n6.13_1053_Player137-498a7e4d4b64-20210722-133304.mp4 6.13_22879_treechop-f153ac423f61-20210917-222212.mp4\r\n6.13_10540_Player529-59ee5086eac9-20210905-115939.mp4 6.13_2287_Player19-0de8de60b936-20211130-144838.mp4\r\n6.13_10541_Player529-59ee5086eac9-20210905-120140.mp4 6.13_22880_treechop-f153ac423f61-20210917-222313.mp4\r\n6.13_10542_Player529-f153ac423f61-20210813-083352.mp4 6.13_22881_treechop-f153ac423f61-20210917-222417.mp4\r\n6.13_10543_Player529-f153ac423f61-20210813-083539.mp4 6.13_22882_treechop-f153ac423f61-20210917-222519.mp4\r\n6.13_10544_Player529-f153ac423f61-20210813-083715.mp4 6.13_22883_treechop-f153ac423f61-20210917-222630.mp4\r\n6.13_10545_Player529-f153ac423f61-20210813-083856.mp4 6.13_22884_treechop-f153ac423f61-20210919-105339.mp4\r\n6.13_10546_Player529-f153ac423f61-20210813-084032.mp4 6.13_22885_treechop-f153ac423f61-20210919-105444.mp4\r\n6.13_10547_Player529-f153ac423f61-20210813-084203.mp4 6.13_22886_treechop-f153ac423f61-20210919-105545.mp4\r\n6.13_10548_Player529-f153ac423f61-20210813-084330.mp4 6.13_22887_treechop-f153ac423f61-20210919-105646.mp4\r\n6.13_10549_Player529-f153ac423f61-20210813-084512.mp4 6.13_22888_treechop-f153ac423f61-20210919-105747.mp4\r\n6.13_1054_Player137-498a7e4d4b64-20210722-133434.mp4 6.13_22889_treechop-f153ac423f61-20210919-105848.mp4\r\n6.13_10550_Player529-f153ac423f61-20210813-084642.mp4 6.13_2288_Player19-0de8de60b936-20211130-145040.mp4\r\n6.13_10551_Player529-f153ac423f61-20210813-084824.mp4 6.13_22890_treechop-f153ac423f61-20210919-105948.mp4\r\n6.13_10552_Player529-f153ac423f61-20210813-084953.mp4 6.13_22891_treechop-f153ac423f61-20210919-110048.mp4\r\n6.13_10553_Player529-f153ac423f61-20210813-085123.mp4 6.13_22892_treechop-f153ac423f61-20210919-110149.mp4\r\n6.13_10554_Player529-f153ac423f61-20210813-085304.mp4 6.13_22893_treechop-f153ac423f61-20210919-110250.mp4\r\n6.13_10555_Player529-f153ac423f61-20210813-085446.mp4 6.13_22894_treechop-f153ac423f61-20210919-110350.mp4\r\n6.13_10556_Player529-f153ac423f61-20210813-085630.mp4 6.13_22895_treechop-f153ac423f61-20210919-110451.mp4\r\n6.13_10557_Player529-f153ac423f61-20210813-085817.mp4 6.13_22896_treechop-f153ac423f61-20210919-110552.mp4\r\n6.13_10558_Player529-f153ac423f61-20210813-090004.mp4 6.13_22897_treechop-f153ac423f61-20210919-110652.mp4\r\n6.13_10559_Player529-f153ac423f61-20210813-090149.mp4 6.13_22898_treechop-f153ac423f61-20210919-110753.mp4\r\n6.13_1055_Player137-498a7e4d4b64-20210722-133600.mp4 6.13_22899_treechop-f153ac423f61-20210919-110855.mp4\r\n6.13_10560_Player529-f153ac423f61-20210813-090337.mp4 6.13_2289_Player19-70999e793bc0-20211130-145108.mp4\r\n6.13_10561_Player529-f153ac423f61-20210813-090509.mp4 6.13_228_Player108-f153ac423f61-20211207-110727.mp4\r\n6.13_10562_Player529-f153ac423f61-20210813-090636.mp4 6.13_22900_treechop-f153ac423f61-20210919-110957.mp4\r\n6.13_10563_Player529-f153ac423f61-20210813-090815.mp4 6.13_22901_treechop-f153ac423f61-20210919-111057.mp4\r\n6.13_10564_Player529-f153ac423f61-20210813-090952.mp4 6.13_22902_treechop-f153ac423f61-20210919-111158.mp4\r\n6.13_10565_Player529-f153ac423f61-20210813-091130.mp4 6.13_22903_treechop-f153ac423f61-20210919-111259.mp4\r\n6.13_10566_Player529-f153ac423f61-20210813-091307.mp4 6.13_22904_treechop-f153ac423f61-20210919-111359.mp4\r\n6.13_10567_Player529-f153ac423f61-20210813-091447.mp4 6.13_22905_treechop-f153ac423f61-20210919-111500.mp4\r\n6.13_10568_Player529-f153ac423f61-20210813-091624.mp4 6.13_22906_treechop-f153ac423f61-20210919-111600.mp4\r\n6.13_10569_Player529-f153ac423f61-20210813-091759.mp4 6.13_22907_treechop-f153ac423f61-20210919-111701.mp4\r\n6.13_1056_Player137-498a7e4d4b64-20210722-133730.mp4 6.13_22908_treechop-f153ac423f61-20210919-111802.mp4\r\n6.13_10570_Player529-f153ac423f61-20210813-091932.mp4 6.13_22909_treechop-f153ac423f61-20210919-111902.mp4\r\n6.13_10571_Player529-f153ac423f61-20210813-092116.mp4 6.13_2290_Player19-b0606dcaac9b-20211130-145404.mp4\r\n6.13_10572_Player529-f153ac423f61-20210813-092259.mp4 6.13_22910_treechop-f153ac423f61-20210919-134029.mp4\r\n6.13_10573_Player529-f153ac423f61-20210813-092441.mp4 6.13_22911_treechop-f153ac423f61-20210919-134133.mp4\r\n6.13_10574_Player529-f153ac423f61-20210813-092616.mp4 6.13_22912_treechop-f153ac423f61-20210919-134235.mp4\r\n6.13_10575_Player529-f153ac423f61-20210813-092756.mp4 6.13_22913_treechop-f153ac423f61-20210919-134336.mp4\r\n6.13_10576_Player529-f153ac423f61-20210813-092931.mp4 6.13_22914_treechop-f153ac423f61-20210919-134436.mp4\r\n6.13_10577_Player529-f153ac423f61-20210813-093101.mp4 6.13_22915_treechop-f153ac423f61-20210919-134536.mp4\r\n6.13_10578_Player529-f153ac423f61-20210813-093237.mp4 6.13_22916_treechop-f153ac423f61-20210919-134637.mp4\r\n6.13_10579_Player529-f153ac423f61-20210813-093419.mp4 6.13_22917_treechop-f153ac423f61-20210919-134737.mp4\r\n6.13_1057_Player137-f153ac423f61-20210722-124311.mp4 6.13_22918_treechop-f153ac423f61-20210919-134837.mp4\r\n6.13_10580_Player529-f153ac423f61-20210813-093559.mp4 6.13_22919_treechop-f153ac423f61-20210919-134938.mp4\r\n6.13_10581_Player529-f153ac423f61-20210813-093739.mp4 6.13_2291_Player19-b0606dcaac9b-20211130-145808.mp4\r\n6.13_10582_Player529-f153ac423f61-20210813-093915.mp4 6.13_22920_treechop-f153ac423f61-20210919-135038.mp4\r\n6.13_10583_Player529-f153ac423f61-20210813-094036.mp4 6.13_22921_treechop-f153ac423f61-20210919-135138.mp4\r\n6.13_10584_Player529-f153ac423f61-20210905-084124.mp4 6.13_22922_treechop-f153ac423f61-20210919-135239.mp4\r\n6.13_10585_Player529-f153ac423f61-20210905-084229.mp4 6.13_22923_treechop-f153ac423f61-20210919-135339.mp4\r\n6.13_10586_Player529-f153ac423f61-20210905-084330.mp4 6.13_22924_treechop-f153ac423f61-20210919-135439.mp4\r\n6.13_10587_Player529-f153ac423f61-20210905-084430.mp4 6.13_22925_treechop-f153ac423f61-20210919-135540.mp4\r\n6.13_10588_Player529-f153ac423f61-20210905-084531.mp4 6.13_22926_treechop-f153ac423f61-20210919-135640.mp4\r\n6.13_10589_Player529-f153ac423f61-20210905-084631.mp4 6.13_22927_treechop-f153ac423f61-20210919-135740.mp4\r\n6.13_1058_Player137-f153ac423f61-20210722-124426.mp4 6.13_22928_treechop-f153ac423f61-20210919-135841.mp4\r\n6.13_10590_Player529-f153ac423f61-20210905-084732.mp4 6.13_22929_treechop-f153ac423f61-20210919-135941.mp4\r\n6.13_10591_Player529-f153ac423f61-20210905-084832.mp4 6.13_2292_Player19-d81ea4aea44f-20211130-143502.mp4\r\n6.13_10592_Player529-f153ac423f61-20210905-085033.mp4 6.13_22930_treechop-f153ac423f61-20210919-140042.mp4\r\n6.13_10593_Player529-f153ac423f61-20210905-085234.mp4 6.13_22931_treechop-f153ac423f61-20210919-140142.mp4\r\n6.13_10594_Player529-f153ac423f61-20210905-085434.mp4 6.13_22932_treechop-f153ac423f61-20210919-140243.mp4\r\n6.13_10595_Player529-f153ac423f61-20210905-085635.mp4 6.13_22933_treechop-f153ac423f61-20210919-140343.mp4\r\n6.13_10596_Player529-f153ac423f61-20210905-085835.mp4 6.13_22934_treechop-f153ac423f61-20210919-140444.mp4\r\n6.13_10597_Player529-f153ac423f61-20210905-090036.mp4 6.13_22935_treechop-f153ac423f61-20210919-140544.mp4\r\n6.13_10598_Player529-f153ac423f61-20210905-090138.mp4 6.13_22936_treechop-f153ac423f61-20210919-140644.mp4\r\n6.13_10599_Player529-f153ac423f61-20210905-090242.mp4 6.13_22937_treechop-f153ac423f61-20210919-140745.mp4\r\n6.13_1059_Player137-f153ac423f61-20210722-124551.mp4 6.13_22938_treechop-f153ac423f61-20210919-141004.mp4\r\n6.13_105_Player100-63eefbd0685a-20211220-201522.mp4 6.13_22939_treechop-f153ac423f61-20210919-141105.mp4\r\n6.13_10600_Player529-f153ac423f61-20210905-090443.mp4 6.13_2293_Player19-f153ac423f61-20210819-162309.mp4\r\n6.13_10601_Player529-f153ac423f61-20210905-090643.mp4 6.13_22940_treechop-f153ac423f61-20210919-141206.mp4\r\n6.13_10602_Player529-f153ac423f61-20210905-090843.mp4 6.13_22941_treechop-f153ac423f61-20210919-141255.mp4\r\n6.13_10603_Player529-f153ac423f61-20211110-114334.mp4 6.13_22942_treechop-f153ac423f61-20210919-141306.mp4\r\n6.13_10604_Player530-f153ac423f61-20210729-151812.mp4 6.13_22943_treechop-f153ac423f61-20210919-141406.mp4\r\n6.13_10605_Player530-f153ac423f61-20210729-152300.mp4 6.13_22944_treechop-f153ac423f61-20210919-141507.mp4\r\n6.13_10606_Player530-f153ac423f61-20210729-154401.mp4 6.13_22945_treechop-f153ac423f61-20210919-141607.mp4\r\n6.13_10607_Player530-f153ac423f61-20210729-155334.mp4 6.13_22946_treechop-f153ac423f61-20210919-141707.mp4\r\n6.13_10608_Player530-f153ac423f61-20210729-155748.mp4 6.13_22947_treechop-f153ac423f61-20210919-141807.mp4\r\n6.13_10609_Player530-f153ac423f61-20210729-160110.mp4 6.13_22948_treechop-f153ac423f61-20210919-141908.mp4\r\n6.13_1060_Player137-f153ac423f61-20210722-124718.mp4 6.13_22949_treechop-f153ac423f61-20210919-142009.mp4\r\n6.13_10610_Player530-f153ac423f61-20211214-152515.mp4 6.13_2294_Player19-f153ac423f61-20211130-140022.mp4\r\n6.13_10611_Player530-f153ac423f61-20211214-152621.mp4 6.13_22950_treechop-f153ac423f61-20210919-142112.mp4\r\n6.13_10612_Player530-f153ac423f61-20211214-152723.mp4 6.13_22951_treechop-f153ac423f61-20210919-142215.mp4\r\n6.13_10613_Player530-f153ac423f61-20211214-152825.mp4 6.13_22952_treechop-f153ac423f61-20210919-142317.mp4\r\n6.13_10614_Player530-f153ac423f61-20211214-152927.mp4 6.13_22953_treechop-f153ac423f61-20210919-142417.mp4\r\n6.13_10615_Player530-f153ac423f61-20211214-153030.mp4 6.13_22954_treechop-f153ac423f61-20210919-142518.mp4\r\n6.13_10616_Player530-f153ac423f61-20211214-153133.mp4 6.13_22955_treechop-f153ac423f61-20210919-142619.mp4\r\n6.13_10617_Player530-f153ac423f61-20211214-153241.mp4 6.13_22956_treechop-f153ac423f61-20210919-142721.mp4\r\n6.13_10618_Player530-f153ac423f61-20211214-153348.mp4 6.13_22957_treechop-f153ac423f61-20210919-142837.mp4\r\n6.13_10619_Player530-f153ac423f61-20211214-153456.mp4 6.13_22958_treechop-f153ac423f61-20210919-142953.mp4\r\n6.13_1061_Player137-f153ac423f61-20210722-124838.mp4 6.13_22959_treechop-f153ac423f61-20210919-143043.mp4\r\n6.13_10620_Player530-f153ac423f61-20211214-153607.mp4 6.13_2295_Player19-f153ac423f61-20211130-140124.mp4\r\n6.13_10621_Player530-f153ac423f61-20211214-153714.mp4 6.13_22960_treechop-f153ac423f61-20210919-143111.mp4\r\n6.13_10622_Player530-f153ac423f61-20211214-153818.mp4 6.13_22961_treechop-f153ac423f61-20210919-143229.mp4\r\n6.13_10623_Player530-f153ac423f61-20211214-153924.mp4 6.13_22962_treechop-f153ac423f61-20210919-143347.mp4\r\n6.13_10624_Player530-f153ac423f61-20211214-154030.mp4 6.13_22963_treechop-f153ac423f61-20210919-143508.mp4\r\n6.13_10625_Player530-f153ac423f61-20211214-154146.mp4 6.13_22964_treechop-f153ac423f61-20210919-143629.mp4\r\n6.13_10626_Player530-f153ac423f61-20211214-154251.mp4 6.13_22965_treechop-f153ac423f61-20210919-143750.mp4\r\n6.13_10627_Player530-f153ac423f61-20211214-154400.mp4 6.13_22966_treechop-f153ac423f61-20210919-143852.mp4\r\n6.13_10628_Player530-f153ac423f61-20211214-154505.mp4 6.13_22967_treechop-f153ac423f61-20210919-144527.mp4\r\n6.13_10629_Player530-f153ac423f61-20211214-154609.mp4 6.13_22968_treechop-f153ac423f61-20210919-150002.mp4\r\n6.13_1062_Player137-f153ac423f61-20210722-125002.mp4 6.13_22969_treechop-f153ac423f61-20210919-153105.mp4\r\n6.13_10630_Player530-f153ac423f61-20211214-154712.mp4 6.13_2296_Player19-f153ac423f61-20211130-140225.mp4\r\n6.13_10631_Player530-f153ac423f61-20211214-154818.mp4 6.13_22970_treechop-f153ac423f61-20210919-154501.mp4\r\n6.13_10632_Player530-f153ac423f61-20211214-154923.mp4 6.13_22971_treechop-f153ac423f61-20210919-160255.mp4\r\n6.13_10633_Player530-f153ac423f61-20211214-155029.mp4 6.13_22972_treechop-f153ac423f61-20210919-162148.mp4\r\n6.13_10634_Player530-f153ac423f61-20211214-155134.mp4 6.13_22973_treechop-f153ac423f61-20210919-162254.mp4\r\n6.13_10635_Player530-f153ac423f61-20211214-155239.mp4 6.13_22974_treechop-f153ac423f61-20210919-162357.mp4\r\n6.13_10636_Player530-f153ac423f61-20211214-155455.mp4 6.13_22975_treechop-f153ac423f61-20210919-162501.mp4\r\n6.13_10637_Player530-f153ac423f61-20211214-155704.mp4 6.13_22976_treechop-f153ac423f61-20210919-162603.mp4\r\n6.13_10638_Player531-01743b86b896-20210810-161626.mp4 6.13_22977_treechop-f153ac423f61-20210919-162702.mp4\r\n6.13_10639_Player531-01743b86b896-20210810-161731.mp4 6.13_22978_treechop-f153ac423f61-20210919-162705.mp4\r\n6.13_1063_Player137-f153ac423f61-20210722-125125.mp4 6.13_22979_treechop-f153ac423f61-20210919-162808.mp4\r\n6.13_10640_Player531-01743b86b896-20210810-161835.mp4 6.13_2297_Player19-f153ac423f61-20211130-140346.mp4\r\n6.13_10641_Player531-01743b86b896-20210810-161939.mp4 6.13_22980_treechop-f153ac423f61-20210919-162911.mp4\r\n6.13_10642_Player531-01743b86b896-20210810-162043.mp4 6.13_22981_treechop-f153ac423f61-20210919-163012.mp4\r\n6.13_10643_Player531-01743b86b896-20210810-162149.mp4 6.13_22982_treechop-f153ac423f61-20210919-163118.mp4\r\n6.13_10644_Player531-f153ac423f61-20210810-154056.mp4 6.13_22983_treechop-f153ac423f61-20210919-163219.mp4\r\n6.13_10645_Player531-f153ac423f61-20210810-154202.mp4 6.13_22984_treechop-f153ac423f61-20210919-163320.mp4\r\n6.13_10646_Player531-f153ac423f61-20210810-154304.mp4 6.13_22985_treechop-f153ac423f61-20210919-163422.mp4\r\n6.13_10647_Player531-f153ac423f61-20210810-154405.mp4 6.13_22986_treechop-f153ac423f61-20210919-163523.mp4\r\n6.13_10648_Player531-f153ac423f61-20210810-154508.mp4 6.13_22987_treechop-f153ac423f61-20210919-163625.mp4\r\n6.13_10649_Player531-f153ac423f61-20210810-154614.mp4 6.13_22988_treechop-f153ac423f61-20210919-163728.mp4\r\n6.13_1064_Player137-f153ac423f61-20210722-125251.mp4 6.13_22989_treechop-f153ac423f61-20210919-163829.mp4\r\n6.13_10650_Player531-f153ac423f61-20210810-154719.mp4 6.13_2298_Player19-f153ac423f61-20211130-140446.mp4\r\n6.13_10651_Player531-f153ac423f61-20210810-154824.mp4 6.13_22990_treechop-f153ac423f61-20210919-163930.mp4\r\n6.13_10652_Player531-f153ac423f61-20210810-154928.mp4 6.13_22991_treechop-f153ac423f61-20210919-164030.mp4\r\n6.13_10653_Player531-f153ac423f61-20210810-155033.mp4 6.13_22992_treechop-f153ac423f61-20210919-164131.mp4\r\n6.13_10654_Player531-f153ac423f61-20210810-155137.mp4 6.13_22993_treechop-f153ac423f61-20210919-164231.mp4\r\n6.13_10655_Player531-f153ac423f61-20210810-155240.mp4 6.13_22994_treechop-f153ac423f61-20210919-164333.mp4\r\n6.13_10656_Player531-f153ac423f61-20210810-155343.mp4 6.13_22995_treechop-f153ac423f61-20210919-164435.mp4\r\n6.13_10657_Player531-f153ac423f61-20210810-155444.mp4 6.13_22996_treechop-f153ac423f61-20210919-164536.mp4\r\n6.13_10658_Player531-f153ac423f61-20210810-155547.mp4 6.13_22997_treechop-f153ac423f61-20210919-164638.mp4\r\n6.13_10659_Player531-f153ac423f61-20210810-155650.mp4 6.13_22998_treechop-f153ac423f61-20210919-164740.mp4\r\n6.13_1065_Player137-f153ac423f61-20210722-125421.mp4 6.13_22999_treechop-f153ac423f61-20210919-164841.mp4\r\n6.13_10660_Player531-f153ac423f61-20210810-155758.mp4 6.13_2299_Player19-f153ac423f61-20211130-140546.mp4\r\n6.13_10661_Player531-f153ac423f61-20210810-155914.mp4 6.13_229_Player108-f153ac423f61-20211207-110843.mp4\r\n6.13_10662_Player531-f153ac423f61-20210810-160035.mp4 6.13_23000_treechop-f153ac423f61-20210919-164943.mp4\r\n6.13_10663_Player531-f153ac423f61-20210810-160154.mp4 6.13_23001_treechop-f153ac423f61-20210919-165045.mp4\r\n6.13_10664_Player531-f153ac423f61-20210810-160310.mp4 6.13_23002_treechop-f153ac423f61-20210919-165147.mp4\r\n6.13_10665_Player531-f153ac423f61-20210810-160427.mp4 6.13_23003_treechop-f153ac423f61-20210919-165249.mp4\r\n6.13_10666_Player531-f153ac423f61-20210810-160543.mp4 6.13_23004_treechop-f153ac423f61-20210919-170824.mp4\r\n6.13_10667_Player531-f153ac423f61-20210810-160656.mp4 6.13_23005_treechop-f153ac423f61-20210919-170931.mp4\r\n6.13_10668_Player531-f153ac423f61-20210810-160810.mp4 6.13_23006_treechop-f153ac423f61-20210919-171034.mp4\r\n6.13_10669_Player531-f153ac423f61-20210810-160926.mp4 6.13_23007_treechop-f153ac423f61-20210919-171136.mp4\r\n6.13_1066_Player137-f153ac423f61-20210722-125550.mp4 6.13_23008_treechop-f153ac423f61-20210919-171237.mp4\r\n6.13_10670_Player531-f153ac423f61-20210810-161043.mp4 6.13_23009_treechop-f153ac423f61-20210919-171341.mp4\r\n6.13_10671_Player531-f153ac423f61-20210810-161153.mp4 6.13_2300_Player19-f153ac423f61-20211130-140647.mp4\r\n6.13_10672_Player531-f153ac423f61-20210810-161310.mp4 6.13_23010_treechop-f153ac423f61-20210919-171443.mp4\r\n6.13_10673_Player531-f153ac423f61-20210810-161424.mp4 6.13_23011_treechop-f153ac423f61-20210919-171545.mp4\r\n6.13_10674_Player531-f153ac423f61-20210810-161537.mp4 6.13_23012_treechop-f153ac423f61-20210919-171647.mp4\r\n6.13_10675_Player532-a8fb06ce4b09-20210812-095229.mp4 6.13_23013_treechop-f153ac423f61-20210919-171748.mp4\r\n6.13_10676_Player532-a8fb06ce4b09-20210812-103041.mp4 6.13_23014_treechop-f153ac423f61-20210919-171849.mp4\r\n6.13_10677_Player532-a8fb06ce4b09-20210812-110726.mp4 6.13_23015_treechop-f153ac423f61-20210919-171952.mp4\r\n6.13_10678_Player532-a8fb06ce4b09-20210812-114616.mp4 6.13_23016_treechop-f153ac423f61-20210919-172053.mp4\r\n6.13_10679_Player532-a99eb9c2c388-20210812-155925.mp4 6.13_23017_treechop-f153ac423f61-20210919-172154.mp4\r\n6.13_1067_Player137-f153ac423f61-20210722-125719.mp4 6.13_23018_treechop-f153ac423f61-20210919-172254.mp4\r\n6.13_10680_Player532-a99eb9c2c388-20210812-163320.mp4 6.13_23019_treechop-f153ac423f61-20210919-172355.mp4\r\n6.13_10681_Player532-a99eb9c2c388-20210812-170917.mp4 6.13_2301_Player19-f153ac423f61-20211130-140747.mp4\r\n6.13_10682_Player532-a99eb9c2c388-20210812-174223.mp4 6.13_23020_treechop-f153ac423f61-20210919-172456.mp4\r\n6.13_10683_Player532-a99eb9c2c388-20210812-181511.mp4 6.13_23021_treechop-f153ac423f61-20210919-172558.mp4\r\n6.13_10684_Player532-a99eb9c2c388-20210812-184945.mp4 6.13_23022_treechop-f153ac423f61-20210919-172700.mp4\r\n6.13_10685_Player532-bf090cb363a3-20210812-123933.mp4 6.13_23023_treechop-f153ac423f61-20210919-172802.mp4\r\n6.13_10686_Player532-f153ac423f61-20210801-144336.mp4 6.13_23024_treechop-f153ac423f61-20210919-172904.mp4\r\n6.13_10687_Player532-f153ac423f61-20210801-144852.mp4 6.13_23025_treechop-f153ac423f61-20210919-173005.mp4\r\n6.13_10688_Player532-f153ac423f61-20210801-151944.mp4 6.13_23026_treechop-f153ac423f61-20210919-173106.mp4\r\n6.13_10689_Player532-f153ac423f61-20210801-163500.mp4 6.13_23027_treechop-f153ac423f61-20210919-173208.mp4\r\n6.13_1068_Player137-f153ac423f61-20210722-125834.mp4 6.13_23028_treechop-f153ac423f61-20210919-173309.mp4\r\n6.13_10690_Player532-f153ac423f61-20210801-183818.mp4 6.13_23029_treechop-f153ac423f61-20210919-173411.mp4\r\n6.13_10691_Player532-f153ac423f61-20210812-094644.mp4 6.13_2302_Player19-f153ac423f61-20211130-140948.mp4\r\n6.13_10692_Player536-f153ac423f61-20211019-123801.mp4 6.13_23030_treechop-f153ac423f61-20210919-173513.mp4\r\n6.13_10693_Player536-f153ac423f61-20211019-124251.mp4 6.13_23031_treechop-f153ac423f61-20210919-173615.mp4\r\n6.13_10694_Player536-f153ac423f61-20211019-124818.mp4 6.13_23032_treechop-f153ac423f61-20210919-174608.mp4\r\n6.13_10695_Player536-f153ac423f61-20211019-125239.mp4 6.13_23033_treechop-f153ac423f61-20210919-174713.mp4\r\n6.13_10696_Player536-f153ac423f61-20211019-125616.mp4 6.13_23034_treechop-f153ac423f61-20210919-174815.mp4\r\n6.13_10697_Player536-f153ac423f61-20211019-130020.mp4 6.13_23035_treechop-f153ac423f61-20210919-174917.mp4\r\n6.13_10698_Player536-f153ac423f61-20211019-130513.mp4 6.13_23036_treechop-f153ac423f61-20210919-175019.mp4\r\n6.13_10699_Player536-f153ac423f61-20211019-130928.mp4 6.13_23037_treechop-f153ac423f61-20210919-175119.mp4\r\n6.13_1069_Player137-f153ac423f61-20210722-125951.mp4 6.13_23038_treechop-f153ac423f61-20210919-175220.mp4\r\n6.13_106_Player100-63eefbd0685a-20211220-201723.mp4 6.13_23039_treechop-f153ac423f61-20210919-175321.mp4\r\n6.13_10700_Player536-f153ac423f61-20211019-131345.mp4 6.13_2303_Player19-f153ac423f61-20211130-141150.mp4\r\n6.13_10701_Player536-f153ac423f61-20211019-131819.mp4 6.13_23040_treechop-f153ac423f61-20210919-175422.mp4\r\n6.13_10702_Player536-f153ac423f61-20211019-132244.mp4 6.13_23041_treechop-f153ac423f61-20210919-175523.mp4\r\n6.13_10703_Player536-f153ac423f61-20211019-132702.mp4 6.13_23042_treechop-f153ac423f61-20210919-175624.mp4\r\n6.13_10704_Player536-f153ac423f61-20211019-133007.mp4 6.13_23043_treechop-f153ac423f61-20210919-175726.mp4\r\n6.13_10705_Player536-f153ac423f61-20211019-133431.mp4 6.13_23044_treechop-f153ac423f61-20210919-175827.mp4\r\n6.13_10706_Player536-f153ac423f61-20211019-133849.mp4 6.13_23045_treechop-f153ac423f61-20210919-175927.mp4\r\n6.13_10707_Player536-f153ac423f61-20211019-134258.mp4 6.13_23046_treechop-f153ac423f61-20210919-180029.mp4\r\n6.13_10708_Player536-f153ac423f61-20211019-134751.mp4 6.13_23047_treechop-f153ac423f61-20210919-180130.mp4\r\n6.13_10709_Player536-f153ac423f61-20211019-135152.mp4 6.13_23048_treechop-f153ac423f61-20210919-180233.mp4\r\n6.13_1070_Player137-f153ac423f61-20210722-130110.mp4 6.13_23049_treechop-f153ac423f61-20210919-180334.mp4\r\n6.13_10710_Player536-f153ac423f61-20211019-135606.mp4 6.13_2304_Player19-f153ac423f61-20211130-141350.mp4\r\n6.13_10711_Player538-f153ac423f61-20210918-121458.mp4 6.13_23050_treechop-f153ac423f61-20210919-180435.mp4\r\n6.13_10712_Player538-f153ac423f61-20210918-121627.mp4 6.13_23051_treechop-f153ac423f61-20210919-180537.mp4\r\n6.13_10713_Player538-f153ac423f61-20210918-121745.mp4 6.13_23052_treechop-f153ac423f61-20210919-180639.mp4\r\n6.13_10714_Player538-f153ac423f61-20210918-121903.mp4 6.13_23053_treechop-f153ac423f61-20210919-180742.mp4\r\n6.13_10715_Player538-f153ac423f61-20210918-122023.mp4 6.13_23054_treechop-f153ac423f61-20210919-180844.mp4\r\n6.13_10716_Player538-f153ac423f61-20210918-122148.mp4 6.13_23055_treechop-f153ac423f61-20210919-180945.mp4\r\n6.13_10717_Player538-f153ac423f61-20210918-122312.mp4 6.13_23056_treechop-f153ac423f61-20210919-181047.mp4\r\n6.13_10718_Player538-f153ac423f61-20210918-122435.mp4 6.13_23057_treechop-f153ac423f61-20210919-181148.mp4\r\n6.13_10719_Player538-f153ac423f61-20210918-122554.mp4 6.13_23058_treechop-f153ac423f61-20210919-181249.mp4\r\n6.13_1071_Player137-f153ac423f61-20210722-130238.mp4 6.13_23059_treechop-f153ac423f61-20210919-181351.mp4\r\n6.13_10720_Player538-f153ac423f61-20210918-122709.mp4 6.13_2305_Player19-f153ac423f61-20211130-141551.mp4\r\n6.13_10721_Player538-f153ac423f61-20210918-122827.mp4 6.13_23060_treechop-f153ac423f61-20210919-181452.mp4\r\n6.13_10722_Player538-f153ac423f61-20210918-122944.mp4 6.13_23061_treechop-f153ac423f61-20210919-181553.mp4\r\n6.13_10723_Player538-f153ac423f61-20210918-123106.mp4 6.13_23062_treechop-f153ac423f61-20210919-181654.mp4\r\n6.13_10724_Player538-f153ac423f61-20210918-123221.mp4 6.13_23063_treechop-f153ac423f61-20210919-181755.mp4\r\n6.13_10725_Player538-f153ac423f61-20210918-123337.mp4 6.13_23064_treechop-f153ac423f61-20210919-181859.mp4\r\n6.13_10726_Player538-f153ac423f61-20210918-123451.mp4 6.13_23065_treechop-f153ac423f61-20210919-182000.mp4\r\n6.13_10727_Player538-f153ac423f61-20210918-123614.mp4 6.13_23066_treechop-f153ac423f61-20210919-182101.mp4\r\n6.13_10728_Player538-f153ac423f61-20210918-123731.mp4 6.13_23067_treechop-f153ac423f61-20210919-182203.mp4\r\n6.13_10729_Player538-f153ac423f61-20210918-124042.mp4 6.13_23068_treechop-f153ac423f61-20210919-182304.mp4\r\n6.13_1072_Player137-f153ac423f61-20210722-130407.mp4 6.13_23069_treechop-f153ac423f61-20210919-182412.mp4\r\n6.13_10730_Player538-f153ac423f61-20210918-124155.mp4 6.13_2306_Player19-f153ac423f61-20211130-141751.mp4\r\n6.13_10731_Player538-f153ac423f61-20210918-124311.mp4 6.13_23070_treechop-f153ac423f61-20210919-182519.mp4\r\n6.13_10732_Player538-f153ac423f61-20210918-124434.mp4 6.13_23071_treechop-f153ac423f61-20210919-182620.mp4\r\n6.13_10733_Player538-f153ac423f61-20210918-124551.mp4 6.13_23072_treechop-f153ac423f61-20210919-182722.mp4\r\n6.13_10734_Player538-f153ac423f61-20210918-124709.mp4 6.13_23073_treechop-f153ac423f61-20210919-182824.mp4\r\n6.13_10735_Player538-f153ac423f61-20210918-124839.mp4 6.13_23074_treechop-f153ac423f61-20210919-182926.mp4\r\n6.13_10736_Player538-f153ac423f61-20210918-125000.mp4 6.13_23075_treechop-f153ac423f61-20210919-183028.mp4\r\n6.13_10737_Player538-f153ac423f61-20210918-125118.mp4 6.13_23076_treechop-f153ac423f61-20210919-183130.mp4\r\n6.13_10738_Player538-f153ac423f61-20210918-125240.mp4 6.13_23077_treechop-f153ac423f61-20210919-183235.mp4\r\n6.13_10739_Player538-f153ac423f61-20210918-125358.mp4 6.13_23078_treechop-f153ac423f61-20210919-183336.mp4\r\n6.13_1073_Player137-f153ac423f61-20210722-130537.mp4 6.13_23079_treechop-f153ac423f61-20210919-183437.mp4\r\n6.13_10740_Player538-f153ac423f61-20210918-125519.mp4 6.13_2307_Player19-f153ac423f61-20211130-142052.mp4\r\n6.13_10741_Player538-f153ac423f61-20210918-125640.mp4 6.13_23080_treechop-f153ac423f61-20210919-183538.mp4\r\n6.13_10742_Player538-f153ac423f61-20210918-125800.mp4 6.13_23081_treechop-f153ac423f61-20210919-183641.mp4\r\n6.13_10743_Player538-f153ac423f61-20210918-125918.mp4 6.13_23082_treechop-f153ac423f61-20210919-183743.mp4\r\n6.13_10744_Player538-f153ac423f61-20210918-130035.mp4 6.13_23083_treechop-f153ac423f61-20210919-183846.mp4\r\n6.13_10745_Player538-f153ac423f61-20210918-130154.mp4 6.13_23084_treechop-f153ac423f61-20210919-183947.mp4\r\n6.13_10746_Player538-f153ac423f61-20210918-130314.mp4 6.13_23085_treechop-f153ac423f61-20210919-184051.mp4\r\n6.13_10747_Player538-f153ac423f61-20210918-130429.mp4 6.13_23086_treechop-f153ac423f61-20210919-184153.mp4\r\n6.13_10748_Player540-70407654b4ec-20211111-160318.mp4 6.13_23087_treechop-f153ac423f61-20210919-184255.mp4\r\n6.13_10749_Player540-70407654b4ec-20211111-161453.mp4 6.13_23088_treechop-f153ac423f61-20210919-184355.mp4\r\n6.13_1074_Player137-f153ac423f61-20210722-130707.mp4 6.13_23089_treechop-f153ac423f61-20210919-203417.mp4\r\n6.13_10750_Player540-70407654b4ec-20211111-163310.mp4 6.13_2308_Player19-f153ac423f61-20211130-142308.mp4\r\n6.13_10751_Player540-70407654b4ec-20211111-164557.mp4 6.13_23090_treechop-f153ac423f61-20210919-204515.mp4\r\n6.13_10752_Player540-70407654b4ec-20211111-165732.mp4 6.13_23091_treechop-f153ac423f61-20210920-125200.mp4\r\n6.13_10753_Player540-70407654b4ec-20211111-170914.mp4 6.13_23092_treechop-f153ac423f61-20210920-125305.mp4\r\n6.13_10754_Player540-70407654b4ec-20211111-171609.mp4 6.13_23093_treechop-f153ac423f61-20210920-125408.mp4\r\n6.13_10755_Player540-70407654b4ec-20211111-173048.mp4 6.13_23094_treechop-f153ac423f61-20210920-125509.mp4\r\n6.13_10756_Player540-70407654b4ec-20211111-174106.mp4 6.13_23095_treechop-f153ac423f61-20210920-125612.mp4\r\n6.13_10757_Player540-70407654b4ec-20211111-174948.mp4 6.13_23096_treechop-f153ac423f61-20210920-125714.mp4\r\n6.13_10758_Player540-f153ac423f61-20210806-155246.mp4 6.13_23097_treechop-f153ac423f61-20210920-125815.mp4\r\n6.13_10759_Player540-f153ac423f61-20210806-155712.mp4 6.13_23098_treechop-f153ac423f61-20210920-125917.mp4\r\n6.13_1075_Player137-f153ac423f61-20210722-130840.mp4 6.13_23099_treechop-f153ac423f61-20210920-130019.mp4\r\n6.13_10760_Player540-f153ac423f61-20210806-160136.mp4 6.13_2309_Player19-f153ac423f61-20211130-142508.mp4\r\n6.13_10761_Player540-f153ac423f61-20210806-160542.mp4 6.13_230_Player108-f153ac423f61-20211207-110956.mp4\r\n6.13_10762_Player540-f153ac423f61-20210806-160951.mp4 6.13_23100_treechop-f153ac423f61-20210920-130122.mp4\r\n6.13_10763_Player540-f153ac423f61-20210806-161258.mp4 6.13_23101_treechop-f153ac423f61-20210920-130225.mp4\r\n6.13_10764_Player540-f153ac423f61-20210806-161704.mp4 6.13_23102_treechop-f153ac423f61-20210920-130326.mp4\r\n6.13_10765_Player540-f153ac423f61-20210806-162011.mp4 6.13_23103_treechop-f153ac423f61-20210920-130428.mp4\r\n6.13_10766_Player540-f153ac423f61-20210806-162421.mp4 6.13_23104_treechop-f153ac423f61-20210920-130530.mp4\r\n6.13_10767_Player540-f153ac423f61-20210806-162728.mp4 6.13_23105_treechop-f153ac423f61-20210920-130631.mp4\r\n6.13_10768_Player540-f153ac423f61-20210806-163041.mp4 6.13_23106_treechop-f153ac423f61-20210920-130732.mp4\r\n6.13_10769_Player540-f153ac423f61-20210806-163458.mp4 6.13_23107_treechop-f153ac423f61-20210920-130836.mp4\r\n6.13_1076_Player137-f153ac423f61-20210722-131011.mp4 6.13_23108_treechop-f153ac423f61-20210920-161611.mp4\r\n6.13_10770_Player540-f153ac423f61-20210806-163808.mp4 6.13_23109_treechop-f153ac423f61-20210920-161718.mp4\r\n6.13_10771_Player540-f153ac423f61-20210806-164221.mp4 6.13_2310_Player19-f153ac423f61-20211130-142709.mp4\r\n6.13_10772_Player540-f153ac423f61-20210806-164534.mp4 6.13_23110_treechop-f153ac423f61-20210920-161821.mp4\r\n6.13_10773_Player540-f153ac423f61-20210806-164848.mp4 6.13_23111_treechop-f153ac423f61-20210920-161924.mp4\r\n6.13_10774_Player540-f153ac423f61-20210806-165217.mp4 6.13_23112_treechop-f153ac423f61-20210920-162026.mp4\r\n6.13_10775_Player540-f153ac423f61-20210806-165508.mp4 6.13_23113_treechop-f153ac423f61-20210920-162127.mp4\r\n6.13_10776_Player540-f153ac423f61-20210806-165823.mp4 6.13_23114_treechop-f153ac423f61-20210920-162227.mp4\r\n6.13_10777_Player540-f153ac423f61-20210806-170133.mp4 6.13_23115_treechop-f153ac423f61-20210920-162329.mp4\r\n6.13_10778_Player540-f153ac423f61-20210806-170444.mp4 6.13_23116_treechop-f153ac423f61-20210920-162434.mp4\r\n6.13_10779_Player540-f153ac423f61-20210806-170750.mp4 6.13_23117_treechop-f153ac423f61-20210920-162535.mp4\r\n6.13_1077_Player137-f153ac423f61-20210722-131144.mp4 6.13_23118_treechop-f153ac423f61-20210920",,terminal_output +641,6809076,"TERMINAL",0,0,"-162636.mp4\r\n6.13_10780_Player540-f153ac423f61-20210806-171055.mp4 6.13_23119_treechop-f153ac423f61-20210920-162738.mp4\r\n6.13_10781_Player540-f153ac423f61-20210806-171401.mp4 6.13_2311_Player19-f153ac423f61-20211130-142909.mp4\r\n6.13_10782_Player540-f153ac423f61-20210806-171709.mp4 6.13_23120_treechop-f153ac423f61-20210920-162840.mp4\r\n6.13_10783_Player540-f153ac423f61-20210806-172024.mp4 6.13_23121_treechop-f153ac423f61-20210920-162943.mp4\r\n6.13_10784_Player540-f153ac423f61-20210806-172335.mp4 6.13_23122_treechop-f153ac423f61-20210920-163044.mp4\r\n6.13_10785_Player540-f153ac423f61-20210806-172706.mp4 6.13_23123_treechop-f153ac423f61-20210920-163145.mp4\r\n6.13_10786_Player540-f153ac423f61-20211111-160012.mp4 6.13_23124_treechop-f153ac423f61-20210920-163246.mp4\r\n6.13_10787_Player542-8756d68bb446-20210902-112459.mp4 6.13_23125_treechop-f153ac423f61-20210920-163348.mp4\r\n6.13_10788_Player542-8756d68bb446-20210902-113628.mp4 6.13_23126_treechop-f153ac423f61-20210920-163450.mp4\r\n6.13_10789_Player542-8756d68bb446-20210902-114639.mp4 6.13_23127_treechop-f153ac423f61-20210920-163551.mp4\r\n6.13_1078_Player137-f153ac423f61-20210722-131315.mp4 6.13_23128_treechop-f153ac423f61-20210920-163652.mp4\r\n6.13_10790_Player542-8756d68bb446-20210902-115707.mp4 6.13_23129_treechop-f153ac423f61-20210920-163753.mp4\r\n6.13_10791_Player542-f153ac423f61-20210902-091952.mp4 6.13_2312_Player19-f153ac423f61-20211215-162922.mp4\r\n6.13_10792_Player542-f153ac423f61-20210902-093033.mp4 6.13_23130_treechop-f153ac423f61-20210920-163855.mp4\r\n6.13_10793_Player542-f153ac423f61-20210902-094307.mp4 6.13_23131_treechop-f153ac423f61-20210920-163957.mp4\r\n6.13_10794_Player542-f153ac423f61-20210902-095439.mp4 6.13_23132_treechop-f153ac423f61-20210920-164058.mp4\r\n6.13_10795_Player542-f153ac423f61-20210902-100603.mp4 6.13_23133_treechop-f153ac423f61-20210920-164159.mp4\r\n6.13_10796_Player542-f153ac423f61-20210902-101725.mp4 6.13_23134_treechop-f153ac423f61-20210920-164301.mp4\r\n6.13_10797_Player542-f153ac423f61-20210902-102846.mp4 6.13_23135_treechop-f153ac423f61-20210920-164403.mp4\r\n6.13_10798_Player542-f153ac423f61-20210902-103901.mp4 6.13_23136_treechop-f153ac423f61-20210920-164504.mp4\r\n6.13_10799_Player542-f153ac423f61-20210902-105021.mp4 6.13_23137_treechop-f153ac423f61-20210920-164605.mp4\r\n6.13_1079_Player137-f153ac423f61-20210722-131448.mp4 6.13_23138_treechop-f153ac423f61-20210920-164707.mp4\r\n6.13_107_Player100-63eefbd0685a-20211220-201923.mp4 6.13_23139_treechop-f153ac423f61-20210920-164811.mp4\r\n6.13_10800_Player542-f153ac423f61-20210902-110133.mp4 6.13_2313_Player19-f153ac423f61-20211215-163026.mp4\r\n6.13_10801_Player542-f153ac423f61-20210902-111415.mp4 6.13_23140_treechop-f153ac423f61-20210920-164911.mp4\r\n6.13_10802_Player542-f153ac423f61-20211022-144733.mp4 6.13_23141_treechop-f153ac423f61-20210920-165012.mp4\r\n6.13_10803_Player542-f153ac423f61-20211022-145250.mp4 6.13_23142_treechop-f153ac423f61-20210920-165115.mp4\r\n6.13_10804_Player542-f153ac423f61-20211022-145658.mp4 6.13_23143_treechop-f153ac423f61-20210920-165216.mp4\r\n6.13_10805_Player542-f153ac423f61-20211022-150114.mp4 6.13_23144_treechop-f153ac423f61-20210920-165317.mp4\r\n6.13_10806_Player542-f153ac423f61-20211022-150628.mp4 6.13_23145_treechop-f153ac423f61-20210920-165420.mp4\r\n6.13_10807_Player542-f153ac423f61-20211022-151039.mp4 6.13_23146_treechop-f153ac423f61-20210920-165522.mp4\r\n6.13_10808_Player542-f153ac423f61-20211022-151359.mp4 6.13_23147_treechop-f153ac423f61-20210920-165623.mp4\r\n6.13_10809_Player542-f153ac423f61-20211022-151811.mp4 6.13_23148_treechop-f153ac423f61-20210920-165724.mp4\r\n6.13_1080_Player137-f153ac423f61-20210722-131616.mp4 6.13_23149_treechop-f153ac423f61-20210920-165825.mp4\r\n6.13_10810_Player542-f153ac423f61-20211022-152220.mp4 6.13_2314_Player19-f153ac423f61-20211215-163136.mp4\r\n6.13_10811_Player542-f153ac423f61-20211022-152729.mp4 6.13_23150_treechop-f153ac423f61-20210920-165926.mp4\r\n6.13_10812_Player542-f153ac423f61-20211022-153048.mp4 6.13_23151_treechop-f153ac423f61-20210920-170028.mp4\r\n6.13_10813_Player542-f153ac423f61-20211022-153502.mp4 6.13_23152_treechop-f153ac423f61-20210920-223141.mp4\r\n6.13_10814_Player542-f153ac423f61-20211022-153907.mp4 6.13_23153_treechop-f153ac423f61-20210920-223246.mp4\r\n6.13_10815_Player542-f153ac423f61-20211022-154334.mp4 6.13_23154_treechop-f153ac423f61-20210920-223351.mp4\r\n6.13_10816_Player542-f153ac423f61-20211022-154824.mp4 6.13_23155_treechop-f153ac423f61-20210920-223455.mp4\r\n6.13_10817_Player543-f153ac423f61-20211009-172140.mp4 6.13_23156_treechop-f153ac423f61-20210920-223557.mp4\r\n6.13_10818_Player543-f153ac423f61-20211009-172307.mp4 6.13_23157_treechop-f153ac423f61-20210920-223658.mp4\r\n6.13_10819_Player543-f153ac423f61-20211009-172424.mp4 6.13_23158_treechop-f153ac423f61-20210920-223759.mp4\r\n6.13_1081_Player137-f153ac423f61-20210722-131747.mp4 6.13_23159_treechop-f153ac423f61-20210920-223901.mp4\r\n6.13_10820_Player543-f153ac423f61-20211009-172537.mp4 6.13_2315_Player19-f153ac423f61-20211215-163242.mp4\r\n6.13_10821_Player543-f153ac423f61-20211009-172649.mp4 6.13_23160_treechop-f153ac423f61-20210920-224003.mp4\r\n6.13_10822_Player543-f153ac423f61-20211009-172802.mp4 6.13_23161_treechop-f153ac423f61-20210920-224104.mp4\r\n6.13_10823_Player543-f153ac423f61-20211009-172919.mp4 6.13_23162_treechop-f153ac423f61-20210920-224205.mp4\r\n6.13_10824_Player543-f153ac423f61-20211009-173026.mp4 6.13_23163_treechop-f153ac423f61-20210920-224306.mp4\r\n6.13_10825_Player543-f153ac423f61-20211009-173149.mp4 6.13_23164_treechop-f153ac423f61-20210920-224407.mp4\r\n6.13_10826_Player543-f153ac423f61-20211009-173310.mp4 6.13_23165_treechop-f153ac423f61-20210920-224508.mp4\r\n6.13_10827_Player543-f153ac423f61-20211009-173430.mp4 6.13_23166_treechop-f153ac423f61-20210920-224609.mp4\r\n6.13_10828_Player543-f153ac423f61-20211009-173552.mp4 6.13_23167_treechop-f153ac423f61-20210920-224713.mp4\r\n6.13_10829_Player543-f153ac423f61-20211009-173719.mp4 6.13_23168_treechop-f153ac423f61-20210920-224814.mp4\r\n6.13_1082_Player137-f153ac423f61-20210722-131916.mp4 6.13_23169_treechop-f153ac423f61-20210920-224916.mp4\r\n6.13_10830_Player543-f153ac423f61-20211009-173846.mp4 6.13_2316_Player19-f153ac423f61-20211215-163347.mp4\r\n6.13_10831_Player543-f153ac423f61-20211009-174019.mp4 6.13_23170_treechop-f153ac423f61-20210920-225017.mp4\r\n6.13_10832_Player543-f153ac423f61-20211009-174145.mp4 6.13_23171_treechop-f153ac423f61-20210920-225117.mp4\r\n6.13_10833_Player543-f153ac423f61-20211009-174317.mp4 6.13_23172_treechop-f153ac423f61-20210920-225218.mp4\r\n6.13_10834_Player543-f153ac423f61-20211009-174448.mp4 6.13_23173_treechop-f153ac423f61-20210920-225320.mp4\r\n6.13_10835_Player543-f153ac423f61-20211009-174607.mp4 6.13_23174_treechop-f153ac423f61-20210920-225421.mp4\r\n6.13_10836_Player543-f153ac423f61-20211009-174727.mp4 6.13_23175_treechop-f153ac423f61-20210920-225522.mp4\r\n6.13_10837_Player543-f153ac423f61-20211009-174846.mp4 6.13_23176_treechop-f153ac423f61-20210920-225625.mp4\r\n6.13_10838_Player543-f153ac423f61-20211009-175013.mp4 6.13_23177_treechop-f153ac423f61-20210920-225730.mp4\r\n6.13_10839_Player543-f153ac423f61-20211009-175141.mp4 6.13_23178_treechop-f153ac423f61-20210920-225832.mp4\r\n6.13_1083_Player137-f153ac423f61-20210722-132046.mp4 6.13_23179_treechop-f153ac423f61-20210920-225933.mp4\r\n6.13_10840_Player543-f153ac423f61-20211009-175302.mp4 6.13_2317_Player19-f153ac423f61-20211215-163455.mp4\r\n6.13_10841_Player543-f153ac423f61-20211009-175421.mp4 6.13_23180_treechop-f153ac423f61-20210920-230033.mp4\r\n6.13_10842_Player543-f153ac423f61-20211009-175528.mp4 6.13_23181_treechop-f153ac423f61-20210920-230134.mp4\r\n6.13_10843_Player543-f153ac423f61-20211009-175631.mp4 6.13_23182_treechop-f153ac423f61-20210920-230235.mp4\r\n6.13_10844_Player543-f153ac423f61-20211009-175748.mp4 6.13_23183_treechop-f153ac423f61-20210920-230336.mp4\r\n6.13_10845_Player543-f153ac423f61-20211009-175902.mp4 6.13_23184_treechop-f153ac423f61-20210920-230437.mp4\r\n6.13_10846_Player543-f153ac423f61-20211009-180019.mp4 6.13_23185_treechop-f153ac423f61-20210920-230539.mp4\r\n6.13_10847_Player543-f153ac423f61-20211009-180127.mp4 6.13_23186_treechop-f153ac423f61-20210920-230640.mp4\r\n6.13_10848_Player543-f153ac423f61-20211009-180241.mp4 6.13_23187_treechop-f153ac423f61-20210920-230741.mp4\r\n6.13_10849_Player543-f153ac423f61-20211009-180403.mp4 6.13_23188_treechop-f153ac423f61-20210920-230843.mp4\r\n6.13_1084_Player137-f153ac423f61-20210722-132217.mp4 6.13_23189_treechop-f153ac423f61-20210920-230944.mp4\r\n6.13_10850_Player543-f153ac423f61-20211009-180537.mp4 6.13_2318_Player19-f153ac423f61-20211215-163601.mp4\r\n6.13_10851_Player543-f153ac423f61-20211009-180721.mp4 6.13_23190_treechop-f153ac423f61-20210920-231045.mp4\r\n6.13_10852_Player543-f153ac423f61-20211009-180907.mp4 6.13_23191_treechop-f153ac423f61-20210920-231146.mp4\r\n6.13_10853_Player543-f153ac423f61-20211009-181033.mp4 6.13_23192_treechop-f153ac423f61-20210920-231247.mp4\r\n6.13_10854_Player543-f153ac423f61-20211009-181149.mp4 6.13_23193_treechop-f153ac423f61-20210920-231751.mp4\r\n6.13_10855_Player543-f153ac423f61-20211009-181312.mp4 6.13_23194_treechop-f153ac423f61-20210920-231854.mp4\r\n6.13_10856_Player543-f153ac423f61-20211009-181439.mp4 6.13_23195_treechop-f153ac423f61-20210920-231957.mp4\r\n6.13_10857_Player543-f153ac423f61-20211009-181603.mp4 6.13_23196_treechop-f153ac423f61-20210920-232059.mp4\r\n6.13_10858_Player543-f153ac423f61-20211009-181728.mp4 6.13_23197_treechop-f153ac423f61-20210920-232201.mp4\r\n6.13_10859_Player543-f153ac423f61-20211009-181851.mp4 6.13_23198_treechop-f153ac423f61-20210920-232302.mp4\r\n6.13_1085_Player137-f153ac423f61-20210722-132346.mp4 6.13_23199_treechop-f153ac423f61-20210920-232403.mp4\r\n6.13_10860_Player543-f153ac423f61-20211009-182016.mp4 6.13_2319_Player19-f153ac423f61-20211215-163704.mp4\r\n6.13_10861_Player543-f153ac423f61-20211009-182140.mp4 6.13_231_Player108-f153ac423f61-20211207-111103.mp4\r\n6.13_10862_Player543-f153ac423f61-20211009-182304.mp4 6.13_23200_treechop-f153ac423f61-20210920-232504.mp4\r\n6.13_10863_Player543-f153ac423f61-20211009-182438.mp4 6.13_23201_treechop-f153ac423f61-20210920-232606.mp4\r\n6.13_10864_Player543-f153ac423f61-20211009-182605.mp4 6.13_23202_treechop-f153ac423f61-20210920-232707.mp4\r\n6.13_10865_Player543-f153ac423f61-20211009-182725.mp4 6.13_23203_treechop-f153ac423f61-20210920-232811.mp4\r\n6.13_10866_Player543-f153ac423f61-20211009-182840.mp4 6.13_23204_treechop-f153ac423f61-20210920-232912.mp4\r\n6.13_10867_Player543-f153ac423f61-20211009-182954.mp4 6.13_23205_treechop-f153ac423f61-20210920-233015.mp4\r\n6.13_10868_Player543-f153ac423f61-20211009-183110.mp4 6.13_23206_treechop-f153ac423f61-20210920-233116.mp4\r\n6.13_10869_Player543-f153ac423f61-20211009-183232.mp4 6.13_23207_treechop-f153ac423f61-20210920-233216.mp4\r\n6.13_1086_Player137-f153ac423f61-20210722-132514.mp4 6.13_23208_treechop-f153ac423f61-20210920-233317.mp4\r\n6.13_10870_Player543-f153ac423f61-20211009-183338.mp4 6.13_23209_treechop-f153ac423f61-20210920-233418.mp4\r\n6.13_10871_Player543-f153ac423f61-20211009-183455.mp4 6.13_2320_Player19-f153ac423f61-20211215-163808.mp4\r\n6.13_10872_Player543-f153ac423f61-20211009-183623.mp4 6.13_23210_treechop-f153ac423f61-20210920-233519.mp4\r\n6.13_10873_Player543-f153ac423f61-20211009-183744.mp4 6.13_23211_treechop-f153ac423f61-20210920-233620.mp4\r\n6.13_10874_Player543-f153ac423f61-20211009-183900.mp4 6.13_23212_treechop-f153ac423f61-20210920-233721.mp4\r\n6.13_10875_Player543-f153ac423f61-20211009-184031.mp4 6.13_23213_treechop-f153ac423f61-20210920-233822.mp4\r\n6.13_10876_Player543-f153ac423f61-20211009-184154.mp4 6.13_23214_treechop-f153ac423f61-20210920-233923.mp4\r\n6.13_10877_Player543-f153ac423f61-20211009-184321.mp4 6.13_23215_treechop-f153ac423f61-20210920-234024.mp4\r\n6.13_10878_Player543-f153ac423f61-20211009-184442.mp4 6.13_23216_treechop-f153ac423f61-20210920-234126.mp4\r\n6.13_10879_Player543-f153ac423f61-20211009-184608.mp4 6.13_23217_treechop-f153ac423f61-20210921-152610.mp4\r\n6.13_1087_Player137-f153ac423f61-20210722-132643.mp4 6.13_23218_treechop-f153ac423f61-20210921-152715.mp4\r\n6.13_10880_Player543-f153ac423f61-20211009-184729.mp4 6.13_23219_treechop-f153ac423f61-20210921-225637.mp4\r\n6.13_10881_Player543-f153ac423f61-20211009-184901.mp4 6.13_2321_Player19-f153ac423f61-20211215-163913.mp4\r\n6.13_10882_Player543-f153ac423f61-20211009-185026.mp4 6.13_23220_treechop-f153ac423f61-20210921-225741.mp4\r\n6.13_10883_Player543-f153ac423f61-20211009-185147.mp4 6.13_23221_treechop-f153ac423f61-20210921-225844.mp4\r\n6.13_10884_Player543-f153ac423f61-20211009-185310.mp4 6.13_23222_treechop-f153ac423f61-20210921-225946.mp4\r\n6.13_10885_Player543-f153ac423f61-20211009-185425.mp4 6.13_23223_treechop-f153ac423f61-20210921-230047.mp4\r\n6.13_10886_Player543-f153ac423f61-20211009-185552.mp4 6.13_23224_treechop-f153ac423f61-20210921-230150.mp4\r\n6.13_10887_Player543-f153ac423f61-20211009-185719.mp4 6.13_23225_treechop-f153ac423f61-20210921-230253.mp4\r\n6.13_10888_Player543-f153ac423f61-20211009-185835.mp4 6.13_23226_treechop-f153ac423f61-20210921-230355.mp4\r\n6.13_10889_Player543-f153ac423f61-20211009-185955.mp4 6.13_23227_treechop-f153ac423f61-20210921-230456.mp4\r\n6.13_1088_Player139-3c629ecc9e55-20210810-114231.mp4 6.13_23228_treechop-f153ac423f61-20210921-230557.mp4\r\n6.13_10890_Player543-f153ac423f61-20211009-190109.mp4 6.13_23229_treechop-f153ac423f61-20210921-230658.mp4\r\n6.13_10891_Player543-f153ac423f61-20211009-190215.mp4 6.13_2322_Player19-f153ac423f61-20211215-164021.mp4\r\n6.13_10892_Player543-f153ac423f61-20211009-190336.mp4 6.13_23230_treechop-f153ac423f61-20210921-230800.mp4\r\n6.13_10893_Player543-f153ac423f61-20211009-190456.mp4 6.13_23231_treechop-f153ac423f61-20210921-230901.mp4\r\n6.13_10894_Player543-f153ac423f61-20211009-190623.mp4 6.13_23232_treechop-f153ac423f61-20210921-231002.mp4\r\n6.13_10895_Player543-f153ac423f61-20211009-190753.mp4 6.13_23233_treechop-f153ac423f61-20210921-231104.mp4\r\n6.13_10896_Player543-f153ac423f61-20211009-190928.mp4 6.13_23234_treechop-f153ac423f61-20210921-231205.mp4\r\n6.13_10897_Player543-f153ac423f61-20211009-191110.mp4 6.13_23235_treechop-f153ac423f61-20210921-231306.mp4\r\n6.13_10898_Player543-f153ac423f61-20211009-191230.mp4 6.13_23236_treechop-f153ac423f61-20210921-231409.mp4\r\n6.13_10899_Player543-f153ac423f61-20211009-191357.mp4 6.13_23237_treechop-f153ac423f61-20210921-231510.mp4\r\n6.13_1089_Player139-f153ac423f61-20210810-101238.mp4 6.13_23238_treechop-f153ac423f61-20210921-231611.mp4\r\n6.13_108_Player100-63eefbd0685a-20211220-202127.mp4 6.13_23239_treechop-f153ac423f61-20210921-231713.mp4\r\n6.13_10900_Player543-f153ac423f61-20211009-191516.mp4 6.13_2323_Player19-f153ac423f61-20211215-164124.mp4\r\n6.13_10901_Player543-f153ac423f61-20211009-191629.mp4 6.13_23240_treechop-f153ac423f61-20210921-231814.mp4\r\n6.13_10902_Player543-f153ac423f61-20211009-191741.mp4 6.13_23241_treechop-f153ac423f61-20210921-231915.mp4\r\n6.13_10903_Player543-f153ac423f61-20211009-191902.mp4 6.13_23242_treechop-f153ac423f61-20210921-232017.mp4\r\n6.13_10904_Player543-f153ac423f61-20211009-192032.mp4 6.13_23243_treechop-f153ac423f61-20210921-232118.mp4\r\n6.13_10905_Player546-f153ac423f61-20210901-092539.mp4 6.13_23244_treechop-f153ac423f61-20210921-232219.mp4\r\n6.13_10906_Player547-f153ac423f61-20211020-154217.mp4 6.13_23245_treechop-f153ac423f61-20210921-232320.mp4\r\n6.13_10907_Player547-f153ac423f61-20211020-154415.mp4 6.13_23246_treechop-f153ac423f61-20210921-232421.mp4\r\n6.13_10908_Player547-f153ac423f61-20211020-154608.mp4 6.13_23247_treechop-f153ac423f61-20210921-232522.mp4\r\n6.13_10909_Player547-f153ac423f61-20211020-154745.mp4 6.13_23248_treechop-f153ac423f61-20210921-232624.mp4\r\n6.13_1090_Player139-f153ac423f61-20210810-103624.mp4 6.13_23249_treechop-f153ac423f61-20210921-232725.mp4\r\n6.13_10910_Player547-f153ac423f61-20211020-154939.mp4 6.13_2324_Player19-f153ac423f61-20211215-164229.mp4\r\n6.13_10911_Player547-f153ac423f61-20211020-155133.mp4 6.13_23250_treechop-f153ac423f61-20210921-232825.mp4\r\n6.13_10912_Player547-f153ac423f61-20211020-155337.mp4 6.13_23251_treechop-f153ac423f61-20210921-232926.mp4\r\n6.13_10913_Player547-f153ac423f61-20211020-155531.mp4 6.13_23252_treechop-f153ac423f61-20210921-233027.mp4\r\n6.13_10914_Player547-f153ac423f61-20211020-155728.mp4 6.13_23253_treechop-f153ac423f61-20210921-233129.mp4\r\n6.13_10915_Player547-f153ac423f61-20211020-155929.mp4 6.13_23254_treechop-f153ac423f61-20210921-233230.mp4\r\n6.13_10916_Player547-f153ac423f61-20211020-160130.mp4 6.13_23255_treechop-f153ac423f61-20210921-233331.mp4\r\n6.13_10917_Player547-f153ac423f61-20211020-160332.mp4 6.13_23256_treechop-f153ac423f61-20210921-233432.mp4\r\n6.13_10918_Player547-f153ac423f61-20211020-160527.mp4 6.13_23257_treechop-f153ac423f61-20210921-233533.mp4\r\n6.13_10919_Player547-f153ac423f61-20211020-160734.mp4 6.13_23258_treechop-f153ac423f61-20210921-233640.mp4\r\n6.13_1091_Player139-f153ac423f61-20210810-110145.mp4 6.13_23259_treechop-f153ac423f61-20210921-233742.mp4\r\n6.13_10920_Player547-f153ac423f61-20211020-160948.mp4 6.13_2325_Player19-f153ac423f61-20211215-164334.mp4\r\n6.13_10921_Player548-f153ac423f61-20210725-120326.mp4 6.13_23260_treechop-f153ac423f61-20210921-233843.mp4\r\n6.13_10922_Player548-f153ac423f61-20210725-120802.mp4 6.13_23261_treechop-f153ac423f61-20210921-233944.mp4\r\n6.13_10923_Player548-f153ac423f61-20210725-121210.mp4 6.13_23262_treechop-f153ac423f61-20210921-234046.mp4\r\n6.13_10924_Player548-f153ac423f61-20210725-121515.mp4 6.13_23263_treechop-f153ac423f61-20210924-155738.mp4\r\n6.13_10925_Player548-f153ac423f61-20210725-121923.mp4 6.13_23264_treechop-f153ac423f61-20210924-155844.mp4\r\n6.13_10926_Player548-f153ac423f61-20210725-122329.mp4 6.13_23265_treechop-f153ac423f61-20210924-155945.mp4\r\n6.13_10927_Player548-f153ac423f61-20210725-122634.mp4 6.13_23266_treechop-f153ac423f61-20210924-160047.mp4\r\n6.13_10928_Player548-f153ac423f61-20210725-123038.mp4 6.13_23267_treechop-f153ac423f61-20210924-160147.mp4\r\n6.13_10929_Player548-f153ac423f61-20210725-123340.mp4 6.13_23268_treechop-f153ac423f61-20210924-160249.mp4\r\n6.13_1092_Player139-ff1c781f2d70-20210810-111732.mp4 6.13_23269_treechop-f153ac423f61-20210924-160349.mp4\r\n6.13_10930_Player548-f153ac423f61-20210725-123641.mp4 6.13_2326_Player19-f153ac423f61-20211215-164440.mp4\r\n6.13_10931_Player548-f153ac423f61-20210725-123944.mp4 6.13_23270_treechop-f153ac423f61-20210925-100052.mp4\r\n6.13_10932_Player548-f153ac423f61-20210725-124249.mp4 6.13_23271_treechop-f153ac423f61-20210925-100157.mp4\r\n6.13_10933_Player548-f153ac423f61-20210725-124552.mp4 6.13_23272_treechop-f153ac423f61-20210925-100301.mp4\r\n6.13_10934_Player548-f153ac423f61-20210725-125005.mp4 6.13_23273_treechop-f153ac423f61-20210925-100402.mp4\r\n6.13_10935_Player55-598390c7d459-20211212-173318.mp4 6.13_23274_treechop-f153ac423f61-20210925-100503.mp4\r\n6.13_10936_Player55-598390c7d459-20211212-173419.mp4 6.13_23275_treechop-f153ac423f61-20210925-100605.mp4\r\n6.13_10937_Player55-598390c7d459-20211212-173519.mp4 6.13_23276_treechop-f153ac423f61-20210925-100706.mp4\r\n6.13_10938_Player55-598390c7d459-20211212-173620.mp4 6.13_23277_treechop-f153ac423f61-20210925-100807.mp4\r\n6.13_10939_Player55-598390c7d459-20211212-173720.mp4 6.13_23278_treechop-f153ac423f61-20210925-100908.mp4\r\n6.13_1093_Player140-f153ac423f61-20210828-153616.mp4 6.13_23279_treechop-f153ac423f61-20210925-101008.mp4\r\n6.13_10940_Player55-598390c7d459-20211212-173820.mp4 6.13_2327_Player19-f153ac423f61-20211215-164543.mp4\r\n6.13_10941_Player55-598390c7d459-20211212-173921.mp4 6.13_23280_treechop-f153ac423f61-20210925-101109.mp4\r\n6.13_10942_Player55-598390c7d459-20211212-174021.mp4 6.13_23281_treechop-f153ac423f61-20210925-101210.mp4\r\n6.13_10943_Player55-598390c7d459-20211212-174121.mp4 6.13_23282_treechop-f153ac423f61-20210925-101311.mp4\r\n6.13_10944_Player55-598390c7d459-20211212-174222.mp4 6.13_23283_treechop-f153ac423f61-20210925-101412.mp4\r\n6.13_10945_Player55-598390c7d459-20211212-174322.mp4 6.13_23284_treechop-f153ac423f61-20210925-101512.mp4\r\n6.13_10946_Player55-598390c7d459-20211212-174423.mp4 6.13_23285_treechop-f153ac423f61-20210925-101613.mp4\r\n6.13_10947_Player55-598390c7d459-20211212-174523.mp4 6.13_23286_treechop-f153ac423f61-20210925-101714.mp4\r\n6.13_10948_Player55-598390c7d459-20211212-174623.mp4 6.13_23287_treechop-f153ac423f61-20210925-101815.mp4\r\n6.13_10949_Player55-598390c7d459-20211212-174723.mp4 6.13_23288_treechop-f153ac423f61-20210925-101917.mp4\r\n6.13_1094_Player140-f153ac423f61-20210828-153748.mp4 6.13_23289_treechop-f153ac423f61-20210925-102020.mp4\r\n6.13_10950_Player55-598390c7d459-20211212-174824.mp4 6.13_2328_Player19-f153ac423f61-20211215-164646.mp4\r\n6.13_10951_Player55-598390c7d459-20211212-174924.mp4 6.13_23290_treechop-f153ac423f61-20210925-102242.mp4\r\n6.13_10952_Player55-598390c7d459-20211212-175024.mp4 6.13_23291_treechop-f153ac423f61-20210925-102342.mp4\r\n6.13_10953_Player55-598390c7d459-20211212-175125.mp4 6.13_23292_treechop-f153ac423f61-20210925-102444.mp4\r\n6.13_10954_Player55-598390c7d459-20211212-175225.mp4 6.13_23293_treechop-f153ac423f61-20210925-102545.mp4\r\n6.13_10955_Player55-598390c7d459-20211212-175325.mp4 6.13_23294_treechop-f153ac423f61-20210925-102646.mp4\r\n6.13_10956_Player55-598390c7d459-20211212-175425.mp4 6.13_23295_treechop-f153ac423f61-20210925-102747.mp4\r\n6.13_10957_Player55-598390c7d459-20211212-175526.mp4 6.13_23296_treechop-f153ac423f61-20210925-102943.mp4\r\n6.13_10958_Player55-598390c7d459-20211212-175626.mp4 6.13_23297_treechop-f153ac423f61-20210925-103044.mp4\r\n6.13_10959_Player55-598390c7d459-20211212-175726.mp4 6.13_23298_treechop-f153ac423f61-20210925-103146.mp4\r\n6.13_1095_Player140-f153ac423f61-20210828-153933.mp4 6.13_23299_treechop-f153ac423f61-20210925-103248.mp4\r\n6.13_10960_Player55-598390c7d459-20211212-175827.mp4 6.13_2329_Player19-f153ac423f61-20211215-164751.mp4\r\n6.13_10961_Player55-598390c7d459-20211212-175927.mp4 6.13_232_Player108-f153ac423f61-20211207-111210.mp4\r\n6.13_10962_Player55-598390c7d459-20211212-180027.mp4 6.13_23300_treechop-f153ac423f61-20210925-103350.mp4\r\n6.13_10963_Player55-598390c7d459-20211212-180128.mp4 6.13_23301_treechop-f153ac423f61-20210925-103451.mp4\r\n6.13_10964_Player55-598390c7d459-20211212-180228.mp4 6.13_23302_treechop-f153ac423f61-20210925-103552.mp4\r\n6.13_10965_Player55-598390c7d459-20211212-180328.mp4 6.13_23303_treechop-f153ac423f61-20210925-103653.mp4\r\n6.13_10966_Player55-598390c7d459-20211212-180429.mp4 6.13_23304_treechop-f153ac423f61-20210925-103755.mp4\r\n6.13_10967_Player55-598390c7d459-20211212-180529.mp4 6.13_23305_treechop-f153ac423f61-20210925-103856.mp4\r\n6.13_10968_Player55-598390c7d459-20211212-180629.mp4 6.13_23306_treechop-f153ac423f61-20210925-103957.mp4\r\n6.13_10969_Player55-598390c7d459-20211212-180730.mp4 6.13_23307_treechop-f153ac423f61-20210925-104058.mp4\r\n6.13_1096_Player142-f153ac423f61-20210726-114656.mp4 6.13_23308_treechop-f153ac423f61-20210925-104202.mp4\r\n6.13_10970_Player55-b49d196bb147-20211212-162807.mp4 6.13_23309_treechop-f153ac423f61-20210925-104306.mp4\r\n6.13_10971_Player55-b49d196bb147-20211212-162908.mp4 6.13_2330_Player19-f153ac423f61-20211215-165003.mp4\r\n6.13_10972_Player55-b49d196bb147-20211212-163009.mp4 6.13_23310_treechop-f153ac423f61-20210925-104408.mp4\r\n6.13_10973_Player55-b49d196bb147-20211212-163110.mp4 6.13_23311_treechop-f153ac423f61-20210925-104509.mp4\r\n6.13_10974_Player55-b49d196bb147-20211212-163210.mp4 6.13_23312_treechop-f153ac423f61-20210925-104610.mp4\r\n6.13_10975_Player55-b49d196bb147-20211212-163311.mp4 6.13_23313_treechop-f153ac423f61-20210925-104710.mp4\r\n6.13_10976_Player55-b49d196bb147-20211212-163411.mp4 6.13_23314_treechop-f153ac423f61-20210925-104811.mp4\r\n6.13_10977_Player55-b49d196bb147-20211212-163512.mp4 6.13_23315_treechop-f153ac423f61-20210925-104913.mp4\r\n6.13_10978_Player55-b49d196bb147-20211212-163612.mp4 6.13_23316_treechop-f153ac423f61-20210925-105014.mp4\r\n6.13_10979_Player55-b49d196bb147-20211212-163713.mp4 6.13_23317_treechop-f153ac423f61-20210925-105115.mp4\r\n6.13_1097_Player142-f153ac423f61-20210726-114821.mp4 6.13_23318_treechop-f153ac423f61-20210925-105215.mp4\r\n6.13_10980_Player55-b49d196bb147-20211212-163813.mp4 6.13_23319_treechop-f153ac423f61-20210925-105316.mp4\r\n6.13_10981_Player55-b49d196bb147-20211212-163913.mp4 6.13_2331_Player19-f153ac423f61-20211215-165106.mp4\r\n6.13_10982_Player55-b49d196bb147-20211212-164013.mp4 6.13_23320_treechop-f153ac423f61-20210925-105417.mp4\r\n6.13_10983_Player55-b49d196bb147-20211212-164114.mp4 6.13_23321_treechop-f153ac423f61-20210925-105517.mp4\r\n6.13_10984_Player55-b49d196bb147-20211212-164215.mp4 6.13_23322_treechop-f153ac423f61-20210925-105618.mp4\r\n6.13_10985_Player55-b49d196bb147-20211212-164315.mp4 6.13_23323_treechop-f153ac423f61-20210925-105719.mp4\r\n6.13_10986_Player55-b49d196bb147-20211212-164416.mp4 6.13_23324_treechop-f153ac423f61-20210925-105819.mp4\r\n6.13_10987_Player55-b49d196bb147-20211212-164516.mp4 6.13_23325_treechop-f153ac423f61-20210925-105920.mp4\r\n6.13_10988_Player55-b49d196bb147-20211212-164617.mp4 6.13_23326_treechop-f153ac423f61-20210925-110021.mp4\r\n6.13_10989_Player55-b49d196bb147-20211212-164717.mp4 6.13_23327_treechop-f153ac423f61-20210925-110121.mp4\r\n6.13_1098_Player142-f153ac423f61-20210726-114949.mp4 6.13_23328_treechop-f153ac423f61-20210925-110222.mp4\r\n6.13_10990_Player55-b49d196bb147-20211212-164818.mp4 6.13_23329_treechop-f153ac423f61-20210925-110323.mp4\r\n6.13_10991_Player55-b49d196bb147-20211212-164919.mp4 6.13_2332_Player19-f153ac423f61-20211215-165315.mp4\r\n6.13_10992_Player55-b49d196bb147-20211212-165019.mp4 6.13_23330_treechop-f153ac423f61-20210925-110424.mp4\r\n6.13_10993_Player55-b49d196bb147-20211212-165119.mp4 6.13_23331_treechop-f153ac423f61-20210925-110525.mp4\r\n6.13_10994_Player55-b49d196bb147-20211212-165220.mp4 6.13_23332_treechop-f153ac423f61-20210925-110626.mp4\r\n6.13_10995_Player55-b49d196bb147-20211212-165320.mp4 6.13_23333_treechop-f153ac423f61-20210925-110727.mp4\r\n6.13_10996_Player55-b49d196bb147-20211212-165420.mp4 6.13_23334_treechop-f153ac423f61-20210925-110827.mp4\r\n6.13_10997_Player55-b49d196bb147-20211212-165520.mp4 6.13_23335_treechop-f153ac423f61-20210925-110928.mp4\r\n6.13_10998_Player55-b49d196bb147-20211212-165621.mp4 6.13_23336_treechop-f153ac423f61-20210925-111030.mp4\r\n6.13_10999_Player55-b49d196bb147-20211212-165721.mp4 6.13_23337_treechop-f153ac423f61-20210925-111132.mp4\r\n6.13_1099_Player142-f153ac423f61-20210726-115108.mp4 6.13_23338_treechop-f153ac423f61-20210925-111233.mp4\r\n6.13_109_Player100-63eefbd0685a-20211220-202327.mp4 6.13_23339_treechop-f153ac423f61-20210925-111334.mp4\r\n6.13_11000_Player55-b49d196bb147-20211212-165821.mp4 6.13_2333_Player19-f153ac423f61-20211215-165420.mp4\r\n6.13_11001_Player55-b49d196bb147-20211212-165922.mp4 6.13_23340_treechop-f153ac423f61-20210925-111434.mp4\r\n6.13_11002_Player55-b49d196bb147-20211212-170022.mp4 6.13_23341_treechop-f153ac423f61-20210925-111535.mp4\r\n6.13_11003_Player55-b49d196bb147-20211212-170123.mp4 6.13_23342_treechop-f153ac423f61-20210925-111636.mp4\r\n6.13_11004_Player55-b49d196bb147-20211212-170223.mp4 6.13_23343_treechop-f153ac423f61-20210925-111738.mp4\r\n6.13_11005_Player55-b49d196bb147-20211212-170324.mp4 6.13_23344_treechop-f153ac423f61-20210925-111839.mp4\r\n6.13_11006_Player55-b49d196bb147-20211212-170424.mp4 6.13_23345_treechop-f153ac423f61-20210925-111940.mp4\r\n6.13_11007_Player55-b49d196bb147-20211212-170524.mp4 6.13_23346_treechop-f153ac423f61-20210926-101511.mp4\r\n6.13_11008_Player55-b49d196bb147-20211212-170625.mp4 6.13_23347_treechop-f153ac423f61-20210926-101616.mp4\r\n6.13_11009_Player55-b49d196bb147-20211212-170725.mp4 6.13_23348_treechop-f153ac423f61-20210926-101718.mp4\r\n6.13_1100_Player142-f153ac423f61-20210726-115231.mp4 6.13_23349_treechop-f153ac423f61-20210926-101820.mp4\r\n6.13_11010_Player55-b49d196bb147-20211212-170825.mp4 6.13_2334_Player19-f153ac423f61-20211215-165625.mp4\r\n6.13_11011_Player55-b49d196bb147-20211212-170926.mp4 6.13_23350_treechop-f153ac423f61-20210926-101920.mp4\r\n6.13_11012_Player55-b49d196bb147-20211212-171026.mp4 6.13_23351_treechop-f153ac423f61-20210926-102022.mp4\r\n6.13_11013_Player55-b49d196bb147-20211212-171126.mp4 6.13_23352_treechop-f153ac423f61-20210926-102124.mp4\r\n6.13_11014_Player55-b49d196bb147-20211212-171227.mp4 6.13_23353_treechop-f153ac423f61-20210926-102225.mp4\r\n6.13_11015_Player55-b49d196bb147-20211212-171327.mp4 6.13_23354_treechop-f153ac423f61-20210926-102326.mp4\r\n6.13_11016_Player55-b49d196bb147-20211212-171428.mp4 6.13_23355_treechop-f153ac423f61-20210926-102428.mp4\r\n6.13_11017_Player55-b49d196bb147-20211212-171528.mp4 6.13_23356_treechop-f153ac423f61-20210926-102529.mp4\r\n6.13_11018_Player55-b49d196bb147-20211212-171628.mp4 6.13_23357_treechop-f153ac423f61-20210926-102630.mp4\r\n6.13_11019_Player55-b49d196bb147-20211212-171729.mp4 6.13_23358_treechop-f153ac423f61-20210926-102732.mp4\r\n6.13_1101_Player142-f153ac423f61-20210726-115339.mp4 6.13_23359_treechop-f153ac423f61-20210926-102834.mp4\r\n6.13_11020_Player55-b49d196bb147-20211212-171829.mp4 6.13_2335_Player19-f153ac423f61-20211215-165727.mp4\r\n6.13_11021_Player55-b49d196bb147-20211212-171929.mp4 6.13_23360_treechop-f153ac423f61-20210926-102935.mp4\r\n6.13_11022_Player55-b49d196bb147-20211212-172030.mp4 6.13_23361_treechop-f153ac423f61-20210926-103036.mp4\r\n6.13_11023_Player55-b49d196bb147-20211212-172130.mp4 6.13_23362_treechop-f153ac423f61-20210927-174414.mp4\r\n6.13_11024_Player55-b49d196bb147-20211212-172230.mp4 6.13_23363_treechop-f153ac423f61-20210927-174522.mp4\r\n6.13_11025_Player55-b49d196bb147-20211212-172330.mp4 6.13_23364_treechop-f153ac423f61-20210927-183549.mp4\r\n6.13_11026_Player55-b49d196bb147-20211212-172431.mp4 6.13_23365_treechop-f153ac423f61-20210927-183653.mp4\r\n6.13_11027_Player55-b49d196bb147-20211212-172531.mp4 6.13_23366_treechop-f153ac423f61-20210927-183756.mp4\r\n6.13_11028_Player55-b49d196bb147-20211212-172631.mp4 6.13_23367_treechop-f153ac423f61-20210927-183859.mp4\r\n6.13_11029_Player55-b49d196bb147-20211212-172732.mp4 6.13_23368_treechop-f153ac423f61-20210927-183959.mp4\r\n6.13_1102_Player142-f153ac423f61-20210726-115447.mp4 6.13_23369_treechop-f153ac423f61-20210927-184100.mp4\r\n6.13_11030_Player55-b49d196bb147-20211212-172833.mp4 6.13_2336_Player19-f153ac423f61-20211215-165933.mp4\r\n6.13_11031_Player55-b49d196bb147-20211212-172933.mp4 6.13_23370_treechop-f153ac423f61-20210927-184204.mp4\r\n6.13_11032_Player55-b49d196bb147-20211212-173034.mp4 6.13_23371_treechop-f153ac423f61-20210927-184309.mp4\r\n6.13_11033_Player55-b49d196bb147-20211212-173134.mp4 6.13_23372_treechop-f153ac423f61-20210927-184412.mp4\r\n6.13_11034_Player55-b49d196bb147-20211212-173234.mp4 6.13_23373_treechop-f153ac423f61-20210927-184513.mp4\r\n6.13_11035_Player55-f153ac423f61-20210831-141109.mp4 6.13_23374_treechop-f153ac423f61-20210927-184617.mp4\r\n6.13_11036_Player55-f153ac423f61-20210831-141231.mp4 6.13_23375_treechop-f153ac423f61-20210927-184718.mp4\r\n6.13_11037_Player55-f153ac423f61-20210831-141342.mp4 6.13_23376_treechop-f153ac423f61-20210927-184820.mp4\r\n6.13_11038_Player55-f153ac423f61-20210831-141444.mp4 6.13_23377_treechop-f153ac423f61-20210927-184921.mp4\r\n6.13_11039_Player55-f153ac423f61-20210831-141552.mp4 6.13_23378_treechop-f153ac423f61-20210927-185022.mp4\r\n6.13_1103_Player142-f153ac423f61-20210726-115555.mp4 6.13_23379_treechop-f153ac423f61-20210927-185124.mp4\r\n6.13_11040_Player55-f153ac423f61-20210831-141658.mp4 6.13_2337_Player190-dda18b6b5c34-20210829-163201.mp4\r\n6.13_11041_Player55-f153ac423f61-20210831-141804.mp4 6.13_23380_treechop-f153ac423f61-20210927-185230.mp4\r\n6.13_11042_Player55-f153ac423f61-20210831-141905.mp4 6.13_23381_treechop-f153ac423f61-20210927-185331.mp4\r\n6.13_11043_Player55-f153ac423f61-20210831-142007.mp4 6.13_23382_treechop-f153ac423f61-20210927-185434.mp4\r\n6.13_11044_Player55-f153ac423f61-20210831-142211.mp4 6.13_23383_treechop-f153ac423f61-20210927-185538.mp4\r\n6.13_11045_Player55-f153ac423f61-20211212-162018.mp4 6.13_23384_treechop-f153ac423f61-20210927-185639.mp4\r\n6.13_11046_Player55-f153ac423f61-20211212-162119.mp4 6.13_23385_treechop-f153ac423f61-20210927-185741.mp4\r\n6.13_11047_Player55-f153ac423f61-20211212-162221.mp4 6.13_23386_treechop-f153ac423f61-20210927-185842.mp4\r\n6.13_11048_Player55-f153ac423f61-20211212-162321.mp4 6.13_23387_treechop-f153ac423f61-20210927-185945.mp4\r\n6.13_11049_Player55-f153ac423f61-20211212-162422.mp4 6.13_23388_treechop-f153ac423f61-20210927-190046.mp4\r\n6.13_1104_Player142-f153ac423f61-20210726-115707.mp4 6.13_23389_treechop-f153ac423f61-20210927-190148.mp4\r\n6.13_11050_Player55-f153ac423f61-20211212-162524.mp4 6.13_2338_Player190-dda18b6b5c34-20210829-163907.mp4\r\n6.13_11051_Player55-f153ac423f61-20211212-162625.mp4 6.13_23390_treechop-f153ac423f61-20210927-190250.mp4\r\n6.13_11052_Player55-f153ac423f61-20211212-162727.mp4 6.13_23391_treechop-f153ac423f61-20210927-190353.mp4\r\n6.13_11053_Player552-f153ac423f61-20210727-115737.mp4 6.13_23392_treechop-f153ac423f61-20210927-190455.mp4\r\n6.13_11054_Player552-f153ac423f61-20210727-120105.mp4 6.13_23393_treechop-f153ac423f61-20210927-190557.mp4\r\n6.13_11055_Player552-f153ac423f61-20210727-120416.mp4 6.13_23394_treechop-f153ac423f61-20210927-190658.mp4\r\n6.13_11056_Player552-f153ac423f61-20210727-120720.mp4 6.13_23395_treechop-f153ac423f61-20210927-190759.mp4\r\n6.13_11057_Player552-f153ac423f61-20210727-121037.mp4 6.13_23396_treechop-f153ac423f61-20210927-190902.mp4\r\n6.13_11058_Player552-f153ac423f61-20210727-121448.mp4 6.13_23397_treechop-f153ac423f61-20210927-191005.mp4\r\n6.13_11059_Player552-f153ac423f61-20210727-121754.mp4 6.13_23398_treechop-f153ac423f61-20210927-191110.mp4\r\n6.13_1105_Player142-f153ac423f61-20210726-115816.mp4 6.13_23399_treechop-f153ac423f61-20210927-191214.mp4\r\n6.13_11060_Player552-f153ac423f61-20210727-122206.mp4 6.13_2339_Player190-dda18b6b5c34-20210829-164614.mp4\r\n6.13_11061_Player552-f153ac423f61-20210727-122628.mp4 6.13_233_Player108-f153ac423f61-20211207-111317.mp4\r\n6.13_11062_Player552-f153ac423f61-20210727-123037.mp4 6.13_23400_treechop-f153ac423f61-20210927-191317.mp4\r\n6.13_11063_Player552-f153ac423f61-20210727-123344.mp4 6.13_23401_treechop-f153ac423f61-20210927-191421.mp4\r\n6.13_11064_Player552-f153ac423f61-20210727-123657.mp4 6.13_23402_treechop-f153ac423f61-20210927-191524.mp4\r\n6.13_11065_Player552-f153ac423f61-20210727-124104.mp4 6.13_23403_treechop-f153ac423f61-20210927-191626.mp4\r\n6.13_11066_Player552-f153ac423f61-20210727-124521.mp4 6.13_23404_treechop-f153ac423f61-20210927-191729.mp4\r\n6.13_11067_Player552-f153ac423f61-20210727-124938.mp4 6.13_23405_treechop-f153ac423f61-20210927-191831.mp4\r\n6.13_11068_Player552-f153ac423f61-20210727-125258.mp4 6.13_23406_treechop-f153ac423f61-20210927-191932.mp4\r\n6.13_11069_Player552-f153ac423f61-20211120-173209.mp4 6.13_23407_treechop-f153ac423f61-20210927-192035.mp4\r\n6.13_1106_Player142-f153ac423f61-20210726-115926.mp4 6.13_23408_treechop-f153ac423f61-20210927-192136.mp4\r\n6.13_11070_Player555-f153ac423f61-20210809-152838.mp4 6.13_23409_treechop-f153ac423f61-20210927-192238.mp4\r\n6.13_11071_Player555-f153ac423f61-20210809-153310.mp4 6.13_2340_Player190-e99c6bb06473-20210829-115222.mp4\r\n6.13_11072_Player555-f153ac423f61-20210809-153729.mp4 6.13_23410_treechop-f153ac423f61-20210927-192340.mp4\r\n6.13_11073_Player555-f153ac423f61-20210809-154154.mp4 6.13_23411_treechop-f153ac423f61-20210927-192442.mp4\r\n6.13_11074_Player555-f153ac423f61-20210809-154459.mp4 6.13_23412_treechop-f153ac423f61-20210927-192546.mp4\r\n6.13_11075_Player555-f153ac423f61-20210809-154810.mp4 6.13_23413_treechop-f153ac423f61-20210927-192648.mp4\r\n6.13_11076_Player555-f153ac423f61-20210809-155232.mp4 6.13_23414_treechop-f153ac423f61-20210927-192752.mp4\r\n6.13_11077_Player555-f153ac423f61-20210809-155641.mp4 6.13_23415_treechop-f153ac423f61-20210927-192853.mp4\r\n6.13_11078_Player555-f153ac423f61-20210809-155948.mp4 6.13_23416_treechop-f153ac423f61-20210927-193000.mp4\r\n6.13_11079_Player555-f153ac423f61-20210809-160255.mp4 6.13_23417_treechop-f153ac423f61-20210927-193103.mp4\r\n6.13_1107_Player142-f153ac423f61-20210726-120039.mp4 6.13_23418_treechop-f153ac423f61-20210927-193205.mp4\r\n6.13_11080_Player555-f153ac423f61-20210809-160707.mp4 6.13_23419_treechop-f153ac423f61-20210927-193306.mp4\r\n6.13_11081_Player555-f153ac423f61-20210809-161120.mp4 6.13_2341_Player190-e99c6bb06473-20210829-115926.mp4\r\n6.13_11082_Player555-f153ac423f61-20210809-161433.mp4 6.13_23420_treechop-f153ac423f61-20210927-193408.mp4\r\n6.13_11083_Player555-f153ac423f61-20210809-161751.mp4 6.13_23421_treechop-f153ac423f61-20210927-193510.mp4\r\n6.13_11084_Player556-3884f4b11556-20211212-014822.mp4 6.13_23422_treechop-f153ac423f61-20210927-193611.mp4\r\n6.13_11085_Player556-3884f4b11556-20211212-014923.mp4 6.13_23423_treechop-f153ac423f61-20210927-193712.mp4\r\n6.13_11086_Player556-3884f4b11556-20211212-015025.mp4 6.13_23424_treechop-f153ac423f61-20210927-193815.mp4\r\n6.13_11087_Player556-3884f4b11556-20211212-015127.mp4 6.13_23425_treechop-f153ac423f61-20210927-193916.mp4\r\n6.13_11088_Player556-3884f4b11556-20211212-015229.mp4 6.13_23426_treechop-f153ac423f61-20210927-194017.mp4\r\n6.13_11089_Player556-3884f4b11556-20211212-015331.mp4 6.13_23427_treechop-f153ac423f61-20210927-194118.mp4\r\n6.13_1108_Player142-f153ac423f61-20210726-120157.mp4 6.13_23428_treechop-f153ac423f61-20210927-194221.mp4\r\n6.13_11090_Player556-3884f4b11556-20211212-015433.mp4 6.13_23429_treechop-f153ac423f61-20210927-194322.mp4\r\n6.13_11091_Player556-3884f4b11556-20211212-015534.mp4 6.13_2342_Player190-e99c6bb06473-20210829-120632.mp4\r\n6.13_11092_Player556-3884f4b11556-20211212-015738.mp4 6.13_23430_treechop-f153ac423f61-20211008-212129.mp4\r\n6.13_11093_Player556-3ec94b758a31-20211212-014544.mp4 6.13_23431_treechop-f153ac423f61-20211009-203344.mp4\r\n6.13_11094_Player556-3ec94b758a31-20211212-014645.mp4 6.13_23432_treechop-f153ac423f61-20211009-210443.mp4\r\n6.13_11095_Player556-5f5b0a96bfc1-20211212-013547.mp4 6.13_23433_treechop-f153ac423f61-20211009-212213.mp4\r\n6.13_11096_Player556-5f5b0a96bfc1-20211212-013648.mp4 6.13_23434_treechop-f153ac423f61-20211013-133217.mp4\r\n6.13_11097_Player556-9fc1d06fa346-20211212-013713.mp4 6.13_23435_treechop-f153ac423f61-20211013-133321.mp4\r\n6.13_11098_Player556-9fc1d06fa346-20211212-013814.mp4 6.13_23436_treechop-f153ac423f61-20211013-133422.mp4\r\n6.13_11099_Player556-9fc1d06fa346-20211212-013915.mp4 6.13_23437_treechop-f153ac423f61-20211013-133522.mp4\r\n6.13_1109_Player142-f153ac423f61-20210726-120315.mp4 6.13_23438_treechop-f153ac423f61-20211013-133623.mp4\r\n6.13_110_Player100-63eefbd0685a-20211220-202526.mp4 6.13_23439_treechop-f153ac423f61-20211013-133724.mp4\r\n6.13_11100_Player556-a978dd815387-20211212-013943.mp4 6.13_2343_Player190-e99c6bb06473-20210829-121443.mp4\r\n6.13_11101_Player556-a978dd815387-20211212-014044.mp4 6.13_23440_treechop-f153ac423f61-20211013-133825.mp4\r\n6.13_11102_Player556-a978dd815387-20211212-014145.mp4 6.13_23441_treechop-f153ac423f61-20211013-133925.mp4\r\n6.13_11103_Player556-a978dd815387-20211212-014246.mp4 6.13_23442_treechop-f153ac423f61-20211013-134026.mp4\r\n6.13_11104_Player556-a978dd815387-20211212-014348.mp4 6.13_23443_treechop-f153ac423f61-20211013-134127.mp4\r\n6.13_11105_Player556-b4ecb1288be7-20211212-013427.mp4 6.13_23444_treechop-f153ac423f61-20211013-134227.mp4\r\n6.13_11106_Player556-b4ecb1288be7-20211212-013528.mp4 6.13_23445_treechop-f153ac423f61-20211013-134328.mp4\r\n6.13_11107_Player556-cdc257fd0f2f-20211212-015944.mp4 6.13_23446_treechop-f153ac423f61-20211013-134429.mp4\r\n6.13_11108_Player556-cdc257fd0f2f-20211212-020045.mp4 6.13_23447_treechop-f153ac423f61-20211013-134530.mp4\r\n6.13_11109_Player556-cdc257fd0f2f-20211212-020146.mp4 6.13_23448_treechop-f153ac423f61-20211013-134631.mp4\r\n6.13_1110_Player142-f153ac423f61-20210726-120437.mp4 6.13_23449_treechop-f153ac423f61-20211013-134732.mp4\r\n6.13_11110_Player556-f153ac423f61-20210806-194205.mp4 6.13_2344_Player190-e99c6bb06473-20210829-122149.mp4\r\n6.13_11111_Player556-f153ac423f61-20210806-200450.mp4 6.13_23450_treechop-f153ac423f61-20211015-175920.mp4\r\n6.13_11112_Player556-f153ac423f61-20210806-213358.mp4 6.13_23451_treechop-f153ac423f61-20211015-183103.mp4\r\n6.13_11113_Player556-f153ac423f61-20211027-152724.mp4 6.13_23452_treechop-f153ac423f61-20211019-195018.mp4\r\n6.13_11114_Player556-f153ac423f61-20211027-153206.mp4 6.13_23453_treechop-f153ac423f61-20211111-192830.mp4\r\n6.13_11115_Player556-f153ac423f61-20211027-153631.mp4 6.13_23454_treechop-f153ac423f61-20211120-203359.mp4\r\n6.13_11116_Player556-f153ac423f61-20211027-154107.mp4 6.13_23455_treechop-f153ac423f61-20211121-122020.mp4\r\n6.13_11117_Player556-f153ac423f61-20211027-154517.mp4 6.13_23456_treechop-f153ac423f61-20211121-220300.mp4\r\n6.13_11118_Player556-f153ac423f61-20211027-155346.mp4 6.13_23457_treechop-f86d4d3140f2-20210925-112145.mp4\r\n6.13_11119_Player556-f153ac423f61-20211027-160013.mp4 6.13_2345_Player190-e99c6bb06473-20210829-122959.mp4\r\n6.13_1111_Player142-f153ac423f61-20210726-120547.mp4 6.13_2346_Player190-e99c6bb06473-20210829-123704.mp4\r\n6.13_11120_Player556-f153ac423f61-20211212-013325.mp4 6.13_2347_Player190-e99c6bb06473-20210829-124525.mp4\r\n6.13_11121_Player558-7a04d0c26b42-20210728-134007.mp4 6.13_2348_Player190-e99c6bb06473-20210829-125228.mp4\r\n6.13_11122_Player558-7a04d0c26b42-20210728-135738.mp4 6.13_2349_Player190-e99c6bb06473-20210829-125933.mp4\r\n6.13_11123_Player558-7a04d0c26b42-20210728-141519.mp4 6.13_234_Player108-f153ac423f61-20211207-111423.mp4\r\n6.13_11124_Player558-7a04d0c26b42-20210728-143138.mp4 6.13_2350_Player190-e99c6bb06473-20210829-130746.mp4\r\n6.13_11125_Player558-7a04d0c26b42-20210728-144942.mp4 6.13_2351_Player190-e99c6bb06473-20210829-131453.mp4\r\n6.13_11126_Player558-7a04d0c26b42-20210728-150856.mp4 6.13_2352_Player190-e99c6bb06473-20210829-132202.mp4\r\n6.13_11127_Player558-7a04d0c26b42-20210728-152607.mp4 6.13_2353_Player190-e99c6bb06473-20210829-132908.mp4\r\n6.13_11128_Player558-7a04d0c26b42-20210728-154324.mp4 6.13_2354_Player190-e99c6bb06473-20210829-133613.mp4\r\n6.13_11129_Player558-7a04d0c26b42-20210728-160057.mp4 6.13_2355_Player190-e99c6bb06473-20210829-134318.mp4\r\n6.13_1112_Player142-f153ac423f61-20210726-120703.mp4 6.13_2356_Player190-e99c6bb06473-20210829-135025.mp4\r\n6.13_11130_Player558-7a04d0c26b42-20210728-161820.mp4 6.13_2357_Player190-e99c6bb06473-20210829-135735.mp4\r\n6.13_11131_Player558-7a04d0c26b42-20210728-163545.mp4 6.13_2358_Player190-e99c6bb06473-20210829-140544.mp4\r\n6.13_11132_Player558-7a04d0c26b42-20210728-165516.mp4 6.13_2359_Player190-e99c6bb06473-20210829-141255.mp4\r\n6.13_11133_Player558-7a04d0c26b42-20210728-171240.mp4 6.13_235_Player108-f153ac423f61-20211207-111533.mp4\r\n6.13_11134_Player558-7a04d0c26b42-20210728-173022.mp4 6.13_2360_Player190-e99c6bb06473-20210829-142109.mp4\r\n6.13_11135_Player558-7a04d0c26b42-20210728-175050.mp4 6.13_2361_Player190-e99c6bb06473-20210829-142819.mp4\r\n6.13_11136_Player558-d716402f6d82-20210728-112239.mp4 6.13_2362_Player190-e99c6bb06473-20210829-143853.mp4\r\n6.13_11137_Player558-d716402f6d82-20210728-113949.mp4 6.13_2363_Player190-e99c6bb06473-20210829-144603.mp4\r\n6.13_11138_Player558-d716402f6d82-20210728-115600.mp4 6.13_2364_Player190-e99c6bb06473-20210829-145320.mp4\r\n6.13_11139_Player558-d716402f6d82-20210728-121333.mp4 6.13_2365_Player190-e99c6bb06473-20210829-150030.mp4\r\n6.13_1113_Player142-f153ac423f61-20210726-120815.mp4 6.13_2366_Player190-e99c6bb06473-20210829-150840.mp4\r\n6.13_11140_Player558-d716402f6d82-20210728-122958.mp4 6.13_2367_Player190-e99c6bb06473-20210829-151550.mp4\r\n6.13_11141_Player558-d716402f6d82-20210728-124625.mp4 6.13_2368_Player190-e99c6bb06473-20210829-152256.mp4\r\n6.13_11142_Player558-d716402f6d82-20210728-130259.mp4 6.13_2369_Player190-e99c6bb06473-20210829-153005.mp4\r\n6.13_11143_Player558-d716402f6d82-20210728-131910.mp4 6.13_236_Player108-f153ac423f61-20211207-111712.mp4\r\n6.13_11144_Player558-f153ac423f61-20210728-073147.mp4 6.13_2370_Player190-e99c6bb06473-20210829-153814.mp4\r\n6.13_11145_Player558-f153ac423f61-20210728-074808.mp4 6.13_2371_Player190-e99c6bb06473-20210829-154631.mp4\r\n6.13_11146_Player558-f153ac423f61-20210728-080426.mp4 6.13_2372_Player190-e99c6bb06473-20210829-155341.mp4\r\n6.13_11147_Player558-f153ac423f61-20210728-082146.mp4 6.13_2373_Player190-e99c6bb06473-20210829-160156.mp4\r\n6.13_11148_Player558-f153ac423f61-20210728-083749.mp4 6.13_2374_Player190-e99c6bb06473-20210829-160908.mp4\r\n6.13_11149_Player558-f153ac423f61-20210728-085453.mp4 6.13_2375_Player190-e99c6bb06473-20210829-161722.mp4\r\n6.13_1114_Player142-f153ac423f61-20210726-120927.mp4 6.13_2376_Player190-e99c6bb06473-20210829-162434.mp4\r\n6.13_11150_Player558-f153ac423f61-20210728-091040.mp4 6.13_2377_Player190-f153ac423f61-20210829-092607.mp4\r\n6.13_11151_Player558-f153ac423f61-20210728-092721.mp4 6.13_2378_Player190-f153ac423f61-20210829-093325.mp4\r\n6.13_11152_Player558-f153ac423f61-20210728-094350.mp4 6.13_2379_Player190-f153ac423f61-20210829-094138.mp4\r\n6.13_11153_Player558-f153ac423f61-20210728-100101.mp4 6.13_237_Player108-f153ac423f61-20211207-111901.mp4\r\n6.13_11154_Player558-f153ac423f61-20210728-101828.mp4 6.13_2380_Player190-f153ac423f61-20210829-094844.mp4\r\n6.13_11155_Player558-f153ac423f61-20210728-103546.mp4 6.13_2381_Player190-f153ac423f61-20210829-095551.mp4\r\n6.13_11156_Player558-f153ac423f61-20210728-105153.mp4 6.13_2382_Player190-f153ac423f61-20210829-100301.mp4\r\n6.13_11157_Player559-cbb1913deeb4-20211119-183155.mp4 6.13_2383_Player190-f153ac423f61-20210829-101008.mp4\r\n6.13_11158_Player559-cbb1913deeb4-20211119-183259.mp4 6.13_2384_Player190-f153ac423f61-20210829-101936.mp4\r\n6.13_11159_Player559-cbb1913deeb4-20211119-183402.mp4 6.13_2385_Player190-f153ac423f61-20210829-102642.mp4\r\n6.13_1115_Player142-f153ac423f61-20210726-121032.mp4 6.13_2386_Player190-f153ac423f61-20210829-103347.mp4\r\n6.13_11160_Player559-cbb1913deeb4-20211119-183503.mp4 6.13_2387_Player190-f153ac423f61-20210829-104155.mp4\r\n6.13_11161_Player559-cbb1913deeb4-20211119-183606.mp4 6.13_2388_Player190-f153ac423f61-20210829-104901.mp4\r\n6.13_11162_Player559-cbb1913deeb4-20211119-183709.mp4 6.13_2389_Player190-f153ac423f61-20210829-105607.mp4\r\n6.13_11163_Player559-f153ac423f61-20211119-181416.mp4 6.13_238_Player108-f153ac423f61-20211207-112028.mp4\r\n6.13_11164_Player559-f153ac423f61-20211119-181524.mp4 6.13_2390_Player190-f153ac423f61-20210829-110423.mp4\r\n6.13_11165_Player559-f153ac423f61-20211119-181629.mp4 6.13_2391_Player190-f153ac423f61-20210829-111231.mp4\r\n6.13_11166_Player559-f153ac423f61-20211119-181736.mp4 6.13_2392_Player190-f153ac423f61-20210829-112201.mp4\r\n6.13_11167_Player559-f153ac423f61-20211119-181841.mp4 6.13_2393_Player190-f153ac423f61-20210829-112908.mp4\r\n6.13_11168_Player559-f153ac423f61-20211119-181948.mp4 6.13_2394_Player190-f153ac423f61-20210829-113629.mp4\r\n6.13_11169_Player559-f153ac423f61-20211119-182054.mp4 6.13_2395_Player190-f153ac423f61-20210829-114451.mp4\r\n6.13_1116_Player142-f153ac423f61-20210726-121155.mp4 6.13_2396_Player193-f153ac423f61-20211212-104134.mp4\r\n6.13_11170_Player559-f153ac423f61-20211119-182201.mp4 6.13_2397_Player193-f153ac423f61-20211212-110109.mp4\r\n6.13_11171_Player559-f153ac423f61-20211119-182350.mp4 6.13_2398_Player193-f153ac423f61-20211212-112031.mp4\r\n6.13_11172_Player559-f153ac423f61-20211119-182511.mp4 6.13_2399_Player194-f153ac423f61-20211008-150732.mp4\r\n6.13_11173_Player559-f153ac423f61-20211119-182644.mp4 6.13_239_Player108-f153ac423f61-20211207-112138.mp4\r\n6.13_11174_Player559-f153ac423f61-20211119-182756.mp4 6.13_2400_Player194-f153ac423f61-20211008-151610.mp4\r\n6.13_11175_Player559-f153ac423f61-20211119-182927.mp4 6.13_2401_Player194-f153ac423f61-20211008-152957.mp4\r\n6.13_11176_Player559-f153ac423f61-20211119-183033.mp4 6.13_2402_Player194-f153ac423f61-20211008-154621.mp4\r\n6.13_11177_Player559-f153ac423f61-20211209-180516.mp4 6.13_2403_Player194-f153ac423f61-20211008-160559.mp4\r\n6.13_11178_Player559-f153ac423f61-20211209-181011.mp4 6.13_2404_Player197-59fb7144c82b-20210722-141015.mp4\r\n6.13_11179_Player559-f153ac423f61-20211209-181434.mp4 6.13_2405_Player197-7c3198bcb76b-20210722-135355.mp4\r\n6.13_1117_Player142-f153ac423f61-20210726-121322.mp4 6.13_2406_Player197-b1bc7d31e586-20210722-173300.mp4\r\n6.13_11180_Player559-f153ac423f61-20211209-181902.mp4 6.13_2407_Player197-b1bc7d31e586-20210722-175330.mp4\r\n6.13_11181_Player559-f153ac423f61-20211209-182311.mp4 6.13_2408_Player197-f153ac423f61-20210722-095236.mp4\r\n6.13_11182_Player559-f153ac423f61-20211209-182717.mp4 6.13_2409_Player197-f153ac423f61-20210722-101059.mp4\r\n6.13_11183_Player559-f153ac423f61-20211209-183225.mp4 6.13_240_Player108-f153ac423f61-20211207-112244.mp4\r\n6.13_11184_Player559-f153ac423f61-20211209-183710.mp4 6.13_2410_Player197-f153ac423f61-20210722-102720.mp4\r\n6.13_11185_Player559-f153ac423f61-20211209-184142.mp4 6.13_2411_Player197-f153ac423f61-20210722-104645.mp4\r\n6.13_11186_Player559-f153ac423f61-20211209-184626.mp4 6.13_2412_Player197-f153ac423f61-20210722-110202.mp4\r\n6.13_11187_Player559-f153ac423f61-20211209-185011.mp4 6.13_2413_Player197-f153ac423f61-20210722-111822.mp4\r\n6.13_11188_Player559-f153ac423f61-20211209-185346.mp4 6.13_2414_Player197-f153ac423f61-20210722-113435.mp4\r\n6.13_11189_Player559-f153ac423f61-20211209-185720.mp4 6.13_2415_Player197-f153ac423f61-20210722-115252.mp4\r\n6.13_1118_Player142-f153ac423f61-20210726-121446.mp4 6.13_2416_Player197-f153ac423f61-20210722-121012.mp4\r\n6.13_11190_Player559-f153ac423f61-20211209-190148.mp4 6.13_2417_Player197-f153ac423f61-20210722-122720.mp4\r\n6.13_11191_Player559-f153ac423f61-20211209-190532.mp4 6.13_2418_Player197-f153ac423f61-20210722-124329.mp4\r\n6.13_11192_Player559-f153ac423f61-20211209-190937.mp4 6.13_2419_Player197-f153ac423f61-20210722-130247.mp4\r\n6.13_11193_Player559-f153ac423f61-20211209-191306.mp4 6.13_241_Player108-f153ac423f61-20211207-112347.mp4\r\n6.13_11194_Player560-f153ac423f61-20210821-163021.mp4 6.13_2420_Player197-f153ac423f61-20210722-131956.mp4\r\n6.13_11195_Player560-f153ac423f61-20210821-163205.mp4 6.13_2421_Player197-f153ac423f61-20210722-133609.mp4\r\n6.13_11196_Player560-f153ac423f61-20210821-163511.mp4 6.13_2422_Player197-f786ae5f6298-20210722-142751.mp4\r\n6.13_11197_Player560-f153ac423f61-20210821-165947.mp4 6.13_2423_Player197-f786ae5f6298-20210722-144623.mp4\r\n6.13_11198_Player560-f153ac423f61-20210821-170059.mp4 6.13_2424_Player197-f786ae5f6298-20210722-150556.mp4\r\n6.13_11199_Player560-f153ac423f61-20210821-170207.mp4 6.13_2425_Player197-f786ae5f6298-20210722-152526.mp4\r\n6.13_1119_Player142-f153ac423f61-20210726-121608.mp4 6.13_2426_Player197-f786ae5f6298-20210722-154235.mp4\r\n6.13_111_Player100-63eefbd0685a-20211220-202727.mp4 6.13_2427_Player197-f786ae5f6298-20210722-160102.mp4\r\n6.13_11200_Player562-cdc4e15c942e-20211213-011154.mp4 6.13_2428_Player197-f786ae5f6298-20210722-161931.mp4\r\n6.13_11201_Player562-cdc4e15c942e-20211213-011254.mp4 6.13_2429_Player197-f786ae5f6298-20210722-163921.mp4\r\n6.13_11202_Player562-cdc4e15c942e-20211213-011355.mp4 6.13_242_Player108-f153ac423f61-20211207-112450.mp4\r\n6.13_11203_Player562-cdc4e15c942e-20211213-011455.mp4 6.13_2430_Player197-f786ae5f6298-20210722-165850.mp4\r\n6.13_11204_Player562-cdc4e15c942e-20211213-011555.mp4 6.13_2431_Player197-f786ae5f6298-20210722-171605.mp4\r\n6.13_11205_Player562-e97549e2345a-20211213-011642.mp4 6.13_2432_Player2-f153ac423f61-20211111-102347.mp4\r\n6.13_11206_Player562-e97549e2345a-20211213-011743.mp4 6.13_2433_Player2-f153ac423f61-20211111-102552.mp4\r\n6.13_11207_Player562-e97549e2345a-20211213-011843.mp4 6.13_2434_Player2-f153ac423f61-20211111-102752.mp4\r\n6.13_11208_Player562-e97549e2345a-20211213-011944.mp4 6.13_2435_Player2-f153ac423f61-20211111-102953.mp4\r\n6.13_11209_Player562-e97549e2345a-20211213-012044.mp4 6.13_2436_Player2-f461cb3e00b9-20211111-103133.mp4\r\n6.13_1120_Player142-f153ac423f61-20210726-121733.mp4 6.13_2437_Player2-f461cb3e00b9-20211111-103336.mp4\r\n6.13_11210_Player562-e97549e2345a-20211213-012145.mp4 6.13_2438_Player2-f461cb3e00b9-20211111-103536.mp4\r\n6.13_11211_Player562-e97549e2345a-20211213-012245.mp4 6.13_2439_Player2-f461cb3e00b9-20211111-103738.mp4\r\n6.13_11212_Player562-e97549e2345a-20211213-012345.mp4 6.13_243_Player108-f153ac423f61-20211207-112601.mp4\r\n6.13_11213_Player562-e97549e2345a-20211213-012445.mp4 6.13_2440_Player2-f461cb3e00b9-20211111-103938.mp4\r\n6.13_11214_Player562-e97549e2345a-20211213-012546.mp4 6.13_2441_Player2-f461cb3e00b9-20211111-104139.mp4\r\n6.13_11215_Player562-e97549e2345a-20211213-012646.mp4 6.13_2442_Player2-f461cb3e00b9-20211111-104339.mp4\r\n6.13_11216_Player562-e97549e2345a-20211213-012746.mp4 6.13_2443_Player2-f461cb3e00b9-20211111-104539.mp4\r\n6.13_11217_Player562-e97549e2345a-20211213-012846.mp4 6.13_2444_Player2-f461cb3e00b9-20211111-104739.mp4\r\n6.13_11218_Player562-e97549e2345a-20211213-012947.mp4 6.13_2445_Player2-f461cb3e00b9-20211111-104940.mp4\r\n6.13_11219_Player562-e97549e2345a-20211213-013047.mp4 6.13_2446_Player2-f461cb3e00b9-20211111-105140.mp4\r\n6.13_1121_Player142-f153ac423f61-20210726-121852.mp4 6.13_2447_Player2-f461cb3e00b9-20211111-105340.mp4\r\n6.13_11220_Player562-e97549e2345a-20211213-013148.mp4 6.13_2448_Player2-f461cb3e00b9-20211111-105541.mp4\r\n6.13_11221_Player562-e97549e2345a-20211213-013248.mp4 6.13_2449_Player200-f153ac423f61-20210812-093433.mp4\r\n6.13_11222_Player562-e97549e2345a-20211213-013348.mp4 6.13_244_Player108-f153ac423f61-20211207-112706.mp4\r\n6.13_11223_Player562-e97549e2345a-20211213-013449.mp4 6.13_2450_Player200-f153ac423f61-20210812-093538.mp4\r\n6.13_11224_Player562-e97549e2345a-20211213-013549.mp4 6.13_2451_Player200-f153ac423f61-20210812-093640.mp4\r\n6.13_11225_Player562-e97549e2345a-20211213-013650.mp4 6.13_2452_Player200-f153ac423f61-20210812-093741.mp4\r\n6.13_11226_Player562-e97549e2345a-20211213-013750.mp4 6.13_2453_Player200-f153ac423f61-20210812-093841.mp4\r\n6.13_11227_Player562-e97549e2345a-20211213-013850.mp4 6.13_2454_Player200-f153ac423f61-20210812-093942.mp4\r\n6.13_11228_Player562-e97549e2345a-20211213-013951.mp4 6.13_2455_Player200-f153ac423f61-20210812-094042.mp4\r\n6.13_11229_Player562-e97549e2345a-20211213-014051.mp4 6.13_2456_Player200-f153ac423f61-20210812-094143.mp4\r\n6.13_1122_Player142-f153ac423f61-20210726-121957.mp4 6.13_2457_Player200-f153ac423f61-20210812-094244.mp4\r\n6.13_11230_Player562-e97549e2345a-20211213-014152.mp4 6.13_2458_Player200-f153ac423f61-20210812-094344.mp4\r\n6.13_11231_Player562-e97549e2345a-20211213-014252.mp4 6.13_2459_Player200-f153ac423f61-20210812-094445.mp4\r\n6.13_11232_Player562-e97549e2345a-20211213-014352.mp4 6.13_245_Player108-f153ac423f61-20211207-112806.mp4\r\n6.13_11233_Player562-e97549e2345a-20211213-014453.mp4 6.13_2460_Player200-f153ac423f61-20210812-094545.mp4\r\n6.13_11234_Player562-e97549e2345a-20211213-014553.mp4 6.13_2461_Player200-f153ac423f61-20210812-094646.mp4\r\n6.13_11235_Player562-e97549e2345a-20211213-014653.mp4 6.13_2462_Player200-f153ac423f61-20210812-094747.mp4\r\n6.13_11236_Player562-e97549e2345a-20211213-014754.mp4 6.13_2463_Player200-f153ac423f61-20210812-094850.mp4\r\n6.13_11237_Player562-e97549e2345a-20211213-014854.mp4 6.13_2464_Player200-f153ac423f61-20210812-094952.mp4\r\n6.13_11238_Player562-e97549e2345a-20211213-014954.mp4 6.13_2465_Player200-f153ac423f61-20210812-095054.mp4\r\n6.13_11239_Player562-e97549e2345a-20211213-015054.mp4 6.13_2466_Player202-81dab9b2f777-20211212-223205.mp4\r\n6.13_1123_Player142-f153ac423f61-20210726-122106.mp4 6.13_2467_Player202-81dab9b2f777-20211212-223310.mp4\r\n6.13_11240_Player562-e97549e2345a-20211213-015155.mp4 6.13_2468_Player202-81dab9b2f777-20211212-223413.mp4\r\n6.13_11241_Player562-e97549e2345a-20211213-015255.mp4 6.13_2469_Player202-81dab9b2f777-20211212-223518.mp4\r\n6.13_11242_Player562-e97549e2345a-20211213-015355.mp4 6.13_246_Player108-f153ac423f61-20211207-112913.mp4\r\n6.13_11243_Player562-e97549e2345a-20211213-015455.mp4 6.13_2470_Player202-81dab9b2f777-20211212-223622.mp4\r\n6.13_11244_Player562-e97549e2345a-20211213-015555.mp4 6.13_2471_Player202-81dab9b2f777-20211212-223728.mp4\r\n6.13_11245_Player562-e97549e2345a-20211213-015656.mp4 6.13_2472_Player202-81dab9b2f777-20211212-223833.mp4\r\n6.13_11246_Player562-e97549e2345a-20211213-015756.mp4 6.13_2473_Player202-81dab9b2f777-20211212-223934.mp4\r\n6.13_11247_Player562-e97549e2345a-20211213-015856.mp4 6.13_2474_Player202-81dab9b2f777-20211212-224036.mp4\r\n6.13_11248_Player562-e97549e2345a-20211213-015956.mp4 6.13_2475_Player202-81dab9b2f777-20211212-224137.mp4\r\n6.13_11249_Player562-e97549e2345a-20211213-020057.mp4 6.13_2476_Player202-81dab9b2f777-20211212-224238.mp4\r\n6.13_1124_Player142-f153ac423f61-20210922-180034.mp4 6.13_2477_Player202-81dab9b2f777-20211212-224339.mp4\r\n6.13_11250_Player562-e97549e2345a-20211213-020157.mp4 6.13_2478_Player202-81dab9b2f777-20211212-224441.mp4\r\n6.13_11251_Player562-e97549e2345a-20211213-020257.mp4 6.13_2479_Player202-81dab9b2f777-20211212-224546.mp4\r\n6.13_11252_Player562-e97549e2345a-20211213-020357.mp4 6.13_247_Player108-f153ac423f61-20211207-113030.mp4\r\n6.13_11253_Player562-e97549e2345a-20211213-020458.mp4 6.13_2480_Player202-81dab9b2f777-20211212-224655.mp4\r\n6.13_11254_Player562-e97549e2345a-20211213-020558.mp4 6.13_2481_Player202-81dab9b2f777-20211212-224758.mp4\r\n6.13_11255_Player562-e97549e2345a-20211213-020658.mp4 6.13_2482_Player202-81dab9b2f777-20211212-224903.mp4\r\n6.13_11256_Player562-e97549e2345a-20211213-020759.mp4 6.13_2483_Player202-81dab9b2f777-20211212-225004.mp4\r\n6.13_11257_Player562-e97549e2345a-20211213-020859.mp4 6.13_2484_Player202-81dab9b2f777-20211212-225106.mp4\r\n6.13_11258_Player562-e97549e2345a-20211213-020959.mp4 6.13_2485_Player202-81dab9b2f777-20211212-225207.mp4\r\n6.13_11259_Player562-e97549e2345a-20211213-021100.mp4 6.13_2486_Player202-81dab9b2f777-20211212-225308.mp4\r\n6.13_1125_Player142-f153ac423f61-20210922-180154.mp4 6.13_2487_Player202-81dab9b2f777-20211212-225409.mp4\r\n6.13_11260_Player562-e97549e2345a-20211213-021200.mp4 6.13_2488_Player202-81dab9b2f777-20211212-225513.mp4\r\n6.13_11261_Player562-e97549e2345a-20211213-021301.mp4 6.13_2489_Player202-81dab9b2f777-20211212-225614.mp4\r\n6.13_11262_Player562-e97549e2345a-20211213-021401.mp4 6.13_248_Player108-f153ac423f61-20211207-113143.mp4\r\n6.13_11263_Player562-e97549e2345a-20211213-021501.mp4 6.13_2490_Player202-81dab9b2f777-20211212-225715.mp4\r\n6.13_11264_Player562-e97549e2345a-20211213-021601.mp4 6.13_2491_Player202-cd6628af60f2-20210831-222643.mp4\r\n6.13_11265_Player562-e97549e2345a-20211213-021702.mp4 6.13_2492_Player202-cd6628af60f2-20210831-222823.mp4\r\n6.13_11266_Player562-e97549e2345a-20211213-021802.mp4 6.13_2493_Player202-cd6628af60f2-20210831-223006.mp4\r\n6.13_11267_Player562-e97549e2345a-20211213-021902.mp4 6.13_2494_Player202-cd6628af60f2-20210831-223148.mp4\r\n6.13_11268_Player562-e97549e2345a-20211213-022003.mp4 6.13_2495_Player202-cd6628af60f2-20210831-223333.mp4\r\n6.13_11269_Player562-e97549e2345a-20211213-022105.mp4 6.13_2496_Player202-cd6628af60f2-20210831-223511.mp4\r\n6.13_1126_Player142-f153ac423f61-20210922-180301.mp4 6.13_2497_Player202-cd6628af60f2-20210831-223652.mp4\r\n6.13_11270_Player562-e97549e2345a-20211213-022209.mp4 6.13_2498_Player202-cd6628af60f2-20210831-223834.mp4\r\n6.13_11271_Player562-e97549e2345a-20211213-022310.mp4 6.13_2499_Player202-cd6628af60f2-20210831-224027.mp4\r\n6.13_11272_Player562-e97549e2345a-20211213-022411.mp4 6.13_249_Player108-f153ac423f61-20211207-113245.mp4\r\n6.13_11273_Player562-e97549e2345a-20211213-022511.mp4 6.13_2500_Player202-cd6628af60f2-20210831-224224.mp4\r\n6.13_11274_Player562-e97549e2345a-20211213-022611.mp4 6.13_2501_Player202-cd6628af60f2-20210831-224410.mp4\r\n6.13_11275_Player562-e97549e2345a-20211213-022712.mp4 6.13_2502_Player202-cd6628af60f2-20210831-224548.mp4\r\n6.13_11276_Player562-e97549e2345a-20211213-022812.mp4 6.13_2503_Player202-cd6628af60f2-20210831-224737.mp4\r\n6.13_11277_Player562-e97549e2345a-20211213-022913.mp4 6.13_2504_Player202-cd6628af60f2-20210831-224927.mp4\r\n6.13_11278_Player562-e97549e2345a-20211213-023013.mp4 6.13_2505_Player202-cd6628af60f2-20210831-225118.mp4\r\n6.13_11279_Player562-e97549e2345a-20211213-023114.mp4 6.13_2506_Player202-cd6628af60f2-20210831-225312.mp4\r\n6.13_1127_Player142-f153ac423f61-20210922-180406.mp4 6.13_2507_Player202-cd6628af60f2-20210831-225528.mp4\r\n6.13_11280_Player562-e97549e2345a-20211213-023214.mp4 6.13_2508_Player202-cd6628af60f2-20210831-225843.mp4\r\n6.13_11281_Player562-e97549e2345a-20211213-023315.mp4 6.13_2509_Player202-cd6628af60f2-20210831-230028.mp4\r\n6.13_11282_Player562-e97549e2345a-20211213-023416.mp4 6.13_250_Player108-f153ac423f61-20211207-113348.mp4\r\n6.13_11283_Player562-e97549e2345a-20211213-023516.mp4 6.13_2510_Player202-cd6628af60f2-20210831-230215.mp4\r\n6.13_11284_Player562-e97549e2345a-20211213-023845.mp4 6.13_2511_Player202-cd6628af60f2-20210831-230407.mp4\r\n6.13_11285_Player562-e97549e2345a-20211213-023947.mp4 6.13_2512_Player202-cd6628af60f2-20210831-230559.mp4\r\n6.13_11286_Player562-e97549e2345a-20211213-024047.mp4 6.13_2513_Player202-cd6628af60f2-20210831-230958.mp4\r\n6.13_11287_Player562-e97549e2345a-20211213-024148.mp4 6.13_2514_Player202-cd6628af60f2-20210831-231154.mp4\r\n6.13_11288_Player562-e97549e2345a-20211213-024248.mp4 6.13_2515_Player202-cd6628af60f2-20210831-231343.mp4\r\n6.13_11289_Player562-e97549e2345a-20211213-024348.mp4 6.13_2516_Player202-cd6628af60f2-20210831-231509.mp4\r\n6.13_1128_Player142-f153ac423f61-20210922-180511.mp4 6.13_2517_Player202-cd6628af60f2-20210831-231700.mp4\r\n6.13_11290_Player562-e97549e2345a-20211213-024449.mp4 6.13_2518_Player202-cd6628af60f2-20210831-231843.mp4\r\n6.13_11291_Player562-e97549e2345a-20211213-024550.mp4 6.13_2519_Player202-cd6628af60f2-20210831-232025.mp4\r\n6.13_11292_Player562-e97549e2345a-20211213-024651.mp4 6.13_251_Player108-f153ac423f61-20211207-113450.mp4\r\n6.13_11293_Player562-e97549e2345a-20211213-024753.mp4 6.13_2520_Player202-cd6628af60f2-20210831-232214.mp4\r\n6.13_11294_Player562-e97549e2345a-20211213-024854.mp4 6.13_2521_Player202-cd6628af60f2-20210831-232403.mp4\r\n6.13_11295_Player562-e97549e2345a-20211213-024954.mp4 6.13_2522_Player202-cd6628af60f2-20210831-232537.mp4\r\n6.13_11296_Player562-e97549e2345a-20211213-025055.mp4 6.13_2523_Player202-cd6628af60f2-20210831-232726.mp4\r\n6.13_11297_Player562-e97549e2345a-20211213-025156.mp4 6.13_2524_Player202-f153ac423f61-20210727-202107.mp4\r\n6.13_11298_Player562-e97549e2345a-20211213-025256.mp4 6.13_2525_Player202-f153ac423f61-20210727-202505.mp4\r\n6.13_11299_Player562-e97549e2345a-20211213-025357.mp4 6.13_2526_Player202-f153ac423f61-20210727-203107.mp4\r\n6.13_1129_Player142-f153ac423f61-20210922-180620.mp4 6.13_2527_Player202-f153ac423f61-20210727-205629.mp4\r\n6.13_112_Player100-63eefbd0685a-20211220-202928.mp4 6.13_2528_Player202-f153ac423f61-20210727-221337.mp4\r\n6.13_11300_Player562-e97549e2345a-20211213-025457.mp4 6.13_2529_Player202-f153ac423f61-20210727-224147.mp4\r\n6.13_11301_Player562-e97549e2345a-20211213-025558.mp4 6.13_252_Player108-f153ac423f61-20211207-113553.mp4\r\n6.13_11302_Player562-e97549e2345a-20211213-025658.mp4 6.13_2530_Player202-f153ac423f61-20210727-231706.mp4\r\n6.13_11303_Player562-e97549e2345a-20211213-025800.mp4 6.13_2531_Player202-f153ac423f61-20210728-002711.mp4\r\n6.13_11304_Player562-e97549e2345a-20211213-025902.mp4 6.13_2532_Player202-f153ac423f61-20210831-220506.mp4\r\n6.13_11305_Player562-e97549e2345a-20211213-030003.mp4 6.13_2533_Player202-f153ac423f61-20210831-220613.mp4\r\n6.13_11306_Player562-e97549e2345a-20211213-030104.mp4 6.13_2534_Player202-f153ac423f61-20210831-220716.mp4\r\n6.13_11307_Player562-e97549e2345a-20211213-030204.mp4 6.13_2535_Player202-f153ac423f61-20210831-220820.mp4\r\n6.13_11308_Player562-e97549e2345a-20211213-030304.mp4 6.13_2536_Player202-f153ac423f61-20210831-220923.mp4\r\n6.13_11309_Player562-e97549e2345a-20211213-030405.mp4 6.13_2537_Player202-f153ac423f61-20210831-221028.mp4\r\n6.13_1130_Player142-f153ac423f61-20210922-180734.mp4 6.13_2538_Player202-f153ac423f61-20210831-221129.mp4\r\n6.13_11310_Player562-e97549e2345a-20211213-030505.mp4 6.13_2539_Player202-f153ac423f61-20210831-221230.mp4\r\n6.13_11311_Player562-e97549e2345a-20211213-030606.mp4 6.13_253_Player108-f153ac423f61-20211207-113659.mp4\r\n6.13_11312_Player562-e97549e2345a-20211213-030706.mp4 6.13_2540_Player202-f153ac423f61-20210831-221334.mp4\r\n6.13_11313_Player562-e97549e2345a-20211213-030806.mp4 6.13_2541_Player202-f153ac423f61-20210831-221439.mp4\r\n6.13_11314_Player562-e97549e2345a-20211213-030907.mp4 6.13_2542_Player202-f153ac423f61-20210831-221543.mp4\r\n6.13_11315_Player562-e97549e2345a-20211213-031007.mp4 6.13_2543_Player202-f153ac423f61-20210831-221649.mp4\r\n6.13_11316_Player562-e97549e2345a-20211213-031107.mp4 6.13_2544_Player202-f153ac423f61-20210831-221756.mp4\r\n6.13_11317_Player562-e97549e2345a-20211213-031208.mp4 6.13_2545_Player202-f153ac423f61-20210831-221903.mp4\r\n6.13_11318_Player562-e97549e2345a-20211213-031308.mp4 6.13_2546_Player202-f153ac423f61-20210831-222008.mp4\r\n6.13_11319_Player562-e97549e2345a-20211213-031409.mp4 6.13_2547_Player202-f153ac423f61-20210831-222115.mp4\r\n6.13_1131_Player142-f153ac423f61-20210922-180852.mp4 6.13_2548_Player202-f153ac423f61-20210831-222218.mp4\r\n6.13_11320_Player562-e97549e2345a-20211213-031509.mp4 6.13_2549_Player202-f153ac423f61-20210831-222326.mp4\r\n6.13_11321_Player562-e97549e2345a-20211213-031610.mp4 6.13_254_Player108-f153ac423f61-20211207-113803.mp4\r\n6.13_11322_Player562-e97549e2345a-20211213-031710.mp4 6.13_2550_Player202-f153ac423f61-20210831-222440.mp4\r\n6.13_11323_Player562-e97549e2345a-20211213-031810.mp4 6.13_2551_Player202-f153ac423f61-20210831-222545.mp4\r\n6.13_11324_Player562-e97549e2345a-20211213-031911.mp4 6.13_2552_Player202-f153ac423f61-20211212-212815.mp4\r\n6.13_11325_Player562-e97549e2345a-20211213-032011.mp4 6.13_2553_Player205-cedc84bab10e-20211209-085542.mp4\r\n6.13_11326_Player562-e97549e2345a-20211213-032112.mp4 6.13_2554_Player205-cedc84bab10e-20211209-091948.mp4\r\n6.13_11327_Player562-e97549e2345a-20211213-032212.mp4 6.13_2555_Player205-cedc84bab10e-20211209-094216.mp4\r\n6.13_11328_Player562-e97549e2345a-20211213-032313.mp4 6.13_2556_Player205-cedc84bab10e-20211209-100532.mp4\r\n6.13_11329_Player562-e97549e2345a-20211213-032414.mp4 6.13_2557_Player205-cedc84bab10e-20211209-102940.mp4\r\n6.13_1132_Player142-f153ac423f61-20210922-181010.mp4 6.13_2558_Player205-cedc84bab10e-20211209-105255.mp4\r\n6.13_11330_Player562-e97549e2345a-20211213-032516.mp4 6.13_2559_Player205-cedc84bab10e-20211209-111623.mp4\r\n6.13_11331_Player562-e97549e2345a-20211213-032618.mp4 6.13_255_Player108-f153ac423f61-20211207-113913.mp4\r\n6.13_11332_Player562-e97549e2345a-20211213-032718.mp4 6.13_2560_Player205-f153ac423f61-20211209-072952.mp4\r\n6.13_11333_Player562-e97549e2345a-20211213-032818.mp4 6.13_2561_Player205-f3fe3f713f94-20211209-080914.mp4\r\n6.13_11334_Player562-e97549e2345a-20211213-032918.mp4 6.13_2562_Player205-f3fe3f713f94-20211209-083139.mp4\r\n6.13_11335_Player562-e97549e2345a-20211213-033019.mp4 6.13_2563_Player206-70f54f2c2735-20211109-080059.mp4\r\n6.13_11336_Player562-e97549e2345a-20211213-033119.mp4 6.13_2564_Player206-70f54f2c2735-20211109-080202.mp4\r\n6.13_11337_Player562-e97549e2345a-20211213-033220.mp4 6.13_2565_Player206-70f54f2c2735-20211109-080303.mp4\r\n6.13_11338_Player562-e97549e2345a-20211213-033320.mp4 6.13_2566_Player206-70f54f2c2735-20211109-080405.mp4\r\n6.13_11339_Player562-e97549e2345a-20211213-033420.mp4 6.13_2567_Player206-70f54f2c2735-20211109-080506.mp4\r\n6.13_1133_Player142-f153ac423f61-20210922-181129.mp4 6.13_2568_Player206-70f54f2c2735-20211109-080608.mp4\r\n6.13_11340_Player562-e97549e2345a-20211213-033521.mp4 6.13_2569_Player206-70f54f2c2735-20211109-080709.mp4\r\n6.13_11341_Player562-e97549e2345a-20211213-033621.mp4 6.13_256_Player108-f153ac423f61-20211207-114017.mp4\r\n6.13_11342_Player562-e97549e2345a-20211213-033721.mp4 6.13_2570_Player206-70f54f2c2735-20211109-080810.mp4\r\n6.13_11343_Player562-e97549e2345a-20211213-033822.mp4 6.13_2571_Player206-70f54f2c2735-20211109-080912.mp4\r\n6.13_11344_Player562-e97549e2345a-20211213-033922.mp4 6.13_2572_Player206-70f54f2c2735-20211109-081013.mp4\r\n6.13_11345_Player562-e97549e2345a-20211213-034022.mp4 6.13_2573_Player206-70f54f2c2735-20211109-081114.mp4\r\n6.13_11346_Player562-e97549e2345a-20211213-034123.mp4 6.13_2574_Player206-70f54f2c2735-20211109-081215.mp4\r\n6.13_11347_Player562-e97549e2345a-20211213-034223.mp4 6.13_2575_Player206-70f54f2c2735-20211109-081316.mp4\r\n6.13_11348_Player562-e97549e2345a-20211213-034324.mp4 6.13_2576_Player206-70f54f2c2735-20211109-081417.mp4\r\n6.13_11349_Player562-e97549e2345a-20211213-034424.mp4 6.13_2577_Player206-70f54f2c2735-20211109-081518.mp4\r\n6.13_1134_Player142-f153ac423f61-20210922-181250.mp4 6.13_2578_Player206-70f54f2c2735-20211109-081619.mp4\r\n6.13_11350_Player562-e97549e2345a-20211213-034524.mp4 6.13_2579_Player206-70f54f2c2735-20211109-081721.mp4\r\n6.13_11351_Player562-e97549e2345a-20211213-034626.mp4 6.13_257_Player108-f153ac423f61-20211207-114120.mp4\r\n6.13_11352_Player562-e97549e2345a-20211213-034727.mp4 6.13_2580_Player206-70f54f2c2735-20211109-081824.mp4\r\n6.13_11353_Player562-e97549e2345a-20211213-034827.mp4 6.13_2581_Player206-70f54f2c2735-20211109-081926.mp4\r\n6.13_11354_Player562-e97549e2345a-20211213-034928.mp4 6.13_2582_Player206-70f54f2c2735-20211109-082133.mp4\r\n6.13_11355_Player562-e97549e2345a-20211213-035028.mp4 6.13_2583_Player206-70f54f2c2735-20211109-082338.mp4\r\n6.13_11356_Player562-e97549e2345a-20211213-035128.mp4 6.13_2584_Player206-70f54f2c2735-20211109-082544.mp4\r\n6.13_11357_Player562-e97549e2345a-20211213-035229.mp4 6.13_2585_Player206-70f54f2c2735-20211109-082751.mp4\r\n6.13_11358_Player562-e97549e2345a-20211213-035329.mp4 6.13_2586_Player206-70f54f2c2735-20211109-083102.mp4\r\n6.13_11359_Player562-e97549e2345a-20211213-035430.mp4 6.13_2587_Player206-70f54f2c2735-20211109-083411.mp4\r\n6.13_1135_Player142-f153ac423f61-20210922-181408.mp4 6.13_2588_Player206-70f54f2c2735-20211109-083824.mp4\r\n6.13_11360_Player562-e97549e2345a-20211213-035530.mp4 6.13_2589_Player206-70f54f2c2735-20211109-084233.mp4\r\n6.13_11361_Player562-e97549e2345a-20211213-035630.mp4 6.13_258_Player108-f153ac423f61-20211207-114223.mp4\r\n6.13_11362_Player562-e97549e2345a-20211213-035731.mp4 6.13_2590_Player206-70f54f2c2735-20211109-084648.mp4\r\n6.13_11363_Player562-e97549e2345a-20211213-035832.mp4 6.13_2591_Player206-70f54f2c2735-20211109-085103.mp4\r\n6.13_11364_Player562-e97549e2345a-20211213-035932.mp4 6.13_2592_Player206-70f54f2c2735-20211109-085627.mp4\r\n6.13_11365_Player562-e97549e2345a-20211213-040033.mp4 6.13_2593_Player206-70f54f2c2735-20211109-090139.mp4\r\n6.13_11366_Player562-e97549e2345a-20211213-040133.mp4 6.13_2594_Player206-70f54f2c2735-20211109-090651.mp4\r\n6.13_11367_Player562-e97549e2345a-20211213-040234.mp4 6.13_2595_Player206-70f54f2c2735-20211109-091207.mp4\r\n6.13_11368_Player562-f153ac423f61-20211213-010929.mp4 6.13_2596_Player206-70f54f2c2735-20211109-091829.mp4\r\n6.13_11369_Player562-f153ac423f61-20211213-011031.mp4 6.13_2597_Player206-70f54f2c2735-20211109-092441.mp4\r\n6.13_1136_Player142-f153ac423f61-20210922-181526.mp4 6.13_2598_Player206-70f54f2c2735-20211109-093057.mp4\r\n6.13_11370_Player562-f153ac423f61-20211213-011132.mp4 6.13_2599_Player206-70f54f2c2735-20211109-093706.mp4\r\n6.13_11371_Player564-f153ac423f61-20211112-115654.mp4 6.13_259_Player108-f153ac423f61-20211207-114331.mp4\r\n6.13_11372_Player564-f153ac423f61-20211112-120002.mp4 6.13_2600_Player206-70f54f2c2735-20211109-094325.mp4\r\n6.13_11373_Player564-f153ac423f61-20211112-120306.mp4 6.13_2601_Player206-70f54f2c2735-20211109-094956.mp4\r\n6.13_11374_Player564-f153ac423f61-20211112-120608.mp4 6.13_2602_Player206-a917d1203bed-20211128-224047.mp4\r\n6.13_11375_Player564-f153ac423f61-20211112-120909.mp4 6.13_2603_Player206-a917d1203bed-20211128-224155.mp4\r\n6.13_11376_Player564-f153ac423f61-20211112-121210.mp4 6.13_2604_Player206-a917d1203bed-20211128-224258.mp4\r\n6.13_11377_Player564-f153ac423f61-20211112-121511.mp4 6.13_2605_Player206-a917d1203bed-20211128-224403.mp4\r\n6.13_11378_Player564-f153ac423f61-20211112-121812.mp4 6.13_2606_Player206-a917d1203bed-20211128-224512.mp4\r\n6.13_11379_Player564-f153ac423f61-20211112-122112.mp4 6.13_2607_Player206-a917d1203bed-20211128-224614.mp4\r\n6.13_1137_Player142-f153ac423f61-20210922-181642.mp4 6.13_2608_Player206-a917d1203bed-20211128-224720.mp4\r\n6.13_11380_Player564-f153ac423f61-20211112-122413.mp4 6.13_2609_Player206-a917d1203bed-20211128-224824.mp4\r\n6.13_11381_Player564-f153ac423f61-20211112-122714.mp4 6.13_260_Player108-f153ac423f61-20211207-114438.mp4\r\n6.13_11382_Player564-f153ac423f61-20211112-123014.mp4 6.13_2610_Player206-a917d1203bed-20211128-224927.mp4\r\n6.13_11383_Player564-f153ac423f61-20211112-123315.mp4 6.13_2611_Player206-a917d1203bed-20211128-225033.mp4\r\n6.13_11384_Player564-f153ac423f61-20211112-123616.mp4 6.13_2612_Player206-a917d1203bed-20211128-225147.mp4\r\n6.13_11385_Player564-f153ac423f61-20211112-123917.mp4 6.13_2613_Player206-a917d1203bed-20211128-225259.mp4\r\n6.13_11386_Player564-f153ac423f61-20211112-124219.mp4 6.13_2614_Player206-a917d1203bed-20211128-225511.mp4\r\n6.13_11387_Player564-f153ac423f61-20211112-124623.mp4 6.13_2615_Player206-a917d1203bed-20211128-225738.mp4\r\n6.13_11388_Player564-f153ac423f61-20211112-124924.mp4 6.13_2616_Player206-a917d1203bed-20211128-230010.mp4\r\n6.13_11389_Player564-f153ac423f61-20211112-125225.mp4 6.13_2617_Player206-a917d1203bed-20211128-230124.mp4\r\n6.13_1138_Player142-f153ac423f61-20210922-181757.mp4 6.13_2618_Player206-a917d1203bed-20211128-230233.mp4\r\n6.13_11390_Player564-f153ac423f61-20211112-125527.mp4 6.13_2619_Player206-a917d1203bed-20211128-230455.mp4\r\n6.13_11391_Player564-f153ac423f61-20211112-125828.mp4 6.13_261_Player108-f153ac423f61-20211207-114540.mp4\r\n6.13_11392_Player564-f153ac423f61-20211112-130130.mp4 6.13_2620_Player206-a917d1203bed-20211128-230824.mp4\r\n6.13_11393_Player564-f153ac423f61-20211112-130430.mp4 6.13_2621_Player206-f153ac423f61-20211107-165129.mp4\r\n6.13_11394_Player564-f153ac423f61-20211112-130731.mp4 6.13_2622_Player206-f153ac423f61-20211109-075943.mp4\r\n6.13_11395_Player564-f153ac423f61-20211112-131032.mp4 6.13_2623_Player206-f153ac423f61-20211207-163246.mp4\r\n6.13_11396_Player564-f153ac423f61-20211112-131332.mp4 6.13_2624_Player206-f153ac423f61-20211207-163556.mp4\r\n6.13_11397_Player564-f153ac423f61-20211112-131633.mp4 6.13_2625_Player206-f153ac423f61-20211207-164111.mp4\r\n6.13_11398_Player564-f153ac423f61-20211112-131934.mp4 6.13_2626_Player206-f153ac423f61-20211207-164607.mp4\r\n6.13_11399_Player564-f153ac423f61-20211112-132235.mp4 6.13_2627_Player206-f153ac423f61-20211207-171718.mp4\r\n6.13_1139_Player142-f153ac423f61-20210922-181906.mp4 6.13_2628_Player206-f153ac423f61-20211207-174442.mp4\r\n6.13_113_Player100-63eefbd0685a-20211220-203128.mp4 6.13_2629_Player206-f153ac423f61-20211207-175154.mp4\r\n6.13_11400_Player564-f153ac423f61-20211112-132535.mp4 6.13_262_Player108-f153ac423f61-20211207-114643.mp4\r\n6.13_11401_Player564-f153ac423f61-20211112-132836.mp4 6.13_2630_Player209-1a0379f289b1-20211210-124928.mp4\r\n6.13_11402_Player564-f153ac423f61-20211112-133236.mp4 6.13_2631_Player209-1a0379f289b1-20211210-125058.mp4\r\n6.13_11403_Player564-f153ac423f61-20211112-133538.mp4 6.13_2632_Player209-60b55a8a1fb2-20211210-125316.mp4\r\n6.13_11404_Player564-f153ac423f61-20211112-133839.mp4 6.13_2633_Player209-60b55a8a1fb2-20211210-125444.mp4\r\n6.13_11405_Player564-f153ac423f61-20211112-134140.mp4 6.13_2634_Player209-60b55a8a1fb2-20211210-125601.mp4\r\n6.13_11406_Player564-f153ac423f61-20211112-134440.mp4 6.13_2635_Player209-60b55a8a1fb2-20211210-125704.mp4\r\n6.13_11407_Player564-f153ac423f61-20211112-134741.mp4 6.13_2636_Player209-60b55a8a1fb2-20211210-125806.mp4\r\n6.13_11408_Player564-f153ac423f61-20211112-135041.mp4 6.13_2637_Player209-60b55a8a1fb2-20211210-125914.mp4\r\n6.13_11409_Player564-f153ac423f61-20211112-135342.mp4 6.13_2638_Player209-60b55a8a1fb2-20211210-130015.mp4\r\n6.13_1140_Player142-f153ac423f61-20210922-182011.mp4 6.13_2639_Player209-60b55a8a1fb2-20211210-130117.mp4\r\n6.13_11410_Player564-f153ac423f61-20211112-135644.mp4 6.13_263_Player108-f153ac423f61-20211207-114745.mp4\r\n6.13_11411_Player564-f153ac423f61-20211112-135945.mp4 6.13_2640_Player209-60b55a8a1fb2-20211210-130227.mp4\r\n6.13_11412_Player564-f153ac423f61-20211112-140251.mp4 6.13_2641_Player209-60b55a8a1fb2-20211210-130334.mp4\r\n6.13_11413_Player564-f153ac423f61-20211112-140552.mp4 6.13_2642_Player209-60b55a8a1fb2-20211210-130444.mp4\r\n6.13_11414_Player564-f153ac423f61-20211112-140854.mp4 6.13_2643_Player209-60b55a8a1fb2-20211210-130549.mp4\r\n6.13_11415_Player564-f153ac423f61-20211112-141156.mp4 6.13_2644_Player209-60b55a8a1fb2-20211210-130653.mp4\r\n6.13_11416_Player564-f153ac423f61-20211112-141458.mp4 6.13_2645_Player209-60b55a8a1fb2-20211210-130756.mp4\r\n6.13_11417_Player564-f153ac423f61-20211112-141758.mp4 6.13_2646_Player209-60b55a8a1fb2-20211210-130900.mp4\r\n6.13_11418_Player564-f153ac423f61-20211112-142059.mp4 6.13_2647_Player209-60b55a8a1fb2-20211210-131005.mp4\r\n6.13_11419_Player564-f153ac423f61-20211112-142400.mp4 6.13_2648_Player209-60b55a8a1fb2-20211210-131110.mp4\r\n6.13_1141_Player142-f153ac423f61-20210922-182118.mp4 6.13_2649_Player209-60b55a8a1fb2-20211210-131216.mp4\r\n6.13_11420_Player564-f153ac423f61-20211112-142703.mp4 6.13_264_Player108-f153ac423f61-20211207-114849.mp4\r\n6.13_11421_Player564-f153ac423f61-20211112-143003.mp4 6.13_2650_Player209-60b55a8a1fb2-20211210-131334.mp4\r\n6.13_11422_Player564-f153ac423f61-20211112-143304.mp4 6.13_2651_Player209-60b55a8a1fb2-20211210-131455.mp4\r\n6.13_11423_Player564-f153ac423f61-20211112-143605.mp4 6.13_2652_Player209-60b55a8a1fb2-20211210-131613.mp4\r\n6.13_11424_Player564-f153ac423f61-20211112-143912.mp4 6.13_2653_Player209-60b55a8a1fb2-20211210-131729.mp4\r\n6.13_11425_Player564-f153ac423f61-20211112-144213.mp4 6.13_2654_Player209-60b55a8a1fb2-20211210-131833.mp4\r\n6.13_11426_Player564-f153ac423f61-20211112-144518.mp4 6.13_2655_Player209-60b55a8a1fb2-20211210-131936.mp4\r\n6.13_11427_Player564-f153ac423f61-20211112-144819.mp4 6.13_2656_Player209-60b55a8a1fb2-20211210-132039.mp4\r\n6.13_11428_Player564-f153ac423f61-20211112-145120.mp4 6.13_2657_Player209-60b55a8a1fb2-20211210-132140.mp4\r\n6.13_11429_Player564-f153ac423f61-20211112-145421.mp4 6.13_2658_Player209-60b55a8a1fb2-20211210-132242.mp4\r\n6.13_1142_Player142-f153ac423f61-20210922-182233.mp4 6.13_2659_Player209-60b55a8a1fb2-20211210-132343.mp4\r\n6.13_11430_Player564-f153ac423f61-20211112-145721.mp4 6.13_265_Player108-f153ac423f61-20211207-114952.mp4\r\n6.13_11431_Player564-f153ac423f61-20211112-150021.mp4 6.13_2660_Player209-60b55a8a1fb2-20211210-132444.mp4\r\n6.13_11432_Player564-f153ac423f61-20211112-150322.mp4 6.13_2661_Player209-60b55a8a1fb2-20211210-132547.mp4\r\n6.13_11433_Player564-f153ac423f61-20211112-150622.mp4 6.13_2662_Player209-60b55a8a1fb2-20211210-132652.mp4\r\n6.13_11434_Player564-f153ac423f61-20211112-150924.mp4 6.13_2663_Player209-959ad78de5c1-20211210-125241.mp4\r\n6.13_11435_Player564-f153ac423f61-20211112-151224.mp4 6.13_2664_Player209-f153ac423f61-20211210-124109.mp4\r\n6.13_11436_Player564-f153ac423f61-20211112-151630.mp4 6.13_2665_Player209-f153ac423f61-20211210-124257.mp4\r\n6.13_11437_Player564-f153ac423f61-20211112-151939.mp4 6.13_2666_Player209-f153ac423f61-20211210-124435.mp4\r\n6.13_11438_Player564-f153ac423f61-20211112-152242.mp4 6.13_2667_Player209-f153ac423f61-20211210-124609.mp4\r\n6.13_11439_Player564-f153ac423f61-20211112-152543.mp4 6.13_2668_Player209-f153ac423f61-20211210-124754.mp4\r\n6.13_1143_Player142-f153ac423f61-20210922-182350.mp4 6.13_2669_Player212-69cfad227283-20211109-191402.mp4\r\n6.13_11440_Player564-f153ac423f61-20211112-152845.mp4 6.13_266_Player108-f153ac423f61-20211207-115055.mp4\r\n6.13_11441_Player564-f153ac423f61-20211112-153146.mp4 6.13_2670_Player212-69cfad227283-20211109-191528.mp4\r\n6.13_11442_Player564-f153ac423f61-20211112-153447.mp4 6.13_2671_Player212-69cfad227283-20211109-191633.mp4\r\n6.13_11443_Player564-f153ac423f61-20211112-153747.mp4 6.13_2672_Player212-69cfad227283-20211109-191738.mp4\r\n6.13_11444_Player564-f153ac423f61-20211112-154047.mp4 6.13_2673_Player212-69cfad227283-20211109-191846.mp4\r\n6.13_11445_Player564-f153ac423f61-20211112-154348.mp4 6.13_2674_Player212-69cfad227283-20211109-191952.mp4\r\n6.13_11446_Player564-f153ac423f61-20211112-154650.mp4 6.13_2675_Player212-69cfad227283-20211109-192105.mp4\r\n6.13_11447_Player564-f153ac423f61-20211112-155055.mp4 6.13_2676_Player212-69cfad227283-20211109-192222.mp4\r\n6.13_11448_Player564-f153ac423f61-20211112-155355.mp4 6.13_2677_Player212-69cfad227283-20211109-192333.mp4\r\n6.13_11449_Player564-f153ac423f61-20211112-155855.mp4 6.13_26",,terminal_output +642,6809254,"TERMINAL",0,0,"78_Player212-69cfad227283-20211109-192435.mp4\r\n6.13_1144_Player142-f153ac423f61-20210922-182502.mp4 6.13_2679_Player212-f153ac423f61-20211015-085936.mp4\r\n6.13_11450_Player564-f153ac423f61-20211112-160156.mp4 6.13_267_Player108-f153ac423f61-20211207-115159.mp4\r\n6.13_11451_Player565-f153ac423f61-20210912-173048.mp4 6.13_2680_Player212-f153ac423f61-20211015-090657.mp4\r\n6.13_11452_Player565-f153ac423f61-20210912-173244.mp4 6.13_2681_Player212-f153ac423f61-20211015-091408.mp4\r\n6.13_11453_Player565-f153ac423f61-20210912-173437.mp4 6.13_2682_Player212-f153ac423f61-20211015-092110.mp4\r\n6.13_11454_Player565-f153ac423f61-20210912-173621.mp4 6.13_2683_Player212-f153ac423f61-20211015-092813.mp4\r\n6.13_11455_Player565-f153ac423f61-20210912-173820.mp4 6.13_2684_Player212-f153ac423f61-20211015-093516.mp4\r\n6.13_11456_Player565-f153ac423f61-20210912-174009.mp4 6.13_2685_Player212-f153ac423f61-20211015-094326.mp4\r\n6.13_11457_Player565-f153ac423f61-20210912-174212.mp4 6.13_2686_Player212-f153ac423f61-20211109-183436.mp4\r\n6.13_11458_Player565-f153ac423f61-20210912-174349.mp4 6.13_2687_Player212-f153ac423f61-20211109-183622.mp4\r\n6.13_11459_Player565-f153ac423f61-20210912-174531.mp4 6.13_2688_Player212-f153ac423f61-20211109-183756.mp4\r\n6.13_1145_Player142-f153ac423f61-20210922-182618.mp4 6.13_2689_Player212-f153ac423f61-20211109-183938.mp4\r\n6.13_11460_Player565-f153ac423f61-20210912-174724.mp4 6.13_268_Player108-f153ac423f61-20211207-115302.mp4\r\n6.13_11461_Player565-f153ac423f61-20210912-174914.mp4 6.13_2690_Player212-f153ac423f61-20211109-184110.mp4\r\n6.13_11462_Player565-f153ac423f61-20210912-175052.mp4 6.13_2691_Player212-f153ac423f61-20211109-184253.mp4\r\n6.13_11463_Player565-f153ac423f61-20210912-175249.mp4 6.13_2692_Player212-f153ac423f61-20211109-184435.mp4\r\n6.13_11464_Player565-f153ac423f61-20210912-175446.mp4 6.13_2693_Player212-f153ac423f61-20211109-184620.mp4\r\n6.13_11465_Player565-f153ac423f61-20210912-175657.mp4 6.13_2694_Player212-f153ac423f61-20211109-184731.mp4\r\n6.13_11466_Player565-f153ac423f61-20210912-175912.mp4 6.13_2695_Player212-f153ac423f61-20211109-184836.mp4\r\n6.13_11467_Player565-f153ac423f61-20210912-180124.mp4 6.13_2696_Player212-f153ac423f61-20211109-184944.mp4\r\n6.13_11468_Player565-f153ac423f61-20210912-180328.mp4 6.13_2697_Player212-f153ac423f61-20211109-185049.mp4\r\n6.13_11469_Player565-f153ac423f61-20210912-180528.mp4 6.13_2698_Player212-f153ac423f61-20211109-185154.mp4\r\n6.13_1146_Player142-f153ac423f61-20210922-182730.mp4 6.13_2699_Player212-f153ac423f61-20211109-185259.mp4\r\n6.13_11470_Player565-f153ac423f61-20210912-180709.mp4 6.13_269_Player108-f153ac423f61-20211207-115404.mp4\r\n6.13_11471_Player565-f153ac423f61-20210912-180856.mp4 6.13_2700_Player212-f153ac423f61-20211109-185410.mp4\r\n6.13_11472_Player565-f153ac423f61-20210912-181316.mp4 6.13_2701_Player212-f153ac423f61-20211109-185516.mp4\r\n6.13_11473_Player565-f153ac423f61-20210912-181502.mp4 6.13_2702_Player212-f153ac423f61-20211109-185626.mp4\r\n6.13_11474_Player565-f153ac423f61-20210912-181646.mp4 6.13_2703_Player212-f153ac423f61-20211109-185729.mp4\r\n6.13_11475_Player565-f153ac423f61-20210912-181830.mp4 6.13_2704_Player212-f153ac423f61-20211109-185833.mp4\r\n6.13_11476_Player565-f153ac423f61-20210912-181958.mp4 6.13_2705_Player212-f153ac423f61-20211109-185939.mp4\r\n6.13_11477_Player565-f153ac423f61-20210912-182128.mp4 6.13_2706_Player212-f153ac423f61-20211109-190046.mp4\r\n6.13_11478_Player565-f153ac423f61-20210912-182306.mp4 6.13_2707_Player212-f153ac423f61-20211109-190153.mp4\r\n6.13_11479_Player565-f153ac423f61-20210912-182447.mp4 6.13_2708_Player212-f153ac423f61-20211109-190258.mp4\r\n6.13_1147_Player142-f153ac423f61-20210922-182845.mp4 6.13_2709_Player212-f153ac423f61-20211109-190402.mp4\r\n6.13_11480_Player565-f153ac423f61-20210912-182621.mp4 6.13_270_Player108-f153ac423f61-20211207-115507.mp4\r\n6.13_11481_Player565-f153ac423f61-20210912-182752.mp4 6.13_2710_Player212-f153ac423f61-20211109-190532.mp4\r\n6.13_11482_Player565-f153ac423f61-20210912-182923.mp4 6.13_2711_Player212-f153ac423f61-20211109-190719.mp4\r\n6.13_11483_Player565-f153ac423f61-20210912-183055.mp4 6.13_2712_Player212-f153ac423f61-20211109-190900.mp4\r\n6.13_11484_Player565-f153ac423f61-20210912-183421.mp4 6.13_2713_Player212-f153ac423f61-20211109-191052.mp4\r\n6.13_11485_Player565-f153ac423f61-20210912-183556.mp4 6.13_2714_Player212-f153ac423f61-20211109-191219.mp4\r\n6.13_11486_Player565-f153ac423f61-20210912-183740.mp4 6.13_2715_Player212-f153ac423f61-20211109-191321.mp4\r\n6.13_11487_Player565-f153ac423f61-20210912-183930.mp4 6.13_2716_Player214-f153ac423f61-20210829-000407.mp4\r\n6.13_11488_Player565-f153ac423f61-20210912-184120.mp4 6.13_2717_Player214-f153ac423f61-20210829-000808.mp4\r\n6.13_11489_Player565-f153ac423f61-20210912-184309.mp4 6.13_2718_Player214-f153ac423f61-20210829-001206.mp4\r\n6.13_1148_Player142-f153ac423f61-20210922-183002.mp4 6.13_2719_Player214-f153ac423f61-20210829-001805.mp4\r\n6.13_11490_Player565-f153ac423f61-20210912-184444.mp4 6.13_271_Player108-f153ac423f61-20211207-115610.mp4\r\n6.13_11491_Player565-f153ac423f61-20210912-184624.mp4 6.13_2720_Player214-f153ac423f61-20210829-002801.mp4\r\n6.13_11492_Player565-f153ac423f61-20210912-184751.mp4 6.13_2721_Player217-f153ac423f61-20210829-165640.mp4\r\n6.13_11493_Player565-f153ac423f61-20210912-184913.mp4 6.13_2722_Player217-f153ac423f61-20210829-165811.mp4\r\n6.13_11494_Player565-f153ac423f61-20210912-185046.mp4 6.13_2723_Player217-f153ac423f61-20210829-165935.mp4\r\n6.13_11495_Player565-f153ac423f61-20210912-185230.mp4 6.13_2724_Player217-f153ac423f61-20210829-170103.mp4\r\n6.13_11496_Player565-f153ac423f61-20210912-185416.mp4 6.13_2725_Player217-f153ac423f61-20210829-170229.mp4\r\n6.13_11497_Player565-f153ac423f61-20210912-185611.mp4 6.13_2726_Player217-f153ac423f61-20210829-170359.mp4\r\n6.13_11498_Player565-f153ac423f61-20210912-185756.mp4 6.13_2727_Player217-f153ac423f61-20210829-170545.mp4\r\n6.13_11499_Player565-f153ac423f61-20210912-185916.mp4 6.13_2728_Player217-f153ac423f61-20210829-170716.mp4\r\n6.13_1149_Player142-f153ac423f61-20210922-183119.mp4 6.13_2729_Player217-f153ac423f61-20210829-170855.mp4\r\n6.13_114_Player100-63eefbd0685a-20211220-203328.mp4 6.13_272_Player108-f153ac423f61-20211207-115719.mp4\r\n6.13_11500_Player565-f153ac423f61-20210912-190056.mp4 6.13_2730_Player217-f153ac423f61-20210829-171035.mp4\r\n6.13_11501_Player565-f153ac423f61-20210912-190234.mp4 6.13_2731_Player217-f153ac423f61-20210829-171216.mp4\r\n6.13_11502_Player565-f153ac423f61-20210912-190405.mp4 6.13_2732_Player217-f153ac423f61-20210829-171354.mp4\r\n6.13_11503_Player565-f153ac423f61-20210912-190548.mp4 6.13_2733_Player217-f153ac423f61-20210829-171533.mp4\r\n6.13_11504_Player565-f153ac423f61-20210912-190729.mp4 6.13_2734_Player217-f153ac423f61-20210829-171709.mp4\r\n6.13_11505_Player565-f153ac423f61-20210912-190910.mp4 6.13_2735_Player217-f153ac423f61-20210829-171848.mp4\r\n6.13_11506_Player565-f153ac423f61-20210912-191055.mp4 6.13_2736_Player217-f153ac423f61-20210829-172035.mp4\r\n6.13_11507_Player565-f153ac423f61-20210912-191246.mp4 6.13_2737_Player217-f153ac423f61-20210829-172234.mp4\r\n6.13_11508_Player565-f153ac423f61-20210912-191429.mp4 6.13_2738_Player217-f153ac423f61-20210829-172414.mp4\r\n6.13_11509_Player565-f153ac423f61-20210912-191603.mp4 6.13_2739_Player217-f153ac423f61-20210829-172812.mp4\r\n6.13_1150_Player142-f153ac423f61-20210922-183238.mp4 6.13_273_Player108-f153ac423f61-20211207-115829.mp4\r\n6.13_11510_Player565-f153ac423f61-20210912-191749.mp4 6.13_2740_Player217-f153ac423f61-20210829-172954.mp4\r\n6.13_11511_Player565-f153ac423f61-20210912-191935.mp4 6.13_2741_Player217-f153ac423f61-20210829-173135.mp4\r\n6.13_11512_Player565-f153ac423f61-20210912-192120.mp4 6.13_2742_Player217-f153ac423f61-20210829-173304.mp4\r\n6.13_11513_Player565-f153ac423f61-20210912-192304.mp4 6.13_2743_Player217-f153ac423f61-20210829-173436.mp4\r\n6.13_11514_Player565-f153ac423f61-20210912-192458.mp4 6.13_2744_Player217-f153ac423f61-20210829-173602.mp4\r\n6.13_11515_Player565-f153ac423f61-20210912-192638.mp4 6.13_2745_Player217-f153ac423f61-20210829-173730.mp4\r\n6.13_11516_Player565-f153ac423f61-20210912-192818.mp4 6.13_2746_Player217-f153ac423f61-20210829-173857.mp4\r\n6.13_11517_Player565-f153ac423f61-20210912-192959.mp4 6.13_2747_Player217-f153ac423f61-20210829-174026.mp4\r\n6.13_11518_Player565-f153ac423f61-20210912-193144.mp4 6.13_2748_Player217-f153ac423f61-20210829-174205.mp4\r\n6.13_11519_Player565-f153ac423f61-20210912-193316.mp4 6.13_2749_Player217-f153ac423f61-20210829-174351.mp4\r\n6.13_1151_Player142-f153ac423f61-20210922-183358.mp4 6.13_274_Player108-f153ac423f61-20211207-115945.mp4\r\n6.13_11520_Player565-f153ac423f61-20210912-193454.mp4 6.13_2750_Player217-f153ac423f61-20210829-174548.mp4\r\n6.13_11521_Player565-f153ac423f61-20210912-193622.mp4 6.13_2751_Player217-f153ac423f61-20210829-174722.mp4\r\n6.13_11522_Player565-f153ac423f61-20210912-193758.mp4 6.13_2752_Player217-f153ac423f61-20210829-174905.mp4\r\n6.13_11523_Player565-f153ac423f61-20210912-193942.mp4 6.13_2753_Player217-f153ac423f61-20210829-175054.mp4\r\n6.13_11524_Player565-f153ac423f61-20210912-194124.mp4 6.13_2754_Player217-f153ac423f61-20210829-175229.mp4\r\n6.13_11525_Player565-f153ac423f61-20210912-194312.mp4 6.13_2755_Player217-f153ac423f61-20210829-175404.mp4\r\n6.13_11526_Player565-f153ac423f61-20210912-194440.mp4 6.13_2756_Player217-f153ac423f61-20210829-175535.mp4\r\n6.13_11527_Player565-f153ac423f61-20210912-194552.mp4 6.13_2757_Player217-f153ac423f61-20210829-175711.mp4\r\n6.13_11528_Player565-f153ac423f61-20210912-194708.mp4 6.13_2758_Player217-f153ac423f61-20210829-175851.mp4\r\n6.13_11529_Player565-f153ac423f61-20210912-194826.mp4 6.13_2759_Player217-f153ac423f61-20210829-180033.mp4\r\n6.13_1152_Player142-f153ac423f61-20210922-183512.mp4 6.13_275_Player108-f153ac423f61-20211207-120048.mp4\r\n6.13_11530_Player565-f153ac423f61-20210912-194948.mp4 6.13_2760_Player217-f153ac423f61-20210829-180204.mp4\r\n6.13_11531_Player565-f153ac423f61-20210912-195120.mp4 6.13_2761_Player217-f153ac423f61-20210829-180347.mp4\r\n6.13_11532_Player565-f153ac423f61-20210912-195257.mp4 6.13_2762_Player217-f153ac423f61-20210829-180526.mp4\r\n6.13_11533_Player565-f153ac423f61-20210912-195435.mp4 6.13_2763_Player217-f153ac423f61-20210829-180701.mp4\r\n6.13_11534_Player565-f153ac423f61-20210912-195611.mp4 6.13_2764_Player217-f153ac423f61-20210829-180838.mp4\r\n6.13_11535_Player565-f153ac423f61-20210912-195743.mp4 6.13_2765_Player217-f153ac423f61-20210829-181027.mp4\r\n6.13_11536_Player565-f153ac423f61-20210912-195908.mp4 6.13_2766_Player217-f153ac423f61-20210829-181209.mp4\r\n6.13_11537_Player565-f153ac423f61-20210912-200044.mp4 6.13_2767_Player217-f153ac423f61-20210829-181347.mp4\r\n6.13_11538_Player565-f153ac423f61-20210912-200214.mp4 6.13_2768_Player217-f153ac423f61-20210829-181533.mp4\r\n6.13_11539_Player565-f153ac423f61-20210912-200341.mp4 6.13_2769_Player217-f153ac423f61-20210829-181712.mp4\r\n6.13_1153_Player142-f153ac423f61-20210922-183626.mp4 6.13_276_Player108-f153ac423f61-20211207-120204.mp4\r\n6.13_11540_Player565-f153ac423f61-20210912-200508.mp4 6.13_2770_Player217-f153ac423f61-20210829-181901.mp4\r\n6.13_11541_Player565-f153ac423f61-20210912-200634.mp4 6.13_2771_Player217-f153ac423f61-20210829-182045.mp4\r\n6.13_11542_Player565-f153ac423f61-20210912-200802.mp4 6.13_2772_Player217-f153ac423f61-20210829-182229.mp4\r\n6.13_11543_Player565-f153ac423f61-20210912-200928.mp4 6.13_2773_Player217-f153ac423f61-20210829-182417.mp4\r\n6.13_11544_Player565-f153ac423f61-20210912-201102.mp4 6.13_2774_Player217-f153ac423f61-20210829-182602.mp4\r\n6.13_11545_Player567-f153ac423f61-20210904-152532.mp4 6.13_2775_Player217-f153ac423f61-20210829-182804.mp4\r\n6.13_11546_Player567-f153ac423f61-20210904-152647.mp4 6.13_2776_Player217-f153ac423f61-20210829-182950.mp4\r\n6.13_11547_Player567-f153ac423f61-20210904-152754.mp4 6.13_2777_Player217-f153ac423f61-20210829-183131.mp4\r\n6.13_11548_Player567-f153ac423f61-20210904-152856.mp4 6.13_2778_Player217-f153ac423f61-20210829-183316.mp4\r\n6.13_11549_Player567-f153ac423f61-20210904-152957.mp4 6.13_2779_Player217-f153ac423f61-20210829-183504.mp4\r\n6.13_1154_Player142-f153ac423f61-20210922-183744.mp4 6.13_277_Player108-f153ac423f61-20211207-120344.mp4\r\n6.13_11550_Player567-f153ac423f61-20210904-153059.mp4 6.13_2780_Player217-f153ac423f61-20210829-183651.mp4\r\n6.13_11551_Player567-f153ac423f61-20210904-153204.mp4 6.13_2781_Player217-f153ac423f61-20210829-183834.mp4\r\n6.13_11552_Player567-f153ac423f61-20210904-153307.mp4 6.13_2782_Player217-f153ac423f61-20210829-183957.mp4\r\n6.13_11553_Player567-f153ac423f61-20210904-153410.mp4 6.13_2783_Player217-f153ac423f61-20210829-184146.mp4\r\n6.13_11554_Player567-f153ac423f61-20210904-153511.mp4 6.13_2784_Player217-f153ac423f61-20210829-184327.mp4\r\n6.13_11555_Player567-f153ac423f61-20210904-153614.mp4 6.13_2785_Player217-f153ac423f61-20210829-184513.mp4\r\n6.13_11556_Player567-f153ac423f61-20210904-153716.mp4 6.13_2786_Player217-f153ac423f61-20210829-184646.mp4\r\n6.13_11557_Player567-f153ac423f61-20210904-153920.mp4 6.13_2787_Player217-f153ac423f61-20210829-184825.mp4\r\n6.13_11558_Player567-f153ac423f61-20210904-154021.mp4 6.13_2788_Player217-f153ac423f61-20210829-185006.mp4\r\n6.13_11559_Player567-f153ac423f61-20210904-154122.mp4 6.13_2789_Player217-f153ac423f61-20210829-185148.mp4\r\n6.13_1155_Player142-f153ac423f61-20210922-183900.mp4 6.13_278_Player108-f153ac423f61-20211207-120507.mp4\r\n6.13_11560_Player567-f153ac423f61-20210904-154222.mp4 6.13_2790_Player217-f153ac423f61-20210829-185330.mp4\r\n6.13_11561_Player567-f153ac423f61-20210904-154323.mp4 6.13_2791_Player217-f153ac423f61-20210829-185509.mp4\r\n6.13_11562_Player567-f153ac423f61-20210904-154523.mp4 6.13_2792_Player217-f153ac423f61-20210829-185656.mp4\r\n6.13_11563_Player567-f153ac423f61-20210904-154624.mp4 6.13_2793_Player217-f153ac423f61-20210829-185845.mp4\r\n6.13_11564_Player567-f153ac423f61-20210904-154724.mp4 6.13_2794_Player217-f153ac423f61-20210829-190021.mp4\r\n6.13_11565_Player567-f153ac423f61-20210904-154824.mp4 6.13_2795_Player217-f153ac423f61-20210829-190158.mp4\r\n6.13_11566_Player567-f153ac423f61-20210904-154925.mp4 6.13_2796_Player217-f153ac423f61-20210829-190336.mp4\r\n6.13_11567_Player567-f153ac423f61-20210904-155127.mp4 6.13_2797_Player217-f153ac423f61-20210829-190508.mp4\r\n6.13_11568_Player567-f153ac423f61-20210904-155227.mp4 6.13_2798_Player217-f153ac423f61-20210829-190650.mp4\r\n6.13_11569_Player567-f153ac423f61-20210904-155329.mp4 6.13_2799_Player217-f153ac423f61-20210829-190823.mp4\r\n6.13_1156_Player142-f153ac423f61-20210922-184016.mp4 6.13_279_Player108-f153ac423f61-20211207-120635.mp4\r\n6.13_11570_Player567-f153ac423f61-20210904-155430.mp4 6.13_2800_Player22-6a8c598503cb-20210901-003817.mp4\r\n6.13_11571_Player567-f153ac423f61-20210904-155531.mp4 6.13_2801_Player22-f153ac423f61-20210803-123038.mp4\r\n6.13_11572_Player567-f153ac423f61-20210904-155634.mp4 6.13_2802_Player22-f153ac423f61-20210803-123504.mp4\r\n6.13_11573_Player567-f153ac423f61-20210904-155735.mp4 6.13_2803_Player22-f153ac423f61-20210803-123915.mp4\r\n6.13_11574_Player567-f153ac423f61-20210904-155840.mp4 6.13_2804_Player22-f153ac423f61-20210803-124321.mp4\r\n6.13_11575_Player567-f153ac423f61-20210904-155943.mp4 6.13_2805_Player22-f153ac423f61-20210803-124728.mp4\r\n6.13_11576_Player567-f153ac423f61-20210904-160044.mp4 6.13_2806_Player22-f153ac423f61-20210803-125038.mp4\r\n6.13_11577_Player567-f153ac423f61-20210904-160249.mp4 6.13_2807_Player22-f153ac423f61-20210803-125355.mp4\r\n6.13_11578_Player567-f153ac423f61-20210904-160350.mp4 6.13_2808_Player22-f153ac423f61-20210803-125806.mp4\r\n6.13_11579_Player567-f153ac423f61-20210904-160452.mp4 6.13_2809_Player22-f153ac423f61-20210803-130216.mp4\r\n6.13_1157_Player142-f153ac423f61-20210922-184131.mp4 6.13_280_Player108-f153ac423f61-20211207-120816.mp4\r\n6.13_11580_Player567-f153ac423f61-20210904-160553.mp4 6.13_2810_Player22-f153ac423f61-20210803-130633.mp4\r\n6.13_11581_Player567-f153ac423f61-20210904-160654.mp4 6.13_2811_Player22-f153ac423f61-20210803-131046.mp4\r\n6.13_11582_Player567-f153ac423f61-20210904-160856.mp4 6.13_2812_Player22-f153ac423f61-20210803-131354.mp4\r\n6.13_11583_Player567-f153ac423f61-20210904-161104.mp4 6.13_2813_Player22-f153ac423f61-20210901-002204.mp4\r\n6.13_11584_Player567-f153ac423f61-20210904-161205.mp4 6.13_2814_Player22-f153ac423f61-20210901-002308.mp4\r\n6.13_11585_Player567-f153ac423f61-20210904-161305.mp4 6.13_2815_Player22-f153ac423f61-20210901-002410.mp4\r\n6.13_11586_Player567-f153ac423f61-20210904-161406.mp4 6.13_2816_Player22-f153ac423f61-20210901-002613.mp4\r\n6.13_11587_Player567-f153ac423f61-20210904-161509.mp4 6.13_2817_Player22-f153ac423f61-20210901-003026.mp4\r\n6.13_11588_Player567-f153ac423f61-20210904-161710.mp4 6.13_2818_Player220-60eb49962ace-20211126-141540.mp4\r\n6.13_11589_Player567-f153ac423f61-20210904-161810.mp4 6.13_2819_Player220-60eb49962ace-20211126-141641.mp4\r\n6.13_1158_Player144-f153ac423f61-20211028-154017.mp4 6.13_281_Player108-f153ac423f61-20211207-120946.mp4\r\n6.13_11590_Player567-f153ac423f61-20210904-161910.mp4 6.13_2820_Player220-60eb49962ace-20211126-141742.mp4\r\n6.13_11591_Player567-f153ac423f61-20210904-162011.mp4 6.13_2821_Player220-60eb49962ace-20211126-141843.mp4\r\n6.13_11592_Player567-f153ac423f61-20210904-162112.mp4 6.13_2822_Player220-60eb49962ace-20211126-141943.mp4\r\n6.13_11593_Player567-f153ac423f61-20210904-162317.mp4 6.13_2823_Player220-60eb49962ace-20211126-142043.mp4\r\n6.13_11594_Player567-f153ac423f61-20210904-162419.mp4 6.13_2824_Player220-60eb49962ace-20211126-142143.mp4\r\n6.13_11595_Player567-f153ac423f61-20210904-162522.mp4 6.13_2825_Player220-60eb49962ace-20211126-142243.mp4\r\n6.13_11596_Player567-f153ac423f61-20210904-162624.mp4 6.13_2826_Player220-60eb49962ace-20211126-142343.mp4\r\n6.13_11597_Player567-f153ac423f61-20210904-162725.mp4 6.13_2827_Player220-60eb49962ace-20211126-142443.mp4\r\n6.13_11598_Player567-f153ac423f61-20210904-162928.mp4 6.13_2828_Player220-60eb49962ace-20211126-142543.mp4\r\n6.13_11599_Player567-f153ac423f61-20210904-163031.mp4 6.13_2829_Player220-60eb49962ace-20211126-142643.mp4\r\n6.13_1159_Player144-f153ac423f61-20211028-154726.mp4 6.13_282_Player108-f153ac423f61-20211207-121111.mp4\r\n6.13_115_Player100-63eefbd0685a-20211220-203531.mp4 6.13_2830_Player220-60eb49962ace-20211126-142743.mp4\r\n6.13_11600_Player567-f153ac423f61-20210904-163132.mp4 6.13_2831_Player220-60eb49962ace-20211126-142843.mp4\r\n6.13_11601_Player567-f153ac423f61-20210904-163241.mp4 6.13_2832_Player220-60eb49962ace-20211126-142943.mp4\r\n6.13_11602_Player567-f153ac423f61-20210904-163448.mp4 6.13_2833_Player220-60eb49962ace-20211126-143043.mp4\r\n6.13_11603_Player567-f153ac423f61-20210904-163600.mp4 6.13_2834_Player220-60eb49962ace-20211126-143143.mp4\r\n6.13_11604_Player567-f153ac423f61-20210904-163705.mp4 6.13_2835_Player220-60eb49962ace-20211126-143243.mp4\r\n6.13_11605_Player567-f153ac423f61-20210904-163805.mp4 6.13_2836_Player220-60eb49962ace-20211126-143343.mp4\r\n6.13_11606_Player567-f153ac423f61-20210904-163910.mp4 6.13_2837_Player220-60eb49962ace-20211126-143443.mp4\r\n6.13_11607_Player567-f153ac423f61-20210904-164130.mp4 6.13_2838_Player220-60eb49962ace-20211126-143543.mp4\r\n6.13_11608_Player567-f153ac423f61-20210904-164232.mp4 6.13_2839_Player220-60eb49962ace-20211126-143644.mp4\r\n6.13_11609_Player567-f153ac423f61-20210904-164333.mp4 6.13_283_Player108-f153ac423f61-20211207-121224.mp4\r\n6.13_1160_Player144-f153ac423f61-20211028-155428.mp4 6.13_2840_Player220-60eb49962ace-20211126-143744.mp4\r\n6.13_11610_Player567-f153ac423f61-20210904-164533.mp4 6.13_2841_Player220-60eb49962ace-20211126-143844.mp4\r\n6.13_11611_Player567-f153ac423f61-20210904-164734.mp4 6.13_2842_Player220-60eb49962ace-20211126-143944.mp4\r\n6.13_11612_Player567-f153ac423f61-20210904-164935.mp4 6.13_2843_Player220-60eb49962ace-20211126-144044.mp4\r\n6.13_11613_Player567-f153ac423f61-20210904-165139.mp4 6.13_2844_Player220-60eb49962ace-20211126-144144.mp4\r\n6.13_11614_Player567-f153ac423f61-20210904-165340.mp4 6.13_2845_Player220-60eb49962ace-20211126-144244.mp4\r\n6.13_11615_Player567-f153ac423f61-20210904-165540.mp4 6.13_2846_Player220-60eb49962ace-20211126-144344.mp4\r\n6.13_11616_Player567-f153ac423f61-20210904-165744.mp4 6.13_2847_Player220-60eb49962ace-20211126-144444.mp4\r\n6.13_11617_Player567-f153ac423f61-20210904-165853.mp4 6.13_2848_Player220-60eb49962ace-20211126-144544.mp4\r\n6.13_11618_Player567-f153ac423f61-20210904-170056.mp4 6.13_2849_Player220-60eb49962ace-20211126-144644.mp4\r\n6.13_11619_Player567-f153ac423f61-20210904-170156.mp4 6.13_284_Player108-f153ac423f61-20211207-121350.mp4\r\n6.13_1161_Player144-f153ac423f61-20211028-160135.mp4 6.13_2850_Player220-60eb49962ace-20211126-144744.mp4\r\n6.13_11620_Player567-f153ac423f61-20210904-170358.mp4 6.13_2851_Player220-60eb49962ace-20211126-144844.mp4\r\n6.13_11621_Player567-f153ac423f61-20210904-170600.mp4 6.13_2852_Player220-60eb49962ace-20211126-144944.mp4\r\n6.13_11622_Player567-f153ac423f61-20210904-170802.mp4 6.13_2853_Player220-60eb49962ace-20211126-145044.mp4\r\n6.13_11623_Player567-f153ac423f61-20210904-171003.mp4 6.13_2854_Player220-60eb49962ace-20211126-145144.mp4\r\n6.13_11624_Player567-f153ac423f61-20210904-171204.mp4 6.13_2855_Player220-60eb49962ace-20211126-145244.mp4\r\n6.13_11625_Player567-f153ac423f61-20210904-171405.mp4 6.13_2856_Player220-60eb49962ace-20211126-145344.mp4\r\n6.13_11626_Player567-f153ac423f61-20210904-171607.mp4 6.13_2857_Player220-60eb49962ace-20211126-145444.mp4\r\n6.13_11627_Player567-f153ac423f61-20210904-171808.mp4 6.13_2858_Player220-60eb49962ace-20211126-145544.mp4\r\n6.13_11628_Player567-f153ac423f61-20210904-172010.mp4 6.13_2859_Player220-60eb49962ace-20211126-145644.mp4\r\n6.13_11629_Player567-f153ac423f61-20210904-172212.mp4 6.13_285_Player108-f153ac423f61-20211207-121508.mp4\r\n6.13_1162_Player144-f153ac423f61-20211028-160838.mp4 6.13_2860_Player220-60eb49962ace-20211126-145744.mp4\r\n6.13_11630_Player567-f153ac423f61-20210904-172413.mp4 6.13_2861_Player220-60eb49962ace-20211126-145844.mp4\r\n6.13_11631_Player567-f153ac423f61-20210904-172616.mp4 6.13_2862_Player220-60eb49962ace-20211126-145943.mp4\r\n6.13_11632_Player567-f153ac423f61-20210904-172721.mp4 6.13_2863_Player220-60eb49962ace-20211126-150043.mp4\r\n6.13_11633_Player567-f153ac423f61-20210904-172830.mp4 6.13_2864_Player220-60eb49962ace-20211126-150143.mp4\r\n6.13_11634_Player567-f153ac423f61-20210904-172945.mp4 6.13_2865_Player220-60eb49962ace-20211126-150243.mp4\r\n6.13_11635_Player567-f153ac423f61-20210904-173052.mp4 6.13_2866_Player220-60eb49962ace-20211126-150343.mp4\r\n6.13_11636_Player567-f153ac423f61-20210904-173255.mp4 6.13_2867_Player220-60eb49962ace-20211126-150443.mp4\r\n6.13_11637_Player567-f153ac423f61-20210904-173458.mp4 6.13_2868_Player220-60eb49962ace-20211126-150543.mp4\r\n6.13_11638_Player567-f153ac423f61-20210904-173705.mp4 6.13_2869_Player220-60eb49962ace-20211126-150643.mp4\r\n6.13_11639_Player567-f153ac423f61-20210904-173908.mp4 6.13_286_Player108-f153ac423f61-20211207-121621.mp4\r\n6.13_1163_Player144-f153ac423f61-20211028-161540.mp4 6.13_2870_Player220-60eb49962ace-20211126-150743.mp4\r\n6.13_11640_Player567-f153ac423f61-20210904-174011.mp4 6.13_2871_Player220-60eb49962ace-20211126-150843.mp4\r\n6.13_11641_Player567-f153ac423f61-20210904-174216.mp4 6.13_2872_Player220-60eb49962ace-20211126-150942.mp4\r\n6.13_11642_Player567-f153ac423f61-20210904-174317.mp4 6.13_2873_Player220-60eb49962ace-20211126-151042.mp4\r\n6.13_11643_Player567-f153ac423f61-20210904-174518.mp4 6.13_2874_Player220-60eb49962ace-20211126-151142.mp4\r\n6.13_11644_Player567-f153ac423f61-20210904-174618.mp4 6.13_2875_Player220-60eb49962ace-20211126-151242.mp4\r\n6.13_11645_Player567-f153ac423f61-20210904-174818.mp4 6.13_2876_Player220-60eb49962ace-20211126-151342.mp4\r\n6.13_11646_Player567-f153ac423f61-20210904-175020.mp4 6.13_2877_Player220-60eb49962ace-20211126-151442.mp4\r\n6.13_11647_Player567-f153ac423f61-20210904-175124.mp4 6.13_2878_Player220-60eb49962ace-20211126-151542.mp4\r\n6.13_11648_Player567-f153ac423f61-20210904-175327.mp4 6.13_2879_Player220-60eb49962ace-20211126-151641.mp4\r\n6.13_11649_Player567-f153ac423f61-20210904-175529.mp4 6.13_287_Player108-f153ac423f61-20211207-121738.mp4\r\n6.13_1164_Player144-f153ac423f61-20211028-162244.mp4 6.13_2880_Player220-60eb49962ace-20211126-151741.mp4\r\n6.13_11650_Player567-f153ac423f61-20210904-175739.mp4 6.13_2881_Player220-60eb49962ace-20211126-151841.mp4\r\n6.13_11651_Player567-f153ac423f61-20210904-175847.mp4 6.13_2882_Player220-60eb49962ace-20211126-151941.mp4\r\n6.13_11652_Player567-f153ac423f61-20210904-180048.mp4 6.13_2883_Player220-60eb49962ace-20211126-152041.mp4\r\n6.13_11653_Player567-f153ac423f61-20210904-180253.mp4 6.13_2884_Player220-60eb49962ace-20211126-152141.mp4\r\n6.13_11654_Player567-f153ac423f61-20210904-180501.mp4 6.13_2885_Player220-60eb49962ace-20211126-152240.mp4\r\n6.13_11655_Player567-f153ac423f61-20210904-180704.mp4 6.13_2886_Player220-60eb49962ace-20211126-152340.mp4\r\n6.13_11656_Player567-f153ac423f61-20210904-180807.mp4 6.13_2887_Player220-60eb49962ace-20211126-152440.mp4\r\n6.13_11657_Player567-f153ac423f61-20210904-180913.mp4 6.13_2888_Player220-60eb49962ace-20211126-152540.mp4\r\n6.13_11658_Player567-f153ac423f61-20210904-181113.mp4 6.13_2889_Player220-60eb49962ace-20211126-152640.mp4\r\n6.13_11659_Player567-f153ac423f61-20210904-181315.mp4 6.13_288_Player108-f153ac423f61-20211207-121900.mp4\r\n6.13_1165_Player144-f153ac423f61-20211028-162949.mp4 6.13_2890_Player220-60eb49962ace-20211126-152740.mp4\r\n6.13_11660_Player567-f153ac423f61-20210904-181518.mp4 6.13_2891_Player220-60eb49962ace-20211126-152840.mp4\r\n6.13_11661_Player567-f153ac423f61-20210904-181631.mp4 6.13_2892_Player220-60eb49962ace-20211126-152940.mp4\r\n6.13_11662_Player567-f153ac423f61-20210904-181750.mp4 6.13_2893_Player220-60eb49962ace-20211126-153040.mp4\r\n6.13_11663_Player567-f153ac423f61-20210904-182031.mp4 6.13_2894_Player220-f153ac423f61-20210728-152950.mp4\r\n6.13_11664_Player567-f153ac423f61-20210904-182151.mp4 6.13_2895_Player220-f153ac423f61-20210728-153102.mp4\r\n6.13_11665_Player567-f153ac423f61-20210904-182256.mp4 6.13_2896_Player220-f153ac423f61-20210728-153217.mp4\r\n6.13_11666_Player567-f153ac423f61-20210904-182458.mp4 6.13_2897_Player220-f153ac423f61-20210728-153327.mp4\r\n6.13_11667_Player567-f153ac423f61-20210904-182703.mp4 6.13_2898_Player220-f153ac423f61-20210728-153445.mp4\r\n6.13_11668_Player567-f153ac423f61-20210904-182907.mp4 6.13_2899_Player220-f153ac423f61-20210728-153600.mp4\r\n6.13_11669_Player567-f153ac423f61-20210904-183115.mp4 6.13_289_Player108-f153ac423f61-20211207-122024.mp4\r\n6.13_1166_Player144-f153ac423f61-20211028-163652.mp4 6.13_2900_Player220-f153ac423f61-20210728-153716.mp4\r\n6.13_11670_Player567-f153ac423f61-20210904-183319.mp4 6.13_2901_Player220-f153ac423f61-20210728-153830.mp4\r\n6.13_11671_Player567-f153ac423f61-20210904-183522.mp4 6.13_2902_Player220-f153ac423f61-20210728-154011.mp4\r\n6.13_11672_Player567-f153ac423f61-20210904-183728.mp4 6.13_2903_Player220-f153ac423f61-20210728-154123.mp4\r\n6.13_11673_Player567-f153ac423f61-20210904-183845.mp4 6.13_2904_Player220-f153ac423f61-20210728-154232.mp4\r\n6.13_11674_Player57-f153ac423f61-20210919-210355.mp4 6.13_2905_Player220-f153ac423f61-20210728-154344.mp4\r\n6.13_11675_Player57-f153ac423f61-20210919-211210.mp4 6.13_2906_Player220-f153ac423f61-20210728-154450.mp4\r\n6.13_11676_Player57-f153ac423f61-20210919-212106.mp4 6.13_2907_Player220-f153ac423f61-20210728-154607.mp4\r\n6.13_11677_Player57-f153ac423f61-20210919-213314.mp4 6.13_2908_Player220-f153ac423f61-20210728-154711.mp4\r\n6.13_11678_Player57-fdb7053a23e8-20210919-214431.mp4 6.13_2909_Player220-f153ac423f61-20210728-154812.mp4\r\n6.13_11679_Player57-fdb7053a23e8-20210919-215318.mp4 6.13_290_Player108-f153ac423f61-20211207-122133.mp4\r\n6.13_1167_Player144-f153ac423f61-20211224-012218.mp4 6.13_2910_Player220-f153ac423f61-20210728-154930.mp4\r\n6.13_11680_Player57-fdb7053a23e8-20210919-220126.mp4 6.13_2911_Player220-f153ac423f61-20210728-155039.mp4\r\n6.13_11681_Player577-f153ac423f61-20210728-003232.mp4 6.13_2912_Player220-f153ac423f61-20210728-155140.mp4\r\n6.13_11682_Player577-f153ac423f61-20210728-003839.mp4 6.13_2913_Player220-f153ac423f61-20210728-155244.mp4\r\n6.13_11683_Player577-f153ac423f61-20210728-004932.mp4 6.13_2914_Player220-f153ac423f61-20210728-155352.mp4\r\n6.13_11684_Player577-f153ac423f61-20210728-010036.mp4 6.13_2915_Player220-f153ac423f61-20210728-155510.mp4\r\n6.13_11685_Player577-f153ac423f61-20210728-010236.mp4 6.13_2916_Player220-f153ac423f61-20210728-155629.mp4\r\n6.13_11686_Player577-f153ac423f61-20210728-011038.mp4 6.13_2917_Player220-f153ac423f61-20210728-155742.mp4\r\n6.13_11687_Player577-f153ac423f61-20210728-011942.mp4 6.13_2918_Player220-f153ac423f61-20210728-155900.mp4\r\n6.13_11688_Player577-f153ac423f61-20210728-012748.mp4 6.13_2919_Player220-f153ac423f61-20210728-160012.mp4\r\n6.13_11689_Player577-f153ac423f61-20210728-012949.mp4 6.13_291_Player108-f153ac423f61-20211207-122311.mp4\r\n6.13_1168_Player144-f153ac423f61-20211224-012736.mp4 6.13_2920_Player220-f153ac423f61-20210728-160124.mp4\r\n6.13_11690_Player577-f153ac423f61-20210728-014014.mp4 6.13_2921_Player220-f153ac423f61-20210728-160236.mp4\r\n6.13_11691_Player577-f153ac423f61-20210728-014622.mp4 6.13_2922_Player220-f153ac423f61-20210728-160354.mp4\r\n6.13_11692_Player577-f153ac423f61-20210728-015327.mp4 6.13_2923_Player220-f153ac423f61-20210728-160508.mp4\r\n6.13_11693_Player577-f153ac423f61-20210728-020139.mp4 6.13_2924_Player220-f153ac423f61-20210728-160626.mp4\r\n6.13_11694_Player577-f153ac423f61-20210728-021046.mp4 6.13_2925_Player220-f153ac423f61-20210728-160737.mp4\r\n6.13_11695_Player577-f153ac423f61-20210728-021354.mp4 6.13_2926_Player220-f153ac423f61-20210728-160839.mp4\r\n6.13_11696_Player577-f153ac423f61-20211209-192308.mp4 6.13_2927_Player220-f153ac423f61-20210728-160944.mp4\r\n6.13_11697_Player579-a38fa3644e7f-20211128-120636.mp4 6.13_2928_Player220-f153ac423f61-20211126-135950.mp4\r\n6.13_11698_Player579-a38fa3644e7f-20211128-120738.mp4 6.13_2929_Player220-f153ac423f61-20211126-140051.mp4\r\n6.13_11699_Player579-a38fa3644e7f-20211128-120842.mp4 6.13_292_Player108-f153ac423f61-20211207-122454.mp4\r\n6.13_1169_Player144-f153ac423f61-20211224-013256.mp4 6.13_2930_Player220-f153ac423f61-20211126-140151.mp4\r\n6.13_116_Player100-63eefbd0685a-20211220-203732.mp4 6.13_2931_Player220-f153ac423f61-20211126-140251.mp4\r\n6.13_11700_Player579-a38fa3644e7f-20211128-120945.mp4 6.13_2932_Player220-f153ac423f61-20211126-140351.mp4\r\n6.13_11701_Player579-a38fa3644e7f-20211128-121046.mp4 6.13_2933_Player220-f153ac423f61-20211126-140450.mp4\r\n6.13_11702_Player579-a38fa3644e7f-20211128-121150.mp4 6.13_2934_Player220-f153ac423f61-20211126-140550.mp4\r\n6.13_11703_Player579-a38fa3644e7f-20211128-121257.mp4 6.13_2935_Player220-f153ac423f61-20211126-140650.mp4\r\n6.13_11704_Player579-a38fa3644e7f-20211128-121402.mp4 6.13_2936_Player220-f153ac423f61-20211126-140749.mp4\r\n6.13_11705_Player579-a38fa3644e7f-20211128-121508.mp4 6.13_2937_Player220-f153ac423f61-20211126-140849.mp4\r\n6.13_11706_Player579-a38fa3644e7f-20211128-121618.mp4 6.13_2938_Player220-f153ac423f61-20211126-140949.mp4\r\n6.13_11707_Player579-a38fa3644e7f-20211128-121729.mp4 6.13_2939_Player220-f153ac423f61-20211126-141049.mp4\r\n6.13_11708_Player579-a38fa3644e7f-20211128-121837.mp4 6.13_293_Player108-f153ac423f61-20211207-122626.mp4\r\n6.13_11709_Player579-a38fa3644e7f-20211128-121947.mp4 6.13_2940_Player220-f153ac423f61-20211126-141149.mp4\r\n6.13_1170_Player144-f153ac423f61-20211224-013916.mp4 6.13_2941_Player220-f153ac423f61-20211126-141248.mp4\r\n6.13_11710_Player579-a38fa3644e7f-20211128-122055.mp4 6.13_2942_Player220-f153ac423f61-20211126-141348.mp4\r\n6.13_11711_Player579-a38fa3644e7f-20211128-122157.mp4 6.13_2943_Player220-f153ac423f61-20211126-141448.mp4\r\n6.13_11712_Player579-a38fa3644e7f-20211128-122300.mp4 6.13_2944_Player222-bce90ff628fe-20211128-193439.mp4\r\n6.13_11713_Player579-a38fa3644e7f-20211128-122402.mp4 6.13_2945_Player222-bce90ff628fe-20211128-193616.mp4\r\n6.13_11714_Player579-a38fa3644e7f-20211128-122505.mp4 6.13_2946_Player222-bce90ff628fe-20211128-193740.mp4\r\n6.13_11715_Player579-a38fa3644e7f-20211128-122613.mp4 6.13_2947_Player222-bce90ff628fe-20211128-193901.mp4\r\n6.13_11716_Player579-a38fa3644e7f-20211128-122724.mp4 6.13_2948_Player222-bce90ff628fe-20211128-194024.mp4\r\n6.13_11717_Player579-a38fa3644e7f-20211128-122833.mp4 6.13_2949_Player222-bce90ff628fe-20211128-194143.mp4\r\n6.13_11718_Player579-a38fa3644e7f-20211128-122944.mp4 6.13_294_Player108-f153ac423f61-20211207-122748.mp4\r\n6.13_11719_Player579-a38fa3644e7f-20211128-123052.mp4 6.13_2950_Player222-bce90ff628fe-20211128-194305.mp4\r\n6.13_1171_Player144-f153ac423f61-20211224-014626.mp4 6.13_2951_Player222-bce90ff628fe-20211128-194428.mp4\r\n6.13_11720_Player579-a38fa3644e7f-20211128-123156.mp4 6.13_2952_Player222-bce90ff628fe-20211128-194556.mp4\r\n6.13_11721_Player579-a38fa3644e7f-20211128-123311.mp4 6.13_2953_Player222-bce90ff628fe-20211128-194710.mp4\r\n6.13_11722_Player579-a38fa3644e7f-20211128-123421.mp4 6.13_2954_Player222-bce90ff628fe-20211128-194837.mp4\r\n6.13_11723_Player579-a38fa3644e7f-20211128-123531.mp4 6.13_2955_Player222-bce90ff628fe-20211128-194957.mp4\r\n6.13_11724_Player579-f153ac423f61-20211128-114224.mp4 6.13_2956_Player222-bce90ff628fe-20211128-195119.mp4\r\n6.13_11725_Player579-f153ac423f61-20211128-114330.mp4 6.13_2957_Player222-bce90ff628fe-20211128-195239.mp4\r\n6.13_11726_Player579-f153ac423f61-20211128-114433.mp4 6.13_2958_Player222-bce90ff628fe-20211128-195509.mp4\r\n6.13_11727_Player579-f153ac423f61-20211128-114535.mp4 6.13_2959_Player222-bce90ff628fe-20211128-195629.mp4\r\n6.13_11728_Player579-f153ac423f61-20211128-114638.mp4 6.13_295_Player108-f153ac423f61-20211207-122911.mp4\r\n6.13_11729_Player579-f153ac423f61-20211128-114741.mp4 6.13_2960_Player222-bce90ff628fe-20211128-195749.mp4\r\n6.13_1172_Player144-f153ac423f61-20211224-015233.mp4 6.13_2961_Player222-bce90ff628fe-20211128-195909.mp4\r\n6.13_11730_Player579-f153ac423f61-20211128-114845.mp4 6.13_2962_Player222-bce90ff628fe-20211128-200041.mp4\r\n6.13_11731_Player579-f153ac423f61-20211128-114951.mp4 6.13_2963_Player222-bce90ff628fe-20211128-200207.mp4\r\n6.13_11732_Player579-f153ac423f61-20211128-115055.mp4 6.13_2964_Player222-bce90ff628fe-20211128-200327.mp4\r\n6.13_11733_Player579-f153ac423f61-20211128-115202.mp4 6.13_2965_Player222-bce90ff628fe-20211128-200454.mp4\r\n6.13_11734_Player579-f153ac423f61-20211128-115307.mp4 6.13_2966_Player222-bce90ff628fe-20211128-200623.mp4\r\n6.13_11735_Player579-f153ac423f61-20211128-115411.mp4 6.13_2967_Player222-bce90ff628fe-20211128-200746.mp4\r\n6.13_11736_Player579-f153ac423f61-20211128-115518.mp4 6.13_2968_Player222-bce90ff628fe-20211128-200914.mp4\r\n6.13_11737_Player579-f153ac423f61-20211128-115625.mp4 6.13_2969_Player222-bce90ff628fe-20211128-201042.mp4\r\n6.13_11738_Player579-f153ac423f61-20211128-115731.mp4 6.13_296_Player108-f153ac423f61-20211207-123032.mp4\r\n6.13_11739_Player579-f153ac423f61-20211128-115839.mp4 6.13_2970_Player222-bce90ff628fe-20211128-201201.mp4\r\n6.13_1173_Player144-f153ac423f61-20211224-020033.mp4 6.13_2971_Player222-bce90ff628fe-20211128-201324.mp4\r\n6.13_11740_Player579-f153ac423f61-20211128-115950.mp4 6.13_2972_Player222-bce90ff628fe-20211128-201442.mp4\r\n6.13_11741_Player579-f153ac423f61-20211128-120056.mp4 6.13_2973_Player222-bce90ff628fe-20211128-201607.mp4\r\n6.13_11742_Player579-f153ac423f61-20211128-120159.mp4 6.13_2974_Player222-bce90ff628fe-20211128-201733.mp4\r\n6.13_11743_Player579-f153ac423f61-20211128-120302.mp4 6.13_2975_Player222-bce90ff628fe-20211128-201900.mp4\r\n6.13_11744_Player579-f153ac423f61-20211128-120406.mp4 6.13_2976_Player222-bce90ff628fe-20211128-202022.mp4\r\n6.13_11745_Player579-f153ac423f61-20211128-120514.mp4 6.13_2977_Player222-bce90ff628fe-20211128-202137.mp4\r\n6.13_11746_Player581-2e405b8a9aac-20211207-113955.mp4 6.13_2978_Player222-bce90ff628fe-20211128-202258.mp4\r\n6.13_11747_Player581-2e405b8a9aac-20211207-115901.mp4 6.13_2979_Player222-bce90ff628fe-20211128-202425.mp4\r\n6.13_11748_Player581-2e405b8a9aac-20211207-121719.mp4 6.13_297_Player108-f153ac423f61-20211207-123154.mp4\r\n6.13_11749_Player581-2e405b8a9aac-20211207-123633.mp4 6.13_2980_Player222-bce90ff628fe-20211128-202545.mp4\r\n6.13_1174_Player146-f153ac423f61-20211128-170930.mp4 6.13_2981_Player222-bce90ff628fe-20211128-202650.mp4\r\n6.13_11750_Player581-2e405b8a9aac-20211207-125404.mp4 6.13_2982_Player222-bce90ff628fe-20211128-202756.mp4\r\n6.13_11751_Player581-2e405b8a9aac-20211207-131551.mp4 6.13_2983_Player222-bce90ff628fe-20211128-202900.mp4\r\n6.13_11752_Player581-2e405b8a9aac-20211207-133854.mp4 6.13_2984_Player222-bce90ff628fe-20211128-203006.mp4\r\n6.13_11753_Player581-2e405b8a9aac-20211207-140325.mp4 6.13_2985_Player222-bce90ff628fe-20211128-203110.mp4\r\n6.13_11754_Player581-2e405b8a9aac-20211207-142657.mp4 6.13_2986_Player222-bce90ff628fe-20211128-203221.mp4\r\n6.13_11755_Player581-f153ac423f61-20211207-095842.mp4 6.13_2987_Player222-f153ac423f61-20211128-191433.mp4\r\n6.13_11756_Player581-f153ac423f61-20211207-101710.mp4 6.13_2988_Player222-f153ac423f61-20211128-191543.mp4\r\n6.13_11757_Player581-f153ac423f61-20211207-103520.mp4 6.13_2989_Player222-f153ac423f61-20211128-191650.mp4\r\n6.13_11758_Player581-f153ac423f61-20211207-105437.mp4 6.13_298_Player108-f153ac423f61-20211207-123322.mp4\r\n6.13_11759_Player581-f153ac423f61-20211207-111246.mp4 6.13_2990_Player222-f153ac423f61-20211128-191802.mp4\r\n6.13_1175_Player146-f153ac423f61-20211128-171040.mp4 6.13_2991_Player222-f153ac423f61-20211128-191921.mp4\r\n6.13_11760_Player581-f153ac423f61-20211222-090002.mp4 6.13_2992_Player222-f153ac423f61-20211128-192041.mp4\r\n6.13_11761_Player581-f153ac423f61-20211222-090817.mp4 6.13_2993_Player222-f153ac423f61-20211128-192204.mp4\r\n6.13_11762_Player581-f153ac423f61-20211222-091624.mp4 6.13_2994_Player222-f153ac423f61-20211128-192328.mp4\r\n6.13_11763_Player581-f153ac423f61-20211222-092436.mp4 6.13_2995_Player222-f153ac423f61-20211128-192450.mp4\r\n6.13_11764_Player581-f153ac423f61-20211222-093241.mp4 6.13_2996_Player222-f153ac423f61-20211128-192623.mp4\r\n6.13_11765_Player581-f153ac423f61-20211222-094047.mp4 6.13_2997_Player222-f153ac423f61-20211128-192747.mp4\r\n6.13_11766_Player581-f153ac423f61-20211222-094851.mp4 6.13_2998_Player222-f153ac423f61-20211128-192900.mp4\r\n6.13_11767_Player581-f153ac423f61-20211222-095658.mp4 6.13_2999_Player222-f153ac423f61-20211128-193022.mp4\r\n6.13_11768_Player581-f153ac423f61-20211222-100507.mp4 6.13_299_Player108-f153ac423f61-20211207-123500.mp4\r\n6.13_11769_Player581-f153ac423f61-20211222-101315.mp4 6.13_3000_Player222-f153ac423f61-20211128-193142.mp4\r\n6.13_1176_Player146-f153ac423f61-20211128-171146.mp4 6.13_3001_Player222-f153ac423f61-20211128-193312.mp4\r\n6.13_11770_Player581-f153ac423f61-20211222-102732.mp4 6.13_3002_Player225-f153ac423f61-20211205-111225.mp4\r\n6.13_11771_Player581-f153ac423f61-20211222-103441.mp4 6.13_3003_Player225-f153ac423f61-20211205-111341.mp4\r\n6.13_11772_Player581-f153ac423f61-20211222-104252.mp4 6.13_3004_Player225-f153ac423f61-20211205-111448.mp4\r\n6.13_11773_Player581-f153ac423f61-20211222-105058.mp4 6.13_3005_Player225-f153ac423f61-20211205-111550.mp4\r\n6.13_11774_Player581-f153ac423f61-20211222-105904.mp4 6.13_3006_Player225-f153ac423f61-20211205-111653.mp4\r\n6.13_11775_Player582-f153ac423f61-20211113-170220.mp4 6.13_3007_Player225-f153ac423f61-20211205-111756.mp4\r\n6.13_11776_Player582-f153ac423f61-20211113-171348.mp4 6.13_3008_Player225-f153ac423f61-20211205-111859.mp4\r\n6.13_11777_Player582-f153ac423f61-20211113-172211.mp4 6.13_3009_Player225-f153ac423f61-20211205-112001.mp4\r\n6.13_11778_Player582-f153ac423f61-20211113-172826.mp4 6.13_300_Player108-f153ac423f61-20211207-123620.mp4\r\n6.13_11779_Player582-f153ac423f61-20211113-173650.mp4 6.13_3010_Player225-f153ac423f61-20211205-112102.mp4\r\n6.13_1177_Player146-f153ac423f61-20211128-171254.mp4 6.13_3011_Player225-f153ac423f61-20211205-112204.mp4\r\n6.13_11780_Player582-f153ac423f61-20211113-174536.mp4 6.13_3012_Player225-f153ac423f61-20211205-112307.mp4\r\n6.13_11781_Player582-f153ac423f61-20211113-175203.mp4 6.13_3013_Player225-f153ac423f61-20211205-112410.mp4\r\n6.13_11782_Player582-f153ac423f61-20211113-175731.mp4 6.13_3014_Player225-f153ac423f61-20211205-112518.mp4\r\n6.13_11783_Player585-3cd7c83230e6-20211103-205201.mp4 6.13_3015_Player225-f153ac423f61-20211205-112621.mp4\r\n6.13_11784_Player585-3cd7c83230e6-20211103-205908.mp4 6.13_3016_Player225-f153ac423f61-20211205-112733.mp4\r\n6.13_11785_Player585-3cd7c83230e6-20211103-210936.mp4 6.13_3017_Player225-f153ac423f61-20211205-112846.mp4\r\n6.13_11786_Player585-3cd7c83230e6-20211103-211640.mp4 6.13_3018_Player225-f153ac423f61-20211205-112950.mp4\r\n6.13_11787_Player585-3cd7c83230e6-20211103-212552.mp4 6.13_3019_Player225-f153ac423f61-20211205-113055.mp4\r\n6.13_11788_Player585-f153ac423f61-20211103-191538.mp4 6.13_301_Player108-f153ac423f61-20211207-123741.mp4\r\n6.13_11789_Player585-f153ac423f61-20211103-192354.mp4 6.13_3020_Player225-f153ac423f61-20211205-113158.mp4\r\n6.13_1178_Player146-f153ac423f61-20211128-171400.mp4 6.13_3021_Player225-f153ac423f61-20211205-113301.mp4\r\n6.13_11790_Player585-f153ac423f61-20211103-193213.mp4 6.13_3022_Player225-f153ac423f61-20211205-113405.mp4\r\n6.13_11791_Player585-f153ac423f61-20211103-193917.mp4 6.13_3023_Player225-f153ac423f61-20211205-113509.mp4\r\n6.13_11792_Player585-f153ac423f61-20211103-194842.mp4 6.13_3024_Player225-f153ac423f61-20211205-113638.mp4\r\n6.13_11793_Player585-f153ac423f61-20211103-195545.mp4 6.13_3025_Player225-f153ac423f61-20211205-113826.mp4\r\n6.13_11794_Player585-f153ac423f61-20211103-200349.mp4 6.13_3026_Player225-f153ac423f61-20211205-113954.mp4\r\n6.13_11795_Player585-f153ac423f61-20211103-201051.mp4 6.13_3027_Player225-f153ac423f61-20211205-114126.mp4\r\n6.13_11796_Player585-f153ac423f61-20211103-201900.mp4 6.13_3028_Player225-f153ac423f61-20211205-114241.mp4\r\n6.13_11797_Player585-f153ac423f61-20211103-202602.mp4 6.13_3029_Player225-f153ac423f61-20211205-114410.mp4\r\n6.13_11798_Player585-f153ac423f61-20211103-203411.mp4 6.13_302_Player108-f153ac423f61-20211207-123857.mp4\r\n6.13_11799_Player585-f153ac423f61-20211103-204220.mp4 6.13_3030_Player225-f153ac423f61-20211205-114542.mp4\r\n6.13_1179_Player146-f153ac423f61-20211128-171503.mp4 6.13_3031_Player225-f153ac423f61-20211205-114656.mp4\r\n6.13_117_Player100-63eefbd0685a-20211220-203937.mp4 6.13_3032_Player225-f153ac423f61-20211205-114814.mp4\r\n6.13_11800_Player585-f153ac423f61-20211208-120950.mp4 6.13_3033_Player225-f153ac423f61-20211205-114940.mp4\r\n6.13_11801_Player585-f153ac423f61-20211208-121804.mp4 6.13_3034_Player225-f153ac423f61-20211205-115127.mp4\r\n6.13_11802_Player585-f153ac423f61-20211208-122350.mp4 6.13_3035_Player225-f153ac423f61-20211205-115308.mp4\r\n6.13_11803_Player585-f153ac423f61-20211208-122935.mp4 6.13_3036_Player225-f153ac423f61-20211205-115430.mp4\r\n6.13_11804_Player585-f153ac423f61-20211208-124823.mp4 6.13_3037_Player225-f153ac423f61-20211205-115608.mp4\r\n6.13_11805_Player585-f153ac423f61-20211208-125246.mp4 6.13_3038_Player225-f153ac423f61-20211205-115714.mp4\r\n6.13_11806_Player585-f153ac423f61-20211208-125813.mp4 6.13_3039_Player225-f153ac423f61-20211205-115825.mp4\r\n6.13_11807_Player585-f153ac423f61-20211208-130428.mp4 6.13_303_Player108-f153ac423f61-20211207-124018.mp4\r\n6.13_11808_Player585-f153ac423f61-20211208-130930.mp4 6.13_3040_Player225-f153ac423f61-20211205-115942.mp4\r\n6.13_11809_Player585-f153ac423f61-20211208-131350.mp4 6.13_3041_Player225-f153ac423f61-20211205-120053.mp4\r\n6.13_1180_Player146-f153ac423f61-20211128-171612.mp4 6.13_3042_Player225-f153ac423f61-20211205-120210.mp4\r\n6.13_11810_Player585-f153ac423f61-20211208-131937.mp4 6.13_3043_Player225-f153ac423f61-20211205-120324.mp4\r\n6.13_11811_Player585-f153ac423f61-20211208-132407.mp4 6.13_3044_Player225-f153ac423f61-20211205-120456.mp4\r\n6.13_11812_Player585-f153ac423f61-20211208-132832.mp4 6.13_3045_Player225-f153ac423f61-20211205-120634.mp4\r\n6.13_11813_Player585-f153ac423f61-20211208-133423.mp4 6.13_3046_Player225-f153ac423f61-20211205-120804.mp4\r\n6.13_11814_Player585-f153ac423f61-20211208-133842.mp4 6.13_3047_Player225-f153ac423f61-20211205-120939.mp4\r\n6.13_11815_Player585-f153ac423f61-20211208-134441.mp4 6.13_3048_Player225-f153ac423f61-20211205-121106.mp4\r\n6.13_11816_Player585-f153ac423f61-20211208-134917.mp4 6.13_3049_Player225-f153ac423f61-20211205-121237.mp4\r\n6.13_11817_Player586-f153ac423f61-20210723-124403.mp4 6.13_304_Player108-f153ac423f61-20211207-124141.mp4\r\n6.13_11818_Player586-f153ac423f61-20210723-124824.mp4 6.13_3050_Player225-f153ac423f61-20211205-121425.mp4\r\n6.13_11819_Player586-f153ac423f61-20210723-125147.mp4 6.13_3051_Player225-f153ac423f61-20211205-121603.mp4\r\n6.13_1181_Player146-f153ac423f61-20211128-171726.mp4 6.13_3052_Player225-f153ac423f61-20211205-121743.mp4\r\n6.13_11820_Player586-f153ac423f61-20210723-125558.mp4 6.13_3053_Player225-f153ac423f61-20211205-121928.mp4\r\n6.13_11821_Player586-f153ac423f61-20210723-125914.mp4 6.13_3054_Player225-f153ac423f61-20211205-122054.mp4\r\n6.13_11822_Player586-f153ac423f61-20210723-130223.mp4 6.13_3055_Player225-f153ac423f61-20211205-122226.mp4\r\n6.13_11823_Player586-f153ac423f61-20210723-130536.mp4 6.13_3056_Player225-f153ac423f61-20211205-122406.mp4\r\n6.13_11824_Player586-f153ac423f61-20210723-130948.mp4 6.13_3057_Player225-f153ac423f61-20211205-122545.mp4\r\n6.13_11825_Player586-f153ac423f61-20210723-131316.mp4 6.13_3058_Player225-f153ac423f61-20211205-122721.mp4\r\n6.13_11826_Player586-f153ac423f61-20210723-131631.mp4 6.13_3059_Player225-f153ac423f61-20211205-122853.mp4\r\n6.13_11827_Player586-f153ac423f61-20210723-131948.mp4 6.13_305_Player108-f153ac423f61-20211207-124305.mp4\r\n6.13_11828_Player586-f153ac423f61-20210723-132302.mp4 6.13_3060_Player225-f153ac423f61-20211205-123026.mp4\r\n6.13_11829_Player586-f153ac423f61-20210723-132613.mp4 6.13_3061_Player225-f153ac423f61-20211205-123204.mp4\r\n6.13_1182_Player146-f153ac423f61-20211128-171848.mp4 6.13_3062_Player225-f153ac423f61-20211205-123338.mp4\r\n6.13_11830_Player586-f153ac423f61-20210723-132921.mp4 6.13_3063_Player225-f153ac423f61-20211205-123511.mp4\r\n6.13_11831_Player586-f153ac423f61-20210723-133328.mp4 6.13_3064_Player225-f153ac423f61-20211205-123647.mp4\r\n6.13_11832_Player586-f153ac423f61-20210723-133738.mp4 6.13_3065_Player225-f153ac423f61-20211205-123824.mp4\r\n6.13_11833_Player586-f153ac423f61-20210723-134043.mp4 6.13_3066_Player225-f153ac423f61-20211205-124009.mp4\r\n6.13_11834_Player586-f153ac423f61-20210723-134453.mp4 6.13_3067_Player225-f153ac423f61-20211205-124159.mp4\r\n6.13_11835_Player586-f153ac423f61-20210723-134755.mp4 6.13_3068_Player225-f153ac423f61-20211205-124348.mp4\r\n6.13_11836_Player586-f153ac423f61-20210723-135058.mp4 6.13_3069_Player225-f153ac423f61-20211205-124536.mp4\r\n6.13_11837_Player586-f153ac423f61-20210723-135400.mp4 6.13_306_Player108-f153ac423f61-20211207-124428.mp4\r\n6.13_11838_Player586-f153ac423f61-20210723-135810.mp4 6.13_3070_Player225-f153ac423f61-20211205-124719.mp4\r\n6.13_11839_Player586-f153ac423f61-20210723-140214.mp4 6.13_3071_Player225-f153ac423f61-20211205-124829.mp4\r\n6.13_1183_Player146-f153ac423f61-20211128-172005.mp4 6.13_3072_Player225-f153ac423f61-20211205-124934.mp4\r\n6.13_11840_Player586-f153ac423f61-20210723-140520.mp4 6.13_3073_Player225-f153ac423f61-20211205-125050.mp4\r\n6.13_11841_Player586-f153ac423f61-20210905-145057.mp4 6.13_3074_Player225-f153ac423f61-20211205-125204.mp4\r\n6.13_11842_Player586-f153ac423f61-20210905-145753.mp4 6.13_3075_Player225-f153ac423f61-20211205-125324.mp4\r\n6.13_11843_Player586-f153ac423f61-20210905-150510.mp4 6.13_3076_Player225-f153ac423f61-20211205-125426.mp4\r\n6.13_11844_Player586-f153ac423f61-20210905-151533.mp4 6.13_3077_Player225-f153ac423f61-20211205-125559.mp4\r\n6.13_11845_Player588-a7cacc37d488-20211212-140714.mp4 6.13_3078_Player225-f153ac423f61-20211205-125744.mp4\r\n6.13_11846_Player588-a7cacc37d488-20211212-140819.mp4 6.13_3079_Player225-f153ac423f61-20211205-125932.mp4\r\n6.13_11847_Player588-a7cacc37d488-20211212-140923.mp4 6.13_307_Player11-1bc033fd5a35-20210804-172350.mp4\r\n6.13_11848_Player588-a7cacc37d488-20211212-141027.mp4 6.13_3080_Player225-f153ac423f61-20211205-130101.mp4\r\n6.13_11849_Player588-a7cacc37d488-20211212-141133.mp4 6.13_3081_Player225-f153ac423f61-20211205-130232.mp4\r\n6.13_1184_Player146-f153ac423f61-20211128-172126.mp4 6.13_3082_Player225-f153ac423f61-20211205-130404.mp4\r\n6.13_11850_Player588-a7cacc37d488-20211212-141240.mp4 6.13_3083_Player225-f153ac423f61-20211205-130543.mp4\r\n6.13_11851_Player588-a7cacc37d488-20211212-141347.mp4 6.13_3084_Player225-f153ac423f61-20211205-130739.mp4\r\n6.13_11852_Player588-a7cacc37d488-20211212-141457.mp4 6.13_3085_Player225-f153ac423f61-20211205-130934.mp4\r\n6.13_11853_Player588-a7cacc37d488-20211212-141612.mp4 6.13_3086_Player225-f153ac423f61-20211205-131130.mp4\r\n6.13_11854_Player588-a7cacc37d488-20211212-141730.mp4 6.13_3087_Player225-f153ac423f61-20211205-131318.mp4\r\n6.13_11855_Player588-a7cacc37d488-20211212-141848.mp4 6.13_3088_Player225-f153ac423f61-20211205-131506.mp4\r\n6.13_11856_Player588-a7cacc37d488-20211212-142007.mp4 6.13_3089_Player225-f153ac423f61-20211205-131655.mp4\r\n6.13_11857_Player588-a7cacc37d488-20211212-142126.mp4 6.13_308_Player11-f153ac423f61-20210804-164319.mp4\r\n6.13_11858_Player588-a7cacc37d488-20211212-142243.mp4 6.13_3090_Player225-f153ac423f61-20211205-131844.mp4\r\n6.13_11859_Player588-a7cacc37d488-20211212-142359.mp4 6.13_3091_Player225-f153ac423f61-20211205-132027.mp4\r\n6.13_1185_Player146-f153ac423f61-20211128-172243.mp4 6.13_3092_Player225-f153ac423f61-20211205-132221.mp4\r\n6.13_11860_Player588-a7cacc37d488-20211212-142515.mp4 6.13_3093_Player225-f153ac423f61-20211205-132408.mp4\r\n6.13_11861_Player588-a7cacc37d488-20211212-142631.mp4 6.13_3094_Player225-f153ac423f61-20211205-132541.mp4\r\n6.13_11862_Player588-a7cacc37d488-20211212-142750.mp4 6.13_3095_Player225-f153ac423f61-20211205-132717.mp4\r\n6.13_11863_Player588-a7cacc37d488-20211212-142904.mp4 6.13_3096_Player225-f153ac423f61-20211205-132851.mp4\r\n6.13_11864_Player588-a7cacc37d488-20211212-143018.mp4 6.13_3097_Player225-f153ac423f61-20211205-133035.mp4\r\n6.13_11865_Player588-a7cacc37d488-20211212-143335.mp4 6.13_3098_Player225-f153ac423f61-20211205-133221.mp4\r\n6.13_11866_Player588-a7cacc37d488-20211212-143449.mp4 6.13_3099_Player225-f153ac423f61-20211205-133400.mp4\r\n6.13_11867_Player588-a7cacc37d488-20211212-143715.mp4 6.13_309_Player11-f153ac423f61-20210804-164426.mp4\r\n6.13_11868_Player588-f153ac423f61-20210912-170730.mp4 6.13_3100_Player226-ebb461a45ea7-20211106-132323.mp4\r\n6.13_11869_Player588-f153ac423f61-20210912-170906.mp4 6.13_3101_Player226-ebb461a45ea7-20211106-133131.mp4\r\n6.13_1186_Player147-f153ac423f61-20211104-110120.mp4 6.13_3102_Player226-ebb461a45ea7-20211106-133838.mp4\r\n6.13_11870_Player588-f153ac423f61-20210912-171046.mp4 6.13_3103_Player226-ebb461a45ea7-20211106-134542.mp4\r\n6.13_11871_Player588-f153ac423f61-20210912-171230.mp4 6.13_3104_Player226-ebb461a45ea7-20211106-135245.mp4\r\n6.13_11872_Player588-f153ac423f61-20210912-171359.mp4 6.13_3105_Player226-ebb461a45ea7-20211106-140103.mp4\r\n6.13_11873_Player588-f153ac423f61-20210912-171529.mp4 6.13_3106_Player226-ebb461a45ea7-20211106-141022.mp4\r\n6.13_11874_Player588-f153ac423f61-20210912-171704.mp4 6.13_3107_Player226-ebb461a45ea7-20211106-141824.mp4\r\n6.13_11875_Player588-f153ac423f61-20210912-171836.mp4 6.13_3108_Player226-f153ac423f61-20211106-115914.mp4\r\n6.13_11876_Player588-f153ac423f61-20210912-172007.mp4 6.13_3109_Player226-f153ac423f61-20211106-120730.mp4\r\n6.13_11877_Player588-f153ac423f61-20211212-133336.mp4 6.13_310_Player11-f153ac423f61-20210804-164531.mp4\r\n6.13_11878_Player588-f153ac423f61-20211212-133451.mp4 6.13_3110_Player226-f153ac423f61-20211106-121433.mp4\r\n6.13_11879_Player588-f153ac423f61-20211212-133606.mp4 6.13_3111_Player226-f153ac423f61-20211106-122135.mp4\r\n6.13_1187_Player147-f153ac423f61-20211104-110236.mp4 6.13_3112_Player226-f153ac423f61-20211106-122945.mp4\r\n6.13_11880_Player588-f153ac423f61-20211212-133719.mp4 6.13_3113_Player226-f153ac423f61-20211106-123649.mp4\r\n6.13_11881_Player588-f153ac423f61-20211212-133830.mp4 6.13_3114_Player226-f153ac423f61-20211106-124351.mp4\r\n6.13_11882_Player588-f153ac423f61-20211212-133947.mp4 6.13_3115_Player226-f153ac423f61-20211106-125155.mp4\r\n6.13_11883_Player588-f153ac423f61-20211212-134056.mp4 6.13_3116_Player226-f153ac423f61-20211106-130006.mp4\r\n6.13_11884_Player588-f153ac423f61-20211212-134208.mp4 6.13_3117_Player226-f153ac423f61-20211106-130713.mp4\r\n6.13_11885_Player588-f153ac423f61-20211212-134325.mp4 6.13_3118_Player229-f153ac423f61-20211211-232808.mp4\r\n6.13_11886_Player588-f153ac423f61-20211212-134440.mp4 6.13_3119_Player229-f153ac423f61-20211211-233029.mp4\r\n6.13_11887_Player588-f153ac423f61-20211212-134556.mp4 6.13_311_Player11-f153ac423f61-20210804-164636.mp4\r\n6.13_11888_Player588-f153ac423f61-20211212-134713.mp4 6.13_3120_Player229-f153ac423f61-20211211-233214.mp4\r\n6.13_11889_Player588-f153ac423f61-20211212-134824.mp4 6.13_3121_Player229-f153ac423f61-20211211-233506.mp4\r\n6.13_1188_Player147-f153ac423f61-20211104-110340.mp4 6.13_3122_Player229-f153ac423f61-20211211-233649.mp4\r\n6.13_11890_Player588-f153ac423f61-20211212-134934.mp4 6.13_3123_Player229-f153ac423f61-20211211-233839.mp4\r\n6.13_11891_Player588-f153ac423f61-20211212-135043.mp4 6.13_3124_Player229-f153ac423f61-20211211-234026.mp4\r\n6.13_11892_Player588-f153ac423f61-20211212-135149.mp4 6.13_3125_Player229-f153ac423f61-20211211-234222.mp4\r\n6.13_11893_Player588-f153ac423f61-20211212-135256.mp4 6.13_3126_Player229-f153ac423f61-20211211-234559.mp4\r\n6.13_11894_Player588-f153ac423f61-20211212-135400.mp4 6.13_3127_Player229-f153ac423f61-20211211-234729.mp4\r\n6.13_11895_Player588-f153ac423f61-20211212-135506.mp4 6.13_3128_Player231-f153ac423f61-20211128-070005.mp4\r\n6.13_11896_Player588-f153ac423f61-20211212-135614.mp4 6.13_3129_Player231-f153ac423f61-20211128-070418.mp4\r\n6.13_11897_Player588-f153ac423f61-20211212-135722.mp4 6.13_312_Player11-f153ac423f61-20210804-164740.mp4\r\n6.13_11898_Player588-f153ac423f61-20211212-135834.mp4 6.13_3130_Player231-f153ac423f61-20211128-070822.mp4\r\n6.13_11899_Player588-f153ac423f61-20211212-135948.mp4 6.13_3131_Player231-f153ac423f61-20211128-071227.mp4\r\n6.13_1189_Player147-f153ac423f61-20211104-110443.mp4 6.13_3132_Player231-f153ac423f61-20211128-071634.mp4\r\n6.13_118_Player100-63eefbd0685a-20211220-204139.mp4 6.13_3133_Player231-f153ac423f61-20211128-072056.mp4\r\n6.13_11900_Player588-f153ac423f61-20211212-140100.mp4 6.13_3134_Player231-f153ac423f61-20211128-072502.mp4\r\n6.13_11901_Player588-f153ac423f61-20211212-140203.mp4 6.13_3135_Player231-f153ac423f61-20211128-072906.mp4\r\n6.13_11902_Player588-f153ac423f61-20211212-140310.mp4 6.13_3136_Player231-f153ac423f61-20211128-073410.mp4\r\n6.13_11903_Player590-f153ac423f61-20210816-125544.mp4 6.13_3137_Player231-f153ac423f61-20211128-073815.mp4\r\n6.13_11904_Player590-f153ac423f61-20210816-140909.mp4 6.13_3138_Player231-f153ac423f61-20211128-074217.mp4\r\n6.13_11905_Player590-f153ac423f61-20210816-141012.mp4 6.13_3139_Player231-f153ac423f61-20211128-074626.mp4\r\n6.13_11906_Player590-f153ac423f61-20210816-141115.mp4 6.13_313_Player11-f153ac423f61-20210804-164842.mp4\r\n6.13_11907_Player590-f153ac423f61-20210816-141218.mp4 6.13_3140_Player231-f153ac423f61-20211128-075029.mp4\r\n6.13_11908_Player590-f153ac423f61-20210816-141320.mp4 6.13_3141_Player231-f153ac423f61-20211128-075442.mp4\r\n6.13_11909_Player590-f153ac423f61-20210816-141448.mp4 6.13_3142_Player231-f153ac423f61-20211128-075852.mp4\r\n6.13_1190_Player147-f153ac423f61-20211104-110548.mp4 6.13_3143_Player231-f153ac423f61-20211128-080254.mp4\r\n6.13_11910_Player590-f153ac423f61-20210816-141613.mp4 6.13_3144_Player231-f153ac423f61-20211128-080758.mp4\r\n6.13_11911_Player590-f153ac423f61-20210816-141714.mp4 6.13_3145_Player231-f153ac423f61-20211128-081159.mp4\r\n6.13_11912_Player590-f153ac423f61-20210816-141814.mp4 6.13_3146_Player231-f153ac423f61-20211128-081612.mp4\r\n6.13_11913_Player590-f153ac423f61-20211125-155444.mp4 6.13_3147_Player231-f153ac423f61-20211128-082022.mp4\r\n6.13_11914_Player590-f153ac423f61-20211125-155639.mp4 6.13_3148_Player231-f153ac423f61-20211128-082539.mp4\r\n6.13_11915_Player590-f153ac423f61-20211125-155822.mp4 6.13_3149_Player231-f153ac423f61-20211128-082945.mp4\r\n6.13_11916_Player590-f153ac423f61-20211125-155957.mp4 6.13_314_Player11-f153ac423f61-20210804-164944.mp4\r\n6.13_11917_Player590-f153ac423f61-20211125-160138.mp4 6.13_3150_Player231-f153ac423f61-20211128-083350.mp4\r\n6.13_11918_Player590-f153ac423f61-20211125-160320.mp4 6.13_3151_Player231-f153ac423f61-20211128-083856.mp4\r\n6.13_11919_Player590-f153ac423f61-20211125-160505.mp4 6.13_3152_Player231-f153ac423f61-20211128-084259.mp4\r\n6.13_1191_Player147-f153ac423f61-20211104-110653.mp4 6.13_3153_Player231-f153ac423f61-20211128-084659.mp4\r\n6.13_11920_Player590-f153ac423f61-20211125-160638.mp4 6.13_3154_Player231-f153ac423f61-20211128-085103.mp4\r\n6.13_11921_Player590-f153ac423f61-20211125-160812.mp4 6.13_3155_Player231-f153ac423f61-20211128-085506.mp4\r\n6.13_11922_Player590-f153ac423f61-20211125-160945.mp4 6.13_3156_Player231-f153ac423f61-20211128-085912.mp4\r\n6.13_11923_Player590-f153ac423f61-20211125-161120.mp4 6.13_3157_Player231-f153ac423f61-20211128-090319.mp4\r\n6.13_11924_Player590-f153ac423f61-20211125-161254.mp4 6.13_3158_Player231-f153ac423f61-20211128-090729.mp4\r\n6.13_11925_Player590-f153ac423f61-20211125-161428.mp4 6.13_3159_Player233-cecab2b22f8d-20210904-165155.mp4\r\n6.13_11926_Player590-f153ac423f61-20211125-161618.mp4 6.13_315_Player11-f153ac423f61-20210804-165045.mp4\r\n6.13_11927_Player590-f153ac423f61-20211125-161748.mp4 6.13_3160_Player233-cecab2b22f8d-20210904-165300.mp4\r\n6.13_11928_Player590-f153ac423f61-20211125-161923.mp4 6.13_3161_Player233-cecab2b22f8d-20210904-165402.mp4\r\n6.13_11929_Player590-f153ac423f61-20211125-162052.mp4 6.13_3162_Player233-cecab2b22f8d-20210904-165503.mp4\r\n6.13_1192_Player147-f153ac423f61-20211104-110756.mp4 6.13_3163_Player233-cecab2b22f8d-20210904-165604.mp4\r\n6.13_11930_Player590-f153ac423f61-20211125-162222.mp4 6.13_3164_Player233-cecab2b22f8d-20210904-165706.mp4\r\n6.13_11931_Player590-f153ac423f61-20211125-162403.mp4 6.13_3165_Player233-cecab2b22f8d-20210904-165807.mp4\r\n6.13_11932_Player590-f153ac423f61-20211125-162550.mp4 6.13_3166_Player233-cecab2b22f8d-20210904-165909.mp4\r\n6.13_11933_Player590-f153ac423f61-20211125-162744.mp4 6.13_3167_Player233-cecab2b22f8d-20210904-170010.mp4\r\n6.13_11934_Player590-f153ac423f61-20211125-162920.mp4 6.13_3168_Player233-f153ac423f61-20210729-114137.mp4\r\n6.13_11935_Player590-f153ac423f61-20211125-163049.mp4 6.13_3169_Player233-f153ac423f61-20210729-114656.mp4\r\n6.13_11936_Player590-f153ac423f61-20211125-163224.mp4 6.13_316_Player11-f153ac423f61-20210804-165151.mp4\r\n6.13_11937_Player590-f153ac423f61-20211125-163350.mp4 6.13_3170_Player233-f153ac423f61-20210729-115001.mp4\r\n6.13_11938_Player590-f153ac423f61-20211125-163526.mp4 6.13_3171_Player233-f153ac423f61-20210729-115203.mp4\r\n6.13_11939_Player590-f153ac423f61-20211125-163708.mp4 6.13_3172_Player233-f153ac423f61-20210729-115411.mp4\r\n6.13_1193_Player147-f153ac423f61-20211104-110903.mp4 6.13_3173_Player233-f153ac423f61-20210729-115613.mp4\r\n6.13_11940_Player590-f153ac423f61-20211125-163844.mp4 6.13_3174_Player233-f153ac423f61-20210729-120217.mp4\r\n6.13_11941_Player590-f153ac423f61-20211125-164014.mp4 6.13_3175_Player233-f153ac423f61-20210729-120418.mp4\r\n6.13_11942_Player590-f153ac423f61-20211125-164146.mp4 6.13_3176_Player233-f153ac423f61-20210729-120821.mp4\r\n6.13_11943_Player590-f153ac423f61-20211125-164323.mp4 6.13_3177_Player233-f153ac423f61-20210729-121834.mp4\r\n6.13_11944_Player590-f153ac423f61-20211125-164457.mp4 6.13_3178_Player233-f153ac423f61-20210729-122337.mp4\r\n6.13_11945_Player590-f153ac423f61-20211125-164627.mp4 6.13_3179_Player233-f153ac423f61-20210729-123446.mp4\r\n6.13_11946_Player590-f153ac423f61-20211125-164755.mp4 6.13_317_Player11-f153ac423f61-20210804-165255.mp4\r\n6.13_11947_Player590-f153ac423f61-20211125-164924.mp4 6.13_3180_Player233-f153ac423f61-20210729-124958.mp4\r\n6.13_11948_Player590-f153ac423f61-20211125-165057.mp4 6.13_3181_Player233-f153ac423f61-20210729-125215.mp4\r\n6.13_11949_Player590-f153ac423f61-20211125-165239.mp4 6.13_3182_Player233-f153ac423f61-20210729-125425.mp4\r\n6.13_1194_Player147-f153ac423f61-20211104-111005.mp4 6.13_3183_Player233-f153ac423f61-20210729-125629.mp4\r\n6.13_11950_Player590-f153ac423f61-20211125-165435.mp4 6.13_3184_Player233-f153ac423f61-20210729-125833.mp4\r\n6.13_11951_Player590-f153ac423f61-20211125-165650.mp4 6.13_3185_Player233-f153ac423f61-20210729-132524.mp4\r\n6.13_11952_Player590-f153ac423f61-20211125-165853.mp4 6.13_3186_Player233-f153ac423f61-20210729-133027.mp4\r\n6.13_11953_Player590-f153ac423f61-20211125-170056.mp4 6.13_3187_Player233-f153ac423f61-20210729-133429.mp4\r\n6.13_11954_Player590-f153ac423f61-20211125-170324.mp4 6.13_3188_Player233-f153ac423f61-20210729-134938.mp4\r\n6.13_11955_Player590-f153ac423f61-20211125-170520.mp4 6.13_3189_Player233-f153ac423f61-20210729-135240.mp4\r\n6.13_11956_Player590-f153ac423f61-20211125-170723.mp4 6.13_318_Player11-f153ac423f61-20210804-165400.mp4\r\n6.13_11957_Player591-f153ac423f61-20210902-173508.mp4 6.13_3190_Player233-f153ac423f61-20210729-135642.mp4\r\n6.13_11958_Player591-f153ac423f61-20210902-173612.mp4 6.13_3191_Player233-f153ac423f61-20210729-140145.mp4\r\n6.13_11959_Player591-f153ac423f61-20210902-173713.mp4 6.13_3192_Player233-f153ac423f61-20210904-165123.mp4\r\n6.13_1195_Player147-f153ac423f61-20211104-111113.mp4 6.13_3193_Player234-366e43939db1-20210721-133147.mp4\r\n6.13_11960_Player591-f153ac423f61-20210902-173815.mp4 6.13_3194_Player234-366e43939db1-20210721-133350.mp4\r\n6.13_11961_Player593-5138714ad5cb-20210721-230225.mp4 6.13_3195_Player234-366e43939db1-20210721-134053.mp4\r\n6.13_11962_Player593-5138714ad5cb-20210721-230327.mp4 6.13_3196_Player234-366e43939db1-20210721-135059.mp4\r\n6.13_11963_Player593-5138714ad5cb-20210721-230427.mp4 6.13_3197_Player234-f153ac423f61-20210721-111948.mp4\r\n6.13_11964_Player593-5138714ad5cb-20210721-230528.mp4 6.13_3198_Player234-f153ac423f61-20210721-112255.mp4\r\n6.13_11965_Player593-5138714ad5cb-20210721-230629.mp4 6.13_3199_Player234-f153ac423f61-20210721-113000.mp4\r\n6.13_11966_Player593-5138714ad5cb-20210721-230755.mp4 6.13_319_Player11-f153ac423f61-20210804-165503.mp4\r\n6.13_11967_Player593-5138714ad5cb-20210721-230855.mp4 6.13_3200_Player234-f153ac423f61-20210721-114312.mp4\r\n6.13_11968_Player593-5138714ad5cb-20210721-230956.mp4 6.13_3201_Player234-f153ac423f61-20210721-120024.mp4\r\n6.13_11969_Player593-5138714ad5cb-20210721-231056.mp4 6.13_3202_Player234-f153ac423f61-20210721-121932.mp4\r\n6.13_1196_Player147-f153ac423f61-20211104-111222.mp4 6.13_3203_Player234-f153ac423f61-20210721-123949.mp4\r\n6.13_11970_Player593-5138714ad5cb-20210721-231156.mp4 6.13_3204_Player235-b14d1101bb7d-20211210-231200.mp4\r\n6.13_11971_Player593-9f6e260a60e9-20210721-222314.mp4 6.13_3205_Player235-f153ac423f61-20211116-164440.mp4\r\n6.13_11972_Player593-9f6e260a60e9-20210721-222415.mp4 6.13_3206_Player235-f153ac423f61-20211116-164551.mp4\r\n6.13_11973_Player593-9f6e260a60e9-20210721-222515.mp4 6.13_3207_Player235-f153ac423f61-20211116-164654.mp4\r\n6.13_11974_Player593-9f6e260a60e9-20210721-222616.mp4 6.13_3208_Player235-f153ac423f61-20211116-164758.mp4\r\n6.13_11975_Player593-9f6e260a60e9-20210721-222716.mp4 6.13_3209_Player235-f153ac423f61-20211116-164859.mp4\r\n6.13_11976_Player593-9f6e260a60e9-20210721-222817.mp4 6.13_320_Player11-f153ac423f61-20210804-165607.mp4\r\n6.13_11977_Player593-9f6e260a60e9-20210721-222918.mp4 6.13_3210_Player235-f153ac423f61-20211116-165001.mp4\r\n6.13_11978_Player593-9f6e260a60e9-20210721-223018.mp4 6.13_3211_Player235-f153ac423f61-20211116-165103.mp4\r\n6.13_11979_Player593-9f6e260a60e9-20210721-223119.mp4 6.13_3212_Player235-f153ac423f61-20211116-165206.mp4\r\n6.13_1197_Player147-f153ac423f61-20211104-111327.mp4 6.13_3213_Player235-f153ac423f61-20211210-224214.mp4\r\n6.13_11980_Player593-9f6e260a60e9-20210721-223220.mp4 6.13_3214_Player235-f153ac423f61-20211210-224323.mp4\r\n6.13_11981_Player593-9f6e260a60e9-20210721-223321.mp4 6.13_3215_Player235-f153ac423f61-20211210-224431.mp4\r\n6.13_11982_Player593-9f6e260a60e9-20210721-223422.mp4 6.13_3216_Player235-f153ac423f61-20211210-224544.mp4\r\n6.13_11983_Player593-9f6e260a60e9-20210721-223523.mp4 6.13_3217_Player235-f153ac423f61-20211210-224654.mp4\r\n6.13_11984_Player593-9f6e260a60e9-20210721-223623.mp4 6.13_3218_Player235-f153ac423f61-20211210-224800.mp4\r\n6.13_11985_Player593-9f6e260a60e9-20210721-223723.mp4 6.13_3219_Player235-f153ac423f61-20211210-224906.mp4\r\n6.13_11986_Player593-9f6e260a60e9-20210721-223824.mp4 6.13_321_Player11-f153ac423f61-20210804-165710.mp4\r\n6.13_11987_Player593-9f6e260a60e9-20210721-223924.mp4 6.13_3220_Player235-f153ac423f61-20211210-225016.mp4\r\n6.13_11988_Player593-9f6e260a60e9-20210721-224024.mp4 6.13_3221_Player235-f153ac423f61-20211210-225125.mp4\r\n6.13_11989_Player593-9f6e260a60e9-20210721-224125.mp4 6.13_3222_Player235-f153ac423f61-20211210-225237.mp4\r\n6.13_1198_Player147-f153ac423f61-20211104-111431.mp4 6.13_3223_Player235-f153ac423f61-20211210-225346.mp4\r\n6.13_11990_Player593-9f6e260a60e9-20210721-224225.mp4 6.13_3224_Player235-f153ac423f61-20211210-225458.mp4\r\n6.13_11991_Player593-9f6e260a60e9-20210721-224326.mp4 6.13_3225_Player235-f153ac423f61-20211210-225607.mp4\r\n6.13_11992_Player593-9f6e260a60e9-20210721-224427.mp4 6.13_3226_Player235-f153ac423f61-20211210-225718.mp4\r\n6.13_11993_Player593-9f6e260a60e9-20210721-224529.mp4 6.13_3227_Player235-f153ac423f61-20211210-225831.mp4\r\n6.13_11994_Player593-9f6e260a60e9-20210721-224630.mp4 6.13_3228_Player235-f153ac423f61-20211210-225943.mp4\r\n6.13_11995_Player593-9f6e260a60e9-20210721-224730.mp4 6.13_3229_Player235-f153ac423f61-20211210-230049.mp4\r\n6.13_11996_Player593-9f6e260a60e9-20210721-224830.mp4 6.13_322_Player11-f153ac423f61-20210804-165812.mp4\r\n6.13_11997_Player593-9f6e260a60e9-20210721-224931.mp4 6.13_3230_Player235-f153ac423f61-20211210-230159.mp4\r\n6.13_11998_Player593-9f6e260a60e9-20210721-225031.mp4 6.13_3231_Player235-f153ac423f61-20211210-230309.mp4\r\n6.13_11999_Player593-9f6e260a60e9-20210721-225131.mp4 6.13_3232_Player235-f153ac423f61-20211210-230417.mp4\r\n6.13_1199_Player147-f153ac423f61-20211104-111536.mp4 6.13_3233_Player235-f153ac423f61-20211210-230529.mp4\r\n6.13_119_Player100-63eefbd0685a-20211220-204338.mp4 6.13_3234_Player235-f153ac423f61-20211210-230640.mp4\r\n6.13_12000_Player593-9f6e260a60e9-20210721-225231.mp4 6.13_3235_Player235-f153ac423f61-20211210-230751.mp4\r\n6.13_12001_Player593-9f6e260a60e9-20210721-225332.mp4 6.13_3236_Player235-f153ac423f61-20211210-230854.mp4\r\n6.13_12002_Player593-9f6e260a60e9-20210721-225432.mp4 6.13_3237_Player235-f153ac423f61-20211210-230957.mp4\r\n6.13_12003_Player593-9f6e260a60e9-20210721-225532.mp4 6.13_3238_Player235-f153ac423f61-20211210-231107.mp4\r\n6.13_12004_Player593-9f6e260a60e9-20210721-225632.mp4 6.13_3239_Player238-f153ac423f61-20211112-163052.mp4\r\n6.13_12005_Player593-9f6e260a60e9-20210721-225733.mp4 6.13_323_Player11-f153ac423f61-20210804-165915.mp4\r\n6.13_12006_Player593-9f6e260a60e9-20210721-225833.mp4 6.13_3240_Player238-f153ac423f61-20211112-163230.mp4\r\n6.13_12007_Player593-9f6e260a60e9-20210721-225933.mp4 6.13_3241_Player238-f153ac423f61-20211112-163357.mp4\r\n6.13_12008_Player593-9f6e260a60e9-20210721-230033.mp4 6.13_3242_Player238-f153ac423f61-20211112-163521.mp4\r\n6.13_12009_Player593-9f6e260a60e9-20210721-230134.mp4 6.13_3243_Player238-f153ac423f61-20211112-163650.mp4\r\n6.13_1200_Player147-f153ac423f61-20211104-111716.mp4 6.13_3244_Player238-f153ac423f61-20211112-163823.mp4\r\n6.13_12010_Player593-bc0d20c96bc2-20210721-231212.mp4 6.13_3245_Player238-f153ac423f61-20211112-163950.mp4\r\n6.13_12011_Player593-bc0d20c96bc2-20210721-231312.mp4 6.13_3246_Player238-f153ac423f61-20211112-164107.mp4\r\n6.13_12012_Player593-bc0d20c96bc2-20210721-231412.mp4 6.13_3247_Player238-f153ac423f61-20211112-164225.mp4\r\n6.13_12013_Player593-bc0d20c96bc2-20210721-231513.mp4 6.13_3248_Player238-f153ac423f61-20211112-164343.mp4\r\n6.13_12014_Player593-bc0d20c96bc2-20210721-231613.mp4 6.13_3249_Player240-149bd032700e-20210806-115328.mp4\r\n6.13_12015_Player593-bc0d20c96bc2-20210721-231713.mp4 6.13_324_Player11-f153ac423f61-20210804-170018.mp4\r\n6.13_12016_Player593-bc0d20c96bc2-20210721-231813.mp4 6.13_3250_Player240-1c2aacf95029-20210806-115407.mp4\r\n6.13_12017_Player593-bc0d20c96bc2-20210721-231913.mp4 6.13_3251_Player240-1c2aacf95029-20210806-115509.mp4\r\n6.13_12018_Player593-bc0d20c96bc2-20210721-232013.mp4 6.13_3252_Player240-1c2aacf95029-20210806-115612.mp4\r\n6.13_12019_Player593-bc0d20c96bc2-20210721-232113.mp4 6.13_3253_Player240-1c2aacf95029-20210806-115717.mp4\r\n6.13_1201_Player147-f153ac423f61-20211104-111820.mp4 6.13_3254_Player240-1c2aacf95029-20210806-115824.mp4\r\n6.13_12020_Player593-bc0d20c96bc2-20210721-232214.mp4 6.13_3255_Player240-1c2aacf95029-20210806-115927.mp4\r\n6.13_12021_Player593-bc0d20c96bc2-20210721-232314.mp4 6.13_3256_Player240-1c2aacf95029-20210806-120030.mp4\r\n6.13_12022_Player593-bc0d20c96bc2-20210721-232414.mp4 6.13_3257_Player240-1c2aacf95029-20210806-120139.mp4\r\n6.13_12023_Player593-bc0d20c96bc2-20210721-232515.mp4 6.13_3258_Player240-84a965973c6d-20210806-115132.mp4\r\n6.13_12024_Player593-bc0d20c96bc2-20210721-232615.mp4 6.13_3259_Player240-84a965973c6d-20210806-115236.mp4\r\n6.13_12025_Player593-bc0d20c96bc2-20210721-232716.mp4 6.13_325_Player11-f153ac423f61-20210804-170122.mp4\r\n6.13_12026_Player593-bc0d20c96bc2-20210721-232817.mp4 6.13_3260_Player240-f153ac423f61-20210806-104142.mp4\r\n6.13_12027_Player593-bc0d20c96bc2-20210721-232917.mp4 6.13_3261_Player240-f153ac423f61-20210806-104245.mp4\r\n6.13_12028_Player593-bc0d20c96bc2-20210721-233017.mp4 6.13_3262_Player240-f153ac423f61-20210806-104347.mp4\r\n6.13_12029_Player593-bc0d20c96bc2-20210721-233117.mp4 6.13_3263_Player240-f153ac423f61-20210806-104448.mp4\r\n6.13_1202_Player147-f153ac423f61-20211104-111929.mp4 6.13_3264_Player240-f153ac423f61-20210806-104549.mp4\r\n6.13_12030_Player593-bc0d20c96bc2-20210721-233218.mp4 6.13_3265_Player240-f153ac423f61-20210806-104651.mp4\r\n6.13_12031_Player593-bc0d20c96bc2-20210721-233318.mp4 6.13_3266_Player240-f153ac423f61-20210806-104753.mp4\r\n6.13_12032_Player593-bc0d20c96bc2-20210721-233418.mp4 6.13_3267_Player240-f153ac423f61-20210806-104856.mp4\r\n6.13_12033_Player593-bc0d20c96bc2-20210721-233519.mp4 6.13_3268_Player240-f153ac423f61-20210806-104958.mp4\r\n6.13_12034_Player593-bc0d20c96bc2-20210721-233619.mp4 6.13_3269_Player240-f153ac423f61-20210806-105100.mp4\r\n6.13_12035_Player593-bc0d20c96bc2-20210721-233719.mp4 6.13_326_Player11-f153ac423f61-20210804-170226.mp4\r\n6.13_12036_Player593-bc0d20c96bc2-20210721-233819.mp4 6.13_3270_Player240-f153ac423f61-20210806-105201.mp4\r\n6.13_12037_Player598-f153ac423f61-20211125-005231.mp4 6.13_3271_Player240-f153ac423f61-20210806-105303.mp4\r\n6.13_12038_Player598-f153ac423f61-20211125-005333.mp4 6.13_3272_Player240-f153ac423f61-20210806-105406.mp4\r\n6.13_12039_Player598-f153ac423f61-20211125-005434.mp4 6.13_3273_Player240-f153ac423f61-20210806-105514.mp4\r\n6.13_1203_Player147-f153ac423f61-20211104-112033.mp4 6.13_3274_Player240-f153ac423f61-20210806-105621.mp4\r\n6.13_12040_Player598-f153ac423f61-20211125-005534.mp4 6.13_3275_Player240-f153ac423f61-20210806-105730.mp4\r\n6.13_12041_Player598-f153ac423f61-20211125-005634.mp4 6.13_3276_Player240-f153ac423f61-20210806-105837.mp4\r\n6.13_12042_Player598-f153ac423f61-20211125-005734.mp4 6.13_3277_Player240-f153ac423f61-20210806-105939.mp4\r\n6.13_12043_Player598-f153ac423f61-20211125-005833.mp4 6.13_3278_Player240-f153ac423f61-20210806-110041.mp4\r\n6.13_12044_Player598-f153ac423f61-20211125-005933.mp4 6.13_3279_Player240-f153ac423f61-20210806-110349.mp4\r\n6.13_12045_Player598-f153ac423f61-20211125-010033.mp4 6.13_327_Player11-f153ac423f61-20210804-170327.mp4\r\n6.13_12046_Player598-f153ac423f61-20211125-010134.mp4 6.13_3280_Player240-f153ac423f61-20210806-110449.mp4\r\n6.13_12047_Player598-f153ac423f61-20211125-010234.mp4 6.13_3281_Player240-f153ac423f61-20210806-110550.mp4\r\n6.13_12048_Player598-f153ac423f61-20211125-010333.mp4 6.13_3282_Player240-f153ac423f61-20210806-110651.mp4\r\n6.13_12049_Player598-f153ac423f61-20211125-010433.mp4 6.13_3283_Player240-f153ac423f61-20210806-110751.mp4\r\n6.13_1204_Player147-f153ac423f61-20211104-112136.mp4 6.13_3284_Player240-f153ac423f61-20210806-110851.mp4\r\n6.13_12050_Player598-f153ac423f61-20211125-010533.mp4 6.13_3285_Player240-f153ac423f61-20210806-110952.mp4\r\n6.13_12051_Player598-f153ac423f61-20211125-010633.mp4 6.13_3286_Player240-f153ac423f61-20210806-111052.mp4\r\n6.13_12052_Player598-f153ac423f61-20211125-010733.mp4 6.13_3287_Player240-f153ac423f61-20210806-111152.mp4\r\n6.13_12053_Player598-f153ac423f61-20211125-010833.mp4 6.13_3288_Player240-f153ac423f61-20210806-111252.mp4\r\n6.13_12054_Player598-f153ac423f61-20211125-010933.mp4 6.13_3289_Player240-f153ac423f61-20210806-111353.mp4\r\n6.13_12055_Player598-f153ac423f61-20211125-011032.mp4 6.13_328_Player11-f153ac423f61-20210804-170430.mp4\r\n6.13_12056_Player598-f153ac423f61-20211125-011132.mp4 6.13_3290_Player240-f153ac423f61-20210806-111453.mp4\r\n6.13_12057_Player598-f153ac423f61-20211125-011232.mp4 6.13_3291_Player240-f153ac423f61-20210806-111554.mp4\r\n6.13_12058_Player598-f153ac423f61-20211125-011332.mp4 6.13_3292_Player240-f153ac423f61-20210806-111654.mp4\r\n6.13_12059_Player598-f153ac423f61-20211125-011432.mp4 6.13_3293_Player240-f153ac423f61-20210806-111755.mp4\r\n6.13_1205_Player147-f153ac423f61-20211104-112246.mp4 6.13_3294_Player240-f153ac423f61-20210806-111855.mp4\r\n6.13_12060_Player598-f153ac423f61-20211125-011532.mp4 6.13_3295_Player240-f153ac423f61-20210806-111956.mp4\r\n6.13_12061_Player598-f153ac423f61-20211125-011631.mp4 6.13_3296_Player240-f153ac423f61-20210806-112056.mp4\r\n6.13_12062_Player598-f153ac423f61-20211125-011732.mp4 6.13_3297_Player240-f153ac423f61-20210806-112156.mp4\r\n6.13_12063_Player598-f153ac423f61-20211125-011832.mp4 6.13_3298_Player240-f153ac423f61-20210806-112257.mp4\r\n6.13_12064_Player598-f153ac423f61-20211125-011932.mp4 6.13_3299_Player240-f153ac423f61-20210806-112357.mp4\r\n6.13_12065_Player598-f153ac423f61-20211125-012032.mp4 6.13_329_Player11-f153ac423f61-20210804-170533.mp4\r\n6.13_12066_Player598-f153ac423f61-20211125-012132.mp4 6.13_3300_Player240-f153ac423f61-20210806-112458.mp4\r\n6.13_12067_Player599-f153ac423f61-20211107-211246.mp4 6.13_3301_Player240-f153ac423f61-20210806-112559.mp4\r\n6.13_12068_Player599-f153ac423f61-20211107-212006.mp4 6.13_3302_Player240-f153ac423f61-20210806-112700.mp4\r\n6.13_12069_Player599-f153ac423f61-20211107-212710.mp4 6.13_3303_Player240-f153ac423f61-20210806-112803.mp4\r\n6.13_1206_Player147-f153ac423f61-20211104-112407.mp4 6.13_3304_Player240-f153ac423f61-20210806-113020.mp4\r\n6.13_12070_Player599-f153ac423f61-20211107-213418.mp4 6.13_3305_Player240-f153ac423f61-20210806-113121.mp4\r\n6.13_12071_Player599-f153ac423f61-20211107-214121.mp4 6.13_3306_Player240-f153ac423f61-20210806-113222.mp4\r\n6.13_12072_Player599-f153ac423f61-20211107-214827.mp4 6.13_3307_Player240-f153ac423f61-20210806-113324.mp4\r\n6.13_12073_Player599-f153ac423f61-20211107-215530.mp4 6.13_3308_Player240-f153ac423f61-20210806-113426.mp4\r\n6.13_12074_Player599-f153ac423f61-20211107-220333.mp4 6.13_3309_Player240-f153ac423f61-20210806-113528.mp4\r\n6.13_12075_Player599-f153ac423f61-20211107-221141.mp4 6.13_330_Player11-f153ac423f61-20210804-170638.mp4\r\n6.13_12076_Player599-f153ac423f61-20211107-221843.mp4 6.13_3310_Player240-f153ac423f61-20210806-113629.mp4\r\n6.13_12077_Player599-f153ac423f61-20211107-222653.mp4 6.13_3311_Player240-f153ac423f61-20210806-113731.mp4\r\n6.13_12078_Player599-f153ac423f61-20211107-223355.mp4 6.13_3312_Player240-f153ac423f61-20210806-113833.mp4\r\n6.13_12079_Player599-f153ac423f61-20211107-224057.mp4 6.13_3313_Player240-f153ac423f61-20210806-113935.mp4\r\n6.13_1207_Player147-f153ac423f61-20211104-112526.mp4 6.13_3314_Player240-f153ac423f61-20210806-114036.mp4\r\n6.13_12080_Player599-f153ac423f61-20211107-224804.mp4 6.13_3315_Player240-f153ac423f61-20210806-114137.mp4\r\n6.13_12081_Player599-f153ac423f61-20211107-225508.mp4 6.13_3316_Player240-f153ac423f61-20210806-114239.mp4\r\n6.13_12082_Player6-f153ac423f61-20210725-152755.mp4 6.13_3317_Player240-f153ac423f61-20210806-114342.mp4\r\n6.13_12083_Player6-f153ac423f61-20210725-153201.mp4 6.13_3318_Player240-f153ac423f61-20210806-114443.mp4\r\n6.13_12084_Player6-f153ac423f61-20210725-153402.mp4 6.13_3319_Player240-f153ac423f61-20210806-114544.mp4\r\n6.13_12085_Player6-f153ac423f61-20210725-153529.mp4 6.13_331_Player11-f153ac423f61-20210804-170745.mp4\r\n6.13_12086_Player6-f153ac423f61-20210725-153629.mp4 6.13_3320_Player240-f153ac423f61-20210806-114646.mp4\r\n6.13_12087_Player6-f153ac423f61-20210725-153830.mp4 6.13_3321_Player240-f153ac423f61-20210806-114747.mp4\r\n6.13_12088_Player6-f153ac423f61-20210725-154131.mp4 6.13_3322_Player240-f153ac423f61-20210806-114848.mp4\r\n6.13_12089_Player6-f153ac423f61-20210725-154232.mp4 6.13_3323_Player240-f153ac423f61-20210806-114948.mp4\r\n6.13_1208_Player147-f153ac423f61-20211104-112717.mp4 6.13_3324_Player240-f153ac423f61-20210806-115049.mp4\r\n6.13_12090_Player6-f153ac423f61-20210725-154432.mp4 6.13_3325_Player244-f153ac423f61-20210918-000907.mp4\r\n6.13_12091_Player6-f153ac423f61-20210725-154633.mp4 6.13_3326_Player244-f153ac423f61-20210918-001042.mp4\r\n6.13_12092_Player6-f153ac423f61-20210725-154934.mp4 6.13_3327_Player244-f153ac423f61-20210918-001219.mp4\r\n6.13_12093_Player6-f153ac423f61-20210725-155236.mp4 6.13_3328_Player244-f153ac423f61-20210918-001402.mp4\r\n6.13_12094_Player6-f153ac423f61-20210725-155436.mp4 6.13_3329_Player244-f153ac423f61-20210918-001540.mp4\r\n6.13_12095_Player6-f153ac423f61-20210725-155637.mp4 6.13_332_Player11-f153ac423f61-20210804-170849.mp4\r\n6.13_12096_Player6-f153ac423f61-20210725-155838.mp4 6.13_3330_Player244-f153ac423f61-20210918-001714.mp4\r\n6.13_12097_Player6-f153ac423f61-20210725-160039.mp4 6.13_3331_Player244-f153ac423f61-20210918-001848.mp4\r\n6.13_12098_Player6-f153ac423f61-20210725-160239.mp4 6.13_3332_Player244-f153ac423f61-20210918-002014.mp4\r\n6.13_12099_Player6-f153ac423f61-20210725-160440.mp4 6.13_3333_Player244-f153ac423f61-20210918-002141.mp4\r\n6.13_1209_Player147-f153ac423f61-20211104-112913.mp4 6.13_3334_Player244-f153ac423f61-20210918-002310.mp4\r\n6.13_120_Player100-63eefbd0685a-20211220-204538.mp4 6.13_3335_Player244-f153ac423f61-20210918-002441.mp4\r\n6.13_12100_Player6-f153ac423f61-20210725-160742.mp4 6.13_3336_Player244-f153ac423f61-20210918-002621.mp4\r\n6.13_12101_Player6-f153ac423f61-20210725-160945.mp4 6.13_3337_Player244-f153ac423f61-20210918-002806.mp4\r\n6.13_12102_Player6-f153ac423f61-20210725-161146.mp4 6.13_3338_Player244-f153ac423f61-20210918-002926.mp4\r\n6.13_12103_Player6-f153ac423f61-20210725-161347.mp4 6.13_3339_Player244-f153ac423f61-20210918-003047.mp4\r\n6.13_12104_Player6-f153ac423f61-20210725-161548.mp4 6.13_333_Player11-f153ac423f61-20210804-170953.mp4\r\n6.13_12105_Player6-f153ac423f61-20210725-162253.mp4 6.13_3340_Player244-f153ac423f61-20210918-003204.mp4\r\n6.13_12106_Player6-f153ac423f61-20210725-162353.mp4 6.13_3341_Player244-f153ac423f61-20210918-003323.mp4\r\n6.13_12107_Player6-f153ac423f61-20210725-162554.mp4 6.13_3342_Player244-f153ac423f61-20210918-003444.mp4\r\n6.13_12108_Player6-f153ac423f61-20210725-162755.mp4 6.13_3343_Player244-f153ac423f61-20210918-003603.mp4\r\n6.13_12109_Player6-f153ac423f61-20210725-163157.mp4 6.13_3344_Player244-f153ac423f61-20210918-003723.mp4\r\n6.13_1210_Player147-f153ac423f61-20211104-113110.mp4 6.13_3345_Player244-f153ac423f61-20210918-003845.mp4\r\n6.13_12110_Player600-f153ac423f61-20211214-130247.mp4 6.13_3346_Player244-f153ac423f61-20210918-004003.mp4\r\n6.13_12111_Player600-f153ac423f61-20211214-130433.mp4 6.13_3347_Player244-f153ac423f61-20210918-004128.mp4\r\n6.13_12112_Player600-f153ac423f61-20211214-130618.mp4 6.13_3348_Player244-f153ac423f61-20210918-004257.mp4\r\n6.13_12113_Player600-f153ac423f61-20211214-130800.mp4 6.13_3349_Player244-f153ac423f61-20210918-004429.mp4\r\n6.13_12114_Player600-f153ac423f61-20211214-130953.mp4 6.13_334_Player11-f153ac423f61-20210804-171057.mp4\r\n6.13_12115_Player600-f153ac423f61-20211214-131146.mp4 6.13_3350_Player244-f153ac423f61-20210918-004558.mp4\r\n6.13_12116_Player601-74b7a1ee2676-20211011-202240.mp4 6.13_3351_Player244-f153ac423f61-20210918-004728.mp4\r\n6.13_12117_Player601-b0b75e38ced4-20211011-203412.mp4 6.13_3352_Player244-f153ac423f61-20210918-004854.mp4\r\n6.13_12118_Player601-f153ac423f61-20210907-093500.mp4 6.13_3353_Player244-f153ac423f61-20210918-005020.mp4\r\n6.13_12119_Player601-f153ac423f61-20210907-094300.mp4 6.13_3354_Player244-f153ac423f61-20210918-005143.mp4\r\n6.13_1211_Player147-f153ac423f61-20211104-113309.mp4 6.13_3355_Player244-f153ac423f61-20210918-005304.mp4\r\n",,terminal_output +643,6809421,"TERMINAL",0,0,"6.13_12120_Player601-f153ac423f61-20211011-200740.mp4 6.13_3356_Player244-f153ac423f61-20210918-005427.mp4\r\n6.13_12121_Player603-f153ac423f61-20210812-111300.mp4 6.13_3357_Player245-1496af3a8ca7-20210728-223916.mp4\r\n6.13_12122_Player603-f153ac423f61-20210812-111840.mp4 6.13_3358_Player245-1496af3a8ca7-20210728-230720.mp4\r\n6.13_12123_Player603-f153ac423f61-20210812-112213.mp4 6.13_3359_Player245-601553c60159-20210728-215336.mp4\r\n6.13_12124_Player603-f153ac423f61-20210812-112526.mp4 6.13_335_Player11-f153ac423f61-20210804-171159.mp4\r\n6.13_12125_Player603-f153ac423f61-20210812-113146.mp4 6.13_3360_Player245-f153ac423f61-20210728-201925.mp4\r\n6.13_12126_Player603-f153ac423f61-20210812-113454.mp4 6.13_3361_Player245-f153ac423f61-20210728-204423.mp4\r\n6.13_12127_Player603-f153ac423f61-20210812-113758.mp4 6.13_3362_Player245-f153ac423f61-20210728-211119.mp4\r\n6.13_12128_Player603-f153ac423f61-20210812-114146.mp4 6.13_3363_Player245-f153ac423f61-20210728-213710.mp4\r\n6.13_12129_Player603-f153ac423f61-20210812-114454.mp4 6.13_3364_Player247-7aab7365de92-20210805-230604.mp4\r\n6.13_1212_Player147-f153ac423f61-20211104-113436.mp4 6.13_3365_Player247-7aab7365de92-20210805-230706.mp4\r\n6.13_12130_Player604-f153ac423f61-20210822-103635.mp4 6.13_3366_Player247-7aab7365de92-20210805-230808.mp4\r\n6.13_12131_Player607-f153ac423f61-20210909-212725.mp4 6.13_3367_Player247-7aab7365de92-20210805-230908.mp4\r\n6.13_12132_Player607-f153ac423f61-20211019-192629.mp4 6.13_3368_Player247-7aab7365de92-20210805-231009.mp4\r\n6.13_12133_Player608-f153ac423f61-20210723-155107.mp4 6.13_3369_Player247-7aab7365de92-20210805-231110.mp4\r\n6.13_12134_Player608-f153ac423f61-20210723-155445.mp4 6.13_336_Player11-f153ac423f61-20210804-171302.mp4\r\n6.13_12135_Player608-f153ac423f61-20210723-155908.mp4 6.13_3370_Player247-7aab7365de92-20210805-231210.mp4\r\n6.13_12136_Player608-f153ac423f61-20210723-160320.mp4 6.13_3371_Player247-7aab7365de92-20210805-231310.mp4\r\n6.13_12137_Player608-f153ac423f61-20210723-160728.mp4 6.13_3372_Player247-7aab7365de92-20210805-231411.mp4\r\n6.13_12138_Player608-f153ac423f61-20210723-161154.mp4 6.13_3373_Player247-7aab7365de92-20210805-231511.mp4\r\n6.13_12139_Player608-f153ac423f61-20210723-161621.mp4 6.13_3374_Player247-7aab7365de92-20210805-231612.mp4\r\n6.13_1213_Player147-f153ac423f61-20211104-113602.mp4 6.13_3375_Player247-7aab7365de92-20210805-231712.mp4\r\n6.13_12140_Player608-f153ac423f61-20210723-162028.mp4 6.13_3376_Player247-7aab7365de92-20210805-231813.mp4\r\n6.13_12141_Player608-f153ac423f61-20210723-162340.mp4 6.13_3377_Player247-7aab7365de92-20210805-231913.mp4\r\n6.13_12142_Player608-f153ac423f61-20210723-162758.mp4 6.13_3378_Player247-7aab7365de92-20210805-232014.mp4\r\n6.13_12143_Player608-f153ac423f61-20210723-163113.mp4 6.13_3379_Player247-7aab7365de92-20210805-232115.mp4\r\n6.13_12144_Player608-f153ac423f61-20210723-163417.mp4 6.13_337_Player11-f153ac423f61-20210804-171405.mp4\r\n6.13_12145_Player608-f153ac423f61-20210723-163724.mp4 6.13_3380_Player247-7aab7365de92-20210805-232217.mp4\r\n6.13_12146_Player608-f153ac423f61-20210723-164131.mp4 6.13_3381_Player247-7aab7365de92-20210805-232319.mp4\r\n6.13_12147_Player608-f153ac423f61-20210723-164536.mp4 6.13_3382_Player247-7aab7365de92-20210805-232420.mp4\r\n6.13_12148_Player608-f153ac423f61-20210723-164942.mp4 6.13_3383_Player247-7aab7365de92-20210805-232522.mp4\r\n6.13_12149_Player608-f153ac423f61-20210723-165246.mp4 6.13_3384_Player247-7aab7365de92-20210805-232624.mp4\r\n6.13_1214_Player147-f153ac423f61-20211104-113746.mp4 6.13_3385_Player247-7aab7365de92-20210805-232726.mp4\r\n6.13_12150_Player608-f153ac423f61-20210723-165656.mp4 6.13_3386_Player247-7aab7365de92-20210805-232827.mp4\r\n6.13_12151_Player608-f153ac423f61-20210723-170110.mp4 6.13_3387_Player247-7aab7365de92-20210805-232930.mp4\r\n6.13_12152_Player608-f153ac423f61-20210723-170519.mp4 6.13_3388_Player247-7aab7365de92-20210805-233030.mp4\r\n6.13_12153_Player608-f153ac423f61-20210723-170924.mp4 6.13_3389_Player247-7aab7365de92-20210805-233132.mp4\r\n6.13_12154_Player608-f153ac423f61-20210723-171332.mp4 6.13_338_Player11-f153ac423f61-20210804-171508.mp4\r\n6.13_12155_Player610-046bccab6b75-20210828-193427.mp4 6.13_3390_Player247-dd58fbd246fe-20210805-230048.mp4\r\n6.13_12156_Player610-2bf9dfe0e558-20210828-165727.mp4 6.13_3391_Player247-dd58fbd246fe-20210805-230158.mp4\r\n6.13_12157_Player610-5a268fb57b4f-20210828-162658.mp4 6.13_3392_Player247-dd58fbd246fe-20210805-230305.mp4\r\n6.13_12158_Player610-5a268fb57b4f-20210828-162801.mp4 6.13_3393_Player247-dd58fbd246fe-20210805-230418.mp4\r\n6.13_12159_Player610-5a268fb57b4f-20210828-162904.mp4 6.13_3394_Player247-dd58fbd246fe-20210805-230533.mp4\r\n6.13_1215_Player147-f153ac423f61-20211104-113931.mp4 6.13_3395_Player247-f153ac423f61-20210805-221819.mp4\r\n6.13_12160_Player610-5a268fb57b4f-20210828-163012.mp4 6.13_3396_Player247-f153ac423f61-20210805-221925.mp4\r\n6.13_12161_Player610-5a268fb57b4f-20210828-163120.mp4 6.13_3397_Player247-f153ac423f61-20210805-222027.mp4\r\n6.13_12162_Player610-5a268fb57b4f-20210828-163222.mp4 6.13_3398_Player247-f153ac423f61-20210805-222128.mp4\r\n6.13_12163_Player610-5a268fb57b4f-20210828-163325.mp4 6.13_3399_Player247-f153ac423f61-20210805-222229.mp4\r\n6.13_12164_Player610-5a268fb57b4f-20210828-163428.mp4 6.13_339_Player11-f153ac423f61-20210804-171610.mp4\r\n6.13_12165_Player610-5a268fb57b4f-20210828-163530.mp4 6.13_3400_Player247-f153ac423f61-20210805-222329.mp4\r\n6.13_12166_Player610-5a268fb57b4f-20210828-163633.mp4 6.13_3401_Player247-f153ac423f61-20210805-222430.mp4\r\n6.13_12167_Player610-5a268fb57b4f-20210828-163839.mp4 6.13_3402_Player247-f153ac423f61-20210805-222534.mp4\r\n6.13_12168_Player610-5a268fb57b4f-20210828-164044.mp4 6.13_3403_Player247-f153ac423f61-20210805-222635.mp4\r\n6.13_12169_Player610-5a268fb57b4f-20210828-164147.mp4 6.13_3404_Player247-f153ac423f61-20210805-222736.mp4\r\n6.13_1216_Player147-f153ac423f61-20211104-114125.mp4 6.13_3405_Player247-f153ac423f61-20210805-222838.mp4\r\n6.13_12170_Player610-5a268fb57b4f-20210828-164249.mp4 6.13_3406_Player247-f153ac423f61-20210805-222938.mp4\r\n6.13_12171_Player610-5a268fb57b4f-20210828-164351.mp4 6.13_3407_Player247-f153ac423f61-20210805-223039.mp4\r\n6.13_12172_Player610-5a268fb57b4f-20210828-164452.mp4 6.13_3408_Player247-f153ac423f61-20210805-223140.mp4\r\n6.13_12173_Player610-5a268fb57b4f-20210828-164655.mp4 6.13_3409_Player247-f153ac423f61-20210805-223240.mp4\r\n6.13_12174_Player610-5a268fb57b4f-20210828-164757.mp4 6.13_340_Player11-f153ac423f61-20210804-171713.mp4\r\n6.13_12175_Player610-5a268fb57b4f-20210828-165000.mp4 6.13_3410_Player247-f153ac423f61-20210805-223341.mp4\r\n6.13_12176_Player610-5a268fb57b4f-20210828-165103.mp4 6.13_3411_Player247-f153ac423f61-20210805-223441.mp4\r\n6.13_12177_Player610-5a268fb57b4f-20210828-165337.mp4 6.13_3412_Player247-f153ac423f61-20210805-223541.mp4\r\n6.13_12178_Player610-5a268fb57b4f-20210828-165503.mp4 6.13_3413_Player247-f153ac423f61-20210805-223641.mp4\r\n6.13_12179_Player610-c4ac1de0c79d-20210828-190248.mp4 6.13_3414_Player247-f153ac423f61-20210805-223742.mp4\r\n6.13_1217_Player147-f153ac423f61-20211104-114315.mp4 6.13_3415_Player247-f153ac423f61-20210805-223842.mp4\r\n6.13_12180_Player610-c4ac1de0c79d-20210828-190350.mp4 6.13_3416_Player247-f153ac423f61-20210805-223943.mp4\r\n6.13_12181_Player610-c4ac1de0c79d-20210828-190451.mp4 6.13_3417_Player247-f153ac423f61-20210805-224045.mp4\r\n6.13_12182_Player610-c4ac1de0c79d-20210828-190552.mp4 6.13_3418_Player247-f153ac423f61-20210805-224145.mp4\r\n6.13_12183_Player610-c4ac1de0c79d-20210828-190654.mp4 6.13_3419_Player247-f153ac423f61-20210805-224246.mp4\r\n6.13_12184_Player610-c4ac1de0c79d-20210828-190859.mp4 6.13_341_Player11-f153ac423f61-20210804-171814.mp4\r\n6.13_12185_Player610-f153ac423f61-20210828-155605.mp4 6.13_3420_Player247-f153ac423f61-20210805-224346.mp4\r\n6.13_12186_Player610-f153ac423f61-20210828-155713.mp4 6.13_3421_Player247-f153ac423f61-20210805-224447.mp4\r\n6.13_12187_Player610-f153ac423f61-20210828-155816.mp4 6.13_3422_Player247-f153ac423f61-20210805-224547.mp4\r\n6.13_12188_Player610-f153ac423f61-20210828-155919.mp4 6.13_3423_Player247-f153ac423f61-20210805-224648.mp4\r\n6.13_12189_Player610-f153ac423f61-20210828-160022.mp4 6.13_3424_Player247-f153ac423f61-20210805-224748.mp4\r\n6.13_1218_Player147-f153ac423f61-20211104-114502.mp4 6.13_3425_Player247-f153ac423f61-20210805-224849.mp4\r\n6.13_12190_Player610-f153ac423f61-20210828-160126.mp4 6.13_3426_Player247-f153ac423f61-20210805-224949.mp4\r\n6.13_12191_Player610-f153ac423f61-20210828-160331.mp4 6.13_3427_Player247-f153ac423f61-20210805-225049.mp4\r\n6.13_12192_Player610-f153ac423f61-20210828-160431.mp4 6.13_3428_Player247-f153ac423f61-20210805-225150.mp4\r\n6.13_12193_Player610-f153ac423f61-20210828-160634.mp4 6.13_3429_Player247-f153ac423f61-20210805-225250.mp4\r\n6.13_12194_Player610-f153ac423f61-20210828-160839.mp4 6.13_342_Player11-f153ac423f61-20210804-171915.mp4\r\n6.13_12195_Player610-f153ac423f61-20210828-160942.mp4 6.13_3430_Player247-f153ac423f61-20210805-225351.mp4\r\n6.13_12196_Player610-f153ac423f61-20210828-161044.mp4 6.13_3431_Player247-f153ac423f61-20210805-225452.mp4\r\n6.13_12197_Player610-f153ac423f61-20210828-161147.mp4 6.13_3432_Player247-f153ac423f61-20210805-225557.mp4\r\n6.13_12198_Player610-f153ac423f61-20210828-161356.mp4 6.13_3433_Player247-f153ac423f61-20210805-225700.mp4\r\n6.13_12199_Player610-f153ac423f61-20210828-161458.mp4 6.13_3434_Player247-f153ac423f61-20210805-225801.mp4\r\n6.13_1219_Player147-f153ac423f61-20211104-114645.mp4 6.13_3435_Player247-f153ac423f61-20210805-225904.mp4\r\n6.13_121_Player100-63eefbd0685a-20211220-204738.mp4 6.13_3436_Player247-f153ac423f61-20210805-230005.mp4\r\n6.13_12200_Player610-f153ac423f61-20210828-161704.mp4 6.13_3437_Player247-f153ac423f61-20210811-203504.mp4\r\n6.13_12201_Player610-f153ac423f61-20210828-161909.mp4 6.13_3438_Player247-f153ac423f61-20210811-203610.mp4\r\n6.13_12202_Player610-f153ac423f61-20210828-162011.mp4 6.13_3439_Player247-f153ac423f61-20210811-203713.mp4\r\n6.13_12203_Player610-f153ac423f61-20210828-162216.mp4 6.13_343_Player11-f153ac423f61-20210804-172016.mp4\r\n6.13_12204_Player610-f153ac423f61-20210828-162422.mp4 6.13_3440_Player247-f153ac423f61-20210811-203814.mp4\r\n6.13_12205_Player617-f153ac423f61-20210725-175455.mp4 6.13_3441_Player247-f153ac423f61-20210811-203916.mp4\r\n6.13_12206_Player617-f153ac423f61-20210725-175702.mp4 6.13_3442_Player247-f153ac423f61-20210811-204018.mp4\r\n6.13_12207_Player617-f153ac423f61-20210725-180004.mp4 6.13_3443_Player247-f153ac423f61-20210811-204121.mp4\r\n6.13_12208_Player617-f153ac423f61-20210725-180506.mp4 6.13_3444_Player247-f153ac423f61-20210811-204223.mp4\r\n6.13_12209_Player617-f153ac423f61-20210725-180707.mp4 6.13_3445_Player247-f153ac423f61-20210811-204324.mp4\r\n6.13_1220_Player147-f153ac423f61-20211104-114831.mp4 6.13_3446_Player247-f153ac423f61-20210811-204425.mp4\r\n6.13_12210_Player617-f153ac423f61-20210725-181245.mp4 6.13_3447_Player247-f153ac423f61-20210811-204528.mp4\r\n6.13_12211_Player617-f153ac423f61-20210725-181848.mp4 6.13_3448_Player247-f153ac423f61-20210811-204631.mp4\r\n6.13_12212_Player617-f153ac423f61-20210725-183153.mp4 6.13_3449_Player247-f153ac423f61-20210811-204733.mp4\r\n6.13_12213_Player617-f153ac423f61-20210725-185504.mp4 6.13_344_Player11-f153ac423f61-20210804-172117.mp4\r\n6.13_12214_Player617-f153ac423f61-20210725-191822.mp4 6.13_3450_Player247-f153ac423f61-20210811-204835.mp4\r\n6.13_12215_Player618-b48104991cc2-20211219-122000.mp4 6.13_3451_Player247-f153ac423f61-20210811-204936.mp4\r\n6.13_12216_Player618-b48104991cc2-20211219-122713.mp4 6.13_3452_Player247-f153ac423f61-20210811-205037.mp4\r\n6.13_12217_Player618-b48104991cc2-20211219-123429.mp4 6.13_3453_Player247-f153ac423f61-20210811-205137.mp4\r\n6.13_12218_Player618-b48104991cc2-20211219-124146.mp4 6.13_3454_Player247-f153ac423f61-20210811-205238.mp4\r\n6.13_12219_Player618-b48104991cc2-20211219-125005.mp4 6.13_3455_Player247-f153ac423f61-20210811-205339.mp4\r\n6.13_1221_Player147-f153ac423f61-20211104-115014.mp4 6.13_3456_Player247-f153ac423f61-20210811-205440.mp4\r\n6.13_12220_Player618-b48104991cc2-20211219-125719.mp4 6.13_3457_Player247-f153ac423f61-20210811-205541.mp4\r\n6.13_12221_Player618-b48104991cc2-20211219-130429.mp4 6.13_3458_Player247-f153ac423f61-20210811-205641.mp4\r\n6.13_12222_Player618-b48104991cc2-20211219-131156.mp4 6.13_3459_Player247-f153ac423f61-20210811-205742.mp4\r\n6.13_12223_Player618-b48104991cc2-20211219-131905.mp4 6.13_345_Player11-f153ac423f61-20210804-172218.mp4\r\n6.13_12224_Player618-b48104991cc2-20211219-132743.mp4 6.13_3460_Player247-f153ac423f61-20210811-205843.mp4\r\n6.13_12225_Player618-f153ac423f61-20211219-095957.mp4 6.13_3461_Player247-f153ac423f61-20210811-205944.mp4\r\n6.13_12226_Player618-f153ac423f61-20211219-100710.mp4 6.13_3462_Player247-f153ac423f61-20210811-210045.mp4\r\n6.13_12227_Player618-f153ac423f61-20211219-101413.mp4 6.13_3463_Player247-f153ac423f61-20210811-210145.mp4\r\n6.13_12228_Player618-f153ac423f61-20211219-102122.mp4 6.13_3464_Player247-f153ac423f61-20210811-210246.mp4\r\n6.13_12229_Player618-f153ac423f61-20211219-102826.mp4 6.13_3465_Player247-f153ac423f61-20210811-210347.mp4\r\n6.13_1222_Player147-f153ac423f61-20211104-115148.mp4 6.13_3466_Player247-f153ac423f61-20210811-210448.mp4\r\n6.13_12230_Player618-f153ac423f61-20211219-103537.mp4 6.13_3467_Player247-f153ac423f61-20210811-210549.mp4\r\n6.13_12231_Player618-f153ac423f61-20211219-104252.mp4 6.13_3468_Player247-f153ac423f61-20210811-210650.mp4\r\n6.13_12232_Player618-f153ac423f61-20211219-104959.mp4 6.13_3469_Player247-f153ac423f61-20210811-210751.mp4\r\n6.13_12233_Player618-f153ac423f61-20211219-105712.mp4 6.13_346_Player11-fa5159f896de-20210804-172633.mp4\r\n6.13_12234_Player618-f153ac423f61-20211219-110426.mp4 6.13_3470_Player247-f153ac423f61-20210811-210852.mp4\r\n6.13_12235_Player618-f153ac423f61-20211219-111136.mp4 6.13_3471_Player247-f153ac423f61-20210811-210953.mp4\r\n6.13_12236_Player618-f153ac423f61-20211219-111841.mp4 6.13_3472_Player247-f153ac423f61-20210811-211054.mp4\r\n6.13_12237_Player618-f153ac423f61-20211219-112548.mp4 6.13_3473_Player247-f153ac423f61-20210811-211155.mp4\r\n6.13_12238_Player618-f153ac423f61-20211219-113256.mp4 6.13_3474_Player247-f153ac423f61-20210811-211256.mp4\r\n6.13_12239_Player618-f153ac423f61-20211219-114007.mp4 6.13_3475_Player247-f153ac423f61-20210811-211357.mp4\r\n6.13_1223_Player147-f153ac423f61-20211104-115251.mp4 6.13_3476_Player247-f153ac423f61-20210811-211458.mp4\r\n6.13_12240_Player618-f153ac423f61-20211219-114723.mp4 6.13_3477_Player247-f153ac423f61-20210811-211601.mp4\r\n6.13_12241_Player618-f153ac423f61-20211219-115436.mp4 6.13_3478_Player247-f153ac423f61-20210811-211702.mp4\r\n6.13_12242_Player62-f153ac423f61-20211013-132602.mp4 6.13_3479_Player247-f153ac423f61-20210811-211803.mp4\r\n6.13_12243_Player62-f153ac423f61-20211013-132707.mp4 6.13_347_Player11-fa5159f896de-20210804-172958.mp4\r\n6.13_12244_Player62-f153ac423f61-20211013-132812.mp4 6.13_3480_Player248-f153ac423f61-20211022-082136.mp4\r\n6.13_12245_Player62-f153ac423f61-20211013-132913.mp4 6.13_3481_Player248-f153ac423f61-20211022-082748.mp4\r\n6.13_12246_Player62-f153ac423f61-20211013-133014.mp4 6.13_3482_Player248-f153ac423f61-20211022-083356.mp4\r\n6.13_12247_Player620-77264b73100b-20210810-223219.mp4 6.13_3483_Player248-f153ac423f61-20211022-083958.mp4\r\n6.13_12248_Player620-77264b73100b-20210810-223323.mp4 6.13_3484_Player248-f153ac423f61-20211022-084602.mp4\r\n6.13_12249_Player620-77264b73100b-20210810-223427.mp4 6.13_3485_Player248-f153ac423f61-20211022-085206.mp4\r\n6.13_1224_Player147-f153ac423f61-20211104-115355.mp4 6.13_3486_Player248-f153ac423f61-20211022-085807.mp4\r\n6.13_12250_Player620-77264b73100b-20210810-223529.mp4 6.13_3487_Player248-f153ac423f61-20211022-090408.mp4\r\n6.13_12251_Player620-77264b73100b-20210810-223633.mp4 6.13_3488_Player248-f153ac423f61-20211022-091014.mp4\r\n6.13_12252_Player620-77264b73100b-20210810-223736.mp4 6.13_3489_Player248-f153ac423f61-20211022-091626.mp4\r\n6.13_12253_Player620-77264b73100b-20210810-223838.mp4 6.13_348_Player11-fa5159f896de-20210804-173104.mp4\r\n6.13_12254_Player620-77264b73100b-20210810-223942.mp4 6.13_3490_Player248-f153ac423f61-20211022-092228.mp4\r\n6.13_12255_Player620-77264b73100b-20210810-224047.mp4 6.13_3491_Player248-f153ac423f61-20211022-092933.mp4\r\n6.13_12256_Player620-77264b73100b-20210810-224153.mp4 6.13_3492_Player248-f153ac423f61-20211022-093537.mp4\r\n6.13_12257_Player620-77264b73100b-20210810-224259.mp4 6.13_3493_Player248-f153ac423f61-20211022-094138.mp4\r\n6.13_12258_Player620-77264b73100b-20210810-224406.mp4 6.13_3494_Player248-f153ac423f61-20211022-094843.mp4\r\n6.13_12259_Player620-de5557881971-20210810-224510.mp4 6.13_3495_Player248-f153ac423f61-20211022-095445.mp4\r\n6.13_1225_Player147-f153ac423f61-20211104-115459.mp4 6.13_3496_Player248-f153ac423f61-20211022-100046.mp4\r\n6.13_12260_Player620-de5557881971-20210810-224614.mp4 6.13_3497_Player248-f153ac423f61-20211022-100650.mp4\r\n6.13_12261_Player620-de5557881971-20210810-224718.mp4 6.13_3498_Player248-f153ac423f61-20211022-101251.mp4\r\n6.13_12262_Player620-de5557881971-20210810-224822.mp4 6.13_3499_Player248-f153ac423f61-20211022-102000.mp4\r\n6.13_12263_Player620-de5557881971-20210810-224924.mp4 6.13_349_Player11-fa5159f896de-20210804-173210.mp4\r\n6.13_12264_Player620-de5557881971-20210810-225029.mp4 6.13_3500_Player248-f153ac423f61-20211022-102602.mp4\r\n6.13_12265_Player620-f153ac423f61-20210810-222541.mp4 6.13_3501_Player248-f153ac423f61-20211022-103203.mp4\r\n6.13_12266_Player620-f153ac423f61-20210810-222649.mp4 6.13_3502_Player248-f153ac423f61-20211022-103807.mp4\r\n6.13_12267_Player620-f153ac423f61-20210810-222757.mp4 6.13_3503_Player248-f153ac423f61-20211022-104508.mp4\r\n6.13_12268_Player620-f153ac423f61-20210810-222913.mp4 6.13_3504_Player248-f153ac423f61-20211022-105110.mp4\r\n6.13_12269_Player620-f153ac423f61-20210810-223023.mp4 6.13_3505_Player248-f153ac423f61-20211022-105819.mp4\r\n6.13_1226_Player147-f153ac423f61-20211104-115602.mp4 6.13_3506_Player248-f153ac423f61-20211022-110419.mp4\r\n6.13_12270_Player620-f153ac423f61-20210810-223132.mp4 6.13_3507_Player248-f153ac423f61-20211022-111127.mp4\r\n6.13_12271_Player620-f153ac423f61-20210913-103945.mp4 6.13_3508_Player248-f153ac423f61-20211022-111728.mp4\r\n6.13_12272_Player620-f153ac423f61-20210913-105525.mp4 6.13_3509_Player248-f153ac423f61-20211201-193433.mp4\r\n6.13_12273_Player620-f153ac423f61-20210913-111158.mp4 6.13_350_Player11-fa5159f896de-20210804-173314.mp4\r\n6.13_12274_Player620-f153ac423f61-20210913-113035.mp4 6.13_3510_Player248-f153ac423f61-20211201-195453.mp4\r\n6.13_12275_Player620-f153ac423f61-20210913-115017.mp4 6.13_3511_Player248-ff08992831f0-20211022-113935.mp4\r\n6.13_12276_Player620-f153ac423f61-20210913-120404.mp4 6.13_3512_Player248-ff08992831f0-20211022-114540.mp4\r\n6.13_12277_Player620-f153ac423f61-20210913-121411.mp4 6.13_3513_Player248-ff08992831f0-20211022-115511.mp4\r\n6.13_12278_Player620-f153ac423f61-20210913-122235.mp4 6.13_3514_Player248-ff08992831f0-20211022-120113.mp4\r\n6.13_12279_Player622-38a08b96c7b6-20211216-103116.mp4 6.13_3515_Player248-ff08992831f0-20211022-120816.mp4\r\n6.13_1227_Player147-f153ac423f61-20211104-115706.mp4 6.13_3516_Player248-ff08992831f0-20211022-121418.mp4\r\n6.13_12280_Player622-38a08b96c7b6-20211216-103219.mp4 6.13_3517_Player249-f153ac423f61-20211113-220528.mp4\r\n6.13_12281_Player622-38a08b96c7b6-20211216-103321.mp4 6.13_3518_Player249-f153ac423f61-20211113-220643.mp4\r\n6.13_12282_Player622-38a08b96c7b6-20211216-103424.mp4 6.13_3519_Player249-f153ac423f61-20211113-220752.mp4\r\n6.13_12283_Player622-38a08b96c7b6-20211216-103526.mp4 6.13_351_Player11-fa5159f896de-20210804-173415.mp4\r\n6.13_12284_Player622-38a08b96c7b6-20211216-103634.mp4 6.13_3520_Player249-f153ac423f61-20211113-220919.mp4\r\n6.13_12285_Player622-38a08b96c7b6-20211216-103739.mp4 6.13_3521_Player249-f153ac423f61-20211113-221050.mp4\r\n6.13_12286_Player622-38a08b96c7b6-20211216-103843.mp4 6.13_3522_Player249-f153ac423f61-20211113-221217.mp4\r\n6.13_12287_Player622-38a08b96c7b6-20211216-103947.mp4 6.13_3523_Player249-f153ac423f61-20211113-221335.mp4\r\n6.13_12288_Player622-38a08b96c7b6-20211216-104053.mp4 6.13_3524_Player249-f153ac423f61-20211113-221805.mp4\r\n6.13_12289_Player622-38a08b96c7b6-20211216-104156.mp4 6.13_3525_Player249-f153ac423f61-20211113-221927.mp4\r\n6.13_1228_Player147-f153ac423f61-20211104-115811.mp4 6.13_3526_Player249-f153ac423f61-20211113-222058.mp4\r\n6.13_12290_Player622-38a08b96c7b6-20211216-104302.mp4 6.13_3527_Player249-f153ac423f61-20211113-222232.mp4\r\n6.13_12291_Player622-38a08b96c7b6-20211216-104407.mp4 6.13_3528_Player249-f153ac423f61-20211113-222354.mp4\r\n6.13_12292_Player622-38a08b96c7b6-20211216-104511.mp4 6.13_3529_Player249-f153ac423f61-20211113-222520.mp4\r\n6.13_12293_Player622-38a08b96c7b6-20211216-104614.mp4 6.13_352_Player11-fa5159f896de-20210804-173516.mp4\r\n6.13_12294_Player622-38a08b96c7b6-20211216-104716.mp4 6.13_3530_Player249-f153ac423f61-20211113-222652.mp4\r\n6.13_12295_Player622-38a08b96c7b6-20211216-104818.mp4 6.13_3531_Player249-f153ac423f61-20211113-222819.mp4\r\n6.13_12296_Player622-38a08b96c7b6-20211216-104925.mp4 6.13_3532_Player249-f153ac423f61-20211113-222956.mp4\r\n6.13_12297_Player622-38a08b96c7b6-20211216-105028.mp4 6.13_3533_Player249-f153ac423f61-20211113-223133.mp4\r\n6.13_12298_Player622-38a08b96c7b6-20211216-105131.mp4 6.13_3534_Player249-f153ac423f61-20211113-223310.mp4\r\n6.13_12299_Player622-38a08b96c7b6-20211216-105234.mp4 6.13_3535_Player249-f153ac423f61-20211113-223448.mp4\r\n6.13_1229_Player147-f153ac423f61-20211104-115914.mp4 6.13_3536_Player249-f153ac423f61-20211113-223624.mp4\r\n6.13_122_Player100-63eefbd0685a-20211220-204939.mp4 6.13_3537_Player249-f153ac423f61-20211113-223801.mp4\r\n6.13_12300_Player622-38a08b96c7b6-20211216-105336.mp4 6.13_3538_Player249-f153ac423f61-20211113-223938.mp4\r\n6.13_12301_Player622-38a08b96c7b6-20211216-105437.mp4 6.13_3539_Player249-f153ac423f61-20211113-224056.mp4\r\n6.13_12302_Player622-38a08b96c7b6-20211216-105539.mp4 6.13_353_Player11-fa5159f896de-20210804-173619.mp4\r\n6.13_12303_Player622-38a08b96c7b6-20211216-105644.mp4 6.13_3540_Player249-f153ac423f61-20211113-224208.mp4\r\n6.13_12304_Player622-38a08b96c7b6-20211216-105753.mp4 6.13_3541_Player249-f153ac423f61-20211113-224331.mp4\r\n6.13_12305_Player622-38a08b96c7b6-20211216-105859.mp4 6.13_3542_Player249-f153ac423f61-20211113-224450.mp4\r\n6.13_12306_Player622-f153ac423f61-20211216-095748.mp4 6.13_3543_Player249-f153ac423f61-20211113-224611.mp4\r\n6.13_12307_Player622-f153ac423f61-20211216-095856.mp4 6.13_3544_Player249-f153ac423f61-20211113-224743.mp4\r\n6.13_12308_Player622-f153ac423f61-20211216-095958.mp4 6.13_3545_Player249-f153ac423f61-20211113-224904.mp4\r\n6.13_12309_Player622-f153ac423f61-20211216-100102.mp4 6.13_3546_Player249-f153ac423f61-20211113-225024.mp4\r\n6.13_1230_Player147-f153ac423f61-20211104-120017.mp4 6.13_3547_Player249-f153ac423f61-20211113-225156.mp4\r\n6.13_12310_Player622-f153ac423f61-20211216-100210.mp4 6.13_3548_Player249-f153ac423f61-20211113-225337.mp4\r\n6.13_12311_Player622-f153ac423f61-20211216-100321.mp4 6.13_3549_Player249-f153ac423f61-20211113-225543.mp4\r\n6.13_12312_Player622-f153ac423f61-20211216-100429.mp4 6.13_354_Player11-fa5159f896de-20210804-173721.mp4\r\n6.13_12313_Player622-f153ac423f61-20211216-100533.mp4 6.13_3550_Player249-f153ac423f61-20211113-225728.mp4\r\n6.13_12314_Player622-f153ac423f61-20211216-100639.mp4 6.13_3551_Player249-f153ac423f61-20211113-225910.mp4\r\n6.13_12315_Player622-f153ac423f61-20211216-100742.mp4 6.13_3552_Player249-f153ac423f61-20211113-230055.mp4\r\n6.13_12316_Player622-f153ac423f61-20211216-100844.mp4 6.13_3553_Player249-f153ac423f61-20211113-230244.mp4\r\n6.13_12317_Player622-f153ac423f61-20211216-100948.mp4 6.13_3554_Player249-f153ac423f61-20211113-230440.mp4\r\n6.13_12318_Player622-f153ac423f61-20211216-101057.mp4 6.13_3555_Player249-f153ac423f61-20211113-230621.mp4\r\n6.13_12319_Player622-f153ac423f61-20211216-101312.mp4 6.13_3556_Player249-f153ac423f61-20211113-230804.mp4\r\n6.13_1231_Player147-f153ac423f61-20211104-120122.mp4 6.13_3557_Player249-f153ac423f61-20211113-230947.mp4\r\n6.13_12320_Player622-f153ac423f61-20211216-101420.mp4 6.13_3558_Player249-f153ac423f61-20211113-231133.mp4\r\n6.13_12321_Player622-f153ac423f61-20211216-101526.mp4 6.13_3559_Player249-f153ac423f61-20211113-231328.mp4\r\n6.13_12322_Player622-f153ac423f61-20211216-101632.mp4 6.13_355_Player11-fa5159f896de-20210804-173822.mp4\r\n6.13_12323_Player622-f153ac423f61-20211216-101837.mp4 6.13_3560_Player249-f153ac423f61-20211113-231517.mp4\r\n6.13_12324_Player622-f153ac423f61-20211216-101943.mp4 6.13_3561_Player249-f153ac423f61-20211113-231711.mp4\r\n6.13_12325_Player622-f153ac423f61-20211216-102145.mp4 6.13_3562_Player249-f153ac423f61-20211113-231911.mp4\r\n6.13_12326_Player622-f153ac423f61-20211216-102246.mp4 6.13_3563_Player249-f153ac423f61-20211113-232056.mp4\r\n6.13_12327_Player622-f153ac423f61-20211216-102448.mp4 6.13_3564_Player249-f153ac423f61-20211113-232244.mp4\r\n6.13_12328_Player622-f153ac423f61-20211216-102650.mp4 6.13_3565_Player249-f153ac423f61-20211113-232434.mp4\r\n6.13_12329_Player622-f153ac423f61-20211216-102752.mp4 6.13_3566_Player249-f153ac423f61-20211113-232615.mp4\r\n6.13_1232_Player147-f153ac423f61-20211104-120229.mp4 6.13_3567_Player249-f153ac423f61-20211113-232807.mp4\r\n6.13_12330_Player622-f153ac423f61-20211216-102955.mp4 6.13_3568_Player249-f153ac423f61-20211113-233001.mp4\r\n6.13_12331_Player626-f153ac423f61-20210927-200026.mp4 6.13_3569_Player249-f153ac423f61-20211113-233145.mp4\r\n6.13_12332_Player626-f153ac423f61-20210927-201234.mp4 6.13_356_Player11-fa5159f896de-20210804-173923.mp4\r\n6.13_12333_Player626-f153ac423f61-20210927-202256.mp4 6.13_3570_Player249-f153ac423f61-20211113-233335.mp4\r\n6.13_12334_Player626-f153ac423f61-20210927-203841.mp4 6.13_3571_Player249-f153ac423f61-20211113-233528.mp4\r\n6.13_12335_Player626-f153ac423f61-20210927-210025.mp4 6.13_3572_Player249-f153ac423f61-20211113-233714.mp4\r\n6.13_12336_Player626-f153ac423f61-20210927-211621.mp4 6.13_3573_Player249-f153ac423f61-20211113-233907.mp4\r\n6.13_12337_Player626-f153ac423f61-20211217-211526.mp4 6.13_3574_Player249-f153ac423f61-20211113-234053.mp4\r\n6.13_12338_Player626-f153ac423f61-20211217-211743.mp4 6.13_3575_Player249-f153ac423f61-20211113-234209.mp4\r\n6.13_12339_Player626-f153ac423f61-20211217-211959.mp4 6.13_3576_Player249-f153ac423f61-20211113-234328.mp4\r\n6.13_1233_Player147-f153ac423f61-20211104-120335.mp4 6.13_3577_Player249-f153ac423f61-20211113-234446.mp4\r\n6.13_12340_Player626-f153ac423f61-20211217-212202.mp4 6.13_3578_Player249-f153ac423f61-20211113-234606.mp4\r\n6.13_12341_Player626-f153ac423f61-20211217-212413.mp4 6.13_3579_Player249-f153ac423f61-20211113-234713.mp4\r\n6.13_12342_Player626-f153ac423f61-20211217-212626.mp4 6.13_357_Player11-fa5159f896de-20210804-174024.mp4\r\n6.13_12343_Player626-f153ac423f61-20211217-212837.mp4 6.13_3580_Player249-f153ac423f61-20211113-234815.mp4\r\n6.13_12344_Player626-f153ac423f61-20211217-213059.mp4 6.13_3581_Player249-f153ac423f61-20211113-234920.mp4\r\n6.13_12345_Player626-f153ac423f61-20211217-213345.mp4 6.13_3582_Player249-f153ac423f61-20211113-235021.mp4\r\n6.13_12346_Player626-f153ac423f61-20211217-213556.mp4 6.13_3583_Player249-f153ac423f61-20211113-235123.mp4\r\n6.13_12347_Player626-f153ac423f61-20211217-213811.mp4 6.13_3584_Player249-f153ac423f61-20211113-235227.mp4\r\n6.13_12348_Player626-f153ac423f61-20211217-214029.mp4 6.13_3585_Player249-f153ac423f61-20211113-235327.mp4\r\n6.13_12349_Player626-f153ac423f61-20211217-214228.mp4 6.13_3586_Player249-f153ac423f61-20211113-235427.mp4\r\n6.13_1234_Player147-f153ac423f61-20211104-120438.mp4 6.13_3587_Player249-f153ac423f61-20211113-235527.mp4\r\n6.13_12350_Player626-f153ac423f61-20211217-214447.mp4 6.13_3588_Player249-f153ac423f61-20211113-235633.mp4\r\n6.13_12351_Player626-f153ac423f61-20211217-214719.mp4 6.13_3589_Player249-f153ac423f61-20211113-235809.mp4\r\n6.13_12352_Player626-f153ac423f61-20211217-214936.mp4 6.13_358_Player11-fa5159f896de-20210804-174125.mp4\r\n6.13_12353_Player626-f153ac423f61-20211217-215156.mp4 6.13_3590_Player249-f153ac423f61-20211113-235931.mp4\r\n6.13_12354_Player626-f153ac423f61-20211217-215415.mp4 6.13_3591_Player249-f153ac423f61-20211114-000038.mp4\r\n6.13_12355_Player626-f153ac423f61-20211217-215642.mp4 6.13_3592_Player249-f153ac423f61-20211114-000144.mp4\r\n6.13_12356_Player626-f153ac423f61-20211217-215904.mp4 6.13_3593_Player249-f153ac423f61-20211114-000304.mp4\r\n6.13_12357_Player626-f153ac423f61-20211217-220126.mp4 6.13_3594_Player249-f153ac423f61-20211114-000424.mp4\r\n6.13_12358_Player626-f153ac423f61-20211217-220343.mp4 6.13_3595_Player249-f153ac423f61-20211114-000544.mp4\r\n6.13_12359_Player626-f153ac423f61-20211217-220558.mp4 6.13_3596_Player249-f153ac423f61-20211114-000704.mp4\r\n6.13_1235_Player147-f153ac423f61-20211104-120545.mp4 6.13_3597_Player249-f153ac423f61-20211114-000822.mp4\r\n6.13_12360_Player626-f153ac423f61-20211217-220820.mp4 6.13_3598_Player249-f153ac423f61-20211114-000941.mp4\r\n6.13_12361_Player626-f153ac423f61-20211217-221049.mp4 6.13_3599_Player249-f153ac423f61-20211114-001101.mp4\r\n6.13_12362_Player626-f153ac423f61-20211217-221316.mp4 6.13_359_Player11-fa5159f896de-20210804-174227.mp4\r\n6.13_12363_Player626-f153ac423f61-20211217-221538.mp4 6.13_3600_Player249-f153ac423f61-20211114-001221.mp4\r\n6.13_12364_Player626-f153ac423f61-20211217-221816.mp4 6.13_3601_Player249-f153ac423f61-20211114-001324.mp4\r\n6.13_12365_Player626-f153ac423f61-20211217-222016.mp4 6.13_3602_Player249-f153ac423f61-20211114-001428.mp4\r\n6.13_12366_Player626-f153ac423f61-20211217-222224.mp4 6.13_3603_Player249-f153ac423f61-20211114-001531.mp4\r\n6.13_12367_Player626-f153ac423f61-20211217-222435.mp4 6.13_3604_Player249-f153ac423f61-20211114-001634.mp4\r\n6.13_12368_Player626-f153ac423f61-20211217-222627.mp4 6.13_3605_Player25-f153ac423f61-20210807-162438.mp4\r\n6.13_12369_Player626-f153ac423f61-20211217-222816.mp4 6.13_3606_Player25-f153ac423f61-20210807-162544.mp4\r\n6.13_1236_Player147-f153ac423f61-20211104-120650.mp4 6.13_3607_Player25-f153ac423f61-20210807-162650.mp4\r\n6.13_12370_Player626-f153ac423f61-20211217-223006.mp4 6.13_3608_Player25-f153ac423f61-20210807-162751.mp4\r\n6.13_12371_Player626-f153ac423f61-20211217-223158.mp4 6.13_3609_Player25-f153ac423f61-20210807-162852.mp4\r\n6.13_12372_Player626-f153ac423f61-20211217-223350.mp4 6.13_360_Player11-fa5159f896de-20210804-174330.mp4\r\n6.13_12373_Player626-f153ac423f61-20211217-223543.mp4 6.13_3610_Player25-f153ac423f61-20210807-162955.mp4\r\n6.13_12374_Player626-f153ac423f61-20211217-223728.mp4 6.13_3611_Player25-f153ac423f61-20210807-163057.mp4\r\n6.13_12375_Player626-f153ac423f61-20211217-223923.mp4 6.13_3612_Player25-f153ac423f61-20210807-163158.mp4\r\n6.13_12376_Player626-f153ac423f61-20211217-224126.mp4 6.13_3613_Player25-f153ac423f61-20210807-163258.mp4\r\n6.13_12377_Player626-f153ac423f61-20211217-224305.mp4 6.13_3614_Player25-f153ac423f61-20210807-163359.mp4\r\n6.13_12378_Player626-f153ac423f61-20211217-224450.mp4 6.13_3615_Player25-f153ac423f61-20210807-163502.mp4\r\n6.13_12379_Player626-f153ac423f61-20211217-224653.mp4 6.13_3616_Player25-f153ac423f61-20210807-163607.mp4\r\n6.13_1237_Player147-f153ac423f61-20211104-120756.mp4 6.13_3617_Player25-f153ac423f61-20210807-163711.mp4\r\n6.13_12380_Player626-f153ac423f61-20211217-224848.mp4 6.13_3618_Player25-f153ac423f61-20210807-163811.mp4\r\n6.13_12381_Player626-f153ac423f61-20211217-225030.mp4 6.13_3619_Player25-f153ac423f61-20210807-163912.mp4\r\n6.13_12382_Player626-f153ac423f61-20211217-225201.mp4 6.13_361_Player11-fa5159f896de-20210804-174431.mp4\r\n6.13_12383_Player626-f153ac423f61-20211217-225339.mp4 6.13_3620_Player25-f153ac423f61-20210807-164012.mp4\r\n6.13_12384_Player626-f153ac423f61-20211217-225521.mp4 6.13_3621_Player25-f153ac423f61-20210807-164112.mp4\r\n6.13_12385_Player626-f153ac423f61-20211217-225706.mp4 6.13_3622_Player25-f153ac423f61-20210807-164212.mp4\r\n6.13_12386_Player626-f153ac423f61-20211217-225852.mp4 6.13_3623_Player25-f153ac423f61-20210807-164313.mp4\r\n6.13_12387_Player626-f153ac423f61-20211217-230117.mp4 6.13_3624_Player25-f153ac423f61-20210807-164413.mp4\r\n6.13_12388_Player629-f153ac423f61-20211218-215804.mp4 6.13_3625_Player25-f153ac423f61-20210807-164514.mp4\r\n6.13_12389_Player629-f153ac423f61-20211218-220049.mp4 6.13_3626_Player25-f153ac423f61-20210807-164616.mp4\r\n6.13_1238_Player147-f153ac423f61-20211104-120903.mp4 6.13_3627_Player25-f153ac423f61-20210807-164721.mp4\r\n6.13_12390_Player629-f153ac423f61-20211218-220348.mp4 6.13_3628_Player25-f153ac423f61-20210807-164831.mp4\r\n6.13_12391_Player629-f153ac423f61-20211218-220634.mp4 6.13_3629_Player25-f153ac423f61-20210807-164941.mp4\r\n6.13_12392_Player629-f153ac423f61-20211218-220930.mp4 6.13_362_Player11-fa5159f896de-20210804-174531.mp4\r\n6.13_12393_Player629-f153ac423f61-20211218-221238.mp4 6.13_3630_Player25-f153ac423f61-20210807-165046.mp4\r\n6.13_12394_Player629-f153ac423f61-20211218-221532.mp4 6.13_3631_Player25-f153ac423f61-20210807-165149.mp4\r\n6.13_12395_Player629-f153ac423f61-20211218-221816.mp4 6.13_3632_Player25-f153ac423f61-20210807-165253.mp4\r\n6.13_12396_Player629-f153ac423f61-20211218-222054.mp4 6.13_3633_Player25-f153ac423f61-20210807-165358.mp4\r\n6.13_12397_Player629-f153ac423f61-20211218-222343.mp4 6.13_3634_Player25-f153ac423f61-20210807-165508.mp4\r\n6.13_12398_Player629-f153ac423f61-20211218-222700.mp4 6.13_3635_Player25-f153ac423f61-20210807-165613.mp4\r\n6.13_12399_Player629-f153ac423f61-20211218-223002.mp4 6.13_3636_Player25-f153ac423f61-20210807-165715.mp4\r\n6.13_1239_Player147-f153ac423f61-20211104-121005.mp4 6.13_3637_Player25-f153ac423f61-20210807-165817.mp4\r\n6.13_123_Player100-63eefbd0685a-20211220-205139.mp4 6.13_3638_Player25-f153ac423f61-20210807-165920.mp4\r\n6.13_12400_Player629-f153ac423f61-20211218-223230.mp4 6.13_3639_Player25-f153ac423f61-20210807-170023.mp4\r\n6.13_12401_Player629-f153ac423f61-20211218-223533.mp4 6.13_363_Player11-fa5159f896de-20210804-174632.mp4\r\n6.13_12402_Player629-f153ac423f61-20211218-223808.mp4 6.13_3640_Player25-f153ac423f61-20210807-170128.mp4\r\n6.13_12403_Player629-f153ac423f61-20211218-224104.mp4 6.13_3641_Player25-f153ac423f61-20210807-170230.mp4\r\n6.13_12404_Player629-f153ac423f61-20211218-224408.mp4 6.13_3642_Player25-f153ac423f61-20210807-170333.mp4\r\n6.13_12405_Player629-f153ac423f61-20211218-224702.mp4 6.13_3643_Player25-f153ac423f61-20210807-170436.mp4\r\n6.13_12406_Player629-f153ac423f61-20211218-224941.mp4 6.13_3644_Player25-f153ac423f61-20210807-170540.mp4\r\n6.13_12407_Player629-f153ac423f61-20211218-225208.mp4 6.13_3645_Player25-f153ac423f61-20210807-170642.mp4\r\n6.13_12408_Player629-f153ac423f61-20211218-225510.mp4 6.13_3646_Player25-f153ac423f61-20210807-170743.mp4\r\n6.13_12409_Player629-f153ac423f61-20211218-225804.mp4 6.13_3647_Player25-f153ac423f61-20210807-170844.mp4\r\n6.13_1240_Player147-f153ac423f61-20211104-121109.mp4 6.13_3648_Player25-f153ac423f61-20210807-170944.mp4\r\n6.13_12410_Player629-f153ac423f61-20211218-230052.mp4 6.13_3649_Player25-f153ac423f61-20210807-171044.mp4\r\n6.13_12411_Player629-f153ac423f61-20211218-230252.mp4 6.13_364_Player11-fa5159f896de-20210804-174732.mp4\r\n6.13_12412_Player629-f153ac423f61-20211218-230505.mp4 6.13_3650_Player25-f153ac423f61-20210807-171145.mp4\r\n6.13_12413_Player629-f153ac423f61-20211218-230734.mp4 6.13_3651_Player25-f153ac423f61-20210807-171245.mp4\r\n6.13_12414_Player629-f153ac423f61-20211218-230923.mp4 6.13_3652_Player25-f153ac423f61-20210807-171345.mp4\r\n6.13_12415_Player629-f153ac423f61-20211218-231102.mp4 6.13_3653_Player25-f153ac423f61-20210807-171446.mp4\r\n6.13_12416_Player629-f153ac423f61-20211218-231247.mp4 6.13_3654_Player25-f153ac423f61-20210807-171546.mp4\r\n6.13_12417_Player629-f153ac423f61-20211218-231429.mp4 6.13_3655_Player25-f153ac423f61-20210807-171646.mp4\r\n6.13_12418_Player629-f153ac423f61-20211218-231558.mp4 6.13_3656_Player25-f153ac423f61-20210807-171747.mp4\r\n6.13_12419_Player629-f153ac423f61-20211218-231729.mp4 6.13_3657_Player25-f153ac423f61-20210807-171848.mp4\r\n6.13_1241_Player147-f153ac423f61-20211104-121212.mp4 6.13_3658_Player25-f153ac423f61-20210807-171948.mp4\r\n6.13_12420_Player629-f153ac423f61-20211218-231901.mp4 6.13_3659_Player25-f153ac423f61-20210807-172050.mp4\r\n6.13_12421_Player629-f153ac423f61-20211218-232050.mp4 6.13_365_Player11-fa5159f896de-20210804-174833.mp4\r\n6.13_12422_Player629-f153ac423f61-20211218-232239.mp4 6.13_3660_Player25-f153ac423f61-20210807-172151.mp4\r\n6.13_12423_Player629-f153ac423f61-20211218-232425.mp4 6.13_3661_Player25-f153ac423f61-20210807-172252.mp4\r\n6.13_12424_Player629-f153ac423f61-20211218-232610.mp4 6.13_3662_Player25-f153ac423f61-20210807-172352.mp4\r\n6.13_12425_Player629-f153ac423f61-20211218-232751.mp4 6.13_3663_Player25-f153ac423f61-20210807-172453.mp4\r\n6.13_12426_Player629-f153ac423f61-20211218-232931.mp4 6.13_3664_Player25-f153ac423f61-20210807-172554.mp4\r\n6.13_12427_Player629-f153ac423f61-20211218-233116.mp4 6.13_3665_Player25-f153ac423f61-20210807-172654.mp4\r\n6.13_12428_Player629-f153ac423f61-20211218-233251.mp4 6.13_3666_Player25-f153ac423f61-20210807-172755.mp4\r\n6.13_12429_Player629-f153ac423f61-20211218-233428.mp4 6.13_3667_Player25-f153ac423f61-20211213-192525.mp4\r\n6.13_1242_Player147-f153ac423f61-20211104-121319.mp4 6.13_3668_Player250-f153ac423f61-20210920-001509.mp4\r\n6.13_12430_Player629-f153ac423f61-20211218-233615.mp4 6.13_3669_Player251-d3f96caba99d-20210831-133546.mp4\r\n6.13_12431_Player629-f153ac423f61-20211218-233839.mp4 6.13_366_Player11-fa5159f896de-20210804-174933.mp4\r\n6.13_12432_Player629-f153ac423f61-20211218-234045.mp4 6.13_3670_Player251-d3f96caba99d-20210831-134308.mp4\r\n6.13_12433_Player629-f153ac423f61-20211218-234254.mp4 6.13_3671_Player251-d3f96caba99d-20210831-135144.mp4\r\n6.13_12434_Player629-f153ac423f61-20211218-234452.mp4 6.13_3672_Player251-d3f96caba99d-20210831-140007.mp4\r\n6.13_12435_Player629-f153ac423f61-20211218-234644.mp4 6.13_3673_Player251-d3f96caba99d-20210831-140819.mp4\r\n6.13_12436_Player629-f153ac423f61-20211218-234837.mp4 6.13_3674_Player251-d3f96caba99d-20210831-141623.mp4\r\n6.13_12437_Player629-f153ac423f61-20211218-235042.mp4 6.13_3675_Player251-d3f96caba99d-20210831-142435.mp4\r\n6.13_12438_Player629-f153ac423f61-20211218-235237.mp4 6.13_3676_Player251-d3f96caba99d-20210831-143220.mp4\r\n6.13_12439_Player629-f153ac423f61-20211218-235434.mp4 6.13_3677_Player251-d3f96caba99d-20210831-144041.mp4\r\n6.13_1243_Player147-f153ac423f61-20211104-121426.mp4 6.13_3678_Player251-d3f96caba99d-20210831-144918.mp4\r\n6.13_12440_Player629-f153ac423f61-20211218-235628.mp4 6.13_3679_Player251-d3f96caba99d-20210831-145644.mp4\r\n6.13_12441_Player629-f153ac423f61-20211218-235840.mp4 6.13_367_Player11-fa5159f896de-20210804-175034.mp4\r\n6.13_12442_Player629-f153ac423f61-20211219-000058.mp4 6.13_3680_Player251-d3f96caba99d-20210831-150637.mp4\r\n6.13_12443_Player629-f153ac423f61-20211219-000319.mp4 6.13_3681_Player251-d3f96caba99d-20210831-151525.mp4\r\n6.13_12444_Player629-f153ac423f61-20211219-000528.mp4 6.13_3682_Player251-d3f96caba99d-20210831-152405.mp4\r\n6.13_12445_Player629-f153ac423f61-20211219-000731.mp4 6.13_3683_Player251-d3f96caba99d-20210831-153330.mp4\r\n6.13_12446_Player629-f153ac423f61-20211219-000928.mp4 6.13_3684_Player251-d3f96caba99d-20210831-154104.mp4\r\n6.13_12447_Player629-f153ac423f61-20211219-001127.mp4 6.13_3685_Player251-d3f96caba99d-20210831-154824.mp4\r\n6.13_12448_Player629-f153ac423f61-20211219-001319.mp4 6.13_3686_Player251-d3f96caba99d-20210831-155755.mp4\r\n6.13_12449_Player629-f153ac423f61-20211219-001528.mp4 6.13_3687_Player251-f153ac423f61-20210831-132006.mp4\r\n6.13_1244_Player147-f153ac423f61-20211104-121529.mp4 6.13_3688_Player251-f153ac423f61-20210831-132804.mp4\r\n6.13_12450_Player629-f153ac423f61-20211219-001721.mp4 6.13_3689_Player252-790ad93f5102-20210731-122645.mp4\r\n6.13_12451_Player629-f153ac423f61-20211219-001914.mp4 6.13_368_Player11-fa5159f896de-20210804-175134.mp4\r\n6.13_12452_Player629-f153ac423f61-20211219-002107.mp4 6.13_3690_Player252-7c272231ce48-20210731-123020.mp4\r\n6.13_12453_Player63-f153ac423f61-20210723-141756.mp4 6.13_3691_Player252-7c272231ce48-20210731-123222.mp4\r\n6.13_12454_Player63-f153ac423f61-20210723-143214.mp4 6.13_3692_Player252-7c272231ce48-20210731-123427.mp4\r\n6.13_12455_Player63-f153ac423f61-20210723-144625.mp4 6.13_3693_Player252-7c272231ce48-20210731-123628.mp4\r\n6.13_12456_Player63-f153ac423f61-20210723-150032.mp4 6.13_3694_Player252-9c077c7586e3-20210731-120716.mp4\r\n6.13_12457_Player63-f153ac423f61-20210723-151440.mp4 6.13_3695_Player252-9c077c7586e3-20210731-120919.mp4\r\n6.13_12458_Player63-f153ac423f61-20210723-152843.mp4 6.13_3696_Player252-9c077c7586e3-20210731-121122.mp4\r\n6.13_12459_Player63-f153ac423f61-20210723-154246.mp4 6.13_3697_Player252-9c077c7586e3-20210731-121325.mp4\r\n6.13_1245_Player147-f153ac423f61-20211104-121636.mp4 6.13_3698_Player252-9c077c7586e3-20210731-121526.mp4\r\n6.13_12460_Player63-f153ac423f61-20210723-155656.mp4 6.13_3699_Player252-a9003311ff1a-20210731-121807.mp4\r\n6.13_12461_Player63-f153ac423f61-20210723-161117.mp4 6.13_369_Player11-fa5159f896de-20210804-175234.mp4\r\n6.13_12462_Player63-f153ac423f61-20210723-162533.mp4 6.13_3700_Player252-ba49e3e09d94-20210731-122842.mp4\r\n6.13_12463_Player63-f153ac423f61-20210723-163947.mp4 6.13_3701_Player252-bbe2e40f4e7d-20210731-120026.mp4\r\n6.13_12464_Player63-f153ac423f61-20210723-165400.mp4 6.13_3702_Player252-bbe2e40f4e7d-20210731-120227.mp4\r\n6.13_12465_Player63-f153ac423f61-20210723-170821.mp4 6.13_3703_Player252-bbe2e40f4e7d-20210731-120429.mp4\r\n6.13_12466_Player63-f153ac423f61-20210916-185612.mp4 6.13_3704_Player252-bfcdf0a10ee0-20210731-121654.mp4\r\n6.13_12467_Player63-f153ac423f61-20210916-190257.mp4 6.13_3705_Player252-ca4529a44fea-20210731-122005.mp4\r\n6.13_12468_Player63-f153ac423f61-20210916-191000.mp4 6.13_3706_Player252-ca4529a44fea-20210731-122208.mp4\r\n6.13_12469_Player630-35ae8d6bdcf5-20210730-223455.mp4 6.13_3707_Player252-ca4529a44fea-20210731-122411.mp4\r\n6.13_1246_Player147-f153ac423f61-20211104-121743.mp4 6.13_3708_Player252-f153ac423f61-20210731-111331.mp4\r\n6.13_12470_Player630-35ae8d6bdcf5-20210730-223600.mp4 6.13_3709_Player252-f153ac423f61-20210731-111746.mp4\r\n6.13_12471_Player630-35ae8d6bdcf5-20210730-223709.mp4 6.13_370_Player11-fa5159f896de-20210804-175335.mp4\r\n6.13_12472_Player630-35ae8d6bdcf5-20210730-223814.mp4 6.13_3710_Player252-f153ac423f61-20210731-112350.mp4\r\n6.13_12473_Player630-35ae8d6bdcf5-20210730-223922.mp4 6.13_3711_Player252-f153ac423f61-20210731-112550.mp4\r\n6.13_12474_Player630-35ae8d6bdcf5-20210730-224030.mp4 6.13_3712_Player252-f153ac423f61-20210731-112752.mp4\r\n6.13_12475_Player630-35ae8d6bdcf5-20210730-224135.mp4 6.13_3713_Player252-f153ac423f61-20210731-112953.mp4\r\n6.13_12476_Player630-35ae8d6bdcf5-20210730-224239.mp4 6.13_3714_Player252-f153ac423f61-20210731-113153.mp4\r\n6.13_12477_Player630-35ae8d6bdcf5-20210730-224349.mp4 6.13_3715_Player252-f153ac423f61-20210731-113354.mp4\r\n6.13_12478_Player630-35ae8d6bdcf5-20210730-224451.mp4 6.13_3716_Player252-f153ac423f61-20210731-113555.mp4\r\n6.13_12479_Player630-35ae8d6bdcf5-20210730-224555.mp4 6.13_3717_Player252-f153ac423f61-20210731-113756.mp4\r\n6.13_1247_Player147-f153ac423f61-20211104-121848.mp4 6.13_3718_Player252-f153ac423f61-20210731-113957.mp4\r\n6.13_12480_Player630-35ae8d6bdcf5-20210730-224657.mp4 6.13_3719_Player252-f153ac423f61-20210731-114158.mp4\r\n6.13_12481_Player630-35ae8d6bdcf5-20210730-224802.mp4 6.13_371_Player11-fa5159f896de-20210804-175436.mp4\r\n6.13_12482_Player630-35ae8d6bdcf5-20210730-224907.mp4 6.13_3720_Player252-f153ac423f61-20210731-114359.mp4\r\n6.13_12483_Player630-35ae8d6bdcf5-20210730-225014.mp4 6.13_3721_Player252-f153ac423f61-20210731-114601.mp4\r\n6.13_12484_Player630-35ae8d6bdcf5-20210730-225121.mp4 6.13_3722_Player252-f153ac423f61-20210731-114802.mp4\r\n6.13_12485_Player630-35ae8d6bdcf5-20210730-225224.mp4 6.13_3723_Player252-f153ac423f61-20210731-115003.mp4\r\n6.13_12486_Player630-35ae8d6bdcf5-20210730-225331.mp4 6.13_3724_Player252-f153ac423f61-20210731-115509.mp4\r\n6.13_12487_Player630-35ae8d6bdcf5-20210730-225436.mp4 6.13_3725_Player254-f153ac423f61-20210723-122723.mp4\r\n6.13_12488_Player630-6a47d68c2447-20210730-230845.mp4 6.13_3726_Player254-f153ac423f61-20210723-123133.mp4\r\n6.13_12489_Player630-6a47d68c2447-20210730-230949.mp4 6.13_3727_Player254-f153ac423f61-20210723-124045.mp4\r\n6.13_1248_Player147-f153ac423f61-20211104-121955.mp4 6.13_3728_Player254-f153ac423f61-20210723-125251.mp4\r\n6.13_12490_Player630-6a47d68c2447-20210730-231100.mp4 6.13_3729_Player254-f153ac423f61-20210723-130205.mp4\r\n6.13_12491_Player630-6a47d68c2447-20210730-231211.mp4 6.13_372_Player11-fa5159f896de-20210804-175538.mp4\r\n6.13_12492_Player630-6a47d68c2447-20210730-231320.mp4 6.13_3730_Player254-f153ac423f61-20210723-130649.mp4\r\n6.13_12493_Player630-6a47d68c2447-20210730-231423.mp4 6.13_3731_Player254-f153ac423f61-20210723-131805.mp4\r\n6.13_12494_Player630-6a47d68c2447-20210730-231529.mp4 6.13_3732_Player254-f153ac423f61-20211212-233649.mp4\r\n6.13_12495_Player630-6a47d68c2447-20210730-231633.mp4 6.13_3733_Player254-f153ac423f61-20211212-233755.mp4\r\n6.13_12496_Player630-6a47d68c2447-20210730-231737.mp4 6.13_3734_Player254-f153ac423f61-20211212-233856.mp4\r\n6.13_12497_Player630-6a47d68c2447-20210730-231845.mp4 6.13_3735_Player254-f153ac423f61-20211212-233957.mp4\r\n6.13_12498_Player630-6a47d68c2447-20210730-231951.mp4 6.13_3736_Player254-f153ac423f61-20211212-234106.mp4\r\n6.13_12499_Player630-6a47d68c2447-20210730-232058.mp4 6.13_3737_Player254-f153ac423f61-20211212-234219.mp4\r\n6.13_1249_Player147-f153ac423f61-20211104-122100.mp4 6.13_3738_Player254-f153ac423f61-20211212-234332.mp4\r\n6.13_124_Player100-63eefbd0685a-20211220-205339.mp4 6.13_3739_Player254-f153ac423f61-20211212-234444.mp4\r\n6.13_12500_Player630-6a47d68c2447-20210730-232204.mp4 6.13_373_Player11-fa5159f896de-20210804-175639.mp4\r\n6.13_12501_Player630-6a47d68c2447-20210730-232308.mp4 6.13_3740_Player254-f153ac423f61-20211212-234555.mp4\r\n6.13_12502_Player630-6a47d68c2447-20210730-232413.mp4 6.13_3741_Player254-f153ac423f61-20211212-234706.mp4\r\n6.13_12503_Player630-6a47d68c2447-20210730-232516.mp4 6.13_3742_Player254-f153ac423f61-20211212-234813.mp4\r\n6.13_12504_Player630-91815bff387a-20210730-232547.mp4 6.13_3743_Player254-f153ac423f61-20211212-234916.mp4\r\n6.13_12505_Player630-91815bff387a-20210730-232648.mp4 6.13_3744_Player254-f153ac423f61-20211212-235024.mp4\r\n6.13_12506_Player630-91815bff387a-20210730-232757.mp4 6.13_3745_Player254-f153ac423f61-20211212-235131.mp4\r\n6.13_12507_Player630-91815bff387a-20210730-232911.mp4 6.13_3746_Player254-f153ac423f61-20211212-235238.mp4\r\n6.13_12508_Player630-91815bff387a-20210730-233021.mp4 6.13_3747_Player254-f153ac423f61-20211212-235446.mp4\r\n6.13_12509_Player630-91815bff387a-20210730-233128.mp4 6.13_3748_Player254-f153ac423f61-20211212-235551.mp4\r\n6.13_1250_Player147-f153ac423f61-20211104-122203.mp4 6.13_3749_Player254-f153ac423f61-20211212-235655.mp4\r\n6.13_12510_Player630-91815bff387a-20210730-233238.mp4 6.13_374_Player11-fa5159f896de-20210804-175740.mp4\r\n6.13_12511_Player630-91815bff387a-20210730-233348.mp4 6.13_3750_Player254-f153ac423f61-20211212-235759.mp4\r\n6.13_12512_Player630-91815bff387a-20210730-233454.mp4 6.13_3751_Player254-f153ac423f61-20211213-000013.mp4\r\n6.13_12513_Player630-91815bff387a-20210730-233558.mp4 6.13_3752_Player254-f153ac423f61-20211213-000232.mp4\r\n6.13_12514_Player630-91815bff387a-20210730-233714.mp4 6.13_3753_Player254-f153ac423f61-20211213-000441.mp4\r\n6.13_12515_Player630-91815bff387a-20210730-233822.mp4 6.13_3754_Player254-f153ac423f61-20211213-000549.mp4\r\n6.13_12516_Player630-91815bff387a-20210730-233930.mp4 6.13_3755_Player254-f153ac423f61-20211213-000803.mp4\r\n6.13_12517_Player630-91815bff387a-20210730-234043.mp4 6.13_3756_Player255-9cdd48ea86ca-20211209-165403.mp4\r\n6.13_12518_Player630-91815bff387a-20210730-234151.mp4 6.13_3757_Player255-9cdd48ea86ca-20211209-165530.mp4\r\n6.13_12519_Player630-91815bff387a-20210730-234301.mp4 6.13_3758_Player255-9cdd48ea86ca-20211209-165651.mp4\r\n6.13_1251_Player147-f153ac423f61-20211104-122336.mp4 6.13_3759_Player255-9cdd48ea86ca-20211209-165810.mp4\r\n6.13_12520_Player630-91815bff387a-20210730-234410.mp4 6.13_375_Player11-fa5159f896de-20210804-175840.mp4\r\n6.13_12521_Player630-91815bff387a-20210730-234523.mp4 6.13_3760_Player255-9cdd48ea86ca-20211209-165927.mp4\r\n6.13_12522_Player630-d5cd9b938120-20210730-225510.mp4 6.13_3761_Player255-9cdd48ea86ca-20211209-170038.mp4\r\n6.13_12523_Player630-d5cd9b938120-20210730-225613.mp4 6.13_3762_Player255-9cdd48ea86ca-20211209-170154.mp4\r\n6.13_12524_Player630-d5cd9b938120-20210730-225722.mp4 6.13_3763_Player255-9cdd48ea86ca-20211209-170316.mp4\r\n6.13_12525_Player630-d5cd9b938120-20210730-225828.mp4 6.13_3764_Player255-9cdd48ea86ca-20211209-170438.mp4\r\n6.13_12526_Player630-d5cd9b938120-20210730-225932.mp4 6.13_3765_Player255-9cdd48ea86ca-20211209-170602.mp4\r\n6.13_12527_Player630-d5cd9b938120-20210730-230039.mp4 6.13_3766_Player255-9cdd48ea86ca-20211209-170732.mp4\r\n6.13_12528_Player630-d5cd9b938120-20210730-230144.mp4 6.13_3767_Player255-9cdd48ea86ca-20211209-170852.mp4\r\n6.13_12529_Player630-d5cd9b938120-20210730-230250.mp4 6.13_3768_Player255-9cdd48ea86ca-20211209-171008.mp4\r\n6.13_1252_Player147-f153ac423f61-20211104-122525.mp4 6.13_3769_Player255-9cdd48ea86ca-20211209-171127.mp4\r\n6.13_12530_Player630-d5cd9b938120-20210730-230353.mp4 6.13_376_Player112-272b8961a2b7-20210901-223338.mp4\r\n6.13_12531_Player630-d5cd9b938120-20210730-230457.mp4 6.13_3770_Player255-9cdd48ea86ca-20211209-171237.mp4\r\n6.13_12532_Player630-d5cd9b938120-20210730-230603.mp4 6.13_3771_Player255-9cdd48ea86ca-20211209-171409.mp4\r\n6.13_12533_Player630-d5cd9b938120-20210730-230708.mp4 6.13_3772_Player255-9cdd48ea86ca-20211209-171536.mp4\r\n6.13_12534_Player630-d5cd9b938120-20210730-230813.mp4 6.13_3773_Player255-9cdd48ea86ca-20211209-171700.mp4\r\n6.13_12535_Player630-f153ac423f61-20210730-214342.mp4 6.13_3774_Player255-9cdd48ea86ca-20211209-171831.mp4\r\n6.13_12536_Player630-f153ac423f61-20210730-214455.mp4 6.13_3775_Player255-9cdd48ea86ca-20211209-171956.mp4\r\n6.13_12537_Player630-f153ac423f61-20210730-214612.mp4 6.13_3776_Player255-9cdd48ea86ca-20211209-172123.mp4\r\n6.13_12538_Player630-f153ac423f61-20210730-214718.mp4 6.13_3777_Player255-9cdd48ea86ca-20211209-172242.mp4\r\n6.13_12539_Player630-f153ac423f61-20210730-214825.mp4 6.13_3778_Player255-9cdd48ea86ca-20211209-172403.mp4\r\n6.13_1253_Player147-f153ac423f61-20211104-122655.mp4 6.13_3779_Player255-9cdd48ea86ca-20211209-172527.mp4\r\n6.13_12540_Player630-f153ac423f61-20210730-214937.mp4 6.13_377_Player112-272b8961a2b7-20210901-225859.mp4\r\n6.13_12541_Player630-f153ac423f61-20210730-215047.mp4 6.13_3780_Player255-9cdd48ea86ca-20211209-172652.mp4\r\n6.13_12542_Player630-f153ac423f61-20210730-215149.mp4 6.13_3781_Player255-9cdd48ea86ca-20211209-172820.mp4\r\n6.13_12543_Player630-f153ac423f61-20210730-215251.mp4 6.13_3782_Player255-9cdd48ea86ca-20211209-172948.mp4\r\n6.13_12544_Player630-f153ac423f61-20210730-215402.mp4 6.13_3783_Player255-9cdd48ea86ca-20211209-173114.mp4\r\n6.13_12545_Player630-f153ac423f61-20210730-215521.mp4 6.13_3784_Player255-9cdd48ea86ca-20211209-173238.mp4\r\n6.13_12546_Player630-f153ac423f61-20210730-215654.mp4 6.13_3785_Player255-9cdd48ea86ca-20211209-173410.mp4\r\n6.13_12547_Player630-f153ac423f61-20210730-215813.mp4 6.13_3786_Player255-f153ac423f61-20210731-150915.mp4\r\n6.13_12548_Player630-f153ac423f61-20210730-215933.mp4 6.13_3787_Player255-f153ac423f61-20210731-151036.mp4\r\n6.13_12549_Player630-f153ac423f61-20210730-220052.mp4 6.13_3788_Player255-f153ac423f61-20210731-151145.mp4\r\n6.13_1254_Player147-f153ac423f61-20211104-122840.mp4 6.13_3789_Player255-f153ac423f61-20210731-151255.mp4\r\n6.13_12550_Player630-f153ac423f61-20210730-220206.mp4 6.13_378_Player112-7f5c7b935f6c-20210902-000032.mp4\r\n6.13_12551_Player630-f153ac423f61-20210730-220321.mp4 6.13_3790_Player255-f153ac423f61-20210731-151412.mp4\r\n6.13_12552_Player630-f153ac423f61-20210730-220432.mp4 6.13_3791_Player255-f153ac423f61-20210731-151524.mp4\r\n6.13_12553_Player630-f153ac423f61-20210730-220545.mp4 6.13_3792_Player255-f153ac423f61-20210731-151634.mp4\r\n6.13_12554_Player630-f153ac423f61-20210730-220658.mp4 6.13_3793_Player255-f153ac423f61-20210731-151737.mp4\r\n6.13_12555_Player630-f153ac423f61-20210730-220909.mp4 6.13_3794_Player255-f153ac423f61-20210731-151846.mp4\r\n6.13_12556_Player630-f153ac423f61-20210730-221021.mp4 6.13_3795_Player255-f153ac423f61-20210731-152002.mp4\r\n6.13_12557_Player630-f153ac423f61-20210730-221133.mp4 6.13_3796_Player255-f153ac423f61-20210731-152115.mp4\r\n6.13_12558_Player630-f153ac423f61-20210730-221242.mp4 6.13_3797_Player255-f153ac423f61-20210731-152222.mp4\r\n6.13_12559_Player630-f153ac423f61-20210730-221354.mp4 6.13_3798_Player255-f153ac423f61-20210731-152329.mp4\r\n6.13_1255_Player147-f153ac423f61-20211104-123005.mp4 6.13_3799_Player255-f153ac423f61-20210731-152438.mp4\r\n6.13_12560_Player630-f153ac423f61-20210730-221509.mp4 6.13_379_Player112-7f5c7b935f6c-20210902-000235.mp4\r\n6.13_12561_Player630-f153ac423f61-20210730-221617.mp4 6.13_3800_Player255-f153ac423f61-20210731-152541.mp4\r\n6.13_12562_Player630-f153ac423f61-20210730-221723.mp4 6.13_3801_Player255-f153ac423f61-20210731-152644.mp4\r\n6.13_12563_Player630-f153ac423f61-20210730-221828.mp4 6.13_3802_Player255-f153ac423f61-20210731-152746.mp4\r\n6.13_12564_Player630-f153ac423f61-20210730-221942.mp4 6.13_3803_Player255-f153ac423f61-20210731-152847.mp4\r\n6.13_12565_Player630-f153ac423f61-20210730-222045.mp4 6.13_3804_Player255-f153ac423f61-20210731-152949.mp4\r\n6.13_12566_Player630-f153ac423f61-20210730-222200.mp4 6.13_3805_Player255-f153ac423f61-20210731-153058.mp4\r\n6.13_12567_Player630-f153ac423f61-20210730-222306.mp4 6.13_3806_Player255-f153ac423f61-20210731-153217.mp4\r\n6.13_12568_Player630-f153ac423f61-20210730-222413.mp4 6.13_3807_Player255-f153ac423f61-20210731-153329.mp4\r\n6.13_12569_Player630-f153ac423f61-20210730-222524.mp4 6.13_3808_Player255-f153ac423f61-20210731-153440.mp4\r\n6.13_1256_Player147-f153ac423f61-20211104-123108.mp4 6.13_3809_Player255-f153ac423f61-20210731-153553.mp4\r\n6.13_12570_Player630-f153ac423f61-20210730-222633.mp4 6.13_380_Player112-7f5c7b935f6c-20210902-000336.mp4\r\n6.13_12571_Player630-f153ac423f61-20210730-222741.mp4 6.13_3810_Player255-f153ac423f61-20210731-153712.mp4\r\n6.13_12572_Player630-f153ac423f61-20210730-222845.mp4 6.13_3811_Player255-f153ac423f61-20210809-104703.mp4\r\n6.13_12573_Player630-f153ac423f61-20210730-222949.mp4 6.13_3812_Player255-f153ac423f61-20210809-122127.mp4\r\n6.13_12574_Player630-f153ac423f61-20210730-223053.mp4 6.13_3813_Player255-f153ac423f61-20211209-162307.mp4\r\n6.13_12575_Player630-f153ac423f61-20210730-223157.mp4 6.13_3814_Player255-f153ac423f61-20211209-162423.mp4\r\n6.13_12576_Player630-f153ac423f61-20210730-223303.mp4 6.13_3815_Player255-f153ac423f61-20211209-162533.mp4\r\n6.13_12577_Player630-f153ac423f61-20210730-223408.mp4 6.13_3816_Player255-f153ac423f61-20211209-162640.mp4\r\n6.13_12578_Player632-f153ac423f61-20211128-203448.mp4 6.13_3817_Player255-f153ac423f61-20211209-162749.mp4\r\n6.13_12579_Player633-f153ac423f61-20210729-110746.mp4 6.13_3818_Player255-f153ac423f61-20211209-162910.mp4\r\n6.13_1257_Player147-f153ac423f61-20211104-123216.mp4 6.13_3819_Player255-f153ac423f61-20211209-163036.mp4\r\n6.13_12580_Player633-f153ac423f61-20210729-110852.mp4 6.13_381_Player112-f153ac423f61-20210901-215852.mp4\r\n6.13_12581_Player633-f153ac423f61-20210729-111001.mp4 6.13_3820_Player255-f153ac423f61-20211209-163158.mp4\r\n6.13_12582_Player633-f153ac423f61-20210729-111102.mp4 6.13_3821_Player255-f153ac423f61-20211209-163326.mp4\r\n6.13_12583_Player633-f153ac423f61-20210729-111203.mp4 6.13_3822_Player255-f153ac423f61-20211209-163459.mp4\r\n6.13_12584_Player633-f153ac423f61-20210729-111304.mp4 6.13_3823_Player255-f153ac423f61-20211209-163632.mp4\r\n6.13_12585_Player633-f153ac423f61-20210729-111405.mp4 6.13_3824_Player255-f153ac423f61-20211209-163755.mp4\r\n6.13_12586_Player633-f153ac423f61-20210729-111506.mp4 6.13_3825_Player255-f153ac423f61-20211209-164121.mp4\r\n6.13_12587_Player633-f153ac423f61-20210729-111606.mp4 6.13_3826_Player255-f153ac423f61-20211209-164232.mp4\r\n6.13_12588_Player633-f153ac423f61-20210729-111707.mp4 6.13_3827_Player255-f153ac423f61-20211209-164337.mp4\r\n6.13_12589_Player633-f153ac423f61-20210729-111808.mp4 6.13_3828_Player255-f153ac423f61-20211209-164438.mp4\r\n6.13_1258_Player147-f153ac423f61-20211104-123321.mp4 6.13_3829_Player255-f153ac423f61-20211209-164540.mp4\r\n6.13_12590_Player633-f153ac423f61-20210729-111909.mp4 6.13_382_Player112-f153ac423f61-20210901-215953.mp4\r\n6.13_12591_Player633-f153ac423f61-20210729-112022.mp4 6.13_3830_Player255-f153ac423f61-20211209-164641.mp4\r\n6.13_12592_Player633-f153ac423f61-20210729-112138.mp4 6.13_3831_Player255-f153ac423f61-20211209-164742.mp4\r\n6.13_12593_Player633-f153ac423f61-20210729-112241.mp4 6.13_3832_Player255-f153ac423f61-20211209-164847.mp4\r\n6.13_12594_Player633-f153ac423f61-20210729-112354.mp4 6.13_3833_Player255-f153ac423f61-20211209-164949.mp4\r\n6.13_12595_Player633-f153ac423f61-20210729-112501.mp4 6.13_3834_Player255-f153ac423f61-20211209-165051.mp4\r\n6.13_12596_Player633-f153ac423f61-20210729-112606.mp4 6.13_3835_Player255-f153ac423f61-20211209-165155.mp4\r\n6.13_12597_Player633-f153ac423f61-20210729-112716.mp4 6.13_3836_Player255-f153ac423f61-20211209-165305.mp4\r\n6.13_12598_Player633-f153ac423f61-20210729-112819.mp4 6.13_3837_Player256-f153ac423f61-20211211-164705.mp4\r\n6.13_12599_Player633-f153ac423f61-20210729-112923.mp4 6.13_3838_Player256-f153ac423f61-20211211-164806.mp4\r\n6.13_1259_Player147-f153ac423f61-20211104-123423.mp4 6.13_3839_Player256-f153ac423f61-20211211-164907.mp4\r\n6.13_125_Player100-63eefbd0685a-20211220-205539.mp4 6.13_383_Player112-f153ac423f61-20210901-220054.mp4\r\n6.13_12600_Player633-f153ac423f61-20210729-113027.mp4 6.13_3840_Player258-4a5ffdf3d00c-20210919-172434.mp4\r\n6.13_12601_Player633-f153ac423f61-20210729-113143.mp4 6.13_3841_Player258-4a5ffdf3d00c-20210919-173447.mp4\r\n6.13_12602_Player633-f153ac423f61-20210729-113256.mp4 6.13_3842_Player258-7530a8d53340-20210919-174727.mp4\r\n6.13_12603_Player633-f153ac423f61-20210729-113410.mp4 6.13_3843_Player258-7530a8d53340-20210919-175856.mp4\r\n6.13_12604_Player633-f153ac423f61-20210729-113520.mp4 6.13_3844_Player258-7530a8d53340-20210919-181006.mp4\r\n6.13_12605_Player633-f153ac423f61-20210729-113630.mp4 6.13_3845_Player258-7530a8d53340-20210919-182018.mp4\r\n6.13_12606_Player633-f153ac423f61-20210729-113744.mp4 6.13_3846_Player258-7530a8d53340-20210919-183027.mp4\r\n6.13_12607_Player633-f153ac423f61-20210729-113850.mp4 6.13_3847_Player258-7530a8d53340-20210919-184033.mp4\r\n6.13_12608_Player633-f153ac423f61-20210729-113959.mp4 6.13_3848_Player258-7530a8d53340-20210919-185045.mp4\r\n6.13_12609_Player633-f153ac423f61-20210729-114107.mp4 6.13_3849_Player258-7530a8d53340-20210919-190052.mp4\r\n6.13_1260_Player147-f153ac423f61-20211104-123531.mp4 6.13_384_Player112-f153ac423f61-20210901-220154.mp4\r\n6.13_12610_Player633-f153ac423f61-20210729-114218.mp4 6.13_3850_Player258-7530a8d53340-20210919-190954.mp4\r\n6.13_12611_Player633-f153ac423f61-20210729-114329.mp4 6.13_3851_Player258-7530a8d53340-20210919-192007.mp4\r\n6.13_12612_Player633-f153ac423f61-20210729-114442.mp4 6.13_3852_Player258-7530a8d53340-20210919-193021.mp4\r\n6.13_12613_Player633-f153ac423f61-20210729-114548.mp4 6.13_3853_Player258-7530a8d53340-20210919-193931.mp4\r\n6.13_12614_Player633-f153ac423f61-20210729-114650.mp4 6.13_3854_Player258-7530a8d53340-20210919-194845.mp4\r\n6.13_12615_Player633-f153ac423f61-20210729-114753.mp4 6.13_3855_Player258-7530a8d53340-20210919-200008.mp4\r\n6.13_12616_Player633-f153ac423f61-20210729-114854.mp4 6.13_3856_Player258-7530a8d53340-20210919-201123.mp4\r\n6.13_12617_Player633-f153ac423f61-20210729-114954.mp4 6.13_3857_Player258-7530a8d53340-20210919-202827.mp4\r\n6.13_12618_Player633-f153ac423f61-20210729-115056.mp4 6.13_3858_Player258-7530a8d53340-20210919-204100.mp4\r\n6.13_12619_Player633-f153ac423f61-20210729-115159.mp4 6.13_3859_Player258-7530a8d53340-20210919-205004.mp4\r\n6.13_1261_Player147-f153ac423f61-20211104-123637.mp4 6.13_385_Player112-f153ac423f61-20210901-220255.mp4\r\n6.13_12620_Player633-f153ac423f61-20210729-115301.mp4 6.13_3860_Player258-7530a8d53340-20210919-210240.mp4\r\n6.13_12621_Player633-f153ac423f61-20210729-115402.mp4 6.13_3861_Player258-7530a8d53340-20210919-211148.mp4\r\n6.13_12622_Player633-f153ac423f61-20210729-115508.mp4 6.13_3862_Player258-7530a8d53340-20210919-212050.mp4\r\n6.13_12623_Player633-f153ac423f61-20210729-115613.mp4 6.13_3863_Player258-7530a8d53340-20210919-212955.mp4\r\n6.13_12624_Player633-f153ac423f61-20210729-115731.mp4 6.13_3864_Player258-7530a8d53340-20210919-214008.mp4\r\n6.13_12625_Player633-f153ac423f61-20210729-115846.mp4 6.13_3865_Player258-7530a8d53340-20210919-215235.mp4\r\n6.13_12626_Player633-f153ac423f61-20210729-120004.mp4 6.13_3866_Player258-7530a8d53340-20210919-220348.mp4\r\n6.13_12627_Player633-f153ac423f61-20210729-120116.mp4 6.13_3867_Player258-7530a8d53340-20210919-221258.mp4\r\n6.13_12628_Player633-f153ac423f61-20210729-120230.mp4 6.13_3868_Player258-7530a8d53340-20210919-222201.mp4\r\n6.13_12629_Player633-f153ac423f61-20210729-120342.mp4 6.13_3869_Player258-7530a8d53340-20210919-223314.mp4\r\n6.13_1262_Player147-f153ac423f61-20211104-123743.mp4 6.13_386_Player112-f153ac423f61-20210901-220459.mp4\r\n6.13_12630_Player633-f153ac423f61-20210729-120448.mp4 6.13_3870_Player258-7530a8d53340-20210919-224322.mp4\r\n6.13_12631_Player633-f153ac423f61-20210729-120558.mp4 6.13_3871_Player258-f153ac423f61-20210919-163026.mp4\r\n6.13_12632_Player633-f153ac423f61-20210729-120719.mp4 6.13_3872_Player258-f153ac423f61-20210919-164209.mp4\r\n6.13_12633_Player633-f153ac423f61-20210729-120833.mp4 6.13_3873_Player258-f153ac423f61-20210919-165248.mp4\r\n6.13_12634_Player633-f153ac423f61-20210729-120950.mp4 6.13_3874_Player258-f153ac423f61-20210919-170258.mp4\r\n6.13_12635_Player633-f153ac423f61-20210729-121109.mp4 6.13_3875_Player258-f153ac423f61-20210919-171320.mp4\r\n6.13_12636_Player633-f153ac423f61-20210729-121228.mp4 6.13_3876_Player258-f153ac423f61-20211130-180740.mp4\r\n6.13_12637_Player633-f153ac423f61-20210729-121339.mp4 6.13_3877_Player258-f153ac423f61-20211130-182142.mp4\r\n6.13_12638_Player633-f153ac423f61-20210729-121501.mp4 6.13_3878_Player258-f153ac423f61-20211130-184149.mp4\r\n6.13_12639_Player633-f153ac423f61-20210729-121603.mp4 6.13_3879_Player258-f153ac423f61-20211130-190327.mp4\r\n6.13_1263_Player147-f153ac423f61-20211104-123846.mp4 6.13_387_Player112-f153ac423f61-20210901-220705.mp4\r\n6.13_12640_Player633-f153ac423f61-20210729-121704.mp4 6.13_3880_Player258-f153ac423f61-20211130-192536.mp4\r\n6.13_12641_Player633-f153ac423f61-20210729-121805.mp4 6.13_3881_Player258-f153ac423f61-20211130-195006.mp4\r\n6.13_12642_Player633-f153ac423f61-20210729-121906.mp4 6.13_3882_Player258-f153ac423f61-20211130-202258.mp4\r\n6.13_12643_Player633-f153ac423f61-20210729-122019.mp4 6.13_3883_Player26-ea950cf0ed6d-20210729-122438.mp4\r\n6.13_12644_Player633-f153ac423f61-20210729-122120.mp4 6.13_3884_Player26-ea950cf0ed6d-20210729-125133.mp4\r\n6.13_12645_Player633-f153ac423f61-20210729-122235.mp4 6.13_3885_Player26-ea950cf0ed6d-20210729-131712.mp4\r\n6.13_12646_Player633-f153ac423f61-20210729-122402.mp4 6.13_3886_Player26-ea950cf0ed6d-20210729-134723.mp4\r\n6.13_12647_Player633-f153ac423f61-20210729-122518.mp4 6.13_3887_Player26-ea950cf0ed6d-20210729-141247.mp4\r\n6.13_12648_Player633-f153ac423f61-20210729-122639.mp4 6.13_3888_Player26-ea950cf0ed6d-20210729-143942.mp4\r\n6.13_12649_Player633-f153ac423f61-20210729-122752.mp4 6.13_3889_Player26-ea950cf0ed6d-20210729-150627.mp4\r\n6.13_1264_Player147-f153ac423f61-20211104-123951.mp4 6.13_388_Player112-f153ac423f61-20210901-221229.mp4\r\n6.13_12650_Player633-f153ac423f61-20210729-122905.mp4 6.13_3890_Player26-ea950cf0ed6d-20210729-153119.mp4\r\n6.13_12651_Player633-f153ac423f61-20210729-123017.mp4 6.13_3891_Player26-ea950cf0ed6d-20210729-155937.mp4\r\n6.13_12652_Player633-f153ac423f61-20210729-123137.mp4 6.13_3892_Player26-ea950cf0ed6d-20210729-162831.mp4\r\n6.13_12653_Player633-f153ac423f61-20210729-123245.mp4 6.13_3893_Player26-ea950cf0ed6d-20210729-165517.mp4\r\n6.13_12654_Player633-f153ac423f61-20210729-123359.mp4 6.13_3894_Player26-ea950cf0ed6d-20210729-172113.mp4\r\n6.13_12655_Player633-f153ac423f61-20210729-123508.mp4 6.13_3895_Player26-ea950cf0ed6d-20210729-174752.mp4\r\n6.13_12656_Player633-f153ac423f61-20210729-123626.mp4 6.13_3896_Player26-ea950cf0ed6d-20210729-181352.mp4\r\n6.13_12657_Player633-f153ac423f61-20210729-123741.mp4 6.13_3897_Player26-ea950cf0ed6d-20210729-184007.mp4\r\n6.13_12658_Player633-f153ac423f61-20210729-123844.mp4 6.13_3898_Player26-f153ac423f61-20210729-085746.mp4\r\n6.13_12659_Player633-f153ac423f61-20210729-123956.mp4 6.13_3899_Player26-f153ac423f61-20210729-092601.mp4\r\n6.13_1265_Player147-f153ac423f61-20211104-124054.mp4 6.13_389_Player112-f153ac423f61-20210901-221648.mp4\r\n6.13_12660_Player633-f153ac423f61-20210729-124109.mp4 6.13_3900_Player26-f153ac423f61-20210729-095534.mp4\r\n6.13_12661_Player633-f153ac423f61-20210729-124226.mp4 6.13_3901_Player26-f153ac423f61-20210729-102207.mp4\r\n6.13_12662_Player633-f153ac423f61-20210729-124344.mp4 6.13_3902_Player26-f153ac423f61-20210729-104754.mp4\r\n6.13_12663_Player633-f153ac423f61-20210729-124504.mp4 6.13_3903_Player26-f153ac423f61-20210729-111224.mp4\r\n6.13_12664_Player633-f153ac423f61-20210729-124621.mp4 6.13_3904_Player26-f153ac423f61-20210729-113902.mp4\r\n6.13_12665_Player633-f153ac423f61-20210729-124735.mp4 6.13_3905_Player261-f153ac423f61-20211022-154121.mp4\r\n6.13_12666_Player633-f153ac423f61-20210729-124842.mp4 6.13_3906_Player261-f153ac423f61-20211022-154738.mp4\r\n6.13_12667_Player633-f153ac423f61-20210729-124955.mp4 6.13_3907_Player261-f153ac423f61-20211022-155325.mp4\r\n6.13_12668_Player633-f153ac423f61-20210729-125110.mp4 6.13_3908_Player261-f153ac423f61-20211022-155919.mp4\r\n6.13_12669_Player633-f153ac423f61-20210729-125225.mp4 6.13_3909_Player261-f153ac423f61-20211022-160521.mp4\r\n6.13_1266_Player147-f153ac423f61-20211104-124157.mp4 6.13_390_Player112-f153ac423f61-20210901-222516.mp4\r\n6.13_12670_Player633-f153ac423f61-20210729-125342.mp4 6.13_3910_Player261-f153ac423f61-20211022-161112.mp4\r\n6.13_12671_Player633-f153ac423f61-20210817-153819.mp4 6.13_3911_Player261-f153ac423f61-20211022-161651.mp4\r\n6.13_12672_Player633-f153ac423f61-20210817-153925.mp4 6.13_3912_Player261-f153ac423f61-20211022-162157.mp4\r\n6.13_12673_Player633-f153ac423f61-20210817-154026.mp4 6.13_3913_Player261-f153ac423f61-20211022-162743.mp4\r\n6.13_12674_Player633-f153ac423f61-20210817-154127.mp4 6.13_3914_Player261-f153ac423f61-20211022-163345.mp4\r\n6.13_12675_Player633-f153ac423f61-20210817-154231.mp4 6.13_3915_Player261-f153ac423f61-20211022-163927.mp4\r\n6.13_12676_Player633-f153ac423f61-20210817-154336.mp4 6.13_3916_Player261-f153ac423f61-20211022-164523.mp4\r\n6.13_12677_Player633-f153ac423f61-20210817-154447.mp4 6.13_3917_Player261-f153ac423f61-20211022-165100.mp4\r\n6.13_12678_Player633-f153ac423f61-20210817-154552.mp4 6.13_3918_Player261-f153ac423f61-20211022-165649.mp4\r\n6.13_12679_Player633-f153ac423f61-20210817-154654.mp4 6.13_3919_Player261-f153ac423f61-20211022-170321.mp4\r\n6.13_1267_Player147-f153ac423f61-20211104-124301.mp4 6.13_391_Player116-15533ba34e19-20210721-142242.mp4\r\n6.13_12680_Player633-f153ac423f61-20210817-154756.mp4 6.13_3920_Player261-f153ac423f61-20211022-171122.mp4\r\n6.13_12681_Player633-f153ac423f61-20210817-154857.mp4 6.13_3921_Player261-f153ac423f61-20211022-171632.mp4\r\n6.13_12682_Player633-f153ac423f61-20210817-154959.mp4 6.13_3922_Player261-f153ac423f61-20211022-172149.mp4\r\n6.13_12683_Player633-f153ac423f61-20210817-155102.mp4 6.13_3923_Player261-f153ac423f61-20211022-172618.mp4\r\n6.13_12684_Player633-f153ac423f61-20210817-155205.mp4 6.13_3924_Player261-f153ac423f61-20211022-173155.mp4\r\n6.13_12685_Player633-f153ac423f61-20210817-155316.mp4 6.13_3925_Player261-f153ac423f61-20211022-173734.mp4\r\n6.13_12686_Player633-f153ac423f61-20210817-155422.mp4 6.13_3926_Player261-f153ac423f61-20211022-174252.mp4\r\n6.13_12687_Player633-f153ac423f61-20210817-155527.mp4 6.13_3927_Player261-f153ac423f61-20211022-175137.mp4\r\n6.13_12688_Player633-f153ac423f61-20210817-155632.mp4 6.13_3928_Player261-f153ac423f61-20211022-180004.mp4\r\n6.13_12689_Player633-f153ac423f61-20210817-155739.mp4 6.13_3929_Player261-f153ac423f61-20211022-180800.mp4\r\n6.13_1268_Player147-f153ac423f61-20211104-124406.mp4 6.13_392_Player116-15533ba34e19-20210721-143850.mp4\r\n6.13_12690_Player633-f153ac423f61-20210817-155848.mp4 6.13_3930_Player261-f153ac423f61-20211022-181624.mp4\r\n6.13_12691_Player633-f153ac423f61-20210817-155954.mp4 6.13_3931_Player262-f153ac423f61-20210902-165441.mp4\r\n6.13_12692_Player633-f153ac423f61-20210817-160058.mp4 6.13_3932_Player262-f153ac423f61-20210902-165545.mp4\r\n6.13_12693_Player633-f153ac423f61-20210817-160208.mp4 6.13_3933_Player262-f153ac423f61-20210902-165646.mp4\r\n6.13_12694_Player633-f153ac423f61-20210817-160309.mp4 6.13_3934_Player262-f153ac423f61-20210902-165747.mp4\r\n6.13_12695_Player633-f153ac423f61-20210817-160410.mp4 6.13_3935_Player262-f153ac423f61-20210902-165849.mp4\r\n6.13_12696_Player633-f153ac423f61-20210817-160513.mp4 6.13_3936_Player262-f153ac423f61-20210902-170253.mp4\r\n6.13_12697_Player633-f153ac423f61-20210817-160615.mp4 6.13_3937_Player262-f153ac423f61-20211022-125514.mp4\r\n6.13_12698_Player633-f153ac423f61-20210817-160717.mp4 6.13_3938_Player262-f153ac423f61-20211022-125932.mp4\r\n6.13_12699_Player633-f153ac423f61-20210817-160819.mp4 6.13_3939_Player262-f153ac423f61-20211022-130309.mp4\r\n6.13_1269_Player147-f153ac423f61-20211104-124512.mp4 6.13_393_Player116-15533ba34e19-20210721-145602.mp4\r\n6.13_126_Player100-63eefbd0685a-20211220-205738.mp4 6.13_3940_Player262-f153ac423f61-20211022-130727.mp4\r\n6.13_12700_Player633-f153ac423f61-20210817-160926.mp4 6.13_3941_Player262-f153ac423f61-20211022-131047.mp4\r\n6.13_12701_Player633-f153ac423f61-20210817-161147.mp4 6.13_3942_Player262-f153ac423f61-20211022-131512.mp4\r\n6.13_12702_Player633-f153ac423f61-20210817-161253.mp4 6.13_3943_Player262-f153ac423f61-20211022-131950.mp4\r\n6.13_12703_Player633-f153ac423f61-20211211-064613.mp4 6.13_3944_Player262-f153ac423f61-20211022-132254.mp4\r\n6.13_12704_Player633-f153ac423f61-20211211-064816.mp4 6.13_3945_Player262-f153ac423f61-20211022-132618.mp4\r\n6.13_12705_Player633-f153ac423f61-20211211-064916.mp4 6.13_3946_Player262-f153ac423f61-20211022-133029.mp4\r\n6.13_12706_Player633-f153ac423f61-20211211-065117.mp4 6.13_3947_Player262-f153ac423f61-20211022-133502.mp4\r\n6.13_12707_Player633-f153ac423f61-20211211-065218.mp4 6.13_3948_Player262-f153ac423f61-20211022-133803.mp4\r\n6.13_12708_Player633-f153ac423f61-20211211-065420.mp4 6.13_3949_Player262-f153ac423f61-20211022-134200.mp4\r\n6.13_12709_Player633-f153ac423f61-20211211-065621.mp4 6.13_394_Player116-15533ba34e19-20210721-151212.mp4\r\n6.13_1270_Player147-f153ac423f61-20211104-124621.mp4 6.13_3950_Player262-f153ac423f61-20211022-134522.mp4\r\n6.13_12710_Player633-f153ac423f61-20211211-065822.mp4 6.13_3951_Player262-f153ac423f61-20211022-134826.mp4\r\n6.13_12711_Player633-f153ac423f61-20211211-070023.mp4 6.13_3952_Player262-f153ac423f61-20211022-135258.mp4\r\n6.13_12712_Player633-f153ac423f61-20211211-070124.mp4 6.13_3953_Player262-f153ac423f61-20211022-135706.mp4\r\n6.13_12713_Player633-f153ac423f61-20211211-070225.mp4 6.13_3954_Player262-f153ac423f61-20211022-140031.mp4\r\n6.13_12714_Player633-fb112aa02afe-20211211-070404.mp4 6.13_3955_Player262-f153ac423f61-20211022-140436.mp4\r\n6.13_12715_Player633-fb112aa02afe-20211211-070606.mp4 6.13_3956_Player262-f153ac423f61-20211022-140747.mp4\r\n6.13_12716_Player633-fb112aa02afe-20211211-070806.mp4 6.13_3957_Player262-f153ac423f61-20211022-141051.mp4\r\n6.13_12717_Player633-fb112aa02afe-20211211-071007.mp4 6.13_3958_Player262-f153ac423f61-20211022-141457.mp4\r\n6.13_12718_Player633-fb112aa02afe-20211211-071208.mp4 6.13_3959_Player263-f153ac423f61-20211203-190344.mp4\r\n6.13_12719_Player633-fb112aa02afe-20211211-071309.mp4 6.13_395_Player116-15533ba34e19-20210721-152828.mp4\r\n6.13_1271_Player147-f153ac423f61-20211104-124724.mp4 6.13_3960_Player263-f153ac423f61-20211203-191117.mp4\r\n6.13_12720_Player633-fb112aa02afe-20211211-071509.mp4 6.13_3961_Player263-f153ac423f61-20211203-191804.mp4\r\n6.13_12721_Player633-fb112aa02afe-20211211-071710.mp4 6.13_3962_Player263-f153ac423f61-20211203-192450.mp4\r\n6.13_12722_Player633-fb112aa02afe-20211211-071911.mp4 6.13_3963_Player263-f153ac423f61-20211203-193126.mp4\r\n6.13_12723_Player633-fb112aa02afe-20211211-072111.mp4 6.13_3964_Player263-f153ac423f61-20211203-193800.mp4\r\n6.13_12724_Player633-fb112aa02afe-20211211-072312.mp4 6.13_3965_Player263-f153ac423f61-20211203-194447.mp4\r\n6.13_12725_Player633-fb112aa02afe-20211211-072413.mp4 6.13_3966_Player263-f153ac423f61-20211203-195126.mp4\r\n6.13_12726_Player633-fb112aa02afe-20211211-072513.mp4 6.13_3967_Player263-f153ac423f61-20211203-195836.mp4\r\n6.13_12727_Player633-fb112aa02afe-20211211-072714.mp4 6.13_3968_Player264-f153ac423f61-20210807-185200.mp4\r\n6.13_12728_Player633-fb112aa02afe-20211211-072915.mp4 6.13_3969_Player264-f153ac423f61-20210807-185304.mp4\r\n6.13_12729_Player633-fb112aa02afe-20211211-073115.mp4 6.13_396_Player116-15533ba34e19-20210721-154549.mp4\r\n6.13_1272_Player147-f153ac423f61-20211104-124829.mp4 6.13_3970_Player264-f153ac423f61-20210807-185407.mp4\r\n6.13_12730_Player633-fb112aa02afe-20211211-073316.mp4 6.13_3971_Player264-f153ac423f61-20210807-185508.mp4\r\n6.13_12731_Player633-fb112aa02afe-20211211-073517.mp4 6.13_3972_Player264-f153ac423f61-20210807-185609.mp4\r\n6.13_12732_Player633-fb112aa02afe-20211211-073718.mp4 6.13_3973_Player264-f153ac423f61-20210807-185710.mp4\r\n6.13_12733_Player633-fb112aa02afe-20211211-073919.mp4 6.13_3974_Player264-f153ac423f61-20210807-185811.mp4\r\n6.13_12734_Player633-fb112aa02afe-20211211-074019.mp4 6.13_3975_Player264-f153ac423f61-20210807-185911.mp4\r\n6.13_12735_Player633-fb112aa02afe-20211211-074120.mp4 6.13_3976_Player264-f153ac423f61-20210807-190011.mp4\r\n6.13_12736_Player633-fb112aa02afe-20211211-074220.mp4 6.13_3977_Player264-f153ac423f61-20210807-190111.mp4\r\n6.13_12737_Player633-fb112aa02afe-20211211-074421.mp4 6.13_3978_Player264-f153ac423f61-20210807-190212.mp4\r\n6.13_12738_Player633-fb112aa02afe-20211211-074521.mp4 6.13_3979_Player264-f153ac423f61-20210807-190313.mp4\r\n6.13_12739_Player633-fb112aa02afe-20211211-074622.mp4 6.13_397_Player116-15533ba34e19-20210721-160303.mp4\r\n6.13_1273_Player147-f153ac423f61-20211104-124939.mp4 6.13_3980_Player264-f153ac423f61-20210807-190414.mp4\r\n6.13_12740_Player633-fb112aa02afe-20211211-074722.mp4 6.13_3981_Player264-f153ac423f61-20210807-190514.mp4\r\n6.13_12741_Player633-fb112aa02afe-20211211-074823.mp4 6.13_3982_Player264-f153ac423f61-20210807-190615.mp4\r\n6.13_12742_Player633-fb112aa02afe-20211211-074923.mp4 6.13_3983_Player264-f153ac423f61-20210807-190715.mp4\r\n6.13_12743_Player633-fb112aa02afe-20211211-075024.mp4 6.13_3984_Player264-f153ac423f61-20210807-190816.mp4\r\n6.13_12744_Player633-fb112aa02afe-20211211-075125.mp4 6.13_3985_Player264-f153ac423f61-20210807-190917.mp4\r\n6.13_12745_Player633-fb112aa02afe-20211211-075329.mp4 6.13_3986_Player264-f153ac423f61-20210807-191018.mp4\r\n6.13_12746_Player633-fb112aa02afe-20211211-075531.mp4 6.13_3987_Player264-f153ac423f61-20210807-191118.mp4\r\n6.13_12747_Player633-fb112aa02afe-20211211-075732.mp4 6.13_3988_Player264-f153ac423f61-20210807-191218.mp4\r\n6.13_12748_Player633-fb112aa02afe-20211211-075933.mp4 6.13_3989_Player264-f153ac423f61-20210807-191319.mp4\r\n6.13_12749_Player633-fb112aa02afe-20211211-080133.mp4 6.13_398_Player116-8803469ef598-20210721-135629.mp4\r\n6.13_1274_Player147-f153ac423f61-20211104-125049.mp4 6.13_3990_Player264-f153ac423f61-20210807-191420.mp4\r\n6.13_12750_Player633-fb112aa02afe-20211211-080334.mp4 6.13_3991_Player264-f153ac423f61-20210807-191520.mp4\r\n6.13_12751_Player633-fb112aa02afe-20211211-080535.mp4 6.13_3992_Player264-f153ac423f61-20210807-191620.mp4\r\n6.13_12752_Player633-fb112aa02afe-20211211-080738.mp4 6.13_3993_Player264-f153ac423f61-20210807-191721.mp4\r\n6.13_12753_Player633-fb112aa02afe-20211211-081002.mp4 6.13_3994_Player264-f153ac423f61-20210807-191822.mp4\r\n6.13_12754_Player633-fb112aa02afe-20211211-081203.mp4 6.13_3995_Player264-f153ac423f61-20210807-191922.mp4\r\n6.13_12755_Player633-fb112aa02afe-20211211-081304.mp4 6.13_3996_Player264-f153ac423f61-20210807-192022.mp4\r\n6.13_12756_Player633-fb112aa02afe-20211211-081507.mp4 6.13_3997_Player264-f153ac423f61-20210807-192123.mp4\r\n6.13_12757_Player633-fb112aa02afe-20211211-081710.mp4 6.13_3998_Player264-f153ac423f61-20210807-192223.mp4\r\n6.13_12758_Player633-fb112aa02afe-20211211-081912.mp4 6.13_3999_Player264-f153ac423f61-20210807-192323.mp4\r\n6.13_12759_Player633-fb112aa02afe-20211211-082114.mp4 6.13_399_Player116-b4cba68d5981-20210721-164226.mp4\r\n6.13_1275_Player147-f153ac423f61-20211104-125159.mp4 6.13_4000_Player264-f153ac423f61-20210807-192424.mp4\r\n6.13_12760_Player633-fb112aa02afe-20211211-082318.mp4 6.13_4001_Player264-f153ac423f61-20210807-192526.mp4\r\n6.13_12761_Player633-fb112aa02afe-20211211-082519.mp4 6.13_4002_Player264-f153ac423f61-20210807-192626.mp4\r\n6.13_12762_Player633-fb112aa02afe-20211211-082720.mp4 6.13_4003_Player264-f153ac423f61-20210807-192941.mp4\r\n6.13_12763_Player633-fb112aa02afe-20211211-082922.mp4 6.13_4004_Player264-f153ac423f61-20210807-193041.mp4\r\n6.13_12764_Player633-fb112aa02afe-20211211-083125.mp4 6.13_4005_Player264-f153ac423f61-20210807-193141.mp4\r\n6.13_12765_Player633-fb112aa02afe-20211211-083327.mp4 6.13_4006_Player264-f153ac423f61-20210807-193242.mp4\r\n6.13_12766_Player633-fb112aa02afe-20211211-083632.mp4 6.13_4007_Player264-f153ac423f61-20210807-193343.mp4\r\n6.13_12767_Player633-fb112aa02afe-20211211-083936.mp4 6.13_4008_Player264-f153ac423f61-20210807-193443.mp4\r\n6.13_12768_Player633-fb112aa02afe-20211211-084241.mp4 6.13_4009_Player264-f153ac423f61-20210807-193544.mp4\r\n6.13_12769_Player633-fb112aa02afe-20211211-084442.mp4 6.13_400_Player116-b4cba68d5981-20210721-165852.mp4\r\n6.13_1276_Player147-f153ac423f61-20211104-125305.mp4 6.13_4010_Player264-f153ac423f61-20210807-193646.mp4\r\n6.13_12770_Player633-fb112aa02afe-20211211-084745.mp4 6.13_4011_Player264-f153ac423f61-20210807-193746.mp4\r\n6.13_12771_Player633-fb112aa02afe-20211211-085152.mp4 6.13_4012_Player264-f153ac423f61-20210807-193847.mp4\r\n6.13_12772_Player633-fb112aa02afe-20211211-085559.mp4 6.13_4013_Player264-f153ac423f61-20210807-193948.mp4\r\n6.13_12773_Player633-fb112aa02afe-20211211-085903.mp4 6.13_4014_Player264-f153ac423f61-20210807-194049.mp4\r\n6.13_12774_Player635-401509557b6a-20211020-140603.mp4 6.13_4015_Player264-f153ac423f61-20210807-194150.mp4\r\n6.13_12775_Player635-401509557b6a-20211020-141105.mp4 6.13_4016_Player264-f153ac423f61-20210807-194251.mp4\r\n6.13_12776_Player635-401509557b6a-20211020-141606.mp4 6.13_4017_Player264-f153ac423f61-20210910-120001.mp4\r\n6.13_12777_Player635-401509557b6a-20211020-142107.mp4 6.13_4018_Player264-f153ac423f61-20210910-120139.mp4\r\n6.13_12778_Player635-401509557b6a-20211020-142710.mp4 6.13_4019_Player264-f153ac423f61-20210910-120302.mp4\r\n6.13_12779_Player635-7274e55a3a49-20211020-174314.mp4 6.13_401_Player116-b4cba68d5981-20210721-171715.mp4\r\n6.13_1277_Player147-f153ac423f61-20211104-125409.mp4 6.13_4020_Player264-f153ac423f61-20210910-120422.mp4\r\n6.13_12780_Player635-7274e55a3a49-20211020-174821.mp4 6.13_4021_Player264-f153ac423f61-20210910-120553.mp4\r\n6.13_12781_Player635-7274e55a3a49-20211020-175434.mp4 6.13_4022_Player264-f153ac423f61-20210910-120726.mp4\r\n6.13_12782_Player635-7274e55a3a49-20211020-180039.mp4 6.13_4023_Player264-f153ac423f61-20210910-120858.mp4\r\n6.13_12783_Player635-7274e55a3a49-20211020-180643.mp4 6.13_4024_Player264-f153ac423f61-20210910-121017.mp4\r\n6.13_12784_Player635-7274e55a3a49-20211020-181248.mp4 6.13_4025_Player264-f153ac423f61-20210910-121136.mp4\r\n6.13_12785_Player635-7274e55a3a49-20211020-181850.mp4 6.13_4026_Player264-f153ac423f61-20210910-121253.mp4\r\n6.13_12786_Player635-7274e55a3a49-20211020-182456.mp4 6.13_4027_Player266-f153ac423f61-20211211-163112.mp4\r\n6.13_12787_Player635-7274e55a3a49-20211020-183100.mp4 6.13_4028_Player266-f153ac423f61-20211211-163237.mp4\r\n6.13_12788_Player635-7274e55a3a49-20211020-183702.mp4 6.13_4029_Player266-f153ac423f61-20211211-163350.mp4\r\n6.13_12789_Player635-7274e55a3a49-20211020-184303.mp4 6.13_402_Player116-b4cba68d5981-20210721-173321.mp4\r\n6.13_1278_Player147-f153ac423f61-20211104-125516.mp4 6.13_4030_Player266-f153ac423f61-20211211-163455.mp4\r\n6.13_12790_Player635-7274e55a3a49-20211020-184911.mp4 6.13_4031_Player266-f153ac423f61-20211211-163558.mp4\r\n6.13_12791_Player635-7274e55a3a49-20211020-185513.mp4 6.13_4032_Player266-f153ac423f61-20211211-163659.mp4\r\n6.13_12792_Player635-7274e55a3a49-20211020-190116.mp4 6.13_4033_Player266-f153ac423f61-20211211-163800.mp4\r\n6.13_12793_Player635-7274e55a3a49-20211020-190717.mp4 6.13_4034_Player266-f153ac423f61-20211211-163901.mp4\r\n6.13_12794_Player635-7274e55a3a49-20211020-191218.mp4 6.13_4035_Player266-f153ac423f61-20211211-164002.mp4\r\n6.13_12795_Player635-7274e55a3a49-20211020-191719.mp4 6.13_4036_Player266-f153ac423f61-20211211-164103.mp4\r\n6.13_12796_Player635-7274e55a3a49-20211020-192222.mp4 6.13_4037_Player266-f153ac423f61-20211211-164210.mp4\r\n6.13_12797_Player635-7274e55a3a49-20211020-192832.mp4 6.13_4038_Player266-f153ac423f61-20211211-164329.mp4\r\n6.13_12798_Player635-799d612d7bfe-20211020-143310.mp4 6.13_4039_Player266-f153ac423f61-20211211-164514.mp4\r\n6.13_12799_Player635-799d612d7bfe-20211020-143913.mp4 6.13_403_Player116-b4cba68d5981-20210721-175137.mp4\r\n6.13_1279_Player147-f153ac423f61-20211104-125619.mp4 6.13_4040_Player266-f153ac423f61-20211211-164624.mp4\r\n6.13_127_Player100-63eefbd0685a-20211220-205937.mp4 6.13_4041_Player266-f153ac423f61-20211211-164730.mp4\r\n",,terminal_output +644,6809579,"TERMINAL",0,0,"6.13_12800_Player635-799d612d7bfe-20211020-144514.mp4 6.13_4042_Player266-f153ac423f61-20211211-164835.mp4\r\n6.13_12801_Player635-799d612d7bfe-20211020-145116.mp4 6.13_4043_Player266-f153ac423f61-20211211-164950.mp4\r\n6.13_12802_Player635-799d612d7bfe-20211020-145616.mp4 6.13_4044_Player266-f153ac423f61-20211211-165112.mp4\r\n6.13_12803_Player635-799d612d7bfe-20211020-150117.mp4 6.13_4045_Player266-f153ac423f61-20211211-165221.mp4\r\n6.13_12804_Player635-799d612d7bfe-20211020-150719.mp4 6.13_4046_Player266-f153ac423f61-20211211-165323.mp4\r\n6.13_12805_Player635-799d612d7bfe-20211020-151320.mp4 6.13_4047_Player266-f153ac423f61-20211211-165433.mp4\r\n6.13_12806_Player635-799d612d7bfe-20211020-151922.mp4 6.13_4048_Player266-f153ac423f61-20211211-165543.mp4\r\n6.13_12807_Player635-f153ac423f61-20210809-094926.mp4 6.13_4049_Player266-f153ac423f61-20211211-165653.mp4\r\n6.13_12808_Player635-f153ac423f61-20210809-095032.mp4 6.13_404_Player116-b4cba68d5981-20210721-181005.mp4\r\n6.13_12809_Player635-f153ac423f61-20210809-095134.mp4 6.13_4050_Player266-f153ac423f61-20211211-165804.mp4\r\n6.13_1280_Player147-f153ac423f61-20211104-125721.mp4 6.13_4051_Player266-f153ac423f61-20211211-165919.mp4\r\n6.13_12810_Player635-f153ac423f61-20210809-095235.mp4 6.13_4052_Player266-f153ac423f61-20211211-170031.mp4\r\n6.13_12811_Player635-f153ac423f61-20210809-095335.mp4 6.13_4053_Player266-f153ac423f61-20211211-170142.mp4\r\n6.13_12812_Player635-f153ac423f61-20210809-095435.mp4 6.13_4054_Player266-f153ac423f61-20211211-170301.mp4\r\n6.13_12813_Player635-f153ac423f61-20210809-095535.mp4 6.13_4055_Player266-f153ac423f61-20211211-170405.mp4\r\n6.13_12814_Player635-f153ac423f61-20210809-095636.mp4 6.13_4056_Player266-f153ac423f61-20211211-170514.mp4\r\n6.13_12815_Player635-f153ac423f61-20210809-095737.mp4 6.13_4057_Player266-f153ac423f61-20211211-170624.mp4\r\n6.13_12816_Player635-f153ac423f61-20210809-095839.mp4 6.13_4058_Player266-f153ac423f61-20211211-170743.mp4\r\n6.13_12817_Player635-f153ac423f61-20210809-095939.mp4 6.13_4059_Player266-f153ac423f61-20211211-170905.mp4\r\n6.13_12818_Player635-f153ac423f61-20210809-100039.mp4 6.13_405_Player116-b4cba68d5981-20210721-182519.mp4\r\n6.13_12819_Player635-f153ac423f61-20210809-100140.mp4 6.13_4060_Player266-f153ac423f61-20211211-171029.mp4\r\n6.13_1281_Player147-f153ac423f61-20211104-125831.mp4 6.13_4061_Player266-f153ac423f61-20211211-171149.mp4\r\n6.13_12820_Player635-f153ac423f61-20210809-100240.mp4 6.13_4062_Player266-f153ac423f61-20211211-171309.mp4\r\n6.13_12821_Player635-f153ac423f61-20210809-100340.mp4 6.13_4063_Player266-f153ac423f61-20211211-171424.mp4\r\n6.13_12822_Player635-f153ac423f61-20210809-100441.mp4 6.13_4064_Player266-f153ac423f61-20211211-171540.mp4\r\n6.13_12823_Player635-f153ac423f61-20210809-100541.mp4 6.13_4065_Player266-f153ac423f61-20211211-171648.mp4\r\n6.13_12824_Player635-f153ac423f61-20210809-100642.mp4 6.13_4066_Player266-f153ac423f61-20211211-171804.mp4\r\n6.13_12825_Player635-f153ac423f61-20210809-100744.mp4 6.13_4067_Player266-f153ac423f61-20211211-171907.mp4\r\n6.13_12826_Player635-f153ac423f61-20210809-100845.mp4 6.13_4068_Player266-f153ac423f61-20211211-172014.mp4\r\n6.13_12827_Player635-f153ac423f61-20210809-100945.mp4 6.13_4069_Player266-f153ac423f61-20211211-172124.mp4\r\n6.13_12828_Player635-f153ac423f61-20210809-101045.mp4 6.13_406_Player116-b4cba68d5981-20210721-184243.mp4\r\n6.13_12829_Player635-f153ac423f61-20210809-101145.mp4 6.13_4070_Player266-f153ac423f61-20211211-172300.mp4\r\n6.13_1282_Player147-f153ac423f61-20211104-130003.mp4 6.13_4071_Player266-f153ac423f61-20211211-172448.mp4\r\n6.13_12830_Player635-f153ac423f61-20210809-101245.mp4 6.13_4072_Player266-f153ac423f61-20211211-172630.mp4\r\n6.13_12831_Player635-f153ac423f61-20210809-101345.mp4 6.13_4073_Player266-f153ac423f61-20211211-172807.mp4\r\n6.13_12832_Player635-f153ac423f61-20210809-101446.mp4 6.13_4074_Player266-f153ac423f61-20211211-172930.mp4\r\n6.13_12833_Player635-f153ac423f61-20210809-101546.mp4 6.13_4075_Player266-f153ac423f61-20211211-173054.mp4\r\n6.13_12834_Player635-f153ac423f61-20210809-101647.mp4 6.13_4076_Player266-f153ac423f61-20211211-173233.mp4\r\n6.13_12835_Player635-f153ac423f61-20210809-101748.mp4 6.13_4077_Player266-f153ac423f61-20211211-173424.mp4\r\n6.13_12836_Player635-f153ac423f61-20210809-101848.mp4 6.13_4078_Player266-f153ac423f61-20211211-173608.mp4\r\n6.13_12837_Player635-f153ac423f61-20210809-101949.mp4 6.13_4079_Player266-f153ac423f61-20211211-173755.mp4\r\n6.13_12838_Player635-f153ac423f61-20210809-102049.mp4 6.13_407_Player116-b4cba68d5981-20210721-185956.mp4\r\n6.13_12839_Player635-f153ac423f61-20210809-102150.mp4 6.13_4080_Player266-f153ac423f61-20211211-173943.mp4\r\n6.13_1283_Player147-f153ac423f61-20211104-130132.mp4 6.13_4081_Player266-f153ac423f61-20211211-174129.mp4\r\n6.13_12840_Player635-f153ac423f61-20210809-102250.mp4 6.13_4082_Player266-f153ac423f61-20211211-174316.mp4\r\n6.13_12841_Player635-f153ac423f61-20210809-102351.mp4 6.13_4083_Player266-f153ac423f61-20211211-174515.mp4\r\n6.13_12842_Player635-f153ac423f61-20210809-102453.mp4 6.13_4084_Player266-f153ac423f61-20211211-174714.mp4\r\n6.13_12843_Player635-f153ac423f61-20210809-102554.mp4 6.13_4085_Player266-f153ac423f61-20211211-174915.mp4\r\n6.13_12844_Player635-f153ac423f61-20210809-102655.mp4 6.13_4086_Player266-f153ac423f61-20211211-175126.mp4\r\n6.13_12845_Player635-f153ac423f61-20210809-102756.mp4 6.13_4087_Player266-f153ac423f61-20211211-175315.mp4\r\n6.13_12846_Player635-f153ac423f61-20210809-102857.mp4 6.13_4088_Player266-f153ac423f61-20211211-175459.mp4\r\n6.13_12847_Player635-f153ac423f61-20210809-102958.mp4 6.13_4089_Player266-f153ac423f61-20211211-175649.mp4\r\n6.13_12848_Player635-f153ac423f61-20210809-103059.mp4 6.13_408_Player116-b4cba68d5981-20210721-191613.mp4\r\n6.13_12849_Player635-f153ac423f61-20210809-103159.mp4 6.13_4090_Player266-f153ac423f61-20211211-175816.mp4\r\n6.13_1284_Player147-f153ac423f61-20211104-130305.mp4 6.13_4091_Player268-f153ac423f61-20210723-095550.mp4\r\n6.13_12850_Player635-f153ac423f61-20210809-103259.mp4 6.13_4092_Player268-f153ac423f61-20210723-095931.mp4\r\n6.13_12851_Player635-f153ac423f61-20210809-103400.mp4 6.13_4093_Player268-f153ac423f61-20210723-100658.mp4\r\n6.13_12852_Player635-f153ac423f61-20210809-103500.mp4 6.13_4094_Player268-f153ac423f61-20210723-101138.mp4\r\n6.13_12853_Player635-f153ac423f61-20210809-103600.mp4 6.13_4095_Player268-f153ac423f61-20210723-101443.mp4\r\n6.13_12854_Player635-f153ac423f61-20210809-103700.mp4 6.13_4096_Player268-f153ac423f61-20210723-101929.mp4\r\n6.13_12855_Player635-f153ac423f61-20210911-132906.mp4 6.13_4097_Player268-f153ac423f61-20210723-102344.mp4\r\n6.13_12856_Player635-f153ac423f61-20211020-120956.mp4 6.13_4098_Player268-f153ac423f61-20210723-102654.mp4\r\n6.13_12857_Player635-f153ac423f61-20211020-121515.mp4 6.13_4099_Player268-f153ac423f61-20210723-102958.mp4\r\n6.13_12858_Player635-f153ac423f61-20211020-122118.mp4 6.13_409_Player116-b4cba68d5981-20210721-193235.mp4\r\n6.13_12859_Player635-f153ac423f61-20211020-122619.mp4 6.13_4100_Player268-f153ac423f61-20210723-103416.mp4\r\n6.13_1285_Player147-f153ac423f61-20211104-130429.mp4 6.13_4101_Player268-f153ac423f61-20210723-103729.mp4\r\n6.13_12860_Player635-f153ac423f61-20211020-123222.mp4 6.13_4102_Player268-f153ac423f61-20210723-104037.mp4\r\n6.13_12861_Player635-f153ac423f61-20211020-123725.mp4 6.13_4103_Player268-f153ac423f61-20210723-104350.mp4\r\n6.13_12862_Player635-f153ac423f61-20211020-124227.mp4 6.13_4104_Player268-f153ac423f61-20211028-214914.mp4\r\n6.13_12863_Player635-f153ac423f61-20211020-124730.mp4 6.13_4105_Player268-f153ac423f61-20211028-215054.mp4\r\n6.13_12864_Player635-f153ac423f61-20211020-125231.mp4 6.13_4106_Player268-f153ac423f61-20211028-215231.mp4\r\n6.13_12865_Player635-f153ac423f61-20211020-125735.mp4 6.13_4107_Player268-f153ac423f61-20211028-215401.mp4\r\n6.13_12866_Player635-f153ac423f61-20211020-130237.mp4 6.13_4108_Player268-f153ac423f61-20211028-215530.mp4\r\n6.13_12867_Player635-f153ac423f61-20211020-130739.mp4 6.13_4109_Player268-f153ac423f61-20211028-215705.mp4\r\n6.13_12868_Player635-f153ac423f61-20211020-131244.mp4 6.13_410_Player116-b4cba68d5981-20210721-194855.mp4\r\n6.13_12869_Player635-f153ac423f61-20211020-131847.mp4 6.13_4110_Player268-f153ac423f61-20211028-215843.mp4\r\n6.13_1286_Player147-f153ac423f61-20211104-130618.mp4 6.13_4111_Player268-f153ac423f61-20211028-220030.mp4\r\n6.13_12870_Player635-f153ac423f61-20211020-132348.mp4 6.13_4112_Player268-f153ac423f61-20211028-220209.mp4\r\n6.13_12871_Player635-f153ac423f61-20211020-132955.mp4 6.13_4113_Player268-f153ac423f61-20211028-220338.mp4\r\n6.13_12872_Player635-f153ac423f61-20211020-133456.mp4 6.13_4114_Player268-f153ac423f61-20211028-220509.mp4\r\n6.13_12873_Player635-f153ac423f61-20211020-133957.mp4 6.13_4115_Player268-f153ac423f61-20211028-220647.mp4\r\n6.13_12874_Player635-f153ac423f61-20211020-134459.mp4 6.13_4116_Player268-f153ac423f61-20211028-220837.mp4\r\n6.13_12875_Player635-f153ac423f61-20211020-135002.mp4 6.13_4117_Player268-f153ac423f61-20211028-221005.mp4\r\n6.13_12876_Player635-f153ac423f61-20211020-135607.mp4 6.13_4118_Player268-f153ac423f61-20211028-221135.mp4\r\n6.13_12877_Player635-f153ac423f61-20211020-140108.mp4 6.13_4119_Player268-f153ac423f61-20211028-221305.mp4\r\n6.13_12878_Player636-f153ac423f61-20211103-214900.mp4 6.13_411_Player116-b4cba68d5981-20210721-200508.mp4\r\n6.13_12879_Player636-f153ac423f61-20211103-215058.mp4 6.13_4120_Player268-f153ac423f61-20211028-221445.mp4\r\n6.13_1287_Player147-f153ac423f61-20211104-130811.mp4 6.13_4121_Player268-f153ac423f61-20211028-221630.mp4\r\n6.13_12880_Player636-f153ac423f61-20211103-215304.mp4 6.13_4122_Player268-f153ac423f61-20211028-221814.mp4\r\n6.13_12881_Player636-f153ac423f61-20211103-215455.mp4 6.13_4123_Player268-f153ac423f61-20211028-221955.mp4\r\n6.13_12882_Player636-f153ac423f61-20211103-215607.mp4 6.13_4124_Player268-f153ac423f61-20211028-222139.mp4\r\n6.13_12883_Player636-f153ac423f61-20211103-215725.mp4 6.13_4125_Player268-f153ac423f61-20211028-222317.mp4\r\n6.13_12884_Player636-f153ac423f61-20211103-215848.mp4 6.13_4126_Player268-f153ac423f61-20211028-222502.mp4\r\n6.13_12885_Player636-f153ac423f61-20211103-220007.mp4 6.13_4127_Player268-f153ac423f61-20211028-222653.mp4\r\n6.13_12886_Player636-f153ac423f61-20211103-220118.mp4 6.13_4128_Player268-f153ac423f61-20211028-222834.mp4\r\n6.13_12887_Player636-f153ac423f61-20211103-220231.mp4 6.13_4129_Player268-f153ac423f61-20211028-223016.mp4\r\n6.13_12888_Player636-f153ac423f61-20211103-220343.mp4 6.13_412_Player116-b4cba68d5981-20210721-202233.mp4\r\n6.13_12889_Player636-f153ac423f61-20211103-220452.mp4 6.13_4130_Player268-f153ac423f61-20211028-223153.mp4\r\n6.13_1288_Player147-f153ac423f61-20211104-131004.mp4 6.13_4131_Player268-f153ac423f61-20211028-223318.mp4\r\n6.13_12890_Player636-f153ac423f61-20211103-220614.mp4 6.13_4132_Player268-f153ac423f61-20211028-223439.mp4\r\n6.13_12891_Player636-f153ac423f61-20211103-220739.mp4 6.13_4133_Player268-f153ac423f61-20211028-223606.mp4\r\n6.13_12892_Player636-f153ac423f61-20211103-220855.mp4 6.13_4134_Player268-f153ac423f61-20211028-223750.mp4\r\n6.13_12893_Player636-f153ac423f61-20211103-221011.mp4 6.13_4135_Player268-f153ac423f61-20211028-223929.mp4\r\n6.13_12894_Player636-f153ac423f61-20211103-221119.mp4 6.13_4136_Player268-f153ac423f61-20211028-224116.mp4\r\n6.13_12895_Player636-f153ac423f61-20211103-221239.mp4 6.13_4137_Player268-f153ac423f61-20211028-224305.mp4\r\n6.13_12896_Player636-f153ac423f61-20211103-221357.mp4 6.13_4138_Player268-f153ac423f61-20211028-224444.mp4\r\n6.13_12897_Player636-f153ac423f61-20211103-221515.mp4 6.13_4139_Player268-f153ac423f61-20211028-224626.mp4\r\n6.13_12898_Player636-f153ac423f61-20211103-221635.mp4 6.13_413_Player116-b4cba68d5981-20210721-204218.mp4\r\n6.13_12899_Player636-f153ac423f61-20211103-221758.mp4 6.13_4140_Player268-f153ac423f61-20211028-224805.mp4\r\n6.13_1289_Player148-f153ac423f61-20211219-001321.mp4 6.13_4141_Player269-0124175b4126-20211011-145150.mp4\r\n6.13_128_Player100-695d64aecaf9-20211220-210148.mp4 6.13_4142_Player269-0124175b4126-20211011-145907.mp4\r\n6.13_12900_Player636-f153ac423f61-20211103-221949.mp4 6.13_4143_Player269-0124175b4126-20211011-150614.mp4\r\n6.13_12901_Player636-f153ac423f61-20211103-222152.mp4 6.13_4144_Player269-0124175b4126-20211011-151221.mp4\r\n6.13_12902_Player636-f153ac423f61-20211103-222345.mp4 6.13_4145_Player269-0124175b4126-20211011-151927.mp4\r\n6.13_12903_Player636-f153ac423f61-20211103-222536.mp4 6.13_4146_Player269-0124175b4126-20211011-152630.mp4\r\n6.13_12904_Player636-f153ac423f61-20211103-222713.mp4 6.13_4147_Player269-0124175b4126-20211011-153234.mp4\r\n6.13_12905_Player636-f153ac423f61-20211103-222909.mp4 6.13_4148_Player269-2ee9e90fd40e-20211011-131915.mp4\r\n6.13_12906_Player636-f153ac423f61-20211103-223108.mp4 6.13_4149_Player269-2ee9e90fd40e-20211011-132624.mp4\r\n6.13_12907_Player636-f153ac423f61-20211103-223306.mp4 6.13_414_Player116-b4cba68d5981-20210721-205832.mp4\r\n6.13_12908_Player636-f153ac423f61-20211103-223440.mp4 6.13_4150_Player269-2ee9e90fd40e-20211011-133338.mp4\r\n6.13_12909_Player636-f153ac423f61-20211103-223543.mp4 6.13_4151_Player269-2ee9e90fd40e-20211011-133947.mp4\r\n6.13_1290_Player149-f153ac423f61-20211121-133455.mp4 6.13_4152_Player269-2ee9e90fd40e-20211011-134550.mp4\r\n6.13_12910_Player638-f153ac423f61-20211110-142749.mp4 6.13_4153_Player269-2ee9e90fd40e-20211011-135259.mp4\r\n6.13_12911_Player638-f153ac423f61-20211110-142855.mp4 6.13_4154_Player269-2ee9e90fd40e-20211011-135906.mp4\r\n6.13_12912_Player638-f153ac423f61-20211110-142958.mp4 6.13_4155_Player269-2ee9e90fd40e-20211011-140612.mp4\r\n6.13_12913_Player638-f153ac423f61-20211110-143059.mp4 6.13_4156_Player269-2ee9e90fd40e-20211011-141217.mp4\r\n6.13_12914_Player638-f153ac423f61-20211110-143201.mp4 6.13_4157_Player269-2ee9e90fd40e-20211011-141923.mp4\r\n6.13_12915_Player638-f153ac423f61-20211110-143302.mp4 6.13_4158_Player269-2ee9e90fd40e-20211011-142527.mp4\r\n6.13_12916_Player638-f153ac423f61-20211110-143404.mp4 6.13_4159_Player269-2ee9e90fd40e-20211011-143235.mp4\r\n6.13_12917_Player638-f153ac423f61-20211110-143606.mp4 6.13_415_Player116-b4cba68d5981-20210721-211345.mp4\r\n6.13_12918_Player638-f153ac423f61-20211110-143707.mp4 6.13_4160_Player269-f153ac423f61-20211011-085944.mp4\r\n6.13_12919_Player638-f153ac423f61-20211110-143808.mp4 6.13_4161_Player269-f153ac423f61-20211011-090555.mp4\r\n6.13_1291_Player149-f153ac423f61-20211121-134043.mp4 6.13_4162_Player269-f153ac423f61-20211011-091201.mp4\r\n6.13_12920_Player638-f153ac423f61-20211110-143909.mp4 6.13_4163_Player269-f153ac423f61-20211011-091808.mp4\r\n6.13_12921_Player638-f153ac423f61-20211110-144010.mp4 6.13_4164_Player269-f153ac423f61-20211011-092412.mp4\r\n6.13_12922_Player638-f153ac423f61-20211110-144213.mp4 6.13_4165_Player269-f153ac423f61-20211011-093016.mp4\r\n6.13_12923_Player638-f153ac423f61-20211110-144314.mp4 6.13_4166_Player269-f153ac423f61-20211011-093623.mp4\r\n6.13_12924_Player638-f153ac423f61-20211110-144414.mp4 6.13_4167_Player269-f153ac423f61-20211011-094328.mp4\r\n6.13_12925_Player638-f153ac423f61-20211110-144515.mp4 6.13_4168_Player269-f153ac423f61-20211011-094932.mp4\r\n6.13_12926_Player638-f153ac423f61-20211110-144615.mp4 6.13_4169_Player269-f153ac423f61-20211011-095643.mp4\r\n6.13_12927_Player638-f153ac423f61-20211110-144816.mp4 6.13_416_Player116-b4cba68d5981-20210721-213003.mp4\r\n6.13_12928_Player638-f153ac423f61-20211110-145018.mp4 6.13_4170_Player269-f153ac423f61-20211011-100245.mp4\r\n6.13_12929_Player638-f153ac423f61-20211110-145219.mp4 6.13_4171_Player269-f153ac423f61-20211011-100953.mp4\r\n6.13_1292_Player149-f153ac423f61-20211121-134400.mp4 6.13_4172_Player269-f153ac423f61-20211011-101700.mp4\r\n6.13_12930_Player638-f153ac423f61-20211110-145319.mp4 6.13_4173_Player269-f153ac423f61-20211011-102304.mp4\r\n6.13_12931_Player638-f153ac423f61-20211110-145521.mp4 6.13_4174_Player269-f153ac423f61-20211011-102910.mp4\r\n6.13_12932_Player638-f153ac423f61-20211110-145724.mp4 6.13_4175_Player269-f153ac423f61-20211011-103613.mp4\r\n6.13_12933_Player638-f153ac423f61-20211110-145925.mp4 6.13_4176_Player269-f153ac423f61-20211011-104215.mp4\r\n6.13_12934_Player638-f153ac423f61-20211110-150026.mp4 6.13_4177_Player269-f153ac423f61-20211011-104922.mp4\r\n6.13_12935_Player638-f153ac423f61-20211110-150227.mp4 6.13_4178_Player269-f153ac423f61-20211011-105633.mp4\r\n6.13_12936_Player638-f153ac423f61-20211110-150428.mp4 6.13_4179_Player269-f153ac423f61-20211011-110238.mp4\r\n6.13_12937_Player638-f153ac423f61-20211110-150630.mp4 6.13_417_Player116-f153ac423f61-20210721-103105.mp4\r\n6.13_12938_Player638-f153ac423f61-20211110-150834.mp4 6.13_4180_Player269-f153ac423f61-20211011-110944.mp4\r\n6.13_12939_Player638-f153ac423f61-20211110-151035.mp4 6.13_4181_Player269-f153ac423f61-20211011-111556.mp4\r\n6.13_1293_Player149-f153ac423f61-20211121-134740.mp4 6.13_4182_Player269-f153ac423f61-20211011-112307.mp4\r\n6.13_12940_Player638-f153ac423f61-20211110-151237.mp4 6.13_4183_Player269-f153ac423f61-20211011-113012.mp4\r\n6.13_12941_Player638-f153ac423f61-20211110-151438.mp4 6.13_4184_Player269-f153ac423f61-20211011-113715.mp4\r\n6.13_12942_Player638-f153ac423f61-20211110-151639.mp4 6.13_4185_Player269-f153ac423f61-20211011-114419.mp4\r\n6.13_12943_Player638-f153ac423f61-20211110-151839.mp4 6.13_4186_Player269-f153ac423f61-20211011-115023.mp4\r\n6.13_12944_Player638-f153ac423f61-20211110-152039.mp4 6.13_4187_Player269-f153ac423f61-20211011-115728.mp4\r\n6.13_12945_Player638-f153ac423f61-20211110-152241.mp4 6.13_4188_Player269-f153ac423f61-20211011-120336.mp4\r\n6.13_12946_Player638-f153ac423f61-20211110-152442.mp4 6.13_4189_Player269-f153ac423f61-20211011-121048.mp4\r\n6.13_12947_Player638-f153ac423f61-20211110-152642.mp4 6.13_418_Player116-f153ac423f61-20210721-104631.mp4\r\n6.13_12948_Player638-f153ac423f61-20211110-152843.mp4 6.13_4190_Player27-f153ac423f61-20210810-155552.mp4\r\n6.13_12949_Player638-f153ac423f61-20211110-153044.mp4 6.13_4191_Player27-f153ac423f61-20210810-174558.mp4\r\n6.13_1294_Player149-f153ac423f61-20211121-135218.mp4 6.13_4192_Player271-f153ac423f61-20210828-155254.mp4\r\n6.13_12950_Player638-f153ac423f61-20211110-153244.mp4 6.13_4193_Player271-f153ac423f61-20210828-160103.mp4\r\n6.13_12951_Player638-f153ac423f61-20211110-153445.mp4 6.13_4194_Player271-f153ac423f61-20210828-160855.mp4\r\n6.13_12952_Player638-f153ac423f61-20211110-153646.mp4 6.13_4195_Player271-f153ac423f61-20210828-161823.mp4\r\n6.13_12953_Player638-f153ac423f61-20211110-153848.mp4 6.13_4196_Player271-f153ac423f61-20210828-162845.mp4\r\n6.13_12954_Player638-f153ac423f61-20211110-154049.mp4 6.13_4197_Player271-f153ac423f61-20210828-163841.mp4\r\n6.13_12955_Player638-f153ac423f61-20211110-154249.mp4 6.13_4198_Player271-f153ac423f61-20210828-164930.mp4\r\n6.13_12956_Player638-f153ac423f61-20211110-154450.mp4 6.13_4199_Player271-f153ac423f61-20210828-165844.mp4\r\n6.13_12957_Player638-f153ac423f61-20211110-154651.mp4 6.13_419_Player116-f153ac423f61-20210721-110408.mp4\r\n6.13_12958_Player638-f153ac423f61-20211110-154853.mp4 6.13_4200_Player271-f153ac423f61-20210828-171032.mp4\r\n6.13_12959_Player638-f153ac423f61-20211110-155054.mp4 6.13_4201_Player271-f153ac423f61-20210828-171703.mp4\r\n6.13_1295_Player149-f153ac423f61-20211121-135634.mp4 6.13_4202_Player271-f153ac423f61-20210828-172453.mp4\r\n6.13_12960_Player638-f153ac423f61-20211110-155256.mp4 6.13_4203_Player271-f153ac423f61-20210828-173520.mp4\r\n6.13_12961_Player638-f153ac423f61-20211110-155457.mp4 6.13_4204_Player271-f153ac423f61-20210828-174152.mp4\r\n6.13_12962_Player638-f153ac423f61-20211110-155700.mp4 6.13_4205_Player271-f153ac423f61-20210828-174943.mp4\r\n6.13_12963_Player638-f153ac423f61-20211110-155904.mp4 6.13_4206_Player273-b897139457e3-20210926-061949.mp4\r\n6.13_12964_Player638-f153ac423f61-20211110-160104.mp4 6.13_4207_Player273-b897139457e3-20210926-062951.mp4\r\n6.13_12965_Player638-f153ac423f61-20211110-160305.mp4 6.13_4208_Player273-b897139457e3-20210926-064001.mp4\r\n6.13_12966_Player638-f153ac423f61-20211110-160506.mp4 6.13_4209_Player273-b897139457e3-20210926-065010.mp4\r\n6.13_12967_Player638-f153ac423f61-20211110-160706.mp4 6.13_420_Player116-f153ac423f61-20210721-111929.mp4\r\n6.13_12968_Player638-f153ac423f61-20211110-160907.mp4 6.13_4210_Player273-b897139457e3-20210926-070019.mp4\r\n6.13_12969_Player638-f153ac423f61-20211110-161108.mp4 6.13_4211_Player273-b897139457e3-20210926-071125.mp4\r\n6.13_1296_Player149-f153ac423f61-20211121-140104.mp4 6.13_4212_Player273-b897139457e3-20210926-072133.mp4\r\n6.13_12970_Player638-f153ac423f61-20211110-161308.mp4 6.13_4213_Player273-b897139457e3-20210926-073137.mp4\r\n6.13_12971_Player638-f153ac423f61-20211110-161509.mp4 6.13_4214_Player273-b897139457e3-20210926-074145.mp4\r\n6.13_12972_Player638-f153ac423f61-20211110-161709.mp4 6.13_4215_Player273-b897139457e3-20210926-075156.mp4\r\n6.13_12973_Player638-f153ac423f61-20211110-161911.mp4 6.13_4216_Player273-b897139457e3-20210926-080205.mp4\r\n6.13_12974_Player638-f153ac423f61-20211110-162113.mp4 6.13_4217_Player273-b897139457e3-20210926-081210.mp4\r\n6.13_12975_Player638-f153ac423f61-20211110-162313.mp4 6.13_4218_Player273-f153ac423f61-20210730-122609.mp4\r\n6.13_12976_Player638-f153ac423f61-20211110-162514.mp4 6.13_4219_Player273-f153ac423f61-20210730-123040.mp4\r\n6.13_12977_Player638-f153ac423f61-20211110-162714.mp4 6.13_421_Player116-f153ac423f61-20210721-113651.mp4\r\n6.13_12978_Player638-f153ac423f61-20211110-162914.mp4 6.13_4220_Player273-f153ac423f61-20210730-123349.mp4\r\n6.13_12979_Player638-f153ac423f61-20211110-163116.mp4 6.13_4221_Player273-f153ac423f61-20210730-123706.mp4\r\n6.13_1297_Player149-f153ac423f61-20211121-140525.mp4 6.13_4222_Player273-f153ac423f61-20210730-124014.mp4\r\n6.13_12980_Player638-f153ac423f61-20211110-163317.mp4 6.13_4223_Player273-f153ac423f61-20210730-124433.mp4\r\n6.13_12981_Player638-f153ac423f61-20211110-163517.mp4 6.13_4224_Player273-f153ac423f61-20210730-124755.mp4\r\n6.13_12982_Player638-f153ac423f61-20211110-163717.mp4 6.13_4225_Player273-f153ac423f61-20210730-125204.mp4\r\n6.13_12983_Player638-f153ac423f61-20211110-163918.mp4 6.13_4226_Player273-f153ac423f61-20210730-125513.mp4\r\n6.13_12984_Player638-f153ac423f61-20211110-164119.mp4 6.13_4227_Player273-f153ac423f61-20210807-161524.mp4\r\n6.13_12985_Player638-f153ac423f61-20211110-164321.mp4 6.13_4228_Player273-f153ac423f61-20210807-161935.mp4\r\n6.13_12986_Player638-f153ac423f61-20211110-164526.mp4 6.13_4229_Player273-f153ac423f61-20210807-162350.mp4\r\n6.13_12987_Player638-f153ac423f61-20211110-164729.mp4 6.13_422_Player116-f153ac423f61-20210721-115512.mp4\r\n6.13_12988_Player638-f153ac423f61-20211110-164931.mp4 6.13_4230_Player273-f153ac423f61-20210807-162716.mp4\r\n6.13_12989_Player638-f153ac423f61-20211110-165132.mp4 6.13_4231_Player273-f153ac423f61-20210807-163029.mp4\r\n6.13_1298_Player149-f153ac423f61-20211121-140959.mp4 6.13_4232_Player273-f153ac423f61-20210807-163445.mp4\r\n6.13_12990_Player638-f153ac423f61-20211110-165334.mp4 6.13_4233_Player273-f153ac423f61-20210807-163900.mp4\r\n6.13_12991_Player638-f153ac423f61-20211110-165535.mp4 6.13_4234_Player273-f153ac423f61-20210807-164322.mp4\r\n6.13_12992_Player638-f153ac423f61-20211110-165738.mp4 6.13_4235_Player273-f153ac423f61-20210807-164643.mp4\r\n6.13_12993_Player638-f153ac423f61-20211110-165939.mp4 6.13_4236_Player273-f153ac423f61-20210807-165004.mp4\r\n6.13_12994_Player638-f153ac423f61-20211110-170139.mp4 6.13_4237_Player273-f153ac423f61-20210807-165320.mp4\r\n6.13_12995_Player638-f153ac423f61-20211110-170340.mp4 6.13_4238_Player273-f153ac423f61-20210807-165730.mp4\r\n6.13_12996_Player638-f153ac423f61-20211110-170541.mp4 6.13_4239_Player273-f153ac423f61-20210807-170140.mp4\r\n6.13_12997_Player638-f153ac423f61-20211110-170741.mp4 6.13_423_Player116-f153ac423f61-20210721-121346.mp4\r\n6.13_12998_Player639-f153ac423f61-20211120-173201.mp4 6.13_4240_Player273-f153ac423f61-20210807-170546.mp4\r\n6.13_12999_Player639-f153ac423f61-20211120-173401.mp4 6.13_4241_Player273-f153ac423f61-20210807-170905.mp4\r\n6.13_1299_Player149-f153ac423f61-20211121-141452.mp4 6.13_4242_Player273-f153ac423f61-20210807-171227.mp4\r\n6.13_129_Player100-695d64aecaf9-20211220-210347.mp4 6.13_4243_Player273-f153ac423f61-20210807-171533.mp4\r\n6.13_13000_Player639-f153ac423f61-20211120-173540.mp4 6.13_4244_Player273-f153ac423f61-20210807-171839.mp4\r\n6.13_13001_Player639-f153ac423f61-20211120-173729.mp4 6.13_4245_Player273-f153ac423f61-20210807-172147.mp4\r\n6.13_13002_Player639-f153ac423f61-20211120-173911.mp4 6.13_4246_Player273-f153ac423f61-20210807-172450.mp4\r\n6.13_13003_Player639-f153ac423f61-20211120-174059.mp4 6.13_4247_Player273-f153ac423f61-20210807-172755.mp4\r\n6.13_13004_Player639-f153ac423f61-20211120-174247.mp4 6.13_4248_Player273-f153ac423f61-20210807-173110.mp4\r\n6.13_13005_Player639-f153ac423f61-20211120-174436.mp4 6.13_4249_Player273-f153ac423f61-20210807-173443.mp4\r\n6.13_13006_Player639-f153ac423f61-20211120-174626.mp4 6.13_424_Player116-f153ac423f61-20210721-123213.mp4\r\n6.13_13007_Player639-f153ac423f61-20211120-174816.mp4 6.13_4250_Player273-f153ac423f61-20210807-173800.mp4\r\n6.13_13008_Player639-f153ac423f61-20211120-175000.mp4 6.13_4251_Player273-f153ac423f61-20210926-050012.mp4\r\n6.13_13009_Player639-f153ac423f61-20211120-175140.mp4 6.13_4252_Player273-f153ac423f61-20210926-051025.mp4\r\n6.13_1300_Player149-f153ac423f61-20211121-141912.mp4 6.13_4253_Player273-f153ac423f61-20210926-052032.mp4\r\n6.13_13010_Player639-f153ac423f61-20211120-175323.mp4 6.13_4254_Player273-f153ac423f61-20210926-053140.mp4\r\n6.13_13011_Player639-f153ac423f61-20211120-175446.mp4 6.13_4255_Player273-f153ac423f61-20210926-054254.mp4\r\n6.13_13012_Player639-f153ac423f61-20211120-175637.mp4 6.13_4256_Player273-f153ac423f61-20210926-055200.mp4\r\n6.13_13013_Player639-f153ac423f61-20211120-175823.mp4 6.13_4257_Player273-f153ac423f61-20210926-060107.mp4\r\n6.13_13014_Player639-f153ac423f61-20211120-180005.mp4 6.13_4258_Player273-f153ac423f61-20210926-061012.mp4\r\n6.13_13015_Player639-f153ac423f61-20211120-180150.mp4 6.13_4259_Player274-18fb18597489-20210805-104418.mp4\r\n6.13_13016_Player639-f153ac423f61-20211120-180341.mp4 6.13_425_Player116-f153ac423f61-20210721-124827.mp4\r\n6.13_13017_Player639-f153ac423f61-20211120-180521.mp4 6.13_4260_Player274-18fb18597489-20210805-104527.mp4\r\n6.13_13018_Player639-f153ac423f61-20211120-180625.mp4 6.13_4261_Player274-18fb18597489-20210805-104640.mp4\r\n6.13_13019_Player639-f153ac423f61-20211120-180734.mp4 6.13_4262_Player274-18fb18597489-20210805-104748.mp4\r\n6.13_1301_Player149-f153ac423f61-20211121-142334.mp4 6.13_4263_Player274-18fb18597489-20210805-104855.mp4\r\n6.13_13020_Player639-f153ac423f61-20211120-180840.mp4 6.13_4264_Player274-18fb18597489-20210805-105031.mp4\r\n6.13_13021_Player639-f153ac423f61-20211120-180947.mp4 6.13_4265_Player274-18fb18597489-20210805-105136.mp4\r\n6.13_13022_Player639-f153ac423f61-20211120-181051.mp4 6.13_4266_Player274-18fb18597489-20210805-105241.mp4\r\n6.13_13023_Player639-f153ac423f61-20211120-181156.mp4 6.13_4267_Player274-18fb18597489-20210805-105345.mp4\r\n6.13_13024_Player639-f153ac423f61-20211120-181318.mp4 6.13_4268_Player274-18fb18597489-20210805-105448.mp4\r\n6.13_13025_Player639-f153ac423f61-20211120-181434.mp4 6.13_4269_Player274-1e677a864ded-20210805-150046.mp4\r\n6.13_13026_Player639-f153ac423f61-20211120-181539.mp4 6.13_426_Player116-f153ac423f61-20210721-130448.mp4\r\n6.13_13027_Player639-f153ac423f61-20211120-181700.mp4 6.13_4270_Player274-1e677a864ded-20210805-150238.mp4\r\n6.13_13028_Player639-f153ac423f61-20211120-181806.mp4 6.13_4271_Player274-1e677a864ded-20210805-150429.mp4\r\n6.13_13029_Player639-f153ac423f61-20211120-181917.mp4 6.13_4272_Player274-1e677a864ded-20210805-150617.mp4\r\n6.13_1302_Player15-605e7ce7bebd-20211221-023124.mp4 6.13_4273_Player274-1e677a864ded-20210805-150757.mp4\r\n6.13_13030_Player639-f153ac423f61-20211120-182025.mp4 6.13_4274_Player274-1e677a864ded-20210805-150946.mp4\r\n6.13_13031_Player639-f153ac423f61-20211120-182131.mp4 6.13_4275_Player274-1e677a864ded-20210805-151141.mp4\r\n6.13_13032_Player639-f153ac423f61-20211120-182241.mp4 6.13_4276_Player274-1e677a864ded-20210805-151402.mp4\r\n6.13_13033_Player639-f153ac423f61-20211120-182356.mp4 6.13_4277_Player274-1e677a864ded-20210805-151605.mp4\r\n6.13_13034_Player639-f153ac423f61-20211120-182501.mp4 6.13_4278_Player274-1e677a864ded-20210805-151747.mp4\r\n6.13_13035_Player639-f153ac423f61-20211120-182611.mp4 6.13_4279_Player274-1e677a864ded-20210805-151910.mp4\r\n6.13_13036_Player639-f153ac423f61-20211120-182730.mp4 6.13_427_Player116-f153ac423f61-20210721-132007.mp4\r\n6.13_13037_Player639-f153ac423f61-20211120-182851.mp4 6.13_4280_Player274-1e677a864ded-20210805-182651.mp4\r\n6.13_13038_Player639-f153ac423f61-20211120-183009.mp4 6.13_4281_Player274-1e677a864ded-20210805-182756.mp4\r\n6.13_13039_Player639-f153ac423f61-20211120-183117.mp4 6.13_4282_Player274-2746824a4297-20210805-111108.mp4\r\n6.13_1303_Player15-605e7ce7bebd-20211221-023326.mp4 6.13_4283_Player274-2746824a4297-20210805-111211.mp4\r\n6.13_13040_Player639-f153ac423f61-20211211-183148.mp4 6.13_4284_Player274-2746824a4297-20210805-111313.mp4\r\n6.13_13041_Player64-f153ac423f61-20211110-100459.mp4 6.13_4285_Player274-2746824a4297-20210805-111418.mp4\r\n6.13_13042_Player64-f153ac423f61-20211110-100928.mp4 6.13_4286_Player274-2746824a4297-20210805-114551.mp4\r\n6.13_13043_Player64-f153ac423f61-20211110-101358.mp4 6.13_4287_Player274-2746824a4297-20210805-114705.mp4\r\n6.13_13044_Player64-f153ac423f61-20211110-101813.mp4 6.13_4288_Player274-2746824a4297-20210805-114910.mp4\r\n6.13_13045_Player64-f153ac423f61-20211110-102125.mp4 6.13_4289_Player274-2746824a4297-20210805-115024.mp4\r\n6.13_13046_Player64-f153ac423f61-20211110-102543.mp4 6.13_428_Player116-f153ac423f61-20210721-133519.mp4\r\n6.13_13047_Player64-f153ac423f61-20211110-103001.mp4 6.13_4290_Player274-2746824a4297-20210805-115139.mp4\r\n6.13_13048_Player64-f153ac423f61-20211110-103415.mp4 6.13_4291_Player274-2746824a4297-20210805-115252.mp4\r\n6.13_13049_Player64-f153ac423f61-20211110-103836.mp4 6.13_4292_Player274-5db22c6aa984-20210806-095528.mp4\r\n6.13_1304_Player15-605e7ce7bebd-20211221-023527.mp4 6.13_4293_Player274-5db22c6aa984-20210806-095702.mp4\r\n6.13_13050_Player64-f153ac423f61-20211110-104320.mp4 6.13_4294_Player274-5db22c6aa984-20210806-095920.mp4\r\n6.13_13051_Player643-f153ac423f61-20210923-173539.mp4 6.13_4295_Player274-5db22c6aa984-20210806-100115.mp4\r\n6.13_13052_Player643-f153ac423f61-20210923-173710.mp4 6.13_4296_Player274-64844ce8401d-20210805-105510.mp4\r\n6.13_13053_Player643-f153ac423f61-20210923-173833.mp4 6.13_4297_Player274-64844ce8401d-20210805-105617.mp4\r\n6.13_13054_Player643-f153ac423f61-20210923-173946.mp4 6.13_4298_Player274-78d67ba8fce8-20210806-100543.mp4\r\n6.13_13055_Player643-f153ac423f61-20210923-174100.mp4 6.13_4299_Player274-78d67ba8fce8-20210806-100901.mp4\r\n6.13_13056_Player643-f153ac423f61-20210923-174213.mp4 6.13_429_Player116-f153ac423f61-20210721-135344.mp4\r\n6.13_13057_Player643-f153ac423f61-20210923-174330.mp4 6.13_4300_Player274-78d67ba8fce8-20210806-101214.mp4\r\n6.13_13058_Player643-f153ac423f61-20210923-174444.mp4 6.13_4301_Player274-78d67ba8fce8-20210806-101514.mp4\r\n6.13_13059_Player643-f153ac423f61-20210923-174601.mp4 6.13_4302_Player274-78d67ba8fce8-20210806-101742.mp4\r\n6.13_1305_Player15-605e7ce7bebd-20211221-023727.mp4 6.13_4303_Player274-78d67ba8fce8-20210806-102001.mp4\r\n6.13_13060_Player643-f153ac423f61-20210923-174718.mp4 6.13_4304_Player274-78d67ba8fce8-20210806-102219.mp4\r\n6.13_13061_Player643-f153ac423f61-20210923-174832.mp4 6.13_4305_Player274-78d67ba8fce8-20210806-102432.mp4\r\n6.13_13062_Player643-f153ac423f61-20210923-174941.mp4 6.13_4306_Player274-78d67ba8fce8-20210806-102643.mp4\r\n6.13_13063_Player643-f153ac423f61-20210923-175054.mp4 6.13_4307_Player274-78d67ba8fce8-20210806-102855.mp4\r\n6.13_13064_Player643-f153ac423f61-20210923-175212.mp4 6.13_4308_Player274-78d67ba8fce8-20210806-103107.mp4\r\n6.13_13065_Player643-f153ac423f61-20210923-175332.mp4 6.13_4309_Player274-78d67ba8fce8-20210806-103317.mp4\r\n6.13_13066_Player643-f153ac423f61-20210923-175454.mp4 6.13_430_Player117-f153ac423f61-20210916-180839.mp4\r\n6.13_13067_Player643-f153ac423f61-20210923-175622.mp4 6.13_4310_Player274-78d67ba8fce8-20210806-103524.mp4\r\n6.13_13068_Player643-f153ac423f61-20210923-175747.mp4 6.13_4311_Player274-78d67ba8fce8-20210806-103729.mp4\r\n6.13_13069_Player643-f153ac423f61-20210923-175908.mp4 6.13_4312_Player274-78d67ba8fce8-20210806-103930.mp4\r\n6.13_1306_Player15-605e7ce7bebd-20211221-023928.mp4 6.13_4313_Player274-78d67ba8fce8-20210806-104134.mp4\r\n6.13_13070_Player643-f153ac423f61-20210923-180026.mp4 6.13_4314_Player274-78d67ba8fce8-20210806-104339.mp4\r\n6.13_13071_Player643-f153ac423f61-20210923-180201.mp4 6.13_4315_Player274-793a5270da1a-20210805-183021.mp4\r\n6.13_13072_Player643-f153ac423f61-20210923-180325.mp4 6.13_4316_Player274-85b15e2d4953-20210805-130801.mp4\r\n6.13_13073_Player643-f153ac423f61-20210923-180453.mp4 6.13_4317_Player274-85b15e2d4953-20210805-130908.mp4\r\n6.13_13074_Player643-f153ac423f61-20210923-180643.mp4 6.13_4318_Player274-85b15e2d4953-20210805-131011.mp4\r\n6.13_13075_Player643-f153ac423f61-20210923-180800.mp4 6.13_4319_Player274-85b15e2d4953-20210805-131112.mp4\r\n6.13_13076_Player643-f153ac423f61-20210923-180923.mp4 6.13_431_Player117-f153ac423f61-20210916-181440.mp4\r\n6.13_13077_Player643-f153ac423f61-20210923-181049.mp4 6.13_4320_Player274-85b15e2d4953-20210805-131214.mp4\r\n6.13_13078_Player643-f153ac423f61-20210923-181223.mp4 6.13_4321_Player274-85b15e2d4953-20210805-131317.mp4\r\n6.13_13079_Player643-f153ac423f61-20210923-181350.mp4 6.13_4322_Player274-85b15e2d4953-20210805-131420.mp4\r\n6.13_1307_Player15-605e7ce7bebd-20211221-024129.mp4 6.13_4323_Player274-85b15e2d4953-20210805-131522.mp4\r\n6.13_13080_Player643-f153ac423f61-20210923-181516.mp4 6.13_4324_Player274-85b15e2d4953-20210805-131624.mp4\r\n6.13_13081_Player643-f153ac423f61-20210923-181640.mp4 6.13_4325_Player274-85b15e2d4953-20210805-131727.mp4\r\n6.13_13082_Player643-f153ac423f61-20210923-181754.mp4 6.13_4326_Player274-85b15e2d4953-20210805-131831.mp4\r\n6.13_13083_Player643-f153ac423f61-20210923-181905.mp4 6.13_4327_Player274-85b15e2d4953-20210805-131937.mp4\r\n6.13_13084_Player643-f153ac423f61-20210923-182020.mp4 6.13_4328_Player274-85b15e2d4953-20210805-132047.mp4\r\n6.13_13085_Player643-f153ac423f61-20210923-182149.mp4 6.13_4329_Player274-85b15e2d4953-20210805-132156.mp4\r\n6.13_13086_Player643-f153ac423f61-20210923-182315.mp4 6.13_432_Player117-f153ac423f61-20211102-160121.mp4\r\n6.13_13087_Player643-f153ac423f61-20210923-182445.mp4 6.13_4330_Player274-85b15e2d4953-20210805-132303.mp4\r\n6.13_13088_Player643-f153ac423f61-20210923-182608.mp4 6.13_4331_Player274-85b15e2d4953-20210805-132411.mp4\r\n6.13_13089_Player643-f153ac423f61-20210923-182736.mp4 6.13_4332_Player274-85b15e2d4953-20210805-132517.mp4\r\n6.13_1308_Player15-605e7ce7bebd-20211221-024329.mp4 6.13_4333_Player274-85b15e2d4953-20210805-132623.mp4\r\n6.13_13090_Player643-f153ac423f61-20210923-182905.mp4 6.13_4334_Player274-85b15e2d4953-20210805-132728.mp4\r\n6.13_13091_Player643-f153ac423f61-20210923-183025.mp4 6.13_4335_Player274-85b15e2d4953-20210805-132833.mp4\r\n6.13_13092_Player643-f153ac423f61-20210923-183154.mp4 6.13_4336_Player274-85b15e2d4953-20210805-132938.mp4\r\n6.13_13093_Player643-f153ac423f61-20210923-183327.mp4 6.13_4337_Player274-85b15e2d4953-20210805-133042.mp4\r\n6.13_13094_Player643-f153ac423f61-20210923-183453.mp4 6.13_4338_Player274-85b15e2d4953-20210805-133145.mp4\r\n6.13_13095_Player643-f153ac423f61-20210923-183608.mp4 6.13_4339_Player274-85b15e2d4953-20210805-133249.mp4\r\n6.13_13096_Player643-f153ac423f61-20210923-183724.mp4 6.13_433_Player117-f153ac423f61-20211102-160816.mp4\r\n6.13_13097_Player643-f153ac423f61-20210923-183845.mp4 6.13_4340_Player274-85b15e2d4953-20210805-133351.mp4\r\n6.13_13098_Player643-f153ac423f61-20210923-184005.mp4 6.13_4341_Player274-85b15e2d4953-20210805-133454.mp4\r\n6.13_13099_Player643-f153ac423f61-20210923-184120.mp4 6.13_4342_Player274-85b15e2d4953-20210805-133558.mp4\r\n6.13_1309_Player15-605e7ce7bebd-20211221-024529.mp4 6.13_4343_Player274-85b15e2d4953-20210805-140133.mp4\r\n6.13_130_Player100-695d64aecaf9-20211220-210548.mp4 6.13_4344_Player274-85b15e2d4953-20210805-140450.mp4\r\n6.13_13100_Player643-f153ac423f61-20210923-184230.mp4 6.13_4345_Player274-85b15e2d4953-20210805-140557.mp4\r\n6.13_13101_Player643-f153ac423f61-20210923-184345.mp4 6.13_4346_Player274-85b15e2d4953-20210805-140702.mp4\r\n6.13_13102_Player643-f153ac423f61-20210923-184459.mp4 6.13_4347_Player274-85b15e2d4953-20210805-140804.mp4\r\n6.13_13103_Player643-f153ac423f61-20210923-184609.mp4 6.13_4348_Player274-86554ae12c05-20210805-115529.mp4\r\n6.13_13104_Player643-f153ac423f61-20210923-184725.mp4 6.13_4349_Player274-86554ae12c05-20210805-115636.mp4\r\n6.13_13105_Player643-f153ac423f61-20210923-184838.mp4 6.13_434_Player117-f153ac423f61-20211102-161552.mp4\r\n6.13_13106_Player643-f153ac423f61-20210923-184953.mp4 6.13_4350_Player274-86554ae12c05-20210805-115746.mp4\r\n6.13_13107_Player643-f153ac423f61-20210923-185125.mp4 6.13_4351_Player274-86554ae12c05-20210805-115857.mp4\r\n6.13_13108_Player643-f153ac423f61-20210923-185256.mp4 6.13_4352_Player274-86554ae12c05-20210805-120002.mp4\r\n6.13_13109_Player643-f153ac423f61-20210923-185427.mp4 6.13_4353_Player274-a19a808ba615-20210805-104004.mp4\r\n6.13_1310_Player15-605e7ce7bebd-20211221-024730.mp4 6.13_4354_Player274-a19a808ba615-20210805-104110.mp4\r\n6.13_13110_Player643-f153ac423f61-20210923-185553.mp4 6.13_4355_Player274-a19a808ba615-20210805-104212.mp4\r\n6.13_13111_Player643-f153ac423f61-20210923-185717.mp4 6.13_4356_Player274-aa574502ed55-20210805-120047.mp4\r\n6.13_13112_Player643-f153ac423f61-20210923-185837.mp4 6.13_4357_Player274-aa574502ed55-20210805-120156.mp4\r\n6.13_13113_Player643-f153ac423f61-20210923-185958.mp4 6.13_4358_Player274-aa574502ed55-20210805-120303.mp4\r\n6.13_13114_Player643-f153ac423f61-20210923-190113.mp4 6.13_4359_Player274-aa574502ed55-20210805-120413.mp4\r\n6.13_13115_Player643-f153ac423f61-20210923-190232.mp4 6.13_435_Player117-f153ac423f61-20211102-162333.mp4\r\n6.13_13116_Player643-f153ac423f61-20210923-190356.mp4 6.13_4360_Player274-aa574502ed55-20210805-120521.mp4\r\n6.13_13117_Player643-f153ac423f61-20210923-190524.mp4 6.13_4361_Player274-aa574502ed55-20210805-120626.mp4\r\n6.13_13118_Player643-f153ac423f61-20210923-190658.mp4 6.13_4362_Player274-aa574502ed55-20210805-120732.mp4\r\n6.13_13119_Player643-f153ac423f61-20210923-190836.mp4 6.13_4363_Player274-aa574502ed55-20210805-120835.mp4\r\n6.13_1311_Player15-605e7ce7bebd-20211221-024930.mp4 6.13_4364_Player274-aa574502ed55-20210805-120943.mp4\r\n6.13_13120_Player643-f153ac423f61-20210923-191011.mp4 6.13_4365_Player274-aa574502ed55-20210805-121047.mp4\r\n6.13_13121_Player643-f153ac423f61-20210923-191150.mp4 6.13_4366_Player274-aa574502ed55-20210805-121149.mp4\r\n6.13_13122_Player643-f153ac423f61-20210923-191316.mp4 6.13_4367_Player274-aa574502ed55-20210805-121251.mp4\r\n6.13_13123_Player643-f153ac423f61-20210923-191441.mp4 6.13_4368_Player274-aa574502ed55-20210805-121353.mp4\r\n6.13_13124_Player643-f153ac423f61-20210923-191603.mp4 6.13_4369_Player274-aa574502ed55-20210805-121455.mp4\r\n6.13_13125_Player643-f153ac423f61-20210923-191730.mp4 6.13_436_Player117-f153ac423f61-20211102-163001.mp4\r\n6.13_13126_Player643-f153ac423f61-20210923-191851.mp4 6.13_4370_Player274-aa574502ed55-20210805-121558.mp4\r\n6.13_13127_Player643-f153ac423f61-20210923-192021.mp4 6.13_4371_Player274-aa574502ed55-20210805-121707.mp4\r\n6.13_13128_Player643-f153ac423f61-20210923-192153.mp4 6.13_4372_Player274-aa574502ed55-20210805-121810.mp4\r\n6.13_13129_Player643-f153ac423f61-20210923-192330.mp4 6.13_4373_Player274-aa574502ed55-20210805-121942.mp4\r\n6.13_1312_Player15-605e7ce7bebd-20211221-025130.mp4 6.13_4374_Player274-aa574502ed55-20210805-122057.mp4\r\n6.13_13130_Player643-f153ac423f61-20210923-192510.mp4 6.13_4375_Player274-bd968c0de213-20210805-130439.mp4\r\n6.13_13131_Player643-f153ac423f61-20210923-192639.mp4 6.13_4376_Player274-bd968c0de213-20210805-130549.mp4\r\n6.13_13132_Player643-f153ac423f61-20210923-192802.mp4 6.13_4377_Player274-bfbff4cc23c8-20210805-144338.mp4\r\n6.13_13133_Player643-f153ac423f61-20210923-192919.mp4 6.13_4378_Player274-bfbff4cc23c8-20210805-144449.mp4\r\n6.13_13134_Player643-f153ac423f61-20210923-193035.mp4 6.13_4379_Player274-bfbff4cc23c8-20210805-144551.mp4\r\n6.13_13135_Player643-f153ac423f61-20210923-193150.mp4 6.13_437_Player117-f153ac423f61-20211102-163722.mp4\r\n6.13_13136_Player643-f153ac423f61-20210923-193316.mp4 6.13_4380_Player274-bfbff4cc23c8-20210805-144653.mp4\r\n6.13_13137_Player643-f153ac423f61-20210923-193443.mp4 6.13_4381_Player274-bfbff4cc23c8-20210805-144754.mp4\r\n6.13_13138_Player643-f153ac423f61-20210923-193559.mp4 6.13_4382_Player274-bfbff4cc23c8-20210805-144856.mp4\r\n6.13_13139_Player643-f153ac423f61-20210923-193717.mp4 6.13_4383_Player274-bfbff4cc23c8-20210805-144959.mp4\r\n6.13_1313_Player15-605e7ce7bebd-20211221-025330.mp4 6.13_4384_Player274-c0c5e3a8c9a4-20210805-143812.mp4\r\n6.13_13140_Player643-f153ac423f61-20210923-193841.mp4 6.13_4385_Player274-c0c5e3a8c9a4-20210805-143920.mp4\r\n6.13_13141_Player643-f153ac423f61-20210923-194000.mp4 6.13_4386_Player274-c0c5e3a8c9a4-20210805-144027.mp4\r\n6.13_13142_Player643-f153ac423f61-20210923-194117.mp4 6.13_4387_Player274-c0c5e3a8c9a4-20210805-144134.mp4\r\n6.13_13143_Player643-f153ac423f61-20210923-194243.mp4 6.13_4388_Player274-c0c5e3a8c9a4-20210805-144237.mp4\r\n6.13_13144_Player643-f153ac423f61-20210923-194400.mp4 6.13_4389_Player274-c5c6dcf304d7-20210805-110003.mp4\r\n6.13_13145_Player643-f153ac423f61-20210923-194526.mp4 6.13_438_Player117-f153ac423f61-20211102-164418.mp4\r\n6.13_13146_Player643-f153ac423f61-20210923-194653.mp4 6.13_4390_Player274-c5c6dcf304d7-20210805-110108.mp4\r\n6.13_13147_Player643-f153ac423f61-20210923-194810.mp4 6.13_4391_Player274-c5c6dcf304d7-20210805-110409.mp4\r\n6.13_13148_Player643-f153ac423f61-20210923-194918.mp4 6.13_4392_Player274-c5c6dcf304d7-20210805-110517.mp4\r\n6.13_13149_Player643-f153ac423f61-20210923-195026.mp4 6.13_4393_Player274-c5c6dcf304d7-20210805-110623.mp4\r\n6.13_1314_Player15-605e7ce7bebd-20211221-025431.mp4 6.13_4394_Player274-c5c6dcf304d7-20210805-110728.mp4\r\n6.13_13150_Player643-f153ac423f61-20210923-195148.mp4 6.13_4395_Player274-c5c6dcf304d7-20210805-110833.mp4\r\n6.13_13151_Player643-f153ac423f61-20210923-195312.mp4 6.13_4396_Player274-c5c6dcf304d7-20210805-110935.mp4\r\n6.13_13152_Player643-f153ac423f61-20210923-195445.mp4 6.13_4397_Player274-c9b16ed95206-20210805-105741.mp4\r\n6.13_13153_Player643-f153ac423f61-20210923-195611.mp4 6.13_4398_Player274-c9b16ed95206-20210805-105846.mp4\r\n6.13_13154_Player643-f153ac423f61-20210923-195742.mp4 6.13_4399_Player274-e40bebe2fc01-20210806-100226.mp4\r\n6.13_13155_Player643-f153ac423f61-20210923-195857.mp4 6.13_439_Player117-f153ac423f61-20211102-165215.mp4\r\n6.13_13156_Player643-f153ac423f61-20210923-200019.mp4 6.13_4400_Player274-e40bebe2fc01-20210806-100408.mp4\r\n6.13_13157_Player643-f153ac423f61-20210923-200147.mp4 6.13_4401_Player274-f153ac423f61-20210805-091134.mp4\r\n6.13_13158_Player644-21b4af4735e6-20211216-122056.mp4 6.13_4402_Player274-f153ac423f61-20210805-094347.mp4\r\n6.13_13159_Player644-f153ac423f61-20211216-115033.mp4 6.13_4403_Player274-f153ac423f61-20210805-094450.mp4\r\n6.13_1315_Player15-605e7ce7bebd-20211221-025531.mp4 6.13_4404_Player274-f153ac423f61-20210805-094553.mp4\r\n6.13_13160_Player644-f153ac423f61-20211216-115143.mp4 6.13_4405_Player274-f153ac423f61-20210805-095304.mp4\r\n6.13_13161_Player644-f153ac423f61-20211216-115249.mp4 6.13_4406_Player274-f153ac423f61-20210805-095411.mp4\r\n6.13_13162_Player644-f153ac423f61-20211216-115402.mp4 6.13_4407_Player274-f153ac423f61-20210805-095518.mp4\r\n6.13_13163_Player644-f153ac423f61-20211216-115514.mp4 6.13_4408_Player274-f153ac423f61-20210805-095621.mp4\r\n6.13_13164_Player644-f153ac423f61-20211216-115626.mp4 6.13_4409_Player274-f153ac423f61-20210805-095725.mp4\r\n6.13_13165_Player644-f153ac423f61-20211216-115741.mp4 6.13_440_Player117-f153ac423f61-20211102-165941.mp4\r\n6.13_13166_Player644-f153ac423f61-20211216-115851.mp4 6.13_4410_Player274-f153ac423f61-20210805-095848.mp4\r\n6.13_13167_Player644-f153ac423f61-20211216-120002.mp4 6.13_4411_Player274-f153ac423f61-20210805-100001.mp4\r\n6.13_13168_Player644-f153ac423f61-20211216-120115.mp4 6.13_4412_Player274-f8249412a743-20210805-145201.mp4\r\n6.13_13169_Player644-f153ac423f61-20211216-120224.mp4 6.13_4413_Player274-f8249412a743-20210805-145303.mp4\r\n6.13_1316_Player15-605e7ce7bebd-20211221-025731.mp4 6.13_4414_Player274-f8249412a743-20210805-145407.mp4\r\n6.13_13170_Player644-f153ac423f61-20211216-120334.mp4 6.13_4415_Player274-f8249412a743-20210805-145512.mp4\r\n6.13_13171_Player644-f153ac423f61-20211216-120448.mp4 6.13_4416_Player274-f8249412a743-20210805-145615.mp4\r\n6.13_13172_Player644-f153ac423f61-20211216-120555.mp4 6.13_4417_Player274-f8249412a743-20210805-145719.mp4\r\n6.13_13173_Player644-f153ac423f61-20211216-120710.mp4 6.13_4418_Player275-a3d883d597f3-20211213-233442.mp4\r\n6.13_13174_Player644-f153ac423f61-20211216-120823.mp4 6.13_4419_Player275-a3d883d597f3-20211213-233946.mp4\r\n6.13_13175_Player644-f153ac423f61-20211216-120930.mp4 6.13_441_Player117-f153ac423f61-20211102-170613.mp4\r\n6.13_13176_Player644-f153ac423f61-20211216-121036.mp4 6.13_4420_Player275-a3d883d597f3-20211214-000211.mp4\r\n6.13_13177_Player644-f153ac423f61-20211216-121145.mp4 6.13_4421_Player275-a3d883d597f3-20211214-000613.mp4\r\n6.13_13178_Player644-f153ac423f61-20211216-121252.mp4 6.13_4422_Player275-f153ac423f61-20211213-220935.mp4\r\n6.13_13179_Player644-f153ac423f61-20211216-121358.mp4 6.13_4423_Player275-f153ac423f61-20211213-221452.mp4\r\n6.13_1317_Player15-605e7ce7bebd-20211221-025832.mp4 6.13_4424_Player275-f153ac423f61-20211213-221953.mp4\r\n6.13_13180_Player644-f153ac423f61-20211216-121509.mp4 6.13_4425_Player275-f153ac423f61-20211213-222555.mp4\r\n6.13_13181_Player644-f153ac423f61-20211216-121623.mp4 6.13_4426_Player275-f153ac423f61-20211213-222956.mp4\r\n6.13_13182_Player644-f153ac423f61-20211216-121730.mp4 6.13_4427_Player275-f153ac423f61-20211213-223358.mp4\r\n6.13_13183_Player644-f153ac423f61-20211216-121844.mp4 6.13_4428_Player275-f153ac423f61-20211213-223659.mp4\r\n6.13_13184_Player645-0fd4c3944a35-20210826-193841.mp4 6.13_4429_Player275-f153ac423f61-20211213-224101.mp4\r\n6.13_13185_Player645-289ce2f96807-20210826-192005.mp4 6.13_442_Player117-f153ac423f61-20211102-171232.mp4\r\n6.13_13186_Player645-289ce2f96807-20210826-192110.mp4 6.13_4430_Player275-f153ac423f61-20211213-224612.mp4\r\n6.13_13187_Player645-289ce2f96807-20210826-192211.mp4 6.13_4431_Player275-f153ac423f61-20211213-225129.mp4\r\n6.13_13188_Player645-647d5ae9c435-20210826-193935.mp4 6.13_4432_Player275-f153ac423f61-20211213-225632.mp4\r\n6.13_13189_Player645-647d5ae9c435-20210826-194040.mp4 6.13_4433_Player275-f153ac423f61-20211213-230238.mp4\r\n6.13_1318_Player15-605e7ce7bebd-20211221-025932.mp4 6.13_4434_Player275-f153ac423f61-20211213-230841.mp4\r\n6.13_13190_Player645-83a80c46c280-20210826-192349.mp4 6.13_4435_Player275-f153ac423f61-20211213-231343.mp4\r\n6.13_13191_Player645-83a80c46c280-20210826-192456.mp4 6.13_4436_Player275-f153ac423f61-20211213-232251.mp4\r\n6.13_13192_Player645-83a80c46c280-20210826-192559.mp4 6.13_4437_Player275-f153ac423f61-20211213-232855.mp4\r\n6.13_13193_Player645-83a80c46c280-20210826-192700.mp4 6.13_4438_Player278-f153ac423f61-20210804-143216.mp4\r\n6.13_13194_Player645-83a80c46c280-20210826-192802.mp4 6.13_4439_Player278-f153ac423f61-20210804-144303.mp4\r\n6.13_13195_Player645-83a80c46c280-20210826-192905.mp4 6.13_443_Player117-f153ac423f61-20211102-172344.mp4\r\n6.13_13196_Player645-83a80c46c280-20210826-193006.mp4 6.13_4440_Player278-f153ac423f61-20210804-151026.mp4\r\n6.13_13197_Player645-83a80c46c280-20210826-193108.mp4 6.13_4441_Player279-f153ac423f61-20211118-014250.mp4\r\n6.13_13198_Player645-83a80c46c280-20210826-193210.mp4 6.13_4442_Player279-f153ac423f61-20211118-014710.mp4\r\n6.13_13199_Player645-83a80c46c280-20210826-193313.mp4 6.13_4443_Player279-f153ac423f61-20211118-015122.mp4\r\n6.13_1319_Player15-605e7ce7bebd-20211221-030032.mp4 6.13_4444_Player279-f153ac423f61-20211118-015532.mp4\r\n6.13_131_Player100-695d64aecaf9-20211220-210747.mp4 6.13_4445_Player279-f153ac423f61-20211118-015937.mp4\r\n6.13_13200_Player645-83a80c46c280-20210826-193415.mp4 6.13_4446_Player279-f153ac423f61-20211118-020343.mp4\r\n6.13_13201_Player645-83a80c46c280-20210826-193517.mp4 6.13_4447_Player279-f153ac423f61-20211118-020746.mp4\r\n6.13_13202_Player645-83a80c46c280-20210826-193622.mp4 6.13_4448_Player279-f153ac423f61-20211118-021151.mp4\r\n6.13_13203_Player645-83a80c46c280-20210826-193726.mp4 6.13_4449_Player279-f153ac423f61-20211118-021703.mp4\r\n6.13_13204_Player645-f153ac423f61-20210731-105323.mp4 6.13_444_Player118-f153ac423f61-20210904-193353.mp4\r\n6.13_13205_Player645-f153ac423f61-20210731-105824.mp4 6.13_4450_Player279-f153ac423f61-20211118-022111.mp4\r\n6.13_13206_Player645-f153ac423f61-20210731-110237.mp4 6.13_4451_Player279-f153ac423f61-20211118-022516.mp4\r\n6.13_13207_Player645-f153ac423f61-20210731-110539.mp4 6.13_4452_Player279-f153ac423f61-20211118-022922.mp4\r\n6.13_13208_Player645-f153ac423f61-20210731-110842.mp4 6.13_4453_Player279-f153ac423f61-20211118-023328.mp4\r\n6.13_13209_Player645-f153ac423f61-20210731-111217.mp4 6.13_4454_Player279-f153ac423f61-20211118-023732.mp4\r\n6.13_1320_Player15-605e7ce7bebd-20211221-030132.mp4 6.13_4455_Player279-f153ac423f61-20211118-024141.mp4\r\n6.13_13210_Player645-f153ac423f61-20210731-111555.mp4 6.13_4456_Player279-f153ac423f61-20211118-024554.mp4\r\n6.13_13211_Player645-f153ac423f61-20210731-112057.mp4 6.13_4457_Player279-f153ac423f61-20211118-024959.mp4\r\n6.13_13212_Player645-f153ac423f61-20210731-112537.mp4 6.13_4458_Player279-f153ac423f61-20211118-025609.mp4\r\n6.13_13213_Player645-f153ac423f61-20210731-113047.mp4 6.13_4459_Player279-f153ac423f61-20211118-030013.mp4\r\n6.13_13214_Player645-f153ac423f61-20210731-113510.mp4 6.13_445_Player119-f153ac423f61-20211128-182023.mp4\r\n6.13_13215_Player645-f153ac423f61-20210731-113920.mp4 6.13_4460_Player279-f153ac423f61-20211118-030419.mp4\r\n6.13_13216_Player645-f153ac423f61-20210731-114253.mp4 6.13_4461_Player279-f153ac423f61-20211118-030823.mp4\r\n6.13_13217_Player645-f153ac423f61-20210731-114600.mp4 6.13_4462_Player279-f153ac423f61-20211118-031228.mp4\r\n6.13_13218_Player645-f153ac423f61-20210731-114856.mp4 6.13_4463_Player279-f153ac423f61-20211118-031634.mp4\r\n6.13_13219_Player645-f153ac423f61-20210731-115205.mp4 6.13_4464_Player279-f153ac423f61-20211118-032040.mp4\r\n6.13_1321_Player15-605e7ce7bebd-20211221-030333.mp4 6.13_4465_Player279-f153ac423f61-20211118-032445.mp4\r\n6.13_13220_Player645-f153ac423f61-20210731-115610.mp4 6.13_4466_Player279-f153ac423f61-20211118-032853.mp4\r\n6.13_13221_Player645-f153ac423f61-20210731-120011.mp4 6.13_4467_Player279-f153ac423f61-20211118-033258.mp4\r\n6.13_13222_Player645-f153ac423f61-20210731-120314.mp4 6.13_4468_Player279-f153ac423f61-20211118-033703.mp4\r\n6.13_13223_Player645-f153ac423f61-20210731-120620.mp4 6.13_4469_Player279-f153ac423f61-20211118-034109.mp4\r\n6.13_13224_Player645-f153ac423f61-20210731-121024.mp4 6.13_446_Player119-f153ac423f61-20211128-182451.mp4\r\n6.13_13225_Player645-f153ac423f61-20210731-121331.mp4 6.13_4470_Player279-f153ac423f61-20211118-034517.mp4\r\n6.13_13226_Player645-f153ac423f61-20210826-190322.mp4 6.13_4471_Player279-f153ac423f61-20211118-034932.mp4\r\n6.13_13227_Player645-f153ac423f61-20210826-190435.mp4 6.13_4472_Player279-f153ac423f61-20211118-035337.mp4\r\n6.13_13228_Player645-f153ac423f61-20210826-190541.mp4 6.13_4473_Player279-f153ac423f61-20211118-035850.mp4\r\n6.13_13229_Player645-f153ac423f61-20210826-190642.mp4 6.13_4474_Player279-f153ac423f61-20211118-040252.mp4\r\n6.13_1322_Player15-605e7ce7bebd-20211221-030533.mp4 6.13_4475_Player28-f153ac423f61-20211129-013021.mp4\r\n6.13_13230_Player645-f153ac423f61-20210826-190744.mp4 6.13_4476_Player28-f153ac423f61-20211129-013123.mp4\r\n6.13_13231_Player645-f153ac423f61-20210826-190845.mp4 6.13_4477_Player28-f153ac423f61-20211129-013224.mp4\r\n6.13_13232_Player645-f153ac423f61-20210826-190946.mp4 6.13_4478_Player28-f153ac423f61-20211129-013324.mp4\r\n6.13_13233_Player645-f153ac423f61-20210826-191047.mp4 6.13_4479_Player28-f153ac423f61-20211129-013424.mp4\r\n6.13_13234_Player645-f153ac423f61-20210826-191148.mp4 6.13_447_Player119-f153ac423f61-20211128-182858.mp4\r\n6.13_13235_Player645-f153ac423f61-20210826-191249.mp4 6.13_4480_Player28-f153ac423f61-20211129-013525.mp4\r\n6.13_13236_Player645-f153ac423f61-20210826-191356.mp4 6.13_4481_Player28-f153ac423f61-20211129-013625.mp4\r\n6.13_13237_Player645-f153ac423f61-20210826-191459.mp4 6.13_4482_Player28-f153ac423f61-20211129-013725.mp4\r\n6.13_13238_Player645-f153ac423f61-20210826-191600.mp4 6.13_4483_Player28-f153ac423f61-20211129-013825.mp4\r\n6.13_13239_Player645-f153ac423f61-20210826-191706.mp4 6.13_4484_Player28-f153ac423f61-20211129-013926.mp4\r\n6.13_1323_Player15-605e7ce7bebd-20211221-030634.mp4 6.13_4485_Player28-f153ac423f61-20211129-014026.mp4\r\n6.13_13240_Player645-f153ac423f61-20210826-191808.mp4 6.13_4486_Player28-f153ac423f61-20211129-014126.mp4\r\n6.13_13241_Player645-f153ac423f61-20210826-191910.mp4 6.13_4487_Player28-f153ac423f61-20211129-014226.mp4\r\n6.13_13242_Player65-c6223c3f6bc5-20211205-130353.mp4 6.13_4488_Player28-f153ac423f61-20211129-014326.mp4\r\n6.13_13243_Player65-f153ac423f61-20211008-184919.mp4 6.13_4489_Player28-f153ac423f61-20211129-014427.mp4\r\n6.13_13244_Player65-f153ac423f61-20211205-100949.mp4 6.13_448_Player119-f153ac423f61-20211128-183306.mp4\r\n6.13_13245_Player65-f153ac423f61-20211205-102810.mp4 6.13_4490_Player28-f153ac423f61-20211129-014527.mp4\r\n6.13_13246_Player65-f153ac423f61-20211205-104624.mp4 6.13_4491_Player28-f153ac423f61-20211129-014627.mp4\r\n6.13_13247_Player65-f153ac423f61-20211205-110535.mp4 6.13_4492_Player28-f153ac423f61-20211129-014727.mp4\r\n6.13_13248_Player65-f153ac423f61-20211205-112445.mp4 6.13_4493_Player28-f153ac423f61-20211129-014828.mp4\r\n6.13_13249_Player65-f153ac423f61-20211205-114359.mp4 6.13_4494_Player28-f153ac423f61-20211129-014928.mp4\r\n6.13_1324_Player15-605e7ce7bebd-20211221-030734.mp4 6.13_4495_Player28-f153ac423f61-20211129-015028.mp4\r\n6.13_13250_Player65-f153ac423f61-20211205-120211.mp4 6.13_4496_Player28-f153ac423f61-20211129-015129.mp4\r\n6.13_13251_Player65-f153ac423f61-20211205-122143.mp4 6.13_4497_Player28-f153ac423f61-20211129-015229.mp4\r\n6.13_13252_Player65-f153ac423f61-20211205-124422.mp4 6.13_4498_Player28-f153ac423f61-20211129-015329.mp4\r\n6.13_13253_Player650-0770be0ef8e7-20210728-171443.mp4 6.13_4499_Player28-f153ac423f61-20211129-015430.mp4\r\n6.13_13254_Player650-0770be0ef8e7-20210728-172652.mp4 6.13_449_Player119-f153ac423f61-20211128-183711.mp4\r\n6.13_13255_Player650-0770be0ef8e7-20210728-173800.mp4 6.13_4500_Player28-f153ac423f61-20211129-015530.mp4\r\n6.13_13256_Player650-f153ac423f61-20210728-124624.mp4 6.13_4501_Player28-f153ac423f61-20211129-015630.mp4\r\n6.13_13257_Player650-f153ac423f61-20210728-125234.mp4 6.13_4502_Player28-f153ac423f61-20211129-015730.mp4\r\n6.13_13258_Player650-f153ac423f61-20210728-135206.mp4 6.13_4503_Player28-f153ac423f61-20211129-015831.mp4\r\n6.13_13259_Player650-f153ac423f61-20210728-151959.mp4 6.13_4504_Player28-f153ac423f61-20211129-015931.mp4\r\n6.13_1325_Player15-605e7ce7bebd-20211221-030834.mp4 6.13_4505_Player28-f153ac423f61-20211129-020031.mp4\r\n6.13_13260_Player650-f153ac423f61-20210728-153205.mp4 6.13_4506_Player28-f153ac423f61-20211129-020131.mp4\r\n6.13_13261_Player650-f153ac423f61-20210728-155619.mp4 6.13_4507_Player28-f153ac423f61-20211129-020231.mp4\r\n6.13_13262_Player650-f153ac423f61-20210728-160451.mp4 6.13_4508_Player28-f153ac423f61-20211129-020331.mp4\r\n6.13_13263_Player650-f153ac423f61-20210728-163457.mp4 6.13_4509_Player28-f153ac423f61-20211129-020431.mp4\r\n6.13_13264_Player650-f153ac423f61-20210728-164704.mp4 6.13_450_Player119-f153ac423f61-20211128-184117.mp4\r\n6.13_13265_Player651-b049097d4148-20210906-144025.mp4 6.13_4510_Player28-f153ac423f61-20211129-020532.mp4\r\n6.13_13266_Player651-b049097d4148-20210906-145056.mp4 6.13_4511_Player28-f153ac423f61-20211129-020631.mp4\r\n6.13_13267_Player651-b049097d4148-20210906-145847.mp4 6.13_4512_Player28-f153ac423f61-20211129-020732.mp4\r\n6.13_13268_Player651-b049097d4148-20210906-150519.mp4 6.13_4513_Player28-f153ac423f61-20211129-020832.mp4\r\n6.13_13269_Player651-b049097d4148-20210906-151148.mp4 6.13_4514_Player28-f153ac423f61-20211129-020932.mp4\r\n6.13_1326_Player15-605e7ce7bebd-20211221-031035.mp4 6.13_4515_Player28-f153ac423f61-20211129-021032.mp4\r\n6.13_13270_Player651-b049097d4148-20210906-151938.mp4 6.13_4516_Player28-f153ac423f61-20211129-021132.mp4\r\n6.13_13271_Player651-b049097d4148-20210906-152710.mp4 6.13_4517_Player28-f153ac423f61-20211129-021232.mp4\r\n6.13_13272_Player651-b049097d4148-20210906-153229.mp4 6.13_4518_Player28-f153ac423f61-20211129-021332.mp4\r\n6.13_13273_Player651-b049097d4148-20210906-153653.mp4 6.13_4519_Player28-f153ac423f61-20211129-021433.mp4\r\n6.13_13274_Player651-b049097d4148-20210906-154119.mp4 6.13_451_Player119-f153ac423f61-20211128-184522.mp4\r\n6.13_13275_Player651-b049097d4148-20210906-154611.mp4 6.13_4520_Player28-f153ac423f61-20211129-021533.mp4\r\n6.13_13276_Player651-b049097d4148-20210906-155109.mp4 6.13_4521_Player28-f153ac423f61-20211129-021633.mp4\r\n6.13_13277_Player651-f153ac423f61-20210906-132222.mp4 6.13_4522_Player28-f153ac423f61-20211129-021734.mp4\r\n6.13_13278_Player651-f153ac423f61-20210906-132804.mp4 6.13_4523_Player28-f153ac423f61-20211129-021834.mp4\r\n6.13_13279_Player651-f153ac423f61-20210906-133457.mp4 6.13_4524_Player28-f153ac423f61-20211129-021934.mp4\r\n6.13_1327_Player15-605e7ce7bebd-20211221-031135.mp4 6.13_4525_Player28-f153ac423f61-20211129-022034.mp4\r\n6.13_13280_Player651-f153ac423f61-20210906-134152.mp4 6.13_4526_Player28-f153ac423f61-20211129-022134.mp4\r\n6.13_13281_Player651-f153ac423f61-20210906-134633.mp4 6.13_4527_Player28-f153ac423f61-20211129-022234.mp4\r\n6.13_13282_Player651-f153ac423f61-20210906-135127.mp4 6.13_4528_Player28-f153ac423f61-20211129-022334.mp4\r\n6.13_13283_Player651-f153ac423f61-20210906-140112.mp4 6.13_4529_Player28-f153ac423f61-20211129-022435.mp4\r\n6.13_13284_Player651-f153ac423f61-20210906-140938.mp4 6.13_452_Player119-f153ac423f61-20211128-184926.mp4\r\n6.13_13285_Player651-f153ac423f61-20210906-141902.mp4 6.13_4530_Player28-f153ac423f61-20211129-022535.mp4\r\n6.13_13286_Player651-f153ac423f61-20210906-142833.mp4 6.13_4531_Player28-f153ac423f61-20211129-022635.mp4\r\n6.13_13287_Player651-f153ac423f61-20210906-143704.mp4 6.13_4532_Player28-f153ac423f61-20211129-022736.mp4\r\n6.13_13288_Player651-f153ac423f61-20211031-191638.mp4 6.13_4533_Player28-f153ac423f61-20211129-022836.mp4\r\n6.13_13289_Player651-f153ac423f61-20211031-191823.mp4 6.13_4534_Player28-f153ac423f61-20211129-022936.mp4\r\n6.13_1328_Player15-605e7ce7bebd-20211221-031235.mp4 6.13_4535_Player28-f153ac423f61-20211129-023036.mp4\r\n6.13_13290_Player651-f153ac423f61-20211031-191952.mp4 6.13_4536_Player28-f153ac423f61-20211129-023136.mp4\r\n6.13_13291_Player651-f153ac423f61-20211031-192133.mp4 6.13_4537_Player28-f153ac423f61-20211129-023237.mp4\r\n6.13_13292_Player651-f153ac423f61-20211031-192314.mp4 6.13_4538_Player28-f153ac423f61-20211129-023337.mp4\r\n6.13_13293_Player651-f153ac423f61-20211031-192450.mp4 6.13_4539_Player28-f153ac423f61-20211129-023437.mp4\r\n6.13_13294_Player651-f153ac423f61-20211031-192629.mp4 6.13_453_Player119-f153ac423f61-20211128-185330.mp4\r\n6.13_13295_Player651-f153ac423f61-20211031-192803.mp4 6.13_4540_Player28-f153ac423f61-20211129-023537.mp4\r\n6.13_13296_Player651-f153ac423f61-20211031-192954.mp4 6.13_4541_Player28-f153ac423f61-20211129-023637.mp4\r\n6.13_13297_Player651-f153ac423f61-20211031-193129.mp4 6.13_4542_Player28-f153ac423f61-20211129-023737.mp4\r\n6.13_13298_Player651-f153ac423f61-20211031-193313.mp4 6.13_4543_Player28-f153ac423f61-20211129-023838.mp4\r\n6.13_13299_Player651-f153ac423f61-20211031-193508.mp4 6.13_4544_Player28-f153ac423f61-20211129-023939.mp4\r\n6.13_1329_Player15-605e7ce7bebd-20211221-031336.mp4 6.13_4545_Player28-f153ac423f61-20211129-024040.mp4\r\n6.13_132_Player100-695d64aecaf9-20211220-210949.mp4 6.13_4546_Player28-f153ac423f61-20211129-024142.mp4\r\n6.13_13300_Player651-f153ac423f61-20211031-193631.mp4 6.13_4547_Player28-f153ac423f61-20211129-024243.mp4\r\n6.13_13301_Player651-f153ac423f61-20211031-193811.mp4 6.13_4548_Player28-f153ac423f61-20211129-024344.mp4\r\n6.13_13302_Player651-f153ac423f61-20211031-193951.mp4 6.13_4549_Player28-f153ac423f61-20211129-024445.mp4\r\n6.13_13303_Player651-f153ac423f61-20211031-194123.mp4 6.13_454_Player119-f153ac423f61-20211128-185755.mp4\r\n6.13_13304_Player651-f153ac423f61-20211031-194307.mp4 6.13_4550_Player28-f153ac423f61-20211129-024545.mp4\r\n6.13_13305_Player651-f153ac423f61-20211031-194508.mp4 6.13_4551_Player28-f153ac423f61-20211129-024645.mp4\r\n6.13_13306_Player651-f153ac423f61-20211031-194736.mp4 6.13_4552_Player28-f153ac423f61-20211129-024745.mp4\r\n6.13_13307_Player651-f153ac423f61-20211031-194949.mp4 6.13_4553_Player28-f153ac423f61-20211129-024845.mp4\r\n6.13_13308_Player651-f153ac423f61-20211031-195157.mp4 6.13_4554_Player28-f153ac423f61-20211129-024946.mp4\r\n6.13_13309_Player651-f153ac423f61-20211031-195400.mp4 6.13_4555_Player282-c2603a480f0e-20210902-151527.mp4\r\n6.13_1330_Player15-605e7ce7bebd-20211221-031436.mp4 6.13_4556_Player282-f153ac423f61-20210902-144254.mp4\r\n6.13_13310_Player651-f153ac423f61-20211031-195602.mp4 6.13_4557_Player282-f153ac423f61-20210902-144358.mp4\r\n6.13_13311_Player653-8e1de130a4ee-20210810-132607.mp4 6.13_4558_Player282-f153ac423f61-20210902-144459.mp4\r\n6.13_13312_Player653-8e1de130a4ee-20210810-135221.mp4 6.13_4559_Player282-f153ac423f61-20210902-144702.mp4\r\n6.13_13313_Player653-8e1de130a4ee-20210810-141830.mp4 6.13_455_Player119-f153ac423f61-20211128-190217.mp4\r\n6.13_13314_Player653-8e1de130a4ee-20210810-144557.mp4 6.13_4560_Player282-f153ac423f61-20210902-144805.mp4\r\n6.13_13315_Player653-8e1de130a4ee-20210810-151209.mp4 6.13_4561_Player282-f153ac423f61-20210902-144907.mp4\r\n6.13_13316_Player653-8e1de130a4ee-20210810-153848.mp4 6.13_4562_Player282-f153ac423f61-20210902-145111.mp4\r\n6.13_13317_Player653-8e1de130a4ee-20210810-160518.mp4 6.13_4563_Player282-f153ac423f61-20210902-145215.mp4\r\n6.13_13318_Player653-e2e52e4db8e0-20211128-162855.mp4 6.13_4564_Player282-f153ac423f61-20210902-145419.mp4\r\n6.13_13319_Player653-e2e52e4db8e0-20211128-163000.mp4 6.13_4565_Player282-f153ac423f61-20210902-145622.mp4\r\n6.13_1331_Player15-605e7ce7bebd-20211221-031536.mp4 6.13_4566_Player282-f153ac423f61-20210902-145927.mp4\r\n6.13_13320_Player653-e2e52e4db8e0-20211128-163110.mp4 6.13_4567_Player282-f153ac423f61-20210902-150334.mp4\r\n6.13_13321_Player653-e2e52e4db8e0-20211128-163226.mp4 6.13_4568_Player282-f153ac423f61-20210902-150944.mp4\r\n6.13_13322_Player653-e2e52e4db8e0-20211128-163339.mp4 6.13_4569_Player283-f153ac423f61-20210918-215727.mp4\r\n6.13_13323_Player653-e2e52e4db8e0-20211128-163452.mp4 6.13_456_Player119-f153ac423f61-20211128-190645.mp4\r\n6.13_13324_Player653-e2e52e4db8e0-20211128-163602.mp4 6.13_4570_Player283-f153ac423f61-20210918-215858.mp4\r\n6.13_13325_Player653-e2e52e4db8e0-20211128-163711.mp4 6.13_4571_Player283-f153ac423f61-20210918-220019.mp4\r\n6.13_13326_Player653-e2e52e4db8e0-20211128-163824.mp4 6.13_4572_Player283-f153ac423f61-20210918-220137.mp4\r\n6.13_13327_Player653-e2e52e4db8e0-20211128-163935.mp4 6.13_4573_Player283-f153ac423f61-20210918-220258.mp4\r\n6.13_13328_Player653-e2e52e4db8e0-20211128-164047.mp4 6.13_4574_Player283-f153ac423f61-20210918-220418.mp4\r\n6.13_13329_Player653-e2e52e4db8e0-20211128-164204.mp4 6.13_4575_Player283-f153ac423f61-20210918-220539.mp4\r\n6.13_1332_Player15-605e7ce7bebd-20211221-031637.mp4 6.13_4576_Player283-f153ac423f61-20210918-220658.mp4\r\n6.13_13330_Player653-e2e52e4db8e0-20211128-164318.mp4 6.13_4577_Player283-f153ac423f61-20210918-220818.mp4\r\n6.13_13331_Player653-e2e52e4db8e0-20211128-164427.mp4 6.13_4578_Player283-f153ac423f61-20210918-220936.mp4\r\n6.13_13332_Player653-e2e52e4db8e0-20211128-164541.mp4 6.13_4579_Player283-f153ac423f61-20210918-221052.mp4\r\n6.13_13333_Player653-e2e52e4db8e0-20211128-164658.mp4 6.13_457_Player119-f153ac423f61-20211128-191051.mp4\r\n6.13_13334_Player653-e2e52e4db8e0-20211128-164812.mp4 6.13_4580_Player283-f153ac423f61-20210918-221212.mp4\r\n6.13_13335_Player653-e2e52e4db8e0-20211128-164927.mp4 6.13_4581_Player283-f153ac423f61-20210918-221327.mp4\r\n6.13_13336_Player653-e2e52e4db8e0-20211128-165044.mp4 6.13_4582_Player283-f153ac423f61-20210918-221438.mp4\r\n6.13_13337_Player653-e2e52e4db8e0-20211128-165158.mp4 6.13_4583_Player283-f153ac423f61-20210918-221557.mp4\r\n6.13_13338_Player653-e2e52e4db8e0-20211128-165311.mp4 6.13_4584_Player283-f153ac423f61-20210918-221714.mp4\r\n6.13_13339_Player653-e2e52e4db8e0-20211128-165427.mp4 6.13_4585_Player283-f153ac423f61-20210918-221830.mp4\r\n6.13_1333_Player15-605e7ce7bebd-20211221-031737.mp4 6.13_4586_Player283-f153ac423f61-20210918-221948.mp4\r\n6.13_13340_Player653-e2e52e4db8e0-20211128-165543.mp4 6.13_4587_Player283-f153ac423f61-20210918-222105.mp4\r\n6.13_13341_Player653-e2e52e4db8e0-20211128-165701.mp4 6.13_4588_Player283-f153ac423f61-20210918-222220.mp4\r\n6.13_13342_Player653-e2e52e4db8e0-20211128-165816.mp4 6.13_4589_Player283-f153ac423f61-20210918-222335.mp4\r\n6.13_13343_Player653-f153ac423f61-20210810-122947.mp4 6.13_458_Player119-f153ac423f61-20211128-191538.mp4\r\n6.13_13344_Player653-f153ac423f61-20211128-155605.mp4 6.13_4590_Player283-f153ac423f61-20210918-222455.mp4\r\n6.13_13345_Player653-f153ac423f61-20211128-155714.mp4 6.13_4591_Player283-f153ac423f61-20210918-222613.mp4\r\n6.13_13346_Player653-f153ac423f61-20211128-155818.mp4 6.13_4592_Player283-f153ac423f61-20210918-222724.mp4\r\n6.13_13347_Player653-f153ac423f61-20211128-155926.mp4 6.13_4593_Player283-f153ac423f61-20210918-222841.mp4\r\n6.13_13348_Player653-f153ac423f61-20211128-160032.mp4 6.13_4594_Player283-f153ac423f61-20210918-223001.mp4\r\n6.13_13349_Player653-f153ac423f61-20211128-160140.mp4 6.13_4595_Player283-f153ac423f61-20210918-223123.mp4\r\n6.13_1334_Player15-605e7ce7bebd-20211221-031837.mp4 6.13_4596_Player283-f153ac423f61-20210918-223242.mp4\r\n6.13_13350_Player653-f153ac423f61-20211128-160252.mp4 6.13_4597_Player283-f153ac423f61-20210918-223402.mp4\r\n6.13_13351_Player653-f153ac423f61-20211128-160401.mp4 6.13_4598_Player283-f153ac423f61-20210918-223511.mp4\r\n6.13_13352_Player653-f153ac423f61-20211128-160507.mp4 6.13_4599_Player283-f153ac423f61-20210918-223624.mp4\r\n6.13_13353_Player653-f153ac423f61-20211128-160616.mp4 6.13_459_Player12-96a13ea8f3bb-20210722-201209.mp4\r\n6.13_13354_Player653-f153ac423f61-20211128-160726.mp4 6.13_4600_Player283-f153ac423f61-20210918-223734.mp4\r\n6.13_13355_Player653-f153ac423f61-20211128-160835.mp4 6.13_4601_Player283-f153ac423f61-20210918-223844.mp4\r\n6.13_13356_Player653-f153ac423f61-20211128-160941.mp4 6.13_4602_Player283-f153ac423f61-20210918-224010.mp4\r\n6.13_13357_Player653-f153ac423f61-20211128-161044.mp4 6.13_4603_Player283-f153ac423f61-20210918-224127.mp4\r\n6.13_13358_Player653-f153ac423f61-20211128-161146.mp4 6.13_4604_Player283-f153ac423f61-20210918-224246.mp4\r\n6.13_13359_Player653-f153ac423f61-20211128-161248.mp4 6.13_4605_Player283-f153ac423f61-20210918-224408.mp4\r\n6.13_1335_Player15-605e7ce7bebd-20211221-031938.mp4 6.13_4606_Player283-f153ac423f61-20210918-224526.mp4\r\n6.13_13360_Player653-f153ac423f61-20211128-161350.mp4 6.13_4607_Player283-f153ac423f61-20210918-224644.mp4\r\n6.13_13361_Player653-f153ac423f61-20211128-161452.mp4 6.13_4608_Player283-f153ac423f61-20210918-224803.mp4\r\n6.13_13362_Player653-f153ac423f61-20211128-161555.mp4 6.13_4609_Player283-f153ac423f61-20210918-224921.mp4\r\n6.13_13363_Player653-f153ac423f61-20211128-161657.mp4 6.13_460_Player12-96a13ea8f3bb-20210722-201313.mp4\r\n6.13_13364_Player653-f153ac423f61-20211128-161759.mp4 6.13_4610_Player284-1e8f82075a2f-20211127-003727.mp4\r\n6.13_13365_Player653-f153ac423f61-20211128-161900.mp4 6.13_4611_Player284-1e8f82075a2f-20211127-003931.mp4\r\n6.13_13366_Player653-f153ac423f61-20211128-162002.mp4 6.13_4612_Player284-1e8f82075a2f-20211127-004031.mp4\r\n6.13_13367_Player653-f153ac423f61-20211128-162104.mp4 6.13_4613_Player284-1e8f82075a2f-20211127-004131.mp4\r\n6.13_13368_Player653-f153ac423f61-20211128-162308.mp4 6.13_4614_Player284-1e8f82075a2f-20211127-004231.mp4\r\n6.13_13369_Player653-f153ac423f61-20211128-162514.mp4 6.13_4615_Player284-1e8f82075a2f-20211127-004330.mp4\r\n6.13_1336_Player15-605e7ce7bebd-20211221-032038.mp4 6.13_4616_Player284-1e8f82075a2f-20211127-004430.mp4\r\n6.13_13370_Player653-fe0da8139504-20210810-125529.mp4 6.13_4617_Player284-1e8f82075a2f-20211127-004530.mp4\r\n6.13_13371_Player655-f153ac423f61-20211106-224627.mp4 6.13_4618_Player284-1e8f82075a2f-20211127-004630.mp4\r\n6.13_13372_Player655-f153ac423f61-20211106-225446.mp4 6.13_4619_Player284-1e8f82075a2f-20211127-004730.mp4\r\n6.13_13373_Player655-f153ac423f61-20211106-230156.mp4 6.13_461_Player12-96a13ea8f3bb-20210722-201422.mp4\r\n6.13_13374_Player655-f153ac423f61-20211106-230904.mp4 6.13_4620_Player284-1e8f82075a2f-20211127-004830.mp4\r\n6.13_13375_Player655-f153ac423f61-20211106-231607.mp4 6.13_4621_Player284-1e8f82075a2f-20211127-004930.mp4\r\n6.13_13376_Player655-f153ac423f61-20211106-232311.mp4 6.13_4622_Player284-1e8f82075a2f-20211127-005029.mp4\r\n6.13_13377_Player655-f153ac423f61-20211106-233012.mp4 6.13_4623_Player284-1e8f82075a2f-20211127-005129.mp4\r\n6.13_13378_Player655-f153ac423f61-20211106-233823.mp4 6.13_4624_Player284-1e8f82075a2f-20211127-005229.mp4\r\n6.13_13379_Player655-f153ac423f61-20211106-234628.mp4 6.13_4625_Player284-1e8f82075a2f-20211127-005329.mp4\r\n6.13_1337_Player15-605e7ce7bebd-20211221-032138.mp4 6.13_4626_Player284-1e8f82075a2f-20211127-005428.mp4\r\n6.13_13380_Player655-f153ac423f61-20211106-235333.mp4 6.13_4627_Player284-1e8f82075a2f-20211127-005528.mp4\r\n6.13_13381_Player655-f153ac423f61-20211107-000141.mp4 6.13_4628_Player284-1e8f82075a2f-20211127-005628.mp4\r\n6.13_13382_Player655-f153ac423f61-20211107-000845.mp4 6.13_4629_Player284-1e8f82075a2f-20211127-005728.mp4\r\n6.13_13383_Player655-f153ac423f61-20211107-001548.mp4 6.13_462_Player12-96a13ea8f3bb-20210722-201533.mp4\r\n6.13_13384_Player655-f153ac423f61-20211107-002507.mp4 6.13_4630_Player284-1e8f82075a2f-20211127-005828.mp4\r\n6.13_13385_Player66-47eee26d524b-20211221-205646.mp4 6.13_4631_Player284-1e8f82075a2f-20211127-005928.mp4\r\n6.13_13386_Player66-47eee26d524b-20211221-210048.mp4 6.13_4632_Player284-1e8f82075a2f-20211127-010127.mp4\r\n6.13_13387_Player66-47eee26d524b-20211221-210349.mp4 6.13_4633_Player284-1e8f82075a2f-20211127-010227.mp4\r\n6.13_13388_Player66-47eee26d524b-20211221-210653.mp4 6.13_4634_Player284-1e8f82075a2f-20211127-010326.mp4\r\n6.13_13389_Player66-47eee26d524b-20211221-210956.mp4 6.13_4635_Player284-1e8f82075a2f-20211127-010426.mp4\r\n6.13_1338_Player15-605e7ce7bebd-20211221-032238.mp4 6.13_4636_Player284-1e8f82075a2f-20211127-010625.mp4\r\n6.13_13390_Player66-47eee26d524b-20211221-211156.mp4 6.13_4637_Player284-1e8f82075a2f-20211127-010725.mp4\r\n6.13_13391_Player66-47eee26d524b-20211221-211455.mp4 6.13_4638_Player284-f153ac423f61-20211127-000333.mp4\r\n6.13_13392_Player66-47eee26d524b-20211221-211756.mp4 6.13_4639_Player284-f153ac423f61-20211127-000434.mp4\r\n6.13_13393_Player66-47eee26d524b-20211221-211958.mp4 6.13_463_Player12-96a13ea8f3bb-20210722-201643.mp4\r\n6.13_13394_Player66-47eee26d524b-20211221-212310.mp4 6.13_4640_Player284-f153ac423f61-20211127-000534.mp4\r\n6.13_13395_Player66-47eee26d524b-20211221-212615.mp4 6.13_4641_Player284-f153ac423f61-20211127-000636.mp4\r\n6.13_13396_Player66-47eee26d524b-20211221-212932.mp4 6.13_4642_Player284-f153ac423f61-20211127-000735.mp4\r\n6.13_13397_Player66-47eee26d524b-20211221-213335.mp4 6.13_4643_Player284-f153ac423f61-20211127-000835.mp4\r\n6.13_13398_Player66-f153ac423f61-20211221-201825.mp4 6.13_4644_Player284-f153ac423f61-20211127-000935.mp4\r\n6.13_13399_Player66-f153ac423f61-20211221-202032.mp4 6.13_4645_Player284-f153ac423f61-20211127-001035.mp4\r\n6.13_1339_Player15-605e7ce7bebd-20211221-032339.mp4 6.13_4646_Player284-f153ac423f61-20211127-001135.mp4\r\n6.13_133_Player100-695d64aecaf9-20211220-211152.mp4 6.13_4647_Player284-f153ac423f61-20211127-001235.mp4\r\n6.13_13400_Player66-f153ac423f61-20211221-202439.mp4 6.13_4648_Player284-f153ac423f61-20211127-001335.mp4\r\n6.13_13401_Player66-f153ac423f61-20211221-202840.mp4 6.13_4649_Player284-f153ac423f61-20211127-001435.mp4\r\n6.13_13402_Player66-f153ac423f61-20211221-203239.mp4 6.13_464_Player12-96a13ea8f3bb-20210722-201754.mp4\r\n6.13_13403_Player66-f153ac423f61-20211221-203638.mp4 6.13_4650_Player284-f153ac423f61-20211127-001535.mp4\r\n6.13_13404_Player66-f153ac423f61-20211221-204039.mp4 6.13_4651_Player284-f153ac423f61-20211127-001635.mp4\r\n6.13_13405_Player66-f153ac423f61-20211221-204441.mp4 6.13_4652_Player284-f153ac423f61-20211127-001734.mp4\r\n6.13_13406_Player66-f153ac423f61-20211221-204839.mp4 6.13_4653_Player284-f153ac423f61-20211127-001834.mp4\r\n6.13_13407_Player66-f153ac423f61-20211221-205237.mp4 6.13_4654_Player284-f153ac423f61-20211127-001934.mp4\r\n6.13_13408_Player660-f153ac423f61-20210801-132635.mp4 6.13_4655_Player284-f153ac423f61-20211127-002034.mp4\r\n6.13_13409_Player660-f153ac423f61-20210801-132759.mp4 6.13_4656_Player284-f153ac423f61-20211127-002133.mp4\r\n6.13_1340_Player15-605e7ce7bebd-20211221-032439.mp4 6.13_4657_Player284-f153ac423f61-20211127-002233.mp4\r\n6.13_13410_Player660-f153ac423f61-20210801-132931.mp4 6.13_4658_Player284-f153ac423f61-20211127-002333.mp4\r\n6.13_13411_Player660-f153ac423f61-20210801-133104.mp4 6.13_4659_Player284-f153ac423f61-20211127-002433.mp4\r\n6.13_13412_Player660-f153ac423f61-20210801-133241.mp4 6.13_465_Player12-96a13ea8f3bb-20210722-201858.mp4\r\n6.13_13413_Player660-f153ac423f61-20210801-133415.mp4 6.13_4660_Player284-f153ac423f61-20211127-002532.mp4\r\n6.13_13414_Player660-f153ac423f61-20210801-133548.mp4 6.13_4661_Player284-f153ac423f61-20211127-002632.mp4\r\n6.13_13415_Player660-f153ac423f61-20210801-133726.mp4 6.13_4662_Player284-f153ac423f61-20211127-002732.mp4\r\n6.13_13416_Player660-f153ac423f61-20210801-133902.mp4 6.13_4663_Player284-f153ac423f61-20211127-002832.mp4\r\n6.13_13417_Player660-f153ac423f61-20210801-134034.mp4 6.13_4664_Player284-f153ac423f61-20211127-002931.mp4\r\n6.13_13418_Player660-f153ac423f61-20210801-134211.mp4 6.13_4665_Player284-f153ac423f61-20211127-003032.mp4\r\n6.13_13419_Player660-f153ac423f61-20210801-134351.mp4 6.13_4666_Player284-f153ac423f61-20211127-003132.mp4\r\n6.13_1341_Player15-605e7ce7bebd-20211221-032539.mp4 6.13_4667_Player284-f153ac423f61-20211127-003332.mp4\r\n6.13_13420_Player660-f153ac423f61-20210801-134614.mp4 6.13_4668_Player285-f153ac423f61-20210814-131801.mp4\r\n6.13_13421_Player660-f153ac423f61-20210801-134751.mp4 6.13_4669_Player285-f153ac423f61-20210814-134426.mp4\r\n6.13_13422_Player660-f153ac423f61-20210801-134929.mp4 6.13_466_Player12-96a13ea8f3bb-20210722-202008.mp4\r\n6.13_13423_Player660-f153ac423f61-20210801-135105.mp4 6.13_4670_Player285-f153ac423f61-20210814-143559.mp4\r\n6.13_13424_Player660-f153ac423f61-20211213-195225.mp4 6.13_4671_Player285-f153ac423f61-20210814-161203.mp4\r\n6.13_13425_Player661-f153ac423f61-20211008-101022.mp4 6.13_4672_Player285-f153ac423f61-20210814-162518.mp4\r\n6.13_13426_Player661-f153ac423f61-20211008-101639.mp4 6.13_4673_Player285-f153ac423f61-20210814-163739.mp4\r\n6.13_13427_Player661-f153ac423f61-20211008-102247.mp4 6.13_4674_Player285-f153ac423f61-20211016-132515.mp4\r\n6.13_13428_Player661-f153ac423f61-20211008-102851.mp4 6.13_4675_Player285-f153ac423f61-20211016-132935.mp4\r\n6.13_13429_Player661-f153ac423f61-20211008-103455.mp4 6.13_4676_Player285-f153ac423f61-20211016-133247.mp4\r\n6.13_1342_Player15-605e7ce7bebd-20211221-032639.mp4 6.13_4677_Player285-f153ac423f61-20211016-133602.mp4\r\n6.13_13430_Player661-f153ac423f61-20211008-104100.mp4 6.13_4678_Player285-f153ac423f61-20211016-133914.mp4\r\n6.13_13431_Player661-f153ac423f61-20211008-104710.mp4 6.13_4679_Player285-f153ac423f61-20211016-134231.mp4\r\n6.13_13432_Player661-f153ac423f61-20211008-105414.mp4 6.13_467_Player12-f153ac423f61-20210722-191952.mp4\r\n6.13_13433_Player661-f153ac423f61-20211008-110018.mp4 6.13_4680_Player285-f153ac423f61-20211016-134653.mp4\r\n6.13_13434_Player661-f153ac423f61-20211008-110622.mp4 6.13_4681_Player285-f153ac423f61-20211016-135001.mp4\r\n6.13_13435_Player661-f153ac423f61-20211008-111226.mp4 6.13_4682_Player285-f153ac423f61-20211016-135314.mp4\r\n6.13_13436_Player661-f153ac423f61-20211008-111832.mp4 6.13_4683_Player285-f153ac423f61-20211016-135737.mp4\r\n6.13_13437_Player661-f153ac423f61-20211008-112437.mp4 6.13_4684_Player286-f153ac423f61-20211212-152925.mp4\r\n6.13_13438_Player661-f153ac423f61-20211008-113045.mp4 6.13_4685_Player288-f153ac423f61-20210730-115420.mp4\r\n6.13_13439_Player661-f153ac423f61-20211008-113756.mp4 6.13_4686_Player288-f153ac423f61-20210730-121914.mp4\r\n6.13_1343_Player15-605e7ce7bebd-20211221-032840.mp4 6.13_4687_Player288-f153ac423f61-20210730-124309.mp4\r\n6.13_13440_Player661-f153ac423f61-20211008-114509.mp4 6.13_4688_Player288-f153ac423f61-20210730-130751.mp4\r\n6.13_13441_Player661-f153ac423f61-20211008-115119.mp4 6.13_4689_Player288-f153ac423f61-20210730-133340.mp4\r\n6.13_13442_Player661-f153ac423f61-20211008-115823.mp4 6.13_468_Player12-f153ac423f61-20210722-192104.mp4\r\n6.13_13443_Player661-f153ac423f61-20211008-120526.mp4 6.13_4690_Player288-f153ac423f61-20210730-140014.mp4\r\n6.13_13444_Player661-f153ac423f61-20211008-121128.mp4 6.13_4691_Player288-f153ac423f61-20210730-142458.mp4\r\n6.13_13445_Player661-f153ac423f61-20211008-121830.mp4 6.13_4692_Player288-f153ac423f61-20211213-200605.mp4\r\n6.13_13446_Player661-f153ac423f61-20211008-122438.mp4 6.13_4693_Player288-f153ac423f61-20211213-200814.mp4\r\n6.13_13447_Player661-f153ac423f61-20211008-123046.mp4 6.13_4694_Player288-f153ac423f61-20211213-200942.mp4\r\n6.13_13448_Player661-f153ac423f61-20211008-123650.mp4 6.13_4695_Player288-f153ac423f61-20211213-201110.mp4\r\n6.13_13449_Player661-f153ac423f61-20211008-124356.mp4 6.13_4696_Player288-f153ac423f61-20211213-201235.mp4\r\n6.13_1344_Player15-605e7ce7bebd-20211221-032940.mp4 6.13_4697_Player288-f153ac423f61-20211213-201402.mp4\r\n6.13_13450_Player663-13c065a19685-20210829-205026.mp4 6.13_4698_Player288-f153ac423f61-20211213-201531.mp4\r\n6.13_13451_Player663-5393ec5b7381-20210829-235419.mp4 6.13_4699_Player288-f153ac423f61-20211213-201715.mp4\r\n6.13_13452_Player663-5393ec5b7381-20210830-000129.mp4 6.13_469_Player12-f153ac423f61-20210722-192212.mp4\r\n6.13_13453_Player663-5393ec5b7381-20210830-001047.mp4 6.13_4700_Player288-f153ac423f61-20211213-201858.mp4\r\n6.13_13454_Player663-5393ec5b7381-20210830-002315.mp4 6.13_4701_Player288-f153ac423f61-20211213-202045.mp4\r\n6.13_13455_Player663-62876793d931-20210829-174042.mp4 6.13_4702_Player288-f153ac423f61-20211213-202231.mp4\r\n6.13_13456_Player663-7a976c8299cd-20210829-175417.mp4 6.13_4703_Player288-f153ac423f61-20211213-202419.mp4\r\n6.13_13457_Player663-7a976c8299cd-20210829-195420.mp4 6.13_4704_Player288-f153ac423f61-20211213-202605.mp4\r\n6.13_13458_Player663-7a976c8299cd-20210829-200029.mp4 6.13_4705_Player288-f153ac423f61-20211213-202934.mp4\r\n6.13_13459_Player663-980c0a1ea4e3-20210829-205053.mp4 6.13_4706_Player288-f153ac423f61-20211213-203124.mp4\r\n6.13_1345_Player15-605e7ce7bebd-20211221-033041.mp4 6.13_4707_Player288-f153ac423f61-20211213-203316.mp4\r\n6.13_13460_Player663-980c0a1ea4e3-20210829-214804.mp4 6.13_4708_Player288-f153ac423f61-20211213-203456.mp4\r\n6.13_13461_Player663-980c0a1ea4e3-20210829-215720.mp4 6.13_4709_Player288-f153ac423f61-20211213-203642.mp4\r\n6.13_13462_Player663-c172f635460b-20210829-172201.mp4 6.13_470_Player12-f153ac423f61-20210722-192317.mp4\r\n6.13_13463_Player663-c172f635460b-20210829-172505.mp4 6.13_4710_Player288-f153ac423f61-20211213-203826.mp4\r\n6.13_13464_Player663-c172f635460b-20210829-173108.mp4 6.13_4711_Player288-f153ac423f61-20211213-204011.mp4\r\n6.13_13465_Player663-c4c93968e30b-20210829-223202.mp4 6.13_4712_Player288-f153ac423f61-20211213-204157.mp4\r\n6.13_13466_Player663-c4c93968e30b-20210829-231917.mp4 6.13_4713_Player288-f153ac423f61-20211213-204430.mp4\r\n6.13_13467_Player663-c4c93968e30b-20210829-232018.mp4 6.13_4714_Player288-f153ac423f61-20211213-204616.mp4\r\n6.13_13468_Player663-c4c93968e30b-20210829-232120.mp4 6.13_4715_Player288-f153ac423f61-20211213-204802.mp4\r\n6.13_13469_Player663-c4c93968e30b-20210829-232221.mp4 6.13_4716_Player288-f153ac423f61-20211213-204947.mp4\r\n6.13_1346_Player15-605e7ce7bebd-20211221-033241.mp4 6.13_4717_Player288-f153ac423f61-20211213-205130.mp4\r\n6.13_13470_Player663-c4c93968e30b-20210829-232326.mp4 6.13_4718_Player288-f153ac423f61-20211213-205318.mp4\r\n6.13_13471_Player663-c4c93968e30b-20210829-232427.mp4 6.13_4719_Player288-f153ac423f61-20211213-205502.mp4\r\n6.13_13472_Player663-c4c93968e30b-20210829-232530.mp4 6.13_471_Player12-f153ac423f61-20210722-192426.mp4\r\n6.13_13473_Player663-c4c93968e30b-20210829-232735.mp4 6.13_4720_Player288-f153ac423f61-20211213-205648.mp4\r\n6.13_13474_Player663-c4c93968e30b-20210829-233041.mp4 6.13_4721_Player288-f153ac423f61-20211213-205835.mp4\r\n6.13_13475_Player663-c4c93968e30b-20210829-233449.mp4 6.13_4722_Player288-f153ac423f61-20211213-210231.mp4\r\n6.13_13476_Player663-c4c93968e30b-20210829-233959.mp4 6.13_4723_Player288-f153ac423f61-20211213-210413.mp4\r\n6.13_13477_Player663-c4c93968e30b-20210829-234609.mp4 6.13_4724_Player288-f153ac423f61-20211213-210555.mp4\r\n6.13_13478_Player663-cea76225c143-20210811-125918.mp4 6.13_4725_Player288-f153ac423f61-20211213-210741.mp4\r\n6.13_13479_Player663-cea76225c143-20210811-133357.mp4 6.13_4726_Player288-f153ac423f61-20211213-210953.mp4\r\n6.13_1347_Player15-605e7ce7bebd-20211221-033342.mp4 6.13_4727_Player288-f153ac423f61-20211213-211137.mp4\r\n6.13_13480_Player663-cea76225c143-20210811-140904.mp4 6.13_4728_Player288-f153ac423f61-20211213-211507.mp4\r\n6.13_13481_Player663-f153ac423f61-20210811-083212.mp4 6.13_4729_Player288-f153ac423f61-20211213-211650.mp4\r\n6.13_13482_Player663-f153ac423f61-20210811-090950.mp4 6.13_472_Player12-f153ac423f61-20210722-192631.mp4\r\n6.13_13483_Player663-f153ac423f61-20210811-094419.mp4 6.13_4730_Player288-f153ac423f61-20211213-211835.mp4\r\n6.13_13484_Player663-f153ac423f61-20210811-101748.mp4 6.13_4731_Player288-f153ac423f61-20211213-212019.mp4\r\n6.13_13485_Player663-f153ac423f61-20210811-105508.mp4 6.13_4732_Player288-f153ac423f61-20211213-212154.mp4\r\n6.13_13486_Player663-f153ac423f61-20210811-113227.mp4 6.13_4733_Player288-f153ac423f61-20211213-212338.mp4\r\n6.13_13487_Player663-f153ac423f61-20210811-120631.mp4 6.13_4734_Player288-f153ac423f61-20211213-212520.mp4\r\n6.13_13488_Player663-f153ac423f61-20210829-171603.mp4 6.13_4735_Player288-f153ac423f61-20211213-212701.mp4\r\n6.13_13489_Player663-f153ac423f61-20210829-171710.mp4 6.13_4736_Player288-f153ac423f61-20211213-212846.mp4\r\n6.13_1348_Player15-605e7ce7bebd-20211221-033442.mp4 6.13_4737_Player288-f153ac423f61-20211213-213028.mp4\r\n6.13_13490_Player663-f153ac423f61-20210829-171811.mp4 6.13_4738_Player288-f153ac423f61-20211213-213213.mp4\r\n6.13_13491_Player663-f153ac423f61-20210829-171912.mp4 6.13_4739_Player288-f153ac423f61-20211213-213356.mp4\r\n",,terminal_output +645,6809938,"TERMINAL",0,0,"6.13_13492_Player663-f153ac423f61-20210829-172116.mp4 6.13_473_Player12-f153ac423f61-20210722-192737.mp4\r\n6.13_13493_Player663-f153ac423f61-20211015-155718.mp4 6.13_4740_Player288-f153ac423f61-20211213-213708.mp4\r\n6.13_13494_Player663-f153ac423f61-20211015-161226.mp4 6.13_4741_Player288-f153ac423f61-20211213-213852.mp4\r\n6.13_13495_Player663-f153ac423f61-20211015-163717.mp4 6.13_4742_Player288-f153ac423f61-20211213-214034.mp4\r\n6.13_13496_Player663-f153ac423f61-20211015-170318.mp4 6.13_4743_Player288-f153ac423f61-20211213-214214.mp4\r\n6.13_13497_Player663-fba41356edc2-20210830-004020.mp4 6.13_4744_Player288-f153ac423f61-20211213-214358.mp4\r\n6.13_13498_Player663-fba41356edc2-20210830-010737.mp4 6.13_4745_Player288-f153ac423f61-20211213-214538.mp4\r\n6.13_13499_Player663-fba41356edc2-20210830-011142.mp4 6.13_4746_Player288-f153ac423f61-20211213-214719.mp4\r\n6.13_1349_Player15-605e7ce7bebd-20211221-033542.mp4 6.13_4747_Player288-f153ac423f61-20211213-214955.mp4\r\n6.13_134_Player100-695d64aecaf9-20211220-211502.mp4 6.13_4748_Player288-f153ac423f61-20211213-215138.mp4\r\n6.13_13500_Player663-fba41356edc2-20210830-011448.mp4 6.13_4749_Player288-f153ac423f61-20211213-215320.mp4\r\n6.13_13501_Player663-fba41356edc2-20210830-011549.mp4 6.13_474_Player12-f153ac423f61-20210722-192850.mp4\r\n6.13_13502_Player663-fba41356edc2-20210830-011753.mp4 6.13_4750_Player288-f153ac423f61-20211213-215459.mp4\r\n6.13_13503_Player663-fba41356edc2-20210830-011957.mp4 6.13_4751_Player288-f153ac423f61-20211213-215643.mp4\r\n6.13_13504_Player663-fba41356edc2-20210830-012200.mp4 6.13_4752_Player288-f153ac423f61-20211213-215822.mp4\r\n6.13_13505_Player663-fba41356edc2-20210830-012403.mp4 6.13_4753_Player289-f153ac423f61-20210903-154747.mp4\r\n6.13_13506_Player663-fba41356edc2-20210830-012710.mp4 6.13_4754_Player289-f153ac423f61-20210903-154849.mp4\r\n6.13_13507_Player663-fba41356edc2-20210830-012916.mp4 6.13_4755_Player289-f153ac423f61-20210903-154952.mp4\r\n6.13_13508_Player663-fba41356edc2-20210830-013018.mp4 6.13_4756_Player289-f153ac423f61-20210903-155059.mp4\r\n6.13_13509_Player663-fba41356edc2-20210830-013221.mp4 6.13_4757_Player289-f153ac423f61-20210903-155202.mp4\r\n6.13_1350_Player15-605e7ce7bebd-20211221-033642.mp4 6.13_4758_Player289-f153ac423f61-20210903-155307.mp4\r\n6.13_13510_Player663-fba41356edc2-20210830-013323.mp4 6.13_4759_Player289-f153ac423f61-20210903-155410.mp4\r\n6.13_13511_Player663-fba41356edc2-20210830-013425.mp4 6.13_475_Player12-f153ac423f61-20210722-193003.mp4\r\n6.13_13512_Player663-fba41356edc2-20210830-013528.mp4 6.13_4760_Player289-f153ac423f61-20210903-155513.mp4\r\n6.13_13513_Player663-fba41356edc2-20210830-013630.mp4 6.13_4761_Player289-f153ac423f61-20210903-155617.mp4\r\n6.13_13514_Player663-fba41356edc2-20210830-013836.mp4 6.13_4762_Player289-f153ac423f61-20210903-155722.mp4\r\n6.13_13515_Player663-fba41356edc2-20210830-014042.mp4 6.13_4763_Player289-f153ac423f61-20210903-155826.mp4\r\n6.13_13516_Player663-fba41356edc2-20210830-014348.mp4 6.13_4764_Player289-f153ac423f61-20210903-155931.mp4\r\n6.13_13517_Player663-fba41356edc2-20210830-014657.mp4 6.13_4765_Player289-f153ac423f61-20210903-160036.mp4\r\n6.13_13518_Player663-fba41356edc2-20210830-015109.mp4 6.13_4766_Player289-f153ac423f61-20210903-160139.mp4\r\n6.13_13519_Player666-f153ac423f61-20211008-094227.mp4 6.13_4767_Player289-f153ac423f61-20210903-160247.mp4\r\n6.13_1351_Player15-605e7ce7bebd-20211221-033842.mp4 6.13_4768_Player289-f153ac423f61-20210903-160356.mp4\r\n6.13_13520_Player666-f153ac423f61-20211008-094628.mp4 6.13_4769_Player289-f153ac423f61-20210903-160506.mp4\r\n6.13_13521_Player666-f153ac423f61-20211008-094935.mp4 6.13_476_Player12-f153ac423f61-20210722-193120.mp4\r\n6.13_13522_Player666-f153ac423f61-20211008-095303.mp4 6.13_4770_Player289-f153ac423f61-20210903-160616.mp4\r\n6.13_13523_Player666-f153ac423f61-20211008-095614.mp4 6.13_4771_Player289-f153ac423f61-20210903-160719.mp4\r\n6.13_13524_Player666-f153ac423f61-20211008-100029.mp4 6.13_4772_Player289-f153ac423f61-20210903-160824.mp4\r\n6.13_13525_Player666-f153ac423f61-20211008-100444.mp4 6.13_4773_Player289-f153ac423f61-20210903-160930.mp4\r\n6.13_13526_Player666-f153ac423f61-20211008-100821.mp4 6.13_4774_Player289-f153ac423f61-20210903-161035.mp4\r\n6.13_13527_Player666-f153ac423f61-20211008-101137.mp4 6.13_4775_Player289-f153ac423f61-20210903-161138.mp4\r\n6.13_13528_Player666-f153ac423f61-20211008-101457.mp4 6.13_4776_Player289-f153ac423f61-20210903-161247.mp4\r\n6.13_13529_Player666-f153ac423f61-20211008-101815.mp4 6.13_4777_Player289-f153ac423f61-20210903-161354.mp4\r\n6.13_1352_Player15-605e7ce7bebd-20211221-033943.mp4 6.13_4778_Player291-f153ac423f61-20211224-131417.mp4\r\n6.13_13530_Player666-f153ac423f61-20211008-102358.mp4 6.13_4779_Player291-f153ac423f61-20211224-132243.mp4\r\n6.13_13531_Player666-f153ac423f61-20211008-102706.mp4 6.13_477_Player12-f153ac423f61-20210722-193227.mp4\r\n6.13_13532_Player666-f153ac423f61-20211008-102944.mp4 6.13_4780_Player291-f153ac423f61-20211224-133159.mp4\r\n6.13_13533_Player666-f153ac423f61-20211008-103300.mp4 6.13_4781_Player291-f153ac423f61-20211224-134027.mp4\r\n6.13_13534_Player666-f153ac423f61-20211008-103623.mp4 6.13_4782_Player291-f153ac423f61-20211224-134849.mp4\r\n6.13_13535_Player667-f153ac423f61-20220105-231904.mp4 6.13_4783_Player291-f153ac423f61-20211224-135724.mp4\r\n6.13_13536_Player668-3ccb890df82a-20211214-180245.mp4 6.13_4784_Player292-f153ac423f61-20210828-153713.mp4\r\n6.13_13537_Player668-a91e5f477cf0-20211214-181527.mp4 6.13_4785_Player292-f153ac423f61-20210828-153818.mp4\r\n6.13_13538_Player668-a91e5f477cf0-20211214-182028.mp4 6.13_4786_Player292-f153ac423f61-20210828-153921.mp4\r\n6.13_13539_Player668-da18a6540e37-20211214-181449.mp4 6.13_4787_Player292-f153ac423f61-20210828-154024.mp4\r\n6.13_1353_Player15-605e7ce7bebd-20211221-034043.mp4 6.13_4788_Player292-f153ac423f61-20210828-154127.mp4\r\n6.13_13540_Player668-ee94fea5b759-20211214-180303.mp4 6.13_4789_Player292-f153ac423f61-20210828-154230.mp4\r\n6.13_13541_Player668-ee94fea5b759-20211214-180405.mp4 6.13_478_Player12-f153ac423f61-20210722-193336.mp4\r\n6.13_13542_Player668-ee94fea5b759-20211214-180505.mp4 6.13_4790_Player292-f153ac423f61-20210828-154333.mp4\r\n6.13_13543_Player668-ee94fea5b759-20211214-180606.mp4 6.13_4791_Player292-f153ac423f61-20210828-154436.mp4\r\n6.13_13544_Player668-ee94fea5b759-20211214-180707.mp4 6.13_4792_Player292-f153ac423f61-20210828-154540.mp4\r\n6.13_13545_Player668-ee94fea5b759-20211214-180808.mp4 6.13_4793_Player292-f153ac423f61-20210828-154643.mp4\r\n6.13_13546_Player668-ee94fea5b759-20211214-180909.mp4 6.13_4794_Player292-f153ac423f61-20210828-154746.mp4\r\n6.13_13547_Player668-ee94fea5b759-20211214-181011.mp4 6.13_4795_Player292-f153ac423f61-20210828-154848.mp4\r\n6.13_13548_Player668-ee94fea5b759-20211214-181111.mp4 6.13_4796_Player292-f153ac423f61-20210828-154949.mp4\r\n6.13_13549_Player668-ee94fea5b759-20211214-181212.mp4 6.13_4797_Player292-f153ac423f61-20210828-155051.mp4\r\n6.13_1354_Player15-605e7ce7bebd-20211221-034244.mp4 6.13_4798_Player292-f153ac423f61-20210828-155153.mp4\r\n6.13_13550_Player668-ee94fea5b759-20211214-181314.mp4 6.13_4799_Player292-f153ac423f61-20210828-155258.mp4\r\n6.13_13551_Player668-ee94fea5b759-20211214-181414.mp4 6.13_479_Player12-f153ac423f61-20210722-193443.mp4\r\n6.13_13552_Player668-f153ac423f61-20211214-180044.mp4 6.13_4800_Player292-f153ac423f61-20210828-155406.mp4\r\n6.13_13553_Player668-f153ac423f61-20211214-180147.mp4 6.13_4801_Player292-f153ac423f61-20210828-155512.mp4\r\n6.13_13554_Player668-f153ac423f61-20211222-233437.mp4 6.13_4802_Player292-f153ac423f61-20210828-155620.mp4\r\n6.13_13555_Player668-f153ac423f61-20211222-233843.mp4 6.13_4803_Player292-f153ac423f61-20210828-155728.mp4\r\n6.13_13556_Player668-f153ac423f61-20211222-234243.mp4 6.13_4804_Player292-f153ac423f61-20210828-155834.mp4\r\n6.13_13557_Player668-f153ac423f61-20211222-234643.mp4 6.13_4805_Player292-f153ac423f61-20210828-155935.mp4\r\n6.13_13558_Player668-f153ac423f61-20211222-235044.mp4 6.13_4806_Player292-f153ac423f61-20210828-160037.mp4\r\n6.13_13559_Player668-f153ac423f61-20211222-235343.mp4 6.13_4807_Player292-f153ac423f61-20210828-160142.mp4\r\n6.13_1355_Player15-605e7ce7bebd-20211221-034344.mp4 6.13_4808_Player292-f153ac423f61-20210922-184844.mp4\r\n6.13_13560_Player668-f153ac423f61-20211222-235642.mp4 6.13_4809_Player292-f153ac423f61-20210922-185002.mp4\r\n6.13_13561_Player668-f153ac423f61-20211223-000043.mp4 6.13_480_Player12-f153ac423f61-20210722-193551.mp4\r\n6.13_13562_Player668-f153ac423f61-20211223-000447.mp4 6.13_4810_Player292-f153ac423f61-20210922-185109.mp4\r\n6.13_13563_Player668-f153ac423f61-20211223-000846.mp4 6.13_4811_Player292-f153ac423f61-20210922-185220.mp4\r\n6.13_13564_Player668-f153ac423f61-20211223-001330.mp4 6.13_4812_Player292-f153ac423f61-20210922-185334.mp4\r\n6.13_13565_Player668-f153ac423f61-20211223-001731.mp4 6.13_4813_Player292-f153ac423f61-20210922-185449.mp4\r\n6.13_13566_Player668-f153ac423f61-20211223-002133.mp4 6.13_4814_Player292-f153ac423f61-20210922-185558.mp4\r\n6.13_13567_Player668-f153ac423f61-20211223-002532.mp4 6.13_4815_Player292-f153ac423f61-20210922-185708.mp4\r\n6.13_13568_Player668-f153ac423f61-20211223-002931.mp4 6.13_4816_Player292-f153ac423f61-20210922-185829.mp4\r\n6.13_13569_Player668-f153ac423f61-20211223-003330.mp4 6.13_4817_Player292-f153ac423f61-20210922-185935.mp4\r\n6.13_1356_Player15-605e7ce7bebd-20211221-034444.mp4 6.13_4818_Player292-f153ac423f61-20210922-190041.mp4\r\n6.13_13570_Player668-f153ac423f61-20211223-003629.mp4 6.13_4819_Player292-f153ac423f61-20210922-190148.mp4\r\n6.13_13571_Player668-f153ac423f61-20211223-003930.mp4 6.13_481_Player12-f153ac423f61-20210722-193657.mp4\r\n6.13_13572_Player669-f153ac423f61-20210807-230049.mp4 6.13_4820_Player292-f153ac423f61-20210922-190254.mp4\r\n6.13_13573_Player669-f153ac423f61-20210807-230154.mp4 6.13_4821_Player292-f153ac423f61-20210922-190404.mp4\r\n6.13_13574_Player669-f153ac423f61-20210807-230255.mp4 6.13_4822_Player292-f153ac423f61-20210922-190514.mp4\r\n6.13_13575_Player669-f153ac423f61-20210807-230357.mp4 6.13_4823_Player292-f153ac423f61-20210922-190629.mp4\r\n6.13_13576_Player669-f153ac423f61-20210807-230457.mp4 6.13_4824_Player292-f153ac423f61-20210922-190740.mp4\r\n6.13_13577_Player669-f153ac423f61-20210807-230558.mp4 6.13_4825_Player292-f153ac423f61-20210922-190849.mp4\r\n6.13_13578_Player669-f153ac423f61-20210807-230658.mp4 6.13_4826_Player292-f153ac423f61-20210922-191006.mp4\r\n6.13_13579_Player669-f153ac423f61-20210807-230758.mp4 6.13_4827_Player292-f153ac423f61-20210922-191124.mp4\r\n6.13_1357_Player15-605e7ce7bebd-20211221-034544.mp4 6.13_4828_Player292-f153ac423f61-20210922-191237.mp4\r\n6.13_13580_Player669-f153ac423f61-20210807-230858.mp4 6.13_4829_Player292-f153ac423f61-20210922-191354.mp4\r\n6.13_13581_Player669-f153ac423f61-20210807-230959.mp4 6.13_482_Player12-f153ac423f61-20210722-193803.mp4\r\n6.13_13582_Player669-f153ac423f61-20210807-231100.mp4 6.13_4830_Player292-f153ac423f61-20210922-191512.mp4\r\n6.13_13583_Player669-f153ac423f61-20210807-231200.mp4 6.13_4831_Player292-f153ac423f61-20210922-191630.mp4\r\n6.13_13584_Player669-f153ac423f61-20210807-231301.mp4 6.13_4832_Player292-f153ac423f61-20210922-191748.mp4\r\n6.13_13585_Player669-f153ac423f61-20210807-231401.mp4 6.13_4833_Player292-f153ac423f61-20210922-191908.mp4\r\n6.13_13586_Player669-f153ac423f61-20210807-231501.mp4 6.13_4834_Player292-f153ac423f61-20210922-192028.mp4\r\n6.13_13587_Player669-f153ac423f61-20210807-231602.mp4 6.13_4835_Player292-f153ac423f61-20210922-192146.mp4\r\n6.13_13588_Player669-f153ac423f61-20210807-231702.mp4 6.13_4836_Player292-f153ac423f61-20210922-192257.mp4\r\n6.13_13589_Player669-f153ac423f61-20210807-231803.mp4 6.13_4837_Player292-f153ac423f61-20210922-192413.mp4\r\n6.13_1358_Player15-605e7ce7bebd-20211221-034645.mp4 6.13_4838_Player292-f153ac423f61-20210922-192533.mp4\r\n6.13_13590_Player669-f153ac423f61-20210807-231903.mp4 6.13_4839_Player292-f153ac423f61-20210922-192646.mp4\r\n6.13_13591_Player669-f153ac423f61-20210807-232003.mp4 6.13_483_Player12-f153ac423f61-20210722-193908.mp4\r\n6.13_13592_Player669-f153ac423f61-20210807-232104.mp4 6.13_4840_Player292-f153ac423f61-20210922-192759.mp4\r\n6.13_13593_Player669-f153ac423f61-20210807-232204.mp4 6.13_4841_Player292-f153ac423f61-20210922-192912.mp4\r\n6.13_13594_Player669-f153ac423f61-20210807-232305.mp4 6.13_4842_Player292-f153ac423f61-20210922-193025.mp4\r\n6.13_13595_Player669-f153ac423f61-20210807-232405.mp4 6.13_4843_Player292-f153ac423f61-20210922-193141.mp4\r\n6.13_13596_Player669-f153ac423f61-20210807-232505.mp4 6.13_4844_Player292-f153ac423f61-20210922-193303.mp4\r\n6.13_13597_Player669-f153ac423f61-20210807-232619.mp4 6.13_4845_Player292-f153ac423f61-20210922-193427.mp4\r\n6.13_13598_Player669-f153ac423f61-20210807-232719.mp4 6.13_4846_Player292-f153ac423f61-20210922-193545.mp4\r\n6.13_13599_Player669-f153ac423f61-20210807-232820.mp4 6.13_4847_Player292-f153ac423f61-20210922-193658.mp4\r\n6.13_1359_Player15-605e7ce7bebd-20211221-034745.mp4 6.13_4848_Player292-f153ac423f61-20210922-193813.mp4\r\n6.13_135_Player100-695d64aecaf9-20211220-211805.mp4 6.13_4849_Player292-f153ac423f61-20210922-193936.mp4\r\n6.13_13600_Player669-f153ac423f61-20210807-232921.mp4 6.13_484_Player12-f153ac423f61-20210722-194015.mp4\r\n6.13_13601_Player669-f153ac423f61-20210807-233022.mp4 6.13_4850_Player292-f153ac423f61-20210922-194047.mp4\r\n6.13_13602_Player669-f153ac423f61-20210807-233124.mp4 6.13_4851_Player292-f153ac423f61-20210922-194200.mp4\r\n6.13_13603_Player669-f153ac423f61-20210807-233226.mp4 6.13_4852_Player292-f153ac423f61-20210922-194316.mp4\r\n6.13_13604_Player669-f153ac423f61-20210807-233327.mp4 6.13_4853_Player292-f153ac423f61-20210922-194438.mp4\r\n6.13_13605_Player669-f153ac423f61-20210807-233428.mp4 6.13_4854_Player292-f153ac423f61-20210922-194545.mp4\r\n6.13_13606_Player669-f153ac423f61-20210807-233529.mp4 6.13_4855_Player292-f153ac423f61-20210922-194650.mp4\r\n6.13_13607_Player669-f153ac423f61-20210807-233630.mp4 6.13_4856_Player292-f153ac423f61-20210922-194756.mp4\r\n6.13_13608_Player669-f153ac423f61-20210807-233731.mp4 6.13_4857_Player292-f153ac423f61-20210922-194900.mp4\r\n6.13_13609_Player669-f153ac423f61-20210807-233832.mp4 6.13_4858_Player292-f153ac423f61-20210922-195004.mp4\r\n6.13_1360_Player15-605e7ce7bebd-20211221-034845.mp4 6.13_4859_Player292-f153ac423f61-20210922-195110.mp4\r\n6.13_13610_Player669-f153ac423f61-20210807-233932.mp4 6.13_485_Player12-f153ac423f61-20210722-194121.mp4\r\n6.13_13611_Player669-f153ac423f61-20210807-234033.mp4 6.13_4860_Player292-f153ac423f61-20210922-195220.mp4\r\n6.13_13612_Player669-f153ac423f61-20210807-234134.mp4 6.13_4861_Player292-f153ac423f61-20210922-195335.mp4\r\n6.13_13613_Player669-f153ac423f61-20210807-234235.mp4 6.13_4862_Player292-f153ac423f61-20210922-195454.mp4\r\n6.13_13614_Player669-f153ac423f61-20210807-234338.mp4 6.13_4863_Player292-f153ac423f61-20210922-195613.mp4\r\n6.13_13615_Player669-f153ac423f61-20210807-234440.mp4 6.13_4864_Player292-f153ac423f61-20210922-195740.mp4\r\n6.13_13616_Player669-f153ac423f61-20210807-234541.mp4 6.13_4865_Player292-f153ac423f61-20210922-195904.mp4\r\n6.13_13617_Player669-f153ac423f61-20210807-234643.mp4 6.13_4866_Player292-f153ac423f61-20210922-200022.mp4\r\n6.13_13618_Player669-f153ac423f61-20210807-234744.mp4 6.13_4867_Player292-f153ac423f61-20210922-200132.mp4\r\n6.13_13619_Player669-f153ac423f61-20210807-234847.mp4 6.13_4868_Player292-f153ac423f61-20210922-200236.mp4\r\n6.13_1361_Player15-605e7ce7bebd-20211221-034945.mp4 6.13_4869_Player292-f153ac423f61-20210922-200341.mp4\r\n6.13_13620_Player669-f153ac423f61-20210807-234949.mp4 6.13_486_Player12-f153ac423f61-20210722-194229.mp4\r\n6.13_13621_Player669-f153ac423f61-20210807-235052.mp4 6.13_4870_Player292-f153ac423f61-20210922-200446.mp4\r\n6.13_13622_Player669-f153ac423f61-20210807-235154.mp4 6.13_4871_Player292-f153ac423f61-20210922-200558.mp4\r\n6.13_13623_Player669-f153ac423f61-20210807-235256.mp4 6.13_4872_Player292-f153ac423f61-20210922-200714.mp4\r\n6.13_13624_Player669-f153ac423f61-20210807-235357.mp4 6.13_4873_Player292-f153ac423f61-20210922-200839.mp4\r\n6.13_13625_Player669-f153ac423f61-20210807-235458.mp4 6.13_4874_Player292-f153ac423f61-20211211-220623.mp4\r\n6.13_13626_Player669-f153ac423f61-20210807-235559.mp4 6.13_4875_Player292-f153ac423f61-20211211-220855.mp4\r\n6.13_13627_Player669-f153ac423f61-20210807-235659.mp4 6.13_4876_Player292-f153ac423f61-20211211-221051.mp4\r\n6.13_13628_Player669-f153ac423f61-20210807-235759.mp4 6.13_4877_Player292-f153ac423f61-20211211-221428.mp4\r\n6.13_13629_Player669-f153ac423f61-20210807-235900.mp4 6.13_4878_Player292-f153ac423f61-20211211-221615.mp4\r\n6.13_1362_Player15-605e7ce7bebd-20211221-035046.mp4 6.13_4879_Player292-f153ac423f61-20211211-221756.mp4\r\n6.13_13630_Player669-f153ac423f61-20210808-000001.mp4 6.13_487_Player12-f153ac423f61-20210722-194354.mp4\r\n6.13_13631_Player669-f153ac423f61-20210808-000101.mp4 6.13_4880_Player292-f153ac423f61-20211211-222104.mp4\r\n6.13_13632_Player669-f153ac423f61-20210808-000202.mp4 6.13_4881_Player292-f153ac423f61-20211211-222231.mp4\r\n6.13_13633_Player669-f153ac423f61-20210808-000303.mp4 6.13_4882_Player292-f153ac423f61-20211211-222356.mp4\r\n6.13_13634_Player669-f153ac423f61-20210808-000403.mp4 6.13_4883_Player292-f153ac423f61-20211211-222521.mp4\r\n6.13_13635_Player669-f153ac423f61-20210808-000504.mp4 6.13_4884_Player292-f153ac423f61-20211211-222645.mp4\r\n6.13_13636_Player669-f153ac423f61-20210808-000605.mp4 6.13_4885_Player292-f153ac423f61-20211211-222813.mp4\r\n6.13_13637_Player669-f153ac423f61-20210808-000706.mp4 6.13_4886_Player292-f153ac423f61-20211211-222936.mp4\r\n6.13_13638_Player669-f153ac423f61-20210808-000807.mp4 6.13_4887_Player292-f153ac423f61-20211211-223101.mp4\r\n6.13_13639_Player669-f153ac423f61-20210808-000909.mp4 6.13_4888_Player292-f153ac423f61-20211211-223228.mp4\r\n6.13_1363_Player15-605e7ce7bebd-20211221-035146.mp4 6.13_4889_Player292-f153ac423f61-20211211-223356.mp4\r\n6.13_13640_Player669-f153ac423f61-20210808-001011.mp4 6.13_488_Player12-f153ac423f61-20210722-194516.mp4\r\n6.13_13641_Player669-f153ac423f61-20210808-001113.mp4 6.13_4890_Player292-f153ac423f61-20211211-223541.mp4\r\n6.13_13642_Player669-f153ac423f61-20210808-001215.mp4 6.13_4891_Player292-f153ac423f61-20211211-223727.mp4\r\n6.13_13643_Player669-f153ac423f61-20210808-001316.mp4 6.13_4892_Player292-f153ac423f61-20211211-224000.mp4\r\n6.13_13644_Player669-f153ac423f61-20210808-001418.mp4 6.13_4893_Player292-f153ac423f61-20211211-224140.mp4\r\n6.13_13645_Player669-f153ac423f61-20210808-001520.mp4 6.13_4894_Player292-f153ac423f61-20211211-224321.mp4\r\n6.13_13646_Player669-f153ac423f61-20210808-001621.mp4 6.13_4895_Player292-f153ac423f61-20211211-224501.mp4\r\n6.13_13647_Player669-f153ac423f61-20210808-001722.mp4 6.13_4896_Player292-f153ac423f61-20211211-224644.mp4\r\n6.13_13648_Player67-f153ac423f61-20210729-090215.mp4 6.13_4897_Player292-f153ac423f61-20211211-224826.mp4\r\n6.13_13649_Player67-f153ac423f61-20210729-090323.mp4 6.13_4898_Player292-f153ac423f61-20211211-225010.mp4\r\n6.13_1364_Player15-605e7ce7bebd-20211221-035246.mp4 6.13_4899_Player292-f153ac423f61-20211211-225151.mp4\r\n6.13_13650_Player67-f153ac423f61-20210729-090435.mp4 6.13_489_Player12-f153ac423f61-20210722-194640.mp4\r\n6.13_13651_Player67-f153ac423f61-20210729-090549.mp4 6.13_4900_Player292-f153ac423f61-20211211-225333.mp4\r\n6.13_13652_Player67-f153ac423f61-20210729-090702.mp4 6.13_4901_Player292-f153ac423f61-20211211-225518.mp4\r\n6.13_13653_Player67-f153ac423f61-20210729-090806.mp4 6.13_4902_Player292-f153ac423f61-20211211-225706.mp4\r\n6.13_13654_Player67-f153ac423f61-20210729-090919.mp4 6.13_4903_Player292-f153ac423f61-20211211-225852.mp4\r\n6.13_13655_Player67-f153ac423f61-20210729-091040.mp4 6.13_4904_Player292-f153ac423f61-20211211-230035.mp4\r\n6.13_13656_Player67-f153ac423f61-20210729-091210.mp4 6.13_4905_Player292-f153ac423f61-20211211-230223.mp4\r\n6.13_13657_Player67-f153ac423f61-20210729-091340.mp4 6.13_4906_Player292-f153ac423f61-20211211-230403.mp4\r\n6.13_13658_Player67-f153ac423f61-20210729-091509.mp4 6.13_4907_Player292-f153ac423f61-20211211-230546.mp4\r\n6.13_13659_Player67-f153ac423f61-20210729-091638.mp4 6.13_4908_Player292-f153ac423f61-20211211-230730.mp4\r\n6.13_1365_Player15-605e7ce7bebd-20211221-035346.mp4 6.13_4909_Player292-f153ac423f61-20211211-230911.mp4\r\n6.13_13660_Player67-f153ac423f61-20210729-091816.mp4 6.13_490_Player12-f153ac423f61-20210722-194759.mp4\r\n6.13_13661_Player67-f153ac423f61-20210729-091951.mp4 6.13_4910_Player292-f153ac423f61-20211211-231051.mp4\r\n6.13_13662_Player67-f153ac423f61-20210729-092122.mp4 6.13_4911_Player292-f153ac423f61-20211211-231234.mp4\r\n6.13_13663_Player67-f153ac423f61-20210729-092254.mp4 6.13_4912_Player292-f153ac423f61-20211211-231419.mp4\r\n6.13_13664_Player67-f153ac423f61-20210729-092432.mp4 6.13_4913_Player292-f39b9e166c03-20210828-160346.mp4\r\n6.13_13665_Player67-f153ac423f61-20210729-092613.mp4 6.13_4914_Player292-f39b9e166c03-20210828-160449.mp4\r\n6.13_13666_Player67-f153ac423f61-20210729-092752.mp4 6.13_4915_Player292-f39b9e166c03-20210828-160551.mp4\r\n6.13_13667_Player67-f153ac423f61-20210729-092933.mp4 6.13_4916_Player292-f39b9e166c03-20210828-160655.mp4\r\n6.13_13668_Player67-f153ac423f61-20210729-093109.mp4 6.13_4917_Player292-f39b9e166c03-20210828-160800.mp4\r\n6.13_13669_Player67-f153ac423f61-20210729-093229.mp4 6.13_4918_Player292-f39b9e166c03-20210828-160905.mp4\r\n6.13_1366_Player15-605e7ce7bebd-20211221-035447.mp4 6.13_4919_Player292-f39b9e166c03-20210828-161011.mp4\r\n6.13_13670_Player67-f153ac423f61-20210729-093334.mp4 6.13_491_Player12-f153ac423f61-20210722-194922.mp4\r\n6.13_13671_Player67-f153ac423f61-20210729-093444.mp4 6.13_4920_Player292-f39b9e166c03-20210828-161121.mp4\r\n6.13_13672_Player67-f153ac423f61-20210729-093554.mp4 6.13_4921_Player292-f39b9e166c03-20210828-161227.mp4\r\n6.13_13673_Player67-f153ac423f61-20210729-093656.mp4 6.13_4922_Player292-f39b9e166c03-20210828-161335.mp4\r\n6.13_13674_Player67-f153ac423f61-20210729-093757.mp4 6.13_4923_Player292-f39b9e166c03-20210828-161436.mp4\r\n6.13_13675_Player67-f153ac423f61-20210729-093858.mp4 6.13_4924_Player292-f39b9e166c03-20210828-161538.mp4\r\n6.13_13676_Player67-f153ac423f61-20210729-093958.mp4 6.13_4925_Player292-f39b9e166c03-20210828-161640.mp4\r\n6.13_13677_Player67-f153ac423f61-20210729-094058.mp4 6.13_4926_Player292-f39b9e166c03-20210828-161742.mp4\r\n6.13_13678_Player67-f153ac423f61-20210729-094202.mp4 6.13_4927_Player292-f39b9e166c03-20210828-161843.mp4\r\n6.13_13679_Player67-f153ac423f61-20210729-094313.mp4 6.13_4928_Player292-f39b9e166c03-20210828-161945.mp4\r\n6.13_1367_Player15-605e7ce7bebd-20211221-035547.mp4 6.13_4929_Player292-f39b9e166c03-20210828-162047.mp4\r\n6.13_13680_Player67-f153ac423f61-20210729-094426.mp4 6.13_492_Player12-f153ac423f61-20210722-195040.mp4\r\n6.13_13681_Player67-f153ac423f61-20210729-094533.mp4 6.13_4930_Player292-f39b9e166c03-20210828-162149.mp4\r\n6.13_13682_Player67-f153ac423f61-20210729-094640.mp4 6.13_4931_Player292-f39b9e166c03-20210828-162251.mp4\r\n6.13_13683_Player67-f153ac423f61-20210729-094752.mp4 6.13_4932_Player292-f39b9e166c03-20210828-162355.mp4\r\n6.13_13684_Player67-f153ac423f61-20211014-153833.mp4 6.13_4933_Player292-f39b9e166c03-20210828-162458.mp4\r\n6.13_13685_Player67-f153ac423f61-20211014-154503.mp4 6.13_4934_Player292-f39b9e166c03-20210828-162601.mp4\r\n6.13_13686_Player67-f153ac423f61-20211014-155032.mp4 6.13_4935_Player292-f39b9e166c03-20210828-162704.mp4\r\n6.13_13687_Player67-f153ac423f61-20211014-155455.mp4 6.13_4936_Player292-f39b9e166c03-20210828-162807.mp4\r\n6.13_13688_Player67-f153ac423f61-20211014-160021.mp4 6.13_4937_Player293-f153ac423f61-20211101-200641.mp4\r\n6.13_13689_Player67-f153ac423f61-20211014-160336.mp4 6.13_4938_Player293-f153ac423f61-20211101-202908.mp4\r\n6.13_1368_Player15-605e7ce7bebd-20211221-035647.mp4 6.13_4939_Player293-f153ac423f61-20211101-205428.mp4\r\n6.13_13690_Player67-f153ac423f61-20211014-160649.mp4 6.13_493_Player12-f153ac423f61-20210722-195142.mp4\r\n6.13_13691_Player67-f153ac423f61-20211014-161107.mp4 6.13_4940_Player293-f153ac423f61-20211101-211600.mp4\r\n6.13_13692_Player67-f153ac423f61-20211014-161423.mp4 6.13_4941_Player293-f153ac423f61-20211101-213007.mp4\r\n6.13_13693_Player67-f153ac423f61-20211014-161736.mp4 6.13_4942_Player293-f153ac423f61-20211101-214342.mp4\r\n6.13_13694_Player67-f153ac423f61-20211014-162047.mp4 6.13_4943_Player293-f153ac423f61-20211101-215759.mp4\r\n6.13_13695_Player67-f153ac423f61-20211014-162402.mp4 6.13_4944_Player293-f153ac423f61-20211101-220725.mp4\r\n6.13_13696_Player67-f153ac423f61-20211014-162716.mp4 6.13_4945_Player299-f153ac423f61-20211204-150752.mp4\r\n6.13_13697_Player67-f153ac423f61-20211014-163027.mp4 6.13_4946_Player299-f153ac423f61-20211204-150958.mp4\r\n6.13_13698_Player670-df7b87f1b722-20210728-192011.mp4 6.13_4947_Player299-f153ac423f61-20211204-151116.mp4\r\n6.13_13699_Player670-df7b87f1b722-20210728-194246.mp4 6.13_4948_Player299-f153ac423f61-20211204-151235.mp4\r\n6.13_1369_Player15-605e7ce7bebd-20211221-035748.mp4 6.13_4949_Player299-f153ac423f61-20211204-151409.mp4\r\n6.13_136_Player100-695d64aecaf9-20211220-212106.mp4 6.13_494_Player12-f153ac423f61-20210722-195246.mp4\r\n6.13_13700_Player670-df7b87f1b722-20210728-203447.mp4 6.13_4950_Player299-f153ac423f61-20211204-151536.mp4\r\n6.13_13701_Player670-df7b87f1b722-20210728-223932.mp4 6.13_4951_Player299-f153ac423f61-20211204-151711.mp4\r\n6.13_13702_Player670-f153ac423f61-20210728-152709.mp4 6.13_4952_Player299-f153ac423f61-20211204-151845.mp4\r\n6.13_13703_Player670-f153ac423f61-20210728-152826.mp4 6.13_4953_Player299-f153ac423f61-20211204-152014.mp4\r\n6.13_13704_Player670-f153ac423f61-20210728-152930.mp4 6.13_4954_Player299-f153ac423f61-20211204-152132.mp4\r\n6.13_13705_Player670-f153ac423f61-20210728-153032.mp4 6.13_4955_Player299-f153ac423f61-20211204-152241.mp4\r\n6.13_13706_Player670-f153ac423f61-20210728-153237.mp4 6.13_4956_Player299-f153ac423f61-20211204-152403.mp4\r\n6.13_13707_Player670-f153ac423f61-20210728-153443.mp4 6.13_4957_Player299-f153ac423f61-20211204-152524.mp4\r\n6.13_13708_Player670-f153ac423f61-20210728-153851.mp4 6.13_4958_Player299-f153ac423f61-20211204-152658.mp4\r\n6.13_13709_Player670-f153ac423f61-20210728-190047.mp4 6.13_4959_Player299-f153ac423f61-20211204-152819.mp4\r\n6.13_1370_Player15-605e7ce7bebd-20211221-035848.mp4 6.13_495_Player12-f153ac423f61-20210722-195347.mp4\r\n6.13_13710_Player670-f153ac423f61-20210728-190303.mp4 6.13_4960_Player299-f153ac423f61-20211204-152938.mp4\r\n6.13_13711_Player670-f153ac423f61-20210728-190710.mp4 6.13_4961_Player299-f153ac423f61-20211204-153111.mp4\r\n6.13_13712_Player670-f153ac423f61-20210810-100426.mp4 6.13_4962_Player299-f153ac423f61-20211204-153316.mp4\r\n6.13_13713_Player670-f153ac423f61-20210810-100544.mp4 6.13_4963_Player299-f153ac423f61-20211204-153524.mp4\r\n6.13_13714_Player670-f153ac423f61-20210810-100654.mp4 6.13_4964_Player299-f153ac423f61-20211204-153731.mp4\r\n6.13_13715_Player670-f153ac423f61-20210810-100757.mp4 6.13_4965_Player299-f153ac423f61-20211204-153937.mp4\r\n6.13_13716_Player670-f153ac423f61-20210810-100901.mp4 6.13_4966_Player299-f153ac423f61-20211204-154151.mp4\r\n6.13_13717_Player670-f153ac423f61-20210810-101007.mp4 6.13_4967_Player299-f153ac423f61-20211204-154340.mp4\r\n6.13_13718_Player670-f153ac423f61-20210810-101111.mp4 6.13_4968_Player299-f153ac423f61-20211204-154511.mp4\r\n6.13_13719_Player670-f153ac423f61-20210810-101215.mp4 6.13_4969_Player299-f153ac423f61-20211204-154619.mp4\r\n6.13_1371_Player15-605e7ce7bebd-20211221-035948.mp4 6.13_496_Player12-f153ac423f61-20210722-195448.mp4\r\n6.13_13720_Player670-f153ac423f61-20210810-101320.mp4 6.13_4970_Player299-f153ac423f61-20211204-154725.mp4\r\n6.13_13721_Player670-f153ac423f61-20210810-101424.mp4 6.13_4971_Player299-f153ac423f61-20211204-154826.mp4\r\n6.13_13722_Player670-f153ac423f61-20210810-101528.mp4 6.13_4972_Player299-f153ac423f61-20211204-154927.mp4\r\n6.13_13723_Player670-f153ac423f61-20210810-101632.mp4 6.13_4973_Player299-f153ac423f61-20211204-155028.mp4\r\n6.13_13724_Player670-f153ac423f61-20210810-101734.mp4 6.13_4974_Player299-f153ac423f61-20211204-155130.mp4\r\n6.13_13725_Player670-f153ac423f61-20210810-101838.mp4 6.13_4975_Player299-f153ac423f61-20211204-155230.mp4\r\n6.13_13726_Player670-f153ac423f61-20210810-101942.mp4 6.13_4976_Player299-f153ac423f61-20211204-155331.mp4\r\n6.13_13727_Player670-f153ac423f61-20210810-102045.mp4 6.13_4977_Player299-f5b10a33e13d-20211204-155504.mp4\r\n6.13_13728_Player670-f153ac423f61-20210810-102148.mp4 6.13_4978_Player30-f153ac423f61-20210725-144709.mp4\r\n6.13_13729_Player670-f153ac423f61-20210810-102251.mp4 6.13_4979_Player30-f153ac423f61-20210725-144818.mp4\r\n6.13_1372_Player15-605e7ce7bebd-20211221-040049.mp4 6.13_497_Player12-f153ac423f61-20210722-195550.mp4\r\n6.13_13730_Player670-f153ac423f61-20210810-102356.mp4 6.13_4980_Player30-f153ac423f61-20210725-144928.mp4\r\n6.13_13731_Player670-f153ac423f61-20210810-102502.mp4 6.13_4981_Player30-f153ac423f61-20210725-145040.mp4\r\n6.13_13732_Player670-f153ac423f61-20210810-102607.mp4 6.13_4982_Player30-f153ac423f61-20210725-145150.mp4\r\n6.13_13733_Player670-f153ac423f61-20210810-102715.mp4 6.13_4983_Player30-f153ac423f61-20210725-145254.mp4\r\n6.13_13734_Player670-f153ac423f61-20210810-102826.mp4 6.13_4984_Player30-f153ac423f61-20210725-145359.mp4\r\n6.13_13735_Player670-f153ac423f61-20210810-102938.mp4 6.13_4985_Player30-f153ac423f61-20210725-145501.mp4\r\n6.13_13736_Player670-f153ac423f61-20210810-103048.mp4 6.13_4986_Player30-f153ac423f61-20210725-145602.mp4\r\n6.13_13737_Player670-f153ac423f61-20210810-103201.mp4 6.13_4987_Player30-f153ac423f61-20210725-145704.mp4\r\n6.13_13738_Player670-f153ac423f61-20210810-103312.mp4 6.13_4988_Player30-f153ac423f61-20210725-145818.mp4\r\n6.13_13739_Player670-f153ac423f61-20210810-103419.mp4 6.13_4989_Player30-f153ac423f61-20210725-145926.mp4\r\n6.13_1373_Player15-605e7ce7bebd-20211221-040149.mp4 6.13_498_Player12-f153ac423f61-20210722-195715.mp4\r\n6.13_13740_Player670-f153ac423f61-20210810-103529.mp4 6.13_4990_Player30-f153ac423f61-20210725-150036.mp4\r\n6.13_13741_Player670-f153ac423f61-20210810-103640.mp4 6.13_4991_Player30-f153ac423f61-20210725-150151.mp4\r\n6.13_13742_Player670-f153ac423f61-20210810-103755.mp4 6.13_4992_Player30-f153ac423f61-20210725-150302.mp4\r\n6.13_13743_Player670-f153ac423f61-20210810-103904.mp4 6.13_4993_Player30-f153ac423f61-20210725-150415.mp4\r\n6.13_13744_Player670-f153ac423f61-20210810-104009.mp4 6.13_4994_Player30-f153ac423f61-20210725-150522.mp4\r\n6.13_13745_Player670-f153ac423f61-20210810-104117.mp4 6.13_4995_Player30-f153ac423f61-20210725-150628.mp4\r\n6.13_13746_Player670-f153ac423f61-20210810-104226.mp4 6.13_4996_Player30-f153ac423f61-20210725-150739.mp4\r\n6.13_13747_Player670-f153ac423f61-20210810-104335.mp4 6.13_4997_Player30-f153ac423f61-20210725-150856.mp4\r\n6.13_13748_Player670-f153ac423f61-20210810-104445.mp4 6.13_4998_Player30-f153ac423f61-20210725-151004.mp4\r\n6.13_13749_Player670-f153ac423f61-20210810-104553.mp4 6.13_4999_Player30-f153ac423f61-20210725-151109.mp4\r\n6.13_1374_Player15-605e7ce7bebd-20211221-040249.mp4 6.13_499_Player12-f153ac423f61-20210722-195840.mp4\r\n6.13_13750_Player670-f153ac423f61-20210810-104658.mp4 6.13_5000_Player30-f153ac423f61-20210725-151221.mp4\r\n6.13_13751_Player670-f153ac423f61-20210810-104806.mp4 6.13_5001_Player30-f153ac423f61-20210725-151334.mp4\r\n6.13_13752_Player670-f153ac423f61-20210810-104912.mp4 6.13_5002_Player30-f153ac423f61-20210725-151438.mp4\r\n6.13_13753_Player670-f153ac423f61-20210810-105019.mp4 6.13_5003_Player30-f153ac423f61-20210725-151555.mp4\r\n6.13_13754_Player670-f153ac423f61-20210810-105126.mp4 6.13_5004_Player30-f153ac423f61-20210725-151721.mp4\r\n6.13_13755_Player670-f153ac423f61-20210810-105232.mp4 6.13_5005_Player30-f153ac423f61-20210725-151838.mp4\r\n6.13_13756_Player670-f153ac423f61-20210810-105342.mp4 6.13_5006_Player30-f153ac423f61-20210725-152001.mp4\r\n6.13_13757_Player670-f153ac423f61-20210810-105449.mp4 6.13_5007_Player30-f153ac423f61-20210725-152114.mp4\r\n6.13_13758_Player670-f153ac423f61-20210810-105555.mp4 6.13_5008_Player30-f153ac423f61-20210725-152230.mp4\r\n6.13_13759_Player670-f153ac423f61-20210810-105703.mp4 6.13_5009_Player30-f153ac423f61-20210725-152343.mp4\r\n6.13_1375_Player15-605e7ce7bebd-20211221-040349.mp4 6.13_500_Player12-f153ac423f61-20210722-200015.mp4\r\n6.13_13760_Player670-f153ac423f61-20210810-105814.mp4 6.13_5010_Player30-f153ac423f61-20210725-152449.mp4\r\n6.13_13761_Player670-f153ac423f61-20210810-105920.mp4 6.13_5011_Player30-f153ac423f61-20210725-152558.mp4\r\n6.13_13762_Player670-f153ac423f61-20210810-110022.mp4 6.13_5012_Player30-f153ac423f61-20210725-152705.mp4\r\n6.13_13763_Player670-f153ac423f61-20210810-110129.mp4 6.13_5013_Player30-f153ac423f61-20210725-152816.mp4\r\n6.13_13764_Player670-f153ac423f61-20210810-110233.mp4 6.13_5014_Player30-f153ac423f61-20210725-152924.mp4\r\n6.13_13765_Player670-f153ac423f61-20210810-110336.mp4 6.13_5015_Player30-f153ac423f61-20210725-153039.mp4\r\n6.13_13766_Player670-f153ac423f61-20210810-110448.mp4 6.13_5016_Player30-f153ac423f61-20210725-153154.mp4\r\n6.13_13767_Player670-f153ac423f61-20210810-110558.mp4 6.13_5017_Player30-f153ac423f61-20210725-153301.mp4\r\n6.13_13768_Player670-f153ac423f61-20210810-110706.mp4 6.13_5018_Player30-f153ac423f61-20210725-153411.mp4\r\n6.13_13769_Player670-f153ac423f61-20210810-110812.mp4 6.13_5019_Player30-f153ac423f61-20210725-153518.mp4\r\n6.13_1376_Player15-605e7ce7bebd-20211221-040449.mp4 6.13_501_Player12-f153ac423f61-20210722-200130.mp4\r\n6.13_13770_Player670-f153ac423f61-20210810-110922.mp4 6.13_5020_Player30-f153ac423f61-20210725-153626.mp4\r\n6.13_13771_Player670-f153ac423f61-20210810-111026.mp4 6.13_5021_Player30-f153ac423f61-20210725-153734.mp4\r\n6.13_13772_Player670-f153ac423f61-20210810-111138.mp4 6.13_5022_Player30-f153ac423f61-20210725-153843.mp4\r\n6.13_13773_Player670-f153ac423f61-20210810-111248.mp4 6.13_5023_Player30-f153ac423f61-20210725-153952.mp4\r\n6.13_13774_Player670-f153ac423f61-20210810-111357.mp4 6.13_5024_Player30-f153ac423f61-20210725-154102.mp4\r\n6.13_13775_Player670-f153ac423f61-20210810-111507.mp4 6.13_5025_Player30-f153ac423f61-20210725-154214.mp4\r\n6.13_13776_Player670-f153ac423f61-20210810-111613.mp4 6.13_5026_Player30-f153ac423f61-20210725-154325.mp4\r\n6.13_13777_Player670-f153ac423f61-20210810-111725.mp4 6.13_5027_Player30-f153ac423f61-20210725-154440.mp4\r\n6.13_13778_Player670-f153ac423f61-20210810-111838.mp4 6.13_5028_Player30-f153ac423f61-20210725-154543.mp4\r\n6.13_13779_Player670-f153ac423f61-20210810-111942.mp4 6.13_5029_Player30-f153ac423f61-20210725-154650.mp4\r\n6.13_1377_Player15-605e7ce7bebd-20211221-040550.mp4 6.13_502_Player12-f153ac423f61-20210722-200248.mp4\r\n6.13_13780_Player670-f153ac423f61-20210810-112046.mp4 6.13_5030_Player30-f153ac423f61-20210725-154810.mp4\r\n6.13_13781_Player670-f153ac423f61-20210810-112155.mp4 6.13_5031_Player30-f153ac423f61-20210725-154916.mp4\r\n6.13_13782_Player670-f153ac423f61-20210810-112314.mp4 6.13_5032_Player30-f153ac423f61-20210725-155018.mp4\r\n6.13_13783_Player670-f153ac423f61-20210810-112421.mp4 6.13_5033_Player30-f153ac423f61-20210725-155118.mp4\r\n6.13_13784_Player670-f153ac423f61-20210810-112523.mp4 6.13_5034_Player30-f153ac423f61-20210725-155230.mp4\r\n6.13_13785_Player670-f153ac423f61-20210810-112632.mp4 6.13_5035_Player30-f153ac423f61-20210725-155334.mp4\r\n6.13_13786_Player670-f153ac423f61-20210810-112734.mp4 6.13_5036_Player30-f153ac423f61-20211209-124835.mp4\r\n6.13_13787_Player670-f153ac423f61-20210810-112842.mp4 6.13_5037_Player30-f153ac423f61-20211209-125311.mp4\r\n6.13_13788_Player670-f153ac423f61-20210810-112952.mp4 6.13_5038_Player30-f153ac423f61-20211209-125800.mp4\r\n6.13_13789_Player670-f153ac423f61-20210810-113055.mp4 6.13_5039_Player30-f153ac423f61-20211209-130312.mp4\r\n6.13_1378_Player15-605e7ce7bebd-20211221-040650.mp4 6.13_503_Player12-f153ac423f61-20210722-200350.mp4\r\n6.13_13790_Player670-f153ac423f61-20210810-113200.mp4 6.13_5040_Player30-f153ac423f61-20211209-130822.mp4\r\n6.13_13791_Player670-f153ac423f61-20210810-114205.mp4 6.13_5041_Player30-f153ac423f61-20211209-131238.mp4\r\n6.13_13792_Player674-f153ac423f61-20211206-224806.mp4 6.13_5042_Player30-f153ac423f61-20211209-131718.mp4\r\n6.13_13793_Player675-f153ac423f61-20211031-163429.mp4 6.13_5043_Player30-f153ac423f61-20211209-132230.mp4\r\n6.13_13794_Player675-f153ac423f61-20211031-163901.mp4 6.13_5044_Player30-f153ac423f61-20211209-132652.mp4\r\n6.13_13795_Player675-f153ac423f61-20211031-164227.mp4 6.13_5045_Player30-f153ac423f61-20211209-133141.mp4\r\n6.13_13796_Player675-f153ac423f61-20211031-164636.mp4 6.13_5046_Player300-f153ac423f61-20210726-155818.mp4\r\n6.13_13797_Player675-f153ac423f61-20211031-164940.mp4 6.13_5047_Player300-f153ac423f61-20210726-160328.mp4\r\n6.13_13798_Player675-f153ac423f61-20211031-165349.mp4 6.13_5048_Player300-f153ac423f61-20210726-160731.mp4\r\n6.13_13799_Player675-f153ac423f61-20211031-165655.mp4 6.13_5049_Player300-f153ac423f61-20210726-160931.mp4\r\n6.13_1379_Player15-605e7ce7bebd-20211221-040750.mp4 6.13_504_Player12-f153ac423f61-20210722-200452.mp4\r\n6.13_137_Player100-695d64aecaf9-20211220-212416.mp4 6.13_5050_Player300-f153ac423f61-20210726-161133.mp4\r\n6.13_13800_Player675-f153ac423f61-20211031-170000.mp4 6.13_5051_Player300-f153ac423f61-20210726-161334.mp4\r\n6.13_13801_Player675-f153ac423f61-20211031-170412.mp4 6.13_5052_Player300-f153ac423f61-20210726-161634.mp4\r\n6.13_13802_Player675-f153ac423f61-20211031-170716.mp4 6.13_5053_Player300-f153ac423f61-20210726-162135.mp4\r\n6.13_13803_Player675-f153ac423f61-20211031-171019.mp4 6.13_5054_Player300-f153ac423f61-20210726-163243.mp4\r\n6.13_13804_Player675-f153ac423f61-20211031-171425.mp4 6.13_5055_Player300-f153ac423f61-20210726-164047.mp4\r\n6.13_13805_Player675-f153ac423f61-20211031-171734.mp4 6.13_5056_Player304-f153ac423f61-20210917-203351.mp4\r\n6.13_13806_Player675-f153ac423f61-20211031-172036.mp4 6.13_5057_Player304-f153ac423f61-20210917-204237.mp4\r\n6.13_13807_Player675-f153ac423f61-20211031-172340.mp4 6.13_5058_Player304-f153ac423f61-20210917-205447.mp4\r\n6.13_13808_Player675-f153ac423f61-20211031-172747.mp4 6.13_5059_Player305-f153ac423f61-20211106-104106.mp4\r\n6.13_13809_Player675-f153ac423f61-20211031-173418.mp4 6.13_505_Player12-f153ac423f61-20210722-200554.mp4\r\n6.13_1380_Player15-605e7ce7bebd-20211221-040851.mp4 6.13_5060_Player306-f153ac423f61-20210725-220234.mp4\r\n6.13_13810_Player675-f153ac423f61-20211031-173726.mp4 6.13_5061_Player306-f153ac423f61-20210725-220346.mp4\r\n6.13_13811_Player675-f153ac423f61-20211031-174056.mp4 6.13_5062_Player306-f153ac423f61-20210725-220452.mp4\r\n6.13_13812_Player675-f153ac423f61-20211031-174423.mp4 6.13_5063_Player306-f153ac423f61-20210725-220610.mp4\r\n6.13_13813_Player676-1f6f3c0957db-20211219-211954.mp4 6.13_5064_Player306-f153ac423f61-20210725-220721.mp4\r\n6.13_13814_Player676-1f6f3c0957db-20211219-212155.mp4 6.13_5065_Player306-f153ac423f61-20210725-220830.mp4\r\n6.13_13815_Player676-1f6f3c0957db-20211219-212355.mp4 6.13_5066_Player306-f153ac423f61-20210725-220934.mp4\r\n6.13_13816_Player676-1f6f3c0957db-20211219-212555.mp4 6.13_5067_Player306-f153ac423f61-20210725-221052.mp4\r\n6.13_13817_Player676-c7a79a60afac-20211219-212730.mp4 6.13_5068_Player306-f153ac423f61-20210725-221209.mp4\r\n6.13_13818_Player676-f153ac423f61-20211128-182605.mp4 6.13_5069_Player306-f153ac423f61-20210725-221329.mp4\r\n6.13_13819_Player676-f153ac423f61-20211128-182711.mp4 6.13_506_Player12-f153ac423f61-20210722-200700.mp4\r\n6.13_1381_Player15-605e7ce7bebd-20211221-040955.mp4 6.13_5070_Player306-f153ac423f61-20210725-221450.mp4\r\n6.13_13820_Player676-f153ac423f61-20211128-182815.mp4 6.13_5071_Player306-f153ac423f61-20210725-221601.mp4\r\n6.13_13821_Player676-f153ac423f61-20211128-182922.mp4 6.13_5072_Player306-f153ac423f61-20210725-221710.mp4\r\n6.13_13822_Player676-f153ac423f61-20211128-183030.mp4 6.13_5073_Player306-f153ac423f61-20210725-221831.mp4\r\n6.13_13823_Player676-f153ac423f61-20211128-183136.mp4 6.13_5074_Player306-f153ac423f61-20210725-221933.mp4\r\n6.13_13824_Player676-f153ac423f61-20211128-183241.mp4 6.13_5075_Player306-f153ac423f61-20210725-222042.mp4\r\n6.13_13825_Player676-f153ac423f61-20211128-183344.mp4 6.13_5076_Player306-f153ac423f61-20210725-222148.mp4\r\n6.13_13826_Player676-f153ac423f61-20211128-183448.mp4 6.13_5077_Player306-f153ac423f61-20210725-222313.mp4\r\n6.13_13827_Player676-f153ac423f61-20211128-183556.mp4 6.13_5078_Player306-f153ac423f61-20210725-222421.mp4\r\n6.13_13828_Player676-f153ac423f61-20211219-202154.mp4 6.13_5079_Player306-f153ac423f61-20210725-222537.mp4\r\n6.13_13829_Player676-f153ac423f61-20211219-202320.mp4 6.13_507_Player12-f153ac423f61-20210722-200806.mp4\r\n6.13_1382_Player15-605e7ce7bebd-20211221-041056.mp4 6.13_5080_Player306-f153ac423f61-20210725-222642.mp4\r\n6.13_13830_Player676-f153ac423f61-20211219-202522.mp4 6.13_5081_Player306-f153ac423f61-20210725-222746.mp4\r\n6.13_13831_Player676-f153ac423f61-20211219-202723.mp4 6.13_5082_Player306-f153ac423f61-20210725-222855.mp4\r\n6.13_13832_Player676-f153ac423f61-20211219-202928.mp4 6.13_5083_Player306-f153ac423f61-20210725-223013.mp4\r\n6.13_13833_Player676-f153ac423f61-20211219-203129.mp4 6.13_5084_Player306-f153ac423f61-20210725-223118.mp4\r\n6.13_13834_Player676-f153ac423f61-20211219-203330.mp4 6.13_5085_Player306-f153ac423f61-20210725-223231.mp4\r\n6.13_13835_Player676-f153ac423f61-20211219-203530.mp4 6.13_5086_Player306-f153ac423f61-20210725-223343.mp4\r\n6.13_13836_Player676-f153ac423f61-20211219-203730.mp4 6.13_5087_Player306-f153ac423f61-20210725-223545.mp4\r\n6.13_13837_Player676-f153ac423f61-20211219-203930.mp4 6.13_5088_Player306-f153ac423f61-20210725-223704.mp4\r\n6.13_13838_Player676-f153ac423f61-20211219-204132.mp4 6.13_5089_Player306-f153ac423f61-20210725-223818.mp4\r\n6.13_13839_Player676-f153ac423f61-20211219-204337.mp4 6.13_508_Player12-f153ac423f61-20210722-200914.mp4\r\n6.13_1383_Player15-605e7ce7bebd-20211221-041157.mp4 6.13_5090_Player306-f153ac423f61-20210725-223939.mp4\r\n6.13_13840_Player676-f153ac423f61-20211219-204544.mp4 6.13_5091_Player306-f153ac423f61-20210725-224101.mp4\r\n6.13_13841_Player676-f153ac423f61-20211219-204748.mp4 6.13_5092_Player306-f153ac423f61-20210725-224206.mp4\r\n6.13_13842_Player676-f153ac423f61-20211219-204948.mp4 6.13_5093_Player306-f153ac423f61-20210725-224311.mp4\r\n6.13_13843_Player676-f153ac423f61-20211219-205149.mp4 6.13_5094_Player306-f153ac423f61-20210725-224415.mp4\r\n6.13_13844_Player676-f153ac423f61-20211219-205349.mp4 6.13_5095_Player306-f153ac423f61-20210725-224524.mp4\r\n6.13_13845_Player676-f153ac423f61-20211219-205552.mp4 6.13_5096_Player306-f153ac423f61-20210725-224635.mp4\r\n6.13_13846_Player676-f153ac423f61-20211219-205755.mp4 6.13_5097_Player306-f153ac423f61-20210725-224746.mp4\r\n6.13_13847_Player676-f153ac423f61-20211219-205956.mp4 6.13_5098_Player306-f153ac423f61-20210725-224855.mp4\r\n6.13_13848_Player676-f153ac423f61-20211219-210157.mp4 6.13_5099_Player306-f153ac423f61-20210725-224959.mp4\r\n6.13_13849_Player676-f153ac423f61-20211219-210500.mp4 6.13_509_Player12-f153ac423f61-20210722-201028.mp4\r\n6.13_1384_Player15-605e7ce7bebd-20211221-041257.mp4 6.13_5100_Player306-f153ac423f61-20210725-225104.mp4\r\n6.13_13850_Player676-f153ac423f61-20211219-210659.mp4 6.13_5101_Player306-f153ac423f61-20210725-225214.mp4\r\n6.13_13851_Player676-f153ac423f61-20211219-210859.mp4 6.13_5102_Player306-f153ac423f61-20210725-225318.mp4\r\n6.13_13852_Player676-f153ac423f61-20211219-211101.mp4 6.13_5103_Player306-f153ac423f61-20210725-225431.mp4\r\n6.13_13853_Player676-f153ac423f61-20211219-211311.mp4 6.13_5104_Player306-f153ac423f61-20210725-225541.mp4\r\n6.13_13854_Player676-f153ac423f61-20211219-211511.mp4 6.13_5105_Player306-f153ac423f61-20210725-225708.mp4\r\n6.13_13855_Player676-f153ac423f61-20211219-211710.mp4 6.13_5106_Player306-f153ac423f61-20210725-225839.mp4\r\n6.13_13856_Player679-2029737e820c-20210801-165458.mp4 6.13_5107_Player306-f153ac423f61-20210725-230008.mp4\r\n6.13_13857_Player679-2029737e820c-20210801-165605.mp4 6.13_5108_Player306-f153ac423f61-20210725-230135.mp4\r\n6.13_13858_Player679-77404a0a4685-20210801-165711.mp4 6.13_5109_Player306-f153ac423f61-20210725-230302.mp4\r\n6.13_13859_Player679-77404a0a4685-20210801-165817.mp4 6.13_510_Player12-f153ac423f61-20210722-201135.mp4\r\n6.13_1385_Player15-605e7ce7bebd-20211221-041358.mp4 6.13_5110_Player306-f153ac423f61-20210725-230421.mp4\r\n6.13_13860_Player679-77404a0a4685-20210801-165932.mp4 6.13_5111_Player306-f153ac423f61-20210725-230548.mp4\r\n6.13_13861_Player679-77404a0a4685-20210801-170045.mp4 6.13_5112_Player306-f153ac423f61-20210725-230715.mp4\r\n6.13_13862_Player679-77404a0a4685-20210801-170201.mp4 6.13_5113_Player306-f153ac423f61-20210725-230832.mp4\r\n6.13_13863_Player679-77404a0a4685-20210801-170313.mp4 6.13_5114_Player306-f153ac423f61-20210725-230955.mp4\r\n6.13_13864_Player679-77404a0a4685-20210801-170430.mp4 6.13_5115_Player306-f153ac423f61-20210725-231122.mp4\r\n6.13_13865_Player679-77404a0a4685-20210801-170547.mp4 6.13_5116_Player306-f153ac423f61-20210725-231240.mp4\r\n6.13_13866_Player679-77404a0a4685-20210801-170706.mp4 6.13_5117_Player306-f153ac423f61-20210725-231344.mp4\r\n6.13_13867_Player679-77404a0a4685-20210801-170826.mp4 6.13_5118_Player306-f153ac423f61-20210725-231449.mp4\r\n6.13_13868_Player679-8c192765c78d-20210722-235051.mp4 6.13_5119_Player306-f153ac423f61-20210725-231557.mp4\r\n6.13_13869_Player679-d3cf1f8aa889-20210722-233030.mp4 6.13_511_Player120-1a6fdfe602d8-20211109-142453.mp4\r\n6.13_1386_Player15-605e7ce7bebd-20211221-041458.mp4 6.13_5120_Player306-f153ac423f61-20210725-231728.mp4\r\n6.13_13870_Player679-f153ac423f61-20210722-230617.mp4 6.13_5121_Player306-f153ac423f61-20210725-231834.mp4\r\n6.13_13871_Player679-f153ac423f61-20210722-230838.mp4 6.13_5122_Player306-f153ac423f61-20210725-231942.mp4\r\n6.13_13872_Player679-f153ac423f61-20210722-232222.mp4 6.13_5123_Player306-f153ac423f61-20210725-232055.mp4\r\n6.13_13873_Player679-f153ac423f61-20210729-221633.mp4 6.13_5124_Player306-f153ac423f61-20210926-170449.mp4\r\n6.13_13874_Player679-f153ac423f61-20210729-221744.mp4 6.13_5125_Player306-f153ac423f61-20210926-171605.mp4\r\n6.13_13875_Player679-f153ac423f61-20210729-221851.mp4 6.13_5126_Player306-f153ac423f61-20210926-172716.mp4\r\n6.13_13876_Player679-f153ac423f61-20210729-221952.mp4 6.13_5127_Player306-f153ac423f61-20210926-173931.mp4\r\n6.13_13877_Player679-f153ac423f61-20210729-222053.mp4 6.13_5128_Player306-f153ac423f61-20210926-175041.mp4\r\n6.13_13878_Player679-f153ac423f61-20210729-222155.mp4 6.13_5129_Player306-f153ac423f61-20210926-180047.mp4\r\n6.13_13879_Player679-f153ac423f61-20210729-222305.mp4 6.13_512_Player120-1a6fdfe602d8-20211109-143101.mp4\r\n6.13_1387_Player15-605e7ce7bebd-20211221-041558.mp4 6.13_5130_Player306-f153ac423f61-20210926-181054.mp4\r\n6.13_13880_Player679-f153ac423f61-20210729-222418.mp4 6.13_5131_Player306-f153ac423f61-20210926-182208.mp4\r\n6.13_13881_Player679-f153ac423f61-20210729-222524.mp4 6.13_5132_Player306-f153ac423f61-20210926-183221.mp4\r\n6.13_13882_Player679-f153ac423f61-20210729-222627.mp4 6.13_5133_Player306-f153ac423f61-20210926-184228.mp4\r\n6.13_13883_Player679-f153ac423f61-20210729-222729.mp4 6.13_5134_Player306-f153ac423f61-20210926-185350.mp4\r\n6.13_13884_Player679-f153ac423f61-20210729-222832.mp4 6.13_5135_Player306-f153ac423f61-20210926-190459.mp4\r\n6.13_13885_Player679-f153ac423f61-20210729-222933.mp4 6.13_5136_Player306-f153ac423f61-20210926-191504.mp4\r\n6.13_13886_Player679-f153ac423f61-20210729-223036.mp4 6.13_5137_Player306-f153ac423f61-20210926-192612.mp4\r\n6.13_13887_Player679-f153ac423f61-20210729-223141.mp4 6.13_5138_Player307-f153ac423f61-20211214-200751.mp4\r\n6.13_13888_Player679-f153ac423f61-20210729-223251.mp4 6.13_5139_Player307-f153ac423f61-20211214-200948.mp4\r\n6.13_13889_Player679-f153ac423f61-20210729-223403.mp4 6.13_513_Player120-1a6fdfe602d8-20211109-143706.mp4\r\n6.13_1388_Player15-605e7ce7bebd-20211221-041658.mp4 6.13_5140_Player307-f153ac423f61-20211214-201209.mp4\r\n6.13_13890_Player679-f153ac423f61-20210729-223509.mp4 6.13_5141_Player307-f153ac423f61-20211214-201436.mp4\r\n6.13_13891_Player679-f153ac423f61-20210729-223615.mp4 6.13_5142_Player307-f153ac423f61-20211214-201703.mp4\r\n6.13_13892_Player679-f153ac423f61-20210729-223719.mp4 6.13_5143_Player307-f153ac423f61-20211214-201923.mp4\r\n6.13_13893_Player679-f153ac423f61-20210729-223821.mp4 6.13_5144_Player307-f153ac423f61-20211214-202151.mp4\r\n6.13_13894_Player679-f153ac423f61-20210729-223934.mp4 6.13_5145_Player307-f153ac423f61-20211214-202421.mp4\r\n6.13_13895_Player679-f153ac423f61-20210729-224044.mp4 6.13_5146_Player307-f153ac423f61-20211214-202653.mp4\r\n6.13_13896_Player679-f153ac423f61-20210729-224153.mp4 6.13_5147_Player308-f153ac423f61-20210723-225752.mp4\r\n6.13_13897_Player679-f153ac423f61-20210729-224303.mp4 6.13_5148_Player308-f153ac423f61-20210723-225959.mp4\r\n6.13_13898_Player679-f153ac423f61-20210729-224405.mp4 6.13_5149_Player308-f153ac423f61-20210723-230302.mp4\r\n6.13_13899_Player679-f153ac423f61-20210729-224507.mp4 6.13_514_Player120-1a6fdfe602d8-20211109-144309.mp4\r\n6.13_1389_Player15-605e7ce7bebd-20211221-041759.mp4 6.13_5150_Player308-f153ac423f61-20210723-230703.mp4\r\n6.13_138_Player100-f153ac423f61-20211220-200751.mp4 6.13_5151_Player308-f153ac423f61-20210723-231004.mp4\r\n6.13_13900_Player679-f153ac423f61-20210729-224617.mp4 6.13_5152_Player308-f153ac423f61-20210723-232726.mp4\r\n6.13_13901_Player679-f153ac423f61-20210729-224737.mp4 6.13_5153_Player308-f153ac423f61-20210723-233027.mp4\r\n6.13_13902_Player679-f153ac423f61-20210729-224852.mp4 6.13_5154_Player308-f153ac423f61-20210724-002845.mp4\r\n6.13_13903_Player679-f153ac423f61-20210729-225006.mp4 6.13_5155_Player308-f153ac423f61-20210724-003045.mp4\r\n6.13_13904_Player679-f153ac423f61-20210729-225125.mp4 6.13_5156_Player308-f153ac423f61-20210724-003246.mp4\r\n6.13_13905_Player679-f153ac423f61-20210729-225246.mp4 6.13_5157_Player308-f153ac423f61-20210724-003447.mp4\r\n6.13_13906_Player679-f153ac423f61-20210729-225358.mp4 6.13_5158_Player308-f153ac423f61-20210724-003548.mp4\r\n6.13_13907_Player679-f153ac423f61-20210801-152727.mp4 6.13_5159_Player308-f153ac423f61-20210724-003749.mp4\r\n6.13_13908_Player679-f153ac423f61-20210801-152855.mp4 6.13_515_Player120-1a6fdfe602d8-20211109-144912.mp4\r\n6.13_13909_Player679-f153ac423f61-20210801-153044.mp4 6.13_5160_Player308-f153ac423f61-20210724-003849.mp4\r\n6.13_1390_Player15-605e7ce7bebd-20211221-041859.mp4 6.13_5161_Player308-f153ac423f61-20210724-004050.mp4\r\n6.13_13910_Player679-f153ac423f61-20210801-153237.mp4 6.13_5162_Player308-fc5e81f33439-20210724-004207.mp4\r\n6.13_13911_Player679-f153ac423f61-20210801-153429.mp4 6.13_5163_Player308-fc5e81f33439-20210724-004309.mp4\r\n6.13_13912_Player679-f153ac423f61-20210801-153554.mp4 6.13_5164_Player308-fc5e81f33439-20210724-004510.mp4\r\n6.13_13913_Player679-f153ac423f61-20210801-153708.mp4 6.13_5165_Player308-fc5e81f33439-20210724-004712.mp4\r\n6.13_13914_Player679-f153ac423f61-20210801-153815.mp4 6.13_5166_Player308-fc5e81f33439-20210724-005113.mp4\r\n6.13_13915_Player679-f153ac423f61-20210801-153925.mp4 6.13_5167_Player308-fc5e81f33439-20210724-005716.mp4\r\n6.13_13916_Player679-f153ac423f61-20210801-154032.mp4 6.13_5168_Player308-fc5e81f33439-20210724-010318.mp4\r\n6.13_13917_Player679-f153ac423f61-20210801-154146.mp4 6.13_5169_Player308-fc5e81f33439-20210724-010619.mp4\r\n6.13_13918_Player679-f153ac423f61-20210801-154259.mp4 6.13_516_Player120-1a6fdfe602d8-20211109-145515.mp4\r\n6.13_13919_Player679-f153ac423f61-20210801-154410.mp4 6.13_5170_Player308-fc5e81f33439-20210724-010921.mp4\r\n6.13_1391_Player15-605e7ce7bebd-20211221-041959.mp4 6.13_5171_Player308-fc5e81f33439-20210724-011623.mp4\r\n6.13_13920_Player679-f153ac423f61-20210801-154525.mp4 6.13_5172_Player308-fc5e81f33439-20210724-012325.mp4\r\n6.13_13921_Player679-f153ac423f61-20210801-154635.mp4 6.13_5173_Player308-fc5e81f33439-20210724-012627.mp4\r\n6.13_13922_Player679-f153ac423f61-20210801-154744.mp4 6.13_5174_Player308-fc5e81f33439-20210724-012828.mp4\r\n6.13_13923_Player679-f153ac423f61-20210801-154852.mp4 6.13_5175_Player308-fc5e81f33439-20210724-013128.mp4\r\n6.13_13924_Player679-f153ac423f61-20210801-155008.mp4 6.13_5176_Player308-fc5e81f33439-20210724-013329.mp4\r\n6.13_13925_Player679-f153ac423f61-20210801-155119.mp4 6.13_5177_Player308-fc5e81f33439-20210724-013529.mp4\r\n6.13_13926_Player679-f153ac423f61-20210801-155236.mp4 6.13_5178_Player308-fc5e81f33439-20210724-014031.mp4\r\n6.13_13927_Player679-f153ac423f61-20210801-155346.mp4 6.13_5179_Player308-fc5e81f33439-20210724-014935.mp4\r\n6.13_13928_Player679-f153ac423f61-20210801-155452.mp4 6.13_517_Player120-1a6fdfe602d8-20211109-150121.mp4\r\n6.13_13929_Player679-f153ac423f61-20210801-155604.mp4 6.13_5180_Player308-fc5e81f33439-20210724-015938.mp4\r\n6.13_1392_Player15-605e7ce7bebd-20211221-042059.mp4 6.13_5181_Player308-fc5e81f33439-20210724-021645.mp4\r\n6.13_13930_Player679-f153ac423f61-20210801-155714.mp4 6.13_5182_Player308-fc5e81f33439-20210724-022948.mp4\r\n6.13_13931_Player679-f153ac423f61-20210801-155828.mp4 6.13_5183_Player308-fc5e81f33439-20210724-023149.mp4\r\n6.13_13932_Player679-f153ac423f61-20210801-155943.mp4 6.13_5184_Player308-fc5e81f33439-20210724-023350.mp4\r\n6.13_13933_Player679-f153ac423f61-20210801-160058.mp4 6.13_5185_Player308-fc5e81f33439-20210724-023550.mp4\r\n6.13_13934_Player679-f153ac423f61-20210801-160202.mp4 6.13_5186_Player309-5da552c313e0-20210721-155221.mp4\r\n6.13_13935_Player679-f153ac423f61-20210801-160310.mp4 6.13_5187_Player309-dcc21a4f8784-20210721-161032.mp4\r\n6.13_13936_Player679-f153ac423f61-20210801-160420.mp4 6.13_5188_Player309-dcc21a4f8784-20210721-162043.mp4\r\n6.13_13937_Player679-f153ac423f61-20210801-160534.mp4 6.13_5189_Player309-dcc21a4f8784-20210721-162553.mp4\r\n6.13_13938_Player679-f153ac423f61-20210801-160645.mp4 6.13_518_Player120-1a6fdfe602d8-20211109-150726.mp4\r\n6.13_13939_Player679-f153ac423f61-20210801-160759.mp4 6.13_5190_Player309-dcc21a4f8784-20210721-163058.mp4\r\n6.13_1393_Player15-605e7ce7bebd-20211221-042200.mp4 6.13_5191_Player309-dcc21a4f8784-20210721-163401.mp4\r\n6.13_13940_Player679-f153ac423f61-20210801-160913.mp4 6.13_5192_Player309-dcc21a4f8784-20210721-164009.mp4\r\n6.13_13941_Player679-f153ac423f61-20210801-161027.mp4 6.13_5193_Player309-f153ac423f61-20210721-152623.mp4\r\n6.13_13942_Player679-f153ac423f61-20210801-161139.mp4 6.13_5194_Player309-f153ac423f61-20210721-153129.mp4\r\n6.13_13943_Player679-f153ac423f61-20210801-161259.mp4 6.13_5195_Player309-f153ac423f61-20210910-162254.mp4\r\n6.13_13944_Player679-f153ac423f61-20210801-161417.mp4 6.13_5196_Player309-f153ac423f61-20210910-163218.mp4\r\n6.13_13945_Player679-f153ac423f61-20210801-161520.mp4 6.13_5197_Player309-f153ac423f61-20210910-164026.mp4\r\n6.13_13946_Player679-f153ac423f61-20210801-161635.mp4 6.13_5198_Player309-f153ac423f61-20210910-164937.mp4\r\n6.13_13947_Player679-f153ac423f61-20210801-161802.mp4 6.13_5199_Player309-f153ac423f61-20210910-165845.mp4\r\n6.13_13948_Player679-f153ac423f61-20210801-161930.mp4 6.13_519_Player120-1a6fdfe602d8-20211109-151334.mp4\r\n6.13_13949_Player679-f153ac423f61-20210801-162100.mp4 6.13_5200_Player309-f153ac423f61-20210910-170907.mp4\r\n6.13_1394_Player15-605e7ce7bebd-20211221-042300.mp4 6.13_5201_Player309-f153ac423f61-20210910-171712.mp4\r\n6.13_13950_Player679-f153ac423f61-20210801-162207.mp4 6.13_5202_Player309-f153ac423f61-20210910-172939.mp4\r\n6.13_13951_Player679-f153ac423f61-20210801-162315.mp4 6.13_5203_Player309-f153ac423f61-20210910-173744.mp4\r\n6.13_13952_Player679-f153ac423f61-20210801-162429.mp4 6.13_5204_Player309-f153ac423f61-20210910-174653.mp4\r\n6.13_13953_Player679-f153ac423f61-20210801-162551.mp4 6.13_5205_Player309-f153ac423f61-20210910-175603.mp4\r\n6.13_13954_Player679-f153ac423f61-20210801-162706.mp4 6.13_5206_Player309-f153ac423f61-20210910-180408.mp4\r\n6.13_13955_Player679-f153ac423f61-20210801-162813.mp4 6.13_5207_Player309-f153ac423f61-20210910-181321.mp4\r\n6.13_13956_Player679-f153ac423f61-20210801-162918.mp4 6.13_5208_Player309-f153ac423f61-20210910-182635.mp4\r\n6.13_13957_Player679-f153ac423f61-20210801-163018.mp4 6.13_5209_Player309-f153ac423f61-20210910-183651.mp4\r\n6.13_13958_Player679-f153ac423f61-20210801-163119.mp4 6.13_520_Player120-1a6fdfe602d8-20211109-151940.mp4\r\n6.13_13959_Player679-f153ac423f61-20210801-163231.mp4 6.13_5210_Player309-f153ac423f61-20210910-184603.mp4\r\n6.13_1395_Player15-605e7ce7bebd-20211221-042400.mp4 6.13_5211_Player309-f153ac423f61-20210910-185521.mp4\r\n6.13_13960_Player679-f153ac423f61-20210801-163351.mp4 6.13_5212_Player309-f153ac423f61-20210910-190430.mp4\r\n6.13_13961_Player679-f153ac423f61-20210801-163457.mp4 6.13_5213_Player309-f153ac423f61-20210910-191455.mp4\r\n6.13_13962_Player679-f153ac423f61-20210801-163605.mp4 6.13_5214_Player310-0fa39817a712-20211129-134955.mp4\r\n6.13_13963_Player679-f153ac423f61-20210801-163721.mp4 6.13_5215_Player310-0fa39817a712-20211129-135056.mp4\r\n6.13_13964_Player679-f153ac423f61-20210801-163823.mp4 6.13_5216_Player310-0fa39817a712-20211129-135156.mp4\r\n6.13_13965_Player679-f153ac423f61-20210801-163924.mp4 6.13_5217_Player310-0fa39817a712-20211129-135257.mp4\r\n6.13_13966_Player679-f153ac423f61-20210801-164039.mp4 6.13_5218_Player310-0fa39817a712-20211129-135357.mp4\r\n6.13_13967_Player679-f153ac423f61-20210801-164202.mp4 6.13_5219_Player310-0fa39817a712-20211129-135457.mp4\r\n6.13_13968_Player679-f153ac423f61-20210801-164317.mp4 6.13_521_Player120-1a6fdfe602d8-20211109-152543.mp4\r\n6.13_13969_Player679-f153ac423f61-20210801-164439.mp4 6.13_5220_Player310-0fa39817a712-20211129-135557.mp4\r\n6.13_1396_Player15-605e7ce7bebd-20211221-042501.mp4 6.13_5221_Player310-0fa39817a712-20211129-135757.mp4\r\n6.13_13970_Player679-f153ac423f61-20210801-164602.mp4 6.13_5222_Player310-0fa39817a712-20211129-135957.mp4\r\n6.13_13971_Player679-f153ac423f61-20210801-164720.mp4 6.13_5223_Player310-0fa39817a712-20211129-140158.mp4\r\n6.13_13972_Player679-f153ac423f61-20210801-165101.mp4 6.13_5224_Player310-0fa39817a712-20211129-140258.mp4\r\n6.13_13973_Player679-f153ac423f61-20210801-165219.mp4 6.13_5225_Player310-0fa39817a712-20211129-140358.mp4\r\n6.13_13974_Player679-f153ac423f61-20210801-165336.mp4 6.13_5226_Player310-0fa39817a712-20211129-140458.mp4\r\n6.13_13975_Player681-f153ac423f61-20210814-161159.mp4 6.13_5227_Player310-0fa39817a712-20211129-140559.mp4\r\n6.13_13976_Player681-f153ac423f61-20210814-161302.mp4 6.13_5228_Player310-0fa39817a712-20211129-140659.mp4\r\n6.13_13977_Player681-f153ac423f61-20210814-161405.mp4 6.13_5229_Player310-0fa39817a712-20211129-140859.mp4\r\n6.13_13978_Player681-f153ac423f61-20210814-161507.mp4 6.13_522_Player120-1a6fdfe602d8-20211109-153147.mp4\r\n6.13_13979_Player681-f153ac423f61-20210814-161611.mp4 6.13_5230_Player310-0fa39817a712-20211129-141000.mp4\r\n6.13_1397_Player15-605e7ce7bebd-20211221-042601.mp4 6.13_5231_Player310-f153ac423f61-20211129-134233.mp4\r\n6.13_13980_Player681-f153ac423f61-20210814-161717.mp4 6.13_5232_Player310-f153ac423f61-20211129-134336.mp4\r\n6.13_13981_Player681-f153ac423f61-20210814-161819.mp4 6.13_5233_Player310-f153ac423f61-20211129-134438.mp4\r\n6.13_13982_Player681-f153ac423f61-20210814-161926.mp4 6.13_5234_Player310-f153ac423f61-20211129-134540.mp4\r\n6.13_13983_Player681-f153ac423f61-20210814-162028.mp4 6.13_5235_Player310-f153ac423f61-20211129-134641.mp4\r\n6.13_13984_Player681-f153ac423f61-20210814-162130.mp4 6.13_5236_Player310-f153ac423f61-20211129-134741.mp4\r\n6.13_13985_Player681-f153ac423f61-20210814-162232.mp4 6.13_5237_Player310-f153ac423f61-20211129-134841.mp4\r\n6.13_13986_Player681-f153ac423f61-20210814-162334.mp4 6.13_5238_Player311-30a28cd4c105-20211121-142922.mp4\r\n6.13_13987_Player681-f153ac423f61-20210814-162440.mp4 6.13_5239_Player311-30a28cd4c105-20211121-143329.mp4\r\n6.13_13988_Player681-f153ac423f61-20210814-162543.mp4 6.13_523_Player120-1a6fdfe602d8-20211109-153754.mp4\r\n6.13_13989_Player681-f153ac423f61-20210814-162646.mp4 6.13_5240_Player311-30a28cd4c105-20211121-143834.mp4\r\n6.13_1398_Player15-605e7ce7bebd-20211221-042701.mp4 6.13_5241_Player311-30a28cd4c105-20211121-144247.mp4\r\n6.13_13990_Player681-f153ac423f61-20210814-162823.mp4 6.13_5242_Player311-30a28cd4c105-20211121-144657.mp4\r\n6.13_13991_Player681-f153ac423f61-20210814-162926.mp4 6.13_5243_Player311-30a28cd4c105-20211121-145059.mp4\r\n6.13_13992_Player681-f153ac423f61-20210814-163031.mp4 6.13_5244_Player311-30a28cd4c105-20211121-145500.mp4\r\n6.13_13993_Player681-f153ac423f61-20210814-163143.mp4 6.13_5245_Player311-30a28cd4c105-20211121-145903.mp4\r\n6.13_13994_Player681-f153ac423f61-20210814-163250.mp4 6.13_5246_Player311-30a28cd4c105-20211121-150307.mp4\r\n6.13_13995_Player681-f153ac423f61-20210814-163355.mp4 6.13_5247_Player311-30a28cd4c105-20211121-150719.mp4\r\n6.13_13996_Player681-f153ac423f61-20210814-163503.mp4 6.13_5248_Player311-30a28cd4c105-20211121-151129.mp4\r\n6.13_13997_Player681-f153ac423f61-20210814-163606.mp4 6.13_5249_Player311-30a28cd4c105-20211121-151631.mp4\r\n6.13_13998_Player681-f153ac423f61-20210814-163708.mp4 6.13_524_Player120-f153ac423f61-20211109-124021.mp4\r\n6.13_13999_Player681-f153ac423f61-20210814-163809.mp4 6.13_5250_Player311-30a28cd4c105-20211121-152032.mp4\r\n6.13_1399_Player15-605e7ce7bebd-20211221-042801.mp4 6.13_5251_Player311-325427025d65-20211121-130943.mp4\r\n6.13_139_Player100-f153ac423f61-20211220-200959.mp4 6.13_5252_Player311-325427025d65-20211121-131348.mp4\r\n6.13_14000_Player681-f153ac423f61-20210814-163910.mp4 6.13_5253_Player311-325427025d65-20211121-131751.mp4\r\n6.13_14001_Player681-f153ac423f61-20210814-164013.mp4 6.13_5254_Player311-325427025d65-20211121-132154.mp4\r\n6.13_14002_Player681-f153ac423f61-20210814-164115.mp4 6.13_5255_Player311-325427025d65-20211121-132703.mp4\r\n6.13_14003_Player681-f153ac423f61-20210814-164216.mp4 6.13_5256_Player311-325427025d65-20211121-133106.mp4\r\n6.13_14004_Player681-f153ac423f61-20210814-164324.mp4 6.13_5257_Player311-325427025d65-20211121-133614.mp4\r\n6.13_14005_Player683-f153ac423f61-20210918-184539.mp4 6.13_5258_Player311-325427025d65-20211121-134016.mp4\r\n6.13_14006_Player683-f153ac423f61-20210918-184658.mp4 6.13_5259_Player311-325427025d65-20211121-134418.mp4\r\n6.13_14007_Player683-f153ac423f61-20210918-184809.mp4 6.13_525_Player120-f153ac423f61-20211109-124635.mp4\r\n6.13_14008_Player683-f153ac423f61-20210918-184922.mp4 6.13_5260_Player311-325427025d65-20211121-134924.mp4\r\n6.13_14009_Player683-f153ac423f61-20210918-185035.mp4 6.13_5261_Player311-325427025d65-20211121-135328.mp4\r\n6.13_1400_Player15-605e7ce7bebd-20211221-043002.mp4 6.13_5262_Player311-325427025d65-20211121-135732.mp4\r\n6.13_14010_Player683-f153ac423f61-20210918-185149.mp4 6.13_5263_Player311-8d587e6e62b7-20210809-180238.mp4\r\n6.13_14011_Player683-f153ac423f61-20210918-185302.mp4 6.13_5264_Player311-8d587e6e62b7-20210809-180346.mp4\r\n6.13_14012_Player683-f153ac423f61-20210918-185413.mp4 6.13_5265_Player311-8d587e6e62b7-20210809-180458.mp4\r\n6.13_14013_Player683-f153ac423f61-20210918-185529.mp4 6.13_5266_Player311-8d587e6e62b7-20210809-180614.mp4\r\n6.13_14014_Player683-f153ac423f61-20210918-185644.mp4 6.13_5267_Player311-8d587e6e62b7-20210809-180729.mp4\r\n6.13_14015_Player683-f153ac423f61-20210918-185803.mp4 6.13_5268_Player311-8d587e6e62b7-20210809-180844.mp4\r\n6.13_14016_Player683-f153ac423f61-20210918-185924.mp4 6.13_5269_Player311-8d587e6e62b7-20210809-180957.mp4\r\n6.13_14017_Player683-f153ac423f61-20210918-190045.mp4 6.13_526_Player120-f153ac423f61-20211109-125244.mp4\r\n6.13_14018_Player683-f153ac423f61-20210918-190159.mp4 6.13_5270_Player311-8d587e6e62b7-20210809-181111.mp4\r\n6.13_14019_Player683-f153ac423f61-20210918-190313.mp4 6.13_5271_Player311-8d587e6e62b7-20210809-181223.mp4\r\n6.13_1401_Player15-605e7ce7bebd-20211221-043102.mp4 6.13_5272_Player311-8d587e6e62b7-20210809-181325.mp4\r\n6.13_14020_Player683-f153ac423f61-20210918-190427.mp4 6.13_5273_Player311-8d587e6e62b7-20210809-181431.mp4\r\n6.13_14021_Player683-f153ac423f61-20210918-190542.mp4 6.13_5274_Player311-8d587e6e62b7-20210809-181545.mp4\r\n6.13_14022_Player683-f153ac423f61-20210918-190655.mp4 6.13_5275_Player311-8d587e6e62b7-20210809-181701.mp4\r\n6.13_14023_Player683-f153ac423f61-20210918-190809.mp4 6.13_5276_Player311-8d587e6e62b7-20210809-181817.mp4\r\n6.13_14024_Player683-f153ac423f61-20210918-190922.mp4 6.13_5277_Player311-8d587e6e62b7-20210809-181933.mp4\r\n6.13_14025_Player683-f153ac423f61-20210918-191039.mp4 6.13_5278_Player311-8d587e6e62b7-20210809-182039.mp4\r\n6.13_14026_Player683-f153ac423f61-20210918-191153.mp4 6.13_5279_Player311-8d587e6e62b7-20210809-182147.mp4\r\n6.13_14027_Player683-f153ac423f61-20210918-191303.mp4 6.13_527_Player120-f153ac423f61-20211109-125850.mp4\r\n6.13_14028_Player683-f153ac423f61-20210918-191417.mp4 6.13_5280_Player311-8d587e6e62b7-20210809-182258.mp4\r\n6.13_14029_Player683-f153ac423f61-20210918-191534.mp4 6.13_5281_Player311-8d587e6e62b7-20210809-182417.mp4\r\n6.13_1402_Player15-605e7ce7bebd-20211221-043202.mp4 6.13_5282_Player311-8d587e6e62b7-20210809-182530.mp4\r\n6.13_14030_Player683-f153ac423f61-20210918-191658.mp4 6.13_5283_Player311-8d587e6e62b7-20210809-182648.mp4\r\n6.13_14031_Player683-f153ac423f61-20210918-191814.mp4 6.13_5284_Player311-9414904380f4-20210809-180205.mp4\r\n6.13_14032_Player683-f153ac423f61-20210918-191931.mp4 6.13_5285_Player311-f153ac423f61-20210809-170720.mp4\r\n6.13_14033_Player683-f153ac423f61-20210918-192047.mp4 6.13_5286_Player311-f153ac423f61-20210809-170826.mp4\r\n6.13_14034_Player683-f153ac423f61-20210918-192203.mp4 6.13_5287_Player311-f153ac423f61-20210809-170928.mp4\r\n6.13_14035_Player683-f153ac423f61-20210918-192321.mp4 6.13_5288_Player311-f153ac423f61-20210809-171029.mp4\r\n6.13_14036_Player683-f153ac423f61-20210918-192437.mp4 6.13_5289_Player311-f153ac423f61-20210809-171130.mp4\r\n6.13_14037_Player683-f153ac423f61-20210918-192547.mp4 6.13_528_Player120-f153ac423f61-20211109-130457.mp4\r\n6.13_14038_Player683-f153ac423f61-20210918-192704.mp4 6.13_5290_Player311-f153ac423f61-20210809-171230.mp4\r\n6.13_14039_Player683-f153ac423f61-20210918-192821.mp4 6.13_5291_Player311-f153ac423f61-20210809-171330.mp4\r\n6.13_1403_Player15-605e7ce7bebd-20211221-043303.mp4 6.13_5292_Player311-f153ac423f61-20210809-171431.mp4\r\n6.13_14040_Player683-f153ac423f61-20210918-192939.mp4 6.13_5293_Player311-f153ac423f61-20210809-171532.mp4\r\n6.13_14041_Player683-f153ac423f61-20210918-193055.mp4 6.13_5294_Player311-f153ac423f61-20210809-171633.mp4\r\n6.13_14042_Player683-f153ac423f61-20210918-193212.mp4 6.13_5295_Player311-f153ac423f61-20210809-171734.mp4\r\n6.13_14043_Player683-f153ac423f61-20210918-193326.mp4 6.13_5296_Player311-f153ac423f61-20210809-171835.mp4\r\n6.13_14044_Player683-f153ac423f61-20210918-193451.mp4 6.13_5297_Player311-f153ac423f61-20210809-171936.mp4\r\n6.13_14045_Player683-f153ac423f61-20210918-193610.mp4 6.13_5298_Player311-f153ac423f61-20210809-172037.mp4\r\n6.13_14046_Player683-f153ac423f61-20210918-193726.mp4 6.13_5299_Player311-f153ac423f61-20210809-172139.mp4\r\n6.13_14047_Player683-f153ac423f61-20210918-193834.mp4 6.13_529_Player120-f153ac423f61-20211109-131059.mp4\r\n6.13_14048_Player683-f153ac423f61-20210918-193954.mp4 6.13_5300_Player311-f153ac423f61-20210809-172242.mp4\r\n6.13_14049_Player683-f153ac423f61-20210918-194109.mp4 6.13_5301_Player311-f153ac423f61-20210809-172345.mp4\r\n6.13_1404_Player15-605e7ce7bebd-20211221-043403.mp4 6.13_5302_Player311-f153ac423f61-20210809-172450.mp4\r\n6.13_14050_Player683-f153ac423f61-20210918-194224.mp4 6.13_5303_Player311-f153ac423f61-20210809-172551.mp4\r\n6.13_14051_Player683-f153ac423f61-20210918-194349.mp4 6.13_5304_Player311-f153ac423f61-20210809-172652.mp4\r\n6.13_14052_Player683-f153ac423f61-20210918-194508.mp4 6.13_5305_Player311-f153ac423f61-20210809-172753.mp4\r\n6.13_14053_Player683-f153ac423f61-20210918-194629.mp4 6.13_5306_Player311-f153ac423f61-20210809-172855.mp4\r\n6.13_14054_Player683-f153ac423f61-20210918-194748.mp4 6.13_5307_Player311-f153ac423f61-20210809-172958.mp4\r\n6.13_14055_Player683-f153ac423f61-20210918-195241.mp4 6.13_5308_Player311-f153ac423f61-20210809-173100.mp4\r\n6.13_14056_Player683-f153ac423f61-20210918-195355.mp4 6.13_5309_Player311-f153ac423f61-20210809-173200.mp4\r\n6.13_14057_Player683-f153ac423f61-20210918-195524.mp4 6.13_530_Player120-f153ac423f61-20211109-131704.mp4\r\n6.13_14058_Player683-f153ac423f61-20210918-195701.mp4 6.13_5310_Player311-f153ac423f61-20210809-173300.mp4\r\n6.13_14059_Player683-f153ac423f61-20210918-195833.mp4 6.13_5311_Player311-f153ac423f61-20210809-173400.mp4\r\n6.13_1405_Player15-605e7ce7bebd-20211221-043503.mp4 6.13_5312_Player311-f153ac423f61-20210809-173501.mp4\r\n6.13_14060_Player683-f153ac423f61-20210918-195957.mp4 6.13_5313_Player311-f153ac423f61-20210809-173601.mp4\r\n6.13_14061_Player683-f153ac423f61-20210918-200111.mp4 6.13_5314_Player311-f153ac423f61-20210809-173702.mp4\r\n6.13_14062_Player683-f153ac423f61-20210918-200226.mp4 6.13_5315_Player311-f153ac423f61-20210809-173802.mp4\r\n6.13_14063_Player683-f153ac423f61-20210918-200345.mp4 6.13_5316_Player311-f153ac423f61-20210809-173902.mp4\r\n6.13_14064_Player683-f153ac423f61-20210918-200458.mp4 6.13_5317_Player311-f153ac423f61-20210809-174003.mp4\r\n6.13_14065_Player683-f153ac423f61-20210918-200615.mp4 6.13_5318_Player311-f153ac423f61-20210809-174103.mp4\r\n6.13_14066_Player683-f153ac423f61-20210918-200732.mp4 6.13_5319_Player311-f153ac423f61-20210809-174203.mp4\r\n6.13_14067_Player683-f153ac423f61-20210918-200849.mp4 6.13_531_Player120-f153ac423f61-20211109-132307.mp4\r\n6.13_14068_Player683-f153ac423f61-20210918-201003.mp4 6.13_5320_Player311-f153ac423f61-20210809-174303.mp4\r\n6.13_14069_Player683-f153ac423f61-20210918-201117.mp4 6.13_5321_Player311-f153ac423f61-20210809-174404.mp4\r\n6.13_1406_Player15-605e7ce7bebd-20211221-043603.mp4 6.13_5322_Player311-f153ac423f61-20210809-174504.mp4\r\n6.13_14070_Player683-f153ac423f61-20210918-201238.mp4 6.13_5323_Player311-f153ac423f61-20210809-174606.mp4\r\n6.13_14071_Player683-f153ac423f61-20210918-201352.mp4 6.13_5324_Player311-f153ac423f61-20210809-174706.mp4\r\n6.13_14072_Player683-f153ac423f61-20210918-201507.mp4 6.13_5325_Player311-f153ac423f61-20210809-174807.mp4\r\n6.13_14073_Player683-f153ac423f61-20210918-201619.mp4 6.13_5326_Player311-f153ac423f61-20210809-174908.mp4\r\n6.13_14074_Player683-f153ac423f61-20210918-201730.mp4 6.13_5327_Player311-f153ac423f61-20210809-175010.mp4\r\n6.13_14075_Player683-f153ac423f61-20210918-201846.mp4 6.13_5328_Player311-f153ac423f61-20210809-175112.mp4\r\n6.13_14076_Player683-f153ac423f61-20210918-202006.mp4 6.13_5329_Player311-f153ac423f61-20210809-175212.mp4\r\n6.13_14077_Player683-f153ac423f61-20210918-202135.mp4 6.13_532_Player120-f153ac423f61-20211109-132909.mp4\r\n6.13_14078_Player683-f153ac423f61-20210918-202251.mp4 6.13_5330_Player311-f153ac423f61-20210809-175313.mp4\r\n6.13_14079_Player683-f153ac423f61-20211211-213533.mp4 6.13_5331_Player311-f153ac423f61-20210809-175413.mp4\r\n6.13_1407_Player15-605e7ce7bebd-20211221-043703.mp4 6.13_5332_Player311-f153ac423f61-20210809-175703.mp4\r\n6.13_14080_Player683-f153ac423f61-20211211-213652.mp4 6.13_5333_Player311-f153ac423f61-20210809-175803.mp4\r\n6.13_14081_Player687-0c7fd90e2ad5-20211204-180041.mp4 6.13_5334_Player311-f153ac423f61-20210809-175903.mp4\r\n6.13_14082_Player687-0c7fd90e2ad5-20211204-180153.mp4 6.13_5335_Player311-f153ac423f61-20210809-180004.mp4\r\n6.13_14083_Player687-0c7fd90e2ad5-20211204-180303.mp4 6.13_5336_Player311-f153ac423f61-20210809-180105.mp4\r\n6.13_14084_Player687-0c7fd90e2ad5-20211204-180417.mp4 6.13_5337_Player311-f153ac423f61-20211121-095939.mp4\r\n6.13_14085_Player687-0c7fd90e2ad5-20211204-180525.mp4 6.13_5338_Player311-f153ac423f61-20211121-100402.mp4\r\n6.13_14086_Player687-0c7fd90e2ad5-20211204-180634.mp4 6.13_5339_Player311-f153ac423f61-20211121-100808.mp4\r\n6.13_14087_Player687-0c7fd90e2ad5-20211204-180741.mp4 6.13_533_Player120-f153ac423f61-20211109-133515.mp4\r\n6.13_14088_Player687-0c7fd90e2ad5-20211204-180851.mp4 6.13_5340_Player311-f153ac423f61-20211121-101212.mp4\r\n6.13_14089_Player687-0c7fd90e2ad5-20211204-181000.mp4 6.13_5341_Player311-f153ac423f61-20211121-101614.mp4\r\n6.13_1408_Player15-605e7ce7bebd-20211221-043804.mp4 6.13_5342_Player311-f153ac423f61-20211121-102021.mp4\r\n6.13_14090_Player687-0c7fd90e2ad5-20211204-181117.mp4 6.13_5343_Player311-f153ac423f61-20211121-102523.mp4\r\n6.13_14091_Player687-0c7fd90e2ad5-20211204-181225.mp4 6.13_5344_Player311-f153ac423f61-20211121-102929.mp4\r\n6.13_14092_Player687-0c7fd90e2ad5-20211204-181333.mp4 6.13_5345_Player311-f153ac423f61-20211121-103339.mp4\r\n6.13_14093_Player687-0c7fd90e2ad5-20211204-181440.mp4 6.13_5346_Player311-f153ac423f61-20211121-103744.mp4\r\n6.13_14094_Player687-0c7fd90e2ad5-20211204-181546.mp4 6.13_5347_Player311-f153ac423f61-20211121-104147.mp4\r\n6.13_14095_Player687-0c7fd90e2ad5-20211204-181652.mp4 6.13_5348_Player311-f153ac423f61-20211121-104552.mp4\r\n6.13_14096_Player687-0c7fd90e2ad5-20211204-181757.mp4 6.13_5349_Player311-f153ac423f61-20211121-104956.mp4\r\n6.13_14097_Player687-0c7fd90e2ad5-20211204-181903.mp4 6.13_534_Player120-f153ac423f61-20211109-134118.mp4\r\n6.13_14098_Player687-0c7fd90e2ad5-20211204-182011.mp4 6.13_5350_Player311-f153ac423f61-20211121-105501.mp4\r\n6.13_14099_Player687-0c7fd90e2ad5-20211204-182128.mp4 6.13_5351_Player311-f153ac423f61-20211121-110004.mp4\r\n6.13_1409_Player15-605e7ce7bebd-20211221-043904.mp4 6.13_5352_Player311-f153ac423f61-20211121-110410.mp4\r\n6.13_140_Player100-f153ac423f61-20211220-201159.mp4 6.13_5353_Player311-f153ac423f61-20211121-110827.mp4\r\n6.13_14100_Player687-0c7fd90e2ad5-20211204-182239.mp4 6.13_5354_Player311-f153ac423f61-20211121-111237.mp4\r\n6.13_14101_Player687-0c7fd90e2ad5-20211204-182352.mp4 6.13_5355_Player311-f153ac423f61-20211121-111641.mp4\r\n6.13_14102_Player687-0c7fd90e2ad5-20211204-182509.mp4 6.13_5356_Player311-f153ac423f61-20211121-112047.mp4\r\n6.13_14103_Player687-0c7fd90e2ad5-20211204-182629.mp4 6.13_5357_Player311-f153ac423f61-20211121-112449.mp4\r\n6.13_14104_Player687-0c7fd90e2ad5-20211204-182759.mp4 6.13_5358_Player311-f153ac423f61-20211121-112852.mp4\r\n6.13_14105_Player687-0c7fd90e2ad5-20211204-182930.mp4 6.13_5359_Player311-f153ac423f61-20211121-113357.mp4\r\n6.13_14106_Player687-0c7fd90e2ad5-20211204-183050.mp4 6.13_535_Player120-f153ac423f61-20211109-134721.mp4\r\n6.13_14107_Player687-0c7fd90e2ad5-20211204-183209.mp4 6.13_5360_Player311-f153ac423f61-20211121-113800.mp4\r\n6.13_14108_Player687-0c7fd90e2ad5-20211204-183324.mp4 6.13_5361_Player311-f153ac423f61-20211121-114202.mp4\r\n6.13_14109_Player687-0c7fd90e2ad5-20211204-183442.mp4 6.13_5362_Player311-f153ac423f61-20211121-114614.mp4\r\n6.13_1410_Player15-605e7ce7bebd-20211221-044004.mp4 6.13_5363_Player311-f153ac423f61-20211121-115019.mp4\r\n6.13_14110_Player687-0c7fd90e2ad5-20211204-183600.mp4 6.13_5364_Player311-f153ac423f61-20211121-115422.mp4\r\n6.13_14111_Player687-0c7fd90e2ad5-20211204-183723.mp4 6.13_5365_Player311-f153ac423f61-20211121-115848.mp4\r\n6.13_14112_Player687-0c7fd90e2ad5-20211204-183847.mp4 6.13_5366_Player311-f153ac423f61-20211121-120300.mp4\r\n6.13_14113_Player687-0c7fd90e2ad5-20211204-184008.mp4 6.13_5367_Player311-f153ac423f61-20211121-120719.mp4\r\n6.13_14114_Player687-0c7fd90e2ad5-20211204-184126.mp4 6.13_5368_Player311-f153ac423f61-20211121-121124.mp4\r\n6.13_14115_Player687-0c7fd90e2ad5-20211204-184244.mp4 6.13_5369_Player311-f153ac423f61-20211121-121527.mp4\r\n6.13_14116_Player687-0c7fd90e2ad5-20211204-184403.mp4 6.13_536_Player120-f153ac423f61-20211109-135331.mp4\r\n6.13_14117_Player687-0c7fd90e2ad5-20211204-184525.mp4 6.13_5370_Player311-f153ac423f61-20211121-121929.mp4\r\n6.13_14118_Player687-0c7fd90e2ad5-20211204-184649.mp4 6.13_5371_Player311-f153ac423f61-20211121-122341.mp4\r\n6.13_14119_Player687-0c7fd90e2ad5-20211204-184815.mp4 6.13_5372_Player311-f153ac423f61-20211121-122746.mp4\r\n6.13_1411_Player15-605e7ce7bebd-20211221-044105.mp4 6.13_5373_Player311-f153ac423f61-20211121-123151.mp4\r\n6.13_14120_Player687-0c7fd90e2ad5-20211204-184933.mp4 6.13_5374_Player311-f153ac423f61-20211121-123600.mp4\r\n6.13_14121_Player687-0c7fd90e2ad5-20211204-185055.mp4 6.13_5375_Player311-f153ac423f61-20211121-124003.mp4\r\n6.13_14122_Player687-0c7fd90e2ad5-20211204-185213.mp4 6.13_5376_Player311-f153ac423f61-20211121-124409.mp4\r\n6.13_14123_Player687-0c7fd90e2ad5-20211204-185335.mp4 6.13_5377_Player311-f153ac423f61-20211121-124914.mp4\r\n6.13_14124_Player687-0c7fd90e2ad5-20211204-185455.mp4 6.13_5378_Player311-f153ac423f61-20211121-125315.mp4\r\n6.13_14125_Player687-bb9e6b73d943-20211204-173109.mp4 6.13_5379_Player311-f153ac423f61-20211121-125715.mp4\r\n6.13_14126_Player687-bb9e6b73d943-20211204-173217.mp4 6.13_537_Player120-f153ac423f61-20211109-135939.mp4\r\n6.13_14127_Player687-bb9e6b73d943-20211204-173324.mp4 6.13_5380_Player32-f153ac423f61-20210830-180008.mp4\r\n6.13_14128_Player687-bb9e6b73d943-20211204-173433.mp4 6.13_5381_Player32-f153ac423f61-20210830-180618.mp4\r\n6.13_14129_Player687-bb9e6b73d943-20211204-173545.mp4 6.13_5382_Player32-f153ac423f61-20210830-181230.mp4\r\n6.13_1412_Player15-605e7ce7bebd-20211221-044205.mp4 6.13_5383_Player32-f153ac423f61-20210830-181955.mp4\r\n6.13_14130_Player687-bb9e6b73d943-20211204-173651.mp4 6.13_5384_Player32-f153ac423f61-20210830-182709.mp4\r\n6.13_14131_Player687-bb9e6b73d943-20211204-173755.mp4 6.13_5385_Player32-f153ac423f61-20210830-183423.mp4\r\n6.13_14132_Player687-bb9e6b73d943-20211204-173858.mp4 6.13_5386_Player32-f153ac423f61-20210830-184136.mp4\r\n6.13_14133_Player687-bb9e6b73d943-20211204-174002.mp4 6.13_5387_Player32-f153ac423f61-20210830-185109.mp4\r\n6.13_14134_Player687-bb9e6b73d943-20211204-174119.mp4 6.13_5388_Player32-f153ac423f61-20210830-185818.mp4\r\n6.13_14135_Player687-bb9e6b73d943-20211204-174230.mp4 6.13_5389_Player32-f153ac423f61-20210830-190541.mp4\r\n6.13_14136_Player687-bb9e6b73d943-20211204-174338.mp4 6.13_538_Player120-f153ac423f61-20211109-140642.mp4\r\n6.13_14137_Player687-bb9e6b73d943-20211204-174441.mp4 6.13_5390_Player32-f153ac423f61-20210830-191300.mp4\r\n6.13_14138_Player687-bb9e6b73d943-20211204-174551.mp4 6.13_5391_Player32-f153ac423f61-20210830-192021.mp4\r\n6.13_14139_Player687-bb9e6b73d943-20211204-174659.mp4 6.13_5392_Player32-f153ac423f61-20210830-192813.mp4\r\n6.13_1413_Player15-605e7ce7bebd-20211221-044305.mp4 6.13_5393_Player32-f153ac423f61-20210830-193551.mp4\r\n6.13_14140_Player687-bb9e6b73d943-20211204-174802.mp4 6.13_5394_Player32-f153ac423f61-20210830-194719.mp4\r\n6.13_14141_Player687-bb9e6b73d943-20211204-174908.mp4 6.13_5395_Player32-f153ac423f61-20210830-195537.mp4\r\n6.13_14142_Player687-bb9e6b73d943-20211204-175014.mp4 6.13_5396_Player32-f153ac423f61-20210830-200253.mp4\r\n6.13_14143_Player687-bb9e6b73d943-20211204-175120.mp4 6.13_5397_Player32-f153ac423f61-20210830-201006.mp4\r\n6.13_14144_Player687-bb9e6b73d943-20211204-175227.mp4 6.13_5398_Player32-f153ac423f61-20210830-201721.mp4\r\n6.13_14145_Player687-bb9e6b73d943-20211204-175345.mp4 6.13_5399_Player32-f153ac423f61-20210830-202432.mp4\r\n6.13_14146_Player687-bb9e6b73d943-20211204-175505.mp4 6.13_539_Player120-f153ac423f61-20211109-141245.mp4\r\n6.13_14147_Player687-bb9e6b73d943-20211204-175616.mp4 6.13_5400_Player32-f153ac423f61-20210830-203254.mp4\r\n6.13_14148_Player687-bb9e6b73d943-20211204-175726.mp4 6.13_5401_Player32-f153ac423f61-20210830-204007.mp4\r\n6.13_14149_Player687-bb9e6b73d943-20211204-175834.mp4 6.13_5402_Player32-f153ac423f61-20210830-204721.mp4\r\n6.13_1414_Player15-605e7ce7bebd-20211221-044406.mp4 6.13_5403_Player320-f153ac423f61-20210914-084822.mp4\r\n6.13_14150_Player687-bb9e6b73d943-20211204-175941.mp4 6.13_5404_Player321-f153ac423f61-20210726-154957.mp4\r\n6.13_14151_Player687-f153ac423f61-20211204-170606.mp4 6.13_5405_Player321-f153ac423f61-20210726-155316.mp4\r\n6.13_14152_Player687-f153ac423f61-20211204-170724.mp4 6.13_5406_Player321-f153ac423f61-20210726-155626.mp4\r\n6.13_14153_Player687-f153ac423f61-20211204-170841.mp4 6.13_5407_Player321-f153ac423f61-20210726-155935.mp4\r\n6.13_14154_Player687-f153ac423f61-20211204-170958.mp4 6.13_5408_Player321-f153ac423f61-20210726-160344.mp4\r\n6.13_14155_Player687-f153ac423f61-20211204-171110.mp4 6.13_5409_Player321-f153ac423f61-20210726-160654.mp4\r\n6.13_14156_Player687-f153ac423f61-20211204-171226.mp4 6.13_540_Player120-f153ac423f61-20211109-141849.mp4\r\n6.13_14157_Player687-f153ac423f61-20211204-171336.mp4 6.13_5410_Player321-f153ac423f61-20210726-161101.mp4\r\n6.13_14158_Player687-f153ac423f61-20211204-171444.mp4 6.13_5411_Player321-f153ac423f61-20210726-161507.mp4\r\n6.13_14159_Player687-f153ac423f61-20211204-171600.mp4 6.13_5412_Player321-f153ac423f61-20210726-161914.mp4\r\n6.13_1415_Player15-605e7ce7bebd-20211221-044506.mp4 6.13_5413_Player321-f153ac423f61-20210726-162320.mp4\r\n6.13_14160_Player687-f153ac423f61-20211204-171705.mp4 6.13_5414_Player321-f153ac423f61-20210726-162914.mp4\r\n6.13_14161_Player687-f153ac423f61-20211204-171814.mp4 6.13_5415_Player321-f153ac423f61-20210726-163336.mp4\r\n6.13_14162_Player687-f153ac423f61-20211204-171920.mp4 6.13_5416_Player321-f153ac423f61-20210726-163651.mp4\r\n6.13_14163_Player687-f153ac423f61-20211204-172022.mp4 6.13_5417_Player321-f153ac423f61-20210726-164009.mp4\r\n6.13_14164_Player687-f153ac423f61-20211204-172125.mp4 6.13_5418_Player321-f153ac423f61-20210726-164424.mp4\r\n6.13_14165_Player687-f153ac423f61-20211204-172234.mp4 6.13_5419_Player321-f153ac423f61-20210726-164844.mp4\r\n6.13_14166_Player687-f153ac423f61-20211204-172342.mp4 6.13_541_Player121-f153ac423f61-20211027-214513.mp4\r\n6.13_14167_Player687-f153ac423f6",,terminal_output +646,6810251,"TERMINAL",0,0,"1-20211204-172454.mp4 6.13_5420_Player321-f153ac423f61-20210726-165159.mp4\r\n6.13_14168_Player687-f153ac423f61-20211204-172607.mp4 6.13_5421_Player321-f153ac423f61-20210726-165512.mp4\r\n6.13_14169_Player687-f153ac423f61-20211204-172722.mp4 6.13_5422_Player321-f153ac423f61-20210726-165826.mp4\r\n6.13_1416_Player15-605e7ce7bebd-20211221-044606.mp4 6.13_5423_Player321-f153ac423f61-20210726-170139.mp4\r\n6.13_14170_Player687-f153ac423f61-20211204-172831.mp4 6.13_5424_Player321-f153ac423f61-20210726-170447.mp4\r\n6.13_14171_Player687-f153ac423f61-20211204-172938.mp4 6.13_5425_Player321-f153ac423f61-20210726-170757.mp4\r\n6.13_14172_Player687-f153ac423f61-20211204-173044.mp4 6.13_5426_Player321-f153ac423f61-20210726-171113.mp4\r\n6.13_14173_Player69-f153ac423f61-20210721-083847.mp4 6.13_5427_Player321-f153ac423f61-20210726-171429.mp4\r\n6.13_14174_Player696-f153ac423f61-20210921-190427.mp4 6.13_5428_Player321-f153ac423f61-20210902-111831.mp4\r\n6.13_14175_Player696-f153ac423f61-20210921-192136.mp4 6.13_5429_Player321-f153ac423f61-20210902-111935.mp4\r\n6.13_14176_Player696-f153ac423f61-20210921-193458.mp4 6.13_542_Player121-f153ac423f61-20211027-215327.mp4\r\n6.13_14177_Player696-f153ac423f61-20210921-195457.mp4 6.13_5430_Player321-f153ac423f61-20210902-112038.mp4\r\n6.13_14178_Player696-f153ac423f61-20210921-201140.mp4 6.13_5431_Player321-f153ac423f61-20210902-112142.mp4\r\n6.13_14179_Player696-f153ac423f61-20210921-202916.mp4 6.13_5432_Player321-f153ac423f61-20210902-112247.mp4\r\n6.13_1417_Player15-605e7ce7bebd-20211221-044707.mp4 6.13_5433_Player321-f153ac423f61-20210902-112353.mp4\r\n6.13_14180_Player696-f153ac423f61-20210921-204632.mp4 6.13_5434_Player321-f153ac423f61-20210902-112455.mp4\r\n6.13_14181_Player696-f153ac423f61-20210921-205950.mp4 6.13_5435_Player321-f153ac423f61-20210902-112600.mp4\r\n6.13_14182_Player696-f153ac423f61-20210921-211150.mp4 6.13_5436_Player321-f153ac423f61-20210902-112705.mp4\r\n6.13_14183_Player696-f153ac423f61-20210921-212535.mp4 6.13_5437_Player321-f153ac423f61-20210902-112806.mp4\r\n6.13_14184_Player697-f153ac423f61-20210721-181606.mp4 6.13_5438_Player321-f153ac423f61-20210902-112913.mp4\r\n6.13_14185_Player697-f153ac423f61-20210721-181711.mp4 6.13_5439_Player321-f153ac423f61-20210902-113015.mp4\r\n6.13_14186_Player697-f153ac423f61-20210721-181814.mp4 6.13_543_Player121-f153ac423f61-20211027-220030.mp4\r\n6.13_14187_Player697-f153ac423f61-20210721-181916.mp4 6.13_5440_Player321-f153ac423f61-20210902-113120.mp4\r\n6.13_14188_Player697-f153ac423f61-20210721-182017.mp4 6.13_5441_Player321-f153ac423f61-20210902-113225.mp4\r\n6.13_14189_Player697-f153ac423f61-20210721-182118.mp4 6.13_5442_Player321-f153ac423f61-20210902-113332.mp4\r\n6.13_1418_Player15-605e7ce7bebd-20211221-044807.mp4 6.13_5443_Player321-f153ac423f61-20210902-113439.mp4\r\n6.13_14190_Player697-f153ac423f61-20210721-182219.mp4 6.13_5444_Player321-f153ac423f61-20210902-113545.mp4\r\n6.13_14191_Player697-f153ac423f61-20210721-182322.mp4 6.13_5445_Player321-f153ac423f61-20210902-113648.mp4\r\n6.13_14192_Player697-f153ac423f61-20210721-182424.mp4 6.13_5446_Player321-f153ac423f61-20210902-113752.mp4\r\n6.13_14193_Player697-f153ac423f61-20210721-182528.mp4 6.13_5447_Player321-f153ac423f61-20210902-113900.mp4\r\n6.13_14194_Player697-f153ac423f61-20210721-182629.mp4 6.13_5448_Player321-f153ac423f61-20210902-114003.mp4\r\n6.13_14195_Player697-f153ac423f61-20210721-182730.mp4 6.13_5449_Player321-f153ac423f61-20210902-114105.mp4\r\n6.13_14196_Player697-f153ac423f61-20210721-182831.mp4 6.13_544_Player121-f153ac423f61-20211027-220734.mp4\r\n6.13_14197_Player697-f153ac423f61-20210721-182931.mp4 6.13_5450_Player321-f153ac423f61-20210902-114206.mp4\r\n6.13_14198_Player697-f153ac423f61-20210721-183132.mp4 6.13_5451_Player321-f153ac423f61-20210902-114310.mp4\r\n6.13_14199_Player697-f153ac423f61-20210721-183334.mp4 6.13_5452_Player321-f153ac423f61-20210902-114414.mp4\r\n6.13_1419_Player15-605e7ce7bebd-20211221-044907.mp4 6.13_5453_Player321-f153ac423f61-20210902-114516.mp4\r\n6.13_141_Player104-f153ac423f61-20210828-115821.mp4 6.13_5454_Player321-f153ac423f61-20210902-114620.mp4\r\n6.13_14200_Player697-f153ac423f61-20210721-183535.mp4 6.13_5455_Player321-f153ac423f61-20210902-114725.mp4\r\n6.13_14201_Player697-f153ac423f61-20210721-183740.mp4 6.13_5456_Player321-f153ac423f61-20210902-114828.mp4\r\n6.13_14202_Player697-f153ac423f61-20210721-183944.mp4 6.13_5457_Player321-f153ac423f61-20210902-114935.mp4\r\n6.13_14203_Player697-f153ac423f61-20210721-184146.mp4 6.13_5458_Player321-f153ac423f61-20210902-115042.mp4\r\n6.13_14204_Player697-f153ac423f61-20210721-184347.mp4 6.13_5459_Player321-f153ac423f61-20210902-115147.mp4\r\n6.13_14205_Player697-f153ac423f61-20210721-184548.mp4 6.13_545_Player121-f153ac423f61-20211027-221437.mp4\r\n6.13_14206_Player697-f153ac423f61-20210721-184749.mp4 6.13_5460_Player323-f153ac423f61-20211211-085952.mp4\r\n6.13_14207_Player697-f153ac423f61-20210721-185050.mp4 6.13_5461_Player323-f153ac423f61-20211211-092138.mp4\r\n6.13_14208_Player697-f153ac423f61-20210721-185251.mp4 6.13_5462_Player323-f153ac423f61-20211211-094515.mp4\r\n6.13_14209_Player697-f153ac423f61-20210721-185456.mp4 6.13_5463_Player323-f153ac423f61-20211211-100744.mp4\r\n6.13_1420_Player15-605e7ce7bebd-20211221-045007.mp4 6.13_5464_Player323-f153ac423f61-20211211-103031.mp4\r\n6.13_14210_Player697-f153ac423f61-20210721-185657.mp4 6.13_5465_Player323-f153ac423f61-20211211-105305.mp4\r\n6.13_14211_Player697-f153ac423f61-20210721-185857.mp4 6.13_5466_Player323-f153ac423f61-20211211-111531.mp4\r\n6.13_14212_Player697-f153ac423f61-20210721-185958.mp4 6.13_5467_Player323-f153ac423f61-20211211-113802.mp4\r\n6.13_14213_Player697-f153ac423f61-20210721-190159.mp4 6.13_5468_Player323-f153ac423f61-20211211-120251.mp4\r\n6.13_14214_Player697-f153ac423f61-20210721-190400.mp4 6.13_5469_Player323-f153ac423f61-20211211-122516.mp4\r\n6.13_14215_Player697-f153ac423f61-20210721-190601.mp4 6.13_546_Player121-f153ac423f61-20211027-222138.mp4\r\n6.13_14216_Player697-f153ac423f61-20210721-190806.mp4 6.13_5470_Player323-f153ac423f61-20211220-223021.mp4\r\n6.13_14217_Player697-f153ac423f61-20210721-191008.mp4 6.13_5471_Player323-f153ac423f61-20211220-223327.mp4\r\n6.13_14218_Player697-f153ac423f61-20210721-191210.mp4 6.13_5472_Player323-f153ac423f61-20211220-223626.mp4\r\n6.13_14219_Player697-f153ac423f61-20210722-160813.mp4 6.13_5473_Player323-f153ac423f61-20211220-223930.mp4\r\n6.13_1421_Player15-605e7ce7bebd-20211221-045108.mp4 6.13_5474_Player323-f153ac423f61-20211220-224232.mp4\r\n6.13_14220_Player697-f153ac423f61-20210722-161238.mp4 6.13_5475_Player323-f153ac423f61-20211220-224532.mp4\r\n6.13_14221_Player697-f153ac423f61-20210722-161624.mp4 6.13_5476_Player323-f153ac423f61-20211220-224831.mp4\r\n6.13_14222_Player697-f153ac423f61-20210722-162456.mp4 6.13_5477_Player323-f153ac423f61-20211220-225130.mp4\r\n6.13_14223_Player697-f153ac423f61-20210722-162803.mp4 6.13_5478_Player323-f153ac423f61-20211220-225331.mp4\r\n6.13_14224_Player697-f153ac423f61-20210722-163208.mp4 6.13_5479_Player323-f153ac423f61-20211220-225633.mp4\r\n6.13_14225_Player697-f153ac423f61-20210722-163640.mp4 6.13_547_Player121-f153ac423f61-20211027-222942.mp4\r\n6.13_14226_Player697-f153ac423f61-20210722-163952.mp4 6.13_5480_Player323-f153ac423f61-20211220-225938.mp4\r\n6.13_14227_Player697-f153ac423f61-20210722-164356.mp4 6.13_5481_Player323-f153ac423f61-20211220-230251.mp4\r\n6.13_14228_Player697-f153ac423f61-20210722-164859.mp4 6.13_5482_Player323-f153ac423f61-20211220-230601.mp4\r\n6.13_14229_Player697-f153ac423f61-20210722-165304.mp4 6.13_5483_Player324-89d0dc7b0fd0-20210731-225855.mp4\r\n6.13_1422_Player15-605e7ce7bebd-20211221-045208.mp4 6.13_5484_Player324-89d0dc7b0fd0-20210731-230026.mp4\r\n6.13_14230_Player697-f153ac423f61-20210722-165607.mp4 6.13_5485_Player324-939333d8cf7b-20210731-224737.mp4\r\n6.13_14231_Player697-f153ac423f61-20210722-170010.mp4 6.13_5486_Player324-939333d8cf7b-20210731-224845.mp4\r\n6.13_14232_Player697-f153ac423f61-20210722-170412.mp4 6.13_5487_Player324-939333d8cf7b-20210731-224949.mp4\r\n6.13_14233_Player697-f153ac423f61-20210722-170914.mp4 6.13_5488_Player324-939333d8cf7b-20210731-225057.mp4\r\n6.13_14234_Player697-f153ac423f61-20210722-171216.mp4 6.13_5489_Player324-939333d8cf7b-20210731-225207.mp4\r\n6.13_14235_Player697-f153ac423f61-20210722-171533.mp4 6.13_548_Player121-f153ac423f61-20211027-223647.mp4\r\n6.13_14236_Player697-f153ac423f61-20210722-171950.mp4 6.13_5490_Player324-939333d8cf7b-20210731-225322.mp4\r\n6.13_14237_Player697-f153ac423f61-20210722-172413.mp4 6.13_5491_Player324-939333d8cf7b-20210731-225436.mp4\r\n6.13_14238_Player697-f153ac423f61-20210722-172748.mp4 6.13_5492_Player324-939333d8cf7b-20210731-225544.mp4\r\n6.13_14239_Player698-450fe551340c-20211216-123855.mp4 6.13_5493_Player324-939333d8cf7b-20210731-225650.mp4\r\n6.13_1423_Player15-605e7ce7bebd-20211221-045308.mp4 6.13_5494_Player324-939333d8cf7b-20210731-225809.mp4\r\n6.13_14240_Player698-450fe551340c-20211216-124531.mp4 6.13_5495_Player324-f153ac423f61-20210731-223003.mp4\r\n6.13_14241_Player698-450fe551340c-20211216-125159.mp4 6.13_5496_Player324-f153ac423f61-20210731-223116.mp4\r\n6.13_14242_Player698-450fe551340c-20211216-125938.mp4 6.13_5497_Player324-f153ac423f61-20210731-223231.mp4\r\n6.13_14243_Player698-450fe551340c-20211216-130550.mp4 6.13_5498_Player324-f153ac423f61-20210731-223346.mp4\r\n6.13_14244_Player698-450fe551340c-20211216-131209.mp4 6.13_5499_Player324-f153ac423f61-20210731-223459.mp4\r\n6.13_14245_Player698-450fe551340c-20211216-131833.mp4 6.13_549_Player121-f153ac423f61-20211027-224353.mp4\r\n6.13_14246_Player698-450fe551340c-20211216-132511.mp4 6.13_5500_Player324-f153ac423f61-20210731-223603.mp4\r\n6.13_14247_Player698-450fe551340c-20211216-133135.mp4 6.13_5501_Player324-f153ac423f61-20210731-223716.mp4\r\n6.13_14248_Player698-450fe551340c-20211216-133758.mp4 6.13_5502_Player324-f153ac423f61-20210731-223823.mp4\r\n6.13_14249_Player698-450fe551340c-20211216-134424.mp4 6.13_5503_Player324-f153ac423f61-20210731-223928.mp4\r\n6.13_1424_Player15-605e7ce7bebd-20211221-045409.mp4 6.13_5504_Player324-f153ac423f61-20210731-224035.mp4\r\n6.13_14250_Player698-450fe551340c-20211216-135053.mp4 6.13_5505_Player324-f153ac423f61-20210731-224138.mp4\r\n6.13_14251_Player698-450fe551340c-20211216-135715.mp4 6.13_5506_Player324-f153ac423f61-20210731-224241.mp4\r\n6.13_14252_Player698-450fe551340c-20211216-140353.mp4 6.13_5507_Player324-f153ac423f61-20210731-224345.mp4\r\n6.13_14253_Player698-450fe551340c-20211216-141023.mp4 6.13_5508_Player324-f153ac423f61-20210731-224449.mp4\r\n6.13_14254_Player698-450fe551340c-20211216-141712.mp4 6.13_5509_Player324-f153ac423f61-20210731-224553.mp4\r\n6.13_14255_Player698-450fe551340c-20211216-142335.mp4 6.13_550_Player121-f153ac423f61-20211027-225603.mp4\r\n6.13_14256_Player698-450fe551340c-20211216-143028.mp4 6.13_5510_Player324-f153ac423f61-20210731-224657.mp4\r\n6.13_14257_Player698-450fe551340c-20211216-143704.mp4 6.13_5511_Player324-f6e874fe8b01-20210731-230059.mp4\r\n6.13_14258_Player698-97a1ca32d3bd-20211216-123230.mp4 6.13_5512_Player324-f6e874fe8b01-20210731-230210.mp4\r\n6.13_14259_Player698-f153ac423f61-20211216-092729.mp4 6.13_5513_Player324-f6e874fe8b01-20210731-230342.mp4\r\n6.13_1425_Player15-605e7ce7bebd-20211221-045509.mp4 6.13_5514_Player324-f6e874fe8b01-20210731-230514.mp4\r\n6.13_14260_Player698-f153ac423f61-20211216-093400.mp4 6.13_5515_Player324-f6e874fe8b01-20210731-230918.mp4\r\n6.13_14261_Player698-f153ac423f61-20211216-094016.mp4 6.13_5516_Player324-f6e874fe8b01-20210731-231054.mp4\r\n6.13_14262_Player698-f153ac423f61-20211216-094630.mp4 6.13_5517_Player324-f6e874fe8b01-20210731-231231.mp4\r\n6.13_14263_Player698-f153ac423f61-20211216-095244.mp4 6.13_5518_Player324-f6e874fe8b01-20210731-231411.mp4\r\n6.13_14264_Player698-f153ac423f61-20211216-095857.mp4 6.13_5519_Player324-f6e874fe8b01-20210731-231548.mp4\r\n6.13_14265_Player698-f153ac423f61-20211216-100813.mp4 6.13_551_Player121-f153ac423f61-20211027-230407.mp4\r\n6.13_14266_Player698-f153ac423f61-20211216-101550.mp4 6.13_5520_Player324-f6e874fe8b01-20210731-231724.mp4\r\n6.13_14267_Player698-f153ac423f61-20211216-102227.mp4 6.13_5521_Player324-f6e874fe8b01-20210731-231900.mp4\r\n6.13_14268_Player698-f153ac423f61-20211216-102904.mp4 6.13_5522_Player324-f6e874fe8b01-20210731-232036.mp4\r\n6.13_14269_Player698-f153ac423f61-20211216-103554.mp4 6.13_5523_Player324-f6e874fe8b01-20210731-232217.mp4\r\n6.13_1426_Player15-605e7ce7bebd-20211221-045609.mp4 6.13_5524_Player324-f6e874fe8b01-20210731-232356.mp4\r\n6.13_14270_Player698-f153ac423f61-20211216-104249.mp4 6.13_5525_Player324-f6e874fe8b01-20210731-232533.mp4\r\n6.13_14271_Player698-f153ac423f61-20211216-104922.mp4 6.13_5526_Player324-f6e874fe8b01-20210731-232701.mp4\r\n6.13_14272_Player698-f153ac423f61-20211216-105550.mp4 6.13_5527_Player324-f6e874fe8b01-20210731-232825.mp4\r\n6.13_14273_Player698-f153ac423f61-20211216-110215.mp4 6.13_5528_Player324-f6e874fe8b01-20210731-232940.mp4\r\n6.13_14274_Player698-f153ac423f61-20211216-110956.mp4 6.13_5529_Player324-f6e874fe8b01-20210731-233111.mp4\r\n6.13_14275_Player698-f153ac423f61-20211216-111628.mp4 6.13_552_Player121-f153ac423f61-20211027-231319.mp4\r\n6.13_14276_Player698-f153ac423f61-20211216-112246.mp4 6.13_5530_Player324-f6e874fe8b01-20210731-233245.mp4\r\n6.13_14277_Player698-f153ac423f61-20211216-112906.mp4 6.13_5531_Player324-f6e874fe8b01-20210731-233422.mp4\r\n6.13_14278_Player698-f153ac423f61-20211216-113528.mp4 6.13_5532_Player324-f6e874fe8b01-20210731-233601.mp4\r\n6.13_14279_Player698-f153ac423f61-20211216-114149.mp4 6.13_5533_Player324-f6e874fe8b01-20210731-233740.mp4\r\n6.13_1427_Player15-605e7ce7bebd-20211221-045710.mp4 6.13_5534_Player324-f6e874fe8b01-20210731-233920.mp4\r\n6.13_14280_Player698-f153ac423f61-20211216-114804.mp4 6.13_5535_Player324-f6e874fe8b01-20210731-234059.mp4\r\n6.13_14281_Player698-f153ac423f61-20211216-115415.mp4 6.13_5536_Player324-f6e874fe8b01-20210731-234239.mp4\r\n6.13_14282_Player698-f153ac423f61-20211216-120032.mp4 6.13_5537_Player324-f6e874fe8b01-20210731-234423.mp4\r\n6.13_14283_Player698-f153ac423f61-20211216-120718.mp4 6.13_5538_Player324-f6e874fe8b01-20210731-234630.mp4\r\n6.13_14284_Player698-f153ac423f61-20211216-121340.mp4 6.13_5539_Player324-f6e874fe8b01-20210731-234802.mp4\r\n6.13_14285_Player698-f153ac423f61-20211216-121957.mp4 6.13_553_Player121-f153ac423f61-20211027-232120.mp4\r\n6.13_14286_Player698-f153ac423f61-20211216-122609.mp4 6.13_5540_Player324-f6e874fe8b01-20210731-234937.mp4\r\n6.13_14287_Player7-f153ac423f61-20210830-010112.mp4 6.13_5541_Player324-f6e874fe8b01-20210731-235115.mp4\r\n6.13_14288_Player7-f153ac423f61-20210830-010450.mp4 6.13_5542_Player324-f6e874fe8b01-20210731-235256.mp4\r\n6.13_14289_Player7-f153ac423f61-20210830-010744.mp4 6.13_5543_Player325-42857f477faf-20211127-133310.mp4\r\n6.13_1428_Player15-605e7ce7bebd-20211221-045810.mp4 6.13_5544_Player325-42857f477faf-20211127-133716.mp4\r\n6.13_14290_Player7-f153ac423f61-20210830-011021.mp4 6.13_5545_Player325-42857f477faf-20211127-134121.mp4\r\n6.13_14291_Player7-f153ac423f61-20210830-011436.mp4 6.13_5546_Player325-42857f477faf-20211127-134529.mp4\r\n6.13_14292_Player7-f153ac423f61-20210830-011713.mp4 6.13_5547_Player325-42857f477faf-20211127-134933.mp4\r\n6.13_14293_Player7-f153ac423f61-20210830-012449.mp4 6.13_5548_Player325-42857f477faf-20211127-135445.mp4\r\n6.13_14294_Player7-f153ac423f61-20210830-012722.mp4 6.13_5549_Player325-42857f477faf-20211127-135855.mp4\r\n6.13_14295_Player7-f153ac423f61-20210830-013003.mp4 6.13_554_Player121-f153ac423f61-20211027-232927.mp4\r\n6.13_14296_Player7-f153ac423f61-20210830-013410.mp4 6.13_5550_Player325-42857f477faf-20211127-140408.mp4\r\n6.13_14297_Player7-f153ac423f61-20210830-013646.mp4 6.13_5551_Player325-42857f477faf-20211127-140815.mp4\r\n6.13_14298_Player7-f153ac423f61-20210830-013921.mp4 6.13_5552_Player325-42857f477faf-20211127-141222.mp4\r\n6.13_14299_Player7-f153ac423f61-20210830-014200.mp4 6.13_5553_Player325-42857f477faf-20211127-141735.mp4\r\n6.13_1429_Player15-605e7ce7bebd-20211221-045911.mp4 6.13_5554_Player325-42857f477faf-20211127-142142.mp4\r\n6.13_142_Player104-f153ac423f61-20210828-121138.mp4 6.13_5555_Player325-42857f477faf-20211127-142546.mp4\r\n6.13_14300_Player7-f153ac423f61-20210830-014446.mp4 6.13_5556_Player325-42857f477faf-20211127-143048.mp4\r\n6.13_14301_Player7-f153ac423f61-20210830-014731.mp4 6.13_5557_Player325-42857f477faf-20211127-143452.mp4\r\n6.13_14302_Player7-f153ac423f61-20210830-015017.mp4 6.13_5558_Player325-42857f477faf-20211127-143853.mp4\r\n6.13_14303_Player7-f153ac423f61-20210830-015257.mp4 6.13_5559_Player325-42857f477faf-20211127-144257.mp4\r\n6.13_14304_Player7-f153ac423f61-20210830-015535.mp4 6.13_555_Player121-f153ac423f61-20211027-233631.mp4\r\n6.13_14305_Player7-f153ac423f61-20210830-015837.mp4 6.13_5560_Player325-42857f477faf-20211127-144703.mp4\r\n6.13_14306_Player7-f153ac423f61-20210830-020113.mp4 6.13_5561_Player325-42857f477faf-20211127-145111.mp4\r\n6.13_14307_Player7-f153ac423f61-20210830-020357.mp4 6.13_5562_Player325-42857f477faf-20211127-145618.mp4\r\n6.13_14308_Player7-f153ac423f61-20210830-020906.mp4 6.13_5563_Player325-42857f477faf-20211127-150023.mp4\r\n6.13_14309_Player7-f153ac423f61-20210830-021146.mp4 6.13_5564_Player325-42857f477faf-20211127-150536.mp4\r\n6.13_1430_Player15-605e7ce7bebd-20211221-050011.mp4 6.13_5565_Player325-42857f477faf-20211127-150942.mp4\r\n6.13_14310_Player7-f153ac423f61-20210830-021429.mp4 6.13_5566_Player325-42857f477faf-20211127-151348.mp4\r\n6.13_14311_Player7-f153ac423f61-20210830-021713.mp4 6.13_5567_Player325-42857f477faf-20211127-151757.mp4\r\n6.13_14312_Player7-f153ac423f61-20210830-022001.mp4 6.13_5568_Player325-42857f477faf-20211127-152208.mp4\r\n6.13_14313_Player7-f153ac423f61-20210830-022245.mp4 6.13_5569_Player325-42857f477faf-20211127-152617.mp4\r\n6.13_14314_Player7-f153ac423f61-20210830-022527.mp4 6.13_556_Player121-f153ac423f61-20211027-234333.mp4\r\n6.13_14315_Player7-f153ac423f61-20210830-022821.mp4 6.13_5570_Player325-42857f477faf-20211127-153023.mp4\r\n6.13_14316_Player7-f153ac423f61-20210830-023054.mp4 6.13_5571_Player325-42857f477faf-20211127-153428.mp4\r\n6.13_14317_Player7-f153ac423f61-20210830-023331.mp4 6.13_5572_Player325-42857f477faf-20211127-153833.mp4\r\n6.13_14318_Player7-f153ac423f61-20210830-023609.mp4 6.13_5573_Player325-42857f477faf-20211127-154235.mp4\r\n6.13_14319_Player7-f153ac423f61-20210830-023852.mp4 6.13_5574_Player325-42857f477faf-20211127-154643.mp4\r\n6.13_1431_Player15-605e7ce7bebd-20211221-050111.mp4 6.13_5575_Player325-42857f477faf-20211127-155045.mp4\r\n6.13_14320_Player7-f153ac423f61-20210830-024132.mp4 6.13_5576_Player325-42857f477faf-20211127-155446.mp4\r\n6.13_14321_Player7-f153ac423f61-20210830-024418.mp4 6.13_5577_Player325-42857f477faf-20211127-155850.mp4\r\n6.13_14322_Player7-f153ac423f61-20210830-024659.mp4 6.13_5578_Player325-42857f477faf-20211127-160354.mp4\r\n6.13_14323_Player7-f153ac423f61-20210830-024938.mp4 6.13_5579_Player325-73d12e2abd17-20211127-163425.mp4\r\n6.13_14324_Player7-f153ac423f61-20210830-025221.mp4 6.13_557_Player121-f153ac423f61-20211027-235348.mp4\r\n6.13_14325_Player7-f153ac423f61-20210830-025504.mp4 6.13_5580_Player325-73d12e2abd17-20211127-163833.mp4\r\n6.13_14326_Player7-f153ac423f61-20210830-025750.mp4 6.13_5581_Player325-73d12e2abd17-20211127-164234.mp4\r\n6.13_14327_Player70-f153ac423f61-20210721-101805.mp4 6.13_5582_Player325-73d12e2abd17-20211127-164637.mp4\r\n6.13_14328_Player70-f153ac423f61-20210721-102153.mp4 6.13_5583_Player325-73d12e2abd17-20211127-165039.mp4\r\n6.13_14329_Player70-f153ac423f61-20210721-102512.mp4 6.13_5584_Player325-73d12e2abd17-20211127-165549.mp4\r\n6.13_1432_Player15-605e7ce7bebd-20211221-050211.mp4 6.13_5585_Player325-73d12e2abd17-20211127-165953.mp4\r\n6.13_14330_Player70-f153ac423f61-20210721-102832.mp4 6.13_5586_Player325-73d12e2abd17-20211127-170359.mp4\r\n6.13_14331_Player70-f153ac423f61-20210721-103140.mp4 6.13_5587_Player325-73d12e2abd17-20211127-170801.mp4\r\n6.13_14332_Player70-f153ac423f61-20210721-103433.mp4 6.13_5588_Player325-73d12e2abd17-20211127-171306.mp4\r\n6.13_14333_Player70-f153ac423f61-20210721-103730.mp4 6.13_5589_Player325-73d12e2abd17-20211127-171708.mp4\r\n6.13_14334_Player70-f153ac423f61-20210721-104102.mp4 6.13_558_Player121-f153ac423f61-20211028-000051.mp4\r\n6.13_14335_Player70-f153ac423f61-20210721-104548.mp4 6.13_5590_Player325-73d12e2abd17-20211127-172113.mp4\r\n6.13_14336_Player70-f153ac423f61-20210721-104910.mp4 6.13_5591_Player325-73d12e2abd17-20211127-172516.mp4\r\n6.13_14337_Player70-f153ac423f61-20210721-105230.mp4 6.13_5592_Player325-73d12e2abd17-20211127-172919.mp4\r\n6.13_14338_Player70-f153ac423f61-20210721-105553.mp4 6.13_5593_Player325-73d12e2abd17-20211127-173325.mp4\r\n6.13_14339_Player70-f153ac423f61-20210721-105914.mp4 6.13_5594_Player325-73d12e2abd17-20211127-173736.mp4\r\n6.13_1433_Player15-605e7ce7bebd-20211221-050504.mp4 6.13_5595_Player325-73d12e2abd17-20211127-174140.mp4\r\n6.13_14340_Player70-f153ac423f61-20210721-110418.mp4 6.13_5596_Player325-73d12e2abd17-20211127-174544.mp4\r\n6.13_14341_Player70-f153ac423f61-20210721-110906.mp4 6.13_5597_Player325-73d12e2abd17-20211127-175048.mp4\r\n6.13_14342_Player70-f153ac423f61-20210721-111307.mp4 6.13_5598_Player325-73d12e2abd17-20211127-175452.mp4\r\n6.13_14343_Player70-f153ac423f61-20210721-111645.mp4 6.13_5599_Player325-73d12e2abd17-20211127-175856.mp4\r\n6.13_14344_Player70-f153ac423f61-20210721-112055.mp4 6.13_559_Player121-f153ac423f61-20211028-000855.mp4\r\n6.13_14345_Player70-f153ac423f61-20210721-112516.mp4 6.13_5600_Player325-73d12e2abd17-20211127-180257.mp4\r\n6.13_14346_Player70-f153ac423f61-20210721-112823.mp4 6.13_5601_Player325-73d12e2abd17-20211127-180804.mp4\r\n6.13_14347_Player70-f153ac423f61-20210721-113238.mp4 6.13_5602_Player325-73d12e2abd17-20211127-181208.mp4\r\n6.13_14348_Player70-f153ac423f61-20210721-113644.mp4 6.13_5603_Player325-73d12e2abd17-20211127-181613.mp4\r\n6.13_14349_Player701-6cbe62e65bee-20210809-131919.mp4 6.13_5604_Player325-73d12e2abd17-20211127-182018.mp4\r\n6.13_1434_Player15-605e7ce7bebd-20211221-050604.mp4 6.13_5605_Player325-73d12e2abd17-20211127-182421.mp4\r\n6.13_14350_Player701-7793a6dd640f-20210809-155754.mp4 6.13_5606_Player325-73d12e2abd17-20211127-182932.mp4\r\n6.13_14351_Player701-7c49cf196db9-20210809-134043.mp4 6.13_5607_Player325-91b41bde5963-20211126-132517.mp4\r\n6.13_14352_Player701-7c49cf196db9-20210809-140202.mp4 6.13_5608_Player325-f153ac423f61-20211126-125540.mp4\r\n6.13_14353_Player701-7c49cf196db9-20210809-142409.mp4 6.13_5609_Player325-f153ac423f61-20211126-125641.mp4\r\n6.13_14354_Player701-7c49cf196db9-20210809-144716.mp4 6.13_560_Player121-f153ac423f61-20211213-001853.mp4\r\n6.13_14355_Player701-7c49cf196db9-20210809-150935.mp4 6.13_5610_Player325-f153ac423f61-20211126-125742.mp4\r\n6.13_14356_Player701-7c49cf196db9-20210809-153148.mp4 6.13_5611_Player325-f153ac423f61-20211126-125842.mp4\r\n6.13_14357_Player701-f153ac423f61-20210809-115626.mp4 6.13_5612_Player325-f153ac423f61-20211126-125942.mp4\r\n6.13_14358_Player701-f153ac423f61-20210809-123622.mp4 6.13_5613_Player325-f153ac423f61-20211126-130042.mp4\r\n6.13_14359_Player701-f153ac423f61-20210809-125745.mp4 6.13_5614_Player325-f153ac423f61-20211126-130142.mp4\r\n6.13_1435_Player15-605e7ce7bebd-20211221-050705.mp4 6.13_5615_Player325-f153ac423f61-20211126-130242.mp4\r\n6.13_14360_Player704-f153ac423f61-20211125-183527.mp4 6.13_5616_Player325-f153ac423f61-20211126-130342.mp4\r\n6.13_14361_Player704-f153ac423f61-20211125-183729.mp4 6.13_5617_Player325-f153ac423f61-20211126-130442.mp4\r\n6.13_14362_Player704-f153ac423f61-20211125-183937.mp4 6.13_5618_Player325-f153ac423f61-20211126-130541.mp4\r\n6.13_14363_Player704-f153ac423f61-20211125-184147.mp4 6.13_5619_Player325-f153ac423f61-20211126-130641.mp4\r\n6.13_14364_Player704-f153ac423f61-20211125-184354.mp4 6.13_561_Player121-f153ac423f61-20211213-002003.mp4\r\n6.13_14365_Player704-f153ac423f61-20211125-184553.mp4 6.13_5620_Player325-f153ac423f61-20211126-130742.mp4\r\n6.13_14366_Player704-f153ac423f61-20211125-184803.mp4 6.13_5621_Player325-f153ac423f61-20211126-130842.mp4\r\n6.13_14367_Player704-f153ac423f61-20211125-185004.mp4 6.13_5622_Player325-f153ac423f61-20211126-130942.mp4\r\n6.13_14368_Player704-f153ac423f61-20211125-185207.mp4 6.13_5623_Player325-f153ac423f61-20211126-131042.mp4\r\n6.13_14369_Player704-f153ac423f61-20211125-185411.mp4 6.13_5624_Player325-f153ac423f61-20211126-131142.mp4\r\n6.13_1436_Player15-605e7ce7bebd-20211221-050806.mp4 6.13_5625_Player325-f153ac423f61-20211126-131242.mp4\r\n6.13_14370_Player704-f153ac423f61-20211125-185616.mp4 6.13_5626_Player325-f153ac423f61-20211126-131342.mp4\r\n6.13_14371_Player704-f153ac423f61-20211125-185818.mp4 6.13_5627_Player325-f153ac423f61-20211126-131442.mp4\r\n6.13_14372_Player704-f153ac423f61-20211125-190026.mp4 6.13_5628_Player325-f153ac423f61-20211126-131542.mp4\r\n6.13_14373_Player704-f153ac423f61-20211125-190231.mp4 6.13_5629_Player325-f153ac423f61-20211126-131642.mp4\r\n6.13_14374_Player705-4971a9c548ce-20210725-183744.mp4 6.13_562_Player121-f153ac423f61-20211213-002107.mp4\r\n6.13_14375_Player705-4971a9c548ce-20210725-183855.mp4 6.13_5630_Player325-f153ac423f61-20211126-131743.mp4\r\n6.13_14376_Player705-4971a9c548ce-20210725-184009.mp4 6.13_5631_Player325-f153ac423f61-20211126-131845.mp4\r\n6.13_14377_Player705-4971a9c548ce-20210725-184131.mp4 6.13_5632_Player325-f153ac423f61-20211126-131945.mp4\r\n6.13_14378_Player705-4971a9c548ce-20210725-184255.mp4 6.13_5633_Player325-f153ac423f61-20211126-132045.mp4\r\n6.13_14379_Player705-4971a9c548ce-20210725-184415.mp4 6.13_5634_Player325-f153ac423f61-20211126-132145.mp4\r\n6.13_1437_Player15-605e7ce7bebd-20211221-050908.mp4 6.13_5635_Player325-f153ac423f61-20211126-132245.mp4\r\n6.13_14380_Player705-4971a9c548ce-20210725-184538.mp4 6.13_5636_Player325-f153ac423f61-20211126-132345.mp4\r\n6.13_14381_Player705-4971a9c548ce-20210725-184705.mp4 6.13_5637_Player325-f153ac423f61-20211126-132446.mp4\r\n6.13_14382_Player705-4971a9c548ce-20210725-184824.mp4 6.13_5638_Player325-f153ac423f61-20211127-130037.mp4\r\n6.13_14383_Player705-4971a9c548ce-20210725-184952.mp4 6.13_5639_Player325-f153ac423f61-20211127-130500.mp4\r\n6.13_14384_Player705-4971a9c548ce-20210725-185201.mp4 6.13_563_Player121-f153ac423f61-20211213-002211.mp4\r\n6.13_14385_Player705-4971a9c548ce-20210725-185419.mp4 6.13_5640_Player325-f153ac423f61-20211127-130927.mp4\r\n6.13_14386_Player705-4971a9c548ce-20210725-185530.mp4 6.13_5641_Player327-384c73241d47-20211013-112122.mp4\r\n6.13_14387_Player705-4971a9c548ce-20210725-185650.mp4 6.13_5642_Player327-384c73241d47-20211013-112231.mp4\r\n6.13_14388_Player705-4971a9c548ce-20210725-185809.mp4 6.13_5643_Player327-384c73241d47-20211013-112337.mp4\r\n6.13_14389_Player705-4971a9c548ce-20210725-185926.mp4 6.13_5644_Player327-384c73241d47-20211013-112448.mp4\r\n6.13_1438_Player15-605e7ce7bebd-20211221-051009.mp4 6.13_5645_Player327-384c73241d47-20211013-112555.mp4\r\n6.13_14390_Player705-4971a9c548ce-20210725-190041.mp4 6.13_5646_Player327-384c73241d47-20211013-112701.mp4\r\n6.13_14391_Player705-4971a9c548ce-20210725-190154.mp4 6.13_5647_Player327-384c73241d47-20211013-112820.mp4\r\n6.13_14392_Player705-4971a9c548ce-20210725-190315.mp4 6.13_5648_Player327-384c73241d47-20211013-112926.mp4\r\n6.13_14393_Player705-4971a9c548ce-20210725-190443.mp4 6.13_5649_Player327-384c73241d47-20211013-113032.mp4\r\n6.13_14394_Player705-4971a9c548ce-20210725-190607.mp4 6.13_564_Player121-f153ac423f61-20211213-002314.mp4\r\n6.13_14395_Player705-4971a9c548ce-20210725-190731.mp4 6.13_5650_Player327-384c73241d47-20211013-113156.mp4\r\n6.13_14396_Player705-4971a9c548ce-20210725-190859.mp4 6.13_5651_Player327-384c73241d47-20211013-113313.mp4\r\n6.13_14397_Player705-4971a9c548ce-20210725-191020.mp4 6.13_5652_Player327-384c73241d47-20211013-113447.mp4\r\n6.13_14398_Player705-4971a9c548ce-20210725-191123.mp4 6.13_5653_Player327-384c73241d47-20211013-113554.mp4\r\n6.13_14399_Player705-4971a9c548ce-20210725-191229.mp4 6.13_5654_Player327-384c73241d47-20211013-113659.mp4\r\n6.13_1439_Player15-605e7ce7bebd-20211221-051111.mp4 6.13_5655_Player327-384c73241d47-20211013-113808.mp4\r\n6.13_143_Player104-f153ac423f61-20210828-121843.mp4 6.13_5656_Player327-384c73241d47-20211013-113922.mp4\r\n6.13_14400_Player705-4971a9c548ce-20210725-191344.mp4 6.13_5657_Player327-384c73241d47-20211013-114049.mp4\r\n6.13_14401_Player705-4971a9c548ce-20210725-191447.mp4 6.13_5658_Player327-384c73241d47-20211013-114213.mp4\r\n6.13_14402_Player705-4971a9c548ce-20210725-191557.mp4 6.13_5659_Player327-384c73241d47-20211013-114327.mp4\r\n6.13_14403_Player705-4971a9c548ce-20210725-191712.mp4 6.13_565_Player121-f153ac423f61-20211213-002416.mp4\r\n6.13_14404_Player705-4971a9c548ce-20210725-191826.mp4 6.13_5660_Player327-384c73241d47-20211013-114437.mp4\r\n6.13_14405_Player705-4971a9c548ce-20210725-191937.mp4 6.13_5661_Player327-384c73241d47-20211013-114611.mp4\r\n6.13_14406_Player705-4971a9c548ce-20210725-192042.mp4 6.13_5662_Player327-384c73241d47-20211013-114751.mp4\r\n6.13_14407_Player705-4971a9c548ce-20210725-192149.mp4 6.13_5663_Player327-384c73241d47-20211013-114929.mp4\r\n6.13_14408_Player705-4971a9c548ce-20210725-192257.mp4 6.13_5664_Player327-384c73241d47-20211013-115041.mp4\r\n6.13_14409_Player705-4971a9c548ce-20210725-192408.mp4 6.13_5665_Player327-384c73241d47-20211013-115147.mp4\r\n6.13_1440_Player15-605e7ce7bebd-20211221-051212.mp4 6.13_5666_Player327-384c73241d47-20211013-115254.mp4\r\n6.13_14410_Player705-4971a9c548ce-20210725-192519.mp4 6.13_5667_Player327-384c73241d47-20211013-115402.mp4\r\n6.13_14411_Player705-4971a9c548ce-20210725-192631.mp4 6.13_5668_Player327-384c73241d47-20211013-115512.mp4\r\n6.13_14412_Player705-4971a9c548ce-20210725-192743.mp4 6.13_5669_Player327-384c73241d47-20211013-115622.mp4\r\n6.13_14413_Player705-4971a9c548ce-20210725-192855.mp4 6.13_566_Player121-f153ac423f61-20211213-002517.mp4\r\n6.13_14414_Player705-4971a9c548ce-20210725-193026.mp4 6.13_5670_Player327-384c73241d47-20211013-115729.mp4\r\n6.13_14415_Player705-4971a9c548ce-20210725-193203.mp4 6.13_5671_Player327-384c73241d47-20211013-115845.mp4\r\n6.13_14416_Player705-4971a9c548ce-20210725-193322.mp4 6.13_5672_Player327-384c73241d47-20211013-120010.mp4\r\n6.13_14417_Player705-4971a9c548ce-20210725-193423.mp4 6.13_5673_Player327-384c73241d47-20211013-120137.mp4\r\n6.13_14418_Player705-4971a9c548ce-20210725-193529.mp4 6.13_5674_Player327-384c73241d47-20211013-120300.mp4\r\n6.13_14419_Player705-4971a9c548ce-20210725-193642.mp4 6.13_5675_Player327-384c73241d47-20211013-120425.mp4\r\n6.13_1441_Player15-605e7ce7bebd-20211221-051313.mp4 6.13_5676_Player327-384c73241d47-20211013-120555.mp4\r\n6.13_14420_Player705-4971a9c548ce-20210725-193752.mp4 6.13_5677_Player327-384c73241d47-20211013-120720.mp4\r\n6.13_14421_Player705-4971a9c548ce-20210725-193907.mp4 6.13_5678_Player327-384c73241d47-20211013-120838.mp4\r\n6.13_14422_Player705-4971a9c548ce-20210725-194016.mp4 6.13_5679_Player327-384c73241d47-20211013-120951.mp4\r\n6.13_14423_Player705-4971a9c548ce-20210725-194128.mp4 6.13_567_Player121-f153ac423f61-20211213-002618.mp4\r\n6.13_14424_Player705-4971a9c548ce-20210725-194244.mp4 6.13_5680_Player327-384c73241d47-20211013-121109.mp4\r\n6.13_14425_Player705-4971a9c548ce-20210725-194352.mp4 6.13_5681_Player327-384c73241d47-20211013-121235.mp4\r\n6.13_14426_Player705-4971a9c548ce-20210725-194457.mp4 6.13_5682_Player327-384c73241d47-20211013-121356.mp4\r\n6.13_14427_Player705-4971a9c548ce-20210725-194610.mp4 6.13_5683_Player327-384c73241d47-20211013-121516.mp4\r\n6.13_14428_Player705-4971a9c548ce-20210725-194724.mp4 6.13_5684_Player327-384c73241d47-20211013-121633.mp4\r\n6.13_14429_Player705-4971a9c548ce-20210725-194843.mp4 6.13_5685_Player327-384c73241d47-20211013-121741.mp4\r\n6.13_1442_Player15-605e7ce7bebd-20211221-051414.mp4 6.13_5686_Player327-384c73241d47-20211013-121850.mp4\r\n6.13_14430_Player705-4971a9c548ce-20210725-195000.mp4 6.13_5687_Player327-384c73241d47-20211013-121956.mp4\r\n6.13_14431_Player705-4971a9c548ce-20210725-195111.mp4 6.13_5688_Player327-384c73241d47-20211013-122102.mp4\r\n6.13_14432_Player705-4971a9c548ce-20210725-195224.mp4 6.13_5689_Player327-384c73241d47-20211013-122215.mp4\r\n6.13_14433_Player705-4971a9c548ce-20210725-195338.mp4 6.13_568_Player121-f153ac423f61-20211213-002718.mp4\r\n6.13_14434_Player705-4971a9c548ce-20210725-195449.mp4 6.13_5690_Player327-384c73241d47-20211013-122330.mp4\r\n6.13_14435_Player705-4971a9c548ce-20210725-195604.mp4 6.13_5691_Player327-384c73241d47-20211013-122436.mp4\r\n6.13_14436_Player705-4971a9c548ce-20210725-195714.mp4 6.13_5692_Player327-384c73241d47-20211013-122545.mp4\r\n6.13_14437_Player705-4971a9c548ce-20210725-195829.mp4 6.13_5693_Player327-384c73241d47-20211013-122656.mp4\r\n6.13_14438_Player705-4971a9c548ce-20210725-195944.mp4 6.13_5694_Player327-384c73241d47-20211013-122804.mp4\r\n6.13_14439_Player705-4971a9c548ce-20210725-200059.mp4 6.13_5695_Player327-384c73241d47-20211013-122928.mp4\r\n6.13_1443_Player15-605e7ce7bebd-20211221-051515.mp4 6.13_5696_Player327-384c73241d47-20211013-123049.mp4\r\n6.13_14440_Player705-4971a9c548ce-20210725-200216.mp4 6.13_5697_Player327-384c73241d47-20211013-123205.mp4\r\n6.13_14441_Player705-4971a9c548ce-20210725-200327.mp4 6.13_5698_Player327-384c73241d47-20211013-123327.mp4\r\n6.13_14442_Player705-4971a9c548ce-20210725-200433.mp4 6.13_5699_Player327-384c73241d47-20211013-123454.mp4\r\n6.13_14443_Player705-4971a9c548ce-20210725-200552.mp4 6.13_569_Player121-f153ac423f61-20211213-002819.mp4\r\n6.13_14444_Player705-4971a9c548ce-20210725-200718.mp4 6.13_5700_Player327-384c73241d47-20211013-123643.mp4\r\n6.13_14445_Player705-4971a9c548ce-20210725-200847.mp4 6.13_5701_Player327-384c73241d47-20211013-123813.mp4\r\n6.13_14446_Player705-4971a9c548ce-20210725-200957.mp4 6.13_5702_Player327-384c73241d47-20211013-123933.mp4\r\n6.13_14447_Player705-4971a9c548ce-20210725-201101.mp4 6.13_5703_Player327-384c73241d47-20211013-124053.mp4\r\n6.13_14448_Player705-4971a9c548ce-20210725-201234.mp4 6.13_5704_Player327-384c73241d47-20211013-124216.mp4\r\n6.13_14449_Player705-4971a9c548ce-20210725-201351.mp4 6.13_5705_Player327-384c73241d47-20211013-124347.mp4\r\n6.13_1444_Player15-605e7ce7bebd-20211221-051616.mp4 6.13_5706_Player327-f153ac423f61-20211013-111254.mp4\r\n6.13_14450_Player705-4971a9c548ce-20210725-201503.mp4 6.13_5707_Player327-f153ac423f61-20211013-111422.mp4\r\n6.13_14451_Player705-4971a9c548ce-20210725-201614.mp4 6.13_5708_Player327-f153ac423f61-20211013-111544.mp4\r\n6.13_14452_Player705-4971a9c548ce-20210725-201715.mp4 6.13_5709_Player327-f153ac423f61-20211013-111710.mp4\r\n6.13_14453_Player705-4971a9c548ce-20210725-201822.mp4 6.13_570_Player121-f153ac423f61-20211213-002920.mp4\r\n6.13_14454_Player705-4971a9c548ce-20210725-201932.mp4 6.13_5710_Player327-f153ac423f61-20211013-111833.mp4\r\n6.13_14455_Player705-4971a9c548ce-20210725-202033.mp4 6.13_5711_Player327-f153ac423f61-20211013-111949.mp4\r\n6.13_14456_Player705-4971a9c548ce-20210725-202143.mp4 6.13_5712_Player327-f153ac423f61-20211013-112101.mp4\r\n6.13_14457_Player705-4971a9c548ce-20210725-202244.mp4 6.13_5713_Player333-de096861b0b6-20210830-131217.mp4\r\n6.13_14458_Player705-4971a9c548ce-20210725-202355.mp4 6.13_5714_Player333-de096861b0b6-20210830-131348.mp4\r\n6.13_14459_Player705-4971a9c548ce-20210725-202514.mp4 6.13_5715_Player333-de096861b0b6-20210830-131510.mp4\r\n6.13_1445_Player15-605e7ce7bebd-20211221-051716.mp4 6.13_5716_Player333-de096861b0b6-20210830-131639.mp4\r\n6.13_14460_Player705-4971a9c548ce-20210725-202635.mp4 6.13_5717_Player333-de096861b0b6-20210830-131813.mp4\r\n6.13_14461_Player705-4971a9c548ce-20210725-202753.mp4 6.13_5718_Player333-de096861b0b6-20210830-131947.mp4\r\n6.13_14462_Player705-f153ac423f61-20210725-183231.mp4 6.13_5719_Player333-de096861b0b6-20210830-132120.mp4\r\n6.13_14463_Player705-f153ac423f61-20210725-183353.mp4 6.13_571_Player121-f153ac423f61-20211213-003022.mp4\r\n6.13_14464_Player705-f153ac423f61-20210725-183510.mp4 6.13_5720_Player333-de096861b0b6-20210830-132302.mp4\r\n6.13_14465_Player705-f153ac423f61-20210725-183636.mp4 6.13_5721_Player333-de096861b0b6-20210830-132428.mp4\r\n6.13_14466_Player707-f153ac423f61-20210816-122604.mp4 6.13_5722_Player333-de096861b0b6-20210830-132556.mp4\r\n6.13_14467_Player707-f153ac423f61-20210816-122708.mp4 6.13_5723_Player333-de096861b0b6-20210830-132737.mp4\r\n6.13_14468_Player707-f153ac423f61-20210816-122811.mp4 6.13_5724_Player333-de096861b0b6-20210830-132914.mp4\r\n6.13_14469_Player707-f153ac423f61-20210816-122914.mp4 6.13_5725_Player333-de096861b0b6-20210830-133055.mp4\r\n6.13_1446_Player15-605e7ce7bebd-20211221-051817.mp4 6.13_5726_Player333-de096861b0b6-20210830-133240.mp4\r\n6.13_14470_Player707-f153ac423f61-20210816-123016.mp4 6.13_5727_Player333-de096861b0b6-20210830-133414.mp4\r\n6.13_14471_Player707-f153ac423f61-20210816-123122.mp4 6.13_5728_Player333-de096861b0b6-20210830-133542.mp4\r\n6.13_14472_Player707-f153ac423f61-20210816-123228.mp4 6.13_5729_Player333-de096861b0b6-20210830-133722.mp4\r\n6.13_14473_Player707-f153ac423f61-20210816-123330.mp4 6.13_572_Player121-f153ac423f61-20211213-003123.mp4\r\n6.13_14474_Player707-f153ac423f61-20210816-123432.mp4 6.13_5730_Player333-de096861b0b6-20210830-133907.mp4\r\n6.13_14475_Player707-f153ac423f61-20210816-123535.mp4 6.13_5731_Player333-de096861b0b6-20210830-134059.mp4\r\n6.13_14476_Player707-f153ac423f61-20210816-123636.mp4 6.13_5732_Player333-de096861b0b6-20210830-134249.mp4\r\n6.13_14477_Player707-f153ac423f61-20210816-123738.mp4 6.13_5733_Player333-de096861b0b6-20210830-134439.mp4\r\n6.13_14478_Player707-f153ac423f61-20210816-123839.mp4 6.13_5734_Player333-f153ac423f61-20210830-124849.mp4\r\n6.13_14479_Player707-f153ac423f61-20210816-123941.mp4 6.13_5735_Player333-f153ac423f61-20210830-124955.mp4\r\n6.13_1447_Player15-605e7ce7bebd-20211221-051917.mp4 6.13_5736_Player333-f153ac423f61-20210830-125104.mp4\r\n6.13_14480_Player707-f153ac423f61-20210816-124043.mp4 6.13_5737_Player333-f153ac423f61-20210830-125215.mp4\r\n6.13_14481_Player707-f153ac423f61-20210816-124146.mp4 6.13_5738_Player333-f153ac423f61-20210830-125325.mp4\r\n6.13_14482_Player707-f153ac423f61-20210816-124249.mp4 6.13_5739_Player333-f153ac423f61-20210830-125437.mp4\r\n6.13_14483_Player707-f153ac423f61-20210816-124355.mp4 6.13_573_Player121-f153ac423f61-20211213-003223.mp4\r\n6.13_14484_Player707-f153ac423f61-20210816-124500.mp4 6.13_5740_Player333-f153ac423f61-20210830-125549.mp4\r\n6.13_14485_Player707-f153ac423f61-20210816-124609.mp4 6.13_5741_Player333-f153ac423f61-20210830-125701.mp4\r\n6.13_14486_Player707-f153ac423f61-20210816-124713.mp4 6.13_5742_Player333-f153ac423f61-20210830-125809.mp4\r\n6.13_14487_Player707-f153ac423f61-20210816-124816.mp4 6.13_5743_Player333-f153ac423f61-20210830-125914.mp4\r\n6.13_14488_Player707-f153ac423f61-20210816-124918.mp4 6.13_5744_Player333-f153ac423f61-20210830-130018.mp4\r\n6.13_14489_Player707-f153ac423f61-20210816-125020.mp4 6.13_5745_Player333-f153ac423f61-20210830-130121.mp4\r\n6.13_1448_Player15-605e7ce7bebd-20211221-052017.mp4 6.13_5746_Player333-f153ac423f61-20210830-130226.mp4\r\n6.13_14490_Player707-f153ac423f61-20210816-125123.mp4 6.13_5747_Player333-f153ac423f61-20210830-130329.mp4\r\n6.13_14491_Player707-f153ac423f61-20210816-125228.mp4 6.13_5748_Player333-f153ac423f61-20210830-130434.mp4\r\n6.13_14492_Player707-f153ac423f61-20210816-125335.mp4 6.13_5749_Player333-f153ac423f61-20210830-130537.mp4\r\n6.13_14493_Player707-f153ac423f61-20210816-125446.mp4 6.13_574_Player121-f153ac423f61-20211213-003324.mp4\r\n6.13_14494_Player707-f153ac423f61-20210816-125558.mp4 6.13_5750_Player333-f153ac423f61-20210830-130647.mp4\r\n6.13_14495_Player707-f153ac423f61-20210816-125702.mp4 6.13_5751_Player333-f153ac423f61-20210830-130755.mp4\r\n6.13_14496_Player707-f153ac423f61-20210816-125808.mp4 6.13_5752_Player333-f153ac423f61-20210830-130859.mp4\r\n6.13_14497_Player707-f153ac423f61-20210816-125917.mp4 6.13_5753_Player333-f153ac423f61-20210830-130959.mp4\r\n6.13_14498_Player707-f153ac423f61-20211101-115141.mp4 6.13_5754_Player333-f153ac423f61-20210830-131103.mp4\r\n6.13_14499_Player707-f153ac423f61-20211101-115327.mp4 6.13_5755_Player333-f153ac423f61-20211119-125948.mp4\r\n6.13_1449_Player15-605e7ce7bebd-20211221-052147.mp4 6.13_5756_Player333-f153ac423f61-20211119-130056.mp4\r\n6.13_144_Player104-f153ac423f61-20210828-122647.mp4 6.13_5757_Player333-f153ac423f61-20211119-130204.mp4\r\n6.13_14500_Player707-f153ac423f61-20211101-115436.mp4 6.13_5758_Player333-f153ac423f61-20211119-130310.mp4\r\n6.13_14501_Player707-f153ac423f61-20211101-115541.mp4 6.13_5759_Player333-f153ac423f61-20211119-130412.mp4\r\n6.13_14502_Player707-f153ac423f61-20211101-115650.mp4 6.13_575_Player121-f153ac423f61-20211213-003424.mp4\r\n6.13_14503_Player707-f153ac423f61-20211101-115755.mp4 6.13_5760_Player333-f153ac423f61-20211119-130514.mp4\r\n6.13_14504_Player707-f153ac423f61-20211101-115911.mp4 6.13_5761_Player333-f153ac423f61-20211119-130616.mp4\r\n6.13_14505_Player707-f153ac423f61-20211101-120029.mp4 6.13_5762_Player333-f153ac423f61-20211119-130720.mp4\r\n6.13_14506_Player707-f153ac423f61-20211101-120147.mp4 6.13_5763_Player333-f153ac423f61-20211119-130828.mp4\r\n6.13_14507_Player707-f153ac423f61-20211101-120311.mp4 6.13_5764_Player333-f153ac423f61-20211119-130936.mp4\r\n6.13_14508_Player707-f153ac423f61-20211101-120436.mp4 6.13_5765_Player333-f153ac423f61-20211119-131043.mp4\r\n6.13_14509_Player707-f153ac423f61-20211101-120616.mp4 6.13_5766_Player333-f153ac423f61-20211119-131150.mp4\r\n6.13_1450_Player15-605e7ce7bebd-20211221-052247.mp4 6.13_5767_Player333-f153ac423f61-20211119-131257.mp4\r\n6.13_14510_Player707-f153ac423f61-20211101-120757.mp4 6.13_5768_Player333-f153ac423f61-20211119-131403.mp4\r\n6.13_14511_Player707-f153ac423f61-20211101-120904.mp4 6.13_5769_Player333-f153ac423f61-20211119-131509.mp4\r\n6.13_14512_Player707-f153ac423f61-20211101-121009.mp4 6.13_576_Player121-f153ac423f61-20211213-003525.mp4\r\n6.13_14513_Player707-f153ac423f61-20211101-121113.mp4 6.13_5770_Player333-f153ac423f61-20211119-131620.mp4\r\n6.13_14514_Player707-f153ac423f61-20211101-121216.mp4 6.13_5771_Player333-f153ac423f61-20211119-131725.mp4\r\n6.13_14515_Player707-f153ac423f61-20211101-121319.mp4 6.13_5772_Player333-f153ac423f61-20211119-131841.mp4\r\n6.13_14516_Player707-f153ac423f61-20211101-121427.mp4 6.13_5773_Player333-f153ac423f61-20211119-131945.mp4\r\n6.13_14517_Player707-f153ac423f61-20211101-121534.mp4 6.13_5774_Player333-f153ac423f61-20211128-182641.mp4\r\n6.13_14518_Player707-f153ac423f61-20211101-121639.mp4 6.13_5775_Player334-f153ac423f61-20211216-020233.mp4\r\n6.13_14519_Player707-f153ac423f61-20211101-121748.mp4 6.13_5776_Player334-f153ac423f61-20211216-020334.mp4\r\n6.13_1451_Player15-605e7ce7bebd-20211221-052348.mp4 6.13_5777_Player334-f153ac423f61-20211216-020434.mp4\r\n6.13_14520_Player707-f153ac423f61-20211101-121929.mp4 6.13_5778_Player334-f153ac423f61-20211216-020534.mp4\r\n6.13_14521_Player707-f153ac423f61-20211101-122105.mp4 6.13_5779_Player334-f153ac423f61-20211216-020634.mp4\r\n6.13_14522_Player707-f153ac423f61-20211101-122302.mp4 6.13_577_Player121-f153ac423f61-20211213-003626.mp4\r\n6.13_14523_Player707-f153ac423f61-20211101-122441.mp4 6.13_5780_Player334-f153ac423f61-20211216-020734.mp4\r\n6.13_14524_Player707-f153ac423f61-20211101-122606.mp4 6.13_5781_Player334-f153ac423f61-20211216-020834.mp4\r\n6.13_14525_Player707-f153ac423f61-20211101-122736.mp4 6.13_5782_Player334-f153ac423f61-20211216-020934.mp4\r\n6.13_14526_Player707-f153ac423f61-20211101-122909.mp4 6.13_5783_Player334-f153ac423f61-20211216-021034.mp4\r\n6.13_14527_Player707-f153ac423f61-20211101-123054.mp4 6.13_5784_Player334-f153ac423f61-20211216-021134.mp4\r\n6.13_14528_Player707-f153ac423f61-20211101-123231.mp4 6.13_5785_Player334-f153ac423f61-20211216-021234.mp4\r\n6.13_14529_Player707-f153ac423f61-20211101-123355.mp4 6.13_5786_Player334-f153ac423f61-20211216-021335.mp4\r\n6.13_1452_Player15-605e7ce7bebd-20211221-052449.mp4 6.13_5787_Player334-f153ac423f61-20211216-021535.mp4\r\n6.13_14530_Player707-f153ac423f61-20211101-123518.mp4 6.13_5788_Player334-f153ac423f61-20211216-021737.mp4\r\n6.13_14531_Player707-f153ac423f61-20211101-123653.mp4 6.13_5789_Player334-f153ac423f61-20211216-021937.mp4\r\n6.13_14532_Player707-f153ac423f61-20211101-123831.mp4 6.13_578_Player121-f153ac423f61-20211213-003727.mp4\r\n6.13_14533_Player707-f153ac423f61-20211101-124013.mp4 6.13_5790_Player334-f153ac423f61-20211216-022237.mp4\r\n6.13_14534_Player707-f153ac423f61-20211101-124146.mp4 6.13_5791_Player334-f153ac423f61-20211216-022437.mp4\r\n6.13_14535_Player707-f153ac423f61-20211101-124315.mp4 6.13_5792_Player334-f153ac423f61-20211216-022636.mp4\r\n6.13_14536_Player707-f153ac423f61-20211101-124457.mp4 6.13_5793_Player334-f153ac423f61-20211216-023036.mp4\r\n6.13_14537_Player707-f153ac423f61-20211101-124642.mp4 6.13_5794_Player334-f153ac423f61-20211216-023235.mp4\r\n6.13_14538_Player707-f153ac423f61-20211101-124827.mp4 6.13_5795_Player339-f153ac423f61-20211028-203955.mp4\r\n6.13_14539_Player707-f153ac423f61-20211101-125013.mp4 6.13_5796_Player340-f153ac423f61-20211111-150217.mp4\r\n6.13_1453_Player15-605e7ce7bebd-20211221-052549.mp4 6.13_5797_Player340-f153ac423f61-20211111-150841.mp4\r\n6.13_14540_Player707-f153ac423f61-20211101-125157.mp4 6.13_5798_Player340-f153ac423f61-20211111-151447.mp4\r\n6.13_14541_Player707-f153ac423f61-20211101-125340.mp4 6.13_5799_Player340-f153ac423f61-20211111-152005.mp4\r\n6.13_14542_Player707-f153ac423f61-20211101-125528.mp4 6.13_579_Player121-f153ac423f61-20211213-004029.mp4\r\n6.13_14543_Player707-f153ac423f61-20211101-125712.mp4 6.13_5800_Player340-f153ac423f61-20211111-152630.mp4\r\n6.13_14544_Player707-f153ac423f61-20211101-125903.mp4 6.13_5801_Player340-f153ac423f61-20211111-153109.mp4\r\n6.13_14545_Player707-f153ac423f61-20211101-130100.mp4 6.13_5802_Player340-f153ac423f61-20211111-153620.mp4\r\n6.13_14546_Player707-f153ac423f61-20211101-130300.mp4 6.13_5803_Player340-f153ac423f61-20211111-154136.mp4\r\n6.13_14547_Player707-f50bbb434438-20210816-130157.mp4 6.13_5804_Player340-f153ac423f61-20211111-154652.mp4\r\n6.13_14548_Player707-f50bbb434438-20210816-130300.mp4 6.13_5805_Player340-f153ac423f61-20211111-155233.mp4\r\n6.13_14549_Player707-f50bbb434438-20210816-130401.mp4 6.13_5806_Player341-f153ac423f61-20211217-135506.mp4\r\n6.13_1454_Player15-605e7ce7bebd-20211221-052650.mp4 6.13_5807_Player341-f153ac423f61-20211217-135721.mp4\r\n6.13_14550_Player707-f50bbb434438-20210816-130503.mp4 6.13_5808_Player341-f153ac423f61-20211217-135911.mp4\r\n6.13_14551_Player707-f50bbb434438-20210816-130609.mp4 6.13_5809_Player342-ee62294a0c13-20210910-134309.mp4\r\n6.13_14552_Player707-f50bbb434438-20210816-130714.mp4 6.13_580_Player122-f153ac423f61-20211217-140509.mp4\r\n6.13_14553_Player707-f50bbb434438-20210816-130816.mp4 6.13_5810_Player342-ee62294a0c13-20210910-134501.mp4\r\n6.13_14554_Player707-f50bbb434438-20210816-130921.mp4 6.13_5811_Player342-ee62294a0c13-20210910-134631.mp4\r\n6.13_14555_Player707-f50bbb434438-20210816-131024.mp4 6.13_5812_Player342-ee62294a0c13-20210910-134802.mp4\r\n6.13_14556_Player707-f50bbb434438-20210816-131127.mp4 6.13_5813_Player342-ee62294a0c13-20210910-134926.mp4\r\n6.13_14557_Player707-f50bbb434438-20210816-131228.mp4 6.13_5814_Player342-ee62294a0c13-20210910-135043.mp4\r\n6.13_14558_Player707-f50bbb434438-20210816-131331.mp4 6.13_5815_Player342-ee62294a0c13-20210910-135157.mp4\r\n6.13_14559_Player707-f50bbb434438-20210816-131434.mp4 6.13_5816_Player342-ee62294a0c13-20210910-135312.mp4\r\n6.13_1455_Player15-605e7ce7bebd-20211221-052750.mp4 6.13_5817_Player342-ee62294a0c13-20210910-135424.mp4\r\n6.13_14560_Player707-f50bbb434438-20210816-131537.mp4 6.13_5818_Player342-ee62294a0c13-20210910-135536.mp4\r\n6.13_14561_Player707-f50bbb434438-20210816-131643.mp4 6.13_5819_Player342-ee62294a0c13-20210910-135645.mp4\r\n6.13_14562_Player707-f50bbb434438-20210816-131752.mp4 6.13_581_Player122-f153ac423f61-20211217-140736.mp4\r\n6.13_14563_Player707-f50bbb434438-20210816-131902.mp4 6.13_5820_Player342-ee62294a0c13-20210910-135759.mp4\r\n6.13_14564_Player707-f50bbb434438-20210816-132012.mp4 6.13_5821_Player342-ee62294a0c13-20210910-135912.mp4\r\n6.13_14565_Player707-f50bbb434438-20210816-132115.mp4 6.13_5822_Player342-ee62294a0c13-20210910-140033.mp4\r\n6.13_14566_Player707-f50bbb434438-20210816-132219.mp4 6.13_5823_Player342-ee62294a0c13-20210910-140157.mp4\r\n6.13_14567_Player707-f50bbb434438-20210816-132324.mp4 6.13_5824_Player342-ee62294a0c13-20210910-140331.mp4\r\n6.13_14568_Player707-f50bbb434438-20210816-132429.mp4 6.13_5825_Player342-ee62294a0c13-20210910-140454.mp4\r\n6.13_14569_Player707-f50bbb434438-20210816-132533.mp4 6.13_5826_Player342-ee62294a0c13-20210910-140617.mp4\r\n6.13_1456_Player15-605e7ce7bebd-20211221-052850.mp4 6.13_5827_Player342-ee62294a0c13-20210910-140739.mp4\r\n6.13_14570_Player707-f50bbb434438-20210816-132635.mp4 6.13_5828_Player342-ee62294a0c13-20210910-140902.mp4\r\n6.13_14571_Player707-f50bbb434438-20210816-132738.mp4 6.13_5829_Player342-ee62294a0c13-20210910-141019.mp4\r\n6.13_14572_Player707-f50bbb434438-20210816-132838.mp4 6.13_582_Player122-f153ac423f61-20211217-140918.mp4\r\n6.13_14573_Player707-f50bbb434438-20210816-132941.mp4 6.13_5830_Player342-ee62294a0c13-20210910-141128.mp4\r\n6.13_14574_Player707-f50bbb434438-20210816-133044.mp4 6.13_5831_Player342-ee62294a0c13-20210910-141235.mp4\r\n6.13_14575_Player707-f50bbb434438-20210816-133148.mp4 6.13_5832_Player342-ee62294a0c13-20210910-141356.mp4\r\n6.13_14576_Player707-f50bbb434438-20210816-133252.mp4 6.13_5833_Player342-ee62294a0c13-20210910-141515.mp4\r\n6.13_14577_Player707-f50bbb434438-20210816-133354.mp4 6.13_5834_Player342-ee62294a0c13-20210910-141636.mp4\r\n6.13_14578_Player707-f50bbb434438-20210816-133455.mp4 6.13_5835_Player342-ee62294a0c13-20210910-141809.mp4\r\n6.13_14579_Player710-f153ac423f61-20210905-123608.mp4 6.13_5836_Player342-ee62294a0c13-20210910-141927.mp4\r\n6.13_1457_Player15-605e7ce7bebd-20211221-052950.mp4 6.13_5837_Player342-ee62294a0c13-20210910-142042.mp4\r\n6.13_14580_Player710-f153ac423f61-20210905-123814.mp4 6.13_5838_Player342-ee62294a0c13-20210910-142149.mp4\r\n6.13_14581_Player710-f153ac423f61-20210905-124015.mp4 6.13_5839_Player342-ee62294a0c13-20210910-142254.mp4\r\n6.13_14582_Player710-f153ac423f61-20210905-124216.mp4 6.13_583_Player122-f153ac423f61-20211217-141059.mp4\r\n6.13_14583_Player710-f153ac423f61-20210905-124417.mp4 6.13_5840_Player342-ee62294a0c13-20210910-142400.mp4\r\n6.13_14584_Player710-f153ac423f61-20210905-124618.mp4 6.13_5841_Player342-ee62294a0c13-20210910-142508.mp4\r\n6.13_14585_Player710-f153ac423f61-20210905-124819.mp4 6.13_5842_Player342-ee62294a0c13-20210910-142628.mp4\r\n6.13_14586_Player710-f153ac423f61-20210905-125021.mp4 6.13_5843_Player342-ee62294a0c13-20210910-142747.mp4\r\n6.13_14587_Player710-f153ac423f61-20210905-125223.mp4 6.13_5844_Player342-ee62294a0c13-20210910-142911.mp4\r\n6.13_14588_Player710-f153ac423f61-20210905-125433.mp4 6.13_5845_Player342-ee62294a0c13-20210910-143040.mp4\r\n6.13_14589_Player710-f153ac423f61-20210905-125634.mp4 6.13_5846_Player342-ee62294a0c13-20210910-143158.mp4\r\n6.13_1458_Player15-605e7ce7bebd-20211221-053050.mp4 6.13_5847_Player342-ee62294a0c13-20210910-143326.mp4\r\n6.13_14590_Player710-f153ac423f61-20210905-125836.mp4 6.13_5848_Player342-ee62294a0c13-20210910-143458.mp4\r\n6.13_14591_Player710-f153ac423f61-20210905-130037.mp4 6.13_5849_Player342-ee62294a0c13-20210910-143630.mp4\r\n6.13_14592_Player710-f153ac423f61-20210905-130243.mp4 6.13_584_Player122-f153ac423f61-20211217-141246.mp4\r\n6.13_14593_Player710-f153ac423f61-20210905-130444.mp4 6.13_5850_Player342-ee62294a0c13-20210910-143800.mp4\r\n6.13_14594_Player710-f153ac423f61-20210905-130644.mp4 6.13_5851_Player342-ee62294a0c13-20210910-143915.mp4\r\n6.13_14595_Player710-f153ac423f61-20210905-130845.mp4 6.13_5852_Player342-ee62294a0c13-20210910-144030.mp4\r\n6.13_14596_Player710-f153ac423f61-20210905-131047.mp4 6.13_5853_Player342-ee62294a0c13-20210910-144145.mp4\r\n6.13_14597_Player710-f153ac423f61-20210905-131247.mp4 6.13_5854_Player342-ee62294a0c13-20210910-144301.mp4\r\n6.13_14598_Player710-f153ac423f61-20210905-131448.mp4 6.13_5855_Player342-ee62294a0c13-20210910-144419.mp4\r\n6.13_14599_Player710-f153ac423f61-20210905-131649.mp4 6.13_5856_Player342-ee62294a0c13-20210910-144543.mp4\r\n6.13_1459_Player15-605e7ce7bebd-20211221-053151.mp4 6.13_5857_Player342-ee62294a0c13-20210910-144706.mp4\r\n6.13_145_Player104-f153ac423f61-20210828-123355.mp4 6.13_5858_Player342-ee62294a0c13-20210910-144843.mp4\r\n6.13_14600_Player710-f153ac423f61-20210905-131850.mp4 6.13_5859_Player342-f153ac423f61-20210910-130512.mp4\r\n6.13_14601_Player710-f153ac423f61-20210905-132050.mp4 6.13_585_Player122-f153ac423f61-20211217-141432.mp4\r\n6.13_14602_Player710-f153ac423f61-20210905-132251.mp4 6.13_5860_Player342-f153ac423f61-20210910-130628.mp4\r\n6.13_14603_Player710-f153ac423f61-20210905-132452.mp4 6.13_5861_Player342-f153ac423f61-20210910-130743.mp4\r\n6.13_14604_Player710-f153ac423f61-20210905-132655.mp4 6.13_5862_Player342-f153ac423f61-20210910-130857.mp4\r\n6.13_14605_Player710-f153ac423f61-20210905-132856.mp4 6.13_5863_Player342-f153ac423f61-20210910-131005.mp4\r\n6.13_14606_Player710-f153ac423f61-20210905-133057.mp4 6.13_5864_Player342-f153ac423f61-20210910-131117.mp4\r\n6.13_14607_Player710-f153ac423f61-20210905-133258.mp4 6.13_5865_Player342-f153ac423f61-20210910-131232.mp4\r\n6.13_14608_Player710-f153ac423f61-20210905-133500.mp4 6.13_5866_Player342-f153ac423f61-20210910-131403.mp4\r\n6.13_14609_Player710-f153ac423f61-20210905-133701.mp4 6.13_5867_Player342-f153ac423f61-20210910-131531.mp4\r\n6.13_1460_Player15-605e7ce7bebd-20211221-053251.mp4 6.13_5868_Player342-f153ac423f61-20210910-131647.mp4\r\n6.13_14610_Player710-f153ac423f61-20210905-133903.mp4 6.13_5869_Player342-f153ac423f61-20210910-131813.mp4\r\n6.13_14611_Player710-f153ac423f61-20210905-134106.mp4 6.13_586_Player122-f153ac423f61-20211217-141613.mp4\r\n6.13_14612_Player710-f153ac423f61-20210905-134309.mp4 6.13_5870_Player342-f153ac423f61-20210910-131946.mp4\r\n6.13_14613_Player710-f153ac423f61-20210905-134510.mp4 6.13_5871_Player342-f153ac423f61-20210910-132115.mp4\r\n6.13_14614_Player710-f153ac423f61-20210905-134711.mp4 6.13_5872_Player342-f153ac423f61-20210910-132247.mp4\r\n6.13_14615_Player710-f153ac423f61-20210905-134912.mp4 6.13_5873_Player342-f153ac423f61-20210910-132406.mp4\r\n6.13_14616_Player710-f153ac423f61-20210905-135113.mp4 6.13_5874_Player342-f153ac423f61-20210910-132521.mp4\r\n6.13_14617_Player710-f153ac423f61-20210905-135314.mp4 6.13_5875_Player342-f153ac423f61-20210910-132652.mp4\r\n6.13_14618_Player710-f153ac423f61-20210905-135515.mp4 6.13_5876_Player342-f153ac423f61-20210910-132809.mp4\r\n6.13_14619_Player710-f153ac423f61-20210905-135718.mp4 6.13_5877_Player342-f153ac423f61-20210910-132921.mp4\r\n6.13_1461_Player15-605e7ce7bebd-20211221-053351.mp4 6.13_5878_Player342-f153ac423f61-20210910-133045.mp4\r\n6.13_14620_Player710-f153ac423f61-20210905-135919.mp4 6.13_5879_Player342-f153ac423f61-20210910-133211.mp4\r\n6.13_14621_Player710-f153ac423f61-20210905-140120.mp4 6.13_587_Player122-f153ac423f61-20211217-141757.mp4\r\n6.13_14622_Player710-f153ac423f61-20210905-140324.mp4 6.13_5880_Player342-f153ac423f61-20210910-133333.mp4\r\n6.13_14623_Player710-f153ac423f61-20210905-140530.mp4 6.13_5881_Player342-f153ac423f61-20210910-133456.mp4\r\n6.13_14624_Player710-f153ac423f61-20210905-140732.mp4 6.13_5882_Player342-f153ac423f61-20210910-133618.mp4\r\n6.13_14625_Player710-f153ac423f61-20210905-140937.mp4 6.13_5883_Player342-f153ac423f61-20210910-133738.mp4\r\n6.13_14626_Player710-f153ac423f61-20210905-141140.mp4 6.13_5884_Player342-f153ac423f61-20210910-133908.mp4\r\n6.13_14627_Player710-f153ac423f61-20210905-141343.mp4 6.13_5885_Player342-f153ac423f61-20210910-134111.mp4\r\n6.13_14628_Player710-f153ac423f61-20210905-141545.mp4 6.13_5886_Player343-303b7bb91a46-20210805-151836.mp4\r\n6.13_14629_Player710-f153ac423f61-20210905-141748.mp4 6.13_5887_Player343-303b7bb91a46-20210805-154312.mp4\r\n6.13_1462_Player15-605e7ce7bebd-20211221-053451.mp4 6.13_5888_Player343-303b7bb91a46-20210805-161006.mp4\r\n6.13_14630_Player710-f153ac423f61-20210905-141950.mp4 6.13_5889_Player343-303b7bb91a46-20210805-163512.mp4\r\n6.13_14631_Player710-f153ac423f61-20210905-142151.mp4 6.13_588_Player122-f153ac423f61-20211217-142021.mp4\r\n6.13_14632_Player710-f153ac423f61-20210905-142353.mp4 6.13_5890_Player343-303b7bb91a46-20210805-170300.mp4\r\n6.13_14633_Player710-f153ac423f61-20210905-142556.mp4 6.13_5891_Player343-303b7bb91a46-20210805-172841.mp4\r\n6.13_14634_Player710-f153ac423f61-20210905-142800.mp4 6.13_5892_Player343-303b7bb91a46-20210805-175403.mp4\r\n6.13_14635_Player710-f153ac423f61-20210905-143002.mp4 6.13_5893_Player343-303b7bb91a46-20210805-182151.mp4\r\n6.13_14636_Player710-f153ac423f61-20210905-143203.mp4 6.13_5894_Player343-f153ac423f61-20210805-091128.mp4\r\n6.13_14637_Player710-f153ac423f61-20210905-143404.mp4 6.13_5895_Player343-f153ac423f61-20210805-093902.mp4\r\n6.13_14638_Player710-f153ac423f61-20210905-143605.mp4 6.13_5896_Player343-f153ac423f61-20210805-100615.mp4\r\n6.13_14639_Player710-f153ac423f61-20210905-143807.mp4 6.13_5897_Player343-f153ac423f61-20210805-103406.mp4\r\n6.13_1463_Player15-605e7ce7bebd-20211221-053552.mp4 6.13_5898_Player343-f153ac423f61-20210805-110011.mp4\r\n6.13_14640_Player710-f153ac423f61-20210905-144010.mp4 6.13_5899_Player343-f153ac423f61-20210805-112542.mp4\r\n6.13_14641_Player710-f153ac423f61-20210905-144213.mp4 6.13_589_Player122-f153ac423f61-20211217-142245.mp4\r\n6.13_14642_Player710-f153ac423f61-20210905-144416.mp4 6.13_5900_Player343-f153ac423f61-20210805-115204.mp4\r\n6.13_14643_Player710-f153ac423f61-20210905-144617.mp4 6.13_5901_Player343-f153ac423f61-20210805-121707.mp4\r\n6.13_14644_Player710-f153ac423f61-20210905-144819.mp4 6.13_5902_Player343-f153ac423f61-20210805-124315.mp4\r\n6.13_14645_Player710-f153ac423f61-20210905-145023.mp4 6.13_5903_Player343-f153ac423f61-20210805-131148.mp4\r\n6.13_14646_Player710-f153ac423f61-20210905-145225.mp4 6.13_5904_Player343-f153ac423f61-20210805-133753.mp4\r\n6.13_14647_Player710-f153ac423f61-20210905-145426.mp4 6.13_5905_Player343-f153ac423f61-20210805-140316.mp4\r\n6.13_14648_Player710-f153ac423f61-20210905-145628.mp4 6.13_5906_Player343-f153ac423f61-20210805-142957.mp4\r\n6.13_14649_Player710-f153ac423f61-20210905-145834.mp4 6.13_5907_Player345-f153ac423f61-20211213-143056.mp4\r\n6.13_1464_Player15-605e7ce7bebd-20211221-053652.mp4 6.13_5908_Player345-f153ac423f61-20211213-143159.mp4\r\n6.13_14650_Player710-f153ac423f61-20210905-150039.mp4 6.13_5909_Player345-f153ac423f61-20211213-143300.mp4\r\n6.13_14651_Player710-f153ac423f61-20210905-150242.mp4 6.13_590_Player122-f153ac423f61-20211217-142436.mp4\r\n6.13_14652_Player710-f153ac423f61-20210905-150444.mp4 6.13_5910_Player345-f153ac423f61-20211213-143400.mp4\r\n6.13_14653_Player710-f153ac423f61-20210905-150644.mp4 6.13_5911_Player345-f153ac423f61-20211213-143500.mp4\r\n6.13_14654_Player710-f153ac423f61-20210905-150845.mp4 6.13_5912_Player345-f153ac423f61-20211213-143600.mp4\r\n6.13_14655_Player710-f153ac423f61-20210905-151047.mp4 6.13_5913_Player345-f153ac423f61-20211213-143700.mp4\r\n6.13_14656_Player710-f153ac423f61-20210905-151248.mp4 6.13_5914_Player345-f153ac423f61-20211213-143801.mp4\r\n6.13_14657_Player710-f153ac423f61-20210905-151453.mp4 6.13_5915_Player345-f153ac423f61-20211213-143902.mp4\r\n6.13_14658_Player710-f153ac423f61-20210905-151654.mp4 6.13_5916_Player345-f153ac423f61-20211213-144004.mp4\r\n6.13_14659_Player710-f153ac423f61-20210905-151855.mp4 6.13_5917_Player345-f153ac423f61-20211213-144105.mp4\r\n6.13_1465_Player15-605e7ce7bebd-20211221-053753.mp4 6.13_5918_Player345-f153ac423f61-20211213-144206.mp4\r\n6.13_14660_Player710-f153ac423f61-20210905-152058.mp4 6.13_5919_Player345-f153ac423f61-20211213-144307.mp4\r\n6.13_14661_Player710-f153ac423f61-20210905-152301.mp4 6.13_591_Player122-f153ac423f61-20211217-142603.mp4\r\n6.13_14662_Player710-f153ac423f61-20210905-152504.mp4 6.13_5920_Player345-f153ac423f61-20211213-144408.mp4\r\n6.13_14663_Player710-f153ac423f61-20210905-152705.mp4 6.13_5921_Player345-f153ac423f61-20211213-144509.mp4\r\n6.13_14664_Player710-f153ac423f61-20210905-152906.mp4 6.13_5922_Player345-f153ac423f61-20211213-144610.mp4\r\n6.13_14665_Player710-f153ac423f61-20210905-153113.mp4 6.13_5923_Player345-f153ac423f61-20211213-144712.mp4\r\n6.13_14666_Player710-f153ac423f61-20210905-153313.mp4 6.13_5924_Player346-61e7d21592ec-20211122-145942.mp4\r\n6.13_14667_Player710-f153ac423f61-20210905-153515.mp4 6.13_5925_Player346-61e7d21592ec-20211122-150347.mp4\r\n6.13_14668_Player710-f153ac423f61-20210905-153718.mp4 6.13_5926_Player346-61e7d21592ec-20211122-150750.mp4\r\n6.13_14669_Player710-f153ac423f61-20210905-153921.mp4 6.13_5927_Player346-61e7d21592ec-20211122-151213.mp4\r\n6.13_1466_Player15-605e7ce7bebd-20211221-053853.mp4 6.13_5928_Player346-61e7d21592ec-20211122-151624.mp4\r\n6.13_14670_Player711-f153ac423f61-20211018-111026.mp4 6.13_5929_Player346-61e7d21592ec-20211122-152133.mp4\r\n6.13_14671_Player711-f153ac423f61-20211018-111444.mp4 6.13_592_Player122-f153ac423f61-20211217-142731.mp4\r\n6.13_14672_Player711-f153ac423f61-20211018-111811.mp4 6.13_5930_Player346-61e7d21592ec-20211122-152535.mp4\r\n6.13_14673_Player711-f153ac423f61-20211018-112610.mp4 6.13_5931_Player346-61e7d21592ec-20211122-153038.mp4\r\n6.13_14674_Player711-f153ac423f61-20211018-120704.mp4 6.13_5932_Player346-61e7d21592ec-20211122-153442.mp4\r\n6.13_14675_Player711-f153ac423f61-20211018-121117.mp4 6.13_5933_Player346-61e7d21592ec-20211122-153846.mp4\r\n6.13_14676_Player711-f153ac423f61-20211018-121434.mp4 6.13_5934_Player346-61e7d21592ec-20211122-154247.mp4\r\n6.13_14677_Player711-f153ac423f61-20211018-121756.mp4 6.13_5935_Player346-61e7d21592ec-20211122-154650.mp4\r\n6.13_14678_Player711-f153ac423f61-20211018-122119.mp4 6.13_5936_Player346-61e7d21592ec-20211122-155053.mp4\r\n6.13_14679_Player711-f153ac423f61-20211018-122438.mp4 6.13_5937_Player346-61e7d21592ec-20211122-155456.mp4\r\n6.13_1467_Player15-605e7ce7bebd-20211221-053953.mp4 6.13_5938_Player346-61e7d21592ec-20211122-155901.mp4\r\n6.13_14680_Player716-f153ac423f61-20210830-172620.mp4 6.13_5939_Player346-61e7d21592ec-20211122-160316.mp4\r\n6.13_14681_Player716-f153ac423f61-20210830-172801.mp4 6.13_593_Player122-f153ac423f61-20211217-142858.mp4\r\n6.13_14682_Player716-f153ac423f61-20210830-172941.mp4 6.13_5940_Player346-61e7d21592ec-20211122-160720.mp4\r\n6.13_14683_Player716-f153ac423f61-20210830-173126.mp4 6.13_5941_Player346-61e7d21592ec-20211122-161127.mp4\r\n6.13_14684_Player716-f153ac423f61-20210830-173303.mp4 6.13_5942_Player346-61e7d21592ec-20211122-161529.mp4\r\n6.13_14685_Player716-f153ac423f61-20210830-173436.mp4 6.13_5943_Player346-61e7d21592ec-20211122-161930.mp4\r\n6.13_14686_Player716-f153ac423f61-20210830-173616.mp4 6.13_5944_Player346-61e7d21592ec-20211122-162331.mp4\r\n6.13_14687_Player716-f153ac423f61-20210830-173748.mp4 6.13_5945_Player346-61e7d21592ec-20211122-162833.mp4\r\n6.13_14688_Player716-f153ac423f61-20210830-173912.mp4 6.13_5946_Player346-61e7d21592ec-20211122-163235.mp4\r\n6.13_14689_Player716-f153ac423f61-20210830-174049.mp4 6.13_5947_Player346-70ca541fa3cf-20211122-170008.mp4\r\n6.13_1468_Player15-605e7ce7bebd-20211221-054053.mp4 6.13_5948_Player346-70ca541fa3cf-20211122-170410.mp4\r\n6.13_14690_Player716-f153ac423f61-20210830-174231.mp4 6.13_5949_Player346-70ca541fa3cf-20211122-170817.mp4\r\n6.13_14691_Player716-f153ac423f61-20210830-174406.mp4 6.13_594_Player122-f153ac423f61-20211217-143103.mp4\r\n6.13_14692_Player716-f153ac423f61-20210830-174538.mp4 6.13_5950_Player346-70ca541fa3cf-20211122-171319.mp4\r\n6.13_14693_Player716-f153ac423f61-20210830-174728.mp4 6.13_5951_Player346-70ca541fa3cf-20211122-171720.mp4\r\n6.13_14694_Player716-f153ac423f61-20210830-174914.mp4 6.13_5952_Player346-70ca541fa3cf-20211122-172120.mp4\r\n6.13_14695_Player716-f153ac423f61-20210830-175054.mp4 6.13_5953_Player346-70ca541fa3cf-20211122-172633.mp4\r\n6.13_14696_Player716-f153ac423f61-20210830-175234.mp4 6.13_5954_Player346-70ca541fa3cf-20211122-173034.mp4\r\n6.13_14697_Player716-f153ac423f61-20210830-175413.mp4 6.13_5955_Player346-70ca541fa3cf-20211122-173435.mp4\r\n6.13_14698_Player716-f153ac423f61-20210830-175601.mp4 6.13_5956_Player346-70ca541fa3cf-20211122-173836.mp4\r\n6.13_14699_Player716-f153ac423f61-20210830-175739.mp4 6.13_5957_Player346-70ca541fa3cf-20211122-174237.mp4\r\n6.13_1469_Player15-605e7ce7bebd-20211221-054154.mp4 6.13_5958_Player346-70ca541fa3cf-20211122-174638.mp4\r\n6.13_146_Player104-f153ac423f61-20210828-124059.mp4 6.13_5959_Player346-70ca541fa3cf-20211122-175039.mp4\r\n6.13_14700_Player716-f153ac423f61-20210830-175924.mp4 6.13_595_Player123-02237272b811-20210804-142350.mp4\r\n6.13_14701_Player716-f153ac423f61-20210830-180113.mp4 6.13_5960_Player346-70ca541fa3cf-20211122-175441.mp4\r\n6.13_14702_Player716-f153ac423f61-20210830-180400.mp4 6.13_5961_Player346-70ca541fa3cf-20211122-175843.mp4\r\n6.13_14703_Player716-f153ac423f61-20210830-180537.mp4 6.13_5962_Player346-70ca541fa3cf-20211122-180245.mp4\r\n6.13_14704_Player716-f153ac423f61-20210830-180722.mp4 6.13_5963_Player346-70ca541fa3cf-20211122-180647.mp4\r\n6.13_14705_Player716-f153ac423f61-20210830-180908.mp4 6.13_5964_Player346-70ca541fa3cf-20211122-181049.mp4\r\n6.13_14706_Player716-f153ac423f61-20210830-181046.mp4 6.13_5965_Player346-70ca541fa3cf-20211122-181453.mp4\r\n6.13_14707_Player716-f153ac423f61-20210830-181229.mp4 6.13_5966_Player346-70ca541fa3cf-20211122-181855.mp4\r\n6.13_14708_Player716-f153ac423f61-20210830-181412.mp4 6.13_5967_Player346-70ca541fa3cf-20211122-182257.mp4\r\n6.13_14709_Player716-f153ac423f61-20210830-181555.mp4 6.13_5968_Player346-70ca541fa3cf-20211122-182659.mp4\r\n6.13_1470_Player15-605e7ce7bebd-20211221-054254.mp4 6.13_5969_Player346-70ca541fa3cf-20211122-183201.mp4\r\n6.13_14710_Player716-f153ac423f61-20210830-181743.mp4 6.13_596_Player123-02237272b811-20210804-145035.mp4\r\n6.13_14711_Player716-f153ac423f61-20210830-181929.mp4 6.13_5970_Player346-70ca541fa3cf-20211122-183606.mp4\r\n6.13_14712_Player716-f153ac423f61-20210830-182107.mp4 6.13_5971_Player346-70ca541fa3cf-20211122-184008.mp4\r\n6.13_14713_Player716-f153ac423f61-20210830-182251.mp4 6.13_5972_Player346-70ca541fa3cf-20211122-184515.mp4\r\n6.13_14714_Player716-f153ac423f61-20210830-182438.mp4 6.13_5973_Player346-70ca541fa3cf-20211122-184917.mp4\r\n6.13_14715_Player716-f153ac423f61-20210830-182624.mp4 6.13_5974_Player346-70ca541fa3cf-20211122-185319.mp4\r\n6.13_14716_Player716-f153ac423f61-20210830-182812.mp4 6.13_5975_Player346-70ca541fa3cf-20211122-185822.mp4\r\n6.13_14717_Player716-f153ac423f61-20210830-183004.mp4 6.13_5976_Player346-70ca541fa3cf-20211122-190224.mp4\r\n6.13_14718_Player716-f153ac423f61-20210830-183152.mp4 6.13_5977_Player346-70ca541fa3cf-20211122-190625.mp4\r\n6.13_14719_Player716-f153ac423f61-20210830-183339.mp4 6.13_5978_Player346-70ca541fa3cf-20211122-191027.mp4\r\n6.13_1471_Player15-605e7ce7bebd-20211221-054354.mp4 6.13_5979_Player346-70ca541fa3cf-20211122-191428.mp4\r\n6.13_14720_Player716-f153ac423f61-20210830-183521.mp4 6.13_597_Player123-5e7e91df5a96-20211212-201021.mp4\r\n6.13_14721_Player716-f153ac423f61-20210830-183704.mp4 6.13_5980_Player346-70ca541fa3cf-20211122-191935.mp4\r\n6.13_14722_Player716-f153ac423f61-20210830-183852.mp4 6.13_5981_Player346-70ca541fa3cf-20211122-192336.mp4\r\n6.13_14723_Player716-f153ac423f61-20210830-184038.mp4 6.13_5982_Player346-70ca541fa3cf-20211122-192837.mp4\r\n6.13_14724_Player716-f153ac423f61-20210830-184224.mp4 6.13_5983_Player346-70ca541fa3cf-20211122-193339.mp4\r\n6.13_14725_Player716-f153ac423f61-20210830-184414.mp4 6.13_5984_Player346-70ca541fa3cf-20211122-193842.mp4\r\n6.13_14726_Player716-f153ac423f61-20210830-184601.mp4 6.13_5985_Player346-70ca541fa3cf-20211122-194243.mp4\r\n6.13_14727_Player716-f153ac423f61-20210830-184749.mp4 6.13_5986_Player346-70ca541fa3cf-20211122-194645.mp4\r\n6.13_14728_Player716-f153ac423f61-20210830-184938.mp4 6.13_5987_Player346-70ca541fa3cf-20211122-195147.mp4\r\n6.13_14729_Player716-f153ac423f61-20210830-185125.mp4 6.13_5988_Player346-70ca541fa3cf-20211122-195650.mp4\r\n6.13_1472_Player15-605e7ce7bebd-20211221-054454.mp4 6.13_5989_Player346-70ca541fa3cf-20211122-200052.mp4\r\n6.13_14730_Player716-f153ac423f61-20210830-185258.mp4 6.13_598_Player123-5e7e91df5a96-20211212-201124.mp4\r\n6.13_14731_Player716-f153ac423f61-20210830-185450.mp4 6.13_5990_Player346-f153ac423f61-20211122-125922.mp4\r\n6.13_14732_Player716-f153ac423f61-20210830-185641.mp4 6.13_5991_Player346-f153ac423f61-20211122-130343.mp4\r\n6.13_14733_Player716-f153ac423f61-20210830-185815.mp4 6.13_5992_Player346-f153ac423f61-20211122-130745.mp4\r\n6.13_14734_Player716-f153ac423f61-20210830-190004.mp4 6.13_5993_Player346-f153ac423f61-20211122-131149.mp4\r\n6.13_14735_Player716-f153ac423f61-20210830-190142.mp4 6.13_5994_Player346-f153ac423f61-20211122-131553.mp4\r\n6.13_14736_Player716-f153ac423f61-20210830-190328.mp4 6.13_5995_Player346-f153ac423f61-20211122-131955.mp4\r\n6.13_14737_Player716-f153ac423f61-20210830-190519.mp4 6.13_5996_Player348-f153ac423f61-20211117-220141.mp4\r\n6.13_14738_Player716-f153ac423f61-20210830-190715.mp4 6.13_5997_Player348-f153ac423f61-20211117-220307.mp4\r\n6.13_14739_Player716-f153ac423f61-20210830-190906.mp4 6.13_5998_Player348-f153ac423f61-20211117-220409.mp4\r\n6.13_1473_Player15-605e7ce7bebd-20211221-054555.mp4 6.13_5999_Player348-f153ac423f61-20211117-220510.mp4\r\n6.13_14740_Player718-f153ac423f61-20211221-110004.mp4 6.13_599_Player123-5e7e91df5a96-20211212-201227.mp4\r\n6.13_14741_Player718-f153ac423f61-20211221-110817.mp4 6.13_6000_Player348-f153ac423f61-20211117-220612.mp4\r\n6.13_14742_Player718-f153ac423f61-20211221-111625.mp4 6.13_6001_Player348-f153ac423f61-20211117-220716.mp4\r\n6.13_14743_Player718-f153ac423f61-20211221-112429.mp4 6.13_6002_Player348-f153ac423f61-20211117-220823.mp4\r\n6.13_14744_Player718-f153ac423f61-20211221-113351.mp4 6.13_6003_Player348-f153ac423f61-20211117-220928.mp4\r\n6.13_14745_Player718-f153ac423f61-20211221-114155.mp4 6.13_6004_Player348-f153ac423f61-20211117-221030.mp4\r\n6.13_14746_Player718-f153ac423f61-20211221-115002.mp4 6.13_6005_Player348-f153ac423f61-20211117-221132.mp4\r\n6.13_14747_Player718-f153ac423f61-20211221-115811.mp4 6.13_6006_Player348-f153ac423f61-20211117-221237.mp4\r\n6.13_14748_Player718-f153ac423f61-20211221-120627.mp4 6.13_6007_Player348-f153ac423f61-20211117-221343.mp4\r\n6.13_14749_Player718-f153ac423f61-20211221-121524.mp4 6.13_6008_Player348-f153ac423f61-20211117-221450.mp4\r\n6.13_1474_Player15-605e7ce7bebd-20211221-054655.mp4 6.13_6009_Player348-f153ac423f61-20211117-221552.mp4\r\n6.13_14750_Player718-f153ac423f61-20211221-122339.mp4 6.13_600_Player123-5e7e91df5a96-20211212-201334.mp4\r\n6.13_14751_Player718-f153ac423f61-20211221-123151.mp4 6.13_6010_Player348-f153ac423f61-20211117-221654.mp4\r\n6.13_14752_Player718-f153ac423f61-20211221-123957.mp4 6.13_6011_Player348-f153ac423f61-20211117-221756.mp4\r\n6.13_14753_Player718-f153ac423f61-20211221-124802.mp4 6.13_6012_Player348-f153ac423f61-20211117-221857.mp4\r\n6.13_14754_Player718-f153ac423f61-20211221-125714.mp4 6.13_6013_Player348-f153ac423f61-20211117-221958.mp4\r\n6.13_14755_Player719-f153ac423f61-20211026-191114.mp4 6.13_6014_Player348-f153ac423f61-20211117-222059.mp4\r\n6.13_14756_Player719-f153ac423f61-20211026-191443.mp4 6.13_6015_Player348-f153ac423f61-20211117-222201.mp4\r\n6.13_14757_Player719-f153ac423f61-20211026-191858.mp4 6.13_6016_Player348-f153ac423f61-20211117-222303.mp4\r\n6.13_14758_Player719-f153ac423f61-20211026-192233.mp4 6.13_6017_Player348-f153ac423f61-20211117-222409.mp4\r\n6.13_14759_Player719-f153ac423f61-20211026-192708.mp4 6.13_6018_Player348-f153ac423f61-20211117-222517.mp4\r\n6.13_1475_Player15-605e7ce7bebd-20211221-054755.mp4 6.13_6019_Player348-f153ac423f61-20211117-222620.mp4\r\n6.13_14760_Player719-f153ac423f61-20211026-193126.mp4 6.13_601_Player123-5e7e91df5a96-20211212-201441.mp4\r\n6.13_14761_Player719-f153ac423f61-20211026-193438.mp4 6.13_6020_Player348-f153ac423f61-20211117-222729.mp4\r\n6.13_14762_Player719-f153ac423f61-20211026-193825.mp4 6.13_6021_Player348-f153ac423f61-20211117-222837.mp4\r\n6.13_14763_Player719-f153ac423f61-20211026-194148.mp4 6.13_6022_Player348-f153ac423f61-20211117-222941.mp4\r\n6.13_14764_Player720-a503b2a9eb9e-20211019-114048.mp4 6.13_6023_Player348-f153ac423f61-20211117-223046.mp4\r\n6.13_14765_Player720-a503b2a9eb9e-20211019-114150.mp4 6.13_6024_Player348-f153ac423f61-20211117-223148.mp4\r\n6.13_14766_Player720-a503b2a9eb9e-20211019-114250.mp4 6.13_6025_Player348-f153ac423f61-20211117-223301.mp4\r\n6.13_14767_Player720-a503b2a9eb9e-20211019-114351.mp4 6.13_6026_Player348-f153ac423f61-20211117-223405.mp4\r\n6.13_14768_Player720-a503b2a9eb9e-20211019-114452.mp4 6.13_6027_Player348-f153ac423f61-20211117-223510.mp4\r\n6.13_14769_Player720-a503b2a9eb9e-20211019-114553.mp4 6.13_6028_Player348-f153ac423f61-20211117-223613.mp4\r\n6.13_1476_Player15-605e7ce7bebd-20211221-054856.mp4 6.13_6029_Player348-f153ac423f61-20211117-223715.mp4\r\n6.13_14770_Player720-a503b2a9eb9e-20211019-114653.mp4 6.13_602_Player123-5e7e91df5a96-20211212-201550.mp4\r\n6.13_14771_Player720-a503b2a9eb9e-20211019-114754.mp4 6.13_6030_Player348-f153ac423f61-20211117-223818.mp4\r\n6.13_14772_Player720-a503b2a9eb9e-20211019-114855.mp4 6.13_6031_Player348-f153ac423f61-20211117-223924.mp4\r\n6.13_14773_Player720-a503b2a9eb9e-20211019-114956.mp4 6.13_6032_Player348-f153ac423f61-20211117-224027.mp4\r\n6.13_14774_Player720-a503b2a9eb9e-20211019-115056.mp4 6.13_6033_Player348-f153ac423f61-20211117-224130.mp4\r\n6.13_14775_Player720-a503b2a9eb9e-20211019-115157.mp4 6.13_6034_Player348-f153ac423f61-20211117-224239.mp4\r\n6.13_14776_Player720-a503b2a9eb9e-20211019-115257.mp4 6.13_6035_Player348-f153ac423f61-20211117-224421.mp4\r\n6.13_14777_Player720-a503b2a9eb9e-20211019-115358.mp4 6.13_6036_Player348-f153ac423f61-20211117-224550.mp4\r\n6.13_14778_Player720-a503b2a9eb9e-20211019-115458.mp4 6.13_6037_Player348-f153ac423f61-20211117-224715.mp4\r\n6.13_14779_Player720-a503b2a9eb9e-20211019-115559.mp4 6.13_6038_Player348-f153ac423f61-20211117-224855.mp4\r\n6.13_1477_Player15-605e7ce7bebd-20211221-054957.mp4 6.13_6039_Player348-f153ac423f61-20211117-225003.mp4\r\n6.13_14780_Player720-a503b2a9eb9e-20211019-115659.mp4 6.13_603_Player123-5e7e91df5a96-20211212-201657.mp4\r\n6.13_14781_Player720-a503b2a9eb9e-20211019-115759.mp4 6.13_6040_Player348-f153ac423f61-20211117-225109.mp4\r\n6.13_14782_Player720-a503b2a9eb9e-20211019-115859.mp4 6.13_6041_Player348-f153ac423f61-20211117-225215.mp4\r\n6.13_14783_Player720-a503b2a9eb9e-20211019-115959.mp4 6.13_6042_Player348-f153ac423f61-20211117-225322.mp4\r\n6.13_14784_Player720-a503b2a9eb9e-20211019-120059.mp4 6.13_6043_Player348-f153ac423f61-20211117-225430.mp4\r\n6.13_14785_Player720-a503b2a9eb9e-20211019-120300.mp4 6.13_6044_Player348-f153ac423f61-20211117-225532.mp4\r\n6.13_14786_Player720-a503b2a9eb9e-20211019-120400.mp4 6.13_6045_Player348-f153ac423f61-20211117-225636.mp4\r\n6.13_14787_Player720-a503b2a9eb9e-20211019-120500.mp4 6.13_6046_Player348-f153ac423f61-20211117-225741.mp4\r\n6.13_14788_Player720-a503b2a9eb9e-20211019-120600.mp4 6.13_6047_Player348-f153ac423f61-20211117-225911.mp4\r\n6.13_14789_Player720-a503b2a9eb9e-20211019-120802.mp4 6.13_6048_Player348-f153ac423f61-20211117-230041.mp4\r\n6.13_1478_Player15-605e7ce7bebd-20211221-055057.mp4 6.13_6049_Player348-f153ac423f61-20211117-230214.mp4\r\n6.13_14790_Player720-a503b2a9eb9e-20211019-121006.mp4 6.13_604_Player123-5e7e91df5a96-20211212-201804.mp4\r\n6.13_14791_Player720-a503b2a9eb9e-20211019-121209.mp4 6.13_6050_Player349-f153ac423f61-20211119-190749.mp4\r\n6.13_14792_Player720-a503b2a9eb9e-20211019-121413.mp4 6.13_6051_Player349-f153ac423f61-20211119-191931.mp4\r\n6.13_14793_Player720-a503b2a9eb9e-20211019-121720.mp4 6.13_6052_Player349-f153ac423f61-20211119-193041.mp4\r\n6.13_14794_Player720-a503b2a9eb9e-20211019-122026.mp4 6.13_6053_Player349-f153ac423f61-20211119-194201.mp4\r\n6.13_14795_Player720-a503b2a9eb9e-20211019-122434.mp4 6.13_6054_Player349-f153ac423f61-20211119-200155.mp4\r\n6.13_14796_Player720-a503b2a9eb9e-20211019-122841.mp4 6.13_6055_Player349-f153ac423f61-20211119-201214.mp4\r\n6.13_14797_Player720-a503b2a9eb9e-20211019-123346.mp4 6.13_6056_Player349-f153ac423f61-20211119-202115.mp4\r\n6.13_14798_Player720-a503b2a9eb9e-20211019-123850.mp4 6.13_6057_Player349-f153ac423f61-20211119-203711.mp4\r\n6.13_14799_Player720-c70f6d6c8ee3-20211019-124355.mp4 6.13_6058_Player35-f153ac423f61-20211213-005543.mp4\r\n6.13_1479_Player15-605e7ce7bebd-20211221-055157.mp4 6.13_6059_Player35-f153ac423f61-20211213-005656.mp4\r\n6.13_147_Player104-f153ac423f61-20210828-124803.mp4 6.13_605_Player123-5e7e91df5a96-20211212-201912.mp4\r\n6.13_14800_Player720-c70f6d6c8ee3-20211019-124857.mp4 6.13_6060_Player35-f153ac423f61-20211213-005759.mp4\r\n6.13_14801_Player720-c70f6d6c8ee3-20211019-125359.mp4 6.13_6061_Player35-f153ac423f61-20211213-005901.mp4\r\n6.13_14802_Player720-c70f6d6c8ee3-20211019-130009.mp4 6.13_6062_Player35-f153ac423f61-20211213-010004.mp4\r\n6.13_14803_Player720-c70f6d6c8ee3-20211019-130515.mp4 6.13_6063_Player35-f153ac423f61-20211213-010107.mp4\r\n6.13_14804_Player720-c70f6d6c8ee3-20211019-131017.mp4 6.13_6064_Player35-f153ac423f61-20211213-010209.mp4\r\n6.13_14805_Player720-c70f6d6c8ee3-20211019-131518.mp4 6.13_6065_Player35-f153ac423f61-20211213-010311.mp4\r\n6.13_14806_Player720-c70f6d6c8ee3-20211019-132019.mp4 6.13_6066_Player35-f153ac423f61-20211213-010413.mp4\r\n6.13_14807_Player720-c70f6d6c8ee3-20211019-132627.mp4 6.13_6067_Player35-f153ac423f61-20211213-010514.mp4\r\n6.13_14808_Player720-c70f6d6c8ee3-20211019-133131.mp4 6.13_6068_Player35-f153ac423f61-20211213-010618.mp4\r\n6.13_14809_Player720-c70f6d6c8ee3-20211019-133631.mp4 6.13_6069_Player35-f153ac423f61-20211213-010722.mp4\r\n6.13_1480_Player15-605e7ce7bebd-20211221-055257.mp4 6.13_606_Player123-5e7e91df5a96-20211212-202016.mp4\r\n6.13_14810_Player720-c70f6d6c8ee3-20211019-134233.mp4 6.13_6070_Player35-f153ac423f61-20211213-010823.mp4\r\n6.13_14811_Player720-c70f6d6c8ee3-20211019-134733.mp4 6.13_6071_Player35-f153ac423f61-20211213-010924.mp4\r\n6.13_14812_Player720-c70f6d6c8ee3-20211019-135234.mp4 6.13_6072_Player35-f153ac423f61-20211213-011025.mp4\r\n6.13_14813_Player720-c70f6d6c8ee3-20211019-135734.mp4 6.13_6073_Player35-f153ac423f61-20211213-011126.mp4\r\n6.13_14814_Player720-c70f6d6c8ee3-20211019-140240.mp4 6.13_6074_Player35-f153ac423f61-20211213-011228.mp4\r\n6.13_14815_Player720-c70f6d6c8ee3-20211019-140743.mp4 6.13_6075_Player35-f153ac423f61-20211213-011329.mp4\r\n6.13_14816_Player720-f153ac423f61-20211019-090121.mp4 6.13_6076_Player35-f153ac423f61-20211213-011431.mp4\r\n6.13_14817_Player720-f153ac423f61-20211019-091140.mp4 6.13_6077_Player35-f153ac423f61-20211213-011532.mp4\r\n6.13_14818_Player720-f153ac423f61-20211019-092146.mp4 6.13_6078_Player35-f153ac423f61-20211213-011634.mp4\r\n6.13_14819_Player720-f153ac423f61-20211019-093157.mp4 6.13_6079_Player35-f153ac423f61-20211213-011735.mp4\r\n6.13_1481_Player15-605e7ce7bebd-20211221-055357.mp4 6.13_607_Player123-5e7e91df5a96-20211212-202121.mp4\r\n6.13_14820_Player720-f153ac423f61-20211019-094210.mp4 6.13_6080_Player35-f153ac423f61-20211213-011836.mp4\r\n6.13_14821_Player720-f153ac423f61-20211019-095220.mp4 6.13_6081_Player35-f153ac423f61-20211213-011938.mp4\r\n6.13_14822_Player720-f153ac423f61-20211019-100233.mp4 6.13_6082_Player35-f153ac423f61-20211223-170823.mp4\r\n6.13_14823_Player720-f153ac423f61-20211019-101252.mp4 6.13_6083_Player35-f153ac423f61-20211223-170924.mp4\r\n6.13_14824_Player720-f153ac423f61-20211019-102258.mp4 6.13_6084_Player35-f153ac423f61-20211223-171027.mp4\r\n6.13_14825_Player720-f153ac423f61-20211019-103309.mp4 6.13_6085_Player35-f153ac423f61-20211223-171131.mp4\r\n6.13_14826_Player720-f153ac423f61-20211019-104319.mp4 6.13_6086_Player35-f153ac423f61-20211223-171341.mp4\r\n6.13_14827_Player720-f153ac423f61-20211019-105330.mp4 6.13_6087_Player35-f153ac423f61-20211223-171547.mp4\r\n6.13_14828_Player720-f153ac423f61-20211019-110345.mp4 6.13_6088_Player35-f153ac423f61-20211223-171804.mp4\r\n6.13_14829_Player720-f153ac423f61-20211019-111357.mp4 6.13_6089_Player35-f153ac423f61-20211223-172006.mp4\r\n6.13_1482_Player15-605e7ce7bebd-20211221-055458.mp4 6.13_608_Player123-5e7e91df5a96-20211212-202223.mp4\r\n6.13_14830_Player720-f846d07261cd-20211019-112427.mp4 6.13_6090_Player35-f34430ea30ef-20211223-172210.mp4\r\n6.13_14831_Player720-f846d07261cd-20211019-113445.mp4 6.13_6091_Player35-f34430ea30ef-20211223-172416.mp4\r\n6.13_14832_Player722-313c496185e9-20210815-121241.mp4 6.13_6092_Player35-f34430ea30ef-20211223-172720.mp4\r\n6.13_14833_Player722-313c496185e9-20210815-121344.mp4 6.13_6093_Player35-f34430ea30ef-20211223-172925.mp4\r\n6.13_14834_Player722-313c496185e9-20210815-121446.mp4 6.13_6094_Player35-f34430ea30ef-20211223-173230.mp4\r\n6.13_14835_Player722-313c496185e9-20210815-121549.mp4 6.13_6095_Player350-f153ac423f61-20210902-004012.mp4\r\n6.13_14836_Player722-313c496185e9-20210815-121651.mp4 6.13_6096_Player350-f153ac423f61-20210902-004343.mp4\r\n6.13_14837_Player722-313c496185e9-20210815-121753.mp4 6.13_6097_Player350-f153ac423f61-20210902-004643.mp4\r\n6.13_14838_Player722-313c496185e9-20210815-121857.mp4 6.13_6098_Player350-f153ac423f61-20210902-005307.mp4\r\n6.13_14839_Player722-313c496185e9-20210815-122002.mp4 6.13_6099_Player350-f153ac423f61-20210902-005712.mp4\r\n6.13_1483_Player15-605e7ce7bebd-20211221-055558.mp4 6.13_609_Player123-5e7e91df5a96-20211212-202326.mp4\r\n6.13_14840_Player722-313c496185e9-20210815-122108.mp4 6.13_6100_Player350-f153ac423f61-20210902-010022.mp4\r\n6.13_14841_Player722-313c496185e9-20210815-122214.mp4 6.13_6101_Player350-f153ac423f61-20210902-010320.mp4\r\n6.13_14842_Player722-313c496185e9-20210815-122318.mp4 6.13_6102_Player350-f153ac423f61-20210902-010531.mp4\r\n6.13_14843_Player722-313c496185e9-20210815-122421.mp4 6.13_6103_Player350-f153ac423f61-20210902-010730.mp4\r\n6.13_14844_Player722-313c496185e9-20210815-122523.mp4 6.13_6104_Player350-f153ac423f61-20210902-010932.mp4\r\n6.13_14845_Player722-313c496185e9-20210815-122624.mp4 6.13_6105_Player350-f153ac423f61-20210902-011252.mp4\r\n6.13_14846_Player722-313c496185e9-20210815-122725.mp4 6.13_6106_Player350-f153ac423f61-20210902-011610.mp4\r\n6.13_14847_Player722-313c496185e9-20210815-122831.mp4 6.13_6107_Player350-f153ac423f61-20210902-011929.mp4\r\n6.13_14848_Player722-313c496185e9-20210815-122931.mp4 6.13_6108_Player350-f153ac423f61-20210902-012253.mp4\r\n6.13_14849_Player722-313c496185e9-20210815-123032.mp4 6.13_6109_Player350-f153ac423f61-20210902-012620.mp4\r\n6.13_1484_Player15-605e7ce7bebd-20211221-055759.mp4 6.13_610_Player123-5e7e91df5a96-20211212-202428.mp4\r\n6.13_14850_Player722-313c496185e9-20210815-123133.mp4 6.13_6110_Player350-f153ac423f61-20210902-012945.mp4\r\n6.13_14851_Player722-313c496185e9-20210815-123237.mp4 6.13_6111_Player350-f153ac423f61-20210902-013258.mp4\r\n6.13_14852_Player722-313c496185e9-20210815-123342.mp4 6.13_6112_Player350-f153ac423f61-20210902-013608.mp4\r\n6.13_14853_Player722-313c496185e9-20210815-123453.mp4 6.13_6113_Player350-f153ac423f61-20210902-013926.mp4\r\n6.13_14854_Player722-313c496185e9-20210815-123556.mp4 6.13_6114_Player350-f153ac423f61-20210902-014115.mp4\r\n6.13_14855_Player722-313c496185e9-20210815-123658.mp4 6.13_6115_Player350-f153ac423f61-20210902-014443.mp4\r\n6.13_14856_Player722-313c496185e9-20210815-123802.mp4 6.13_6116_Player350-f153ac423f61-20210902-014824.mp4\r\n6.13_14857_Player722-313c496185e9-20210815-123908.mp4 6.13_6117_Player350-f153ac423f61-20210902-015019.mp4\r\n6.13_14858_Player722-313c496185e9-20210815-124018.mp4 6.13_6118_Player350-f153ac423f61-20210902-015404.mp4\r\n6.13_14859_Player722-313c496185e9-20210815-124123.mp4 6.13_6119_Player350-f153ac423f61-20210902-015622.mp4\r\n6.13_1485_Player15-605e7ce7bebd-20211221-055900.mp4 6.13_611_Player123-5e7e91df5a96-20211212-202529.mp4\r\n6.13_14860_Player722-313c496185e9-20210815-124230.mp4 6.13_6120_Player350-f153ac423f61-20210902-015917.mp4\r\n6.13_14861_Player722-313c496185e9-20210815-124332.mp4 6.13_6121_Player350-f153ac423f61-20210902-020210.mp4\r\n6.13_14862_Player722-313c496185e9-20210815-124435.mp4 6.13_6122_Player350-f153ac423f61-20210902-020514.mp4\r\n6.13_14863_Player722-313c496185e9-20210815-124552.mp4 6.13_6123_Player350-f153ac423f61-20210902-020818.mp4\r\n6.13_14864_Player722-b70e5cbf4cf0-20210815-124653.mp4 6.13_6124_Player350-f153ac423f61-20210902-021114.mp4\r\n6.13_14865_Player722-f153ac423f61-20210815-113834.mp4 6.13_6125_Player350-f153ac423f61-20210902-021429.mp4\r\n6.13_14866_Player722-f153ac423f61-20210815-113943.mp4 6.13_6126_Player350-f153ac423f61-20210902-021734.mp4\r\n6.13_14867_Player722-f153ac423f61-20210815-114045.mp4 6.13_6127_Player350-f153ac423f61-20210902-022028.mp4\r\n6.13_14868_Player722-f153ac423f61-20210815-114150.mp4 6.13_6128_Player353-f153ac423f61-20210901-110009.mp4\r\n6.13_14869_Player722-f153ac423f61-20210815-114251.mp4 6.13_6129_Player353-f153ac423f61-20210901-110734.mp4\r\n6.13_1486_Player15-605e7ce7bebd-20211221-060000.mp4 6.13_612_Player123-5e7e91df5a96-20211212-202632.mp4\r\n6.13_14870_Player722-f153ac423f61-20210815-114353.mp4 6.13_6130_Player353-f153ac423f61-20210901-111452.mp4\r\n6.13_14871_Player722-f153ac423f61-20210815-114455.mp4 6.13_6131_Player353-f153ac423f61-20210901-112207.mp4\r\n6.13_14872_Player722-f153ac423f61-20210815-114559.mp4 6.13_6132_Player353-f153ac423f61-20210901-112925.mp4\r\n6.13_14873_Player722-f153ac423f61-20210815-114703.mp4 6.13_6133_Player353-f153ac423f61-20210901-113641.mp4\r\n6.13_14874_Player722-f153ac423f61-20210815-114812.mp4 6.13_6134_Player353-f153ac423f61-20210901-114456.mp4\r\n6.13_14875_Player722-f153ac423f61-20210815-114915.mp4 6.13_6135_Player353-f153ac423f61-20210901-115417.mp4\r\n6.13_14876_Player722-f153ac423f61-20210815-115021.mp4 6.13_6136_Player353-f153ac423f61-20210901-120335.mp4\r\n6.13_14877_Player722-f153ac423f61-20210815-115121.mp4 6.13_6137_Player353-f153ac423f61-20210901-121301.mp4\r\n6.13_14878_Player722-f153ac423f61-20210815-115223.mp4 6.13_6138_Player353-f153ac423f61-20210901-122223.mp4\r\n6.13_14879_Player722-f153ac423f61-20210815-115331.mp4 6.13_6139_Player353-f153ac423f61-20210901-123148.mp4\r\n6.13_1487_Player15-605e7ce7bebd-20211221-060101.mp4 6.13_613_Player123-5e7e91df5a96-20211212-202738.mp4\r\n6.13_14880_Player722-f153ac423f61-20210815-115432.mp4 6.13_6140_Player353-f153ac423f61-20210901-124116.mp4\r\n6.13_14881_Player722-f153ac423f61-20210815-115539.mp4 6.13_6141_Player353-f153ac423f61-20210901-125049.mp4\r\n6.13_14882_Player722-f153ac423f61-20210815-115640.mp4 6.13_6142_Player353-f153ac423f61-20210901-130004.mp4\r\n6.13_14883_Player722-f153ac423f61-20210815-115742.mp4 6.13_6143_Player353-f153ac423f61-20210901-130925.mp4\r\n6.13_14884_Player722-f153ac423f61-20210815-115845.mp4 6.13_6144_Player353-f153ac423f61-20210901-131906.mp4\r\n6.13_14885_Player722-f153ac423f61-20210815-115946.mp4 6.13_6145_Player353-f153ac423f61-20210901-132826.mp4\r\n6.13_14886_Player722-f153ac423f61-20210815-120048.mp4 6.13_6146_Player354-f153ac423f61-20210813-154316.mp4\r\n6.13_14887_Player722-f153ac423f61-20210815-120149.mp4 6.13_6147_Player354-f153ac423f61-20210813-154444.mp4\r\n6.13_14888_Player722-f153ac423f61-20210815-120256.mp4 6.13_6148_Player354-f153ac423f61-20210813-154603.mp4\r\n6.13_14889_Player722-f153ac423f61-20210815-120358.mp4 6.13_6149_Player354-f153ac423f61-20210813-154719.mp4\r\n6.13_1488_Player15-605e7ce7bebd-20211221-060201.mp4 6.13_614_Player123-5e7e91df5a96-20211212-202850.mp4\r\n6.13_14890_Player722-f153ac423f61-20210815-120502.mp4 6.13_6150_Player354-f153ac423f61-20210813-154841.mp4\r\n6.13_14891_Player722-f153ac423f61-20210815-120609.mp4 6.13_6151_Player354-f153ac423f61-20210813-154959.mp4\r\n6.13_14892_Player722-f153ac423f61-20210815-120715.mp4 6.13_6152_Player354-f153ac423f61-20210813-155117.mp4\r\n6.13_14893_Player722-f153ac423f61-20210815-120822.mp4 6.13_6153_Player354-f153ac423f61-20210813-155243.mp4\r\n6.13_14894_Player722-f153ac423f61-20210815-121028.mp4 6.13_6154_Player354-f153ac423f61-20210813-155410.mp4\r\n6.13_14895_Player722-f153ac423f61-20210815-121129.mp4 6.13_6155_Player354-f153ac423f61-20210813-155532.mp4\r\n6.13_14896_Player723-f153ac423f61-20211221-193140.mp4 6.13_6156_Player354-f153ac423f61-20210813-155658.mp4\r\n6.13_14897_Player723-f153ac423f61-20211221-193404.mp4 6.13_6157_Player354-f153ac423f61-20210813-155815.mp4\r\n6.13_14898_Player723-f153ac423f61-20211221-193841.mp4 6.13_6158_Player354-f153ac423f61-20210813-155929.mp4\r\n6.13_14899_Player723-f153ac423f61-20211221-194037.mp4 6.13_6159_Player354-f153ac423f61-20210813-160047.mp4\r\n6.13_1489_Player15-605e7ce7bebd-20211221-060301.mp4 6.13_615_Player123-5e7e91df5a96-20211212-203000.mp4\r\n6.13_148_Player104-f153ac423f61-20210828-125511.mp4 6.13_6160_Player354-f153ac423f61-20210813-160216.mp4\r\n6.13_14900_Player723-f153ac423f61-20211221-194233.mp4 6.13_6161_Player354-f153ac423f61-20210813-160342.mp4\r\n6.13_14901_Player723-f153ac423f61-20211221-194430.mp4 6.13_6162_Player354-f153ac423f61-20210813-160455.mp4\r\n6.13_14902_Player723-f153ac423f61-20211221-194624.mp4 6.13_6163_Player354-f153ac423f61-20210813-160616.mp4\r\n6.13_14903_Player723-f153ac423f61-20211221-194824.mp4 6.13_6164_Player354-f153ac423f61-20210813-160738.mp4\r\n6.13_14904_Player723-f153ac423f61-20211221-195018.mp4 6.13_6165_Player354-f153ac423f61-20210813-160901.mp4\r\n6.13_14905_Player723-f153ac423f61-20211221-195213.mp4 6.13_6166_Player354-f153ac423f61-20210813-161020.mp4\r\n6.13_14906_Player723-f153ac423f61-20211221-195408.mp4 6.13_6167_Player354-f153ac423f61-20210813-161140.mp4\r\n6.13_14907_Player723-f153ac423f61-20211221-195559.mp4 6.13_6168_Player354-f153ac423f61-20210813-161257.mp4\r\n6.13_14908_Player723-f153ac423f61-20211221-195756.mp4 6.13_6169_Player354-f153ac423f61-20210813-161410.mp4\r\n6.13_14909_Player723-f153ac423f61-20211221-195955.mp4 6.13_616_Player123-5e7e91df5a96-20211212-203104.mp4\r\n6.13_1490_Player15-605e7ce7bebd-20211221-060402.mp4 6.13_6170_Player354-f153ac423f61-20210813-161525.mp4\r\n6.13_14910_Player723-f153ac423f61-20211221-200155.mp4 6.13_6171_Player354-f153ac423f61-20210813-161639.mp4\r\n6.13_14911_Player723-f153ac423f61-20211221-200356.mp4 6.13_6172_Player354-f153ac423f61-20210813-161750.mp4\r\n6.13_14912_Player723-f153ac423f61-20211221-200549.mp4 6.13_6173_Player354-f153ac423f61-20210813-161901.mp4\r\n6.13_14913_Player723-f153ac423f61-20211221-200736.mp4 6.13_6174_Player354-f153ac423f61-20210813-162026.mp4\r\n6.13_14914_Player723-f153ac423f61-20211221-200928.mp4 6.13_6175_Player354-f153ac423f61-20210813-162154.mp4\r\n6.13_14915_Player723-f153ac423f61-20211221-201122.mp4 6.13_6176_Player354-f153ac423f61-20210813-162312.mp4\r\n6.13_14916_Player723-f153ac423f61-20211221-201318.mp4 6.13_6177_Player354-f153ac423f61-20210813-162425.mp4\r\n6.13_14917_Player723-f153ac423f61-20211221-201708.mp4 6.13_6178_Player354-f153ac423f61-20210813-162552.mp4\r\n6.13_14918_Player723-f153ac423f61-20211221-201856.mp4 6.13_6179_Player354-f153ac423f61-20210813-162719.mp4\r\n6.13_14919_Player723-f153ac423f61-20211221-202046.mp4 6.13_617_Player123-5e7e91df5a96-20211212-203207.mp4\r\n6.13_1491_Player15-605e7ce7bebd-20211221-060502.mp4 6.13_6180_Player354-f153ac423f61-20210813-162849.mp4\r\n6.13_14920_Player723-f153ac423f61-20211221-202239.mp4 6.13_6181_Player354-f153ac423f61-20210813-163025.mp4\r\n6.13_14921_Player723-f153ac423f61-20211221-202455.mp4 6.13_6182_Player354-f153ac423f61-20210813-163140.mp4\r\n6.13_14922_Player723-f153ac423f61-20211221-202643.mp4 6.13_6183_Player354-f153ac423f61-20210813-163256.mp4\r\n6.13_14923_Player723-f153ac423f61-20211221-202838.mp4 6.13_6184_Player354-f153ac423f61-20210813-163433.mp4\r\n6.13_14924_Player723-f153ac423f61-20211221-203033.mp4 6.13_6185_Player354-f153ac423f61-20210813-163619.mp4\r\n6.13_14925_Player723-f153ac423f61-20211221-203229.mp4 6.13_6186_Player354-f153ac423f61-20210813-163745.mp4\r\n6.13_14926_Player723-f153ac423f61-20211221-203417.mp4 6.13_6187_Player354-f153ac423f61-20210813-163910.mp4\r\n",,terminal_output +647,6810557,"TERMINAL",0,0,"6.13_14927_Player723-f153ac423f61-20211221-203605.mp4 6.13_6188_Player354-f153ac423f61-20210813-164038.mp4\r\n6.13_14928_Player723-f153ac423f61-20211221-203754.mp4 6.13_6189_Player354-f153ac423f61-20210813-164215.mp4\r\n6.13_14929_Player723-f153ac423f61-20211221-203941.mp4 6.13_618_Player123-5e7e91df5a96-20211212-203310.mp4\r\n6.13_1492_Player15-605e7ce7bebd-20211221-060602.mp4 6.13_6190_Player354-f153ac423f61-20210813-164345.mp4\r\n6.13_14930_Player723-f153ac423f61-20211221-204129.mp4 6.13_6191_Player354-f153ac423f61-20210813-164510.mp4\r\n6.13_14931_Player723-f153ac423f61-20211221-204318.mp4 6.13_6192_Player354-f153ac423f61-20210813-164641.mp4\r\n6.13_14932_Player723-f153ac423f61-20211221-204506.mp4 6.13_6193_Player354-f153ac423f61-20210813-164804.mp4\r\n6.13_14933_Player723-f153ac423f61-20211221-204656.mp4 6.13_6194_Player354-f153ac423f61-20210813-164928.mp4\r\n6.13_14934_Player723-f153ac423f61-20211221-204853.mp4 6.13_6195_Player354-f153ac423f61-20210813-165054.mp4\r\n6.13_14935_Player723-f153ac423f61-20211221-205058.mp4 6.13_6196_Player354-f153ac423f61-20210813-165223.mp4\r\n6.13_14936_Player723-f153ac423f61-20211221-205313.mp4 6.13_6197_Player354-f153ac423f61-20210813-165354.mp4\r\n6.13_14937_Player723-f153ac423f61-20211221-205508.mp4 6.13_6198_Player354-f153ac423f61-20210813-165520.mp4\r\n6.13_14938_Player723-f153ac423f61-20211221-205701.mp4 6.13_6199_Player354-f153ac423f61-20210813-165651.mp4\r\n6.13_14939_Player723-f153ac423f61-20211221-205854.mp4 6.13_619_Player123-5e7e91df5a96-20211212-203418.mp4\r\n6.13_1493_Player15-605e7ce7bebd-20211221-060703.mp4 6.13_6200_Player354-f153ac423f61-20210813-165808.mp4\r\n6.13_14940_Player723-f153ac423f61-20211221-210053.mp4 6.13_6201_Player354-f153ac423f61-20210813-165936.mp4\r\n6.13_14941_Player723-f153ac423f61-20211221-210405.mp4 6.13_6202_Player354-f153ac423f61-20210813-170102.mp4\r\n6.13_14942_Player723-f153ac423f61-20211221-210557.mp4 6.13_6203_Player354-f153ac423f61-20210813-170226.mp4\r\n6.13_14943_Player723-f153ac423f61-20211221-210740.mp4 6.13_6204_Player354-f153ac423f61-20210927-150723.mp4\r\n6.13_14944_Player723-f153ac423f61-20211221-210918.mp4 6.13_6205_Player354-f153ac423f61-20210927-151543.mp4\r\n6.13_14945_Player723-f153ac423f61-20211221-211108.mp4 6.13_6206_Player354-f153ac423f61-20210927-152105.mp4\r\n6.13_14946_Player723-f153ac423f61-20211221-211303.mp4 6.13_6207_Player354-f153ac423f61-20210927-152818.mp4\r\n6.13_14947_Player723-f153ac423f61-20211221-211458.mp4 6.13_6208_Player354-f153ac423f61-20210927-153331.mp4\r\n6.13_14948_Player723-f153ac423f61-20211221-211651.mp4 6.13_6209_Player354-f153ac423f61-20210927-153959.mp4\r\n6.13_14949_Player723-f153ac423f61-20211221-211838.mp4 6.13_620_Player123-5e7e91df5a96-20211212-203529.mp4\r\n6.13_1494_Player15-605e7ce7bebd-20211221-060803.mp4 6.13_6210_Player354-f153ac423f61-20210927-154643.mp4\r\n6.13_14950_Player723-f153ac423f61-20211221-212014.mp4 6.13_6211_Player354-f153ac423f61-20210927-155115.mp4\r\n6.13_14951_Player723-f153ac423f61-20211221-212149.mp4 6.13_6212_Player354-f153ac423f61-20210927-155552.mp4\r\n6.13_14952_Player723-f153ac423f61-20211221-212318.mp4 6.13_6213_Player354-f153ac423f61-20210927-160053.mp4\r\n6.13_14953_Player723-f153ac423f61-20211221-212456.mp4 6.13_6214_Player356-0f5e3945bab1-20211219-161146.mp4\r\n6.13_14954_Player723-f153ac423f61-20211221-212621.mp4 6.13_6215_Player356-f153ac423f61-20211219-131134.mp4\r\n6.13_14955_Player723-f153ac423f61-20211221-212749.mp4 6.13_6216_Player356-f153ac423f61-20211219-131251.mp4\r\n6.13_14956_Player723-f153ac423f61-20211221-212922.mp4 6.13_6217_Player356-f153ac423f61-20211219-131356.mp4\r\n6.13_14957_Player723-f153ac423f61-20211221-213056.mp4 6.13_6218_Player356-f153ac423f61-20211219-131502.mp4\r\n6.13_14958_Player723-f153ac423f61-20211221-213239.mp4 6.13_6219_Player356-f153ac423f61-20211219-131606.mp4\r\n6.13_14959_Player723-f153ac423f61-20211221-213419.mp4 6.13_621_Player123-5e7e91df5a96-20211212-203642.mp4\r\n6.13_1495_Player15-605e7ce7bebd-20211221-060903.mp4 6.13_6220_Player356-f153ac423f61-20211219-131707.mp4\r\n6.13_14960_Player723-f153ac423f61-20211221-213634.mp4 6.13_6221_Player356-f153ac423f61-20211219-131808.mp4\r\n6.13_14961_Player724-f153ac423f61-20211016-151726.mp4 6.13_6222_Player356-f153ac423f61-20211219-131910.mp4\r\n6.13_14962_Player724-f153ac423f61-20211016-151909.mp4 6.13_6223_Player356-f153ac423f61-20211219-132011.mp4\r\n6.13_14963_Player724-f153ac423f61-20211016-152052.mp4 6.13_6224_Player356-f153ac423f61-20211219-132112.mp4\r\n6.13_14964_Player724-f153ac423f61-20211016-152227.mp4 6.13_6225_Player356-f153ac423f61-20211219-132212.mp4\r\n6.13_14965_Player724-f153ac423f61-20211016-152404.mp4 6.13_6226_Player356-f153ac423f61-20211219-132313.mp4\r\n6.13_14966_Player724-f153ac423f61-20211016-152544.mp4 6.13_6227_Player356-f153ac423f61-20211219-132414.mp4\r\n6.13_14967_Player724-f153ac423f61-20211016-152727.mp4 6.13_6228_Player356-f153ac423f61-20211219-132515.mp4\r\n6.13_14968_Player724-f153ac423f61-20211016-152918.mp4 6.13_6229_Player356-f153ac423f61-20211219-133857.mp4\r\n6.13_14969_Player724-f153ac423f61-20211016-153104.mp4 6.13_622_Player123-5e7e91df5a96-20211212-203751.mp4\r\n6.13_1496_Player15-605e7ce7bebd-20211221-061005.mp4 6.13_6230_Player356-f153ac423f61-20211219-134000.mp4\r\n6.13_14970_Player724-f153ac423f61-20211016-153240.mp4 6.13_6231_Player356-f153ac423f61-20211219-134103.mp4\r\n6.13_14971_Player724-f153ac423f61-20211016-153412.mp4 6.13_6232_Player356-f153ac423f61-20211219-134204.mp4\r\n6.13_14972_Player724-f153ac423f61-20211016-153553.mp4 6.13_6233_Player356-f153ac423f61-20211219-134306.mp4\r\n6.13_14973_Player724-f153ac423f61-20211016-153738.mp4 6.13_6234_Player356-f153ac423f61-20211219-134512.mp4\r\n6.13_14974_Player724-f153ac423f61-20211016-153932.mp4 6.13_6235_Player356-f153ac423f61-20211219-134614.mp4\r\n6.13_14975_Player724-f153ac423f61-20211016-154115.mp4 6.13_6236_Player356-f153ac423f61-20211219-134716.mp4\r\n6.13_14976_Player724-f153ac423f61-20211016-154255.mp4 6.13_6237_Player356-f153ac423f61-20211219-134918.mp4\r\n6.13_14977_Player724-f153ac423f61-20211016-154437.mp4 6.13_6238_Player356-f153ac423f61-20211219-135120.mp4\r\n6.13_14978_Player724-f153ac423f61-20211016-154607.mp4 6.13_6239_Player356-f153ac423f61-20211219-135321.mp4\r\n6.13_14979_Player724-f153ac423f61-20211016-154747.mp4 6.13_623_Player123-5e7e91df5a96-20211212-203859.mp4\r\n6.13_1497_Player15-605e7ce7bebd-20211221-061105.mp4 6.13_6240_Player358-13093de2ff16-20211217-131309.mp4\r\n6.13_14980_Player724-f153ac423f61-20211016-154933.mp4 6.13_6241_Player358-13093de2ff16-20211217-132020.mp4\r\n6.13_14981_Player724-f153ac423f61-20211016-155121.mp4 6.13_6242_Player358-13093de2ff16-20211217-132830.mp4\r\n6.13_14982_Player724-f153ac423f61-20211016-155313.mp4 6.13_6243_Player358-13093de2ff16-20211217-133640.mp4\r\n6.13_14983_Player724-f153ac423f61-20211016-155457.mp4 6.13_6244_Player358-13093de2ff16-20211217-134344.mp4\r\n6.13_14984_Player724-f153ac423f61-20211016-155649.mp4 6.13_6245_Player358-13093de2ff16-20211217-135153.mp4\r\n6.13_14985_Player724-f153ac423f61-20211016-155846.mp4 6.13_6246_Player358-13093de2ff16-20211217-135859.mp4\r\n6.13_14986_Player724-f153ac423f61-20211016-160029.mp4 6.13_6247_Player358-13093de2ff16-20211217-140609.mp4\r\n6.13_14987_Player724-f153ac423f61-20211016-160209.mp4 6.13_6248_Player358-2a0f51fed25a-20210921-123111.mp4\r\n6.13_14988_Player724-f153ac423f61-20211016-160347.mp4 6.13_6249_Player358-2a0f51fed25a-20210921-124019.mp4\r\n6.13_14989_Player724-f153ac423f61-20211016-160524.mp4 6.13_624_Player123-5e7e91df5a96-20211212-204003.mp4\r\n6.13_1498_Player15-f153ac423f61-20211221-021459.mp4 6.13_6250_Player358-2a0f51fed25a-20210921-124930.mp4\r\n6.13_14990_Player724-f153ac423f61-20211016-160700.mp4 6.13_6251_Player358-2a0f51fed25a-20210921-125838.mp4\r\n6.13_14991_Player724-f153ac423f61-20211016-160846.mp4 6.13_6252_Player358-2a0f51fed25a-20210921-130748.mp4\r\n6.13_14992_Player724-f153ac423f61-20211016-161037.mp4 6.13_6253_Player358-2a0f51fed25a-20210921-131658.mp4\r\n6.13_14993_Player724-f153ac423f61-20211016-161220.mp4 6.13_6254_Player358-2a0f51fed25a-20210921-132702.mp4\r\n6.13_14994_Player724-f153ac423f61-20211016-161414.mp4 6.13_6255_Player358-2a0f51fed25a-20210921-133606.mp4\r\n6.13_14995_Player724-f153ac423f61-20211016-161608.mp4 6.13_6256_Player358-2a0f51fed25a-20210921-134510.mp4\r\n6.13_14996_Player724-f153ac423f61-20211016-161742.mp4 6.13_6257_Player358-2a0f51fed25a-20210921-135416.mp4\r\n6.13_14997_Player724-f153ac423f61-20211016-161915.mp4 6.13_6258_Player358-2a0f51fed25a-20210921-140320.mp4\r\n6.13_14998_Player724-f153ac423f61-20211016-162103.mp4 6.13_6259_Player358-2a0f51fed25a-20210921-141225.mp4\r\n6.13_14999_Player724-f153ac423f61-20211016-162240.mp4 6.13_625_Player123-f153ac423f61-20210804-080342.mp4\r\n6.13_1499_Player15-f153ac423f61-20211221-021604.mp4 6.13_6260_Player358-2a0f51fed25a-20210921-142132.mp4\r\n6.13_149_Player104-f153ac423f61-20210828-130318.mp4 6.13_6261_Player358-2a0f51fed25a-20210921-143040.mp4\r\n6.13_15000_Player724-f153ac423f61-20211016-162421.mp4 6.13_6262_Player358-2a0f51fed25a-20210921-144045.mp4\r\n6.13_15001_Player724-f153ac423f61-20211016-162603.mp4 6.13_6263_Player358-2a0f51fed25a-20210921-144949.mp4\r\n6.13_15002_Player724-f153ac423f61-20211016-162741.mp4 6.13_6264_Player358-2a0f51fed25a-20210921-145858.mp4\r\n6.13_15003_Player724-f153ac423f61-20211016-162910.mp4 6.13_6265_Player358-2a0f51fed25a-20210921-150913.mp4\r\n6.13_15004_Player724-f153ac423f61-20211016-163054.mp4 6.13_6266_Player358-2a0f51fed25a-20210921-151820.mp4\r\n6.13_15005_Player724-f153ac423f61-20211016-163234.mp4 6.13_6267_Player358-37192fa717e1-20210921-103934.mp4\r\n6.13_15006_Player724-f153ac423f61-20211016-163626.mp4 6.13_6268_Player358-37192fa717e1-20210921-104851.mp4\r\n6.13_15007_Player724-f153ac423f61-20211016-163804.mp4 6.13_6269_Player358-37192fa717e1-20210921-105812.mp4\r\n6.13_15008_Player724-f153ac423f61-20211016-163938.mp4 6.13_626_Player123-f153ac423f61-20210804-083030.mp4\r\n6.13_15009_Player724-f153ac423f61-20211016-164118.mp4 6.13_6270_Player358-37192fa717e1-20210921-110823.mp4\r\n6.13_1500_Player15-f153ac423f61-20211221-021705.mp4 6.13_6271_Player358-37192fa717e1-20210921-111830.mp4\r\n6.13_15010_Player724-f153ac423f61-20211016-164257.mp4 6.13_6272_Player358-37192fa717e1-20210921-112844.mp4\r\n6.13_15011_Player724-f153ac423f61-20211016-164449.mp4 6.13_6273_Player358-37192fa717e1-20210921-113750.mp4\r\n6.13_15012_Player724-f153ac423f61-20211016-164634.mp4 6.13_6274_Player358-37192fa717e1-20210921-114807.mp4\r\n6.13_15013_Player724-f153ac423f61-20211016-164815.mp4 6.13_6275_Player358-37192fa717e1-20210921-115712.mp4\r\n6.13_15014_Player724-f153ac423f61-20211016-164956.mp4 6.13_6276_Player358-f153ac423f61-20210921-082058.mp4\r\n6.13_15015_Player724-f153ac423f61-20211016-165140.mp4 6.13_6277_Player358-f153ac423f61-20210921-083016.mp4\r\n6.13_15016_Player724-f153ac423f61-20211016-165333.mp4 6.13_6278_Player358-f153ac423f61-20210921-083925.mp4\r\n6.13_15017_Player724-f153ac423f61-20211016-165524.mp4 6.13_6279_Player358-f153ac423f61-20210921-084841.mp4\r\n6.13_15018_Player724-f153ac423f61-20211016-165712.mp4 6.13_627_Player123-f153ac423f61-20210804-085547.mp4\r\n6.13_15019_Player724-f153ac423f61-20211016-165859.mp4 6.13_6280_Player358-f153ac423f61-20210921-085752.mp4\r\n6.13_1501_Player15-f153ac423f61-20211221-021807.mp4 6.13_6281_Player358-f153ac423f61-20210921-090657.mp4\r\n6.13_15020_Player724-f153ac423f61-20211016-170051.mp4 6.13_6282_Player358-f153ac423f61-20210921-091604.mp4\r\n6.13_15021_Player724-f153ac423f61-20211016-170229.mp4 6.13_6283_Player358-f153ac423f61-20210921-092509.mp4\r\n6.13_15022_Player724-f153ac423f61-20211016-170429.mp4 6.13_6284_Player358-f153ac423f61-20210921-093421.mp4\r\n6.13_15023_Player724-f153ac423f61-20211016-170615.mp4 6.13_6285_Player358-f153ac423f61-20210921-094330.mp4\r\n6.13_15024_Player724-f153ac423f61-20211016-170808.mp4 6.13_6286_Player358-f153ac423f61-20210921-095242.mp4\r\n6.13_15025_Player724-f153ac423f61-20211016-170947.mp4 6.13_6287_Player358-f153ac423f61-20210921-100145.mp4\r\n6.13_15026_Player724-f153ac423f61-20211016-171133.mp4 6.13_6288_Player358-f153ac423f61-20210921-101047.mp4\r\n6.13_15027_Player724-f153ac423f61-20211016-171323.mp4 6.13_6289_Player358-f153ac423f61-20210921-101956.mp4\r\n6.13_15028_Player724-f153ac423f61-20211224-105214.mp4 6.13_628_Player123-f153ac423f61-20210804-092211.mp4\r\n6.13_15029_Player724-f153ac423f61-20211224-110035.mp4 6.13_6290_Player358-f153ac423f61-20210921-103010.mp4\r\n6.13_1502_Player15-f153ac423f61-20211221-021908.mp4 6.13_6291_Player358-f153ac423f61-20211017-232428.mp4\r\n6.13_15030_Player724-f153ac423f61-20211224-110937.mp4 6.13_6292_Player358-f153ac423f61-20211017-232601.mp4\r\n6.13_15031_Player724-f153ac423f61-20211224-111742.mp4 6.13_6293_Player358-f153ac423f61-20211017-232734.mp4\r\n6.13_15032_Player724-f153ac423f61-20211224-112625.mp4 6.13_6294_Player358-f153ac423f61-20211017-232913.mp4\r\n6.13_15033_Player725-f153ac423f61-20210814-025027.mp4 6.13_6295_Player358-f153ac423f61-20211017-233045.mp4\r\n6.13_15034_Player725-f153ac423f61-20210814-025743.mp4 6.13_6296_Player358-f153ac423f61-20211017-233219.mp4\r\n6.13_15035_Player725-f153ac423f61-20210814-030848.mp4 6.13_6297_Player358-f153ac423f61-20211017-233351.mp4\r\n6.13_15036_Player725-f153ac423f61-20210814-032658.mp4 6.13_6298_Player358-f153ac423f61-20211017-233530.mp4\r\n6.13_15037_Player725-f153ac423f61-20210814-040322.mp4 6.13_6299_Player358-f153ac423f61-20211017-233715.mp4\r\n6.13_15038_Player725-f153ac423f61-20210829-103601.mp4 6.13_629_Player123-f153ac423f61-20210804-094743.mp4\r\n6.13_15039_Player725-f153ac423f61-20210829-104315.mp4 6.13_6300_Player358-f153ac423f61-20211017-233854.mp4\r\n6.13_1503_Player15-f153ac423f61-20211221-022008.mp4 6.13_6301_Player358-f153ac423f61-20211017-234026.mp4\r\n6.13_15040_Player728-f153ac423f61-20210723-110957.mp4 6.13_6302_Player358-f153ac423f61-20211017-234153.mp4\r\n6.13_15041_Player728-f153ac423f61-20210723-111428.mp4 6.13_6303_Player358-f153ac423f61-20211017-234315.mp4\r\n6.13_15042_Player728-f153ac423f61-20210723-111841.mp4 6.13_6304_Player358-f153ac423f61-20211017-234444.mp4\r\n6.13_15043_Player728-f153ac423f61-20210723-112210.mp4 6.13_6305_Player358-f153ac423f61-20211017-234615.mp4\r\n6.13_15044_Player728-f153ac423f61-20210723-112626.mp4 6.13_6306_Player358-f153ac423f61-20211017-234739.mp4\r\n6.13_15045_Player728-f153ac423f61-20210723-113044.mp4 6.13_6307_Player358-f153ac423f61-20211017-234912.mp4\r\n6.13_15046_Player728-f153ac423f61-20210723-113429.mp4 6.13_6308_Player358-f153ac423f61-20211017-235038.mp4\r\n6.13_15047_Player728-f153ac423f61-20210723-113845.mp4 6.13_6309_Player358-f153ac423f61-20211017-235204.mp4\r\n6.13_15048_Player728-f153ac423f61-20210723-114237.mp4 6.13_630_Player123-f153ac423f61-20210804-101442.mp4\r\n6.13_15049_Player728-f153ac423f61-20210723-114542.mp4 6.13_6310_Player358-f153ac423f61-20211017-235339.mp4\r\n6.13_1504_Player15-f153ac423f61-20211221-022109.mp4 6.13_6311_Player358-f153ac423f61-20211017-235518.mp4\r\n6.13_15050_Player728-f153ac423f61-20210723-114853.mp4 6.13_6312_Player358-f153ac423f61-20211017-235705.mp4\r\n6.13_15051_Player729-f153ac423f61-20210806-220527.mp4 6.13_6313_Player358-f153ac423f61-20211017-235853.mp4\r\n6.13_15052_Player729-f153ac423f61-20210806-220632.mp4 6.13_6314_Player358-f153ac423f61-20211018-000044.mp4\r\n6.13_15053_Player729-f153ac423f61-20210806-220734.mp4 6.13_6315_Player358-f153ac423f61-20211018-000218.mp4\r\n6.13_15054_Player729-f153ac423f61-20210806-220835.mp4 6.13_6316_Player358-f153ac423f61-20211018-000340.mp4\r\n6.13_15055_Player729-f153ac423f61-20210806-220936.mp4 6.13_6317_Player358-f153ac423f61-20211018-000502.mp4\r\n6.13_15056_Player729-f153ac423f61-20210806-221038.mp4 6.13_6318_Player358-f153ac423f61-20211018-000625.mp4\r\n6.13_15057_Player729-f153ac423f61-20210806-221139.mp4 6.13_6319_Player358-f153ac423f61-20211018-000809.mp4\r\n6.13_15058_Player729-f153ac423f61-20210806-221239.mp4 6.13_631_Player123-f153ac423f61-20210804-103900.mp4\r\n6.13_15059_Player729-f153ac423f61-20210806-221340.mp4 6.13_6320_Player358-f153ac423f61-20211018-000952.mp4\r\n6.13_1505_Player15-f153ac423f61-20211221-022210.mp4 6.13_6321_Player358-f153ac423f61-20211018-001138.mp4\r\n6.13_15060_Player729-f153ac423f61-20210806-221440.mp4 6.13_6322_Player358-f153ac423f61-20211018-001321.mp4\r\n6.13_15061_Player729-f153ac423f61-20210806-221540.mp4 6.13_6323_Player358-f153ac423f61-20211018-001510.mp4\r\n6.13_15062_Player729-f153ac423f61-20210806-221641.mp4 6.13_6324_Player358-f153ac423f61-20211018-001648.mp4\r\n6.13_15063_Player729-f153ac423f61-20210806-221742.mp4 6.13_6325_Player358-f153ac423f61-20211018-001811.mp4\r\n6.13_15064_Player729-f153ac423f61-20210806-221845.mp4 6.13_6326_Player358-f153ac423f61-20211018-001933.mp4\r\n6.13_15065_Player729-f153ac423f61-20210806-221946.mp4 6.13_6327_Player358-f153ac423f61-20211018-002056.mp4\r\n6.13_15066_Player729-f153ac423f61-20210806-222046.mp4 6.13_6328_Player358-f153ac423f61-20211217-115832.mp4\r\n6.13_15067_Player729-f153ac423f61-20210806-222147.mp4 6.13_6329_Player358-f153ac423f61-20211217-120446.mp4\r\n6.13_15068_Player729-f153ac423f61-20210806-222247.mp4 6.13_632_Player123-f153ac423f61-20210804-110746.mp4\r\n6.13_15069_Player729-f153ac423f61-20210806-222348.mp4 6.13_6330_Player358-f153ac423f61-20211217-121052.mp4\r\n6.13_1506_Player15-f153ac423f61-20211221-022310.mp4 6.13_6331_Player358-f153ac423f61-20211217-121758.mp4\r\n6.13_15070_Player729-f153ac423f61-20210806-222448.mp4 6.13_6332_Player358-f153ac423f61-20211217-122504.mp4\r\n6.13_15071_Player729-f153ac423f61-20210806-222548.mp4 6.13_6333_Player358-f153ac423f61-20211217-123212.mp4\r\n6.13_15072_Player729-f153ac423f61-20210806-222649.mp4 6.13_6334_Player358-f153ac423f61-20211217-123916.mp4\r\n6.13_15073_Player729-f153ac423f61-20210806-222749.mp4 6.13_6335_Player358-f153ac423f61-20211217-124621.mp4\r\n6.13_15074_Player729-f153ac423f61-20210806-222850.mp4 6.13_6336_Player358-f153ac423f61-20211217-125226.mp4\r\n6.13_15075_Player729-f153ac423f61-20210806-222951.mp4 6.13_6337_Player358-f153ac423f61-20211217-125931.mp4\r\n6.13_15076_Player729-f153ac423f61-20210806-223054.mp4 6.13_6338_Player358-f153ac423f61-20211217-130543.mp4\r\n6.13_15077_Player729-f153ac423f61-20210806-223157.mp4 6.13_6339_Player359-f153ac423f61-20211214-131554.mp4\r\n6.13_15078_Player729-f153ac423f61-20210806-223258.mp4 6.13_633_Player123-f153ac423f61-20210804-113230.mp4\r\n6.13_15079_Player729-f153ac423f61-20210806-223358.mp4 6.13_6340_Player359-f153ac423f61-20211214-131810.mp4\r\n6.13_1507_Player15-f153ac423f61-20211221-022411.mp4 6.13_6341_Player359-f153ac423f61-20211214-132058.mp4\r\n6.13_15080_Player729-f153ac423f61-20210806-223459.mp4 6.13_6342_Player359-f153ac423f61-20211214-132339.mp4\r\n6.13_15081_Player729-f153ac423f61-20210806-223600.mp4 6.13_6343_Player359-f153ac423f61-20211214-132612.mp4\r\n6.13_15082_Player729-f153ac423f61-20210806-223701.mp4 6.13_6344_Player359-f153ac423f61-20211214-132832.mp4\r\n6.13_15083_Player729-f153ac423f61-20210806-223801.mp4 6.13_6345_Player359-f153ac423f61-20211214-133058.mp4\r\n6.13_15084_Player729-f153ac423f61-20210806-223902.mp4 6.13_6346_Player359-f153ac423f61-20211214-133317.mp4\r\n6.13_15085_Player729-f153ac423f61-20210806-224004.mp4 6.13_6347_Player359-f153ac423f61-20211214-133543.mp4\r\n6.13_15086_Player729-f153ac423f61-20210806-224105.mp4 6.13_6348_Player359-f153ac423f61-20211214-133807.mp4\r\n6.13_15087_Player729-f153ac423f61-20210806-224206.mp4 6.13_6349_Player359-f153ac423f61-20211214-134037.mp4\r\n6.13_15088_Player729-f153ac423f61-20210806-224309.mp4 6.13_634_Player123-f153ac423f61-20210804-115802.mp4\r\n6.13_15089_Player729-f153ac423f61-20210806-224409.mp4 6.13_6350_Player359-f153ac423f61-20211214-134240.mp4\r\n6.13_1508_Player15-f153ac423f61-20211221-022511.mp4 6.13_6351_Player359-f153ac423f61-20211214-134441.mp4\r\n6.13_15090_Player729-f153ac423f61-20210806-224510.mp4 6.13_6352_Player359-f153ac423f61-20211214-134641.mp4\r\n6.13_15091_Player729-f153ac423f61-20210806-224611.mp4 6.13_6353_Player36-2df0e8361a99-20211217-215553.mp4\r\n6.13_15092_Player729-f153ac423f61-20210806-224712.mp4 6.13_6354_Player36-2df0e8361a99-20211217-215753.mp4\r\n6.13_15093_Player729-f153ac423f61-20210806-224813.mp4 6.13_6355_Player36-2df0e8361a99-20211217-215953.mp4\r\n6.13_15094_Player729-f153ac423f61-20210806-224915.mp4 6.13_6356_Player36-2df0e8361a99-20211217-220152.mp4\r\n6.13_15095_Player729-f153ac423f61-20210806-225016.mp4 6.13_6357_Player36-2df0e8361a99-20211217-220352.mp4\r\n6.13_15096_Player729-f153ac423f61-20210806-225117.mp4 6.13_6358_Player36-2df0e8361a99-20211217-220552.mp4\r\n6.13_15097_Player729-f153ac423f61-20210806-225218.mp4 6.13_6359_Player36-2df0e8361a99-20211217-220751.mp4\r\n6.13_15098_Player729-f153ac423f61-20210806-225318.mp4 6.13_635_Player123-f153ac423f61-20210804-122545.mp4\r\n6.13_15099_Player729-f153ac423f61-20210806-225418.mp4 6.13_6360_Player36-2df0e8361a99-20211217-220851.mp4\r\n6.13_1509_Player15-f153ac423f61-20211221-022612.mp4 6.13_6361_Player36-2df0e8361a99-20211217-220951.mp4\r\n6.13_150_Player104-f153ac423f61-20210828-131024.mp4 6.13_6362_Player36-2df0e8361a99-20211217-221051.mp4\r\n6.13_15100_Player729-f153ac423f61-20210806-225519.mp4 6.13_6363_Player36-2df0e8361a99-20211217-221151.mp4\r\n6.13_15101_Player729-f153ac423f61-20210806-225622.mp4 6.13_6364_Player36-2df0e8361a99-20211217-221250.mp4\r\n6.13_15102_Player729-f153ac423f61-20210806-225725.mp4 6.13_6365_Player36-2df0e8361a99-20211217-221350.mp4\r\n6.13_15103_Player729-f153ac423f61-20210806-225827.mp4 6.13_6366_Player36-2df0e8361a99-20211217-221450.mp4\r\n6.13_15104_Player729-f153ac423f61-20210806-225929.mp4 6.13_6367_Player36-2df0e8361a99-20211217-221550.mp4\r\n6.13_15105_Player729-f153ac423f61-20210806-230030.mp4 6.13_6368_Player36-366928a549ff-20211217-221732.mp4\r\n6.13_15106_Player729-f153ac423f61-20210806-230131.mp4 6.13_6369_Player36-366928a549ff-20211217-221832.mp4\r\n6.13_15107_Player729-f153ac423f61-20210806-230232.mp4 6.13_636_Player123-f153ac423f61-20210804-125257.mp4\r\n6.13_15108_Player729-f153ac423f61-20210806-230333.mp4 6.13_6370_Player36-366928a549ff-20211217-222032.mp4\r\n6.13_15109_Player729-f153ac423f61-20210806-230434.mp4 6.13_6371_Player36-366928a549ff-20211217-222232.mp4\r\n6.13_1510_Player15-f153ac423f61-20211221-022712.mp4 6.13_6372_Player36-366928a549ff-20211217-222431.mp4\r\n6.13_15110_Player729-f153ac423f61-20210806-230534.mp4 6.13_6373_Player36-366928a549ff-20211217-222631.mp4\r\n6.13_15111_Player729-f153ac423f61-20210806-230634.mp4 6.13_6374_Player36-366928a549ff-20211217-222731.mp4\r\n6.13_15112_Player729-f153ac423f61-20210806-230735.mp4 6.13_6375_Player36-366928a549ff-20211217-222830.mp4\r\n6.13_15113_Player729-f153ac423f61-20210806-230837.mp4 6.13_6376_Player36-dda0d9cdf1e5-20211217-215251.mp4\r\n6.13_15114_Player729-f153ac423f61-20210806-230939.mp4 6.13_6377_Player36-f153ac423f61-20210813-100352.mp4\r\n6.13_15115_Player729-f153ac423f61-20210806-231040.mp4 6.13_6378_Player36-f153ac423f61-20210813-100512.mp4\r\n6.13_15116_Player729-f153ac423f61-20210806-231140.mp4 6.13_6379_Player36-f153ac423f61-20210813-100635.mp4\r\n6.13_15117_Player729-f153ac423f61-20210806-231240.mp4 6.13_637_Player123-f153ac423f61-20210804-132013.mp4\r\n6.13_15118_Player729-f153ac423f61-20210806-231341.mp4 6.13_6380_Player36-f153ac423f61-20210813-100811.mp4\r\n6.13_15119_Player729-f153ac423f61-20210806-231442.mp4 6.13_6381_Player36-f153ac423f61-20210813-100944.mp4\r\n6.13_1511_Player15-f153ac423f61-20211221-022812.mp4 6.13_6382_Player36-f153ac423f61-20210813-101103.mp4\r\n6.13_15120_Player729-f153ac423f61-20210806-231543.mp4 6.13_6383_Player36-f153ac423f61-20210813-101229.mp4\r\n6.13_15121_Player729-f153ac423f61-20210806-231643.mp4 6.13_6384_Player36-f153ac423f61-20210813-101402.mp4\r\n6.13_15122_Player729-f153ac423f61-20210806-231744.mp4 6.13_6385_Player36-f153ac423f61-20210813-101541.mp4\r\n6.13_15123_Player729-f153ac423f61-20210806-231844.mp4 6.13_6386_Player36-f153ac423f61-20210813-101708.mp4\r\n6.13_15124_Player729-f153ac423f61-20210806-231945.mp4 6.13_6387_Player36-f153ac423f61-20210813-101840.mp4\r\n6.13_15125_Player729-f153ac423f61-20210806-232045.mp4 6.13_6388_Player36-f153ac423f61-20210813-102013.mp4\r\n6.13_15126_Player729-f153ac423f61-20210806-232146.mp4 6.13_6389_Player36-f153ac423f61-20210813-102136.mp4\r\n6.13_15127_Player729-f153ac423f61-20210806-232247.mp4 6.13_638_Player123-f153ac423f61-20210804-134818.mp4\r\n6.13_15128_Player729-f153ac423f61-20210806-232347.mp4 6.13_6390_Player36-f153ac423f61-20210813-102306.mp4\r\n6.13_15129_Player729-f153ac423f61-20210806-232448.mp4 6.13_6391_Player36-f153ac423f61-20210813-102440.mp4\r\n6.13_1512_Player15-f153ac423f61-20211221-022913.mp4 6.13_6392_Player36-f153ac423f61-20210813-102558.mp4\r\n6.13_15130_Player729-f153ac423f61-20210806-232548.mp4 6.13_6393_Player36-f153ac423f61-20210813-102719.mp4\r\n6.13_15131_Player729-f153ac423f61-20210806-232648.mp4 6.13_6394_Player36-f153ac423f61-20210813-102853.mp4\r\n6.13_15132_Player729-f153ac423f61-20210806-232749.mp4 6.13_6395_Player36-f153ac423f61-20210813-103021.mp4\r\n6.13_15133_Player729-f153ac423f61-20210806-232849.mp4 6.13_6396_Player36-f153ac423f61-20210813-103149.mp4\r\n6.13_15134_Player729-f153ac423f61-20210806-232949.mp4 6.13_6397_Player36-f153ac423f61-20210813-103317.mp4\r\n6.13_15135_Player729-f153ac423f61-20210806-233051.mp4 6.13_6398_Player36-f153ac423f61-20210813-103449.mp4\r\n6.13_15136_Player729-f153ac423f61-20210806-233157.mp4 6.13_6399_Player36-f153ac423f61-20210813-103633.mp4\r\n6.13_15137_Player729-f153ac423f61-20210806-233259.mp4 6.13_639_Player123-f153ac423f61-20210913-103652.mp4\r\n6.13_15138_Player729-f153ac423f61-20210806-233359.mp4 6.13_6400_Player36-f153ac423f61-20210813-103819.mp4\r\n6.13_15139_Player729-f153ac423f61-20210806-233500.mp4 6.13_6401_Player36-f153ac423f61-20210813-104011.mp4\r\n6.13_1513_Player15-f153ac423f61-20211221-023013.mp4 6.13_6402_Player36-f153ac423f61-20210813-104154.mp4\r\n6.13_15140_Player729-f153ac423f61-20210806-233603.mp4 6.13_6403_Player36-f153ac423f61-20210813-104325.mp4\r\n6.13_15141_Player729-f153ac423f61-20210806-233704.mp4 6.13_6404_Player36-f153ac423f61-20210813-104503.mp4\r\n6.13_15142_Player729-f153ac423f61-20210806-233805.mp4 6.13_6405_Player36-f153ac423f61-20210813-104642.mp4\r\n6.13_15143_Player729-f153ac423f61-20210806-233906.mp4 6.13_6406_Player36-f153ac423f61-20210813-104821.mp4\r\n6.13_15144_Player729-f153ac423f61-20210806-234007.mp4 6.13_6407_Player36-f153ac423f61-20210813-104944.mp4\r\n6.13_15145_Player729-f153ac423f61-20210806-234107.mp4 6.13_6408_Player36-f153ac423f61-20210813-105121.mp4\r\n6.13_15146_Player729-f153ac423f61-20210806-234208.mp4 6.13_6409_Player36-f153ac423f61-20210813-105255.mp4\r\n6.13_15147_Player729-f153ac423f61-20210806-234309.mp4 6.13_640_Player123-f153ac423f61-20210913-103756.mp4\r\n6.13_15148_Player729-f153ac423f61-20210806-234413.mp4 6.13_6410_Player36-f153ac423f61-20210813-105415.mp4\r\n6.13_15149_Player729-f153ac423f61-20210806-234515.mp4 6.13_6411_Player36-f153ac423f61-20210813-105532.mp4\r\n6.13_1514_Player15-f153ac423f61-20211221-023113.mp4 6.13_6412_Player36-f153ac423f61-20210813-105704.mp4\r\n6.13_15150_Player729-f153ac423f61-20210806-234618.mp4 6.13_6413_Player36-f153ac423f61-20210813-105839.mp4\r\n6.13_15151_Player729-f153ac423f61-20210806-234726.mp4 6.13_6414_Player36-f153ac423f61-20210813-110009.mp4\r\n6.13_15152_Player729-f153ac423f61-20210806-234829.mp4 6.13_6415_Player36-f153ac423f61-20210813-110158.mp4\r\n6.13_15153_Player729-f153ac423f61-20210806-234931.mp4 6.13_6416_Player36-f153ac423f61-20210813-110343.mp4\r\n6.13_15154_Player729-f153ac423f61-20211023-161048.mp4 6.13_6417_Player36-f153ac423f61-20210813-110528.mp4\r\n6.13_15155_Player729-f153ac423f61-20211023-161642.mp4 6.13_6418_Player36-f153ac423f61-20210813-110712.mp4\r\n6.13_15156_Player729-f153ac423f61-20211023-162138.mp4 6.13_6419_Player36-f153ac423f61-20210813-110903.mp4\r\n6.13_15157_Player729-f153ac423f61-20211023-162649.mp4 6.13_641_Player123-f153ac423f61-20210913-103856.mp4\r\n6.13_15158_Player729-f153ac423f61-20211023-163131.mp4 6.13_6420_Player36-f153ac423f61-20210813-111056.mp4\r\n6.13_15159_Player729-f153ac423f61-20211023-163725.mp4 6.13_6421_Player36-f153ac423f61-20210813-111233.mp4\r\n6.13_1515_Player150-f153ac423f61-20211028-153723.mp4 6.13_6422_Player36-f153ac423f61-20210813-111405.mp4\r\n6.13_15160_Player729-f153ac423f61-20211023-164244.mp4 6.13_6423_Player36-f153ac423f61-20210813-111542.mp4\r\n6.13_15161_Player729-f153ac423f61-20211023-164746.mp4 6.13_6424_Player36-f153ac423f61-20210813-111725.mp4\r\n6.13_15162_Player729-f153ac423f61-20211023-165241.mp4 6.13_6425_Player36-f153ac423f61-20210813-111859.mp4\r\n6.13_15163_Player729-f153ac423f61-20211023-165845.mp4 6.13_6426_Player36-f153ac423f61-20210813-112038.mp4\r\n6.13_15164_Player730-0100800bf82c-20210902-133954.mp4 6.13_6427_Player36-f153ac423f61-20210813-112205.mp4\r\n6.13_15165_Player730-025aabb0dbcd-20210902-124819.mp4 6.13_6428_Player36-f153ac423f61-20210813-112343.mp4\r\n6.13_15166_Player730-025aabb0dbcd-20210902-124924.mp4 6.13_6429_Player36-f153ac423f61-20210813-112519.mp4\r\n6.13_15167_Player730-025aabb0dbcd-20210902-125027.mp4 6.13_642_Player123-f153ac423f61-20211212-192559.mp4\r\n6.13_15168_Player730-025aabb0dbcd-20210902-125129.mp4 6.13_6430_Player36-f153ac423f61-20210813-112650.mp4\r\n6.13_15169_Player730-025aabb0dbcd-20210902-125230.mp4 6.13_6431_Player36-f153ac423f61-20210813-112830.mp4\r\n6.13_1516_Player150-f153ac423f61-20211028-154213.mp4 6.13_6432_Player36-f153ac423f61-20210813-113009.mp4\r\n6.13_15170_Player730-092c1e4baff6-20211212-010900.mp4 6.13_6433_Player36-f153ac423f61-20210813-113142.mp4\r\n6.13_15171_Player730-092c1e4baff6-20211212-011005.mp4 6.13_6434_Player36-f153ac423f61-20210813-113307.mp4\r\n6.13_15172_Player730-092c1e4baff6-20211212-011107.mp4 6.13_6435_Player36-f153ac423f61-20210813-113436.mp4\r\n6.13_15173_Player730-092c1e4baff6-20211212-011210.mp4 6.13_6436_Player36-f153ac423f61-20210813-113608.mp4\r\n6.13_15174_Player730-092c1e4baff6-20211212-011313.mp4 6.13_6437_Player36-f153ac423f61-20210813-113736.mp4\r\n6.13_15175_Player730-092c1e4baff6-20211212-011420.mp4 6.13_6438_Player36-f153ac423f61-20210813-113912.mp4\r\n6.13_15176_Player730-092c1e4baff6-20211212-011528.mp4 6.13_6439_Player36-f153ac423f61-20210813-114103.mp4\r\n6.13_15177_Player730-092c1e4baff6-20211212-011635.mp4 6.13_643_Player123-f153ac423f61-20211212-192707.mp4\r\n6.13_15178_Player730-092c1e4baff6-20211212-011742.mp4 6.13_6440_Player36-f153ac423f61-20210813-114240.mp4\r\n6.13_15179_Player730-092c1e4baff6-20211212-011857.mp4 6.13_6441_Player36-f153ac423f61-20210813-114402.mp4\r\n6.13_1517_Player150-f153ac423f61-20211028-154625.mp4 6.13_6442_Player36-f153ac423f61-20210813-114542.mp4\r\n6.13_15180_Player730-092c1e4baff6-20211212-012009.mp4 6.13_6443_Player36-f153ac423f61-20210813-114722.mp4\r\n6.13_15181_Player730-092c1e4baff6-20211212-012122.mp4 6.13_6444_Player36-f153ac423f61-20210813-114855.mp4\r\n6.13_15182_Player730-092c1e4baff6-20211212-012236.mp4 6.13_6445_Player36-f153ac423f61-20210813-115024.mp4\r\n6.13_15183_Player730-092c1e4baff6-20211212-012351.mp4 6.13_6446_Player36-f153ac423f61-20210813-115145.mp4\r\n6.13_15184_Player730-092c1e4baff6-20211212-012508.mp4 6.13_6447_Player36-f153ac423f61-20210813-115305.mp4\r\n6.13_15185_Player730-092c1e4baff6-20211212-012615.mp4 6.13_6448_Player36-f153ac423f61-20210813-115436.mp4\r\n6.13_15186_Player730-092c1e4baff6-20211212-012725.mp4 6.13_6449_Player36-f153ac423f61-20210813-115607.mp4\r\n6.13_15187_Player730-092c1e4baff6-20211212-012839.mp4 6.13_644_Player123-f153ac423f61-20211212-192814.mp4\r\n6.13_15188_Player730-092c1e4baff6-20211212-012954.mp4 6.13_6450_Player36-f153ac423f61-20210813-115740.mp4\r\n6.13_15189_Player730-092c1e4baff6-20211212-013220.mp4 6.13_6451_Player36-f153ac423f61-20210813-115909.mp4\r\n6.13_1518_Player150-f153ac423f61-20211028-155138.mp4 6.13_6452_Player36-f153ac423f61-20210813-120041.mp4\r\n6.13_15190_Player730-092c1e4baff6-20211212-013334.mp4 6.13_6453_Player36-f153ac423f61-20210813-120213.mp4\r\n6.13_15191_Player730-092c1e4baff6-20211212-013447.mp4 6.13_6454_Player36-f153ac423f61-20210813-120347.mp4\r\n6.13_15192_Player730-092c1e4baff6-20211212-013555.mp4 6.13_6455_Player36-f153ac423f61-20210813-120513.mp4\r\n6.13_15193_Player730-092c1e4baff6-20211212-013710.mp4 6.13_6456_Player36-f153ac423f61-20210813-120637.mp4\r\n6.13_15194_Player730-12209c316696-20211121-202843.mp4 6.13_6457_Player36-f153ac423f61-20210813-120755.mp4\r\n6.13_15195_Player730-12209c316696-20211121-203026.mp4 6.13_6458_Player36-f153ac423f61-20210813-120930.mp4\r\n6.13_15196_Player730-12209c316696-20211121-203210.mp4 6.13_6459_Player36-f153ac423f61-20210813-121107.mp4\r\n6.13_15197_Player730-12209c316696-20211121-203347.mp4 6.13_645_Player123-f153ac423f61-20211212-192925.mp4\r\n6.13_15198_Player730-12209c316696-20211121-203532.mp4 6.13_6460_Player36-f153ac423f61-20210813-121241.mp4\r\n6.13_15199_Player730-12209c316696-20211121-203717.mp4 6.13_6461_Player36-f153ac423f61-20210813-121416.mp4\r\n6.13_1519_Player150-f153ac423f61-20211028-155541.mp4 6.13_6462_Player36-f153ac423f61-20210813-121550.mp4\r\n6.13_151_Player104-f153ac423f61-20210828-131734.mp4 6.13_6463_Player36-f153ac423f61-20210813-121723.mp4\r\n6.13_15200_Player730-12209c316696-20211121-203859.mp4 6.13_6464_Player36-f153ac423f61-20210813-121851.mp4\r\n6.13_15201_Player730-12209c316696-20211121-204042.mp4 6.13_6465_Player36-f153ac423f61-20210813-122024.mp4\r\n6.13_15202_Player730-12209c316696-20211121-204231.mp4 6.13_6466_Player36-f153ac423f61-20210813-122156.mp4\r\n6.13_15203_Player730-12209c316696-20211121-204423.mp4 6.13_6467_Player36-f153ac423f61-20210813-122325.mp4\r\n6.13_15204_Player730-12209c316696-20211121-204615.mp4 6.13_6468_Player36-f153ac423f61-20210813-122457.mp4\r\n6.13_15205_Player730-12209c316696-20211121-204807.mp4 6.13_6469_Player36-f153ac423f61-20210813-122623.mp4\r\n6.13_15206_Player730-12209c316696-20211121-205000.mp4 6.13_646_Player123-f153ac423f61-20211212-193039.mp4\r\n6.13_15207_Player730-12209c316696-20211121-205134.mp4 6.13_6470_Player36-f153ac423f61-20210813-122747.mp4\r\n6.13_15208_Player730-12209c316696-20211121-205316.mp4 6.13_6471_Player36-f153ac423f61-20210813-122917.mp4\r\n6.13_15209_Player730-12209c316696-20211121-205459.mp4 6.13_6472_Player36-f153ac423f61-20210813-123052.mp4\r\n6.13_1520_Player150-f153ac423f61-20211028-155900.mp4 6.13_6473_Player36-f153ac423f61-20211215-154159.mp4\r\n6.13_15210_Player730-12209c316696-20211121-205645.mp4 6.13_6474_Player36-f153ac423f61-20211215-154309.mp4\r\n6.13_15211_Player730-12209c316696-20211121-205838.mp4 6.13_6475_Player36-f153ac423f61-20211215-154415.mp4\r\n6.13_15212_Player730-12209c316696-20211121-210020.mp4 6.13_6476_Player36-f153ac423f61-20211215-154518.mp4\r\n6.13_15213_Player730-12209c316696-20211121-210203.mp4 6.13_6477_Player36-f153ac423f61-20211215-154621.mp4\r\n6.13_15214_Player730-12209c316696-20211121-210346.mp4 6.13_6478_Player36-f153ac423f61-20211215-154725.mp4\r\n6.13_15215_Player730-12209c316696-20211121-210524.mp4 6.13_6479_Player36-f153ac423f61-20211215-154830.mp4\r\n6.13_15216_Player730-36affeb31950-20210902-130955.mp4 6.13_647_Player123-f153ac423f61-20211212-193154.mp4\r\n6.13_15217_Player730-37282964b751-20210902-131113.mp4 6.13_6480_Player36-f153ac423f61-20211215-154933.mp4\r\n6.13_15218_Player730-4fe10a5d3311-20210902-132513.mp4 6.13_6481_Player36-f153ac423f61-20211215-155035.mp4\r\n6.13_15219_Player730-4fe10a5d3311-20210902-132919.mp4 6.13_6482_Player36-f153ac423f61-20211215-155139.mp4\r\n6.13_1521_Player150-f153ac423f61-20211028-160246.mp4 6.13_6483_Player36-f153ac423f61-20211215-155245.mp4\r\n6.13_15220_Player730-4fe10a5d3311-20210902-133530.mp4 6.13_6484_Player36-f153ac423f61-20211215-155354.mp4\r\n6.13_15221_Player730-74a875b2fcb0-20210902-135443.mp4 6.13_6485_Player36-f153ac423f61-20211215-155500.mp4\r\n6.13_15222_Player730-7b1ddbf3068a-20210902-124303.mp4 6.13_6486_Player36-f153ac423f61-20211215-155604.mp4\r\n6.13_15223_Player730-7b1ddbf3068a-20210902-124408.mp4 6.13_6487_Player36-f153ac423f61-20211215-155709.mp4\r\n6.13_15224_Player730-7b1ddbf3068a-20210902-124514.mp4 6.13_6488_Player36-f153ac423f61-20211215-155814.mp4\r\n6.13_15225_Player730-7b1ddbf3068a-20210902-124622.mp4 6.13_6489_Player36-f153ac423f61-20211215-155921.mp4\r\n6.13_15226_Player730-986685bdcad0-20211121-182200.mp4 6.13_648_Player123-f153ac423f61-20211212-193308.mp4\r\n6.13_15227_Player730-986685bdcad0-20211121-182309.mp4 6.13_6490_Player36-f153ac423f61-20211215-160027.mp4\r\n6.13_15228_Player730-986685bdcad0-20211121-182412.mp4 6.13_6491_Player36-f153ac423f61-20211215-160138.mp4\r\n6.13_15229_Player730-986685bdcad0-20211121-182528.mp4 6.13_6492_Player36-f153ac423f61-20211215-160240.mp4\r\n6.13_1522_Player150-f153ac423f61-20211028-160638.mp4 6.13_6493_Player36-f153ac423f61-20211215-160342.mp4\r\n6.13_15230_Player730-986685bdcad0-20211121-182645.mp4 6.13_6494_Player36-f153ac423f61-20211215-160554.mp4\r\n6.13_15231_Player730-986685bdcad0-20211121-182752.mp4 6.13_6495_Player36-f153ac423f61-20211215-160701.mp4\r\n6.13_15232_Player730-986685bdcad0-20211121-182906.mp4 6.13_6496_Player36-f153ac423f61-20211217-213640.mp4\r\n6.13_15233_Player730-986685bdcad0-20211121-183015.mp4 6.13_6497_Player36-f153ac423f61-20211217-213740.mp4\r\n6.13_15234_Player730-986685bdcad0-20211121-183134.mp4 6.13_6498_Player36-f153ac423f61-20211217-213840.mp4\r\n6.13_15235_Player730-986685bdcad0-20211121-183240.mp4 6.13_6499_Player36-f153ac423f61-20211217-213940.mp4\r\n6.13_15236_Player730-986685bdcad0-20211121-183343.mp4 6.13_649_Player123-f153ac423f61-20211212-193419.mp4\r\n6.13_15237_Player730-986685bdcad0-20211121-183446.mp4 6.13_6500_Player36-f153ac423f61-20211217-214040.mp4\r\n6.13_15238_Player730-986685bdcad0-20211121-183553.mp4 6.13_6501_Player36-f153ac423f61-20211217-214140.mp4\r\n6.13_15239_Player730-986685bdcad0-20211121-183705.mp4 6.13_6502_Player36-f153ac423f61-20211217-214244.mp4\r\n6.13_1523_Player150-f153ac423f61-20211028-161013.mp4 6.13_6503_Player36-f153ac423f61-20211217-214345.mp4\r\n6.13_15240_Player730-986685bdcad0-20211121-183828.mp4 6.13_6504_Player36-f153ac423f61-20211217-214445.mp4\r\n6.13_15241_Player730-986685bdcad0-20211121-183948.mp4 6.13_6505_Player36-f153ac423f61-20211217-214545.mp4\r\n6.13_15242_Player730-986685bdcad0-20211121-184057.mp4 6.13_6506_Player36-f153ac423f61-20211217-214645.mp4\r\n6.13_15243_Player730-986685bdcad0-20211121-184214.mp4 6.13_6507_Player36-f153ac423f61-20211217-214845.mp4\r\n6.13_15244_Player730-986685bdcad0-20211121-184329.mp4 6.13_6508_Player360-f153ac423f61-20210903-221610.mp4\r\n6.13_15245_Player730-986685bdcad0-20211121-184445.mp4 6.13_6509_Player360-f153ac423f61-20210903-221953.mp4\r\n6.13_15246_Player730-986685bdcad0-20211121-184557.mp4 6.13_650_Player123-f153ac423f61-20211212-193533.mp4\r\n6.13_15247_Player730-986685bdcad0-20211121-184700.mp4 6.13_6510_Player360-f153ac423f61-20210903-222247.mp4\r\n6.13_15248_Player730-986685bdcad0-20211121-184808.mp4 6.13_6511_Player360-f153ac423f61-20210903-222540.mp4\r\n6.13_15249_Player730-986685bdcad0-20211121-184949.mp4 6.13_6512_Player360-f153ac423f61-20210903-222834.mp4\r\n6.13_1524_Player150-f153ac423f61-20211028-161329.mp4 6.13_6513_Player360-f153ac423f61-20210903-223127.mp4\r\n6.13_15250_Player730-986685bdcad0-20211121-185138.mp4 6.13_6514_Player362-b8706763da13-20211213-123621.mp4\r\n6.13_15251_Player730-986685bdcad0-20211121-185327.mp4 6.13_6515_Player362-b8706763da13-20211213-123738.mp4\r\n6.13_15252_Player730-986685bdcad0-20211121-185459.mp4 6.13_6516_Player362-b8706763da13-20211213-123943.mp4\r\n6.13_15253_Player730-986685bdcad0-20211121-185604.mp4 6.13_6517_Player362-b8706763da13-20211213-124154.mp4\r\n6.13_15254_Player730-986685bdcad0-20211121-185726.mp4 6.13_6518_Player362-b8706763da13-20211213-124354.mp4\r\n6.13_15255_Player730-986685bdcad0-20211121-185846.mp4 6.13_6519_Player362-b8706763da13-20211213-124540.mp4\r\n6.13_15256_Player730-986685bdcad0-20211121-190009.mp4 6.13_651_Player123-f153ac423f61-20211212-193645.mp4\r\n6.13_15257_Player730-986685bdcad0-20211121-190137.mp4 6.13_6520_Player362-f153ac423f61-20211029-112740.mp4\r\n6.13_15258_Player730-986685bdcad0-20211121-190301.mp4 6.13_6521_Player362-f153ac423f61-20211029-112929.mp4\r\n6.13_15259_Player730-986685bdcad0-20211121-190424.mp4 6.13_6522_Player362-f153ac423f61-20211029-113110.mp4\r\n6.13_1525_Player150-f153ac423f61-20211028-161710.mp4 6.13_6523_Player362-f153ac423f61-20211029-113222.mp4\r\n6.13_15260_Player730-986685bdcad0-20211121-190549.mp4 6.13_6524_Player362-f153ac423f61-20211029-113333.mp4\r\n6.13_15261_Player730-986685bdcad0-20211121-190708.mp4 6.13_6525_Player362-f153ac423f61-20211029-113436.mp4\r\n6.13_15262_Player730-986685bdcad0-20211121-190829.mp4 6.13_6526_Player362-f153ac423f61-20211029-113538.mp4\r\n6.13_15263_Player730-986685bdcad0-20211121-190954.mp4 6.13_6527_Player362-f153ac423f61-20211029-113641.mp4\r\n6.13_15264_Player730-986685bdcad0-20211121-191117.mp4 6.13_6528_Player362-f153ac423f61-20211029-113741.mp4\r\n6.13_15265_Player730-986685bdcad0-20211121-191244.mp4 6.13_6529_Player362-f153ac423f61-20211029-113842.mp4\r\n6.13_15266_Player730-986685bdcad0-20211121-191412.mp4 6.13_652_Player123-f153ac423f61-20211212-193756.mp4\r\n6.13_15267_Player730-986685bdcad0-20211121-191539.mp4 6.13_6530_Player362-f153ac423f61-20211029-113942.mp4\r\n6.13_15268_Player730-986685bdcad0-20211121-191713.mp4 6.13_6531_Player362-f153ac423f61-20211029-114043.mp4\r\n6.13_15269_Player730-986685bdcad0-20211121-191845.mp4 6.13_6532_Player362-f153ac423f61-20211029-114143.mp4\r\n6.13_1526_Player150-f153ac423f61-20211028-162053.mp4 6.13_6533_Player362-f153ac423f61-20211029-114244.mp4\r\n6.13_15270_Player730-986685bdcad0-20211121-192010.mp4 6.13_6534_Player362-f153ac423f61-20211029-114344.mp4\r\n6.13_15271_Player730-986685bdcad0-20211121-192134.mp4 6.13_6535_Player362-f153ac423f61-20211029-114445.mp4\r\n6.13_15272_Player730-986685bdcad0-20211121-192254.mp4 6.13_6536_Player362-f153ac423f61-20211029-114545.mp4\r\n6.13_15273_Player730-986685bdcad0-20211121-192445.mp4 6.13_6537_Player362-f153ac423f61-20211029-114646.mp4\r\n6.13_15274_Player730-986685bdcad0-20211121-192637.mp4 6.13_6538_Player362-f153ac423f61-20211029-114747.mp4\r\n6.13_15275_Player730-986685bdcad0-20211121-192835.mp4 6.13_6539_Player362-f153ac423f61-20211029-114847.mp4\r\n6.13_15276_Player730-986685bdcad0-20211121-193035.mp4 6.13_653_Player123-f153ac423f61-20211212-193905.mp4\r\n6.13_15277_Player730-986685bdcad0-20211121-193237.mp4 6.13_6540_Player362-f153ac423f61-20211029-114948.mp4\r\n6.13_15278_Player730-986685bdcad0-20211121-193442.mp4 6.13_6541_Player362-f153ac423f61-20211029-115048.mp4\r\n6.13_15279_Player730-986685bdcad0-20211121-193645.mp4 6.13_6542_Player362-f153ac423f61-20211029-115149.mp4\r\n6.13_1527_Player153-33ca9fa93afe-20211202-125928.mp4 6.13_6543_Player362-f153ac423f61-20211029-115249.mp4\r\n6.13_15280_Player730-986685bdcad0-20211121-193859.mp4 6.13_6544_Player362-f153ac423f61-20211029-115350.mp4\r\n6.13_15281_Player730-986685bdcad0-20211121-194119.mp4 6.13_6545_Player362-f153ac423f61-20211029-115450.mp4\r\n6.13_15282_Player730-986685bdcad0-20211121-194319.mp4 6.13_6546_Player362-f153ac423f61-20211029-115551.mp4\r\n6.13_15283_Player730-986685bdcad0-20211121-194530.mp4 6.13_6547_Player362-f153ac423f61-20211029-115651.mp4\r\n6.13_15284_Player730-986685bdcad0-20211121-194721.mp4 6.13_6548_Player362-f153ac423f61-20211029-115752.mp4\r\n6.13_15285_Player730-986685bdcad0-20211121-194912.mp4 6.13_6549_Player362-f153ac423f61-20211029-115852.mp4\r\n6.13_15286_Player730-986685bdcad0-20211121-195107.mp4 6.13_654_Player123-f153ac423f61-20211212-194021.mp4\r\n6.13_15287_Player730-986685bdcad0-20211121-195325.mp4 6.13_6550_Player362-f153ac423f61-20211029-115952.mp4\r\n6.13_15288_Player730-986685bdcad0-20211121-195518.mp4 6.13_6551_Player362-f153ac423f61-20211029-120052.mp4\r\n6.13_15289_Player730-986685bdcad0-20211121-195711.mp4 6.13_6552_Player362-f153ac423f61-20211029-120153.mp4\r\n6.13_1528_Player153-33ca9fa93afe-20211202-131246.mp4 6.13_6553_Player362-f153ac423f61-20211029-120253.mp4\r\n6.13_15290_Player730-986685bdcad0-20211121-195903.mp4 6.13_6554_Player362-f153ac423f61-20211029-120353.mp4\r\n6.13_15291_Player730-986685bdcad0-20211121-200047.mp4 6.13_6555_Player362-f153ac423f61-20211029-120453.mp4\r\n6.13_15292_Player730-986685bdcad0-20211121-200239.mp4 6.13_6556_Player362-f153ac423f61-20211029-120554.mp4\r\n6.13_15293_Player730-986685bdcad0-20211121-200431.mp4 6.13_6557_Player362-f153ac423f61-20211029-120654.mp4\r\n6.13_15294_Player730-986685bdcad0-20211121-200627.mp4 6.13_6558_Player362-f153ac423f61-20211029-120754.mp4\r\n6.13_15295_Player730-986685bdcad0-20211121-200815.mp4 6.13_6559_Player362-f153ac423f61-20211029-120854.mp4\r\n6.13_15296_Player730-986685bdcad0-20211121-201012.mp4 6.13_655_Player123-f153ac423f61-20211212-194129.mp4\r\n6.13_15297_Player730-986685bdcad0-20211121-201157.mp4 6.13_6560_Player362-f153ac423f61-20211029-120955.mp4\r\n6.13_15298_Player730-986685bdcad0-20211121-201429.mp4 6.13_6561_Player362-f153ac423f61-20211029-121055.mp4\r\n6.13_15299_Player730-986685bdcad0-20211121-201653.mp4 6.13_6562_Player362-f153ac423f61-20211029-121207.mp4\r\n6.13_1529_Player153-33ca9fa93afe-20211202-132923.mp4 6.13_6563_Player362-f153ac423f61-20211029-121350.mp4\r\n6.13_152_Player104-f153ac423f61-20210828-132547.mp4 6.13_6564_Player362-f153ac423f61-20211029-121546.mp4\r\n6.13_15300_Player730-986685bdcad0-20211121-201838.mp4 6.13_6565_Player362-f153ac423f61-20211029-121742.mp4\r\n6.13_15301_Player730-986685bdcad0-20211121-202028.mp4 6.13_6566_Player362-f153ac423f61-20211029-121934.mp4\r\n6.13_15302_Player730-986685bdcad0-20211121-202222.mp4 6.13_6567_Player362-f153ac423f61-20211029-122114.mp4\r\n6.13_15303_Player730-986685bdcad0-20211121-202406.mp4 6.13_6568_Player362-f153ac423f61-20211029-122257.mp4\r\n6.13_15304_Player730-986685bdcad0-20211121-202545.mp4 6.13_6569_Player362-f153ac423f61-20211029-122442.mp4\r\n6.13_15305_Player730-986685bdcad0-20211121-202726.mp4 6.13_656_Player123-f153ac423f61-20211212-194238.mp4\r\n6.13_15306_Player730-a01bf2650827-20210902-131351.mp4 6.13_6570_Player362-f153ac423f61-20211029-122628.mp4\r\n6.13_15307_Player730-a01bf2650827-20210902-131455.mp4 6.13_6571_Player362-f153ac423f61-20211029-122814.mp4\r\n6.13_15308_Player730-a01bf2650827-20210902-131805.mp4 6.13_6572_Player362-f153ac423f61-20211213-123340.mp4\r\n6.13_15309_Player730-bc960b970544-20211121-174955.mp4 6.13_6573_Player363-a6c685e30654-20210802-143611.mp4\r\n6.13_1530_Player153-33ca9fa93afe-20211202-134622.mp4 6.13_6574_Player363-a6c685e30654-20210802-150253.mp4\r\n6.13_15310_Player730-bc960b970544-20211121-175059.mp4 6.13_6575_Player363-a6c685e30654-20210802-152801.mp4\r\n6.13_15311_Player730-bc960b970544-20211121-175203.mp4 6.13_6576_Player363-a6c685e30654-20210802-155510.mp4\r\n6.13_15312_Player730-bc960b970544-20211121-175304.mp4 6.13_6577_Player363-a6c685e30654-20210802-162059.mp4\r\n6.13_15313_Player730-bc960b970544-20211121-175406.mp4 6.13_6578_Player363-a6c685e30654-20210802-164703.mp4\r\n6.13_15314_Player730-bc960b970544-20211121-175507.mp4 6.13_6579_Player363-a6c685e30654-20210802-171300.mp4\r\n6.13_15315_Player730-bc960b970544-20211121-175608.mp4 6.13_657_Player123-f153ac423f61-20211212-194353.mp4\r\n6.13_15316_Player730-bc960b970544-20211121-175713.mp4 6.13_6580_Player363-f153ac423f61-20210802-122342.mp4\r\n6.13_15317_Player730-bc960b970544-20211121-175815.mp4 6.13_6581_Player363-f153ac423f61-20210802-124432.mp4\r\n6.13_15318_Player730-bc960b970544-20211121-175926.mp4 6.13_6582_Player363-f153ac423f61-20210802-130904.mp4\r\n6.13_15319_Player730-bc960b970544-20211121-180046.mp4 6.13_6583_Player363-f153ac423f61-20210802-133436.mp4\r\n6.13_1531_Player153-33ca9fa93afe-20211202-140727.mp4 6.13_6584_Player363-f153ac423f61-20210802-135921.mp4\r\n6.13_15320_Player730-bc960b970544-20211121-180152.mp4 6.13_6585_Player363-f153ac423f61-20210802-142426.mp4\r\n6.13_15321_Player730-bc960b970544-20211121-180254.mp4 6.13_6586_Player364-f153ac423f61-20211008-144947.mp4\r\n6.13_15322_Player730-bc960b970544-20211121-180402.mp4 6.13_6587_Player364-f153ac423f61-20211008-145559.mp4\r\n6.13_15323_Player730-bc960b970544-20211121-180517.mp4 6.13_6588_Player364-f153ac423f61-20211008-150303.mp4\r\n6.13_15324_Player730-bc960b970544-20211121-180621.mp4 6.13_6589_Player364-f153ac423f61-20211008-150908.mp4\r\n6.13_15325_Player730-bc960b970544-20211121-180736.mp4 6.13_658_Player123-f153ac423f61-20211212-194502.mp4\r\n6.13_15326_Player730-bc960b970544-20211121-180849.mp4 6.13_6590_Player364-f153ac423f61-20211008-151615.mp4\r\n6.13_15327_Player730-bc960b970544-20211121-181004.mp4 6.13_6591_Player364-f153ac423f61-20211008-152219.mp4\r\n6.13_15328_Player730-bc960b970544-20211121-181121.mp4 6.13_6592_Player364-f153ac423f61-20211008-152823.mp4\r\n6.13_15329_Player730-bc960b970544-20211121-181237.mp4 6.13_6593_Player364-f153ac423f61-20211008-153431.mp4\r\n6.13_1532_Player153-33ca9fa93afe-20211202-142653.mp4 6.13_6594_Player364-f153ac423f61-20211008-154135.mp4\r\n6.13_15330_Player730-bc960b970544-20211121-181342.mp4 6.13_6595_Player364-f153ac423f61-20211008-154948.mp4\r\n6.13_15331_Player730-bc960b970544-20211121-181445.mp4 6.13_6596_Player364-f153ac423f61-20211008-155654.mp4\r\n6.13_15332_Player730-bc960b970544-20211121-181555.mp4 6.13_6597_Player364-f153ac423f61-20211008-160257.mp4\r\n6.13_15333_Player730-bc960b970544-20211121-181715.mp4 6.13_6598_Player364-f153ac423f61-20211008-161008.mp4\r\n6.13_15334_Player730-bc960b970544-20211121-181835.mp4 6.13_6599_Player364-f153ac423f61-20211008-161712.mp4\r\n6.13_15335_Player730-bc960b970544-20211121-181946.mp4 6.13_659_Player123-f153ac423f61-20211212-194618.mp4\r\n6.13_15336_Player730-bc960b970544-20211121-182104.mp4 6.13_6600_Player364-f153ac423f61-20211008-162422.mp4\r\n6.13_15337_Player730-d2e363cb8d46-20210902-125405.mp4 6.13_6601_Player367-f153ac423f61-20211017-125238.mp4\r\n6.13_15338_Player730-d2e363cb8d46-20210902-125507.mp4 6.13_6602_Player367-f153ac423f61-20211017-125657.mp4\r\n6.13_15339_Player730-d2e363cb8d46-20210902-125609.mp4 6.13_6603_Player367-f153ac423f61-20211017-130005.mp4\r\n6.13_1533_Player153-33ca9fa93afe-20211202-144509.mp4 6.13_6604_Player367-f153ac423f61-20211017-130323.mp4\r\n6.13_15340_Player730-d2e363cb8d46-20210902-125710.mp4 6.13_6605_Player367-f153ac423f61-20211017-130637.mp4\r\n6.13_15341_Player730-d2e363cb8d46-20210902-125811.mp4 6.13_6606_Player367-f153ac423f61-20211017-131715.mp4\r\n6.13_15342_Player730-d2e363cb8d46-20210902-125913.mp4 6.13_6607_Player367-f153ac423f61-20211017-132655.mp4\r\n6.13_15343_Player730-d2e363cb8d46-20210902-130015.mp4 6.13_6608_Player367-f153ac423f61-20211017-133542.mp4\r\n6.13_15344_Player730-d2e363cb8d46-20210902-130117.mp4 6.13_6609_Player368-f153ac423f61-20210807-131347.mp4\r\n6.13_15345_Player730-d2e363cb8d46-20210902-130221.mp4 6.13_660_Player123-f153ac423f61-20211212-194736.mp4\r\n6.13_15346_Player730-d2e363cb8d46-20210902-130324.mp4 6.13_6610_Player368-f153ac423f61-20210807-132735.mp4\r\n6.13_15347_Player730-d2e363cb8d46-20210902-130427.mp4 6.13_6611_Player368-f153ac423f61-20210812-105726.mp4\r\n6.13_15348_Player730-d2e363cb8d46-20210902-130533.mp4 6.13_6612_Player368-f153ac423f61-20210812-105907.mp4\r\n6.13_15349_Player730-d2e363cb8d46-20210902-130637.mp4 6.13_6613_Player368-f153ac423f61-20210812-110034.mp4\r\n6.13_1534_Player153-33ca9fa93afe-20211202-150431.mp4 6.13_6614_Player368-f153ac423f61-20210812-110204.mp4\r\n6.13_15350_Player730-d2e363cb8d46-20210902-130741.mp4 6.13_6615_Player368-f153ac423f61-20210812-110337.mp4\r\n6.13_15351_Player730-f153ac423f61-20210902-122728.mp4 6.13_6616_Player368-f153ac423f61-20210812-110525.mp4\r\n6.13_15352_Player730-f153ac423f61-20211121-171252.mp4 6.13_6617_Player368-f153ac423f61-20210812-110709.mp4\r\n6.13_15353_Player730-f153ac423f61-20211121-171407.mp4 6.13_6618_Player368-f153ac423f61-20210812-110843.mp4\r\n6.13_15354_Player730-f153ac423f61-20211121-171524.mp4 6.13_6619_Player368-f153ac423f61-20210812-111030.mp4\r\n6.13_15355_Player730-f153ac423f61-20211121-171641.mp4 6.13_661_Player123-f153ac423f61-20211212-194854.mp4\r\n6.13_15356_Player730-f153ac423f61-20211121-171802.mp4 6.13_6620_Player368-f153ac423f61-20210812-111214.mp4\r\n6.13_15357_Player730-f153ac423f61-20211121-171919.mp4 6.13_6621_Player368-f153ac423f61-20210812-111404.mp4\r\n6.13_15358_Player730-f153ac423f61-20211121-172033.mp4 6.13_6622_Player368-f153ac423f61-20210812-111558.mp4\r\n6.13_15359_Player730-f153ac423f61-20211121-172149.mp4 6.13_6623_Player368-f153ac423f61-20210812-111758.mp4\r\n6.13_1535_Player153-33ca9fa93afe-20211202-152349.mp4 6.13_6624_Player368-f153ac423f61-20210812-111954.mp4\r\n6.13_15360_Player730-f153ac423f61-20211121-172256.mp4 6.13_6625_Player368-f153ac423f61-20210812-112139.mp4\r\n6.13_15361_Player730-f153ac423f61-20211121-172408.mp4 6.13_6626_Player368-f153ac423f61-20210812-112324.mp4\r\n6.13_15362_Player730-f153ac423f61-20211121-172526.mp4 6.13_6627_Player368-f153ac423f61-20210812-112514.mp4\r\n6.13_15363_Player730-f153ac423f61-20211121-172635.mp4 6.13_6628_Player368-f153ac423f61-20211018-070247.mp4\r\n6.13_15364_Player730-f153ac423f61-20211121-172742.mp4 6.13_6629_Player368-f153ac423f61-20211018-071008.mp4\r\n6.13_15365_Player730-f153ac423f61-20211121-172859.mp4 6.13_662_Player123-f153ac423f61-20211212-195007.mp4\r\n6.13_15366_Player730-f153ac423f61-20211121-173018.mp4 6.13_6630_Player368-f153ac423f61-20211018-071716.mp4\r\n6.13_15367_Player730-f153ac423f61-20211121-173136.mp4 6.13_6631_Player368-f153ac423f61-20211018-072426.mp4\r\n6.13_15368_Player730-f153ac423f61-20211121-173252.mp4 6.13_6632_Player368-f153ac423f61-20211018-073137.mp4\r\n6.13_15369_Player730-f153ac423f61-20211121-173355.mp4 6.13_6633_Player368-f153ac423f61-20211018-073842.mp4\r\n6.13_1536_Player153-f153ac423f61-20210914-163009.mp4 6.13_6634_Player368-f153ac423f61-20211018-074550.mp4\r\n6.13_15370_Player730-f153ac423f61-20211121-173507.mp4 6.13_6635_Player368-f153ac423f61-20211018-075259.mp4\r\n6.13_15371_Player730-f153ac423f61-20211121-173653.mp4 6.13_6636_Player368-f153ac423f61-20211018-080006.mp4\r\n6.13_15372_Player730-f153ac423f61-20211121-173840.mp4 6.13_6637_Player368-f153ac423f61-20211018-080715.mp4\r\n6.13_15373_Player730-f153ac423f61-20211121-174019.mp4 6.13_6638_Player368-f153ac423f61-20211018-081426.mp4\r\n6.13_15374_Player730-f153ac423f61-20211121-174206.mp4 6.13_6639_Player368-f153ac423f61-20211018-082132.mp4\r\n6.13_15375_Player730-f153ac423f61-20211121-174344.mp4 6.13_663_Player123-f153ac423f61-20211212-195123.mp4\r\n6.13_15376_Player730-f153ac423f61-20211121-174448.mp4 6.13_6640_Player368-f153ac423f61-20211018-082943.mp4\r\n6.13_15377_Player730-f153ac423f61-20211121-174604.mp4 6.13_6641_Player368-f153ac423f61-20211018-083650.mp4\r\n6.13_15378_Player730-f153ac423f61-20211121-174708.mp4 6.13_6642_Player368-f153ac423f61-20211018-084459.mp4\r\n6.13_15379_Player730-f153ac423f61-20211121-174813.mp4 6.13_6643_Player368-f153ac423f61-20211018-085205.mp4\r\n6.13_1537_Player153-f153ac423f61-20210914-163902.mp4 6.13_6644_Player368-f153ac423f61-20211018-085915.mp4\r\n6.13_15380_Player730-f153ac423f61-20211212-003742.mp4 6.13_6645_Player368-f153ac423f61-20211018-090622.mp4\r\n6.13_15381_Player730-f153ac423f61-20211212-003853.mp4 6.13_6646_Player368-f153ac423f61-20211018-091333.mp4\r\n6.13_15382_Player730-f153ac423f61-20211212-003957.mp4 6.13_6647_Player368-f153ac423f61-20211018-092040.mp4\r\n6.13_15383_Player730-f153ac423f61-20211212-004106.mp4 6.13_6648_Player368-f153ac423f61-20211018-092746.mp4\r\n6.13_15384_Player730-f153ac423f61-20211212-004214.mp4 6.13_6649_Player368-f153ac423f61-20211018-093454.mp4\r\n6.13_15385_Player730-f153ac423f61-20211212-004320.mp4 6.13_664_Player123-f153ac423f61-20211212-195234.mp4\r\n6.13_15386_Player730-f153ac423f61-20211212-004427.mp4 6.13_6650_Player368-f153ac423f61-20211018-094207.mp4\r\n6.13_15387_Player730-f153ac423f61-20211212-004534.mp4 6.13_6651_Player368-f153ac423f61-20211018-095026.mp4\r\n6.13_15388_Player730-f153ac423f61-20211212-004642.mp4 6.13_6652_Player368-f153ac423f61-20211018-095844.mp4\r\n6.13_15389_Player730-f153ac423f61-20211212-004750.mp4 6.13_6653_Player368-f153ac423f61-20211018-104018.mp4\r\n6.13_1538_Player153-f153ac423f61-20210914-164744.mp4 6.13_6654_Player368-f153ac423f61-20211018-104926.mp4\r\n6.13_15390_Player730-f153ac423f61-20211212-004900.mp4 6.13_6655_Player368-f153ac423f61-20211018-105942.mp4\r\n6.13_15391_Player730-f153ac423f61-20211212-005013.mp4 6.13_6656_Player368-f153ac423f61-20211018-110955.mp4\r\n6.13_15392_Player730-f153ac423f61-20211212-005121.mp4 6.13_6657_Player368-f153ac423f61-20211018-112005.mp4\r\n6.13_15393_Player730-f153ac423f61-20211212-005229.mp4 6.13_6658_Player368-f153ac423f61-20211018-113016.mp4\r\n6.13_15394_Player730-f153ac423f61-20211212-005339.mp4 6.13_6659_Player368-f153ac423f61-20211018-113926.mp4\r\n6.13_15395_Player730-f153ac423f61-20211212-005450.mp4 6.13_665_Player123-f153ac423f61-20211212-195338.mp4\r\n6.13_15396_Player730-f153ac423f61-20211212-005553.mp4 6.13_6660_Player368-f153ac423f61-20211018-114942.mp4\r\n6.13_15397_Player730-f153ac423f61-20211212-005655.mp4 6.13_6661_Player368-f153ac423f61-20211018-120003.mp4\r\n6.13_15398_Player730-f153ac423f61-20211212-005902.mp4 6.13_6662_Player368-f153ac423f61-20211018-121529.mp4\r\n6.13_15399_Player730-f153ac423f61-20211212-010012.mp4 6.13_6663_Player37-f153ac423f61-20211111-183649.mp4\r\n6.13_1539_Player153-f153ac423f61-20210914-165418.mp4 6.13_6664_Player37-f153ac423f61-20211111-184000.mp4\r\n6.13_153_Player104-f153ac423f61-20210828-133252.mp4 6.13_6665_Player37-f153ac423f61-20211111-184301.mp4\r\n6.13_15400_Player730-f153ac423f61-20211212-010117.mp4 6.13_6666_Player37-f153ac423f61-20211111-184604.mp4\r\n6.13_15401_Player730-f153ac423f61-20211212-010222.mp4 6.13_6667_Player37-f153ac423f61-20211111-184905.mp4\r\n6.13_15402_Player730-f153ac423f61-20211212-010330.mp4 6.13_6668_Player37-f153ac423f61-20211111-185207.mp4\r\n6.13_15403_Player730-f153ac423f61-20211212-010435.mp4 6.13_6669_Player37-f153ac423f61-20211111-185508.mp4\r\n6.13_15404_Player730-f153ac423f61-20211212-010646.mp4 6.13_666_Player123-f153ac423f61-20211212-195445.mp4\r\n6.13_15405_Player730-f153ac423f61-20211212-010755.mp4 6.13_6670_Player37-f153ac423f61-20211111-185810.mp4\r\n6.13_15406_Player730-fec2ae3b32d7-20210902-122822.mp4 6.13_6671_Player37-f153ac423f61-20211111-190114.mp4\r\n6.13_15407_Player730-fec2ae3b32d7-20210902-122934.mp4 6.13_6672_Player37-f153ac423f61-20211111-190416.mp4\r\n6.13_15408_Player730-fec2ae3b32d7-20210902-123035.mp4 6.13_6673_Player37-f153ac423f61-20211111-190724.mp4\r\n6.13_15409_Player730-fec2ae3b32d7-20210902-123136.mp4 6.13_6674_Player37-f153ac423f61-20211111-191028.mp4\r\n6.13_1540_Player153-f153ac423f61-20210914-170040.mp4 6.13_6675_Player37-f153ac423f61-20211111-191329.mp4\r\n6.13_15410_Player730-fec2ae3b32d7-20210902-123238.mp4 6.13_6676_Player37-f153ac423f61-20211111-191632.mp4\r\n6.13_15411_Player730-fec2ae3b32d7-20210902-123341.mp4 6.13_6677_Player37-f153ac423f61-20211111-191936.mp4\r\n6.13_15412_Player730-fec2ae3b32d7-20210902-123446.mp4 6.13_6678_Player37-f153ac423f61-20211111-192237.mp4\r\n6.13_15413_Player730-fec2ae3b32d7-20210902-123550.mp4 6.13_6679_Player37-f153ac423f61-20211111-192538.mp4\r\n6.13_15414_Player730-fec2ae3b32d7-20210902-123656.mp4 6.13_667_Player124-2d925d4f7321-20210801-212601.mp4\r\n6.13_15415_Player730-fec2ae3b32d7-20210902-123805.mp4 6.13_6680_Player37-f153ac423f61-20211111-192840.mp4\r\n6.13_15416_Player730-fec2ae3b32d7-20210902-124022.mp4 6.13_6681_Player37-f153ac423f61-20211111-193142.mp4\r\n6.13_15417_Player730-fec2ae3b32d7-20210902-124130.mp4 6.13_6682_Player37-f153ac423f61-20211111-193443.mp4\r\n6.13_15418_Player730-fec2ae3b32d7-20210902-124233.mp4 6.13_6683_Player37-f153ac423f61-20211111-193745.mp4\r\n6.13_15419_Player734-116614e0222a-20211123-221253.mp4 6.13_6684_Player37-f153ac423f61-20211111-194046.mp4\r\n6.13_1541_Player153-f153ac423f61-20210914-170539.mp4 6.13_6685_Player37-f153ac423f61-20211111-194348.mp4\r\n6.13_15420_Player734-116614e0222a-20211123-221353.mp4 6.13_6686_Player37-f153ac423f61-20211111-194650.mp4\r\n6.13_15421_Player734-116614e0222a-20211123-221453.mp4 6.13_6687_Player37-f153ac423f61-20211111-194952.mp4\r\n6.13_15422_Player734-116614e0222a-20211123-221553.mp4 6.13_6688_Player37-f153ac423f61-20211111-195253.mp4\r\n6.13_15423_Player734-116614e0222a-20211123-221654.mp4 6.13_6689_Player37-f153ac423f61-20211111-195554.mp4\r\n6.13_15424_Player734-d105bcb44a61-20211123-214543.mp4 6.13_668_Player124-2d925d4f7321-20210801-212907.mp4\r\n6.13_15425_Player734-d105bcb44a61-20211123-214643.mp4 6.13_6690_Player37-f153ac423f61-20211111-195856.mp4\r\n6.13_15426_Player734-d105bcb44a61-20211123-214743.mp4 6.13_6691_Player374-2c7cac25cb1e-20210824-223836.mp4\r\n6.13_15427_Player734-d105bcb44a61-20211123-214843.mp4 6.13_6692_Player374-2c7cac25cb1e-20210824-223937.mp4\r\n6.13_15428_Player734-d105bcb44a61-20211123-214943.mp4 6.13_6693_Player374-2c7cac25cb1e-20210824-224038.mp4\r\n6.13_15429_Player734-d105bcb44a61-20211123-215044.mp4 6.13_6694_Player374-2c7cac25cb1e-20210824-224138.mp4\r\n6.13_1542_Player153-f153ac423f61-20210914-171029.mp4 6.13_6695_Player374-2c7cac25cb1e-20210824-224239.mp4\r\n6.13_15430_Player734-d105bcb44a61-20211123-215144.mp4 6.13_6696_Player374-2c7cac25cb1e-20210824-224340.mp4\r\n6.13_15431_Player734-d105bcb44a61-20211123-215244.mp4 6.13_6697_Player374-2c7cac25cb1e-20210824-224440.mp4\r\n6.13_15432_Player734-d105bcb44a61-20211123-215345.mp4 6.13_6698_Player374-2c7cac25cb1e-20210824-224540.mp4\r\n6.13_15433_Player734-d105bcb44a61-20211123-215445.mp4 6.13_6699_Player374-2c7cac25cb1e-20210824-224641.mp4\r\n6.13_15434_Player734-d105bcb44a61-20211123-215545.mp4 6.13_669_Player124-2d925d4f7321-20210801-213213.mp4\r\n6.13_15435_Player734-d105bcb44a61-20211123-215645.mp4 6.13_6700_Player374-2c7cac25cb1e-20210824-224741.mp4\r\n6.13_15436_Player734-d105bcb44a61-20211123-215745.mp4 6.13_6701_Player374-2c7cac25cb1e-20210824-224842.mp4\r\n6.13_15437_Player734-d105bcb44a61-20211123-215845.mp4 6.13_6702_Player374-2c7cac25cb1e-20210824-224942.mp4\r\n6.13_15438_Player734-d105bcb44a61-20211123-215945.mp4 6.13_6703_Player374-2c7cac25cb1e-20210824-225043.mp4\r\n6.13_15439_Player734-d105bcb44a61-20211123-220045.mp4 6.13_6704_Player374-2c7cac25cb1e-20210824-225144.mp4\r\n6.13_1543_Player153-f153ac423f61-20210914-171513.mp4 6.13_6705_Player374-2c7cac25cb1e-20210824-225245.mp4\r\n6.13_15440_Player734-d105bcb44a61-20211123-220145.mp4 6.13_6706_Player374-2c7cac25cb1e-20210824-225345.mp4\r\n6.13_15441_Player734-d105bcb44a61-20211123-220245.mp4 6.13_6707_Player374-c014b9071c3f-20210824-222917.mp4\r\n6.13_15442_Player734-d105bcb44a61-20211123-220345.mp4 6.13_6708_Player374-c014b9071c3f-20210824-223025.mp4\r\n6.13_15443_Player734-d105bcb44a61-20211123-220445.mp4 6.13_6709_Player374-c014b9071c3f-20210824-223127.mp4\r\n6.13_15444_Player734-d105bcb44a61-20211123-220545.mp4 6.13_670_Player124-42706ada8ba3-20210801-172642.mp4\r\n6.13_15445_Player734-d105bcb44a61-20211123-220645.mp4 6.13_6710_Player374-c014b9071c3f-20210824-223227.mp4\r\n6.13_15446_Player734-d105bcb44a61-20211123-220745.mp4 6.13_6711_Player374-c014b9071c3f-20210824-223328.mp4\r\n6.13_15447_Player734-d105bcb44a61-20211123-220945.mp4 6.13_6712_Player374-c014b9071c3f-20210824-223430.mp4\r\n6.13_15448_Player734-d105bcb44a61-20211123-221045.mp4 6.13_6713_Player374-c014b9071c3f-20210824-223532.mp4\r\n6.13_15449_Player734-d105bcb44a61-20211123-221145.mp4 6.13_6714_Player374-c014b9071c3f-20210824-223637.mp4\r\n6.13_1544_Player153-f153ac423f61-20210914-172049.mp4 6.13_6715_Player374-e229a3207482-20210824-225429.mp4\r\n6.13_15450_Player734-f153ac423f61-20211123-212040.mp4 6.13_6716_Player374-e229a3207482-20210824-225537.mp4\r\n6.13_15451_Player734-f153ac423f61-20211123-212142.mp4 6.13_6717_Player374-e229a3207482-20210824-225638.mp4\r\n6.13_15452_Player734-f153ac423f61-20211123-212242.mp4 6.13_6718_Player374-f153ac423f61-20210824-221357.mp4\r\n6.13_15453_Player734-f153ac423f61-20211123-212342.mp4 6.13_6719_Player374-f153ac423f61-20210824-221459.mp4\r\n6.13_15454_Player734-f153ac423f61-20211123-212442.mp4 6.13_671_Player124-42706ada8ba3-20210801-190619.mp4\r\n6.13_15455_Player734-f153ac423f61-20211123-212542.mp4 6.13_6720_Player374-f153ac423f61-20210824-221559.mp4\r\n6.13_15456_Player734-f153ac423f61-20211123-212642.mp4 6.13_6721_Player374-f153ac423f61-20210824-221700.mp4\r\n6.13_15457_Player734-f153ac423f61-20211123-212742.mp4 6.13_6722_Player374-f153ac423f61-20210824-221802.mp4\r\n6.13_15458_Player734-f153ac423f61-20211123-212842.mp4 6.13_6723_Player374-f153ac423f61-20210824-221905.mp4\r\n6.13_15459_Player734-f153ac423f61-20211123-212942.mp4 6.13_6724_Player374-f153ac423f61-20210824-222012.mp4\r\n6.13_1545_Player153-f153ac423f61-20210914-172618.mp4 6.13_6725_Player374-f153ac423f61-20210824-222115.mp4\r\n6.13_15460_Player734-f153ac423f61-20211123-213042.mp4 6.13_6726_Player374-f153ac423f61-20210824-222219.mp4\r\n6.13_15461_Player734-f153ac423f61-20211123-213142.mp4 6.13_6727_Player374-f153ac423f61-20210824-222320.mp4\r\n6.13_15462_Player734-f153ac423f61-20211123-213242.mp4 6.13_6728_Player374-f153ac423f61-20210824-222424.mp4\r\n6.13_15463_Player734-f153ac423f61-20211123-213342.mp4 6.13_6729_Player374-f153ac423f61-20210824-222525.mp4\r\n6.13_15464_Player734-f153ac423f61-20211123-213442.mp4 6.13_672_Player124-42706ada8ba3-20210801-192634.mp4\r\n6.13_15465_Player734-f153ac423f61-20211123-213542.mp4 6.13_6730_Player374-f153ac423f61-20210824-222629.mp4\r\n6.13_15466_Player734-f153ac423f61-20211123-213642.mp4 6.13_6731_Player374-f153ac423f61-20210824-222730.mp4\r\n6.13_15467_Player734-f153ac423f61-20211123-213742.mp4 6.13_6732_Player374-f153ac423f61-20210824-222831.mp4\r\n6.13_15468_Player734-f153ac423f61-20211123-213842.mp4 6.13_6733_Player375-f153ac423f61-20211024-173527.mp4\r\n6.13_15469_Player734-f153ac423f61-20211123-213942.mp4 6.13_6734_Player375-f153ac423f61-20211024-173720.mp4\r\n6.13_1546_Player153-f153ac423f61-20210914-173250.mp4 6.13_6735_Player375-f153ac423f61-20211024-173857.mp4\r\n6.13_15470_Player734-f153ac423f61-20211123-214042.mp4 6.13_6736_Player375-f153ac423f61-20211024-174029.mp4\r\n6.13_15471_Player734-f153ac423f61-20211123-214142.mp4 6.13_6737_Player375-f153ac423f61-20211024-174200.mp4\r\n6.13_15472_Player734-f153ac423f61-20211123-214242.mp4 6.13_6738_Player375-f153ac423f61-20211024-174352.mp4\r\n6.13_15473_Player734-f153ac423f61-20211123-214342.mp4 6.13_6739_Player375-f153ac423f61-20211024-174522.mp4\r\n6.13_15474_Player738-f153ac423f61-20211201-225124.mp4 6.13_673_Player124-42706ada8ba3-20210801-192936.mp4\r\n6.13_15475_Player739-f153ac423f61-20211030-154626.mp4 6.13_6740_Player375-f153ac423f61-20211024-174714.mp4\r\n6.13_15476_Player739-f153ac423f61-20211030-154817.mp4 6.13_6741_Player375-f153ac423f61-20211024-174902.mp4\r\n6.13_15477_Player739-f153ac423f61-20211030-155013.mp4 6.13_6742_Player375-f153ac423f61-20211024-175048.mp4\r\n6.13_15478_Player739-f153ac423f61-20211030-155231.mp4 6.13_6743_Player375-f153ac423f61-20211024-175233.mp4\r\n6.13_15479_Player739-f153ac423f61-20211030-155406.mp4 6.13_6744_Player375-f153ac423f61-20211024-175424.mp4\r\n6.13_1547_Player153-f153ac423f61-20210914-173842.mp4 6.13_6745_Player375-f153ac423f61-20211024-175603.mp4\r\n6.13_15480_Player739-f153ac423f61-20211030-155519.mp4 6.13_6746_Player375-f153ac423f61-20211024-175805.mp4\r\n6.13_15481_Player742-c4433113b68d-20211202-194848.mp4 6.13_6747_Player375-f153ac423f61-20211024-180004.mp4\r\n6.13_15482_Player742-c4433113b68d-20211202-194954.mp4 6.13_6748_Player375-f153ac423f61-20211024-180153.mp4\r\n6.13_15483_Player742-c4433113b68d-20211202-195056.mp4 6.13_6749_Player375-f153ac423f61-20211024-180359.mp4\r\n6.13_15484_Player742-c4433113b68d-20211202-195201.mp4 6.13_674_Player124-42706ada8ba3-20210801-193238.mp4\r\n6.13_15485_Player742-c4433113b68d-20211202-195308.mp4 6.13_6750_Player375-f153ac423f61-20211024-180559.mp4\r\n6.13_15486_Player742-c4433113b68d-20211202-195412.mp4 6.13_6751_Player375-f153ac423f61-20211024-180813.mp4\r\n6.13_15487_Player742-c4433113b68d-20211202-195522.mp4 6.13_6752_Player377-f153ac423f61-20210813-194208.mp4\r\n6.13_15488_Player742-c4433113b68d-20211202-195632.mp4 6.13_6753_Player377-f153ac423f61-20210813-194351.mp4\r\n6.13_15489_Player742-c4433113b68d-20211202-195739.mp4 6.13_6754_Player377-f153ac423f61-20210813-194519.mp4\r\n6.13_1548_Player153-f153ac423f61-20210914-174601.mp4 6.13_6755_Player377-f153ac423f61-20210813-194647.mp4\r\n6.13_15490_Player742-c4433113b68d-20211202-195846.mp4 6.13_6756_Player377-f153ac423f61-20210813-194818.mp4\r\n6.13_15491_Player742-c4433113b68d-20211202-200104.mp4 6.13_6757_Player377-f153ac423f61-20210813-194944.mp4\r\n6.13_15492_Player742-c4433113b68d-20211202-200311.mp4 6.13_6758_Player377-f153ac423f61-20210813-195113.mp4\r\n6.13_15493_Player742-c4433113b68d-20211202-200517.mp4 6.13_6759_Player377-f153ac423f61-20210813-195252.mp4\r\n6.13_15494_Player742-c4433113b68d-20211202-200721.mp4 6.13_675_Player124-42706ada8ba3-20210801-193440.mp4\r\n6.13_15495_Player742-c4433113b68d-20211202-200938.mp4 6.13_6760_Player377-f153ac423f61-20210813-195424.mp4\r\n6.13_15496_Player742-c4433113b68d-20211202-201159.mp4 6.13_6761_Player377-f153ac423f61-20210813-195553.mp4\r\n6.13_15497_Player742-f153ac423f61-20211114-210127.mp4 6.13_6762_Player377-f153ac423f61-20210813-195717.mp4\r\n6.13_15498_Player743-f153ac423f61-20210810-141916.mp4 6.13_6763_Player377-f153ac423f61-20210813-195844.mp4\r\n6.13_15499_Player743-f153ac423f61-20210810-142550.mp4 6.13_6764_Player377-f153ac423f61-20210813-200016.mp4\r\n6.13_1549_Player153-f153ac423f61-20210914-175429.mp4 6.13_6765_Player377-f153ac423f61-20210813-200152.mp4\r\n6.13_154_Player104-f153ac423f61-20210828-134334.mp4 6.13_6766_Player377-f153ac423f61-20210813-200319.mp4\r\n6.13_15500_Player743-f153ac423f61-20210810-143107.mp4 6.13_6767_Player377-f153ac423f61-20210813-200455.mp4\r\n6.13_15501_Player743-f153ac423f61-20210810-143735.mp4 6.13_6768_Player377-f153ac423f61-20210813-200623.mp4\r\n6.13_15502_Player743-f153ac423f61-20210810-144411.mp4 6.13_6769_Player377-f153ac423f61-20210813-200755.mp4\r\n6.13_15503_Player743-f153ac423f61-20210810-145023.mp4 6.13_676_Player124-42706ada8ba3-20210801-193841.mp4\r\n6.13_15504_Player743-f153ac423f61-20210810-145633.mp4 6.13_6770_Player377-f153ac423f61-20210813-200942.mp4\r\n6.13_15505_Player743-f153ac423f61-20210810-150244.mp4 6.13_6771_Player377-f153ac423f61-20210813-201115.mp4\r\n6.13_15506_Player743-f153ac423f61-20210810-150912.mp4 6.13_6772_Player377-f153ac423f61-20210813-201248.mp4\r\n6.13_15507_Player743-f153ac423f61-20210810-151550.mp4 6.13_6773_Player377-f153ac423f61-20210813-201419.mp4\r\n6.13_15508_Player743-f153ac423f61-20210810-152108.mp4 6.13_6774_Player377-f153ac423f61-20210813-201543.mp4\r\n6.13_15509_Player743-f153ac423f61-20210810-152636.mp4 6.13_6775_Player377-f153ac423f61-20210813-201711.mp4\r\n6.13_1550_Player153-f153ac423f61-20210914-180247.mp4 6.13_6776_Player377-f153ac423f61-20210813-201838.mp4\r\n6.13_15510_Player743-f153ac423f61-20211027-085936.mp4 6.13_6777_Player377-f153ac423f61-20210813-202013.mp4\r\n6.13_15511_Player743-f153ac423f61-20211027-090649.mp4 6.13_6778_Player377-f153ac423f61-20210813-202137.mp4\r\n6.13_15512_Player743-f153ac423f61-20211027-091350.mp4 6.13_6779_Player377-f153ac423f61-20210813-202317.mp4\r\n6.13_15513_Player743-f153ac423f61-20211027-092158.mp4 6.13_677_Player124-42706ada8ba3-20210801-194042.mp4\r\n6.13_15514_Player743-f153ac423f61-20211027-092859.mp4 6.13_6780_Player377-f153ac423f61-20210813-202458.mp4\r\n6.13_15515_Player743-f153ac423f61-20211027-093703.mp4 6.13_6781_Player377-f153ac423f61-20210813-202643.mp4\r\n6.13_15516_Player743-f153ac423f61-20211027-094405.mp4 6.13_6782_Player377-f153ac423f61-20210813-202828.mp4\r\n6.13_15517_Player743-f153ac423f61-20211027-095114.mp4 6.13_6783_Player377-f153ac423f61-20210813-203009.mp4\r\n6.13_15518_Player743-f153ac423f61-20211027-095818.mp4 6.13_6784_Player377-f153ac423f61-20210813-203136.mp4\r\n6.13_15519_Player743-f153ac423f61-20211027-100530.mp4 6.13_6785_Player377-f153ac423f61-20210813-203312.mp4\r\n6.13_1551_Player153-f153ac423f61-20210914-181121.mp4 6.13_6786_Player379-f153ac423f61-20210729-204540.mp4\r\n6.13_15520_Player743-f153ac423f61-20211027-101231.mp4 6.13_6787_Player379-f153ac423f61-20210729-204749.mp4\r\n6.13_15521_Player743-f153ac423f61-20211027-102046.mp4 6.13_6788_Player379-f153ac423f61-20210729-205302.mp4\r\n6.13_15522_Player743-f153ac423f61-20211027-102749.mp4 6.13_6789_Player379-f153ac423f61-20210729-211333.mp4\r\n6.13_15523_Player743-f153ac423f61-20211027-103450.mp4 6.13_678_Player124-42706ada8ba3-20210801-194344.mp4\r\n6.13_15524_Player743-f153ac423f61-20211027-104155.mp4 6.13_6790_Player379-f153ac423f61-20210729-214210.mp4\r\n6.13_15525_Player743-f153ac423f61-20211027-105001.mp4 6.13_6791_Player379-f153ac423f61-20210729-234237.mp4\r\n6.13_15526_Player743-f153ac423f61-20211027-105702.mp4 6.13_6792_Player379-f153ac423f61-20210729-234542.mp4\r\n6.13_15527_Player743-f153ac423f61-20211027-110405.mp4 6.13_6793_Player379-f153ac423f61-20210729-234950.mp4\r\n6.13_15528_Player743-f153ac423f61-20211027-111109.mp4 6.13_6794_Player379-f153ac423f61-20210729-235457.mp4\r\n6.13_15529_Player743-f153ac423f61-20211027-111820.mp4 6.13_6795_Player379-f153ac423f61-20210730-001412.mp4\r\n6.13_1552_Player153-f153ac423f61-20210914-182435.mp4 6.13_6796_Player379-f153ac423f61-20210730-002218.mp4\r\n6.13_15530_Player743-f153ac423f61-20211125-193209.mp4 6.13_6797_Player379-f153ac423f61-20210730-002822.mp4\r\n6.13_15531_Player743-f153ac423f61-20211125-200000.mp4 6.13_6798_Player379-f153ac423f61-20210730-003329.mp4\r\n6.13_15532_Player743-f153ac423f61-20211125-201637.mp4 6.13_6799_Player379-f153ac423f61-20210730-005202.mp4\r\n6.13_15533_Player743-f153ac423f61-20211125-204153.mp4 6.13_679_Player124-42706ada8ba3-20210801-194647.mp4\r\n6.13_15534_Player743-f153ac423f61-20211125-210543.mp4 6.13_6800_Player379-f153ac423f61-20210730-005509.mp4\r\n6.13_15535_Player743-f153ac423f61-20211125-212736.mp4 6.13_6801_Player379-f153ac423f61-20210730-005819.mp4\r\n6.13_15536_Player743-f153ac423f61-20211125-215038.mp4 6.13_6802_Player379-f153ac423f61-20210730-010427.mp4\r\n6.13_15537_Player743-f153ac423f61-20211125-220559.mp4 6.13_6803_Player379-f153ac423f61-20210730-012357.mp4\r\n6.13_15538_Player744-f153ac423f61-20211009-171656.mp4 6.13_6804_Player38-cbdb207169d2-20211016-223133.mp4\r\n6.13_15539_Player744-f153ac423f61-20211009-173102.mp4 6.13_6805_Player38-cbdb207169d2-20211016-223302.mp4\r\n6.13_1553_Player153-f153ac423f61-20210914-183755.mp4 6.13_6806_Player38-cbdb207169d2-20211016-223431.mp4\r\n6.13_15540_Player744-f153ac423f61-20211009-174719.mp4 6.13_6807_Player38-cbdb207169d2-20211016-223608.mp4\r\n6.13_15541_Player744-f153ac423f61-20211009-180842.mp4 6.13_6808_Player38-cbdb207169d2-20211016-223757.mp4\r\n6.13_15542_Player744-f153ac423f61-20211009-183243.mp4 6.13_6809_Player38-cbdb207169d2-20211016-223934.mp4\r\n6.13_15543_Player747-f153ac423f61-20210806-144743.mp4 6.13_680_Player124-42706ada8ba3-20210801-195049.mp4\r\n6.13_15544_Player747-f153ac423f61-20210806-144849.mp4 6.13_6810_Player38-cbdb207169d2-20211016-224105.mp4\r\n6.13_15545_Player747-f153ac423f61-20210806-144950.mp4 6.13_6811_Player38-cbdb207169d2-20211016-224240.mp4\r\n6.13_15546_Player747-f153ac423f61-20210806-145051.mp4 6.13_6812_Player38-cbdb207169d2-20211016-224410.mp4\r\n6.13_15547_Player747-f153ac423f61-20210806-145154.mp4 6.13_6813_Player38-cbdb207169d2-20211016-224548.mp4\r\n6.13_15548_Player747-f153ac423f61-20210806-145256.mp4 6.13_6814_Player38-cbdb207169d2-20211016-224731.mp4\r\n6.13_15549_Player747-f153ac423f61-20210806-145356.mp4 6.13_6815_Player38-cbdb207169d2-20211016-224856.mp4\r\n6.13_1554_Player153-f153ac423f61-20210914-190124.mp4 6.13_6816_Player38-cbdb207169d2-20211016-225021.mp4\r\n6.13_15550_Player747-f153ac423f61-20210806-145457.mp4 6.13_6817_Player38-cbdb207169d2-20211016-225152.mp4\r\n6.13_15551_Player747-f153ac423f61-20210806-145557.mp4 6.13_6818_Player38-cbdb207169d2-20211016-225334.mp4\r\n6.13_15552_Player747-f153ac423f61-20210806-145658.mp4 6.13_6819_Player38-cbdb207169d2-20211016-225507.mp4\r\n6.13_15553_Player747-f153ac423f61-20210806-145759.mp4 6.13_681_Player124-42706ada8ba3-20210801-195351.mp4\r\n6.13_15554_Player747-f153ac423f61-20210806-145900.mp4 6.13_6820_Player38-cbdb207169d2-20211016-225631.mp4\r\n6.13_15555_Player747-f153ac423f61-20210806-150000.mp4 6.13_6821_Player38-cbdb207169d2-20211016-225811.mp4\r\n6.13_15556_Player747-f153ac423f61-20210806-150101.mp4 6.13_6822_Player38-cbdb207169d2-20211016-225950.mp4\r\n6.13_15557_Player747-f153ac423f61-20210806-150201.mp4 6.13_6823_Player38-cbdb207169d2-20211016-230132.mp4\r\n6.13_15558_Player747-f153ac423f61-20210806-150301.mp4 6.13_6824_Player38-cbdb207169d2-20211016-230256.mp4\r\n6.13_15559_Player747-f153ac423f61-20210806-150402.mp4 6.13_6825_Player38-f153ac423f61-20210727-120827.mp4\r\n6.13_1555_Player153-f153ac423f61-20210914-191715.mp4 6.13_6826_Player38-f153ac423f61-20210727-120934.mp4\r\n6.13_15560_Player747-f153ac423f61-20210806-150503.mp4 6.13_6827_Player38-f153ac423f61-20210727-121042.mp4\r\n6.13_15561_Player747-f153ac423f61-20210806-150607.mp4 6.13_6828_Player38-f153ac423f61-20210727-121152.mp4\r\n6.13_15562_Player747-f153ac423f61-20210806-150707.mp4 6.13_6829_Player38-f153ac423f61-20210727-121305.mp4\r\n6.13_15563_Player747-f153ac423f61-20210806-150808.mp4 6.13_682_Player124-42706ada8ba3-20210801-195552.mp4\r\n6.13_15564_Player747-f153ac423f61-20210806-150908.mp4 6.13_6830_Player38-f153ac423f61-20210727-121414.mp4\r\n6.13_15565_Player747-f153ac423f61-20210806-151009.mp4 6.13_6831_Player38-f153ac423f61-20210727-121522.mp4\r\n6.13_15566_Player747-f153ac423f61-20210806-151109.mp4 6.13_6832_Player38-f153ac423f61-20210727-121634.mp4\r\n6.13_15567_Player747-f153ac423f61-20210806-151209.mp4 6.13_6833_Player38-f153ac423f61-20210727-121740.mp4\r\n6.13_15568_Player747-f153ac423f61-20210806-151311.mp4 6.13_6834_Player38-f153ac423f61-20210727-121852.mp4\r\n6.13_15569_Player747-f153ac423f61-20210806-151411.mp4 6.13_6835_Player38-f153ac423f61-20210727-122013.mp4\r\n6.13_1556_Player153-f153ac423f61-20211202-100010.mp4 6.13_6836_Player38-f153ac423f61-20210727-122142.mp4\r\n6.13_15570_Player747-f153ac423f61-20210806-151512.mp4 6.13_6837_Player38-f153ac423f61-20210727-122309.mp4\r\n6.13_15571_Player747-f153ac423f61-20210806-151614.mp4 6.13_6838_Player38-f153ac423f61-20210727-122436.mp4\r\n6.13_15572_Player747-f153ac423f61-20210806-151715.mp4 6.13_6839_Player38-f153ac423f61-20210727-122559.mp4\r\n6.13_15573_Player747-f153ac423f61-20210806-151815.mp4 6.13_683_Player124-42706ada8ba3-20210801-195753.mp4\r\n6.13_15574_Player747-f153ac423f61-20210806-151916.mp4 6.13_6840_Player38-f153ac423f61-20210727-122712.mp4\r\n6.13_15575_Player747-f153ac423f61-20210806-152016.mp4 6.13_6841_Player38-f153ac423f61-20210727-122820.mp4\r\n6.13_15576_Player747-f153ac423f61-20210806-152116.mp4 6.13_6842_Player38-f153ac423f61-20210727-122927.mp4\r\n6.13_15577_Player747-f153ac423f61-20210806-152217.mp4 6.13_6843_Player38-f153ac423f61-20210727-123033.mp4\r\n6.13_15578_Player747-f153ac423f61-20210806-152317.mp4 6.13_6844_Player38-f153ac423f61-20210727-123144.mp4\r\n6.13_15579_Player747-f153ac423f61-20210806-152419.mp4 6.13_6845_Player38-f153ac423f61-20210727-123302.mp4\r\n6.13_1557_Player153-f153ac423f61-20211202-100423.mp4 6.13_6846_Player38-f153ac423f61-20210727-123406.mp4\r\n6.13_15580_Player747-f153ac423f61-20210806-152520.mp4 6.13_6847_Player38-f153ac423f61-20210727-123511.mp4\r\n6.13_15581_Player747-f153ac423f61-20211102-145949.mp4 6.13_6848_Player38-f153ac423f61-20210727-123618.mp4\r\n6.13_15582_Player747-f153ac423f61-20211102-150813.mp4 6.13_6849_Player38-f153ac423f61-20210727-123720.mp4\r\n6.13_15583_Player747-f153ac423f61-20211102-151518.mp4 6.13_684_Player124-42706ada8ba3-20210801-200054.mp4\r\n",,terminal_output +648,6810738,"TERMINAL",0,0,"6.13_15584_Player747-f153ac423f61-20211102-152242.mp4 6.13_6850_Player38-f153ac423f61-20210727-123822.mp4\r\n6.13_15585_Player747-f153ac423f61-20211102-153115.mp4 6.13_6851_Player38-f153ac423f61-20210727-123923.mp4\r\n6.13_15586_Player747-f153ac423f61-20211102-154048.mp4 6.13_6852_Player38-f153ac423f61-20210727-124034.mp4\r\n6.13_15587_Player747-f153ac423f61-20211102-154928.mp4 6.13_6853_Player38-f153ac423f61-20210727-124204.mp4\r\n6.13_15588_Player748-5427c137e83d-20211202-124753.mp4 6.13_6854_Player38-f153ac423f61-20210727-124306.mp4\r\n6.13_15589_Player748-5427c137e83d-20211202-124857.mp4 6.13_6855_Player38-f153ac423f61-20210727-124409.mp4\r\n6.13_1558_Player153-f153ac423f61-20211202-100929.mp4 6.13_6856_Player38-f153ac423f61-20210727-124513.mp4\r\n6.13_15590_Player748-5427c137e83d-20211202-125001.mp4 6.13_6857_Player38-f153ac423f61-20210727-124617.mp4\r\n6.13_15591_Player748-5427c137e83d-20211202-125105.mp4 6.13_6858_Player38-f153ac423f61-20210727-124723.mp4\r\n6.13_15592_Player748-5427c137e83d-20211202-125210.mp4 6.13_6859_Player38-f153ac423f61-20210727-124825.mp4\r\n6.13_15593_Player748-5427c137e83d-20211202-125318.mp4 6.13_685_Player124-42706ada8ba3-20210801-200255.mp4\r\n6.13_15594_Player748-5427c137e83d-20211202-125426.mp4 6.13_6860_Player38-f153ac423f61-20210727-124927.mp4\r\n6.13_15595_Player748-5427c137e83d-20211202-125531.mp4 6.13_6861_Player38-f153ac423f61-20210727-125029.mp4\r\n6.13_15596_Player748-5427c137e83d-20211202-125639.mp4 6.13_6862_Player38-f153ac423f61-20210727-125131.mp4\r\n6.13_15597_Player748-5427c137e83d-20211202-125747.mp4 6.13_6863_Player38-f153ac423f61-20210727-125233.mp4\r\n6.13_15598_Player748-5427c137e83d-20211202-125853.mp4 6.13_6864_Player38-f153ac423f61-20210727-125337.mp4\r\n6.13_15599_Player748-5427c137e83d-20211202-125959.mp4 6.13_6865_Player38-f153ac423f61-20210727-125443.mp4\r\n6.13_1559_Player153-f153ac423f61-20211202-101441.mp4 6.13_6866_Player38-f153ac423f61-20210727-125554.mp4\r\n6.13_155_Player104-f153ac423f61-20210828-135038.mp4 6.13_6867_Player38-f153ac423f61-20210727-125707.mp4\r\n6.13_15600_Player748-5427c137e83d-20211202-130103.mp4 6.13_6868_Player38-f153ac423f61-20210727-125814.mp4\r\n6.13_15601_Player748-5427c137e83d-20211202-130203.mp4 6.13_6869_Player38-f153ac423f61-20210727-125935.mp4\r\n6.13_15602_Player748-5427c137e83d-20211202-130304.mp4 6.13_686_Player124-42706ada8ba3-20210801-200657.mp4\r\n6.13_15603_Player748-5427c137e83d-20211202-130407.mp4 6.13_6870_Player38-f153ac423f61-20210727-130044.mp4\r\n6.13_15604_Player748-5427c137e83d-20211202-130515.mp4 6.13_6871_Player38-f153ac423f61-20210727-130147.mp4\r\n6.13_15605_Player748-5427c137e83d-20211202-130630.mp4 6.13_6872_Player38-f153ac423f61-20210727-130250.mp4\r\n6.13_15606_Player748-5427c137e83d-20211202-130735.mp4 6.13_6873_Player38-f153ac423f61-20210727-130357.mp4\r\n6.13_15607_Player748-5427c137e83d-20211202-130840.mp4 6.13_6874_Player38-f153ac423f61-20210727-130505.mp4\r\n6.13_15608_Player748-5427c137e83d-20211202-130944.mp4 6.13_6875_Player38-f153ac423f61-20210727-130609.mp4\r\n6.13_15609_Player748-5427c137e83d-20211202-131050.mp4 6.13_6876_Player38-f153ac423f61-20210727-130710.mp4\r\n6.13_1560_Player153-f153ac423f61-20211202-101948.mp4 6.13_6877_Player38-f153ac423f61-20210727-130811.mp4\r\n6.13_15610_Player748-5427c137e83d-20211202-131201.mp4 6.13_6878_Player38-f153ac423f61-20210727-130913.mp4\r\n6.13_15611_Player748-5427c137e83d-20211202-131307.mp4 6.13_6879_Player38-f153ac423f61-20210727-131013.mp4\r\n6.13_15612_Player748-5427c137e83d-20211202-131415.mp4 6.13_687_Player124-42706ada8ba3-20210801-200858.mp4\r\n6.13_15613_Player748-5427c137e83d-20211202-131525.mp4 6.13_6880_Player38-f153ac423f61-20210727-131114.mp4\r\n6.13_15614_Player748-5427c137e83d-20211202-131631.mp4 6.13_6881_Player38-f153ac423f61-20210727-131215.mp4\r\n6.13_15615_Player748-f153ac423f61-20211022-160022.mp4 6.13_6882_Player38-f153ac423f61-20210727-131316.mp4\r\n6.13_15616_Player748-f153ac423f61-20211022-160351.mp4 6.13_6883_Player38-f153ac423f61-20210727-131418.mp4\r\n6.13_15617_Player748-f153ac423f61-20211022-160804.mp4 6.13_6884_Player38-f153ac423f61-20210727-131520.mp4\r\n6.13_15618_Player748-f153ac423f61-20211022-161208.mp4 6.13_6885_Player38-f153ac423f61-20210727-131621.mp4\r\n6.13_15619_Player748-f153ac423f61-20211022-161515.mp4 6.13_6886_Player38-f153ac423f61-20210727-131727.mp4\r\n6.13_1561_Player153-f153ac423f61-20211202-102456.mp4 6.13_6887_Player38-f153ac423f61-20210727-131829.mp4\r\n6.13_15620_Player748-f153ac423f61-20211022-161824.mp4 6.13_6888_Player38-f153ac423f61-20210727-131941.mp4\r\n6.13_15621_Player748-f153ac423f61-20211022-162136.mp4 6.13_6889_Player38-f153ac423f61-20211016-214556.mp4\r\n6.13_15622_Player748-f153ac423f61-20211022-162445.mp4 6.13_688_Player124-42706ada8ba3-20210801-201300.mp4\r\n6.13_15623_Player748-f153ac423f61-20211022-163042.mp4 6.13_6890_Player38-f153ac423f61-20211016-214753.mp4\r\n6.13_15624_Player748-f153ac423f61-20211022-163351.mp4 6.13_6891_Player38-f153ac423f61-20211016-214933.mp4\r\n6.13_15625_Player748-f153ac423f61-20211022-163754.mp4 6.13_6892_Player38-f153ac423f61-20211016-215126.mp4\r\n6.13_15626_Player748-f153ac423f61-20211022-164159.mp4 6.13_6893_Player38-f153ac423f61-20211016-215314.mp4\r\n6.13_15627_Player748-f153ac423f61-20211202-121624.mp4 6.13_6894_Player38-f153ac423f61-20211016-215515.mp4\r\n6.13_15628_Player748-f153ac423f61-20211202-121729.mp4 6.13_6895_Player38-f153ac423f61-20211016-215713.mp4\r\n6.13_15629_Player748-f153ac423f61-20211202-121833.mp4 6.13_6896_Player38-f153ac423f61-20211016-215909.mp4\r\n6.13_1562_Player153-f153ac423f61-20211202-103003.mp4 6.13_6897_Player38-f153ac423f61-20211016-220114.mp4\r\n6.13_15630_Player748-f153ac423f61-20211202-121936.mp4 6.13_6898_Player38-f153ac423f61-20211016-220319.mp4\r\n6.13_15631_Player748-f153ac423f61-20211202-122038.mp4 6.13_6899_Player38-f153ac423f61-20211016-220516.mp4\r\n6.13_15632_Player748-f153ac423f61-20211202-122145.mp4 6.13_689_Player124-42706ada8ba3-20210801-201500.mp4\r\n6.13_15633_Player748-f153ac423f61-20211202-122253.mp4 6.13_6900_Player38-f153ac423f61-20211016-220706.mp4\r\n6.13_15634_Player748-f153ac423f61-20211202-122358.mp4 6.13_6901_Player38-f153ac423f61-20211016-220908.mp4\r\n6.13_15635_Player748-f153ac423f61-20211202-122500.mp4 6.13_6902_Player38-f153ac423f61-20211016-221119.mp4\r\n6.13_15636_Player748-f153ac423f61-20211202-122605.mp4 6.13_6903_Player38-f153ac423f61-20211016-221315.mp4\r\n6.13_15637_Player748-f153ac423f61-20211202-122709.mp4 6.13_6904_Player38-f153ac423f61-20211016-221508.mp4\r\n6.13_15638_Player748-f153ac423f61-20211202-122814.mp4 6.13_6905_Player38-f153ac423f61-20211016-221705.mp4\r\n6.13_15639_Player748-f153ac423f61-20211202-122918.mp4 6.13_6906_Player38-f153ac423f61-20211016-221908.mp4\r\n6.13_1563_Player153-f153ac423f61-20211202-103411.mp4 6.13_6907_Player38-f153ac423f61-20211016-222046.mp4\r\n6.13_15640_Player748-f153ac423f61-20211202-123025.mp4 6.13_6908_Player38-f153ac423f61-20211016-222228.mp4\r\n6.13_15641_Player748-f153ac423f61-20211202-123132.mp4 6.13_6909_Player38-f153ac423f61-20211016-222415.mp4\r\n6.13_15642_Player748-f153ac423f61-20211202-123238.mp4 6.13_690_Player124-42706ada8ba3-20210801-201802.mp4\r\n6.13_15643_Player748-f153ac423f61-20211202-123345.mp4 6.13_6910_Player38-f153ac423f61-20211016-222554.mp4\r\n6.13_15644_Player748-f153ac423f61-20211202-123449.mp4 6.13_6911_Player38-f153ac423f61-20211016-222730.mp4\r\n6.13_15645_Player748-f153ac423f61-20211202-123551.mp4 6.13_6912_Player38-f153ac423f61-20211016-222906.mp4\r\n6.13_15646_Player748-f153ac423f61-20211202-123659.mp4 6.13_6913_Player38-f153ac423f61-20211016-223043.mp4\r\n6.13_15647_Player748-f153ac423f61-20211202-123800.mp4 6.13_6914_Player38-f153ac423f61-20211217-160435.mp4\r\n6.13_15648_Player748-f153ac423f61-20211202-123901.mp4 6.13_6915_Player38-f153ac423f61-20211217-160744.mp4\r\n6.13_15649_Player748-f153ac423f61-20211202-124009.mp4 6.13_6916_Player38-f153ac423f61-20211217-160917.mp4\r\n6.13_1564_Player153-f153ac423f61-20211202-103816.mp4 6.13_6917_Player38-f153ac423f61-20211217-161053.mp4\r\n6.13_15650_Player748-f153ac423f61-20211202-124115.mp4 6.13_6918_Player38-f153ac423f61-20211217-161227.mp4\r\n6.13_15651_Player748-f153ac423f61-20211202-124224.mp4 6.13_6919_Player38-f153ac423f61-20211217-161401.mp4\r\n6.13_15652_Player748-f153ac423f61-20211202-124328.mp4 6.13_691_Player124-42706ada8ba3-20210801-202003.mp4\r\n6.13_15653_Player748-f153ac423f61-20211202-124430.mp4 6.13_6920_Player38-f153ac423f61-20211217-161528.mp4\r\n6.13_15654_Player748-f153ac423f61-20211202-124531.mp4 6.13_6921_Player38-f153ac423f61-20211217-161659.mp4\r\n6.13_15655_Player748-f153ac423f61-20211202-124634.mp4 6.13_6922_Player38-f153ac423f61-20211217-161834.mp4\r\n6.13_15656_Player748-f153ac423f61-20211214-095548.mp4 6.13_6923_Player38-f153ac423f61-20211217-162009.mp4\r\n6.13_15657_Player748-f153ac423f61-20211214-100019.mp4 6.13_6924_Player38-f153ac423f61-20211217-162142.mp4\r\n6.13_15658_Player748-f153ac423f61-20211214-100437.mp4 6.13_6925_Player38-f153ac423f61-20211217-162322.mp4\r\n6.13_15659_Player748-f153ac423f61-20211214-100758.mp4 6.13_6926_Player38-f153ac423f61-20211217-162504.mp4\r\n6.13_1565_Player153-f153ac423f61-20211202-104227.mp4 6.13_6927_Player38-f153ac423f61-20211217-162652.mp4\r\n6.13_15660_Player748-f153ac423f61-20211214-101315.mp4 6.13_6928_Player38-f153ac423f61-20211217-162838.mp4\r\n6.13_15661_Player748-f153ac423f61-20211214-101634.mp4 6.13_6929_Player38-f153ac423f61-20211217-163027.mp4\r\n6.13_15662_Player748-f153ac423f61-20211214-101957.mp4 6.13_692_Player124-42706ada8ba3-20210801-202204.mp4\r\n6.13_15663_Player748-f153ac423f61-20211214-102344.mp4 6.13_6930_Player38-f153ac423f61-20211217-163225.mp4\r\n6.13_15664_Player748-f153ac423f61-20211214-102809.mp4 6.13_6931_Player38-f153ac423f61-20211217-163420.mp4\r\n6.13_15665_Player748-f153ac423f61-20211214-103118.mp4 6.13_6932_Player38-f153ac423f61-20211217-163610.mp4\r\n6.13_15666_Player748-f153ac423f61-20211214-103444.mp4 6.13_6933_Player382-ce181c3f532e-20210808-175353.mp4\r\n6.13_15667_Player748-f153ac423f61-20211214-103906.mp4 6.13_6934_Player382-f153ac423f61-20210808-135930.mp4\r\n6.13_15668_Player748-f153ac423f61-20211214-104313.mp4 6.13_6935_Player382-f153ac423f61-20210808-151555.mp4\r\n6.13_15669_Player749-f153ac423f61-20210810-172037.mp4 6.13_6936_Player387-5b8df655f51f-20211102-110014.mp4\r\n6.13_1566_Player153-f153ac423f61-20211202-104635.mp4 6.13_6937_Player387-5b8df655f51f-20211102-110721.mp4\r\n6.13_15670_Player749-f153ac423f61-20210810-175727.mp4 6.13_6938_Player387-5b8df655f51f-20211102-111530.mp4\r\n6.13_15671_Player749-f153ac423f61-20210810-182328.mp4 6.13_6939_Player387-5b8df655f51f-20211102-112333.mp4\r\n6.13_15672_Player749-f153ac423f61-20210810-191558.mp4 6.13_693_Player124-42706ada8ba3-20210801-202406.mp4\r\n6.13_15673_Player749-f153ac423f61-20210810-211626.mp4 6.13_6940_Player387-5b8df655f51f-20211102-113136.mp4\r\n6.13_15674_Player749-f153ac423f61-20210810-212531.mp4 6.13_6941_Player387-5b8df655f51f-20211102-113840.mp4\r\n6.13_15675_Player749-f153ac423f61-20210810-214442.mp4 6.13_6942_Player387-5b8df655f51f-20211102-114544.mp4\r\n6.13_15676_Player749-f153ac423f61-20210926-213843.mp4 6.13_6943_Player387-5b8df655f51f-20211102-115351.mp4\r\n6.13_15677_Player749-f153ac423f61-20210926-215002.mp4 6.13_6944_Player387-5b8df655f51f-20211102-120058.mp4\r\n6.13_15678_Player749-f153ac423f61-20210926-220114.mp4 6.13_6945_Player387-5b8df655f51f-20211102-120803.mp4\r\n6.13_15679_Player749-f153ac423f61-20210926-221218.mp4 6.13_6946_Player387-5b8df655f51f-20211102-121612.mp4\r\n6.13_1567_Player153-f153ac423f61-20211202-105052.mp4 6.13_6947_Player387-5b8df655f51f-20211102-122316.mp4\r\n6.13_15680_Player749-f153ac423f61-20210926-222324.mp4 6.13_6948_Player387-5b8df655f51f-20211102-123020.mp4\r\n6.13_15681_Player749-f153ac423f61-20210926-223434.mp4 6.13_6949_Player387-5b8df655f51f-20211102-123827.mp4\r\n6.13_15682_Player75-f153ac423f61-20210809-165023.mp4 6.13_694_Player124-42706ada8ba3-20210801-202607.mp4\r\n6.13_15683_Player75-f153ac423f61-20210830-110003.mp4 6.13_6950_Player387-5b8df655f51f-20211102-124837.mp4\r\n6.13_15684_Player75-f153ac423f61-20210830-110834.mp4 6.13_6951_Player387-5b8df655f51f-20211102-125649.mp4\r\n6.13_15685_Player75-f153ac423f61-20210830-111542.mp4 6.13_6952_Player387-5b8df655f51f-20211102-130351.mp4\r\n6.13_15686_Player75-f153ac423f61-20210830-112256.mp4 6.13_6953_Player387-5b8df655f51f-20211102-131056.mp4\r\n6.13_15687_Player75-f153ac423f61-20210830-113014.mp4 6.13_6954_Player387-5b8df655f51f-20211102-131759.mp4\r\n6.13_15688_Player75-f153ac423f61-20210830-113735.mp4 6.13_6955_Player387-5b8df655f51f-20211102-132607.mp4\r\n6.13_15689_Player75-f153ac423f61-20210830-114459.mp4 6.13_6956_Player387-5b8df655f51f-20211102-133311.mp4\r\n6.13_1568_Player153-f153ac423f61-20211202-105511.mp4 6.13_6957_Player387-5b8df655f51f-20211102-134018.mp4\r\n6.13_15690_Player75-f153ac423f61-20210830-115214.mp4 6.13_6958_Player387-5b8df655f51f-20211102-134830.mp4\r\n6.13_15691_Player75-f153ac423f61-20210830-115930.mp4 6.13_6959_Player387-5b8df655f51f-20211102-135639.mp4\r\n6.13_15692_Player75-f153ac423f61-20210830-121016.mp4 6.13_695_Player124-42706ada8ba3-20210801-202809.mp4\r\n6.13_15693_Player75-f153ac423f61-20210830-121728.mp4 6.13_6960_Player387-d2bf51f10850-20211102-080044.mp4\r\n6.13_15694_Player75-f153ac423f61-20210830-122443.mp4 6.13_6961_Player387-d2bf51f10850-20211102-081056.mp4\r\n6.13_15695_Player75-f153ac423f61-20210830-123524.mp4 6.13_6962_Player387-d2bf51f10850-20211102-081803.mp4\r\n6.13_15696_Player75-f153ac423f61-20210830-124243.mp4 6.13_6963_Player387-d2bf51f10850-20211102-082611.mp4\r\n6.13_15697_Player75-f153ac423f61-20210830-124957.mp4 6.13_6964_Player387-d2bf51f10850-20211102-083423.mp4\r\n6.13_15698_Player75-f153ac423f61-20210830-125722.mp4 6.13_6965_Player387-d2bf51f10850-20211102-084129.mp4\r\n6.13_15699_Player75-f153ac423f61-20210830-130442.mp4 6.13_6966_Player387-d2bf51f10850-20211102-084834.mp4\r\n6.13_1569_Player153-f153ac423f61-20211202-105916.mp4 6.13_6967_Player387-d2bf51f10850-20211102-085540.mp4\r\n6.13_156_Player104-f153ac423f61-20210828-135953.mp4 6.13_6968_Player387-d2bf51f10850-20211102-090246.mp4\r\n6.13_15700_Player75-f153ac423f61-20210830-131208.mp4 6.13_6969_Player387-d2bf51f10850-20211102-091557.mp4\r\n6.13_15701_Player75-f153ac423f61-20211012-145921.mp4 6.13_696_Player124-42706ada8ba3-20210801-203111.mp4\r\n6.13_15702_Player75-f153ac423f61-20211012-153334.mp4 6.13_6970_Player387-d2bf51f10850-20211102-092406.mp4\r\n6.13_15703_Player75-f153ac423f61-20211012-160647.mp4 6.13_6971_Player387-f153ac423f61-20211102-070020.mp4\r\n6.13_15704_Player75-f153ac423f61-20211012-164235.mp4 6.13_6972_Player387-f153ac423f61-20211102-070732.mp4\r\n6.13_15705_Player75-f153ac423f61-20211221-151219.mp4 6.13_6973_Player387-f153ac423f61-20211102-071437.mp4\r\n6.13_15706_Player75-f153ac423f61-20211221-151927.mp4 6.13_6974_Player387-f153ac423f61-20211102-072142.mp4\r\n6.13_15707_Player75-f153ac423f61-20211221-152630.mp4 6.13_6975_Player387-f153ac423f61-20211102-072951.mp4\r\n6.13_15708_Player75-f153ac423f61-20211221-153335.mp4 6.13_6976_Player388-f153ac423f61-20211104-215420.mp4\r\n6.13_15709_Player75-f153ac423f61-20211221-154037.mp4 6.13_6977_Player388-f153ac423f61-20211104-215615.mp4\r\n6.13_1570_Player153-f153ac423f61-20211202-110328.mp4 6.13_6978_Player388-f153ac423f61-20211104-215757.mp4\r\n6.13_15710_Player75-f153ac423f61-20211221-154742.mp4 6.13_6979_Player388-f153ac423f61-20211104-215938.mp4\r\n6.13_15711_Player75-f153ac423f61-20211221-155448.mp4 6.13_697_Player124-42706ada8ba3-20210801-203414.mp4\r\n6.13_15712_Player752-f153ac423f61-20211007-231713.mp4 6.13_6980_Player388-f153ac423f61-20211104-220117.mp4\r\n6.13_15713_Player753-ad9f3d9ed23d-20211213-013938.mp4 6.13_6981_Player388-f153ac423f61-20211104-220257.mp4\r\n6.13_15714_Player753-ad9f3d9ed23d-20211213-014041.mp4 6.13_6982_Player388-f153ac423f61-20211104-220447.mp4\r\n6.13_15715_Player753-ad9f3d9ed23d-20211213-014143.mp4 6.13_6983_Player388-f153ac423f61-20211104-220644.mp4\r\n6.13_15716_Player753-ad9f3d9ed23d-20211213-014245.mp4 6.13_6984_Player388-f153ac423f61-20211104-220838.mp4\r\n6.13_15717_Player753-ad9f3d9ed23d-20211213-014348.mp4 6.13_6985_Player388-f153ac423f61-20211104-220956.mp4\r\n6.13_15718_Player753-ad9f3d9ed23d-20211213-014451.mp4 6.13_6986_Player388-f153ac423f61-20211104-221117.mp4\r\n6.13_15719_Player753-ad9f3d9ed23d-20211213-014555.mp4 6.13_6987_Player388-f153ac423f61-20211104-221240.mp4\r\n6.13_1571_Player153-f153ac423f61-20211202-110838.mp4 6.13_6988_Player388-f153ac423f61-20211104-221357.mp4\r\n6.13_15720_Player753-ad9f3d9ed23d-20211213-014659.mp4 6.13_6989_Player388-f153ac423f61-20211104-221506.mp4\r\n6.13_15721_Player753-ad9f3d9ed23d-20211213-014804.mp4 6.13_698_Player124-42706ada8ba3-20210801-203725.mp4\r\n6.13_15722_Player753-ad9f3d9ed23d-20211213-014912.mp4 6.13_6990_Player388-f153ac423f61-20211104-221624.mp4\r\n6.13_15723_Player753-ad9f3d9ed23d-20211213-015016.mp4 6.13_6991_Player388-f153ac423f61-20211104-221737.mp4\r\n6.13_15724_Player753-ad9f3d9ed23d-20211213-015120.mp4 6.13_6992_Player388-f153ac423f61-20211104-221856.mp4\r\n6.13_15725_Player753-ad9f3d9ed23d-20211213-015225.mp4 6.13_6993_Player388-f153ac423f61-20211104-222015.mp4\r\n6.13_15726_Player753-ad9f3d9ed23d-20211213-015330.mp4 6.13_6994_Player388-f153ac423f61-20211104-222129.mp4\r\n6.13_15727_Player753-ad9f3d9ed23d-20211213-015434.mp4 6.13_6995_Player388-f153ac423f61-20211104-222249.mp4\r\n6.13_15728_Player753-ad9f3d9ed23d-20211213-015639.mp4 6.13_6996_Player388-f153ac423f61-20211104-222404.mp4\r\n6.13_15729_Player753-ad9f3d9ed23d-20211213-015846.mp4 6.13_6997_Player388-f153ac423f61-20211104-222520.mp4\r\n6.13_1572_Player153-f153ac423f61-20211202-111247.mp4 6.13_6998_Player388-f153ac423f61-20211104-222702.mp4\r\n6.13_15730_Player753-ad9f3d9ed23d-20211213-020055.mp4 6.13_6999_Player388-f153ac423f61-20211104-222908.mp4\r\n6.13_15731_Player753-f153ac423f61-20210808-132912.mp4 6.13_699_Player124-42706ada8ba3-20210801-204028.mp4\r\n6.13_15732_Player753-f153ac423f61-20210808-134656.mp4 6.13_7000_Player388-f153ac423f61-20211104-223110.mp4\r\n6.13_15733_Player753-f153ac423f61-20210808-162504.mp4 6.13_7001_Player388-f153ac423f61-20211104-223316.mp4\r\n6.13_15734_Player753-f153ac423f61-20210808-170551.mp4 6.13_7002_Player388-f153ac423f61-20211104-223516.mp4\r\n6.13_15735_Player753-f153ac423f61-20210808-180242.mp4 6.13_7003_Player388-f153ac423f61-20211104-223722.mp4\r\n6.13_15736_Player753-f153ac423f61-20210808-184814.mp4 6.13_7004_Player388-f153ac423f61-20211104-223958.mp4\r\n6.13_15737_Player753-f153ac423f61-20211213-013258.mp4 6.13_7005_Player388-f153ac423f61-20211104-224230.mp4\r\n6.13_15738_Player753-f153ac423f61-20211213-013411.mp4 6.13_7006_Player388-f153ac423f61-20211104-224403.mp4\r\n6.13_15739_Player753-f153ac423f61-20211213-013515.mp4 6.13_7007_Player388-f153ac423f61-20211104-224506.mp4\r\n6.13_1573_Player153-f153ac423f61-20211202-111758.mp4 6.13_7008_Player388-f153ac423f61-20211104-224611.mp4\r\n6.13_15740_Player753-f153ac423f61-20211213-013617.mp4 6.13_7009_Player388-f153ac423f61-20211104-224717.mp4\r\n6.13_15741_Player753-f153ac423f61-20211213-013719.mp4 6.13_700_Player124-6e336eaa24da-20210801-220041.mp4\r\n6.13_15742_Player753-f153ac423f61-20211213-013823.mp4 6.13_7010_Player388-f153ac423f61-20211104-224821.mp4\r\n6.13_15743_Player754-6579e55a68ad-20210830-170529.mp4 6.13_7011_Player388-f153ac423f61-20211104-224925.mp4\r\n6.13_15744_Player754-6579e55a68ad-20210830-170634.mp4 6.13_7012_Player388-f153ac423f61-20211104-225029.mp4\r\n6.13_15745_Player754-6579e55a68ad-20210830-170739.mp4 6.13_7013_Player388-f153ac423f61-20211104-225136.mp4\r\n6.13_15746_Player754-6579e55a68ad-20210830-170844.mp4 6.13_7014_Player388-f153ac423f61-20211104-225252.mp4\r\n6.13_15747_Player754-6579e55a68ad-20210830-170949.mp4 6.13_7015_Player388-f153ac423f61-20211104-225400.mp4\r\n6.13_15748_Player754-6579e55a68ad-20210830-171053.mp4 6.13_7016_Player388-f153ac423f61-20211104-225509.mp4\r\n6.13_15749_Player754-6579e55a68ad-20210830-171158.mp4 6.13_7017_Player388-f153ac423f61-20211104-225616.mp4\r\n6.13_1574_Player153-f153ac423f61-20211202-112537.mp4 6.13_7018_Player388-f153ac423f61-20211104-225722.mp4\r\n6.13_15750_Player754-6579e55a68ad-20210830-171303.mp4 6.13_7019_Player388-f153ac423f61-20211104-225830.mp4\r\n6.13_15751_Player754-6579e55a68ad-20210830-171407.mp4 6.13_701_Player124-6e336eaa24da-20210801-231254.mp4\r\n6.13_15752_Player754-6579e55a68ad-20210830-171514.mp4 6.13_7020_Player388-f153ac423f61-20211104-225936.mp4\r\n6.13_15753_Player754-6579e55a68ad-20210830-171621.mp4 6.13_7021_Player388-f153ac423f61-20211104-230041.mp4\r\n6.13_15754_Player754-6579e55a68ad-20210830-171733.mp4 6.13_7022_Player388-f153ac423f61-20211104-230152.mp4\r\n6.13_15755_Player754-6579e55a68ad-20210830-171842.mp4 6.13_7023_Player388-f153ac423f61-20211104-230259.mp4\r\n6.13_15756_Player754-6579e55a68ad-20210830-171948.mp4 6.13_7024_Player388-f153ac423f61-20211104-230410.mp4\r\n6.13_15757_Player754-6579e55a68ad-20210830-172056.mp4 6.13_7025_Player388-f153ac423f61-20211104-230520.mp4\r\n6.13_15758_Player754-6579e55a68ad-20210830-172159.mp4 6.13_7026_Player388-f153ac423f61-20211104-230626.mp4\r\n6.13_15759_Player754-6579e55a68ad-20210830-172302.mp4 6.13_7027_Player388-f153ac423f61-20211104-230736.mp4\r\n6.13_1575_Player153-f153ac423f61-20211202-113403.mp4 6.13_7028_Player388-f153ac423f61-20211104-230846.mp4\r\n6.13_15760_Player754-6579e55a68ad-20210830-172405.mp4 6.13_7029_Player388-f153ac423f61-20211104-230954.mp4\r\n6.13_15761_Player754-6579e55a68ad-20210830-172508.mp4 6.13_702_Player124-f153ac423f61-20210801-133315.mp4\r\n6.13_15762_Player754-6579e55a68ad-20210830-172611.mp4 6.13_7030_Player388-f153ac423f61-20211104-231102.mp4\r\n6.13_15763_Player754-6579e55a68ad-20210830-172714.mp4 6.13_7031_Player388-f153ac423f61-20211104-231213.mp4\r\n6.13_15764_Player754-6579e55a68ad-20210830-172820.mp4 6.13_7032_Player388-f153ac423f61-20211104-231320.mp4\r\n6.13_15765_Player754-6579e55a68ad-20210830-172927.mp4 6.13_7033_Player388-f153ac423f61-20211104-231427.mp4\r\n6.13_15766_Player754-6579e55a68ad-20210830-173034.mp4 6.13_7034_Player388-f153ac423f61-20211104-231531.mp4\r\n6.13_15767_Player754-6579e55a68ad-20210830-173144.mp4 6.13_7035_Player388-f153ac423f61-20211104-231634.mp4\r\n6.13_15768_Player754-6579e55a68ad-20210830-173248.mp4 6.13_7036_Player388-f153ac423f61-20211104-231745.mp4\r\n6.13_15769_Player754-7f504d96f0d0-20210830-165348.mp4 6.13_7037_Player388-f153ac423f61-20211104-231911.mp4\r\n6.13_1576_Player153-f153ac423f61-20211202-114456.mp4 6.13_7038_Player388-f153ac423f61-20211104-232039.mp4\r\n6.13_15770_Player754-7f504d96f0d0-20210830-165450.mp4 6.13_7039_Player388-f153ac423f61-20211104-232214.mp4\r\n6.13_15771_Player754-7f504d96f0d0-20210830-165552.mp4 6.13_703_Player124-f153ac423f61-20210801-133524.mp4\r\n6.13_15772_Player754-7f504d96f0d0-20210830-165754.mp4 6.13_7040_Player388-f153ac423f61-20211104-232354.mp4\r\n6.13_15773_Player754-7f504d96f0d0-20210830-165856.mp4 6.13_7041_Player388-f153ac423f61-20211104-232539.mp4\r\n6.13_15774_Player754-7f504d96f0d0-20210830-170002.mp4 6.13_7042_Player388-f153ac423f61-20211104-232718.mp4\r\n6.13_15775_Player754-7f504d96f0d0-20210830-170110.mp4 6.13_7043_Player388-f153ac423f61-20211104-232859.mp4\r\n6.13_15776_Player754-7f504d96f0d0-20210830-170213.mp4 6.13_7044_Player388-f153ac423f61-20211104-233039.mp4\r\n6.13_15777_Player754-7f504d96f0d0-20210830-170320.mp4 6.13_7045_Player388-f153ac423f61-20211104-233214.mp4\r\n6.13_15778_Player754-7f504d96f0d0-20210830-170425.mp4 6.13_7046_Player388-f153ac423f61-20211104-233341.mp4\r\n6.13_15779_Player754-f153ac423f61-20210830-163331.mp4 6.13_7047_Player388-f153ac423f61-20211104-233511.mp4\r\n6.13_1577_Player153-f153ac423f61-20211202-115623.mp4 6.13_7048_Player388-f153ac423f61-20211104-233649.mp4\r\n6.13_15780_Player754-f153ac423f61-20210830-163433.mp4 6.13_7049_Player388-f153ac423f61-20211104-233829.mp4\r\n6.13_15781_Player754-f153ac423f61-20210830-163534.mp4 6.13_704_Player124-f153ac423f61-20210801-133727.mp4\r\n6.13_15782_Player754-f153ac423f61-20210830-163638.mp4 6.13_7050_Player388-f153ac423f61-20211104-233959.mp4\r\n6.13_15783_Player754-f153ac423f61-20210830-163744.mp4 6.13_7051_Player388-f153ac423f61-20211104-234102.mp4\r\n6.13_15784_Player754-f153ac423f61-20210830-163845.mp4 6.13_7052_Player388-f153ac423f61-20211104-234207.mp4\r\n6.13_15785_Player754-f153ac423f61-20210830-163946.mp4 6.13_7053_Player388-f153ac423f61-20211104-234312.mp4\r\n6.13_15786_Player754-f153ac423f61-20210830-164052.mp4 6.13_7054_Player388-f153ac423f61-20211104-234416.mp4\r\n6.13_15787_Player754-f153ac423f61-20210830-164154.mp4 6.13_7055_Player388-f153ac423f61-20211104-234523.mp4\r\n6.13_15788_Player754-f153ac423f61-20210830-164256.mp4 6.13_7056_Player388-f153ac423f61-20211104-234629.mp4\r\n6.13_15789_Player754-f153ac423f61-20210830-164408.mp4 6.13_7057_Player388-f153ac423f61-20211104-234737.mp4\r\n6.13_1578_Player154-5c8d2a717d51-20210821-172943.mp4 6.13_7058_Player388-f153ac423f61-20211104-234846.mp4\r\n6.13_15790_Player754-f153ac423f61-20210830-164512.mp4 6.13_7059_Player388-f153ac423f61-20211104-234953.mp4\r\n6.13_15791_Player754-f153ac423f61-20210830-164617.mp4 6.13_705_Player124-f153ac423f61-20210801-133928.mp4\r\n6.13_15792_Player754-f153ac423f61-20210830-164719.mp4 6.13_7060_Player388-f153ac423f61-20211104-235058.mp4\r\n6.13_15793_Player754-f153ac423f61-20210830-164827.mp4 6.13_7061_Player388-f153ac423f61-20211104-235159.mp4\r\n6.13_15794_Player754-f153ac423f61-20210830-164929.mp4 6.13_7062_Player388-f153ac423f61-20211104-235302.mp4\r\n6.13_15795_Player754-f153ac423f61-20210830-165029.mp4 6.13_7063_Player388-f153ac423f61-20211104-235412.mp4\r\n6.13_15796_Player754-f153ac423f61-20210830-165133.mp4 6.13_7064_Player388-f153ac423f61-20211104-235517.mp4\r\n6.13_15797_Player754-f153ac423f61-20210830-165244.mp4 6.13_7065_Player388-f153ac423f61-20211104-235624.mp4\r\n6.13_15798_Player755-da8c24993e10-20211214-231435.mp4 6.13_7066_Player388-f153ac423f61-20211104-235731.mp4\r\n6.13_15799_Player755-f153ac423f61-20211214-220031.mp4 6.13_7067_Player388-f153ac423f61-20211104-235841.mp4\r\n6.13_1579_Player154-5c8d2a717d51-20210821-180018.mp4 6.13_7068_Player388-f153ac423f61-20211104-235943.mp4\r\n6.13_157_Player104-f153ac423f61-20210828-143434.mp4 6.13_7069_Player388-f153ac423f61-20211105-000046.mp4\r\n6.13_15800_Player755-f153ac423f61-20211214-220832.mp4 6.13_706_Player124-f153ac423f61-20210801-134031.mp4\r\n6.13_15801_Player755-f153ac423f61-20211214-222134.mp4 6.13_7070_Player388-f153ac423f61-20211105-000151.mp4\r\n6.13_15802_Player755-f153ac423f61-20211214-223135.mp4 6.13_7071_Player388-f153ac423f61-20211105-000255.mp4\r\n6.13_15803_Player755-f153ac423f61-20211214-224435.mp4 6.13_7072_Player388-f153ac423f61-20211105-000401.mp4\r\n6.13_15804_Player755-f153ac423f61-20211214-224935.mp4 6.13_7073_Player388-f153ac423f61-20211105-000504.mp4\r\n6.13_15805_Player755-f153ac423f61-20211214-225637.mp4 6.13_7074_Player388-f153ac423f61-20211105-000607.mp4\r\n6.13_15806_Player755-f153ac423f61-20211214-230201.mp4 6.13_7075_Player388-f153ac423f61-20211105-000711.mp4\r\n6.13_15807_Player756-3c085be77ef1-20210814-114407.mp4 6.13_7076_Player388-f153ac423f61-20211105-000817.mp4\r\n6.13_15808_Player756-3c085be77ef1-20210814-114512.mp4 6.13_7077_Player388-f153ac423f61-20211105-000923.mp4\r\n6.13_15809_Player756-3c085be77ef1-20210814-114613.mp4 6.13_7078_Player388-f153ac423f61-20211105-001031.mp4\r\n6.13_1580_Player154-7004276e2932-20210903-122057.mp4 6.13_7079_Player388-f153ac423f61-20211105-001136.mp4\r\n6.13_15810_Player756-3c085be77ef1-20210814-114714.mp4 6.13_707_Player124-f153ac423f61-20210801-134238.mp4\r\n6.13_15811_Player756-3c085be77ef1-20210814-114818.mp4 6.13_7080_Player388-f153ac423f61-20211105-001242.mp4\r\n6.13_15812_Player756-3c085be77ef1-20210814-114925.mp4 6.13_7081_Player388-f153ac423f61-20211105-001344.mp4\r\n6.13_15813_Player756-3c085be77ef1-20210814-115026.mp4 6.13_7082_Player388-f153ac423f61-20211105-001445.mp4\r\n6.13_15814_Player756-3c085be77ef1-20210814-115129.mp4 6.13_7083_Player388-f153ac423f61-20211105-001551.mp4\r\n6.13_15815_Player756-3c085be77ef1-20210814-115232.mp4 6.13_7084_Player388-f153ac423f61-20211105-001659.mp4\r\n6.13_15816_Player756-3c085be77ef1-20210814-115334.mp4 6.13_7085_Player388-f153ac423f61-20211105-001805.mp4\r\n6.13_15817_Player756-3c085be77ef1-20210814-115435.mp4 6.13_7086_Player388-f153ac423f61-20211105-001908.mp4\r\n6.13_15818_Player756-3c085be77ef1-20210814-115536.mp4 6.13_7087_Player388-f153ac423f61-20211105-002011.mp4\r\n6.13_15819_Player756-3c085be77ef1-20210814-115637.mp4 6.13_7088_Player388-f153ac423f61-20211105-002117.mp4\r\n6.13_1581_Player154-7004276e2932-20210903-122159.mp4 6.13_7089_Player388-f153ac423f61-20211105-002221.mp4\r\n6.13_15820_Player756-3c085be77ef1-20210814-115740.mp4 6.13_708_Player124-f153ac423f61-20210801-134442.mp4\r\n6.13_15821_Player756-3c085be77ef1-20210814-115846.mp4 6.13_7090_Player388-f153ac423f61-20211105-002329.mp4\r\n6.13_15822_Player756-3c085be77ef1-20210814-115947.mp4 6.13_7091_Player388-f153ac423f61-20211105-002436.mp4\r\n6.13_15823_Player756-3c085be77ef1-20210814-120051.mp4 6.13_7092_Player388-f153ac423f61-20211105-002546.mp4\r\n6.13_15824_Player756-3c085be77ef1-20210814-120153.mp4 6.13_7093_Player388-f153ac423f61-20211105-002655.mp4\r\n6.13_15825_Player756-3c085be77ef1-20210814-120255.mp4 6.13_7094_Player388-f153ac423f61-20211105-002807.mp4\r\n6.13_15826_Player756-3c085be77ef1-20210814-120356.mp4 6.13_7095_Player388-f153ac423f61-20211105-002914.mp4\r\n6.13_15827_Player756-3c085be77ef1-20210814-120458.mp4 6.13_7096_Player388-f153ac423f61-20211105-003020.mp4\r\n6.13_15828_Player756-3c085be77ef1-20210814-120559.mp4 6.13_7097_Player388-f153ac423f61-20211105-003128.mp4\r\n6.13_15829_Player756-3c085be77ef1-20210814-120701.mp4 6.13_7098_Player388-f153ac423f61-20211105-003235.mp4\r\n6.13_1582_Player154-7004276e2932-20210903-122302.mp4 6.13_7099_Player388-f153ac423f61-20211105-003338.mp4\r\n6.13_15830_Player756-b64c5e864d75-20210814-112321.mp4 6.13_709_Player124-f153ac423f61-20210801-134645.mp4\r\n6.13_15831_Player756-b64c5e864d75-20210814-112424.mp4 6.13_7100_Player388-f153ac423f61-20211105-003440.mp4\r\n6.13_15832_Player756-b64c5e864d75-20210814-112528.mp4 6.13_7101_Player388-f153ac423f61-20211105-003544.mp4\r\n6.13_15833_Player756-b64c5e864d75-20210814-112632.mp4 6.13_7102_Player388-f153ac423f61-20211105-003727.mp4\r\n6.13_15834_Player756-b64c5e864d75-20210814-112734.mp4 6.13_7103_Player39-f153ac423f61-20210811-134211.mp4\r\n6.13_15835_Player756-b64c5e864d75-20210814-112837.mp4 6.13_7104_Player391-f153ac423f61-20210725-123412.mp4\r\n6.13_15836_Player756-b64c5e864d75-20210814-112939.mp4 6.13_7105_Player391-f153ac423f61-20210725-123618.mp4\r\n6.13_15837_Player756-b64c5e864d75-20210814-113042.mp4 6.13_7106_Player391-f153ac423f61-20210725-124121.mp4\r\n6.13_15838_Player756-b64c5e864d75-20210814-113144.mp4 6.13_7107_Player391-f153ac423f61-20210725-124723.mp4\r\n6.13_15839_Player756-b64c5e864d75-20210814-113247.mp4 6.13_7108_Player391-f153ac423f61-20210725-125927.mp4\r\n6.13_1583_Player154-7004276e2932-20210903-122404.mp4 6.13_7109_Player391-f153ac423f61-20210725-130028.mp4\r\n6.13_15840_Player756-b64c5e864d75-20210814-113352.mp4 6.13_710_Player124-f153ac423f61-20210801-134847.mp4\r\n6.13_15841_Player756-b64c5e864d75-20210814-113459.mp4 6.13_7110_Player391-f153ac423f61-20210725-130229.mp4\r\n6.13_15842_Player756-b64c5e864d75-20210814-113603.mp4 6.13_7111_Player391-f153ac423f61-20210725-130430.mp4\r\n6.13_15843_Player756-b64c5e864d75-20210814-113705.mp4 6.13_7112_Player391-f153ac423f61-20210725-130530.mp4\r\n6.13_15844_Player756-b64c5e864d75-20210814-113808.mp4 6.13_7113_Player391-f153ac423f61-20210725-130802.mp4\r\n6.13_15845_Player756-b64c5e864d75-20210814-113914.mp4 6.13_7114_Player391-f153ac423f61-20210725-131002.mp4\r\n6.13_15846_Player756-b64c5e864d75-20210814-114127.mp4 6.13_7115_Player391-f153ac423f61-20210725-131429.mp4\r\n6.13_15847_Player756-b64c5e864d75-20210814-114229.mp4 6.13_7116_Player391-f153ac423f61-20210725-132332.mp4\r\n6.13_15848_Player756-b64c5e864d75-20210814-114331.mp4 6.13_7117_Player391-f153ac423f61-20210725-134139.mp4\r\n6.13_15849_Player756-f153ac423f61-20210814-105118.mp4 6.13_7118_Player391-f153ac423f61-20210725-134440.mp4\r\n6.13_1584_Player154-7004276e2932-20210903-122506.mp4 6.13_7119_Player392-f153ac423f61-20211023-093313.mp4\r\n6.13_15850_Player756-f153ac423f61-20210814-105223.mp4 6.13_711_Player124-f153ac423f61-20210801-135051.mp4\r\n6.13_15851_Player756-f153ac423f61-20210814-105328.mp4 6.13_7120_Player392-f153ac423f61-20211023-093621.mp4\r\n6.13_15852_Player756-f153ac423f61-20210814-105429.mp4 6.13_7121_Player392-f153ac423f61-20211023-094026.mp4\r\n6.13_15853_Player756-f153ac423f61-20210814-105531.mp4 6.13_7122_Player392-f153ac423f61-20211023-094341.mp4\r\n6.13_15854_Player756-f153ac423f61-20210814-105635.mp4 6.13_7123_Player392-f153ac423f61-20211023-094708.mp4\r\n6.13_15855_Player756-f153ac423f61-20210814-105739.mp4 6.13_7124_Player392-f153ac423f61-20211023-094927.mp4\r\n6.13_15856_Player756-f153ac423f61-20210814-105840.mp4 6.13_7125_Player392-f153ac423f61-20211023-095246.mp4\r\n6.13_15857_Player756-f153ac423f61-20210814-105942.mp4 6.13_7126_Player392-f153ac423f61-20211023-095703.mp4\r\n6.13_15858_Player756-f153ac423f61-20210814-110042.mp4 6.13_7127_Player392-f153ac423f61-20211023-100114.mp4\r\n6.13_15859_Player756-f153ac423f61-20210814-110143.mp4 6.13_7128_Player392-f153ac423f61-20211023-100432.mp4\r\n6.13_1585_Player154-7004276e2932-20210903-122608.mp4 6.13_7129_Player392-f153ac423f61-20211023-100736.mp4\r\n6.13_15860_Player756-f153ac423f61-20210814-110244.mp4 6.13_712_Player124-f153ac423f61-20210801-135255.mp4\r\n6.13_15861_Player756-f153ac423f61-20210814-110345.mp4 6.13_7130_Player392-f153ac423f61-20211023-101038.mp4\r\n6.13_15862_Player756-f153ac423f61-20210814-110447.mp4 6.13_7131_Player392-f153ac423f61-20211023-101358.mp4\r\n6.13_15863_Player756-f153ac423f61-20210814-110549.mp4 6.13_7132_Player393-f153ac423f61-20210923-130136.mp4\r\n6.13_15864_Player756-f153ac423f61-20210814-110650.mp4 6.13_7133_Player393-f153ac423f61-20210923-131202.mp4\r\n6.13_15865_Player756-f153ac423f61-20210814-110750.mp4 6.13_7134_Player393-f153ac423f61-20210923-132205.mp4\r\n6.13_15866_Player756-f153ac423f61-20210814-110850.mp4 6.13_7135_Player393-f153ac423f61-20210923-133210.mp4\r\n6.13_15867_Player756-f153ac423f61-20210814-110951.mp4 6.13_7136_Player393-f153ac423f61-20210923-134212.mp4\r\n6.13_15868_Player756-f153ac423f61-20210814-111055.mp4 6.13_7137_Player393-f153ac423f61-20210923-135216.mp4\r\n6.13_15869_Player756-f153ac423f61-20210814-111156.mp4 6.13_7138_Player393-f153ac423f61-20210923-140226.mp4\r\n6.13_1586_Player154-7004276e2932-20210903-122715.mp4 6.13_7139_Player393-f153ac423f61-20210923-141335.mp4\r\n6.13_15870_Player756-f153ac423f61-20210814-111257.mp4 6.13_713_Player124-f153ac423f61-20210801-135459.mp4\r\n6.13_15871_Player756-f153ac423f61-20210814-111358.mp4 6.13_7140_Player393-f153ac423f61-20210923-142944.mp4\r\n6.13_15872_Player756-f153ac423f61-20210814-111459.mp4 6.13_7141_Player393-f153ac423f61-20210923-143952.mp4\r\n6.13_15873_Player756-f153ac423f61-20210814-111600.mp4 6.13_7142_Player393-f153ac423f61-20210923-145202.mp4\r\n6.13_15874_Player756-f153ac423f61-20210814-111700.mp4 6.13_7143_Player393-f153ac423f61-20210923-150213.mp4\r\n6.13_15875_Player756-f153ac423f61-20210814-111804.mp4 6.13_7144_Player393-f153ac423f61-20210923-151223.mp4\r\n6.13_15876_Player756-f153ac423f61-20210814-111904.mp4 6.13_7145_Player393-f153ac423f61-20210923-152234.mp4\r\n6.13_15877_Player756-f153ac423f61-20210814-112004.mp4 6.13_7146_Player393-f153ac423f61-20210923-153339.mp4\r\n6.13_15878_Player756-f153ac423f61-20210814-112104.mp4 6.13_7147_Player393-f153ac423f61-20210923-154348.mp4\r\n6.13_15879_Player756-f153ac423f61-20210814-112205.mp4 6.13_7148_Player393-f153ac423f61-20210923-155400.mp4\r\n6.13_1587_Player154-7004276e2932-20210903-122829.mp4 6.13_7149_Player393-f153ac423f61-20210923-160519.mp4\r\n6.13_15880_Player756-f153ac423f61-20211213-150015.mp4 6.13_714_Player124-f153ac423f61-20210801-135704.mp4\r\n6.13_15881_Player756-f153ac423f61-20211213-150218.mp4 6.13_7150_Player393-f153ac423f61-20210923-161528.mp4\r\n6.13_15882_Player756-f153ac423f61-20211213-150418.mp4 6.13_7151_Player393-f153ac423f61-20210923-162536.mp4\r\n6.13_15883_Player756-f153ac423f61-20211213-150619.mp4 6.13_7152_Player393-f153ac423f61-20210923-163546.mp4\r\n6.13_15884_Player756-f153ac423f61-20211213-150819.mp4 6.13_7153_Player393-f153ac423f61-20210923-164553.mp4\r\n6.13_15885_Player756-f153ac423f61-20211213-151022.mp4 6.13_7154_Player393-f153ac423f61-20210923-165558.mp4\r\n6.13_15886_Player756-f153ac423f61-20211213-151223.mp4 6.13_7155_Player393-f153ac423f61-20210923-170603.mp4\r\n6.13_15887_Player756-f153ac423f61-20211213-151425.mp4 6.13_7156_Player393-f153ac423f61-20210923-171609.mp4\r\n6.13_15888_Player756-f153ac423f61-20211213-151626.mp4 6.13_7157_Player395-3796e0554423-20210813-164136.mp4\r\n6.13_15889_Player756-f153ac423f61-20211213-151828.mp4 6.13_7158_Player395-a84728e01b3b-20210813-172939.mp4\r\n6.13_1588_Player154-7004276e2932-20210903-122945.mp4 6.13_7159_Player395-cb9c120d74d7-20210722-232946.mp4\r\n6.13_15890_Player756-f153ac423f61-20211213-152131.mp4 6.13_715_Player124-f153ac423f61-20210801-135905.mp4\r\n6.13_15891_Player756-f153ac423f61-20211213-152435.mp4 6.13_7160_Player395-f153ac423f61-20210722-231805.mp4\r\n6.13_15892_Player756-f153ac423f61-20211213-152838.mp4 6.13_7161_Player395-f153ac423f61-20210813-132549.mp4\r\n6.13_15893_Player756-f153ac423f61-20211213-153343.mp4 6.13_7162_Player395-f153ac423f61-20210813-134717.mp4\r\n6.13_15894_Player756-f153ac423f61-20211213-153645.mp4 6.13_7163_Player395-f153ac423f61-20210813-160111.mp4\r\n6.13_15895_Player756-f153ac423f61-20211213-153946.mp4 6.13_7164_Player396-f153ac423f61-20211030-160030.mp4\r\n6.13_15896_Player756-f153ac423f61-20211213-154147.mp4 6.13_7165_Player396-f153ac423f61-20211030-160214.mp4\r\n6.13_15897_Player758-68d9d4821e96-20210908-222932.mp4 6.13_7166_Player396-f153ac423f61-20211030-160339.mp4\r\n6.13_15898_Player758-68d9d4821e96-20210908-223042.mp4 6.13_7167_Player396-f153ac423f61-20211030-160447.mp4\r\n6.13_15899_Player758-68d9d4821e96-20210908-223205.mp4 6.13_7168_Player396-f153ac423f61-20211030-160548.mp4\r\n6.13_1589_Player154-7004276e2932-20210903-123048.mp4 6.13_7169_Player396-f153ac423f61-20211030-160659.mp4\r\n6.13_158_Player104-f153ac423f61-20210828-144353.mp4 6.13_716_Player124-f153ac423f61-20210801-140107.mp4\r\n6.13_15900_Player758-68d9d4821e96-20210908-223328.mp4 6.13_7170_Player396-f153ac423f61-20211030-160838.mp4\r\n6.13_15901_Player758-68d9d4821e96-20210908-223453.mp4 6.13_7171_Player396-f153ac423f61-20211030-161023.mp4\r\n6.13_15902_Player758-68d9d4821e96-20210908-223619.mp4 6.13_7172_Player396-f153ac423f61-20211030-161200.mp4\r\n6.13_15903_Player758-68d9d4821e96-20210908-223745.mp4 6.13_7173_Player396-f153ac423f61-20211030-161345.mp4\r\n6.13_15904_Player758-68d9d4821e96-20210908-223919.mp4 6.13_7174_Player396-f153ac423f61-20211030-161538.mp4\r\n6.13_15905_Player758-68d9d4821e96-20210908-224102.mp4 6.13_7175_Player396-f153ac423f61-20211030-161728.mp4\r\n6.13_15906_Player758-68d9d4821e96-20210908-224240.mp4 6.13_7176_Player396-f153ac423f61-20211030-161923.mp4\r\n6.13_15907_Player758-68d9d4821e96-20210908-224404.mp4 6.13_7177_Player396-f153ac423f61-20211030-162124.mp4\r\n6.13_15908_Player758-68d9d4821e96-20210908-224531.mp4 6.13_7178_Player396-f153ac423f61-20211030-162335.mp4\r\n6.13_15909_Player758-68d9d4821e96-20210908-224710.mp4 6.13_7179_Player396-f153ac423f61-20211030-162543.mp4\r\n6.13_1590_Player154-7004276e2932-20210903-123158.mp4 6.13_717_Player124-f153ac423f61-20210801-140412.mp4\r\n6.13_15910_Player758-68d9d4821e96-20210908-224855.mp4 6.13_7180_Player396-f153ac423f61-20211030-162754.mp4\r\n6.13_15911_Player758-68d9d4821e96-20210908-225028.mp4 6.13_7181_Player396-f153ac423f61-20211030-162953.mp4\r\n6.13_15912_Player758-68d9d4821e96-20210908-225155.mp4 6.13_7182_Player396-f153ac423f61-20211030-163158.mp4\r\n6.13_15913_Player758-68d9d4821e96-20210908-225321.mp4 6.13_7183_Player396-f153ac423f61-20211030-163411.mp4\r\n6.13_15914_Player758-68d9d4821e96-20210908-225443.mp4 6.13_7184_Player396-f153ac423f61-20211030-163611.mp4\r\n6.13_15915_Player758-68d9d4821e96-20210908-225607.mp4 6.13_7185_Player396-f153ac423f61-20211030-163821.mp4\r\n6.13_15916_Player758-68d9d4821e96-20210908-225728.mp4 6.13_7186_Player396-f153ac423f61-20211030-164031.mp4\r\n6.13_15917_Player758-68d9d4821e96-20210908-225852.mp4 6.13_7187_Player396-f153ac423f61-20211030-164419.mp4\r\n6.13_15918_Player758-68d9d4821e96-20210908-230023.mp4 6.13_7188_Player396-f153ac423f61-20211122-222932.mp4\r\n6.13_15919_Player758-68d9d4821e96-20210908-230157.mp4 6.13_7189_Player397-f153ac423f61-20211215-131326.mp4\r\n6.13_1591_Player154-7004276e2932-20210903-123303.mp4 6.13_718_Player124-f153ac423f61-20210801-140715.mp4\r\n6.13_15920_Player758-68d9d4821e96-20210908-230325.mp4 6.13_7190_Player397-f153ac423f61-20211215-135422.mp4\r\n6.13_15921_Player758-68d9d4821e96-20210908-230446.mp4 6.13_7191_Player398-f153ac423f61-20210831-061028.mp4\r\n6.13_15922_Player758-68d9d4821e96-20210908-230620.mp4 6.13_7192_Player398-f153ac423f61-20210831-061801.mp4\r\n6.13_15923_Player758-f153ac423f61-20210908-211719.mp4 6.13_7193_Player398-f153ac423f61-20210831-062617.mp4\r\n6.13_15924_Player758-f153ac423f61-20210908-211912.mp4 6.13_7194_Player398-f153ac423f61-20210831-063328.mp4\r\n6.13_15925_Player758-f153ac423f61-20210908-212057.mp4 6.13_7195_Player398-f153ac423f61-20210831-065054.mp4\r\n6.13_15926_Player758-f153ac423f61-20210908-212237.mp4 6.13_7196_Player398-f153ac423f61-20210831-065805.mp4\r\n6.13_15927_Player758-f153ac423f61-20210908-212416.mp4 6.13_7197_Player398-f153ac423f61-20210831-070514.mp4\r\n6.13_15928_Player758-f153ac423f61-20210908-212551.mp4 6.13_7198_Player398-f153ac423f61-20210831-071232.mp4\r\n6.13_15929_Player758-f153ac423f61-20210908-212735.mp4 6.13_7199_Player398-f153ac423f61-20210831-071937.mp4\r\n6.13_1592_Player154-7004276e2932-20210903-123405.mp4 6.13_719_Player124-f153ac423f61-20210801-140916.mp4\r\n6.13_15930_Player758-f153ac423f61-20210908-212908.mp4 6.13_7200_Player398-f153ac423f61-20210831-072949.mp4\r\n6.13_15931_Player758-f153ac423f61-20210908-213054.mp4 6.13_7201_Player398-f153ac423f61-20210831-073656.mp4\r\n6.13_15932_Player758-f153ac423f61-20210908-213233.mp4 6.13_7202_Player398-f153ac423f61-20210831-074513.mp4\r\n6.13_15933_Player758-f153ac423f61-20210908-213423.mp4 6.13_7203_Player398-f153ac423f61-20210831-075236.mp4\r\n6.13_15934_Player758-f153ac423f61-20210908-213615.mp4 6.13_7204_Player398-f153ac423f61-20210831-075943.mp4\r\n6.13_15935_Player758-f153ac423f61-20210908-213754.mp4 6.13_7205_Player398-f153ac423f61-20210831-080705.mp4\r\n6.13_15936_Player758-f153ac423f61-20210908-213942.mp4 6.13_7206_Player398-f153ac423f61-20210831-081434.mp4\r\n6.13_15937_Player758-f153ac423f61-20210908-214111.mp4 6.13_7207_Player398-f153ac423f61-20210831-082206.mp4\r\n6.13_15938_Player758-f153ac423f61-20210908-214247.mp4 6.13_7208_Player398-f153ac423f61-20210831-083048.mp4\r\n6.13_15939_Player758-f153ac423f61-20210908-214424.mp4 6.13_7209_Player398-f153ac423f61-20210831-083812.mp4\r\n6.13_1593_Player154-7004276e2932-20210903-123506.mp4 6.13_720_Player124-f153ac423f61-20210801-141219.mp4\r\n6.13_15940_Player758-f153ac423f61-20210908-214558.mp4 6.13_7210_Player398-f153ac423f61-20210831-084534.mp4\r\n6.13_15941_Player758-f153ac423f61-20210908-214718.mp4 6.13_7211_Player398-f153ac423f61-20210831-085310.mp4\r\n6.13_15942_Player758-f153ac423f61-20210908-214845.mp4 6.13_7212_Player40-f153ac423f61-20210907-153127.mp4\r\n6.13_15943_Player758-f153ac423f61-20210908-215012.mp4 6.13_7213_Player40-f153ac423f61-20210907-153831.mp4\r\n6.13_15944_Player758-f153ac423f61-20210908-215143.mp4 6.13_7214_Player40-f153ac423f61-20210907-154927.mp4\r\n6.13_15945_Player758-f153ac423f61-20210908-215308.mp4 6.13_7215_Player40-f153ac423f61-20210907-164916.mp4\r\n6.13_15946_Player758-f153ac423f61-20210908-215433.mp4 6.13_7216_Player400-deba24d9e634-20211026-135047.mp4\r\n6.13_15947_Player758-f153ac423f61-20210908-215556.mp4 6.13_7217_Player400-deba24d9e634-20211026-135647.mp4\r\n6.13_15948_Player758-f153ac423f61-20210908-215718.mp4 6.13_7218_Player400-deba24d9e634-20211026-140249.mp4\r\n6.13_15949_Player758-f153ac423f61-20210908-215830.mp4 6.13_7219_Player400-f153ac423f61-20211026-103427.mp4\r\n6.13_1594_Player154-7004276e2932-20210903-123609.mp4 6.13_721_Player124-f153ac423f61-20210801-141421.mp4\r\n6.13_15950_Player758-f153ac423f61-20210908-215951.mp4 6.13_7220_Player400-f153ac423f61-20211026-104035.mp4\r\n6.13_15951_Player758-f153ac423f61-20210908-220108.mp4 6.13_7221_Player400-f153ac423f61-20211026-104639.mp4\r\n6.13_15952_Player758-f153ac423f61-20210908-220214.mp4 6.13_7222_Player400-f153ac423f61-20211026-105243.mp4\r\n6.13_15953_Player758-f153ac423f61-20210908-220343.mp4 6.13_7223_Player400-f153ac423f61-20211026-105845.mp4\r\n6.13_15954_Player758-f153ac423f61-20210908-220526.mp4 6.13_7224_Player400-f153ac423f61-20211026-110351.mp4\r\n6.13_15955_Player758-f153ac423f61-20210908-220705.mp4 6.13_7225_Player400-f153ac423f61-20211026-110853.mp4\r\n6.13_15956_Player758-f153ac423f61-20210908-220837.mp4 6.13_7226_Player400-f153ac423f61-20211026-111353.mp4\r\n6.13_15957_Player758-f153ac423f61-20210908-221011.mp4 6.13_7227_Player400-f153ac423f61-20211026-111854.mp4\r\n6.13_15958_Player758-f153ac423f61-20210908-221143.mp4 6.13_7228_Player400-f153ac423f61-20211026-112355.mp4\r\n6.13_15959_Player758-f153ac423f61-20210908-221307.mp4 6.13_7229_Player400-f153ac423f61-20211026-112856.mp4\r\n6.13_1595_Player154-8cff4f471846-20210821-180119.mp4 6.13_722_Player124-f153ac423f61-20210801-141623.mp4\r\n6.13_15960_Player758-f153ac423f61-20210908-221429.mp4 6.13_7230_Player400-f153ac423f61-20211026-113357.mp4\r\n6.13_15961_Player758-f153ac423f61-20210908-221550.mp4 6.13_7231_Player400-f153ac423f61-20211026-113858.mp4\r\n6.13_15962_Player758-f153ac423f61-20210908-221719.mp4 6.13_7232_Player400-f153ac423f61-20211026-114359.mp4\r\n6.13_15963_Player758-f153ac423f61-20210908-221856.mp4 6.13_7233_Player400-f153ac423f61-20211026-115000.mp4\r\n6.13_15964_Player758-f153ac423f61-20210908-222028.mp4 6.13_7234_Player400-f153ac423f61-20211026-115600.mp4\r\n6.13_15965_Player758-f153ac423f61-20210908-222205.mp4 6.13_7235_Player400-f153ac423f61-20211026-120201.mp4\r\n6.13_15966_Player758-f153ac423f61-20210908-222344.mp4 6.13_7236_Player400-f153ac423f61-20211026-120806.mp4\r\n6.13_15967_Player758-f153ac423f61-20210908-222517.mp4 6.13_7237_Player400-f153ac423f61-20211026-121412.mp4\r\n6.13_15968_Player758-f153ac423f61-20210908-222640.mp4 6.13_7238_Player400-f153ac423f61-20211026-122013.mp4\r\n6.13_15969_Player758-f153ac423f61-20210908-222816.mp4 6.13_7239_Player400-f153ac423f61-20211026-122614.mp4\r\n6.13_1596_Player154-8cff4f471846-20210821-180238.mp4 6.13_723_Player124-f153ac423f61-20210801-141825.mp4\r\n6.13_15970_Player759-b549789f407f-20211113-202906.mp4 6.13_7240_Player400-f153ac423f61-20211026-123215.mp4\r\n6.13_15971_Player759-b549789f407f-20211113-203309.mp4 6.13_7241_Player400-f153ac423f61-20211026-123815.mp4\r\n6.13_15972_Player759-b549789f407f-20211113-203710.mp4 6.13_7242_Player400-f153ac423f61-20211026-124416.mp4\r\n6.13_15973_Player759-b549789f407f-20211113-204112.mp4 6.13_7243_Player400-f153ac423f61-20211026-125016.mp4\r\n6.13_15974_Player759-b549789f407f-20211113-204413.mp4 6.13_7244_Player400-f153ac423f61-20211026-125616.mp4\r\n6.13_15975_Player759-b549789f407f-20211113-204815.mp4 6.13_7245_Player400-f153ac423f61-20211026-130218.mp4\r\n6.13_15976_Player759-b549789f407f-20211113-205216.mp4 6.13_7246_Player400-f153ac423f61-20211026-130819.mp4\r\n6.13_15977_Player759-b549789f407f-20211113-205617.mp4 6.13_7247_Player400-f153ac423f61-20211026-131421.mp4\r\n6.13_15978_Player759-b549789f407f-20211113-210024.mp4 6.13_7248_Player400-f153ac423f61-20211026-132023.mp4\r\n6.13_15979_Player759-b549789f407f-20211113-210324.mp4 6.13_7249_Player400-f153ac423f61-20211026-132624.mp4\r\n6.13_1597_Player154-8cff4f471846-20210821-180350.mp4 6.13_724_Player124-f153ac423f61-20210801-142028.mp4\r\n6.13_15980_Player759-b549789f407f-20211113-210725.mp4 6.13_7250_Player400-f153ac423f61-20211026-133225.mp4\r\n6.13_15981_Player759-b549789f407f-20211113-211126.mp4 6.13_7251_Player400-f153ac423f61-20211026-133826.mp4\r\n6.13_15982_Player759-b549789f407f-20211113-211529.mp4 6.13_7252_Player400-f153ac423f61-20211026-134427.mp4\r\n6.13_15983_Player759-b549789f407f-20211113-211930.mp4 6.13_7253_Player403-65a5bbcab443-20210730-132129.mp4\r\n6.13_15984_Player759-b549789f407f-20211113-212334.mp4 6.13_7254_Player403-65a5bbcab443-20210730-132234.mp4\r\n6.13_15985_Player759-b549789f407f-20211113-212641.mp4 6.13_7255_Player403-65a5bbcab443-20210730-132342.mp4\r\n6.13_15986_Player759-b549789f407f-20211113-213044.mp4 6.13_7256_Player403-65a5bbcab443-20210730-132502.mp4\r\n6.13_15987_Player759-b549789f407f-20211113-213446.mp4 6.13_7257_Player403-65a5bbcab443-20210730-132620.mp4\r\n6.13_15988_Player759-f153ac423f61-20211113-185250.mp4 6.13_7258_Player403-65a5bbcab443-20210730-132738.mp4\r\n6.13_15989_Player759-f153ac423f61-20211113-185558.mp4 6.13_7259_Player403-65a5bbcab443-20210730-132857.mp4\r\n6.13_1598_Player154-8cff4f471846-20210821-180457.mp4 6.13_725_Player124-f153ac423f61-20210801-142231.mp4\r\n6.13_15990_Player759-f153ac423f61-20211113-185900.mp4 6.13_7260_Player403-65a5bbcab443-20210730-133012.mp4\r\n6.13_15991_Player759-f153ac423f61-20211113-190202.mp4 6.13_7261_Player403-65a5bbcab443-20210730-133122.mp4\r\n6.13_15992_Player759-f153ac423f61-20211113-190609.mp4 6.13_7262_Player403-65a5bbcab443-20210730-133236.mp4\r\n6.13_15993_Player759-f153ac423f61-20211113-190911.mp4 6.13_7263_Player403-65a5bbcab443-20210730-133351.mp4\r\n6.13_15994_Player759-f153ac423f61-20211113-191212.mp4 6.13_7264_Player403-65a5bbcab443-20210730-133510.mp4\r\n6.13_15995_Player759-f153ac423f61-20211113-191615.mp4 6.13_7265_Player403-65a5bbcab443-20210730-133630.mp4\r\n6.13_15996_Player759-f153ac423f61-20211113-191916.mp4 6.13_7266_Player403-65a5bbcab443-20210730-133750.mp4\r\n6.13_15997_Player759-f153ac423f61-20211113-192320.mp4 6.13_7267_Player403-65a5bbcab443-20210730-133904.mp4\r\n6.13_15998_Player759-f153ac423f61-20211113-192622.mp4 6.13_7268_Player403-65a5bbcab443-20210730-134021.mp4\r\n6.13_15999_Player759-f153ac423f61-20211113-193024.mp4 6.13_7269_Player403-65a5bbcab443-20210730-134134.mp4\r\n6.13_1599_Player154-f153ac423f61-20210821-171707.mp4 6.13_726_Player124-f153ac423f61-20210801-142433.mp4\r\n6.13_159_Player104-f153ac423f61-20210828-145315.mp4 6.13_7270_Player403-65a5bbcab443-20210730-134253.mp4\r\n6.13_16000_Player759-f153ac423f61-20211113-193325.mp4 6.13_7271_Player403-65a5bbcab443-20210730-134414.mp4\r\n6.13_16001_Player759-f153ac423f61-20211113-193626.mp4 6.13_7272_Player403-65a5bbcab443-20210730-134530.mp4\r\n6.13_16002_Player759-f153ac423f61-20211113-193936.mp4 6.13_7273_Player403-65a5bbcab443-20210730-134649.mp4\r\n6.13_16003_Player759-f153ac423f61-20211113-194248.mp4 6.13_7274_Player403-65a5bbcab443-20210730-134803.mp4\r\n6.13_16004_Player759-f153ac423f61-20211113-194656.mp4 6.13_7275_Player403-65a5bbcab443-20210730-134912.mp4\r\n6.13_16005_Player759-f153ac423f61-20211113-195001.mp4 6.13_7276_Player403-65a5bbcab443-20210730-135032.mp4\r\n6.13_16006_Player759-f153ac423f61-20211113-195402.mp4 6.13_7277_Player403-65a5bbcab443-20210730-135151.mp4\r\n6.13_16007_Player759-f153ac423f61-20211113-195805.mp4 6.13_7278_Player403-65a5bbcab443-20210730-135302.mp4\r\n6.13_16008_Player759-f153ac423f61-20211113-200206.mp4 6.13_7279_Player403-7a28acf632d6-20210730-135439.mp4\r\n6.13_16009_Player759-f153ac423f61-20211113-200607.mp4 6.13_727_Player124-f153ac423f61-20210801-142635.mp4\r\n6.13_1600_Player154-f153ac423f61-20210821-171815.mp4 6.13_7280_Player403-f153ac423f61-20210730-124709.mp4\r\n6.13_16010_Player759-f153ac423f61-20211113-200908.mp4 6.13_7281_Player403-f153ac423f61-20210730-124818.mp4\r\n6.13_16011_Player759-f153ac423f61-20211113-201315.mp4 6.13_7282_Player403-f153ac423f61-20210730-125039.mp4\r\n6.13_16012_Player759-f153ac423f61-20211113-201715.mp4 6.13_7283_Player403-f153ac423f61-20210730-125151.mp4\r\n6.13_16013_Player759-f153ac423f61-20211113-202120.mp4 6.13_7284_Player403-f153ac423f61-20210730-125311.mp4\r\n6.13_16014_Player759-f153ac423f61-20211113-202520.mp4 6.13_7285_Player403-f153ac423f61-20210730-125424.mp4\r\n6.13_16015_Player761-e26e65daee74-20211104-100039.mp4 6.13_7286_Player403-f153ac423f61-20210730-125638.mp4\r\n6.13_16016_Player761-e26e65daee74-20211104-100743.mp4 6.13_7287_Player403-f153ac423f61-20210730-125754.mp4\r\n6.13_16017_Player761-e26e65daee74-20211104-101551.mp4 6.13_7288_Player403-f153ac423f61-20210730-125908.mp4\r\n6.13_16018_Player761-f153ac423f61-20211104-075936.mp4 6.13_7289_Player403-f153ac423f61-20210730-130027.mp4\r\n6.13_16019_Player761-f153ac423f61-20211104-080650.mp4 6.13_728_Player124-f153ac423f61-20210801-161816.mp4\r\n6.13_1601_Player154-f153ac423f61-20210821-171923.mp4 6.13_7290_Player403-f153ac423f61-20210730-130148.mp4\r\n6.13_16020_Player761-f153ac423f61-20211104-081559.mp4 6.13_7291_Player403-f153ac423f61-20210730-130309.mp4\r\n6.13_16021_Player761-f153ac423f61-20211104-082402.mp4 6.13_7292_Player403-f153ac423f61-20210730-130422.mp4\r\n6.13_16022_Player761-f153ac423f61-20211104-083208.mp4 6.13_7293_Player403-f153ac423f61-20210730-130534.mp4\r\n6.13_16023_Player761-f153ac423f61-20211104-083911.mp4 6.13_7294_Player403-f153ac423f61-20210730-130653.mp4\r\n6.13_16024_Player761-f153ac423f61-20211104-084833.mp4 6.13_7295_Player403-f153ac423f61-20210730-130812.mp4\r\n6.13_16025_Player761-f153ac423f61-20211104-085537.mp4 6.13_7296_Player403-f153ac423f61-20210730-130927.mp4\r\n6.13_16026_Player761-f153ac423f61-20211104-090940.mp4 6.13_7297_Player403-f153ac423f61-20210730-131045.mp4\r\n6.13_16027_Player761-f153ac423f61-20211104-092106.mp4 6.13_7298_Player403-f153ac423f61-20210730-131200.mp4\r\n6.13_16028_Player761-f153ac423f61-20211104-092909.mp4 6.13_7299_Player403-f153ac423f61-20210730-131313.mp4\r\n6.13_16029_Player763-f153ac423f61-20210918-113714.mp4 6.13_729_Player124-f153ac423f61-20210801-162017.mp4\r\n6.13_1602_Player154-f153ac423f61-20210821-172030.mp4 6.13_7300_Player403-f153ac423f61-20210730-131426.mp4\r\n6.13_16030_Player763-f153ac423f61-20210918-114350.mp4 6.13_7301_Player403-f153ac423f61-20210730-131539.mp4\r\n6.13_16031_Player763-f153ac423f61-20210918-115303.mp4 6.13_7302_Player403-f153ac423f61-20210730-131654.mp4\r\n6.13_16032_Player763-f153ac423f61-20210918-120449.mp4 6.13_7303_Player403-f153ac423f61-20210730-131803.mp4\r\n6.13_16033_Player763-f153ac423f61-20210918-121529.mp4 6.13_7304_Player403-f153ac423f61-20210730-131913.mp4\r\n6.13_16034_Player764-9b11ed936c05-20210730-142444.mp4 6.13_7305_Player403-f153ac423f61-20210730-132024.mp4\r\n6.13_16035_Player764-f153ac423f61-20210730-125617.mp4 6.13_7306_Player404-f153ac423f61-20211013-221928.mp4\r\n6.13_16036_Player764-f153ac423f61-20210730-125925.mp4 6.13_7307_Player404-f153ac423f61-20211013-222502.mp4\r\n6.13_16037_Player764-f153ac423f61-20210730-132716.mp4 6.13_7308_Player404-f153ac423f61-20211013-222720.mp4\r\n6.13_16038_Player764-f153ac423f61-20210730-133733.mp4 6.13_7309_Player404-f153ac423f61-20211013-222858.mp4\r\n6.13_16039_Player764-f153ac423f61-20210730-134438.mp4 6.13_730_Player124-f153ac423f61-20210801-162420.mp4\r\n6.13_1603_Player154-f153ac423f61-20210821-172135.mp4 6.13_7310_Player404-f153ac423f61-20211013-223024.mp4\r\n6.13_16040_Player764-f153ac423f61-20210730-135042.mp4 6.13_7311_Player404-f153ac423f61-20211013-223155.mp4\r\n6.13_16041_Player764-f153ac423f61-20210730-135443.mp4 6.13_7312_Player404-f153ac423f61-20211013-223352.mp4\r\n6.13_16042_Player764-f153ac423f61-20210730-135946.mp4 6.13_7313_Player404-f153ac423f61-20211013-223537.mp4\r\n6.13_16043_Player764-f153ac423f61-20210730-140451.mp4 6.13_7314_Player404-f153ac423f61-20211013-223655.mp4\r\n6.13_16044_Player764-f153ac423f61-20210730-140955.mp4 6.13_7315_Player404-f153ac423f61-20211013-223816.mp4\r\n6.13_16045_Player764-f153ac423f61-20210730-141359.mp4 6.13_7316_Player404-f153ac423f61-20211013-223931.mp4\r\n6.13_16046_Player764-f153ac423f61-20210730-141802.mp4 6.13_7317_Player404-f153ac423f61-20211013-224055.mp4\r\n6.13_16047_Player764-f153ac423f61-20210830-182945.mp4 6.13_7318_Player404-f153ac423f61-20211013-224210.mp4\r\n6.13_16048_Player764-f153ac423f61-20210830-183100.mp4 6.13_7319_Player404-f153ac423f61-20211013-224325.mp4\r\n6.13_16049_Player764-f153ac423f61-20210830-183214.mp4 6.13_731_Player124-f153ac423f61-20210801-162624.mp4\r\n6.13_1604_Player154-f153ac423f61-20210821-172241.mp4 6.13_7320_Player404-f153ac423f61-20211013-224446.mp4\r\n6.13_16050_Player764-f153ac423f61-20210830-183330.mp4 6.13_7321_Player404-f153ac423f61-20211013-224624.mp4\r\n6.13_16051_Player764-f153ac423f61-20210830-183445.mp4 6.13_7322_Player404-f153ac423f61-20211013-224757.mp4\r\n6.13_16052_Player764-f153ac423f61-20210830-183601.mp4 6.13_7323_Player404-f153ac423f61-20211013-224934.mp4\r\n6.13_16053_Player764-f153ac423f61-20210830-183718.mp4 6.13_7324_Player404-f153ac423f61-20211013-225113.mp4\r\n6.13_16054_Player764-f153ac423f61-20210830-183831.mp4 6.13_7325_Player404-f153ac423f61-20211013-225243.mp4\r\n6.13_16055_Player764-f153ac423f61-20210830-183934.mp4 6.13_7326_Player404-f153ac423f61-20211013-225410.mp4\r\n6.13_16056_Player764-f153ac423f61-20210830-184040.mp4 6.13_7327_Player404-f153ac423f61-20211013-225544.mp4\r\n6.13_16057_Player764-f153ac423f61-20210830-184142.mp4 6.13_7328_Player404-f153ac423f61-20211013-225719.mp4\r\n6.13_16058_Player764-f153ac423f61-20210830-184243.mp4 6.13_7329_Player404-f153ac423f61-20211013-225904.mp4\r\n6.13_16059_Player764-f153ac423f61-20210830-184344.mp4 6.13_732_Player124-f153ac423f61-20210801-163835.mp4\r\n6.13_1605_Player154-f153ac423f61-20210821-172348.mp4 6.13_7330_Player404-f153ac423f61-20211013-230048.mp4\r\n6.13_16060_Player764-f153ac423f61-20210830-184445.mp4 6.13_7331_Player404-f153ac423f61-20211013-230202.mp4\r\n6.13_16061_Player764-f153ac423f61-20210830-184546.mp4 6.13_7332_Player404-f153ac423f61-20211013-230310.mp4\r\n6.13_16062_Player764-f153ac423f61-20210830-184749.mp4 6.13_7333_Player404-f153ac423f61-20211013-230414.mp4\r\n6.13_16063_Player764-f153ac423f61-20210830-184852.mp4 6.13_7334_Player404-f153ac423f61-20211013-230527.mp4\r\n6.13_16064_Player764-f153ac423f61-20210830-184955.mp4 6.13_7335_Player404-f153ac423f61-20211013-230631.mp4\r\n6.13_16065_Player764-f153ac423f61-20210830-185057.mp4 6.13_7336_Player404-f153ac423f61-20211013-230737.mp4\r\n6.13_16066_Player764-f153ac423f61-20210830-185158.mp4 6.13_7337_Player404-f153ac423f61-20211013-230850.mp4\r\n6.13_16067_Player764-f153ac423f61-20210830-185301.mp4 6.13_7338_Player404-f153ac423f61-20211013-231024.mp4\r\n6.13_16068_Player764-f153ac423f61-20210830-185404.mp4 6.13_7339_Player404-f153ac423f61-20211013-231153.mp4\r\n6.13_16069_Player764-f153ac423f61-20210830-185513.mp4 6.13_733_Player124-f153ac423f61-20210801-164037.mp4\r\n6.13_1606_Player154-f153ac423f61-20210903-113751.mp4 6.13_7340_Player404-f153ac423f61-20211013-231316.mp4\r\n6.13_16070_Player764-f153ac423f61-20210830-185620.mp4 6.13_7341_Player404-f153ac423f61-20211013-231435.mp4\r\n6.13_16071_Player764-f153ac423f61-20210830-185732.mp4 6.13_7342_Player404-f153ac423f61-20211013-231538.mp4\r\n6.13_16072_Player764-f153ac423f61-20210830-185848.mp4 6.13_7343_Player404-f153ac423f61-20211013-231642.mp4\r\n6.13_16073_Player764-f153ac423f61-20210830-190005.mp4 6.13_7344_Player404-f153ac423f61-20211013-231755.mp4\r\n6.13_16074_Player764-f153ac423f61-20210830-190125.mp4 6.13_7345_Player404-f153ac423f61-20211013-231917.mp4\r\n6.13_16075_Player765-589d845416bf-20210806-125034.mp4 6.13_7346_Player404-f153ac423f61-20211013-232032.mp4\r\n6.13_16076_Player765-589d845416bf-20210806-131721.mp4 6.13_7347_Player404-f153ac423f61-20211013-232152.mp4\r\n6.13_16077_Player765-589d845416bf-20210806-134301.mp4 6.13_7348_Player404-f153ac423f61-20211013-232316.mp4\r\n6.13_16078_Player765-eea7de0b379b-20210806-085408.mp4 6.13_7349_Player404-f153ac423f61-20211013-232427.mp4\r\n6.13_16079_Player765-eea7de0b379b-20210806-092156.mp4 6.13_734_Player124-f153ac423f61-20210801-164239.mp4\r\n6.13_1607_Player154-f153ac423f61-20210903-113904.mp4 6.13_7350_Player404-f153ac423f61-20211013-232530.mp4\r\n6.13_16080_Player765-eea7de0b379b-20210806-094716.mp4 6.13_7351_Player404-f153ac423f61-20211013-232634.mp4\r\n6.13_16081_Player765-eea7de0b379b-20210806-101317.mp4 6.13_7352_Player404-f153ac423f61-20211013-232740.mp4\r\n6.13_16082_Player765-eea7de0b379b-20210806-103847.mp4 6.13_7353_Player404-f153ac423f61-20211013-232842.mp4\r\n6.13_16083_Player765-eea7de0b379b-20210806-110515.mp4 6.13_7354_Player404-f153ac423f61-20211013-232956.mp4\r\n6.13_16084_Player765-eea7de0b379b-20210806-113046.mp4 6.13_7355_Player404-f153ac423f61-20211013-233117.mp4\r\n6.13_16085_Player765-eea7de0b379b-20210806-115739.mp4 6.13_7356_Player404-f153ac423f61-20211013-233240.mp4\r\n6.13_16086_Player765-f153ac423f61-20210806-065952.mp4 6.13_7357_Player404-f153ac423f61-20211013-233413.mp4\r\n6.13_16087_Player765-f153ac423f61-20210806-072539.mp4 6.13_7358_Player404-f153ac423f61-20211013-233528.mp4\r\n6.13_16088_Player765-f153ac423f61-20210806-075134.mp4 6.13_7359_Player404-f153ac423f61-20211013-233633.mp4\r\n6.13_16089_Player765-f153ac423f61-20210806-081621.mp4 6.13_735_Player124-f153ac423f61-20210801-164441.mp4\r\n6.13_1608_Player154-f153ac423f61-20210903-114011.mp4 6.13_7360_Player404-f153ac423f61-20211013-233741.mp4\r\n6.13_16090_Player766-83ead0d313aa-20210804-205714.mp4 6.13_7361_Player404-f153ac423f61-20211013-233856.mp4\r\n6.13_16091_Player766-f153ac423f61-20210804-183714.mp4 6.13_7362_Player404-f153ac423f61-20211013-234014.mp4\r\n6.13_16092_Player766-f153ac423f61-20210804-184037.mp4 6.13_7363_Player404-f153ac423f61-20211013-234138.mp4\r\n6.13_16093_Player769-f153ac423f61-20210723-221952.mp4 6.13_7364_Player404-f153ac423f61-20211013-234254.mp4\r\n6.13_16094_Player769-f153ac423f61-20210723-222056.mp4 6.13_7365_Player404-f153ac423f61-20211013-234420.mp4\r\n6.13_16095_Player769-f153ac423f61-20210723-222156.mp4 6.13_7366_Player404-f153ac423f61-20211213-132449.mp4\r\n6.13_16096_Player769-f153ac423f61-20210723-222257.mp4 6.13_7367_Player404-f153ac423f61-20211213-132903.mp4\r\n6.13_16097_Player769-f153ac423f61-20210723-222357.mp4 6.13_7368_Player404-f153ac423f61-20211213-133225.mp4\r\n6.13_16098_Player769-f153ac423f61-20210723-222458.mp4 6.13_7369_Player404-f153ac423f61-20211213-133557.mp4\r\n6.13_16099_Player769-f153ac423f61-20210723-222558.mp4 6.13_736_Player124-f153ac423f61-20210801-164645.mp4\r\n6.13_1609_Player154-f153ac423f61-20210903-114114.mp4 6.13_7370_Player404-f153ac423f61-20211213-134019.mp4\r\n6.13_160_Player104-f153ac423f61-20210828-150019.mp4 6.13_7371_Player404-f153ac423f61-20211213-134440.mp4\r\n6.13_16100_Player769-f153ac423f61-20210723-222658.mp4 6.13_7372_Player404-f153ac423f61-20211213-134836.mp4\r\n6.13_16101_Player769-f153ac423f61-20210723-222759.mp4 6.13_7373_Player404-f153ac423f61-20211213-135142.mp4\r\n6.13_16102_Player769-f153ac423f61-20210723-222859.mp4 6.13_7374_Player404-f153ac423f61-20211213-135546.mp4\r\n6.13_16103_Player769-f153ac423f61-20210723-223000.mp4 6.13_7375_Player404-f153ac423f61-20211213-140051.mp4\r\n6.13_16104_Player769-f153ac423f61-20210723-223100.mp4 6.13_7376_Player404-f153ac423f61-20211213-140454.mp4\r\n6.13_16105_Player769-f153ac423f61-20210723-223200.mp4 6.13_7377_Player404-f153ac423f61-20211213-140859.mp4\r\n6.13_16106_Player770-9e48c63df681-20210829-171806.mp4 6.13_7378_Player404-f153ac423f61-20211213-141304.mp4\r\n6.13_16107_Player770-9e48c63df681-20210829-171909.mp4 6.13_7379_Player404-f153ac423f61-20211213-141814.mp4\r\n6.13_16108_Player770-9e48c63df681-20210829-172012.mp4 6.13_737_Player124-f153ac423f61-20210801-164848.mp4\r\n6.13_16109_Player770-9e48c63df681-20210829-172116.mp4 6.13_7380_Player404-f153ac423f61-20211213-142244.mp4\r\n6.13_1610_Player154-f153ac423f61-20210903-114216.mp4 6.13_7381_Player404-f153ac423f61-20211213-142756.mp4\r\n6.13_16110_Player770-9e48c63df681-20210829-172221.mp4 6.13_7382_Player404-f153ac423f61-20211213-143203.mp4\r\n6.13_16111_Player770-9e48c63df681-20210829-172329.mp4 6.13_7383_Player404-f153ac423f61-20211213-143510.mp4\r\n6.13_16112_Player770-9e48c63df681-20210829-172433.mp4 6.13_7384_Player404-f153ac423f61-20211213-143921.mp4\r\n6.13_16113_Player770-9e48c63df681-20210829-172541.mp4 6.13_7385_Player404-f153ac423f61-20211213-144307.mp4\r\n6.13_16114_Player770-9e48c63df681-20210829-172645.mp4 6.13_7386_Player404-f153ac423f61-20211213-144804.mp4\r\n6.13_16115_Player770-9e48c63df681-20210829-172750.mp4 6.13_7387_Player404-f153ac423f61-20211213-145154.mp4\r\n6.13_16116_Player770-9e48c63df681-20210829-172856.mp4 6.13_7388_Player404-f153ac423f61-20211213-145519.mp4\r\n6.13_16117_Player770-9e48c63df681-20210829-173000.mp4 6.13_7389_Player404-f153ac423f61-20211213-145924.mp4\r\n6.13_16118_Player770-9e48c63df681-20210829-173102.mp4 6.13_738_Player124-f153ac423f61-20210801-165049.mp4\r\n6.13_16119_Player770-9e48c63df681-20210829-173209.mp4 6.13_7390_Player404-f153ac423f61-20211213-150330.mp4\r\n6.13_1611_Player154-f153ac423f61-20210903-114318.mp4 6.13_7391_Player406-f153ac423f61-20210807-104242.mp4\r\n6.13_16120_Player770-9e48c63df681-20210829-173314.mp4 6.13_7392_Player406-f153ac423f61-20210807-104608.mp4\r\n6.13_16121_Player770-9e48c63df681-20210829-173427.mp4 6.13_7393_Player406-f153ac423f61-20210807-104915.mp4\r\n6.13_16122_Player770-9e48c63df681-20210829-173649.mp4 6.13_7394_Player406-f153ac423f61-20210807-105223.mp4\r\n6.13_16123_Player770-9e48c63df681-20210829-173856.mp4 6.13_7395_Player406-f153ac423f61-20210807-105546.mp4\r\n6.13_16124_Player770-9e48c63df681-20210829-174110.mp4 6.13_7396_Player406-f153ac423f61-20210807-105855.mp4\r\n6.13_16125_Player770-9e48c63df681-20210829-174313.mp4 6.13_7397_Player406-f153ac423f61-20210807-110337.mp4\r\n6.13_16126_Player770-9e48c63df681-20210829-174519.mp4 6.13_7398_Player406-f153ac423f61-20210807-110641.mp4\r\n6.13_16127_Player770-9e48c63df681-20210829-174731.mp4 6.13_7399_Player406-f153ac423f61-20210807-111008.mp4\r\n6.13_16128_Player770-9e48c63df681-20210829-174950.mp4 6.13_739_Player124-f153ac423f61-20210801-165249.mp4\r\n6.13_16129_Player770-9e48c63df681-20210829-175054.mp4 6.13_7400_Player406-f153ac423f61-20210807-111412.mp4\r\n6.13_1612_Player154-f153ac423f61-20210903-114422.mp4 6.13_7401_Player406-f153ac423f61-20210807-111717.mp4\r\n6.13_16130_Player770-9e48c63df681-20210829-175201.mp4 6.13_7402_Player406-f153ac423f61-20210807-112919.mp4\r\n6.13_16131_Player770-f153ac423f61-20210829-164446.mp4 6.13_7403_Player407-8672f9caff0d-20210813-233934.mp4\r\n6.13_16132_Player770-f153ac423f61-20210829-164551.mp4 6.13_7404_Player407-8672f9caff0d-20210813-234127.mp4\r\n6.13_16133_Player770-f153ac423f61-20210829-164655.mp4 6.13_7405_Player407-8672f9caff0d-20210813-234301.mp4\r\n6.13_16134_Player770-f153ac423f61-20210829-164758.mp4 6.13_7406_Player407-8672f9caff0d-20210813-234444.mp4\r\n6.13_16135_Player770-f153ac423f61-20210829-164858.mp4 6.13_7407_Player407-8672f9caff0d-20210813-234625.mp4\r\n6.13_16136_Player770-f153ac423f61-20210829-165000.mp4 6.13_7408_Player407-8672f9caff0d-20210813-234806.mp4\r\n6.13_16137_Player770-f153ac423f61-20210829-165101.mp4 6.13_7409_Player407-8672f9caff0d-20210813-234956.mp4\r\n6.13_16138_Player770-f153ac423f61-20210829-165204.mp4 6.13_740_Player124-f153ac423f61-20210801-165451.mp4\r\n6.13_16139_Player770-f153ac423f61-20210829-165305.mp4 6.13_7410_Player407-8672f9caff0d-20210813-235147.mp4\r\n6.13_1613_Player154-f153ac423f61-20210903-114524.mp4 6.13_7411_Player407-8672f9caff0d-20210813-235331.mp4\r\n6.13_16140_Player770-f153ac423f61-20210829-165406.mp4 6.13_7412_Player407-f153ac423f61-20210813-214604.mp4\r\n6.13_16141_Player770-f153ac423f61-20210829-165506.mp4 6.13_7413_Player407-f153ac423f61-20210813-214748.mp4\r\n6.13_16142_Player770-f153ac423f61-20210829-165607.mp4 6.13_7414_Player407-f153ac423f61-20210813-214921.mp4\r\n6.13_16143_Player770-f153ac423f61-20210829-165707.mp4 6.13_7415_Player407-f153ac423f61-20210813-215102.mp4\r\n6.13_16144_Player770-f153ac423f61-20210829-165808.mp4 6.13_7416_Player407-f153ac423f61-20210813-215239.mp4\r\n6.13_16145_Player770-f153ac423f61-20210829-165908.mp4 6.13_7417_Player407-f153ac423f61-20210813-215413.mp4\r\n6.13_16146_Player770-f153ac423f61-20210829-170009.mp4 6.13_7418_Player407-f153ac423f61-20210813-215550.mp4\r\n6.13_16147_Player770-f153ac423f61-20210829-170110.mp4 6.13_7419_Player407-f153ac423f61-20210813-215728.mp4\r\n6.13_16148_Player770-f153ac423f61-20210829-170211.mp4 6.13_741_Player124-f153ac423f61-20210801-165652.mp4\r\n6.13_16149_Player770-f153ac423f61-20210829-170313.mp4 6.13_7420_Player407-f153ac423f61-20210813-215906.mp4\r\n6.13_1614_Player154-f153ac423f61-20210903-114628.mp4 6.13_7421_Player407-f153ac423f61-20210813-220038.mp4\r\n6.13_16150_Player770-f153ac423f61-20210829-170413.mp4 6.13_7422_Player407-f153ac423f61-20210813-220210.mp4\r\n6.13_16151_Player770-f153ac423f61-20210829-170515.mp4 6.13_7423_Player407-f153ac423f61-20210813-220339.mp4\r\n6.13_16152_Player770-f153ac423f61-20210829-170616.mp4 6.13_7424_Player407-f153ac423f61-20210813-220510.mp4\r\n6.13_16153_Player770-f153ac423f61-20210829-170717.mp4 6.13_7425_Player407-f153ac423f61-20210813-220655.mp4\r\n6.13_16154_Player770-f153ac423f61-20210829-170820.mp4 6.13_7426_Player407-f153ac423f61-20210813-220823.mp4\r\n6.13_16155_Player770-f153ac423f61-20210829-170933.mp4 6.13_7427_Player407-f153ac423f61-20210813-220945.mp4\r\n6.13_16156_Player770-f153ac423f61-20210829-171035.mp4 6.13_7428_Player407-f153ac423f61-20210813-221125.mp4\r\n6.13_16157_Player770-f153ac423f61-20210829-171138.mp4 6.13_7429_Player407-f153ac423f61-20210813-221254.mp4\r\n6.13_16158_Player770-f153ac423f61-20210829-171245.mp4 6.13_742_Player124-f153ac423f61-20210801-165853.mp4\r\n6.13_16159_Player770-f153ac423f61-20210829-171347.mp4 6.13_7430_Player407-f153ac423f61-20210813-221435.mp4\r\n6.13_1615_Player154-f153ac423f61-20210903-114732.mp4 6.13_7431_Player407-f153ac423f61-20210813-221602.mp4\r\n6.13_16160_Player770-f153ac423f61-20210829-171449.mp4 6.13_7432_Player407-f153ac423f61-20210813-221741.mp4\r\n6.13_16161_Player770-f153ac423f61-20210829-171554.mp4 6.13_7433_Player407-f153ac423f61-20210813-221915.mp4\r\n6.13_16162_Player770-f153ac423f61-20210829-171655.mp4 6.13_7434_Player407-f153ac423f61-20210813-222058.mp4\r\n6.13_16163_Player775-6e7f21727063-20211120-154959.mp4 6.13_7435_Player407-f153ac423f61-20210813-222236.mp4\r\n6.13_16164_Player775-6e7f21727063-20211120-155402.mp4 6.13_7436_Player407-f153ac423f61-20210813-222419.mp4\r\n6.13_16165_Player775-6e7f21727063-20211120-155804.mp4 6.13_7437_Player407-f153ac423f61-20210813-222553.mp4\r\n6.13_16166_Player775-6e7f21727063-20211120-160209.mp4 6.13_7438_Player407-f153ac423f61-20210813-222724.mp4\r\n6.13_16167_Player775-6e7f21727063-20211120-160612.mp4 6.13_7439_Player407-f153ac423f61-20210813-222854.mp4\r\n6.13_16168_Player775-6e7f21727063-20211120-161016.mp4 6.13_743_Player124-f153ac423f61-20210801-170054.mp4\r\n6.13_16169_Player775-cdf70ed944aa-20211120-170938.mp4 6.13_7440_Player407-f153ac423f61-20210813-223041.mp4\r\n6.13_1616_Player154-f153ac423f61-20210903-114833.mp4 6.13_7441_Player407-f153ac423f61-20210813-223225.mp4\r\n6.13_16170_Player775-cdf70ed944aa-20211120-171450.mp4 6.13_7442_Player407-f153ac423f61-20210813-223347.mp4\r\n6.13_16171_Player775-cdf70ed944aa-20211120-171859.mp4 6.13_7443_Player407-f153ac423f61-20210813-223511.mp4\r\n6.13_16172_Player775-cdf70ed944aa-20211120-172303.mp4 6.13_7444_Player407-f153ac423f61-20210813-223631.mp4\r\n6.13_16173_Player775-cdf70ed944aa-20211120-172808.mp4 6.13_7445_Player407-f153ac423f61-20210813-223900.mp4\r\n6.13_16174_Player775-cdf70ed944aa-20211120-173311.mp4 6.13_7446_Player407-f153ac423f61-20210813-224025.mp4\r\n6.13_16175_Player775-cdf70ed944aa-20211120-173716.mp4 6.13_7447_Player407-f153ac423f61-20210813-224207.mp4\r\n6.13_16176_Player775-cdf70ed944aa-20211120-174117.mp4 6.13_7448_Player407-f153ac423f61-20210813-224351.mp4\r\n6.13_16177_Player775-cdf70ed944aa-20211120-174523.mp4 6.13_7449_Player407-f153ac423f61-20210813-224533.mp4\r\n6.13_16178_Player775-cdf70ed944aa-20211120-174936.mp4 6.13_744_Player124-f153ac423f61-20210801-170255.mp4\r\n6.13_16179_Player775-cdf70ed944aa-20211120-175342.mp4 6.13_7450_Player407-f153ac423f61-20210813-224723.mp4\r\n6.13_1617_Player154-f153ac423f61-20210903-114934.mp4 6.13_7451_Player407-f153ac423f61-20210813-224910.mp4\r\n6.13_16180_Player775-cdf70ed944aa-20211120-175748.mp4 6.13_7452_Player407-f153ac423f61-20210813-225100.mp4\r\n6.13_16181_Player775-cdf70ed944aa-20211120-180157.mp4 6.13_7453_Player407-f153ac423f61-20210813-225256.mp4\r\n6.13_16182_Player775-cdf70ed944aa-20211120-180600.mp4 6.13_7454_Player407-f153ac423f61-20210813-225438.mp4\r\n6.13_16183_Player775-cdf70ed944aa-20211120-181008.mp4 6.13_7455_Player407-f153ac423f61-20210813-225627.mp4\r\n6.13_16184_Player775-cdf70ed944aa-20211120-181434.mp4 6.13_7456_Player407-f153ac423f61-20210813-225809.mp4\r\n6.13_16185_Player775-cdf70ed944aa-20211120-181902.mp4 6.13_7457_Player407-f153ac423f61-20210813-225940.mp4\r\n6.13_16186_Player775-cdf70ed944aa-20211120-182313.mp4 6.13_7458_Player407-f153ac423f61-20210813-230108.mp4\r\n6.13_16187_Player775-cdf70ed944aa-20211120-182716.mp4 6.13_7459_Player407-f153ac423f61-20210813-230240.mp4\r\n6.13_16188_Player775-cdf70ed944aa-20211120-183120.mp4 6.13_745_Player124-f153ac423f61-20210801-170456.mp4\r\n6.13_16189_Player775-cdf70ed944aa-20211120-183528.mp4 6.13_7460_Player407-f153ac423f61-20210813-230426.mp4\r\n6.13_1618_Player154-f153ac423f61-20210903-115036.mp4 6.13_7461_Player407-f153ac423f61-20210813-230615.mp4\r\n6.13_16190_Player775-cdf70ed944aa-20211120-183931.mp4 6.13_7462_Player407-f153ac423f61-20210813-230804.mp4\r\n6.13_16191_Player775-cdf70ed944aa-20211120-184335.mp4 6.13_7463_Player407-f153ac423f61-20210813-230956.mp4\r\n6.13_16192_Player775-cdf70ed944aa-20211120-184742.mp4 6.13_7464_Player407-f153ac423f61-20210813-231142.mp4\r\n6.13_16193_Player775-cdf70ed944aa-20211120-185145.mp4 6.13_7465_Player407-f153ac423f61-20210813-231331.mp4\r\n6.13_16194_Player775-cdf70ed944aa-20211120-185548.mp4 6.13_7466_Player407-f153ac423f61-20210813-231511.mp4\r\n6.13_16195_Player775-cdf70ed944aa-20211120-190056.mp4 6.13_7467_Player407-f153ac423f61-20210813-231657.mp4\r\n6.13_16196_Player775-cdf70ed944aa-20211120-190459.mp4 6.13_7468_Player407-f153ac423f61-20210813-231847.mp4\r\n6.13_16197_Player775-cdf70ed944aa-20211120-190905.mp4 6.13_7469_Player407-f153ac423f61-20210813-232029.mp4\r\n6.13_16198_Player775-cdf70ed944aa-20211120-191311.mp4 6.13_746_Player124-f153ac423f61-20210801-170658.mp4\r\n6.13_16199_Player775-cdf70ed944aa-20211120-191812.mp4 6.13_7470_Player407-f153ac423f61-20210813-232211.mp4\r\n6.13_1619_Player154-f153ac423f61-20210903-115138.mp4 6.13_7471_Player407-f153ac423f61-20210813-232358.mp4\r\n6.13_161_Player104-f153ac423f61-20210828-150723.mp4 6.13_7472_Player407-f153ac423f61-20210813-232546.mp4\r\n6.13_16200_Player775-cdf70ed944aa-20211120-192213.mp4 6.13_7473_Player407-f153ac423f61-20210813-232742.mp4\r\n6.13_16201_Player775-cdf70ed944aa-20211120-192619.mp4 6.13_7474_Player407-f153ac423f61-20210813-232929.mp4\r\n6.13_16202_Player775-cdf70ed944aa-20211120-193126.mp4 6.13_7475_Player407-f153ac423f61-20210813-233108.mp4\r\n6.13_16203_Player775-cdf70ed944aa-20211120-193528.mp4 6.13_7476_Player407-f153ac423f61-20210813-233248.mp4\r\n6.13_16204_Player775-cdf70ed944aa-20211120-193933.mp4 6.13_7477_Player407-f153ac423f61-20210813-233435.mp4\r\n6.13_16205_Player775-cdf70ed944aa-20211120-194438.mp4 6.13_7478_Player407-f153ac423f61-20210813-233617.mp4\r\n6.13_16206_Player775-cdf70ed944aa-20211120-194841.mp4 6.13_7479_Player407-f153ac423f61-20210813-233809.mp4\r\n6.13_16207_Player775-cdf70ed944aa-20211120-195349.mp4 6.13_747_Player124-f153ac423f61-20210801-171000.mp4\r\n6.13_16208_Player775-cdf70ed944aa-20211120-195751.mp4 6.13_7480_Player407-f153ac423f61-20211024-105005.mp4\r\n6.13_16209_Player775-cdf70ed944aa-20211120-200153.mp4 6.13_7481_Player407-f153ac423f61-20211024-105157.mp4\r\n6.13_1620_Player154-f153ac423f61-20210903-115239.mp4 6.13_7482_Player407-f153ac423f61-20211024-105350.mp4\r\n6.13_16210_Player775-cdf70ed944aa-20211120-200558.mp4 6.13_7483_Player407-f153ac423f61-20211024-105545.mp4\r\n6.13_16211_Player775-cdf70ed944aa-20211120-201103.mp4 6.13_7484_Player407-f153ac423f61-20211024-105740.mp4\r\n6.13_16212_Player775-cdf70ed944aa-20211120-201507.mp4 6.13_7485_Player407-f153ac423f61-20211024-105927.mp4\r\n6.13_16213_Player775-cdf70ed944aa-20211120-201909.mp4 6.13_7486_Player407-f153ac423f61-20211024-110105.mp4\r\n6.13_16214_Player775-cdf70ed944aa-20211120-202312.mp4 6.13_7487_Player407-f153ac423f61-20211024-110245.mp4\r\n6.13_16215_Player775-cdf70ed944aa-20211120-202719.mp4 6.13_7488_Player407-f153ac423f61-20211024-110428.mp4\r\n6.13_16216_Player775-cdf70ed944aa-20211120-203127.mp4 6.13_7489_Player407-f153ac423f61-20211024-110637.mp4\r\n6.13_16217_Player775-cdf70ed944aa-20211120-203532.mp4 6.13_748_Player124-f153ac423f61-20210801-171201.mp4\r\n6.13_16218_Player775-cdf70ed944aa-20211120-203937.mp4 6.13_7490_Player407-f153ac423f61-20211024-110856.mp4\r\n6.13_16219_Player775-cdf70ed944aa-20211120-204339.mp4 6.13_7491_Player407-f153ac423f61-20211024-111038.mp4\r\n6.13_1621_Player154-f153ac423f61-20210903-115440.mp4 6.13_7492_Player407-f153ac423f61-20211024-111228.mp4\r\n6.13_16220_Player775-cdf70ed944aa-20211120-204743.mp4 6.13_7493_Player407-f153ac423f61-20211024-111424.mp4\r\n6.13_16221_Player775-cdf70ed944aa-20211120-205148.mp4 6.13_7494_Player407-f153ac423f61-20211024-111615.mp4\r\n6.13_16222_Player775-cdf70ed944aa-20211120-205553.mp4 6.13_7495_Player407-f153ac423f61-20211024-111814.mp4\r\n6.13_16223_Player775-f153ac423f61-20211120-150734.mp4 6.13_7496_Player407-f153ac423f61-20211024-111957.mp4\r\n6.13_16224_Player775-f153ac423f61-20211120-151149.mp4 6.13_7497_Player407-f153ac423f61-20211024-112202.mp4\r\n6.13_16225_Player775-f153ac423f61-20211120-151551.mp4 6.13_7498_Player407-f153ac423f61-20211024-112414.mp4\r\n6.13_16226_Player775-f153ac423f61-20211120-151952.mp4 6.13_7499_Player407-f153ac423f61-20211024-112609.mp4\r\n6.13_16227_Player775-f153ac423f61-20211120-152407.mp4 6.13_749_Player124-f153ac423f61-20210801-171402.mp4\r\n6.13_16228_Player775-f153ac423f61-20211120-152812.mp4 6.13_7500_Player407-f153ac423f61-20211024-112753.mp4\r\n6.13_16229_Player775-f153ac423f61-20211120-153217.mp4 6.13_7501_Player407-f153ac423f61-20211024-112959.mp4\r\n6.13_1622_Player154-f153ac423f61-20210903-115742.mp4 6.13_7502_Player407-f153ac423f61-20211024-113217.mp4\r\n6.13_16230_Player775-f153ac423f61-20211120-153628.mp4 6.13_7503_Player407-f153ac423f61-20211024-113419.mp4\r\n6.13_16231_Player775-f153ac423f61-20211120-154045.mp4 6.13_7504_Player407-f153ac423f61-20211024-113602.mp4\r\n6.13_16232_Player775-f153ac423f61-20211120-154550.mp4 6.13_7505_Player407-f153ac423f61-20211024-113738.mp4\r\n6.13_16233_Player779-f153ac423f61-20210730-192644.mp4 6.13_7506_Player407-f153ac423f61-20211024-113914.mp4\r\n6.13_16234_Player779-f153ac423f61-20210730-192755.mp4 6.13_7507_Player407-f153ac423f61-20211024-114056.mp4\r\n6.13_16235_Player779-f153ac423f61-20210730-192859.mp4 6.13_7508_Player407-f153ac423f61-20211024-114238.mp4\r\n6.13_16236_Player779-f153ac423f61-20210730-193004.mp4 6.13_7509_Player407-f153ac423f61-20211024-114426.mp4\r\n6.13_16237_Player779-f153ac423f61-20210730-193111.mp4 6.13_750_Player124-f153ac423f61-20210801-171603.mp4\r\n6.13_16238_Player779-f153ac423f61-20210730-193223.mp4 6.13_7510_Player407-f153ac423f61-20211024-114619.mp4\r\n6.13_16239_Player779-f153ac423f61-20210730-193343.mp4 6.13_7511_Player407-f153ac423f61-20211024-114745.mp4\r\n6.13_1623_Player154-f153ac423f61-20210903-120246.mp4 6.13_7512_Player408-f153ac423f61-20211025-101534.mp4\r\n6.13_16240_Player779-f153ac423f61-20210730-193457.mp4 6.13_7513_Player408-f153ac423f61-20211025-101707.mp4\r\n6.13_16241_Player779-f153ac423f61-20210730-193611.mp4 6.13_7514_Player408-f153ac423f61-20211025-101846.mp4\r\n6.13_16242_Player779-f153ac423f61-20210730-193727.mp4 6.13_7515_Player408-f153ac423f61-20211025-102025.mp4\r\n6.13_16243_Player779-f153ac423f61-20210730-193831.mp4 6.13_7516_Player408-f153ac423f61-20211025-102205.mp4\r\n6.13_16244_Player779-f153ac423f61-20210730-193945.mp4 6.13_7517_Player408-f153ac423f61-20211025-102336.mp4\r\n6.13_16245_Player779-f153ac423f61-20210730-194059.mp4 6.13_7518_Player408-f153ac423f61-20211025-102522.mp4\r\n6.13_16246_Player779-f153ac423f61-20210730-194220.mp4 6.13_7519_Player408-f153ac423f61-20211025-102710.mp4\r\n6.13_16247_Player779-f153ac423f61-20210730-194335.mp4 6.13_751_Player124-f153ac423f61-20210801-171804.mp4\r\n6.13_16248_Player779-f153ac423f61-20210730-194443.mp4 6.13_7520_Player408-f153ac423f61-20211025-102850.mp4\r\n6.13_16249_Player779-f153ac423f61-20210730-194604.mp4 6.13_7521_Player408-f153ac423f61-20211025-103021.mp4\r\n6.13_1624_Player154-f153ac423f61-20210903-120451.mp4 6.13_7522_Player408-f153ac423f61-20211025-103156.mp4\r\n6.13_16250_Player779-f153ac423f61-20210730-194724.mp4 6.13_7523_Player408-f153ac423f61-20211025-103325.mp4\r\n6.13_16251_Player779-f153ac423f61-20210730-194844.mp4 6.13_7524_Player410-f153ac423f61-20210812-121633.mp4\r\n6.13_16252_Player779-f153ac423f61-20210730-195011.mp4 6.13_7525_Player410-f153ac423f61-20210812-121820.mp4\r\n6.13_16253_Player779-f153ac423f61-20210730-195128.mp4 6.13_7526_Player410-f153ac423f61-20210812-121958.mp4\r\n6.13_16254_Player779-f153ac423f61-20210730-195235.mp4 6.13_7527_Player413-f153ac423f61-20211111-200942.mp4\r\n6.13_16255_Player779-f153ac423f61-20210730-195346.mp4 6.13_7528_Player415-f153ac423f61-20211122-161222.mp4\r\n6.13_16256_Player779-f153ac423f61-20210730-195452.mp4 6.13_7529_Player416-f153ac423f61-20210725-234752.mp4\r\n6.13_16257_Player779-f153ac423f61-20210730-195608.mp4 6.13_752_Player124-f153ac423f61-20210801-172106.mp4\r\n6.13_16258_Player779-f153ac423f61-20210730-195719.mp4 6.13_7530_Player416-f153ac423f61-20210725-234912.mp4\r\n6.13_16259_Player779-f153ac423f61-20210730-195830.mp4 6.13_7531_Player416-f153ac423f61-20210725-235016.mp4\r\n6.13_1625_Player154-f153ac423f61-20210903-120552.mp4 6.13_7532_Player416-f153ac423f61-20210725-235126.mp4\r\n6.13_16260_Player779-f153ac423f61-20210730-195940.mp4 6.13_7533_Player416-f153ac423f61-20210725-235250.mp4\r\n6.13_16261_Player779-f153ac423f61-20210730-200041.mp4 6.13_7534_Player416-f153ac423f61-20210725-235411.mp4\r\n6.13_16262_Player779-f153ac423f61-20210730-200147.mp4 6.13_7535_Player416-f153ac423f61-20210725-235537.mp4\r\n6.13_16263_Player779-f153ac423f61-20210730-200308.mp4 6.13_7536_Player416-f153ac423f61-20210725-235703.mp4\r\n6.13_16264_Player78-04e4c277e813-20210829-153438.mp4 6.13_7537_Player416-f153ac423f61-20210725-235828.mp4\r\n6.13_16265_Player78-04e4c277e813-20210829-153543.mp4 6.13_7538_Player416-f153ac423f61-20210725-235952.mp4\r\n6.13_16266_Player78-04e4c277e813-20210829-153645.mp4 6.13_7539_Player416-f153ac423f61-20210726-000117.mp4\r\n6.13_16267_Player78-04e4c277e813-20210829-153746.mp4 6.13_753_Player124-f153ac423f61-20210801-172307.mp4\r\n6.13_16268_Player78-04e4c277e813-20210829-153847.mp4 6.13_7540_Player416-f153ac423f61-20210726-000243.mp4\r\n6.13_16269_Player78-04e4c277e813-20210829-153948.mp4 6.13_7541_Player416-f153ac423f61-20210726-000409.mp4\r\n6.13_1626_Player154-f153ac423f61-20210903-120654.mp4 6.13_7542_Player416-f153ac423f61-20210726-000533.mp4\r\n6.13_16270_Player78-04e4c277e813-20210829-154049.mp4 6.13_7543_Player416-f153ac423f61-20210726-000656.mp4\r\n6.13_16271_Player78-04e4c277e813-20210829-154150.mp4 6.13_7544_Player416-f153ac423f61-20210726-000823.mp4\r\n6.13_16272_Player78-04e4c277e813-20210829-154251.mp4 6.13_7545_Player416-f153ac423f61-20210726-000948.mp4\r\n6.13_16273_Player78-04e4c277e813-20210829-154354.mp4 6.13_7546_Player416-f153ac423f61-20210726-001107.mp4\r\n6.13_16274_Player78-04e4c277e813-20210829-154456.mp4 6.13_7547_Player416-f153ac423f61-20210726-001210.mp4\r\n6.13_16275_Player78-04e4c277e813-20210829-154559.mp4 6.13_7548_Player416-f153ac423f61-20210726-001315.mp4\r\n6.13_16276_Player78-04e4c277e813-20210829-154701.mp4 6.13_7549_Player416-f153ac423f61-20210726-001424.mp4\r\n6.13_16277_Player78-04e4c277e813-20210829-154804.mp4 6.13_754_Player124-f153ac423f61-20210801-172509.mp4\r\n6.13_16278_Player78-04e4c277e813-20210829-154905.mp4 6.13_7550_Player416-f153ac423f61-20210726-001532.mp4\r\n6.13_16279_Player78-04e4c277e813-20210829-155008.mp4 6.13_7551_Player416-f153ac423f61-20210726-001640.mp4\r\n6.13_1627_Player154-f153ac423f61-20210903-120754.mp4 6.13_7552_Player416-f153ac423f61-20210726-001751.mp4\r\n6.13_16280_Player78-04e4c277e813-20210829-155110.mp4 6.13_7553_Player416-f153ac423f61-20210726-001854.mp4\r\n6.13_16281_Player78-04e4c277e813-20210829-155214.mp4 6.13_7554_Player416-f153ac423f61-20210726-001957.mp4\r\n6.13_16282_Player78-04e4c277e813-20210829-155315.mp4 6.13_7555_Player416-f153ac423f61-20210726-002113.mp4\r\n6.13_16283_Player78-04e4c277e813-20210829-155417.mp4 6.13_7556_Player416-f153ac423f61-20210726-002237.mp4\r\n6.13_16284_Player78-04e4c277e813-20210829-155522.mp4 6.13_7557_Player416-f153ac423f61-20210726-002403.mp4\r\n6.13_16285_Player78-04e4c277e813-20210829-155628.mp4 6.13_7558_Player416-f153ac423f61-20210726-002527.mp4\r\n6.13_16286_Player78-04e4c277e813-20210829-155731.mp4 6.13_7559_Player416-f153ac423f61-20210726-002647.mp4\r\n6.13_16287_Player78-04e4c277e813-20210829-155835.mp4 6.13_755_Player128-77289991e55c-20210903-130548.mp4\r\n6.13_16288_Player78-04e4c277e813-20210829-155938.mp4 6.13_7560_Player416-f153ac423f61-20210726-002812.mp4\r\n6.13_16289_Player78-04e4c277e813-20210829-160144.mp4 6.13_7561_Player416-f153ac423f61-20210726-002936.mp4\r\n6.13_1628_Player154-f153ac423f61-20210903-120855.mp4 6.13_7562_Player419-f153ac423f61-20211212-125140.mp4\r\n6.13_16290_Player78-04e4c277e813-20210829-160247.mp4 6.13_7563_Player419-f153ac423f61-20211212-132008.mp4\r\n6.13_16291_Player78-04e4c277e813-20210829-160351.mp4 6.13_7564_Player42-296e5220dc5e-20210825-120827.mp4\r\n6.13_16292_Player78-04e4c277e813-20210829-160454.mp4 6.13_7565_Player42-f153ac423f61-20210825-120805.mp4\r\n6.13_16293_Player78-cdf1d42c2819-20210829-160521.mp4 6.13_7566_Player421-f153ac423f61-20210805-125059.mp4\r\n6.13_16294_Player78-cdf1d42c2819-20210829-161300.mp4 6.13_7567_Player421-f153ac423f61-20210805-134558.mp4\r\n6.13_16295_Player78-cdf1d42c2819-20210829-162216.mp4 6.13_7568_Player421-f153ac423f61-20210809-201109.mp4\r\n6.13_16296_Player78-f153ac423f61-20210829-153401.mp4 6.13_7569_Player421-f153ac423f61-20210809-202457.mp4\r\n6.13_16297_Player785-f153ac423f61-20210722-115720.mp4 6.13_756_Player128-77289991e55c-20210903-130651.mp4\r\n6.13_16298_Player785-f153ac423f61-20210722-115838.mp4 6.13_7570_Player421-f153ac423f61-20210809-205317.mp4\r\n6.13_16299_Player785-f153ac423f61-20210722-115946.mp4 6.13_7571_Player421-f153ac423f61-20210809-214509.mp4\r\n6.13_1629_Player154-f153ac423f61-20210903-120957.mp4 6.13_7572_Player422-f153ac423f61-20211110-223412.mp4\r\n6.13_162_Player104-f153ac423f61-20210828-151429.mp4 6.13_7573_Player422-f153ac423f61-20211110-230030.mp4\r\n6.13_16300_Player785-f153ac423f61-20210722-120049.mp4 6.13_7574_Player422-f153ac423f61-20211110-232349.mp4\r\n6.13_16301_Player785-f153ac423f61-20210722-120152.mp4 6.13_7575_Player422-f153ac423f61-20211110-234637.mp4\r\n6.13_16302_Player785-f153ac423f61-20210722-120253.mp4 6.13_7576_Player424-a218195e30de-20210831-193900.mp4\r\n6.13_16303_Player785-f153ac423f61-20210722-120354.mp4 6.13_7577_Player424-b2e3bbcec6df-20210831-193935.mp4\r\n6.13_16304_Player785-f153ac423f61-20210722-120456.mp4 6.13_7578_Player424-b2e3bbcec6df-20210831-194036.mp4\r\n6.13_16305_Player785-f153ac423f61-20210722-120557.mp4 6.13_7579_Player424-b2e3bbcec6df-20210831-194445.mp4\r\n6.13_16306_Player785-f153ac423f61-20210722-120658.mp4 6.13_757_Player128-77289991e55c-20210903-130754.mp4\r\n6.13_16307_Player785-f153ac423f61-20210722-120759.mp4 6.13_7580_Player424-f153ac423f61-20210730-152055.mp4\r\n6.13_16308_Player785-f153ac423f61-20210722-120902.mp4 6.13_7581_Player424-f153ac423f61-20210730-152405.mp4\r\n6.13_16309_Player785-f153ac423f61-20210722-121003.mp4 6.13_7582_Player424-f153ac423f61-20210730-152832.mp4\r\n6.13_1630_Player154-f153ac423f61-20210903-121059.mp4 6.13_7583_Player424-f153ac423f61-20210730-154118.mp4\r\n6.13_16310_Player785-f153ac423f61-20210722-121107.mp4 6.13_7584_Player424-f153ac423f61-20210730-160142.mp4\r\n6.13_16311_Player785-f153ac423f61-20210722-121215.mp4 6.13_7585_Player424-f153ac423f61-20210730-160617.mp4\r\n6.13_16312_Player785-f153ac423f61-20210722-121322.mp4 6.13_7586_Player424-f153ac423f61-20210730-161032.mp4\r\n6.13_16313_Player785-f153ac423f61-20210722-121437.mp4 6.13_7587_Player424-f153ac423f61-20210730-161455.mp4\r\n6.13_16314_Player785-f153ac423f61-20210722-121606.mp4 6.13_7588_Player424-f153ac423f61-20210730-161923.mp4\r\n6.13_16315_Player785-f153ac423f61-20210722-121738.mp4 6.13_7589_Player424-f153ac423f61-20210730-162334.mp4\r\n6.13_16316_Player785-f153ac423f61-20210722-121905.mp4 6.13_758_Player128-77289991e55c-20210903-130855.mp4\r\n6.13_16317_Player785-f153ac423f61-20210722-122031.mp4 6.13_7590_Player424-f153ac423f61-20210831-193315.mp4\r\n6.13_16318_Player785-f153ac423f61-20210722-122150.mp4 6.13_7591_Player424-f153ac423f61-20210831-193419.mp4\r\n6.13_16319_Player785-f153ac423f61-20210722-122311.mp4 6.13_7592_Player425-f153ac423f61-20210805-110120.mp4\r\n6.13_1631_Player154-f153ac423f61-20210903-121200.mp4 6.13_7593_Player425-f153ac423f61-20210805-110226.mp4\r\n6.13_16320_Player788-f153ac423f61-20210831-023019.mp4 6.13_7594_Player425-f153ac423f61-20210805-110328.mp4\r\n6.13_16321_Player795-30124df25146-20210730-160447.mp4 6.13_7595_Player425-f153ac423f61-20210805-110429.mp4\r\n",,terminal_output +649,6810914,"TERMINAL",0,0,"6.13_16322_Player795-30124df25146-20210730-160750.mp4 6.13_7596_Player425-f153ac423f61-20210805-110531.mp4\r\n6.13_16323_Player795-30124df25146-20210730-161302.mp4 6.13_7597_Player425-f153ac423f61-20210805-110632.mp4\r\n6.13_16324_Player795-30124df25146-20210730-161909.mp4 6.13_7598_Player425-f153ac423f61-20210805-110734.mp4\r\n6.13_16325_Player795-40f7d8170b02-20210730-162846.mp4 6.13_7599_Player425-f153ac423f61-20210805-110835.mp4\r\n6.13_16326_Player795-40f7d8170b02-20210730-163350.mp4 6.13_759_Player128-77289991e55c-20210903-130958.mp4\r\n6.13_16327_Player795-40f7d8170b02-20210730-163853.mp4 6.13_7600_Player425-f153ac423f61-20210805-110936.mp4\r\n6.13_16328_Player795-40f7d8170b02-20210730-164055.mp4 6.13_7601_Player425-f153ac423f61-20210805-111037.mp4\r\n6.13_16329_Player795-40f7d8170b02-20210730-165116.mp4 6.13_7602_Player425-f153ac423f61-20210805-111138.mp4\r\n6.13_1632_Player154-f153ac423f61-20210903-121303.mp4 6.13_7603_Player425-f153ac423f61-20210805-111238.mp4\r\n6.13_16330_Player795-d3732403febb-20210730-162349.mp4 6.13_7604_Player425-f153ac423f61-20210805-111339.mp4\r\n6.13_16331_Player795-f153ac423f61-20210730-150944.mp4 6.13_7605_Player425-f153ac423f61-20210805-111439.mp4\r\n6.13_16332_Player795-f153ac423f61-20210730-151151.mp4 6.13_7606_Player425-f153ac423f61-20210805-111539.mp4\r\n6.13_16333_Player795-f153ac423f61-20210730-151453.mp4 6.13_7607_Player425-f153ac423f61-20210805-111639.mp4\r\n6.13_16334_Player795-f153ac423f61-20210730-151754.mp4 6.13_7608_Player425-f153ac423f61-20210805-111740.mp4\r\n6.13_16335_Player795-f153ac423f61-20210730-152239.mp4 6.13_7609_Player425-f153ac423f61-20210805-111842.mp4\r\n6.13_16336_Player795-f153ac423f61-20210730-152742.mp4 6.13_760_Player128-77289991e55c-20210903-131104.mp4\r\n6.13_16337_Player795-f153ac423f61-20210730-153344.mp4 6.13_7610_Player425-f153ac423f61-20210805-111945.mp4\r\n6.13_16338_Player795-f153ac423f61-20210730-153847.mp4 6.13_7611_Player425-f153ac423f61-20210805-112046.mp4\r\n6.13_16339_Player795-f153ac423f61-20210730-154350.mp4 6.13_7612_Player425-f153ac423f61-20210805-112147.mp4\r\n6.13_1633_Player154-f153ac423f61-20210903-121405.mp4 6.13_7613_Player425-f153ac423f61-20210805-112248.mp4\r\n6.13_16340_Player795-f153ac423f61-20210730-155055.mp4 6.13_7614_Player425-f153ac423f61-20210805-112348.mp4\r\n6.13_16341_Player795-f153ac423f61-20210901-111227.mp4 6.13_7615_Player425-f153ac423f61-20210819-150553.mp4\r\n6.13_16342_Player795-f153ac423f61-20210901-111333.mp4 6.13_7616_Player425-f153ac423f61-20210819-150655.mp4\r\n6.13_16343_Player795-f153ac423f61-20210901-111437.mp4 6.13_7617_Player425-f153ac423f61-20210819-150758.mp4\r\n6.13_16344_Player795-f153ac423f61-20210901-111540.mp4 6.13_7618_Player425-f153ac423f61-20210819-150859.mp4\r\n6.13_16345_Player795-f153ac423f61-20210901-111644.mp4 6.13_7619_Player425-f153ac423f61-20210819-151002.mp4\r\n6.13_16346_Player795-f153ac423f61-20210901-111747.mp4 6.13_761_Player128-77289991e55c-20210903-131213.mp4\r\n6.13_16347_Player795-f153ac423f61-20210901-111850.mp4 6.13_7620_Player425-f153ac423f61-20210819-151104.mp4\r\n6.13_16348_Player795-f153ac423f61-20210901-111953.mp4 6.13_7621_Player425-f153ac423f61-20210819-151205.mp4\r\n6.13_16349_Player795-f153ac423f61-20210901-112059.mp4 6.13_7622_Player425-f153ac423f61-20210819-151311.mp4\r\n6.13_1634_Player154-f153ac423f61-20210903-121508.mp4 6.13_7623_Player425-f153ac423f61-20210819-151416.mp4\r\n6.13_16350_Player795-f153ac423f61-20210901-112200.mp4 6.13_7624_Player425-f153ac423f61-20210819-151520.mp4\r\n6.13_16351_Player795-f153ac423f61-20210901-112301.mp4 6.13_7625_Player425-f153ac423f61-20210819-151625.mp4\r\n6.13_16352_Player795-f153ac423f61-20210901-112403.mp4 6.13_7626_Player425-f153ac423f61-20210819-151727.mp4\r\n6.13_16353_Player795-f153ac423f61-20210901-112505.mp4 6.13_7627_Player425-f153ac423f61-20210819-151945.mp4\r\n6.13_16354_Player795-f153ac423f61-20210901-112609.mp4 6.13_7628_Player425-f153ac423f61-20210819-152052.mp4\r\n6.13_16355_Player795-f153ac423f61-20210901-112715.mp4 6.13_7629_Player425-f153ac423f61-20210819-152200.mp4\r\n6.13_16356_Player795-f153ac423f61-20210901-112819.mp4 6.13_762_Player128-77289991e55c-20210903-131326.mp4\r\n6.13_16357_Player795-f153ac423f61-20210901-112931.mp4 6.13_7630_Player425-f153ac423f61-20210819-152305.mp4\r\n6.13_16358_Player795-f153ac423f61-20210901-113038.mp4 6.13_7631_Player425-f153ac423f61-20210819-152412.mp4\r\n6.13_16359_Player795-f153ac423f61-20210901-113140.mp4 6.13_7632_Player425-f153ac423f61-20210819-152521.mp4\r\n6.13_1635_Player154-f153ac423f61-20210903-121610.mp4 6.13_7633_Player425-f153ac423f61-20210819-152626.mp4\r\n6.13_16360_Player795-f153ac423f61-20210901-113241.mp4 6.13_7634_Player425-f153ac423f61-20210819-152728.mp4\r\n6.13_16361_Player795-f153ac423f61-20210901-113342.mp4 6.13_7635_Player425-f153ac423f61-20210819-152853.mp4\r\n6.13_16362_Player795-f153ac423f61-20210901-113443.mp4 6.13_7636_Player425-f153ac423f61-20210819-153001.mp4\r\n6.13_16363_Player795-f153ac423f61-20210901-113544.mp4 6.13_7637_Player425-f153ac423f61-20210819-153102.mp4\r\n6.13_16364_Player795-f153ac423f61-20210901-113649.mp4 6.13_7638_Player425-f153ac423f61-20210819-153204.mp4\r\n6.13_16365_Player795-f153ac423f61-20210901-113753.mp4 6.13_7639_Player425-f153ac423f61-20210819-153305.mp4\r\n6.13_16366_Player795-f153ac423f61-20210901-113856.mp4 6.13_763_Player128-77289991e55c-20210903-131429.mp4\r\n6.13_16367_Player795-f153ac423f61-20210901-114000.mp4 6.13_7640_Player425-f153ac423f61-20210819-153407.mp4\r\n6.13_16368_Player795-f153ac423f61-20210901-114108.mp4 6.13_7641_Player425-f153ac423f61-20210819-153508.mp4\r\n6.13_16369_Player795-f153ac423f61-20210901-114210.mp4 6.13_7642_Player425-f153ac423f61-20210819-153609.mp4\r\n6.13_1636_Player154-f153ac423f61-20210903-121712.mp4 6.13_7643_Player425-f153ac423f61-20210819-153710.mp4\r\n6.13_16370_Player795-f153ac423f61-20210901-114315.mp4 6.13_7644_Player425-f153ac423f61-20210819-153812.mp4\r\n6.13_16371_Player795-f153ac423f61-20210901-114419.mp4 6.13_7645_Player425-f153ac423f61-20210819-153918.mp4\r\n6.13_16372_Player795-f153ac423f61-20210901-114524.mp4 6.13_7646_Player425-f153ac423f61-20210819-154028.mp4\r\n6.13_16373_Player796-f153ac423f61-20211011-214758.mp4 6.13_7647_Player425-f153ac423f61-20210819-154142.mp4\r\n6.13_16374_Player796-f153ac423f61-20211011-214937.mp4 6.13_7648_Player425-f153ac423f61-20210819-154244.mp4\r\n6.13_16375_Player796-f153ac423f61-20211011-215111.mp4 6.13_7649_Player427-f153ac423f61-20211203-224118.mp4\r\n6.13_16376_Player796-f153ac423f61-20211011-215246.mp4 6.13_764_Player128-77289991e55c-20210903-131530.mp4\r\n6.13_16377_Player796-f153ac423f61-20211011-215427.mp4 6.13_7650_Player428-f153ac423f61-20211110-174901.mp4\r\n6.13_16378_Player796-f153ac423f61-20211011-215613.mp4 6.13_7651_Player428-f153ac423f61-20211110-175432.mp4\r\n6.13_16379_Player796-f153ac423f61-20211011-215754.mp4 6.13_7652_Player428-f153ac423f61-20211110-175551.mp4\r\n6.13_1637_Player154-f153ac423f61-20210903-121814.mp4 6.13_7653_Player428-f153ac423f61-20211110-175709.mp4\r\n6.13_16380_Player796-f153ac423f61-20211011-215931.mp4 6.13_7654_Player428-f153ac423f61-20211110-175828.mp4\r\n6.13_16381_Player796-f153ac423f61-20211011-220108.mp4 6.13_7655_Player428-f153ac423f61-20211110-175950.mp4\r\n6.13_16382_Player796-f153ac423f61-20211011-220256.mp4 6.13_7656_Player428-f153ac423f61-20211110-180107.mp4\r\n6.13_16383_Player796-f153ac423f61-20211011-220442.mp4 6.13_7657_Player428-f153ac423f61-20211110-180233.mp4\r\n6.13_16384_Player796-f153ac423f61-20211011-220628.mp4 6.13_7658_Player428-f153ac423f61-20211110-180351.mp4\r\n6.13_16385_Player796-f153ac423f61-20211011-220811.mp4 6.13_7659_Player428-f153ac423f61-20211110-180508.mp4\r\n6.13_16386_Player796-f153ac423f61-20211011-221006.mp4 6.13_765_Player128-77289991e55c-20210903-131631.mp4\r\n6.13_16387_Player796-f153ac423f61-20211011-221207.mp4 6.13_7660_Player428-f153ac423f61-20211110-180627.mp4\r\n6.13_16388_Player796-f153ac423f61-20211011-221400.mp4 6.13_7661_Player428-f153ac423f61-20211110-180749.mp4\r\n6.13_16389_Player796-f153ac423f61-20211011-221546.mp4 6.13_7662_Player428-f153ac423f61-20211110-180912.mp4\r\n6.13_1638_Player154-f153ac423f61-20210903-121916.mp4 6.13_7663_Player428-f153ac423f61-20211110-181033.mp4\r\n6.13_16390_Player796-f153ac423f61-20211011-221734.mp4 6.13_7664_Player428-f153ac423f61-20211110-181140.mp4\r\n6.13_16391_Player796-f153ac423f61-20211011-221922.mp4 6.13_7665_Player428-f153ac423f61-20211110-181305.mp4\r\n6.13_16392_Player796-f153ac423f61-20211011-222105.mp4 6.13_7666_Player428-f153ac423f61-20211110-181425.mp4\r\n6.13_16393_Player796-f153ac423f61-20211011-222246.mp4 6.13_7667_Player428-f153ac423f61-20211110-181542.mp4\r\n6.13_16394_Player796-f153ac423f61-20211011-222435.mp4 6.13_7668_Player428-f153ac423f61-20211110-181649.mp4\r\n6.13_16395_Player796-f153ac423f61-20211011-222614.mp4 6.13_7669_Player428-f153ac423f61-20211110-181801.mp4\r\n6.13_16396_Player796-f153ac423f61-20211011-222754.mp4 6.13_766_Player128-77289991e55c-20210903-131731.mp4\r\n6.13_16397_Player796-f153ac423f61-20211011-222921.mp4 6.13_7670_Player428-f153ac423f61-20211110-181912.mp4\r\n6.13_16398_Player796-f153ac423f61-20211011-223036.mp4 6.13_7671_Player428-f153ac423f61-20211110-182022.mp4\r\n6.13_16399_Player796-f153ac423f61-20211011-223156.mp4 6.13_7672_Player428-f153ac423f61-20211110-182233.mp4\r\n6.13_1639_Player154-f153ac423f61-20210903-122017.mp4 6.13_7673_Player428-f153ac423f61-20211110-182358.mp4\r\n6.13_163_Player104-f153ac423f61-20210828-152135.mp4 6.13_7674_Player428-f153ac423f61-20211110-182517.mp4\r\n6.13_16400_Player796-f153ac423f61-20211011-223321.mp4 6.13_7675_Player428-f153ac423f61-20211110-182644.mp4\r\n6.13_16401_Player796-f153ac423f61-20211011-223447.mp4 6.13_7676_Player428-f153ac423f61-20211110-182804.mp4\r\n6.13_16402_Player796-f153ac423f61-20211011-223608.mp4 6.13_7677_Player428-f153ac423f61-20211110-182943.mp4\r\n6.13_16403_Player796-f153ac423f61-20211011-223733.mp4 6.13_7678_Player428-f153ac423f61-20211110-183150.mp4\r\n6.13_16404_Player796-f153ac423f61-20211011-223902.mp4 6.13_7679_Player428-f153ac423f61-20211110-183321.mp4\r\n6.13_16405_Player796-f153ac423f61-20211011-224033.mp4 6.13_767_Player128-77289991e55c-20210903-131832.mp4\r\n6.13_16406_Player796-f153ac423f61-20211011-224156.mp4 6.13_7680_Player428-f153ac423f61-20211110-185500.mp4\r\n6.13_16407_Player796-f153ac423f61-20211011-224309.mp4 6.13_7681_Player430-8104a0973a25-20210830-120556.mp4\r\n6.13_16408_Player796-f153ac423f61-20211011-224437.mp4 6.13_7682_Player430-8104a0973a25-20210830-120704.mp4\r\n6.13_16409_Player796-f153ac423f61-20211011-224604.mp4 6.13_7683_Player430-8104a0973a25-20210830-120809.mp4\r\n6.13_1640_Player155-f153ac423f61-20210812-150018.mp4 6.13_7684_Player430-8104a0973a25-20210830-120914.mp4\r\n6.13_16410_Player796-f153ac423f61-20211011-224726.mp4 6.13_7685_Player430-8104a0973a25-20210830-121016.mp4\r\n6.13_16411_Player796-f153ac423f61-20211011-224856.mp4 6.13_7686_Player430-8104a0973a25-20210830-121119.mp4\r\n6.13_16412_Player796-f153ac423f61-20211011-225012.mp4 6.13_7687_Player430-8104a0973a25-20210830-121223.mp4\r\n6.13_16413_Player796-f153ac423f61-20211011-225150.mp4 6.13_7688_Player430-8104a0973a25-20210830-121324.mp4\r\n6.13_16414_Player796-f153ac423f61-20211011-225318.mp4 6.13_7689_Player430-8104a0973a25-20210830-121425.mp4\r\n6.13_16415_Player796-f153ac423f61-20211011-225430.mp4 6.13_768_Player128-77289991e55c-20210903-131936.mp4\r\n6.13_16416_Player797-f153ac423f61-20211216-133235.mp4 6.13_7690_Player430-8104a0973a25-20210830-121528.mp4\r\n6.13_16417_Player797-f153ac423f61-20211216-133337.mp4 6.13_7691_Player430-8104a0973a25-20210830-121632.mp4\r\n6.13_16418_Player797-f153ac423f61-20211216-133438.mp4 6.13_7692_Player430-8104a0973a25-20210830-121749.mp4\r\n6.13_16419_Player797-f153ac423f61-20211216-133541.mp4 6.13_7693_Player430-8104a0973a25-20210830-121852.mp4\r\n6.13_1641_Player155-f153ac423f61-20210812-153104.mp4 6.13_7694_Player430-8104a0973a25-20210830-122000.mp4\r\n6.13_16420_Player797-f153ac423f61-20211216-133644.mp4 6.13_7695_Player430-8104a0973a25-20210830-122101.mp4\r\n6.13_16421_Player797-f153ac423f61-20211216-133748.mp4 6.13_7696_Player430-8104a0973a25-20210830-122203.mp4\r\n6.13_16422_Player797-f153ac423f61-20211216-133851.mp4 6.13_7697_Player430-8104a0973a25-20210830-122304.mp4\r\n6.13_16423_Player797-f153ac423f61-20211216-133956.mp4 6.13_7698_Player430-8104a0973a25-20210830-122406.mp4\r\n6.13_16424_Player797-f153ac423f61-20211216-134103.mp4 6.13_7699_Player430-8104a0973a25-20210830-122507.mp4\r\n6.13_16425_Player797-f153ac423f61-20211216-134210.mp4 6.13_769_Player128-77289991e55c-20210903-132039.mp4\r\n6.13_16426_Player797-f153ac423f61-20211216-134326.mp4 6.13_7700_Player430-8104a0973a25-20210830-122608.mp4\r\n6.13_16427_Player797-f153ac423f61-20211216-134440.mp4 6.13_7701_Player430-8104a0973a25-20210830-122711.mp4\r\n6.13_16428_Player797-f153ac423f61-20211216-134554.mp4 6.13_7702_Player430-8104a0973a25-20210830-122816.mp4\r\n6.13_16429_Player797-f153ac423f61-20211216-134711.mp4 6.13_7703_Player430-8104a0973a25-20210830-122922.mp4\r\n6.13_1642_Player155-f153ac423f61-20210812-163138.mp4 6.13_7704_Player430-8104a0973a25-20210830-123028.mp4\r\n6.13_16430_Player797-f153ac423f61-20211216-134824.mp4 6.13_7705_Player430-8104a0973a25-20210830-123134.mp4\r\n6.13_16431_Player798-f153ac423f61-20210720-224555.mp4 6.13_7706_Player430-8104a0973a25-20210830-123239.mp4\r\n6.13_16432_Player798-f153ac423f61-20210720-230128.mp4 6.13_7707_Player430-8104a0973a25-20210830-123347.mp4\r\n6.13_16433_Player798-f153ac423f61-20210720-231842.mp4 6.13_7708_Player430-8104a0973a25-20210830-123456.mp4\r\n6.13_16434_Player798-f153ac423f61-20210720-233456.mp4 6.13_7709_Player430-8104a0973a25-20210830-123558.mp4\r\n6.13_16435_Player80-4d6f9ae375ff-20210912-184042.mp4 6.13_770_Player128-77289991e55c-20210903-132141.mp4\r\n6.13_16436_Player80-4d6f9ae375ff-20210912-184846.mp4 6.13_7710_Player430-8104a0973a25-20210830-123703.mp4\r\n6.13_16437_Player80-4d6f9ae375ff-20210912-185750.mp4 6.13_7711_Player430-8104a0973a25-20210830-123814.mp4\r\n6.13_16438_Player80-91c0a22b8f16-20210912-143116.mp4 6.13_7712_Player430-f153ac423f61-20210830-112950.mp4\r\n6.13_16439_Player80-91c0a22b8f16-20210912-144026.mp4 6.13_7713_Player430-f153ac423f61-20210830-113055.mp4\r\n6.13_1643_Player16-f153ac423f61-20211125-202657.mp4 6.13_7714_Player430-f153ac423f61-20210830-113158.mp4\r\n6.13_16440_Player80-91c0a22b8f16-20210912-144935.mp4 6.13_7715_Player430-f153ac423f61-20210830-113301.mp4\r\n6.13_16441_Player80-91c0a22b8f16-20210912-145738.mp4 6.13_7716_Player430-f153ac423f61-20210830-113406.mp4\r\n6.13_16442_Player80-91c0a22b8f16-20210912-150539.mp4 6.13_7717_Player430-f153ac423f61-20210830-113511.mp4\r\n6.13_16443_Player80-91c0a22b8f16-20210912-151440.mp4 6.13_7718_Player430-f153ac423f61-20210830-113614.mp4\r\n6.13_16444_Player80-91c0a22b8f16-20210912-152354.mp4 6.13_7719_Player430-f153ac423f61-20210830-113715.mp4\r\n6.13_16445_Player80-91c0a22b8f16-20210912-153300.mp4 6.13_771_Player128-77289991e55c-20210903-132244.mp4\r\n6.13_16446_Player80-91c0a22b8f16-20210912-154314.mp4 6.13_7720_Player430-f153ac423f61-20210830-113821.mp4\r\n6.13_16447_Player80-91c0a22b8f16-20210912-155218.mp4 6.13_7721_Player430-f153ac423f61-20210830-113929.mp4\r\n6.13_16448_Player80-91c0a22b8f16-20210912-160229.mp4 6.13_7722_Player430-f153ac423f61-20210830-114031.mp4\r\n6.13_16449_Player80-91c0a22b8f16-20210912-161131.mp4 6.13_7723_Player430-f153ac423f61-20210830-114138.mp4\r\n6.13_1644_Player16-f153ac423f61-20211125-202805.mp4 6.13_7724_Player430-f153ac423f61-20210830-114241.mp4\r\n6.13_16450_Player80-91c0a22b8f16-20210912-162034.mp4 6.13_7725_Player430-f153ac423f61-20210830-114346.mp4\r\n6.13_16451_Player80-91c0a22b8f16-20210912-163045.mp4 6.13_7726_Player430-f153ac423f61-20210830-114449.mp4\r\n6.13_16452_Player80-91c0a22b8f16-20210912-163949.mp4 6.13_7727_Player430-f153ac423f61-20210830-114552.mp4\r\n6.13_16453_Player80-91c0a22b8f16-20210912-164852.mp4 6.13_7728_Player430-f153ac423f61-20210830-114657.mp4\r\n6.13_16454_Player80-91c0a22b8f16-20210912-165903.mp4 6.13_7729_Player430-f153ac423f61-20210830-114759.mp4\r\n6.13_16455_Player80-91c0a22b8f16-20210912-171030.mp4 6.13_772_Player128-77289991e55c-20210903-132350.mp4\r\n6.13_16456_Player80-91c0a22b8f16-20210912-172254.mp4 6.13_7730_Player430-f153ac423f61-20210830-114908.mp4\r\n6.13_16457_Player80-91c0a22b8f16-20210912-173406.mp4 6.13_7731_Player430-f153ac423f61-20210830-115012.mp4\r\n6.13_16458_Player80-91c0a22b8f16-20210912-174208.mp4 6.13_7732_Player430-f153ac423f61-20210830-115113.mp4\r\n6.13_16459_Player80-91c0a22b8f16-20210912-175438.mp4 6.13_7733_Player430-f153ac423f61-20210830-115214.mp4\r\n6.13_1645_Player16-f153ac423f61-20211125-202909.mp4 6.13_7734_Player430-f153ac423f61-20210830-115318.mp4\r\n6.13_16460_Player80-91c0a22b8f16-20210912-180343.mp4 6.13_7735_Player430-f153ac423f61-20210830-115421.mp4\r\n6.13_16461_Player80-91c0a22b8f16-20210912-181246.mp4 6.13_7736_Player430-f153ac423f61-20210830-115523.mp4\r\n6.13_16462_Player80-91c0a22b8f16-20210912-182301.mp4 6.13_7737_Player430-f153ac423f61-20210830-115624.mp4\r\n6.13_16463_Player80-91c0a22b8f16-20210912-183105.mp4 6.13_7738_Player430-f153ac423f61-20210830-115725.mp4\r\n6.13_16464_Player80-f153ac423f61-20210912-115052.mp4 6.13_7739_Player430-f153ac423f61-20210830-115826.mp4\r\n6.13_16465_Player80-f153ac423f61-20210912-115909.mp4 6.13_773_Player128-77289991e55c-20210903-132458.mp4\r\n6.13_16466_Player80-f153ac423f61-20210912-120714.mp4 6.13_7740_Player430-f153ac423f61-20210830-115931.mp4\r\n6.13_16467_Player80-f153ac423f61-20210912-121617.mp4 6.13_7741_Player430-f153ac423f61-20210830-120037.mp4\r\n6.13_16468_Player80-f153ac423f61-20210912-122625.mp4 6.13_7742_Player430-f153ac423f61-20210830-120144.mp4\r\n6.13_16469_Player80-f153ac423f61-20210912-123640.mp4 6.13_7743_Player430-f153ac423f61-20210830-120246.mp4\r\n6.13_1646_Player16-f153ac423f61-20211125-203016.mp4 6.13_7744_Player430-f153ac423f61-20210830-120352.mp4\r\n6.13_16470_Player80-f153ac423f61-20210912-124447.mp4 6.13_7745_Player434-f153ac423f61-20210903-094235.mp4\r\n6.13_16471_Player80-f153ac423f61-20210912-125401.mp4 6.13_7746_Player434-f153ac423f61-20210903-094426.mp4\r\n6.13_16472_Player80-f153ac423f61-20210912-130206.mp4 6.13_7747_Player434-f153ac423f61-20210903-094607.mp4\r\n6.13_16473_Player80-f153ac423f61-20210912-131220.mp4 6.13_7748_Player434-f153ac423f61-20210903-094748.mp4\r\n6.13_16474_Player80-f153ac423f61-20210912-132336.mp4 6.13_7749_Player434-f153ac423f61-20210903-094936.mp4\r\n6.13_16475_Player80-f153ac423f61-20210912-133347.mp4 6.13_774_Player128-77289991e55c-20210903-132602.mp4\r\n6.13_16476_Player80-f153ac423f61-20210912-134252.mp4 6.13_7750_Player434-f153ac423f61-20210903-095119.mp4\r\n6.13_16477_Player80-f153ac423f61-20210912-135311.mp4 6.13_7751_Player434-f153ac423f61-20210903-095245.mp4\r\n6.13_16478_Player80-f153ac423f61-20210912-140327.mp4 6.13_7752_Player434-f153ac423f61-20210903-095428.mp4\r\n6.13_16479_Player80-f153ac423f61-20210912-141230.mp4 6.13_7753_Player434-f153ac423f61-20210903-095614.mp4\r\n6.13_1647_Player16-f153ac423f61-20211125-203122.mp4 6.13_7754_Player434-f153ac423f61-20210903-095756.mp4\r\n6.13_16480_Player80-f153ac423f61-20210912-142247.mp4 6.13_7755_Player434-f153ac423f61-20210903-095943.mp4\r\n6.13_16481_Player800-6730f9efa951-20210922-132950.mp4 6.13_7756_Player434-f153ac423f61-20210903-100133.mp4\r\n6.13_16482_Player800-6730f9efa951-20210922-134002.mp4 6.13_7757_Player434-f153ac423f61-20210903-100326.mp4\r\n6.13_16483_Player800-6730f9efa951-20210922-135005.mp4 6.13_7758_Player434-f153ac423f61-20210903-100519.mp4\r\n6.13_16484_Player800-6730f9efa951-20210922-140008.mp4 6.13_7759_Player434-f153ac423f61-20210903-100703.mp4\r\n6.13_16485_Player800-6730f9efa951-20210922-140912.mp4 6.13_775_Player128-77289991e55c-20210903-132705.mp4\r\n6.13_16486_Player800-6730f9efa951-20210922-141917.mp4 6.13_7760_Player434-f153ac423f61-20210903-100848.mp4\r\n6.13_16487_Player800-6730f9efa951-20210922-142933.mp4 6.13_7761_Player434-f153ac423f61-20210903-101042.mp4\r\n6.13_16488_Player800-6730f9efa951-20210922-143939.mp4 6.13_7762_Player434-f153ac423f61-20210903-101231.mp4\r\n6.13_16489_Player800-6730f9efa951-20210922-144947.mp4 6.13_7763_Player434-f153ac423f61-20210920-150901.mp4\r\n6.13_1648_Player16-f153ac423f61-20211125-203230.mp4 6.13_7764_Player434-f153ac423f61-20210920-151355.mp4\r\n6.13_16490_Player800-6730f9efa951-20210922-145951.mp4 6.13_7765_Player434-f153ac423f61-20210920-151746.mp4\r\n6.13_16491_Player800-6730f9efa951-20210922-150958.mp4 6.13_7766_Player434-f153ac423f61-20210920-152142.mp4\r\n6.13_16492_Player800-6730f9efa951-20210922-152004.mp4 6.13_7767_Player434-f153ac423f61-20210920-152522.mp4\r\n6.13_16493_Player800-6730f9efa951-20210922-153008.mp4 6.13_7768_Player434-f153ac423f61-20210920-152940.mp4\r\n6.13_16494_Player800-6730f9efa951-20210922-154014.mp4 6.13_7769_Player434-f153ac423f61-20210920-153345.mp4\r\n6.13_16495_Player800-6730f9efa951-20210922-155022.mp4 6.13_776_Player128-77289991e55c-20210903-132806.mp4\r\n6.13_16496_Player800-6730f9efa951-20210922-160030.mp4 6.13_7770_Player434-f153ac423f61-20210920-153853.mp4\r\n6.13_16497_Player800-6730f9efa951-20210922-161039.mp4 6.13_7771_Player434-f153ac423f61-20210920-154218.mp4\r\n6.13_16498_Player800-6730f9efa951-20210922-162043.mp4 6.13_7772_Player434-f153ac423f61-20210920-154522.mp4\r\n6.13_16499_Player800-6730f9efa951-20210922-163045.mp4 6.13_7773_Player434-f153ac423f61-20210920-154836.mp4\r\n6.13_1649_Player16-f153ac423f61-20211125-203338.mp4 6.13_7774_Player434-f153ac423f61-20210920-155211.mp4\r\n6.13_164_Player104-f153ac423f61-20210828-152841.mp4 6.13_7775_Player434-f153ac423f61-20210920-155608.mp4\r\n6.13_16500_Player800-6730f9efa951-20210922-164051.mp4 6.13_7776_Player434-f153ac423f61-20210920-160015.mp4\r\n6.13_16501_Player800-c84ec6020c2b-20210922-163745.mp4 6.13_7777_Player434-f153ac423f61-20210920-160254.mp4\r\n6.13_16502_Player800-c84ec6020c2b-20210922-163857.mp4 6.13_7778_Player434-f153ac423f61-20210920-160627.mp4\r\n6.13_16503_Player800-c84ec6020c2b-20210922-164006.mp4 6.13_7779_Player434-f153ac423f61-20210920-161022.mp4\r\n6.13_16504_Player800-c84ec6020c2b-20210922-164118.mp4 6.13_777_Player128-77289991e55c-20210903-132912.mp4\r\n6.13_16505_Player800-c84ec6020c2b-20210922-164229.mp4 6.13_7780_Player434-f153ac423f61-20210920-161406.mp4\r\n6.13_16506_Player800-c84ec6020c2b-20210922-164345.mp4 6.13_7781_Player434-f153ac423f61-20210920-161631.mp4\r\n6.13_16507_Player800-c84ec6020c2b-20210922-164500.mp4 6.13_7782_Player439-f153ac423f61-20210918-131651.mp4\r\n6.13_16508_Player800-c84ec6020c2b-20210922-164619.mp4 6.13_7783_Player439-f153ac423f61-20210918-131823.mp4\r\n6.13_16509_Player800-c84ec6020c2b-20210922-164733.mp4 6.13_7784_Player439-f153ac423f61-20210918-131948.mp4\r\n6.13_1650_Player16-f153ac423f61-20211125-203443.mp4 6.13_7785_Player439-f153ac423f61-20210918-132114.mp4\r\n6.13_16510_Player800-c84ec6020c2b-20210922-164850.mp4 6.13_7786_Player439-f153ac423f61-20210918-132234.mp4\r\n6.13_16511_Player800-c84ec6020c2b-20210922-165000.mp4 6.13_7787_Player439-f153ac423f61-20210918-132355.mp4\r\n6.13_16512_Player800-c84ec6020c2b-20210922-165113.mp4 6.13_7788_Player439-f153ac423f61-20210918-132517.mp4\r\n6.13_16513_Player800-c84ec6020c2b-20210922-165227.mp4 6.13_7789_Player439-f153ac423f61-20210918-132633.mp4\r\n6.13_16514_Player800-c84ec6020c2b-20210922-165341.mp4 6.13_778_Player128-b330cb053797-20211212-192130.mp4\r\n6.13_16515_Player800-c84ec6020c2b-20210922-165501.mp4 6.13_7790_Player439-f153ac423f61-20210918-132749.mp4\r\n6.13_16516_Player800-c84ec6020c2b-20210922-165615.mp4 6.13_7791_Player439-f153ac423f61-20210918-132916.mp4\r\n6.13_16517_Player800-c84ec6020c2b-20210922-165733.mp4 6.13_7792_Player439-f153ac423f61-20210918-133041.mp4\r\n6.13_16518_Player800-c84ec6020c2b-20210922-165851.mp4 6.13_7793_Player439-f153ac423f61-20210918-133212.mp4\r\n6.13_16519_Player800-c84ec6020c2b-20210922-170014.mp4 6.13_7794_Player441-f153ac423f61-20211201-181944.mp4\r\n6.13_1651_Player16-f153ac423f61-20211125-203547.mp4 6.13_7795_Player441-f153ac423f61-20211201-182404.mp4\r\n6.13_16520_Player800-c84ec6020c2b-20210922-170132.mp4 6.13_7796_Player441-f153ac423f61-20211201-182812.mp4\r\n6.13_16521_Player800-c84ec6020c2b-20210922-170255.mp4 6.13_7797_Player441-f153ac423f61-20211201-183222.mp4\r\n6.13_16522_Player800-c84ec6020c2b-20210922-170411.mp4 6.13_7798_Player441-f153ac423f61-20211201-183626.mp4\r\n6.13_16523_Player800-c84ec6020c2b-20210922-170527.mp4 6.13_7799_Player441-f153ac423f61-20211201-184029.mp4\r\n6.13_16524_Player800-c84ec6020c2b-20210922-170649.mp4 6.13_779_Player128-b330cb053797-20211212-192231.mp4\r\n6.13_16525_Player800-c84ec6020c2b-20210922-170811.mp4 6.13_7800_Player441-f153ac423f61-20211201-184432.mp4\r\n6.13_16526_Player800-c84ec6020c2b-20210922-170930.mp4 6.13_7801_Player441-f153ac423f61-20211201-184837.mp4\r\n6.13_16527_Player800-c84ec6020c2b-20210922-171050.mp4 6.13_7802_Player441-f153ac423f61-20211201-185240.mp4\r\n6.13_16528_Player800-c84ec6020c2b-20210922-171209.mp4 6.13_7803_Player441-f153ac423f61-20211201-185646.mp4\r\n6.13_16529_Player800-c84ec6020c2b-20210922-171320.mp4 6.13_7804_Player441-f153ac423f61-20211201-190054.mp4\r\n6.13_1652_Player16-f153ac423f61-20211125-203650.mp4 6.13_7805_Player441-f153ac423f61-20211201-190459.mp4\r\n6.13_16530_Player800-c84ec6020c2b-20210922-171435.mp4 6.13_7806_Player441-f153ac423f61-20211201-190907.mp4\r\n6.13_16531_Player800-c84ec6020c2b-20210922-171546.mp4 6.13_7807_Player441-f153ac423f61-20211201-191310.mp4\r\n6.13_16532_Player800-c84ec6020c2b-20210922-171702.mp4 6.13_7808_Player441-f153ac423f61-20211201-191715.mp4\r\n6.13_16533_Player800-c84ec6020c2b-20210922-171819.mp4 6.13_7809_Player441-f153ac423f61-20211201-192129.mp4\r\n6.13_16534_Player800-c84ec6020c2b-20210922-171940.mp4 6.13_780_Player128-b330cb053797-20211212-192331.mp4\r\n6.13_16535_Player800-c84ec6020c2b-20210922-172102.mp4 6.13_7810_Player441-f153ac423f61-20211201-192541.mp4\r\n6.13_16536_Player800-c84ec6020c2b-20210922-172221.mp4 6.13_7811_Player441-f153ac423f61-20211201-192948.mp4\r\n6.13_16537_Player800-c84ec6020c2b-20210922-172337.mp4 6.13_7812_Player442-f153ac423f61-20211107-165940.mp4\r\n6.13_16538_Player800-c84ec6020c2b-20210922-172455.mp4 6.13_7813_Player442-f153ac423f61-20211107-170657.mp4\r\n6.13_16539_Player800-c84ec6020c2b-20210922-172615.mp4 6.13_7814_Player442-f153ac423f61-20211107-171403.mp4\r\n6.13_1653_Player16-f153ac423f61-20211125-203753.mp4 6.13_7815_Player442-f153ac423f61-20211107-172112.mp4\r\n6.13_16540_Player800-c84ec6020c2b-20210922-172728.mp4 6.13_7816_Player442-f153ac423f61-20211107-172921.mp4\r\n6.13_16541_Player800-c84ec6020c2b-20210922-172843.mp4 6.13_7817_Player442-f153ac423f61-20211107-173625.mp4\r\n6.13_16542_Player800-c84ec6020c2b-20210922-172956.mp4 6.13_7818_Player442-f153ac423f61-20211107-174435.mp4\r\n6.13_16543_Player800-c84ec6020c2b-20210922-173107.mp4 6.13_7819_Player442-f153ac423f61-20211107-175143.mp4\r\n6.13_16544_Player800-c84ec6020c2b-20210922-173220.mp4 6.13_781_Player128-b330cb053797-20211212-192431.mp4\r\n6.13_16545_Player800-c84ec6020c2b-20210922-173334.mp4 6.13_7820_Player442-f153ac423f61-20211107-175850.mp4\r\n6.13_16546_Player800-c84ec6020c2b-20210922-173444.mp4 6.13_7821_Player442-f153ac423f61-20211107-180556.mp4\r\n6.13_16547_Player800-c84ec6020c2b-20210922-173553.mp4 6.13_7822_Player442-f153ac423f61-20211107-181429.mp4\r\n6.13_16548_Player800-c84ec6020c2b-20210922-173659.mp4 6.13_7823_Player442-f153ac423f61-20211107-182137.mp4\r\n6.13_16549_Player800-c84ec6020c2b-20210922-173803.mp4 6.13_7824_Player442-f153ac423f61-20211107-182844.mp4\r\n6.13_1654_Player16-f153ac423f61-20211125-203901.mp4 6.13_7825_Player442-f153ac423f61-20211107-183551.mp4\r\n6.13_16550_Player800-c84ec6020c2b-20210922-173905.mp4 6.13_7826_Player442-f153ac423f61-20211107-184256.mp4\r\n6.13_16551_Player800-c84ec6020c2b-20210922-174008.mp4 6.13_7827_Player442-f153ac423f61-20211107-185104.mp4\r\n6.13_16552_Player800-c84ec6020c2b-20210922-174115.mp4 6.13_7828_Player442-f153ac423f61-20211107-185810.mp4\r\n6.13_16553_Player800-c84ec6020c2b-20210922-174225.mp4 6.13_7829_Player442-f153ac423f61-20211107-190518.mp4\r\n6.13_16554_Player800-c84ec6020c2b-20210922-174337.mp4 6.13_782_Player128-b330cb053797-20211212-192532.mp4\r\n6.13_16555_Player800-c84ec6020c2b-20210922-174447.mp4 6.13_7830_Player442-f153ac423f61-20211107-191325.mp4\r\n6.13_16556_Player800-c84ec6020c2b-20210922-174555.mp4 6.13_7831_Player442-f153ac423f61-20211107-192133.mp4\r\n6.13_16557_Player800-f153ac423f61-20210922-093918.mp4 6.13_7832_Player442-f153ac423f61-20211107-192837.mp4\r\n6.13_16558_Player800-f153ac423f61-20210922-094736.mp4 6.13_7833_Player442-f153ac423f61-20211107-193642.mp4\r\n6.13_16559_Player800-f153ac423f61-20210922-095541.mp4 6.13_7834_Player442-f153ac423f61-20211107-194344.mp4\r\n6.13_1655_Player16-f153ac423f61-20211125-204006.mp4 6.13_7835_Player444-f153ac423f61-20211112-111719.mp4\r\n6.13_16560_Player800-f153ac423f61-20210922-100443.mp4 6.13_7836_Player444-f153ac423f61-20211112-112155.mp4\r\n6.13_16561_Player800-f153ac423f61-20210922-101345.mp4 6.13_7837_Player444-f153ac423f61-20211112-114459.mp4\r\n6.13_16562_Player800-f153ac423f61-20210922-102359.mp4 6.13_7838_Player444-f153ac423f61-20211214-184846.mp4\r\n6.13_16563_Player800-f153ac423f61-20210922-103410.mp4 6.13_7839_Player444-f153ac423f61-20211214-185033.mp4\r\n6.13_16564_Player800-f153ac423f61-20210922-104419.mp4 6.13_783_Player128-b330cb053797-20211212-192632.mp4\r\n6.13_16565_Player800-f153ac423f61-20210922-105329.mp4 6.13_7840_Player444-f153ac423f61-20211214-185338.mp4\r\n6.13_16566_Player800-f153ac423f61-20210922-110343.mp4 6.13_7841_Player444-f153ac423f61-20211214-185537.mp4\r\n6.13_16567_Player800-f153ac423f61-20210922-160059.mp4 6.13_7842_Player444-f153ac423f61-20211214-185755.mp4\r\n6.13_16568_Player800-f153ac423f61-20210922-160232.mp4 6.13_7843_Player444-f153ac423f61-20211214-190012.mp4\r\n6.13_16569_Player800-f153ac423f61-20210922-160354.mp4 6.13_7844_Player444-f153ac423f61-20211214-190208.mp4\r\n6.13_1656_Player16-f153ac423f61-20211125-204110.mp4 6.13_7845_Player444-f153ac423f61-20211214-190400.mp4\r\n6.13_16570_Player800-f153ac423f61-20210922-160510.mp4 6.13_7846_Player444-f153ac423f61-20211214-190550.mp4\r\n6.13_16571_Player800-f153ac423f61-20210922-160623.mp4 6.13_7847_Player444-f153ac423f61-20211214-190743.mp4\r\n6.13_16572_Player800-f153ac423f61-20210922-160737.mp4 6.13_7848_Player444-f153ac423f61-20211214-190955.mp4\r\n6.13_16573_Player800-f153ac423f61-20210922-160851.mp4 6.13_7849_Player444-f153ac423f61-20211214-191209.mp4\r\n6.13_16574_Player800-f153ac423f61-20210922-161002.mp4 6.13_784_Player128-b330cb053797-20211212-192732.mp4\r\n6.13_16575_Player800-f153ac423f61-20210922-161115.mp4 6.13_7850_Player444-f153ac423f61-20211214-191407.mp4\r\n6.13_16576_Player800-f153ac423f61-20210922-161230.mp4 6.13_7851_Player444-f153ac423f61-20211214-191610.mp4\r\n6.13_16577_Player800-f153ac423f61-20210922-161348.mp4 6.13_7852_Player444-f153ac423f61-20211214-191810.mp4\r\n6.13_16578_Player800-f153ac423f61-20210922-161500.mp4 6.13_7853_Player444-f153ac423f61-20211214-192012.mp4\r\n6.13_16579_Player800-f153ac423f61-20210922-161613.mp4 6.13_7854_Player444-f153ac423f61-20211214-192212.mp4\r\n6.13_1657_Player16-f153ac423f61-20211125-204218.mp4 6.13_7855_Player444-f153ac423f61-20211214-192416.mp4\r\n6.13_16580_Player800-f153ac423f61-20210922-161726.mp4 6.13_7856_Player444-f153ac423f61-20211214-192616.mp4\r\n6.13_16581_Player800-f153ac423f61-20210922-161833.mp4 6.13_7857_Player444-f153ac423f61-20211214-192820.mp4\r\n6.13_16582_Player800-f153ac423f61-20210922-161949.mp4 6.13_7858_Player444-f153ac423f61-20211214-193023.mp4\r\n6.13_16583_Player800-f153ac423f61-20210922-162101.mp4 6.13_7859_Player444-f153ac423f61-20211214-193226.mp4\r\n6.13_16584_Player800-f153ac423f61-20210922-162209.mp4 6.13_785_Player128-b330cb053797-20211212-192833.mp4\r\n6.13_16585_Player800-f153ac423f61-20210922-162320.mp4 6.13_7860_Player444-f153ac423f61-20211214-193439.mp4\r\n6.13_16586_Player800-f153ac423f61-20210922-162435.mp4 6.13_7861_Player444-f153ac423f61-20211214-193702.mp4\r\n6.13_16587_Player800-f153ac423f61-20210922-162554.mp4 6.13_7862_Player444-f153ac423f61-20211214-193904.mp4\r\n6.13_16588_Player800-f153ac423f61-20210922-162707.mp4 6.13_7863_Player444-f153ac423f61-20211214-194045.mp4\r\n6.13_16589_Player800-f153ac423f61-20210922-162813.mp4 6.13_7864_Player444-f153ac423f61-20211214-194225.mp4\r\n6.13_1658_Player16-f153ac423f61-20211125-204325.mp4 6.13_7865_Player444-f153ac423f61-20211214-194405.mp4\r\n6.13_16590_Player800-f153ac423f61-20210922-162921.mp4 6.13_7866_Player444-f153ac423f61-20211214-194552.mp4\r\n6.13_16591_Player800-f153ac423f61-20210922-163030.mp4 6.13_7867_Player444-f153ac423f61-20211214-194856.mp4\r\n6.13_16592_Player800-f153ac423f61-20210922-163147.mp4 6.13_7868_Player444-f153ac423f61-20211214-195030.mp4\r\n6.13_16593_Player800-f153ac423f61-20210922-163312.mp4 6.13_7869_Player444-f153ac423f61-20211214-195211.mp4\r\n6.13_16594_Player800-f153ac423f61-20210922-163431.mp4 6.13_786_Player128-b330cb053797-20211212-192933.mp4\r\n6.13_16595_Player800-f153ac423f61-20210922-163554.mp4 6.13_7870_Player444-f153ac423f61-20211214-195351.mp4\r\n6.13_16596_Player800-f153ac423f61-20210922-163714.mp4 6.13_7871_Player444-f153ac423f61-20211214-195536.mp4\r\n6.13_16597_Player801-f153ac423f61-20210903-125129.mp4 6.13_7872_Player444-f153ac423f61-20211214-195724.mp4\r\n6.13_16598_Player801-f153ac423f61-20210903-125231.mp4 6.13_7873_Player444-f153ac423f61-20211214-195914.mp4\r\n6.13_16599_Player801-f153ac423f61-20210903-125333.mp4 6.13_7874_Player444-f153ac423f61-20211214-200103.mp4\r\n6.13_1659_Player16-f153ac423f61-20211125-204430.mp4 6.13_7875_Player444-f153ac423f61-20211214-200313.mp4\r\n6.13_165_Player104-f153ac423f61-20210828-153545.mp4 6.13_7876_Player445-50285f2df316-20211213-162843.mp4\r\n6.13_16600_Player801-f153ac423f61-20210903-125435.mp4 6.13_7877_Player445-8a3cbf37cb7d-20211213-162446.mp4\r\n6.13_16601_Player801-f153ac423f61-20210903-125536.mp4 6.13_7878_Player445-c926bf3e8f2d-20211213-161946.mp4\r\n6.13_16602_Player801-f153ac423f61-20210903-125637.mp4 6.13_7879_Player445-c926bf3e8f2d-20211213-162147.mp4\r\n6.13_16603_Player801-f153ac423f61-20210903-125739.mp4 6.13_787_Player128-b330cb053797-20211212-193033.mp4\r\n6.13_16604_Player801-f153ac423f61-20210903-125840.mp4 6.13_7880_Player445-f153ac423f61-20211130-184808.mp4\r\n6.13_16605_Player801-f153ac423f61-20210903-125942.mp4 6.13_7881_Player445-f153ac423f61-20211130-185014.mp4\r\n6.13_16606_Player801-f153ac423f61-20210903-130043.mp4 6.13_7882_Player445-f153ac423f61-20211130-185157.mp4\r\n6.13_16607_Player801-f153ac423f61-20210903-130145.mp4 6.13_7883_Player445-f153ac423f61-20211130-185342.mp4\r\n6.13_16608_Player801-f153ac423f61-20210903-130247.mp4 6.13_7884_Player445-f153ac423f61-20211130-185538.mp4\r\n6.13_16609_Player801-f153ac423f61-20210903-130349.mp4 6.13_7885_Player445-f153ac423f61-20211130-185752.mp4\r\n6.13_1660_Player16-f153ac423f61-20211125-204534.mp4 6.13_7886_Player445-f153ac423f61-20211130-185956.mp4\r\n6.13_16610_Player801-f153ac423f61-20210903-130452.mp4 6.13_7887_Player445-f153ac423f61-20211130-190140.mp4\r\n6.13_16611_Player801-f153ac423f61-20210903-130554.mp4 6.13_7888_Player445-f153ac423f61-20211130-190322.mp4\r\n6.13_16612_Player801-f153ac423f61-20210903-130656.mp4 6.13_7889_Player445-f153ac423f61-20211130-190520.mp4\r\n6.13_16613_Player801-f153ac423f61-20210903-130758.mp4 6.13_788_Player128-b330cb053797-20211212-193134.mp4\r\n6.13_16614_Player801-f153ac423f61-20210903-130859.mp4 6.13_7890_Player445-f153ac423f61-20211130-190728.mp4\r\n6.13_16615_Player801-f153ac423f61-20210903-131001.mp4 6.13_7891_Player445-f153ac423f61-20211130-190913.mp4\r\n6.13_16616_Player801-f153ac423f61-20210903-131102.mp4 6.13_7892_Player445-f153ac423f61-20211130-191032.mp4\r\n6.13_16617_Player801-f153ac423f61-20210903-131203.mp4 6.13_7893_Player445-f153ac423f61-20211130-191149.mp4\r\n6.13_16618_Player801-f153ac423f61-20210903-131304.mp4 6.13_7894_Player445-f153ac423f61-20211130-191305.mp4\r\n6.13_16619_Player801-f153ac423f61-20210903-131405.mp4 6.13_7895_Player445-f153ac423f61-20211130-191414.mp4\r\n6.13_1661_Player16-f153ac423f61-20211125-204639.mp4 6.13_7896_Player445-f153ac423f61-20211130-191543.mp4\r\n6.13_16620_Player801-f153ac423f61-20210903-131509.mp4 6.13_7897_Player445-f153ac423f61-20211213-160040.mp4\r\n6.13_16621_Player801-f153ac423f61-20210903-131610.mp4 6.13_7898_Player445-f153ac423f61-20211213-160444.mp4\r\n6.13_16622_Player802-ce2829255789-20211211-203502.mp4 6.13_7899_Player445-f153ac423f61-20211213-160747.mp4\r\n6.13_16623_Player802-ce2829255789-20211211-204713.mp4 6.13_789_Player128-b330cb053797-20211212-193235.mp4\r\n6.13_16624_Player802-ce2829255789-20211211-205415.mp4 6.13_7900_Player445-f153ac423f61-20211213-161048.mp4\r\n6.13_16625_Player802-ce2829255789-20211211-210317.mp4 6.13_7901_Player445-f153ac423f61-20211213-161349.mp4\r\n6.13_16626_Player802-f153ac423f61-20211211-190123.mp4 6.13_7902_Player445-f153ac423f61-20211213-161650.mp4\r\n6.13_16627_Player802-f153ac423f61-20211211-190527.mp4 6.13_7903_Player446-f153ac423f61-20210728-100307.mp4\r\n6.13_16628_Player802-f153ac423f61-20211211-191032.mp4 6.13_7904_Player446-f153ac423f61-20210728-100621.mp4\r\n6.13_16629_Player802-f153ac423f61-20211211-191534.mp4 6.13_7905_Player446-f153ac423f61-20210728-100926.mp4\r\n6.13_1662_Player16-f153ac423f61-20211125-204741.mp4 6.13_7906_Player446-f153ac423f61-20210728-101238.mp4\r\n6.13_16630_Player802-f153ac423f61-20211211-192037.mp4 6.13_7907_Player446-f153ac423f61-20210728-101550.mp4\r\n6.13_16631_Player802-f153ac423f61-20211211-192644.mp4 6.13_7908_Player446-f153ac423f61-20210728-102002.mp4\r\n6.13_16632_Player802-f153ac423f61-20211211-193247.mp4 6.13_7909_Player446-f153ac423f61-20210728-102315.mp4\r\n6.13_16633_Player802-f153ac423f61-20211211-195505.mp4 6.13_790_Player128-b330cb053797-20211212-193335.mp4\r\n6.13_16634_Player802-f153ac423f61-20211211-200314.mp4 6.13_7910_Player446-f153ac423f61-20210728-102620.mp4\r\n6.13_16635_Player802-f153ac423f61-20211211-201119.mp4 6.13_7911_Player446-f153ac423f61-20210728-102929.mp4\r\n6.13_16636_Player802-f153ac423f61-20211211-201822.mp4 6.13_7912_Player446-f153ac423f61-20210728-103234.mp4\r\n6.13_16637_Player802-f153ac423f61-20211211-202626.mp4 6.13_7913_Player446-f153ac423f61-20210728-103537.mp4\r\n6.13_16638_Player804-f153ac423f61-20210918-164604.mp4 6.13_7914_Player446-f153ac423f61-20210728-103846.mp4\r\n6.13_16639_Player804-f153ac423f61-20210918-164731.mp4 6.13_7915_Player446-f153ac423f61-20210728-104153.mp4\r\n6.13_1663_Player16-f153ac423f61-20211125-204846.mp4 6.13_7916_Player446-f153ac423f61-20210728-104513.mp4\r\n6.13_16640_Player804-f153ac423f61-20210918-164851.mp4 6.13_7917_Player446-f153ac423f61-20210728-104838.mp4\r\n6.13_16641_Player804-f153ac423f61-20210918-165007.mp4 6.13_7918_Player446-f153ac423f61-20210728-105143.mp4\r\n6.13_16642_Player804-f153ac423f61-20210918-165122.mp4 6.13_7919_Player446-f153ac423f61-20210728-105458.mp4\r\n6.13_16643_Player804-f153ac423f61-20210918-165235.mp4 6.13_791_Player128-b330cb053797-20211212-193435.mp4\r\n6.13_16644_Player804-f153ac423f61-20210918-165348.mp4 6.13_7920_Player446-f153ac423f61-20210728-105909.mp4\r\n6.13_16645_Player804-f153ac423f61-20210918-165504.mp4 6.13_7921_Player446-f153ac423f61-20210728-110322.mp4\r\n6.13_16646_Player804-f153ac423f61-20210918-165618.mp4 6.13_7922_Player446-f153ac423f61-20210728-110634.mp4\r\n6.13_16647_Player804-f153ac423f61-20210918-165734.mp4 6.13_7923_Player446-f153ac423f61-20210728-111044.mp4\r\n6.13_16648_Player804-f153ac423f61-20210918-165849.mp4 6.13_7924_Player446-f153ac423f61-20210728-111406.mp4\r\n6.13_16649_Player804-f153ac423f61-20210918-170006.mp4 6.13_7925_Player446-f153ac423f61-20210728-111820.mp4\r\n6.13_1664_Player16-f153ac423f61-20211125-204949.mp4 6.13_7926_Player446-f153ac423f61-20210728-112126.mp4\r\n6.13_16650_Player804-f153ac423f61-20210918-170124.mp4 6.13_7927_Player446-f153ac423f61-20210728-112542.mp4\r\n6.13_16651_Player804-f153ac423f61-20210918-170236.mp4 6.13_7928_Player446-f153ac423f61-20210728-112848.mp4\r\n6.13_16652_Player804-f153ac423f61-20210918-170347.mp4 6.13_7929_Player446-f153ac423f61-20210728-113300.mp4\r\n6.13_16653_Player804-f153ac423f61-20210918-170458.mp4 6.13_792_Player128-b330cb053797-20211212-193536.mp4\r\n6.13_16654_Player804-f153ac423f61-20210918-170613.mp4 6.13_7930_Player446-f153ac423f61-20210728-113610.mp4\r\n6.13_16655_Player804-f153ac423f61-20210918-170725.mp4 6.13_7931_Player446-f153ac423f61-20210728-113917.mp4\r\n6.13_16656_Player804-f153ac423f61-20210918-170839.mp4 6.13_7932_Player446-f153ac423f61-20210901-130332.mp4\r\n6.13_16657_Player804-f153ac423f61-20210918-170947.mp4 6.13_7933_Player446-f153ac423f61-20210901-130445.mp4\r\n6.13_16658_Player804-f153ac423f61-20210918-171108.mp4 6.13_7934_Player446-f153ac423f61-20210901-130547.mp4\r\n6.13_16659_Player804-f153ac423f61-20210918-171221.mp4 6.13_7935_Player446-f153ac423f61-20210901-130752.mp4\r\n6.13_1665_Player16-f153ac423f61-20211125-205055.mp4 6.13_7936_Player446-f153ac423f61-20210901-130954.mp4\r\n6.13_16660_Player804-f153ac423f61-20210918-171332.mp4 6.13_7937_Player446-f153ac423f61-20210901-131158.mp4\r\n6.13_16661_Player804-f153ac423f61-20210918-171450.mp4 6.13_7938_Player446-f153ac423f61-20210901-131401.mp4\r\n6.13_16662_Player804-f153ac423f61-20210918-171606.mp4 6.13_7939_Player446-f153ac423f61-20210901-131704.mp4\r\n6.13_16663_Player806-f153ac423f61-20211027-103116.mp4 6.13_793_Player128-b330cb053797-20211212-193636.mp4\r\n6.13_16664_Player806-f153ac423f61-20211027-103304.mp4 6.13_7940_Player446-f153ac423f61-20210901-133024.mp4\r\n6.13_16665_Player806-f153ac423f61-20211027-103445.mp4 6.13_7941_Player447-0b24693b7de7-20210722-155220.mp4\r\n6.13_16666_Player806-f153ac423f61-20211027-103646.mp4 6.13_7942_Player447-0b24693b7de7-20210722-155322.mp4\r\n6.13_16667_Player806-f153ac423f61-20211027-103847.mp4 6.13_7943_Player447-1e05ac44c563-20210722-160359.mp4\r\n6.13_16668_Player806-f153ac423f61-20211027-104034.mp4 6.13_7944_Player447-1e05ac44c563-20210722-160502.mp4\r\n6.13_16669_Player806-f153ac423f61-20211027-104222.mp4 6.13_7945_Player447-1e05ac44c563-20210722-160603.mp4\r\n6.13_1666_Player16-f153ac423f61-20211125-205204.mp4 6.13_7946_Player447-1e05ac44c563-20210722-160704.mp4\r\n6.13_16670_Player806-f153ac423f61-20211027-104401.mp4 6.13_7947_Player447-1e05ac44c563-20210722-160805.mp4\r\n6.13_16671_Player806-f153ac423f61-20211027-104544.mp4 6.13_7948_Player447-1e05ac44c563-20210722-160912.mp4\r\n6.13_16672_Player806-f153ac423f61-20211027-104734.mp4 6.13_7949_Player447-1e05ac44c563-20210722-161025.mp4\r\n6.13_16673_Player806-f153ac423f61-20211027-104912.mp4 6.13_794_Player128-b330cb053797-20211212-193736.mp4\r\n6.13_16674_Player807-f153ac423f61-20211023-221005.mp4 6.13_7950_Player447-1e05ac44c563-20210722-161132.mp4\r\n6.13_16675_Player807-f153ac423f61-20211023-221852.mp4 6.13_7951_Player447-1e05ac44c563-20210722-161233.mp4\r\n6.13_16676_Player807-f153ac423f61-20211023-223053.mp4 6.13_7952_Player447-1e05ac44c563-20210722-161334.mp4\r\n6.13_16677_Player807-f153ac423f61-20211023-224047.mp4 6.13_7953_Player447-1e05ac44c563-20210722-161434.mp4\r\n6.13_16678_Player807-f153ac423f61-20211023-224821.mp4 6.13_7954_Player447-1e05ac44c563-20210722-161535.mp4\r\n6.13_16679_Player807-f153ac423f61-20211023-225718.mp4 6.13_7955_Player447-1e05ac44c563-20210722-161639.mp4\r\n6.13_1667_Player16-f153ac423f61-20211125-205309.mp4 6.13_7956_Player447-1e05ac44c563-20210722-161752.mp4\r\n6.13_16680_Player807-f153ac423f61-20211023-230434.mp4 6.13_7957_Player447-1e05ac44c563-20210722-161909.mp4\r\n6.13_16681_Player807-f153ac423f61-20211023-231026.mp4 6.13_7958_Player447-1e05ac44c563-20210722-162012.mp4\r\n6.13_16682_Player807-f153ac423f61-20211023-231845.mp4 6.13_7959_Player447-1e05ac44c563-20210722-162130.mp4\r\n6.13_16683_Player808-f153ac423f61-20210828-093229.mp4 6.13_795_Player128-b330cb053797-20211212-193836.mp4\r\n6.13_16684_Player808-f153ac423f61-20210828-093339.mp4 6.13_7960_Player447-1e05ac44c563-20210722-162252.mp4\r\n6.13_16685_Player808-f153ac423f61-20210828-093445.mp4 6.13_7961_Player447-1e05ac44c563-20210722-162354.mp4\r\n6.13_16686_Player808-f153ac423f61-20210828-093551.mp4 6.13_7962_Player447-1e05ac44c563-20210722-162502.mp4\r\n6.13_16687_Player808-f153ac423f61-20210828-093654.mp4 6.13_7963_Player447-1e05ac44c563-20210722-162604.mp4\r\n6.13_16688_Player808-f153ac423f61-20210828-093757.mp4 6.13_7964_Player447-1e05ac44c563-20210722-162710.mp4\r\n6.13_16689_Player808-f153ac423f61-20210828-093902.mp4 6.13_7965_Player447-1e05ac44c563-20210722-162812.mp4\r\n6.13_1668_Player160-f153ac423f61-20211113-125734.mp4 6.13_7966_Player447-1e05ac44c563-20210722-162913.mp4\r\n6.13_16690_Player808-f153ac423f61-20210828-094007.mp4 6.13_7967_Player447-1e05ac44c563-20210722-163015.mp4\r\n6.13_16691_Player808-f153ac423f61-20210828-094113.mp4 6.13_7968_Player447-1e05ac44c563-20210722-163116.mp4\r\n6.13_16692_Player808-f153ac423f61-20210828-094222.mp4 6.13_7969_Player447-1e05ac44c563-20210722-163218.mp4\r\n6.13_16693_Player808-f153ac423f61-20210828-094333.mp4 6.13_796_Player128-b330cb053797-20211212-193937.mp4\r\n6.13_16694_Player808-f153ac423f61-20210828-094450.mp4 6.13_7970_Player447-1e05ac44c563-20210722-163411.mp4\r\n6.13_16695_Player808-f153ac423f61-20210828-094604.mp4 6.13_7971_Player447-1e05ac44c563-20210722-163512.mp4\r\n6.13_16696_Player808-f153ac423f61-20210828-094718.mp4 6.13_7972_Player447-1e05ac44c563-20210722-163613.mp4\r\n6.13_16697_Player808-f153ac423f61-20210828-094821.mp4 6.13_7973_Player447-1e05ac44c563-20210722-163715.mp4\r\n6.13_16698_Player808-f153ac423f61-20210828-094930.mp4 6.13_7974_Player447-1e05ac44c563-20210722-163816.mp4\r\n6.13_16699_Player808-f153ac423f61-20210828-095035.mp4 6.13_7975_Player447-1e05ac44c563-20210722-163917.mp4\r\n6.13_1669_Player160-f153ac423f61-20211113-125904.mp4 6.13_7976_Player447-1e05ac44c563-20210722-164018.mp4\r\n6.13_166_Player104-f153ac423f61-20210828-154251.mp4 6.13_7977_Player447-1e05ac44c563-20210722-164119.mp4\r\n6.13_16700_Player808-f153ac423f61-20210828-095142.mp4 6.13_7978_Player447-1e05ac44c563-20210722-164219.mp4\r\n6.13_16701_Player808-f153ac423f61-20210828-095404.mp4 6.13_7979_Player447-1e05ac44c563-20210722-164319.mp4\r\n6.13_16702_Player808-f153ac423f61-20210828-095513.mp4 6.13_797_Player128-b330cb053797-20211212-194117.mp4\r\n6.13_16703_Player808-f153ac423f61-20210828-095627.mp4 6.13_7980_Player447-1e05ac44c563-20210722-164420.mp4\r\n6.13_16704_Player808-f153ac423f61-20210828-095732.mp4 6.13_7981_Player447-1e05ac44c563-20210722-164531.mp4\r\n6.13_16705_Player808-f153ac423f61-20210828-095837.mp4 6.13_7982_Player447-1e05ac44c563-20210722-164644.mp4\r\n6.13_16706_Player809-f153ac423f61-20211211-051806.mp4 6.13_7983_Player447-1e05ac44c563-20210722-164759.mp4\r\n6.13_16707_Player809-f153ac423f61-20211211-051909.mp4 6.13_7984_Player447-1e05ac44c563-20210722-164918.mp4\r\n6.13_16708_Player809-f153ac423f61-20211211-052010.mp4 6.13_7985_Player447-1e05ac44c563-20210722-165022.mp4\r\n6.13_16709_Player809-f153ac423f61-20211211-052113.mp4 6.13_7986_Player447-1e05ac44c563-20210722-165127.mp4\r\n6.13_1670_Player160-f153ac423f61-20211113-130053.mp4 6.13_7987_Player447-1e05ac44c563-20210722-165236.mp4\r\n6.13_16710_Player809-f153ac423f61-20211211-052215.mp4 6.13_7988_Player447-1e05ac44c563-20210722-165337.mp4\r\n6.13_16711_Player809-f153ac423f61-20211211-052357.mp4 6.13_7989_Player447-1e05ac44c563-20210722-165438.mp4\r\n6.13_16712_Player809-f153ac423f61-20211211-052553.mp4 6.13_798_Player128-b330cb053797-20211212-194217.mp4\r\n6.13_16713_Player809-f153ac423f61-20211211-052754.mp4 6.13_7990_Player447-1e05ac44c563-20210722-165544.mp4\r\n6.13_16714_Player809-f153ac423f61-20211211-052956.mp4 6.13_7991_Player447-1e05ac44c563-20210722-165654.mp4\r\n6.13_16715_Player809-f153ac423f61-20211211-053156.mp4 6.13_7992_Player447-1e05ac44c563-20210722-165817.mp4\r\n6.13_16716_Player809-f153ac423f61-20211211-053256.mp4 6.13_7993_Player447-1e05ac44c563-20210722-165936.mp4\r\n6.13_16717_Player809-f153ac423f61-20211211-053457.mp4 6.13_7994_Player447-1e05ac44c563-20210722-170052.mp4\r\n6.13_16718_Player809-f153ac423f61-20211211-053658.mp4 6.13_7995_Player447-1e05ac44c563-20210722-170201.mp4\r\n6.13_16719_Player809-f153ac423f61-20211211-053758.mp4 6.13_7996_Player447-1e05ac44c563-20210722-170309.mp4\r\n6.13_1671_Player160-f153ac423f61-20211113-130211.mp4 6.13_7997_Player447-1e05ac44c563-20210722-170430.mp4\r\n6.13_16720_Player809-f153ac423f61-20211211-053858.mp4 6.13_7998_Player447-1e05ac44c563-20210722-170546.mp4\r\n6.13_16721_Player809-f153ac423f61-20211211-053959.mp4 6.13_7999_Player447-1e05ac44c563-20210722-170701.mp4\r\n6.13_16722_Player809-f153ac423f61-20211211-054059.mp4 6.13_799_Player128-b330cb053797-20211212-194322.mp4\r\n6.13_16723_Player809-f153ac423f61-20211211-054300.mp4 6.13_8000_Player447-1e05ac44c563-20210722-170813.mp4\r\n6.13_16724_Player809-f153ac423f61-20211211-054502.mp4 6.13_8001_Player447-1e05ac44c563-20210722-170919.mp4\r\n6.13_16725_Player809-f153ac423f61-20211211-054705.mp4 6.13_8002_Player447-1e05ac44c563-20210722-171020.mp4\r\n6.13_16726_Player809-f153ac423f61-20211211-054805.mp4 6.13_8003_Player447-1e05ac44c563-20210722-171123.mp4\r\n6.13_16727_Player809-f153ac423f61-20211211-055007.mp4 6.13_8004_Player447-1e05ac44c563-20210722-171233.mp4\r\n6.13_16728_Player809-f153ac423f61-20211211-055209.mp4 6.13_8005_Player447-1e05ac44c563-20210722-171340.mp4\r\n6.13_16729_Player809-f153ac423f61-20211211-055410.mp4 6.13_8006_Player447-4abfb8e43837-20210722-155422.mp4\r\n6.13_1672_Player160-f153ac423f61-20211113-130325.mp4 6.13_8007_Player447-51d1b84c7082-20210722-155828.mp4\r\n6.13_16730_Player809-f153ac423f61-20211211-055610.mp4 6.13_8008_Player447-51d1b84c7082-20210722-155932.mp4\r\n6.13_16731_Player809-f153ac423f61-20211211-055912.mp4 6.13_8009_Player447-51d1b84c7082-20210722-160033.mp4\r\n6.13_16732_Player809-f153ac423f61-20211211-060113.mp4 6.13_800_Player128-b330cb053797-20211212-194422.mp4\r\n6.13_16733_Player809-f153ac423f61-20211211-060316.mp4 6.13_8010_Player447-51d1b84c7082-20210722-160134.mp4\r\n6.13_16734_Player809-f153ac423f61-20211211-060518.mp4 6.13_8011_Player447-51d1b84c7082-20210722-160234.mp4\r\n6.13_16735_Player809-f153ac423f61-20211211-060719.mp4 6.13_8012_Player447-51d1b84c7082-20210722-160335.mp4\r\n6.13_16736_Player809-f153ac423f61-20211211-060920.mp4 6.13_8013_Player447-7a2bb0819b23-20210722-155522.mp4\r\n6.13_16737_Player809-f153ac423f61-20211211-061121.mp4 6.13_8014_Player447-7a2bb0819b23-20210722-155638.mp4\r\n6.13_16738_Player809-f153ac423f61-20211211-061322.mp4 6.13_8015_Player447-7a2bb0819b23-20210722-155739.mp4\r\n6.13_16739_Player809-f153ac423f61-20211211-061524.mp4 6.13_8016_Player447-a9c4ede6b6b2-20210919-143609.mp4\r\n6.13_1673_Player160-f153ac423f61-20211113-130435.mp4 6.13_8017_Player447-a9c4ede6b6b2-20210919-144726.mp4\r\n6.13_16740_Player809-f153ac423f61-20211211-061726.mp4 6.13_8018_Player447-f153ac423f61-20210722-152008.mp4\r\n6.13_16741_Player809-f153ac423f61-20211211-061927.mp4 6.13_8019_Player447-f153ac423f61-20210722-152123.mp4\r\n6.13_16742_Player809-f153ac423f61-20211211-062130.mp4 6.13_801_Player128-b330cb053797-20211212-194522.mp4\r\n6.13_16743_Player809-f153ac423f61-20211211-062331.mp4 6.13_8020_Player447-f153ac423f61-20210722-152249.mp4\r\n6.13_16744_Player809-f153ac423f61-20211211-062532.mp4 6.13_8021_Player447-f153ac423f61-20210722-152417.mp4\r\n6.13_16745_Player809-f153ac423f61-20211211-062733.mp4 6.13_8022_Player447-f153ac423f61-20210722-152546.mp4\r\n6.13_16746_Player809-f153ac423f61-20211211-063041.mp4 6.13_8023_Player447-f153ac423f61-20210722-152727.mp4\r\n6.13_16747_Player809-f153ac423f61-20211211-063242.mp4 6.13_8024_Player447-f153ac423f61-20210722-152918.mp4\r\n6.13_16748_Player811-350a51e3ace3-20211203-101127.mp4 6.13_8025_Player447-f153ac423f61-20210722-153055.mp4\r\n6.13_16749_Player811-350a51e3ace3-20211203-103057.mp4 6.13_8026_Player447-f153ac423f61-20210722-153243.mp4\r\n6.13_1674_Player160-f153ac423f61-20211113-130552.mp4 6.13_8027_Player447-f153ac423f61-20210722-153421.mp4\r\n6.13_16750_Player811-350a51e3ace3-20211203-105030.mp4 6.13_8028_Player447-f153ac423f61-20210722-153548.mp4\r\n6.13_16751_Player811-8e090dd3da67-20211203-125403.mp4 6.13_8029_Player447-f153ac423f61-20210722-153716.mp4\r\n6.13_16752_Player811-8e090dd3da67-20211203-131319.mp4 6.13_802_Player128-b330cb053797-20211212-194623.mp4\r\n6.13_16753_Player811-8e090dd3da67-20211203-133351.mp4 6.13_8030_Player447-f153ac423f61-20210722-153844.mp4\r\n6.13_16754_Player811-8e090dd3da67-20211203-135207.mp4 6.13_8031_Player447-f153ac423f61-20210722-154014.mp4\r\n6.13_16755_Player811-8e090dd3da67-20211203-141124.mp4 6.13_8032_Player447-f153ac423f61-20210722-154128.mp4\r\n6.13_16756_Player811-8e090dd3da67-20211203-143437.mp4 6.13_8033_Player447-f153ac423f61-20210722-154238.mp4\r\n6.13_16757_Player811-8e090dd3da67-20211203-145401.mp4 6.13_8034_Player447-f153ac423f61-20210722-154342.mp4\r\n6.13_16758_Player811-8e090dd3da67-20211203-151447.mp4 6.13_8035_Player447-f153ac423f61-20210722-154454.mp4\r\n6.13_16759_Player811-f153ac423f61-20211203-075940.mp4 6.13_8036_Player447-f153ac423f61-20210722-154615.mp4\r\n6.13_1675_Player160-f153ac423f61-20211113-130709.mp4 6.13_8037_Player447-f153ac423f61-20210722-154732.mp4\r\n6.13_16760_Player811-f153ac423f61-20211203-081623.mp4 6.13_8038_Player447-f153ac423f61-20210722-154841.mp4\r\n6.13_16761_Player811-f153ac423f61-20211203-084040.mp4 6.13_8039_Player447-f153ac423f61-20210722-154947.mp4\r\n6.13_16762_Player811-f153ac423f61-20211203-090221.mp4 6.13_803_Player128-b330cb053797-20211212-194723.mp4\r\n6.13_16763_Player811-f4d762659bed-20211203-123307.mp4 6.13_8040_Player447-f153ac423f61-20210722-155047.mp4\r\n6.13_16764_Player814-f153ac423f61-20211016-234929.mp4 6.13_8041_Player447-f153ac423f61-20210722-155148.mp4\r\n6.13_16765_Player814-f153ac423f61-20211016-235123.mp4 6.13_8042_Player447-f153ac423f61-20210919-142623.mp4\r\n6.13_16766_Player814-f153ac423f61-20211016-235317.mp4 6.13_8043_Player448-5ae2f087f5df-20210914-134033.mp4\r\n6.13_16767_Player814-f153ac423f61-20211016-235507.mp4 6.13_8044_Player448-5ae2f087f5df-20210914-134146.mp4\r\n6.13_16768_Player814-f153ac423f61-20211016-235711.mp4 6.13_8045_Player448-5ae2f087f5df-20210914-134254.mp4\r\n6.13_16769_Player814-f153ac423f61-20211016-235845.mp4 6.13_8046_Player448-5ae2f087f5df-20210914-134401.mp4\r\n6.13_1676_Player160-f153ac423f61-20211113-130829.mp4 6.13_8047_Player448-5ae2f087f5df-20210914-134508.mp4\r\n6.13_16770_Player814-f153ac423f61-20211017-000023.mp4 6.13_8048_Player448-5ae2f087f5df-20210914-134612.mp4\r\n6.13_16771_Player814-f153ac423f61-20211017-000219.mp4 6.13_8049_Player448-5ae2f087f5df-20210914-134718.mp4\r\n6.13_16772_Player814-f153ac423f61-20211017-000410.mp4 6.13_804_Player128-b330cb053797-20211212-194823.mp4\r\n6.13_16773_Player814-f153ac423f61-20211017-000606.mp4 6.13_8050_Player448-5ae2f087f5df-20210914-134824.mp4\r\n6.13_16774_Player814-f153ac423f61-20211017-000816.mp4 6.13_8051_Player448-5ae2f087f5df-20210914-134937.mp4\r\n6.13_16775_Player814-f153ac423f61-20211017-001020.mp4 6.13_8052_Player448-5ae2f087f5df-20210914-135325.mp4\r\n6.13_16776_Player814-f153ac423f61-20211017-001215.mp4 6.13_8053_Player448-5ae2f087f5df-20210914-135432.mp4\r\n6.13_16777_Player814-f153ac423f61-20211017-001409.mp4 6.13_8054_Player448-5ae2f087f5df-20210914-135535.mp4\r\n6.13_16778_Player814-f153ac423f61-20211017-001557.mp4 6.13_8055_Player448-5ae2f087f5df-20210914-135642.mp4\r\n6.13_16779_Player814-f153ac423f61-20211017-001759.mp4 6.13_8056_Player448-f153ac423f61-20210914-133638.mp4\r\n6.13_1677_Player160-f153ac423f61-20211113-130942.mp4 6.13_8057_Player448-f153ac423f61-20210914-133743.mp4\r\n6.13_16780_Player814-f153ac423f61-20211017-001950.mp4 6.13_8058_Player448-f153ac423f61-20210914-133849.mp4\r\n6.13_16781_Player814-f153ac423f61-20211017-002154.mp4 6.13_8059_Player448-f153ac423f61-20210914-133957.mp4\r\n6.13_16782_Player814-f153ac423f61-20211017-002335.mp4 6.13_805_Player128-b330cb053797-20211212-194924.mp4\r\n6.13_16783_Player814-f153ac423f61-20211017-002527.mp4 6.13_8060_Player448-f153ac423f61-20211103-125335.mp4\r\n6.13_16784_Player814-f153ac423f61-20211017-002730.mp4 6.13_8061_Player448-f153ac423f61-20211103-125544.mp4\r\n6.13_16785_Player814-f153ac423f61-20211017-002904.mp4 6.13_8062_Player448-f153ac423f61-20211103-125741.mp4\r\n6.13_16786_Player814-f153ac423f61-20211017-003039.mp4 6.13_8063_Player448-f153ac423f61-20211103-125904.mp4\r\n6.13_16787_Player814-f153ac423f61-20211017-003217.mp4 6.13_8064_Player448-f153ac423f61-20211103-130019.mp4\r\n6.13_16788_Player814-f153ac423f61-20211017-003354.mp4 6.13_8065_Player448-f153ac423f61-20211103-130145.mp4\r\n6.13_16789_Player814-f153ac423f61-20211017-003523.mp4 6.13_8066_Player448-f153ac423f61-20211103-130315.mp4\r\n6.13_1678_Player160-f153ac423f61-20211113-131044.mp4 6.13_8067_Player448-f153ac423f61-20211103-130441.mp4\r\n6.13_16790_Player814-f153ac423f61-20211017-003650.mp4 6.13_8068_Player448-f153ac423f61-20211103-130607.mp4\r\n6.13_16791_Player814-f153ac423f61-20211017-003824.mp4 6.13_8069_Player448-f153ac423f61-20211103-130741.mp4\r\n6.13_16792_Player814-f153ac423f61-20211017-004006.mp4 6.13_806_Player128-b330cb053797-20211212-195024.mp4\r\n6.13_16793_Player814-f153ac423f61-20211017-004150.mp4 6.13_8070_Player448-f153ac423f61-20211103-130917.mp4\r\n6.13_16794_Player814-f153ac423f61-20211017-004329.mp4 6.13_8071_Player448-f153ac423f61-20211103-131043.mp4\r\n6.13_16795_Player814-f153ac423f61-20211017-004513.mp4 6.13_8072_Player448-f153ac423f61-20211103-131203.mp4\r\n6.13_16796_Player814-f153ac423f61-20211017-004658.mp4 6.13_8073_Player448-f153ac423f61-20211103-131350.mp4\r\n6.13_16797_Player814-f153ac423f61-20211017-004843.mp4 6.13_8074_Player448-f153ac423f61-20211103-131554.mp4\r\n6.13_16798_Player814-f153ac423f61-20211017-005018.mp4 6.13_8075_Player448-f153ac423f61-20211103-131759.mp4\r\n6.13_16799_Player814-f153ac423f61-20211017-005200.mp4 6.13_8076_Player448-f153ac423f61-20211103-131955.mp4\r\n6.13_1679_Player160-f153ac423f61-20211113-131145.mp4 6.13_8077_Player448-f153ac423f61-20211103-132201.mp4\r\n6.13_167_Player104-f153ac423f61-20210828-154956.mp4 6.13_8078_Player448-f153ac423f61-20211103-132402.mp4\r\n6.13_16800_Player814-f153ac423f61-20211017-005334.mp4 6.13_8079_Player448-f153ac423f61-20211103-132600.mp4\r\n6.13_16801_Player814-f153ac423f61-20211017-005516.mp4 6.13_807_Player128-b330cb053797-20211212-195128.mp4\r\n6.13_16802_Player814-f153ac423f61-20211017-005653.mp4 6.13_8080_Player448-f153ac423f61-20211103-132753.mp4\r\n6.13_16803_Player814-f153ac423f61-20211017-005840.mp4 6.13_8081_Player448-f153ac423f61-20211103-132946.mp4\r\n6.13_16804_Player814-f153ac423f61-20211017-010013.mp4 6.13_8082_Player448-f153ac423f61-20211103-133132.mp4\r\n6.13_16805_Player814-f153ac423f61-20211017-010145.mp4 6.13_8083_Player448-f153ac423f61-20211103-133315.mp4\r\n6.13_16806_Player814-f153ac423f61-20211017-010311.mp4 6.13_8084_Player448-f153ac423f61-20211103-133518.mp4\r\n6.13_16807_Player814-f153ac423f61-20211017-010456.mp4 6.13_8085_Player448-f153ac423f61-20211103-133658.mp4\r\n6.13_16808_Player814-f153ac423f61-20211017-010639.mp4 6.13_8086_Player448-f153ac423f61-20211103-133840.mp4\r\n6.13_16809_Player814-f153ac423f61-20211017-010812.mp4 6.13_8087_Player449-f153ac423f61-20210903-220427.mp4\r\n6.13_1680_Player160-f153ac423f61-20211113-131246.mp4 6.13_8088_Player449-f153ac423f61-20210903-220613.mp4\r\n6.13_16810_Player814-f153ac423f61-20211017-010953.mp4 6.13_8089_Player449-f153ac423f61-20210903-220748.mp4\r\n6.13_16811_Player814-f153ac423f61-20211017-011142.mp4 6.13_808_Player128-b330cb053797-20211212-195228.mp4\r\n6.13_16812_Player814-f153ac423f61-20211017-011321.mp4 6.13_8090_Player449-f153ac423f61-20210903-220917.mp4\r\n6.13_16813_Player814-f153ac423f61-20211017-011501.mp4 6.13_8091_Player449-f153ac423f61-20210903-221044.mp4\r\n6.13_16814_Player814-f153ac423f61-20211017-011641.mp4 6.13_8092_Player449-f153ac423f61-20210903-221203.mp4\r\n6.13_16815_Player815-f153ac423f61-20211217-080123.mp4 6.13_8093_Player449-f153ac423f61-20210903-221337.mp4\r\n6.13_16816_Player815-f153ac423f61-20211217-080734.mp4 6.13_8094_Player449-f153ac423f61-20210903-221527.mp4\r\n6.13_16817_Player815-f153ac423f61-20211217-081441.mp4 6.13_8095_Player449-f153ac423f61-20210903-221656.mp4\r\n6.13_16818_Player815-f153ac423f61-20211217-082145.mp4 6.13_8096_Player449-f153ac423f61-20210903-221837.mp4\r\n6.13_16819_Player815-f153ac423f61-20211217-082748.mp4 6.13_8097_Player449-f153ac423f61-20210903-222339.mp4\r\n6.13_1681_Player160-f153ac423f61-20211113-131347.mp4 6.13_8098_Player449-f153ac423f61-20210903-222532.mp4\r\n6.13_16820_Player815-f153ac423f61-20211217-083454.mp4 6.13_8099_Player449-f153ac423f61-20210903-222713.mp4\r\n6.13_16821_Player815-f153ac423f61-20211217-084157.mp4 6.13_809_Player128-b330cb053797-20211212-195328.mp4\r\n6.13_16822_Player815-f153ac423f61-20211217-084902.mp4 6.13_8100_Player449-f153ac423f61-20210903-222901.mp4\r\n6.13_16823_Player815-f153ac423f61-20211217-085605.mp4 6.13_8101_Player449-f153ac423f61-20210903-223045.mp4\r\n6.13_16824_Player815-f153ac423f61-20211217-090310.mp4 6.13_8102_Player449-f153ac423f61-20210903-223228.mp4\r\n6.13_16825_Player815-f153ac423f61-20211217-091015.mp4 6.13_8103_Player449-f153ac423f61-20210903-223412.mp4\r\n6.13_16826_Player815-f153ac423f61-20211217-091719.mp4 6.13_8104_Player449-f153ac423f61-20210903-223558.mp4\r\n6.13_16827_Player815-f153ac423f61-20211217-092927.mp4 6.13_8105_Player449-f153ac423f61-20210903-223745.mp4\r\n6.13_16828_Player815-f153ac423f61-20211217-093539.mp4 6.13_8106_Player449-f153ac423f61-20210903-223938.mp4\r\n6.13_16829_Player815-f153ac423f61-20211217-094144.mp4 6.13_8107_Player449-f153ac423f61-20210903-224122.mp4\r\n6.13_1682_Player160-f153ac423f61-20211113-131449.mp4 6.13_8108_Player449-f153ac423f61-20210903-224300.mp4\r\n6.13_16830_Player815-f153ac423f61-20211217-094754.mp4 6.13_8109_Player449-f153ac423f61-20210903-224433.mp4\r\n6.13_16831_Player816-f153ac423f61-20210829-105859.mp4 6.13_810_Player128-b330cb053797-20211212-195429.mp4\r\n6.13_16832_Player816-f153ac423f61-20211015-203038.mp4 6.13_8110_Player449-f153ac423f61-20210903-224606.mp4\r\n6.13_16833_Player816-f153ac423f61-20211015-204928.mp4 6.13_8111_Player449-f153ac423f61-20210903-224735.mp4\r\n6.13_16834_Player817-f153ac423f61-20211020-230140.mp4 6.13_8112_Player449-f153ac423f61-20210903-224903.mp4\r\n6.13_16835_Player820-f153ac423f61-20211022-112112.mp4 6.13_8113_Player449-f153ac423f61-20210903-225045.mp4\r\n6.13_16836_Player820-f153ac423f61-20211022-112252.mp4 6.13_8114_Player449-f153ac423f61-20210903-225217.mp4\r\n6.13_16837_Player820-f153ac423f61-20211022-112416.mp4 6.13_8115_Player449-f153ac423f61-20210903-225329.mp4\r\n6.13_16838_Player820-f153ac423f61-20211022-112529.mp4 6.13_8116_Player449-f153ac423f61-20210903-225459.mp4\r\n6.13_16839_Player820-f153ac423f61-20211022-112639.mp4 6.13_8117_Player449-f153ac423f61-20210903-225616.mp4\r\n6.13_1683_Player160-f153ac423f61-20211113-131550.mp4 6.13_8118_Player449-f153ac423f61-20210903-225740.mp4\r\n6.13_16840_Player820-f153ac423f61-20211022-112747.mp4 6.13_8119_Player449-f153ac423f61-20210903-225911.mp4\r\n6.13_16841_Player820-f153ac423f61-20211022-112856.mp4 6.13_811_Player128-b330cb053797-20211212-195529.mp4\r\n6.13_16842_Player820-f153ac423f61-20211022-113006.mp4 6.13_8120_Player449-f153ac423f61-20210903-230057.mp4\r\n6.13_16843_Player820-f153ac423f61-20211022-113117.mp4 6.13_8121_Player449-f153ac423f61-20210903-230238.mp4\r\n6.13_16844_Player820-f153ac423f61-20211022-113236.mp4 6.13_8122_Player449-f153ac423f61-20210903-230421.mp4\r\n6.13_16845_Player820-f153ac423f61-20211022-113339.mp4 6.13_8123_Player449-f153ac423f61-20210903-230602.mp4\r\n6.13_16846_Player820-f153ac423f61-20211022-113440.mp4 6.13_8124_Player449-f153ac423f61-20210903-230750.mp4\r\n6.13_16847_Player820-f153ac423f61-20211022-113541.mp4 6.13_8125_Player449-f153ac423f61-20210903-230942.mp4\r\n6.13_16848_Player820-f153ac423f61-20211022-113641.mp4 6.13_8126_Player449-f153ac423f61-20210903-231123.mp4\r\n6.13_16849_Player820-f153ac423f61-20211022-113742.mp4 6.13_8127_Player449-f153ac423f61-20210903-231315.mp4\r\n6.13_1684_Player160-f153ac423f61-20211113-131651.mp4 6.13_8128_Player449-f153ac423f61-20210903-231506.mp4\r\n6.13_16850_Player820-f153ac423f61-20211022-113842.mp4 6.13_8129_Player449-f153ac423f61-20210903-231655.mp4\r\n6.13_16851_Player820-f153ac423f61-20211022-114014.mp4 6.13_812_Player128-b330cb053797-20211212-195630.mp4\r\n6.13_16852_Player820-f153ac423f61-20211022-114141.mp4 6.13_8130_Player449-f153ac423f61-20210903-231838.mp4\r\n6.13_16853_Player820-f153ac423f61-20211022-114305.mp4 6.13_8131_Player449-f153ac423f61-20210903-232011.mp4\r\n6.13_16854_Player820-f153ac423f61-20211022-114439.mp4 6.13_8132_Player449-f153ac423f61-20210903-232149.mp4\r\n6.13_16855_Player820-f153ac423f61-20211022-114613.mp4 6.13_8133_Player449-f153ac423f61-20210903-232313.mp4\r\n6.13_16856_Player820-f153ac423f61-20211022-114756.mp4 6.13_8134_Player449-f153ac423f61-20210903-232434.mp4\r\n6.13_16857_Player820-f153ac423f61-20211022-114938.mp4 6.13_8135_Player449-f153ac423f61-20210903-232600.mp4\r\n6.13_16858_Player820-f153ac423f61-20211022-115127.mp4 6.13_8136_Player449-f153ac423f61-20210903-232721.mp4\r\n6.13_16859_Player820-f153ac423f61-20211022-115310.mp4 6.13_8137_Player449-f153ac423f61-20210903-232850.mp4\r\n6.13_1685_Player160-f153ac423f61-20211113-131758.mp4 6.13_8138_Player449-f153ac423f61-20210903-233034.mp4\r\n6.13_16860_Player820-f153ac423f61-20211022-115455.mp4 6.13_8139_Player449-f153ac423f61-20210903-233215.mp4\r\n6.13_16861_Player820-f153ac423f61-20211022-115635.mp4 6.13_813_Player128-b330cb053797-20211212-195730.mp4\r\n6.13_16862_Player823-f153ac423f61-20210831-095012.mp4 6.13_8140_Player449-f153ac423f61-20210903-233357.mp4\r\n6.13_16863_Player823-f153ac423f61-20210831-095743.mp4 6.13_8141_Player45-f153ac423f61-20211103-090156.mp4\r\n6.13_16864_Player823-f153ac423f61-20210831-100514.mp4 6.13_8142_Player45-f153ac423f61-20211103-091013.mp4\r\n6.13_16865_Player823-f153ac423f61-20210831-101234.mp4 6.13_8143_Player45-f153ac423f61-20211103-091821.mp4\r\n6.13_16866_Player823-f153ac423f61-20210831-101950.mp4 6.13_8144_Player45-f153ac423f61-20211103-092624.mp4\r\n6.13_16867_Player823-f153ac423f61-20210831-102715.mp4 6.13_8145_Player45-f153ac423f61-20211103-093326.mp4\r\n6.13_16868_Player823-f153ac423f61-20210831-103436.mp4 6.13_8146_Player45-f153ac423f61-20211103-094130.mp4\r\n6.13_16869_Player823-f153ac423f61-20210831-104141.mp4 6.13_8147_Player45-f153ac423f61-20211103-094833.mp4\r\n6.13_1686_Player160-f153ac423f61-20211113-131915.mp4 6.13_8148_Player45-f153ac423f61-20211103-095635.mp4\r\n6.13_16870_Player823-f153ac423f61-20210831-104911.mp4 6.13_8149_Player45-f153ac423f61-20211103-100337.mp4\r\n6.13_16871_Player823-f153ac423f61-20210831-105620.mp4 6.13_814_Player128-b330cb053797-20211212-195830.mp4\r\n6.13_16872_Player823-f153ac423f61-20210831-110329.mp4 6.13_8150_Player45-f153ac423f61-20211103-101140.mp4\r\n6.13_16873_Player823-f153ac423f61-20210831-111305.mp4 6.13_8151_Player45-f153ac423f61-20211103-101945.mp4\r\n6.13_16874_Player823-f153ac423f61-20210831-112008.mp4 6.13_8152_Player45-f153ac423f61-20211103-102746.mp4\r\n6.13_16875_Player823-f153ac423f61-20210831-112913.mp4 6.13_8153_Player45-f153ac423f61-20211103-103449.mp4\r\n6.13_16876_Player823-f153ac423f61-20210831-113703.mp4 6.13_8154_Player45-f153ac423f61-20211103-104256.mp4\r\n6.13_16877_Player823-f153ac423f61-20210831-114523.mp4 6.13_8155_Player45-f153ac423f61-20211103-105500.mp4\r\n6.13_16878_Player823-f153ac423f61-20210831-115321.mp4 6.13_8156_Player450-b795af21d497-20210829-120553.mp4\r\n6.13_16879_Player823-f153ac423f61-20210831-120131.mp4 6.13_8157_Player450-b795af21d497-20210829-120656.mp4\r\n6.13_1687_Player160-f153ac423f61-20211113-132024.mp4 6.13_8158_Player450-b795af21d497-20210829-120800.mp4\r\n6.13_16880_Player824-f153ac423f61-20210724-173848.mp4 6.13_8159_Player450-b795af21d497-20210829-120904.mp4\r\n6.13_16881_Player824-f153ac423f61-20210724-174356.mp4 6.13_815_Player128-b330cb053797-20211212-195931.mp4\r\n6.13_16882_Player824-f153ac423f61-20210724-174556.mp4 6.13_8160_Player450-b795af21d497-20210829-121006.mp4\r\n6.13_16883_Player824-f153ac423f61-20210724-175359.mp4 6.13_8161_Player450-b795af21d497-20210829-121109.mp4\r\n6.13_16884_Player824-f153ac423f61-20210724-180433.mp4 6.13_8162_Player450-b795af21d497-20210829-121217.mp4\r\n6.13_16885_Player824-f153ac423f61-20210724-181336.mp4 6.13_8163_Player450-b795af21d497-20210829-121325.mp4\r\n6.13_16886_Player824-f153ac423f61-20210724-181827.mp4 6.13_8164_Player450-b795af21d497-20210829-121428.mp4\r\n6.13_16887_Player824-f153ac423f61-20210724-181927.mp4 6.13_8165_Player450-b795af21d497-20210829-121534.mp4\r\n6.13_16888_Player824-f153ac423f61-20210724-182128.mp4 6.13_8166_Player450-b795af21d497-20210829-121643.mp4\r\n6.13_16889_Player824-f153ac423f61-20210724-182329.mp4 6.13_8167_Player450-f153ac423f61-20210829-114100.mp4\r\n6.13_1688_Player160-f153ac423f61-20211113-132135.mp4 6.13_8168_Player450-f153ac423f61-20210829-114210.mp4\r\n6.13_16890_Player824-f153ac423f61-20210724-182630.mp4 6.13_8169_Player450-f153ac423f61-20210829-114313.mp4\r\n6.13_16891_Player824-f153ac423f61-20210724-183132.mp4 6.13_816_Player128-b330cb053797-20211212-200133.mp4\r\n6.13_16892_Player824-f153ac423f61-20210724-184136.mp4 6.13_8170_Player450-f153ac423f61-20210829-114416.mp4\r\n6.13_16893_Player824-f153ac423f61-20210724-184336.mp4 6.13_8171_Player450-f153ac423f61-20210829-114520.mp4\r\n6.13_16894_Player824-f153ac423f61-20210724-184537.mp4 6.13_8172_Player450-f153ac423f61-20210829-114623.mp4\r\n6.13_16895_Player824-f153ac423f61-20210724-184738.mp4 6.13_8173_Player450-f153ac423f61-20210829-114731.mp4\r\n6.13_16896_Player824-f153ac423f61-20210724-185546.mp4 6.13_8174_Player450-f153ac423f61-20210829-114838.mp4\r\n6.13_16897_Player825-f153ac423f61-20211014-131343.mp4 6.13_8175_Player450-f153ac423f61-20210829-114943.mp4\r\n6.13_16898_Player825-f153ac423f61-20211014-132057.mp4 6.13_8176_Player450-f153ac423f61-20210829-115048.mp4\r\n6.13_16899_Player825-f153ac423f61-20211014-132802.mp4 6.13_8177_Player450-f153ac423f61-20210829-115154.mp4\r\n6.13_1689_Player160-f153ac423f61-20211113-132246.mp4 6.13_8178_Player450-f153ac423f61-20210829-115257.mp4\r\n6.13_168_Player104-f153ac423f61-20210828-155701.mp4 6.13_8179_Player450-f153ac423f61-20210829-115405.mp4\r\n6.13_16900_Player825-f153ac423f61-20211014-133506.mp4 6.13_817_Player128-b330cb053797-20211212-200426.mp4\r\n6.13_16901_Player825-f153ac423f61-20211014-134210.mp4 6.13_8180_Player450-f153ac423f61-20210829-115511.mp4\r\n6.13_16902_Player825-f153ac423f61-20211014-134913.mp4 6.13_8181_Player450-f153ac423f61-20210829-115617.mp4\r\n6.13_16903_Player825-f153ac423f61-20211014-135617.mp4 6.13_8182_Player450-f153ac423f61-20210829-115725.mp4\r\n6.13_16904_Player825-f153ac423f61-20211014-140322.mp4 6.13_8183_Player450-f153ac423f61-20210829-115827.mp4\r\n6.13_16905_Player825-f153ac423f61-20211014-141025.mp4 6.13_8184_Player450-f153ac423f61-20210829-115932.mp4\r\n6.13_16906_Player825-f153ac423f61-20211014-141733.mp4 6.13_8185_Player450-f153ac423f61-20210829-120040.mp4\r\n6.13_16907_Player825-f153ac423f61-20211014-142437.mp4 6.13_8186_Player450-f153ac423f61-20210829-120150.mp4\r\n6.13_16908_Player825-f153ac423f61-20211014-143145.mp4 6.13_8187_Player450-f153ac423f61-20210829-120302.mp4\r\n6.13_16909_Player825-f153ac423f61-20211014-143851.mp4 6.13_8188_Player450-f153ac423f61-20210829-120409.mp4\r\n6.13_1690_Player160-f153ac423f61-20211113-132356.mp4 6.13_8189_Player450-f153ac423f61-20210829-120518.mp4\r\n6.13_16910_Player825-f153ac423f61-20211014-144554.mp4 6.13_818_Player128-b330cb053797-20211212-200526.mp4\r\n6.13_16911_Player825-f153ac423f61-20211014-145300.mp4 6.13_8190_Player452-8f9e90d266ba-20211118-145800.mp4\r\n6.13_16912_Player825-f153ac423f61-20211014-150003.mp4 6.13_8191_Player452-8f9e90d266ba-20211118-150202.mp4\r\n6.13_16913_Player825-f153ac423f61-20211014-150711.mp4 6.13_8192_Player452-8f9e90d266ba-20211118-150605.mp4\r\n6.13_16914_Player825-f153ac423f61-20211014-151416.mp4 6.13_8193_Player452-8f9e90d266ba-20211118-151011.mp4\r\n6.13_16915_Player825-f153ac423f61-20211014-152122.mp4 6.13_8194_Player452-8f9e90d266ba-20211118-151444.mp4\r\n6.13_16916_Player825-f153ac423f61-20211014-152826.mp4 6.13_8195_Player452-8f9e90d266ba-20211118-151857.mp4\r\n6.13_16917_Player825-f153ac423f61-20211014-153536.mp4 6.13_8196_Player452-8f9e90d266ba-20211118-152301.mp4\r\n6.13_16918_Player825-f153ac423f61-20211014-154243.mp4 6.13_8197_Player452-8f9e90d266ba-20211118-152809.mp4\r\n6.13_16919_Player825-f153ac423f61-20211014-154953.mp4 6.13_8198_Player452-8f9e90d266ba-20211118-153212.mp4\r\n6.13_1691_Player160-f153ac423f61-20211113-132508.mp4 6.13_8199_Player452-8f9e90d266ba-20211118-153614.mp4\r\n6.13_16920_Player825-f153ac423f61-20211014-155656.mp4 6.13_819_Player128-b330cb053797-20211212-200627.mp4\r\n6.13_16921_Player825-f153ac423f61-20211014-160401.mp4 6.13_8200_Player452-8f9e90d266ba-20211118-154026.mp4\r\n6.13_16922_Player825-f153ac423f61-20211014-161103.mp4 6.13_8201_Player452-8f9e90d266ba-20211118-154434.mp4\r\n6.13_16923_Player826-0319efdd16fc-20211214-122952.mp4 6.13_8202_Player452-8f9e90d266ba-20211118-154835.mp4\r\n6.13_16924_Player826-0319efdd16fc-20211214-124923.mp4 6.13_8203_Player452-8f9e90d266ba-20211118-155339.mp4\r\n6.13_16925_Player826-0319efdd16fc-20211214-130855.mp4 6.13_8204_Player452-8f9e90d266ba-20211118-155745.mp4\r\n6.13_16926_Player826-0319efdd16fc-20211214-132826.mp4 6.13_8205_Player452-8f9e90d266ba-20211118-160157.mp4\r\n6.13_16927_Player826-0319efdd16fc-20211214-134850.mp4 6.13_8206_Player452-8f9e90d266ba-20211118-160704.mp4\r\n6.13_16928_Player826-0319efdd16fc-20211214-140917.mp4 6.13_8207_Player452-8f9e90d266ba-20211118-161107.mp4\r\n6.13_16929_Player826-0319efdd16fc-20211214-142847.mp4 6.13_8208_Player452-8f9e90d266ba-20211118-161512.mp4\r\n6.13_1692_Player160-f153ac423f61-20211113-132616.mp4 6.13_8209_Player452-8f9e90d266ba-20211118-161915.mp4\r\n6.13_16930_Player826-0319efdd16fc-20211214-144835.mp4 6.13_820_Player128-b330cb053797-20211212-200727.mp4\r\n6.13_16931_Player826-0319efdd16fc-20211214-150851.mp4 6.13_8210_Player452-8f9e90d266ba-20211118-162319.mp4\r\n6.13_16932_Player826-0319efdd16fc-20211214-152833.mp4 6.13_8211_Player452-b6dc239bc0d2-20211118-142707.mp4\r\n6.13_16933_Player826-0319efdd16fc-20211214-154841.mp4 6.13_8212_Player452-b6dc239bc0d2-20211118-143112.mp4\r\n6.13_16934_Player826-355d8a56ca97-20210802-164048.mp4 6.13_8213_Player452-b6dc239bc0d2-20211118-143517.mp4\r\n6.13_16935_Player826-355d8a56ca97-20210802-164153.mp4 6.13_8214_Player452-b6dc239bc0d2-20211118-143931.mp4\r\n6.13_16936_Player826-355d8a56ca97-20210802-164259.mp4 6.13_8215_Player452-b6dc239bc0d2-20211118-144447.mp4\r\n6.13_16937_Player826-355d8a56ca97-20210802-164400.mp4 6.13_8216_Player452-b6dc239bc0d2-20211118-144848.mp4\r\n6.13_16938_Player826-355d8a56ca97-20210802-164501.mp4 6.13_8217_Player452-b6dc239bc0d2-20211118-145351.mp4\r\n6.13_16939_Player826-355d8a56ca97-20210802-164603.mp4 6.13_8218_Player452-f153ac423f61-20211118-124709.mp4\r\n6.13_1693_Player160-f153ac423f61-20211113-132726.mp4 6.13_8219_Player452-f153ac423f61-20211118-125128.mp4\r\n6.13_16940_Player826-355d8a56ca97-20210802-164704.mp4 6.13_821_Player128-b330cb053797-20211212-200828.mp4\r\n6.13_16941_Player826-355d8a56ca97-20210802-164805.mp4 6.13_8220_Player452-f153ac423f61-20211118-125531.mp4\r\n6.13_16942_Player826-355d8a56ca97-20210802-164905.mp4 6.13_8221_Player452-f153ac423f61-20211118-130036.mp4\r\n6.13_16943_Player826-355d8a56ca97-20210802-165005.mp4 6.13_8222_Player452-f153ac423f61-20211118-130542.mp4\r\n6.13_16944_Player826-355d8a56ca97-20210802-165105.mp4 6.13_8223_Player452-f153ac423f61-20211118-130947.mp4\r\n6.13_16945_Player826-355d8a56ca97-20210802-165206.mp4 6.13_8224_Player452-f153ac423f61-20211118-131349.mp4\r\n6.13_16946_Player826-355d8a56ca97-20210802-165308.mp4 6.13_8225_Player452-f153ac423f61-20211118-131754.mp4\r\n6.13_16947_Player826-355d8a56ca97-20210802-165742.mp4 6.13_8226_Player452-f153ac423f61-20211118-132158.mp4\r\n6.13_16948_Player826-355d8a56ca97-20210802-165843.mp4 6.13_8227_Player452-f153ac423f61-20211118-132602.mp4\r\n6.13_16949_Player826-355d8a56ca97-20210802-165944.mp4 6.13_8228_Player452-f153ac423f61-20211118-133017.mp4\r\n6.13_1694_Player160-f153ac423f61-20211113-132834.mp4 6.13_8229_Player452-f153ac423f61-20211118-133441.mp4\r\n6.13_16950_Player826-355d8a56ca97-20210802-170044.mp4 6.13_822_Player128-b330cb053797-20211212-200928.mp4\r\n6.13_16951_Player826-355d8a56ca97-20210802-170145.mp4 6.13_8230_Player452-f153ac423f61-20211118-133844.mp4\r\n6.13_16952_Player826-355d8a56ca97-20210802-170245.mp4 6.13_8231_Player452-f153ac423f61-20211118-134247.mp4\r\n6.13_16953_Player826-355d8a56ca97-20210802-170345.mp4 6.13_8232_Player452-f153ac423f61-20211118-134753.mp4\r\n6.13_16954_Player826-355d8a56ca97-20210802-170445.mp4 6.13_8233_Player452-f153ac423f61-20211118-135156.mp4\r\n6.13_16955_Player826-355d8a56ca97-20210802-170546.mp4 6.13_8234_Player452-f153ac423f61-20211118-135558.mp4\r\n6.13_16956_Player826-355d8a56ca97-20210802-170646.mp4 6.13_8235_Player453-27ea78fee0a9-20211016-115145.mp4\r\n6.13_16957_Player826-355d8a56ca97-20210802-170747.mp4 6.13_8236_Player453-27ea78fee0a9-20211016-115852.mp4\r\n6.13_16958_Player826-355d8a56ca97-20210802-170848.mp4 6.13_8237_Player453-27ea78fee0a9-20211016-120701.mp4\r\n6.13_16959_Player826-355d8a56ca97-20210802-170950.mp4 6.13_8238_Player453-27ea78fee0a9-20211016-121410.mp4\r\n6.13_1695_Player160-f153ac423f61-20211113-132944.mp4 6.13_8239_Player453-27ea78fee0a9-20211016-122124.mp4\r\n6.13_16960_Player826-355d8a56ca97-20210802-171050.mp4 6.13_823_Player128-b330cb053797-20211212-201028.mp4\r\n6.13_16961_Player826-355d8a56ca97-20210802-171151.mp4 6.13_8240_Player453-27ea78fee0a9-20211016-122931.mp4\r\n6.13_16962_Player826-355d8a56ca97-20210802-171252.mp4 6.13_8241_Player453-27ea78fee0a9-20211016-123636.mp4\r\n6.13_16963_Player826-355d8a56ca97-20210802-171352.mp4 6.13_8242_Player453-27ea78fee0a9-20211016-124342.mp4\r\n6.13_16964_Player826-355d8a56ca97-20210802-171452.mp4 6.13_8243_Player453-27ea78fee0a9-20211016-125155.mp4\r\n6.13_16965_Player826-355d8a56ca97-20210802-171553.mp4 6.13_8244_Player453-27ea78fee0a9-20211016-125903.mp4\r\n6.13_16966_Player826-355d8a56ca97-20210802-171653.mp4 6.13_8245_Player453-27ea78fee0a9-20211016-130614.mp4\r\n6.13_16967_Player826-355d8a56ca97-20210802-171754.mp4 6.13_8246_Player453-27ea78fee0a9-20211016-131425.mp4\r\n6.13_16968_Player826-355d8a56ca97-20210802-171855.mp4 6.13_8247_Player453-27ea78fee0a9-20211016-132132.mp4\r\n6.13_16969_Player826-355d8a56ca97-20210802-171955.mp4 6.13_8248_Player453-27ea78fee0a9-20211016-132840.mp4\r\n6.13_1696_Player160-f153ac423f61-20211113-133055.mp4 6.13_8249_Player453-27ea78fee0a9-20211016-133546.mp4\r\n6.13_16970_Player826-355d8a56ca97-20210802-172055.mp4 6.13_824_Player128-b330cb053797-20211212-201129.mp4\r\n6.13_16971_Player826-355d8a56ca97-20210802-172156.mp4 6.13_8250_Player453-27ea78fee0a9-20211016-134253.mp4\r\n6.13_16972_Player826-355d8a56ca97-20210802-172256.mp4 6.13_8251_Player453-27ea78fee0a9-20211016-135101.mp4\r\n6.13_16973_Player826-355d8a56ca97-20210802-172357.mp4 6.13_8252_Player453-27ea78fee0a9-20211016-135806.mp4\r\n6.13_16974_Player826-355d8a56ca97-20210802-172458.mp4 6.13_8253_Player453-27ea78fee0a9-20211016-140513.mp4\r\n6.13_16975_Player826-355d8a56ca97-20210802-172559.mp4 6.13_8254_Player453-27ea78fee0a9-20211016-141319.mp4\r\n",,terminal_output +650,6817049,"TERMINAL",0,0,"6.10_1228_Player786-48b5fb389e50-202106^C",,terminal_command +651,6817059,"TERMINAL",0,0,"]633;E;;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/6xx]633;D",,terminal_output +652,6819805,"TERMINAL",0,0,"cursor 6.10_1228_Player786-48b5fb389e50-20210629-231909.mp4",,terminal_command +653,6819856,"TERMINAL",0,0,"]633;E;2025-06-24 17:48:36 cursor 6.10_1228_Player786-48b5fb389e50-20210629-231909.mp4;1dcb1e60-2cd2-44e8-8255-f854ee6fbef7]633;C",,terminal_output +654,6820049,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try/6xx]633;D;0",,terminal_output +655,8108024,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",0,0,"[[""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player378-f153ac423f61-20210701-213100.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player371-f153ac423f61-20210703-134328.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-230822.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player480-f153ac423f61-20210705-210824.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-214047.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/aslkdfj;alksdf.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player471-25972aec391f-20210617-211106.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player661-f153ac423f61-20210626-211725.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player129-f153ac423f61-20210617-180333.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player201-f153ac423f61-20210619-194835.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player929-f153ac423f61-20210622-200654.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player129-f153ac423f61-20210617-173110.mp4"", false], [""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player480-f153ac423f61-20210705-192717.mp4"", false]]",json,tab +656,8108938,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1957,0,"\n",json,content +657,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1956,0,"\n ",json,content +658,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1950,0,"\n ",json,content +659,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1807,0,"\n ",json,content +660,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1805,0,"\n ",json,content +661,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1803,0,"\n ",json,content +662,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1797,0,"\n ",json,content +663,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1654,0,"\n ",json,content +664,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1652,0,"\n ",json,content +665,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1650,0,"\n ",json,content +666,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1644,0,"\n ",json,content +667,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1501,0,"\n ",json,content +668,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1499,0,"\n ",json,content +669,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1497,0,"\n ",json,content +670,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1491,0,"\n ",json,content +671,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1348,0,"\n ",json,content +672,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1346,0,"\n ",json,content +673,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1344,0,"\n ",json,content +674,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1338,0,"\n ",json,content +675,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1195,0,"\n ",json,content +676,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1193,0,"\n ",json,content +677,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1191,0,"\n ",json,content +678,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1185,0,"\n ",json,content +679,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1042,0,"\n ",json,content +680,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1040,0,"\n ",json,content +681,8108939,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1038,0,"\n ",json,content +682,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1032,0,"\n ",json,content +683,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",889,0,"\n ",json,content +684,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",887,0,"\n ",json,content +685,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",885,0,"\n ",json,content +686,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",879,0,"\n ",json,content +687,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",765,0,"\n ",json,content +688,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",763,0,"\n ",json,content +689,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",761,0,"\n ",json,content +690,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",755,0,"\n ",json,content +691,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",613,0,"\n ",json,content +692,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",611,0,"\n ",json,content +693,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",609,0,"\n ",json,content +694,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",603,0,"\n ",json,content +695,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",460,0,"\n ",json,content +696,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",458,0,"\n ",json,content +697,8108940,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",456,0,"\n ",json,content +698,8108941,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",450,0,"\n ",json,content +699,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",308,0,"\n ",json,content +700,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",306,0,"\n ",json,content +701,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",304,0,"\n ",json,content +702,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",298,0,"\n ",json,content +703,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",155,0,"\n ",json,content +704,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",153,0,"\n ",json,content +705,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",151,0,"\n ",json,content +706,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",145,0,"\n ",json,content +707,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",2,0,"\n ",json,content +708,8108942,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",1,0,"\n ",json,content +709,8117784,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",16,0,"",json,selection_mouse +710,8241165,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",990,0,"",json,selection_mouse +711,8247033,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",468,0,"",json,selection_mouse +712,8247820,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",468,1,"6",json,selection_command +713,8248194,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",468,0,"",json,selection_command +714,8248387,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",469,0,"",json,selection_command +715,8248516,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",470,0,"",json,selection_command +716,8248665,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",471,0,"",json,selection_command +717,8248805,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",472,0,"",json,selection_command +718,8248956,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,0,"",json,selection_command +719,8249368,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,1,"P",json,selection_command +720,8250692,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,9,"Player17-",json,selection_command +721,8251404,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,53,"Player17-f153ac423f61-20210709-230822.mp4"",\n f",json,selection_command +722,8251850,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,52,"Player17-f153ac423f61-20210709-230822.mp4"",\n ",json,selection_command +723,8252001,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,51,"Player17-f153ac423f61-20210709-230822.mp4"",\n ",json,selection_command +724,8252157,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,50,"Player17-f153ac423f61-20210709-230822.mp4"",\n ",json,selection_command +725,8252299,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,49,"Player17-f153ac423f61-20210709-230822.mp4"",\n ",json,selection_command +726,8252438,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,48,"Player17-f153ac423f61-20210709-230822.mp4"",\n ",json,selection_command +727,8252582,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,47,"Player17-f153ac423f61-20210709-230822.mp4"",\n ",json,selection_command +728,8252718,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,46,"Player17-f153ac423f61-20210709-230822.mp4"",\n ",json,selection_command +729,8252868,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,45,"Player17-f153ac423f61-20210709-230822.mp4"",\n ",json,selection_command +730,8254054,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,42,"Player17-f153ac423f61-20210709-230822.mp4""",json,selection_command +731,8254703,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,41,"Player17-f153ac423f61-20210709-230822.mp4",json,selection_command +732,8255090,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,0,"",json,selection_command +733,8318063,"TERMINAL",0,0,"tmux",,terminal_focus +734,8320084,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",470,0,"",json,selection_command +735,8320624,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",471,0,"",json,selection_command +736,8320758,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",472,0,"",json,selection_command +737,8321286,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,0,"",json,selection_command +738,8321816,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",366,150," ""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-230822.mp4"",",json,selection_command +739,8322820,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,0,"",json,selection_command +740,8323210,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,1,"P",json,selection_command +741,8323525,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,8,"Player17",json,selection_command +742,8323713,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,9,"Player17-",json,selection_command +743,8323965,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,21,"Player17-f153ac423f61",json,selection_command +744,8323997,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,22,"Player17-f153ac423f61-",json,selection_command +745,8324033,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,30,"Player17-f153ac423f61-20210709",json,selection_command +746,8324065,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,31,"Player17-f153ac423f61-20210709-",json,selection_command +747,8324097,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,37,"Player17-f153ac423f61-20210709-230822",json,selection_command +748,8324133,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,38,"Player17-f153ac423f61-20210709-230822.",json,selection_command +749,8324169,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,41,"Player17-f153ac423f61-20210709-230822.mp4",json,selection_command +750,8324205,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,43,"Player17-f153ac423f61-20210709-230822.mp4"",",json,selection_command +751,8324231,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,57,"Player17-f153ac423f61-20210709-230822.mp4"",\n false",json,selection_command +752,8324495,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,56,"Player17-f153ac423f61-20210709-230822.mp4"",\n fals",json,selection_command +753,8324697,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,53,"Player17-f153ac423f61-20210709-230822.mp4"",\n f",json,selection_command +754,8324893,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,42,"Player17-f153ac423f61-20210709-230822.mp4""",json,selection_command +755,8325072,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,39,"Player17-f153ac423f61-20210709-230822.m",json,selection_command +756,8325354,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,40,"Player17-f153ac423f61-20210709-230822.mp",json,selection_command +757,8325614,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,0,"",json,selection_command +758,8326218,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,1,"P",json,selection_command +759,8326402,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,8,"Player17",json,selection_command +760,8326591,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,9,"Player17-",json,selection_command +761,8326761,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,21,"Player17-f153ac423f61",json,selection_command +762,8326918,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,22,"Player17-f153ac423f61-",json,selection_command +763,8327098,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,30,"Player17-f153ac423f61-20210709",json,selection_command +764,8327304,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,31,"Player17-f153ac423f61-20210709-",json,selection_command +765,8327514,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,37,"Player17-f153ac423f61-20210709-230822",json,selection_command +766,8327816,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,38,"Player17-f153ac423f61-20210709-230822.",json,selection_command +767,8328061,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,39,"Player17-f153ac423f61-20210709-230822.m",json,selection_command +768,8328235,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,40,"Player17-f153ac423f61-20210709-230822.mp",json,selection_command +769,8328426,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,41,"Player17-f153ac423f61-20210709-230822.mp4",json,selection_command +770,8329042,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",473,0,"",json,selection_command +771,8495066,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",470,0,"",json,selection_command +772,8495954,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",366,0,"",json,selection_command +773,8496301,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",374,0,"",json,selection_command +774,8496499,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",376,0,"",json,selection_command +775,8497402,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",374,0,"",json,selection_command +776,8497874,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",374,142,"",json,content +777,8497883,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",373,0,"",json,selection_command +778,8498054,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",374,0,"""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-230822.mp4"",",json,content +779,8498064,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",374,0,"",json,selection_command +780,8510783,"TERMINAL",0,0,"cursor ""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-230822.mp4"",",,terminal_command +781,8510834,"TERMINAL",0,0,"]633;E;2025-06-24 18:16:47 cursor ""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-230822.mp4"",;487b5bfd-98ce-4bf7-80f7-de24541e631e]633;C",,terminal_output +782,8510969,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +783,8511063,"data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-230822.mp4,",0,0,"",plaintext,tab +784,8519042,"TERMINAL",0,0,"cursor /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-230822.mp4",,terminal_command +785,8519089,"TERMINAL",0,0,"]633;E;2025-06-24 18:16:55 cursor /hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-230822.mp4;487b5bfd-98ce-4bf7-80f7-de24541e631e]633;C",,terminal_output +786,8519201,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +787,8629492,"TERMINAL",0,0,"cd data/open_ai_minecraft/all_6xx_Jun_29/",,terminal_command +788,8629494,"TERMINAL",0,0,"]633;E;2025-06-24 18:18:46 cd data/open_ai_minecraft/all_6xx_Jun_29/;487b5bfd-98ce-4bf7-80f7-de24541e631e]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/all_6xx_Jun_29]633;D;0",,terminal_output +789,8632101,"TERMINAL",0,0,"cursor 6.10_Player17-f153ac423f61-20210709-230822.mp4",,terminal_command +790,8632151,"TERMINAL",0,0,"]633;E;2025-06-24 18:18:49 cursor 6.10_Player17-f153ac423f61-20210709-230822.mp4;487b5bfd-98ce-4bf7-80f7-de24541e631e]633;C",,terminal_output +791,8632388,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft/all_6xx_Jun_29]633;D;0",,terminal_output +792,8696439,"data/open_ai_minecraft/tester_subset/6.10_Player17-f153ac423f61-20210709-230822.mp4,",0,0,"",plaintext,tab +793,8698903,"data/open_ai_minecraft_first_try_npy/tester_subset/10fps_160x90/failed_videos.json",0,0,"",json,tab +794,8700347,"TERMINAL",0,0,"bash",,terminal_focus +795,8701143,"TERMINAL",0,0,"bash",,terminal_focus +796,8701146,"scripts/data_mover.sh",0,0,"",shellscript,tab +797,9130921,"scripts/data_mover.sh",0,0,"",shellscript,tab +798,9133008,"TERMINAL",0,0,"bash",,terminal_focus +799,9134350,"TERMINAL",0,0,"bash",,terminal_focus +800,9698984,"TERMINAL",0,0,"queue",,terminal_command +801,9699037,"TERMINAL",0,0,"]633;E;2025-06-24 18:36:35 queue;487b5bfd-98ce-4bf7-80f7-de24541e631e]633;C",,terminal_output +802,9699101,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Tue Jun 24 18:36:35 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3289433 cpuonly preproce tum_ind3 CG10:16\t 1 hkn11063289204 cpuonly download tum_ind3 R 1:59:37\t 1 hkn12283289206 cpuonly download tum_ind3 R 1:59:37\t 1 hkn03723289199 cpuonly download tum_ind3 R 2:01:37\t 1 hkn1219",,terminal_output +803,9700164,"TERMINAL",0,0,"6999",,terminal_output +804,9701190,"TERMINAL",0,0,"8404040",,terminal_output +805,9702259,"TERMINAL",0,0,"9111",,terminal_output +806,9703291,"TERMINAL",0,0,"40222",,terminal_output +807,9704348,"TERMINAL",0,0,"1333",,terminal_output +808,9705394,"TERMINAL",0,0,"2444",,terminal_output +809,9706426,"TERMINAL",0,0,"3555",,terminal_output +810,9707489,"TERMINAL",0,0,"\r4204download R 1:59:42286603721992:01:461219",,terminal_output +811,9708535,"TERMINAL",0,0,"5777",,terminal_output +812,9709579,"TERMINAL",0,0,"6888",,terminal_output +813,9710627,"TERMINAL",0,0,"7999",,terminal_output +814,9711676,"TERMINAL",0,0,"8505050",,terminal_output +815,9712735,"TERMINAL",0,0,"9111",,terminal_output +816,9713786,"TERMINAL",0,0,"50222",,terminal_output +817,9714833,"TERMINAL",0,0,"1333",,terminal_output +818,9715886,"TERMINAL",0,0,"2444",,terminal_output +819,9716932,"TERMINAL",0,0,"3555",,terminal_output +820,9718030,"TERMINAL",0,0,"4666",,terminal_output +821,9719038,"TERMINAL",0,0,"5777",,terminal_output +822,9720080,"TERMINAL",0,0,"6888",,terminal_output +823,9721152,"TERMINAL",0,0,"7999",,terminal_output +824,9722177,"TERMINAL",0,0,"82:00:012:00:012:01",,terminal_output +825,9723222,"TERMINAL",0,0,"7:00222",,terminal_output +826,9724273,"TERMINAL",0,0,"1333",,terminal_output +827,9725314,"TERMINAL",0,0,"2444",,terminal_output +828,9726363,"TERMINAL",0,0,"3555",,terminal_output +829,9727407,"TERMINAL",0,0,"4666",,terminal_output +830,9728464,"TERMINAL",0,0,"5777",,terminal_output +831,9729505,"TERMINAL",0,0,"6888",,terminal_output +832,9730559,"TERMINAL",0,0,"7999",,terminal_output +833,9731606,"TERMINAL",0,0,"8101010",,terminal_output +834,9732643,"TERMINAL",0,0,"9111",,terminal_output +835,9733701,"TERMINAL",0,0,"10222",,terminal_output +836,9734735,"TERMINAL",0,0,"1333",,terminal_output +837,9735799,"TERMINAL",0,0,"2444",,terminal_output +838,9736828,"TERMINAL",0,0,"3555",,terminal_output +839,9737879,"TERMINAL",0,0,"4666",,terminal_output +840,9738930,"TERMINAL",0,0,"5777",,terminal_output +841,9739987,"TERMINAL",0,0,"6888",,terminal_output +842,9741068,"TERMINAL",0,0,"7999",,terminal_output +843,9742098,"TERMINAL",0,0,"8202020",,terminal_output +844,9743148,"TERMINAL",0,0,"9111",,terminal_output +845,9744219,"TERMINAL",0,0,"20333",,terminal_output +846,9745252,"TERMINAL",0,0,"2444",,terminal_output +847,9746276,"TERMINAL",0,0,"3555",,terminal_output +848,9747333,"TERMINAL",0,0,"4666",,terminal_output +849,9748566,"TERMINAL",0,0,"5777",,terminal_output +850,9749567,"TERMINAL",0,0,"6888",,terminal_output +851,9750571,"TERMINAL",0,0,"7999",,terminal_output +852,9752575,"TERMINAL",0,0,"8303030",,terminal_output +853,9752576,"TERMINAL",0,0,"9111",,terminal_output +854,9753621,"TERMINAL",0,0,"30222",,terminal_output +855,9754681,"TERMINAL",0,0,"1333",,terminal_output +856,9755741,"TERMINAL",0,0,"2444",,terminal_output +857,9756797,"TERMINAL",0,0,"3555",,terminal_output +858,9757846,"TERMINAL",0,0,"4666",,terminal_output +859,9759022,"TERMINAL",0,0,"5777",,terminal_output +860,9759950,"TERMINAL",0,0,"6888",,terminal_output +861,9760985,"TERMINAL",0,0,"7999",,terminal_output +862,9761440,"TERMINAL",0,0,"",,terminal_focus +863,9762062,"TERMINAL",0,0,"8404040",,terminal_output +864,9763103,"TERMINAL",0,0,"9111",,terminal_output +865,9764227,"TERMINAL",0,0,"40222",,terminal_output +866,9765233,"TERMINAL",0,0,"1444",,terminal_output +867,9766217,"TERMINAL",0,0,"3555",,terminal_output +868,9767388,"TERMINAL",0,0,"4666",,terminal_output +869,9767725,"TERMINAL",0,0,"cd data/",,terminal_command +870,9767731,"TERMINAL",0,0,"]633;E;2025-06-24 18:37:44 cd data/;7dee4643-d359-4f2e-af0a-ae142b9a40f8]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data]633;D;0",,terminal_output +871,9768295,"TERMINAL",0,0,"5777",,terminal_output +872,9769365,"TERMINAL",0,0,"6888",,terminal_output +873,9770377,"TERMINAL",0,0,"7999",,terminal_output +874,9771421,"TERMINAL",0,0,"8505050",,terminal_output +875,9772472,"TERMINAL",0,0,"9111",,terminal_output +876,9773533,"TERMINAL",0,0,"50222",,terminal_output +877,9774031,"TERMINAL",0,0,"rm -r open_ai_minecraft_first_try_npy/",,terminal_command +878,9774081,"TERMINAL",0,0,"]633;E;2025-06-24 18:37:50 rm -r open_ai_minecraft_first_try_npy/;7dee4643-d359-4f2e-af0a-ae142b9a40f8]633;C",,terminal_output +879,9774628,"TERMINAL",0,0,"1333",,terminal_output +880,9775618,"TERMINAL",0,0,"2444",,terminal_output +881,9776668,"TERMINAL",0,0,"3555",,terminal_output +882,9777723,"TERMINAL",0,0,"4666",,terminal_output +883,9778790,"TERMINAL",0,0,"5777",,terminal_output +884,9779839,"TERMINAL",0,0,"6888",,terminal_output +885,9780904,"TERMINAL",0,0,"7999",,terminal_output +886,9781930,"TERMINAL",0,0,"81:001:003:00",,terminal_output +887,9783067,"TERMINAL",0,0,"9111",,terminal_output +888,9784037,"TERMINAL",0,0,"8:00222",,terminal_output +889,9785221,"TERMINAL",0,0,"1333",,terminal_output +890,9786134,"TERMINAL",0,0,"2444",,terminal_output +891,9787165,"TERMINAL",0,0,"3666",,terminal_output +892,9788281,"TERMINAL",0,0,"5777",,terminal_output +893,9789248,"TERMINAL",0,0,"6888",,terminal_output +894,9790283,"TERMINAL",0,0,"7999",,terminal_output +895,9791350,"TERMINAL",0,0,"8101010",,terminal_output +896,9792383,"TERMINAL",0,0,"9111",,terminal_output +897,9793430,"TERMINAL",0,0,"10222",,terminal_output +898,9794488,"TERMINAL",0,0,"1333",,terminal_output +899,9795532,"TERMINAL",0,0,"2444",,terminal_output +900,9796587,"TERMINAL",0,0,"3555",,terminal_output +901,9797646,"TERMINAL",0,0,"4666",,terminal_output +902,9798695,"TERMINAL",0,0,"5777",,terminal_output +903,9799746,"TERMINAL",0,0,"6888",,terminal_output +904,9800783,"TERMINAL",0,0,"7999",,terminal_output +905,9801824,"TERMINAL",0,0,"8202020",,terminal_output +906,9802910,"TERMINAL",0,0,"9111",,terminal_output +907,9803924,"TERMINAL",0,0,"20222",,terminal_output +908,9804974,"TERMINAL",0,0,"1333",,terminal_output +909,9805908,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data]633;D;0",,terminal_output +910,9806019,"TERMINAL",0,0,"2444",,terminal_output +911,9807063,"TERMINAL",0,0,"3555",,terminal_output +912,9808134,"TERMINAL",0,0,"4666",,terminal_output +913,9809166,"TERMINAL",0,0,"5888",,terminal_output +914,9810210,"TERMINAL",0,0,"7999",,terminal_output +915,9811268,"TERMINAL",0,0,"8303030",,terminal_output +916,9812309,"TERMINAL",0,0,"9111",,terminal_output +917,9813361,"TERMINAL",0,0,"30222",,terminal_output +918,9814409,"TERMINAL",0,0,"1333",,terminal_output +919,9815458,"TERMINAL",0,0,"2444",,terminal_output +920,9816505,"TERMINAL",0,0,"3555",,terminal_output +921,9817551,"TERMINAL",0,0,"4666",,terminal_output +922,9818593,"TERMINAL",0,0,"5777",,terminal_output +923,9819638,"TERMINAL",0,0,"6888",,terminal_output +924,9820684,"TERMINAL",0,0,"7999",,terminal_output +925,9821763,"TERMINAL",0,0,"8404040",,terminal_output +926,9822774,"TERMINAL",0,0,"9111",,terminal_output +927,9823829,"TERMINAL",0,0,"40222",,terminal_output +928,9824880,"TERMINAL",0,0,"1333",,terminal_output +929,9825924,"TERMINAL",0,0,"2444",,terminal_output +930,9826984,"TERMINAL",0,0,"3555",,terminal_output +931,9828036,"TERMINAL",0,0,"4666",,terminal_output +932,9829074,"TERMINAL",0,0,"5777",,terminal_output +933,9830119,"TERMINAL",0,0,"6888",,terminal_output +934,9831170,"TERMINAL",0,0,"7505050",,terminal_output +935,9832222,"TERMINAL",0,0,"9111",,terminal_output +936,9833274,"TERMINAL",0,0,"50222",,terminal_output +937,9834319,"TERMINAL",0,0,"1333",,terminal_output +938,9835362,"TERMINAL",0,0,"2444",,terminal_output +939,9836401,"TERMINAL",0,0,"3555",,terminal_output +940,9837452,"TERMINAL",0,0,"4666",,terminal_output +941,9838502,"TERMINAL",0,0,"5777",,terminal_output +942,9839543,"TERMINAL",0,0,"6888",,terminal_output +943,9840606,"TERMINAL",0,0,"7999",,terminal_output +944,9841641,"TERMINAL",0,0,"82:002:004:00",,terminal_output +945,9842690,"TERMINAL",0,0,"9111",,terminal_output +946,9843741,"TERMINAL",0,0,"9:00222",,terminal_output +947,9844783,"TERMINAL",0,0,"1333",,terminal_output +948,9845839,"TERMINAL",0,0,"2444",,terminal_output +949,9846886,"TERMINAL",0,0,"3555",,terminal_output +950,9847934,"TERMINAL",0,0,"4666",,terminal_output +951,9848986,"TERMINAL",0,0,"5777",,terminal_output +952,9850034,"TERMINAL",0,0,"6888",,terminal_output +953,9851082,"TERMINAL",0,0,"7999",,terminal_output +954,9852128,"TERMINAL",0,0,"8101010",,terminal_output +955,9853191,"TERMINAL",0,0,"9222",,terminal_output +956,9854227,"TERMINAL",0,0,"11333",,terminal_output +957,9855298,"TERMINAL",0,0,"2444",,terminal_output +958,9856323,"TERMINAL",0,0,"3555",,terminal_output +959,9857388,"TERMINAL",0,0,"4666",,terminal_output +960,9858416,"TERMINAL",0,0,"5777",,terminal_output +961,9859456,"TERMINAL",0,0,"6888",,terminal_output +962,9860496,"TERMINAL",0,0,"7999",,terminal_output +963,9861544,"TERMINAL",0,0,"8202020",,terminal_output +964,9862582,"TERMINAL",0,0,"9111",,terminal_output +965,9863626,"TERMINAL",0,0,"20222",,terminal_output +966,9864684,"TERMINAL",0,0,"1333",,terminal_output +967,9865727,"TERMINAL",0,0,"2444",,terminal_output +968,9866750,"TERMINAL",0,0,"3555",,terminal_output +969,9867834,"TERMINAL",0,0,"4666",,terminal_output +970,9868838,"TERMINAL",0,0,"5777",,terminal_output +971,9869904,"TERMINAL",0,0,"6888",,terminal_output +972,9870953,"TERMINAL",0,0,"7999",,terminal_output +973,9871991,"TERMINAL",0,0,"8303030",,terminal_output +974,9873050,"TERMINAL",0,0,"9111",,terminal_output +975,9874084,"TERMINAL",0,0,"30222",,terminal_output +976,9875146,"TERMINAL",0,0,"1333",,terminal_output +977,9876174,"TERMINAL",0,0,"2555",,terminal_output +978,9877253,"TERMINAL",0,0,"4452mp4_to_nPD 0:00(Priority)4612282062:3603723289199 cpuonly download tum_ind3 R 2:04:36\t 1 hkn1219",,terminal_output +979,9878394,"TERMINAL",0,0,"5777",,terminal_output +980,9879397,"TERMINAL",0,0,"6888",,terminal_output +981,9880410,"TERMINAL",0,0,"\r73289453 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)999",,terminal_output +982,9881445,"TERMINAL",0,0,"8404040",,terminal_output +983,9882486,"TERMINAL",0,0,"\r93289454 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)111",,terminal_output +984,9883540,"TERMINAL",0,0,"40222",,terminal_output +985,9884592,"TERMINAL",0,0,"1333",,terminal_output +986,9885648,"TERMINAL",0,0,"\r23289455 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)444",,terminal_output +987,9886698,"TERMINAL",0,0,"3555",,terminal_output +988,9887748,"TERMINAL",0,0,"4666",,terminal_output +989,9888819,"TERMINAL",0,0,"\r53289456 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)777",,terminal_output +990,9889846,"TERMINAL",0,0,"6888",,terminal_output +991,9890893,"TERMINAL",0,0,"7999",,terminal_output +992,9891944,"TERMINAL",0,0,"8505050",,terminal_output +993,9892998,"TERMINAL",0,0,"9111",,terminal_output +994,9894043,"TERMINAL",0,0,"50222",,terminal_output +995,9895088,"TERMINAL",0,0,"1333",,terminal_output +996,9895249,"TERMINAL",0,0,"watch",,terminal_focus +997,9896195,"TERMINAL",0,0,"2444",,terminal_output +998,9897184,"TERMINAL",0,0,"3666",,terminal_output +999,9898251,"TERMINAL",0,0,"5777",,terminal_output +1000,9898598,"TERMINAL",0,0,"Every 1.0s: squeue --mehkn1993.localdomain: Tue Jun 24 18:39:55 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3289456 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289455 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289454 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289453 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289452 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289204 cpuonly download tum_ind3 R 2:02:57\t 1 hkn12283289206 cpuonly download tum_ind3 R 2:02:57\t 1 hkn03723289199 cpuonly download tum_ind3 R 2:04:57\t 1 hkn1219Every 1.0s: squeue --mehkn1993.localdomain: Tue Jun 24 18:39:55 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3289456 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289455 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289454 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289453 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289452 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289204 cpuonly download tum_ind3 R 2:02:57\t 1 hkn12283289206 cpuonly download tum_ind3 R 2:02:57\t 1 hkn03723289199 cpuonly download tum_ind3 R 2:04:57\t 1 hkn1219Every 1.0s: squeue --mehkn1993.localdomain: Tue Jun 24 18:39:55 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3289456 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289455 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289454 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289453 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289452 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289204 cpuonly download tum_ind3 R 2:02:57\t 1 hkn12283289206 cpuonly download tum_ind3 R 2:02:57\t 1 hkn03723289199 cpuonly download tum_ind3 R 2:04:57\t 1 hkn1219",,terminal_output +1001,9898752,"TERMINAL",0,0,"Every 1.0s: squeue --mehkn1993.localdomain: Tue Jun 24 18:39:55 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3289456 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289455 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289454 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289453 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289452 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289204 cpuonly download tum_ind3 R 2:02:57\t 1 hkn12283289206 cpuonly download tum_ind3 R 2:02:57\t 1 hkn03723289199 cpuonly download tum_ind3 R 2:04:57\t 1 hkn1219",,terminal_output +1002,9898920,"TERMINAL",0,0,"Every 1.0s: squeue --mehkn1993.localdomain: Tue Jun 24 18:39:55 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3289456 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289455 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289454 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289453 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289452 cpuonly mp4_to_n tum_ind3 PD\t0:00\t 1 (Priority)3289204 cpuonly download tum_ind3 R 2:02:57\t 1 hkn12283289206 cpuonly download tum_ind3 R 2:02:57\t 1 hkn03723289199 cpuonly download tum_ind3 R 2:04:57\t 1 hkn1219",,terminal_output +1003,9899728,"TERMINAL",0,0,"bash",,terminal_focus +1004,9900128,"TERMINAL",0,0,"6888",,terminal_output +1005,9901017,"TERMINAL",0,0,"7999",,terminal_output +1006,9902055,"TERMINAL",0,0,"83:003:005:00",,terminal_output +1007,9903172,"TERMINAL",0,0,"9111",,terminal_output +1008,9904157,"TERMINAL",0,0,"40:00333",,terminal_output +1009,9905186,"TERMINAL",0,0,"2444",,terminal_output +1010,9906228,"TERMINAL",0,0,"3555",,terminal_output +1011,9907287,"TERMINAL",0,0,"4666",,terminal_output +1012,9908339,"TERMINAL",0,0,"5777",,terminal_output +1013,9909394,"TERMINAL",0,0,"6888",,terminal_output +1014,9910439,"TERMINAL",0,0,"7999",,terminal_output +1015,9911511,"TERMINAL",0,0,"8101010",,terminal_output +1016,9912550,"TERMINAL",0,0,"9111",,terminal_output +1017,9913603,"TERMINAL",0,0,"10222",,terminal_output +1018,9914648,"TERMINAL",0,0,"1333",,terminal_output +1019,9915689,"TERMINAL",0,0,"2444",,terminal_output +1020,9916749,"TERMINAL",0,0,"3555",,terminal_output +1021,9917804,"TERMINAL",0,0,"4666",,terminal_output +1022,9918851,"TERMINAL",0,0,"5777",,terminal_output +1023,9919881,"TERMINAL",0,0,"6888",,terminal_output +1024,9920925,"TERMINAL",0,0,"7999",,terminal_output +1025,9921974,"TERMINAL",0,0,"8202020",,terminal_output +1026,9923038,"TERMINAL",0,0,"9111",,terminal_output +1027,9924267,"TERMINAL",0,0,"20222",,terminal_output +1028,9925132,"TERMINAL",0,0,"1333",,terminal_output +1029,9926187,"TERMINAL",0,0,"2555",,terminal_output +1030,9927230,"TERMINAL",0,0,"4666",,terminal_output +1031,9928279,"TERMINAL",0,0,"5777",,terminal_output +1032,9929342,"TERMINAL",0,0,"6888",,terminal_output +1033,9930374,"TERMINAL",0,0,"7999",,terminal_output +1034,9931433,"TERMINAL",0,0,"8303030",,terminal_output +1035,9932559,"TERMINAL",0,0,"9111",,terminal_output +1036,9933528,"TERMINAL",0,0,"30222",,terminal_output +1037,9934596,"TERMINAL",0,0,"1333",,terminal_output +1038,9935630,"TERMINAL",0,0,"2444",,terminal_output +1039,9936680,"TERMINAL",0,0,"3555",,terminal_output +1040,9937737,"TERMINAL",0,0,"4666",,terminal_output +1041,9938779,"TERMINAL",0,0,"5777",,terminal_output +1042,9939822,"TERMINAL",0,0,"6888",,terminal_output +1043,9940881,"TERMINAL",0,0,"7999",,terminal_output +1044,9941914,"TERMINAL",0,0,"8404040",,terminal_output +1045,9943008,"TERMINAL",0,0,"9111",,terminal_output +1046,9944025,"TERMINAL",0,0,"40222",,terminal_output +1047,9945064,"TERMINAL",0,0,"1333",,terminal_output +1048,9946118,"TERMINAL",0,0,"2444",,terminal_output +1049,9947194,"TERMINAL",0,0,"3666",,terminal_output +1050,9948211,"TERMINAL",0,0,"\r5204download R 2:03:47hkn1228206download R 2:03:47hkn0372199download R 2:05:47hkn1219",,terminal_output +1051,9949250,"TERMINAL",0,0,"6888",,terminal_output +1052,9950293,"TERMINAL",0,0,"7999",,terminal_output +1053,9951335,"TERMINAL",0,0,"8505050",,terminal_output +1054,9952383,"TERMINAL",0,0,"9111",,terminal_output +1055,9953440,"TERMINAL",0,0,"50222",,terminal_output +1056,9954504,"TERMINAL",0,0,"1333",,terminal_output +1057,9955545,"TERMINAL",0,0,"2444",,terminal_output +1058,9956584,"TERMINAL",0,0,"3555",,terminal_output +1059,9957628,"TERMINAL",0,0,"4666",,terminal_output +1060,9958681,"TERMINAL",0,0,"5777",,terminal_output +1061,9959717,"TERMINAL",0,0,"6888",,terminal_output +1062,9960774,"TERMINAL",0,0,"7999",,terminal_output +1063,9961799,"TERMINAL",0,0,"84:004:006:00",,terminal_output +1064,9962865,"TERMINAL",0,0,"9111",,terminal_output +1065,9963907,"TERMINAL",0,0,"1:00222",,terminal_output +1066,9964991,"TERMINAL",0,0,"1333",,terminal_output +1067,9966004,"TERMINAL",0,0,"2444",,terminal_output +1068,9967056,"TERMINAL",0,0,"3555",,terminal_output +1069,9968124,"TERMINAL",0,0,"4666",,terminal_output +1070,9969155,"TERMINAL",0,0,"5888",,terminal_output +1071,9970210,"TERMINAL",0,0,"7999",,terminal_output +1072,9971292,"TERMINAL",0,0,"8101010",,terminal_output +1073,9972342,"TERMINAL",0,0,"9111",,terminal_output +1074,9973393,"TERMINAL",0,0,"10222",,terminal_output +1075,9974450,"TERMINAL",0,0,"1333",,terminal_output +1076,9975497,"TERMINAL",0,0,"2444",,terminal_output +1077,9976543,"TERMINAL",0,0,"3555",,terminal_output +1078,9977615,"TERMINAL",0,0,"4666",,terminal_output +1079,9978668,"TERMINAL",0,0,"5777",,terminal_output +1080,9979770,"TERMINAL",0,0,"6888",,terminal_output +1081,9980755,"TERMINAL",0,0,"7999",,terminal_output +1082,9981789,"TERMINAL",0,0,"8202020",,terminal_output +1083,9982828,"TERMINAL",0,0,"9111",,terminal_output +1084,9983880,"TERMINAL",0,0,"20222",,terminal_output +1085,9984933,"TERMINAL",0,0,"1333",,terminal_output +1086,9985976,"TERMINAL",0,0,"2444",,terminal_output +1087,9987030,"TERMINAL",0,0,"3555",,terminal_output +1088,9988083,"TERMINAL",0,0,"4666",,terminal_output +1089,9989188,"TERMINAL",0,0,"5777",,terminal_output +1090,9990182,"TERMINAL",0,0,"6999",,terminal_output +1091,9991230,"TERMINAL",0,0,"8303030",,terminal_output +1092,9992288,"TERMINAL",0,0,"9111",,terminal_output +1093,9993340,"TERMINAL",0,0,"30460mp4_to_nPD 0:00(Priority)4212282064:3203723289199 cpuonly download tum_ind3 R 2:06:32\t 1 hkn1219",,terminal_output +1094,9994410,"TERMINAL",0,0,"1333",,terminal_output +1095,9995435,"TERMINAL",0,0,"2444",,terminal_output +1096,9996481,"TERMINAL",0,0,"3555",,terminal_output +1097,9997518,"TERMINAL",0,0,"4666",,terminal_output +1098,9998563,"TERMINAL",0,0,"5777",,terminal_output +1099,9999623,"TERMINAL",0,0,"6888",,terminal_output +1100,10000652,"TERMINAL",0,0,"7999",,terminal_output +1101,10001729,"TERMINAL",0,0,"8404040",,terminal_output +1102,10002760,"TERMINAL",0,0,"9111",,terminal_output +1103,10003807,"TERMINAL",0,0,"40222",,terminal_output +1104,10004849,"TERMINAL",0,0,"1333",,terminal_output +1105,10005900,"TERMINAL",0,0,"2444",,terminal_output +1106,10006951,"TERMINAL",0,0,"3555",,terminal_output +1107,10007998,"TERMINAL",0,0,"4666",,terminal_output +1108,10009045,"TERMINAL",0,0,"5777",,terminal_output +1109,10010104,"TERMINAL",0,0,"6888",,terminal_output +1110,10011171,"TERMINAL",0,0,"7505050",,terminal_output +1111,10012205,"TERMINAL",0,0,"9111",,terminal_output +1112,10013267,"TERMINAL",0,0,"50222",,terminal_output +1113,10014314,"TERMINAL",0,0,"1333",,terminal_output +1114,10015348,"TERMINAL",0,0,"2444",,terminal_output +1115,10016393,"TERMINAL",0,0,"3555",,terminal_output +1116,10017439,"TERMINAL",0,0,"4666",,terminal_output +1117,10018481,"TERMINAL",0,0,"5777",,terminal_output +1118,10019530,"TERMINAL",0,0,"6888",,terminal_output +1119,10020582,"TERMINAL",0,0,"7999",,terminal_output +1120,10021631,"TERMINAL",0,0,"85:005:007:00",,terminal_output +1121,10022695,"TERMINAL",0,0,"9111",,terminal_output +1122,10023748,"TERMINAL",0,0,"2:00222",,terminal_output +1123,10024770,"TERMINAL",0,0,"1333",,terminal_output +1124,10025812,"TERMINAL",0,0,"2444",,terminal_output +1125,10026866,"TERMINAL",0,0,"3555",,terminal_output +1126,10027917,"TERMINAL",0,0,"4666",,terminal_output +1127,10028973,"TERMINAL",0,0,"5777",,terminal_output +1128,10030009,"TERMINAL",0,0,"6888",,terminal_output +1129,10031062,"TERMINAL",0,0,"7999",,terminal_output +1130,10032109,"TERMINAL",0,0,"8101010",,terminal_output +1131,10033196,"TERMINAL",0,0,"9222",,terminal_output +1132,10034203,"TERMINAL",0,0,"11333",,terminal_output +1133,10035243,"TERMINAL",0,0,"2444",,terminal_output +1134,10036299,"TERMINAL",0,0,"3555",,terminal_output +1135,10037358,"TERMINAL",0,0,"4666",,terminal_output +1136,10038393,"TERMINAL",0,0,"5777",,terminal_output +1137,10039442,"TERMINAL",0,0,"6888",,terminal_output +1138,10040485,"TERMINAL",0,0,"7999",,terminal_output +1139,10041568,"TERMINAL",0,0,"8202020",,terminal_output +1140,10042585,"TERMINAL",0,0,"9111",,terminal_output +1141,10043655,"TERMINAL",0,0,"20222",,terminal_output +1142,10044695,"TERMINAL",0,0,"1333",,terminal_output +1143,10045753,"TERMINAL",0,0,"2444",,terminal_output +1144,10046792,"TERMINAL",0,0,"3555",,terminal_output +1145,10047839,"TERMINAL",0,0,"4666",,terminal_output +1146,10048879,"TERMINAL",0,0,"5777",,terminal_output +1147,10049935,"TERMINAL",0,0,"6888",,terminal_output +1148,10050990,"TERMINAL",0,0,"7999",,terminal_output +1149,10052024,"TERMINAL",0,0,"8303030",,terminal_output +1150,10053081,"TERMINAL",0,0,"9111",,terminal_output +1151,10054106,"TERMINAL",0,0,"30222",,terminal_output +1152,10055131,"TERMINAL",0,0,"1333",,terminal_output +1153,10056183,"TERMINAL",0,0,"2555",,terminal_output +1154,10057219,"TERMINAL",0,0,"4666",,terminal_output +1155,10058255,"TERMINAL",0,0,"5777",,terminal_output +1156,10059290,"TERMINAL",0,0,"6888",,terminal_output +1157,10060333,"TERMINAL",0,0,"7999",,terminal_output +1158,10061375,"TERMINAL",0,0,"8404040",,terminal_output +1159,10062397,"TERMINAL",0,0,"9111",,terminal_output +1160,10063438,"TERMINAL",0,0,"40222",,terminal_output +1161,10064514,"TERMINAL",0,0,"1333",,terminal_output +1162,10065540,"TERMINAL",0,0,"2444",,terminal_output +1163,10066590,"TERMINAL",0,0,"3555",,terminal_output +1164,10067629,"TERMINAL",0,0,"4666",,terminal_output +1165,10068674,"TERMINAL",0,0,"5777",,terminal_output +1166,10069726,"TERMINAL",0,0,"6888",,terminal_output +1167,10070824,"TERMINAL",0,0,"7999",,terminal_output +1168,10071826,"TERMINAL",0,0,"8505050",,terminal_output +1169,10072842,"TERMINAL",0,0,"9111",,terminal_output +1170,10073922,"TERMINAL",0,0,"50222",,terminal_output +1171,10074943,"TERMINAL",0,0,"1333",,terminal_output +1172,10076007,"TERMINAL",0,0,"2444",,terminal_output +1173,10077049,"TERMINAL",0,0,"3555",,terminal_output +1174,10078096,"TERMINAL",0,0,"4666",,terminal_output +1175,10079129,"TERMINAL",0,0,"5777",,terminal_output +1176,10080176,"TERMINAL",0,0,"6999",,terminal_output +1177,10081208,"TERMINAL",0,0,"86:006:008:00",,terminal_output +1178,10082252,"TERMINAL",0,0,"9111",,terminal_output +1179,10083310,"TERMINAL",0,0,"3:00222",,terminal_output +1180,10084341,"TERMINAL",0,0,"1333",,terminal_output +1181,10085384,"TERMINAL",0,0,"2444",,terminal_output +1182,10086431,"TERMINAL",0,0,"3555",,terminal_output +1183,10087476,"TERMINAL",0,0,"4666",,terminal_output +1184,10088521,"TERMINAL",0,0,"5777",,terminal_output +1185,10089560,"TERMINAL",0,0,"6888",,terminal_output +1186,10090605,"TERMINAL",0,0,"7999",,terminal_output +1187,10091637,"TERMINAL",0,0,"8 Rhkn1015101010",,terminal_output +1188,10092687,"TERMINAL",0,0,"91111",,terminal_output +1189,10093740,"TERMINAL",0,0,"102222",,terminal_output +1190,10094774,"TERMINAL",0,0,"13333",,terminal_output +1191,10095815,"TERMINAL",0,0,"24444",,terminal_output +1192,10096844,"TERMINAL",0,0,"35555",,terminal_output +1193,10097895,"TERMINAL",0,0,"46666",,terminal_output +1194,10098952,"TERMINAL",0,0,"57777",,terminal_output +1195,10100009,"TERMINAL",0,0,"68888",,terminal_output +1196,10101035,"TERMINAL",0,0,"79999",,terminal_output +1197,10102092,"TERMINAL",0,0,"810202020",,terminal_output +1198,10103122,"TERMINAL",0,0,"91111",,terminal_output +1199,10104207,"TERMINAL",0,0,"203333",,terminal_output +1200,10105271,"TERMINAL",0,0,"24444",,terminal_output +1201,10106279,"TERMINAL",0,0,"35555",,terminal_output +1202,10107290,"TERMINAL",0,0,"46666",,terminal_output +1203,10108385,"TERMINAL",0,0,"57777",,terminal_output +1204,10109388,"TERMINAL",0,0,"68888",,terminal_output +1205,10110436,"TERMINAL",0,0,"79999",,terminal_output +1206,10111474,"TERMINAL",0,0,"820303030",,terminal_output +1207,10112483,"TERMINAL",0,0,"91111",,terminal_output +1208,10113508,"TERMINAL",0,0,"302222",,terminal_output +1209,10114553,"TERMINAL",0,0,"13333",,terminal_output +1210,10115598,"TERMINAL",0,0,"24444",,terminal_output +1211,10116634,"TERMINAL",0,0,"35555",,terminal_output +1212,10117718,"TERMINAL",0,0,"46666",,terminal_output +1213,10118719,"TERMINAL",0,0,"57777",,terminal_output +1214,10119760,"TERMINAL",0,0,"68888",,terminal_output +1215,10120800,"TERMINAL",0,0,"79999",,terminal_output +1216,10121846,"TERMINAL",0,0,"830404040",,terminal_output +1217,10122876,"TERMINAL",0,0,"91111",,terminal_output +1218,10123917,"TERMINAL",0,0,"402222",,terminal_output +1219,10124963,"TERMINAL",0,0,"13333",,terminal_output +1220,10125991,"TERMINAL",0,0,"24444",,terminal_output +1221,10127028,"TERMINAL",0,0,"35555",,terminal_output +1222,10128154,"TERMINAL",0,0,"46666",,terminal_output +1223,10129174,"TERMINAL",0,0,"57777",,terminal_output +1224,10130152,"TERMINAL",0,0,"69999",,terminal_output +1225,10131202,"TERMINAL",0,0,"840505050",,terminal_output +1226,10132237,"TERMINAL",0,0,"91111",,terminal_output +1227,10133271,"TERMINAL",0,0,"502222",,terminal_output +1228,10141434,"TERMINAL",0,0,"13333",,terminal_output +1229,10142767,"TERMINAL",0,0,"2444435555466665777768888799998507:007:009:0091111",,terminal_output +1230,10143693,"TERMINAL",0,0,"4:002222",,terminal_output +1231,10144739,"TERMINAL",0,0,"13333",,terminal_output +1232,10146151,"TERMINAL",0,0,"24444",,terminal_output +1233,10146996,"TERMINAL",0,0,"35555",,terminal_output +1234,10147968,"TERMINAL",0,0,"46666",,terminal_output +1235,10148989,"TERMINAL",0,0,"57777",,terminal_output +1236,10150017,"TERMINAL",0,0,"68888",,terminal_output +1237,10151036,"TERMINAL",0,0,"79999",,terminal_output +1238,10152071,"TERMINAL",0,0,"81:00101010",,terminal_output +1239,10153135,"TERMINAL",0,0,"91111",,terminal_output +1240,10154165,"TERMINAL",0,0,"103333",,terminal_output +1241,10155212,"TERMINAL",0,0,"24444",,terminal_output +1242,10156291,"TERMINAL",0,0,"35555",,terminal_output +1243,10157343,"TERMINAL",0,0,"46666",,terminal_output +1244,10158378,"TERMINAL",0,0,"57777",,terminal_output +1245,10159537,"TERMINAL",0,0,"68888",,terminal_output +1246,10160505,"TERMINAL",0,0,"79999",,terminal_output +1247,10161773,"TERMINAL",0,0,"810202020",,terminal_output +1248,10164321,"TERMINAL",0,0,"91111",,terminal_output +1249,10164874,"TERMINAL",0,0,"202222",,terminal_output +1250,10164879,"TERMINAL",0,0,"13333",,terminal_output +1251,10165828,"TERMINAL",0,0,"24444",,terminal_output +1252,10166825,"TERMINAL",0,0,"35555",,terminal_output +1253,10167773,"TERMINAL",0,0,"46666",,terminal_output +1254,10168802,"TERMINAL",0,0,"57777",,terminal_output +1255,10169844,"TERMINAL",0,0,"68888",,terminal_output +1256,10170894,"TERMINAL",0,0,"79999",,terminal_output +1257,10171939,"TERMINAL",0,0,"820303030",,terminal_output +1258,10172983,"TERMINAL",0,0,"91111",,terminal_output +1259,10174012,"TERMINAL",0,0,"302222",,terminal_output +1260,10175089,"TERMINAL",0,0,"13333",,terminal_output +1261,10176116,"TERMINAL",0,0,"24444",,terminal_output +1262,10177171,"TERMINAL",0,0,"36666",,terminal_output +1263,10178330,"TERMINAL",0,0,"57777",,terminal_output +1264,10179284,"TERMINAL",0,0,"68888",,terminal_output +1265,10180310,"TERMINAL",0,0,"79999",,terminal_output +1266,10181373,"TERMINAL",0,0,"830404040",,terminal_output +1267,10182429,"TERMINAL",0,0,"91111",,terminal_output +1268,10183544,"TERMINAL",0,0,"402222",,terminal_output +1269,10184511,"TERMINAL",0,0,"13333",,terminal_output +1270,10185553,"TERMINAL",0,0,"24444",,terminal_output +1271,10186597,"TERMINAL",0,0,"35555",,terminal_output +1272,10187668,"TERMINAL",0,0,"46666",,terminal_output +1273,10188684,"TERMINAL",0,0,"57777",,terminal_output +1274,10189737,"TERMINAL",0,0,"68888",,terminal_output +1275,10190775,"TERMINAL",0,0,"79999",,terminal_output +1276,10191825,"TERMINAL",0,0,"840505050",,terminal_output +1277,10193023,"TERMINAL",0,0,"91111",,terminal_output +1278,10194068,"TERMINAL",0,0,"502222",,terminal_output +1279,10195126,"TERMINAL",0,0,"13333",,terminal_output +1280,10196140,"TERMINAL",0,0,"24444",,terminal_output +1281,10197070,"TERMINAL",0,0,"35555",,terminal_output +1282,10198189,"TERMINAL",0,0,"46666",,terminal_output +1283,10199162,"TERMINAL",0,0,"58888",,terminal_output +1284,10200196,"TERMINAL",0,0,"79999",,terminal_output +1285,10201245,"TERMINAL",0,0,"8508:008:0010:00",,terminal_output +1286,10202344,"TERMINAL",0,0,"91111",,terminal_output +1287,10203775,"TERMINAL",0,0,"5:002222",,terminal_output +1288,10205055,"TERMINAL",0,0,"13333",,terminal_output +1289,10205506,"TERMINAL",0,0,"24444",,terminal_output +1290,10206488,"TERMINAL",0,0,"35555",,terminal_output +1291,10207620,"TERMINAL",0,0,"46666",,terminal_output +1292,10208620,"TERMINAL",0,0,"57777",,terminal_output +1293,10209648,"TERMINAL",0,0,"68888",,terminal_output +1294,10210675,"TERMINAL",0,0,"79999",,terminal_output +1295,10211725,"TERMINAL",0,0,"82:00101010",,terminal_output +1296,10212780,"TERMINAL",0,0,"91111",,terminal_output +1297,10213817,"TERMINAL",0,0,"102222",,terminal_output +1298,10214873,"TERMINAL",0,0,"13333",,terminal_output +1299,10215918,"TERMINAL",0,0,"24444",,terminal_output +1300,10216979,"TERMINAL",0,0,"35555",,terminal_output +1301,10218011,"TERMINAL",0,0,"46666",,terminal_output +1302,10219060,"TERMINAL",0,0,"57777",,terminal_output +1303,10220145,"TERMINAL",0,0,"68888",,terminal_output +1304,10221229,"TERMINAL",0,0,"710202020",,terminal_output +1305,10222234,"TERMINAL",0,0,"91111",,terminal_output +1306,10223281,"TERMINAL",0,0,"202222",,terminal_output +1307,10224330,"TERMINAL",0,0,"13333",,terminal_output +1308,10225379,"TERMINAL",0,0,"24444",,terminal_output +1309,10226435,"TERMINAL",0,0,"35555",,terminal_output +1310,10227474,"TERMINAL",0,0,"46666",,terminal_output +1311,10229700,"TERMINAL",0,0,"5777768888",,terminal_output +1312,10230619,"TERMINAL",0,0,"79999",,terminal_output +1313,10231672,"TERMINAL",0,0,"820303030",,terminal_output +1314,10232723,"TERMINAL",0,0,"91111",,terminal_output +1315,10233781,"TERMINAL",0,0,"302222",,terminal_output +1316,10234826,"TERMINAL",0,0,"13333",,terminal_output +1317,10235886,"TERMINAL",0,0,"24444",,terminal_output +1318,10236936,"TERMINAL",0,0,"35555",,terminal_output +1319,10237970,"TERMINAL",0,0,"46666",,terminal_output +1320,10239019,"TERMINAL",0,0,"57777",,terminal_output +1321,10240051,"TERMINAL",0,0,"68888",,terminal_output +1322,10241100,"TERMINAL",0,0,"79999",,terminal_output +1323,10242155,"TERMINAL",0,0,"831414141",,terminal_output +1324,10243232,"TERMINAL",0,0,"402222",,terminal_output +1325,10244275,"TERMINAL",0,0,"13333",,terminal_output +1326,10245328,"TERMINAL",0,0,"24444",,terminal_output +1327,10246376,"TERMINAL",0,0,"35555",,terminal_output +1328,10247426,"TERMINAL",0,0,"46666",,terminal_output +1329,10248452,"TERMINAL",0,0,"57777",,terminal_output +1330,10249505,"TERMINAL",0,0,"68888",,terminal_output +1331,10250554,"TERMINAL",0,0,"79999",,terminal_output +1332,10251607,"TERMINAL",0,0,"840505050",,terminal_output +1333,10252648,"TERMINAL",0,0,"91111",,terminal_output +1334,10253696,"TERMINAL",0,0,"502222",,terminal_output +1335,10254738,"TERMINAL",0,0,"13333",,terminal_output +1336,10255794,"TERMINAL",0,0,"24444",,terminal_output +1337,10256846,"TERMINAL",0,0,"35555",,terminal_output +1338,10257898,"TERMINAL",0,0,"46666",,terminal_output +1339,10258947,"TERMINAL",0,0,"53PD\t0:00(Priority)460mp4_to_n 2:4701547122820608:5703723289199 cpuonly download tum_ind3 R 2:10:57\t 1 hkn1219",,terminal_output +1340,10259992,"TERMINAL",0,0,"68888",,terminal_output +1341,10261046,"TERMINAL",0,0,"79999",,terminal_output +1342,10262087,"TERMINAL",0,0,"8509:009:001:00",,terminal_output +1343,10263134,"TERMINAL",0,0,"91111",,terminal_output +1344,10264258,"TERMINAL",0,0,"6:003333",,terminal_output +1345,10265214,"TERMINAL",0,0,"24444",,terminal_output +1346,10266277,"TERMINAL",0,0,"35555",,terminal_output +1347,10267314,"TERMINAL",0,0,"46666",,terminal_output +1348,10268479,"TERMINAL",0,0,"57777",,terminal_output +1349,10269413,"TERMINAL",0,0,"68888",,terminal_output +1350,10270496,"TERMINAL",0,0,"79999",,terminal_output +1351,10271533,"TERMINAL",0,0,"83:00101010",,terminal_output +1352,10272627,"TERMINAL",0,0,"91111",,terminal_output +1353,10273616,"TERMINAL",0,0,"102222",,terminal_output +1354,10274647,"TERMINAL",0,0,"13333",,terminal_output +1355,10275693,"TERMINAL",0,0,"24444",,terminal_output +1356,10276748,"TERMINAL",0,0,"35555",,terminal_output +1357,10277756,"TERMINAL",0,0,"46666",,terminal_output +1358,10278813,"TERMINAL",0,0,"57777",,terminal_output +1359,10279856,"TERMINAL",0,0,"68888",,terminal_output +1360,10280906,"TERMINAL",0,0,"79999",,terminal_output +1361,10281959,"TERMINAL",0,0,"810202020",,terminal_output +1362,10283003,"TERMINAL",0,0,"91111",,terminal_output +1363,10284061,"TERMINAL",0,0,"202222",,terminal_output +1364,10286378,"TERMINAL",0,0,"13333",,terminal_output +1365,10286380,"TERMINAL",0,0,"25555",,terminal_output +1366,10287368,"TERMINAL",0,0,"46666",,terminal_output +1367,10288388,"TERMINAL",0,0,"57777",,terminal_output +1368,10289366,"TERMINAL",0,0,"68888",,terminal_output +1369,10291365,"TERMINAL",0,0,"79999",,terminal_output +1370,10292366,"TERMINAL",0,0,"820303030",,terminal_output +1371,10293366,"TERMINAL",0,0,"91111",,terminal_output +1372,10294369,"TERMINAL",0,0,"302222",,terminal_output +1373,10295367,"TERMINAL",0,0,"13333",,terminal_output +1374,10296370,"TERMINAL",0,0,"24444",,terminal_output +1375,10297369,"TERMINAL",0,0,"35555",,terminal_output +1376,10298368,"TERMINAL",0,0,"46666",,terminal_output +1377,10300402,"TERMINAL",0,0,"57777",,terminal_output +1378,10301368,"TERMINAL",0,0,"68888",,terminal_output +1379,10301369,"TERMINAL",0,0,"79999",,terminal_output +1380,10302368,"TERMINAL",0,0,"830404040",,terminal_output +1381,10303368,"TERMINAL",0,0,"91111",,terminal_output +1382,10304368,"TERMINAL",0,0,"402222",,terminal_output +1383,10306369,"TERMINAL",0,0,"13333",,terminal_output +1384,10306373,"TERMINAL",0,0,"24444",,terminal_output +1385,10307367,"TERMINAL",0,0,"36666",,terminal_output +1386,10309367,"TERMINAL",0,0,"57777",,terminal_output +1387,10309369,"TERMINAL",0,0,"68888",,terminal_output +1388,10310300,"TERMINAL",0,0,"79999",,terminal_output +1389,10311433,"TERMINAL",0,0,"840505050",,terminal_output +1390,10312397,"TERMINAL",0,0,"91111",,terminal_output +1391,10313482,"TERMINAL",0,0,"502222",,terminal_output +1392,10314486,"TERMINAL",0,0,"13333",,terminal_output +1393,10315558,"TERMINAL",0,0,"24444",,terminal_output +1394,10316607,"TERMINAL",0,0,"35555",,terminal_output +1395,10317646,"TERMINAL",0,0,"46666",,terminal_output +1396,10318714,"TERMINAL",0,0,"57777",,terminal_output +1397,10319749,"TERMINAL",0,0,"68888",,terminal_output +1398,10320774,"TERMINAL",0,0,"79999",,terminal_output +1399,10321826,"TERMINAL",0,0,"85010:0010:002:00",,terminal_output +1400,10322914,"TERMINAL",0,0,"91111",,terminal_output +1401,10323919,"TERMINAL",0,0,"7:002222",,terminal_output +1402,10324964,"TERMINAL",0,0,"13333",,terminal_output +1403,10326020,"TERMINAL",0,0,"24444",,terminal_output +1404,10327062,"TERMINAL",0,0,"35555",,terminal_output +1405,10328111,"TERMINAL",0,0,"46666",,terminal_output +1406,10329133,"TERMINAL",0,0,"58888",,terminal_output +1407,10330175,"TERMINAL",0,0,"79999",,terminal_output +1408,10331227,"TERMINAL",0,0,"84:00101010",,terminal_output +1409,10332287,"TERMINAL",0,0,"9 R1hkn02021111",,terminal_output +1410,10333336,"TERMINAL",0,0,"1022222",,terminal_output +1411,10334427,"TERMINAL",0,0,"133333",,terminal_output +1412,10335439,"TERMINAL",0,0,"244444",,terminal_output +1413,10336494,"TERMINAL",0,0,"355555",,terminal_output +1414,10337532,"TERMINAL",0,0,"466666",,terminal_output +1415,10338599,"TERMINAL",0,0,"577777",,terminal_output +1416,10339624,"TERMINAL",0,0,"688888",,terminal_output +1417,10340732,"TERMINAL",0,0,"799999",,terminal_output +1418,10341855,"TERMINAL",0,0,"81010202020",,terminal_output +1419,10342770,"TERMINAL",0,0,"911111",,terminal_output +1420,10343807,"TERMINAL",0,0,"2022222",,terminal_output +1421,10346367,"TERMINAL",0,0,"133333",,terminal_output +1422,10346368,"TERMINAL",0,0,"244444",,terminal_output +1423,10347365,"TERMINAL",0,0,"355555",,terminal_output +1424,10348365,"TERMINAL",0,0,"466666",,terminal_output +1425,10349381,"TERMINAL",0,0,"577777",,terminal_output +1426,10350991,"TERMINAL",0,0,"688888",,terminal_output +1427,10351129,"TERMINAL",0,0,"799999",,terminal_output +1428,10352175,"TERMINAL",0,0,"82121313131",,terminal_output +1429,10353231,"TERMINAL",0,0,"3022222",,terminal_output +1430,10354278,"TERMINAL",0,0,"133333",,terminal_output +1431,10355316,"TERMINAL",0,0,"244444",,terminal_output +1432,10356369,"TERMINAL",0,0,"355555",,terminal_output +1433,10357456,"TERMINAL",0,0,"466666",,terminal_output +1434,10358476,"TERMINAL",0,0,"577777",,terminal_output +1435,10359511,"TERMINAL",0,0,"688888",,terminal_output +1436,10360562,"TERMINAL",0,0,"799999",,terminal_output +1437,10361621,"TERMINAL",0,0,"83030404040",,terminal_output +1438,10362694,"TERMINAL",0,0,"911111",,terminal_output +1439,10363717,"TERMINAL",0,0,"4022222",,terminal_output +1440,10364768,"TERMINAL",0,0,"133333",,terminal_output +1441,10365832,"TERMINAL",0,0,"244444",,terminal_output +1442,10366870,"TERMINAL",0,0,"355555",,terminal_output +1443,10367917,"TERMINAL",0,0,"466666",,terminal_output +1444,10368962,"TERMINAL",0,0,"577777",,terminal_output +1445,10370012,"TERMINAL",0,0,"688888",,terminal_output +1446,10371062,"TERMINAL",0,0,"799999",,terminal_output +1447,10372111,"TERMINAL",0,0,"84040505050",,terminal_output +1448,10373190,"TERMINAL",0,0,"922222",,terminal_output +1449,10374358,"TERMINAL",0,0,"5133333",,terminal_output +1450,10375358,"TERMINAL",0,0,"244444",,terminal_output +1451,10376305,"TERMINAL",0,0,"355555",,terminal_output +1452,10377356,"TERMINAL",0,0,"466666",,terminal_output diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-9ff54a43-2a59-41a8-96bc-f7e46d5244651750887279734-2025_06_25-23.36.32.560/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-9ff54a43-2a59-41a8-96bc-f7e46d5244651750887279734-2025_06_25-23.36.32.560/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..83fd3d84352c38960933ab665f9e7b0392133d82 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-9ff54a43-2a59-41a8-96bc-f7e46d5244651750887279734-2025_06_25-23.36.32.560/source.csv @@ -0,0 +1,3 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,18,"scripts/file_duplicate_checker.py",0,0,"import os\nfrom collections import defaultdict\nfrom tqdm import tqdm\n\ndef find_duplicate_filenames(root_dir):\n filenames = defaultdict(list)\n file_count = 0\n\n # Use tqdm with manual update and no percentage/ETA bar\n pbar = tqdm(desc=""Files scanned"", unit=""file"", dynamic_ncols=True, bar_format=""{desc}: {n_fmt}"")\n\n # Walk the directory recursively\n for dirpath, _, files in os.walk(root_dir):\n for file in files:\n full_path = os.path.join(dirpath, file)\n if os.path.isfile(full_path):\n filenames[file].append(full_path)\n file_count += 1\n pbar.update(1)\n\n pbar.close()\n\n # Print duplicates\n duplicates = {name: paths for name, paths in filenames.items() if len(paths) > 1}\n if duplicates:\n print(""\nDuplicate filenames found:\n"")\n for name, paths in duplicates.items():\n print(f""Filename: {name}"")\n for path in paths:\n print(f"" - {path}"")\n print()\n else:\n print(""\nNo duplicate filenames found."")\n\nif __name__ == ""__main__"":\n import sys\n if len(sys.argv) < 2:\n print(""Usage: python find_duplicates.py "")\n else:\n find_duplicate_filenames(sys.argv[1])\n\n",python,tab +2,521,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"11:36:32 PM [info] Activating crowd-code\n11:36:32 PM [info] Welcome back tum_ind3695. Your user-id is '507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20'. Happy coding!\n11:36:32 PM [info] Recording started\n",Log,tab diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-aa8be5f9-c447-4faf-b9c6-7142909b3c591750719092446-2025_06_24-00.51.37.15/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-aa8be5f9-c447-4faf-b9c6-7142909b3c591750719092446-2025_06_24-00.51.37.15/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb6cff198890469a120ecd0f6e34d8f8632bc876 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-aa8be5f9-c447-4faf-b9c6-7142909b3c591750719092446-2025_06_24-00.51.37.15/source.csv @@ -0,0 +1,6 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,12,"todos.md",0,0,"# Todo's\n\n## Misc:\n- [ ] Steuererklärung \n- [ ] jan wlan geld internet und paket\n- [ ] thanh geld 22 club\n- [ ] Arzt termine\n - [ ] normal\n - [ ] zahn\n- [ ] Proteinshake\n- [ ] Protein shaker\n- [ ] Zahnbürste\n- [ ] laptop?? ask stefan what to do with it\n\n\n## 23.06 Monday\n\n- [x] PR step duration\n- [x] generate samples from dyn\n- [x] single batch training overfit\n - [x] lam\n - [x] tokenizer\n - [ ] dynamics model\n\n- [ ] lr finding \n- [ ] pr: update sampling method for resolution \n\n- [ ] retrain lam until convergence?\n- [ ] see if data parallel is better than single gpu?\n\n- [ ] issue: make sampling faster\n- [ ] blog post crowd source\n\n- [ ] Preprocess entire minecraft dataset\n- [ ] Dont let tf see gpus\n- [ ] Look into dataloader\n\nQuestions:\n- optimal lr\n- optimal batch size\n- how to scale lr with batch size\n- how to test/evaluate lam performance?\n - how good are the actions for the lam\n - how many actions do we have?\n - how many actions do we need\n\n\n## 22.06 Sunday\nNotes:\n- How should tokenizer training behave?\n- How should lam training behave?\n- How should dynamics model training behave?\n- \n\nTODOS:\n- [x] look at prs jafar\n- [x] extension version update\n- [x] make big run directory\n- [x] look at the run of lam\n- [ ] train the dynamics model on the new models\n\n- [ ] start a coin run baseline\n - [ ] tokenizer\n - [ ] lam \n - [ ] dynamics model\n\n- [ ] move tfrecord to huggingface\n\n- [x] tierlist for thanh\n- [ ] move tfrecord to helmholtz\n- [ ] helmholtz setup\n- [ ] fix dataloader seeding\n\n- [ ] FFM homework\n- [ ] Tennis\n- [ ] gym\n\n\n\n## 20.06 Friday\n- [x] wäsche\n- [x] flaschen wegbringen\n- [x] zhs \n- [x] cursor setup\n- [x] run overfiting runs on lam\n\n## 19.06 Thursday\n- [x] extension ace palenight\n\n\n- [x] run overfiting runs on dynamics model (got aborted bc of branch switching)\n - [x] test multi gpu overfit on full tfrecord\n\n\n## 18.06 Wednesday\nJobs:\n- [x] run overfiting runs for tokenizer \n - [x] test multi gpu overfit on single batch\n - [x] test multi gpu overfit on single sample\n - [x] test multi gpu overfit on 10 tfrecord\n - [x] test multi gpu overfit on full tfrecord\n\n- [x] create tf record batch (1,4,8,16) sample from dataloader saven \n\n\n## 17.06 Tuesday\n- [x] cleanup Home\n- [x] cleanup ws shared\n\n## 13.06 Friday\n- [ ] Start job for single batch training (overfit dataset)\n- [ ] Make slides for presentation \n\n- [ ] helmholtz setup\n- [ ] move one tf record to helmholts\n\n## 12.06 Thursday\n- [x] Fix oom issue\n - Dataloader was caching\n- [x] find out biggest batch size for now\n- [x] start a run on one node with coinrun for 12h sbatch\n- [x] start a run on one node with minecraft \n- [x] cleanup ws\n- [x] cleanup wandb\n\n\n\nQuestions Dataloader:\n- [ ] What is one 'element' in the dataloader (Is it an episode or mutlitple episodes? Is it clips from an episode?)\n- [ ] What is the number of elements in the dataloader?\n- [ ] Why is shuffling so slow? Why does it have to shuffle the data and not the indices?\n- [ ] Does the dataloader currently shuffle per episode or per clip?\n- [ ] How do we get the best shuffle? (Optimally uniformly over all clips?)\n- [ ] Do we have to use chaching? Does it improve performance? If yes how much? Is it worth it?\n\nQuestions Training:\n- [ ] What is the best batch size? (What is the best way to get the optimal batch size? Just running it?? Can we calculate/estimate it?)\n- [ ] Can we just use the Genie hyp params or does our data paralelism change the optimal params? (Is the setup good enough?)\n\n\n## 11.06 Wednesday\n- [ ] Start coinrun training\n- [ ] start minecraft training\n\n## 10.06 Tuesday\n- [ ] First run with new pipeline\n- [ ] Zahnarzt\n- [ ] Flaschen wegbringen\n- [ ] \n- [ ] Blutbild und Schulter termin\n\n## 09.06 Monday\n- [x] Zahnarzt termin machen \n- [ ] Presenation Vorbereitung\n\nOffice:\n - [x] jan ikea\n - [x] ben geld sae trip\n - [x] namitha geld\n\n\nHome:\n - [ ] pa \n - [ ] jan wlan \n - [ ] Barmer geld impfung\n - [ ] physio geld\n\n\n## 08.06 Sunday\n- [ ] zimmer aufräumen\n - [ ] klamotten sofa\n - [ ] müll\n- [ ] küche \n - [ ] boden\n - [ ] müll\n- [ ] \n\n- [ ] video pipeline\n - [ ] clip the npy videos in 16 sec chunks with the designated ranges\n - [ ] 16sec video to npy?\n\n- [ ] readup data pipeline\n - [ ] read vpt \n - [ ] mineworld \n - [ ] genieN\n - [ ] 5k openai\n\n## 07.06 Saturday\n- [x] einkaufen \n - [x] soap \n - [x] öl \n\n## 06.06 Friday\n- [x] log idling gpus every 30mins\n- [x] make website for it on lxhalle\n\n- [ ] video pipeline \n - [x] split into 16 sec videos for datalabeling (training labeler)\n - [ ] verify results\n - [x] some videos are not 16sec\n \n- [x] move videos to new shared workspace\n\nNotes:\n- ffmpeg is bad at keeping length of videos if not re-encoding\n- takes the next best key frame if not re-encoding \n- encoding is super slow (20min video in 40 min instead of 11sec)\n\n## 05.06 Thursday\n- [x] write email to stefan for cluster group \n - [x] mihir \n - [x] me \n- [x] video pipeline\n - [x] convert mp4 to npy\n - [x] verify results\n\n\n## 03.06 Tuesday\n- [x] kit report \n- [x] karte sap\n\n\n## 30.05 Friday\n- [x] Empty bottles\n- [x] Groceries\n\n- [ ] random dataset for trainign\n- [ ] Macbook?\n- [ ] SAP card\n- [ ] Access to cluster\n- [ ] report for KIT\n\n\n## 28.05 Wednesday\n- [x] Data paralelism \n- [x] Sampling with mihir\n\n## 27.05 Tuesday\n- [ ] agents on envs\n- [ ] video dataset\n- [ ] Crafter/Cratax\n\n- [ ] other envs\n - [ ] procgen\n - [ ] gymretro\n - [ ] minecraft\n\n\n\n## 26.05 Monday\n- [x] data sharing\n- [x] 16 procgen envs\n - [x] 10mio frames pro env\n\nTraining times:\n1 node 1 env 10 tage \n1.5b param 5b frames 50 atari env 72k gpuh \n64gpus need 12 days\n\n\n\n## 24.05 Saturday\n- [x] email stefan compute access\n- [ ] data gen for the old envs\n\n- [ ] images from gymnax\n- [ ] craftax images\n\n- [ ] 1 page report for KIT\n- [ ] make BA presentation plan\n\n## 23.05 Friday\n- [x] Kit setup\n\n\n\n## 22.05 Thursday\n- [x] BBH\n - [x] Lemon grass\n - [x] koriander\n - [x] topf -> tam\n - [x] gym?\n- [x] Pr for data generation\n- [x] setup and run gymnax\n\n\n## 21.05 Wednesday\n\n- [ ] datageneration\n - [x] what do other ppl use? (jafar, openai, craftax)\n - [x] what is the format (compatibility)\n - [x] find good environments (easy ones for a good baseline)\n - [x] implement data generation script (so it jafar compatible)\n - [x] paramteer for env agents in procgen\n- [x] job for 2 simple environments\n\n*Notes*:\n- jafar uses procgen: https://github.com/openai/procgen\n - can easily generate 16 different environments\n- gym, gym3, ALE (atari)\n- backwards compatibility was broken by gym in version 0.26.*\n - have to downgrade to 0.25.* for gym3 to work with gym\n- todo: might have to save the seed into the meta data??\n\n*Sources*:\nGym: https://gymnasium.farama.org/\nGymnax: https://github.com/RobertTLange/gymnax#implemented-accelerated-environments-%EF%B8%8F\nCraftax: https://github.com/MichaelTMatthews/Craftax\n\n\n## 20.05 Tuesday\n- [ ] write email for the kit cluster access\n- [ ] local hpc access\n- [ ] florian bauer macbook \n\n- [ ] look through code\n - [ ] how does the training work?\n - [ ] how is it different\n\n - [ ] Geld for SEA trip\n- [ ] Barmer\n\n\n## 19.05 Monday \n- [x] read through papers for DLM \n- [x] BA upload\n - [x] notes from below\n - [x] signation\n\nBA notes:\ntraining-time\ninference-time\nfine-tune\nfinetune\nllm \npython\nin context\nfigure/FIG references\ntransformation appendix??\n\n\n## 18.05 Sunday \n- [x] Email Meinel Lärmstuff\n- [x] Verivox email schreiben\n- [x] BA grammarly \n\n\n\n## 16.05 Friday\n- [x] request Helmholtz HPC access\n- [x] Horeka access\n- [x] Franz fragen \n - [x] setup reward distribution\n - [ ] setup genie\n- [x] bashscripts\n- [x] Befragung TUM RDI\n\n## BA\n- [x] Acknowledgements\n- [ ] Read requirements\n - [x] Tum logos on the front page?\n- [ ] Figures\n - [x] architecture\n - [x] inference strat\n - [x] computation to performance\n- [ ] Appendix?\n - [x] Comprehensive list of tranformations \n - [ ] exmaple prompt\n- [ ] Fig 4.1:\n - Say that we remove the test task and use one of the other tasks as test task\n\n- [x] Figure layout\n- [x] Conclusion put the results in there \n\n\n## Week in Hotze\nMisc:\n- [ ] Steuererklärung \n- [ ] jan wlan geld internet und paket\n- [ ] thanh geld 22 club\n- [ ] Britts rezension \n- [ ] Rezension ha giang\n- [ ] Befragung TUM RDI\n- [ ] Arzt termine\n - [ ] normal\n - [ ] zahn\n- [ ] Email Meinel Lärmstuff\n\n## 10.05.25 Saturday\n- [x] BA Figures\n\n\n## 05.05.25 Monday\n- [x] theo paypalen 86 Euro Amazon\n- [x] Email Isabelle Helmholz\n\n\n## DONE\n- [x] Dokument Helmholz\n- [x] stuff bestellen\n - [x] topper\n - [x] picknickdecke\n - [x] reis\n\n- [x] Tasse für PA \n\n\n## 26.03.25 Tuesday\n- [ ] Kreissparkasse\n- [x] Singapore arrival card\n- [ ] Barmer\n - [ ] impfung\n- [ ] Verivox\n- [ ] \n\n- [x] Packen\n- [x] Meds\n- [x] Müll\n- [x] Toilette\n- [x] Strom ausstecken\n- [x] Fenster schließen\n\n\n\n\n\n\n## 14.03.25 Friday\n\n- [x] Masterbwerbung random\n- [x] emails \n\n- [ ] methods\n\n\n## 12.03.25 Wednesday\nSidequests:\n- [ ] Perso\n- [ ] Führerschein\n- [ ] Barmer karte\n- [ ] hostel singapur\n- [ ] arbeiten\n- [ ] mac abgeben\n\nBA:\n- [ ] background section\n- [ ] methods section\n- [ ] evaluation pipeline\n - [ ] get the submission files\n - [ ] evaluate the results (easy, med, hard)\n - [ ] plot\n- [ ] ds/ep scaling for the tasks that where not solved\n- [ ]\n\n## 11.03.25 Tuesday\nHiwi:\n- [x] Application HIWI\n- [x] master bewerbung\n\nBA:\n- [x] anmeldung BA\n\n- [x] Sparkasse Rückzahlung\n\nSide Quests:\n- [x] paket zurückgeben\n- [x] telekom/verivox thingy\n- [x] master bewerbung\n- [x] jacke flicken\n- [x] arbeiten\n\n## 10.03.25 Monday\n\n## 08.03.25 Saturday\n\n\n## 05.03.25 Wednesday\n\n\n\n\n## 04.03.25 Tuesday\nCleanup:\n- [ ] Wäsche\n- [x] Zimmer random\n- [x] Küche random\n- [x] Staubsaugen\n- [ ] Fenster putzen\n- [ ] Badezimmer putzen\n\nGeld:\n- [ ] Impfung\n- [ ] Hose\n- [ ] Verivox \n\nWork:\n- [ ] Basti\n- [ ] Urlaubausbezahlen?\n- [ ] \n\nBA:\n- [ ] fix inference????\n- [ ] fix transformation???\n\n\n## 03.03.23\n- [x] run predictions for epoch scaling\n- [x] run predictions for epoch scaling\n\n## 02.03.23 Sunday\n- [ ] look for errors in adapter creation\n - [ ] some transformation error\n\n- [x] run the predictions\n - [x] vllm setup\n - [x] run predictions for epoch scaling\n - [x] run predictions for epoch scaling\n - [x] run predictions for epoch scaling\n\n- [x] evaluate epoch scaling batch 1\n\n## 01.03.25 Saturday\n- [x] Run ttt for the experiments\n - [x] scaling epoch batch 2\n - [x] scaling data \n - [x] scaling data + base llama\n - [x] scaling epoch batch 1\n- [x] run prediction for the experiments\n - [x] all the scripts setup the scripts\n- [x] notes background section\n\n\n## 27.02.25 Thursday:\nJuwels Cluster setup:\n- [x] \n\n\nHoreka Cluster setup:\n- [x] get the repo up an running \n - [x] vpn\n - [x] clone (repo clean up)\n - [x] environment\n - [x] scp the adapters?\n - [x] run the creation of the adapters from scratch\n - [x] run predict\n\n\nArzt: \n- [x] Impfung\n\n\n## 24.02.25 Monday\n- [x] start adapter generation \n- [x] debugging the max seq length problem\n- [x] move adapters to scratch?\n\n- [ ] ai fasttrack\n- [ ] mcp\n\n\n\n## 18.02.25 Tuesday\n- [] Laundry (Towels)\n- [x] Groceries\n\n- [ ] Slides holen \n - [ ] eist \n - [ ] gad\n - [ ] \n- [ ] Cleanup room (30min)\n\n\n## 17.02.25 Monday\nBA:\n- [x] start prediction job\n\nAP:\n- [ ] ap test\n\n## 16.02.25 Sunday\n- [x] analyze the training jsons\n - [x] min/max\n - [x] debug\n\n- [x] run ttt with 2k samples\n - [x] which training jsons\n - [x] where are the ttt adapters save\n\n- [x] test the training/predict piepline\n - [x] run predict with 4 processes (one per gpu)\n - [x] evaluation pipeline?\n - [x] only time for creating the all adapters\n - [x] how to measure inference time?\n - [x] how to measure training time?\n\n- [x] Fix transformations \n - [x] debug the one that are too big?\n - [x] make it work until 1000\n - [x] make the transformations more random\n - [x] look for other transformations\n - [x] plot all the ones under 500?\n\n- [x] buy pants\n\n## 12.02.25 Wednesday\n- [ ] \n\n\n## 11.02.25 Dienstag\n- [x] Stefan Bauer schreiben für meeting\n\n- [x] Plan für die nächsten 6 Woche\n - [x] Aptitude Test\n - [ ] Bachelor Arbeit\n - [ ] Arbeit\n\nI’ll be unavailable for an hour because of a doctor's appointment from 10:30 to 11:30 later\n\nVietnam\n- [x] mama anrufen wegen vietnam\n- [x] Impfugen vietnam egerndorfer\n- [x] singapur flüge \n- [x] yu ling fragen wegen referal\n\n## 10.02.25 Monday\n- [x] Table of contents für Bachelorarbeit\n- [x] Repo + Template für Bachelorarbeit\n- [x] Plan für die nächsten 6 Woche\n - [x] Aptitude Test\n - [ ] Bachelor Arbeit\n - [ ] Arbeit\n\n## 09.02.25 Sonntag\n- [x] PA\n- [x] Wäsche \n- [x] Putzen\n - [x] Fenster Küche\n - [x] Badezimmer\n - [x] Zimmer\n- [x] Plan für vietnam\n - [x] Mia\n - [x] Ben\n- [x] Machine Learning HA\n\n## 07.02.25 Friday\n- [x] Paper submisssion\n\n## 06.02.25 Thursday\n- [x] sparkasse rückzahlung email schreibn\n- [x] zusage test\n- [x] barmer geld \n - [x] sepa lastschrift\n\n### Estimating difficulty\nFor var, ent and std\n- [x] linear regression for the plot (with L1 and L2)\n- [x] ground truth line/regression\n\n- [x] loop through sample length and create plots\n- [x] create one combined plot of all the ablations\n- [x] later do the prm as well \n- [ ] buckets at the end with accuracy?\n\n\n- N: number of samples\n- exp for samples (2^n)\n- linear for seq_len (stepsize 2)\n- for var entr std\n- put all lin regressions in one plot\n\n### Metrics\n- L1 (ground truth)\n- L2 (ground truth)\n\nWhen done \n- Buckets + accuracy\n- per class accuracy\n\n## 04.02.25 Tuesday\n- [x] Deep eval for search\n - [x] generate golden\n - [x] convert .md to .txt\n - [x] run some tests\n\n- [x] geschenk für Joe\n- [x] nach muc\n- [x] arbeiten\n- [x] wäsche\n\n## 03.02.25 Monday\n- [x] Evaluate the results\n - [x] reinstall vllm\n- [x] aptitude test questioning\n\n\n## 02.02.25 Sunday\n- [x] Zweitsteuer \n- [x] ICE-ticket\n- [x] tum geld semesterbeitrag\n- [x] zulip eignungstest\n\n## 31.01.25 Friday\n- [x] might have to adapt the *.bin_{adapter_num} to *_{adapter_num}.bin\n\n## 30.01.25 Thursday\n- [x] fix error in predict.py\n- [x] create adapter per iteration\n - [x] every 10 iterations till 100\n - [x] every 40 iterations till 500\n - [x] every 100 iterations till 1000\n - [x] every 200 iterations till 2000\n\n- [x] setup per iteration checkpointing\n- [x] write down ideas\n\n## 29.01.25 Wednesday\n\n- [x] started jobs for one epoch\n\n\n## 28.01.25 Tuesday\n- [x] put the models stats in the output.json\n- [x] run predict on 2000k 1 epoch and 2000k 2 epoch\n\n\nHypothesis: \n- [ ] harder problem need more samples\n- [ ] peaks for the problems are at different points\n- [ ] add the peaks together\n- [ ] how to predict these peaks\n\n- how to estimate the peak beforehand?\n-> stefan bauer \n\n\n- [ ] epoch 1 \n- [ ] check pointed while traingin\n- [ ] how does test time traing affect the performance?\n\n- [ ] how does it affect \n - [ ] othter test time scaling\n - [ ] HER\n - [ ] sampling size\n - [ ] test time search\n - [ ] get the logic\n - [ ] how could longer ttt affect the performance\n - [ ] test time search methods\n\n- [ ] easy is solving other tasks\n- [ ] how good is grouping?\n- [ ] costs\n\n\n- [ ] estimate the difficulty differently?\n- [ ] how does this difficulty scale \n\n\nbefore doing anything:\n- questions\n- what do I have to do\n- what do I have to investigate\n- \n\n- [ ] von den einzelen tasks wie verhält sich das?\n- [ ]\n\n\n- [ ] make a road map of all the things I need to do\n- [ ] change the epochs and test for one \n - [ ] then run the same thing but with 2000 samples and checkpoint\n- [ ] run with deepseek distill\n- [ ] run with deepseek distill on transduction tasks\n\n- [ ] deploy r1\n\n\n- [ ] for the 30 \n- [ ] model chart with total solved tasks\n- [ ] change the lora adapters numbers\n- [ ] change the amount of transformations\n- [ ] change the type of transformations\n- [ ] what is the inference startegy rn?\n- [ ] \n\n\n- [ ] other methods of test time scaling?\n - [ ] cot on reasoning traces\n - [ ] more sampling\n - [ ] look for more\n\n- [ ] fix the gpu errors on some tasks\n- [ ] see if more transformations are needed\n- [ ] distilled models on hard tasks?\n- [ ] might need some reasoning cues....\n- [ ] mehr samplen for inference\n\n\n## 27.01.25 Monday\n- [x] saving results with wandb (redundant)\n - llm typically trained on 1 epoch\n - validation would be next token prediction\n - arc uses accuracy as only metric (free verification and thats the task)\n- [x] move adapters to one folder\n- [x] check how the training is going when changeing the learning set\n- [x] create a dataset of only the hard tasks\n- [x] run training on the hard tasks\n\n- [x] viusalize hard/easy tasks\n - [x] find out hard task (solved by <40% of the modes)\n- [ ] see if the model transformation is working\n - get the train data size into the task.csv as well\n## 26.01.25 Sunday\n- [x] find out the duplicates???\n\n## 25.01.25 Saturday\n- [x] multi job on one node \n- [x] find out which tasks are not solved\n - [x] list of solved/unsolved tasks\n\n## 23.01.25 Thursday\n- [x] chrissie schreiben für getränke\n- [x] und list für ne gruppe machen \n- [x] Franzi schreiben\n- [x] get multigpu training to run (hell nah they rewrote torchtune)\n- [x] get dataset for FT\n- [x] Cluster setup mihir\n- [x] get BARC setup \n - [x] barc ft\n - [x] barc adapters\n- [x] Mihir 5e\n- [x] Sushi geld\n\n## 21.01.25 Tuesday\n- [x] work\n- [x] food with ching chongs\n- [x] get the stats\n- [x] start all finetuning jobs\n\n\n## 20.01.25 Monday\n- [ ] Start some lora finetuning\n- [ ] write stefan bauer\n- [ ] \n\n## 19.01.25 Sunday\n- [ ] find out which one got solved\n - [ ] from baseline 250\n - [ ] from ours\n - [ ] get list of adapters\n - [ ] get list of solved tasks\n\n- [ ] create lora adapters for all sizes\n - [x] verify number of training samples\n - [x] verify number of successfully created adapters\n - [ ] start jobs for create adpaters for 10, 50, 100, 200, 500, 1000 tasks\n\n- [ ] run prediction on all adapters\n - [ ] 10 \n - [ ] verify stats: solved/not solved\n\n\n- [ ] fix the spiky behavior\n- [ ] clean up repo\n\n- [ ] spikey behavior\n\n- [ ] Wlan rechnung -> jan\n- [ ] train 1b model on 250 tasks each, if possible\n - [ ] get the adapters\n - [ ] run the predict\n - [ ] see which one are not solve\n - [ ] run a loop on [10, 50, 100, 200, 500, 1000]\n- [ ] putzen\n- [ ] ML hausuaufgaben\n\n\n## 18.01.25 Saturday \n- [x] einkauf rechnung\n- [x] rechnungen circula\n- [x] email lmu\n- [x] stefan bauer email für recommendation letter for datathon\n- [x] email osapiens\n- [ ] bewerbungen\n - [ ] aws\n - [ ] \n\n\n## 17.01.25 Friday\n- [x] Gym Beine\n- [x] Email draften for mehul\n- [x] linkedin stuff\n- [x] ramakant stuff\n- [x] email for tech support \n\n## 16.01.25 Thursday\n- [x] salloc 4h \n- [x] are we training on json?\n [ ] \n\n## 15.01.25 Wednesday\n- [x] arbeiten\n- [x] raum meetup\n- [ ] \n\n## 14.01.25 Tuesday\n- [x] Erasmus bewerbung\n- [x] Arbeiten\n- [x] Email stefan bauer (cluster access, helping with writing, test runs, i have 60000h no 6000h)\n- [x] Email eikyun\n\n\nHi Stefan, \n\nwäre es möglich Mihir noch Cluster access zu geben? Das würde uns rein vom setup und zusammen arbeiten mega viel Zeit ersparen. \nAußerdem ist mir aufgefallen, dass es sich um 60.000 und nicht um 6.000 cpu stunden handelt. Ich habe noch ca 58.000h übrig. Das sollte erstmal ausreichen denke ich.\nIch würde mich melden falls ich mehr brauche:)\n\nLG Alfred\n\nKurzes Update:\nIch habe jetzt über das Wochende ein paar inference Tasks mit den gegebenen Lora Adaptern laufen lassen. Gerade schreibe ich die Repo um für multi-gpu finetuning damit wir unsere eigenen Adaptere trainieren können. \nAm Freitag haben wir noch ein kurzes Meeting mit Mehul Daminan, für den adaptive compute part (https://arxiv.org/abs/2410.04707, er hat auch am TTT Paper mitgearbeitet). \n\nShort update:\nI was ran some inference tasks with the given Lora Adapters. I am currently rewriting the repo to support multi-gpu finetuning so we can train our own adapters.\nOn Friday we had a short meeting with Mehul Daminan, for the adaptive compute part (https://arxiv.org/abs/2410.04707, he also contributed to the TTT paper).\n\n\n## 13.01.25 Monday\n- [ ] how to generate 5-1000 new tasks?\n- [ ] how transformations work?\n- [ ] Ranking for erasmus\n\n\n## 11.01.25 Saturday\n- [x] Machine learning HA hochladen\n- [x] ttt repo run\n\n- [x] ask stefan for cluster access (mihir and franz)\n- [x] put avocadoaling on iphone\n\n\n- [ ] read paper\n - [ ] other ttt\n - [ ] self improvement\n\n- [x] Text stefan bauer\n - relative confident in idee, but might need supervision and tips : biweekly, help with writing, experiments, etc.\n\n- [x] write core hypothesis and experiments\n- [x] filtern for notes\n\n\n## 10.01.25 Friday\n\n- [x] get TTT to work\n\n- [x] Machine learning hausaufgabe\n\n- [x] read paper\n - [x] stefan bauer\n - [x] ttt arc\n\n- [x] ergebnisse vom alten projekt\n- [x] Stefan Bauer meeting\n - [x] eventuell hiwi\n - [x] idee schicken\n - [x] paper schicken\n - [x] is it ok to be two ppl for the project?\n - [x] hat er plan\n - [x] ob er jmd kennt der plan hat?\n - [x] iclr workshop\n - [x] ob er leute kennt die ahnung hat \n - [x] already texted the mit dudes\n - [x] scaling is ass with arc approaches\n- [x] get access to slack again\n- [x] reward hacking?\n\n## 09.01.25 Thursday\n- [x] write fabian \n- [x] handwerker\n- [x] ramakant\n- [x] presentation of semantic search\n- [x] telekom magenta eins\n- [x] barmer gek stuff\n- [x] clothes for washing tmrw\n- [x] read paper: how hard to think\n- [x] jonas essen \n\n## 08.01.25 Wednesday\n- [x] project idea machen zum doc einladen\n- [x] nachricht an stefan schreiben \n- [x] TTT repo installation setup \n- [x] arbeiten\n- [x] project idea first draft\n\n## 07.01.25 Tuesday\n- [x] merging done\n- [x] Gym\n- [x] Fenstersanierung\n\n## 06.01.25 Monday\n- [x] Gym\n\n- [x] caching and get some results\n\n- [ ] clean up room \n - [x] couch \n - [x] table\n - [x] floor\n - [x] kitchenstuff\n - [x] vacuum floor\n- [x] clean up kitchen\n - [x] dishes \n - [x] table\n - [x] vacuum floor\n- [x] clean up bathroom\n - [x] vacuum floor\n\n- [x] Complete test run with deep - not possible took too long\n- [x] medium - """"""\n- [x] for the teststats\n- [ ] add test time training in there for the tasks that were not solved\n\n- [ ] why 10 min between runs?\n- [ ] some tasks are way easier than others\n- [ ] setup for running background processes on the compute node\n- [ ] write a visualization for the results\n - [ ] intermediategrid representation?\n - [ ] store solutions/reasoning?\n - [ ] jupyter notebook for visualization\n- [ ] how are the solutions stored?\n- [ ] make one full test run and compare it to the og setup with claude\n - [ ] get the times for one run\n - [ ] get the time for the whole dataset\n - [ ] log it somewhere?\n - [ ] get the numbers for claude setup\n - [ ] get the numbers for qwen70b\n- [ ] play around with setup \n - [ ] differne models\n - [ ] depth\n - [ ] deep\n - [ ] medium\n - [ ] shallow\n - [ ] representation\n - [ ] look at the solved/unsolved ratio and tasks\n - [ ] any insights?\n- [ ] test out with smaller models\n - [ ] lamma7b\n - [ ] qwencoder 32b\n - [ ] ...\n - [ ] might be able to run them in parralle on one node\n - [ ] test out with finetuned models\n- [ ] finetune some model on it?\n- [ ] think about other approaches \n - [ ] natural language approach?\n - [ ] use the finetuned model of the winners\n - [ ] other generation schemes\n- [ ] get claude bedrock running\n- [ ] clean up\n\n## 05.01.25 Sunday\n- [x] gym\n- [x] send jan his datev letter\n- [x] return adidas stuff\n\n- [x] list for mom\n - [x] keyboard \n - [x] tshirt\n\n## 04.01.2025\n- [x] write update for stefan \n\n## 03.01.25 Friday\n\nMaiborn:\n- [x] get the circular app\n\nBachelor:\n- [ ] implement bedrock in the pipeline\n- [ ] one test run with claude\n- [ ] debug error??\n- [ ] figure out: intermediate results / tmp files\n - [ ] saving the python scripts somewhere not /tmp/...\n - [ ] manual testing of runnning python script\n - [ ] see what the prompts are getting from the representation\n\nBewerbung:\n- [ ] erasmus\n - [ ] bewerbung rausschicken\n- [ ] arbeit @aws @google @nvidia @other_big_tech @lab?\n\n\n## 02.01.25 Thursday\nMaiborn:\n- [x] Times\n- [x] Mobility Budget entry\n\nBachelor:\n- [x] setup aws account\n- [x] get bedrock running\n\nMisc: \n- [x] Sehtest Brille und brille kaufen\n- [x] email wandstreichen\n\n\n## 31.12.24 Monday\nBestellung:\n- [x] Schuhe \n- [x] Socken\n- [ ] \n\nSteuererklärung:\n- [ ] Antrag\n- [ ] App holen\n\nMaiborn:\n- [ ] Times\n- [ ] Mobility Budget\n- [ ] \n\nBachelor:\n- [x] setup aws account\n- [ ] one test run with claude\n- [ ] debug error??\n- [ ] figure out: intermediate results / tmp files\n - [ ] saving the python scripts somewhere not /tmp/...\n - [ ] manual testing of runnning python script\n - [ ] see what the prompts are getting from the representation\n\n\nMisc:\n- [ ] Wlan rechnung -> jan\n- [ ] termin für wandstreichen\n\nBewerbung:\n- [x] master bei lmu\n- [ ] erasmus\n - [x] info\n - [ ] bewerbung rausschicken\n- [ ] arbeit @aws @google @nvidia @other_big_tech @lab?\n\n\n\n## Monday \n- [ ] play around with:\n - [ ] cot\n - [ ] ascii representation\n - [ ] prompts\n - [ ] \n\n## Tuesday\n- [ ]\n\n\n## Wednesday\n- [ ] \n\n\n## Thursday\n- [x] change logging \n - [x] normal logger class?\n - [x] save to other format and then logfire?\n\n- [x] trying to run qwen72B -> too big bc of quantization?\n\n- [ ] download other models\n - [x] vision models are ass\n - [x] chat models\n\nGiven this iq test. What common transformation do these rows follow?\n\nI have this iq test for you. \nInstructions: \n\nGiven these pairs of grid patterns where each pair shows a 'before' (left) and 'after' (right) transformation, please:\n 1. Identify the rule that defines which how to transform the 'before' pattern into the 'after' pattern\n 2. provide the common transformation occurring to the geometric shapes\n 3. explain your reasoning on how you came to this conclusion\n\n\n- [x] issues fixing linebreak\n- [x] trying to run qwen coder 32B\n - [x] figuring out the output format\n- [x] figure out how to change tree structure\n\n\n## Friday \n- [ ] maybe use a smaller model?\n- [ ] finetune it on vision tasks\n- [ ] use the other finetune for generation?\n- [ ] self learning approach?\n- [ ] use the dsl and mix to create new stuff\n- [ ] see what kind of tasks can only be solve transductively\n- [ ] what did the top \n\n## Sunday \n- [x] telekom handyvertrag\n- [x] telekom wlan vertrag\n\n\nhttps://www.youtube.com/watch?v=WK5XYG-dH-k&list=PL0oJ2_Q2jPrfkO2Bo8ljN10cShkjkaWzr\n\nhttps://www.youtube.com/watch?v=3yQqNCOYfJo&list=PLbFBnggbJ1rnaXljgzhGm0p_Co9kwfs3t\n\nhttps://www.youtube.com/watch?v=bUudx1cPiAA&list=PLgENJ0iY3XBiJ0jZ53HT8v9Qa3cch7YEV\n\nhttps://www.youtube.com/watch?v=BsJJUAGoFBc&list=PLu0hRahvlQEahuFlF_Dc0_1AMmI_UCLz8\n\nhttps://www.youtube.com/watch?v=0PfLQkUBgcI&list=PL45ZeKlPnPvB6UGmZAJoH57ukARvRNZv3\n\nhttps://www.youtube.com/watch?v=ASfVaQH_1kI&list=PL0oJ2_Q2jPrdt6JFbZtTi8H_XwgYXVRfI\n\nhttps://www.youtube.com/watch?v=DM52HxaLK-Y&list=PLI-n-55RUT--saxVQngjQA3er4QXM67Mt\n\n## Ikea\n\nTotal: 375,78\n\nJan:\n- Bratpfanne Seong: 14,99€\nSum: 14,99€ \n\nAlfred: \n- Schwein 7,99€\n- Dröna Fach 3x1,99€=5,97€\nSum: 13,96€\n\nSplitting:\n375,78 - 14,99 - 13,96 = 346,83\n346,83 / 2 = 173,41\n\nTotal Alfred: 173,41 + 13,96 = 187,37€\nTotal Jan: 173,41 + 14,99 = 188,40€\n\n## SEA ben trip geld\n\n\nHostels:\nHa Long: 1,81 (11,60 total)\nHo Chi Minh: 2.76 (17,30 total)\nBangkok: 7.31 (45,94 total)\nKoh Samui: 4,02 (25,30 total)\n\nHanoi: \nLake View Hostel: 1.04.000d (37,39e)\nLake View Hostel: 130.000d (4,68e)\n\n\nHue:\nSecret Garden Hostel: 269.00d (9,53e)\nGrab: 149.00d (5,27e)\n1995s Hostel: 63.000d (2,18e)\nGrab: 33.000d (1,14e)\nGrab: 111.000d (3,87e)\nGrab: 113.000d (3,94e)\nGrab: 26.000d (0,91e)\n\nHoi An:\nHostel Scalo Villa: 535.000d (18.61e)\n\n\n\n\n\n\n\n## Go Asia\n\nBun: 1.99\n\n\n\n## Meeting Kungwoo\nBehaviour cloning:\n- How much data is needed to properly train the model?\n- \n \nOther gameplay datasets:\n- pubg dataset\n- biggest dataset\n- 1k hours\n\nData collection\n- bot for data collection\n- nvid\n\n- complexity \n- different worlds\n- not focusing on video games\n -> only use one game (depending on game)\n -> not many games \n\n\n\nTier 0:\nhttps://www.youtube.com/results?search_query=alle+meine+entchen+klavier\n\n\n\nI was asked to play piano for someones graduation ceremoy. How much money should I ask for?\nIn the past i got 200 euros for playing Fantasie Impromptu by Chopin and the Waldstein Sonata by Beethoven.\n\nMy current options would be:\nWinter Wind by Choping\nBallad No 4 by Chopin (too long)\nThe Wii Mii Theme\nTwinkle Twinkle Little Star\nAlle meine Entchen\nDepartures by Animenz\nGlimpse of Us arranged by Birru\n\nWhat are some other options that I could play and should I ask for less or more money depending on the piece?\nShould I make a tier list?\n\nBelow is a summary table with the YouTube search URLs for each piece, and an explanation of how you would approach getting the direct video URL if you had access to YouTube’s Data API or a scraping library like youtube-search-python.\n\n| **Tier** | **Piece** | **Composer / Arranger** | **Difficulty** | **Suggested Fee** | **URL** |\n| -------- | --------------------------------- | ----------------------- | -------------------------------------- | ----------------- | ------------------------------------------- |\n| SS | Ballade No. 4 | Chopin | Extremely demanding, long, expressive | 800 € | https://www.youtube.com/watch?v=pe-GrRQz8pk |\n| S | Winter Wind Étude (Op. 25 No. 11) | Chopin | Very fast, technically virtuosic | 600 € | https://www.youtube.com/watch?v=pHlqEvAwdVc |\n| A | Glimpse of Us | Birru (arr.) | Modern ballad, emotionally nuanced | 400 € | https://www.youtube.com/watch?v=Xe2Pr4omHMs |\n| A | Departures | Animenz (arr.) | Fast, cinematic anime arrangement | 400 € | https://www.youtube.com/watch?v=5hft807EJ6o |\n| A | Aeolian Harp Étude (Op. 25 No. 1) | Chopin | Flowing arpeggios, control and clarity | 400 € | https://www.youtube.com/watch?v=Ob0AQLp3a5s |\n| B | Clair de Lune | Debussy | Voicing finesse, sensitive rubato | 370 € | https://www.youtube.com/watch?v=U3u4pQ4WKOk |\n| C | Nocturne Op. 9 No. 2 | Chopin | Elegant phrasing, ornamentation | 300 € | https://www.youtube.com/watch?v=JVBzE0mUlSs |\n| D | Twinkle Twinkle Little Star | Traditional | Beginner level, simple melody | 15€ | https://www.youtube.com/watch?v=yCjJyiqpAuU |\n| E | Wii Mii Theme | Nintendo (arr.) | Nostalgic, light and rhythmic | 10€ | https://www.youtube.com/watch?v=xo8H6e2Afi4 |\n| F | Alle meine Entchen | Traditional | Basic children's song | 5€ | https://www.youtube.com/watch?v=5CDLwq8UgIE |\n\n\nPerfect! Here's how you could add Fantaisie-Impromptu in the A-tier with a fitting description:\n\nTier\tPiece\tComposer / Arranger\tDifficulty\tSuggested Fee\tURL\nA\tFantaisie-Impromptu (Op. 66)\tChopin\tFast, rhythmically complex, technically demanding but less intense than top Chopin Études\t450 €\thttps://www.youtube.com/watch?v=IvUU8joBb1Q\n\nIf you want, I can help you refine the difficulty wording or suggest a fee based on your current pricing scale!\n\n\n\n\n\n\n\n\n\n",markdown,tab +2,98,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"",Log,tab +3,851,"TERMINAL",0,0,"python /Users/alfred/.cursor/extensions/ms-python.python-2025.6.1-darwin-arm64/python_files/printEnvVariablesToFile.py /Users/alfred/.cursor/extensions/ms-python.python-2025.6.1-darwin-arm64/python_files/deactivate/bash/envVars.txt",,terminal_command +4,867,"TERMINAL",0,0,"]633;E;python /Users/alfred/.cursor/extensions/ms-python.python-2025.6.1-darwin-arm64/python_files/printEnvVariablesToFile.py /Users/alfred/.cursor/extensions/ms-python.python-2025.6.1-darwin-arm64/python_files/deactivate/bash/envVars.txt;94f1541c-df11-407c-9963-13cd6466203f]633;C",,terminal_output +5,876,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"12:51:37 AM [info] Activating crowd-code\n12:51:37 AM [info] Welcome back alfred. Your user-id is '05d9d5da933137c5402a176a469b618685c7e9142aa8972616ca5cdf0f6e53d1'. Happy coding!\n12:51:37 AM [info] Recording started\n",Log,content diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-b6fe590e-c50e-4a68-9a69-3b33df2b942d1750959118436-2025_06_26-19.32.19.853/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-b6fe590e-c50e-4a68-9a69-3b33df2b942d1750959118436-2025_06_26-19.32.19.853/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1a05637ef0db47f4c0db729d39d1ef0c54bfac9 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-b6fe590e-c50e-4a68-9a69-3b33df2b942d1750959118436-2025_06_26-19.32.19.853/source.csv @@ -0,0 +1,2442 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,12,"requirements.txt",0,0,"dm_pix>=0.4.3\neinops>=0.8.0\nflax>=0.8.5\njax[cuda12]>=0.4.30\noptax>=0.2.3\nprocgen>=0.10.7\ntyro>=0.8.5\nwandb>=0.17.4\ntensorflow>=2.1\npre-commit>=4.2.0\ntqdm>=4.67.1",pip-requirements,tab +2,759,"requirements.txt",161,0,"",pip-requirements,selection_mouse +3,763,"requirements.txt",160,0,"",pip-requirements,selection_command +4,3183,"sample_resolution_batches.py",0,0,"from dataclasses import dataclass\nimport time\nimport os\n\nimport dm_pix as pix\nimport einops\nimport jax\nimport jax.numpy as jnp\nimport numpy as np\nfrom orbax.checkpoint import PyTreeCheckpointer\nfrom PIL import Image, ImageDraw\nimport tyro\n\nfrom genie import Genie\nfrom utils.dataloader import get_dataloader\n\n\n@dataclass\nclass Args:\n # Experiment\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data/coinrun_episodes""\n checkpoint: str = """"\n # Sampling\n batch_size: int = 1\n maskgit_steps: int = 25\n temperature: float = 1.0\n sample_argmax: bool = True\n start_frame: int = 0\n output_dir: str = ""sample_results""\n # Tokenizer checkpoint\n tokenizer_dim: int = 512\n latent_patch_dim: int = 32\n num_patch_latents: int = 1024\n patch_size: int = 4\n tokenizer_num_blocks: int = 8\n tokenizer_num_heads: int = 8\n # LAM checkpoint\n lam_dim: int = 512\n latent_action_dim: int = 32\n num_latent_actions: int = 6\n lam_patch_size: int = 16\n lam_num_blocks: int = 8\n lam_num_heads: int = 8\n # Dynamics checkpoint\n dyna_dim: int = 512\n dyna_num_blocks: int = 12\n dyna_num_heads: int = 8\n\n\nargs = tyro.cli(Args)\nrng = jax.random.PRNGKey(args.seed)\n\n# --- Load Genie checkpoint ---\ngenie = Genie(\n # Tokenizer\n in_dim=args.image_channels,\n tokenizer_dim=args.tokenizer_dim,\n latent_patch_dim=args.latent_patch_dim,\n num_patch_latents=args.num_patch_latents,\n patch_size=args.patch_size,\n tokenizer_num_blocks=args.tokenizer_num_blocks,\n tokenizer_num_heads=args.tokenizer_num_heads,\n # LAM\n lam_dim=args.lam_dim,\n latent_action_dim=args.latent_action_dim,\n num_latent_actions=args.num_latent_actions,\n lam_patch_size=args.lam_patch_size,\n lam_num_blocks=args.lam_num_blocks,\n lam_num_heads=args.lam_num_heads,\n # Dynamics\n dyna_dim=args.dyna_dim,\n dyna_num_blocks=args.dyna_num_blocks,\n dyna_num_heads=args.dyna_num_heads,\n)\nrng, _rng = jax.random.split(rng)\nimage_shape = (args.image_height, args.image_width, args.image_channels)\ndummy_inputs = dict(\n videos=jnp.zeros((args.batch_size, args.seq_len, *image_shape), dtype=jnp.float32),\n mask_rng=_rng,\n)\nrng, _rng = jax.random.split(rng)\nparams = genie.init(_rng, dummy_inputs)\nckpt = PyTreeCheckpointer().restore(args.checkpoint)[""model""][""params""][""params""]\nparams[""params""].update(ckpt)\n\n\n# --- Define autoregressive sampling loop ---\ndef _autoreg_sample(rng, video_batch, action_batch):\n vid = video_batch[:, : args.start_frame + 1]\n for frame_idx in range(args.start_frame + 1, args.seq_len):\n # --- Sample next frame ---\n print(""Frame"", frame_idx)\n rng, _rng = jax.random.split(rng)\n batch = dict(videos=vid, latent_actions=action_batch[:, :frame_idx], rng=_rng)\n new_frame = genie.apply(\n params,\n batch,\n args.maskgit_steps,\n args.temperature,\n args.sample_argmax,\n method=Genie.sample,\n )\n vid = jnp.concatenate([vid, new_frame], axis=1)\n return vid\n\n\n# --- Get video + latent actions ---\n\ntfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n]\nimage_shape = (args.image_height, args.image_width, args.image_channels)\n\ndataloader = get_dataloader(tfrecord_files, args.seq_len, args.batch_size, *image_shape)\nvideo_batch = next(iter(dataloader))\n# Get latent actions from first video only\nfirst_video = video_batch[:1]\nbatch = dict(videos=first_video)\naction_batch = genie.apply(params, batch, False, method=Genie.vq_encode)\naction_batch = action_batch.reshape(1, args.seq_len - 1, 1)\n# Use actions from first video for all videos\naction_batch = jnp.repeat(action_batch, video_batch.shape[0], axis=0)\n\n# --- Sample + evaluate video ---\nvid = _autoreg_sample(rng, video_batch, action_batch)\ngt = video_batch[:, : vid.shape[1]].clip(0, 1).reshape(-1, *video_batch.shape[2:])\nrecon = vid.clip(0, 1).reshape(-1, *vid.shape[2:])\nssim = pix.ssim(gt[:, args.start_frame + 1 :], recon[:, args.start_frame + 1 :]).mean()\nprint(f""SSIM: {ssim}"")\n\n# --- Construct and save videos ---\n# Save first video comparison (true vs predicted)\nfirst_true = (video_batch[0:1] * 255).astype(np.uint8)\nfirst_pred = (vid[0:1] * 255).astype(np.uint8)\nfirst_video_comparison = np.zeros((2, *vid.shape[1:5]), dtype=np.uint8)\nfirst_video_comparison[0] = first_true[:, : vid.shape[1]]\nfirst_video_comparison[1] = first_pred\n\n# Create comparison frames for first video\ncomparison_frames = einops.rearrange(first_video_comparison, ""n t h w c -> t h (n w) c"")\nimgs = [Image.fromarray(img) for img in comparison_frames]\n# Write actions on each frame\nfor img, action in zip(imgs[1:], action_batch[0, :, 0]):\n d = ImageDraw.Draw(img)\n d.text((2, 2), f""{action}"", fill=255)\nimgs[0].save(\n f""generation_video_0_{time.time()}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n)\n\n# Save each other video in its own GIF\n\noutput_dir = f""{args.output_dir}/{time.time()}""\nos.makedirs(output_dir, exist_ok=True)\nfor i in range(1, video_batch.shape[0]):\n # Create comparison: true video vs predicted video\n true_video = (video_batch[i:i+1] * 255).astype(np.uint8)\n pred_video = (vid[i:i+1] * 255).astype(np.uint8)\n video_comparison = np.zeros((2, *vid.shape[1:5]), dtype=np.uint8)\n video_comparison[0] = true_video[:, : vid.shape[1]]\n video_comparison[1] = pred_video\n \n # Create comparison frames\n comparison_frames = einops.rearrange(video_comparison, ""n t h w c -> t h (n w) c"")\n imgs = [Image.fromarray(img) for img in comparison_frames]\n # Write actions on each frame\n for img, action in zip(imgs[1:], action_batch[i, :, 0]):\n d = ImageDraw.Draw(img)\n d.text((2, 2), f""{action}"", fill=255)\n\n imgs[0].save(\n f""{output_dir}/generation_video_{i}.gif"",\n save_all=True,\n append_images=imgs[1:],\n duration=250,\n loop=0,\n )\n",python,tab +5,10246,"sample_resolution_batches.py",2375,0,"",python,selection_keyboard +6,21743,"TERMINAL",0,0,"",,terminal_focus +7,22129,"TERMINAL",0,0,"bash",,terminal_focus +8,22484,"TERMINAL",0,0,"bash",,terminal_focus +9,25060,"TERMINAL",0,0,"cd slurm/",,terminal_command +10,25067,"TERMINAL",0,0,"]633;E;2025-06-26 19:32:44 cd slurm/;0eb7d9ad-8537-43c1-91f5-431f6c52e8cd]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +11,25403,"TERMINAL",0,0,"ls",,terminal_command +12,25418,"TERMINAL",0,0,"]633;E;2025-06-26 19:32:45 ls;0eb7d9ad-8537-43c1-91f5-431f6c52e8cd]633;C",,terminal_output +13,28575,"TERMINAL",0,0,"git status",,terminal_command +14,28607,"TERMINAL",0,0,"]633;E;2025-06-26 19:32:48 git status;0eb7d9ad-8537-43c1-91f5-431f6c52e8cd]633;COn branch main\r\nYour branch is up to date with 'origin/main'.\r\n\r\nChanges not staged for commit:\r\n (use ""git add ..."" to update what will be committed)\r\n (use ""git restore ..."" to discard changes in working directory)\r\n\tmodified: dev/alfred/coinrun/train_tokenizer_coinrun.sh\r\n\tmodified: dev/alfred/train_dyn_dev/train_dyn_single_batch.sh\r\n\tmodified: dev/alfred/train_lam_dev/train_lam_single_batch.sh\r\n\tmodified: dev/alfred/train_tokenizer_dev/train_tokenizer.sh\r\n\r\nUntracked files:\r\n (use ""git add ..."" to include in what will be committed)\r\n\tdev/alfred/allocate/\r\n\tdev/alfred/train_dyn_dev/train_dyn.sh\r\n\tdev/alfred/train_lam_dev/train_lam.sh\r\n\r\nno changes added to commit (use ""git add"" and/or ""git commit -a"")\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +15,31672,"TERMINAL",0,0,"cursor .",,terminal_command +16,31728,"TERMINAL",0,0,"]633;E;2025-06-26 19:32:51 cursor .;0eb7d9ad-8537-43c1-91f5-431f6c52e8cd]633;C",,terminal_output +17,31865,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +18,68936,"slurm/dev/mihir/cremers/train_tokenizer_overfit_batch.sbatch",0,0,"#!/bin/bash\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=00:30:00\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:1,VRAM:24G\n#SBATCH --mem=50G\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --job-name=train_tokenizer_minecraft_overfit_batch\n\n# Log the sbatch script\ncat $0\n\ntf_records_dir=""/storage/user/mahajanm/Projects/world-modeling/knoms_tfrecords_500/""\nws_dir='/storage/user/mahajanm/Projects/world-modeling'\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nSLURM_STEP_NODELIST=$SLURM_NODELIST python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=1e-4 \\n --max_lr=1e-4 \\n --log_image_interval=3 \\n --log \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +19,77189,"slurm/dev/mihir/horeka/preprocess_dataset.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=03:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --cpus-per-task=8\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=mihir@pdoom.org\n#SBATCH --job-name=preprocess_dataset\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nsource .venv/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_npy_tmp/10fps_160x90/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_tmp_500_shards""\n\nstart_time=$(date +%s) \n\npython utils/preprocess_dataset.py --source_data_dir=$input_path --output_tfrecords_dir=$output_path --num_shards=500\n\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""",shellscript,tab +20,78219,"slurm/dev/mihir/horeka/sync_runner.sh",0,0,"#!/usr/bin/env bash\n\n# Usage: ./sync_runner.sh \n# Example: ./sync_runner.sh ./src /some/target/dir\n\nset -e\n\nSRC_DIR=""$1""\nTARGET_DIR=""$2""\n\nif [[ -z ""$SRC_DIR"" || -z ""$TARGET_DIR"" ]]; then\n echo ""Usage: $0 ""\n exit 1\nfi\n\n# Define paths to exclude (relative to SRC_DIR)\nEXCLUDES=(\n "".git""\n ""__pycache__""\n ""*/__pycache__""\n ""logs""\n ""*.pyc""\n "".DS_Store""\n ""data""\n ""checkpoints""\n ""venv""\n "".venv""\n ""data_tfrecords""\n ""data_tfrecord_duplicated""\n ""wandb""\n)\n\n# Build rsync exclude arguments\nEXCLUDE_ARGS=()\nfor path in ""${EXCLUDES[@]}""; do\n EXCLUDE_ARGS+=(--exclude=""$path"")\ndone\n\n# Perform the rsync\nrsync -av ""${EXCLUDE_ARGS[@]}"" ""$SRC_DIR/"" ""$TARGET_DIR/""\n",shellscript,tab +21,81967,"slurm/dev/mihir/horeka/train_dynamics.sh",0,0,"#!/usr/bin/env bash\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\n\njob_name=""debug""\nslurm_job_id=""0000""\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\ntokenizer_ckpt_dir=$ws_dir/checkpoints/3290391/tokenizer_1750845012_40000\nlam_ckpt_dir=$ws_dir/checkpoints/3290392/lam_1750845133_130000\npython train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=5e-7 \\n --max_lr=5e-6 \\n --warmup_steps=125 \\n --log_image_interval=100 \\n --log \\n --log_checkpoint_interval=500 \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --lam_checkpoint=$lam_ckpt_dir \\n --data_dir $tf_records_dir\n",shellscript,tab +22,86986,"slurm/dev/mihir/horeka/train_lam.sh",0,0,"#!/usr/bin/env bash\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=""debug""\nslurm_job_id=""0000""\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\npython train_lam.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=5e-7 \\n --max_lr=5e-6 \\n --warmup_steps=125 \\n --log_image_interval=3 \\n --log \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +23,88506,"slurm/dev/mihir/horeka/train_tokenizer_coinrun.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=01:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --mail-user=mihir.mahajan2002@gmail.com\n#SBATCH --job-name=train_tokenizer_minecraft_overfit\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data'\ntf_records_dir=""/home/hk-project-p0023960/tum_cte0515/Projects/jafar/data_tfrecords""\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=4 \\n --num_steps=75000 \\n --warmup_steps=2500 \\n --log_checkpoint_interval=18750 \\n --log \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +24,100575,"slurm/dev/mihir/horeka/train_tokenizer.sh",0,0,"#!/usr/bin/env bash\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=""debug""\nslurm_job_id=""0000""\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\npython train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=12 \\n --min_lr=4.24e-4 \\n --max_lr=4.24e-4 \\n --log_image_interval=3 \\n --log \\n --name=test-wandb-tags-$slurm_job_id \\n --tags test tokenizer debug \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir",shellscript,tab +25,152170,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_1_node\n#SBATCH --mem=50G\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=48 \\n --min_lr=3e-4 \\n --max_lr=3e-4 \\n --log_image_interval=250 \\n --log \\n --name=const-lr-tokenizer-batch-size-scaling-1-node-$slurm_job_id \\n --tags const-lr tokenizer batch-size-scaling 1-node \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +26,157537,"slurm/jobs/mihir/horeka/batchsize_scaling/const_lr/train_tokenizer_2_nodes.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_2_node\n#SBATCH --mem=100G\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --min_lr=3e-4 \\n --max_lr=3e-4 \\n --log_image_interval=250 \\n --log \\n --name=const-lr-tokenizer-batch-size-scaling-2-node-$slurm_job_id \\n --tags const-lr tokenizer batch-size-scaling 2-node \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +27,161149,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_2_node\n#SBATCH --mem=100G\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --min_lr=3e-4 \\n --max_lr=3e-4 \\n --log_image_interval=250 \\n --log \\n --name=const-lr-tokenizer-batch-size-scaling-2-node-$slurm_job_id \\n --tags const-lr tokenizer batch-size-scaling 2-node \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +28,162976,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",510,0,"",shellscript,selection_mouse +29,162978,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",509,0,"",shellscript,selection_command +30,163814,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",574,0,"",shellscript,selection_mouse +31,169750,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",732,0,"",shellscript,selection_mouse +32,169754,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",731,0,"",shellscript,selection_command +33,176355,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,selection_command +34,178376,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",20,0,"",shellscript,selection_command +35,178629,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",21,0,"",shellscript,selection_command +36,181354,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +37,188185,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=16:00:00\n#SBATCH --partition=accelerated\n#SBATCH --account=hk-project-p0023960\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_lam/%x_%j.log\n#SBATCH --error=logs/logs_training_lam/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=train_lam_ful_tfrecord\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/lam/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n\nsrun python train_lam.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=48 \\n --log_checkpoint_interval=500 \\n --log_image_interval=50 \\n --seed=0 \\n --min_lr=0.0000866 \\n --max_lr=0.0000866 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n\n",shellscript,tab +38,192311,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +39,192312,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",66,0,"",shellscript,selection_mouse +40,192323,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",65,0,"",shellscript,selection_command +41,192842,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",90,0,"",shellscript,selection_mouse +42,192847,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",89,0,"",shellscript,selection_command +43,193241,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",122,0,"",shellscript,selection_mouse +44,193248,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",121,0,"",shellscript,selection_command +45,194717,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",0,0,"",shellscript,tab +46,195116,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",20,0,"",shellscript,selection_command +47,195355,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",21,0,"",shellscript,selection_command +48,195371,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",39,0,"",shellscript,selection_command +49,195403,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",67,0,"",shellscript,selection_command +50,195436,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",91,0,"",shellscript,selection_command +51,195468,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",123,0,"",shellscript,selection_command +52,195588,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",161,0,"",shellscript,selection_command +53,195955,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",123,0,"",shellscript,selection_command +54,196640,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +55,197213,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",90,0,"\n",shellscript,content +56,197455,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",91,0,"\n#SBATCH --account=hk-project-p0023960",shellscript,content +57,197460,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",92,0,"",shellscript,selection_command +58,197741,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",91,0,"",shellscript,selection_command +59,198047,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",91,1,"",shellscript,content +60,199651,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",129,0,"",shellscript,selection_command +61,200092,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",161,0,"",shellscript,selection_command +62,200692,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",187,0,"",shellscript,selection_command +63,201346,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",208,0,"",shellscript,selection_command +64,204650,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",243,0,"_tokenizer",shellscript,content +65,204652,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",253,0,"",shellscript,selection_command +66,205221,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",298,0,"_tokenizer",shellscript,content +67,205222,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",308,0,"",shellscript,selection_command +68,205731,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",363,0,"",shellscript,selection_command +69,208983,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",397,0,"",shellscript,selection_command +70,209223,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",399,0,"",shellscript,selection_command +71,209247,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",422,0,"",shellscript,selection_command +72,209280,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",429,0,"",shellscript,selection_command +73,209313,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",431,0,"",shellscript,selection_command +74,209347,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",460,0,"",shellscript,selection_command +75,209870,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",490,0,"",shellscript,selection_command +76,210108,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",516,0,"",shellscript,selection_command +77,210344,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",518,0,"",shellscript,selection_command +78,211068,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",0,0,"",shellscript,tab +79,211358,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",161,0,"",shellscript,selection_command +80,211605,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",187,0,"",shellscript,selection_command +81,211631,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",208,0,"",shellscript,selection_command +82,211665,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",258,0,"",shellscript,selection_command +83,211698,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",307,0,"",shellscript,selection_command +84,211737,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",350,0,"",shellscript,selection_command +85,211758,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",392,0,"",shellscript,selection_command +86,211792,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",416,0,"",shellscript,selection_command +87,211825,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",417,0,"",shellscript,selection_command +88,211864,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",441,0,"",shellscript,selection_command +89,211896,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",448,0,"",shellscript,selection_command +90,211929,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",449,0,"",shellscript,selection_command +91,211965,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",479,0,"",shellscript,selection_command +92,211997,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",509,0,"",shellscript,selection_command +93,212136,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",541,0,"",shellscript,selection_command +94,212295,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",542,0,"",shellscript,selection_command +95,213039,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +96,214330,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",517,0,"\n",shellscript,content +97,214781,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",518,0,"\n",shellscript,content +98,215289,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",519,0,"\njob_name=$SLURM_JOB_NAME",shellscript,content +99,215293,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",520,0,"",shellscript,selection_command +100,215513,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",519,0,"",shellscript,selection_command +101,215806,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",492,0,"",shellscript,selection_command +102,216721,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",499,0,"",shellscript,selection_command +103,216906,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",500,0,"",shellscript,selection_command +104,217093,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",504,0,"",shellscript,selection_command +105,217825,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",504,0,"_",shellscript,content +106,217827,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",505,0,"",shellscript,selection_keyboard +107,218220,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",505,0,"j",shellscript,content +108,218221,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",506,0,"",shellscript,selection_keyboard +109,218391,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",506,0,"a",shellscript,content +110,218392,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",507,0,"",shellscript,selection_keyboard +111,218513,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",507,0,"f",shellscript,content +112,218514,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",508,0,"",shellscript,selection_keyboard +113,218652,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",508,0,"a",shellscript,content +114,218653,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",509,0,"",shellscript,selection_keyboard +115,218778,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",509,0,"r",shellscript,content +116,218779,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",510,0,"",shellscript,selection_keyboard +117,219091,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",509,0,"",shellscript,selection_command +118,219302,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",524,0,"",shellscript,selection_command +119,219850,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",525,0,"",shellscript,selection_command +120,220486,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",543,0,"",shellscript,selection_command +121,222256,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",0,0,"",shellscript,tab +122,222671,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",567,0,"",shellscript,selection_command +123,223356,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +124,224532,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",550,0,"\n",shellscript,content +125,224840,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",551,0,"\nslurm_job_id=$SLURM_JOB_ID",shellscript,content +126,224845,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",552,0,"",shellscript,selection_command +127,225200,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",551,0,"",shellscript,selection_command +128,225552,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",551,1,"",shellscript,content +129,225662,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",578,0,"",shellscript,selection_command +130,228726,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",577,0,"\n",shellscript,content +131,230472,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",551,0,"",shellscript,selection_command +132,231383,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",526,52,"",shellscript,content +133,232095,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",526,1,"",shellscript,content +134,232747,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",527,0,"",shellscript,selection_command +135,232990,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",577,0,"",shellscript,selection_command +136,235891,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",643,0,"",shellscript,selection_command +137,236145,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",644,0,"",shellscript,selection_command +138,236172,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",669,0,"",shellscript,selection_command +139,236202,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",696,0,"",shellscript,selection_command +140,236234,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",697,0,"",shellscript,selection_command +141,236267,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",756,0,"",shellscript,selection_command +142,236302,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",781,0,"",shellscript,selection_command +143,236333,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",782,0,"",shellscript,selection_command +144,236367,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",799,0,"",shellscript,selection_command +145,236401,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",800,0,"",shellscript,selection_command +146,236434,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",833,0,"",shellscript,selection_command +147,236467,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",866,0,"",shellscript,selection_command +148,237949,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1155,0,"",shellscript,selection_command +149,238602,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1164,0,"",shellscript,selection_command +150,240892,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1165,0,"",shellscript,selection_command +151,250057,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1143,0,"",shellscript,selection_command +152,250309,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1117,0,"",shellscript,selection_command +153,250328,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1059,0,"",shellscript,selection_command +154,250362,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",987,0,"",shellscript,selection_command +155,250398,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",969,0,"",shellscript,selection_command +156,250431,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",944,0,"",shellscript,selection_command +157,250463,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",924,0,"",shellscript,selection_command +158,250496,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",904,0,"",shellscript,selection_command +159,250530,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",882,0,"",shellscript,selection_command +160,250563,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",849,0,"",shellscript,selection_command +161,250596,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",816,0,"",shellscript,selection_command +162,250631,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",799,0,"",shellscript,selection_command +163,250663,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",797,0,"",shellscript,selection_command +164,250697,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",781,0,"",shellscript,selection_command +165,250731,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",772,0,"",shellscript,selection_command +166,250764,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",713,0,"",shellscript,selection_command +167,251047,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",772,0,"",shellscript,selection_command +168,251308,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",781,0,"",shellscript,selection_command +169,251324,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",797,0,"",shellscript,selection_command +170,251355,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",799,0,"",shellscript,selection_command +171,251387,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",816,0,"",shellscript,selection_command +172,251426,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",849,0,"",shellscript,selection_command +173,251455,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",882,0,"",shellscript,selection_command +174,251487,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",904,0,"",shellscript,selection_command +175,251521,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",924,0,"",shellscript,selection_command +176,251555,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",944,0,"",shellscript,selection_command +177,251589,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",969,0,"",shellscript,selection_command +178,251623,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",987,0,"",shellscript,selection_command +179,251656,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1059,0,"",shellscript,selection_command +180,251690,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1117,0,"",shellscript,selection_command +181,252991,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1049,0,"",shellscript,selection_command +182,253585,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1054,0,"",shellscript,selection_command +183,255125,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1054,46,"",shellscript,content +184,255129,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1053,0,"",shellscript,selection_command +185,255439,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",982,0,"",shellscript,selection_command +186,255699,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",969,0,"",shellscript,selection_command +187,255718,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",939,0,"",shellscript,selection_command +188,255750,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",919,0,"",shellscript,selection_command +189,255784,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",899,0,"",shellscript,selection_command +190,255817,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",877,0,"",shellscript,selection_command +191,255850,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",844,0,"",shellscript,selection_command +192,255883,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",811,0,"",shellscript,selection_command +193,255916,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",799,0,"",shellscript,selection_command +194,255955,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",793,0,"",shellscript,selection_command +195,256144,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",781,0,"",shellscript,selection_command +196,256762,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",767,0,"",shellscript,selection_command +197,256921,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",708,0,"",shellscript,selection_command +198,257094,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",696,0,"",shellscript,selection_command +199,257387,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",695,0,"\n",shellscript,content +200,257626,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",696,0,"\n",shellscript,content +201,258786,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",697,0,"tags=""const-lr tokenizer batch-size-scaling 2-node""",shellscript,content +202,259205,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",747,0,"",shellscript,selection_command +203,259423,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",749,0,"",shellscript,selection_command +204,259678,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",800,0,"",shellscript,selection_command +205,259704,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",832,0,"",shellscript,selection_command +206,259741,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",834,0,"",shellscript,selection_command +207,259765,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",850,0,"",shellscript,selection_command +208,259798,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",852,0,"",shellscript,selection_command +209,259833,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",884,0,"",shellscript,selection_command +210,259882,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",917,0,"",shellscript,selection_command +211,259903,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",939,0,"",shellscript,selection_command +212,259937,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",959,0,"",shellscript,selection_command +213,259971,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",979,0,"",shellscript,selection_command +214,260004,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1010,0,"",shellscript,selection_command +215,260037,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1022,0,"",shellscript,selection_command +216,260072,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1074,0,"",shellscript,selection_command +217,260204,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1106,0,"",shellscript,selection_command +218,260986,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1107,0,"$tags \",shellscript,content +219,260987,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1079,0,"s",shellscript,content +220,260987,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1072,7,"",shellscript,content +221,260987,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1056,15,"",shellscript,content +222,260987,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1040,15,"",shellscript,content +223,260987,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1039,0,"$",shellscript,content +224,260987,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1035,4,"",shellscript,content +225,262526,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1055,0,"",shellscript,selection_command +226,265467,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1042,0,"",shellscript,selection_command +227,265713,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1040,0,"",shellscript,selection_command +228,266017,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1036,0,"",shellscript,selection_command +229,266663,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1035,0,"",shellscript,selection_command +230,267031,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1035,21,"",shellscript,content +231,267039,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1034,0,"",shellscript,selection_command +232,267093,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1035,0,"",shellscript,selection_command +233,268359,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1035,0,"@",shellscript,content +234,268360,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1036,0,"",shellscript,selection_keyboard +235,268888,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1035,1,"",shellscript,content +236,269528,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1035,0,"#",shellscript,content +237,269529,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1036,0,"",shellscript,selection_keyboard +238,270175,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1035,1,"",shellscript,content +239,270951,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1035,0,"$",shellscript,content +240,270952,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1036,0,"",shellscript,selection_keyboard +241,271207,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1036,0,"j",shellscript,content +242,271208,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1037,0,"",shellscript,selection_keyboard +243,271452,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1037,0,"o",shellscript,content +244,271453,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1038,0,"",shellscript,selection_keyboard +245,271905,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1038,0,"b_name-$slurm_job_id \",shellscript,content +246,272355,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1059,0,"",shellscript,selection_command +247,272668,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1022,0,"",shellscript,selection_command +248,272922,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1010,0,"",shellscript,selection_command +249,272949,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",979,0,"",shellscript,selection_command +250,272981,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",959,0,"",shellscript,selection_command +251,273027,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",939,0,"",shellscript,selection_command +252,273041,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",917,0,"",shellscript,selection_command +253,273076,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",884,0,"",shellscript,selection_command +254,273109,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",852,0,"",shellscript,selection_command +255,273142,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",850,0,"",shellscript,selection_command +256,273175,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",834,0,"",shellscript,selection_command +257,273440,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",832,0,"",shellscript,selection_command +258,273586,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",785,0,"",shellscript,selection_command +259,273754,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",749,0,"",shellscript,selection_command +260,274161,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",732,0,"",shellscript,selection_command +261,275647,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",697,0,"",shellscript,selection_command +262,275839,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",701,0,"",shellscript,selection_command +263,276056,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",703,0,"",shellscript,selection_command +264,276391,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",702,0,"",shellscript,selection_command +265,277118,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",702,0,"{}",shellscript,content +266,277120,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",703,0,"",shellscript,selection_keyboard +267,277537,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",702,2,"",shellscript,content +268,277758,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",702,0,"()",shellscript,content +269,277759,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",703,0,"",shellscript,selection_keyboard +270,278964,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",750,0,")",shellscript,content +271,278965,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",743,0,"""",shellscript,content +272,278965,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",742,0,"""",shellscript,content +273,278965,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",724,0,"""",shellscript,content +274,278965,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",723,0,"""",shellscript,content +275,278965,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",714,0,"""",shellscript,content +276,278965,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",713,0,"""",shellscript,content +277,278966,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",703,1,"",shellscript,content +278,280404,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,0,"[@]}""",shellscript,content +279,280405,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1081,0,"{",shellscript,content +280,280405,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1080,0,"""",shellscript,content +281,280407,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1092,0,"",shellscript,selection_command +282,280690,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1091,0,"",shellscript,selection_command +283,281062,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1090,0,"",shellscript,selection_command +284,281211,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1089,0,"",shellscript,selection_command +285,281360,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1088,0,"",shellscript,selection_command +286,281681,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1087,0,"",shellscript,selection_command +287,281851,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1086,0,"",shellscript,selection_command +288,282059,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,0,"",shellscript,selection_command +289,282282,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1084,0,"",shellscript,selection_command +290,282984,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1083,0,"",shellscript,selection_command +291,283175,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1082,0,"",shellscript,selection_command +292,285721,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1082,1,"",shellscript,content +293,286192,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1081,0,"",shellscript,selection_command +294,286429,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1080,0,"",shellscript,selection_command +295,286632,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1080,1,"",shellscript,content +296,287064,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1081,0,"",shellscript,selection_command +297,287305,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1082,0,"",shellscript,selection_command +298,287344,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1083,0,"",shellscript,selection_command +299,287371,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1084,0,"",shellscript,selection_command +300,287400,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,0,"",shellscript,selection_command +301,287433,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1086,0,"",shellscript,selection_command +302,287466,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1087,0,"",shellscript,selection_command +303,287721,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1086,0,"",shellscript,selection_command +304,287897,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,0,"",shellscript,selection_command +305,288148,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,1,"",shellscript,content +306,288318,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,1,"",shellscript,content +307,288487,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,1,"",shellscript,content +308,288703,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,1,"",shellscript,content +309,289221,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,1,"",shellscript,content +310,291003,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1048,0,"",shellscript,selection_command +311,291740,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,0,"",shellscript,selection_command +312,292635,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1104,0,"",shellscript,selection_command +313,292825,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1130,0,"",shellscript,selection_command +314,293043,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1152,0,"",shellscript,selection_command +315,293673,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1130,0,"",shellscript,selection_command +316,294089,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1104,0,"",shellscript,selection_command +317,295855,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1130,0,"",shellscript,selection_command +318,296545,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1152,0,"",shellscript,selection_command +319,301148,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1130,0,"",shellscript,selection_command +320,301390,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1104,0,"",shellscript,selection_command +321,301422,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1085,0,"",shellscript,selection_command +322,301454,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1048,0,"",shellscript,selection_command +323,301483,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1030,0,"",shellscript,selection_command +324,301514,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",1005,0,"",shellscript,selection_command +325,301547,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",985,0,"",shellscript,selection_command +326,301597,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",965,0,"",shellscript,selection_command +327,301616,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",943,0,"",shellscript,selection_command +328,301647,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",910,0,"",shellscript,selection_command +329,301681,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",877,0,"",shellscript,selection_command +330,301716,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",860,0,"",shellscript,selection_command +331,301749,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",858,0,"",shellscript,selection_command +332,301783,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",842,0,"",shellscript,selection_command +333,301817,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",833,0,"",shellscript,selection_command +334,301849,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",774,0,"",shellscript,selection_command +335,301884,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",757,0,"",shellscript,selection_command +336,301921,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",713,0,"",shellscript,selection_command +337,301949,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",696,0,"",shellscript,selection_command +338,301983,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",685,0,"",shellscript,selection_command +339,302020,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",660,0,"",shellscript,selection_command +340,302054,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",643,0,"",shellscript,selection_command +341,302083,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",593,0,"",shellscript,selection_command +342,302117,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",543,0,"",shellscript,selection_command +343,302150,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",526,0,"",shellscript,selection_command +344,302183,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",525,0,"",shellscript,selection_command +345,302216,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",524,0,"",shellscript,selection_command +346,302414,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",525,0,"",shellscript,selection_command +347,302598,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",526,0,"",shellscript,selection_command +348,302731,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",543,0,"",shellscript,selection_command +349,303720,"TERMINAL",0,0,"bash",,terminal_focus +350,306181,"TERMINAL",0,0,"dinger",,terminal_command +351,306184,"TERMINAL",0,0,"]633;E;2025-06-26 19:37:25 dinger;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar",,terminal_output +352,308928,"TERMINAL",0,0,"binger",,terminal_command +353,308936,"TERMINAL",0,0,"]633;E;2025-06-26 19:37:28 binger;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +354,320703,"TERMINAL",0,0,"cd data/knoms_tfrecords_500_shards",,terminal_command +355,320706,"TERMINAL",0,0,"]633;E;2025-06-26 19:37:40 cd data/knoms_tfrecords_500_shards;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards]633;D;0",,terminal_output +356,322573,"TERMINAL",0,0,"ls",,terminal_command +357,322625,"TERMINAL",0,0,"]633;E;2025-06-26 19:37:42 ls;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C",,terminal_output +358,322788,"TERMINAL",0,0,"shard-00000-of-00500.tfrecord shard-00050-of-00500.tfrecord shard-00100-of-00500.tfrecord shard-00150-of-00500.tfrecord shard-00200-of-00500.tfrecord shard-00250-of-00500.tfrecord shard-00300-of-00500.tfrecord shard-00350-of-00500.tfrecord shard-00400-of-00500.tfrecord shard-00450-of-00500.tfrecord\r\nshard-00001-of-00500.tfrecord shard-00051-of-00500.tfrecord shard-00101-of-00500.tfrecord shard-00151-of-00500.tfrecord shard-00201-of-00500.tfrecord shard-00251-of-00500.tfrecord shard-00301-of-00500.tfrecord shard-00351-of-00500.tfrecord shard-00401-of-00500.tfrecord shard-00451-of-00500.tfrecord\r\nshard-00002-of-00500.tfrecord shard-00052-of-00500.tfrecord shard-00102-of-00500.tfrecord shard-00152-of-00500.tfrecord shard-00202-of-00500.tfrecord shard-00252-of-00500.tfrecord shard-00302-of-00500.tfrecord shard-00352-of-00500.tfrecord shard-00402-of-00500.tfrecord shard-00452-of-00500.tfrecord\r\nshard-00003-of-00500.tfrecord shard-00053-of-00500.tfrecord shard-00103-of-00500.tfrecord shard-00153-of-00500.tfrecord shard-00203-of-00500.tfrecord shard-00253-of-00500.tfrecord shard-00303-of-00500.tfrecord shard-00353-of-00500.tfrecord shard-00403-of-00500.tfrecord shard-00453-of-00500.tfrecord\r\nshard-00004-of-00500.tfrecord shard-00054-of-00500.tfrecord shard-00104-of-00500.tfrecord shard-00154-of-00500.tfrecord shard-00204-of-00500.tfrecord shard-00254-of-00500.tfrecord shard-00304-of-00500.tfrecord shard-00354-of-00500.tfrecord shard-00404-of-00500.tfrecord shard-00454-of-00500.tfrecord\r\nshard-00005-of-00500.tfrecord shard-00055-of-00500.tfrecord shard-00105-of-00500.tfrecord shard-00155-of-00500.tfrecord shard-00205-of-00500.tfrecord shard-00255-of-00500.tfrecord shard-00305-of-00500.tfrecord shard-00355-of-00500.tfrecord shard-00405-of-00500.tfrecord shard-00455-of-00500.tfrecord\r\nshard-00006-of-00500.tfrecord shard-00056-of-00500.tfrecord shard-00106-of-00500.tfrecord shard-00156-of-00500.tfrecord shard-00206-of-00500.tfrecord shard-00256-of-00500.tfrecord shard-00306-of-00500.tfrecord shard-00356-of-00500.tfrecord shard-00406-of-00500.tfrecord shard-00456-of-00500.tfrecord\r\nshard-00007-of-00500.tfrecord shard-00057-of-00500.tfrecord shard-00107-of-00500.tfrecord shard-00157-of-00500.tfrecord shard-00207-of-00500.tfrecord shard-00257-of-00500.tfrecord shard-00307-of-00500.tfrecord shard-00357-of-00500.tfrecord shard-00407-of-00500.tfrecord shard-00457-of-00500.tfrecord\r\nshard-00008-of-00500.tfrecord shard-00058-of-00500.tfrecord shard-00108-of-00500.tfrecord shard-00158-of-00500.tfrecord shard-00208-of-00500.tfrecord shard-00258-of-00500.tfrecord shard-00308-of-00500.tfrecord shard-00358-of-00500.tfrecord shard-00408-of-00500.tfrecord shard-00458-of-00500.tfrecord\r\nshard-00009-of-00500.tfrecord shard-00059-of-00500.tfrecord shard-00109-of-00500.tfrecord shard-00159-of-00500.tfrecord shard-00209-of-00500.tfrecord shard-00259-of-00500.tfrecord shard-00309-of-00500.tfrecord shard-00359-of-00500.tfrecord shard-00409-of-00500.tfrecord shard-00459-of-00500.tfrecord\r\nshard-00010-of-00500.tfrecord shard-00060-of-00500.tfrecord shard-00110-of-00500.tfrecord shard-00160-of-00500.tfrecord shard-00210-of-00500.tfrecord shard-00260-of-00500.tfrecord shard-00310-of-00500.tfrecord shard-00360-of-00500.tfrecord shard-00410-of-00500.tfrecord shard-00460-of-00500.tfrecord\r\nshard-00011-of-00500.tfrecord shard-00061-of-00500.tfrecord shard-00111-of-00500.tfrecord shard-00161-of-00500.tfrecord shard-00211-of-00500.tfrecord shard-00261-of-00500.tfrecord shard-00311-of-00500.tfrecord shard-00361-of-00500.tfrecord shard-00411-of-00500.tfrecord shard-00461-of-00500.tfrecord\r\nshard-00012-of-00500.tfrecord shard-00062-of-00500.tfrecord shard-00112-of-00500.tfrecord shard-00162-of-00500.tfrecord shard-00212-of-00500.tfrecord shard-00262-of-00500.tfrecord shard-00312-of-00500.tfrecord shard-00362-of-00500.tfrecord shard-00412-of-00500.tfrecord shard-00462-of-00500.tfrecord\r\nshard-00013-of-00500.tfrecord shard-00063-of-00500.tfrecord shard-00113-of-00500.tfrecord shard-00163-of-00500.tfrecord shard-00213-of-00500.tfrecord shard-00263-of-00500.tfrecord shard-00313-of-00500.tfrecord shard-00363-of-00500.tfrecord shard-00413-of-00500.tfrecord shard-00463-of-00500.tfrecord\r\nshard-00014-of-00500.tfrecord shard-00064-of-00500.tfrecord shard-00114-of-00500.tfrecord shard-00164-of-00500.tfrecord shard-00214-of-00500.tfrecord shard-00264-of-00500.tfrecord shard-00314-of-00500.tfrecord shard-00364-of-00500.tfrecord shard-00414-of-00500.tfrecord shard-00464-of-00500.tfrecord\r\nshard-00015-of-00500.tfrecord shard-00065-of-00500.tfrecord shard-00115-of-00500.tfrecord shard-00165-of-00500.tfrecord shard-00215-of-00500.tfrecord shard-00265-of-00500.tfrecord shard-00315-of-00500.tfrecord shard-00365-of-00500.tfrecord shard-00415-of-00500.tfrecord shard-00465-of-00500.tfrecord\r\nshard-00016-of-00500.tfrecord shard-00066-of-00500.tfrecord shard-00116-of-00500.tfrecord shard-00166-of-00500.tfrecord shard-00216-of-00500.tfrecord shard-00266-of-00500.tfrecord shard-00316-of-00500.tfrecord shard-00366-of-00500.tfrecord shard-00416-of-00500.tfrecord shard-00466-of-00500.tfrecord\r\nshard-00017-of-00500.tfrecord shard-00067-of-00500.tfrecord shard-00117-of-00500.tfrecord shard-00167-of-00500.tfrecord shard-00217-of-00500.tfrecord shard-00267-of-00500.tfrecord shard-00317-of-00500.tfrecord shard-00367-of-00500.tfrecord shard-00417-of-00500.tfrecord shard-00467-of-00500.tfrecord\r\nshard-00018-of-00500.tfrecord shard-00068-of-00500.tfrecord shard-00118-of-00500.tfrecord shard-00168-of-00500.tfrecord shard-00218-of-00500.tfrecord shard-00268-of-00500.tfrecord shard-00318-of-00500.tfrecord shard-00368-of-00500.tfrecord shard-00418-of-00500.tfrecord shard-00468-of-00500.tfrecord\r\nshard-00019-of-00500.tfrecord shard-00069-of-00500.tfrecord shard-00119-of-00500.tfrecord shard-00169-of-00500.tfrecord shard-00219-of-00500.tfrecord shard-00269-of-00500.tfrecord shard-00319-of-00500.tfrecord shard-00369-of-00500.tfrecord shard-00419-of-00500.tfrecord shard-00469-of-00500.tfrecord\r\nshard-00020-of-00500.tfrecord shard-00070-of-00500.tfrecord shard-00120-of-00500.tfrecord shard-00170-of-00500.tfrecord shard-00220-of-00500.tfrecord shard-00270-of-00500.tfrecord shard-00320-of-00500.tfrecord shard-00370-of-00500.tfrecord shard-00420-of-00500.tfrecord shard-00470-of-00500.tfrecord\r\nshard-00021-of-00500.tfrecord shard-00071-of-00500.tfrecord shard-00121-of-00500.tfrecord shard-00171-of-00500.tfrecord shard-00221-of-00500.tfrecord shard-00271-of-00500.tfrecord shard-00321-of-00500.tfrecord shard-00371-of-00500.tfrecord shard-00421-of-00500.tfrecord shard-00471-of-00500.tfrecord\r\nshard-00022-of-00500.tfrecord shard-00072-of-00500.tfrecord shard-00122-of-00500.tfrecord shard-00172-of-00500.tfrecord shard-00222-of-00500.tfrecord shard-00272-of-00500.tfrecord shard-00322-of-00500.tfrecord shard-00372-of-00500.tfrecord shard-00422-of-00500.tfrecord shard-00472-of-00500.tfrecord\r\nshard-00023-of-00500.tfrecord shard-00073-of-00500.tfrecord shard-00123-of-00500.tfrecord shard-00173-of-00500.tfrecord shard-00223-of-00500.tfrecord shard-00273-of-00500.tfrecord shard-00323-of-00500.tfrecord shard-00373-of-00500.tfrecord shard-00423-of-00500.tfrecord shard-00473-of-00500.tfrecord\r\nshard-00024-of-00500.tfrecord shard-00074-of-00500.tfrecord shard-00124-of-00500.tfrecord shard-00174-of-00500.tfrecord shard-00224-of-00500.tfrecord shard-00274-of-00500.tfrecord shard-00324-of-00500.tfrecord shard-00374-of-00500.tfrecord shard-00424-of-00500.tfrecord shard-00474-of-00500.tfrecord\r\nshard-00025-of-00500.tfrecord shard-00075-of-00500.tfrecord shard-00125-of-00500.tfrecord shard-00175-of-00500.tfrecord shard-00225-of-00500.tfrecord shard-00275-of-00500.tfrecord shard-00325-of-00500.tfrecord shard-00375-of-00500.tfrecord shard-00425-of-00500.tfrecord shard-00475-of-00500.tfrecord\r\nshard-00026-of-00500.tfrecord shard-00076-of-00500.tfrecord shard-00126-of-00500.tfrecord shard-00176-of-00500.tfrecord shard-00226-of-00500.tfrecord shard-00276-of-00500.tfrecord shard-00326-of-00500.tfrecord shard-00376-of-00500.tfrecord shard-00426-of-00500.tfrecord shard-00476-of-00500.tfrecord\r\nshard-00027-of-00500.tfrecord shard-00077-of-00500.tfrecord shard-00127-of-00500.tfrecord shard-00177-of-00500.tfrecord shard-00227-of-00500.tfrecord shard-00277-of-00500.tfrecord shard-00327-of-00500.tfrecord shard-00377-of-00500.tfrecord shard-00427-of-00500.tfrecord shard-00477-of-00500.tfrecord\r\nshard-00028-of-00500.tfrecord shard-00078-of-00500.tfrecord shard-00128-of-00500.tfrecord shard-00178-of-00500.tfrecord shard-00228-of-00500.tfrecord shard-00278-of-00500.tfrecord shard-00328-of-00500.tfrecord shard-00378-of-00500.tfrecord shard-00428-of-00500.tfrecord shard-00478-of-00500.tfrecord\r\nshard-00029-of-00500.tfrecord shard-00079-of-00500.tfrecord shard-00129-of-00500.tfrecord shard-00179-of-00500.tfrecord shard-00229-of-00500.tfrecord shard-00279-of-00500.tfrecord shard-00329-of-00500.tfrecord shard-00379-of-00500.tfrecord shard-00429-of-00500.tfrecord shard-00479-of-00500.tfrecord\r\nshard-00030-of-00500.tfrecord shard-00080-of-00500.tfrecord shard-00130-of-00500.tfrecord shard-00180-of-00500.tfrecord shard-00230-of-00500.tfrecord shard-00280-of-00500.tfrecord shard-00330-of-00500.tfrecord shard-00380-of-00500.tfrecord shard-00430-of-00500.tfrecord shard-00480-of-00500.tfrecord\r\nshard-00031-of-00500.tfrecord shard-00081-of-00500.tfrecord shard-00131-of-00500.tfrecord shard-00181-of-00500.tfrecord shard-00231-of-00500.tfrecord shard-00281-of-00500.tfrecord shard-00331-of-00500.tfrecord shard-00381-of-00500.tfrecord shard-00431-of-00500.tfrecord shard-00481-of-00500.tfrecord\r\nshard-00032-of-00500.tfrecord shard-00082-of-00500.tfrecord shard-00132-of-00500.tfrecord shard-00182-of-00500.tfrecord shard-00232-of-00500.tfrecord shard-00282-of-00500.tfrecord shard-00332-of-00500.tfrecord shard-00382-of-00500.tfrecord shard-00432-of-00500.tfrecord shard-00482-of-00500.tfrecord\r\nshard-00033-of-00500.tfrecord shard-00083-of-00500.tfrecord shard-00133-of-00500.tfrecord shard-00183-of-00500.tfrecord shard-00233-of-00500.tfrecord shard-00283-of-00500.tfrecord shard-00333-of-00500.tfrecord shard-00383-of-00500.tfrecord shard-00433-of-00500.tfrecord shard-00483-of-00500.tfrecord\r\nshard-00034-of-00500.tfrecord shard-00084-of-00500.tfrecord shard-00134-of-00500.tfrecord shard-00184-of-00500.tfrecord shard-00234-of-00500.tfrecord shard-00284-of-00500.tfrecord shard-00334-of-00500.tfrecord shard-00384-of-00500.tfrecord shard-00434-of-00500.tfrecord shard-00484-of-00500.tfrecord\r\nshard-00035-of-00500.tfrecord shard-00085-of-00500.tfrecord shard-00135-of-00500.tfrecord shard-00185-of-00500.tfrecord shard-00235-of-00500.tfrecord shard-00285-of-00500.tfrecord shard-00335-of-00500.tfrecord shard-00385-of-00500.tfrecord shard-00435-of-00500.tfrecord shard-00485-of-00500.tfrecord\r\nshard-00036-of-00500.tfrecord shard-00086-of-00500.tfrecord shard-00136-of-00500.tfrecord shard-00186-of-00500.tfrecord shard-00236-of-00500.tfrecord shard-00286-of-00500.tfrecord shard-00336-of-00500.tfrecord shard-00386-of-00500.tfrecord shard-00436-of-00500.tfrecord shard-00486-of-00500.tfrecord\r\nshard-00037-of-00500.tfrecord shard-00087-of-00500.tfrecord shard-00137-of-00500.tfrecord shard-00187-of-00500.tfrecord shard-00237-of-00500.tfrecord shard-00287-of-00500.tfrecord shard-00337-of-00500.tfrecord shard-00387-of-00500.tfrecord shard-00437-of-00500.tfrecord shard-00487-of-00500.tfrecord\r\nshard-00038-of-00500.tfrecord shard-00088-of-00500.tfrecord shard-00138-of-00500.tfrecord shard-00188-of-00500.tfrecord shard-00238-of-00500.tfrecord shard-00288-of-00500.tfrecord shard-00338-of-00500.tfrecord shard-00388-of-00500.tfrecord shard-00438-of-00500.tfrecord shard-00488-of-00500.tfrecord\r\nshard-00039-of-00500.tfrecord shard-00089-of-00500.tfrecord shard-00139-of-00500.tfrecord shard-00189-of-00500.tfrecord shard-00239-of-00500.tfrecord shard-00289-of-00500.tfrecord shard-00339-of-00500.tfrecord shard-00389-of-00500.tfrecord shard-00439-of-00500.tfrecord shard-00489-of-00500.tfrecord\r\nshard-00040-of-00500.tfrecord shard-00090-of-00500.tfrecord shard-00140-of-00500.tfrecord shard-00190-of-00500.tfrecord shard-00240-of-00500.tfrecord shard-00290-of-00500.tfrecord shard-00340-of-00500.tfrecord shard-00390-of-00500.tfrecord shard-00440-of-00500.tfrecord shard-00490-of-00500.tfrecord\r\nshard-00041-of-00500.tfrecord shard-00091-of-00500.tfrecord shard-00141-of-00500.tfrecord shard-00191-of-00500.tfrecord shard-00241-of-00500.tfrecord shard-00291-of-00500.tfrecord shard-00341-of-00500.tfrecord shard-00391-of-00500.tfrecord shard-00441-of-00500.tfrecord shard-00491-of-00500.tfrecord\r\nshard-00042-of-00500.tfrecord shard-00092-of-00500.tfrecord shard-00142-of-00500.tfrecord shard-00192-of-00500.tfrecord shard-00242-of-00500.tfrecord shard-00292-of-00500.tfrecord shard-00342-of-00500.tfrecord shard-00392-of-00500.tfrecord shard-00442-of-00500.tfrecord shard-00492-of-00500.tfrecord\r\nshard-00043-of-00500.tfrecord shard-00093-of-00500.tfrecord shard-00143-of-00500.tfrecord shard-00193-of-00500.tfrecord shard-00243-of-00500.tfrecord shard-00293-of-00500.tfrecord shard-00343-of-00500.tfrecord shard-00393-of-00500.tfrecord shard-00443-of-00500.tfrecord shard-00493-of-00500.tfrecord\r\nshard-00044-of-00500.tfrecord shard-00094-of-00500.tfrecord shard-00144-of-00500.tfrecord shard-00194-of-00500.tfrecord shard-00244-of-00500.tfrecord shard-00294-of-00500.tfrecord shard-00344-of-00500.tfrecord shard-00394-of-00500.tfrecord shard-00444-of-00500.tfrecord shard-00494-of-00500.tfrecord\r\nshard-00045-of-00500.tfrecord shard-00095-of-00500.tfrecord shard-00145-of-00500.tfrecord shard-00195-of-00500.tfrecord shard-00245-of-00500.tfrecord shard-00295-of-00500.tfrecord shard-00345-of-00500.tfrecord shard-00395-of-00500.tfrecord shard-00445-of-00500.tfrecord shard-00495-of-00500.tfrecord\r\nshard-00046-of-00500.tfrecord shard-00096-of-00500.tfrecord shard-00146-of-00500.tfrecord shard-00196-of-00500.tfrecord shard-00246-of-00500.tfrecord shard-00296-of-00500.tfrecord shard-00346-of-00500.tfrecord shard-00396-of-00500.tfrecord shard-00446-of-00500.tfrecord shard-00496-of-00500.tfrecord\r\nshard-00047-of-00500.tfrecord shard-00097-of-00500.tfrecord shard-00147-of-00500.tfrecord shard-00197-of-00500.tfrecord shard-00247-of-00500.tfrecord shard-00297-of-00500.tfrecord shard-00347-of-00500.tfrecord shard-00397-of-00500.tfrecord shard-00447-of-00500.tfrecord shard-00497-of-00500.tfrecord\r\nshard-00048-of-00500.tfrecord shard-00098-of-00500.tfrecord shard-00148-of-00500.tfrecord shard-00198-of-00500.tfrecord shard-00248-of-00500.tfrecord shard-00298-of-00500.tfrecord shard-00348-of-00500.tfrecord shard-00398-of-00500.tfrecord shard-00448-of-00500.tfrecord shard-00498-of-00500.tfrecord\r\nshard-00049-of-00500.tfrecord shard-00099-of-00500.tfrecord shard-00149-of-00500.tfrecord shard-00199-of-00500.tfrecord shard-00249-of-00500.tfrecord shard-00299-of-00500.tfrecord shard-00349-of-00500.tfrecord shard-00399-of-00500.tfrecord shard-00449-of-00500.tfrecord shard-00499-of-00500.tfrecord\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards]633;D;0",,terminal_output +359,323498,"TERMINAL",0,0,"pwd",,terminal_command +360,323509,"TERMINAL",0,0,"]633;E;2025-06-26 19:37:43 pwd;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards]633;D;0",,terminal_output +361,326280,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",668,0,"",shellscript,selection_mouse +362,326289,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",667,0,"",shellscript,selection_command +363,326962,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",643,0,"",shellscript,selection_command +364,327152,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",600,0,"",shellscript,selection_command +365,327465,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",643,0,"",shellscript,selection_command +366,328332,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",600,0,"",shellscript,selection_command +367,332165,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",576,0,"\n",shellscript,content +368,333044,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",577,0,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards",shellscript,content +369,333049,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",663,0,"",shellscript,selection_command +370,333554,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",575,0,"",shellscript,selection_command +371,334307,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",542,35,"",shellscript,content +372,335701,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",542,0,"'",shellscript,content +373,335702,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",543,0,"",shellscript,selection_keyboard +374,335960,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",542,0,"",shellscript,selection_command +375,336164,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",630,0,"",shellscript,selection_command +376,336473,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",630,0,"'",shellscript,content +377,336473,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",631,0,"",shellscript,selection_keyboard +378,336938,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",630,0,"",shellscript,selection_command +379,337776,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",630,0,"/",shellscript,content +380,337778,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",631,0,"",shellscript,selection_keyboard +381,337992,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",630,0,"",shellscript,selection_command +382,338193,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",697,0,"",shellscript,selection_command +383,341687,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",830,0,"",shellscript,selection_command +384,343236,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",813,0,"",shellscript,selection_command +385,345136,"TERMINAL",0,0,"cd ..",,terminal_command +386,345143,"TERMINAL",0,0,"]633;E;2025-06-26 19:38:04 cd ..;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data]633;D;0",,terminal_output +387,346301,"TERMINAL",0,0,"cd ..",,terminal_command +388,346303,"TERMINAL",0,0,"]633;E;2025-06-26 19:38:06 cd ..;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +389,347483,"TERMINAL",0,0,"ls",,terminal_command +390,347496,"TERMINAL",0,0,"]633;E;2025-06-26 19:38:07 ls;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;Ccheckpoints data logs scripts\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +391,350865,"TERMINAL",0,0,"binger",,terminal_command +392,350866,"TERMINAL",0,0,"]633;E;2025-06-26 19:38:10 binger;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0]633;P;Cwd=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared",,terminal_output +393,352064,"TERMINAL",0,0,"pwd",,terminal_command +394,352066,"TERMINAL",0,0,"]633;E;2025-06-26 19:38:11 pwd;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0]633;P;Cwd=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared",,terminal_output +395,354481,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",526,0,"",shellscript,selection_mouse +396,355437,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",526,0,"/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared",shellscript,content +397,355443,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",580,0,"",shellscript,selection_command +398,356037,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",526,0,"",shellscript,selection_command +399,356519,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",526,0,"w",shellscript,content +400,356520,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",527,0,"",shellscript,selection_keyboard +401,356695,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",527,0,"s",shellscript,content +402,356696,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",528,0,"",shellscript,selection_keyboard +403,356930,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",528,0,"_",shellscript,content +404,356931,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",529,0,"",shellscript,selection_keyboard +405,357529,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",756,0,"\ntf_records_dir=$ws_dir/data/knoms_tfrecords_500_shards/",shellscript,content +406,357530,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",525,165,"",shellscript,content +407,358409,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",526,0,"",shellscript,selection_command +408,358580,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",592,0,"",shellscript,selection_command +409,361698,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",648,0,"",shellscript,selection_command +410,361910,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",649,0,"",shellscript,selection_command +411,363214,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",779,0,"",shellscript,selection_command +412,363966,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",785,0,"",shellscript,selection_command +413,367870,"TERMINAL",0,0,"cd checkpoints/",,terminal_command +414,367872,"TERMINAL",0,0,"]633;E;2025-06-26 19:38:27 cd checkpoints/;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints]633;D;0",,terminal_output +415,368242,"TERMINAL",0,0,"ls",,terminal_command +416,368292,"TERMINAL",0,0,"]633;E;2025-06-26 19:38:28 ls;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C",,terminal_output +417,368385,"TERMINAL",0,0,"0000 3290284 3290296 3290367 3290392 3290440 3292213 3292258 3292329 3292331 3292333 3292335 3292337 3292339 3294601 3294603 3296540 3296573 3296575 lam\r\n3290283 3290295 3290366 3290391 3290439 3291405 3292221 3292328 3292330 3292332 3292334 3292336 3292338 3294600 3294602 3296502 3296571 3296574 dyn tokenizer\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints]633;D;0",,terminal_output +418,370887,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",762,0,"",shellscript,selection_command +419,371131,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",724,0,"",shellscript,selection_command +420,371162,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",701,0,"",shellscript,selection_command +421,371189,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",696,0,"",shellscript,selection_command +422,371220,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",671,0,"",shellscript,selection_command +423,371253,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",648,0,"",shellscript,selection_command +424,371604,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",614,0,"",shellscript,selection_command +425,372695,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",648,0,"",shellscript,selection_command +426,372935,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",671,0,"",shellscript,selection_command +427,372963,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",696,0,"",shellscript,selection_command +428,372990,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",701,0,"",shellscript,selection_command +429,373025,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",724,0,"",shellscript,selection_command +430,373064,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",762,0,"",shellscript,selection_command +431,373096,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",785,0,"",shellscript,selection_command +432,373607,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",786,0,"",shellscript,selection_command +433,373932,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",797,0,"",shellscript,selection_command +434,374275,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",798,0,"tokenizer/",shellscript,content +435,374276,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",808,0,"",shellscript,selection_command +436,374950,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",855,0,"",shellscript,selection_command +437,384844,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",857,0,"",shellscript,selection_command +438,385380,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,selection_command +439,386344,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,19,"#!/usr/bin/env bash",shellscript,selection_command +440,386849,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,selection_command +441,387253,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,1,"#",shellscript,selection_command +442,387506,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,1182,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=05:00:00\n#SBATCH --account=hk-project-p0023960\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_2_node\n#SBATCH --mem=100G\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_500_shards/\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\ntags=(""const-lr"" ""tokenizer"" ""batch-size-scaling"" ""2-node"")\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/tokenizer/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --min_lr=3e-4 \\n --max_lr=3e-4 \\n --log_image_interval=250 \\n --log \\n --name=$job_name-$slurm_job_id \\n --tags $tags \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,selection_command +443,388114,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,selection_command +444,390282,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,tab +445,391003,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1113,0,"",shellscript,selection_command +446,391340,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1113,0,"\n",shellscript,content +447,391815,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1114,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=2\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=05:00:00\n#SBATCH --account=hk-project-p0023960\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_2_node\n#SBATCH --mem=100G\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_500_shards/\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\ntags=(""const-lr"" ""tokenizer"" ""batch-size-scaling"" ""2-node"")\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/tokenizer/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=96 \\n --min_lr=3e-4 \\n --max_lr=3e-4 \\n --log_image_interval=250 \\n --log \\n --name=$job_name-$slurm_job_id \\n --tags $tags \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,content +448,391820,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1114,0,"",shellscript,selection_command +449,392394,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1113,0,"",shellscript,selection_command +450,392768,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1082,0,"",shellscript,selection_command +451,393198,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",732,0,"",shellscript,selection_command +452,393357,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",714,0,"",shellscript,selection_command +453,393518,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",629,0,"",shellscript,selection_command +454,393673,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",576,0,"",shellscript,selection_command +455,393851,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",459,0,"",shellscript,selection_command +456,394473,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",576,0,"",shellscript,selection_command +457,394636,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",629,0,"",shellscript,selection_command +458,394767,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",714,0,"",shellscript,selection_command +459,394923,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",732,0,"",shellscript,selection_command +460,398545,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1114,1182,"",shellscript,content +461,398561,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1114,0,"",shellscript,selection_command +462,399436,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",0,0,"",shellscript,tab +463,399437,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",504,0,"",shellscript,selection_mouse +464,400082,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +465,401092,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",777,0,"",shellscript,selection_mouse +466,401949,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,tab +467,401950,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",601,0,"",shellscript,selection_mouse +468,401957,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",600,0,"",shellscript,selection_command +469,402444,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",340,0,"",shellscript,selection_mouse +470,403329,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,selection_command +471,403466,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",20,0,"",shellscript,selection_command +472,403712,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",21,0,"",shellscript,selection_command +473,403739,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",39,0,"",shellscript,selection_command +474,403938,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",67,0,"",shellscript,selection_command +475,405710,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",91,0,"",shellscript,selection_command +476,406744,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +477,407523,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,selection_command +478,407596,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",20,0,"",shellscript,selection_command +479,407846,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",21,0,"",shellscript,selection_command +480,407876,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",39,0,"",shellscript,selection_command +481,407904,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",67,0,"",shellscript,selection_command +482,408000,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",91,0,"",shellscript,selection_command +483,408690,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,tab +484,409142,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",90,0,"\n",shellscript,content +485,409567,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",91,0,"\n#SBATCH --account=hk-project-p0023960",shellscript,content +486,409572,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",92,0,"",shellscript,selection_command +487,410130,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",91,0,"",shellscript,selection_command +488,410408,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",91,1,"",shellscript,content +489,413760,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",129,0,"",shellscript,selection_command +490,414117,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",161,0,"",shellscript,selection_command +491,414955,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",187,0,"",shellscript,selection_command +492,415413,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",208,0,"",shellscript,selection_command +493,415788,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",288,0,"_tokenizer",shellscript,content +494,415788,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",243,0,"_tokenizer",shellscript,content +495,416222,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",264,0,"",shellscript,selection_command +496,416391,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",319,0,"",shellscript,selection_command +497,417590,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",380,0,"",shellscript,selection_command +498,418913,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",380,18,"",shellscript,content +499,419157,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +500,419474,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",129,0,"",shellscript,selection_command +501,419738,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",161,0,"",shellscript,selection_command +502,419756,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",187,0,"",shellscript,selection_command +503,419790,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",208,0,"",shellscript,selection_command +504,419823,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",264,0,"",shellscript,selection_command +505,419857,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",319,0,"",shellscript,selection_command +506,420035,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",380,0,"",shellscript,selection_command +507,420440,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",380,19,"",shellscript,content +508,421143,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",381,0,"",shellscript,selection_command +509,421315,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",405,0,"",shellscript,selection_command +510,421572,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",412,0,"",shellscript,selection_command +511,421597,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",413,0,"",shellscript,selection_command +512,421629,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",443,0,"",shellscript,selection_command +513,421663,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",473,0,"",shellscript,selection_command +514,421700,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",505,0,"",shellscript,selection_command +515,421730,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",506,0,"",shellscript,selection_command +516,422239,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",507,0,"",shellscript,selection_command +517,422527,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",573,0,"",shellscript,selection_command +518,423156,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",507,122,"",shellscript,content +519,423296,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",507,0,"ws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_500_shards/\n",shellscript,content +520,423300,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",573,0,"",shellscript,selection_command +521,423618,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,tab +522,424065,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",381,0,"",shellscript,selection_command +523,424310,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",405,0,"",shellscript,selection_command +524,424339,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",412,0,"",shellscript,selection_command +525,424376,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",413,0,"",shellscript,selection_command +526,424406,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",443,0,"",shellscript,selection_command +527,424441,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",473,0,"",shellscript,selection_command +528,424473,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",499,0,"",shellscript,selection_command +529,424835,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",499,0,"\n",shellscript,content +530,425180,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",500,0,"\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_500_shards/",shellscript,content +531,425184,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",501,0,"",shellscript,selection_command +532,425566,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",567,0,"",shellscript,selection_command +533,425802,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",623,0,"",shellscript,selection_command +534,426126,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",623,116,"",shellscript,content +535,427985,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",624,0,"",shellscript,selection_command +536,428232,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",649,0,"",shellscript,selection_command +537,431314,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",712,0,"tokenizer/",shellscript,content +538,431315,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",722,0,"",shellscript,selection_command +539,432172,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",676,0,"\n",shellscript,content +540,432618,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",677,0,"\n",shellscript,content +541,432938,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",677,0,"",shellscript,selection_command +542,433338,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",677,0,"t",shellscript,content +543,433340,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",678,0,"",shellscript,selection_keyboard +544,433469,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",678,0,"a",shellscript,content +545,433471,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",679,0,"",shellscript,selection_keyboard +546,433539,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",679,0,"g",shellscript,content +547,433540,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",680,0,"",shellscript,selection_keyboard +548,433990,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",680,0,"s=(""const-lr"" ""tokenizer"" ""batch-size-scaling"" ""1-node"")",shellscript,content +549,435672,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",735,0,"",shellscript,selection_command +550,436912,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",737,0,"",shellscript,selection_command +551,437171,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",796,0,"",shellscript,selection_command +552,437198,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",830,0,"",shellscript,selection_command +553,437234,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",832,0,"",shellscript,selection_command +554,437266,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",848,0,"",shellscript,selection_command +555,437300,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",850,0,"",shellscript,selection_command +556,437333,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",882,0,"",shellscript,selection_command +557,437365,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",915,0,"",shellscript,selection_command +558,437398,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",937,0,"",shellscript,selection_command +559,437432,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",957,0,"",shellscript,selection_command +560,437462,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",977,0,"",shellscript,selection_command +561,437494,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1008,0,"",shellscript,selection_command +562,437526,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1020,0,"",shellscript,selection_command +563,437559,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1080,0,"",shellscript,selection_command +564,437711,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1150,0,"",shellscript,selection_command +565,438064,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1176,0,"",shellscript,selection_command +566,438339,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1150,0,"",shellscript,selection_command +567,439793,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1149,0,"s",shellscript,content +568,439793,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1142,7,"",shellscript,content +569,439793,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1138,3,"",shellscript,content +570,439793,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1127,10,"",shellscript,content +571,439793,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1126,0,"$",shellscript,content +572,439794,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1105,21,"",shellscript,content +573,439794,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1076,0,"am",shellscript,content +574,439794,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1069,7,"",shellscript,content +575,439794,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1068,0,"_",shellscript,content +576,439794,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1053,15,"",shellscript,content +577,439794,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1044,8,"",shellscript,content +578,439794,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1043,0,"$j",shellscript,content +579,439794,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1033,10,"",shellscript,content +580,440621,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1070,5,"",shellscript,content +581,440638,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1070,0,"const-lr tokenizer batch-size-scaling 1-node",shellscript,content +582,440642,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1033,8,"",shellscript,content +583,440645,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1033,0,"const-lr-tokenizer-batch-size-scaling-1-nod",shellscript,content +584,440647,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1111,0,"",shellscript,selection_command +585,445027,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",677,59,"",shellscript,content +586,445033,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",677,0,"",shellscript,selection_command +587,446660,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",677,0,"t",shellscript,content +588,446661,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",678,0,"",shellscript,selection_keyboard +589,446764,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",678,0,"a",shellscript,content +590,446765,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",679,0,"",shellscript,selection_keyboard +591,446862,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",679,0,"g",shellscript,content +592,446863,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",680,0,"",shellscript,selection_keyboard +593,447030,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",680,0,"s",shellscript,content +594,447031,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",681,0,"",shellscript,selection_keyboard +595,449902,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",677,4,"tags",shellscript,content +596,453032,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",681,0,"=",shellscript,content +597,453034,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",682,0,"",shellscript,selection_keyboard +598,453476,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",682,0,"()",shellscript,content +599,453478,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",683,0,"",shellscript,selection_keyboard +600,455040,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +601,455777,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",629,0,"",shellscript,selection_command +602,455978,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",630,0,"",shellscript,selection_command +603,456273,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,tab +604,457279,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",683,0,"c",shellscript,content +605,457280,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",684,0,"",shellscript,selection_keyboard +606,457337,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",684,0,"o",shellscript,content +607,457338,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",685,0,"",shellscript,selection_keyboard +608,457401,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",685,0,"n",shellscript,content +609,457402,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",686,0,"",shellscript,selection_keyboard +610,458327,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",686,0,"st-lr tokenizer batch-size-scaling 1-node",shellscript,content +611,459365,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1141,0,"s",shellscript,content +612,459365,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1134,7,"",shellscript,content +613,459365,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1130,3,"",shellscript,content +614,459365,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1119,10,"",shellscript,content +615,459366,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1118,0,"$",shellscript,content +616,459366,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1097,21,"",shellscript,content +617,459366,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1068,0,"am",shellscript,content +618,459366,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1061,7,"",shellscript,content +619,459366,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1060,0,"_",shellscript,content +620,459366,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1045,15,"",shellscript,content +621,459366,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1036,8,"",shellscript,content +622,459366,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1035,0,"$j",shellscript,content +623,459366,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1025,10,"",shellscript,content +624,460276,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1017,0,"",shellscript,selection_command +625,460440,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1054,0,"",shellscript,selection_command +626,461088,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1073,0,"",shellscript,selection_command +627,461995,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1054,0,"",shellscript,selection_command +628,462243,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1017,0,"",shellscript,selection_command +629,462269,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1005,0,"",shellscript,selection_command +630,462299,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",974,0,"",shellscript,selection_command +631,462337,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",954,0,"",shellscript,selection_command +632,462371,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",934,0,"",shellscript,selection_command +633,462405,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",912,0,"",shellscript,selection_command +634,462437,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",879,0,"",shellscript,selection_command +635,462470,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",846,0,"",shellscript,selection_command +636,462504,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",842,0,"",shellscript,selection_command +637,462537,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",828,0,"",shellscript,selection_command +638,462570,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",824,0,"",shellscript,selection_command +639,462602,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",802,0,"",shellscript,selection_command +640,462635,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",733,0,"",shellscript,selection_command +641,462668,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",729,0,"",shellscript,selection_command +642,462701,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",680,0,"",shellscript,selection_command +643,462735,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",676,0,"",shellscript,selection_command +644,462770,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",652,0,"",shellscript,selection_command +645,462804,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",627,0,"",shellscript,selection_command +646,462837,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",623,0,"",shellscript,selection_command +647,462873,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",570,0,"",shellscript,selection_command +648,462905,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",504,0,"",shellscript,selection_command +649,462937,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",500,0,"",shellscript,selection_command +650,462973,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",499,0,"",shellscript,selection_command +651,463004,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",476,0,"",shellscript,selection_command +652,463313,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",446,0,"",shellscript,selection_command +653,463493,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",416,0,"",shellscript,selection_command +654,463742,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",412,0,"",shellscript,selection_command +655,463936,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",408,0,"",shellscript,selection_command +656,464120,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",384,0,"",shellscript,selection_command +657,464259,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",380,0,"",shellscript,selection_command +658,464736,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",384,0,"",shellscript,selection_command +659,464981,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",408,0,"",shellscript,selection_command +660,465006,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",412,0,"",shellscript,selection_command +661,465038,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",416,0,"",shellscript,selection_command +662,465072,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",446,0,"",shellscript,selection_command +663,465105,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",476,0,"",shellscript,selection_command +664,465547,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",499,0,"",shellscript,selection_command +665,465732,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",500,0,"",shellscript,selection_command +666,465982,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",504,0,"",shellscript,selection_command +667,466006,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",570,0,"",shellscript,selection_command +668,466040,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",623,0,"",shellscript,selection_command +669,466073,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",627,0,"",shellscript,selection_command +670,466106,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",652,0,"",shellscript,selection_command +671,466139,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",676,0,"",shellscript,selection_command +672,466173,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",680,0,"",shellscript,selection_command +673,466477,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",729,0,"",shellscript,selection_command +674,466884,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",733,0,"",shellscript,selection_command +675,467802,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",729,0,"",shellscript,selection_command +676,467969,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",680,0,"",shellscript,selection_command +677,468337,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",729,0,"",shellscript,selection_command +678,468536,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",733,0,"",shellscript,selection_command +679,469700,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",802,0,"",shellscript,selection_command +680,470238,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",824,0,"",shellscript,selection_command +681,470537,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",828,0,"",shellscript,selection_command +682,470816,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",842,0,"",shellscript,selection_command +683,471013,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",846,0,"",shellscript,selection_command +684,471178,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",879,0,"",shellscript,selection_command +685,471788,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",912,0,"",shellscript,selection_command +686,472022,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",934,0,"",shellscript,selection_command +687,472271,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",954,0,"",shellscript,selection_command +688,472554,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",974,0,"",shellscript,selection_command +689,472740,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1005,0,"",shellscript,selection_command +690,472903,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1017,0,"",shellscript,selection_command +691,473105,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1054,0,"",shellscript,selection_command +692,473326,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1073,0,"",shellscript,selection_command +693,473519,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1099,0,"",shellscript,selection_command +694,473685,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1121,0,"",shellscript,selection_command +695,473884,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",1149,0,"",shellscript,selection_command +696,477942,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,selection_command +697,481528,"TERMINAL",0,0,"dinger",,terminal_command +698,481539,"TERMINAL",0,0,"]633;E;2025-06-26 19:40:21 dinger;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar",,terminal_output +699,485232,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",20,0,"",shellscript,selection_command +700,485487,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",21,0,"",shellscript,selection_command +701,485510,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",39,0,"",shellscript,selection_command +702,485544,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",67,0,"",shellscript,selection_command +703,485578,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",91,0,"",shellscript,selection_command +704,485611,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",129,0,"",shellscript,selection_command +705,485645,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",161,0,"",shellscript,selection_command +706,485679,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",187,0,"",shellscript,selection_command +707,485713,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",208,0,"",shellscript,selection_command +708,485746,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",264,0,"",shellscript,selection_command +709,485780,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",319,0,"",shellscript,selection_command +710,485814,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",380,0,"",shellscript,selection_command +711,485846,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",381,0,"",shellscript,selection_command +712,485880,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",405,0,"",shellscript,selection_command +713,485913,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",412,0,"",shellscript,selection_command +714,485948,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",413,0,"",shellscript,selection_command +715,485981,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",443,0,"",shellscript,selection_command +716,486153,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",473,0,"",shellscript,selection_command +717,486865,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",485,0,"",shellscript,selection_command +718,487253,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",486,0,"",shellscript,selection_command +719,487697,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",485,0,"",shellscript,selection_command +720,488405,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",485,0,"_",shellscript,content +721,488406,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",486,0,"",shellscript,selection_keyboard +722,488630,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",486,0,"j",shellscript,content +723,488631,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",487,0,"",shellscript,selection_keyboard +724,488740,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",487,0,"a",shellscript,content +725,488741,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",488,0,"",shellscript,selection_keyboard +726,488842,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",488,0,"f",shellscript,content +727,488843,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",489,0,"",shellscript,selection_keyboard +728,489023,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",489,0,"a",shellscript,content +729,489025,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",490,0,"",shellscript,selection_keyboard +730,489125,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",490,0,"r",shellscript,content +731,489126,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",491,0,"",shellscript,selection_keyboard +732,489781,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",490,0,"",shellscript,selection_command +733,1086065,"TERMINAL",0,0,"",,terminal_focus +734,1087228,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",0,0,"",shellscript,tab +735,1087230,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_2_nodes.sbatch",506,0,"",shellscript,selection_mouse +736,1087367,"slurm/dev/alfred/train_lam/train_lam_full.sbatch",0,0,"",shellscript,tab +737,1090196,"TERMINAL",0,0,"binger",,terminal_command +738,1090201,"TERMINAL",0,0,"]633;E;2025-06-26 19:50:30 binger;d5dda0dc-d7ec-449c-8a93-be0ca3180c02]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +739,1090716,"TERMINAL",0,0,"bash",,terminal_focus +740,1091842,"TERMINAL",0,0,"queue",,terminal_command +741,1091892,"TERMINAL",0,0,"]633;E;2025-06-26 19:50:31 queue;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C",,terminal_output +742,1091960,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Thu Jun 26 19:50:31 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)",,terminal_output +743,1093011,"TERMINAL",0,0,"2",,terminal_output +744,1093223,"TERMINAL",0,0,"bash",,terminal_focus +745,1094046,"TERMINAL",0,0,"3",,terminal_output +746,1095090,"TERMINAL",0,0,"4",,terminal_output +747,1096137,"TERMINAL",0,0,"5",,terminal_output +748,1097179,"TERMINAL",0,0,"6",,terminal_output +749,1098229,"TERMINAL",0,0,"7",,terminal_output +750,1099276,"TERMINAL",0,0,"9",,terminal_output +751,1100308,"TERMINAL",0,0,"40",,terminal_output +752,1101374,"TERMINAL",0,0,"1",,terminal_output +753,1101706,"TERMINAL",0,0,"cd data/",,terminal_command +754,1101718,"TERMINAL",0,0,"]633;E;2025-06-26 19:50:41 cd data/;d5dda0dc-d7ec-449c-8a93-be0ca3180c02]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data]633;D;0",,terminal_output +755,1102398,"TERMINAL",0,0,"2",,terminal_output +756,1103448,"TERMINAL",0,0,"3",,terminal_output +757,1104496,"TERMINAL",0,0,"4",,terminal_output +758,1105559,"TERMINAL",0,0,"5",,terminal_output +759,1106604,"TERMINAL",0,0,"6",,terminal_output +760,1107657,"TERMINAL",0,0,"7",,terminal_output +761,1108702,"TERMINAL",0,0,"8",,terminal_output +762,1109171,"TERMINAL",0,0,"cd open_ai_minecraft_first_try_npy/",,terminal_command +763,1109181,"TERMINAL",0,0,"]633;E;2025-06-26 19:50:48 cd open_ai_minecraft_first_try_npy/;d5dda0dc-d7ec-449c-8a93-be0ca3180c02]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_npy]633;D;0",,terminal_output +764,1109655,"TERMINAL",0,0,"ls",,terminal_command +765,1109706,"TERMINAL",0,0,"]633;E;2025-06-26 19:50:49 ls;d5dda0dc-d7ec-449c-8a93-be0ca3180c02]633;C",,terminal_output +766,1109737,"TERMINAL",0,0,"9",,terminal_output +767,1109746,"TERMINAL",0,0,"10xx 6xx 7xx 8xx 9xx\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_first_try_npy]633;D;0",,terminal_output +768,1110793,"TERMINAL",0,0,"50",,terminal_output +769,1111841,"TERMINAL",0,0,"1",,terminal_output +770,1112897,"TERMINAL",0,0,"2",,terminal_output +771,1113951,"TERMINAL",0,0,"3",,terminal_output +772,1115000,"TERMINAL",0,0,"4",,terminal_output +773,1116046,"TERMINAL",0,0,"5",,terminal_output +774,1116829,"TERMINAL",0,0,"du -sh .",,terminal_command +775,1116881,"TERMINAL",0,0,"]633;E;2025-06-26 19:50:56 du -sh .;d5dda0dc-d7ec-449c-8a93-be0ca3180c02]633;C",,terminal_output +776,1117098,"TERMINAL",0,0,"6",,terminal_output +777,1118166,"TERMINAL",0,0,"7",,terminal_output +778,1118389,"TERMINAL",0,0,"",,terminal_focus +779,1119178,"TERMINAL",0,0,"8",,terminal_output +780,1120217,"TERMINAL",0,0,"9",,terminal_output +781,1121261,"TERMINAL",0,0,"1:00",,terminal_output +782,1121346,"TERMINAL",0,0,"binger",,terminal_command +783,1121360,"TERMINAL",0,0,"]633;E;2025-06-26 19:51:01 binger;9ccbdc58-2623-4eb4-ae83-c699191db22f]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared]633;D;0",,terminal_output +784,1122311,"TERMINAL",0,0,"2",,terminal_output +785,1123355,"TERMINAL",0,0,"3",,terminal_output +786,1124410,"TERMINAL",0,0,"4",,terminal_output +787,1125452,"TERMINAL",0,0,"5",,terminal_output +788,1126491,"TERMINAL",0,0,"6",,terminal_output +789,1127530,"TERMINAL",0,0,"7",,terminal_output +790,1128580,"TERMINAL",0,0,"8",,terminal_output +791,1129626,"TERMINAL",0,0,"9",,terminal_output +792,1130679,"TERMINAL",0,0,"10",,terminal_output +793,1131703,"TERMINAL",0,0,"1",,terminal_output +794,1132742,"TERMINAL",0,0,"2",,terminal_output +795,1133791,"TERMINAL",0,0,"3",,terminal_output +796,1134839,"TERMINAL",0,0,"4",,terminal_output +797,1135888,"TERMINAL",0,0,"5",,terminal_output +798,1136942,"TERMINAL",0,0,"6",,terminal_output +799,1137982,"TERMINAL",0,0,"7",,terminal_output +800,1139023,"TERMINAL",0,0,"8",,terminal_output +801,1140074,"TERMINAL",0,0,"9",,terminal_output +802,1141118,"TERMINAL",0,0,"20",,terminal_output +803,1142154,"TERMINAL",0,0,"1",,terminal_output +804,1143203,"TERMINAL",0,0,"2",,terminal_output +805,1144244,"TERMINAL",0,0,"3",,terminal_output +806,1145284,"TERMINAL",0,0,"5",,terminal_output +807,1146331,"TERMINAL",0,0,"6",,terminal_output +808,1146372,"TERMINAL",0,0,"cd data/open_ai_minecraft_npy/",,terminal_command +809,1146377,"TERMINAL",0,0,"]633;E;2025-06-26 19:51:26 cd data/open_ai_minecraft_npy/;9ccbdc58-2623-4eb4-ae83-c699191db22f]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy]633;D;0",,terminal_output +810,1146887,"TERMINAL",0,0,"ls",,terminal_command +811,1146897,"TERMINAL",0,0,"]633;E;2025-06-26 19:51:26 ls;9ccbdc58-2623-4eb4-ae83-c699191db22f]633;C10fps_160x90\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy]633;D;0",,terminal_output +812,1147371,"TERMINAL",0,0,"7",,terminal_output +813,1148411,"TERMINAL",0,0,"8",,terminal_output +814,1149449,"TERMINAL",0,0,"9",,terminal_output +815,1149675,"TERMINAL",0,0,"cd 10fps_160x90/",,terminal_command +816,1149680,"TERMINAL",0,0,"]633;E;2025-06-26 19:51:29 cd 10fps_160x90/;9ccbdc58-2623-4eb4-ae83-c699191db22f]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy/10fps_160x90]633;D;0",,terminal_output +817,1150488,"TERMINAL",0,0,"30",,terminal_output +818,1151538,"TERMINAL",0,0,"1",,terminal_output +819,1152581,"TERMINAL",0,0,"2",,terminal_output +820,1153610,"TERMINAL",0,0,"cd ..",,terminal_command +821,1153614,"TERMINAL",0,0,"]633;E;2025-06-26 19:51:33 cd ..;9ccbdc58-2623-4eb4-ae83-c699191db22f]633;C]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy]633;D;0",,terminal_output +822,1153625,"TERMINAL",0,0,"3",,terminal_output +823,1154655,"TERMINAL",0,0,"4",,terminal_output +824,1155703,"TERMINAL",0,0,"5",,terminal_output +825,1156746,"TERMINAL",0,0,"6",,terminal_output +826,1156816,"TERMINAL",0,0,"du -sh .",,terminal_command +827,1156868,"TERMINAL",0,0,"]633;E;2025-06-26 19:51:36 du -sh .;9ccbdc58-2623-4eb4-ae83-c699191db22f]633;C",,terminal_output +828,1157939,"TERMINAL",0,0,"7",,terminal_output +829,1158926,"TERMINAL",0,0,"8",,terminal_output +830,1159928,"TERMINAL",0,0,"9",,terminal_output +831,1161921,"TERMINAL",0,0,"40",,terminal_output +832,1162922,"TERMINAL",0,0,"1",,terminal_output +833,1163924,"TERMINAL",0,0,"2",,terminal_output +834,1164923,"TERMINAL",0,0,"3",,terminal_output +835,1165923,"TERMINAL",0,0,"4",,terminal_output +836,1166925,"TERMINAL",0,0,"5",,terminal_output +837,1167924,"TERMINAL",0,0,"6",,terminal_output +838,1168922,"TERMINAL",0,0,"7",,terminal_output +839,1169922,"TERMINAL",0,0,"8",,terminal_output +840,1170922,"TERMINAL",0,0,"50",,terminal_output +841,1171923,"TERMINAL",0,0,"1",,terminal_output +842,1172922,"TERMINAL",0,0,"2",,terminal_output +843,1173926,"TERMINAL",0,0,"3",,terminal_output +844,1174923,"TERMINAL",0,0,"4",,terminal_output +845,1175921,"TERMINAL",0,0,"5",,terminal_output +846,1176922,"TERMINAL",0,0,"6",,terminal_output +847,1177921,"TERMINAL",0,0,"7",,terminal_output +848,1178947,"TERMINAL",0,0,"8",,terminal_output +849,1180938,"TERMINAL",0,0,"9",,terminal_output +850,1181921,"TERMINAL",0,0,"2:00",,terminal_output +851,1181923,"TERMINAL",0,0,"1",,terminal_output +852,1182923,"TERMINAL",0,0,"2",,terminal_output +853,1183922,"TERMINAL",0,0,"3",,terminal_output +854,1184925,"TERMINAL",0,0,"4",,terminal_output +855,1186934,"TERMINAL",0,0,"5",,terminal_output +856,1187927,"TERMINAL",0,0,"6",,terminal_output +857,1188924,"TERMINAL",0,0,"7",,terminal_output +858,1189922,"TERMINAL",0,0,"8",,terminal_output +859,1190929,"TERMINAL",0,0,"9",,terminal_output +860,1191925,"TERMINAL",0,0,"10",,terminal_output +861,1192924,"TERMINAL",0,0,"1",,terminal_output +862,1193922,"TERMINAL",0,0,"3",,terminal_output +863,1194925,"TERMINAL",0,0,"4",,terminal_output +864,1195925,"TERMINAL",0,0,"5",,terminal_output +865,1196921,"TERMINAL",0,0,"6",,terminal_output +866,1197924,"TERMINAL",0,0,"7",,terminal_output +867,1198924,"TERMINAL",0,0,"8",,terminal_output +868,1199924,"TERMINAL",0,0,"9",,terminal_output +869,1201926,"TERMINAL",0,0,"20",,terminal_output +870,1201928,"TERMINAL",0,0,"1",,terminal_output +871,1202924,"TERMINAL",0,0,"2",,terminal_output +872,1203925,"TERMINAL",0,0,"3",,terminal_output +873,1204865,"TERMINAL",0,0,"4.2T\t.\r\n]0;tum_ind3695@hkn1993:/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft_npy]633;D;0",,terminal_output +874,1204924,"TERMINAL",0,0,"4",,terminal_output +875,1206924,"TERMINAL",0,0,"5",,terminal_output +876,1206926,"TERMINAL",0,0,"6",,terminal_output +877,1207924,"TERMINAL",0,0,"7",,terminal_output +878,1209926,"TERMINAL",0,0,"8",,terminal_output +879,1210923,"TERMINAL",0,0,"30",,terminal_output +880,1211927,"TERMINAL",0,0,"1",,terminal_output +881,1212923,"TERMINAL",0,0,"2",,terminal_output +882,1213924,"TERMINAL",0,0,"3",,terminal_output +883,1214926,"TERMINAL",0,0,"4",,terminal_output +884,1215927,"TERMINAL",0,0,"5",,terminal_output +885,1226931,"TERMINAL",0,0,"6",,terminal_output +886,1226931,"TERMINAL",0,0,"7",,terminal_output +887,1226931,"TERMINAL",0,0,"8",,terminal_output +888,1226931,"TERMINAL",0,0,"9",,terminal_output +889,1226931,"TERMINAL",0,0,"40",,terminal_output +890,1226931,"TERMINAL",0,0,"1",,terminal_output +891,1226931,"TERMINAL",0,0,"2",,terminal_output +892,1226931,"TERMINAL",0,0,"3",,terminal_output +893,1226931,"TERMINAL",0,0,"4",,terminal_output +894,1286947,"TERMINAL",0,0,"5",,terminal_output +895,1286947,"TERMINAL",0,0,"6",,terminal_output +896,1286947,"TERMINAL",0,0,"7",,terminal_output +897,1286947,"TERMINAL",0,0,"8",,terminal_output +898,1286947,"TERMINAL",0,0,"9",,terminal_output +899,1286947,"TERMINAL",0,0,"50",,terminal_output +900,1286947,"TERMINAL",0,0,"1",,terminal_output +901,1286947,"TERMINAL",0,0,"3",,terminal_output +902,1286947,"TERMINAL",0,0,"4",,terminal_output +903,1286947,"TERMINAL",0,0,"5",,terminal_output +904,1286947,"TERMINAL",0,0,"6",,terminal_output +905,1286947,"TERMINAL",0,0,"7",,terminal_output +906,1286947,"TERMINAL",0,0,"8",,terminal_output +907,1286947,"TERMINAL",0,0,"9",,terminal_output +908,1286947,"TERMINAL",0,0,"3:00",,terminal_output +909,1286947,"TERMINAL",0,0,"1",,terminal_output +910,1286947,"TERMINAL",0,0,"2",,terminal_output +911,1286947,"TERMINAL",0,0,"3",,terminal_output +912,1286947,"TERMINAL",0,0,"4",,terminal_output +913,1286947,"TERMINAL",0,0,"5",,terminal_output +914,1286947,"TERMINAL",0,0,"6",,terminal_output +915,1286947,"TERMINAL",0,0,"7",,terminal_output +916,1286947,"TERMINAL",0,0,"8",,terminal_output +917,1286947,"TERMINAL",0,0,"9",,terminal_output +918,1286947,"TERMINAL",0,0,"10",,terminal_output +919,1286947,"TERMINAL",0,0,"1",,terminal_output +920,1286947,"TERMINAL",0,0,"2",,terminal_output +921,1286947,"TERMINAL",0,0,"3",,terminal_output +922,1286947,"TERMINAL",0,0,"5",,terminal_output +923,1286947,"TERMINAL",0,0,"6",,terminal_output +924,1286947,"TERMINAL",0,0,"7",,terminal_output +925,1286947,"TERMINAL",0,0,"8",,terminal_output +926,1286947,"TERMINAL",0,0,"9",,terminal_output +927,1286949,"TERMINAL",0,0,"20",,terminal_output +928,1286949,"TERMINAL",0,0,"1",,terminal_output +929,1286949,"TERMINAL",0,0,"2",,terminal_output +930,1286949,"TERMINAL",0,0,"3",,terminal_output +931,1286949,"TERMINAL",0,0,"4",,terminal_output +932,1286949,"TERMINAL",0,0,"5",,terminal_output +933,1286949,"TERMINAL",0,0,"6",,terminal_output +934,1286949,"TERMINAL",0,0,"7",,terminal_output +935,1286949,"TERMINAL",0,0,"8",,terminal_output +936,1286949,"TERMINAL",0,0,"9",,terminal_output +937,1286949,"TERMINAL",0,0,"30",,terminal_output +938,1286949,"TERMINAL",0,0,"1",,terminal_output +939,1286949,"TERMINAL",0,0,"2",,terminal_output +940,1286949,"TERMINAL",0,0,"3",,terminal_output +941,1286949,"TERMINAL",0,0,"4",,terminal_output +942,1286949,"TERMINAL",0,0,"5",,terminal_output +943,1286949,"TERMINAL",0,0,"6",,terminal_output +944,1286949,"TERMINAL",0,0,"7",,terminal_output +945,1286949,"TERMINAL",0,0,"9",,terminal_output +946,1286949,"TERMINAL",0,0,"40",,terminal_output +947,1286949,"TERMINAL",0,0,"1",,terminal_output +948,1286949,"TERMINAL",0,0,"2",,terminal_output +949,1286949,"TERMINAL",0,0,"3",,terminal_output +950,1286949,"TERMINAL",0,0,"4",,terminal_output +951,1286949,"TERMINAL",0,0,"5",,terminal_output +952,1346963,"TERMINAL",0,0,"6",,terminal_output +953,1346964,"TERMINAL",0,0,"7",,terminal_output +954,1346964,"TERMINAL",0,0,"8",,terminal_output +955,1346964,"TERMINAL",0,0,"9",,terminal_output +956,1346964,"TERMINAL",0,0,"50",,terminal_output +957,1346964,"TERMINAL",0,0,"1",,terminal_output +958,1346964,"TERMINAL",0,0,"2",,terminal_output +959,1346964,"TERMINAL",0,0,"3",,terminal_output +960,1346964,"TERMINAL",0,0,"4",,terminal_output +961,1346964,"TERMINAL",0,0,"5",,terminal_output +962,1346964,"TERMINAL",0,0,"6",,terminal_output +963,1346964,"TERMINAL",0,0,"7",,terminal_output +964,1346964,"TERMINAL",0,0,"8",,terminal_output +965,1346964,"TERMINAL",0,0,"9",,terminal_output +966,1346964,"TERMINAL",0,0,"4:00",,terminal_output +967,1346964,"TERMINAL",0,0,"2",,terminal_output +968,1346964,"TERMINAL",0,0,"3",,terminal_output +969,1346964,"TERMINAL",0,0,"4",,terminal_output +970,1346964,"TERMINAL",0,0,"5",,terminal_output +971,1346964,"TERMINAL",0,0,"6",,terminal_output +972,1346964,"TERMINAL",0,0,"7",,terminal_output +973,1346964,"TERMINAL",0,0,"8",,terminal_output +974,1346964,"TERMINAL",0,0,"9",,terminal_output +975,1346964,"TERMINAL",0,0,"10",,terminal_output +976,1346964,"TERMINAL",0,0,"1",,terminal_output +977,1346964,"TERMINAL",0,0,"2",,terminal_output +978,1346964,"TERMINAL",0,0,"3",,terminal_output +979,1346964,"TERMINAL",0,0,"4",,terminal_output +980,1346964,"TERMINAL",0,0,"5",,terminal_output +981,1346964,"TERMINAL",0,0,"6",,terminal_output +982,1346964,"TERMINAL",0,0,"7",,terminal_output +983,1346964,"TERMINAL",0,0,"8",,terminal_output +984,1346964,"TERMINAL",0,0,"9",,terminal_output +985,1346964,"TERMINAL",0,0,"20",,terminal_output +986,1346964,"TERMINAL",0,0,"1",,terminal_output +987,1346964,"TERMINAL",0,0,"2",,terminal_output +988,1346964,"TERMINAL",0,0,"3",,terminal_output +989,1346964,"TERMINAL",0,0,"5",,terminal_output +990,1346964,"TERMINAL",0,0,"6",,terminal_output +991,1346964,"TERMINAL",0,0,"7",,terminal_output +992,1346964,"TERMINAL",0,0,"8",,terminal_output +993,1346964,"TERMINAL",0,0,"9",,terminal_output +994,1346964,"TERMINAL",0,0,"30",,terminal_output +995,1346964,"TERMINAL",0,0,"1",,terminal_output +996,1346965,"TERMINAL",0,0,"2",,terminal_output +997,1346965,"TERMINAL",0,0,"3",,terminal_output +998,1346965,"TERMINAL",0,0,"4",,terminal_output +999,1346965,"TERMINAL",0,0,"5",,terminal_output +1000,1346965,"TERMINAL",0,0,"6",,terminal_output +1001,1346965,"TERMINAL",0,0,"7",,terminal_output +1002,1346965,"TERMINAL",0,0,"8",,terminal_output +1003,1346965,"TERMINAL",0,0,"9",,terminal_output +1004,1346965,"TERMINAL",0,0,"40",,terminal_output +1005,1346965,"TERMINAL",0,0,"2",,terminal_output +1006,1346965,"TERMINAL",0,0,"3",,terminal_output +1007,1346965,"TERMINAL",0,0,"4",,terminal_output +1008,1346965,"TERMINAL",0,0,"5",,terminal_output +1009,1406937,"TERMINAL",0,0,"6",,terminal_output +1010,1406937,"TERMINAL",0,0,"7",,terminal_output +1011,1406937,"TERMINAL",0,0,"8",,terminal_output +1012,1406937,"TERMINAL",0,0,"9",,terminal_output +1013,1406937,"TERMINAL",0,0,"50",,terminal_output +1014,1406937,"TERMINAL",0,0,"1",,terminal_output +1015,1406937,"TERMINAL",0,0,"2",,terminal_output +1016,1406937,"TERMINAL",0,0,"3",,terminal_output +1017,1406937,"TERMINAL",0,0,"4",,terminal_output +1018,1406937,"TERMINAL",0,0,"5",,terminal_output +1019,1406937,"TERMINAL",0,0,"6",,terminal_output +1020,1406937,"TERMINAL",0,0,"7",,terminal_output +1021,1406937,"TERMINAL",0,0,"8",,terminal_output +1022,1406937,"TERMINAL",0,0,"9",,terminal_output +1023,1406937,"TERMINAL",0,0,"5:00",,terminal_output +1024,1406937,"TERMINAL",0,0,"1",,terminal_output +1025,1406937,"TERMINAL",0,0,"2",,terminal_output +1026,1406937,"TERMINAL",0,0,"4",,terminal_output +1027,1406937,"TERMINAL",0,0,"5",,terminal_output +1028,1406937,"TERMINAL",0,0,"6",,terminal_output +1029,1406937,"TERMINAL",0,0,"7",,terminal_output +1030,1406937,"TERMINAL",0,0,"8",,terminal_output +1031,1406937,"TERMINAL",0,0,"9",,terminal_output +1032,1406937,"TERMINAL",0,0,"10",,terminal_output +1033,1406937,"TERMINAL",0,0,"1",,terminal_output +1034,1406937,"TERMINAL",0,0,"2",,terminal_output +1035,1406937,"TERMINAL",0,0,"3",,terminal_output +1036,1406937,"TERMINAL",0,0,"4",,terminal_output +1037,1406937,"TERMINAL",0,0,"5",,terminal_output +1038,1406937,"TERMINAL",0,0,"6",,terminal_output +1039,1406937,"TERMINAL",0,0,"7",,terminal_output +1040,1406937,"TERMINAL",0,0,"8",,terminal_output +1041,1406937,"TERMINAL",0,0,"9",,terminal_output +1042,1406937,"TERMINAL",0,0,"20",,terminal_output +1043,1406937,"TERMINAL",0,0,"1",,terminal_output +1044,1406937,"TERMINAL",0,0,"2",,terminal_output +1045,1406937,"TERMINAL",0,0,"3",,terminal_output +1046,1406937,"TERMINAL",0,0,"4",,terminal_output +1047,1406937,"TERMINAL",0,0,"6",,terminal_output +1048,1406937,"TERMINAL",0,0,"7",,terminal_output +1049,1406937,"TERMINAL",0,0,"8",,terminal_output +1050,1406937,"TERMINAL",0,0,"9",,terminal_output +1051,1406937,"TERMINAL",0,0,"30",,terminal_output +1052,1406937,"TERMINAL",0,0,"1",,terminal_output +1053,1406937,"TERMINAL",0,0,"2",,terminal_output +1054,1406937,"TERMINAL",0,0,"3",,terminal_output +1055,1406937,"TERMINAL",0,0,"4",,terminal_output +1056,1406937,"TERMINAL",0,0,"5",,terminal_output +1057,1406937,"TERMINAL",0,0,"6",,terminal_output +1058,1406937,"TERMINAL",0,0,"7",,terminal_output +1059,1406937,"TERMINAL",0,0,"8",,terminal_output +1060,1406937,"TERMINAL",0,0,"9",,terminal_output +1061,1406937,"TERMINAL",0,0,"40",,terminal_output +1062,1406937,"TERMINAL",0,0,"1",,terminal_output +1063,1406937,"TERMINAL",0,0,"2",,terminal_output +1064,1406937,"TERMINAL",0,0,"3",,terminal_output +1065,1406937,"TERMINAL",0,0,"4",,terminal_output +1066,1466953,"TERMINAL",0,0,"5",,terminal_output +1067,1466954,"TERMINAL",0,0,"7",,terminal_output +1068,1466954,"TERMINAL",0,0,"8",,terminal_output +1069,1466954,"TERMINAL",0,0,"9",,terminal_output +1070,1466954,"TERMINAL",0,0,"50",,terminal_output +1071,1466954,"TERMINAL",0,0,"1",,terminal_output +1072,1466954,"TERMINAL",0,0,"2",,terminal_output +1073,1466954,"TERMINAL",0,0,"3",,terminal_output +1074,1466954,"TERMINAL",0,0,"4",,terminal_output +1075,1466954,"TERMINAL",0,0,"5",,terminal_output +1076,1466954,"TERMINAL",0,0,"6",,terminal_output +1077,1466954,"TERMINAL",0,0,"7",,terminal_output +1078,1466954,"TERMINAL",0,0,"8",,terminal_output +1079,1466954,"TERMINAL",0,0,"9",,terminal_output +1080,1466954,"TERMINAL",0,0,"6:00",,terminal_output +1081,1466954,"TERMINAL",0,0,"1",,terminal_output +1082,1466954,"TERMINAL",0,0,"2",,terminal_output +1083,1466954,"TERMINAL",0,0,"3",,terminal_output +1084,1466954,"TERMINAL",0,0,"4",,terminal_output +1085,1466954,"TERMINAL",0,0,"5",,terminal_output +1086,1466954,"TERMINAL",0,0,"6",,terminal_output +1087,1466954,"TERMINAL",0,0,"7",,terminal_output +1088,1466954,"TERMINAL",0,0,"8",,terminal_output +1089,1466954,"TERMINAL",0,0,"9",,terminal_output +1090,1466954,"TERMINAL",0,0,"11",,terminal_output +1091,1466954,"TERMINAL",0,0,"2",,terminal_output +1092,1466954,"TERMINAL",0,0,"3",,terminal_output +1093,1466954,"TERMINAL",0,0,"4",,terminal_output +1094,1466954,"TERMINAL",0,0,"5",,terminal_output +1095,1466954,"TERMINAL",0,0,"6",,terminal_output +1096,1466954,"TERMINAL",0,0,"7",,terminal_output +1097,1466954,"TERMINAL",0,0,"8",,terminal_output +1098,1466954,"TERMINAL",0,0,"9",,terminal_output +1099,1466954,"TERMINAL",0,0,"20",,terminal_output +1100,1466954,"TERMINAL",0,0,"1",,terminal_output +1101,1466954,"TERMINAL",0,0,"2",,terminal_output +1102,1466954,"TERMINAL",0,0,"3",,terminal_output +1103,1466954,"TERMINAL",0,0,"4",,terminal_output +1104,1466954,"TERMINAL",0,0,"5",,terminal_output +1105,1466954,"TERMINAL",0,0,"6",,terminal_output +1106,1466954,"TERMINAL",0,0,"7",,terminal_output +1107,1466954,"TERMINAL",0,0,"8",,terminal_output +1108,1466955,"TERMINAL",0,0,"9",,terminal_output +1109,1466955,"TERMINAL",0,0,"31",,terminal_output +1110,1466955,"TERMINAL",0,0,"2",,terminal_output +1111,1466955,"TERMINAL",0,0,"3",,terminal_output +1112,1466955,"TERMINAL",0,0,"4",,terminal_output +1113,1466955,"TERMINAL",0,0,"5",,terminal_output +1114,1466955,"TERMINAL",0,0,"6",,terminal_output +1115,1466955,"TERMINAL",0,0,"7",,terminal_output +1116,1466955,"TERMINAL",0,0,"8",,terminal_output +1117,1466955,"TERMINAL",0,0,"9",,terminal_output +1118,1466955,"TERMINAL",0,0,"40",,terminal_output +1119,1466955,"TERMINAL",0,0,"1",,terminal_output +1120,1466955,"TERMINAL",0,0,"2",,terminal_output +1121,1466955,"TERMINAL",0,0,"3",,terminal_output +1122,1466955,"TERMINAL",0,0,"4",,terminal_output +1123,1526970,"TERMINAL",0,0,"5",,terminal_output +1124,1526971,"TERMINAL",0,0,"6",,terminal_output +1125,1526971,"TERMINAL",0,0,"7",,terminal_output +1126,1526971,"TERMINAL",0,0,"8",,terminal_output +1127,1526971,"TERMINAL",0,0,"9",,terminal_output +1128,1526971,"TERMINAL",0,0,"50",,terminal_output +1129,1526971,"TERMINAL",0,0,"2",,terminal_output +1130,1526971,"TERMINAL",0,0,"3",,terminal_output +1131,1526971,"TERMINAL",0,0,"4",,terminal_output +1132,1526971,"TERMINAL",0,0,"5",,terminal_output +1133,1526971,"TERMINAL",0,0,"6",,terminal_output +1134,1526971,"TERMINAL",0,0,"7",,terminal_output +1135,1526971,"TERMINAL",0,0,"8",,terminal_output +1136,1526971,"TERMINAL",0,0,"9",,terminal_output +1137,1526971,"TERMINAL",0,0,"7:00",,terminal_output +1138,1526971,"TERMINAL",0,0,"1",,terminal_output +1139,1526971,"TERMINAL",0,0,"2",,terminal_output +1140,1526971,"TERMINAL",0,0,"3",,terminal_output +1141,1526971,"TERMINAL",0,0,"4",,terminal_output +1142,1526971,"TERMINAL",0,0,"5",,terminal_output +1143,1526971,"TERMINAL",0,0,"6",,terminal_output +1144,1526971,"TERMINAL",0,0,"7",,terminal_output +1145,1526971,"TERMINAL",0,0,"8",,terminal_output +1146,1526971,"TERMINAL",0,0,"9",,terminal_output +1147,1526971,"TERMINAL",0,0,"10",,terminal_output +1148,1526971,"TERMINAL",0,0,"1",,terminal_output +1149,1526971,"TERMINAL",0,0,"2",,terminal_output +1150,1526971,"TERMINAL",0,0,"4",,terminal_output +1151,1526971,"TERMINAL",0,0,"5",,terminal_output +1152,1526971,"TERMINAL",0,0,"6",,terminal_output +1153,1526971,"TERMINAL",0,0,"7",,terminal_output +1154,1526971,"TERMINAL",0,0,"8",,terminal_output +1155,1526971,"TERMINAL",0,0,"9",,terminal_output +1156,1526971,"TERMINAL",0,0,"20",,terminal_output +1157,1526971,"TERMINAL",0,0,"1",,terminal_output +1158,1526971,"TERMINAL",0,0,"2",,terminal_output +1159,1526971,"TERMINAL",0,0,"3",,terminal_output +1160,1526971,"TERMINAL",0,0,"4",,terminal_output +1161,1526971,"TERMINAL",0,0,"5",,terminal_output +1162,1526971,"TERMINAL",0,0,"6",,terminal_output +1163,1526971,"TERMINAL",0,0,"7",,terminal_output +1164,1526971,"TERMINAL",0,0,"8",,terminal_output +1165,1526971,"TERMINAL",0,0,"9",,terminal_output +1166,1526971,"TERMINAL",0,0,"30",,terminal_output +1167,1526971,"TERMINAL",0,0,"1",,terminal_output +1168,1526971,"TERMINAL",0,0,"2",,terminal_output +1169,1526971,"TERMINAL",0,0,"3",,terminal_output +1170,1526971,"TERMINAL",0,0,"4",,terminal_output +1171,1526971,"TERMINAL",0,0,"5",,terminal_output +1172,1526971,"TERMINAL",0,0,"7",,terminal_output +1173,1526972,"TERMINAL",0,0,"8",,terminal_output +1174,1526972,"TERMINAL",0,0,"9",,terminal_output +1175,1526972,"TERMINAL",0,0,"40",,terminal_output +1176,1526972,"TERMINAL",0,0,"1",,terminal_output +1177,1526972,"TERMINAL",0,0,"2",,terminal_output +1178,1526972,"TERMINAL",0,0,"3",,terminal_output +1179,1526972,"TERMINAL",0,0,"4",,terminal_output +1180,1526972,"TERMINAL",0,0,"5",,terminal_output +1181,1586966,"TERMINAL",0,0,"6",,terminal_output +1182,1586968,"TERMINAL",0,0,"7",,terminal_output +1183,1586968,"TERMINAL",0,0,"8",,terminal_output +1184,1586968,"TERMINAL",0,0,"9",,terminal_output +1185,1586968,"TERMINAL",0,0,"50",,terminal_output +1186,1586968,"TERMINAL",0,0,"1",,terminal_output +1187,1586968,"TERMINAL",0,0,"2",,terminal_output +1188,1586968,"TERMINAL",0,0,"3",,terminal_output +1189,1586968,"TERMINAL",0,0,"4",,terminal_output +1190,1586968,"TERMINAL",0,0,"5",,terminal_output +1191,1586968,"TERMINAL",0,0,"6",,terminal_output +1192,1586968,"TERMINAL",0,0,"7",,terminal_output +1193,1586968,"TERMINAL",0,0,"8",,terminal_output +1194,1586968,"TERMINAL",0,0,"9",,terminal_output +1195,1586968,"TERMINAL",0,0,"8:01",,terminal_output +1196,1586968,"TERMINAL",0,0,"2",,terminal_output +1197,1586969,"TERMINAL",0,0,"3",,terminal_output +1198,1586969,"TERMINAL",0,0,"4",,terminal_output +1199,1586969,"TERMINAL",0,0,"5",,terminal_output +1200,1586969,"TERMINAL",0,0,"6",,terminal_output +1201,1586969,"TERMINAL",0,0,"7",,terminal_output +1202,1586969,"TERMINAL",0,0,"8",,terminal_output +1203,1586969,"TERMINAL",0,0,"9",,terminal_output +1204,1586969,"TERMINAL",0,0,"10",,terminal_output +1205,1586969,"TERMINAL",0,0,"1",,terminal_output +1206,1586969,"TERMINAL",0,0,"2",,terminal_output +1207,1586969,"TERMINAL",0,0,"3",,terminal_output +1208,1586969,"TERMINAL",0,0,"4",,terminal_output +1209,1586969,"TERMINAL",0,0,"5",,terminal_output +1210,1586969,"TERMINAL",0,0,"6",,terminal_output +1211,1586969,"TERMINAL",0,0,"7",,terminal_output +1212,1586969,"TERMINAL",0,0,"8",,terminal_output +1213,1586969,"TERMINAL",0,0,"9",,terminal_output +1214,1586969,"TERMINAL",0,0,"20",,terminal_output +1215,1586969,"TERMINAL",0,0,"1",,terminal_output +1216,1586969,"TERMINAL",0,0,"2",,terminal_output +1217,1586969,"TERMINAL",0,0,"3",,terminal_output +1218,1586969,"TERMINAL",0,0,"5",,terminal_output +1219,1586969,"TERMINAL",0,0,"6",,terminal_output +1220,1586969,"TERMINAL",0,0,"7",,terminal_output +1221,1586969,"TERMINAL",0,0,"8",,terminal_output +1222,1586969,"TERMINAL",0,0,"9",,terminal_output +1223,1586969,"TERMINAL",0,0,"30",,terminal_output +1224,1586969,"TERMINAL",0,0,"1",,terminal_output +1225,1586969,"TERMINAL",0,0,"2",,terminal_output +1226,1586969,"TERMINAL",0,0,"3",,terminal_output +1227,1586969,"TERMINAL",0,0,"4",,terminal_output +1228,1586969,"TERMINAL",0,0,"5",,terminal_output +1229,1586969,"TERMINAL",0,0,"6",,terminal_output +1230,1586969,"TERMINAL",0,0,"7",,terminal_output +1231,1586969,"TERMINAL",0,0,"8",,terminal_output +1232,1586969,"TERMINAL",0,0,"9",,terminal_output +1233,1586969,"TERMINAL",0,0,"40",,terminal_output +1234,1586969,"TERMINAL",0,0,"2",,terminal_output +1235,1586969,"TERMINAL",0,0,"3",,terminal_output +1236,1586969,"TERMINAL",0,0,"4",,terminal_output +1237,1586969,"TERMINAL",0,0,"5",,terminal_output +1238,1646936,"TERMINAL",0,0,"6",,terminal_output +1239,1646937,"TERMINAL",0,0,"7",,terminal_output +1240,1646937,"TERMINAL",0,0,"8",,terminal_output +1241,1646937,"TERMINAL",0,0,"9",,terminal_output +1242,1646937,"TERMINAL",0,0,"50",,terminal_output +1243,1646937,"TERMINAL",0,0,"1",,terminal_output +1244,1646937,"TERMINAL",0,0,"2",,terminal_output +1245,1646937,"TERMINAL",0,0,"3",,terminal_output +1246,1646937,"TERMINAL",0,0,"4",,terminal_output +1247,1646937,"TERMINAL",0,0,"5",,terminal_output +1248,1646937,"TERMINAL",0,0,"6",,terminal_output +1249,1646937,"TERMINAL",0,0,"7",,terminal_output +1250,1646937,"TERMINAL",0,0,"8",,terminal_output +1251,1646937,"TERMINAL",0,0,"9",,terminal_output +1252,1646937,"TERMINAL",0,0,"9:00",,terminal_output +1253,1646937,"TERMINAL",0,0,"1",,terminal_output +1254,1646937,"TERMINAL",0,0,"2",,terminal_output +1255,1646937,"TERMINAL",0,0,"4",,terminal_output +1256,1646937,"TERMINAL",0,0,"5",,terminal_output +1257,1646937,"TERMINAL",0,0,"6",,terminal_output +1258,1646937,"TERMINAL",0,0,"7",,terminal_output +1259,1646937,"TERMINAL",0,0,"8",,terminal_output +1260,1646937,"TERMINAL",0,0,"9",,terminal_output +1261,1646937,"TERMINAL",0,0,"10",,terminal_output +1262,1646937,"TERMINAL",0,0,"1",,terminal_output +1263,1646937,"TERMINAL",0,0,"2",,terminal_output +1264,1646937,"TERMINAL",0,0,"3",,terminal_output +1265,1646937,"TERMINAL",0,0,"4",,terminal_output +1266,1646937,"TERMINAL",0,0,"5",,terminal_output +1267,1646937,"TERMINAL",0,0,"6",,terminal_output +1268,1646937,"TERMINAL",0,0,"7",,terminal_output +1269,1646937,"TERMINAL",0,0,"8",,terminal_output +1270,1646937,"TERMINAL",0,0,"9",,terminal_output +1271,1646937,"TERMINAL",0,0,"20",,terminal_output +1272,1646937,"TERMINAL",0,0,"1",,terminal_output +1273,1646937,"TERMINAL",0,0,"2",,terminal_output +1274,1646937,"TERMINAL",0,0,"3",,terminal_output +1275,1646937,"TERMINAL",0,0,"4",,terminal_output +1276,1646938,"TERMINAL",0,0,"5",,terminal_output +1277,1646938,"TERMINAL",0,0,"7",,terminal_output +1278,1646938,"TERMINAL",0,0,"8",,terminal_output +1279,1646938,"TERMINAL",0,0,"9",,terminal_output +1280,1646938,"TERMINAL",0,0,"30",,terminal_output +1281,1646938,"TERMINAL",0,0,"1",,terminal_output +1282,1646938,"TERMINAL",0,0,"2",,terminal_output +1283,1646938,"TERMINAL",0,0,"3",,terminal_output +1284,1646938,"TERMINAL",0,0,"4",,terminal_output +1285,1646938,"TERMINAL",0,0,"5",,terminal_output +1286,1646938,"TERMINAL",0,0,"6",,terminal_output +1287,1646938,"TERMINAL",0,0,"7",,terminal_output +1288,1646938,"TERMINAL",0,0,"8",,terminal_output +1289,1646938,"TERMINAL",0,0,"9",,terminal_output +1290,1646938,"TERMINAL",0,0,"40",,terminal_output +1291,1646938,"TERMINAL",0,0,"1",,terminal_output +1292,1646938,"TERMINAL",0,0,"2",,terminal_output +1293,1646938,"TERMINAL",0,0,"3",,terminal_output +1294,1646938,"TERMINAL",0,0,"4",,terminal_output +1295,1706960,"TERMINAL",0,0,"5",,terminal_output +1296,1706960,"TERMINAL",0,0,"6",,terminal_output +1297,1706960,"TERMINAL",0,0,"7",,terminal_output +1298,1706960,"TERMINAL",0,0,"9",,terminal_output +1299,1706960,"TERMINAL",0,0,"50",,terminal_output +1300,1706960,"TERMINAL",0,0,"1",,terminal_output +1301,1706960,"TERMINAL",0,0,"2",,terminal_output +1302,1706960,"TERMINAL",0,0,"3",,terminal_output +1303,1706960,"TERMINAL",0,0,"4",,terminal_output +1304,1706960,"TERMINAL",0,0,"5",,terminal_output +1305,1706960,"TERMINAL",0,0,"6",,terminal_output +1306,1706960,"TERMINAL",0,0,"7",,terminal_output +1307,1706960,"TERMINAL",0,0,"8",,terminal_output +1308,1706960,"TERMINAL",0,0,"9",,terminal_output +1309,1706960,"TERMINAL",0,0,"20:00:00",,terminal_output +1310,1706960,"TERMINAL",0,0,"1",,terminal_output +1311,1706960,"TERMINAL",0,0,"2",,terminal_output +1312,1706960,"TERMINAL",0,0,"3",,terminal_output +1313,1706960,"TERMINAL",0,0,"4",,terminal_output +1314,1706960,"TERMINAL",0,0,"5",,terminal_output +1315,1706960,"TERMINAL",0,0,"6",,terminal_output +1316,1706960,"TERMINAL",0,0,"7",,terminal_output +1317,1706960,"TERMINAL",0,0,"8",,terminal_output +1318,1706960,"TERMINAL",0,0,"9",,terminal_output +1319,1706960,"TERMINAL",0,0,"11",,terminal_output +1320,1706960,"TERMINAL",0,0,"2",,terminal_output +1321,1706960,"TERMINAL",0,0,"3",,terminal_output +1322,1706960,"TERMINAL",0,0,"4",,terminal_output +1323,1706960,"TERMINAL",0,0,"5",,terminal_output +1324,1706960,"TERMINAL",0,0,"6",,terminal_output +1325,1706960,"TERMINAL",0,0,"7",,terminal_output +1326,1706960,"TERMINAL",0,0,"8",,terminal_output +1327,1706960,"TERMINAL",0,0,"9",,terminal_output +1328,1706960,"TERMINAL",0,0,"20",,terminal_output +1329,1706960,"TERMINAL",0,0,"1",,terminal_output +1330,1706960,"TERMINAL",0,0,"2",,terminal_output +1331,1706960,"TERMINAL",0,0,"3",,terminal_output +1332,1706960,"TERMINAL",0,0,"4",,terminal_output +1333,1706960,"TERMINAL",0,0,"5",,terminal_output +1334,1706960,"TERMINAL",0,0,"6",,terminal_output +1335,1706960,"TERMINAL",0,0,"7",,terminal_output +1336,1706960,"TERMINAL",0,0,"8",,terminal_output +1337,1706960,"TERMINAL",0,0,"9",,terminal_output +1338,1706960,"TERMINAL",0,0,"30",,terminal_output +1339,1706960,"TERMINAL",0,0,"2",,terminal_output +1340,1706960,"TERMINAL",0,0,"3",,terminal_output +1341,1706960,"TERMINAL",0,0,"4",,terminal_output +1342,1706960,"TERMINAL",0,0,"5",,terminal_output +1343,1706960,"TERMINAL",0,0,"6",,terminal_output +1344,1706960,"TERMINAL",0,0,"7",,terminal_output +1345,1706960,"TERMINAL",0,0,"8",,terminal_output +1346,1706960,"TERMINAL",0,0,"9",,terminal_output +1347,1706960,"TERMINAL",0,0,"40",,terminal_output +1348,1706960,"TERMINAL",0,0,"1",,terminal_output +1349,1706960,"TERMINAL",0,0,"2",,terminal_output +1350,1706960,"TERMINAL",0,0,"3",,terminal_output +1351,1706960,"TERMINAL",0,0,"4",,terminal_output +1352,1766961,"TERMINAL",0,0,"5",,terminal_output +1353,1766961,"TERMINAL",0,0,"6",,terminal_output +1354,1766961,"TERMINAL",0,0,"7",,terminal_output +1355,1766961,"TERMINAL",0,0,"8",,terminal_output +1356,1766961,"TERMINAL",0,0,"9",,terminal_output +1357,1766961,"TERMINAL",0,0,"50",,terminal_output +1358,1766961,"TERMINAL",0,0,"2",,terminal_output +1359,1766961,"TERMINAL",0,0,"3",,terminal_output +1360,1766961,"TERMINAL",0,0,"4",,terminal_output +1361,1766961,"TERMINAL",0,0,"5",,terminal_output +1362,1766961,"TERMINAL",0,0,"6",,terminal_output +1363,1766961,"TERMINAL",0,0,"7",,terminal_output +1364,1766961,"TERMINAL",0,0,"8",,terminal_output +1365,1766961,"TERMINAL",0,0,"9",,terminal_output +1366,1766961,"TERMINAL",0,0,"1:00",,terminal_output +1367,1766962,"TERMINAL",0,0,"1",,terminal_output +1368,1766962,"TERMINAL",0,0,"2",,terminal_output +1369,1766962,"TERMINAL",0,0,"3",,terminal_output +1370,1766962,"TERMINAL",0,0,"4",,terminal_output +1371,1766962,"TERMINAL",0,0,"5",,terminal_output +1372,1766962,"TERMINAL",0,0,"67",,terminal_output +1373,1766962,"TERMINAL",0,0,"8",,terminal_output +1374,1766962,"TERMINAL",0,0,"9",,terminal_output +1375,1766962,"TERMINAL",0,0,"10",,terminal_output +1376,1766962,"TERMINAL",0,0,"1",,terminal_output +1377,1766962,"TERMINAL",0,0,"2",,terminal_output +1378,1766962,"TERMINAL",0,0,"3",,terminal_output +1379,1766962,"TERMINAL",0,0,"5",,terminal_output +1380,1766962,"TERMINAL",0,0,"6",,terminal_output +1381,1766962,"TERMINAL",0,0,"7",,terminal_output +1382,1766962,"TERMINAL",0,0,"8",,terminal_output +1383,1766962,"TERMINAL",0,0,"9",,terminal_output +1384,1766962,"TERMINAL",0,0,"20",,terminal_output +1385,1766962,"TERMINAL",0,0,"1",,terminal_output +1386,1766962,"TERMINAL",0,0,"2",,terminal_output +1387,1766962,"TERMINAL",0,0,"3",,terminal_output +1388,1766962,"TERMINAL",0,0,"4",,terminal_output +1389,1766962,"TERMINAL",0,0,"5",,terminal_output +1390,1766962,"TERMINAL",0,0,"6",,terminal_output +1391,1766962,"TERMINAL",0,0,"7",,terminal_output +1392,1766962,"TERMINAL",0,0,"8",,terminal_output +1393,1766962,"TERMINAL",0,0,"930",,terminal_output +1394,1766962,"TERMINAL",0,0,"1",,terminal_output +1395,1766962,"TERMINAL",0,0,"2",,terminal_output +1396,1766962,"TERMINAL",0,0,"3",,terminal_output +1397,1766962,"TERMINAL",0,0,"4",,terminal_output +1398,1766962,"TERMINAL",0,0,"5",,terminal_output +1399,1766962,"TERMINAL",0,0,"6",,terminal_output +1400,1766962,"TERMINAL",0,0,"8",,terminal_output +1401,1766962,"TERMINAL",0,0,"9",,terminal_output +1402,1766962,"TERMINAL",0,0,"40",,terminal_output +1403,1766962,"TERMINAL",0,0,"1",,terminal_output +1404,1766962,"TERMINAL",0,0,"2",,terminal_output +1405,1766962,"TERMINAL",0,0,"3",,terminal_output +1406,1766962,"TERMINAL",0,0,"4",,terminal_output +1407,1766962,"TERMINAL",0,0,"5",,terminal_output +1408,1826988,"TERMINAL",0,0,"6",,terminal_output +1409,1826989,"TERMINAL",0,0,"7",,terminal_output +1410,1826995,"TERMINAL",0,0,"8",,terminal_output +1411,1826995,"TERMINAL",0,0,"9",,terminal_output +1412,1826995,"TERMINAL",0,0,"50",,terminal_output +1413,1826995,"TERMINAL",0,0,"1",,terminal_output +1414,1826995,"TERMINAL",0,0,"2",,terminal_output +1415,1826995,"TERMINAL",0,0,"3",,terminal_output +1416,1826995,"TERMINAL",0,0,"4",,terminal_output +1417,1826995,"TERMINAL",0,0,"5",,terminal_output +1418,1826995,"TERMINAL",0,0,"6",,terminal_output +1419,1826995,"TERMINAL",0,0,"7",,terminal_output +1420,1826995,"TERMINAL",0,0,"8",,terminal_output +1421,1826995,"TERMINAL",0,0,"9",,terminal_output +1422,1826995,"TERMINAL",0,0,"2:00",,terminal_output +1423,1826995,"TERMINAL",0,0,"1",,terminal_output +1424,1826995,"TERMINAL",0,0,"3",,terminal_output +1425,1826995,"TERMINAL",0,0,"4",,terminal_output +1426,1826995,"TERMINAL",0,0,"5",,terminal_output +1427,1826995,"TERMINAL",0,0,"6",,terminal_output +1428,1826995,"TERMINAL",0,0,"7",,terminal_output +1429,1826995,"TERMINAL",0,0,"8",,terminal_output +1430,1826995,"TERMINAL",0,0,"9",,terminal_output +1431,1826995,"TERMINAL",0,0,"10",,terminal_output +1432,1826995,"TERMINAL",0,0,"1",,terminal_output +1433,1826995,"TERMINAL",0,0,"2",,terminal_output +1434,1826995,"TERMINAL",0,0,"3",,terminal_output +1435,1826995,"TERMINAL",0,0,"4",,terminal_output +1436,1826995,"TERMINAL",0,0,"5",,terminal_output +1437,1826995,"TERMINAL",0,0,"6",,terminal_output +1438,1826995,"TERMINAL",0,0,"7",,terminal_output +1439,1826995,"TERMINAL",0,0,"8",,terminal_output +1440,1826995,"TERMINAL",0,0,"9",,terminal_output +1441,1826995,"TERMINAL",0,0,"20",,terminal_output +1442,1826995,"TERMINAL",0,0,"1",,terminal_output +1443,1826995,"TERMINAL",0,0,"2",,terminal_output +1444,1826995,"TERMINAL",0,0,"3",,terminal_output +1445,1826995,"TERMINAL",0,0,"4",,terminal_output +1446,1826995,"TERMINAL",0,0,"5",,terminal_output +1447,1826995,"TERMINAL",0,0,"7",,terminal_output +1448,1826995,"TERMINAL",0,0,"8",,terminal_output +1449,1826995,"TERMINAL",0,0,"9",,terminal_output +1450,1826995,"TERMINAL",0,0,"30",,terminal_output +1451,1826995,"TERMINAL",0,0,"1",,terminal_output +1452,1826995,"TERMINAL",0,0,"2",,terminal_output +1453,1826995,"TERMINAL",0,0,"3",,terminal_output +1454,1826995,"TERMINAL",0,0,"4",,terminal_output +1455,1826995,"TERMINAL",0,0,"5",,terminal_output +1456,1826995,"TERMINAL",0,0,"6",,terminal_output +1457,1826995,"TERMINAL",0,0,"7",,terminal_output +1458,1826995,"TERMINAL",0,0,"8",,terminal_output +1459,1826995,"TERMINAL",0,0,"9",,terminal_output +1460,1826995,"TERMINAL",0,0,"41",,terminal_output +1461,1826995,"TERMINAL",0,0,"2",,terminal_output +1462,1826995,"TERMINAL",0,0,"3",,terminal_output +1463,1826995,"TERMINAL",0,0,"4",,terminal_output +1464,1826995,"TERMINAL",0,0,"5",,terminal_output +1465,1886960,"TERMINAL",0,0,"6",,terminal_output +1466,1886961,"TERMINAL",0,0,"7",,terminal_output +1467,1886961,"TERMINAL",0,0,"8",,terminal_output +1468,1886961,"TERMINAL",0,0,"9",,terminal_output +1469,1886961,"TERMINAL",0,0,"50",,terminal_output +1470,1886961,"TERMINAL",0,0,"1",,terminal_output +1471,1886961,"TERMINAL",0,0,"2",,terminal_output +1472,1886961,"TERMINAL",0,0,"3",,terminal_output +1473,1886961,"TERMINAL",0,0,"4",,terminal_output +1474,1886961,"TERMINAL",0,0,"5",,terminal_output +1475,1886961,"TERMINAL",0,0,"6",,terminal_output +1476,1886961,"TERMINAL",0,0,"7",,terminal_output +1477,1886961,"TERMINAL",0,0,"8",,terminal_output +1478,1886963,"TERMINAL",0,0,"9",,terminal_output +1479,1886963,"TERMINAL",0,0,"3:00",,terminal_output +1480,1886964,"TERMINAL",0,0,"1",,terminal_output +1481,1886964,"TERMINAL",0,0,"2",,terminal_output +1482,1886964,"TERMINAL",0,0,"3",,terminal_output +1483,1886964,"TERMINAL",0,0,"4",,terminal_output +1484,1886964,"TERMINAL",0,0,"6",,terminal_output +1485,1886964,"TERMINAL",0,0,"7",,terminal_output +1486,1886964,"TERMINAL",0,0,"8",,terminal_output +1487,1886964,"TERMINAL",0,0,"9",,terminal_output +1488,1886964,"TERMINAL",0,0,"10",,terminal_output +1489,1886964,"TERMINAL",0,0,"1",,terminal_output +1490,1886964,"TERMINAL",0,0,"2",,terminal_output +1491,1886964,"TERMINAL",0,0,"3",,terminal_output +1492,1886964,"TERMINAL",0,0,"4",,terminal_output +1493,1886964,"TERMINAL",0,0,"5",,terminal_output +1494,1886964,"TERMINAL",0,0,"6",,terminal_output +1495,1886964,"TERMINAL",0,0,"7",,terminal_output +1496,1886964,"TERMINAL",0,0,"8",,terminal_output +1497,1886964,"TERMINAL",0,0,"9",,terminal_output +1498,1886964,"TERMINAL",0,0,"20",,terminal_output +1499,1886964,"TERMINAL",0,0,"1",,terminal_output +1500,1886964,"TERMINAL",0,0,"2",,terminal_output +1501,1886964,"TERMINAL",0,0,"3",,terminal_output +1502,1886964,"TERMINAL",0,0,"4",,terminal_output +1503,1886964,"TERMINAL",0,0,"5",,terminal_output +1504,1886964,"TERMINAL",0,0,"6",,terminal_output +1505,1886964,"TERMINAL",0,0,"8",,terminal_output +1506,1886964,"TERMINAL",0,0,"9",,terminal_output +1507,1886964,"TERMINAL",0,0,"30",,terminal_output +1508,1886964,"TERMINAL",0,0,"1",,terminal_output +1509,1886964,"TERMINAL",0,0,"2",,terminal_output +1510,1886964,"TERMINAL",0,0,"3",,terminal_output +1511,1886964,"TERMINAL",0,0,"4",,terminal_output +1512,1886964,"TERMINAL",0,0,"5",,terminal_output +1513,1886964,"TERMINAL",0,0,"6",,terminal_output +1514,1886964,"TERMINAL",0,0,"7",,terminal_output +1515,1886965,"TERMINAL",0,0,"8",,terminal_output +1516,1886965,"TERMINAL",0,0,"9",,terminal_output +1517,1886965,"TERMINAL",0,0,"40",,terminal_output +1518,1886965,"TERMINAL",0,0,"1",,terminal_output +1519,1886965,"TERMINAL",0,0,"2",,terminal_output +1520,1886965,"TERMINAL",0,0,"3",,terminal_output +1521,1886965,"TERMINAL",0,0,"4",,terminal_output +1522,1946931,"TERMINAL",0,0,"5",,terminal_output +1523,1946932,"TERMINAL",0,0,"6",,terminal_output +1524,1946932,"TERMINAL",0,0,"7",,terminal_output +1525,1946932,"TERMINAL",0,0,"8",,terminal_output +1526,1946932,"TERMINAL",0,0,"9",,terminal_output +1527,1946932,"TERMINAL",0,0,"50",,terminal_output +1528,1946932,"TERMINAL",0,0,"2",,terminal_output +1529,1946932,"TERMINAL",0,0,"3",,terminal_output +1530,1946932,"TERMINAL",0,0,"4",,terminal_output +1531,1946932,"TERMINAL",0,0,"5",,terminal_output +1532,1946932,"TERMINAL",0,0,"6",,terminal_output +1533,1946932,"TERMINAL",0,0,"7",,terminal_output +1534,1946932,"TERMINAL",0,0,"8",,terminal_output +1535,1946932,"TERMINAL",0,0,"9",,terminal_output +1536,1946932,"TERMINAL",0,0,"4:00",,terminal_output +1537,1946932,"TERMINAL",0,0,"1",,terminal_output +1538,1946932,"TERMINAL",0,0,"2",,terminal_output +1539,1946932,"TERMINAL",0,0,"3",,terminal_output +1540,1946932,"TERMINAL",0,0,"4",,terminal_output +1541,1946932,"TERMINAL",0,0,"5",,terminal_output +1542,1946932,"TERMINAL",0,0,"6",,terminal_output +1543,1946932,"TERMINAL",0,0,"7",,terminal_output +1544,1946932,"TERMINAL",0,0,"8",,terminal_output +1545,1946932,"TERMINAL",0,0,"9",,terminal_output +1546,1946932,"TERMINAL",0,0,"10",,terminal_output +1547,1946932,"TERMINAL",0,0,"1",,terminal_output +1548,1946932,"TERMINAL",0,0,"2",,terminal_output +1549,1946932,"TERMINAL",0,0,"3",,terminal_output +1550,1946932,"TERMINAL",0,0,"5",,terminal_output +1551,1946932,"TERMINAL",0,0,"6",,terminal_output +1552,1946932,"TERMINAL",0,0,"7",,terminal_output +1553,1946932,"TERMINAL",0,0,"8",,terminal_output +1554,1946932,"TERMINAL",0,0,"9",,terminal_output +1555,1946932,"TERMINAL",0,0,"20",,terminal_output +1556,1946932,"TERMINAL",0,0,"1",,terminal_output +1557,1946932,"TERMINAL",0,0,"2",,terminal_output +1558,1946932,"TERMINAL",0,0,"3",,terminal_output +1559,1946932,"TERMINAL",0,0,"4",,terminal_output +1560,1946932,"TERMINAL",0,0,"5",,terminal_output +1561,1946932,"TERMINAL",0,0,"6",,terminal_output +1562,1946932,"TERMINAL",0,0,"7",,terminal_output +1563,1946932,"TERMINAL",0,0,"8",,terminal_output +1564,1946932,"TERMINAL",0,0,"9",,terminal_output +1565,1946932,"TERMINAL",0,0,"30",,terminal_output +1566,1946932,"TERMINAL",0,0,"1",,terminal_output +1567,1946932,"TERMINAL",0,0,"3",,terminal_output +1568,1946932,"TERMINAL",0,0,"4",,terminal_output +1569,1946932,"TERMINAL",0,0,"5",,terminal_output +1570,1946932,"TERMINAL",0,0,"6",,terminal_output +1571,1946932,"TERMINAL",0,0,"7",,terminal_output +1572,1946932,"TERMINAL",0,0,"8",,terminal_output +1573,1946932,"TERMINAL",0,0,"9",,terminal_output +1574,1946932,"TERMINAL",0,0,"40",,terminal_output +1575,1946932,"TERMINAL",0,0,"1",,terminal_output +1576,1946932,"TERMINAL",0,0,"2",,terminal_output +1577,1946932,"TERMINAL",0,0,"3",,terminal_output +1578,1946932,"TERMINAL",0,0,"4",,terminal_output +1579,2006961,"TERMINAL",0,0,"6",,terminal_output +1580,2006961,"TERMINAL",0,0,"7",,terminal_output +1581,2006961,"TERMINAL",0,0,"8",,terminal_output +1582,2006961,"TERMINAL",0,0,"9",,terminal_output +1583,2006961,"TERMINAL",0,0,"50",,terminal_output +1584,2006961,"TERMINAL",0,0,"1",,terminal_output +1585,2006961,"TERMINAL",0,0,"2",,terminal_output +1586,2006962,"TERMINAL",0,0,"3",,terminal_output +1587,2006962,"TERMINAL",0,0,"4",,terminal_output +1588,2006962,"TERMINAL",0,0,"5",,terminal_output +1589,2006962,"TERMINAL",0,0,"6",,terminal_output +1590,2006962,"TERMINAL",0,0,"7",,terminal_output +1591,2006962,"TERMINAL",0,0,"8",,terminal_output +1592,2006962,"TERMINAL",0,0,"9",,terminal_output +1593,2006962,"TERMINAL",0,0,"5:00",,terminal_output +1594,2006962,"TERMINAL",0,0,"1",,terminal_output +1595,2006962,"TERMINAL",0,0,"2",,terminal_output +1596,2006962,"TERMINAL",0,0,"3",,terminal_output +1597,2006962,"TERMINAL",0,0,"4",,terminal_output +1598,2006962,"TERMINAL",0,0,"5",,terminal_output +1599,2006962,"TERMINAL",0,0,"6",,terminal_output +1600,2006962,"TERMINAL",0,0,"7",,terminal_output +1601,2006962,"TERMINAL",0,0,"8",,terminal_output +1602,2006962,"TERMINAL",0,0,"10",,terminal_output +1603,2006962,"TERMINAL",0,0,"1",,terminal_output +1604,2006962,"TERMINAL",0,0,"2",,terminal_output +1605,2006962,"TERMINAL",0,0,"3",,terminal_output +1606,2006962,"TERMINAL",0,0,"4",,terminal_output +1607,2006962,"TERMINAL",0,0,"5",,terminal_output +1608,2006962,"TERMINAL",0,0,"6",,terminal_output +1609,2006962,"TERMINAL",0,0,"7",,terminal_output +1610,2006962,"TERMINAL",0,0,"8",,terminal_output +1611,2006962,"TERMINAL",0,0,"9",,terminal_output +1612,2006962,"TERMINAL",0,0,"20",,terminal_output +1613,2006962,"TERMINAL",0,0,"1",,terminal_output +1614,2006962,"TERMINAL",0,0,"2",,terminal_output +1615,2006962,"TERMINAL",0,0,"3",,terminal_output +1616,2006962,"TERMINAL",0,0,"4",,terminal_output +1617,2006962,"TERMINAL",0,0,"5",,terminal_output +1618,2006962,"TERMINAL",0,0,"6",,terminal_output +1619,2006962,"TERMINAL",0,0,"7",,terminal_output +1620,2006962,"TERMINAL",0,0,"8",,terminal_output +1621,2006962,"TERMINAL",0,0,"9",,terminal_output +1622,2006962,"TERMINAL",0,0,"30",,terminal_output +1623,2006962,"TERMINAL",0,0,"2",,terminal_output +1624,2006962,"TERMINAL",0,0,"3",,terminal_output +1625,2006962,"TERMINAL",0,0,"4",,terminal_output +1626,2006962,"TERMINAL",0,0,"5",,terminal_output +1627,2006962,"TERMINAL",0,0,"6",,terminal_output +1628,2006962,"TERMINAL",0,0,"7",,terminal_output +1629,2006962,"TERMINAL",0,0,"8",,terminal_output +1630,2006962,"TERMINAL",0,0,"9",,terminal_output +1631,2006962,"TERMINAL",0,0,"40",,terminal_output +1632,2006962,"TERMINAL",0,0,"1",,terminal_output +1633,2006962,"TERMINAL",0,0,"2",,terminal_output +1634,2006962,"TERMINAL",0,0,"3",,terminal_output +1635,2006962,"TERMINAL",0,0,"4",,terminal_output +1636,2006962,"TERMINAL",0,0,"5",,terminal_output +1637,2066954,"TERMINAL",0,0,"6",,terminal_output +1638,2066955,"TERMINAL",0,0,"7",,terminal_output +1639,2066955,"TERMINAL",0,0,"8",,terminal_output +1640,2066955,"TERMINAL",0,0,"9",,terminal_output +1641,2066955,"TERMINAL",0,0,"50",,terminal_output +1642,2066955,"TERMINAL",0,0,"1",,terminal_output +1643,2066955,"TERMINAL",0,0,"2",,terminal_output +1644,2066955,"TERMINAL",0,0,"3",,terminal_output +1645,2066955,"TERMINAL",0,0,"5",,terminal_output +1646,2066955,"TERMINAL",0,0,"6",,terminal_output +1647,2066955,"TERMINAL",0,0,"7",,terminal_output +1648,2066955,"TERMINAL",0,0,"8",,terminal_output +1649,2066955,"TERMINAL",0,0,"9",,terminal_output +1650,2066955,"TERMINAL",0,0,"6:00",,terminal_output +1651,2066955,"TERMINAL",0,0,"1",,terminal_output +1652,2066955,"TERMINAL",0,0,"2",,terminal_output +1653,2066955,"TERMINAL",0,0,"3",,terminal_output +1654,2066955,"TERMINAL",0,0,"4",,terminal_output +1655,2066955,"TERMINAL",0,0,"5",,terminal_output +1656,2066955,"TERMINAL",0,0,"6",,terminal_output +1657,2066955,"TERMINAL",0,0,"7",,terminal_output +1658,2066955,"TERMINAL",0,0,"8",,terminal_output +1659,2066955,"TERMINAL",0,0,"9",,terminal_output +1660,2066955,"TERMINAL",0,0,"10",,terminal_output +1661,2066955,"TERMINAL",0,0,"1",,terminal_output +1662,2066955,"TERMINAL",0,0,"2",,terminal_output +1663,2066955,"TERMINAL",0,0,"3",,terminal_output +1664,2066955,"TERMINAL",0,0,"4",,terminal_output +1665,2066955,"TERMINAL",0,0,"5",,terminal_output +1666,2066955,"TERMINAL",0,0,"6",,terminal_output +1667,2066955,"TERMINAL",0,0,"8",,terminal_output +1668,2066955,"TERMINAL",0,0,"9",,terminal_output +1669,2066955,"TERMINAL",0,0,"20",,terminal_output +1670,2066955,"TERMINAL",0,0,"1",,terminal_output +1671,2066955,"TERMINAL",0,0,"2",,terminal_output +1672,2066955,"TERMINAL",0,0,"3",,terminal_output +1673,2066955,"TERMINAL",0,0,"4",,terminal_output +1674,2066955,"TERMINAL",0,0,"5",,terminal_output +1675,2066955,"TERMINAL",0,0,"6",,terminal_output +1676,2066955,"TERMINAL",0,0,"7",,terminal_output +1677,2066955,"TERMINAL",0,0,"8",,terminal_output +1678,2066955,"TERMINAL",0,0,"9",,terminal_output +1679,2066955,"TERMINAL",0,0,"30",,terminal_output +1680,2066955,"TERMINAL",0,0,"1",,terminal_output +1681,2066955,"TERMINAL",0,0,"2",,terminal_output +1682,2066955,"TERMINAL",0,0,"3",,terminal_output +1683,2066955,"TERMINAL",0,0,"5",,terminal_output +1684,2066955,"TERMINAL",0,0,"6",,terminal_output +1685,2066955,"TERMINAL",0,0,"7",,terminal_output +1686,2066955,"TERMINAL",0,0,"8",,terminal_output +1687,2066955,"TERMINAL",0,0,"9",,terminal_output +1688,2066955,"TERMINAL",0,0,"40",,terminal_output +1689,2066955,"TERMINAL",0,0,"1",,terminal_output +1690,2066955,"TERMINAL",0,0,"2",,terminal_output +1691,2066955,"TERMINAL",0,0,"3",,terminal_output +1692,2066955,"TERMINAL",0,0,"4",,terminal_output +1693,2066955,"TERMINAL",0,0,"5",,terminal_output +1694,2126937,"TERMINAL",0,0,"6",,terminal_output +1695,2126938,"TERMINAL",0,0,"7",,terminal_output +1696,2126938,"TERMINAL",0,0,"8",,terminal_output +1697,2126938,"TERMINAL",0,0,"9",,terminal_output +1698,2126938,"TERMINAL",0,0,"50",,terminal_output +1699,2126938,"TERMINAL",0,0,"1",,terminal_output +1700,2126938,"TERMINAL",0,0,"2",,terminal_output +1701,2126938,"TERMINAL",0,0,"3",,terminal_output +1702,2126938,"TERMINAL",0,0,"5",,terminal_output +1703,2126938,"TERMINAL",0,0,"6",,terminal_output +1704,2126938,"TERMINAL",0,0,"7",,terminal_output +1705,2126938,"TERMINAL",0,0,"8",,terminal_output +1706,2126938,"TERMINAL",0,0,"9",,terminal_output +1707,2126938,"TERMINAL",0,0,"7:00",,terminal_output +1708,2126938,"TERMINAL",0,0,"1",,terminal_output +1709,2126938,"TERMINAL",0,0,"2",,terminal_output +1710,2126938,"TERMINAL",0,0,"3",,terminal_output +1711,2126938,"TERMINAL",0,0,"4",,terminal_output +1712,2126938,"TERMINAL",0,0,"5",,terminal_output +1713,2126938,"TERMINAL",0,0,"6",,terminal_output +1714,2126938,"TERMINAL",0,0,"8",,terminal_output +1715,2126938,"TERMINAL",0,0,"9",,terminal_output +1716,2126938,"TERMINAL",0,0,"10",,terminal_output +1717,2126938,"TERMINAL",0,0,"1",,terminal_output +1718,2126938,"TERMINAL",0,0,"2",,terminal_output +1719,2126938,"TERMINAL",0,0,"3",,terminal_output +1720,2126938,"TERMINAL",0,0,"4",,terminal_output +1721,2126938,"TERMINAL",0,0,"5",,terminal_output +1722,2126938,"TERMINAL",0,0,"6",,terminal_output +1723,2126938,"TERMINAL",0,0,"7",,terminal_output +1724,2126938,"TERMINAL",0,0,"8",,terminal_output +1725,2126938,"TERMINAL",0,0,"9",,terminal_output +1726,2126938,"TERMINAL",0,0,"20",,terminal_output +1727,2126938,"TERMINAL",0,0,"1",,terminal_output +1728,2126938,"TERMINAL",0,0,"2",,terminal_output +1729,2126938,"TERMINAL",0,0,"3",,terminal_output +1730,2126938,"TERMINAL",0,0,"4",,terminal_output +1731,2126938,"TERMINAL",0,0,"5",,terminal_output +1732,2126938,"TERMINAL",0,0,"6",,terminal_output +1733,2126938,"TERMINAL",0,0,"7",,terminal_output +1734,2126938,"TERMINAL",0,0,"8",,terminal_output +1735,2126938,"TERMINAL",0,0,"9",,terminal_output +1736,2126938,"TERMINAL",0,0,"31",,terminal_output +1737,2126938,"TERMINAL",0,0,"2",,terminal_output +1738,2126938,"TERMINAL",0,0,"3",,terminal_output +1739,2126938,"TERMINAL",0,0,"4",,terminal_output +1740,2126938,"TERMINAL",0,0,"5",,terminal_output +1741,2126938,"TERMINAL",0,0,"6",,terminal_output +1742,2126938,"TERMINAL",0,0,"7",,terminal_output +1743,2126939,"TERMINAL",0,0,"8",,terminal_output +1744,2126939,"TERMINAL",0,0,"9",,terminal_output +1745,2126939,"TERMINAL",0,0,"40",,terminal_output +1746,2126939,"TERMINAL",0,0,"1",,terminal_output +1747,2126939,"TERMINAL",0,0,"2",,terminal_output +1748,2126939,"TERMINAL",0,0,"3",,terminal_output +1749,2126939,"TERMINAL",0,0,"4",,terminal_output +1750,2126939,"TERMINAL",0,0,"5",,terminal_output +1751,2186952,"TERMINAL",0,0,"6",,terminal_output +1752,2186952,"TERMINAL",0,0,"7",,terminal_output +1753,2186952,"TERMINAL",0,0,"8",,terminal_output +1754,2186952,"TERMINAL",0,0,"9",,terminal_output +1755,2186953,"TERMINAL",0,0,"50",,terminal_output +1756,2186953,"TERMINAL",0,0,"1",,terminal_output +1757,2186953,"TERMINAL",0,0,"2",,terminal_output +1758,2186953,"TERMINAL",0,0,"3",,terminal_output +1759,2186953,"TERMINAL",0,0,"5",,terminal_output +1760,2186953,"TERMINAL",0,0,"6",,terminal_output +1761,2186953,"TERMINAL",0,0,"7",,terminal_output +1762,2186953,"TERMINAL",0,0,"8",,terminal_output +1763,2186953,"TERMINAL",0,0,"9",,terminal_output +1764,2186953,"TERMINAL",0,0,"8:00",,terminal_output +1765,2186953,"TERMINAL",0,0,"1",,terminal_output +1766,2186953,"TERMINAL",0,0,"2",,terminal_output +1767,2186953,"TERMINAL",0,0,"3",,terminal_output +1768,2186953,"TERMINAL",0,0,"4",,terminal_output +1769,2186953,"TERMINAL",0,0,"5",,terminal_output +1770,2186953,"TERMINAL",0,0,"6",,terminal_output +1771,2186953,"TERMINAL",0,0,"7",,terminal_output +1772,2186953,"TERMINAL",0,0,"8",,terminal_output +1773,2186953,"TERMINAL",0,0,"9",,terminal_output +1774,2186953,"TERMINAL",0,0,"10",,terminal_output +1775,2186953,"TERMINAL",0,0,"1",,terminal_output +1776,2186953,"TERMINAL",0,0,"2",,terminal_output +1777,2186953,"TERMINAL",0,0,"3",,terminal_output +1778,2186953,"TERMINAL",0,0,"4",,terminal_output +1779,2186953,"TERMINAL",0,0,"5",,terminal_output +1780,2186953,"TERMINAL",0,0,"6",,terminal_output +1781,2186953,"TERMINAL",0,0,"8",,terminal_output +1782,2186953,"TERMINAL",0,0,"9",,terminal_output +1783,2186953,"TERMINAL",0,0,"20",,terminal_output +1784,2186953,"TERMINAL",0,0,"1",,terminal_output +1785,2186953,"TERMINAL",0,0,"2",,terminal_output +1786,2186953,"TERMINAL",0,0,"3",,terminal_output +1787,2186953,"TERMINAL",0,0,"4",,terminal_output +1788,2186953,"TERMINAL",0,0,"5",,terminal_output +1789,2186953,"TERMINAL",0,0,"6",,terminal_output +1790,2186953,"TERMINAL",0,0,"7",,terminal_output +1791,2186953,"TERMINAL",0,0,"89",,terminal_output +1792,2186953,"TERMINAL",0,0,"30",,terminal_output +1793,2186953,"TERMINAL",0,0,"1",,terminal_output +1794,2186953,"TERMINAL",0,0,"2",,terminal_output +1795,2186953,"TERMINAL",0,0,"3",,terminal_output +1796,2186953,"TERMINAL",0,0,"4",,terminal_output +1797,2186953,"TERMINAL",0,0,"5",,terminal_output +1798,2186953,"TERMINAL",0,0,"6",,terminal_output +1799,2186953,"TERMINAL",0,0,"7",,terminal_output +1800,2186953,"TERMINAL",0,0,"8",,terminal_output +1801,2186953,"TERMINAL",0,0,"9",,terminal_output +1802,2186953,"TERMINAL",0,0,"41",,terminal_output +1803,2186953,"TERMINAL",0,0,"2",,terminal_output +1804,2186953,"TERMINAL",0,0,"3",,terminal_output +1805,2186953,"TERMINAL",0,0,"4",,terminal_output +1806,2186953,"TERMINAL",0,0,"5",,terminal_output +1807,2246961,"TERMINAL",0,0,"6",,terminal_output +1808,2246961,"TERMINAL",0,0,"7",,terminal_output +1809,2246961,"TERMINAL",0,0,"8",,terminal_output +1810,2246961,"TERMINAL",0,0,"9",,terminal_output +1811,2246961,"TERMINAL",0,0,"50",,terminal_output +1812,2246961,"TERMINAL",0,0,"1",,terminal_output +1813,2246961,"TERMINAL",0,0,"2",,terminal_output +1814,2246961,"TERMINAL",0,0,"3",,terminal_output +1815,2246961,"TERMINAL",0,0,"45",,terminal_output +1816,2246961,"TERMINAL",0,0,"6",,terminal_output +1817,2246961,"TERMINAL",0,0,"7",,terminal_output +1818,2246961,"TERMINAL",0,0,"8",,terminal_output +1819,2246961,"TERMINAL",0,0,"9",,terminal_output +1820,2246961,"TERMINAL",0,0,"9:00",,terminal_output +1821,2246961,"TERMINAL",0,0,"1",,terminal_output +1822,2246961,"TERMINAL",0,0,"2",,terminal_output +1823,2246961,"TERMINAL",0,0,"3",,terminal_output +1824,2246961,"TERMINAL",0,0,"5",,terminal_output +1825,2246961,"TERMINAL",0,0,"6",,terminal_output +1826,2246961,"TERMINAL",0,0,"7",,terminal_output +1827,2246961,"TERMINAL",0,0,"8",,terminal_output +1828,2246961,"TERMINAL",0,0,"9",,terminal_output +1829,2246961,"TERMINAL",0,0,"10",,terminal_output +1830,2246961,"TERMINAL",0,0,"1",,terminal_output +1831,2246961,"TERMINAL",0,0,"2",,terminal_output +1832,2246961,"TERMINAL",0,0,"3",,terminal_output +1833,2246961,"TERMINAL",0,0,"4",,terminal_output +1834,2246961,"TERMINAL",0,0,"5",,terminal_output +1835,2246961,"TERMINAL",0,0,"6",,terminal_output +1836,2246961,"TERMINAL",0,0,"7",,terminal_output +1837,2246961,"TERMINAL",0,0,"8",,terminal_output +1838,2246961,"TERMINAL",0,0,"9",,terminal_output +1839,2246961,"TERMINAL",0,0,"20",,terminal_output +1840,2246961,"TERMINAL",0,0,"1",,terminal_output +1841,2246962,"TERMINAL",0,0,"2",,terminal_output +1842,2246962,"TERMINAL",0,0,"3",,terminal_output +1843,2246962,"TERMINAL",0,0,"4",,terminal_output +1844,2246962,"TERMINAL",0,0,"5",,terminal_output +1845,2246962,"TERMINAL",0,0,"6",,terminal_output +1846,2246962,"TERMINAL",0,0,"8",,terminal_output +1847,2246962,"TERMINAL",0,0,"9",,terminal_output +1848,2246962,"TERMINAL",0,0,"30",,terminal_output +1849,2246962,"TERMINAL",0,0,"1",,terminal_output +1850,2246962,"TERMINAL",0,0,"2",,terminal_output +1851,2246962,"TERMINAL",0,0,"3",,terminal_output +1852,2246962,"TERMINAL",0,0,"4",,terminal_output +1853,2246962,"TERMINAL",0,0,"5",,terminal_output +1854,2246962,"TERMINAL",0,0,"6",,terminal_output +1855,2246962,"TERMINAL",0,0,"7",,terminal_output +1856,2246962,"TERMINAL",0,0,"8",,terminal_output +1857,2246962,"TERMINAL",0,0,"9",,terminal_output +1858,2246962,"TERMINAL",0,0,"40",,terminal_output +1859,2246962,"TERMINAL",0,0,"1",,terminal_output +1860,2246962,"TERMINAL",0,0,"2",,terminal_output +1861,2246962,"TERMINAL",0,0,"3",,terminal_output +1862,2246962,"TERMINAL",0,0,"4",,terminal_output +1863,2306959,"TERMINAL",0,0,"5",,terminal_output +1864,2306963,"TERMINAL",0,0,"6",,terminal_output +1865,2306963,"TERMINAL",0,0,"7",,terminal_output +1866,2306963,"TERMINAL",0,0,"8",,terminal_output +1867,2306963,"TERMINAL",0,0,"50",,terminal_output +1868,2306963,"TERMINAL",0,0,"1",,terminal_output +1869,2306963,"TERMINAL",0,0,"2",,terminal_output +1870,2306963,"TERMINAL",0,0,"3",,terminal_output +1871,2306963,"TERMINAL",0,0,"4",,terminal_output +1872,2306963,"TERMINAL",0,0,"5",,terminal_output +1873,2306963,"TERMINAL",0,0,"6",,terminal_output +1874,2306964,"TERMINAL",0,0,"7",,terminal_output +1875,2306964,"TERMINAL",0,0,"8",,terminal_output +1876,2306964,"TERMINAL",0,0,"9",,terminal_output +1877,2306964,"TERMINAL",0,0,"10:00",,terminal_output +1878,2306964,"TERMINAL",0,0,"1",,terminal_output +1879,2306964,"TERMINAL",0,0,"2",,terminal_output +1880,2306964,"TERMINAL",0,0,"3",,terminal_output +1881,2306964,"TERMINAL",0,0,"4",,terminal_output +1882,2306964,"TERMINAL",0,0,"5",,terminal_output +1883,2306964,"TERMINAL",0,0,"6",,terminal_output +1884,2306964,"TERMINAL",0,0,"7",,terminal_output +1885,2306964,"TERMINAL",0,0,"8",,terminal_output +1886,2306964,"TERMINAL",0,0,"9",,terminal_output +1887,2306964,"TERMINAL",0,0,"10",,terminal_output +1888,2306964,"TERMINAL",0,0,"1",,terminal_output +1889,2306964,"TERMINAL",0,0,"3",,terminal_output +1890,2306964,"TERMINAL",0,0,"4",,terminal_output +1891,2306964,"TERMINAL",0,0,"5",,terminal_output +1892,2306964,"TERMINAL",0,0,"6",,terminal_output +1893,2306964,"TERMINAL",0,0,"7",,terminal_output +1894,2306964,"TERMINAL",0,0,"8",,terminal_output +1895,2306964,"TERMINAL",0,0,"9",,terminal_output +1896,2306964,"TERMINAL",0,0,"20",,terminal_output +1897,2306964,"TERMINAL",0,0,"1",,terminal_output +1898,2306964,"TERMINAL",0,0,"2",,terminal_output +1899,2306964,"TERMINAL",0,0,"3",,terminal_output +1900,2306964,"TERMINAL",0,0,"4",,terminal_output +1901,2306964,"TERMINAL",0,0,"5",,terminal_output +1902,2306964,"TERMINAL",0,0,"6",,terminal_output +1903,2306964,"TERMINAL",0,0,"7",,terminal_output +1904,2306964,"TERMINAL",0,0,"8",,terminal_output +1905,2306964,"TERMINAL",0,0,"9",,terminal_output +1906,2306964,"TERMINAL",0,0,"30",,terminal_output +1907,2306964,"TERMINAL",0,0,"1",,terminal_output +1908,2306964,"TERMINAL",0,0,"2",,terminal_output +1909,2306964,"TERMINAL",0,0,"4",,terminal_output +1910,2306964,"TERMINAL",0,0,"5",,terminal_output +1911,2306964,"TERMINAL",0,0,"6",,terminal_output +1912,2306964,"TERMINAL",0,0,"7",,terminal_output +1913,2306964,"TERMINAL",0,0,"8",,terminal_output +1914,2306964,"TERMINAL",0,0,"9",,terminal_output +1915,2306964,"TERMINAL",0,0,"40",,terminal_output +1916,2306964,"TERMINAL",0,0,"1",,terminal_output +1917,2306964,"TERMINAL",0,0,"2",,terminal_output +1918,2306964,"TERMINAL",0,0,"3",,terminal_output +1919,2306964,"TERMINAL",0,0,"4",,terminal_output +1920,2306964,"TERMINAL",0,0,"5",,terminal_output +1921,2366936,"TERMINAL",0,0,"6",,terminal_output +1922,2366937,"TERMINAL",0,0,"7",,terminal_output +1923,2366937,"TERMINAL",0,0,"8",,terminal_output +1924,2366937,"TERMINAL",0,0,"9",,terminal_output +1925,2366937,"TERMINAL",0,0,"50",,terminal_output +1926,2366937,"TERMINAL",0,0,"1",,terminal_output +1927,2366937,"TERMINAL",0,0,"2",,terminal_output +1928,2366937,"TERMINAL",0,0,"3",,terminal_output +1929,2366937,"TERMINAL",0,0,"4",,terminal_output +1930,2366937,"TERMINAL",0,0,"5",,terminal_output +1931,2366937,"TERMINAL",0,0,"7",,terminal_output +1932,2366937,"TERMINAL",0,0,"8",,terminal_output +1933,2366937,"TERMINAL",0,0,"9",,terminal_output +1934,2366937,"TERMINAL",0,0,"1:00",,terminal_output +1935,2366937,"TERMINAL",0,0,"1",,terminal_output +1936,2366937,"TERMINAL",0,0,"2",,terminal_output +1937,2366937,"TERMINAL",0,0,"3",,terminal_output +1938,2366937,"TERMINAL",0,0,"4",,terminal_output +1939,2366937,"TERMINAL",0,0,"5",,terminal_output +1940,2366937,"TERMINAL",0,0,"6",,terminal_output +1941,2366937,"TERMINAL",0,0,"7",,terminal_output +1942,2366937,"TERMINAL",0,0,"8",,terminal_output +1943,2366937,"TERMINAL",0,0,"9",,terminal_output +1944,2366937,"TERMINAL",0,0,"10",,terminal_output +1945,2366937,"TERMINAL",0,0,"1",,terminal_output +1946,2366937,"TERMINAL",0,0,"2",,terminal_output +1947,2366937,"TERMINAL",0,0,"3",,terminal_output +1948,2366937,"TERMINAL",0,0,"4",,terminal_output +1949,2366937,"TERMINAL",0,0,"5",,terminal_output +1950,2366937,"TERMINAL",0,0,"6",,terminal_output +1951,2366937,"TERMINAL",0,0,"7",,terminal_output +1952,2366937,"TERMINAL",0,0,"9",,terminal_output +1953,2366937,"TERMINAL",0,0,"20",,terminal_output +1954,2366937,"TERMINAL",0,0,"1",,terminal_output +1955,2366937,"TERMINAL",0,0,"2",,terminal_output +1956,2366937,"TERMINAL",0,0,"3",,terminal_output +1957,2366937,"TERMINAL",0,0,"4",,terminal_output +1958,2366937,"TERMINAL",0,0,"5",,terminal_output +1959,2366937,"TERMINAL",0,0,"6",,terminal_output +1960,2366937,"TERMINAL",0,0,"7",,terminal_output +1961,2366937,"TERMINAL",0,0,"8",,terminal_output +1962,2366937,"TERMINAL",0,0,"9",,terminal_output +1963,2366937,"TERMINAL",0,0,"30",,terminal_output +1964,2366937,"TERMINAL",0,0,"1",,terminal_output +1965,2366937,"TERMINAL",0,0,"2",,terminal_output +1966,2366937,"TERMINAL",0,0,"3",,terminal_output +1967,2366937,"TERMINAL",0,0,"4",,terminal_output +1968,2366937,"TERMINAL",0,0,"5",,terminal_output +1969,2366937,"TERMINAL",0,0,"6",,terminal_output +1970,2366937,"TERMINAL",0,0,"7",,terminal_output +1971,2366937,"TERMINAL",0,0,"8",,terminal_output +1972,2366937,"TERMINAL",0,0,"9",,terminal_output +1973,2366937,"TERMINAL",0,0,"40",,terminal_output +1974,2366937,"TERMINAL",0,0,"2",,terminal_output +1975,2366937,"TERMINAL",0,0,"3",,terminal_output +1976,2366937,"TERMINAL",0,0,"4",,terminal_output +1977,2366937,"TERMINAL",0,0,"5",,terminal_output +1978,2418355,"TERMINAL",0,0,"6",,terminal_output +1979,2418356,"TERMINAL",0,0,"7",,terminal_output +1980,2418358,"TERMINAL",0,0,"8",,terminal_output +1981,2418358,"TERMINAL",0,0,"9",,terminal_output +1982,2418358,"TERMINAL",0,0,"50",,terminal_output +1983,2418358,"TERMINAL",0,0,"1",,terminal_output +1984,2418358,"TERMINAL",0,0,"2",,terminal_output +1985,2418358,"TERMINAL",0,0,"3",,terminal_output +1986,2418358,"TERMINAL",0,0,"4",,terminal_output +1987,2418358,"TERMINAL",0,0,"5",,terminal_output +1988,2418358,"TERMINAL",0,0,"6",,terminal_output +1989,2418360,"TERMINAL",0,0,"7",,terminal_output +1990,2418360,"TERMINAL",0,0,"8",,terminal_output +1991,2418360,"TERMINAL",0,0,"9",,terminal_output +1992,2418360,"TERMINAL",0,0,"2:00",,terminal_output +1993,2418360,"TERMINAL",0,0,"1",,terminal_output +1994,2418360,"TERMINAL",0,0,"2",,terminal_output +1995,2418360,"TERMINAL",0,0,"3",,terminal_output +1996,2418360,"TERMINAL",0,0,"4",,terminal_output +1997,2418360,"TERMINAL",0,0,"6",,terminal_output +1998,2418360,"TERMINAL",0,0,"7",,terminal_output +1999,2418360,"TERMINAL",0,0,"8",,terminal_output +2000,2418360,"TERMINAL",0,0,"9",,terminal_output +2001,2418360,"TERMINAL",0,0,"10",,terminal_output +2002,2418360,"TERMINAL",0,0,"1",,terminal_output +2003,2418360,"TERMINAL",0,0,"2",,terminal_output +2004,2418360,"TERMINAL",0,0,"3",,terminal_output +2005,2418360,"TERMINAL",0,0,"4",,terminal_output +2006,2418360,"TERMINAL",0,0,"5",,terminal_output +2007,2418360,"TERMINAL",0,0,"6",,terminal_output +2008,2418360,"TERMINAL",0,0,"7",,terminal_output +2009,2418360,"TERMINAL",0,0,"8",,terminal_output +2010,2418360,"TERMINAL",0,0,"9",,terminal_output +2011,2418360,"TERMINAL",0,0,"20",,terminal_output +2012,2418360,"TERMINAL",0,0,"1",,terminal_output +2013,2418360,"TERMINAL",0,0,"2",,terminal_output +2014,2418360,"TERMINAL",0,0,"3",,terminal_output +2015,2418360,"TERMINAL",0,0,"4",,terminal_output +2016,2418360,"TERMINAL",0,0,"5",,terminal_output +2017,2418360,"TERMINAL",0,0,"6",,terminal_output +2018,2418360,"TERMINAL",0,0,"7",,terminal_output +2019,2418360,"TERMINAL",0,0,"8",,terminal_output +2020,2418360,"TERMINAL",0,0,"30",,terminal_output +2021,2418360,"TERMINAL",0,0,"1",,terminal_output +2022,2418360,"TERMINAL",0,0,"2",,terminal_output +2023,2418360,"TERMINAL",0,0,"3",,terminal_output +2024,2418360,"TERMINAL",0,0,"4",,terminal_output +2025,2418360,"TERMINAL",0,0,"5",,terminal_output +2026,2418360,"TERMINAL",0,0,"6",,terminal_output +2027,2418360,"TERMINAL",0,0,"7",,terminal_output +2028,2418944,"TERMINAL",0,0,"8",,terminal_output +2029,2419991,"TERMINAL",0,0,"9",,terminal_output +2030,2421037,"TERMINAL",0,0,"40",,terminal_output +2031,2422071,"TERMINAL",0,0,"1",,terminal_output +2032,2423116,"TERMINAL",0,0,"2",,terminal_output +2033,2424162,"TERMINAL",0,0,"3",,terminal_output +2034,2425201,"TERMINAL",0,0,"4",,terminal_output +2035,2426252,"TERMINAL",0,0,"5",,terminal_output +2036,2427300,"TERMINAL",0,0,"7",,terminal_output +2037,2428342,"TERMINAL",0,0,"8",,terminal_output +2038,2429383,"TERMINAL",0,0,"9",,terminal_output +2039,2430427,"TERMINAL",0,0,"50",,terminal_output +2040,2431471,"TERMINAL",0,0,"1",,terminal_output +2041,2432521,"TERMINAL",0,0,"2",,terminal_output +2042,2433566,"TERMINAL",0,0,"3",,terminal_output +2043,2434610,"TERMINAL",0,0,"4",,terminal_output +2044,2435660,"TERMINAL",0,0,"5",,terminal_output +2045,2436705,"TERMINAL",0,0,"6",,terminal_output +2046,2437768,"TERMINAL",0,0,"7",,terminal_output +2047,2438794,"TERMINAL",0,0,"8",,terminal_output +2048,2439836,"TERMINAL",0,0,"9",,terminal_output +2049,2440548,"slurm/jobs/mihir/placeholder",0,0,"",plaintext,tab +2050,2440888,"TERMINAL",0,0,"3:00",,terminal_output +2051,2441942,"TERMINAL",0,0,"1",,terminal_output +2052,2442993,"TERMINAL",0,0,"2",,terminal_output +2053,2444041,"TERMINAL",0,0,"3",,terminal_output +2054,2445085,"TERMINAL",0,0,"4",,terminal_output +2055,2446131,"TERMINAL",0,0,"5",,terminal_output +2056,2447174,"TERMINAL",0,0,"6",,terminal_output +2057,2448221,"TERMINAL",0,0,"7",,terminal_output +2058,2449265,"TERMINAL",0,0,"8",,terminal_output +2059,2450934,"TERMINAL",0,0,"10",,terminal_output +2060,2451928,"TERMINAL",0,0,"1",,terminal_output +2061,2452925,"TERMINAL",0,0,"2",,terminal_output +2062,2453925,"TERMINAL",0,0,"3",,terminal_output +2063,2454927,"TERMINAL",0,0,"4",,terminal_output +2064,2456926,"TERMINAL",0,0,"5",,terminal_output +2065,2456926,"TERMINAL",0,0,"6",,terminal_output +2066,2457929,"TERMINAL",0,0,"7",,terminal_output +2067,2458924,"TERMINAL",0,0,"8",,terminal_output +2068,2459926,"TERMINAL",0,0,"9",,terminal_output +2069,2461926,"TERMINAL",0,0,"20",,terminal_output +2070,2461927,"TERMINAL",0,0,"1",,terminal_output +2071,2462925,"TERMINAL",0,0,"2",,terminal_output +2072,2463927,"TERMINAL",0,0,"3",,terminal_output +2073,2465925,"TERMINAL",0,0,"4",,terminal_output +2074,2466928,"TERMINAL",0,0,"5",,terminal_output +2075,2467928,"TERMINAL",0,0,"6",,terminal_output +2076,2468925,"TERMINAL",0,0,"7",,terminal_output +2077,2469930,"TERMINAL",0,0,"8",,terminal_output +2078,2470925,"TERMINAL",0,0,"9",,terminal_output +2079,2471927,"TERMINAL",0,0,"30",,terminal_output +2080,2472925,"TERMINAL",0,0,"2",,terminal_output +2081,2473924,"TERMINAL",0,0,"3",,terminal_output +2082,2474925,"TERMINAL",0,0,"4",,terminal_output +2083,2475927,"TERMINAL",0,0,"5",,terminal_output +2084,2476928,"TERMINAL",0,0,"6",,terminal_output +2085,2477925,"TERMINAL",0,0,"7",,terminal_output +2086,2478938,"TERMINAL",0,0,"8",,terminal_output +2087,2479931,"TERMINAL",0,0,"9",,terminal_output +2088,2481928,"TERMINAL",0,0,"40",,terminal_output +2089,2481929,"TERMINAL",0,0,"1",,terminal_output +2090,2482927,"TERMINAL",0,0,"2",,terminal_output +2091,2483925,"TERMINAL",0,0,"3",,terminal_output +2092,2484926,"TERMINAL",0,0,"4",,terminal_output +2093,2486925,"TERMINAL",0,0,"5",,terminal_output +2094,2487927,"TERMINAL",0,0,"6",,terminal_output +2095,2488926,"TERMINAL",0,0,"7",,terminal_output +2096,2489927,"TERMINAL",0,0,"8",,terminal_output +2097,2490925,"TERMINAL",0,0,"9",,terminal_output +2098,2491927,"TERMINAL",0,0,"50",,terminal_output +2099,2492925,"TERMINAL",0,0,"1",,terminal_output +2100,2493929,"TERMINAL",0,0,"2",,terminal_output +2101,2494925,"TERMINAL",0,0,"3",,terminal_output +2102,2495928,"TERMINAL",0,0,"5",,terminal_output +2103,2496924,"TERMINAL",0,0,"6",,terminal_output +2104,2497925,"TERMINAL",0,0,"7",,terminal_output +2105,2498927,"TERMINAL",0,0,"8",,terminal_output +2106,2499947,"TERMINAL",0,0,"9",,terminal_output +2107,2500927,"TERMINAL",0,0,"4:00",,terminal_output +2108,2501928,"TERMINAL",0,0,"1",,terminal_output +2109,2502929,"TERMINAL",0,0,"2",,terminal_output +2110,2503926,"TERMINAL",0,0,"3",,terminal_output +2111,2504926,"TERMINAL",0,0,"4",,terminal_output +2112,2506930,"TERMINAL",0,0,"5",,terminal_output +2113,2506932,"TERMINAL",0,0,"6",,terminal_output +2114,2507924,"TERMINAL",0,0,"7",,terminal_output +2115,2508924,"TERMINAL",0,0,"8",,terminal_output +2116,2509929,"TERMINAL",0,0,"9",,terminal_output +2117,2511924,"TERMINAL",0,0,"10",,terminal_output +2118,2512924,"TERMINAL",0,0,"1",,terminal_output +2119,2513924,"TERMINAL",0,0,"2",,terminal_output +2120,2514925,"TERMINAL",0,0,"3",,terminal_output +2121,2515924,"TERMINAL",0,0,"4",,terminal_output +2122,2516926,"TERMINAL",0,0,"5",,terminal_output +2123,2517929,"TERMINAL",0,0,"6",,terminal_output +2124,2518923,"TERMINAL",0,0,"8",,terminal_output +2125,2519925,"TERMINAL",0,0,"9",,terminal_output +2126,2520925,"TERMINAL",0,0,"20",,terminal_output +2127,2521924,"TERMINAL",0,0,"1",,terminal_output +2128,2522924,"TERMINAL",0,0,"2",,terminal_output +2129,2523926,"TERMINAL",0,0,"3",,terminal_output +2130,2524925,"TERMINAL",0,0,"4",,terminal_output +2131,2525924,"TERMINAL",0,0,"5",,terminal_output +2132,2526654,"TERMINAL",0,0,"6",,terminal_output +2133,2527702,"TERMINAL",0,0,"7",,terminal_output +2134,2528743,"TERMINAL",0,0,"8",,terminal_output +2135,2529787,"TERMINAL",0,0,"9",,terminal_output +2136,2530833,"TERMINAL",0,0,"30",,terminal_output +2137,2531906,"TERMINAL",0,0,"1",,terminal_output +2138,2532941,"TERMINAL",0,0,"2",,terminal_output +2139,2533968,"TERMINAL",0,0,"3",,terminal_output +2140,2535256,"TERMINAL",0,0,"4",,terminal_output +2141,2536303,"TERMINAL",0,0,"6",,terminal_output +2142,2536462,"slurm/dev/alfred/overfit_sample/train_lam_overfit_sample.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --mail-user=mihir.mahajan2002@gmail.com\n#SBATCH --job-name=train_tokenizer_minecraft_overfit_sample\n#SBATCH --mem=50G\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_lam.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=5e-7 \\n --max_lr=5e-6 \\n --warmup_steps=125 \\n --log_image_interval=3 \\n --log \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir",shellscript,tab +2143,2536898,"slurm/dev/alfred/overfit_sample/train_dynamics_overfit_sample.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --mail-user=mihir.mahajan2002@gmail.com\n#SBATCH --job-name=train_dynamics_minecraft_overfit_sample_yolo_lr\n#SBATCH --mem=50G\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\necho Running dynamics model overfit run. Slurm id: $slurm_job_id\n\ntokenizer_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/3290391/tokenizer_1750845012_50000/\nlam_ckpt_dir=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/checkpoints/3290392/lam_1750845133_180000/\n\npython train_dynamics.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=5e-7 \\n --max_lr=5e-6 \\n --warmup_steps=125 \\n --log_image_interval=100 \\n --log \\n --name=dynamics-model-size-scaling-36M-$slurm_job_id \\n --tags dynamics overfit yolo-lr \\n --log_checkpoint_interval=500 \\n --entity instant-uv \\n --project jafar \\n --tokenizer_checkpoint=$tokenizer_ckpt_dir \\n --lam_checkpoint=$lam_ckpt_dir \\n --data_dir $tf_records_dir\n",shellscript,tab +2144,2537347,"TERMINAL",0,0,"7",,terminal_output +2145,2538265,"slurm/dev/alfred/overfit_sample/train_lam_overfit_sample.sbatch",0,0,"",shellscript,tab +2146,2538384,"TERMINAL",0,0,"8",,terminal_output +2147,2538696,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --mail-user=mihir.mahajan2002@gmail.com\n#SBATCH --job-name=train_tokenizer_minecraft_overfit_sample\n#SBATCH --mem=50G\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=4.3e-5 \\n --max_lr=4.3e-5 \\n --log_image_interval=3 \\n --log \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +2148,2539422,"TERMINAL",0,0,"9",,terminal_output +2149,2540473,"TERMINAL",0,0,"40",,terminal_output +2150,2540775,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample copy.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --mail-user=mihir.mahajan2002@gmail.com\n#SBATCH --job-name=train_tokenizer_minecraft_overfit_sample\n#SBATCH --mem=50G\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=4.3e-5 \\n --max_lr=4.3e-5 \\n --log_image_interval=3 \\n --log \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +2151,2541521,"TERMINAL",0,0,"1",,terminal_output +2152,2542571,"TERMINAL",0,0,"2",,terminal_output +2153,2543614,"TERMINAL",0,0,"3",,terminal_output +2154,2544659,"TERMINAL",0,0,"4",,terminal_output +2155,2545704,"TERMINAL",0,0,"5",,terminal_output +2156,2546743,"TERMINAL",0,0,"6",,terminal_output +2157,2547786,"TERMINAL",0,0,"7",,terminal_output +2158,2547921,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_0.5_mio.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --mail-user=mihir.mahajan2002@gmail.com\n#SBATCH --job-name=train_tokenizer_minecraft_overfit_sample\n#SBATCH --mem=50G\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=4.3e-5 \\n --max_lr=4.3e-5 \\n --log_image_interval=3 \\n --log \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +2159,2548823,"TERMINAL",0,0,"8",,terminal_output +2160,2549872,"TERMINAL",0,0,"9",,terminal_output +2161,2550919,"TERMINAL",0,0,"50",,terminal_output +2162,2551965,"TERMINAL",0,0,"1",,terminal_output +2163,2553002,"TERMINAL",0,0,"2",,terminal_output +2164,2554055,"TERMINAL",0,0,"3",,terminal_output +2165,2555100,"TERMINAL",0,0,"4",,terminal_output +2166,2556148,"TERMINAL",0,0,"5",,terminal_output +2167,2557172,"TERMINAL",0,0,"6",,terminal_output +2168,2558228,"TERMINAL",0,0,"7",,terminal_output +2169,2559274,"TERMINAL",0,0,"9",,terminal_output +2170,2559503,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --mail-user=mihir.mahajan2002@gmail.com\n#SBATCH --job-name=train_tokenizer_minecraft_overfit_sample\n#SBATCH --mem=50G\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv/bin/activate\n\ntf_records_dir=$ws_dir/knoms_tfrecords_500_shards\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=4.3e-5 \\n --max_lr=4.3e-5 \\n --log_image_interval=3 \\n --log \\n --entity instant-uv \\n --project jafar \\n --data_dir $tf_records_dir\n",shellscript,tab +2171,2560305,"TERMINAL",0,0,"5:00",,terminal_output +2172,2560864,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",435,0,"",shellscript,selection_mouse +2173,2560866,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",434,0,"",shellscript,selection_command +2174,2560868,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",434,1,"t",shellscript,selection_mouse +2175,2560869,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",435,0,"",shellscript,selection_command +2176,2561350,"TERMINAL",0,0,"1",,terminal_output +2177,2561914,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",434,0,"",shellscript,selection_command +2178,2562083,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",411,0,"",shellscript,selection_command +2179,2562277,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",409,0,"",shellscript,selection_command +2180,2562396,"TERMINAL",0,0,"2",,terminal_output +2181,2562413,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",385,0,"",shellscript,selection_command +2182,2562838,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",369,18,"",shellscript,content +2183,2563435,"TERMINAL",0,0,"3",,terminal_output +2184,2564480,"TERMINAL",0,0,"4",,terminal_output +2185,2565326,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,tab +2186,2565562,"TERMINAL",0,0,"5",,terminal_output +2187,2565962,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",472,0,"",shellscript,selection_mouse +2188,2565965,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",471,0,"",shellscript,selection_command +2189,2566347,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",470,0,"",shellscript,selection_command +2190,2566573,"TERMINAL",0,0,"6",,terminal_output +2191,2566997,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,selection_command +2192,2567162,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",20,0,"",shellscript,selection_command +2193,2567415,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",21,0,"",shellscript,selection_command +2194,2567441,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",39,0,"",shellscript,selection_command +2195,2567472,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",67,0,"",shellscript,selection_command +2196,2567504,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",91,0,"",shellscript,selection_command +2197,2567538,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",129,0,"",shellscript,selection_command +2198,2567571,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",161,0,"",shellscript,selection_command +2199,2567605,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",187,0,"",shellscript,selection_command +2200,2567620,"TERMINAL",0,0,"7",,terminal_output +2201,2567639,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",208,0,"",shellscript,selection_command +2202,2567674,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",264,0,"",shellscript,selection_command +2203,2567796,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",319,0,"",shellscript,selection_command +2204,2567958,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",380,0,"",shellscript,selection_command +2205,2568080,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",380,1,"\n",shellscript,selection_command +2206,2568483,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,380,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=05:00:00\n#SBATCH --account=hk-project-p0023960\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_1_node\n",shellscript,selection_command +2207,2568624,"slurm/dev/alfred/batch_size_scaling/train_tokenizer_1_nodes.sbatch",0,0,"",shellscript,selection_command +2208,2568679,"TERMINAL",0,0,"8",,terminal_output +2209,2569715,"TERMINAL",0,0,"9",,terminal_output +2210,2570759,"TERMINAL",0,0,"10",,terminal_output +2211,2571136,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",0,0,"",shellscript,tab +2212,2571817,"TERMINAL",0,0,"1",,terminal_output +2213,2571980,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",393,0,"",shellscript,selection_command +2214,2572383,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",393,0,"\n",shellscript,content +2215,2572599,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",394,0,"\n",shellscript,content +2216,2572700,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",395,0,"\n",shellscript,content +2217,2572860,"TERMINAL",0,0,"2",,terminal_output +2218,2572898,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",395,0,"",shellscript,selection_command +2219,2573046,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",394,0,"",shellscript,selection_command +2220,2573217,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",394,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=4\n#SBATCH --time=05:00:00\n#SBATCH --account=hk-project-p0023960\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:4\n#SBATCH --output=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=logs/logs_training_tokenizer/%x_%j.log\n#SBATCH --job-name=train_tokenizer_batch_size_scaling_1_node\n\n",shellscript,content +2221,2573225,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",394,0,"",shellscript,selection_command +2222,2573612,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",393,0,"",shellscript,selection_command +2223,2573795,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",369,0,"",shellscript,selection_command +2224,2573908,"TERMINAL",0,0,"3",,terminal_output +2225,2574051,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",393,0,"",shellscript,selection_command +2226,2574716,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",394,0,"",shellscript,selection_command +2227,2574967,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",414,0,"",shellscript,selection_command +2228,2574967,"TERMINAL",0,0,"4",,terminal_output +2229,2575109,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",415,0,"",shellscript,selection_command +2230,2575285,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",433,0,"",shellscript,selection_command +2231,2576004,"TERMINAL",0,0,"5",,terminal_output +2232,2576045,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",484,38,"",shellscript,content +2233,2576045,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",460,0,"1",shellscript,content +2234,2576045,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",459,1,"",shellscript,content +2235,2576045,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",393,21,"",shellscript,content +2236,2577049,"TERMINAL",0,0,"6",,terminal_output +2237,2577084,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",440,0,"",shellscript,selection_command +2238,2577280,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",464,0,"",shellscript,selection_command +2239,2577647,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",496,0,"",shellscript,selection_command +2240,2577825,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",522,0,"",shellscript,selection_command +2241,2577978,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",543,0,"",shellscript,selection_command +2242,2578094,"TERMINAL",0,0,"7",,terminal_output +2243,2579138,"TERMINAL",0,0,"8",,terminal_output +2244,2580185,"TERMINAL",0,0,"9",,terminal_output +2245,2580252,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",599,0,"",shellscript,selection_command +2246,2580417,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",654,0,"",shellscript,selection_command +2247,2581230,"TERMINAL",0,0,"20",,terminal_output +2248,2581329,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",599,0,"",shellscript,selection_command +2249,2581579,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",543,0,"",shellscript,selection_command +2250,2581595,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",522,0,"",shellscript,selection_command +2251,2581628,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",496,0,"",shellscript,selection_command +2252,2581659,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",464,0,"",shellscript,selection_command +2253,2581693,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",440,0,"",shellscript,selection_command +2254,2581728,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",412,0,"",shellscript,selection_command +2255,2581762,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",394,0,"",shellscript,selection_command +2256,2581796,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",393,0,"",shellscript,selection_command +2257,2581838,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",369,0,"",shellscript,selection_command +2258,2582101,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",393,0,"",shellscript,selection_command +2259,2582276,"TERMINAL",0,0,"2",,terminal_output +2260,2582394,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",393,1,"\n",shellscript,selection_command +2261,2582739,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",0,393,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --mail-user=mihir.mahajan2002@gmail.com\n#SBATCH --job-name=train_tokenizer_minecraft_overfit_sample\n#SBATCH --mail-type=ALL\n",shellscript,selection_command +2262,2582824,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",20,373,"\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=05:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=5\n#SBATCH --gres=gpu:1\n#SBATCH --output=logs/logs_training/%x_%j.log\n#SBATCH --error=logs/logs_training/%x_%j.log\n#SBATCH --mail-user=mihir.mahajan2002@gmail.com\n#SBATCH --job-name=train_tokenizer_minecraft_overfit_sample\n#SBATCH --mail-type=ALL\n",shellscript,selection_command +2263,2583264,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",20,374,"",shellscript,content +2264,2583344,"TERMINAL",0,0,"3",,terminal_output +2265,2583354,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",38,0,"",shellscript,selection_command +2266,2583616,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",66,0,"",shellscript,selection_command +2267,2583642,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",90,0,"",shellscript,selection_command +2268,2583674,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",122,0,"",shellscript,selection_command +2269,2583707,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",148,0,"",shellscript,selection_command +2270,2583740,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",169,0,"",shellscript,selection_command +2271,2583772,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",225,0,"",shellscript,selection_command +2272,2583805,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",280,0,"",shellscript,selection_command +2273,2584326,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",281,0,"",shellscript,selection_command +2274,2584381,"TERMINAL",0,0,"4",,terminal_output +2275,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",340,0,"5",shellscript,content +2276,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",336,4,"",shellscript,content +2277,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",335,0,"0",shellscript,content +2278,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",334,1,"",shellscript,content +2279,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",333,0,"ze",shellscript,content +2280,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",331,2,"",shellscript,content +2281,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",327,3,"",shellscript,content +2282,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",324,0,"ampl",shellscript,content +2283,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",322,2,"",shellscript,content +2284,2585234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",318,2,"",shellscript,content +2285,2585235,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",317,0,"overfi",shellscript,content +2286,2585235,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",315,2,"",shellscript,content +2287,2585412,"TERMINAL",0,0,"5",,terminal_output +2288,2585982,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",339,0,"",shellscript,selection_command +2289,2586150,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",340,0,"",shellscript,selection_command +2290,2586458,"TERMINAL",0,0,"6",,terminal_output +2291,2587509,"TERMINAL",0,0,"7",,terminal_output +2292,2587741,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",340,0,"",shellscript,selection_command +2293,2588409,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",226,0,"",shellscript,selection_command +2294,2588441,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",170,0,"",shellscript,selection_command +2295,2588475,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",149,0,"",shellscript,selection_command +2296,2588509,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",123,0,"",shellscript,selection_command +2297,2588543,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",91,0,"",shellscript,selection_command +2298,2588545,"TERMINAL",0,0,"8",,terminal_output +2299,2588578,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",67,0,"",shellscript,selection_command +2300,2588613,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",39,0,"",shellscript,selection_command +2301,2588644,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",21,0,"",shellscript,selection_command +2302,2588830,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",39,0,"",shellscript,selection_command +2303,2589247,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",67,0,"",shellscript,selection_command +2304,2589603,"TERMINAL",0,0,"9",,terminal_output +2305,2589925,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",68,0,"",shellscript,selection_command +2306,2590182,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",69,0,"",shellscript,selection_command +2307,2590210,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",70,0,"",shellscript,selection_command +2308,2590239,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",71,0,"",shellscript,selection_command +2309,2590272,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",72,0,"",shellscript,selection_command +2310,2590304,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",73,0,"",shellscript,selection_command +2311,2590333,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",74,0,"",shellscript,selection_command +2312,2590364,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",75,0,"",shellscript,selection_command +2313,2590398,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",76,0,"",shellscript,selection_command +2314,2590430,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",77,0,"",shellscript,selection_command +2315,2590465,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",78,0,"",shellscript,selection_command +2316,2590499,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",79,0,"",shellscript,selection_command +2317,2590532,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",80,0,"",shellscript,selection_command +2318,2590565,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",81,0,"",shellscript,selection_command +2319,2590648,"TERMINAL",0,0,"30",,terminal_output +2320,2590898,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",82,0,"",shellscript,selection_command +2321,2591149,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",82,1,"1",shellscript,content +2322,2591359,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",106,0,"",shellscript,selection_command +2323,2591689,"TERMINAL",0,0,"1",,terminal_output +2324,2591927,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",138,0,"",shellscript,selection_command +2325,2592162,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",164,0,"",shellscript,selection_command +2326,2592329,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",185,0,"",shellscript,selection_command +2327,2592516,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",241,0,"",shellscript,selection_command +2328,2592711,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",296,0,"",shellscript,selection_command +2329,2592728,"TERMINAL",0,0,"2",,terminal_output +2330,2592880,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",339,0,"",shellscript,selection_command +2331,2593044,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",340,0,"",shellscript,selection_command +2332,2593488,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",340,2,"",shellscript,content +2333,2593773,"TERMINAL",0,0,"3",,terminal_output +2334,2594830,"TERMINAL",0,0,"4",,terminal_output +2335,2595835,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",340,1,"",shellscript,content +2336,2595863,"TERMINAL",0,0,"5",,terminal_output +2337,2596094,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",364,0,"",shellscript,selection_command +2338,2596342,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",371,0,"",shellscript,selection_command +2339,2596371,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",372,0,"",shellscript,selection_command +2340,2596405,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",402,0,"",shellscript,selection_command +2341,2596438,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",432,0,"",shellscript,selection_command +2342,2596472,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",458,0,"",shellscript,selection_command +2343,2596505,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",459,0,"",shellscript,selection_command +2344,2596538,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",509,0,"",shellscript,selection_command +2345,2596570,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",575,0,"",shellscript,selection_command +2346,2596605,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",576,0,"",shellscript,selection_command +2347,2596639,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",601,0,"",shellscript,selection_command +2348,2596907,"TERMINAL",0,0,"6",,terminal_output +2349,2597950,"TERMINAL",0,0,"7",,terminal_output +2350,2598989,"TERMINAL",0,0,"8",,terminal_output +2351,2600030,"TERMINAL",0,0,"9",,terminal_output +2352,2601079,"TERMINAL",0,0,"40",,terminal_output +2353,2602130,"TERMINAL",0,0,"1",,terminal_output +2354,2603166,"TERMINAL",0,0,"2",,terminal_output +2355,2604217,"TERMINAL",0,0,"3",,terminal_output +2356,2605255,"TERMINAL",0,0,"4",,terminal_output +2357,2606293,"TERMINAL",0,0,"6",,terminal_output +2358,2607336,"TERMINAL",0,0,"7",,terminal_output +2359,2608385,"TERMINAL",0,0,"8",,terminal_output +2360,2608664,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",839,0,"",shellscript,selection_mouse +2361,2609133,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",861,0,"",shellscript,selection_mouse +2362,2609430,"TERMINAL",0,0,"9",,terminal_output +2363,2609525,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",730,0,"",shellscript,selection_mouse +2364,2609532,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",729,0,"",shellscript,selection_command +2365,2609790,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",628,0,"",shellscript,selection_mouse +2366,2610064,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",575,0,"",shellscript,selection_mouse +2367,2610392,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",496,0,"",shellscript,selection_mouse +2368,2610469,"TERMINAL",0,0,"50",,terminal_output +2369,2611234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",663,0,"",shellscript,selection_mouse +2370,2611508,"TERMINAL",0,0,"1",,terminal_output +2371,2611570,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",494,0,"",shellscript,selection_mouse +2372,2611994,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",458,0,"",shellscript,selection_mouse +2373,2612556,"TERMINAL",0,0,"2",,terminal_output +2374,2613594,"TERMINAL",0,0,"3",,terminal_output +2375,2614635,"TERMINAL",0,0,"4",,terminal_output +2376,2615681,"TERMINAL",0,0,"5",,terminal_output +2377,2616745,"TERMINAL",0,0,"6",,terminal_output +2378,2617791,"TERMINAL",0,0,"7",,terminal_output +2379,2618184,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample.sbatch",0,0,"",shellscript,tab +2380,2618818,"TERMINAL",0,0,"8",,terminal_output +2381,2619846,"TERMINAL",0,0,"9",,terminal_output +2382,2620966,"TERMINAL",0,0,"6:00",,terminal_output +2383,2621943,"TERMINAL",0,0,"1",,terminal_output +2384,2622496,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",0,0,"",shellscript,tab +2385,2622993,"TERMINAL",0,0,"2",,terminal_output +2386,2623821,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",459,0,"",shellscript,selection_command +2387,2624032,"TERMINAL",0,0,"3",,terminal_output +2388,2624068,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sbatch",509,0,"",shellscript,selection_command +2389,2625068,"TERMINAL",0,0,"4",,terminal_output +2390,2626111,"TERMINAL",0,0,"5",,terminal_output +2391,2627150,"TERMINAL",0,0,"6",,terminal_output +2392,2628195,"TERMINAL",0,0,"7",,terminal_output +2393,2629235,"TERMINAL",0,0,"8",,terminal_output +2394,2630277,"TERMINAL",0,0,"10",,terminal_output +2395,2631316,"TERMINAL",0,0,"1",,terminal_output +2396,2632434,"TERMINAL",0,0,"2",,terminal_output +2397,2632862,"TERMINAL",0,0,"watch",,terminal_focus +2398,2633428,"TERMINAL",0,0,"3",,terminal_output +2399,2634065,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +2400,2636638,"TERMINAL",0,0,"queue",,terminal_command +2401,2636736,"TERMINAL",0,0,"]633;E;2025-06-26 20:16:16 queue;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Thu Jun 26 20:16:16 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)",,terminal_output +2402,2637654,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +2403,2643125,"TERMINAL",0,0,"cd ..^C",,terminal_command +2404,2643133,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:~/projects/jafar]633;D",,terminal_output +2405,2708147,"TERMINAL",0,0,"cd ../jafar_ov^C",,terminal_command +2406,2708163,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C]0;tum_ind3695@hkn1993:~/projects/jafar]633;D",,terminal_output +2407,2718925,"TERMINAL",0,0,"cursor ../jafar_run_overfit/",,terminal_command +2408,2718977,"TERMINAL",0,0,"]633;E;2025-06-26 20:17:38 cursor ../jafar_run_overfit/;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;C",,terminal_output +2409,2719085,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar",,terminal_output +2410,2830405,"shell_scripts/copy_project_files.sh",0,0,"#!/bin/bash\n\nsrc_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar/*\ndst_dir=/home/hk-project-pai00039/tum_ind3695/projects/jafar_dyn/\nexclude_file=./shell_scripts/exclude.txt\n\nrsync -av --progress --exclude-from=$exclude_file $src_dir $dst_dir\n",shellscript,tab +2411,2831249,"shell_scripts/exclude.txt",0,0,".venv_jafar\nwandb\nlogs\n.git\n",plaintext,tab +2412,2832583,"shell_scripts/exclude.txt",28,0,"s",plaintext,content +2413,2832584,"shell_scripts/exclude.txt",29,0,"",plaintext,selection_keyboard +2414,2832712,"shell_scripts/exclude.txt",29,0,"l",plaintext,content +2415,2832713,"shell_scripts/exclude.txt",30,0,"",plaintext,selection_keyboard +2416,2834286,"shell_scripts/exclude.txt",29,1,"",plaintext,content +2417,2834843,"shell_scripts/exclude.txt",29,0,"l",plaintext,content +2418,2834845,"shell_scripts/exclude.txt",30,0,"",plaintext,selection_keyboard +2419,2835020,"shell_scripts/exclude.txt",30,0,"u",plaintext,content +2420,2835021,"shell_scripts/exclude.txt",31,0,"",plaintext,selection_keyboard +2421,2835145,"shell_scripts/exclude.txt",31,0,"r",plaintext,content +2422,2835146,"shell_scripts/exclude.txt",32,0,"",plaintext,selection_keyboard +2423,2835246,"shell_scripts/exclude.txt",32,0,"m",plaintext,content +2424,2835247,"shell_scripts/exclude.txt",33,0,"",plaintext,selection_keyboard +2425,2835738,"shell_scripts/exclude.txt",32,0,"",plaintext,selection_command +2426,2842517,"TERMINAL",0,0,"./shell_scripts/copy_project_files.sh",,terminal_command +2427,2842553,"TERMINAL",0,0,"]633;E;2025-06-26 20:19:42 ./shell_scripts/copy_project_files.sh ;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;Csending incremental file list\r\n",,terminal_output +2428,2842896,"TERMINAL",0,0,"requirements.txt\r\n\r 161 100% 0.00kB/s 0:00:00 \r 161 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=160/166)\r\ntrain_dynamics.py\r\n\r 9,171 100% 8.75MB/s 0:00:00 \r 9,171 100% 8.75MB/s 0:00:00 (xfr#2, to-chk=155/166)\r\ntrain_lam.py\r\n\r 9,615 100% 9.17MB/s 0:00:00 \r 9,615 100% 9.17MB/s 0:00:00 (xfr#3, to-chk=153/166)\r\ntrain_tokenizer.py\r\n\r 9,256 100% 8.83MB/s 0:00:00 \r 9,256 100% 8.83MB/s 0:00:00 (xfr#4, to-chk=150/166)\r\n",,terminal_output +2429,2843079,"TERMINAL",0,0,"__pycache__/\r\n__pycache__/genie.cpython-310.pyc\r\n\r 7,903 100% 43.85kB/s 0:00:00 \r 7,903 100% 43.85kB/s 0:00:00 (xfr#5, to-chk=140/166)\r\nsample_results/\r\nsample_results/knoms_overfit_10/\r\nsbatch_scripts/coinrun/\r\nsbatch_scripts/coinrun/train_tokenizer_coinrun.sbatch\r\n\r 1,251 100% 6.90kB/s 0:00:00 \r 1,251 100% 6.90kB/s 0:00:00 (xfr#6, to-chk=59/166)\r\nsbatch_scripts/coinrun/train_tokenizer_coinrun.sh\r\n\r 1,436 100% 7.88kB/s 0:00:00 \r 1,436 100% 7.88kB/s 0:00:00 (xfr#7, to-chk=58/166)\r\nsbatch_scripts/preprocess/\r\nsbatch_scripts/preprocess/npy_to_tfrecord_open_ai.sbatch\r\n\r 865 100% 4.72kB/s 0:00:00 \r 865 100% 4.72kB/s 0:00:00 (xfr#8, to-chk=45/166)\r\nsbatch_scripts/procgen/data_gen_gym_coinrun.sh\r\n\r 653 100% 3.54kB/s 0:00:00 \r 653 100% 3.54kB/s 0:00:00 (xfr#9, to-chk=38/166)\r\nsbatch_scripts/sample_jafar/\r\nsbatch_scripts/sample_jafar/sample_knoms.sbatch\r\n\r 1,525 100% 8.23kB/s 0:00:00 \r 1,525 100% 8.23kB/s 0:00:00 (xfr#10, to-chk=31/166)\r\nsbatch_scripts/sample_jafar/sample_knoms.sh\r\n\r 1,071 100% 5.75kB/s 0:00:00 \r 1,071 100% 5.75kB/s 0:00:00 (xfr#11, to-chk=30/166)\r\nshell_scripts/exclude.txt\r\n\r 33 100% 0.18kB/s 0:00:00 \r 33 100% 0.18kB/s 0:00:00 (xfr#12, to-chk=15/166)\r\nutils/\r\nutils/dataloader.py\r\n\r 4,251 100% 22.69kB/s 0:00:00 \r 4,251 100% 22.69kB/s 0:00:00 (xfr#13, to-chk=12/166)\r\nutils/preprocess_dataset.py\r\n\r 3,585 100% 19.13kB/s 0:00:00 \r 3,585 100% 19.13kB/s 0:00:00 (xfr#14, to-chk=8/166)\r\nutils/preprocess_video_to_npy.py\r\n\r 3,581 100% 19.11kB/s 0:00:00 \r 3,581 100% 19.11kB/s 0:00:00 (xfr#15, to-chk=6/166)\r\nutils/__pycache__/\r\nutils/__pycache__/dataloader.cpython-310.pyc\r\n\r 3,412 100% 18.11kB/s 0:00:00 \r 3,412 100% 18.11kB/s 0:00:00 (xfr#16, to-chk=4/166)\r\nutils/__pycache__/nn.cpython-310.pyc\r\n\r 4,146 100% 21.77kB/s 0:00:00 \r 4,146 100% 21.77kB/s 0:00:00 (xfr#17, to-chk=3/166)\r\nutils/__pycache__/parameter_utils.cpython-310.pyc\r\n\r 1,486 100% 7.72kB/s 0:00:00 \r 1,486 100% 7.72kB/s 0:00:00 (xfr#18, to-chk=2/166)\r\n",,terminal_output +2430,2843286,"TERMINAL",0,0,"\r\nsent 70,108 bytes received 429 bytes 47,024.67 bytes/sec\r\ntotal size is 48,634,407 speedup is 689.49\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +2431,2866827,"shell_scripts/exclude.txt",33,0,"",plaintext,selection_mouse +2432,2866829,"shell_scripts/exclude.txt",32,0,"",plaintext,selection_command +2433,2868335,"shell_scripts/copy_project_files.sh",0,0,"",shellscript,tab +2434,2869094,"shell_scripts/copy_project_files.sh",184,0,"",shellscript,selection_command +2435,2869345,"shell_scripts/copy_project_files.sh",183,0,"",shellscript,selection_command +2436,2869371,"shell_scripts/copy_project_files.sh",142,0,"",shellscript,selection_command +2437,2869404,"shell_scripts/copy_project_files.sh",76,0,"",shellscript,selection_command +2438,2869432,"shell_scripts/copy_project_files.sh",13,0,"",shellscript,selection_command +2439,2882004,"TERMINAL",0,0,"./shell_scripts/copy_project_files.sh",,terminal_command +2440,2882076,"TERMINAL",0,0,"]633;E;2025-06-26 20:20:21 ./shell_scripts/copy_project_files.sh ;d1784359-9922-4aee-ab7e-c1597e2b36f3]633;Csending incremental file list\r\n",,terminal_output +2441,2882108,"TERMINAL",0,0,"\r\nsent 5,897 bytes received 47 bytes 11,888.00 bytes/sec\r\ntotal size is 48,634,407 speedup is 8,182.10\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-cd3adcdf-8370-4269-848e-4350f71afc211751306079061-2025_06_30-19.54.55.948/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-cd3adcdf-8370-4269-848e-4350f71afc211751306079061-2025_06_30-19.54.55.948/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..466595836fc630e0546bb1914a847e1ca74b9f76 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-cd3adcdf-8370-4269-848e-4350f71afc211751306079061-2025_06_30-19.54.55.948/source.csv @@ -0,0 +1,65 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,4,"train_lam.py",0,0,"from dataclasses import dataclass, field\nimport os\nimport time\n\nimport einops\nfrom flax.training import orbax_utils\nfrom flax.training.train_state import TrainState\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax\nfrom orbax.checkpoint import PyTreeCheckpointer\nimport numpy as np\nimport dm_pix as pix\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\n\nfrom models.lam import LatentActionModel\nfrom utils.dataloader import get_dataloader\nfrom utils.parameter_utils import count_parameters_by_component\n\nts = int(time.time())\n\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 200_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data_tfrecords/coinrun""\n checkpoint: str = """"\n # Optimization\n batch_size: int = 36\n vq_beta: float = 0.25\n min_lr: float = 3e-6\n max_lr: float = 3e-5\n warmup_steps: int = 5000\n vq_reset_thresh: int = 50\n # LAM\n model_dim: int = 512\n latent_dim: int = 32\n num_latents: int = 6\n patch_size: int = 16\n num_blocks: int = 8\n num_heads: int = 8\n dropout: float = 0.0\n codebook_dropout: float = 0.0\n # Logging\n log: bool = False\n entity: str = """"\n project: str = """"\n name: str = ""train_lam""\n tags: list[str] = field(default_factory=lambda: [""lam""])\n log_interval: int = 5\n log_image_interval: int = 250\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 10000\n\n\nargs = tyro.cli(Args)\n\n\ndef lam_loss_fn(params, state, inputs):\n # --- Compute loss ---\n outputs = state.apply_fn(\n params, inputs, training=True, rngs={""dropout"": inputs[""rng""]}\n )\n gt_future_frames = inputs[""videos""][:, 1:]\n mse = jnp.square(gt_future_frames - outputs[""recon""]).mean()\n q_loss = jnp.square(jax.lax.stop_gradient(outputs[""emb""]) - outputs[""z""]).mean()\n commitment_loss = jnp.square(\n outputs[""emb""] - jax.lax.stop_gradient(outputs[""z""])\n ).mean()\n loss = mse + q_loss + args.vq_beta * commitment_loss\n\n # --- Compute validation metrics ---\n gt = gt_future_frames.clip(0, 1).reshape(-1, *gt_future_frames.shape[2:])\n recon = outputs[""recon""].clip(0, 1).reshape(-1, *outputs[""recon""].shape[2:])\n psnr = pix.psnr(gt, recon).mean()\n ssim = pix.ssim(gt, recon).mean()\n count_fn = jax.vmap(lambda i: (outputs[""indices""] == i).sum())\n index_counts = count_fn(jnp.arange(args.num_latents))\n metrics = dict(\n loss=loss,\n mse=mse,\n q_loss=q_loss,\n commitment_loss=commitment_loss,\n psnr=psnr,\n ssim=ssim,\n codebook_usage=(index_counts != 0).mean(),\n )\n return loss, (outputs[""recon""], index_counts, metrics)\n\n\n@jax.jit\ndef train_step(state, inputs, action_last_active):\n # --- Update model ---\n rng, inputs[""rng""] = jax.random.split(inputs[""rng""])\n grad_fn = jax.value_and_grad(lam_loss_fn, has_aux=True, allow_int=True)\n (loss, (recon, idx_counts, metrics)), grads = grad_fn(state.params, state, inputs)\n state = state.apply_gradients(grads=grads)\n\n # --- Reset inactive latent actions ---\n codebook = state.params[""params""][""vq""][""codebook""]\n num_codes = len(codebook)\n active_codes = idx_counts != 0.0\n action_last_active = jnp.where(active_codes, 0, action_last_active + 1)\n p_code = active_codes / active_codes.sum()\n reset_idxs = jax.random.choice(rng, num_codes, shape=(num_codes,), p=p_code)\n do_reset = action_last_active >= args.vq_reset_thresh\n new_codebook = jnp.where(\n jnp.expand_dims(do_reset, -1), codebook[reset_idxs], codebook\n )\n state.params[""params""][""vq""][""codebook""] = new_codebook\n action_last_active = jnp.where(do_reset, 0, action_last_active)\n return state, loss, recon, action_last_active, metrics\n\n\nif __name__ == ""__main__"":\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n per_device_batch_size_for_init = args.batch_size // num_devices\n\n rng = jax.random.PRNGKey(args.seed)\n if args.log and jax.process_index() == 0:\n wandb.init(\n entity=args.entity,\n project=args.project,\n name=args.name,\n tags=args.tags,\n group=""debug"",\n config=args,\n )\n\n # --- Initialize model ---\n lam = LatentActionModel(\n in_dim=args.image_channels,\n model_dim=args.model_dim,\n latent_dim=args.latent_dim,\n num_latents=args.num_latents,\n patch_size=args.patch_size,\n num_blocks=args.num_blocks,\n num_heads=args.num_heads,\n dropout=args.dropout,\n codebook_dropout=args.codebook_dropout,\n )\n # Track when each action was last sampled\n action_last_active = jnp.zeros(args.num_latents)\n image_shape = (args.image_height, args.image_width, args.image_channels)\n rng, _rng = jax.random.split(rng)\n inputs = dict(\n videos=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len, *image_shape),\n dtype=jnp.float32,\n ),\n rng=_rng,\n )\n rng, _rng = jax.random.split(rng)\n init_params = lam.init(_rng, inputs)\n\n param_counts = count_parameters_by_component(init_params)\n print(""Parameter counts:"")\n print(param_counts)\n\n # --- Initialize optimizer ---\n lr_schedule = optax.warmup_cosine_decay_schedule(\n args.min_lr, args.max_lr, args.warmup_steps, args.num_steps\n )\n tx = optax.adamw(learning_rate=lr_schedule, b1=0.9, b2=0.9, weight_decay=1e-4)\n train_state = TrainState.create(apply_fn=lam.apply, params=init_params, tx=tx)\n\n # FIXME: switch to create_hybrid_device_mesh for runs spanning multiple nodes\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n train_state = jax.device_put(train_state, replicated_sharding)\n action_last_active = jax.device_put(action_last_active, replicated_sharding)\n\n # --- Load checkpoint ---\n step = 0\n if args.checkpoint:\n restore_target = {""model"": train_state}\n restore_args = orbax_utils.restore_args_from_target(restore_target)\n train_state.params[""params""].update(\n PyTreeCheckpointer()\n .restore(args.checkpoint, item=restore_target, restore_args=restore_args)[\n ""model""\n ]\n .params[""params""]\n )\n # Assume checkpoint is of the form tokenizer__\n step += int(args.checkpoint.split(""_"")[-1])\n\n # --- TRAIN LOOP ---\n tfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n ]\n dataloader = get_dataloader(\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n tfrecord_files,\n args.seq_len,\n args.batch_size,\n *image_shape,\n )\n print(f""Starting training from step {step}..."")\n while step < args.num_steps:\n for videos in dataloader:\n # --- Train step ---\n rng, _rng = jax.random.split(rng)\n\n videos_sharding = NamedSharding(\n mesh, PartitionSpec(""data"", None, None, None, None)\n )\n videos = jax.make_array_from_process_local_data(videos_sharding, videos)\n\n inputs = dict(videos=videos, rng=_rng)\n start_time = time.time()\n train_state, loss, recon, action_last_active, metrics = train_step(\n train_state, inputs, action_last_active\n )\n elapsed_time = (time.time() - start_time) * 1000\n print(f""Step {step}, loss: {loss}, step time: {elapsed_time}ms"")\n step += 1\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n wandb.log(\n {\n ""loss"": loss,\n ""step"": step,\n ""step_time_ms"": elapsed_time,\n **metrics,\n }\n )\n if step % args.log_image_interval == 0:\n gt_seq = inputs[""videos""][0][1:]\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[0])),\n recon=wandb.Image(np.asarray(recon_seq[0])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n wandb.log(log_images)\n if step % args.log_checkpoint_interval == 0:\n ckpt = {""model"": train_state}\n orbax_checkpointer = orbax.checkpoint.PyTreeCheckpointer()\n save_args = orbax_utils.save_args_from_target(ckpt)\n orbax_checkpointer.save(\n os.path.join(os.getcwd(), args.ckpt_dir, f""lam_{ts}_{step}""),\n ckpt,\n save_args=save_args,\n )\n if step >= args.num_steps:\n break\n",python,tab +2,1326,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"7:54:55 PM [info] Activating crowd-code\n7:54:55 PM [info] Welcome back tum_ind3695. Your user-id is '507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20'. Happy coding!\n7:54:55 PM [info] Recording started\n",Log,tab +3,1935,"train_lam.py",0,0,"",python,tab +4,3854,"TERMINAL",0,0,"/bin/python /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt",,terminal_command +5,3900,"TERMINAL",0,0,"]633;E;2025-06-30 19:54:59 /bin/python /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt;e30aeaa0-56ca-42c9-9301-5e91a5c354f0]633;C",,terminal_output +6,3979,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash]633;D;0",,terminal_output +7,59185,"slurm/dev/alfred/train_lam_dev/train_lam_single_batch.sh",0,0,"module unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/lam/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\n\n# data_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_1_shard_overfit'\ndata_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards'\n# data_dir = '/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_tfrecords_500_shards_overfit_1'\n\n# srun python train_lam.py \\npython train_lam.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=48 \\n --log_checkpoint_interval=1000 \\n --log_image_interval=10 \\n --seed=0 \\n --min_lr=0.0000433 \\n --max_lr=0.0000433 \\n --log \\n --entity instant-uv \\n --data_dir $data_dir \\n --project jafar\n",shellscript,tab +8,59197,"slurm/dev/alfred/preprocess/preprocess_video_to_npy.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=01:30:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-pai00039\n#SBATCH --cpus-per-task=72\n#SBATCH --output=logs/logs_preprocessing/%x_%j.log\n#SBATCH --error=logs/logs_preprocessing/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=preprocess_video_to_npy\n#SBATCH --mail-type=ALL\n\n# Log the sbatch script\ncat $0\n\nsource .venv/bin/activate\n\ninput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms/""\noutput_path=""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/knoms_npy_tmp""\n\nstart_time=$(date +%s) \npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path\nend_time=$(date +%s)\necho ""Time taken: $((end_time - start_time)) seconds""\n\n\n\n\npython utils/preprocess_video_to_npy.py --input_path $input_path --output_path $output_path",shellscript,tab +9,59199,"TERMINAL",0,0,"bash",,terminal_focus +10,59200,"TERMINAL",0,0,"fsacct_week",,terminal_command +11,59201,"TERMINAL",0,0,"bash",,terminal_focus +12,59203,"slurm/dev/alfred/preprocess/preprocess_video_to_npy.sbatch",0,0,"",shellscript,tab +13,59207,"slurm/dev/alfred/train_lam_dev/train_lam_single_batch.sh",0,0,"",shellscript,tab +14,125352,"TERMINAL",0,0,"",,terminal_focus +15,128390,"TERMINAL",0,0,"idle",,terminal_command +16,128434,"TERMINAL",0,0,"]633;E;2025-06-30 19:57:04 idle;63556177-5250-4c5a-a767-4cf70a02e8b0]633;CPartition dev_cpuonly : 6 nodes idle\r\nPartition cpuonly : 8 nodes idle\r\nPartition dev_accelerated : 2 nodes idle\r\nPartition accelerated : 11 nodes idle\r\nPartition dev_accelerated-h100 : 0 nodes idle\r\nPartition accelerated-h100 : 1 nodes idle\r\nPartition large : 8 nodes idle\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +17,170201,"TERMINAL",0,0,"cd slurm/",,terminal_command +18,170209,"TERMINAL",0,0,"]633;E;2025-06-30 19:57:46 cd slurm/;63556177-5250-4c5a-a767-4cf70a02e8b0]633;C]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0]633;P;Cwd=/home/hk-project-pai00039/tum_ind3695/projects/jafar/slurm",,terminal_output +19,171637,"TERMINAL",0,0,"git pull",,terminal_command +20,171690,"TERMINAL",0,0,"]633;E;2025-06-30 19:57:47 git pull;63556177-5250-4c5a-a767-4cf70a02e8b0]633;C",,terminal_output +21,173600,"TERMINAL",0,0,"remote: Enumerating objects: 59, done.\r\nremote: Counting objects: 2% (1/44)\rremote: Counting objects: 4% (2/44)\rremote: Counting objects: 6% (3/44)\rremote: Counting objects: 9% (4/44)\rremote: Counting objects: 11% (5/44)\rremote: Counting objects: 13% (6/44)\rremote: Counting objects: 15% (7/44)\rremote: Counting objects: 18% (8/44)\rremote: Counting objects: 20% (9/44)\rremote: Counting objects: 22% (10/44)\rremote: Counting objects: 25% (11/44)\rremote: Counting objects: 27% (12/44)\rremote: Counting objects: 29% (13/44)\rremote: Counting objects: 31% (14/44)\rremote: Counting objects: 34% (15/44)\rremote: Counting objects: 36% (16/44)\rremote: Counting objects: 38% (17/44)\rremote: Counting objects: 40% (18/44)\rremote: Counting objects: 43% (19/44)\rremote: Counting objects: 45% (20/44)\rremote: Counting objects: 47% (21/44)\rremote: Counting objects: 50% (22/44)\rremote: Counting objects: 52% (23/44)\rremote: Counting objects: 54% (24/44)\rremote: Counting objects: 56% (25/44)\rremote: Counting objects: 59% (26/44)\rremote: Counting objects: 61% (27/44)\rremote: Counting objects: 63% (28/44)\rremote: Counting objects: 65% (29/44)\rremote: Counting objects: 68% (30/44)\rremote: Counting objects: 70% (31/44)\rremote: Counting objects: 72% (32/44)\rremote: Counting objects: 75% (33/44)\rremote: Counting objects: 77% (34/44)\rremote: Counting objects: 79% (35/44)\rremote: Counting objects: 81% (36/44)\rremote: Counting objects: 84% (37/44)\rremote: Counting objects: 86% (38/44)\rremote: Counting objects: 88% (39/44)\rremote: Counting objects: 90% (40/44)\rremote: Counting objects: 93% (41/44)\rremote: Counting objects: 95% (42/44)\rremote: Counting objects: 97% (43/44)\rremote: Counting objects: 100% (44/44)\rremote: Counting objects: 100% (44/44), done.\r\nremote: Compressing objects: 10% (1/10)\rremote: Compressing objects: 20% (2/10)\rremote: Compressing objects: 30% (3/10)\rremote: Compressing objects: 40% (4/10)\rremote: Compressing objects: 50% (5/10)\rremote: Compressing objects: 60% (6/10)\rremote: Compressing objects: 70% (7/10)\rremote: Compressing objects: 80% (8/10)\rremote: Compressing objects: 90% (9/10)\rremote: Compressing objects: 100% (10/10)\rremote: Compressing objects: 100% (10/10), done.\r\nUnpacking objects: 3% (1/27)\rUnpacking objects: 7% (2/27)\rUnpacking objects: 11% (3/27)\rUnpacking objects: 14% (4/27)\rUnpacking objects: 18% (5/27)\rUnpacking objects: 22% (6/27)\rUnpacking objects: 25% (7/27)\rUnpacking objects: 29% (8/27)\rUnpacking objects: 33% (9/27)\rUnpacking objects: 37% (10/27)\rUnpacking objects: 40% (11/27)\rUnpacking objects: 44% (12/27)\rUnpacking objects: 48% (13/27)\rUnpacking objects: 51% (14/27)\rUnpacking objects: 55% (15/27)\rUnpacking objects: 59% (16/27)\rremote: Total 27 (delta 18), reused 26 (delta 17), pack-reused 0 (from 0)\r\nUnpacking objects: 62% (17/27)\rUnpacking objects: 66% (18/27)\rUnpacking objects: 70% (19/27)\rUnpacking objects: 74% (20/27)\rUnpacking objects: 77% (21/27)\rUnpacking objects: 81% (22/27)\rUnpacking objects: 85% (23/27)\rUnpacking objects: 88% (24/27)\rUnpacking objects: 92% (25/27)\rUnpacking objects: 96% (26/27)\rUnpacking objects: 100% (27/27)\rUnpacking objects: 100% (27/27), 3.07 KiB | 23.00 KiB/s, done.\r\nFrom github.com:p-doom/slurm\r\n 00c01e0..705b23d main -> origin/main\r\nUpdating 00c01e0..705b23d\r\nFast-forward\r\n dev/alfred/overfit_minecraft_single_sample/train_dynamics_overfit_sample.sbatch | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/overfit_minecraft_single_sample/train_dynamics_overfit_sample.sh | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch | 2 +-\r\n dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh | 22 ++++++++++++++++------\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/logs/logs_training/train_tokenizer_batch_size_scaling_2_node_3292213.log | 136 ----------------------------------------------------------------------------------------------------------------------------------------\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_16_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_1_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_2_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_32_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_4_nodes.sbatch | 2 +-\r\n jobs/mihir/horeka/batchsize_scaling/adjusted_lr/train_tokenizer_8_nodes.sbatch | 2 +-\r\n 11 files changed, 143 insertions(+), 149 deletions(-)\r\n create mode 100644 dev/alfred/overfit_minecraft_single_sample/train_dynamics_overfit_sample.sbatch\r\n create mode 100755 dev/alfred/overfit_minecraft_single_sample/train_dynamics_overfit_sample.sh\r\n delete mode 100644 jobs/mihir/horeka/batchsize_scaling/adjusted_lr/logs/logs_training/train_tokenizer_batch_size_scaling_2_node_3292213.log\r\n]0;tum_ind3695@hkn1993:~/projects/jafar/slurm]633;D;0",,terminal_output +22,555751,"TERMINAL",0,0,"bash",,terminal_focus +23,555946,"TERMINAL",0,0,"bash",,terminal_focus +24,559191,"TERMINAL",0,0,"cd ..",,terminal_command +25,559198,"TERMINAL",0,0,"]633;E;2025-06-30 20:04:15 cd ..;63556177-5250-4c5a-a767-4cf70a02e8b0]633;C]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +26,560343,"TERMINAL",0,0,"git pull",,terminal_command +27,560388,"TERMINAL",0,0,"]633;E;2025-06-30 20:04:16 git pull;63556177-5250-4c5a-a767-4cf70a02e8b0]633;C",,terminal_output +28,562127,"TERMINAL",0,0,"remote: Enumerating objects: 8, done.\r\nremote: Counting objects: 12% (1/8)\rremote: Counting objects: 25% (2/8)\rremote: Counting objects: 37% (3/8)\rremote: Counting objects: 50% (4/8)\rremote: Counting objects: 62% (5/8)\rremote: Counting objects: 75% (6/8)\rremote: Counting objects: 87% (7/8)\rremote: Counting objects: 100% (8/8)\rremote: Counting objects: 100% (8/8), done.\r\nremote: Compressing objects: 12% (1/8)\rremote: Compressing objects: 25% (2/8)\rremote: Compressing objects: 37% (3/8)\rremote: Compressing objects: 50% (4/8)\rremote: Compressing objects: 62% (5/8)\rremote: Compressing objects: 75% (6/8)\rremote: Compressing objects: 87% (7/8)\rremote: Compressing objects: 100% (8/8)\rremote: Compressing objects: 100% (8/8), done.\r\n",,terminal_output +29,562246,"TERMINAL",0,0,"remote: Total 8 (delta 2), reused 0 (delta 0), pack-reused 0 (from 0)\r\nUnpacking objects: 12% (1/8)\rUnpacking objects: 25% (2/8)\rUnpacking objects: 37% (3/8)\rUnpacking objects: 50% (4/8)\rUnpacking objects: 62% (5/8)\rUnpacking objects: 75% (6/8)\rUnpacking objects: 87% (7/8)\rUnpacking objects: 100% (8/8)\rUnpacking objects: 100% (8/8), 6.44 KiB | 219.00 KiB/s, done.\r\n",,terminal_output +30,562305,"TERMINAL",0,0,"From github.com:p-doom/jafar\r\n 278d4b1..1a7ac42 main -> origin/main\r\nAlready up to date.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +31,739290,".gitignore",0,0,"*.pyc\n*.npy\n*.png\n*.gif\n\nwandb_key\ncheckpoints/\nwandb/\n__pycache__/\n\nlogs/\nsandbox/\nsbatch_scripts/\nvs-code-recorder/\ndata/\ndata_tfrecords/\nsh_scripts/\nutils/clip_checker.py\nutils/dataloader_seeding.py\nutils/preprocess_video_splitter_tmp.py\nrequirements_franz.txt\nsample_resolution_batches.py\ntrain_dynamics_*\ntrain_lam_*\ntrain_tokenizer_*\nnotes.md\nshell_scripts/\nslurm/\n",ignore,tab +32,740900,".gitignore",0,371,"*.pyc\n*.npy\n*.png\n*.gif\n\nwandb_key\ncheckpoints/\nwandb/\n__pycache__/\n\nlogs/\nsandbox/\nsbatch_scripts/\nvs-code-recorder/\ndata/\ndata_tfrecords/\nsh_scripts/\nutils/clip_checker.py\nutils/dataloader_seeding.py\nutils/preprocess_video_splitter_tmp.py\nrequirements_franz.txt\nsample_resolution_batches.py\ntrain_dynamics_*\ntrain_lam_*\ntrain_tokenizer_*\nnotes.md\nshell_scripts/\nslurm/\n",ignore,selection_command +33,741057,".gitignore",0,0,"",ignore,selection_command +34,947658,".gitignore",371,0,"",ignore,selection_mouse +35,948143,"TERMINAL",0,0,"bash",,terminal_focus +36,950955,"TERMINAL",0,0,"bash",,terminal_focus +37,951736,"TERMINAL",0,0,"gs",,terminal_command +38,951791,"TERMINAL",0,0,"]633;E;2025-06-30 20:10:47 gs;63556177-5250-4c5a-a767-4cf70a02e8b0]633;COn branch feature/model-parameter-count-utils\r\nYour branch is up to date with 'origin/feature/model-parameter-count-utils'.\r\n\r\nnothing to commit, working tree clean\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +39,956657,"TERMINAL",0,0,"git branch",,terminal_command +40,956693,"TERMINAL",0,0,"]633;E;2025-06-30 20:10:52 git branch;63556177-5250-4c5a-a767-4cf70a02e8b0]633;C[?1h=\r dataset-generation-procgen-gym\r\n* feature/model-parameter-count-utils\r\n fix-dataloader-caching\r\n fix-image-resolution-args\r\n fix-image-resolution-lam-dynamics\r\n fix-seeding-stateless-sampling\r\n fix_preprocess_video_paths\r\n infra-slurm-dev-scripts\r\n main\r\n preprocess_video\r\n quickfix-all-gather-induced-idling\r\n refactor/precommit-cleanup\r\n seeded-episode-sampling\r\n single-batch-training\r\n\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +41,963169,"TERMINAL",0,0,"git ps",,terminal_command +42,963198,"TERMINAL",0,0,"]633;E;2025-06-30 20:10:59 git ps;63556177-5250-4c5a-a767-4cf70a02e8b0]633;Cgit: 'ps' is not a git command. See 'git --help'.\r\n\r\nThe most similar command is\r\n\tpush\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;1",,terminal_output +43,964175,"TERMINAL",0,0,"gs",,terminal_command +44,964207,"TERMINAL",0,0,"]633;E;2025-06-30 20:11:00 gs;63556177-5250-4c5a-a767-4cf70a02e8b0]633;COn branch feature/model-parameter-count-utils\r\nYour branch is up to date with 'origin/feature/model-parameter-count-utils'.\r\n\r\nnothing to commit, working tree clean\r\n]0;tum_ind3695@hkn1993:~/projects/jafar]633;D;0",,terminal_output +45,1008477,".gitignore",0,0,"",ignore,tab +46,1009557,".gitignore",68,303,"\nlogs/\nsandbox/\nsbatch_scripts/\nvs-code-recorder/\ndata/\ndata_tfrecords/\nsh_scripts/\nutils/clip_checker.py\nutils/dataloader_seeding.py\nutils/preprocess_video_splitter_tmp.py\nrequirements_franz.txt\nsample_resolution_batches.py\ntrain_dynamics_*\ntrain_lam_*\ntrain_tokenizer_*\nnotes.md\nshell_scripts/\nslurm/\n",ignore,selection_command +47,1009880,".gitignore",68,0,"",ignore,selection_command +48,1356023,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\n\nslurm_job_id=$SLURM_JOB_ID\n\ntags=""overfit_sample tokenizer debug alfred""\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\n# model_dim=32\n# num_blocks=4\nlr=1e-4\n\nmodel_dim=256\nnum_blocks=8\n\njob_name=cointok_mod_dim_${model_dim}_num_blocks_${num_blocks}_lr_${lr}\n\npython train_tokenizer_single_sample.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=$lr \\n --max_lr=$lr \\n --log_image_interval=500 \\n --log \\n --entity instant-uv \\n --project jafar \\n --name $job_name \\n --tags $tags \\n --model_dim $model_dim \\n --num_blocks $num_blocks \\n --data_dir $tf_records_dir\n\n",shellscript,tab +49,1356534,".gitignore",0,0,"",ignore,tab +50,1361542,"TERMINAL",0,0,"bash",,terminal_focus +51,1361546,"slurm/dev/alfred/train_lam_dev/train_lam_single_batch.sh",0,0,"",shellscript,tab +52,2876080,"/home/hk-project-pai00039/tum_ind3695/.bashrc",0,0,"# .bashrc\n\n# Source global definitions\nif [ -f /etc/bashrc ]; then\n . /etc/bashrc\nfi\n\n# User specific environment\nif ! [[ ""$PATH"" =~ ""$HOME/.local/bin:$HOME/bin:"" ]]\nthen\n PATH=""$HOME/.local/bin:$HOME/bin:$PATH""\nfi\nexport PATH\n\n\nalias queue='watch -n 1 squeue --me'\nalias fqueue='squeue -o ""%.10i %.16P %.60j %.8u %.8T %.10M %.9l %.6D %R""'\nalias idle='sinfo_t_idle'\nalias smi='watch -n 1 nvidia-smi'\nalias fsacct_week='sacct --format=""JobID%15,JobName%30,Partition%16,AllocCPUS%3,State%12,Elapsed%10,Timelimit%10"" --starttime $(date -d ""last week"" +%Y-%m-%d) | grep -vE ""*.batch|*.extern|*.inter|bash|python|CANCELLED|echo""'\nalias fsacct_today='sacct --format=""JobID%15,JobName%55,Partition%16,AllocCPUS%3,State%12,Elapsed%10,Timelimit%10"" --starttime $(date +%Y-%m-%d) | grep -vE ""*.batch|*.extern|*.inter|bash""'\nalias execute_order_66_gpu_1='salloc --account=hk-project-p0023960 --time=01:00:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --mem=450G --ntasks-per-node=1'\nalias execute_order_66_gpu_4='salloc --account=hk-project-p0023960 --time=01:00:00 --partition=accelerated --nodes=1 --gres=gpu:4 --cpus-per-task=8 --ntasks-per-node=4'\nalias execute_order_66_cpuonly='salloc --account=hk-project-p0023960 --time=1:00:00 --partition=dev_cpuonly --nodes=1 --cpus-per-task=128 --ntasks-per-node=1'\n\nexport ws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\nexport HF_HOME=""$ws_dir/huggingface/""\n\nalias binger='cd $ws_dir/'\nalias dinger='cd /home/hk-project-pai00039/tum_ind3695/projects/jafar'\n\nalias gs='git status'\n\n\nexport PATH=/home/hk-project-pai00039/tum_ind3695/projects/ffmpeg-7.0.2-amd64-static:$PATH \n\noverlapper() {\n if [ -z ""$1"" ]; then\n echo ""Usage: overlap ""\n else\n srun --jobid=""$1"" --pty /usr/bin/bash\n fi\n}\n\n",shellscript,tab +53,2877004,"/home/hk-project-pai00039/tum_ind3695/.bashrc",0,0,"",shellscript,selection_command +54,2877701,"/home/hk-project-pai00039/tum_ind3695/.bashrc",10,0,"",shellscript,selection_command +55,2877857,"/home/hk-project-pai00039/tum_ind3695/.bashrc",88,0,"",shellscript,selection_command +56,2877990,"/home/hk-project-pai00039/tum_ind3695/.bashrc",233,0,"",shellscript,selection_command +57,2878132,"/home/hk-project-pai00039/tum_ind3695/.bashrc",1330,0,"",shellscript,selection_command +58,2878273,"/home/hk-project-pai00039/tum_ind3695/.bashrc",1442,0,"",shellscript,selection_command +59,2878422,"/home/hk-project-pai00039/tum_ind3695/.bashrc",1541,0,"",shellscript,selection_command +60,2879188,"/home/hk-project-pai00039/tum_ind3695/.bashrc",1564,0,"",shellscript,selection_command +61,2879333,"/home/hk-project-pai00039/tum_ind3695/.bashrc",1669,0,"",shellscript,selection_command +62,2879473,"/home/hk-project-pai00039/tum_ind3695/.bashrc",1812,0,"",shellscript,selection_command +63,2879924,"/home/hk-project-pai00039/tum_ind3695/.bashrc",1669,0,"",shellscript,selection_command +64,2880085,"/home/hk-project-pai00039/tum_ind3695/.bashrc",1565,0,"",shellscript,selection_command diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-fe02aeb3-604a-4819-a48b-84d43ac5b72c1751037770876-2025_06_27-17.23.08.156/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-fe02aeb3-604a-4819-a48b-84d43ac5b72c1751037770876-2025_06_27-17.23.08.156/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..c71fb5d8bd446a1b6b9c25805b2833bfb0f0a752 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-fe02aeb3-604a-4819-a48b-84d43ac5b72c1751037770876-2025_06_27-17.23.08.156/source.csv @@ -0,0 +1,1685 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,5,"train_tokenizer_single_sample.py",0,0,"from dataclasses import dataclass, field\nimport os\nimport time\n\nimport einops\nfrom flax.training import orbax_utils\nfrom flax.training.train_state import TrainState\nfrom jax.sharding import Mesh, PartitionSpec, NamedSharding\nfrom jax.experimental.mesh_utils import create_device_mesh\nimport optax\nimport orbax\nfrom orbax.checkpoint import PyTreeCheckpointer\nimport numpy as np\nimport dm_pix as pix\nimport jax\nimport jax.numpy as jnp\nimport tyro\nimport wandb\n\nfrom models.tokenizer import TokenizerVQVAE\nfrom utils.dataloader import get_dataloader\nfrom utils.parameter_utils import count_parameters_by_component\n\nts = int(time.time())\n\n\n@dataclass\nclass Args:\n # Experiment\n num_steps: int = 300_000\n seed: int = 0\n seq_len: int = 16\n image_channels: int = 3\n image_height: int = 90\n image_width: int = 160\n data_dir: str = ""data_tfrecords/coinrun""\n checkpoint: str = """"\n # Optimization\n vq_beta: float = 0.25\n batch_size: int = 48\n min_lr: float = 3e-4\n max_lr: float = 3e-4\n warmup_steps: int = 10000\n # Tokenizer\n model_dim: int = 512\n latent_dim: int = 32\n num_latents: int = 1024\n patch_size: int = 4\n num_blocks: int = 8\n num_heads: int = 8\n dropout: float = 0.0\n codebook_dropout: float = 0.01\n # Logging\n log: bool = False\n entity: str = """"\n project: str = """"\n name: str = ""train_tokenizer""\n tags: list[str] = field(default_factory=lambda: [""tokenizer""])\n log_interval: int = 5\n log_image_interval: int = 250\n ckpt_dir: str = """"\n log_checkpoint_interval: int = 10000\n log_gradients: bool = False\n\n\nargs = tyro.cli(Args)\n\n\ndef tokenizer_loss_fn(params, state, inputs):\n # --- Compute loss ---\n outputs = state.apply_fn(\n params,\n inputs,\n training=True,\n rngs={""params"": inputs[""rng""], ""dropout"": inputs[""dropout_rng""]},\n )\n mse = jnp.square(inputs[""videos""] - outputs[""recon""]).mean()\n q_loss = jnp.square(jax.lax.stop_gradient(outputs[""emb""]) - outputs[""z""]).mean()\n commitment_loss = jnp.square(\n outputs[""emb""] - jax.lax.stop_gradient(outputs[""z""])\n ).mean()\n loss = mse + q_loss + args.vq_beta * commitment_loss\n\n # --- Compute validation metrics ---\n gt = inputs[""videos""].clip(0, 1).reshape(-1, *inputs[""videos""].shape[2:])\n recon = outputs[""recon""].clip(0, 1).reshape(-1, *outputs[""recon""].shape[2:])\n psnr = pix.psnr(gt, recon).mean()\n ssim = pix.ssim(gt, recon).mean()\n _, index_counts = jnp.unique_counts(\n jnp.ravel(outputs[""indices""]), size=args.num_latents, fill_value=0\n )\n codebook_usage = (index_counts != 0).mean()\n metrics = dict(\n loss=loss,\n mse=mse,\n q_loss=q_loss,\n commitment_loss=commitment_loss,\n psnr=psnr,\n ssim=ssim,\n codebook_usage=codebook_usage,\n )\n return loss, (outputs[""recon""], metrics)\n\n\n@jax.jit\ndef train_step(state, inputs):\n grad_fn = jax.value_and_grad(tokenizer_loss_fn, has_aux=True, allow_int=True)\n (loss, (recon, metrics)), grads = grad_fn(state.params, state, inputs)\n state = state.apply_gradients(grads=grads)\n if args.log_gradients:\n metrics[""encoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""encoder""]\n )\n metrics[""vq_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""vq""]\n )\n metrics[""decoder_gradients_std/""] = jax.tree.map(\n lambda x: x.std(), grads[""params""][""decoder""]\n )\n return state, loss, recon, metrics\n\n\nif __name__ == ""__main__"":\n jax.distributed.initialize()\n num_devices = jax.device_count()\n if num_devices == 0:\n raise ValueError(""No JAX devices found."")\n print(f""Running on {num_devices} devices."")\n\n if args.batch_size % num_devices != 0:\n raise ValueError(\n f""Global batch size {args.batch_size} must be divisible by ""\n f""number of devices {num_devices}.""\n )\n\n per_device_batch_size_for_init = args.batch_size // num_devices\n\n rng = jax.random.PRNGKey(args.seed)\n if args.log and jax.process_index() == 0:\n wandb.init(\n entity=args.entity,\n project=args.project,\n name=args.name,\n tags=args.tags,\n group=""debug"",\n config=args\n )\n\n # --- Initialize model ---\n tokenizer = TokenizerVQVAE(\n in_dim=args.image_channels,\n model_dim=args.model_dim,\n latent_dim=args.latent_dim,\n num_latents=args.num_latents,\n patch_size=args.patch_size,\n num_blocks=args.num_blocks,\n num_heads=args.num_heads,\n dropout=args.dropout,\n codebook_dropout=args.codebook_dropout,\n )\n rng, _rng = jax.random.split(rng)\n image_shape = (args.image_height, args.image_width, args.image_channels)\n inputs = dict(\n videos=jnp.zeros(\n (per_device_batch_size_for_init, args.seq_len, *image_shape),\n dtype=jnp.float32,\n ),\n )\n init_params = tokenizer.init(_rng, inputs)\n\n param_counts = count_parameters_by_component(init_params)\n print(""Parameter counts:"")\n print(param_counts)\n\n\n\n # --- Initialize optimizer ---\n lr_schedule = optax.warmup_cosine_decay_schedule(\n args.min_lr, args.max_lr, args.warmup_steps, args.num_steps\n )\n tx = optax.adamw(learning_rate=lr_schedule, b1=0.9, b2=0.9, weight_decay=1e-4)\n train_state = TrainState.create(apply_fn=tokenizer.apply, params=init_params, tx=tx)\n\n # FIXME: switch to create_hybrid_device_mesh for runs spanning multiple nodes\n device_mesh_arr = create_device_mesh((num_devices,))\n mesh = Mesh(devices=device_mesh_arr, axis_names=(""data"",))\n\n replicated_sharding = NamedSharding(mesh, PartitionSpec())\n train_state = jax.device_put(train_state, replicated_sharding)\n\n # --- Load checkpoint ---\n step = 0\n if args.checkpoint:\n restore_target = {""model"": train_state}\n restore_args = orbax_utils.restore_args_from_target(restore_target)\n train_state.params[""params""].update(\n PyTreeCheckpointer()\n .restore(args.checkpoint, item=restore_target, restore_args=restore_args)[\n ""model""\n ]\n .params[""params""]\n )\n # Assume checkpoint is of the form tokenizer__\n step += int(args.checkpoint.split(""_"")[-1])\n\n # --- TRAIN LOOP ---\n tfrecord_files = [\n os.path.join(args.data_dir, x)\n for x in os.listdir(args.data_dir)\n if x.endswith("".tfrecord"")\n ]\n dataloader = get_dataloader(\n # NOTE: We deliberately pass the global batch size\n # The dataloader shards the dataset across all processes\n tfrecord_files,\n args.seq_len,\n args.batch_size,\n *image_shape,\n )\n print(f""Starting training from step {step}..."")\n while step < args.num_steps:\n # for videos in dataloader:\n # npy_path = ""overfit_dir/single_sample_corner.npy""\n # npy_path = ""overfit_dir/single_batch_12_elems.npy""\n npy_path = ""/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/overfit_dir/single_sample_corner.npy""\n videos = np.load(npy_path)\n print(""batch shape: "", videos.shape)\n while(True):\n # --- Train step ---\n rng, _rng, _rng_dropout = jax.random.split(rng, 3)\n\n videos_sharding = NamedSharding(\n mesh, PartitionSpec(""data"", None, None, None, None)\n )\n videos = jax.make_array_from_process_local_data(videos_sharding, videos)\n\n inputs = dict(videos=videos, rng=_rng, dropout_rng=_rng_dropout)\n start_time = time.time()\n train_state, loss, recon, metrics = train_step(train_state, inputs)\n jax.block_until_ready(loss)\n elapsed_time = (time.time() - start_time) * 1000\n print(f""Step {step}, loss: {loss}, step time: {elapsed_time}ms"")\n step += 1\n\n # --- Logging ---\n if args.log:\n if step % args.log_interval == 0 and jax.process_index() == 0:\n wandb.log(\n {\n ""loss"": loss,\n ""step"": step,\n ""step_time_ms"": elapsed_time,\n **metrics,\n }\n )\n if step % args.log_image_interval == 0:\n gt_seq = inputs[""videos""][0]\n recon_seq = recon[0].clip(0, 1)\n comparison_seq = jnp.concatenate((gt_seq, recon_seq), axis=1)\n comparison_seq = einops.rearrange(\n comparison_seq * 255, ""t h w c -> h (t w) c""\n )\n # NOTE: Process-dependent control flow deliberately happens\n # after indexing operation since it must not contain code\n # sections that lead to cross-accelerator communication.\n if jax.process_index() == 0:\n log_images = dict(\n image=wandb.Image(np.asarray(gt_seq[0])),\n recon=wandb.Image(np.asarray(recon_seq[0])),\n true_vs_recon=wandb.Image(\n np.asarray(comparison_seq.astype(np.uint8))\n ),\n )\n wandb.log(log_images)\n if step % args.log_checkpoint_interval == 0:\n ckpt = {""model"": train_state}\n orbax_checkpointer = orbax.checkpoint.PyTreeCheckpointer()\n save_args = orbax_utils.save_args_from_target(ckpt)\n orbax_checkpointer.save(\n os.path.join(os.getcwd(), args.ckpt_dir, f""tokenizer_{ts}_{step}""),\n ckpt,\n save_args=save_args,\n )\n if step >= args.num_steps:\n break\n",python,tab +2,1136,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"5:23:08 PM [info] Activating crowd-code\n5:23:08 PM [info] Welcome back tum_ind3695. Your user-id is '507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20'. Happy coding!\n5:23:08 PM [info] Recording started\n",Log,tab +3,2499,"train_tokenizer_single_sample.py",0,0,"",python,tab +4,3323,"TERMINAL",0,0,"gs",,terminal_command +5,3356,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:11 gs;dcbf4775-e574-4e9d-b507-67c2737583de]633;COn branch main\r\nYour branch is ahead of 'origin/main' by 1 commit.\r\n (use ""git push"" to publish your local commits)\r\n\r\nnothing to commit, working tree clean\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +6,3360,"TERMINAL",0,0,"/bin/python3 /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt",,terminal_command +7,3451,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:11 /bin/python3 /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt;0b224146-4490-4cce-ac02-48c0ad2ab6c3]633;C]0;tum_ind3695@hkn1993:/hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash]633;D;0",,terminal_output +8,6812,"TERMINAL",0,0,"git push",,terminal_command +9,6860,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:14 git push;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +10,8147,"TERMINAL",0,0,"To github.com:p-doom/slurm.git\r\n ! [rejected]  main -> main (fetch first)\r\nerror: failed to push some refs to 'github.com:p-doom/slurm.git'\r\nhint: Updates were rejected because the remote contains work that you do not\r\nhint: have locally. This is usually caused by another repository pushing to\r\nhint: the same ref. If you want to integrate the remote changes, use\r\nhint: 'git pull' before pushing again.\r\nhint: See the 'Note about fast-forwards' in 'git push --help' for details.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;1",,terminal_output +11,12533,"TERMINAL",0,0,"git pull",,terminal_command +12,12563,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:20 git pull;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +13,13943,"TERMINAL",0,0,"remote: Enumerating objects: 16, done.\r\nremote: Counting objects: 6% (1/16)\rremote: Counting objects: 12% (2/16)\rremote: Counting objects: 18% (3/16)\rremote: Counting objects: 25% (4/16)\rremote: Counting objects: 31% (5/16)\rremote: Counting objects: 37% (6/16)\rremote: Counting objects: 43% (7/16)\rremote: Counting objects: 50% (8/16)\rremote: Counting objects: 56% (9/16)\rremote: Counting objects: 62% (10/16)\rremote: Counting objects: 68% (11/16)\rremote: Counting objects: 75% (12/16)\rremote: Counting objects: 81% (13/16)\rremote: Counting objects: 87% (14/16)\rremote: Counting objects: 93% (15/16)\rremote: Counting objects: 100% (16/16)\rremote: Counting objects: 100% (16/16), done.\r\nremote: Compressing objects: 25% (1/4)\rremote: Compressing objects: 50% (2/4)\rremote: Compressing objects: 75% (3/4)\rremote: Compressing objects: 100% (4/4)\rremote: Compressing objects: 100% (4/4), done.\r\nremote: Total 12 (delta 7), reused 12 (delta 7), pack-reused 0 (from 0)\r\nUnpacking objects: 8% (1/12)\rUnpacking objects: 16% (2/12)\rUnpacking objects: 25% (3/12)\rUnpacking objects: 33% (4/12)\rUnpacking objects: 41% (5/12)\rUnpacking objects: 50% (6/12)\rUnpacking objects: 58% (7/12)\rUnpacking objects: 66% (8/12)\rUnpacking objects: 75% (9/12)\rUnpacking objects: 83% (10/12)\rUnpacking objects: 91% (11/12)\rUnpacking objects: 100% (12/12)\rUnpacking objects: 100% (12/12), 1.70 KiB | 30.00 KiB/s, done.\r\nFrom github.com:p-doom/slurm\r\n dbca399..06dec29 main -> origin/main\r\nhint: You have divergent branches and need to specify how to reconcile them.\r\nhint: You can do so by running one of the following commands sometime before\r\nhint: your next pull:\r\nhint: \r\nhint: git config pull.rebase false # merge\r\nhint: git config pull.rebase true # rebase\r\nhint: git config pull.ff only # fast-forward only\r\nhint: \r\nhint: You can replace ""git config"" with ""git config --global"" to set a default\r\nhint: preference for all repositories. You can also pass --rebase, --no-rebase,\r\nhint: or --ff-only on the command line to override the configured default per\r\nhint: invocation.\r\nfatal: Need to specify how to reconcile divergent branches.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;128",,terminal_output +14,18433,"TERMINAL",0,0,"git config pull.rebase false",,terminal_command +15,18454,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:26 git config pull.rebase false ;dcbf4775-e574-4e9d-b507-67c2737583de]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +16,20144,"TERMINAL",0,0,"git pull",,terminal_command +17,20194,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:28 git pull;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +18,21867,"TERMINAL",0,0,"hint: Waiting for your editor to close the file... [?1049h[>4;2m[?1h=[?2004h[?1004h[?12h[?12l[?25l""~/projects/jafar_run_overfit/slurm/.git/MERGE_MSG"" 6L, 273B▽ Pzz\[0%m [>c]10;?]11;?Merge branch 'main' of github.com:p-doom/slurm\r\n# Please enter a commit message to explain why this merge is necessary,# especially if it merges an updated upstream into a topic branch.#\r\n# Lines starting with '#' will be ignored, and an empty message aborts\r\n# the commit.\r\n~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?12$p[?25l/3333/3333 [?25h[?25l/fafa/fafa [?25h",,terminal_output +19,22904,"TERMINAL",0,0,"[?25l^[",,terminal_output +20,22999,"TERMINAL",0,0," ^[ [?25h",,terminal_output +21,23134,"TERMINAL",0,0,"[?25l::[?25h",,terminal_output +22,23362,"TERMINAL",0,0,"w",,terminal_output +23,23429,"TERMINAL",0,0,"q",,terminal_output +24,23607,"TERMINAL",0,0,"\r[?25l[?2004l[>4;m"".git/MERGE_MSG"" 6L, 273B written",,terminal_output +25,23726,"TERMINAL",0,0,"\r\r\r\n[?1004l[?2004l[?1l>[?25h[>4;m[?1049l\rMerge made by the 'ort' strategy.\r\n dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/coinrun/latent_action_ablation/train_lam_12.sbatch | 47 +++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/coinrun/latent_action_ablation/train_lam_24.sbatch | 47 +++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/coinrun/latent_action_ablation/train_lam_48.sbatch | 47 +++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/coinrun/latent_action_ablation/train_lam_6.sbatch | 47 +++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/coinrun/latent_action_ablation/train_tokenizer_coinrun copy.sbatch | 46 ++++++++++++++++++++++++++++++++++++++++++++++\r\n dev/alfred/coinrun/{ => latent_action_ablation}/train_tokenizer_coinrun.sbatch | 8 ++++----\r\n dev/alfred/coinrun/train_tokenizer_coinrun.sh | 53 -----------------------------------------------------\r\n 8 files changed, 292 insertions(+), 57 deletions(-)\r\n create mode 100644 dev/alfred/coinrun/latent_action_ablation/train_dynamics_coinrun.sbatch\r\n create mode 100644 dev/alfred/coinrun/latent_action_ablation/train_lam_12.sbatch\r\n create mode 100644 dev/alfred/coinrun/latent_action_ablation/train_lam_24.sbatch\r\n create mode 100644 dev/alfred/coinrun/latent_action_ablation/train_lam_48.sbatch\r\n create mode 100644 dev/alfred/coinrun/latent_action_ablation/train_lam_6.sbatch\r\n create mode 100644 dev/alfred/coinrun/latent_action_ablation/train_tokenizer_coinrun copy.sbatch\r\n rename dev/alfred/coinrun/{ => latent_action_ablation}/train_tokenizer_coinrun.sbatch (86%)\r\n delete mode 100755 dev/alfred/coinrun/train_tokenizer_coinrun.sh\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +26,25718,"TERMINAL",0,0,"git pulls",,terminal_command +27,25740,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:33 git pulls;dcbf4775-e574-4e9d-b507-67c2737583de]633;Cgit: 'pulls' is not a git command. See 'git --help'.\r\n\r\nThe most similar command is\r\n\tpull\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;1",,terminal_output +28,27514,"TERMINAL",0,0,"git pull",,terminal_command +29,27565,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:35 git pull;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +30,28843,"TERMINAL",0,0,"Already up to date.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +31,31523,"TERMINAL",0,0,"gs",,terminal_command +32,31555,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:39 gs;dcbf4775-e574-4e9d-b507-67c2737583de]633;COn branch main\r\nYour branch is ahead of 'origin/main' by 2 commits.\r\n (use ""git push"" to publish your local commits)\r\n\r\nnothing to commit, working tree clean\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +33,33089,"TERMINAL",0,0,"git push",,terminal_command +34,33141,"TERMINAL",0,0,"]633;E;2025-06-27 17:23:41 git push;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +35,34377,"TERMINAL",0,0,"Enumerating objects: 26, done.\r\nCounting objects: 4% (1/24)\rCounting objects: 8% (2/24)\rCounting objects: 12% (3/24)\rCounting objects: 16% (4/24)\rCounting objects: 20% (5/24)\rCounting objects: 25% (6/24)\rCounting objects: 29% (7/24)\rCounting objects: 33% (8/24)\rCounting objects: 37% (9/24)\rCounting objects: 41% (10/24)\rCounting objects: 45% (11/24)\rCounting objects: 50% (12/24)\rCounting objects: 54% (13/24)\rCounting objects: 58% (14/24)\rCounting objects: 62% (15/24)\rCounting objects: 66% (16/24)\rCounting objects: 70% (17/24)\rCounting objects: 75% (18/24)\rCounting objects: 79% (19/24)\rCounting objects: 83% (20/24)\rCounting objects: 87% (21/24)\rCounting objects: 91% (22/24)\rCounting objects: 95% (23/24)\rCounting objects: 100% (24/24)\rCounting objects: 100% (24/24), done.\r\nDelta compression using up to 152 threads\r\nCompressing objects: 6% (1/16)\rCompressing objects: 12% (2/16)\rCompressing objects: 18% (3/16)\rCompressing objects: 25% (4/16)\rCompressing objects: 31% (5/16)\rCompressing objects: 37% (6/16)\rCompressing objects: 43% (7/16)\rCompressing objects: 50% (8/16)\rCompressing objects: 56% (9/16)\rCompressing objects: 62% (10/16)\rCompressing objects: 68% (11/16)\rCompressing objects: 75% (12/16)\rCompressing objects: 81% (13/16)\rCompressing objects: 87% (14/16)\rCompressing objects: 93% (15/16)\rCompressing objects: 100% (16/16)\rCompressing objects: 100% (16/16), done.\r\nWriting objects: 6% (1/16)\rWriting objects: 12% (2/16)\rWriting objects: 18% (3/16)\rWriting objects: 25% (4/16)\rWriting objects: 31% (5/16)\rWriting objects: 37% (6/16)\rWriting objects: 43% (7/16)\rWriting objects: 56% (9/16)\rWriting objects: 62% (10/16)\rWriting objects: 68% (11/16)\rWriting objects: 75% (12/16)\rWriting objects: 81% (13/16)\rWriting objects: 87% (14/16)\rWriting objects: 93% (15/16)\rWriting objects: 100% (16/16)\rWriting objects: 100% (16/16), 1.99 KiB | 509.00 KiB/s, done.\r\nTotal 16 (delta 10), reused 0 (delta 0), pack-reused 0\r\n",,terminal_output +36,34484,"TERMINAL",0,0,"remote: Resolving deltas: 0% (0/10)\rremote: Resolving deltas: 10% (1/10)\rremote: Resolving deltas: 20% (2/10)\rremote: Resolving deltas: 30% (3/10)\rremote: Resolving deltas: 40% (4/10)\rremote: Resolving deltas: 50% (5/10)\rremote: Resolving deltas: 60% (6/10)\rremote: Resolving deltas: 70% (7/10)\rremote: Resolving deltas: 80% (8/10)\rremote: Resolving deltas: 90% (9/10)\rremote: Resolving deltas: 100% (10/10)\rremote: Resolving deltas: 100% (10/10), completed with 3 local objects.\r\n",,terminal_output +37,34556,"TERMINAL",0,0,"To github.com:p-doom/slurm.git\r\n 06dec29..0e07bf2 main -> main\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +38,55467,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",0,0,"#!/usr/bin/env bash\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=5:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:1\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_tokenizer/%x_%j.log\n#SBATCH --job-name=train_tokenizer_overfit_sample_size_0.6_mio\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\ntags=(""overfit_sample"", ""tokenizer"", ""model_scaling"", ""alfred"")\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer_single_sample.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=4.3e-5 \\n --max_lr=4.3e-4 \\n --log_image_interval=10 \\n --log \\n --entity instant-uv \\n --project jafar \\n --name $job_name \\n --tags $tags \\n --model_dim 64 \\n --data_dir $tf_records_dir\n\n",shellscript,tab +39,71730,"notes.md",0,0,"hk-project-p0023960\n\n\n\nhow do I move a lot of files from one directory to another?\n\nsrc: /hkfs/work/workspace/scratch/tum_ind3695-jafar_ws\ndst: /hkfs/work/workspace/scratch/tum_ind3695-jafar_data\n\n\n\nDIR=$(ws_find jafar_data)\nsetfacl -Rm g:hk-project-p0023960:rX,d:g:hk-project-p0023960:rX $DIR\n\nDIR=$(ws_find jafar_workspace)\n\n\nDIR=$(ws_find jafar_workspace)\ngetfacl $DIR\n\ngetfacl $(ws_find jafar_workspace)\n\n\nsetfacl -Rm g:hk-project-p0023960:rX,d:g:hk-project-p0023960:rX $DIR\n\nws_access_ls='getfacl $(ws_find jafar_workspace)'\nws_access_granter='setfacl -Rm g:hk-project-p0023960:rX,d:g:hk-project-p0023960:rX $DIR'\n\nhk-project-p0023960\n\n\ncp \n\ncp data_gen_gym_coinrun.sbatch data_gen_gym_bigfish.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_bossfight.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_caveflyer.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_chaser.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_climber.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_dodgeball.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_fruitbot.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_heist.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_jumper.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_leaper.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_maze.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_miner.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_ninja.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_plunder.sbatch\ncp data_gen_gym_coinrun.sbatch data_gen_gym_starpilot.sbatch\n\n\n\n\ncurl -O https://omnomnom.vision.rwth-aachen.de/data/atari_v1_release/spaceinvaders.tar.gz\ncurl -O https://omnomnom.vision.rwth-aachen.de/data/atari_v1_release/qbert.tar.gz\ncurl -O https://omnomnom.vision.rwth-aachen.de/data/atari_v1_release/mspacman.tar.gz\ncurl -O https://omnomnom.vision.rwth-aachen.de/data/atari_v1_release/pinball.tar.gz\ncurl -O https://omnomnom.vision.rwth-aachen.de/data/atari_v1_release/revenge.tar.gz\n\n\n\n\n## mp4 to jafar format\n\n- make it k fps\n- crop it/downsample it\n- chunk it into n frames\n- convert to npy\n- save it to data/atari_v1_release/spaceinvaders/spaceinvaders.npy\n\n```bash\nsbatch --time=04:00:00 --partition=cpuonly --account=hk-project-pai00039 --cpus-per-task=64 --ntasks=1 --job-name=aws_download --wrap=""aws s3 cp s3://minescrape-bucket/videos/knoms/ . --recursive""\n\npython utils/preprocess_dataset.py --source_data_dir /hkfs/work/workspace/scratch/tum_ind3695-jafar_ws/minecraft_videos/preprocessed/10fps_160x90/ --output_tfrecords_dir /hkfs/work/workspace/scratch/tum_ind3695-jafar_ws/minecraft_videos/preprocessed/10fps_160x90/tfrecords/ \n\n```\n1,6b: 80 nodes\n\n\n```\nsalloc --time=01:00:00 --partition=accelerated-h100 --nodes=1 --gres=gpu:4 --cpus-per-task=8 --ntasks-per-node=4\naccelerated-h100\n\nsrun python train_tokenizer.py --data_dir /hkfs/work/workspace/scratch/tum_ind3695-jafar_ws/data/tf_records --image_height 160 --image_width 90\n\n/hkfs/work/workspace/scratch/tum_ind3695-jafar_ws/data/knoms\n\n\n\n\n\n\n```\n\n{'streams': [{'index': 0, 'codec_name': 'vp9', 'codec_long_name': 'Google VP9', 'profile': 'Profile 0', 'codec_type': 'video', 'codec_tag_string': '[0][0][0][0]', 'codec_tag': '0x0000', 'width': 640, 'height': 360, 'coded_width': 640, 'coded_height': 360, 'closed_captions': 0, 'film_grain': 0, 'has_b_frames': 0, 'sample_aspect_ratio': '1:1', 'display_aspect_ratio': '16:9', 'pix_fmt': 'yuv420p', 'level': -99, 'color_range': 'tv', 'color_space': 'bt709', 'color_transfer': 'bt709', 'color_primaries': 'bt709', 'refs': 1, 'r_frame_rate': '30/1', 'avg_frame_rate': '30/1', 'time_base': '1/1000', 'start_pts': 0, 'start_time': '0.000000', 'disposition': {'default': 1, 'dub': 0, 'original': 0, 'comment': 0, 'lyrics': 0, 'karaoke': 0, 'forced': 0, 'hearing_impaired': 0, 'visual_impaired': 0, 'clean_effects': 0, 'attached_pic': 0, 'timed_thumbnails': 0, 'non_diegetic': 0, 'captions': 0, 'descriptions': 0, 'metadata': 0, 'dependent': 0, 'still_image': 0}, 'tags': {'language': 'eng'}}], 'format': {'filename': '/hkfs/work/workspace/scratch/tum_ind3695-jafar_ws/data/knoms/293_KxCeK_wk-KA.webm', 'nb_streams': 1, 'nb_programs': 0, 'nb_stream_groups': 0, 'format_name': 'matroska,webm', 'format_long_name': 'Matroska / WebM', 'start_time': '0.000000', 'duration': '1155.767000', 'size': '50776376', 'bit_rate': '351464', 'probe_score': 100, 'tags': {'encoder': 'google/video-file'}}}\n\n(Pdb) \n\n{'index': 0, 'codec_name': 'vp9', 'codec_long_name': 'Google VP9', 'profile': 'Profile 0', 'codec_type': 'video', 'codec_tag_string': '[0][0][0][0]', 'codec_tag': '0x0000', 'width': 640, 'height': 360, 'coded_width': 640, 'coded_height': 360, 'closed_captions': 0, 'film_grain': 0, 'has_b_frames': 0, 'sample_aspect_ratio': '1:1', 'display_aspect_ratio': '16:9', 'pix_fmt': 'yuv420p', 'level': -99, 'color_range': 'tv', 'color_space': 'bt709', 'color_transfer': 'bt709', 'color_primaries': 'bt709', 'refs': 1, 'r_frame_rate': '30/1', 'avg_frame_rate': '30/1', 'time_base': '1/1000', 'start_pts': 0, 'start_time': '0.000000', 'disposition': {'default': 1, 'dub': 0, 'original': 0, 'comment': 0, 'lyrics': 0, 'karaoke': 0, 'forced': 0, 'hearing_impaired': 0, 'visual_impaired': 0, 'clean_effects': 0, 'attached_pic': 0, 'timed_thumbnails': 0, 'non_diegetic': 0, 'captions': 0, 'descriptions': 0, 'metadata': 0, 'dependent': 0, 'still_image': 0}, 'tags': {'language': 'eng'}}\n\n\n\n\n\nuid=996262(tum_dbd0378) gid=502226(hk-project-p0023960) groups=502226(hk-project-p0023960),501163(hk-access-ext),501959(tum_tu\n\n\n12min 39s\n12min 54s\ndelta: 15s\n\n12*60* 10 = 7200\n39*10 = 390\nsum: 7590\n\n```\n 3237740 preprocess_video_splitter cpuonly 152 COMPLETED 00:47:47 01:30:00 \n 3238237 preprocess_video_splitter cpuonly 152 TIMEOUT 01:30:11 01:30:00 \n 3238924 preprocess_video_splitter_cop+ cpuonly 152 COMPLETED 00:47:40 01:30:00 \n 3239678 preprocess_video_to_npy cpuonly 152 TIMEOUT 01:30:25 01:30:00 \n 3251122 preprocess_video_to_npy cpuonly 152 COMPLETED 00:00:28 01:30:00 \n 3251189 rsync_knoms_npy_to_shared cpuonly 152 COMPLETED 00:16:50 01:30:00 \n 3251202 preprocess_video_to_npy cpuonly 152 COMPLETED 00:04:39 01:30:00 \n 3251494 preprocess_video_to_npy cpuonly 152 COMPLETED 00:19:45 01:30:00 \n 3255047 train_tokenizer_knoms accelerated 0 FAILED 00:00:00 00:30:00 \n 3255048 train_tokenizer_knoms accelerated 0 FAILED 00:00:00 00:30:00 \n 3255049 train_tokenizer_knoms accelerated 0 FAILED 00:00:00 00:30:00 \n 3255050 train_tokenizer_knoms accelerated 32 FAILED 00:05:08 00:30:00 \n 3255482 train_tokenizer_knoms accelerated-h100 32 FAILED 00:00:44 00:15:00 \n 3255483 train_tokenizer_knoms accelerated-h100 32 FAILED 00:03:53 00:15:00 \n 3255493 data_gen_coinrun-test cpuonly 152 TIMEOUT 00:30:17 00:30:00 \n 3255506 data_gen_coinrun-test cpuonly 152 TIMEOUT 01:30:12 01:30:00 \n 3256929 train_tokenizer_coinrun accelerated 32 FAILED 00:01:46 01:00:00 \n 3257751 train_tokenizer_coinrun accelerated 0 CANCELLED b+ 00:00:00 06:00:00 \n 3257924 train_tokenizer_knoms_overfit accelerated 0 CANCELLED b+ 00:00:00 04:00:00 \n 3258011 train_tokenizer_knoms_overfit accelerated 0 CANCELLED b+ 00:00:00 06:00:00 \n 3258018 train_tokenizer_coinrun accelerated 0 CANCELLED b+ 00:00:00 06:00:00 \n 3258057 train_tokenizer_knoms_overfit accelerated 0 CANCELLED b+ 00:00:00 06:00:00 \n 3258278 train_tokenizer_knoms_overfit accelerated 32 CANCELLED b+ 01:54:35 06:00:00 \n 3258283 train_tokenizer_coinrun accelerated 32 TIMEOUT 06:00:19 06:00:00 \n 3259422 train_tokenizer_knoms_overfit accelerated-h100 32 TIMEOUT 06:00:12 06:00:00 \n```\n\n\n\n```\n00:47:47\n01:30:11\n00:47:40\n01:30:25\n00:00:28\n00:16:50\n00:04:39\n00:19:45\n00:00:00\n00:00:00\n00:00:00\n00:05:08\n00:00:44\n00:03:53\n00:30:17\n01:30:12\n00:01:46\n00:00:00\n00:00:00\n00:00:00\n00:00:00\n00:00:00\n01:54:35\n06:00:19\n06:00:12\n\n```\n\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n{'encoder': 4.770.688, 'vq': 32.768, 'decoder': 4.770.672, 'total': 9.574.128}\n{'encoder': 10.694.912, 'vq': 32.768, 'decoder': 10.694.896, 'total': 21.422.576}\n{'encoder': 8029184, 'vq': 32768, 'decoder': 8029168, 'total': 16091120}\n\n\n**BASELINE 37.9mio**\nmodel_dim = 512\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n\n**BASELINE 9.6mio**\nmodel_dim = 256\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n\n\n\n**2.4 mio**\nmodel_dim = 128\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n\n{'encoder': 1205760, 'vq': 32768, 'decoder': 1205744, 'total': 2.444.272}\n\n**648k**\nmodel_dim = 64\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n\n{'encoder': 308032, 'vq': 32768, 'decoder': 308016, 'total': 648.816}\n\n\n\n**179k**\nmodel_dim = 64 # drastically smaller transformer hidden size\nlatent_dim = 8 # low latent space\nnum_latents = 256 # smaller codebook\npatch_size = 8 # shorter sequences\nnum_blocks = 2 # shallow encoder and decoder\n{'encoder': 89032, 'vq': 2048, 'decoder': 88848, 'total': 179.928}\n\n--model_dim 384 \\n--num_blocks 6 \\n{'encoder': 8029184, 'vq': 32768, 'decoder': 8029168, 'total': 16091120}\n\n\n--model_dim 384 \\n{'encoder': 10.694.912, 'vq': 32.768, 'decoder': 10.694.896, 'total': 21.422.576}\n\n--model_dim 256\\n{'encoder': 4770688, 'vq': 32768, 'decoder': 4770672, 'total': 9574128}\n\n\n**MINIMAL**\nmodel_dim = 128\nnum_blocks = 2\nlatent_dim = 8\nnum_latents = 256\npatch_size = 16\n\nscancel 3297722 3297723 3297726 \n",markdown,tab +40,73710,"notes.md",9494,0,"",markdown,selection_mouse +41,73715,"notes.md",9493,0,"",markdown,selection_command +42,76225,"notes.md",9821,0,"",markdown,selection_mouse +43,76621,"notes.md",9484,0,"",markdown,selection_mouse +44,77025,"notes.md",9484,1,"",markdown,content +45,77366,"notes.md",9484,1,"",markdown,content +46,77557,"notes.md",9493,0,"",markdown,selection_command +47,77822,"notes.md",9564,0,"",markdown,selection_command +48,77839,"notes.md",9608,0,"",markdown,selection_command +49,77870,"notes.md",9652,0,"",markdown,selection_command +50,77904,"notes.md",9697,0,"",markdown,selection_command +51,77939,"notes.md",9752,0,"",markdown,selection_command +52,77975,"notes.md",9819,0,"",markdown,selection_command +53,78366,"notes.md",9819,1,"\n",markdown,selection_command +54,78890,"notes.md",9483,336,"\n**179k**\nmodel_dim = 64 # drastically smaller transformer hidden size\nlatent_dim = 8 # low latent space\nnum_latents = 256 # smaller codebook\npatch_size = 8 # shorter sequences\nnum_blocks = 2 # shallow encoder and decoder\n{'encoder': 89032, 'vq': 2048, 'decoder': 88848, 'total': 179.928}\n",markdown,selection_command +55,79076,"notes.md",9412,407,"\n{'encoder': 308032, 'vq': 32768, 'decoder': 308016, 'total': 648.816}\n\n**179k**\nmodel_dim = 64 # drastically smaller transformer hidden size\nlatent_dim = 8 # low latent space\nnum_latents = 256 # smaller codebook\npatch_size = 8 # shorter sequences\nnum_blocks = 2 # shallow encoder and decoder\n{'encoder': 89032, 'vq': 2048, 'decoder': 88848, 'total': 179.928}\n",markdown,selection_command +56,79219,"notes.md",9308,511,"\n**648k**\nmodel_dim = 64\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n\n{'encoder': 308032, 'vq': 32768, 'decoder': 308016, 'total': 648.816}\n\n**179k**\nmodel_dim = 64 # drastically smaller transformer hidden size\nlatent_dim = 8 # low latent space\nnum_latents = 256 # smaller codebook\npatch_size = 8 # shorter sequences\nnum_blocks = 2 # shallow encoder and decoder\n{'encoder': 89032, 'vq': 2048, 'decoder': 88848, 'total': 179.928}\n",markdown,selection_command +57,79349,"notes.md",9233,586,"\n{'encoder': 1205760, 'vq': 32768, 'decoder': 1205744, 'total': 2.444.272}\n\n**648k**\nmodel_dim = 64\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n\n{'encoder': 308032, 'vq': 32768, 'decoder': 308016, 'total': 648.816}\n\n**179k**\nmodel_dim = 64 # drastically smaller transformer hidden size\nlatent_dim = 8 # low latent space\nnum_latents = 256 # smaller codebook\npatch_size = 8 # shorter sequences\nnum_blocks = 2 # shallow encoder and decoder\n{'encoder': 89032, 'vq': 2048, 'decoder': 88848, 'total': 179.928}\n",markdown,selection_command +58,79497,"notes.md",9125,694,"\n**2.4 mio**\nmodel_dim = 128\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n\n{'encoder': 1205760, 'vq': 32768, 'decoder': 1205744, 'total': 2.444.272}\n\n**648k**\nmodel_dim = 64\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n\n{'encoder': 308032, 'vq': 32768, 'decoder': 308016, 'total': 648.816}\n\n**179k**\nmodel_dim = 64 # drastically smaller transformer hidden size\nlatent_dim = 8 # low latent space\nnum_latents = 256 # smaller codebook\npatch_size = 8 # shorter sequences\nnum_blocks = 2 # shallow encoder and decoder\n{'encoder': 89032, 'vq': 2048, 'decoder': 88848, 'total': 179.928}\n",markdown,selection_command +59,79670,"notes.md",8925,894,"\n**BASELINE 9.6mio**\nmodel_dim = 256\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n\n\n\n**2.4 mio**\nmodel_dim = 128\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n\n{'encoder': 1205760, 'vq': 32768, 'decoder': 1205744, 'total': 2.444.272}\n\n**648k**\nmodel_dim = 64\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n\n{'encoder': 308032, 'vq': 32768, 'decoder': 308016, 'total': 648.816}\n\n**179k**\nmodel_dim = 64 # drastically smaller transformer hidden size\nlatent_dim = 8 # low latent space\nnum_latents = 256 # smaller codebook\npatch_size = 8 # shorter sequences\nnum_blocks = 2 # shallow encoder and decoder\n{'encoder': 89032, 'vq': 2048, 'decoder': 88848, 'total': 179.928}\n",markdown,selection_command +60,80577,"notes.md",8925,0,"",markdown,selection_command +61,81960,"notes.md",8843,0,"",markdown,selection_command +62,82214,"notes.md",8829,0,"",markdown,selection_command +63,82236,"notes.md",8814,0,"",markdown,selection_command +64,82268,"notes.md",8799,0,"",markdown,selection_command +65,82301,"notes.md",8780,0,"",markdown,selection_command +66,82336,"notes.md",8764,0,"",markdown,selection_command +67,82369,"notes.md",8748,0,"",markdown,selection_command +68,82695,"notes.md",8764,0,"",markdown,selection_command +69,82944,"notes.md",8780,0,"",markdown,selection_command +70,82974,"notes.md",8799,0,"",markdown,selection_command +71,83007,"notes.md",8814,0,"",markdown,selection_command +72,83037,"notes.md",8829,0,"",markdown,selection_command +73,83073,"notes.md",8843,0,"",markdown,selection_command +74,83216,"notes.md",8925,0,"",markdown,selection_command +75,83386,"notes.md",8926,0,"",markdown,selection_command +76,83554,"notes.md",8927,0,"",markdown,selection_command +77,83713,"notes.md",8928,0,"",markdown,selection_command +78,84056,"notes.md",8928,9,"",markdown,content +79,84422,"notes.md",8925,0,"",markdown,selection_command +80,84671,"notes.md",8845,0,"",markdown,selection_command +81,84700,"notes.md",8831,0,"",markdown,selection_command +82,84727,"notes.md",8816,0,"",markdown,selection_command +83,84760,"notes.md",8801,0,"",markdown,selection_command +84,84795,"notes.md",8782,0,"",markdown,selection_command +85,84828,"notes.md",8766,0,"",markdown,selection_command +86,84863,"notes.md",8750,0,"",markdown,selection_command +87,84897,"notes.md",8729,0,"",markdown,selection_command +88,84931,"notes.md",8726,0,"",markdown,selection_command +89,84965,"notes.md",8725,0,"",markdown,selection_command +90,85411,"notes.md",8726,0,"",markdown,selection_command +91,85977,"notes.md",8726,1,"\n",markdown,selection_command +92,86342,"notes.md",8726,0,"",markdown,selection_command +93,86506,"notes.md",8727,0,"",markdown,selection_command +94,86751,"notes.md",8748,0,"",markdown,selection_command +95,86781,"notes.md",8764,0,"",markdown,selection_command +96,86807,"notes.md",8780,0,"",markdown,selection_command +97,86840,"notes.md",8799,0,"",markdown,selection_command +98,86880,"notes.md",8814,0,"",markdown,selection_command +99,86911,"notes.md",8829,0,"",markdown,selection_command +100,86941,"notes.md",8843,0,"",markdown,selection_command +101,86976,"notes.md",8925,0,"",markdown,selection_command +102,87348,"notes.md",8926,0,"",markdown,selection_command +103,88006,"notes.md",8927,0,"",markdown,selection_command +104,110447,"TERMINAL",0,0,"",,terminal_focus +105,111308,"TERMINAL",0,0,"bash",,terminal_focus +106,111590,"TERMINAL",0,0,"bash",,terminal_focus +107,115439,"TERMINAL",0,0,"salloc --account=hk-project-p0023960 --time=00:30:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1",,terminal_command +108,115517,"TERMINAL",0,0,"]633;E;2025-06-27 17:25:03 salloc --account=hk-project-p0023960 --time=00:30:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1;c14815de-3769-4833-8fae-1a69327311a6]633;Csalloc: Pending job allocation 3299578\r\nsalloc: job 3299578 queued and waiting for resources\r\n",,terminal_output +109,116172,"TERMINAL",0,0,"bash",,terminal_focus +110,117201,"TERMINAL",0,0,"queue",,terminal_command +111,117252,"TERMINAL",0,0,"]633;E;2025-06-27 17:25:05 queue;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +112,117317,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Fri Jun 27 17:25:05 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3299271 accelerat train_dy tum_ind3 PD\t0:00\t 1 (Priority)3299578 accelerat interact tum_ind3 PD\t0:00\t 1 (Priority)",,terminal_output +113,118369,"TERMINAL",0,0,"6",,terminal_output +114,118575,"TERMINAL",0,0,"salloc",,terminal_focus +115,119286,"TERMINAL",0,0,"^Csalloc: Job allocation 3299578 has been revoked.\r\nsalloc: Job aborted due to signal\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;1",,terminal_output +116,119417,"TERMINAL",0,0,"\r7",,terminal_output +117,120333,"TERMINAL",0,0,"watch",,terminal_focus +118,120460,"TERMINAL",0,0,"8",,terminal_output +119,121509,"TERMINAL",0,0,"9",,terminal_output +120,121574,"TERMINAL",0,0,"bash",,terminal_focus +121,122497,"TERMINAL",0,0,"watch",,terminal_focus +122,122551,"TERMINAL",0,0,"10",,terminal_output +123,123600,"TERMINAL",0,0,"1",,terminal_output +124,123787,"TERMINAL",0,0,"bash",,terminal_focus +125,124519,"TERMINAL",0,0,"salloc --account=hk-project-p0023960 --time=00:30:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1",,terminal_command +126,124595,"TERMINAL",0,0,"]633;E;2025-06-27 17:25:12 salloc --account=hk-project-p0023960 --time=00:30:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1;c14815de-3769-4833-8fae-1a69327311a6]633;Csalloc: Pending job allocation 3299579\r\nsalloc: job 3299579 queued and waiting for resources\r\n",,terminal_output +127,124653,"TERMINAL",0,0,"23299579 accelerat interact tum_ind3 PD\t0:00\t 1 (Priority)",,terminal_output +128,124734,"TERMINAL",0,0,"watch",,terminal_focus +129,125701,"TERMINAL",0,0,"3",,terminal_output +130,126741,"TERMINAL",0,0,"salloc",,terminal_focus +131,126752,"TERMINAL",0,0,"4",,terminal_output +132,126925,"TERMINAL",0,0,"watch",,terminal_focus +133,127797,"TERMINAL",0,0,"5",,terminal_output +134,128013,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +135,129404,"TERMINAL",0,0,"idle",,terminal_command +136,129439,"TERMINAL",0,0,"]633;E;2025-06-27 17:25:17 idle;dcbf4775-e574-4e9d-b507-67c2737583de]633;CPartition dev_cpuonly : 9 nodes idle\r\nPartition cpuonly : 34 nodes idle\r\nPartition dev_accelerated : 0 nodes idle\r\nPartition accelerated : 13 nodes idle\r\nPartition dev_accelerated-h100 : 0 nodes idle\r\nPartition accelerated-h100 : 1 nodes idle\r\nPartition large : 8 nodes idle\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +137,133266,"TERMINAL",0,0,"queue",,terminal_command +138,133317,"TERMINAL",0,0,"]633;E;2025-06-27 17:25:21 queue;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +139,133397,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Fri Jun 27 17:25:21 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3299271 accelerat train_dy tum_ind3 PD\t0:00\t 1 (Priority)3299579 accelerat interact tum_ind3 PD\t0:00\t 1 (Priority)",,terminal_output +140,134442,"TERMINAL",0,0,"2",,terminal_output +141,135491,"TERMINAL",0,0,"3",,terminal_output +142,136536,"TERMINAL",0,0,"4",,terminal_output +143,137576,"TERMINAL",0,0,"5",,terminal_output +144,138627,"TERMINAL",0,0,"6",,terminal_output +145,138971,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +146,209796,"TERMINAL",0,0,"salloc: job 3299579 has been allocated resources\r\nsalloc: Granted job allocation 3299579\r\nsalloc: Waiting for resource configuration\r\n",,terminal_output +147,218181,"TERMINAL",0,0,"queue",,terminal_command +148,218232,"TERMINAL",0,0,"]633;E;2025-06-27 17:26:46 queue;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +149,218297,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Fri Jun 27 17:26:46 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3299271 accelerat train_dy tum_ind3 PD\t0:00\t 1 (Priority)3299579 accelerat interact tum_ind3 R\t0:10\t 1 hkn0505",,terminal_output +150,219347,"TERMINAL",0,0,"71",,terminal_output +151,219409,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +152,220353,"TERMINAL",0,0,"salloc",,terminal_focus +153,223542,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_9_mio.sbatch",0,0,"#!/usr/bin/env bash\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=5:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:1\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_tokenizer/%x_%j.log\n#SBATCH --job-name=train_tokenizer_overfit_sample_size_9_mio\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\ntags=(""overfit_sample"", ""tokenizer"", ""model_scaling"", ""alfred"")\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer_single_sample.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=4.3e-5 \\n --max_lr=4.3e-4 \\n --log_image_interval=10 \\n --log \\n --entity instant-uv \\n --project jafar \\n --name $job_name \\n --tags $tags \\n --model_dim 256 \\n --data_dir $tf_records_dir\n\n",shellscript,tab +154,225810,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\ntags=(""overfit_sample"", ""tokenizer"", ""size_0_5"", ""alfred"")\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\npython train_tokenizer_single_sample.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=4.3e-5 \\n --max_lr=4.3e-4 \\n --log_image_interval=10 \\n --log \\n --entity instant-uv \\n --project jafar \\n --name $job_name \\n --tags $tags \\n --model_dim 64 \\n --data_dir $tf_records_dir\n",shellscript,tab +155,228884,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",344,0,"",shellscript,selection_mouse +156,229747,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",338,0,"",shellscript,selection_command +157,232068,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",338,8,"",shellscript,content +158,232792,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",338,0,"d",shellscript,content +159,232794,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",339,0,"",shellscript,selection_keyboard +160,233007,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",339,0,"e",shellscript,content +161,233008,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",340,0,"",shellscript,selection_keyboard +162,233140,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",340,0,"b",shellscript,content +163,233142,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",341,0,"",shellscript,selection_keyboard +164,233199,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",341,0,"u",shellscript,content +165,233200,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",342,0,"",shellscript,selection_keyboard +166,233276,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",342,0,"g",shellscript,content +167,233276,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",343,0,"",shellscript,selection_keyboard +168,233705,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",342,0,"",shellscript,selection_command +169,234140,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",356,0,"",shellscript,selection_command +170,234388,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",399,0,"",shellscript,selection_command +171,234417,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",439,0,"",shellscript,selection_command +172,234446,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",441,0,"",shellscript,selection_command +173,234477,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",457,0,"",shellscript,selection_command +174,234515,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",459,0,"",shellscript,selection_command +175,234548,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",500,0,"",shellscript,selection_command +176,234581,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",533,0,"",shellscript,selection_command +177,234614,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",554,0,"",shellscript,selection_command +178,235052,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",576,0,"",shellscript,selection_command +179,235269,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",598,0,"",shellscript,selection_command +180,235528,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",628,0,"",shellscript,selection_command +181,235616,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",640,0,"",shellscript,selection_command +182,235776,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",666,0,"",shellscript,selection_command +183,236085,"TERMINAL",0,0,"salloc: Nodes hkn0505 are ready for job\r\n",,terminal_output +184,236153,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",688,0,"",shellscript,selection_command +185,236320,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",711,0,"",shellscript,selection_command +186,236827,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",730,0,"",shellscript,selection_command +187,236966,"TERMINAL",0,0,"]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h[tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +188,237025,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",751,0,"",shellscript,selection_command +189,243686,"notes.md",0,0,"",markdown,tab +190,245446,"notes.md",8938,0,"",markdown,selection_command +191,253524,"notes.md",8954,0,"",markdown,selection_command +192,253931,"notes.md",8938,0,"",markdown,selection_command +193,254127,"notes.md",8927,0,"",markdown,selection_command +194,254592,"notes.md",8938,0,"",markdown,selection_command +195,255172,"notes.md",8947,0,"",markdown,selection_command +196,255872,"notes.md",8949,0,"",markdown,selection_command +197,256876,"notes.md",8949,3,"",markdown,content +198,256886,"notes.md",8948,0,"",markdown,selection_command +199,257119,"notes.md",8949,0,"256",markdown,content +200,257123,"notes.md",8949,0,"",markdown,selection_command +201,258260,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_21_mio.sbatch",0,0,"#!/usr/bin/env bash\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=5:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:1\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_tokenizer/%x_%j.log\n#SBATCH --job-name=train_tokenizer_overfit_sample_size_21_mio\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\ntags=(""overfit_sample"", ""tokenizer"", ""size_21_mio"", ""alfred"")\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer_single_sample.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=4.3e-5 \\n --max_lr=4.3e-4 \\n --log_image_interval=10 \\n --log \\n --entity instant-uv \\n --project jafar \\n --name $job_name \\n --tags $tags \\n --model_dim 384 \\n --data_dir $tf_records_dir\n\n",shellscript,tab +202,259234,"notes.md",0,0,"",markdown,tab +203,260730,"notes.md",0,0,"",markdown,tab +204,260936,"TERMINAL",0,0,"bash",,terminal_focus +205,261062,"utils/parameter_utils.py",0,0,"from jax.tree_util import tree_map, tree_reduce\n\n\ndef count_leaf(x):\n """"""Count parameters in a single leaf node.""""""\n if hasattr(x, ""size""):\n return x.size\n return 0\n\n\ndef count_component(component_params):\n """"""Count total parameters in a component.""""""\n return tree_reduce(\n lambda x, y: x + y, tree_map(count_leaf, component_params), initializer=0\n )\n\n\ndef count_parameters_by_component(params):\n """"""Count parameters for each component of the model.\n\n Args:\n params: Model parameters dictionary\n component_names: List of component names to count. If None, counts all components.\n\n Returns:\n Dictionary with parameter counts for each component\n """"""\n\n component_names = list(params[""params""].keys())\n print(f""Counting all components: {component_names}"")\n\n counts = {}\n total_params = 0\n\n for name in component_names:\n if ""params"" in params and name in params[""params""]:\n component_params = params[""params""][name]\n else:\n component_params = params\n\n count = count_component(component_params)\n counts[name] = count\n total_params += count\n\n counts[""total""] = total_params\n return counts\n",python,tab +206,262125,"TERMINAL",0,0,"bash",,terminal_focus +207,262127,"notes.md",0,0,"",markdown,tab +208,262902,"train_tokenizer_single_sample.py",0,0,"",python,tab +209,263200,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +210,263611,"TERMINAL",0,0,"bash",,terminal_focus +211,264748,"TERMINAL",0,0,"bash",,terminal_focus +212,264750,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +213,265139,"train_tokenizer_single_sample.py",0,0,"",python,tab +214,265698,"notes.md",0,0,"",markdown,tab +215,266374,"TERMINAL",0,0,"srun",,terminal_focus +216,266859,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_9_mio.sbatch",0,0,"",shellscript,tab +217,267335,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",0,0,"",shellscript,tab +218,267486,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_2_mio.sbatch",0,0,"#!/usr/bin/env bash\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=5:00:00\n#SBATCH --partition=accelerated\n#SBATCH --cpus-per-task=8\n#SBATCH --gres=gpu:1\n#SBATCH --output=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_tokenizer/%x_%j.log\n#SBATCH --error=/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/logs/logs_alfred/logs_training_tokenizer/%x_%j.log\n#SBATCH --job-name=train_tokenizer_overfit_sample_size_2_mio\n\n# Log the sbatch script\ncat $0\n\nmodule unload mpi/openmpi/5.0\nmodule unload devel/cuda/12.4\nsource .venv_jafar/bin/activate\n\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\n\njob_name=$SLURM_JOB_NAME\nslurm_job_id=$SLURM_JOB_ID\n\ntags=(""overfit_sample"", ""tokenizer"", ""model_scaling"", ""alfred"")\n\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\nmkdir -p $CHECKPOINT_DIR\n\nenv | grep SLURM\n\nsrun python train_tokenizer_single_sample.py \\n --ckpt_dir $CHECKPOINT_DIR \\n --batch_size=1 \\n --min_lr=4.3e-5 \\n --max_lr=4.3e-4 \\n --log_image_interval=10 \\n --log \\n --entity instant-uv \\n --project jafar \\n --name $job_name \\n --tags $tags \\n --model_dim 128 \\n --data_dir $tf_records_dir\n\n",shellscript,tab +219,268165,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_2_mio.sbatch",0,0,"",shellscript,tab +220,269211,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",0,0,"",shellscript,tab +221,269496,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_9_mio.sbatch",0,0,"",shellscript,tab +222,269850,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",0,0,"",shellscript,tab +223,273247,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +224,276124,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",752,0,"\n ",shellscript,content +225,276281,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",753,4,"",shellscript,content +226,276451,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",753,0,"256",shellscript,content +227,276456,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",755,0,"",shellscript,selection_command +228,276690,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",734,0,"",shellscript,selection_command +229,277584,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",715,0,"",shellscript,selection_command +230,277815,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",734,0,"",shellscript,selection_command +231,278133,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",736,0,"",shellscript,selection_command +232,278332,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",738,0,"",shellscript,selection_command +233,278579,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",748,0,"",shellscript,selection_command +234,279621,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",748,4,"",shellscript,content +235,279625,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",747,0,"",shellscript,selection_command +236,280007,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",732,20," --model_dim 256",shellscript,content +237,280009,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",748,0,"",shellscript,selection_command +238,281175,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",751,0," \",shellscript,content +239,281176,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",753,0,"",shellscript,selection_command +240,283261,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +241,284617,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +242,286708,"TERMINAL",0,0,"so",,terminal_output +243,286786,"TERMINAL",0,0,"u",,terminal_output +244,286840,"TERMINAL",0,0,"r",,terminal_output +245,287023,"TERMINAL",0,0,"c",,terminal_output +246,287153,"TERMINAL",0,0,"e ",,terminal_output +247,287294,"TERMINAL",0,0,".",,terminal_output +248,287384,"TERMINAL",0,0,"v",,terminal_output +249,287457,"TERMINAL",0,0,"e",,terminal_output +250,287643,"TERMINAL",0,0,"nv_jafar/",,terminal_output +251,287949,"TERMINAL",0,0,"b",,terminal_output +252,288162,"TERMINAL",0,0,"in/",,terminal_output +253,288398,"TERMINAL",0,0,"a",,terminal_output +254,288470,"TERMINAL",0,0,"c",,terminal_output +255,288660,"TERMINAL",0,0,"tivate",,terminal_output +256,289041,"TERMINAL",0,0,"\r\n[?2004l\r]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +257,314000,"TERMINAL",0,0,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",,terminal_output +258,315118,"TERMINAL",0,0,"\rslurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh\r",,terminal_output +259,316126,"TERMINAL",0,0,".slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh\r",,terminal_output +260,316281,"TERMINAL",0,0,"/slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh\r",,terminal_output +261,316652,"TERMINAL",0,0,"\r\n[?2004l\r# Log the sbatch script\r\ncat $0\r\n\r\nmodule unload mpi/openmpi/5.0\r\nmodule unload devel/cuda/12.4\r\nsource .venv_jafar/bin/activate\r\n\r\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\r\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\r\n\r\njob_name=$SLURM_JOB_NAME\r\nslurm_job_id=$SLURM_JOB_ID\r\n\r\ntags=(""overfit_sample"", ""tokenizer"", ""debug"", ""alfred"")\r\n\r\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\r\nmkdir -p $CHECKPOINT_DIR\r\n\r\nenv | grep SLURM\r\n\r\npython train_tokenizer_single_sample.py \\r\n --ckpt_dir $CHECKPOINT_DIR \\r\n --batch_size=1 \\r\n --min_lr=4.3e-5 \\r\n --max_lr=4.3e-4 \\r\n --log_image_interval=10 \\r\n --log \\r\n --entity instant-uv \\r\n --project jafar \\r\n --name $job_name \\r\n --tags $tags \\r\n --model_dim 256 \\r\n --data_dir $tf_records_dir\r\n",,terminal_output +262,316850,"TERMINAL",0,0,"SLURM_STEP_NUM_TASKS=1\r\nSLURM_JOB_USER=tum_ind3695\r\nSLURM_TASKS_PER_NODE=1\r\nSLURM_JOB_UID=991285\r\nSLURM_TASK_PID=707800\r\nSLURM_JOB_GPUS=3\r\nSLURM_LOCALID=0\r\nSLURM_SUBMIT_DIR=/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit\r\nSLURMD_NODENAME=hkn0505\r\nSLURM_JOB_START_TIME=1751037996\r\nSLURM_STEP_NODELIST=hkn0505\r\nSLURM_CLUSTER_NAME=hk\r\nSLURM_JOB_END_TIME=1751039796\r\nSLURM_PMI2_SRUN_PORT=39147\r\nSLURM_CPUS_ON_NODE=8\r\nSLURM_JOB_CPUS_PER_NODE=8\r\nSLURM_GPUS_ON_NODE=1\r\nSLURM_GTIDS=0\r\nSLURM_JOB_PARTITION=accelerated\r\nSLURM_TRES_PER_TASK=cpu=8\r\nSLURM_OOM_KILL_STEP=0\r\nSLURM_JOB_NUM_NODES=1\r\nSLURM_STEPID=4294967290\r\nSLURM_JOBID=3299579\r\nSLURM_PTY_PORT=34619\r\nSLURM_JOB_QOS=normal\r\nSLURM_LAUNCH_NODE_IPADDR=10.0.7.201\r\nSLURM_PTY_WIN_ROW=68\r\nSLURM_PMI2_PROC_MAPPING=(vector,(0,1,1))\r\nSLURMD_DEBUG=2\r\nSLURM_PROCID=0\r\nSLURM_CPUS_PER_TASK=8\r\nSLURM_NTASKS=1\r\nSLURM_TOPOLOGY_ADDR=hkibb.hkibbi1.hkibbi1e10.hkn0505\r\nSLURM_TOPOLOGY_ADDR_PATTERN=switch.switch.switch.node\r\nSLURM_SRUN_COMM_HOST=10.0.7.201\r\nSLURM_SCRIPT_CONTEXT=prolog_task\r\nSLURM_PTY_WIN_COL=175\r\nSLURM_NODELIST=hkn0505\r\nSLURM_SRUN_COMM_PORT=41999\r\nSLURM_STEP_ID=4294967290\r\nSLURM_JOB_ACCOUNT=hk-project-p0023960\r\nSLURM_PRIO_PROCESS=0\r\nSLURM_NPROCS=1\r\nSLURM_NNODES=1\r\nSLURM_SUBMIT_HOST=hkn1993.localdomain\r\nSLURM_JOB_ID=3299579\r\nSLURM_NODEID=0\r\nSLURM_STEP_NUM_NODES=1\r\nSLURM_STEP_TASKS_PER_NODE=1\r\nSLURM_MPI_TYPE=pmi2\r\nSLURM_PMI2_STEP_NODES=hkn0505\r\nSLURM_CONF=/etc/slurm/slurm.conf\r\nSLURM_JOB_NAME=interactive\r\nSLURM_NTASKS_PER_NODE=1\r\nSLURM_STEP_LAUNCHER_PORT=41999\r\nSLURM_JOB_GID=502289\r\nSLURM_JOB_NODELIST=hkn0505\r\n",,terminal_output +263,333795,"TERMINAL",0,0,"2025-06-27 17:28:41.480315: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\r\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\r\nE0000 00:00:1751038121.746466 708273 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\r\nE0000 00:00:1751038121.796988 708273 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\r\n",,terminal_output +264,334796,"TERMINAL",0,0,"W0000 00:00:1751038122.217951 708273 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038122.217997 708273 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038122.218000 708273 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038122.218002 708273 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\n",,terminal_output +265,353795,"TERMINAL",0,0,"W0000 00:00:1751038141.160274 708273 gpu_device.cc:2341] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.\r\nSkipping registering GPU devices...\r\n",,terminal_output +266,354794,"TERMINAL",0,0,"Running on 1 devices.\r\n",,terminal_output +267,356793,"TERMINAL",0,0,"wandb: Currently logged in as: avocadoali (instant-uv) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin\r\n",,terminal_output +268,356795,"TERMINAL",0,0,"wandb: Tracking run with wandb version 0.19.11\r\nwandb: Run data is saved locally in /hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/wandb/run-20250627_172903-cy8nd25c\r\nwandb: Run `wandb offline` to turn off syncing.\r\nwandb: Syncing run interactive\r\nwandb: ⭐️ View project at https://wandb.ai/instant-uv/jafar\r\nwandb: 🚀 View run at https://wandb.ai/instant-uv/jafar/runs/cy8nd25c\r\n",,terminal_output +269,358794,"TERMINAL",0,0,"2025-06-27 17:29:06.757779: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +270,370794,"TERMINAL",0,0,"2025-06-27 17:29:18.225656: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +271,372795,"TERMINAL",0,0,"2025-06-27 17:29:20.377296: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +272,375792,"TERMINAL",0,0,"Counting all components: ['encoder', 'vq', 'decoder']\r\nParameter counts:\r\n{'encoder': 4770688, 'vq': 32768, 'decoder': 4770672, 'total': 9574128}\r\n",,terminal_output +273,376794,"TERMINAL",0,0,"Starting training from step 0...\r\nbatch shape: (1, 16, 90, 160, 3)\r\n",,terminal_output +274,388793,"TERMINAL",0,0,"2025-06-27 17:29:35.989084: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:29:35.989504: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:29:35.989525: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:29:35.989616: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:29:35.991060: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +275,426791,"TERMINAL",0,0,"Step 0, loss: 0.2878085672855377, step time: 50217.286825180054ms\r\nStep 1, loss: 0.24775156378746033, step time: 139.16516304016113ms\r\nStep 2, loss: 0.22453980147838593, step time: 138.41557502746582ms\r\nStep 3, loss: 0.20915493369102478, step time: 137.27498054504395ms\r\n",,terminal_output +276,427792,"TERMINAL",0,0,"Step 4, loss: 0.19706685841083527, step time: 136.38997077941895ms\r\nStep 5, loss: 0.18604601919651031, step time: 136.915922164917ms\r\nStep 6, loss: 0.17379429936408997, step time: 136.98315620422363ms\r\nStep 7, loss: 0.16810941696166992, step time: 139.41645622253418ms\r\nStep 8, loss: 0.16610655188560486, step time: 138.90910148620605ms\r\nStep 9, loss: 0.16548341512680054, step time: 137.22848892211914ms\r\n",,terminal_output +277,428798,"TERMINAL",0,0,"Step 10, loss: 0.16451306641101837, step time: 138.28635215759277ms\r\nStep 11, loss: 0.16362540423870087, step time: 137.18509674072266ms\r\n",,terminal_output +278,429792,"TERMINAL",0,0,"Step 12, loss: 0.16270293295383453, step time: 137.2530460357666ms\r\nStep 13, loss: 0.16208229959011078, step time: 137.0091438293457ms\r\nStep 14, loss: 0.16157127916812897, step time: 137.3128890991211ms\r\nStep 15, loss: 0.16023418307304382, step time: 136.6255283355713ms\r\nStep 16, loss: 0.1580863744020462, step time: 136.76190376281738ms\r\nStep 17, loss: 0.1555618792772293, step time: 136.60311698913574ms\r\nStep 18, loss: 0.15301485359668732, step time: 136.63434982299805ms\r\n",,terminal_output +279,431796,"TERMINAL",0,0,"Step 19, loss: 0.15070228278636932, step time: 136.61909103393555ms\r\nStep 20, loss: 0.14873021841049194, step time: 138.07296752929688ms\r\nStep 21, loss: 0.14709101617336273, step time: 137.30311393737793ms\r\nStep 22, loss: 0.14542073011398315, step time: 136.62004470825195ms\r\nStep 23, loss: 0.14299985766410828, step time: 138.46993446350098ms\r\nStep 24, loss: 0.14050206542015076, step time: 138.63539695739746ms\r\nStep 25, loss: 0.13743990659713745, step time: 138.20934295654297ms\r\nStep 26, loss: 0.13456767797470093, step time: 136.69514656066895ms\r\nStep 27, loss: 0.13202443718910217, step time: 137.4068260192871ms\r\nStep 28, loss: 0.13071371614933014, step time: 136.59048080444336ms\r\nStep 29, loss: 0.12923787534236908, step time: 136.30366325378418ms\r\nStep 30, loss: 0.12621724605560303, step time: 137.88890838623047ms\r\nStep 31, loss: 0.12275317311286926, step time: 137.44020462036133ms\r\n",,terminal_output +280,432795,"TERMINAL",0,0,"Step 32, loss: 0.12008993327617645, step time: 136.98863983154297ms\r\nStep 33, loss: 0.11796204745769501, step time: 136.55734062194824ms\r\nStep 34, loss: 0.116253562271595, step time: 136.1711025238037ms\r\nStep 35, loss: 0.11444009840488434, step time: 136.2471580505371ms\r\nStep 36, loss: 0.11214287579059601, step time: 136.74283027648926ms\r\nStep 37, loss: 0.10969927161931992, step time: 136.57283782958984ms\r\nStep 38, loss: 0.10776249319314957, step time: 136.54303550720215ms\r\n",,terminal_output +281,433797,"TERMINAL",0,0,"Step 39, loss: 0.10700612515211105, step time: 136.8429660797119ms\r\nStep 40, loss: 0.1061176136136055, step time: 143.63932609558105ms\r\nStep 41, loss: 0.10447747260332108, step time: 137.1481418609619ms\r\nStep 42, loss: 0.10248897969722748, step time: 136.8887424468994ms\r\nStep 43, loss: 0.10054730623960495, step time: 136.8556022644043ms\r\nStep 44, loss: 0.09930893033742905, step time: 136.60407066345215ms\r\n",,terminal_output +282,435793,"TERMINAL",0,0,"Step 45, loss: 0.09862879663705826, step time: 136.32702827453613ms\r\nStep 46, loss: 0.09765765070915222, step time: 136.71493530273438ms\r\nStep 47, loss: 0.09670083969831467, step time: 136.9166374206543ms\r\nStep 48, loss: 0.09570780396461487, step time: 136.46697998046875ms\r\nStep 49, loss: 0.0949011966586113, step time: 136.81602478027344ms\r\nStep 50, loss: 0.09431950002908707, step time: 137.70270347595215ms\r\nStep 51, loss: 0.09318584948778152, step time: 138.29421997070312ms\r\nStep 52, loss: 0.09204382449388504, step time: 137.2377872467041ms\r\nStep 53, loss: 0.09164949506521225, step time: 137.05110549926758ms\r\nStep 54, loss: 0.09246745705604553, step time: 136.80434226989746ms\r\nStep 55, loss: 0.09276295453310013, step time: 137.25781440734863ms\r\nStep 56, loss: 0.09318467229604721, step time: 136.97123527526855ms\r\nStep 57, loss: 0.09463216364383698, step time: 136.82889938354492ms\r\nStep 58, loss: 0.09674461930990219, step time: 136.49773597717285ms\r\n",,terminal_output +283,436593,"TERMINAL",0,0,"Step 59, loss: 0.09831493347883224, step time: 137.01462745666504ms\r\nStep 60, loss: 0.09971342235803604, step time: 137.88175582885742ms\r\nStep 61, loss: 0.10120789706707001, step time: 137.3124122619629ms\r\nStep 62, loss: 0.10248210281133652, step time: 136.9936466217041ms\r\nStep 63, loss: 0.1036282479763031, step time: 136.7807388305664ms\r\n",,terminal_output +284,436734,"TERMINAL",0,0,"Step 64, loss: 0.10482157766819, step time: 136.6262435913086ms\r\n",,terminal_output +285,436875,"TERMINAL",0,0,"Step 65, loss: 0.10560813546180725, step time: 137.1769905090332ms\r\n",,terminal_output +286,437015,"TERMINAL",0,0,"Step 66, loss: 0.10659754276275635, step time: 137.18032836914062ms\r\n",,terminal_output +287,437153,"TERMINAL",0,0,"Step 67, loss: 0.1076059639453888, step time: 136.8722915649414ms\r\n",,terminal_output +288,437287,"TERMINAL",0,0,"Step 68, loss: 0.10910508036613464, step time: 136.9483470916748ms\r\n",,terminal_output +289,437426,"TERMINAL",0,0,"Step 69, loss: 0.10965511202812195, step time: 136.91949844360352ms\r\n",,terminal_output +290,437696,"TERMINAL",0,0,"Step 70, loss: 0.10877430438995361, step time: 142.31514930725098ms\r\n",,terminal_output +291,437835,"TERMINAL",0,0,"Step 71, loss: 0.10760578513145447, step time: 137.253999710083ms\r\n",,terminal_output +292,437973,"TERMINAL",0,0,"Step 72, loss: 0.1065947413444519, step time: 136.67654991149902ms\r\n",,terminal_output +293,438110,"TERMINAL",0,0,"Step 73, loss: 0.10574036836624146, step time: 136.82818412780762ms\r\n",,terminal_output +294,438248,"TERMINAL",0,0,"Step 74, loss: 0.10474038869142532, step time: 136.4905834197998ms\r\n",,terminal_output +295,438389,"TERMINAL",0,0,"Step 75, loss: 0.10362108051776886, step time: 136.49415969848633ms\r\n",,terminal_output +296,438528,"TERMINAL",0,0,"Step 76, loss: 0.10265430808067322, step time: 136.89208030700684ms\r\n",,terminal_output +297,438666,"TERMINAL",0,0,"Step 77, loss: 0.10095227509737015, step time: 136.96026802062988ms\r\n",,terminal_output +298,438856,"TERMINAL",0,0,"Step 78, loss: 0.0991610661149025, step time: 136.56949996948242ms\r\n",,terminal_output +299,438959,"TERMINAL",0,0,"^CTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/train_tokenizer_single_sample.py"", line 240, in \r\n jax.block_until_ready(loss)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3117, in block_until_ready\r\n try_to_block(arrays[0])\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3100, in try_to_block\r\n return x.block_until_ready()\r\nKeyboardInterrupt\r\nTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/train_tokenizer_single_sample.py"", line 240, in \r\n jax.block_until_ready(loss)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3117, in block_until_ready\r\n try_to_block(arrays[0])\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3100, in try_to_block\r\n return x.block_until_ready()\r\nKeyboardInterrupt\r\n",,terminal_output +300,439479,"TERMINAL",0,0,"^C",,terminal_output +301,439864,"TERMINAL",0,0,"Exception ignored in atexit callback: .teardown_atexit at 0x15456c09dfc0>\r\nTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/service_connection.py"", line 94, in teardown_atexit\r\n conn.teardown(hooks.exit_code)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/service_connection.py"", line 236, in teardown\r\n return self._proc.join()\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/service/service.py"", line 251, in join\r\n ret = self._internal_proc.wait()\r\n File ""/home/hk-project-pai00039/tum_ind3695/.local/share/uv/python/cpython-3.10.17-linux-x86_64-gnu/lib/python3.10/subprocess.py"", line 1209, in wait\r\n return self._wait(timeout=timeout)\r\n File ""/home/hk-project-pai00039/tum_ind3695/.local/share/uv/python/cpython-3.10.17-linux-x86_64-gnu/lib/python3.10/subprocess.py"", line 1959, in _wait\r\n (pid, sts) = self._try_wait(0)\r\n File ""/home/hk-project-pai00039/tum_ind3695/.local/share/uv/python/cpython-3.10.17-linux-x86_64-gnu/lib/python3.10/subprocess.py"", line 1917, in _try_wait\r\n (pid, sts) = os.waitpid(self.pid, wait_flags)\r\nKeyboardInterrupt: \r\n",,terminal_output +302,440416,"TERMINAL",0,0,"wandb: \r\nwandb: 🚀 View run interactive at: https://wandb.ai/instant-uv/jafar/runs/cy8nd25c\r\nwandb: Find logs at: ../../../../../hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/wandb/run-20250627_172903-cy8nd25c/logs\r\n",,terminal_output +303,442363,"TERMINAL",0,0,"]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +304,446578,"notes.md",0,0,"",markdown,tab +305,449157,"notes.md",9144,0,"",markdown,selection_mouse +306,449164,"notes.md",9143,0,"",markdown,selection_command +307,529854,"notes.md",9209,0,"",markdown,selection_mouse +308,529858,"notes.md",9208,0,"",markdown,selection_command +309,529869,"notes.md",9208,1,"8",markdown,selection_mouse +310,529871,"notes.md",9209,0,"",markdown,selection_command +311,530219,"notes.md",9223,0,"",markdown,selection_mouse +312,530227,"notes.md",9222,0,"",markdown,selection_command +313,533938,"notes.md",9017,0,"",markdown,selection_mouse +314,533941,"notes.md",9016,0,"",markdown,selection_command +315,535409,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +316,537666,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",753,0,"\n ",shellscript,content +317,538098,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",758,0,"-",shellscript,content +318,538099,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",759,0,"",shellscript,selection_keyboard +319,538260,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",759,0,"-",shellscript,content +320,538261,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",760,0,"",shellscript,selection_keyboard +321,538360,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",760,0," ",shellscript,content +322,538361,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",761,0,"",shellscript,selection_keyboard +323,538659,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",760,1,"",shellscript,content +324,538810,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",760,0,"n",shellscript,content +325,538812,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",761,0,"",shellscript,selection_keyboard +326,539022,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",761,0,"u",shellscript,content +327,539022,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",762,0,"",shellscript,selection_keyboard +328,539192,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",762,0,"m",shellscript,content +329,539193,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",763,0,"",shellscript,selection_keyboard +330,539387,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",763,0,"_",shellscript,content +331,539389,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",764,0,"",shellscript,selection_keyboard +332,539614,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",764,0,"h",shellscript,content +333,539615,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",765,0,"",shellscript,selection_keyboard +334,539713,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",765,0,"e",shellscript,content +335,539714,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",766,0,"",shellscript,selection_keyboard +336,539824,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",766,0,"a",shellscript,content +337,539825,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",767,0,"",shellscript,selection_keyboard +338,539922,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",767,0,"d",shellscript,content +339,539923,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",768,0,"",shellscript,selection_keyboard +340,540609,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",768,0,"s 4 \",shellscript,content +341,541258,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",772,0,"",shellscript,selection_command +342,541939,"notes.md",0,0,"",markdown,tab +343,543257,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +344,550658,"train_tokenizer_single_sample.py",0,0,"",python,tab +345,552030,"train_tokenizer_single_sample.py",0,0,"",python,selection_command +346,555241,"train_tokenizer_single_sample.py",1193,0,"",python,selection_command +347,556218,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +348,558866,"notes.md",0,0,"",markdown,tab +349,559617,"TERMINAL",0,0,"./slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",,terminal_output +350,561432,"TERMINAL",0,0,"\r\n[?2004l\r# Log the sbatch script\r\ncat $0\r\n\r\nmodule unload mpi/openmpi/5.0\r\nmodule unload devel/cuda/12.4\r\nsource .venv_jafar/bin/activate\r\n\r\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\r\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\r\n\r\njob_name=$SLURM_JOB_NAME\r\nslurm_job_id=$SLURM_JOB_ID\r\n\r\ntags=(""overfit_sample"", ""tokenizer"", ""debug"", ""alfred"")\r\n\r\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\r\nmkdir -p $CHECKPOINT_DIR\r\n\r\nenv | grep SLURM\r\n\r\npython train_tokenizer_single_sample.py \\r\n --ckpt_dir $CHECKPOINT_DIR \\r\n --batch_size=1 \\r\n --min_lr=4.3e-5 \\r\n --max_lr=4.3e-4 \\r\n --log_image_interval=10 \\r\n --log \\r\n --entity instant-uv \\r\n --project jafar \\r\n --name $job_name \\r\n --tags $tags \\r\n --model_dim 256 \\r\n --num_heads 4 \\r\n --data_dir $tf_records_dir\r\n",,terminal_output +351,561574,"TERMINAL",0,0,"SLURM_STEP_NUM_TASKS=1\r\nSLURM_JOB_USER=tum_ind3695\r\nSLURM_TASKS_PER_NODE=1\r\nSLURM_JOB_UID=991285\r\nSLURM_TASK_PID=707800\r\nSLURM_JOB_GPUS=3\r\nSLURM_LOCALID=0\r\nSLURM_SUBMIT_DIR=/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit\r\nSLURMD_NODENAME=hkn0505\r\nSLURM_JOB_START_TIME=1751037996\r\nSLURM_STEP_NODELIST=hkn0505\r\nSLURM_CLUSTER_NAME=hk\r\nSLURM_JOB_END_TIME=1751039796\r\nSLURM_PMI2_SRUN_PORT=39147\r\nSLURM_CPUS_ON_NODE=8\r\nSLURM_JOB_CPUS_PER_NODE=8\r\nSLURM_GPUS_ON_NODE=1\r\nSLURM_GTIDS=0\r\nSLURM_JOB_PARTITION=accelerated\r\nSLURM_TRES_PER_TASK=cpu=8\r\nSLURM_OOM_KILL_STEP=0\r\nSLURM_JOB_NUM_NODES=1\r\nSLURM_STEPID=4294967290\r\nSLURM_JOBID=3299579\r\nSLURM_PTY_PORT=34619\r\nSLURM_JOB_QOS=normal\r\nSLURM_LAUNCH_NODE_IPADDR=10.0.7.201\r\nSLURM_PTY_WIN_ROW=68\r\nSLURM_PMI2_PROC_MAPPING=(vector,(0,1,1))\r\nSLURMD_DEBUG=2\r\nSLURM_PROCID=0\r\nSLURM_CPUS_PER_TASK=8\r\nSLURM_NTASKS=1\r\nSLURM_TOPOLOGY_ADDR=hkibb.hkibbi1.hkibbi1e10.hkn0505\r\nSLURM_TOPOLOGY_ADDR_PATTERN=switch.switch.switch.node\r\nSLURM_SRUN_COMM_HOST=10.0.7.201\r\nSLURM_SCRIPT_CONTEXT=prolog_task\r\nSLURM_PTY_WIN_COL=175\r\nSLURM_NODELIST=hkn0505\r\nSLURM_SRUN_COMM_PORT=41999\r\nSLURM_STEP_ID=4294967290\r\nSLURM_JOB_ACCOUNT=hk-project-p0023960\r\nSLURM_PRIO_PROCESS=0\r\nSLURM_NPROCS=1\r\nSLURM_NNODES=1\r\nSLURM_SUBMIT_HOST=hkn1993.localdomain\r\nSLURM_JOB_ID=3299579\r\nSLURM_NODEID=0\r\nSLURM_STEP_NUM_NODES=1\r\nSLURM_STEP_TASKS_PER_NODE=1\r\nSLURM_MPI_TYPE=pmi2\r\nSLURM_PMI2_STEP_NODES=hkn0505\r\nSLURM_CONF=/etc/slurm/slurm.conf\r\nSLURM_JOB_NAME=interactive\r\nSLURM_NTASKS_PER_NODE=1\r\nSLURM_STEP_LAUNCHER_PORT=41999\r\nSLURM_JOB_GID=502289\r\nSLURM_JOB_NODELIST=hkn0505\r\n",,terminal_output +352,564360,"TERMINAL",0,0,"2025-06-27 17:32:32.410771: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\r\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\r\nE0000 00:00:1751038352.423499 710438 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\r\nE0000 00:00:1751038352.427576 710438 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\r\nW0000 00:00:1751038352.439609 710438 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038352.439631 710438 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038352.439633 710438 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038352.439635 710438 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\n",,terminal_output +353,568084,"TERMINAL",0,0,"W0000 00:00:1751038356.161548 710438 gpu_device.cc:2341] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.\r\nSkipping registering GPU devices...\r\n",,terminal_output +354,568407,"TERMINAL",0,0,"Running on 1 devices.\r\n",,terminal_output +355,569170,"TERMINAL",0,0,"wandb: Currently logged in as: avocadoali (instant-uv) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin\r\n",,terminal_output +356,569734,"TERMINAL",0,0,"wandb: Tracking run with wandb version 0.19.11\r\nwandb: Run data is saved locally in /hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/wandb/run-20250627_173237-7qr0fzyr\r\nwandb: Run `wandb offline` to turn off syncing.\r\nwandb: Syncing run interactive\r\nwandb: ⭐️ View project at https://wandb.ai/instant-uv/jafar\r\nwandb: 🚀 View run at https://wandb.ai/instant-uv/jafar/runs/7qr0fzyr\r\n",,terminal_output +357,571046,"TERMINAL",0,0,"2025-06-27 17:32:39.124222: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +358,582803,"TERMINAL",0,0,"2025-06-27 17:32:50.748109: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +359,584801,"TERMINAL",0,0,"2025-06-27 17:32:52.829743: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +360,587585,"TERMINAL",0,0,"Counting all components: ['encoder', 'vq', 'decoder']\r\nParameter counts:\r\n{'encoder': 4770688, 'vq': 32768, 'decoder': 4770672, 'total': 9574128}\r\n",,terminal_output +361,588360,"TERMINAL",0,0,"Starting training from step 0...\r\nbatch shape: (1, 16, 90, 160, 3)\r\n",,terminal_output +362,599986,"TERMINAL",0,0,"2025-06-27 17:33:08.064139: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:33:08.064567: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:33:08.064588: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:33:08.064681: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:33:08.066182: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +363,604251,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +364,608318,"TERMINAL",0,0,"^C2025-06-27 17:33:16.399639: F external/xla/xla/service/gpu/autotuning/gemm_fusion_autotuner.cc:1136] Non-OK-status: executable.status()\r\nStatus: INTERNAL: ptxas exited with non-zero error code 2, output: - Failure occured when compiling fusion gemm_fusion_dot.228 with config '{block_m:64,block_n:128,block_k:16,split_k:1,num_stages:4,num_warps:2,num_ctas:1}'\r\nFused HLO computation:\r\n%gemm_fusion_dot.228_computation (parameter_0.159: f32[1,16,920,256], parameter_1.159: f32[256,256]) -> f32[1,16,920,256] {\r\n %parameter_0.159 = f32[1,16,920,256]{3,2,1,0} parameter(0)\r\n %bitcast.16502 = f32[14720,256]{1,0} bitcast(%parameter_0.159), metadata={op_name=""jit(train_step)/jit(main)/transpose(jvp(TokenizerVQVAE))/decoder/checkpoint/STBlock_7/add_any"" source_file=""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/utils/nn.py"" source_line=64}\r\n %parameter_1.159 = f32[256,256]{1,0} parameter(1)\r\n %dot.1723 = f32[14720,256]{1,0} dot(%bitcast.16502, %parameter_1.159), lhs_contracting_dims={1}, rhs_contracting_dims={1}, metadata={op_name=""jit(train_step)/jit(main)/transpose(jvp(TokenizerVQVAE))/decoder/checkpoint/STBlock_7/Dense_0/dot_general"" source_file=""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/flax/linen/linear.py"" source_line=287}\r\n ROOT %bitcast.16503 = f32[1,16,920,256]{3,2,1,0} bitcast(%dot.1723), metadata={op_name=""jit(train_step)/jit(main)/transpose(jvp(TokenizerVQVAE))/decoder/checkpoint/STBlock_7/Dense_0/dot_general"" source_file=""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/flax/linen/linear.py"" source_line=287}\r\n}\r\n",,terminal_output +365,608812,"TERMINAL",0,0,"^C./slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh: line 34: 710438 Aborted (core dumped) python train_tokenizer_single_sample.py --ckpt_dir $CHECKPOINT_DIR --batch_size=1 --min_lr=4.3e-5 --max_lr=4.3e-4 --log_image_interval=10 --log --entity instant-uv --project jafar --name $job_name --tags $tags --model_dim 256 --num_heads 4 --data_dir $tf_records_dir\r\n]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +366,612406,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +367,615274,"notes.md",0,0,"",markdown,tab +368,617242,"notes.md",9299,0,"",markdown,selection_mouse +369,619710,"notes.md",9116,0,"",markdown,selection_mouse +370,620062,"notes.md",9116,0,"\n",markdown,content +371,620323,"notes.md",9117,0,"\n",markdown,content +372,620441,"notes.md",9118,0,"\n",markdown,content +373,620701,"notes.md",9118,0,"",markdown,selection_command +374,620851,"notes.md",9117,0,"",markdown,selection_command +375,621079,"notes.md",9117,0,"{'encoder': 4770688, 'vq': 32768, 'decoder': 4770672, 'total': 9574128}",markdown,content +376,621085,"notes.md",9187,0,"",markdown,selection_command +377,622530,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +378,623494,"notes.md",0,0,"",markdown,tab +379,624123,"notes.md",9116,0,"",markdown,selection_command +380,624322,"notes.md",9115,0,"",markdown,selection_command +381,624490,"notes.md",9114,0,"",markdown,selection_command +382,624656,"notes.md",9102,0,"",markdown,selection_command +383,625293,"notes.md",9113,0,"\n",markdown,content +384,625693,"notes.md",9114,1,"\n",markdown,selection_command +385,626545,"notes.md",9114,0,"",markdown,selection_command +386,629711,"notes.md",9114,1,"\n",markdown,selection_command +387,629907,"notes.md",9032,82,"{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n",markdown,selection_command +388,630259,"notes.md",9018,96,"num_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n",markdown,selection_command +389,630454,"notes.md",9003,111,"num_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n",markdown,selection_command +390,630627,"notes.md",8988,126,"patch_size = 4\nnum_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n",markdown,selection_command +391,630779,"notes.md",8969,145,"num_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n",markdown,selection_command +392,630940,"notes.md",8953,161,"latent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n",markdown,selection_command +393,631112,"notes.md",8937,177,"model_dim = 256\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n",markdown,selection_command +394,632145,"notes.md",8926,188,"**9.6mio**\nmodel_dim = 256\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n",markdown,selection_command +395,632962,"notes.md",8926,0,"",markdown,selection_command +396,633303,"notes.md",8937,0,"",markdown,selection_command +397,633553,"notes.md",8953,0,"",markdown,selection_command +398,633582,"notes.md",8969,0,"",markdown,selection_command +399,633610,"notes.md",8988,0,"",markdown,selection_command +400,633642,"notes.md",9003,0,"",markdown,selection_command +401,633680,"notes.md",9018,0,"",markdown,selection_command +402,633710,"notes.md",9032,0,"",markdown,selection_command +403,633746,"notes.md",9114,0,"",markdown,selection_command +404,633781,"notes.md",9115,0,"",markdown,selection_command +405,633970,"notes.md",9116,0,"",markdown,selection_command +406,634237,"notes.md",9116,0,"**9.6mio**\nmodel_dim = 256\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n{'encoder': 18.978.432, 'vq': 32.768, 'decoder': 18.978.416, 'total': 37.989.616}\n\n",markdown,content +407,634244,"notes.md",9116,0,"",markdown,selection_command +408,634705,"notes.md",9127,0,"",markdown,selection_command +409,634883,"notes.md",9143,0,"",markdown,selection_command +410,635288,"notes.md",9127,0,"",markdown,selection_command +411,635707,"notes.md",9143,0,"",markdown,selection_command +412,635954,"notes.md",9159,0,"",markdown,selection_command +413,635971,"notes.md",9178,0,"",markdown,selection_command +414,636121,"notes.md",9193,0,"",markdown,selection_command +415,636317,"notes.md",9208,0,"",markdown,selection_command +416,636965,"notes.md",9221,0,"",markdown,selection_command +417,637252,"notes.md",9220,1,"",markdown,content +418,637991,"notes.md",9220,0,"4",markdown,content +419,637992,"notes.md",9221,0,"",markdown,selection_keyboard +420,638180,"notes.md",9220,0,"",markdown,selection_command +421,638290,"notes.md",9205,0,"",markdown,selection_command +422,638722,"notes.md",9220,0,"",markdown,selection_command +423,638854,"notes.md",9234,0,"",markdown,selection_command +424,639009,"notes.md",9304,0,"",markdown,selection_command +425,639202,"notes.md",9234,0,"",markdown,selection_command +426,639549,"notes.md",9222,82,"",markdown,content +427,640115,"notes.md",9222,1,"",markdown,content +428,640477,"notes.md",9222,1,"",markdown,content +429,640982,"notes.md",9222,1,"",markdown,content +430,650908,"notes.md",0,0,"",markdown,tab +431,652207,"notes.md",9208,0,"",markdown,selection_command +432,652456,"notes.md",9193,0,"",markdown,selection_command +433,652482,"notes.md",9178,0,"",markdown,selection_command +434,652515,"notes.md",9159,0,"",markdown,selection_command +435,652546,"notes.md",9143,0,"",markdown,selection_command +436,652580,"notes.md",9127,0,"",markdown,selection_command +437,652614,"notes.md",9116,0,"",markdown,selection_command +438,652647,"notes.md",9115,0,"",markdown,selection_command +439,652681,"notes.md",9114,0,"",markdown,selection_command +440,653191,"notes.md",9032,0,"",markdown,selection_command +441,653453,"notes.md",9031,0,"\n",markdown,content +442,653835,"notes.md",9032,0,"{'encoder': 4770688, 'vq': 32768, 'decoder': 4770672, 'total': 9574128}",markdown,content +443,653839,"notes.md",9102,0,"",markdown,selection_command +444,654384,"notes.md",9174,0,"",markdown,selection_command +445,654894,"notes.md",9104,82,"",markdown,content +446,659606,"notes.md",9242,0,"",markdown,selection_mouse +447,660703,"notes.md",9261,0,"",markdown,selection_mouse +448,661485,"notes.md",9226,0,"",markdown,selection_mouse +449,758285,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +450,759889,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",328,0,"",shellscript,selection_mouse +451,766321,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",356,0,"",shellscript,selection_mouse +452,766832,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",385,0,"",shellscript,selection_mouse +453,767286,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",458,0,"",shellscript,selection_mouse +454,767292,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",457,0,"",shellscript,selection_command +455,767668,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",489,0,"",shellscript,selection_mouse +456,768371,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",689,0,"",shellscript,selection_mouse +457,768378,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",688,0,"",shellscript,selection_command +458,769069,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",712,0,"",shellscript,selection_mouse +459,769075,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",711,0,"",shellscript,selection_command +460,770769,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",731,0,"",shellscript,selection_mouse +461,770773,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",730,0,"",shellscript,selection_command +462,773221,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",305,0,"",shellscript,selection_mouse +463,795585,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",305,1,"",shellscript,content +464,795993,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",354,0,"",shellscript,selection_command +465,796345,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",353,1,"",shellscript,content +466,796609,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",352,0,"",shellscript,selection_command +467,798875,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",354,0,"",shellscript,selection_command +468,799136,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",407,0,"",shellscript,selection_command +469,799164,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",437,0,"",shellscript,selection_command +470,799196,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",439,0,"",shellscript,selection_command +471,799229,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",455,0,"",shellscript,selection_command +472,799310,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",439,0,"",shellscript,selection_command +473,799569,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",437,0,"",shellscript,selection_command +474,799592,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",407,0,"",shellscript,selection_command +475,799623,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",354,0,"",shellscript,selection_command +476,799657,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",352,0,"",shellscript,selection_command +477,800646,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",300,0,"",shellscript,selection_command +478,800873,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",304,0,"",shellscript,selection_command +479,801069,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",306,0,"",shellscript,selection_command +480,801242,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",320,0,"",shellscript,selection_command +481,801436,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",323,0,"",shellscript,selection_command +482,801836,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",322,0,"",shellscript,selection_command +483,802019,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",321,0,"",shellscript,selection_command +484,802217,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",320,0,"",shellscript,selection_command +485,802562,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",320,1,"",shellscript,content +486,802828,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",320,1,"",shellscript,content +487,804452,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",321,0,"",shellscript,selection_command +488,804768,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",321,1,"",shellscript,content +489,805201,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",330,0,"",shellscript,selection_command +490,805686,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",330,1,"",shellscript,content +491,806103,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",330,1,"",shellscript,content +492,806509,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",331,0,"",shellscript,selection_command +493,806754,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",331,1,"",shellscript,content +494,806988,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",332,0,"",shellscript,selection_command +495,807238,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",333,0,"",shellscript,selection_command +496,807264,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",334,0,"",shellscript,selection_command +497,807483,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",335,0,"",shellscript,selection_command +498,807671,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",336,0,"",shellscript,selection_command +499,807901,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",336,1,"",shellscript,content +500,808092,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",336,1,"",shellscript,content +501,808710,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",336,1,"",shellscript,content +502,808886,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",336,1,"",shellscript,content +503,809153,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",336,0," ",shellscript,content +504,809154,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",337,0,"",shellscript,selection_keyboard +505,809470,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",336,0,"",shellscript,selection_command +506,811926,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +507,812282,"TERMINAL",0,0,"./slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",,terminal_output +508,812958,"TERMINAL",0,0,"\r\n[?2004l\r# Log the sbatch script\r\ncat $0\r\n\r\nmodule unload mpi/openmpi/5.0\r\nmodule unload devel/cuda/12.4\r\nsource .venv_jafar/bin/activate\r\n\r\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\r\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\r\n\r\njob_name=$SLURM_JOB_NAME\r\nslurm_job_id=$SLURM_JOB_ID\r\n\r\ntags=""overfit_sample tokenizer debug alfred""\r\n\r\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\r\nmkdir -p $CHECKPOINT_DIR\r\n\r\nenv | grep SLURM\r\n\r\npython train_tokenizer_single_sample.py \\r\n --ckpt_dir $CHECKPOINT_DIR \\r\n --batch_size=1 \\r\n --min_lr=4.3e-5 \\r\n --max_lr=4.3e-4 \\r\n --log_image_interval=10 \\r\n --log \\r\n --entity instant-uv \\r\n --project jafar \\r\n --name $job_name \\r\n --tags $tags \\r\n --model_dim 256 \\r\n --num_heads 4 \\r\n --data_dir $tf_records_dir\r\n",,terminal_output +509,813097,"TERMINAL",0,0,"SLURM_STEP_NUM_TASKS=1\r\nSLURM_JOB_USER=tum_ind3695\r\nSLURM_TASKS_PER_NODE=1\r\nSLURM_JOB_UID=991285\r\nSLURM_TASK_PID=707800\r\nSLURM_JOB_GPUS=3\r\nSLURM_LOCALID=0\r\nSLURM_SUBMIT_DIR=/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit\r\nSLURMD_NODENAME=hkn0505\r\nSLURM_JOB_START_TIME=1751037996\r\nSLURM_STEP_NODELIST=hkn0505\r\nSLURM_CLUSTER_NAME=hk\r\nSLURM_JOB_END_TIME=1751039796\r\nSLURM_PMI2_SRUN_PORT=39147\r\nSLURM_CPUS_ON_NODE=8\r\nSLURM_JOB_CPUS_PER_NODE=8\r\nSLURM_GPUS_ON_NODE=1\r\nSLURM_GTIDS=0\r\nSLURM_JOB_PARTITION=accelerated\r\nSLURM_TRES_PER_TASK=cpu=8\r\nSLURM_OOM_KILL_STEP=0\r\nSLURM_JOB_NUM_NODES=1\r\nSLURM_STEPID=4294967290\r\nSLURM_JOBID=3299579\r\nSLURM_PTY_PORT=34619\r\nSLURM_JOB_QOS=normal\r\nSLURM_LAUNCH_NODE_IPADDR=10.0.7.201\r\nSLURM_PTY_WIN_ROW=68\r\nSLURM_PMI2_PROC_MAPPING=(vector,(0,1,1))\r\nSLURMD_DEBUG=2\r\nSLURM_PROCID=0\r\nSLURM_CPUS_PER_TASK=8\r\nSLURM_NTASKS=1\r\nSLURM_TOPOLOGY_ADDR=hkibb.hkibbi1.hkibbi1e10.hkn0505\r\nSLURM_TOPOLOGY_ADDR_PATTERN=switch.switch.switch.node\r\nSLURM_SRUN_COMM_HOST=10.0.7.201\r\nSLURM_SCRIPT_CONTEXT=prolog_task\r\nSLURM_PTY_WIN_COL=175\r\nSLURM_NODELIST=hkn0505\r\nSLURM_SRUN_COMM_PORT=41999\r\nSLURM_STEP_ID=4294967290\r\nSLURM_JOB_ACCOUNT=hk-project-p0023960\r\nSLURM_PRIO_PROCESS=0\r\nSLURM_NPROCS=1\r\nSLURM_NNODES=1\r\nSLURM_SUBMIT_HOST=hkn1993.localdomain\r\nSLURM_JOB_ID=3299579\r\nSLURM_NODEID=0\r\nSLURM_STEP_NUM_NODES=1\r\nSLURM_STEP_TASKS_PER_NODE=1\r\nSLURM_MPI_TYPE=pmi2\r\nSLURM_PMI2_STEP_NODES=hkn0505\r\nSLURM_CONF=/etc/slurm/slurm.conf\r\nSLURM_JOB_NAME=interactive\r\nSLURM_NTASKS_PER_NODE=1\r\nSLURM_STEP_LAUNCHER_PORT=41999\r\nSLURM_JOB_GID=502289\r\nSLURM_JOB_NODELIST=hkn0505\r\n",,terminal_output +510,815076,"TERMINAL",0,0,"2025-06-27 17:36:43.127289: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\r\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\r\nE0000 00:00:1751038603.140078 712318 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\r\nE0000 00:00:1751038603.144388 712318 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\r\nW0000 00:00:1751038603.155639 712318 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038603.155657 712318 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038603.155659 712318 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038603.155662 712318 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\n",,terminal_output +511,817270,"TERMINAL",0,0,"W0000 00:00:1751038605.348798 712318 gpu_device.cc:2341] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.\r\nSkipping registering GPU devices...\r\n",,terminal_output +512,817571,"TERMINAL",0,0,"Running on 1 devices.\r\n",,terminal_output +513,818343,"TERMINAL",0,0,"wandb: Currently logged in as: avocadoali (instant-uv) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin\r\n",,terminal_output +514,819129,"TERMINAL",0,0,"wandb: Tracking run with wandb version 0.19.11\r\nwandb: Run data is saved locally in /hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/wandb/run-20250627_173646-t3de2fgy\r\nwandb: Run `wandb offline` to turn off syncing.\r\nwandb: Syncing run interactive\r\nwandb: ⭐️ View project at https://wandb.ai/instant-uv/jafar\r\nwandb: 🚀 View run at https://wandb.ai/instant-uv/jafar/runs/t3de2fgy\r\n",,terminal_output +515,820488,"TERMINAL",0,0,"2025-06-27 17:36:48.568165: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +516,826359,"TERMINAL",0,0,"^C2025-06-27 17:36:54.437881: F external/xla/xla/service/gpu/autotuning/gemm_fusion_autotuner.cc:1136] Non-OK-status: executable.status()\r\nStatus: INTERNAL: ptxas exited with non-zero error code 2, output: - Failure occured when compiling fusion gemm_fusion_dot with config '{block_m:128,block_n:256,block_k:32,split_k:1,num_stages:4,num_warps:8,num_ctas:1}'\r\nFused HLO computation:\r\n%gemm_fusion_dot_computation (parameter_0: f32[1,16,920,4,64], parameter_1: f32[4,64,256]) -> f32[1,16,920,256] {\r\n %parameter_0 = f32[1,16,920,4,64]{4,3,2,1,0} parameter(0)\r\n %bitcast.3 = f32[14720,256]{1,0} bitcast(%parameter_0), metadata={op_name=""args[0]""}\r\n %parameter_1 = f32[4,64,256]{2,1,0} parameter(1)\r\n %bitcast.4 = f32[256,256]{1,0} bitcast(%parameter_1), metadata={op_name=""args[1]""}\r\n %dot.1 = f32[14720,256]{1,0} dot(%bitcast.3, %bitcast.4), lhs_contracting_dims={1}, rhs_contracting_dims={0}, metadata={op_name=""jit(dot_general)/jit(main)/dot_general"" source_file=""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/flax/linen/linear.py"" source_line=199}\r\n ROOT %bitcast.5 = f32[1,16,920,256]{3,2,1,0} bitcast(%dot.1), metadata={op_name=""jit(dot_general)/jit(main)/dot_general"" source_file=""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/flax/linen/linear.py"" source_line=199}\r\n}\r\n",,terminal_output +517,826566,"TERMINAL",0,0,"^C",,terminal_output +518,826726,"TERMINAL",0,0,"^C",,terminal_output +519,826811,"TERMINAL",0,0,"./slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh: line 34: 712318 Aborted (core dumped) python train_tokenizer_single_sample.py --ckpt_dir $CHECKPOINT_DIR --batch_size=1 --min_lr=4.3e-5 --max_lr=4.3e-4 --log_image_interval=10 --log --entity instant-uv --project jafar --name $job_name --tags $tags --model_dim 256 --num_heads 4 --data_dir $tf_records_dir\r\n]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +520,925046,"TERMINAL",0,0,"\r(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +521,927595,"train_tokenizer_single_sample.py",0,0,"",python,tab +522,948414,"train_tokenizer_single_sample.py",826,0,"",python,selection_mouse +523,948418,"train_tokenizer_single_sample.py",825,0,"",python,selection_command +524,949811,"train_tokenizer_single_sample.py",3740,0,"",python,selection_command +525,949974,"train_tokenizer_single_sample.py",5138,0,"",python,selection_command +526,950103,"train_tokenizer_single_sample.py",5169,0,"",python,selection_command +527,950264,"train_tokenizer_single_sample.py",6852,0,"",python,selection_command +528,950990,"train_tokenizer_single_sample.py",7252,0,"",python,selection_command +529,951163,"train_tokenizer_single_sample.py",7927,0,"",python,selection_command +530,951425,"train_tokenizer_single_sample.py",7252,0,"",python,selection_command +531,951549,"train_tokenizer_single_sample.py",6852,0,"",python,selection_command +532,951695,"train_tokenizer_single_sample.py",5169,0,"",python,selection_command +533,1019377,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +534,1019991,"notes.md",0,0,"",markdown,tab +535,1022574,"notes.md",9284,0,"",markdown,selection_command +536,1022802,"notes.md",9285,0,"",markdown,selection_command +537,1022836,"notes.md",9296,0,"",markdown,selection_command +538,1022869,"notes.md",9312,0,"",markdown,selection_command +539,1022903,"notes.md",9328,0,"",markdown,selection_command +540,1022938,"notes.md",9344,0,"",markdown,selection_command +541,1022972,"notes.md",9362,0,"",markdown,selection_command +542,1023006,"notes.md",9377,0,"",markdown,selection_command +543,1023038,"notes.md",9391,0,"",markdown,selection_command +544,1023072,"notes.md",9393,0,"",markdown,selection_command +545,1023106,"notes.md",9408,0,"",markdown,selection_command +546,1023139,"notes.md",9468,0,"",markdown,selection_command +547,1023473,"notes.md",9476,0,"",markdown,selection_command +548,1024054,"notes.md",9468,0,"",markdown,selection_command +549,1024227,"notes.md",9393,0,"",markdown,selection_command +550,1024375,"notes.md",9285,0,"",markdown,selection_command +551,1024615,"notes.md",9105,0,"",markdown,selection_command +552,1024648,"notes.md",8925,0,"",markdown,selection_command +553,1024673,"notes.md",8726,0,"",markdown,selection_command +554,1024707,"notes.md",8408,0,"",markdown,selection_command +555,1024740,"notes.md",8403,0,"",markdown,selection_command +556,1025178,"notes.md",8408,0,"",markdown,selection_command +557,1025370,"notes.md",8725,0,"",markdown,selection_command +558,1025522,"notes.md",8925,0,"",markdown,selection_command +559,1025740,"notes.md",9104,0,"",markdown,selection_command +560,1030017,"notes.md",9508,0,"",markdown,selection_mouse +561,1030019,"notes.md",9507,0,"",markdown,selection_command +562,1030036,"notes.md",9507,1,"2",markdown,selection_mouse +563,1030037,"notes.md",9508,0,"",markdown,selection_command +564,1030690,"notes.md",9507,0,"",markdown,selection_command +565,1059700,"notes.md",9524,0,"",markdown,selection_command +566,1059989,"notes.md",9541,0,"",markdown,selection_command +567,1060257,"notes.md",9556,0,"",markdown,selection_command +568,1062946,"notes.md",0,0,"",markdown,tab +569,1064710,"notes.md",9570,0,"",markdown,selection_command +570,1065027,"notes.md",9572,0,"",markdown,selection_command +571,1065337,"notes.md",9570,0,"",markdown,selection_command +572,1065494,"notes.md",9556,0,"",markdown,selection_command +573,1066385,"notes.md",9541,0,"",markdown,selection_command +574,1067244,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +575,1068206,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",345,0,"",shellscript,selection_command +576,1068452,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",382,0,"",shellscript,selection_command +577,1068480,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",428,0,"",shellscript,selection_command +578,1068507,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",430,0,"",shellscript,selection_command +579,1068540,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",446,0,"",shellscript,selection_command +580,1068574,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",448,0,"",shellscript,selection_command +581,1068607,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",485,0,"",shellscript,selection_command +582,1068642,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",522,0,"",shellscript,selection_command +583,1068674,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",543,0,"",shellscript,selection_command +584,1068791,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",565,0,"",shellscript,selection_command +585,1068793,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",587,0,"",shellscript,selection_command +586,1068795,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",617,0,"",shellscript,selection_command +587,1068813,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",629,0,"",shellscript,selection_command +588,1068846,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",655,0,"",shellscript,selection_command +589,1068878,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",677,0,"",shellscript,selection_command +590,1068913,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",700,0,"",shellscript,selection_command +591,1069078,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",719,0,"",shellscript,selection_command +592,1069268,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",741,0,"",shellscript,selection_command +593,1069497,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",737,0,"",shellscript,selection_command +594,1069673,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",727,0,"",shellscript,selection_command +595,1070057,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",737,0,"",shellscript,selection_command +596,1070354,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",737,4,"",shellscript,content +597,1071200,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",737,0,"6",shellscript,content +598,1071201,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",738,0,"",shellscript,selection_keyboard +599,1071247,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",738,0,"4",shellscript,content +600,1071248,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",739,0,"",shellscript,selection_keyboard +601,1071472,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",739,0," ",shellscript,content +602,1071473,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",740,0,"",shellscript,selection_keyboard +603,1071843,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",739,0,"",shellscript,selection_command +604,1071975,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",760,0,"",shellscript,selection_command +605,1072283,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",759,0,"",shellscript,selection_command +606,1072477,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",758,0,"",shellscript,selection_command +607,1073820,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",742,20,"",shellscript,content +608,1073831,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",746,0,"",shellscript,selection_command +609,1073977,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",725,0,"",shellscript,selection_command +610,1074293,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",741,0,"",shellscript,selection_command +611,1074493,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",741,0,"\n ",shellscript,content +612,1074953,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",746,0,"_",shellscript,content +613,1074954,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",747,0,"",shellscript,selection_keyboard +614,1075086,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",747,0,"_",shellscript,content +615,1075087,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",748,0,"",shellscript,selection_keyboard +616,1075507,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",747,1,"",shellscript,content +617,1075614,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",746,1,"",shellscript,content +618,1075788,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",746,0,"-",shellscript,content +619,1075788,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",747,0,"",shellscript,selection_keyboard +620,1075930,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",747,0,"-",shellscript,content +621,1075931,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",748,0,"",shellscript,selection_keyboard +622,1076126,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",748,0,"n",shellscript,content +623,1076127,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",749,0,"",shellscript,selection_keyboard +624,1076254,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",749,0,"u",shellscript,content +625,1076255,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",750,0,"",shellscript,selection_keyboard +626,1076424,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",750,0,"m",shellscript,content +627,1076425,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",751,0,"",shellscript,selection_keyboard +628,1076792,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",751,0,"_",shellscript,content +629,1076793,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",752,0,"",shellscript,selection_keyboard +630,1077069,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",752,0,"b",shellscript,content +631,1077070,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",753,0,"",shellscript,selection_keyboard +632,1077221,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",753,0,"l",shellscript,content +633,1077222,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",754,0,"",shellscript,selection_keyboard +634,1077371,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",754,0,"o",shellscript,content +635,1077372,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",755,0,"",shellscript,selection_keyboard +636,1078007,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",755,0,"cks 4 \",shellscript,content +637,1078359,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",761,0,"",shellscript,selection_command +638,1078830,"notes.md",0,0,"",markdown,tab +639,1080498,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +640,1083932,"notes.md",0,0,"",markdown,tab +641,1085196,"TERMINAL",0,0,"",,terminal_output +642,1085657,"TERMINAL",0,0,"./slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",,terminal_output +643,1086163,"TERMINAL",0,0,"\r\n[?2004l\r# Log the sbatch script\r\ncat $0\r\n\r\nmodule unload mpi/openmpi/5.0\r\nmodule unload devel/cuda/12.4\r\nsource .venv_jafar/bin/activate\r\n\r\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\r\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\r\n\r\njob_name=$SLURM_JOB_NAME\r\nslurm_job_id=$SLURM_JOB_ID\r\n\r\ntags=""overfit_sample tokenizer debug alfred""\r\n\r\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\r\nmkdir -p $CHECKPOINT_DIR\r\n\r\nenv | grep SLURM\r\n\r\npython train_tokenizer_single_sample.py \\r\n --ckpt_dir $CHECKPOINT_DIR \\r\n --batch_size=1 \\r\n --min_lr=4.3e-5 \\r\n --max_lr=4.3e-4 \\r\n --log_image_interval=10 \\r\n --log \\r\n --entity instant-uv \\r\n --project jafar \\r\n --name $job_name \\r\n --tags $tags \\r\n --model_dim 64 \\r\n --num_blocks 4 \\r\n --data_dir $tf_records_dir\r\n",,terminal_output +644,1086310,"TERMINAL",0,0,"SLURM_STEP_NUM_TASKS=1\r\nSLURM_JOB_USER=tum_ind3695\r\nSLURM_TASKS_PER_NODE=1\r\nSLURM_JOB_UID=991285\r\nSLURM_TASK_PID=707800\r\nSLURM_JOB_GPUS=3\r\nSLURM_LOCALID=0\r\nSLURM_SUBMIT_DIR=/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit\r\nSLURMD_NODENAME=hkn0505\r\nSLURM_JOB_START_TIME=1751037996\r\nSLURM_STEP_NODELIST=hkn0505\r\nSLURM_CLUSTER_NAME=hk\r\nSLURM_JOB_END_TIME=1751039796\r\nSLURM_PMI2_SRUN_PORT=39147\r\nSLURM_CPUS_ON_NODE=8\r\nSLURM_JOB_CPUS_PER_NODE=8\r\nSLURM_GPUS_ON_NODE=1\r\nSLURM_GTIDS=0\r\nSLURM_JOB_PARTITION=accelerated\r\nSLURM_TRES_PER_TASK=cpu=8\r\nSLURM_OOM_KILL_STEP=0\r\nSLURM_JOB_NUM_NODES=1\r\nSLURM_STEPID=4294967290\r\nSLURM_JOBID=3299579\r\nSLURM_PTY_PORT=34619\r\nSLURM_JOB_QOS=normal\r\nSLURM_LAUNCH_NODE_IPADDR=10.0.7.201\r\nSLURM_PTY_WIN_ROW=68\r\nSLURM_PMI2_PROC_MAPPING=(vector,(0,1,1))\r\nSLURMD_DEBUG=2\r\nSLURM_PROCID=0\r\nSLURM_CPUS_PER_TASK=8\r\nSLURM_NTASKS=1\r\nSLURM_TOPOLOGY_ADDR=hkibb.hkibbi1.hkibbi1e10.hkn0505\r\nSLURM_TOPOLOGY_ADDR_PATTERN=switch.switch.switch.node\r\nSLURM_SRUN_COMM_HOST=10.0.7.201\r\nSLURM_SCRIPT_CONTEXT=prolog_task\r\nSLURM_PTY_WIN_COL=175\r\nSLURM_NODELIST=hkn0505\r\nSLURM_SRUN_COMM_PORT=41999\r\nSLURM_STEP_ID=4294967290\r\nSLURM_JOB_ACCOUNT=hk-project-p0023960\r\nSLURM_PRIO_PROCESS=0\r\nSLURM_NPROCS=1\r\nSLURM_NNODES=1\r\nSLURM_SUBMIT_HOST=hkn1993.localdomain\r\nSLURM_JOB_ID=3299579\r\nSLURM_NODEID=0\r\nSLURM_STEP_NUM_NODES=1\r\nSLURM_STEP_TASKS_PER_NODE=1\r\nSLURM_MPI_TYPE=pmi2\r\nSLURM_PMI2_STEP_NODES=hkn0505\r\nSLURM_CONF=/etc/slurm/slurm.conf\r\nSLURM_JOB_NAME=interactive\r\nSLURM_NTASKS_PER_NODE=1\r\nSLURM_STEP_LAUNCHER_PORT=41999\r\nSLURM_JOB_GID=502289\r\nSLURM_JOB_NODELIST=hkn0505\r\n",,terminal_output +645,1088423,"TERMINAL",0,0,"2025-06-27 17:41:16.474711: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\r\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\r\nE0000 00:00:1751038876.487429 713983 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\r\nE0000 00:00:1751038876.491509 713983 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\r\nW0000 00:00:1751038876.503669 713983 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038876.503687 713983 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038876.503690 713983 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751038876.503693 713983 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\n",,terminal_output +646,1091423,"TERMINAL",0,0,"W0000 00:00:1751038879.498193 713983 gpu_device.cc:2341] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.\r\nSkipping registering GPU devices...\r\n",,terminal_output +647,1091903,"TERMINAL",0,0,"Running on 1 devices.\r\n",,terminal_output +648,1092699,"TERMINAL",0,0,"wandb: Currently logged in as: avocadoali (instant-uv) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin\r\n",,terminal_output +649,1093292,"TERMINAL",0,0,"wandb: Tracking run with wandb version 0.19.11\r\nwandb: Run data is saved locally in /hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/wandb/run-20250627_174120-dtxtnkas\r\nwandb: Run `wandb offline` to turn off syncing.\r\nwandb: Syncing run interactive\r\nwandb: ⭐️ View project at https://wandb.ai/instant-uv/jafar\r\nwandb: 🚀 View run at https://wandb.ai/instant-uv/jafar/runs/dtxtnkas\r\n",,terminal_output +650,1094711,"TERMINAL",0,0,"2025-06-27 17:41:22.771251: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +651,1104248,"TERMINAL",0,0,"2025-06-27 17:41:32.328489: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +652,1106285,"TERMINAL",0,0,"2025-06-27 17:41:34.361462: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +653,1108425,"TERMINAL",0,0,"Counting all components: ['encoder', 'vq', 'decoder']\r\nParameter counts:\r\n{'encoder': 156736, 'vq': 32768, 'decoder': 156720, 'total': 346224}\r\n",,terminal_output +654,1109020,"TERMINAL",0,0,"Starting training from step 0...\r\nbatch shape: (1, 16, 90, 160, 3)\r\n",,terminal_output +655,1115397,"TERMINAL",0,0,"2025-06-27 17:41:43.474422: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:41:43.474719: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:41:43.474742: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:41:43.474799: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:41:43.475581: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +656,1139430,"TERMINAL",0,0,"Step 0, loss: 0.22973881661891937, step time: 30171.963691711426ms\r\n",,terminal_output +657,1139483,"TERMINAL",0,0,"Step 1, loss: 0.22567498683929443, step time: 51.11837387084961ms\r\n",,terminal_output +658,1139535,"TERMINAL",0,0,"Step 2, loss: 0.22210054099559784, step time: 50.873756408691406ms\r\n",,terminal_output +659,1139634,"TERMINAL",0,0,"Step 3, loss: 0.21824738383293152, step time: 50.57096481323242ms\r\n",,terminal_output +660,1139790,"TERMINAL",0,0,"Step 4, loss: 0.2147761434316635, step time: 50.531625747680664ms\r\nStep 5, loss: 0.2116047590970993, step time: 49.07846450805664ms\r\nStep 6, loss: 0.20854488015174866, step time: 48.74777793884277ms\r\nStep 7, loss: 0.20581576228141785, step time: 48.25401306152344ms\r\n",,terminal_output +661,1139891,"TERMINAL",0,0,"Step 8, loss: 0.2033093422651291, step time: 48.099517822265625ms\r\nStep 9, loss: 0.2007577270269394, step time: 48.25139045715332ms\r\n",,terminal_output +662,1140695,"TERMINAL",0,0,"Step 10, loss: 0.19851168990135193, step time: 49.56221580505371ms\r\nStep 11, loss: 0.19617383182048798, step time: 48.66170883178711ms\r\n",,terminal_output +663,1140795,"TERMINAL",0,0,"Step 12, loss: 0.19404467940330505, step time: 48.393964767456055ms\r\nStep 13, loss: 0.19187328219413757, step time: 48.616647720336914ms\r\n",,terminal_output +664,1140847,"TERMINAL",0,0,"Step 14, loss: 0.18987049162387848, step time: 48.28047752380371ms\r\n",,terminal_output +665,1140899,"TERMINAL",0,0,"Step 15, loss: 0.18780189752578735, step time: 48.294782638549805ms\r\n",,terminal_output +666,1141100,"TERMINAL",0,0,"Step 16, loss: 0.1859811544418335, step time: 48.09260368347168ms\r\nStep 17, loss: 0.1842631846666336, step time: 48.24066162109375ms\r\nStep 18, loss: 0.1826377660036087, step time: 48.32100868225098ms\r\nStep 19, loss: 0.18085257709026337, step time: 48.25425148010254ms\r\n",,terminal_output +667,1141374,"TERMINAL",0,0,"Step 20, loss: 0.17928507924079895, step time: 49.29542541503906ms\r\nStep 21, loss: 0.17767782509326935, step time: 48.53558540344238ms\r\nStep 22, loss: 0.17619723081588745, step time: 48.42019081115723ms\r\n",,terminal_output +668,1141475,"TERMINAL",0,0,"Step 23, loss: 0.17467747628688812, step time: 48.22421073913574ms\r\nStep 24, loss: 0.17312972247600555, step time: 48.16746711730957ms\r\n",,terminal_output +669,1141724,"TERMINAL",0,0,"Step 25, loss: 0.17165374755859375, step time: 48.19846153259277ms\r\nStep 26, loss: 0.17034600675106049, step time: 48.27237129211426ms\r\nStep 27, loss: 0.16892999410629272, step time: 48.62570762634277ms\r\nStep 28, loss: 0.16756761074066162, step time: 48.035621643066406ms\r\nStep 29, loss: 0.1661963015794754, step time: 48.21372032165527ms\r\n",,terminal_output +670,1141896,"TERMINAL",0,0,"Step 30, loss: 0.16494277119636536, step time: 49.306631088256836ms\r\n",,terminal_output +671,1141949,"TERMINAL",0,0,"Step 31, loss: 0.16365596652030945, step time: 48.6299991607666ms\r\n",,terminal_output +672,1142046,"TERMINAL",0,0,"Step 32, loss: 0.16249655187129974, step time: 48.61855506896973ms\r\nStep 33, loss: 0.16120009124279022, step time: 48.310279846191406ms\r\n",,terminal_output +673,1142147,"TERMINAL",0,0,"Step 34, loss: 0.16007155179977417, step time: 48.25901985168457ms\r\nStep 35, loss: 0.15878090262413025, step time: 48.39801788330078ms\r\n",,terminal_output +674,1142346,"TERMINAL",0,0,"Step 36, loss: 0.15763361752033234, step time: 48.25305938720703ms\r\nStep 37, loss: 0.1564590185880661, step time: 48.352718353271484ms\r\nStep 38, loss: 0.15543945133686066, step time: 48.21133613586426ms\r\nStep 39, loss: 0.15439952909946442, step time: 48.277854919433594ms\r\n",,terminal_output +675,1142575,"TERMINAL",0,0,"Step 40, loss: 0.15315622091293335, step time: 49.272775650024414ms\r\nStep 41, loss: 0.15220825374126434, step time: 48.54297637939453ms\r\n",,terminal_output +676,1142722,"TERMINAL",0,0,"Step 42, loss: 0.15134300291538239, step time: 48.703670501708984ms\r\nStep 43, loss: 0.15032324194908142, step time: 48.316001892089844ms\r\nStep 44, loss: 0.149506613612175, step time: 48.36773872375488ms\r\n",,terminal_output +677,1142821,"TERMINAL",0,0,"Step 45, loss: 0.14860518276691437, step time: 48.094749450683594ms\r\nStep 46, loss: 0.14767403900623322, step time: 48.261165618896484ms\r\n",,terminal_output +678,1142973,"TERMINAL",0,0,"Step 47, loss: 0.1468399316072464, step time: 48.30765724182129ms\r\nStep 48, loss: 0.14600539207458496, step time: 48.22206497192383ms\r\nStep 49, loss: 0.14503760635852814, step time: 48.39611053466797ms\r\n",,terminal_output +679,1143246,"TERMINAL",0,0,"Step 50, loss: 0.1442810297012329, step time: 49.155235290527344ms\r\nStep 51, loss: 0.14335674047470093, step time: 48.76852035522461ms\r\nStep 52, loss: 0.14240196347236633, step time: 48.488616943359375ms\r\n",,terminal_output +680,1143349,"TERMINAL",0,0,"Step 53, loss: 0.14156025648117065, step time: 48.29525947570801ms\r\nStep 54, loss: 0.14068448543548584, step time: 48.43616485595703ms\r\n",,terminal_output +681,1143596,"TERMINAL",0,0,"Step 55, loss: 0.13976573944091797, step time: 48.24948310852051ms\r\nStep 56, loss: 0.13888418674468994, step time: 48.241376876831055ms\r\nStep 57, loss: 0.13811372220516205, step time: 48.236846923828125ms\r\nStep 58, loss: 0.13715946674346924, step time: 48.2172966003418ms\r\nStep 59, loss: 0.13630743324756622, step time: 48.35391044616699ms\r\n",,terminal_output +682,1143775,"TERMINAL",0,0,"Step 60, loss: 0.13544805347919464, step time: 49.73959922790527ms\r\n",,terminal_output +683,1143924,"TERMINAL",0,0,"Step 61, loss: 0.13468116521835327, step time: 52.21271514892578ms\r\nStep 62, loss: 0.1337975114583969, step time: 48.66600036621094ms\r\nStep 63, loss: 0.13309070467948914, step time: 48.11453819274902ms\r\n",,terminal_output +684,1144127,"TERMINAL",0,0,"Step 64, loss: 0.13232079148292542, step time: 48.374176025390625ms\r\nStep 65, loss: 0.13143107295036316, step time: 48.17509651184082ms\r\nStep 66, loss: 0.13057038187980652, step time: 48.310041427612305ms\r\nStep 67, loss: 0.12974940240383148, step time: 48.227787017822266ms\r\n",,terminal_output +685,1144228,"TERMINAL",0,0,"Step 68, loss: 0.12883210182189941, step time: 48.37393760681152ms\r\nStep 69, loss: 0.12799714505672455, step time: 48.35200309753418ms\r\n",,terminal_output +686,1144452,"TERMINAL",0,0,"Step 70, loss: 0.12717531621456146, step time: 49.127817153930664ms\r\nStep 71, loss: 0.12642090022563934, step time: 48.70462417602539ms\r\n",,terminal_output +687,1144601,"TERMINAL",0,0,"Step 72, loss: 0.12560580670833588, step time: 48.22230339050293ms\r\nStep 73, loss: 0.12476280331611633, step time: 48.45380783081055ms\r\nStep 74, loss: 0.12407097965478897, step time: 48.215627670288086ms\r\n",,terminal_output +688,1144851,"TERMINAL",0,0,"Step 75, loss: 0.1233859434723854, step time: 48.12121391296387ms\r\nStep 76, loss: 0.12275543063879013, step time: 48.40588569641113ms\r\nStep 77, loss: 0.12196243554353714, step time: 48.16579818725586ms\r\nStep 78, loss: 0.12130146473646164, step time: 49.008846282958984ms\r\nStep 79, loss: 0.12060396373271942, step time: 48.2635498046875ms\r\n",,terminal_output +689,1145025,"TERMINAL",0,0,"Step 80, loss: 0.11992035806179047, step time: 49.05271530151367ms\r\n",,terminal_output +690,1145172,"TERMINAL",0,0,"Step 81, loss: 0.11925981938838959, step time: 49.17168617248535ms\r\nStep 82, loss: 0.11857131123542786, step time: 48.26545715332031ms\r\nStep 83, loss: 0.11796504259109497, step time: 48.502206802368164ms\r\n",,terminal_output +691,1145379,"TERMINAL",0,0,"Step 84, loss: 0.11743718385696411, step time: 48.51245880126953ms\r\nStep 85, loss: 0.11669611185789108, step time: 48.42638969421387ms\r\nStep 86, loss: 0.11613167822360992, step time: 48.51245880126953ms\r\nStep 87, loss: 0.11553380638360977, step time: 48.34175109863281ms\r\n",,terminal_output +692,1145475,"TERMINAL",0,0,"Step 88, loss: 0.11495697498321533, step time: 48.36869239807129ms\r\nStep 89, loss: 0.11442873626947403, step time: 48.2487678527832ms\r\n",,terminal_output +693,1145850,"TERMINAL",0,0,"Step 90, loss: 0.11386150121688843, step time: 49.219608306884766ms\r\nStep 91, loss: 0.113355353474617, step time: 48.57182502746582ms\r\nStep 92, loss: 0.11278309673070908, step time: 48.246145248413086ms\r\nStep 93, loss: 0.11220993846654892, step time: 48.467159271240234ms\r\nStep 94, loss: 0.1116456538438797, step time: 48.17533493041992ms\r\n",,terminal_output +694,1145901,"TERMINAL",0,0,"Step 95, loss: 0.11118030548095703, step time: 48.27284812927246ms\r\n",,terminal_output +695,1146101,"TERMINAL",0,0,"Step 96, loss: 0.11055561900138855, step time: 48.27713966369629ms\r\nStep 97, loss: 0.10996095836162567, step time: 48.30574989318848ms\r\nStep 98, loss: 0.10936656594276428, step time: 48.41756820678711ms\r\nStep 99, loss: 0.10877495259046555, step time: 48.235416412353516ms\r\n",,terminal_output +696,1146327,"TERMINAL",0,0,"Step 100, loss: 0.10819685459136963, step time: 49.37624931335449ms\r\nStep 101, loss: 0.10764206200838089, step time: 48.6602783203125ms\r\n",,terminal_output +697,1146477,"TERMINAL",0,0,"Step 102, loss: 0.10705095529556274, step time: 48.17914962768555ms\r\nStep 103, loss: 0.10665144771337509, step time: 48.38085174560547ms\r\nStep 104, loss: 0.10608810186386108, step time: 48.31194877624512ms\r\n",,terminal_output +698,1146727,"TERMINAL",0,0,"Step 105, loss: 0.10568448901176453, step time: 48.33173751831055ms\r\nStep 106, loss: 0.10507740080356598, step time: 48.180341720581055ms\r\nStep 107, loss: 0.10465841740369797, step time: 48.32196235656738ms\r\nStep 108, loss: 0.10413363575935364, step time: 48.16460609436035ms\r\nStep 109, loss: 0.10361927002668381, step time: 48.267364501953125ms\r\n",,terminal_output +699,1146902,"TERMINAL",0,0,"Step 110, loss: 0.10319382697343826, step time: 49.67546463012695ms\r\n",,terminal_output +700,1147050,"TERMINAL",0,0,"Step 111, loss: 0.10276873409748077, step time: 48.65455627441406ms\r\nStep 112, loss: 0.10226455330848694, step time: 48.413991928100586ms\r\nStep 113, loss: 0.10178731381893158, step time: 48.39205741882324ms\r\n",,terminal_output +701,1147101,"TERMINAL",0,0,"Step 114, loss: 0.10129542648792267, step time: 48.32267761230469ms\r\n",,terminal_output +702,1147153,"TERMINAL",0,0,"Step 115, loss: 0.10072394460439682, step time: 48.65121841430664ms\r\n",,terminal_output +703,1147253,"TERMINAL",0,0,"Step 116, loss: 0.1003187894821167, step time: 48.288583755493164ms\r\nStep 117, loss: 0.09988361597061157, step time: 48.55227470397949ms\r\n",,terminal_output +704,1147355,"TERMINAL",0,0,"Step 118, loss: 0.0993257388472557, step time: 48.32887649536133ms\r\nStep 119, loss: 0.09882426261901855, step time: 48.33626747131348ms\r\n",,terminal_output +705,1147731,"TERMINAL",0,0,"Step 120, loss: 0.09837417304515839, step time: 49.399614334106445ms\r\nStep 121, loss: 0.09783116728067398, step time: 48.6602783203125ms\r\nStep 122, loss: 0.09730947017669678, step time: 48.55084419250488ms\r\nStep 123, loss: 0.09676717221736908, step time: 48.3705997467041ms\r\nStep 124, loss: 0.09622417390346527, step time: 48.25854301452637ms\r\n",,terminal_output +706,1147981,"TERMINAL",0,0,"Step 125, loss: 0.09569689631462097, step time: 48.227548599243164ms\r\nStep 126, loss: 0.0952029824256897, step time: 48.26545715332031ms\r\nStep 127, loss: 0.09465636312961578, step time: 48.416852951049805ms\r\nStep 128, loss: 0.09412790834903717, step time: 48.12932014465332ms\r\nStep 129, loss: 0.0936170443892479, step time: 48.375844955444336ms\r\n",,terminal_output +707,1148153,"TERMINAL",0,0,"Step 130, loss: 0.093131884932518, step time: 49.25131797790527ms\r\n",,terminal_output +708,1148354,"TERMINAL",0,0,"Step 131, loss: 0.09257060289382935, step time: 48.7973690032959ms\r\nStep 132, loss: 0.0920131504535675, step time: 48.58708381652832ms\r\nStep 133, loss: 0.09145741909742355, step time: 48.545122146606445ms\r\nStep 134, loss: 0.0909249410033226, step time: 48.39038848876953ms\r\n",,terminal_output +709,1148407,"TERMINAL",0,0,"Step 135, loss: 0.09030286222696304, step time: 48.3551025390625ms\r\n",,terminal_output +710,1148459,"TERMINAL",0,0,"Step 136, loss: 0.08976317942142487, step time: 48.25997352600098ms\r\n",,terminal_output +711,1148610,"TERMINAL",0,0,"Step 137, loss: 0.0892477035522461, step time: 48.37822914123535ms\r\nStep 138, loss: 0.08866812288761139, step time: 48.30431938171387ms\r\nStep 139, loss: 0.0880734845995903, step time: 48.38824272155762ms\r\n",,terminal_output +712,1148930,"TERMINAL",0,0,"Step 140, loss: 0.0875922441482544, step time: 49.527645111083984ms\r\nStep 141, loss: 0.08698724210262299, step time: 48.86651039123535ms\r\nStep 142, loss: 0.0864284560084343, step time: 48.56228828430176ms\r\nStep 143, loss: 0.08598388731479645, step time: 48.454999923706055ms\r\n",,terminal_output +713,1148983,"TERMINAL",0,0,"Step 144, loss: 0.08545909821987152, step time: 49.10683631896973ms\r\n",,terminal_output +714,1149038,"TERMINAL",0,0,"Step 145, loss: 0.0847507044672966, step time: 49.45039749145508ms\r\n",,terminal_output +715,1149089,"TERMINAL",0,0,"Step 146, loss: 0.08411858975887299, step time: 49.73936080932617ms\r\n",,terminal_output +716,1149139,"TERMINAL",0,0,"Step 147, loss: 0.0835011824965477, step time: 49.61681365966797ms\r\n",,terminal_output +717,1149241,"TERMINAL",0,0,"Step 148, loss: 0.08299552649259567, step time: 49.53289031982422ms\r\nStep 149, loss: 0.08232547342777252, step time: 48.88153076171875ms\r\n",,terminal_output +718,1149618,"TERMINAL",0,0,"Step 150, loss: 0.08171946555376053, step time: 48.98548126220703ms\r\nStep 151, loss: 0.08112937211990356, step time: 48.65670204162598ms\r\nStep 152, loss: 0.0805525928735733, step time: 48.24471473693848ms\r\nStep 153, loss: 0.08003890514373779, step time: 48.270225524902344ms\r\nStep 154, loss: 0.07941573113203049, step time: 48.09427261352539ms\r\n",,terminal_output +719,1149864,"TERMINAL",0,0,"Step 155, loss: 0.07884304970502853, step time: 48.2175350189209ms\r\nStep 156, loss: 0.07828739285469055, step time: 48.26045036315918ms\r\nStep 157, loss: 0.07778231799602509, step time: 48.24638366699219ms\r\nStep 158, loss: 0.07719840854406357, step time: 48.14004898071289ms\r\nStep 159, loss: 0.07671979069709778, step time: 48.47073554992676ms\r\n",,terminal_output +720,1150237,"TERMINAL",0,0,"Step 160, loss: 0.07620523869991302, step time: 49.1943359375ms\r\nStep 161, loss: 0.0755499079823494, step time: 48.63595962524414ms\r\nStep 162, loss: 0.07505421340465546, step time: 48.3548641204834ms\r\nStep 163, loss: 0.07471846044063568, step time: 48.364877700805664ms\r\nStep 164, loss: 0.07420185953378677, step time: 48.378705978393555ms\r\n",,terminal_output +721,1150386,"TERMINAL",0,0,"Step 165, loss: 0.07378396391868591, step time: 48.250675201416016ms\r\nStep 166, loss: 0.07334044575691223, step time: 48.074960708618164ms\r\nStep 167, loss: 0.07295762747526169, step time: 48.271894454956055ms\r\n",,terminal_output +722,1150487,"TERMINAL",0,0,"Step 168, loss: 0.07263373583555222, step time: 48.19941520690918ms\r\nStep 169, loss: 0.07218320667743683, step time: 48.32053184509277ms\r\n",,terminal_output +723,1150665,"TERMINAL",0,0,"Step 170, loss: 0.0718797817826271, step time: 49.59750175476074ms\r\n",,terminal_output +724,1150717,"TERMINAL",0,0,"Step 171, loss: 0.07154474407434464, step time: 49.712419509887695ms\r\n",,terminal_output +725,1150818,"TERMINAL",0,0,"Step 172, loss: 0.07122897356748581, step time: 49.9725341796875ms\r\nStep 173, loss: 0.07092897593975067, step time: 49.96085166931152ms\r\n",,terminal_output +726,1150872,"TERMINAL",0,0,"Step 174, loss: 0.07053624093532562, step time: 49.82447624206543ms\r\n",,terminal_output +727,1150973,"TERMINAL",0,0,"Step 175, loss: 0.07031247764825821, step time: 49.38030242919922ms\r\nStep 176, loss: 0.07005330920219421, step time: 49.03745651245117ms\r\n",,terminal_output +728,1151076,"TERMINAL",0,0,"Step 177, loss: 0.06965383887290955, step time: 49.037933349609375ms\r\nStep 178, loss: 0.0694020614027977, step time: 49.06201362609863ms\r\n",,terminal_output +729,1151127,"TERMINAL",0,0,"Step 179, loss: 0.06911937892436981, step time: 49.50284957885742ms\r\n",,terminal_output +730,1151302,"TERMINAL",0,0,"Step 180, loss: 0.06878954917192459, step time: 49.86429214477539ms\r\n",,terminal_output +731,1151703,"TERMINAL",0,0,"Step 181, loss: 0.06855770200490952, step time: 49.55935478210449ms\r\nStep 182, loss: 0.06827405840158463, step time: 49.63946342468262ms\r\nStep 183, loss: 0.06801996380090714, step time: 48.82955551147461ms\r\nStep 184, loss: 0.06765516847372055, step time: 48.375844955444336ms\r\nStep 185, loss: 0.06742437183856964, step time: 48.16603660583496ms\r\nStep 186, loss: 0.06713826954364777, step time: 48.398733139038086ms\r\nStep 187, loss: 0.06693708896636963, step time: 48.25925827026367ms\r\nStep 188, loss: 0.06676479429006577, step time: 48.49529266357422ms\r\n",,terminal_output +732,1151756,"TERMINAL",0,0,"Step 189, loss: 0.0664636418223381, step time: 48.581600189208984ms\r\n",,terminal_output +733,1152084,"TERMINAL",0,0,"Step 190, loss: 0.06616853177547455, step time: 52.75440216064453ms\r\nStep 191, loss: 0.06588675826787949, step time: 48.53534698486328ms\r\nStep 192, loss: 0.06559379398822784, step time: 48.28453063964844ms\r\nStep 193, loss: 0.06528904289007187, step time: 48.43449592590332ms\r\n",,terminal_output +734,1152138,"TERMINAL",0,0,"Step 194, loss: 0.06492213159799576, step time: 48.528194427490234ms\r\n",,terminal_output +735,1152288,"TERMINAL",0,0,"Step 195, loss: 0.0646134614944458, step time: 48.632144927978516ms\r\nStep 196, loss: 0.0643014907836914, step time: 48.43306541442871ms\r\nStep 197, loss: 0.06391751766204834, step time: 48.42424392700195ms\r\n",,terminal_output +736,1152389,"TERMINAL",0,0,"Step 198, loss: 0.0635136067867279, step time: 48.36726188659668ms\r\nStep 199, loss: 0.06320620328187943, step time: 48.293113708496094ms\r\n",,terminal_output +737,1152772,"TERMINAL",0,0,"Step 200, loss: 0.062922403216362, step time: 52.59513854980469ms\r\nStep 201, loss: 0.06265262514352798, step time: 48.53653907775879ms\r\nStep 202, loss: 0.062412213534116745, step time: 48.41113090515137ms\r\nStep 203, loss: 0.06205923482775688, step time: 48.407554626464844ms\r\nStep 204, loss: 0.06171907112002373, step time: 48.387765884399414ms\r\n",,terminal_output +738,1152922,"TERMINAL",0,0,"Step 205, loss: 0.06145671010017395, step time: 48.571109771728516ms\r\nStep 206, loss: 0.06109325960278511, step time: 48.323869705200195ms\r\nStep 207, loss: 0.060917340219020844, step time: 48.32792282104492ms\r\n",,terminal_output +739,1153021,"TERMINAL",0,0,"Step 208, loss: 0.06061650440096855, step time: 48.28023910522461ms\r\nStep 209, loss: 0.060247570276260376, step time: 48.3400821685791ms\r\n",,terminal_output +740,1153245,"TERMINAL",0,0,"Step 210, loss: 0.06005280092358589, step time: 49.71480369567871ms\r\nStep 211, loss: 0.059703290462493896, step time: 48.595428466796875ms\r\n",,terminal_output +741,1153347,"TERMINAL",0,0,"Step 212, loss: 0.05946759507060051, step time: 48.55036735534668ms\r\nStep 213, loss: 0.05923299491405487, step time: 48.236846923828125ms\r\n",,terminal_output +742,1153453,"TERMINAL",0,0,"Step 214, loss: 0.05902649462223053, step time: 48.256635665893555ms\r\n",,terminal_output +743,1153650,"TERMINAL",0,0,"Step 215, loss: 0.05877019464969635, step time: 48.363447189331055ms\r\nStep 216, loss: 0.05852637439966202, step time: 48.32911491394043ms\r\nStep 217, loss: 0.05843657627701759, step time: 48.39634895324707ms\r\nStep 218, loss: 0.058246586471796036, step time: 48.22802543640137ms\r\nStep 219, loss: 0.05791623145341873, step time: 48.232078552246094ms\r\n",,terminal_output +744,1153828,"TERMINAL",0,0,"Step 220, loss: 0.057660751044750214, step time: 49.35932159423828ms\r\n",,terminal_output +745,1153929,"TERMINAL",0,0,"Step 221, loss: 0.057485997676849365, step time: 48.71010780334473ms\r\nStep 222, loss: 0.0572463795542717, step time: 48.74849319458008ms\r\n",,terminal_output +746,1154031,"TERMINAL",0,0,"Step 223, loss: 0.05690445750951767, step time: 48.381805419921875ms\r\nStep 224, loss: 0.05674152448773384, step time: 48.42424392700195ms\r\n",,terminal_output +747,1154085,"TERMINAL",0,0,"Step 225, loss: 0.056398820132017136, step time: 48.99859428405762ms\r\n",,terminal_output +748,1154287,"TERMINAL",0,0,"Step 226, loss: 0.05628212168812752, step time: 48.41923713684082ms\r\nStep 227, loss: 0.056071873754262924, step time: 48.480987548828125ms\r\nStep 228, loss: 0.05581368878483772, step time: 48.267364501953125ms\r\nStep 229, loss: 0.055564600974321365, step time: 48.42185974121094ms\r\n",,terminal_output +749,1154463,"TERMINAL",0,0,"Step 230, loss: 0.05546921491622925, step time: 50.11343955993652ms\r\n",,terminal_output +750,1154562,"TERMINAL",0,0,"Step 231, loss: 0.05520472675561905, step time: 48.65455627441406ms\r\nStep 232, loss: 0.05501754954457283, step time: 48.38395118713379ms\r\n",,terminal_output +751,1154664,"TERMINAL",0,0,"Step 233, loss: 0.05474761873483658, step time: 50.71711540222168ms\r\nStep 234, loss: 0.05455959960818291, step time: 48.48432540893555ms\r\n",,terminal_output +752,1154718,"TERMINAL",0,0,"Step 235, loss: 0.054240982979536057, step time: 48.19011688232422ms\r\n",,terminal_output +753,1154817,"TERMINAL",0,0,"Step 236, loss: 0.05398983508348465, step time: 48.454999923706055ms\r\nStep 237, loss: 0.05386277288198471, step time: 48.45023155212402ms\r\n",,terminal_output +754,1154918,"TERMINAL",0,0,"Step 238, loss: 0.05375286936759949, step time: 48.215627670288086ms\r\nStep 239, loss: 0.053512442857027054, step time: 48.41017723083496ms\r\n",,terminal_output +755,1155195,"TERMINAL",0,0,"Step 240, loss: 0.053247515112161636, step time: 52.36411094665527ms\r\nStep 241, loss: 0.0529879592359066, step time: 49.05056953430176ms\r\nStep 242, loss: 0.05283380299806595, step time: 48.4461784362793ms\r\n",,terminal_output +756,1155398,"TERMINAL",0,0,"Step 243, loss: 0.052535220980644226, step time: 48.05469512939453ms\r\nStep 244, loss: 0.05238891765475273, step time: 48.42019081115723ms\r\nStep 245, loss: 0.05216652527451515, step time: 48.31576347351074ms\r\nStep 246, loss: 0.05190477892756462, step time: 48.53630065917969ms\r\n",,terminal_output +757,1155548,"TERMINAL",0,0,"Step 247, loss: 0.05172329768538475, step time: 48.24185371398926ms\r\nStep 248, loss: 0.05149150639772415, step time: 48.28214645385742ms\r\nStep 249, loss: 0.051262255758047104, step time: 48.32005500793457ms\r\n",,terminal_output +758,1155919,"TERMINAL",0,0,"Step 250, loss: 0.05107464641332626, step time: 49.24201965332031ms\r\nStep 251, loss: 0.05087462067604065, step time: 48.75683784484863ms\r\nStep 252, loss: 0.0507882684469223, step time: 48.31385612487793ms\r\nStep 253, loss: 0.050555065274238586, step time: 48.23470115661621ms\r\nStep 254, loss: 0.05031624436378479, step time: 48.24328422546387ms\r\n",,terminal_output +759,1155972,"TERMINAL",0,0,"Step 255, loss: 0.05013534799218178, step time: 48.13075065612793ms\r\n",,terminal_output +760,1156071,"TERMINAL",0,0,"Step 256, loss: 0.05004609003663063, step time: 48.45166206359863ms\r\nStep 257, loss: 0.049764301627874374, step time: 48.23756217956543ms\r\n",,terminal_output +761,1156173,"TERMINAL",0,0,"Step 258, loss: 0.04966391250491142, step time: 48.39777946472168ms\r\nStep 259, loss: 0.04952549561858177, step time: 48.28524589538574ms\r\n",,terminal_output +762,1156546,"TERMINAL",0,0,"Step 260, loss: 0.04947811737656593, step time: 49.51930046081543ms\r\nStep 261, loss: 0.04913546144962311, step time: 48.8131046295166ms\r\nStep 262, loss: 0.04891382157802582, step time: 48.27284812927246ms\r\nStep 263, loss: 0.048680104315280914, step time: 48.34556579589844ms\r\nStep 264, loss: 0.04855593666434288, step time: 48.3555793762207ms\r\n",,terminal_output +763,1156697,"TERMINAL",0,0,"Step 265, loss: 0.04839629679918289, step time: 48.17986488342285ms\r\nStep 266, loss: 0.04819203168153763, step time: 48.39777946472168ms\r\nStep 267, loss: 0.04796464368700981, step time: 48.307180404663086ms\r\n",,terminal_output +764,1156796,"TERMINAL",0,0,"Step 268, loss: 0.04770112410187721, step time: 49.06725883483887ms\r\nStep 269, loss: 0.04746721684932709, step time: 48.659324645996094ms\r\n",,terminal_output +765,1157177,"TERMINAL",0,0,"Step 270, loss: 0.04728131368756294, step time: 52.07061767578125ms\r\nStep 271, loss: 0.04706062003970146, step time: 48.65074157714844ms\r\nStep 272, loss: 0.04688991233706474, step time: 48.42042922973633ms\r\nStep 273, loss: 0.046642743051052094, step time: 48.4616756439209ms\r\nStep 274, loss: 0.04649374634027481, step time: 48.32100868225098ms\r\n",,terminal_output +766,1157231,"TERMINAL",0,0,"Step 275, loss: 0.046285875141620636, step time: 50.365447998046875ms\r\n",,terminal_output +767,1157382,"TERMINAL",0,0,"Step 276, loss: 0.046161163598299026, step time: 48.33388328552246ms\r\nStep 277, loss: 0.04584567993879318, step time: 48.218727111816406ms\r\nStep 278, loss: 0.04574739560484886, step time: 48.410892486572266ms\r\n",,terminal_output +768,1157432,"TERMINAL",0,0,"Step 279, loss: 0.04551123082637787, step time: 48.15673828125ms\r\n",,terminal_output +769,1157809,"TERMINAL",0,0,"Step 280, loss: 0.045370884239673615, step time: 49.42512512207031ms\r\nStep 281, loss: 0.045172739773988724, step time: 48.636674880981445ms\r\nStep 282, loss: 0.04487394914031029, step time: 48.49958419799805ms\r\nStep 283, loss: 0.04476284608244896, step time: 48.598527908325195ms\r\nStep 284, loss: 0.044477444142103195, step time: 48.392295837402344ms\r\n",,terminal_output +770,1157909,"TERMINAL",0,0,"Step 285, loss: 0.04437502101063728, step time: 48.31552505493164ms\r\nStep 286, loss: 0.044208236038684845, step time: 48.41136932373047ms\r\n",,terminal_output +771,1157961,"TERMINAL",0,0,"Step 287, loss: 0.04403242468833923, step time: 48.26235771179199ms\r\n",,terminal_output +772,1158063,"TERMINAL",0,0,"Step 288, loss: 0.04388779401779175, step time: 48.397064208984375ms\r\nStep 289, loss: 0.04364412650465965, step time: 48.25544357299805ms\r\n",,terminal_output +773,1158337,"TERMINAL",0,0,"Step 290, loss: 0.04357483610510826, step time: 49.468278884887695ms\r\nStep 291, loss: 0.04336655139923096, step time: 48.55608940124512ms\r\nStep 292, loss: 0.04319630563259125, step time: 48.62093925476074ms\r\n",,terminal_output +774,1158437,"TERMINAL",0,0,"Step 293, loss: 0.04307485744357109, step time: 48.29549789428711ms\r\nStep 294, loss: 0.04284770414233208, step time: 48.400163650512695ms\r\n",,terminal_output +775,1158688,"TERMINAL",0,0,"Step 295, loss: 0.04282405972480774, step time: 48.24471473693848ms\r\nStep 296, loss: 0.04268390312790871, step time: 48.232078552246094ms\r\nStep 297, loss: 0.04250737652182579, step time: 48.45404624938965ms\r\nStep 298, loss: 0.04241875931620598, step time: 48.29001426696777ms\r\nStep 299, loss: 0.04222872480750084, step time: 48.484086990356445ms\r\n",,terminal_output +776,1158866,"TERMINAL",0,0,"Step 300, loss: 0.042070306837558746, step time: 49.34835433959961ms\r\n",,terminal_output +777,1158919,"TERMINAL",0,0,"Step 301, loss: 0.04193919897079468, step time: 50.32491683959961ms\r\n",,terminal_output +778,1159016,"TERMINAL",0,0,"Step 302, loss: 0.041786402463912964, step time: 48.96283149719238ms\r\nStep 303, loss: 0.04165100306272507, step time: 48.464059829711914ms\r\n",,terminal_output +779,1159069,"TERMINAL",0,0,"Step 304, loss: 0.041560377925634384, step time: 48.50196838378906ms\r\n",,terminal_output +780,1159169,"TERMINAL",0,0,"Step 305, loss: 0.04142938554286957, step time: 48.3853816986084ms\r\nStep 306, loss: 0.04127923399209976, step time: 48.41136932373047ms\r\n",,terminal_output +781,1159221,"TERMINAL",0,0,"Step 307, loss: 0.041171371936798096, step time: 49.26013946533203ms\r\n",,terminal_output +782,1159273,"TERMINAL",0,0,"Step 308, loss: 0.04104216396808624, step time: 49.8812198638916ms\r\n",,terminal_output +783,1159325,"TERMINAL",0,0,"Step 309, loss: 0.0409182645380497, step time: 50.252437591552734ms\r\n",,terminal_output +784,1159607,"TERMINAL",0,0,"Step 310, loss: 0.04078531637787819, step time: 53.09796333312988ms\r\nStep 311, loss: 0.04068553075194359, step time: 49.01123046875ms\r\nStep 312, loss: 0.04056673124432564, step time: 48.345088958740234ms\r\n",,terminal_output +785,1159707,"TERMINAL",0,0,"Step 313, loss: 0.040473032742738724, step time: 48.415422439575195ms\r\nStep 314, loss: 0.04030976444482803, step time: 48.311710357666016ms\r\n",,terminal_output +786,1159855,"TERMINAL",0,0,"Step 315, loss: 0.04021560400724411, step time: 48.120737075805664ms\r\nStep 316, loss: 0.040134247392416, step time: 48.18248748779297ms\r\nStep 317, loss: 0.04003464803099632, step time: 48.27594757080078ms\r\n",,terminal_output +787,1159954,"TERMINAL",0,0,"Step 318, loss: 0.03999800607562065, step time: 48.552513122558594ms\r\nStep 319, loss: 0.03991019353270531, step time: 48.19655418395996ms\r\n",,terminal_output +788,1160202,"TERMINAL",0,0,"Step 320, loss: 0.03975868970155716, step time: 49.2401123046875ms\r\n^CTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/train_tokenizer_single_sample.py"", line 240, in \r\n jax.block_until_ready(loss)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3117, in block_until_ready\r\n try_to_block(arrays[0])\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3100, in try_to_block\r\n return x.block_until_ready()\r\nKeyboardInterrupt\r\nTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/train_tokenizer_single_sample.py"", line 240, in \r\n jax.block_until_ready(loss)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3117, in block_until_ready\r\n try_to_block(arrays[0])\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3100, in try_to_block\r\n return x.block_until_ready()\r\nKeyboardInterrupt\r\n",,terminal_output +789,1161483,"TERMINAL",0,0,"wandb: \r\nwandb: 🚀 View run interactive at: https://wandb.ai/instant-uv/jafar/runs/dtxtnkas\r\nwandb: Find logs at: ../../../../../hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/wandb/run-20250627_174120-dtxtnkas/logs\r\n",,terminal_output +790,1162837,"TERMINAL",0,0,"]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +791,1166873,"notes.md",0,0,"",markdown,tab +792,1169110,"notes.md",9643,0,"",markdown,selection_mouse +793,1170871,"notes.md",9979,0,"",markdown,selection_mouse +794,1171305,"notes.md",9979,0,"\n",markdown,content +795,1171541,"notes.md",9980,0,"\n",markdown,content +796,1171653,"notes.md",9981,0,"\n",markdown,content +797,1171791,"notes.md",9982,0,"\n",markdown,content +798,1172219,"notes.md",9982,0,"",markdown,selection_command +799,1172635,"notes.md",9982,0,"{'encoder': 156736, 'vq': 32768, 'decoder': 156720, 'total': 346224}",markdown,content +800,1172640,"notes.md",10049,0,"",markdown,selection_command +801,1174353,"notes.md",10048,0,"",markdown,selection_command +802,1174489,"notes.md",10047,0,"",markdown,selection_command +803,1174636,"notes.md",10046,0,"",markdown,selection_command +804,1175079,"notes.md",10046,0,".",markdown,content +805,1175081,"notes.md",10047,0,"",markdown,selection_keyboard +806,1175325,"notes.md",10046,0,"",markdown,selection_command +807,1175849,"notes.md",9982,70,"",markdown,content +808,1175958,"notes.md",9981,0,"",markdown,selection_command +809,1176173,"notes.md",9980,0,"",markdown,selection_command +810,1176199,"notes.md",9979,0,"",markdown,selection_command +811,1176233,"notes.md",9912,0,"",markdown,selection_command +812,1176261,"notes.md",9857,0,"",markdown,selection_command +813,1176296,"notes.md",9812,0,"",markdown,selection_command +814,1176330,"notes.md",9768,0,"",markdown,selection_command +815,1176363,"notes.md",9724,0,"",markdown,selection_command +816,1176396,"notes.md",9653,0,"",markdown,selection_command +817,1176430,"notes.md",9644,0,"",markdown,selection_command +818,1176790,"notes.md",9643,0,"",markdown,selection_command +819,1176973,"notes.md",9643,0,"\n",markdown,content +820,1177199,"notes.md",9644,0,"\n",markdown,content +821,1177291,"notes.md",9645,0,"\n",markdown,content +822,1177411,"notes.md",9646,0,"\n",markdown,content +823,1177646,"notes.md",9646,0,"",markdown,selection_command +824,1177848,"notes.md",9646,0,"\n{'encoder': 156736, 'vq': 32768, 'decoder': 156720, 'total': 346.224}",markdown,content +825,1177851,"notes.md",9647,0,"",markdown,selection_command +826,1178370,"notes.md",9646,0,"",markdown,selection_command +827,1178562,"notes.md",9645,0,"",markdown,selection_command +828,1179026,"notes.md",9646,0,"",markdown,selection_command +829,1179160,"notes.md",9645,0,"",markdown,selection_command +830,1179410,"notes.md",9644,0,"",markdown,selection_command +831,1179436,"notes.md",9643,0,"",markdown,selection_command +832,1179468,"notes.md",9573,0,"",markdown,selection_command +833,1179718,"notes.md",9572,0,"",markdown,selection_command +834,1179980,"notes.md",9572,1,"\n",markdown,selection_command +835,1179987,"notes.md",9558,14,"num_heads = 8\n",markdown,selection_command +836,1180252,"notes.md",9543,29,"num_blocks = 8\nnum_heads = 8\n",markdown,selection_command +837,1180275,"notes.md",9528,44,"patch_size = 4\nnum_blocks = 8\nnum_heads = 8\n",markdown,selection_command +838,1180306,"notes.md",9509,63,"num_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n",markdown,selection_command +839,1180339,"notes.md",9493,79,"latent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n",markdown,selection_command +840,1180372,"notes.md",9478,94,"model_dim = 64\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n",markdown,selection_command +841,1180406,"notes.md",9469,103,"**648k**\nmodel_dim = 64\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n",markdown,selection_command +842,1180752,"notes.md",9469,0,"",markdown,selection_command +843,1180944,"notes.md",9478,0,"",markdown,selection_command +844,1181195,"notes.md",9493,0,"",markdown,selection_command +845,1181218,"notes.md",9509,0,"",markdown,selection_command +846,1181251,"notes.md",9528,0,"",markdown,selection_command +847,1181284,"notes.md",9543,0,"",markdown,selection_command +848,1181315,"notes.md",9558,0,"",markdown,selection_command +849,1181349,"notes.md",9572,0,"",markdown,selection_command +850,1181385,"notes.md",9573,0,"",markdown,selection_command +851,1181417,"notes.md",9643,0,"",markdown,selection_command +852,1181690,"notes.md",9643,0,"**648k**\nmodel_dim = 64\nlatent_dim = 32\nnum_latents = 1024\npatch_size = 4\nnum_blocks = 8\nnum_heads = 8\n\n",markdown,content +853,1181697,"notes.md",9643,0,"",markdown,selection_command +854,1182235,"notes.md",9642,0,"\n",markdown,content +855,1182449,"notes.md",9644,0,"",markdown,selection_command +856,1182691,"notes.md",9653,0,"",markdown,selection_command +857,1182836,"notes.md",9644,0,"",markdown,selection_command +858,1183007,"notes.md",9643,0,"",markdown,selection_command +859,1183229,"notes.md",9642,0,"\n",markdown,content +860,1183443,"notes.md",9644,0,"",markdown,selection_command +861,1183694,"notes.md",9645,0,"",markdown,selection_command +862,1183734,"notes.md",9654,0,"",markdown,selection_command +863,1183762,"notes.md",9669,0,"",markdown,selection_command +864,1183791,"notes.md",9685,0,"",markdown,selection_command +865,1183821,"notes.md",9704,0,"",markdown,selection_command +866,1183854,"notes.md",9719,0,"",markdown,selection_command +867,1183888,"notes.md",9734,0,"",markdown,selection_command +868,1183922,"notes.md",9748,0,"",markdown,selection_command +869,1183958,"notes.md",9749,0,"",markdown,selection_command +870,1184223,"notes.md",9748,0,"",markdown,selection_command +871,1184473,"notes.md",9748,2,"",markdown,content +872,1184904,"notes.md",9748,2,"",markdown,content +873,1185645,"notes.md",9748,1,"",markdown,content +874,1185690,"notes.md",9734,0,"",markdown,selection_command +875,1185943,"notes.md",9719,0,"",markdown,selection_command +876,1185975,"notes.md",9704,0,"",markdown,selection_command +877,1186165,"notes.md",9685,0,"",markdown,selection_command +878,1186406,"notes.md",9669,0,"",markdown,selection_command +879,1186690,"notes.md",9669,35,"",markdown,content +880,1187465,"notes.md",9669,15,"",markdown,content +881,1187785,"notes.md",9684,0,"",markdown,selection_command +882,1188351,"notes.md",9684,14,"",markdown,content +883,1188379,"notes.md",9669,0,"",markdown,selection_command +884,1188997,"notes.md",9683,0,"",markdown,selection_command +885,1190130,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +886,1190883,"notes.md",0,0,"",markdown,tab +887,1191724,"notes.md",9682,1,"",markdown,content +888,1192444,"notes.md",9682,0,"4",markdown,content +889,1192445,"notes.md",9683,0,"",markdown,selection_keyboard +890,1192734,"notes.md",9682,0,"",markdown,selection_command +891,1194221,"notes.md",9697,0,"",markdown,selection_command +892,1194470,"notes.md",9754,0,"",markdown,selection_command +893,1194498,"notes.md",9762,0,"",markdown,selection_command +894,1194529,"notes.md",9777,0,"",markdown,selection_command +895,1194562,"notes.md",9848,0,"",markdown,selection_command +896,1194597,"notes.md",9892,0,"",markdown,selection_command +897,1194630,"notes.md",9936,0,"",markdown,selection_command +898,1195119,"notes.md",9892,0,"",markdown,selection_command +899,1195636,"notes.md",9936,0,"",markdown,selection_command +900,1196048,"notes.md",9923,45,"",markdown,content +901,1196214,"notes.md",9879,0,"",markdown,selection_command +902,1196595,"notes.md",9879,44,"",markdown,content +903,1196715,"notes.md",9835,0,"",markdown,selection_command +904,1197247,"notes.md",9835,44,"",markdown,content +905,1197299,"notes.md",9764,0,"",markdown,selection_command +906,1197606,"notes.md",9755,0,"",markdown,selection_command +907,1197606,"notes.md",9754,0,"",markdown,selection_command +908,1197614,"notes.md",9684,0,"",markdown,selection_command +909,1197648,"notes.md",9669,0,"",markdown,selection_command +910,1197682,"notes.md",9654,0,"",markdown,selection_command +911,1197716,"notes.md",9645,0,"",markdown,selection_command +912,1197750,"notes.md",9644,0,"",markdown,selection_command +913,1197789,"notes.md",9643,0,"",markdown,selection_command +914,1197817,"notes.md",9573,0,"",markdown,selection_command +915,1197850,"notes.md",9572,0,"",markdown,selection_command +916,1197886,"notes.md",9558,0,"",markdown,selection_command +917,1198945,"notes.md",9558,14,"",markdown,content +918,1199012,"notes.md",9543,0,"",markdown,selection_command +919,1199209,"notes.md",9528,0,"",markdown,selection_command +920,1199606,"notes.md",9543,0,"",markdown,selection_command +921,1200079,"notes.md",9528,30,"",markdown,content +922,1200735,"notes.md",9509,20,"",markdown,content +923,1201444,"notes.md",9493,0,"",markdown,selection_command +924,1201808,"notes.md",9493,16,"",markdown,content +925,1202105,"notes.md",9563,0,"",markdown,selection_command +926,1202240,"notes.md",9564,0,"",markdown,selection_command +927,1202434,"notes.md",9565,0,"",markdown,selection_command +928,1202771,"notes.md",9567,0,"",markdown,selection_command +929,1203596,"notes.md",9567,4,"",markdown,content +930,1204879,"notes.md",9567,0,"3",markdown,content +931,1204880,"notes.md",9568,0,"",markdown,selection_keyboard +932,1205963,"notes.md",9568,0,"46k",markdown,content +933,1206383,"notes.md",9570,0,"",markdown,selection_command +934,1206503,"notes.md",9579,0,"",markdown,selection_command +935,1206737,"notes.md",9594,0,"",markdown,selection_command +936,1206924,"notes.md",9609,0,"",markdown,selection_command +937,1207109,"notes.md",9674,0,"",markdown,selection_command +938,1207537,"notes.md",9680,0,"",markdown,selection_command +939,1207970,"notes.md",9674,0,"",markdown,selection_command +940,1208221,"notes.md",9609,0,"",markdown,selection_command +941,1208249,"notes.md",9594,0,"",markdown,selection_command +942,1208282,"notes.md",9579,0,"",markdown,selection_command +943,1208309,"notes.md",9570,0,"",markdown,selection_command +944,1208345,"notes.md",9564,0,"",markdown,selection_command +945,1208376,"notes.md",9563,0,"",markdown,selection_command +946,1209166,"notes.md",9564,0,"",markdown,selection_command +947,1209416,"notes.md",9570,0,"",markdown,selection_command +948,1209443,"notes.md",9579,0,"",markdown,selection_command +949,1209480,"notes.md",9594,0,"",markdown,selection_command +950,1209509,"notes.md",9609,0,"",markdown,selection_command +951,1209537,"notes.md",9674,0,"",markdown,selection_command +952,1209571,"notes.md",9680,0,"",markdown,selection_command +953,1209606,"notes.md",9689,0,"",markdown,selection_command +954,1209641,"notes.md",9760,0,"",markdown,selection_command +955,1209675,"notes.md",9815,0,"",markdown,selection_command +956,1209709,"notes.md",9877,0,"",markdown,selection_command +957,1209743,"notes.md",9878,0,"",markdown,selection_command +958,1209779,"notes.md",9879,0,"",markdown,selection_command +959,1210022,"notes.md",9878,0,"",markdown,selection_command +960,1210265,"notes.md",9877,0,"",markdown,selection_command +961,1210298,"notes.md",9815,0,"",markdown,selection_command +962,1210572,"notes.md",9877,0,"",markdown,selection_command +963,1210784,"notes.md",9878,0,"",markdown,selection_command +964,1211141,"notes.md",9877,0,"",markdown,selection_command +965,1222227,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",0,0,"",shellscript,tab +966,1226271,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",814,0,"",shellscript,selection_mouse +967,1226272,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",814,1,",",shellscript,selection_mouse +968,1227503,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",841,1,"",shellscript,content +969,1227503,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",833,1,"",shellscript,content +970,1227503,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",830,2,"",shellscript,content +971,1227504,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",816,1,"",shellscript,content +972,1227504,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",813,2,"",shellscript,content +973,1227504,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",803,1,"",shellscript,content +974,1227504,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",800,2,"",shellscript,content +975,1227504,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",784,1,"",shellscript,content +976,1228461,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",814,0,"",shellscript,selection_command +977,1230420,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",810,0,"",shellscript,selection_command +978,1231387,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",824,0,"",shellscript,selection_command +979,1232796,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",830,0,"",shellscript,selection_command +980,1233385,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",830,0," ",shellscript,content +981,1233388,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",831,0,"",shellscript,selection_keyboard +982,1234361,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",831,0,"s",shellscript,content +983,1234362,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",832,0,"",shellscript,selection_keyboard +984,1234400,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",832,0,"i",shellscript,content +985,1234401,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",833,0,"",shellscript,selection_keyboard +986,1234567,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",833,0,"z",shellscript,content +987,1234568,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",834,0,"",shellscript,selection_keyboard +988,1234672,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",834,0,"e",shellscript,content +989,1234673,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",835,0,"",shellscript,selection_keyboard +990,1236210,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",834,1,"",shellscript,content +991,1236345,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",833,1,"",shellscript,content +992,1236504,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",832,1,"",shellscript,content +993,1236668,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",831,1,"",shellscript,content +994,1238072,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",831,0,"0",shellscript,content +995,1238074,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",832,0,"",shellscript,selection_keyboard +996,1238234,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",832,0,".",shellscript,content +997,1238235,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",833,0,"",shellscript,selection_keyboard +998,1238471,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",833,0,"6",shellscript,content +999,1238472,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",834,0,"",shellscript,selection_keyboard +1000,1239418,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",834,0,"_mio",shellscript,content +1001,1239858,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",837,0,"",shellscript,selection_command +1002,1242881,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",942,0,"",shellscript,selection_mouse +1003,1242884,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",941,0,"",shellscript,selection_command +1004,1915518,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",1220,0,"",shellscript,selection_mouse +1005,1915523,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",1219,0,"",shellscript,selection_command +1006,1917670,"notes.md",0,0,"",markdown,tab +1007,1917949,"TERMINAL",0,0,"\r(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1008,1921606,"TERMINAL",0,0,"bash",,terminal_focus +1009,1921678,"TERMINAL",0,0,"\r(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1010,1922042,"TERMINAL",0,0,"srun",,terminal_focus +1011,1922116,"TERMINAL",0,0,"\r(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1012,1930458,"TERMINAL",0,0,"",,terminal_focus +1013,1935891,"TERMINAL",0,0,"salloc ^C",,terminal_command +1014,1935905,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;a0805cec-1e49-41a5-b2c2-ec719b014a0e]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D",,terminal_output +1015,1937708,"TERMINAL",0,0,"salloc --account=hk-project-p0023960 --time=00:30:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1",,terminal_command +1016,1937789,"TERMINAL",0,0,"]633;E;2025-06-27 17:55:25 salloc --account=hk-project-p0023960 --time=00:30:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1;a0805cec-1e49-41a5-b2c2-ec719b014a0e]633;Csalloc: Pending job allocation 3300233\r\nsalloc: job 3300233 queued and waiting for resources\r\n",,terminal_output +1017,1938913,"TERMINAL",0,0,"bash",,terminal_focus +1018,1939309,"TERMINAL",0,0,"salloc",,terminal_focus +1019,1943884,"TERMINAL",0,0,"srun",,terminal_focus +1020,1944060,"TERMINAL",0,0,"\r(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1021,1944793,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1022,1947231,"TERMINAL",0,0,"s",,terminal_output +1023,1947331,"TERMINAL",0,0,"m",,terminal_output +1024,1947440,"TERMINAL",0,0,"i",,terminal_output +1025,1947604,"TERMINAL",0,0,"\r\n[?2004l\r",,terminal_output +1026,1948012,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: nvidia-smihkn0505.localdomain: Fri Jun 27 17:55:35 2025Fri Jun 27 17:55:35 2025\r+-----------------------------------------------------------------------------------------+\r| NVIDIA-SMI 570.133.20Driver Version: 570.133.20 CUDA Version: 12.8 |\r|-----------------------------------------+------------------------+----------------------+\r| GPU NamePersistence-M | Bus-IdDisp.A | Volatile Uncorr. ECC |\r| Fan Temp PerfPwr:Usage/Cap |Memory-Usage | GPU-Util Compute M. |\r|||MIG M. |\r|=========================================+========================+======================|\r| 0 NVIDIA A100-SXM4-40GBOn | 00000000:E3:00.0 Off |0 |\r| N/A 45C P051W / 300W |\t 27MiB / 40960MiB |\t 0%\t Default |\r|||Disabled |\r+-----------------------------------------+------------------------+----------------------+\r+-----------------------------------------------------------------------------------------+\r| Processes:|\r| GPU GI CIPID Type Process nameGPU Memory |\r|ID IDUsage\t |\r|=========================================================================================|\r| 0 N/A N/A2694G /usr/libexec/Xorg17MiB |\r+-----------------------------------------------------------------------------------------+",,terminal_output +1027,1949291,"TERMINAL",0,0,"77670",,terminal_output +1028,1950333,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1029,1950852,"TERMINAL",0,0,"[?2004l\r\r\nexit\r\nsalloc: Relinquishing job allocation 3299579\r\nsalloc: Job allocation 3299579 has been revoked.\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;0",,terminal_output +1030,1954085,"TERMINAL",0,0,"bash",,terminal_focus +1031,1954085,"TERMINAL",0,0,"salloc",,terminal_focus +1032,1954764,"notes.md",0,0,"",markdown,tab +1033,2015531,"TERMINAL",0,0,"salloc: job 3300233 has been allocated resources\r\nsalloc: Granted job allocation 3300233\r\n",,terminal_output +1034,2015645,"TERMINAL",0,0,"salloc: Waiting for resource configuration\r\n",,terminal_output +1035,2042793,"TERMINAL",0,0,"salloc: Nodes hkn0505 are ready for job\r\n",,terminal_output +1036,2043798,"TERMINAL",0,0,"]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h[tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1037,2095080,"notes.md",0,0,"",markdown,tab +1038,2095423,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",0,0,"",shellscript,tab +1039,2096913,"notes.md",0,0,"",markdown,tab +1040,2097554,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +1041,2099793,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",760,0,"",shellscript,selection_command +1042,2099897,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",759,0,"",shellscript,selection_command +1043,2100068,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",758,0,"",shellscript,selection_command +1044,2100338,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",737,0,"",shellscript,selection_command +1045,2100842,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",737,1,"",shellscript,content +1046,2100999,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",737,1,"",shellscript,content +1047,2101617,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",737,0,"3",shellscript,content +1048,2101618,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",738,0,"",shellscript,selection_keyboard +1049,2101644,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",738,0,"2",shellscript,content +1050,2101645,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",739,0,"",shellscript,selection_keyboard +1051,2102504,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",738,0,"",shellscript,selection_command +1052,2102621,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",759,0,"",shellscript,selection_command +1053,2103325,"notes.md",0,0,"",markdown,tab +1054,2104728,"TERMINAL",0,0,"salloc --account=hk-project-p0023960 --time=00:30:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1",,terminal_output +1055,2105744,"TERMINAL",0,0,"\r",,terminal_output +1056,2106673,"TERMINAL",0,0,".",,terminal_output +1057,2107036,"TERMINAL",0,0,"",,terminal_output +1058,2107214,"TERMINAL",0,0,"",,terminal_output +1059,2107756,"TERMINAL",0,0,"\r[tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1060,2109763,"notes.md",0,0,"",markdown,tab +1061,2110027,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +1062,2114721,"notes.md",0,0,"",markdown,tab +1063,2115867,"TERMINAL",0,0,"/home/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",,terminal_output +1064,2119605,"notes.md",0,0,"",markdown,tab +1065,2119763,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +1066,2123464,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",762,0,"",shellscript,selection_mouse +1067,2123466,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",761,0,"",shellscript,selection_command +1068,2124176,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",762,0,"\n ",shellscript,content +1069,2124883,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",763,4,"",shellscript,content +1070,2125398,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",763,0,"/home/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",shellscript,content +1071,2125402,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",901,0,"",shellscript,selection_command +1072,2126092,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",763,0,"",shellscript,selection_command +1073,2126558,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",763,139,"",shellscript,content +1074,2127188,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",763,1,"",shellscript,content +1075,2127190,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",761,0,"",shellscript,selection_command +1076,2135741,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h[tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1077,2136025,"TERMINAL",0,0,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",,terminal_output +1078,2136888,"TERMINAL",0,0,"\rslurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh\r",,terminal_output +1079,2137512,"TERMINAL",0,0,".slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh\r",,terminal_output +1080,2137652,"TERMINAL",0,0,"/slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh\r",,terminal_output +1081,2138194,"TERMINAL",0,0,"\r\n[?2004l\r# Log the sbatch script\r\ncat $0\r\n\r\nmodule unload mpi/openmpi/5.0\r\nmodule unload devel/cuda/12.4\r\nsource .venv_jafar/bin/activate\r\n\r\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\r\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\r\n\r\njob_name=$SLURM_JOB_NAME\r\nslurm_job_id=$SLURM_JOB_ID\r\n\r\ntags=""overfit_sample tokenizer debug alfred""\r\n\r\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\r\nmkdir -p $CHECKPOINT_DIR\r\n\r\nenv | grep SLURM\r\n\r\npython train_tokenizer_single_sample.py \\r\n --ckpt_dir $CHECKPOINT_DIR \\r\n --batch_size=1 \\r\n --min_lr=4.3e-5 \\r\n --max_lr=4.3e-4 \\r\n --log_image_interval=10 \\r\n --log \\r\n --entity instant-uv \\r\n --project jafar \\r\n --name $job_name \\r\n --tags $tags \\r\n --model_dim 32 \\r\n --num_blocks 4 \\r\n --data_dir $tf_records_dir\r\n",,terminal_output +1082,2138354,"TERMINAL",0,0,"SLURM_STEP_NUM_TASKS=1\r\nSLURM_JOB_USER=tum_ind3695\r\nSLURM_TASKS_PER_NODE=1\r\nSLURM_JOB_UID=991285\r\nSLURM_TASK_PID=723504\r\nSLURM_JOB_GPUS=3\r\nSLURM_LOCALID=0\r\nSLURM_SUBMIT_DIR=/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit\r\nSLURMD_NODENAME=hkn0505\r\nSLURM_JOB_START_TIME=1751039803\r\nSLURM_STEP_NODELIST=hkn0505\r\nSLURM_CLUSTER_NAME=hk\r\nSLURM_JOB_END_TIME=1751041603\r\nSLURM_PMI2_SRUN_PORT=44943\r\nSLURM_CPUS_ON_NODE=8\r\nSLURM_JOB_CPUS_PER_NODE=8\r\nSLURM_GPUS_ON_NODE=1\r\nSLURM_GTIDS=0\r\nSLURM_JOB_PARTITION=accelerated\r\nSLURM_TRES_PER_TASK=cpu=8\r\nSLURM_OOM_KILL_STEP=0\r\nSLURM_JOB_NUM_NODES=1\r\nSLURM_STEPID=4294967290\r\nSLURM_JOBID=3300233\r\nSLURM_PTY_PORT=45785\r\nSLURM_JOB_QOS=normal\r\nSLURM_LAUNCH_NODE_IPADDR=10.0.7.201\r\nSLURM_PTY_WIN_ROW=68\r\nSLURM_PMI2_PROC_MAPPING=(vector,(0,1,1))\r\nSLURMD_DEBUG=2\r\nSLURM_PROCID=0\r\nSLURM_CPUS_PER_TASK=8\r\nSLURM_NTASKS=1\r\nSLURM_TOPOLOGY_ADDR=hkibb.hkibbi1.hkibbi1e10.hkn0505\r\nSLURM_TOPOLOGY_ADDR_PATTERN=switch.switch.switch.node\r\nSLURM_SRUN_COMM_HOST=10.0.7.201\r\nSLURM_SCRIPT_CONTEXT=prolog_task\r\nSLURM_PTY_WIN_COL=184\r\nSLURM_NODELIST=hkn0505\r\nSLURM_SRUN_COMM_PORT=44705\r\nSLURM_STEP_ID=4294967290\r\nSLURM_JOB_ACCOUNT=hk-project-p0023960\r\nSLURM_PRIO_PROCESS=0\r\nSLURM_NPROCS=1\r\nSLURM_NNODES=1\r\nSLURM_SUBMIT_HOST=hkn1993.localdomain\r\nSLURM_JOB_ID=3300233\r\nSLURM_NODEID=0\r\nSLURM_STEP_NUM_NODES=1\r\nSLURM_STEP_TASKS_PER_NODE=1\r\nSLURM_MPI_TYPE=pmi2\r\nSLURM_PMI2_STEP_NODES=hkn0505\r\nSLURM_CONF=/etc/slurm/slurm.conf\r\nSLURM_JOB_NAME=interactive\r\nSLURM_NTASKS_PER_NODE=1\r\nSLURM_STEP_LAUNCHER_PORT=44705\r\nSLURM_JOB_GID=502289\r\nSLURM_JOB_NODELIST=hkn0505\r\n",,terminal_output +1083,2141795,"TERMINAL",0,0,"2025-06-27 17:58:49.327251: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\r\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\r\nE0000 00:00:1751039929.340161 724163 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\r\nE0000 00:00:1751039929.344508 724163 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\r\nW0000 00:00:1751039929.356451 724163 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751039929.356469 724163 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751039929.356471 724163 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751039929.356473 724163 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\n",,terminal_output +1084,2146795,"TERMINAL",0,0,"W0000 00:00:1751039933.581668 724163 gpu_device.cc:2341] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.\r\nSkipping registering GPU devices...\r\nRunning on 1 devices.\r\nwandb: Currently logged in as: avocadoali (instant-uv) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin\r\n",,terminal_output +1085,2147795,"TERMINAL",0,0,"wandb: Tracking run with wandb version 0.19.11\r\nwandb: Run data is saved locally in /hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/wandb/run-20250627_175854-2uqml354\r\nwandb: Run `wandb offline` to turn off syncing.\r\nwandb: Syncing run interactive\r\nwandb: ⭐️ View project at https://wandb.ai/instant-uv/jafar\r\nwandb: 🚀 View run at https://wandb.ai/instant-uv/jafar/runs/2uqml354\r\n",,terminal_output +1086,2156795,"TERMINAL",0,0,"2025-06-27 17:59:04.017483: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1087,2158796,"TERMINAL",0,0,"2025-06-27 17:59:06.328188: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1088,2159795,"TERMINAL",0,0,"Counting all components: ['encoder', 'vq', 'decoder']\r\nParameter counts:\r\n{'encoder': 41568, 'vq': 32768, 'decoder': 41552, 'total': 115888}\r\n",,terminal_output +1089,2160796,"TERMINAL",0,0,"Starting training from step 0...\r\nbatch shape: (1, 16, 90, 160, 3)\r\n",,terminal_output +1090,2166166,"TERMINAL",0,0,"2025-06-27 17:59:14.242253: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:59:14.242362: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:59:14.242453: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:59:14.242475: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:59:14.242511: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 17:59:14.242962: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1091,2191731,"TERMINAL",0,0,"Step 0, loss: 0.2588540017604828, step time: 29388.91649246216ms\r\nStep 1, loss: 0.25632384419441223, step time: 48.0954647064209ms\r\nStep 2, loss: 0.2536839544773102, step time: 47.26862907409668ms\r\nStep 3, loss: 0.2510448098182678, step time: 46.802520751953125ms\r\nStep 4, loss: 0.24852357804775238, step time: 46.82588577270508ms\r\nStep 5, loss: 0.24618202447891235, step time: 46.78487777709961ms\r\nStep 6, loss: 0.24375265836715698, step time: 45.865774154663086ms\r\nStep 7, loss: 0.24139642715454102, step time: 46.05507850646973ms\r\nStep 8, loss: 0.23893405497074127, step time: 45.642852783203125ms\r\nStep 9, loss: 0.23659072816371918, step time: 45.7303524017334ms\r\nStep 10, loss: 0.2343081831932068, step time: 46.892642974853516ms\r\nStep 11, loss: 0.23215632140636444, step time: 46.4017391204834ms\r\nStep 12, loss: 0.22985528409481049, step time: 45.91250419616699ms\r\nStep 13, loss: 0.22761112451553345, step time: 46.048641204833984ms\r\nStep 14, loss: 0.2257053256034851, step time: 45.93086242675781ms\r\nStep 15, loss: 0.22390004992485046, step time: 45.70436477661133ms\r\nStep 16, loss: 0.22214597463607788, step time: 45.925140380859375ms\r\nStep 17, loss: 0.2202935665845871, step time: 45.96900939941406ms\r\nStep 18, loss: 0.21858184039592743, step time: 45.92704772949219ms\r\nStep 19, loss: 0.21707794070243835, step time: 45.75610160827637ms\r\nStep 20, loss: 0.21537406742572784, step time: 46.408891677856445ms\r\nStep 21, loss: 0.213638037443161, step time: 46.32258415222168ms\r\nStep 22, loss: 0.2120133340358734, step time: 45.89033126831055ms\r\nStep 23, loss: 0.21029198169708252, step time: 45.775413513183594ms\r\nStep 24, loss: 0.20877109467983246, step time: 45.864105224609375ms\r\nStep 25, loss: 0.2072172611951828, step time: 45.697689056396484ms\r\nStep 26, loss: 0.2058895379304886, step time: 45.98212242126465ms\r\nStep 27, loss: 0.2042492777109146, step time: 45.82476615905762ms\r\nStep 28, loss: 0.20274804532527924, step time: 45.70817947387695ms\r\nStep 29, loss: 0.2011268585920334, step time: 45.823097229003906ms\r\n",,terminal_output +1092,2192328,"TERMINAL",0,0,"Step 30, loss: 0.1998865157365799, step time: 46.402931213378906ms\r\nStep 31, loss: 0.19852660596370697, step time: 46.51069641113281ms\r\nStep 32, loss: 0.1970805674791336, step time: 45.818328857421875ms\r\nStep 33, loss: 0.1959620863199234, step time: 45.74227333068848ms\r\nStep 34, loss: 0.19479426741600037, step time: 46.022891998291016ms\r\nStep 35, loss: 0.1935131847858429, step time: 45.61614990234375ms\r\nStep 36, loss: 0.19228750467300415, step time: 45.899152755737305ms\r\nStep 37, loss: 0.19107402861118317, step time: 45.90964317321777ms\r\nStep 38, loss: 0.1897011399269104, step time: 45.591115951538086ms\r\nStep 39, loss: 0.18836891651153564, step time: 46.71835899353027ms\r\n",,terminal_output +1093,2192698,"TERMINAL",0,0,"Step 40, loss: 0.18731354176998138, step time: 47.727346420288086ms\r\nStep 41, loss: 0.18628358840942383, step time: 47.15728759765625ms\r\nStep 42, loss: 0.18520720303058624, step time: 46.738624572753906ms\r\nStep 43, loss: 0.18396860361099243, step time: 46.44608497619629ms\r\nStep 44, loss: 0.18288980424404144, step time: 46.10896110534668ms\r\n",,terminal_output +1094,2192939,"TERMINAL",0,0,"Step 45, loss: 0.18208521604537964, step time: 45.99761962890625ms\r\nStep 46, loss: 0.18090948462486267, step time: 45.83859443664551ms\r\nStep 47, loss: 0.1800462156534195, step time: 45.91083526611328ms\r\nStep 48, loss: 0.17919597029685974, step time: 46.13304138183594ms\r\nStep 49, loss: 0.1781223863363266, step time: 46.190500259399414ms\r\n",,terminal_output +1095,2193541,"TERMINAL",0,0,"Step 50, loss: 0.17705866694450378, step time: 46.71335220336914ms\r\nStep 51, loss: 0.1762232482433319, step time: 46.140193939208984ms\r\nStep 52, loss: 0.17515529692173004, step time: 45.77302932739258ms\r\nStep 53, loss: 0.1742248237133026, step time: 46.19121551513672ms\r\nStep 54, loss: 0.17355285584926605, step time: 45.83334922790527ms\r\nStep 55, loss: 0.17291897535324097, step time: 45.69721221923828ms\r\nStep 56, loss: 0.17200051248073578, step time: 45.93920707702637ms\r\nStep 57, loss: 0.1711791604757309, step time: 46.09274864196777ms\r\nStep 58, loss: 0.17045865952968597, step time: 45.84145545959473ms\r\nStep 59, loss: 0.16967646777629852, step time: 45.81618309020996ms\r\n",,terminal_output +1096,2194044,"TERMINAL",0,0,"Step 60, loss: 0.1689489185810089, step time: 47.197818756103516ms\r\nStep 61, loss: 0.1683146059513092, step time: 46.339988708496094ms\r\nStep 62, loss: 0.16771334409713745, step time: 45.86672782897949ms\r\nStep 63, loss: 0.16710425913333893, step time: 45.81809043884277ms\r\nStep 64, loss: 0.16635790467262268, step time: 45.89486122131348ms\r\nStep 65, loss: 0.16554200649261475, step time: 45.737504959106445ms\r\nStep 66, loss: 0.16476592421531677, step time: 45.93396186828613ms\r\nStep 67, loss: 0.1642484962940216, step time: 45.70126533508301ms\r\n",,terminal_output +1097,2194136,"TERMINAL",0,0,"Step 68, loss: 0.16349203884601593, step time: 45.80354690551758ms\r\nStep 69, loss: 0.1628502756357193, step time: 45.90106010437012ms\r\n",,terminal_output +1098,2194672,"TERMINAL",0,0,"Step 70, loss: 0.16227921843528748, step time: 49.63946342468262ms\r\nStep 71, loss: 0.16153594851493835, step time: 46.22220993041992ms\r\nStep 72, loss: 0.16101248562335968, step time: 45.816659927368164ms\r\nStep 73, loss: 0.16033385694026947, step time: 45.89128494262695ms\r\nStep 74, loss: 0.15976181626319885, step time: 45.88198661804199ms\r\nStep 75, loss: 0.15898220241069794, step time: 45.731306076049805ms\r\nStep 76, loss: 0.15838508307933807, step time: 46.030282974243164ms\r\n",,terminal_output +1099,2194741,"TERMINAL",0,0,"Step 77, loss: 0.15773895382881165, step time: 45.91989517211914ms\r\nStep 78, loss: 0.15701186656951904, step time: 45.74084281921387ms\r\nStep 79, loss: 0.1563970446586609, step time: 46.00071907043457ms\r\n",,terminal_output +1100,2195344,"TERMINAL",0,0,"Step 80, loss: 0.15576785802841187, step time: 48.66480827331543ms\r\nStep 81, loss: 0.15513242781162262, step time: 46.36240005493164ms\r\nStep 82, loss: 0.15443822741508484, step time: 45.942068099975586ms\r\nStep 83, loss: 0.15371762216091156, step time: 45.870304107666016ms\r\nStep 84, loss: 0.15320689976215363, step time: 46.01407051086426ms\r\nStep 85, loss: 0.15254129469394684, step time: 45.699119567871094ms\r\nStep 86, loss: 0.15193356573581696, step time: 45.85838317871094ms\r\nStep 87, loss: 0.1513376533985138, step time: 45.68982124328613ms\r\nStep 88, loss: 0.15058781206607819, step time: 45.70341110229492ms\r\nStep 89, loss: 0.15009820461273193, step time: 45.97902297973633ms\r\n",,terminal_output +1101,2195950,"TERMINAL",0,0,"Step 90, loss: 0.14941903948783875, step time: 47.486066818237305ms\r\nStep 91, loss: 0.1487799733877182, step time: 46.36025428771973ms\r\nStep 92, loss: 0.14819082617759705, step time: 45.9291934967041ms\r\nStep 93, loss: 0.14766152203083038, step time: 45.66025733947754ms\r\nStep 94, loss: 0.14701029658317566, step time: 46.16546630859375ms\r\nStep 95, loss: 0.1465095430612564, step time: 45.7000732421875ms\r\nStep 96, loss: 0.1459278017282486, step time: 45.70770263671875ms\r\nStep 97, loss: 0.14541997015476227, step time: 45.903682708740234ms\r\nStep 98, loss: 0.14478695392608643, step time: 45.7303524017334ms\r\nStep 99, loss: 0.14428459107875824, step time: 46.66566848754883ms\r\n",,terminal_output +1102,2196545,"TERMINAL",0,0,"Step 100, loss: 0.14370955526828766, step time: 46.63348197937012ms\r\nStep 101, loss: 0.1432913839817047, step time: 46.0660457611084ms\r\nStep 102, loss: 0.142690971493721, step time: 46.045541763305664ms\r\nStep 103, loss: 0.14201286435127258, step time: 45.77898979187012ms\r\nStep 104, loss: 0.14144861698150635, step time: 45.93610763549805ms\r\nStep 105, loss: 0.14089223742485046, step time: 45.86148262023926ms\r\nStep 106, loss: 0.1403799206018448, step time: 45.67074775695801ms\r\nStep 107, loss: 0.13983085751533508, step time: 45.83311080932617ms\r\nStep 108, loss: 0.1392652839422226, step time: 45.71795463562012ms\r\nStep 109, loss: 0.13885915279388428, step time: 45.70341110229492ms\r\n",,terminal_output +1103,2197144,"TERMINAL",0,0,"Step 110, loss: 0.13831572234630585, step time: 46.99969291687012ms\r\nStep 111, loss: 0.1380118578672409, step time: 46.16713523864746ms\r\nStep 112, loss: 0.13736797869205475, step time: 46.09060287475586ms\r\nStep 113, loss: 0.13683880865573883, step time: 46.01240158081055ms\r\nStep 114, loss: 0.136342391371727, step time: 46.369314193725586ms\r\nStep 115, loss: 0.13589145243167877, step time: 46.18215560913086ms\r\nStep 116, loss: 0.13530150055885315, step time: 46.230316162109375ms\r\nStep 117, loss: 0.1349034309387207, step time: 46.230316162109375ms\r\nStep 118, loss: 0.1343381404876709, step time: 46.21410369873047ms\r\nStep 119, loss: 0.1339830458164215, step time: 46.208858489990234ms\r\n",,terminal_output +1104,2197739,"TERMINAL",0,0,"Step 120, loss: 0.13343019783496857, step time: 46.9517707824707ms\r\nStep 121, loss: 0.13294415175914764, step time: 46.33140563964844ms\r\nStep 122, loss: 0.13255155086517334, step time: 45.824289321899414ms\r\nStep 123, loss: 0.1320364773273468, step time: 45.813798904418945ms\r\nStep 124, loss: 0.13152778148651123, step time: 45.69292068481445ms\r\nStep 125, loss: 0.1311313658952713, step time: 45.70770263671875ms\r\nStep 126, loss: 0.13062512874603271, step time: 45.69864273071289ms\r\nStep 127, loss: 0.13012278079986572, step time: 45.69554328918457ms\r\nStep 128, loss: 0.12967748939990997, step time: 45.589447021484375ms\r\nStep 129, loss: 0.1292628049850464, step time: 45.71652412414551ms\r\n",,terminal_output +1105,2198331,"TERMINAL",0,0,"Step 130, loss: 0.1287497580051422, step time: 45.935630798339844ms\r\nStep 131, loss: 0.1282949447631836, step time: 45.82619667053223ms\r\nStep 132, loss: 0.12783515453338623, step time: 45.68815231323242ms\r\nStep 133, loss: 0.12728926539421082, step time: 45.716047286987305ms\r\nStep 134, loss: 0.12685483694076538, step time: 45.764923095703125ms\r\nStep 135, loss: 0.12631823122501373, step time: 45.717716217041016ms\r\nStep 136, loss: 0.12594157457351685, step time: 45.73869705200195ms\r\nStep 137, loss: 0.12555356323719025, step time: 45.54033279418945ms\r\nStep 138, loss: 0.12511195242404938, step time: 45.63403129577637ms\r\nStep 139, loss: 0.12456391751766205, step time: 45.66359519958496ms\r\n",,terminal_output +1106,2198928,"TERMINAL",0,0,"Step 140, loss: 0.12412441521883011, step time: 45.803070068359375ms\r\nStep 141, loss: 0.12374287843704224, step time: 45.75037956237793ms\r\nStep 142, loss: 0.1233026310801506, step time: 45.714378356933594ms\r\nStep 143, loss: 0.12292002886533737, step time: 45.43590545654297ms\r\nStep 144, loss: 0.12248300015926361, step time: 45.72296142578125ms\r\nStep 145, loss: 0.12210015952587128, step time: 45.60494422912598ms\r\nStep 146, loss: 0.12163665890693665, step time: 45.75634002685547ms\r\nStep 147, loss: 0.12113058567047119, step time: 46.49829864501953ms\r\nStep 148, loss: 0.12075639516115189, step time: 46.32902145385742ms\r\nStep 149, loss: 0.12032084912061691, step time: 46.46134376525879ms\r\n",,terminal_output +1107,2201796,"TERMINAL",0,0,"Step 150, loss: 0.11990656703710556, step time: 47.30343818664551ms\r\nStep 151, loss: 0.11955955624580383, step time: 46.68569564819336ms\r\nStep 152, loss: 0.11927773058414459, step time: 46.102046966552734ms\r\nStep 153, loss: 0.1188410148024559, step time: 45.91178894042969ms\r\nStep 154, loss: 0.11851990222930908, step time: 45.64237594604492ms\r\nStep 155, loss: 0.11816582083702087, step time: 45.67694664001465ms\r\nStep 156, loss: 0.1177804097533226, step time: 45.90940475463867ms\r\nStep 157, loss: 0.1174272745847702, step time: 45.75967788696289ms\r\nStep 158, loss: 0.11705511063337326, step time: 45.81189155578613ms\r\nStep 159, loss: 0.11664778739213943, step time: 45.864105224609375ms\r\nStep 160, loss: 0.1163223534822464, step time: 46.89478874206543ms\r\nStep 161, loss: 0.11593148112297058, step time: 46.36073112487793ms\r\nStep 162, loss: 0.11566586047410965, step time: 45.96257209777832ms\r\nStep 163, loss: 0.11528454720973969, step time: 45.737504959106445ms\r\nStep 164, loss: 0.11494680494070053, step time: 45.890092849731445ms\r\nStep 165, loss: 0.11460946500301361, step time: 45.73941230773926ms\r\nStep 166, loss: 0.11425498127937317, step time: 45.896053314208984ms\r\nStep 167, loss: 0.11390390992164612, step time: 46.196937561035156ms\r\nStep 168, loss: 0.11353203654289246, step time: 45.770883560180664ms\r\nStep 169, loss: 0.11323623359203339, step time: 45.905113220214844ms\r\nStep 170, loss: 0.11273449659347534, step time: 46.65827751159668ms\r\nStep 171, loss: 0.11245846748352051, step time: 46.18668556213379ms\r\nStep 172, loss: 0.11212971061468124, step time: 46.13542556762695ms\r\nStep 173, loss: 0.11178760975599289, step time: 45.796871185302734ms\r\nStep 174, loss: 0.11148948967456818, step time: 45.77279090881348ms\r\nStep 175, loss: 0.11118187755346298, step time: 45.90725898742676ms\r\nStep 176, loss: 0.11086500436067581, step time: 45.77469825744629ms\r\nStep 177, loss: 0.11056444048881531, step time: 46.30303382873535ms\r\nStep 178, loss: 0.11024904996156693, step time: 45.77898979187012ms\r\nStep 179, loss: 0.11001614481210709, step time: 45.65858840942383ms\r\n",,terminal_output +1108,2203814,"TERMINAL",0,0,"Step 180, loss: 0.10968062281608582, step time: 47.18971252441406ms\r\nStep 181, loss: 0.10939397662878036, step time: 47.17874526977539ms\r\nStep 182, loss: 0.10907997936010361, step time: 47.41525650024414ms\r\nStep 183, loss: 0.1087905690073967, step time: 47.32036590576172ms\r\nStep 184, loss: 0.10844200104475021, step time: 47.1494197845459ms\r\nStep 185, loss: 0.10808823257684708, step time: 46.739816665649414ms\r\nStep 186, loss: 0.10768415778875351, step time: 46.83041572570801ms\r\nStep 187, loss: 0.10738937556743622, step time: 46.28562927246094ms\r\nStep 188, loss: 0.10709857195615768, step time: 46.476125717163086ms\r\nStep 189, loss: 0.10681375861167908, step time: 46.132564544677734ms\r\nStep 190, loss: 0.10648522526025772, step time: 46.483516693115234ms\r\nStep 191, loss: 0.10609997808933258, step time: 46.253204345703125ms\r\nStep 192, loss: 0.10585874319076538, step time: 45.934438705444336ms\r\nStep 193, loss: 0.10546352714300156, step time: 45.84240913391113ms\r\nStep 194, loss: 0.10510922968387604, step time: 49.70526695251465ms\r\nStep 195, loss: 0.10466896742582321, step time: 46.00811004638672ms\r\nStep 196, loss: 0.10425259172916412, step time: 45.92013359069824ms\r\nStep 197, loss: 0.10397259145975113, step time: 45.90892791748047ms\r\nStep 198, loss: 0.10357304662466049, step time: 45.766353607177734ms\r\nStep 199, loss: 0.10317680239677429, step time: 46.105384826660156ms\r\nStep 200, loss: 0.10289060324430466, step time: 46.643972396850586ms\r\nStep 201, loss: 0.10255114734172821, step time: 46.115875244140625ms\r\nStep 202, loss: 0.10221122205257416, step time: 45.925140380859375ms\r\nStep 203, loss: 0.10193684697151184, step time: 45.80330848693848ms\r\nStep 204, loss: 0.10164378583431244, step time: 45.946359634399414ms\r\nStep 205, loss: 0.10133644938468933, step time: 45.71127891540527ms\r\nStep 206, loss: 0.10099829733371735, step time: 45.66550254821777ms\r\nStep 207, loss: 0.10063748806715012, step time: 45.92466354370117ms\r\nStep 208, loss: 0.10028152912855148, step time: 45.64237594604492ms\r\nStep 209, loss: 0.09999237209558487, step time: 45.8986759185791ms\r\nStep 210, loss: 0.09963136166334152, step time: 46.5695858001709ms\r\nStep 211, loss: 0.09931846708059311, step time: 46.047210693359375ms\r\nStep 212, loss: 0.09895353019237518, step time: 46.07987403869629ms\r\nStep 213, loss: 0.09867611527442932, step time: 46.12612724304199ms\r\nStep 214, loss: 0.09834584593772888, step time: 45.96257209777832ms\r\nStep 215, loss: 0.09800394624471664, step time: 45.941829681396484ms\r\nStep 216, loss: 0.09767737984657288, step time: 45.75848579406738ms\r\nStep 217, loss: 0.09726721048355103, step time: 46.01693153381348ms\r\nStep 218, loss: 0.09695516526699066, step time: 45.723676681518555ms\r\nStep 219, loss: 0.0966176688671112, step time: 45.85409164428711ms\r\nStep 220, loss: 0.09622353315353394, step time: 46.800851821899414ms\r\nStep 221, loss: 0.0959358811378479, step time: 46.11825942993164ms\r\nStep 222, loss: 0.09555389732122421, step time: 46.07725143432617ms\r\nStep 223, loss: 0.095197394490242, step time: 45.98641395568848ms\r\nStep 224, loss: 0.09485101699829102, step time: 45.80545425415039ms\r\nStep 225, loss: 0.09455303847789764, step time: 45.990943908691406ms\r\nStep 226, loss: 0.09421717375516891, step time: 45.72701454162598ms\r\nStep 227, loss: 0.09395703673362732, step time: 45.74108123779297ms\r\nStep 228, loss: 0.09360996633768082, step time: 45.699119567871094ms\r\nStep 229, loss: 0.09316637367010117, step time: 45.70937156677246ms\r\n",,terminal_output +1109,2206795,"TERMINAL",0,0,"Step 230, loss: 0.09286180138587952, step time: 46.65327072143555ms\r\nStep 231, loss: 0.09252509474754333, step time: 45.99285125732422ms\r\nStep 232, loss: 0.09216228872537613, step time: 45.73869705200195ms\r\nStep 233, loss: 0.09180643409490585, step time: 45.873403549194336ms\r\nStep 234, loss: 0.09148979187011719, step time: 45.58706283569336ms\r\nStep 235, loss: 0.09117039293050766, step time: 45.97187042236328ms\r\nStep 236, loss: 0.09081635624170303, step time: 45.75061798095703ms\r\nStep 237, loss: 0.09046564996242523, step time: 45.693159103393555ms\r\nStep 238, loss: 0.09021477401256561, step time: 45.78828811645508ms\r\nStep 239, loss: 0.08988911658525467, step time: 45.75371742248535ms\r\nStep 240, loss: 0.0895458459854126, step time: 46.7989444732666ms\r\nStep 241, loss: 0.08917638659477234, step time: 46.13494873046875ms\r\nStep 242, loss: 0.08886856585741043, step time: 45.720815658569336ms\r\nStep 243, loss: 0.08857860416173935, step time: 45.96066474914551ms\r\nStep 244, loss: 0.08823403716087341, step time: 45.66788673400879ms\r\nStep 245, loss: 0.08797609061002731, step time: 45.813560485839844ms\r\nStep 246, loss: 0.08757927268743515, step time: 45.784950256347656ms\r\nStep 247, loss: 0.08726292103528976, step time: 45.880794525146484ms\r\nStep 248, loss: 0.08696455508470535, step time: 45.98832130432129ms\r\nStep 249, loss: 0.08655892312526703, step time: 45.864105224609375ms\r\nStep 250, loss: 0.08623141795396805, step time: 46.649932861328125ms\r\nStep 251, loss: 0.08602101355791092, step time: 46.27847671508789ms\r\nStep 252, loss: 0.08556713908910751, step time: 45.86601257324219ms\r\nStep 253, loss: 0.08518058806657791, step time: 46.07033729553223ms\r\nStep 254, loss: 0.08488893508911133, step time: 45.72415351867676ms\r\nStep 255, loss: 0.08451918512582779, step time: 45.69411277770996ms\r\nStep 256, loss: 0.08416970074176788, step time: 45.7308292388916ms\r\nStep 257, loss: 0.08376894146203995, step time: 45.870304107666016ms\r\nStep 258, loss: 0.08338994532823563, step time: 45.95375061035156ms\r\nStep 259, loss: 0.0830833688378334, step time: 45.923471450805664ms\r\nStep 260, loss: 0.08271878212690353, step time: 46.465158462524414ms\r\nStep 261, loss: 0.08231546729803085, step time: 46.24295234680176ms\r\nStep 262, loss: 0.08200210332870483, step time: 45.80187797546387ms\r\nStep 263, loss: 0.08162356913089752, step time: 45.88913917541504ms\r\nStep 264, loss: 0.08130548894405365, step time: 45.84336280822754ms\r\nStep 265, loss: 0.08095039427280426, step time: 45.7005500793457ms\r\nStep 266, loss: 0.08056969195604324, step time: 46.1583137512207ms\r\nStep 267, loss: 0.08022137731313705, step time: 45.8221435546875ms\r\nStep 268, loss: 0.07991333305835724, step time: 45.73416709899902ms\r\nStep 269, loss: 0.07959098368883133, step time: 45.80569267272949ms\r\nStep 270, loss: 0.07930626720190048, step time: 46.61107063293457ms\r\nStep 271, loss: 0.07898696511983871, step time: 46.40030860900879ms\r\nStep 272, loss: 0.0786241888999939, step time: 46.18501663208008ms\r\nStep 273, loss: 0.07822924107313156, step time: 45.889854431152344ms\r\nStep 274, loss: 0.07797254621982574, step time: 45.87841033935547ms\r\nStep 275, loss: 0.07767967134714127, step time: 45.6392765045166ms\r\nStep 276, loss: 0.07741223275661469, step time: 45.90559005737305ms\r\nStep 277, loss: 0.07702377438545227, step time: 45.82548141479492ms\r\nStep 278, loss: 0.0767386183142662, step time: 45.77040672302246ms\r\nStep 279, loss: 0.07637105882167816, step time: 45.9437370300293ms\r\n",,terminal_output +1110,2209797,"TERMINAL",0,0,"Step 280, loss: 0.076137974858284, step time: 47.41835594177246ms\r\nStep 281, loss: 0.07582750916481018, step time: 46.58055305480957ms\r\nStep 282, loss: 0.07553427666425705, step time: 47.80840873718262ms\r\nStep 283, loss: 0.07528814673423767, step time: 46.02217674255371ms\r\nStep 284, loss: 0.07501587271690369, step time: 45.963287353515625ms\r\nStep 285, loss: 0.07459187507629395, step time: 45.87054252624512ms\r\nStep 286, loss: 0.07438541948795319, step time: 45.78852653503418ms\r\nStep 287, loss: 0.07410410791635513, step time: 45.97282409667969ms\r\nStep 288, loss: 0.0737539529800415, step time: 45.8989143371582ms\r\nStep 289, loss: 0.07359090447425842, step time: 46.09322547912598ms\r\nStep 290, loss: 0.07327999174594879, step time: 46.55313491821289ms\r\nStep 291, loss: 0.07304985076189041, step time: 46.09966278076172ms\r\nStep 292, loss: 0.07268930971622467, step time: 49.098968505859375ms\r\nStep 293, loss: 0.07242526113986969, step time: 46.270132064819336ms\r\nStep 294, loss: 0.07217749208211899, step time: 46.24438285827637ms\r\nStep 295, loss: 0.0718759149312973, step time: 45.992374420166016ms\r\nStep 296, loss: 0.07157216966152191, step time: 46.41866683959961ms\r\nStep 297, loss: 0.07137279212474823, step time: 46.21767997741699ms\r\nStep 298, loss: 0.07108281552791595, step time: 45.85623741149902ms\r\nStep 299, loss: 0.07086701691150665, step time: 45.98093032836914ms\r\nStep 300, loss: 0.0706799253821373, step time: 46.758174896240234ms\r\nStep 301, loss: 0.07043053954839706, step time: 46.13375663757324ms\r\nStep 302, loss: 0.07020868360996246, step time: 46.07558250427246ms\r\nStep 303, loss: 0.06992455571889877, step time: 45.78995704650879ms\r\nStep 304, loss: 0.0696907564997673, step time: 45.87745666503906ms\r\nStep 305, loss: 0.06941068917512894, step time: 45.78661918640137ms\r\nStep 306, loss: 0.06924719363451004, step time: 45.78709602355957ms\r\nStep 307, loss: 0.06904778629541397, step time: 45.9287166595459ms\r\nStep 308, loss: 0.06881127506494522, step time: 45.72248458862305ms\r\nStep 309, loss: 0.06864459812641144, step time: 45.682430267333984ms\r\nStep 310, loss: 0.0684380829334259, step time: 47.003984451293945ms\r\nStep 311, loss: 0.06831680983304977, step time: 46.091318130493164ms\r\nStep 312, loss: 0.06811091303825378, step time: 46.013593673706055ms\r\nStep 313, loss: 0.06794606149196625, step time: 46.02837562561035ms\r\nStep 314, loss: 0.06779175251722336, step time: 45.80426216125488ms\r\nStep 315, loss: 0.0676339641213417, step time: 46.218156814575195ms\r\nStep 316, loss: 0.06738792359828949, step time: 46.056270599365234ms\r\nStep 317, loss: 0.06730034947395325, step time: 45.99285125732422ms\r\nStep 318, loss: 0.06706058979034424, step time: 45.8064079284668ms\r\nStep 319, loss: 0.06706392019987106, step time: 45.82977294921875ms\r\nStep 320, loss: 0.0669608786702156, step time: 46.83232307434082ms\r\nStep 321, loss: 0.06675226241350174, step time: 46.55051231384277ms\r\nStep 322, loss: 0.06654760986566544, step time: 46.209096908569336ms\r\nStep 323, loss: 0.06643696129322052, step time: 45.94779014587402ms\r\nStep 324, loss: 0.0662575215101242, step time: 45.780181884765625ms\r\nStep 325, loss: 0.06613052636384964, step time: 45.86172103881836ms\r\nStep 326, loss: 0.06592053920030594, step time: 45.82929611206055ms\r\nStep 327, loss: 0.06577716767787933, step time: 45.7150936126709ms\r\nStep 328, loss: 0.06562990695238113, step time: 45.880794525146484ms\r\nStep 329, loss: 0.06546717137098312, step time: 45.86935043334961ms\r\n",,terminal_output +1111,2212793,"TERMINAL",0,0,"Step 330, loss: 0.0653725117444992, step time: 47.14393615722656ms\r\nStep 331, loss: 0.06514190137386322, step time: 46.209096908569336ms\r\nStep 332, loss: 0.06501270830631256, step time: 46.05817794799805ms\r\nStep 333, loss: 0.06474769860506058, step time: 45.920610427856445ms\r\nStep 334, loss: 0.06460423767566681, step time: 45.989274978637695ms\r\nStep 335, loss: 0.06440176069736481, step time: 45.784950256347656ms\r\nStep 336, loss: 0.06419705599546432, step time: 45.76611518859863ms\r\nStep 337, loss: 0.0640266016125679, step time: 45.82571983337402ms\r\nStep 338, loss: 0.06372962892055511, step time: 45.81308364868164ms\r\nStep 339, loss: 0.06349220126867294, step time: 45.784950256347656ms\r\nStep 340, loss: 0.06325624138116837, step time: 46.8745231628418ms\r\nStep 341, loss: 0.06309153884649277, step time: 46.1115837097168ms\r\nStep 342, loss: 0.06291694194078445, step time: 45.92132568359375ms\r\nStep 343, loss: 0.06271618604660034, step time: 45.87960243225098ms\r\nStep 344, loss: 0.06241578608751297, step time: 45.75204849243164ms\r\nStep 345, loss: 0.062133558094501495, step time: 45.73369026184082ms\r\nStep 346, loss: 0.061942242085933685, step time: 45.809268951416016ms\r\nStep 347, loss: 0.06170240044593811, step time: 45.7615852355957ms\r\nStep 348, loss: 0.061498187482357025, step time: 45.874595642089844ms\r\nStep 349, loss: 0.06120767444372177, step time: 45.87864875793457ms\r\nStep 350, loss: 0.0609157457947731, step time: 47.26219177246094ms\r\nStep 351, loss: 0.060665179044008255, step time: 46.23103141784668ms\r\nStep 352, loss: 0.06052877753973007, step time: 45.87149620056152ms\r\nStep 353, loss: 0.06037571653723717, step time: 45.98546028137207ms\r\nStep 354, loss: 0.060097143054008484, step time: 45.80044746398926ms\r\nStep 355, loss: 0.05985013023018837, step time: 45.8064079284668ms\r\nStep 356, loss: 0.05951275676488876, step time: 45.757293701171875ms\r\nStep 357, loss: 0.059310875833034515, step time: 45.98402976989746ms\r\nStep 358, loss: 0.05909541994333267, step time: 46.00954055786133ms\r\nStep 359, loss: 0.05887856334447861, step time: 46.088457107543945ms\r\nStep 360, loss: 0.05867847800254822, step time: 46.54240608215332ms\r\nStep 361, loss: 0.058498967438936234, step time: 46.12898826599121ms\r\nStep 362, loss: 0.058264583349227905, step time: 45.838356018066406ms\r\nStep 363, loss: 0.05806538835167885, step time: 46.00691795349121ms\r\nStep 364, loss: 0.05789678171277046, step time: 45.88675498962402ms\r\nStep 365, loss: 0.057719886302948, step time: 45.761823654174805ms\r\nStep 366, loss: 0.05745094642043114, step time: 46.036481857299805ms\r\nStep 367, loss: 0.05730215087532997, step time: 45.772552490234375ms\r\nStep 368, loss: 0.056957509368658066, step time: 46.013593673706055ms\r\nStep 369, loss: 0.05678064748644829, step time: 45.7301139831543ms\r\nStep 370, loss: 0.05666118115186691, step time: 46.690940856933594ms\r\nStep 371, loss: 0.056416016072034836, step time: 46.44155502319336ms\r\nStep 372, loss: 0.056251756846904755, step time: 46.07033729553223ms\r\nStep 373, loss: 0.05609983578324318, step time: 45.79949378967285ms\r\nStep 374, loss: 0.055840130895376205, step time: 45.9897518157959ms\r\nStep 375, loss: 0.055636633187532425, step time: 45.70126533508301ms\r\nStep 376, loss: 0.05541859194636345, step time: 45.93920707702637ms\r\nStep 377, loss: 0.05526508018374443, step time: 45.89128494262695ms\r\nStep 378, loss: 0.054966382682323456, step time: 45.85742950439453ms\r\nStep 379, loss: 0.05479765683412552, step time: 45.94683647155762ms\r\n",,terminal_output +1112,2216793,"TERMINAL",0,0,"Step 380, loss: 0.0546211414039135, step time: 47.58167266845703ms\r\nStep 381, loss: 0.054427701979875565, step time: 46.18525505065918ms\r\nStep 382, loss: 0.054172582924366, step time: 46.00858688354492ms\r\nStep 383, loss: 0.05399554595351219, step time: 45.723915100097656ms\r\nStep 384, loss: 0.05376838892698288, step time: 45.84240913391113ms\r\nStep 385, loss: 0.053532619029283524, step time: 45.65572738647461ms\r\nStep 386, loss: 0.0534253753721714, step time: 45.76373100280762ms\r\nStep 387, loss: 0.053206104785203934, step time: 45.80974578857422ms\r\nStep 388, loss: 0.05309030041098595, step time: 45.67360877990723ms\r\nStep 389, loss: 0.05300687253475189, step time: 45.88174819946289ms\r\nStep 390, loss: 0.05280674621462822, step time: 49.24273490905762ms\r\nStep 391, loss: 0.05270658805966377, step time: 46.22197151184082ms\r\nStep 392, loss: 0.05248569697141647, step time: 46.103715896606445ms\r\nStep 393, loss: 0.05233241990208626, step time: 45.83120346069336ms\r\nStep 394, loss: 0.05208786204457283, step time: 46.09417915344238ms\r\nStep 395, loss: 0.05200576037168503, step time: 45.793771743774414ms\r\nStep 396, loss: 0.051905058324337006, step time: 45.79901695251465ms\r\nStep 397, loss: 0.0516781359910965, step time: 45.91798782348633ms\r\nStep 398, loss: 0.051628727465867996, step time: 45.73488235473633ms\r\nStep 399, loss: 0.051363248378038406, step time: 45.87244987487793ms\r\nStep 400, loss: 0.051247648894786835, step time: 49.1943359375ms\r\nStep 401, loss: 0.051060836762189865, step time: 46.138763427734375ms\r\nStep 402, loss: 0.0509895421564579, step time: 46.10753059387207ms\r\nStep 403, loss: 0.05080699920654297, step time: 45.836687088012695ms\r\nStep 404, loss: 0.050582144409418106, step time: 45.90940475463867ms\r\nStep 405, loss: 0.05048595741391182, step time: 45.755863189697266ms\r\nStep 406, loss: 0.050302352756261826, step time: 46.01621627807617ms\r\nStep 407, loss: 0.050179362297058105, step time: 45.97926139831543ms\r\nStep 408, loss: 0.05002972111105919, step time: 45.85075378417969ms\r\nStep 409, loss: 0.04994766041636467, step time: 46.23770713806152ms\r\nStep 410, loss: 0.0497722290456295, step time: 46.803951263427734ms\r\nStep 411, loss: 0.04962889105081558, step time: 46.07367515563965ms\r\nStep 412, loss: 0.04951781406998634, step time: 46.174049377441406ms\r\nStep 413, loss: 0.0493377149105072, step time: 46.05269432067871ms\r\nStep 414, loss: 0.04919438064098358, step time: 45.894622802734375ms\r\nStep 415, loss: 0.049053966999053955, step time: 46.26297950744629ms\r\nStep 416, loss: 0.04890463128685951, step time: 45.713186264038086ms\r\nStep 417, loss: 0.048805464059114456, step time: 45.90153694152832ms\r\nStep 418, loss: 0.048637110739946365, step time: 45.87411880493164ms\r\nStep 419, loss: 0.04850006848573685, step time: 45.76611518859863ms\r\nStep 420, loss: 0.04826347902417183, step time: 46.80800437927246ms\r\nStep 421, loss: 0.04817840829491615, step time: 46.01120948791504ms\r\nStep 422, loss: 0.048021428287029266, step time: 45.85981369018555ms\r\nStep 423, loss: 0.047933951020240784, step time: 45.93849182128906ms\r\nStep 424, loss: 0.04780954122543335, step time: 45.790910720825195ms\r\nStep 425, loss: 0.047739218920469284, step time: 45.84980010986328ms\r\nStep 426, loss: 0.047541748732328415, step time: 45.838356018066406ms\r\nStep 427, loss: 0.04743979871273041, step time: 45.809268951416016ms\r\nStep 428, loss: 0.04729216545820236, step time: 45.91631889343262ms\r\nStep 429, loss: 0.04711773246526718, step time: 45.71938514709473ms\r\n",,terminal_output +1113,2218812,"TERMINAL",0,0,"Step 430, loss: 0.046998657286167145, step time: 47.64699935913086ms\r\nStep 431, loss: 0.04684519022703171, step time: 47.64270782470703ms\r\nStep 432, loss: 0.04671269655227661, step time: 47.1038818359375ms\r\nStep 433, loss: 0.046634968370199203, step time: 46.65040969848633ms\r\nStep 434, loss: 0.04644295200705528, step time: 46.79226875305176ms\r\nStep 435, loss: 0.04630482196807861, step time: 46.10872268676758ms\r\nStep 436, loss: 0.046171944588422775, step time: 45.93372344970703ms\r\nStep 437, loss: 0.046035345643758774, step time: 45.86505889892578ms\r\nStep 438, loss: 0.04586660489439964, step time: 45.76897621154785ms\r\nStep 439, loss: 0.045811597257852554, step time: 46.013832092285156ms\r\nStep 440, loss: 0.04565059393644333, step time: 46.78988456726074ms\r\nStep 441, loss: 0.045513324439525604, step time: 46.016693115234375ms\r\nStep 442, loss: 0.045293550938367844, step time: 45.981407165527344ms\r\nStep 443, loss: 0.04524049162864685, step time: 45.89104652404785ms\r\nStep 444, loss: 0.045102719217538834, step time: 45.82691192626953ms\r\nStep 445, loss: 0.04493100568652153, step time: 45.7305908203125ms\r\nStep 446, loss: 0.04479478299617767, step time: 45.76444625854492ms\r\nStep 447, loss: 0.044678445905447006, step time: 46.01883888244629ms\r\nStep 448, loss: 0.044491060078144073, step time: 45.739173889160156ms\r\nStep 449, loss: 0.04439760372042656, step time: 45.81594467163086ms\r\nStep 450, loss: 0.04434622451663017, step time: 49.955129623413086ms\r\nStep 451, loss: 0.04418065771460533, step time: 46.16117477416992ms\r\nStep 452, loss: 0.043999478220939636, step time: 46.19288444519043ms\r\nStep 453, loss: 0.043887533247470856, step time: 45.8979606628418ms\r\nStep 454, loss: 0.043766848742961884, step time: 45.833587646484375ms\r\nStep 455, loss: 0.04362934082746506, step time: 45.85385322570801ms\r\nStep 456, loss: 0.043502818793058395, step time: 45.72892189025879ms\r\nStep 457, loss: 0.04341705143451691, step time: 45.80354690551758ms\r\nStep 458, loss: 0.04327072575688362, step time: 45.914649963378906ms\r\nStep 459, loss: 0.04312596470117569, step time: 45.80497741699219ms\r\nStep 460, loss: 0.042989764362573624, step time: 49.84593391418457ms\r\nStep 461, loss: 0.04286859184503555, step time: 46.09537124633789ms\r\nStep 462, loss: 0.04276793822646141, step time: 46.100616455078125ms\r\nStep 463, loss: 0.042620591819286346, step time: 45.92609405517578ms\r\nStep 464, loss: 0.04255369305610657, step time: 45.677900314331055ms\r\nStep 465, loss: 0.04238807410001755, step time: 45.98855972290039ms\r\nStep 466, loss: 0.042238056659698486, step time: 45.80044746398926ms\r\nStep 467, loss: 0.04215313866734505, step time: 45.84336280822754ms\r\nStep 468, loss: 0.041989658027887344, step time: 46.03075981140137ms\r\nStep 469, loss: 0.04186162352561951, step time: 46.07415199279785ms\r\nStep 470, loss: 0.04175574332475662, step time: 46.84734344482422ms\r\nStep 471, loss: 0.04160935804247856, step time: 46.06938362121582ms\r\nStep 472, loss: 0.041538454592227936, step time: 45.856475830078125ms\r\nStep 473, loss: 0.041440386325120926, step time: 45.75967788696289ms\r\nStep 474, loss: 0.04132271185517311, step time: 45.69411277770996ms\r\nStep 475, loss: 0.04120954871177673, step time: 45.883893966674805ms\r\nStep 476, loss: 0.041115980595350266, step time: 45.93062400817871ms\r\nStep 477, loss: 0.04096100851893425, step time: 45.768022537231445ms\r\nStep 478, loss: 0.04085548222064972, step time: 45.97139358520508ms\r\nStep 479, loss: 0.04074744135141373, step time: 45.67408561706543ms\r\n",,terminal_output +1114,2221794,"TERMINAL",0,0,"Step 480, loss: 0.04063849523663521, step time: 46.7679500579834ms\r\nStep 481, loss: 0.040570322424173355, step time: 46.16856575012207ms\r\nStep 482, loss: 0.04037890210747719, step time: 45.69745063781738ms\r\nStep 483, loss: 0.04026443138718605, step time: 45.93968391418457ms\r\nStep 484, loss: 0.04015546292066574, step time: 45.67289352416992ms\r\nStep 485, loss: 0.040114253759384155, step time: 45.88961601257324ms\r\nStep 486, loss: 0.039957888424396515, step time: 45.8979606628418ms\r\nStep 487, loss: 0.03983588144183159, step time: 45.70651054382324ms\r\nStep 488, loss: 0.03973120450973511, step time: 46.5390682220459ms\r\nStep 489, loss: 0.03967049717903137, step time: 45.80521583557129ms\r\nStep 490, loss: 0.039549969136714935, step time: 46.69618606567383ms\r\nStep 491, loss: 0.03941856324672699, step time: 46.178340911865234ms\r\nStep 492, loss: 0.039231155067682266, step time: 45.868873596191406ms\r\nStep 493, loss: 0.03916379436850548, step time: 45.91703414916992ms\r\nStep 494, loss: 0.03910326212644577, step time: 45.74871063232422ms\r\nStep 495, loss: 0.038937561213970184, step time: 45.538902282714844ms\r\nStep 496, loss: 0.03882626071572304, step time: 45.775413513183594ms\r\nStep 497, loss: 0.03869733214378357, step time: 45.64833641052246ms\r\nStep 498, loss: 0.038609739392995834, step time: 45.87554931640625ms\r\nStep 499, loss: 0.03853563591837883, step time: 45.735836029052734ms\r\nStep 500, loss: 0.038406625390052795, step time: 46.6008186340332ms\r\nStep 501, loss: 0.03823421895503998, step time: 46.42510414123535ms\r\nStep 502, loss: 0.038172148168087006, step time: 45.80807685852051ms\r\nStep 503, loss: 0.03803599253296852, step time: 45.85862159729004ms\r\nStep 504, loss: 0.0379173718392849, step time: 45.6850528717041ms\r\nStep 505, loss: 0.0378207191824913, step time: 45.66073417663574ms\r\nStep 506, loss: 0.0376957505941391, step time: 45.889854431152344ms\r\nStep 507, loss: 0.03763372823596001, step time: 46.83518409729004ms\r\nStep 508, loss: 0.03747249394655228, step time: 45.78399658203125ms\r\nStep 509, loss: 0.037309467792510986, step time: 45.86338996887207ms\r\nStep 510, loss: 0.03721131384372711, step time: 46.71120643615723ms\r\nStep 511, loss: 0.03712719306349754, step time: 46.3099479675293ms\r\nStep 512, loss: 0.03692570701241493, step time: 45.95947265625ms\r\nStep 513, loss: 0.036869365721940994, step time: 48.89678955078125ms\r\nStep 514, loss: 0.0367463119328022, step time: 46.156883239746094ms\r\nStep 515, loss: 0.0366576611995697, step time: 45.67527770996094ms\r\nStep 516, loss: 0.03659388795495033, step time: 45.84765434265137ms\r\nStep 517, loss: 0.03643343225121498, step time: 46.22602462768555ms\r\nStep 518, loss: 0.03631895035505295, step time: 45.78876495361328ms\r\nStep 519, loss: 0.03623872250318527, step time: 45.89724540710449ms\r\nStep 520, loss: 0.036063533276319504, step time: 46.43654823303223ms\r\nStep 521, loss: 0.036000750958919525, step time: 46.224355697631836ms\r\nStep 522, loss: 0.0359303280711174, step time: 46.06270790100098ms\r\nStep 523, loss: 0.035844504833221436, step time: 45.81952095031738ms\r\nStep 524, loss: 0.035789623856544495, step time: 45.84622383117676ms\r\nStep 525, loss: 0.03567291051149368, step time: 45.70651054382324ms\r\nStep 526, loss: 0.035527344793081284, step time: 45.8219051361084ms\r\nStep 527, loss: 0.035424139350652695, step time: 45.806169509887695ms\r\nStep 528, loss: 0.035346150398254395, step time: 45.639753341674805ms\r\nStep 529, loss: 0.03525584936141968, step time: 45.88627815246582ms\r\n",,terminal_output +1115,2224794,"TERMINAL",0,0,"Step 530, loss: 0.03513805940747261, step time: 46.59104347229004ms\r\nStep 531, loss: 0.03504763916134834, step time: 46.08964920043945ms\r\nStep 532, loss: 0.03494219854474068, step time: 45.9287166595459ms\r\nStep 533, loss: 0.03487245365977287, step time: 45.67384719848633ms\r\nStep 534, loss: 0.03476179763674736, step time: 45.79567909240723ms\r\nStep 535, loss: 0.03470887243747711, step time: 45.75514793395996ms\r\nStep 536, loss: 0.034538283944129944, step time: 45.70794105529785ms\r\nStep 537, loss: 0.034491680562496185, step time: 45.94779014587402ms\r\nStep 538, loss: 0.034352999180555344, step time: 45.723676681518555ms\r\nStep 539, loss: 0.03425147756934166, step time: 45.91774940490723ms\r\nStep 540, loss: 0.03417300805449486, step time: 46.71669006347656ms\r\nStep 541, loss: 0.03404375910758972, step time: 46.019554138183594ms\r\nStep 542, loss: 0.03401113674044609, step time: 46.050310134887695ms\r\nStep 543, loss: 0.03392241895198822, step time: 45.75824737548828ms\r\nStep 544, loss: 0.033831700682640076, step time: 45.74704170227051ms\r\nStep 545, loss: 0.03370664268732071, step time: 45.7761287689209ms\r\nStep 546, loss: 0.03369370102882385, step time: 45.65906524658203ms\r\nStep 547, loss: 0.03361774608492851, step time: 45.79901695251465ms\r\nStep 548, loss: 0.033503562211990356, step time: 45.81260681152344ms\r\nStep 549, loss: 0.03341863304376602, step time: 45.63498497009277ms\r\nStep 550, loss: 0.03335917741060257, step time: 46.768903732299805ms\r\nStep 551, loss: 0.03330998122692108, step time: 46.330928802490234ms\r\nStep 552, loss: 0.033184964209795, step time: 45.96757888793945ms\r\nStep 553, loss: 0.03312890604138374, step time: 45.8219051361084ms\r\nStep 554, loss: 0.03302503004670143, step time: 45.7155704498291ms\r\nStep 555, loss: 0.032935790717601776, step time: 45.8369255065918ms\r\nStep 556, loss: 0.03283921256661415, step time: 45.65548896789551ms\r\nStep 557, loss: 0.032775215804576874, step time: 45.89414596557617ms\r\nStep 558, loss: 0.032742440700531006, step time: 45.85862159729004ms\r\nStep 559, loss: 0.03260652348399162, step time: 45.6843376159668ms\r\nStep 560, loss: 0.03261153772473335, step time: 47.15085029602051ms\r\nStep 561, loss: 0.032464053481817245, step time: 47.09959030151367ms\r\nStep 562, loss: 0.032387875020504, step time: 45.93920707702637ms\r\nStep 563, loss: 0.03238142281770706, step time: 45.93157768249512ms\r\nStep 564, loss: 0.032240286469459534, step time: 45.89700698852539ms\r\nStep 565, loss: 0.03213157877326012, step time: 45.78232765197754ms\r\nStep 566, loss: 0.03209364041686058, step time: 45.83573341369629ms\r\nStep 567, loss: 0.03196439519524574, step time: 45.641422271728516ms\r\nStep 568, loss: 0.03189235180616379, step time: 46.0965633392334ms\r\nStep 569, loss: 0.031922608613967896, step time: 45.79949378967285ms\r\nStep 570, loss: 0.03178475424647331, step time: 46.5998649597168ms\r\nStep 571, loss: 0.03165582939982414, step time: 46.56481742858887ms\r\nStep 572, loss: 0.03155865892767906, step time: 45.75991630554199ms\r\nStep 573, loss: 0.031510088592767715, step time: 45.95160484313965ms\r\nStep 574, loss: 0.03139469772577286, step time: 45.731544494628906ms\r\nStep 575, loss: 0.031306155025959015, step time: 45.78089714050293ms\r\nStep 576, loss: 0.03122919425368309, step time: 45.96519470214844ms\r\nStep 577, loss: 0.03115321695804596, step time: 45.84765434265137ms\r\nStep 578, loss: 0.031060650944709778, step time: 45.912981033325195ms\r\nStep 579, loss: 0.030945230275392532, step time: 45.88007926940918ms\r\n",,terminal_output +1116,2227795,"TERMINAL",0,0,"Step 580, loss: 0.030914373695850372, step time: 49.651384353637695ms\r\nStep 581, loss: 0.030813805758953094, step time: 46.21744155883789ms\r\nStep 582, loss: 0.030777180567383766, step time: 45.92275619506836ms\r\nStep 583, loss: 0.030685801059007645, step time: 45.784950256347656ms\r\nStep 584, loss: 0.030647799372673035, step time: 45.85385322570801ms\r\nStep 585, loss: 0.030558420345187187, step time: 45.77827453613281ms\r\nStep 586, loss: 0.03047318197786808, step time: 46.03934288024902ms\r\nStep 587, loss: 0.030392268672585487, step time: 45.82023620605469ms\r\nStep 588, loss: 0.030348891392350197, step time: 45.91941833496094ms\r\nStep 589, loss: 0.03019515797495842, step time: 45.89557647705078ms\r\nStep 590, loss: 0.030140023678541183, step time: 46.49519920349121ms\r\nStep 591, loss: 0.030028926208615303, step time: 46.17953300476074ms\r\nStep 592, loss: 0.030003715306520462, step time: 45.87984085083008ms\r\nStep 593, loss: 0.02989213541150093, step time: 45.74942588806152ms\r\nStep 594, loss: 0.029843291267752647, step time: 45.89247703552246ms\r\nStep 595, loss: 0.029787758365273476, step time: 45.667171478271484ms\r\nStep 596, loss: 0.029678447172045708, step time: 45.75943946838379ms\r\nStep 597, loss: 0.02961491420865059, step time: 45.7763671875ms\r\nStep 598, loss: 0.029496338218450546, step time: 45.76396942138672ms\r\nStep 599, loss: 0.0294750165194273, step time: 45.934200286865234ms\r\nStep 600, loss: 0.02937716618180275, step time: 46.729326248168945ms\r\nStep 601, loss: 0.029343638569116592, step time: 46.2183952331543ms\r\nStep 602, loss: 0.029252327978610992, step time: 46.006202697753906ms\r\nStep 603, loss: 0.02915688045322895, step time: 45.70746421813965ms\r\nStep 604, loss: 0.029091577976942062, step time: 45.86148262023926ms\r\nStep 605, loss: 0.028984354808926582, step time: 45.81427574157715ms\r\nStep 606, loss: 0.028933575376868248, step time: 45.77350616455078ms\r\nStep 607, loss: 0.02883506566286087, step time: 45.7911491394043ms\r\nStep 608, loss: 0.02881321683526039, step time: 45.719146728515625ms\r\nStep 609, loss: 0.028712989762425423, step time: 45.76396942138672ms\r\nStep 610, loss: 0.02865956351161003, step time: 46.674489974975586ms\r\nStep 611, loss: 0.02856297418475151, step time: 46.02694511413574ms\r\nStep 612, loss: 0.028515852987766266, step time: 46.06032371520996ms\r\nStep 613, loss: 0.028492771089076996, step time: 45.91774940490723ms\r\nStep 614, loss: 0.028419246897101402, step time: 45.88460922241211ms\r\nStep 615, loss: 0.028344247490167618, step time: 45.75514793395996ms\r\nStep 616, loss: 0.02829650230705738, step time: 45.665740966796875ms\r\nStep 617, loss: 0.028215158730745316, step time: 46.02670669555664ms\r\nStep 618, loss: 0.028174150735139847, step time: 45.72701454162598ms\r\nStep 619, loss: 0.028157662600278854, step time: 45.75085639953613ms\r\nStep 620, loss: 0.028061967343091965, step time: 46.68164253234863ms\r\nStep 621, loss: 0.027962788939476013, step time: 46.07033729553223ms\r\nStep 622, loss: 0.02793893963098526, step time: 45.94159126281738ms\r\nStep 623, loss: 0.02785157412290573, step time: 46.01001739501953ms\r\nStep 624, loss: 0.027786260470747948, step time: 45.70794105529785ms\r\nStep 625, loss: 0.02775668539106846, step time: 45.685529708862305ms\r\nStep 626, loss: 0.027700327336788177, step time: 45.621395111083984ms\r\nStep 627, loss: 0.027596045285463333, step time: 45.787811279296875ms\r\nStep 628, loss: 0.027558963745832443, step time: 45.70794105529785ms\r\nStep 629, loss: 0.027518803253769875, step time: 45.619964599609375ms\r\n",,terminal_output +1117,2231794,"TERMINAL",0,0,"Step 630, loss: 0.027447707951068878, step time: 46.81873321533203ms\r\nStep 631, loss: 0.027410540729761124, step time: 46.12874984741211ms\r\nStep 632, loss: 0.027316369116306305, step time: 45.961618423461914ms\r\nStep 633, loss: 0.027328262105584145, step time: 45.76373100280762ms\r\nStep 634, loss: 0.027253584936261177, step time: 45.816898345947266ms\r\nStep 635, loss: 0.02717701345682144, step time: 45.83144187927246ms\r\nStep 636, loss: 0.027067573741078377, step time: 45.71676254272461ms\r\nStep 637, loss: 0.027009552344679832, step time: 45.77445983886719ms\r\nStep 638, loss: 0.026949020102620125, step time: 45.76921463012695ms\r\nStep 639, loss: 0.026840252801775932, step time: 46.04935646057129ms\r\nStep 640, loss: 0.02680843137204647, step time: 46.8904972076416ms\r\nStep 641, loss: 0.026723310351371765, step time: 46.3104248046875ms\r\nStep 642, loss: 0.02666558511555195, step time: 45.97139358520508ms\r\nStep 643, loss: 0.02662455476820469, step time: 45.8683967590332ms\r\nStep 644, loss: 0.02661871910095215, step time: 45.75848579406738ms\r\nStep 645, loss: 0.026525067165493965, step time: 45.790910720825195ms\r\nStep 646, loss: 0.026442935690283775, step time: 45.6700325012207ms\r\nStep 647, loss: 0.026402216404676437, step time: 45.67408561706543ms\r\nStep 648, loss: 0.026367759332060814, step time: 45.80879211425781ms\r\nStep 649, loss: 0.026256579905748367, step time: 45.601606369018555ms\r\nStep 650, loss: 0.026182018220424652, step time: 49.22676086425781ms\r\nStep 651, loss: 0.02612103335559368, step time: 46.239614486694336ms\r\nStep 652, loss: 0.026070918887853622, step time: 45.81451416015625ms\r\nStep 653, loss: 0.02599293738603592, step time: 45.8521842956543ms\r\nStep 654, loss: 0.02591095305979252, step time: 46.07129096984863ms\r\nStep 655, loss: 0.025803327560424805, step time: 45.693159103393555ms\r\nStep 656, loss: 0.025787867605686188, step time: 45.77183723449707ms\r\nStep 657, loss: 0.025749916210770607, step time: 45.7150936126709ms\r\nStep 658, loss: 0.025734543800354004, step time: 45.92275619506836ms\r\nStep 659, loss: 0.02562892995774746, step time: 45.6690788269043ms\r\nStep 660, loss: 0.02556784637272358, step time: 49.66878890991211ms\r\nStep 661, loss: 0.025505701079964638, step time: 46.033620834350586ms\r\nStep 662, loss: 0.02550189569592476, step time: 45.79758644104004ms\r\nStep 663, loss: 0.02541446126997471, step time: 45.92466354370117ms\r\nStep 664, loss: 0.025349266827106476, step time: 45.72272300720215ms\r\nStep 665, loss: 0.02530590072274208, step time: 45.855045318603516ms\r\nStep 666, loss: 0.025242319330573082, step time: 45.580387115478516ms\r\nStep 667, loss: 0.025199607014656067, step time: 45.813560485839844ms\r\nStep 668, loss: 0.025164369493722916, step time: 45.934200286865234ms\r\nStep 669, loss: 0.02511531487107277, step time: 45.7308292388916ms\r\nStep 670, loss: 0.025111978873610497, step time: 46.58651351928711ms\r\nStep 671, loss: 0.025017108768224716, step time: 46.31161689758301ms\r\nStep 672, loss: 0.02498232200741768, step time: 45.92394828796387ms\r\nStep 673, loss: 0.02492164820432663, step time: 45.93324661254883ms\r\nStep 674, loss: 0.024807613343000412, step time: 45.72916030883789ms\r\nStep 675, loss: 0.02478521130979061, step time: 45.660972595214844ms\r\nStep 676, loss: 0.024709029123187065, step time: 46.027421951293945ms\r\nStep 677, loss: 0.02467113733291626, step time: 45.83549499511719ms\r\nStep 678, loss: 0.024656228721141815, step time: 45.770883560180664ms\r\nStep 679, loss: 0.02455924078822136, step time: 45.88198661804199ms\r\n",,terminal_output +1118,2233795,"TERMINAL",0,0,"Step 680, loss: 0.02448892965912819, step time: 46.86570167541504ms\r\nStep 681, loss: 0.024494200944900513, step time: 46.45872116088867ms\r\nStep 682, loss: 0.02443898655474186, step time: 45.92394828796387ms\r\nStep 683, loss: 0.024342451244592667, step time: 46.12255096435547ms\r\nStep 684, loss: 0.02434028871357441, step time: 46.75006866455078ms\r\nStep 685, loss: 0.024246281012892723, step time: 45.4859733581543ms\r\nStep 686, loss: 0.024222375825047493, step time: 46.11086845397949ms\r\nStep 687, loss: 0.024175221100449562, step time: 46.75650596618652ms\r\nStep 688, loss: 0.0240933895111084, step time: 47.19424247741699ms\r\nStep 689, loss: 0.024068161845207214, step time: 47.101497650146484ms\r\nStep 690, loss: 0.024010000750422478, step time: 47.46365547180176ms\r\nStep 691, loss: 0.02398175373673439, step time: 46.33045196533203ms\r\nStep 692, loss: 0.023951884359121323, step time: 45.92561721801758ms\r\nStep 693, loss: 0.023881573230028152, step time: 45.794010162353516ms\r\nStep 694, loss: 0.02386433444917202, step time: 45.655250549316406ms\r\nStep 695, loss: 0.02380351722240448, step time: 45.819997787475586ms\r\nStep 696, loss: 0.023829542100429535, step time: 45.686960220336914ms\r\nStep 697, loss: 0.023701535537838936, step time: 45.84670066833496ms\r\nStep 698, loss: 0.02368800714612007, step time: 45.77207565307617ms\r\nStep 699, loss: 0.023602258414030075, step time: 45.665740966796875ms\r\nStep 700, loss: 0.02361646667122841, step time: 46.97394371032715ms\r\nStep 701, loss: 0.023528166115283966, step time: 46.04530334472656ms\r\nStep 702, loss: 0.023475229740142822, step time: 45.93086242675781ms\r\nStep 703, loss: 0.023461345583200455, step time: 45.87984085083008ms\r\nStep 704, loss: 0.02339368872344494, step time: 45.75824737548828ms\r\nStep 705, loss: 0.023339204490184784, step time: 45.864105224609375ms\r\nStep 706, loss: 0.023304572328925133, step time: 45.701026916503906ms\r\nStep 707, loss: 0.023295355960726738, step time: 45.77994346618652ms\r\nStep 708, loss: 0.023210858926177025, step time: 45.77064514160156ms\r\nStep 709, loss: 0.023204337805509567, step time: 45.72772979736328ms\r\nStep 710, loss: 0.023148516193032265, step time: 47.8968620300293ms\r\nStep 711, loss: 0.02315288409590721, step time: 46.105384826660156ms\r\nStep 712, loss: 0.02308661863207817, step time: 46.04744911193848ms\r\nStep 713, loss: 0.023041002452373505, step time: 45.84050178527832ms\r\nStep 714, loss: 0.022987961769104004, step time: 45.81451416015625ms\r\nStep 715, loss: 0.02297099493443966, step time: 45.75300216674805ms\r\nStep 716, loss: 0.022929396480321884, step time: 45.78375816345215ms\r\nStep 717, loss: 0.022920675575733185, step time: 48.42329025268555ms\r\nStep 718, loss: 0.022862445563077927, step time: 46.187400817871094ms\r\nStep 719, loss: 0.022805778309702873, step time: 45.79043388366699ms\r\nStep 720, loss: 0.02272029034793377, step time: 49.96490478515625ms\r\nStep 721, loss: 0.022675739601254463, step time: 46.19717597961426ms\r\nStep 722, loss: 0.022625451907515526, step time: 45.8073616027832ms\r\nStep 723, loss: 0.022578660398721695, step time: 45.99571228027344ms\r\nStep 724, loss: 0.02253066562116146, step time: 45.79424858093262ms\r\nStep 725, loss: 0.0224941223859787, step time: 45.661211013793945ms\r\nStep 726, loss: 0.02245030365884304, step time: 45.79949378967285ms\r\nStep 727, loss: 0.022368447855114937, step time: 45.588016510009766ms\r\nStep 728, loss: 0.02233303338289261, step time: 45.92251777648926ms\r\nStep 729, loss: 0.0223365668207407, step time: 45.63450813293457ms\r\n",,terminal_output +1119,2236889,"TERMINAL",0,0,"Step 730, loss: 0.022293871268630028, step time: 46.86331748962402ms\r\nStep 731, loss: 0.02222541905939579, step time: 46.379804611206055ms\r\nStep 732, loss: 0.022198935970664024, step time: 46.16260528564453ms\r\nStep 733, loss: 0.0221698097884655, step time: 46.10776901245117ms\r\nStep 734, loss: 0.022096868604421616, step time: 45.79329490661621ms\r\nStep 735, loss: 0.022065529599785805, step time: 45.63784599304199ms\r\nStep 736, loss: 0.022038035094738007, step time: 45.77898979187012ms\r\nStep 737, loss: 0.021974967792630196, step time: 45.6852912902832ms\r\nStep 738, loss: 0.021944763138890266, step time: 45.792579650878906ms\r\nStep 739, loss: 0.02194894291460514, step time: 45.70627212524414ms\r\nStep 740, loss: 0.021885782480239868, step time: 46.656131744384766ms\r\nStep 741, loss: 0.02188960462808609, step time: 46.282291412353516ms\r\nStep 742, loss: 0.021809685975313187, step time: 45.850276947021484ms\r\nStep 743, loss: 0.021770644932985306, step time: 45.84503173828125ms\r\nStep 744, loss: 0.02170526050031185, step time: 45.73845863342285ms\r\nStep 745, loss: 0.0216855239123106, step time: 45.670270919799805ms\r\nStep 746, loss: 0.021623294800519943, step time: 45.82548141479492ms\r\nStep 747, loss: 0.021591005846858025, step time: 45.7611083984375ms\r\nStep 748, loss: 0.021532662212848663, step time: 45.75705528259277ms\r\nStep 749, loss: 0.021485544741153717, step time: 45.82619667053223ms\r\nStep 750, loss: 0.021459467709064484, step time: 46.936988830566406ms\r\nStep 751, loss: 0.021446362137794495, step time: 46.439409255981445ms\r\nStep 752, loss: 0.021368354558944702, step time: 45.891523361206055ms\r\nStep 753, loss: 0.021375300362706184, step time: 45.87435722351074ms\r\nStep 754, loss: 0.021327603608369827, step time: 45.871734619140625ms\r\nStep 755, loss: 0.021290723234415054, step time: 45.63403129577637ms\r\nStep 756, loss: 0.021274114027619362, step time: 45.781850814819336ms\r\nStep 757, loss: 0.021211333572864532, step time: 45.71795463562012ms\r\nStep 758, loss: 0.021163171157240868, step time: 45.780181884765625ms\r\nStep 759, loss: 0.021105816587805748, step time: 45.75014114379883ms\r\nStep 760, loss: 0.021091729402542114, step time: 46.57387733459473ms\r\nStep 761, loss: 0.02103104442358017, step time: 46.16856575012207ms\r\nStep 762, loss: 0.020975816994905472, step time: 45.798301696777344ms\r\nStep 763, loss: 0.02099854126572609, step time: 45.691728591918945ms\r\nStep 764, loss: 0.020929841324687004, step time: 45.73249816894531ms\r\nStep 765, loss: 0.020914141088724136, step time: 45.49717903137207ms\r\nStep 766, loss: 0.02087855339050293, step time: 45.87268829345703ms\r\nStep 767, loss: 0.02085891366004944, step time: 45.75777053833008ms\r\nStep 768, loss: 0.020818429067730904, step time: 45.67575454711914ms\r\nStep 769, loss: 0.0207691453397274, step time: 45.885562896728516ms\r\nStep 770, loss: 0.02075381390750408, step time: 47.22261428833008ms\r\nStep 771, loss: 0.02072969824075699, step time: 46.417236328125ms\r\nStep 772, loss: 0.020679855719208717, step time: 46.35882377624512ms\r\nStep 773, loss: 0.02064150758087635, step time: 45.69721221923828ms\r\nStep 774, loss: 0.020587455481290817, step time: 46.0054874420166ms\r\nStep 775, loss: 0.020571550354361534, step time: 45.870065689086914ms\r\nStep 776, loss: 0.020575756207108498, step time: 45.864105224609375ms\r\nStep 777, loss: 0.020497286692261696, step time: 45.5930233001709ms\r\nStep 778, loss: 0.020489435642957687, step time: 45.6850528717041ms\r\n",,terminal_output +1120,2239853,"TERMINAL",0,0,"Step 779, loss: 0.020452238619327545, step time: 46.34594917297363ms\r\nStep 780, loss: 0.02043081820011139, step time: 46.49782180786133ms\r\nStep 781, loss: 0.02037845179438591, step time: 46.19431495666504ms\r\nStep 782, loss: 0.020330555737018585, step time: 45.85695266723633ms\r\nStep 783, loss: 0.02034565433859825, step time: 45.7615852355957ms\r\nStep 784, loss: 0.02027350850403309, step time: 49.26776885986328ms\r\nStep 785, loss: 0.020241662859916687, step time: 45.754432678222656ms\r\nStep 786, loss: 0.02022276446223259, step time: 45.75395584106445ms\r\nStep 787, loss: 0.020183013752102852, step time: 45.726776123046875ms\r\nStep 788, loss: 0.02015029452741146, step time: 45.80354690551758ms\r\nStep 789, loss: 0.020141296088695526, step time: 46.585798263549805ms\r\nStep 790, loss: 0.020109446719288826, step time: 46.714067459106445ms\r\nStep 791, loss: 0.020094679668545723, step time: 46.091556549072266ms\r\nStep 792, loss: 0.020025765523314476, step time: 48.485517501831055ms\r\nStep 793, loss: 0.019991286098957062, step time: 45.754194259643555ms\r\nStep 794, loss: 0.01997600682079792, step time: 46.03981971740723ms\r\nStep 795, loss: 0.01992723159492016, step time: 45.88651657104492ms\r\nStep 796, loss: 0.01989840343594551, step time: 45.744895935058594ms\r\nStep 797, loss: 0.019851544871926308, step time: 45.80521583557129ms\r\nStep 798, loss: 0.019809072837233543, step time: 45.729875564575195ms\r\nStep 799, loss: 0.019761711359024048, step time: 45.88913917541504ms\r\nStep 800, loss: 0.019733959808945656, step time: 46.71764373779297ms\r\nStep 801, loss: 0.019727246835827827, step time: 46.11468315124512ms\r\nStep 802, loss: 0.019694669172167778, step time: 45.95327377319336ms\r\nStep 803, loss: 0.0196965504437685, step time: 45.74990272521973ms\r\nStep 804, loss: 0.019661307334899902, step time: 45.615434646606445ms\r\nStep 805, loss: 0.019608084112405777, step time: 45.546531677246094ms\r\nStep 806, loss: 0.019579553976655006, step time: 45.87292671203613ms\r\nStep 807, loss: 0.019606655463576317, step time: 45.96757888793945ms\r\nStep 808, loss: 0.019544316455721855, step time: 45.74084281921387ms\r\nStep 809, loss: 0.019516034051775932, step time: 46.05412483215332ms\r\nStep 810, loss: 0.01948408968746662, step time: 46.746253967285156ms\r\nStep 811, loss: 0.01945354975759983, step time: 45.98379135131836ms\r\nStep 812, loss: 0.019401628524065018, step time: 45.989990234375ms\r\nStep 813, loss: 0.019383559003472328, step time: 45.969247817993164ms\r\nStep 814, loss: 0.019360581412911415, step time: 46.0507869720459ms\r\nStep 815, loss: 0.01931968703866005, step time: 45.83621025085449ms\r\nStep 816, loss: 0.019305381923913956, step time: 45.75467109680176ms\r\nStep 817, loss: 0.019259534776210785, step time: 46.00262641906738ms\r\nStep 818, loss: 0.01924855448305607, step time: 45.67599296569824ms\r\nStep 819, loss: 0.01916942000389099, step time: 46.38171195983887ms\r\nStep 820, loss: 0.019194254651665688, step time: 47.15108871459961ms\r\nStep 821, loss: 0.0191489290446043, step time: 46.30732536315918ms\r\nStep 822, loss: 0.01912991888821125, step time: 45.89128494262695ms\r\nStep 823, loss: 0.01913813129067421, step time: 45.89223861694336ms\r\nStep 824, loss: 0.019081082195043564, step time: 45.720577239990234ms\r\nStep 825, loss: 0.01904938742518425, step time: 45.72892189025879ms\r\nStep 826, loss: 0.019046388566493988, step time: 45.66621780395508ms\r\nStep 827, loss: 0.019028231501579285, step time: 45.66335678100586ms\r\nStep 828, loss: 0.018988478928804398, step time: 45.6690788269043ms\r\nStep 829, loss: 0.01893296092748642, step time: 45.647382736206055ms\r\n",,terminal_output +1121,2240406,"TERMINAL",0,0,"Step 830, loss: 0.01894572004675865, step time: 46.89788818359375ms\r\nStep 831, loss: 0.018917668610811234, step time: 46.03171348571777ms\r\nStep 832, loss: 0.01887761987745762, step time: 45.93062400817871ms\r\nStep 833, loss: 0.018850449472665787, step time: 45.78590393066406ms\r\nStep 834, loss: 0.01882845349609852, step time: 45.77159881591797ms\r\nStep 835, loss: 0.018753977492451668, step time: 45.73178291320801ms\r\nStep 836, loss: 0.018787933513522148, step time: 45.963287353515625ms\r\nStep 837, loss: 0.01873571239411831, step time: 45.65572738647461ms\r\nStep 838, loss: 0.018713003024458885, step time: 45.82405090332031ms\r\nStep 839, loss: 0.018695110455155373, step time: 45.564889907836914ms\r\n",,terminal_output +1122,2241010,"TERMINAL",0,0,"Step 840, loss: 0.018677618354558945, step time: 46.738624572753906ms\r\nStep 841, loss: 0.018675988540053368, step time: 46.03695869445801ms\r\nStep 842, loss: 0.018609212711453438, step time: 45.7310676574707ms\r\nStep 843, loss: 0.018590101972222328, step time: 45.89033126831055ms\r\nStep 844, loss: 0.018573518842458725, step time: 45.65095901489258ms\r\nStep 845, loss: 0.018500978127121925, step time: 45.838117599487305ms\r\nStep 846, loss: 0.018498612567782402, step time: 45.842885971069336ms\r\nStep 847, loss: 0.018438318744301796, step time: 45.844078063964844ms\r\nStep 848, loss: 0.01845388300716877, step time: 46.3862419128418ms\r\nStep 849, loss: 0.018434682860970497, step time: 45.75467109680176ms\r\n",,terminal_output +1123,2241563,"TERMINAL",0,0,"Step 850, loss: 0.018399646505713463, step time: 46.918392181396484ms\r\nStep 851, loss: 0.01837916113436222, step time: 46.12302780151367ms\r\nStep 852, loss: 0.018359674140810966, step time: 45.847415924072266ms\r\nStep 853, loss: 0.018330242484807968, step time: 45.86291313171387ms\r\nStep 854, loss: 0.018301833420991898, step time: 45.7301139831543ms\r\nStep 855, loss: 0.018267471343278885, step time: 45.73678970336914ms\r\nStep 856, loss: 0.018253786489367485, step time: 45.816898345947266ms\r\nStep 857, loss: 0.018201688304543495, step time: 45.75371742248535ms\r\nStep 858, loss: 0.01820642501115799, step time: 45.84479331970215ms\r\n",,terminal_output +1124,2241617,"TERMINAL",0,0,"Step 859, loss: 0.01818573847413063, step time: 48.69198799133301ms\r\n",,terminal_output +1125,2242216,"TERMINAL",0,0,"Step 860, loss: 0.018158769235014915, step time: 46.59748077392578ms\r\nStep 861, loss: 0.018128810450434685, step time: 46.16856575012207ms\r\nStep 862, loss: 0.018094517290592194, step time: 45.82548141479492ms\r\nStep 863, loss: 0.01808425597846508, step time: 45.88580131530762ms\r\nStep 864, loss: 0.01805363968014717, step time: 45.77374458312988ms\r\nStep 865, loss: 0.018028387799859047, step time: 45.46022415161133ms\r\nStep 866, loss: 0.017970232293009758, step time: 45.821189880371094ms\r\nStep 867, loss: 0.017961978912353516, step time: 45.67313194274902ms\r\nStep 868, loss: 0.01794438809156418, step time: 45.74894905090332ms\r\nStep 869, loss: 0.017906539142131805, step time: 45.81260681152344ms\r\n",,terminal_output +1126,2247799,"TERMINAL",0,0,"Step 870, loss: 0.017875608056783676, step time: 49.558162689208984ms\r\nStep 871, loss: 0.017864055931568146, step time: 46.201229095458984ms\r\nStep 872, loss: 0.017859799787402153, step time: 45.85766792297363ms\r\nStep 873, loss: 0.017827074974775314, step time: 45.80235481262207ms\r\nStep 874, loss: 0.01781013235449791, step time: 45.65834999084473ms\r\nStep 875, loss: 0.017805777490139008, step time: 45.510292053222656ms\r\nStep 876, loss: 0.017772536724805832, step time: 45.80855369567871ms\r\nStep 877, loss: 0.01771852932870388, step time: 45.60494422912598ms\r\nStep 878, loss: 0.017672615125775337, step time: 45.69196701049805ms\r\nStep 879, loss: 0.017663029953837395, step time: 45.69387435913086ms\r\nStep 880, loss: 0.017634160816669464, step time: 46.74553871154785ms\r\nStep 881, loss: 0.017634425312280655, step time: 46.247005462646484ms\r\nStep 882, loss: 0.017615970224142075, step time: 45.87888717651367ms\r\nStep 883, loss: 0.01756751351058483, step time: 45.815229415893555ms\r\nStep 884, loss: 0.017566973343491554, step time: 45.71676254272461ms\r\nStep 885, loss: 0.017523251473903656, step time: 45.709848403930664ms\r\nStep 886, loss: 0.01752016320824623, step time: 45.84360122680664ms\r\nStep 887, loss: 0.017497271299362183, step time: 45.732736587524414ms\r\nStep 888, loss: 0.01743968389928341, step time: 45.88007926940918ms\r\nStep 889, loss: 0.017452772706747055, step time: 45.78518867492676ms\r\nStep 890, loss: 0.017418038100004196, step time: 47.01495170593262ms\r\nStep 891, loss: 0.017413977533578873, step time: 46.27561569213867ms\r\nStep 892, loss: 0.01737133041024208, step time: 45.83740234375ms\r\nStep 893, loss: 0.017360109835863113, step time: 45.68839073181152ms\r\nStep 894, loss: 0.017331773415207863, step time: 45.81141471862793ms\r\nStep 895, loss: 0.017292579635977745, step time: 45.64046859741211ms\r\nStep 896, loss: 0.01730389893054962, step time: 45.800209045410156ms\r\nStep 897, loss: 0.017285140231251717, step time: 45.75371742248535ms\r\nStep 898, loss: 0.017232997342944145, step time: 45.614004135131836ms\r\nStep 899, loss: 0.017197242006659508, step time: 45.87960243225098ms\r\nStep 900, loss: 0.017188342288136482, step time: 46.58985137939453ms\r\nStep 901, loss: 0.01716802269220352, step time: 46.19741439819336ms\r\nStep 902, loss: 0.017136024311184883, step time: 45.813798904418945ms\r\nStep 903, loss: 0.01709597185254097, step time: 45.60661315917969ms\r\nStep 904, loss: 0.017091581597924232, step time: 45.76683044433594ms\r\nStep 905, loss: 0.017081202939152718, step time: 45.561790466308594ms\r\nStep 906, loss: 0.017085708677768707, step time: 45.67313194274902ms\r\nStep 907, loss: 0.017041856423020363, step time: 45.69435119628906ms\r\nStep 908, loss: 0.017033355310559273, step time: 45.691490173339844ms\r\nStep 909, loss: 0.01699857972562313, step time: 45.781850814819336ms\r\nStep 910, loss: 0.016964759677648544, step time: 46.66733741760254ms\r\nStep 911, loss: 0.016937458887696266, step time: 46.23222351074219ms\r\nStep 912, loss: 0.016959158703684807, step time: 45.91774940490723ms\r\nStep 913, loss: 0.016937604174017906, step time: 45.62568664550781ms\r\nStep 914, loss: 0.01692427322268486, step time: 45.932769775390625ms\r\nStep 915, loss: 0.0168780405074358, step time: 45.72916030883789ms\r\nStep 916, loss: 0.01685374043881893, step time: 45.9136962890625ms\r\nStep 917, loss: 0.01684083789587021, step time: 45.86195945739746ms\r\nStep 918, loss: 0.016827117651700974, step time: 45.82953453063965ms\r\nStep 919, loss: 0.016826583072543144, step time: 45.84169387817383ms\r\nStep 920, loss: 0.016776470467448235, step time: 46.39005661010742ms\r\nStep 921, loss: 0.016767604276537895, step time: 46.02384567260742ms\r\nStep 922, loss: 0.016733625903725624, step time: 45.775413513183594ms\r\nStep 923, loss: 0.016725393012166023, step time: 45.64952850341797ms\r\nStep 924, loss: 0.01666729524731636, step time: 46.288490295410156ms\r\nStep 925, loss: 0.016674114391207695, step time: 45.62067985534668ms\r\nStep 926, loss: 0.016660325229167938, step time: 45.72105407714844ms\r\nStep 927, loss: 0.016634317114949226, step time: 45.63736915588379ms\r\nStep 928, loss: 0.016635946929454803, step time: 45.584678649902344ms\r\nStep 929, loss: 0.01661754585802555, step time: 45.80211639404297ms\r\nStep 930, loss: 0.01659923791885376, step time: 46.66328430175781ms\r\nStep 931, loss: 0.01657620631158352, step time: 46.149492263793945ms\r\nStep 932, loss: 0.016539093106985092, step time: 45.97759246826172ms\r\nStep 933, loss: 0.016509415581822395, step time: 45.796871185302734ms\r\nStep 934, loss: 0.016480915248394012, step time: 45.91727256774902ms\r\nStep 935, loss: 0.016452398151159286, step time: 45.64404487609863ms\r\nStep 936, loss: 0.016432534903287888, step time: 45.56107521057129ms\r\nStep 937, loss: 0.016432711854577065, step time: 45.86625099182129ms\r\nStep 938, loss: 0.01640881411731243, step time: 46.21744155883789ms\r\nStep 939, loss: 0.016409100964665413, step time: 45.80807685852051ms\r\nStep 940, loss: 0.01638898067176342, step time: 46.61846160888672ms\r\nStep 941, loss: 0.016384761780500412, step time: 46.07343673706055ms\r\nStep 942, loss: 0.016334164887666702, step time: 45.96877098083496ms\r\nStep 943, loss: 0.016314921900629997, step time: 45.8376407623291ms\r\nStep 944, loss: 0.016267282888293266, step time: 45.864105224609375ms\r\nStep 945, loss: 0.016253594309091568, step time: 45.641183853149414ms\r\nStep 946, loss: 0.016239766031503677, step time: 45.61281204223633ms\r\nStep 947, loss: 0.016224369406700134, step time: 46.51379585266113ms\r\nStep 948, loss: 0.016196254640817642, step time: 46.98753356933594ms\r\nStep 949, loss: 0.016157737001776695, step time: 47.30987548828125ms\r\nStep 950, loss: 0.01616392843425274, step time: 50.37188529968262ms\r\nStep 951, loss: 0.016135025769472122, step time: 46.401262283325195ms\r\nStep 952, loss: 0.016137167811393738, step time: 45.86482048034668ms\r\nStep 953, loss: 0.016102267429232597, step time: 46.01454734802246ms\r\nStep 954, loss: 0.01608704961836338, step time: 45.77159881591797ms\r\nStep 955, loss: 0.01608344353735447, step time: 45.6392765045166ms\r\nStep 956, loss: 0.016060421243309975, step time: 45.88675498962402ms\r\nStep 957, loss: 0.016038142144680023, step time: 45.676231384277344ms\r\nStep 958, loss: 0.016002662479877472, step time: 45.89247703552246ms\r\nStep 959, loss: 0.016016872599720955, step time: 45.786380767822266ms\r\n",,terminal_output +1127,2249795,"TERMINAL",0,0,"Step 960, loss: 0.015996364876627922, step time: 46.942710876464844ms\r\nStep 961, loss: 0.016003744676709175, step time: 46.1881160736084ms\r\nStep 962, loss: 0.015984687954187393, step time: 45.61257362365723ms\r\nStep 963, loss: 0.015968292951583862, step time: 45.98045349121094ms\r\nStep 964, loss: 0.015901831910014153, step time: 45.708417892456055ms\r\nStep 965, loss: 0.015915365889668465, step time: 45.751094818115234ms\r\nStep 966, loss: 0.015879560261964798, step time: 45.75157165527344ms\r\nStep 967, loss: 0.015823969617486, step time: 45.58205604553223ms\r\nStep 968, loss: 0.015805739909410477, step time: 45.96090316772461ms\r\nStep 969, loss: 0.015790218487381935, step time: 45.656442642211914ms\r\nStep 970, loss: 0.015778623521327972, step time: 46.73433303833008ms\r\nStep 971, loss: 0.015770981088280678, step time: 46.053409576416016ms\r\nStep 972, loss: 0.015751957893371582, step time: 224.1804599761963ms\r\nStep 973, loss: 0.015732096508145332, step time: 46.83947563171387ms\r\nStep 974, loss: 0.015713268890976906, step time: 46.20194435119629ms\r\nStep 975, loss: 0.015691259875893593, step time: 46.05603218078613ms\r\nStep 976, loss: 0.01567678153514862, step time: 45.868635177612305ms\r\nStep 977, loss: 0.015663906931877136, step time: 45.768022537231445ms\r\nStep 978, loss: 0.015661999583244324, step time: 45.66025733947754ms\r\nStep 979, loss: 0.015642551705241203, step time: 45.64833641052246ms\r\nStep 980, loss: 0.01562640070915222, step time: 46.98038101196289ms\r\nStep 981, loss: 0.015571274794638157, step time: 46.13614082336426ms\r\nStep 982, loss: 0.015586500987410545, step time: 46.02384567260742ms\r\nStep 983, loss: 0.015557674691081047, step time: 45.850515365600586ms\r\nStep 984, loss: 0.015544932335615158, step time: 45.69602012634277ms\r\nStep 985, loss: 0.015561300329864025, step time: 45.74418067932129ms\r\nStep 986, loss: 0.015515663661062717, step time: 45.609235763549805ms\r\nStep 987, loss: 0.015485221520066261, step time: 45.668601989746094ms\r\nStep 988, loss: 0.0154954195022583, step time: 47.3027229309082ms\r\nStep 989, loss: 0.015481142327189445, step time: 45.679330825805664ms\r\n",,terminal_output +1128,2252798,"TERMINAL",0,0,"Step 990, loss: 0.015450418926775455, step time: 46.645402908325195ms\r\nStep 991, loss: 0.015435505658388138, step time: 45.98712921142578ms\r\nStep 992, loss: 0.015439153648912907, step time: 45.844078063964844ms\r\nStep 993, loss: 0.015430083498358727, step time: 45.82571983337402ms\r\nStep 994, loss: 0.015399839729070663, step time: 45.720815658569336ms\r\nStep 995, loss: 0.015399446710944176, step time: 45.847177505493164ms\r\nStep 996, loss: 0.015377967618405819, step time: 45.716047286987305ms\r\nStep 997, loss: 0.015366456471383572, step time: 45.755624771118164ms\r\nStep 998, loss: 0.015346099622547626, step time: 45.71986198425293ms\r\nStep 999, loss: 0.015333150513470173, step time: 45.6690788269043ms\r\nStep 1000, loss: 0.015324696898460388, step time: 46.8442440032959ms\r\nStep 1001, loss: 0.015286007896065712, step time: 46.099185943603516ms\r\nStep 1002, loss: 0.015303664840757847, step time: 45.87888717651367ms\r\nStep 1003, loss: 0.01526324637234211, step time: 46.0052490234375ms\r\nStep 1004, loss: 0.015257548540830612, step time: 45.6387996673584ms\r\nStep 1005, loss: 0.01526135578751564, step time: 45.93205451965332ms\r\nStep 1006, loss: 0.015239177271723747, step time: 46.24772071838379ms\r\nStep 1007, loss: 0.015239701606333256, step time: 45.88747024536133ms\r\nStep 1008, loss: 0.015193934552371502, step time: 46.05245590209961ms\r\nStep 1009, loss: 0.015188436955213547, step time: 45.76253890991211ms\r\nStep 1010, loss: 0.015173954889178276, step time: 47.3785400390625ms\r\nStep 1011, loss: 0.015158039517700672, step time: 46.12541198730469ms\r\nStep 1012, loss: 0.015149847604334354, step time: 45.89128494262695ms\r\nStep 1013, loss: 0.015110279433429241, step time: 45.870304107666016ms\r\nStep 1014, loss: 0.015091965906322002, step time: 45.69220542907715ms\r\nStep 1015, loss: 0.01507083885371685, step time: 45.88460922241211ms\r\nStep 1016, loss: 0.015071161091327667, step time: 45.758724212646484ms\r\nStep 1017, loss: 0.01504660677164793, step time: 45.76516151428223ms\r\nStep 1018, loss: 0.015044095925986767, step time: 45.7921028137207ms\r\nStep 1019, loss: 0.015019764192402363, step time: 45.62973976135254ms\r\nStep 1020, loss: 0.015007518231868744, step time: 49.94392395019531ms\r\nStep 1021, loss: 0.015019519254565239, step time: 46.04053497314453ms\r\nStep 1022, loss: 0.014994542114436626, step time: 45.93634605407715ms\r\nStep 1023, loss: 0.014974221587181091, step time: 45.82953453063965ms\r\nStep 1024, loss: 0.014969727024435997, step time: 45.74155807495117ms\r\nStep 1025, loss: 0.01495416834950447, step time: 46.06771469116211ms\r\nStep 1026, loss: 0.014926637522876263, step time: 45.865535736083984ms\r\nStep 1027, loss: 0.014908385463058949, step time: 45.748233795166016ms\r\nStep 1028, loss: 0.014906988479197025, step time: 45.89033126831055ms\r\nStep 1029, loss: 0.014890237711369991, step time: 45.69697380065918ms\r\nStep 1030, loss: 0.014888935722410679, step time: 49.6523380279541ms\r\nStep 1031, loss: 0.014879435300827026, step time: 46.0972785949707ms\r\nStep 1032, loss: 0.014844418503344059, step time: 45.983314514160156ms\r\nStep 1033, loss: 0.014858911745250225, step time: 45.90940475463867ms\r\nStep 1034, loss: 0.014828472398221493, step time: 45.65024375915527ms\r\nStep 1035, loss: 0.014827064238488674, step time: 45.804500579833984ms\r\nStep 1036, loss: 0.014807643368840218, step time: 45.847415924072266ms\r\nStep 1037, loss: 0.014788391999900341, step time: 45.68839073181152ms\r\nStep 1038, loss: 0.014782319776713848, step time: 45.94230651855469ms\r\nStep 1039, loss: 0.014768815599381924, step time: 45.790672302246094ms\r\n",,terminal_output +1129,2255849,"TERMINAL",0,0,"Step 1040, loss: 0.014754608273506165, step time: 47.171592712402344ms\r\nStep 1041, loss: 0.014754396863281727, step time: 46.07343673706055ms\r\nStep 1042, loss: 0.014737952500581741, step time: 45.801639556884766ms\r\nStep 1043, loss: 0.014711746945977211, step time: 45.89700698852539ms\r\nStep 1044, loss: 0.014717292040586472, step time: 45.61567306518555ms\r\nStep 1045, loss: 0.014682984910905361, step time: 45.952558517456055ms\r\nStep 1046, loss: 0.014680668711662292, step time: 45.754194259643555ms\r\nStep 1047, loss: 0.01465294137597084, step time: 45.729875564575195ms\r\nStep 1048, loss: 0.014637191779911518, step time: 45.94111442565918ms\r\nStep 1049, loss: 0.014631382189691067, step time: 45.68147659301758ms\r\nStep 1050, loss: 0.014616329222917557, step time: 46.81396484375ms\r\nStep 1051, loss: 0.014610624872148037, step time: 46.18644714355469ms\r\nStep 1052, loss: 0.014590089209377766, step time: 45.82023620605469ms\r\nStep 1053, loss: 0.014600538648664951, step time: 45.84383964538574ms\r\nStep 1054, loss: 0.014574127271771431, step time: 45.676231384277344ms\r\nStep 1055, loss: 0.014563548378646374, step time: 45.793771743774414ms\r\nStep 1056, loss: 0.01456405594944954, step time: 45.71413993835449ms\r\nStep 1057, loss: 0.01454420480877161, step time: 45.729875564575195ms\r\nStep 1058, loss: 0.014514744281768799, step time: 45.778751373291016ms\r\nStep 1059, loss: 0.014503832906484604, step time: 45.73655128479004ms\r\nStep 1060, loss: 0.014488458633422852, step time: 46.843528747558594ms\r\nStep 1061, loss: 0.014475315809249878, step time: 46.46587371826172ms\r\nStep 1062, loss: 0.014457771554589272, step time: 45.760393142700195ms\r\nStep 1063, loss: 0.014448566362261772, step time: 45.79329490661621ms\r\nStep 1064, loss: 0.01447377260774374, step time: 45.74131965637207ms\r\nStep 1065, loss: 0.014409095048904419, step time: 45.868873596191406ms\r\nStep 1066, loss: 0.014403517358005047, step time: 45.716285705566406ms\r\nStep 1067, loss: 0.014411872252821922, step time: 45.70603370666504ms\r\nStep 1068, loss: 0.01437339186668396, step time: 45.851707458496094ms\r\nStep 1069, loss: 0.01436277199536562, step time: 45.78852653503418ms\r\nStep 1070, loss: 0.014357809908688068, step time: 46.86427116394043ms\r\nStep 1071, loss: 0.01433347724378109, step time: 46.01573944091797ms\r\nStep 1072, loss: 0.014318110421299934, step time: 45.78661918640137ms\r\nStep 1073, loss: 0.014312194660305977, step time: 45.89033126831055ms\r\nStep 1074, loss: 0.014309859834611416, step time: 45.76516151428223ms\r\nStep 1075, loss: 0.014303309842944145, step time: 45.62067985534668ms\r\nStep 1076, loss: 0.014283797703683376, step time: 45.90463638305664ms\r\nStep 1077, loss: 0.014284845441579819, step time: 45.835256576538086ms\r\nStep 1078, loss: 0.014270694926381111, step time: 45.873403549194336ms\r\nStep 1079, loss: 0.014253051951527596, step time: 45.70341110229492ms\r\nStep 1080, loss: 0.01423695683479309, step time: 47.68943786621094ms\r\nStep 1081, loss: 0.014227268286049366, step time: 46.13232612609863ms\r\nStep 1082, loss: 0.014202190563082695, step time: 45.71652412414551ms\r\nStep 1083, loss: 0.014202076941728592, step time: 45.839548110961914ms\r\nStep 1084, loss: 0.014197261072695255, step time: 45.78995704650879ms\r\nStep 1085, loss: 0.014165847562253475, step time: 45.75538635253906ms\r\nStep 1086, loss: 0.014145967550575733, step time: 45.743703842163086ms\r\nStep 1087, loss: 0.014136291109025478, step time: 45.653343200683594ms\r\nStep 1088, loss: 0.014138100668787956, step time: 45.92418670654297ms\r\nStep 1089, loss: 0.014120897278189659, step time: 45.61138153076172ms\r\n",,terminal_output +1130,2256393,"TERMINAL",0,0,"Step 1090, loss: 0.014109330251812935, step time: 49.22676086425781ms\r\nStep 1091, loss: 0.01409104373306036, step time: 46.135902404785156ms\r\nStep 1092, loss: 0.014102074317634106, step time: 45.72272300720215ms\r\nStep 1093, loss: 0.01407042145729065, step time: 45.94278335571289ms\r\nStep 1094, loss: 0.014063475653529167, step time: 45.64094543457031ms\r\nStep 1095, loss: 0.014053437858819962, step time: 45.71723937988281ms\r\nStep 1096, loss: 0.014045484364032745, step time: 45.74108123779297ms\r\nStep 1097, loss: 0.014028113335371017, step time: 45.72558403015137ms\r\nStep 1098, loss: 0.014023950323462486, step time: 45.93682289123535ms\r\nStep 1099, loss: 0.013994071632623672, step time: 45.674800872802734ms\r\n",,terminal_output +1131,2257004,"TERMINAL",0,0,"Step 1100, loss: 0.01397326122969389, step time: 49.661874771118164ms\r\nStep 1101, loss: 0.01399160921573639, step time: 46.09489440917969ms\r\nStep 1102, loss: 0.013971413485705853, step time: 45.675039291381836ms\r\nStep 1103, loss: 0.013942142948508263, step time: 45.796871185302734ms\r\nStep 1104, loss: 0.013963847421109676, step time: 45.63593864440918ms\r\nStep 1105, loss: 0.01394312921911478, step time: 45.60661315917969ms\r\nStep 1106, loss: 0.013918890617787838, step time: 45.67241668701172ms\r\nStep 1107, loss: 0.013926911167800426, step time: 45.722007751464844ms\r\nStep 1108, loss: 0.01394032035022974, step time: 45.9597110748291ms\r\nStep 1109, loss: 0.013875274918973446, step time: 45.615196228027344ms\r\n",,terminal_output +1132,2257380,"TERMINAL",0,0,"Step 1110, loss: 0.013876174576580524, step time: 46.90146446228027ms\r\nStep 1111, loss: 0.013870800845324993, step time: 46.08964920043945ms\r\nStep 1112, loss: 0.013852043077349663, step time: 45.73464393615723ms\r\nStep 1113, loss: 0.013845402747392654, step time: 45.94540596008301ms\r\nStep 1114, loss: 0.01385415904223919, step time: 45.65119743347168ms\r\n",,terminal_output +1133,2257620,"TERMINAL",0,0,"Step 1115, loss: 0.013853807933628559, step time: 45.73249816894531ms\r\nStep 1116, loss: 0.01382025983184576, step time: 45.772552490234375ms\r\nStep 1117, loss: 0.013826640322804451, step time: 45.7155704498291ms\r\nStep 1118, loss: 0.013816158287227154, step time: 45.95613479614258ms\r\nStep 1119, loss: 0.01381923258304596, step time: 45.682668685913086ms\r\n",,terminal_output +1134,2258231,"TERMINAL",0,0,"Step 1120, loss: 0.013795234262943268, step time: 46.98586463928223ms\r\nStep 1121, loss: 0.0137948552146554, step time: 46.123504638671875ms\r\nStep 1122, loss: 0.013813418336212635, step time: 45.77326774597168ms\r\nStep 1123, loss: 0.013776340521872044, step time: 46.30565643310547ms\r\nStep 1124, loss: 0.013796603307127953, step time: 45.6843376159668ms\r\nStep 1125, loss: 0.01377050206065178, step time: 46.13780975341797ms\r\nStep 1126, loss: 0.01376505196094513, step time: 45.743703842163086ms\r\nStep 1127, loss: 0.01375326793640852, step time: 45.7003116607666ms\r\nStep 1128, loss: 0.01373144518584013, step time: 45.88794708251953ms\r\nStep 1129, loss: 0.013740802183747292, step time: 45.64952850341797ms\r\n",,terminal_output +1135,2261795,"TERMINAL",0,0,"Step 1130, loss: 0.013704721815884113, step time: 46.7066764831543ms\r\nStep 1131, loss: 0.013686400838196278, step time: 46.1423397064209ms\r\nStep 1132, loss: 0.013705923222005367, step time: 45.75514793395996ms\r\nStep 1133, loss: 0.013682710006833076, step time: 45.95828056335449ms\r\nStep 1134, loss: 0.013671275228261948, step time: 45.73965072631836ms\r\nStep 1135, loss: 0.013661746867001057, step time: 45.658111572265625ms\r\nStep 1136, loss: 0.013641023077070713, step time: 45.7918643951416ms\r\nStep 1137, loss: 0.01363685354590416, step time: 45.70651054382324ms\r\nStep 1138, loss: 0.013627561740577221, step time: 45.87554931640625ms\r\nStep 1139, loss: 0.013645568862557411, step time: 45.74012756347656ms\r\nStep 1140, loss: 0.013609942980110645, step time: 46.796560287475586ms\r\nStep 1141, loss: 0.013581047765910625, step time: 46.17762565612793ms\r\nStep 1142, loss: 0.013603479601442814, step time: 45.79353332519531ms\r\nStep 1143, loss: 0.013570154085755348, step time: 45.94135284423828ms\r\nStep 1144, loss: 0.01355635654181242, step time: 45.81713676452637ms\r\nStep 1145, loss: 0.013570306822657585, step time: 45.720815658569336ms\r\nStep 1146, loss: 0.013533448800444603, step time: 45.87149620056152ms\r\nStep 1147, loss: 0.013528764247894287, step time: 45.81928253173828ms\r\nStep 1148, loss: 0.01352795958518982, step time: 45.90797424316406ms\r\nStep 1149, loss: 0.01350487396121025, step time: 45.7003116607666ms\r\nStep 1150, loss: 0.013504701666533947, step time: 49.85857009887695ms\r\nStep 1151, loss: 0.013488258235156536, step time: 46.13900184631348ms\r\nStep 1152, loss: 0.013485295698046684, step time: 45.806884765625ms\r\nStep 1153, loss: 0.013480059802532196, step time: 45.94612121582031ms\r\nStep 1154, loss: 0.013464543968439102, step time: 45.68338394165039ms\r\nStep 1155, loss: 0.013445357792079449, step time: 45.64309120178223ms\r\nStep 1156, loss: 0.013445096090435982, step time: 45.95303535461426ms\r\nStep 1157, loss: 0.0134511049836874, step time: 45.75204849243164ms\r\nStep 1158, loss: 0.013421925716102123, step time: 45.84670066833496ms\r\nStep 1159, loss: 0.013428437523543835, step time: 45.72606086730957ms\r\nStep 1160, loss: 0.013422800227999687, step time: 49.74508285522461ms\r\nStep 1161, loss: 0.01341688260436058, step time: 46.07057571411133ms\r\nStep 1162, loss: 0.013420754112303257, step time: 45.702457427978516ms\r\nStep 1163, loss: 0.013414647430181503, step time: 45.763254165649414ms\r\nStep 1164, loss: 0.013379749841988087, step time: 45.709848403930664ms\r\nStep 1165, loss: 0.013371266424655914, step time: 46.02670669555664ms\r\nStep 1166, loss: 0.013371020555496216, step time: 45.82929611206055ms\r\nStep 1167, loss: 0.01334172673523426, step time: 45.760393142700195ms\r\nStep 1168, loss: 0.013347355648875237, step time: 46.01025581359863ms\r\nStep 1169, loss: 0.013334413059055805, step time: 45.77755928039551ms\r\n",,terminal_output +1136,2263797,"TERMINAL",0,0,"Step 1170, loss: 0.01331474632024765, step time: 46.85187339782715ms\r\nStep 1171, loss: 0.013295830227434635, step time: 46.2040901184082ms\r\nStep 1172, loss: 0.013296887278556824, step time: 45.70770263671875ms\r\nStep 1173, loss: 0.013283779844641685, step time: 45.91727256774902ms\r\nStep 1174, loss: 0.013278283178806305, step time: 46.147823333740234ms\r\nStep 1175, loss: 0.013273965567350388, step time: 45.677900314331055ms\r\nStep 1176, loss: 0.013260946609079838, step time: 45.7308292388916ms\r\nStep 1177, loss: 0.013251882046461105, step time: 45.683860778808594ms\r\nStep 1178, loss: 0.0132491709664464, step time: 45.77922821044922ms\r\nStep 1179, loss: 0.013231192715466022, step time: 45.80879211425781ms\r\nStep 1180, loss: 0.013225546106696129, step time: 46.69499397277832ms\r\nStep 1181, loss: 0.013235687278211117, step time: 46.21601104736328ms\r\nStep 1182, loss: 0.013193917460739613, step time: 45.77326774597168ms\r\nStep 1183, loss: 0.013184674084186554, step time: 45.928955078125ms\r\nStep 1184, loss: 0.013175108470022678, step time: 45.71199417114258ms\r\nStep 1185, loss: 0.013172316364943981, step time: 45.78423500061035ms\r\nStep 1186, loss: 0.013165566138923168, step time: 45.836448669433594ms\r\nStep 1187, loss: 0.013173064216971397, step time: 45.65691947937012ms\r\nStep 1188, loss: 0.01314222626388073, step time: 45.71700096130371ms\r\nStep 1189, loss: 0.013126648031175137, step time: 45.84002494812012ms\r\nStep 1190, loss: 0.013132864609360695, step time: 46.78797721862793ms\r\nStep 1191, loss: 0.013114400207996368, step time: 46.402931213378906ms\r\nStep 1192, loss: 0.013116462156176567, step time: 48.60043525695801ms\r\nStep 1193, loss: 0.013105375692248344, step time: 45.98212242126465ms\r\nStep 1194, loss: 0.013091993518173695, step time: 45.830488204956055ms\r\nStep 1195, loss: 0.013078086078166962, step time: 46.62752151489258ms\r\nStep 1196, loss: 0.013062105514109135, step time: 47.84274101257324ms\r\nStep 1197, loss: 0.013059630990028381, step time: 46.49972915649414ms\r\nStep 1198, loss: 0.01305210031569004, step time: 47.00779914855957ms\r\nStep 1199, loss: 0.013041486963629723, step time: 47.49488830566406ms\r\nStep 1200, loss: 0.013033375144004822, step time: 50.420522689819336ms\r\nStep 1201, loss: 0.01302668359130621, step time: 46.66280746459961ms\r\nStep 1202, loss: 0.013021387159824371, step time: 46.12469673156738ms\r\nStep 1203, loss: 0.012996778823435307, step time: 45.88890075683594ms\r\nStep 1204, loss: 0.012994654476642609, step time: 45.980215072631836ms\r\nStep 1205, loss: 0.01299202349036932, step time: 45.96543312072754ms\r\nStep 1206, loss: 0.012982106767594814, step time: 45.900583267211914ms\r\nStep 1207, loss: 0.012967973947525024, step time: 45.694828033447266ms\r\nStep 1208, loss: 0.01297000516206026, step time: 45.773983001708984ms\r\nStep 1209, loss: 0.012951950542628765, step time: 45.6080436706543ms\r\nStep 1210, loss: 0.01295094471424818, step time: 45.623064041137695ms\r\nStep 1211, loss: 0.012917542830109596, step time: 45.69649696350098ms\r\nStep 1212, loss: 0.01290624774992466, step time: 45.481204986572266ms\r\nStep 1213, loss: 0.012914960272610188, step time: 45.61805725097656ms\r\nStep 1214, loss: 0.012896916829049587, step time: 45.57514190673828ms\r\nStep 1215, loss: 0.012905561365187168, step time: 45.75395584106445ms\r\nStep 1216, loss: 0.012893619015812874, step time: 45.69196701049805ms\r\nStep 1217, loss: 0.012873305939137936, step time: 45.668840408325195ms\r\nStep 1218, loss: 0.012872337363660336, step time: 45.671701431274414ms\r\nStep 1219, loss: 0.012858150526881218, step time: 45.673370361328125ms\r\n",,terminal_output +1137,2266796,"TERMINAL",0,0,"Step 1220, loss: 0.012843928299844265, step time: 46.28586769104004ms\r\nStep 1221, loss: 0.012839308939874172, step time: 45.78256607055664ms\r\nStep 1222, loss: 0.012842679396271706, step time: 45.57204246520996ms\r\nStep 1223, loss: 0.012820623815059662, step time: 45.69101333618164ms\r\nStep 1224, loss: 0.012825007550418377, step time: 45.66359519958496ms\r\nStep 1225, loss: 0.012808604165911674, step time: 45.51982879638672ms\r\nStep 1226, loss: 0.012822301127016544, step time: 45.61591148376465ms\r\nStep 1227, loss: 0.012792859226465225, step time: 45.685768127441406ms\r\nStep 1228, loss: 0.012774055823683739, step time: 46.43726348876953ms\r\nStep 1229, loss: 0.012780271470546722, step time: 47.1346378326416ms\r\nStep 1230, loss: 0.012784993276000023, step time: 47.36948013305664ms\r\nStep 1231, loss: 0.012760994024574757, step time: 46.701908111572266ms\r\nStep 1232, loss: 0.01274779625236988, step time: 46.27585411071777ms\r\nStep 1233, loss: 0.012743458151817322, step time: 45.98259925842285ms\r\nStep 1234, loss: 0.012721770443022251, step time: 46.018123626708984ms\r\nStep 1235, loss: 0.012723620980978012, step time: 46.080589294433594ms\r\nStep 1236, loss: 0.012725327163934708, step time: 46.56362533569336ms\r\nStep 1237, loss: 0.012711228802800179, step time: 46.60630226135254ms\r\nStep 1238, loss: 0.012691667303442955, step time: 46.668291091918945ms\r\nStep 1239, loss: 0.012711519375443459, step time: 47.01685905456543ms\r\nStep 1240, loss: 0.01267938781529665, step time: 47.55997657775879ms\r\nStep 1241, loss: 0.012685534544289112, step time: 45.95351219177246ms\r\nStep 1242, loss: 0.012686924077570438, step time: 45.699119567871094ms\r\nStep 1243, loss: 0.01269015297293663, step time: 45.81117630004883ms\r\nStep 1244, loss: 0.012674571946263313, step time: 45.76539993286133ms\r\nStep 1245, loss: 0.012686461210250854, step time: 45.905113220214844ms\r\nStep 1246, loss: 0.01268497109413147, step time: 46.14520072937012ms\r\nStep 1247, loss: 0.012643068097531796, step time: 46.34714126586914ms\r\nStep 1248, loss: 0.012617339380085468, step time: 45.85886001586914ms\r\nStep 1249, loss: 0.012648975476622581, step time: 45.732975006103516ms\r\nStep 1250, loss: 0.012636225670576096, step time: 49.00813102722168ms\r\nStep 1251, loss: 0.012622016482055187, step time: 45.94731330871582ms\r\nStep 1252, loss: 0.01263040117919445, step time: 45.844316482543945ms\r\nStep 1253, loss: 0.012607723474502563, step time: 45.71676254272461ms\r\nStep 1254, loss: 0.012597750872373581, step time: 45.645713806152344ms\r\nStep 1255, loss: 0.012599898502230644, step time: 45.892953872680664ms\r\nStep 1256, loss: 0.012611886486411095, step time: 45.77946662902832ms\r\nStep 1257, loss: 0.012584254145622253, step time: 45.734405517578125ms\r\nStep 1258, loss: 0.012586613185703754, step time: 45.75514793395996ms\r\nStep 1259, loss: 0.01259455643594265, step time: 45.79496383666992ms\r\nStep 1260, loss: 0.01256569568067789, step time: 49.85523223876953ms\r\nStep 1261, loss: 0.012583415023982525, step time: 46.32306098937988ms\r\nStep 1262, loss: 0.012563731521368027, step time: 45.75467109680176ms\r\nStep 1263, loss: 0.01256516482681036, step time: 45.92633247375488ms\r\nStep 1264, loss: 0.012562114745378494, step time: 45.76373100280762ms\r\nStep 1265, loss: 0.012564855627715588, step time: 45.82786560058594ms\r\nStep 1266, loss: 0.012540834955871105, step time: 45.73702812194824ms\r\nStep 1267, loss: 0.01253455225378275, step time: 45.57681083679199ms\r\nStep 1268, loss: 0.012543083168566227, step time: 46.54645919799805ms\r\nStep 1269, loss: 0.012521719560027122, step time: 46.25272750854492ms\r\n",,terminal_output +1138,2271805,"TERMINAL",0,0,"Step 1270, loss: 0.012523502111434937, step time: 46.874284744262695ms\r\nStep 1271, loss: 0.012505189515650272, step time: 46.05984687805176ms\r\nStep 1272, loss: 0.012484220787882805, step time: 45.6845760345459ms\r\nStep 1273, loss: 0.012490486726164818, step time: 45.86386680603027ms\r\nStep 1274, loss: 0.012484046630561352, step time: 45.6538200378418ms\r\nStep 1275, loss: 0.0124657042324543, step time: 45.57633399963379ms\r\nStep 1276, loss: 0.012466165237128735, step time: 45.79925537109375ms\r\nStep 1277, loss: 0.01245095394551754, step time: 45.815229415893555ms\r\nStep 1278, loss: 0.012443366460502148, step time: 46.62680625915527ms\r\nStep 1279, loss: 0.012431533075869083, step time: 45.93634605407715ms\r\nStep 1280, loss: 0.01244992483407259, step time: 46.75555229187012ms\r\nStep 1281, loss: 0.012427601031959057, step time: 46.1883544921875ms\r\nStep 1282, loss: 0.01240167859941721, step time: 45.884132385253906ms\r\nStep 1283, loss: 0.0124431811273098, step time: 46.740055084228516ms\r\nStep 1284, loss: 0.01240160409361124, step time: 46.03075981140137ms\r\nStep 1285, loss: 0.012412243522703648, step time: 45.99428176879883ms\r\nStep 1286, loss: 0.012408800423145294, step time: 48.18534851074219ms\r\nStep 1287, loss: 0.012383895926177502, step time: 46.423912048339844ms\r\nStep 1288, loss: 0.012377971783280373, step time: 46.3862419128418ms\r\nStep 1289, loss: 0.012370016425848007, step time: 45.996904373168945ms\r\nStep 1290, loss: 0.012364999391138554, step time: 46.9973087310791ms\r\nStep 1291, loss: 0.012341500259935856, step time: 46.42891883850098ms\r\nStep 1292, loss: 0.012336020357906818, step time: 45.798301696777344ms\r\nStep 1293, loss: 0.012343117035925388, step time: 45.949697494506836ms\r\nStep 1294, loss: 0.0123446024954319, step time: 45.84383964538574ms\r\nStep 1295, loss: 0.012343158014118671, step time: 45.84527015686035ms\r\nStep 1296, loss: 0.012336017563939095, step time: 45.758724212646484ms\r\nStep 1297, loss: 0.012331468053162098, step time: 45.83930969238281ms\r\nStep 1298, loss: 0.012335201725363731, step time: 45.873403549194336ms\r\nStep 1299, loss: 0.012333821505308151, step time: 45.745134353637695ms\r\nStep 1300, loss: 0.01229818444699049, step time: 49.16572570800781ms\r\nStep 1301, loss: 0.012340743094682693, step time: 46.19646072387695ms\r\nStep 1302, loss: 0.01229473389685154, step time: 46.07439041137695ms\r\nStep 1303, loss: 0.012278081849217415, step time: 46.131134033203125ms\r\nStep 1304, loss: 0.012300435453653336, step time: 45.88794708251953ms\r\nStep 1305, loss: 0.012284344993531704, step time: 45.85695266723633ms\r\nStep 1306, loss: 0.012295813299715519, step time: 45.77374458312988ms\r\nStep 1307, loss: 0.012276053428649902, step time: 45.78423500061035ms\r\nStep 1308, loss: 0.01226035226136446, step time: 46.08273506164551ms\r\nStep 1309, loss: 0.012262561358511448, step time: 45.86482048034668ms\r\nStep 1310, loss: 0.012242441065609455, step time: 50.11701583862305ms\r\nStep 1311, loss: 0.012274051085114479, step time: 46.2338924407959ms\r\nStep 1312, loss: 0.012243774719536304, step time: 45.86315155029297ms\r\nStep 1313, loss: 0.012245971709489822, step time: 46.19741439819336ms\r\nStep 1314, loss: 0.012227719649672508, step time: 45.81785202026367ms\r\nStep 1315, loss: 0.012235347181558609, step time: 45.78590393066406ms\r\nStep 1316, loss: 0.012232008390128613, step time: 45.72582244873047ms\r\nStep 1317, loss: 0.01224290020763874, step time: 45.70651054382324ms\r\nStep 1318, loss: 0.0122141782194376, step time: 45.937538146972656ms\r\nStep 1319, loss: 0.012226765975356102, step time: 45.82381248474121ms\r\nStep 1320, loss: 0.012246864847838879, step time: 46.6310977935791ms\r\nStep 1321, loss: 0.012231742031872272, step time: 46.1423397064209ms\r\nStep 1322, loss: 0.012215802446007729, step time: 45.903682708740234ms\r\nStep 1323, loss: 0.012219780124723911, step time: 46.01788520812988ms\r\nStep 1324, loss: 0.012191595509648323, step time: 45.685768127441406ms\r\nStep 1325, loss: 0.0121885035187006, step time: 45.57967185974121ms\r\nStep 1326, loss: 0.012188563123345375, step time: 45.72606086730957ms\r\nStep 1327, loss: 0.012160764075815678, step time: 45.56155204772949ms\r\nStep 1328, loss: 0.012160452082753181, step time: 45.78447341918945ms\r\nStep 1329, loss: 0.012166908010840416, step time: 45.6545352935791ms\r\nStep 1330, loss: 0.012153306044638157, step time: 46.64349555969238ms\r\nStep 1331, loss: 0.012141571380198002, step time: 46.26631736755371ms\r\nStep 1332, loss: 0.012152310460805893, step time: 45.71247100830078ms\r\nStep 1333, loss: 0.012130924500524998, step time: 45.868635177612305ms\r\nStep 1334, loss: 0.012129789218306541, step time: 45.6845760345459ms\r\nStep 1335, loss: 0.012127654626965523, step time: 45.73345184326172ms\r\nStep 1336, loss: 0.012106259353458881, step time: 45.92704772949219ms\r\nStep 1337, loss: 0.012113351374864578, step time: 45.815229415893555ms\r\nStep 1338, loss: 0.012102996930480003, step time: 46.100616455078125ms\r\nStep 1339, loss: 0.012080835178494453, step time: 45.82619667053223ms\r\nStep 1340, loss: 0.01212945394217968, step time: 46.71621322631836ms\r\nStep 1341, loss: 0.012071081437170506, step time: 46.26893997192383ms\r\nStep 1342, loss: 0.012085423804819584, step time: 45.73535919189453ms\r\nStep 1343, loss: 0.012065562419593334, step time: 45.93086242675781ms\r\nStep 1344, loss: 0.012088518589735031, step time: 45.731544494628906ms\r\nStep 1345, loss: 0.012059907428920269, step time: 45.787811279296875ms\r\nStep 1346, loss: 0.01204235665500164, step time: 45.85862159729004ms\r\nStep 1347, loss: 0.012055648490786552, step time: 45.67599296569824ms\r\nStep 1348, loss: 0.01204213872551918, step time: 45.839786529541016ms\r\nStep 1349, loss: 0.012054389342665672, step time: 45.75634002685547ms\r\n",,terminal_output +1139,2274795,"TERMINAL",0,0,"Step 1350, loss: 0.012036980129778385, step time: 46.88596725463867ms\r\nStep 1351, loss: 0.012046990916132927, step time: 46.31543159484863ms\r\nStep 1352, loss: 0.012050770223140717, step time: 45.83120346069336ms\r\nStep 1353, loss: 0.01204608753323555, step time: 45.91774940490723ms\r\nStep 1354, loss: 0.0120393643155694, step time: 45.88198661804199ms\r\nStep 1355, loss: 0.01204284094274044, step time: 45.638322830200195ms\r\nStep 1356, loss: 0.01205778494477272, step time: 45.766353607177734ms\r\nStep 1357, loss: 0.012043667025864124, step time: 45.76683044433594ms\r\nStep 1358, loss: 0.012050790712237358, step time: 45.908451080322266ms\r\nStep 1359, loss: 0.01202339492738247, step time: 46.33283615112305ms\r\nStep 1360, loss: 0.011998984031379223, step time: 46.86737060546875ms\r\nStep 1361, loss: 0.012010268867015839, step time: 46.28753662109375ms\r\nStep 1362, loss: 0.012029356323182583, step time: 45.706748962402344ms\r\nStep 1363, loss: 0.011993348598480225, step time: 45.981407165527344ms\r\nStep 1364, loss: 0.012008538469672203, step time: 45.84193229675293ms\r\nStep 1365, loss: 0.012004522606730461, step time: 45.67742347717285ms\r\nStep 1366, loss: 0.012000051327049732, step time: 45.68171501159668ms\r\nStep 1367, loss: 0.011994613334536552, step time: 45.732975006103516ms\r\nStep 1368, loss: 0.012013053521513939, step time: 45.89700698852539ms\r\nStep 1369, loss: 0.011978845112025738, step time: 46.11968994140625ms\r\nStep 1370, loss: 0.01197079662233591, step time: 46.555280685424805ms\r\nStep 1371, loss: 0.0120131466537714, step time: 45.97735404968262ms\r\nStep 1372, loss: 0.011971061117947102, step time: 45.859336853027344ms\r\nStep 1373, loss: 0.011976596899330616, step time: 46.01788520812988ms\r\nStep 1374, loss: 0.012013145722448826, step time: 45.88460922241211ms\r\nStep 1375, loss: 0.011983579024672508, step time: 45.792341232299805ms\r\nStep 1376, loss: 0.01197007205337286, step time: 45.96686363220215ms\r\nStep 1377, loss: 0.011939880438148975, step time: 45.70317268371582ms\r\nStep 1378, loss: 0.012002823874354362, step time: 46.25129699707031ms\r\nStep 1379, loss: 0.01196638960391283, step time: 45.8221435546875ms\r\nStep 1380, loss: 0.011940717697143555, step time: 46.64206504821777ms\r\nStep 1381, loss: 0.011965753510594368, step time: 47.15156555175781ms\r\nStep 1382, loss: 0.011971472762525082, step time: 47.24311828613281ms\r\nStep 1383, loss: 0.011990735307335854, step time: 47.44911193847656ms\r\nStep 1384, loss: 0.01196544524282217, step time: 50.31180381774902ms\r\nStep 1385, loss: 0.011960940435528755, step time: 46.80943489074707ms\r\nStep 1386, loss: 0.011963274329900742, step time: 46.636343002319336ms\r\nStep 1387, loss: 0.011944356374442577, step time: 46.52905464172363ms\r\nStep 1388, loss: 0.011936106719076633, step time: 45.83597183227539ms\r\nStep 1389, loss: 0.011924135498702526, step time: 45.76420783996582ms\r\nStep 1390, loss: 0.011916279792785645, step time: 46.60511016845703ms\r\nStep 1391, loss: 0.01193758100271225, step time: 45.94111442565918ms\r\nStep 1392, loss: 0.01192131731659174, step time: 45.85981369018555ms\r\nStep 1393, loss: 0.011961827985942364, step time: 46.1118221282959ms\r\nStep 1394, loss: 0.011929654516279697, step time: 45.911312103271484ms\r\nStep 1395, loss: 0.011928909458220005, step time: 45.70746421813965ms\r\nStep 1396, loss: 0.011943494901061058, step time: 45.61924934387207ms\r\nStep 1397, loss: 0.011937319301068783, step time: 45.91202735900879ms\r\nStep 1398, loss: 0.011931179091334343, step time: 45.61805725097656ms\r\nStep 1399, loss: 0.011919355019927025, step time: 45.82095146179199ms\r\n",,terminal_output +1140,2282798,"TERMINAL",0,0,"Step 1400, loss: 0.011866938322782516, step time: 46.648502349853516ms\r\nStep 1401, loss: 0.011880593374371529, step time: 46.02336883544922ms\r\nStep 1402, loss: 0.011901389807462692, step time: 46.035051345825195ms\r\nStep 1403, loss: 0.01189632248133421, step time: 45.737504959106445ms\r\nStep 1404, loss: 0.011884010396897793, step time: 45.80354690551758ms\r\nStep 1405, loss: 0.011908742599189281, step time: 45.75824737548828ms\r\nStep 1406, loss: 0.011885026469826698, step time: 45.65787315368652ms\r\nStep 1407, loss: 0.011861825361847878, step time: 45.94993591308594ms\r\nStep 1408, loss: 0.011873038485646248, step time: 45.61448097229004ms\r\nStep 1409, loss: 0.011872708797454834, step time: 45.69506645202637ms\r\nStep 1410, loss: 0.011875594034790993, step time: 46.77128791809082ms\r\nStep 1411, loss: 0.011843428947031498, step time: 46.10109329223633ms\r\nStep 1412, loss: 0.011844698339700699, step time: 46.19407653808594ms\r\nStep 1413, loss: 0.011828351765871048, step time: 45.891761779785156ms\r\nStep 1414, loss: 0.011820506304502487, step time: 45.86362838745117ms\r\nStep 1415, loss: 0.011836959049105644, step time: 45.772552490234375ms\r\nStep 1416, loss: 0.011867768131196499, step time: 45.821428298950195ms\r\nStep 1417, loss: 0.011818322353065014, step time: 45.96972465515137ms\r\nStep 1418, loss: 0.011788909323513508, step time: 45.64046859741211ms\r\nStep 1419, loss: 0.011817945167422295, step time: 45.77445983886719ms\r\nStep 1420, loss: 0.011788076721131802, step time: 46.79417610168457ms\r\nStep 1421, loss: 0.011804679408669472, step time: 46.125173568725586ms\r\nStep 1422, loss: 0.011780895292758942, step time: 46.134233474731445ms\r\nStep 1423, loss: 0.011782476678490639, step time: 45.847415924072266ms\r\nStep 1424, loss: 0.011771805584430695, step time: 45.79639434814453ms\r\nStep 1425, loss: 0.011789190582931042, step time: 45.87697982788086ms\r\nStep 1426, loss: 0.011775672435760498, step time: 45.783281326293945ms\r\nStep 1427, loss: 0.011761547066271305, step time: 46.07391357421875ms\r\nStep 1428, loss: 0.011747393757104874, step time: 45.7453727722168ms\r\nStep 1429, loss: 0.011763256974518299, step time: 45.72796821594238ms\r\nStep 1430, loss: 0.011756091378629208, step time: 46.68116569519043ms\r\nStep 1431, loss: 0.011764602735638618, step time: 45.94922065734863ms\r\nStep 1432, loss: 0.0117691271007061, step time: 46.03695869445801ms\r\nStep 1433, loss: 0.011753740720450878, step time: 45.72653770446777ms\r\nStep 1434, loss: 0.011763504706323147, step time: 45.78280448913574ms\r\nStep 1435, loss: 0.011772527359426022, step time: 45.6845760345459ms\r\nStep 1436, loss: 0.01175688300281763, step time: 45.78232765197754ms\r\nStep 1437, loss: 0.011745154857635498, step time: 46.43964767456055ms\r\nStep 1438, loss: 0.011782673187553883, step time: 45.723915100097656ms\r\nStep 1439, loss: 0.011720843613147736, step time: 45.757293701171875ms\r\nStep 1440, loss: 0.011747442185878754, step time: 46.65803909301758ms\r\nStep 1441, loss: 0.011748578399419785, step time: 45.83477973937988ms\r\nStep 1442, loss: 0.011724662967026234, step time: 45.925140380859375ms\r\nStep 1443, loss: 0.011720119044184685, step time: 45.7308292388916ms\r\nStep 1444, loss: 0.011725803837180138, step time: 45.59826850891113ms\r\nStep 1445, loss: 0.011699721217155457, step time: 45.630455017089844ms\r\nStep 1446, loss: 0.011712511070072651, step time: 45.68076133728027ms\r\nStep 1447, loss: 0.011710385791957378, step time: 46.117544174194336ms\r\nStep 1448, loss: 0.011716919019818306, step time: 45.584917068481445ms\r\nStep 1449, loss: 0.011694571934640408, step time: 45.66335678100586ms\r\nStep 1450, loss: 0.011692721396684647, step time: 46.58818244934082ms\r\nStep 1451, loss: 0.011685678735375404, step time: 46.024322509765625ms\r\nStep 1452, loss: 0.011679120361804962, step time: 49.46184158325195ms\r\nStep 1453, loss: 0.011691446416079998, step time: 45.78375816345215ms\r\nStep 1454, loss: 0.011663290672004223, step time: 45.76826095581055ms\r\nStep 1455, loss: 0.011641127057373524, step time: 45.656681060791016ms\r\nStep 1456, loss: 0.01163146086037159, step time: 45.493364334106445ms\r\nStep 1457, loss: 0.0116689158603549, step time: 48.67839813232422ms\r\nStep 1458, loss: 0.011637138202786446, step time: 45.766592025756836ms\r\nStep 1459, loss: 0.011633949354290962, step time: 45.799970626831055ms\r\nStep 1460, loss: 0.011636641807854176, step time: 46.63848876953125ms\r\nStep 1461, loss: 0.01165492832660675, step time: 45.97020149230957ms\r\nStep 1462, loss: 0.011636407114565372, step time: 45.91941833496094ms\r\nStep 1463, loss: 0.011647341772913933, step time: 45.63617706298828ms\r\nStep 1464, loss: 0.011598784476518631, step time: 45.71342468261719ms\r\nStep 1465, loss: 0.011601694859564304, step time: 45.725107192993164ms\r\nStep 1466, loss: 0.011617369018495083, step time: 45.62664031982422ms\r\nStep 1467, loss: 0.011583065614104271, step time: 45.87721824645996ms\r\nStep 1468, loss: 0.011600388213992119, step time: 45.84145545959473ms\r\nStep 1469, loss: 0.011620907112956047, step time: 45.77064514160156ms\r\nStep 1470, loss: 0.01157674752175808, step time: 46.772003173828125ms\r\nStep 1471, loss: 0.011587957851588726, step time: 46.045780181884766ms\r\nStep 1472, loss: 0.011609869077801704, step time: 45.987606048583984ms\r\nStep 1473, loss: 0.011570406146347523, step time: 45.67742347717285ms\r\nStep 1474, loss: 0.01156736072152853, step time: 45.70341110229492ms\r\nStep 1475, loss: 0.011557790450751781, step time: 46.035051345825195ms\r\nStep 1476, loss: 0.011551065370440483, step time: 45.76396942138672ms\r\nStep 1477, loss: 0.0115460604429245, step time: 45.9902286529541ms\r\nStep 1478, loss: 0.011541759595274925, step time: 45.720815658569336ms\r\nStep 1479, loss: 0.011569232679903507, step time: 45.703887939453125ms\r\nStep 1480, loss: 0.011540966108441353, step time: 46.77081108093262ms\r\nStep 1481, loss: 0.011547833681106567, step time: 45.97949981689453ms\r\nStep 1482, loss: 0.011536749079823494, step time: 45.89509963989258ms\r\nStep 1483, loss: 0.011524219997227192, step time: 45.74918746948242ms\r\nStep 1484, loss: 0.011509831994771957, step time: 45.644521713256836ms\r\nStep 1485, loss: 0.011517664417624474, step time: 45.839548110961914ms\r\nStep 1486, loss: 0.011492989957332611, step time: 45.836448669433594ms\r\nStep 1487, loss: 0.011490639299154282, step time: 45.90296745300293ms\r\nStep 1488, loss: 0.01151294820010662, step time: 45.7608699798584ms\r\nStep 1489, loss: 0.011480147950351238, step time: 45.696258544921875ms\r\nStep 1490, loss: 0.011492668651044369, step time: 46.59748077392578ms\r\nStep 1491, loss: 0.011473204009234905, step time: 46.195268630981445ms\r\nStep 1492, loss: 0.011472728103399277, step time: 45.93372344970703ms\r\nStep 1493, loss: 0.011472572572529316, step time: 45.69363594055176ms\r\nStep 1494, loss: 0.011466827243566513, step time: 45.64213752746582ms\r\nStep 1495, loss: 0.011471107602119446, step time: 45.93038558959961ms\r\nStep 1496, loss: 0.011435403488576412, step time: 45.66597938537598ms\r\nStep 1497, loss: 0.011451124213635921, step time: 45.85766792297363ms\r\nStep 1498, loss: 0.011445180512964725, step time: 45.77493667602539ms\r\nStep 1499, loss: 0.011443921364843845, step time: 45.74942588806152ms\r\nStep 1500, loss: 0.011459852568805218, step time: 46.95582389831543ms\r\nStep 1501, loss: 0.011457148939371109, step time: 45.9294319152832ms\r\nStep 1502, loss: 0.01146554946899414, step time: 45.83239555358887ms\r\nStep 1503, loss: 0.011456085368990898, step time: 45.59731483459473ms\r\nStep 1504, loss: 0.011458899825811386, step time: 45.857906341552734ms\r\nStep 1505, loss: 0.011452672071754932, step time: 45.952796936035156ms\r\nStep 1506, loss: 0.011435243301093578, step time: 45.85003852844238ms\r\nStep 1507, loss: 0.01144090574234724, step time: 45.89056968688965ms\r\nStep 1508, loss: 0.011417205445468426, step time: 45.81046104431152ms\r\nStep 1509, loss: 0.011416424065828323, step time: 45.746564865112305ms\r\nStep 1510, loss: 0.011426622048020363, step time: 46.63896560668945ms\r\nStep 1511, loss: 0.011409911327064037, step time: 45.89962959289551ms\r\nStep 1512, loss: 0.011396270245313644, step time: 45.96543312072754ms\r\nStep 1513, loss: 0.011412682943046093, step time: 45.68672180175781ms\r\nStep 1514, loss: 0.011419796384871006, step time: 45.613765716552734ms\r\nStep 1515, loss: 0.011410407721996307, step time: 45.851707458496094ms\r\nStep 1516, loss: 0.01140639092773199, step time: 45.61591148376465ms\r\nStep 1517, loss: 0.011400106362998486, step time: 45.64261436462402ms\r\nStep 1518, loss: 0.011387533508241177, step time: 45.66240310668945ms\r\nStep 1519, loss: 0.011375603266060352, step time: 45.56989669799805ms\r\nStep 1520, loss: 0.011380409821867943, step time: 46.90384864807129ms\r\nStep 1521, loss: 0.011374120600521564, step time: 45.98259925842285ms\r\nStep 1522, loss: 0.011374075897037983, step time: 45.78971862792969ms\r\nStep 1523, loss: 0.011383012868463993, step time: 45.825958251953125ms\r\nStep 1524, loss: 0.011357341893017292, step time: 45.69721221923828ms\r\nStep 1525, loss: 0.011355037800967693, step time: 45.79281806945801ms\r\nStep 1526, loss: 0.011340213939547539, step time: 45.754194259643555ms\r\nStep 1527, loss: 0.011377631686627865, step time: 45.70603370666504ms\r\nStep 1528, loss: 0.011341760866343975, step time: 45.907020568847656ms\r\nStep 1529, loss: 0.01134358812123537, step time: 45.658111572265625ms\r\n",,terminal_output +1141,2286794,"TERMINAL",0,0,"Step 1530, loss: 0.011333932168781757, step time: 46.81253433227539ms\r\nStep 1531, loss: 0.011337739415466785, step time: 46.022891998291016ms\r\nStep 1532, loss: 0.011317085474729538, step time: 46.07129096984863ms\r\nStep 1533, loss: 0.011305330321192741, step time: 45.96710205078125ms\r\nStep 1534, loss: 0.01134258508682251, step time: 45.80378532409668ms\r\nStep 1535, loss: 0.011311669833958149, step time: 46.02169990539551ms\r\nStep 1536, loss: 0.011307187378406525, step time: 45.690298080444336ms\r\nStep 1537, loss: 0.011296452954411507, step time: 45.65787315368652ms\r\nStep 1538, loss: 0.011325910687446594, step time: 45.842885971069336ms\r\nStep 1539, loss: 0.011286638677120209, step time: 45.61042785644531ms\r\nStep 1540, loss: 0.01128437090665102, step time: 46.79226875305176ms\r\nStep 1541, loss: 0.011305399239063263, step time: 45.95184326171875ms\r\nStep 1542, loss: 0.011299817822873592, step time: 45.809268951416016ms\r\nStep 1543, loss: 0.011263265274465084, step time: 45.919179916381836ms\r\nStep 1544, loss: 0.011267909780144691, step time: 45.61495780944824ms\r\nStep 1545, loss: 0.01127499807626009, step time: 45.88460922241211ms\r\nStep 1546, loss: 0.01129094883799553, step time: 45.82810401916504ms\r\nStep 1547, loss: 0.011259025894105434, step time: 45.70293426513672ms\r\nStep 1548, loss: 0.01125407312065363, step time: 45.82500457763672ms\r\nStep 1549, loss: 0.011260945349931717, step time: 45.69530487060547ms\r\nStep 1550, loss: 0.011257258243858814, step time: 46.84019088745117ms\r\nStep 1551, loss: 0.011236719787120819, step time: 46.118736267089844ms\r\nStep 1552, loss: 0.011233850382268429, step time: 45.70937156677246ms\r\nStep 1553, loss: 0.011217141523957253, step time: 45.7763671875ms\r\nStep 1554, loss: 0.011222558096051216, step time: 45.728206634521484ms\r\nStep 1555, loss: 0.011214864440262318, step time: 45.77279090881348ms\r\nStep 1556, loss: 0.0112057039514184, step time: 45.95017433166504ms\r\nStep 1557, loss: 0.01119912602007389, step time: 45.80521583557129ms\r\nStep 1558, loss: 0.01118331030011177, step time: 46.024322509765625ms\r\nStep 1559, loss: 0.011200719512999058, step time: 49.01409149169922ms\r\nStep 1560, loss: 0.011184554547071457, step time: 46.84805870056152ms\r\nStep 1561, loss: 0.011193608865141869, step time: 46.20361328125ms\r\nStep 1562, loss: 0.011195163242518902, step time: 45.99428176879883ms\r\nStep 1563, loss: 0.011189674027264118, step time: 45.96757888793945ms\r\nStep 1564, loss: 0.01118064671754837, step time: 45.630455017089844ms\r\nStep 1565, loss: 0.01117550116032362, step time: 45.86219787597656ms\r\nStep 1566, loss: 0.011179901659488678, step time: 45.78876495361328ms\r\nStep 1567, loss: 0.01117949653416872, step time: 45.65930366516113ms\r\nStep 1568, loss: 0.011175619438290596, step time: 45.7918643951416ms\r\nStep 1569, loss: 0.011197690851986408, step time: 45.652151107788086ms\r\nStep 1570, loss: 0.011201906949281693, step time: 49.74651336669922ms\r\nStep 1571, loss: 0.01117313839495182, step time: 46.02646827697754ms\r\nStep 1572, loss: 0.011163276620209217, step time: 45.777320861816406ms\r\nStep 1573, loss: 0.011192011646926403, step time: 45.85409164428711ms\r\nStep 1574, loss: 0.011163843795657158, step time: 45.59516906738281ms\r\nStep 1575, loss: 0.011155730113387108, step time: 45.75967788696289ms\r\nStep 1576, loss: 0.011164829134941101, step time: 45.55153846740723ms\r\nStep 1577, loss: 0.011129789985716343, step time: 45.69244384765625ms\r\nStep 1578, loss: 0.011121564544737339, step time: 45.9749698638916ms\r\nStep 1579, loss: 0.011138160713016987, step time: 45.56632041931152ms\r\n",,terminal_output +1142,2288795,"TERMINAL",0,0,"Step 1580, loss: 0.011116215027868748, step time: 46.739816665649414ms\r\nStep 1581, loss: 0.011118803173303604, step time: 46.05722427368164ms\r\nStep 1582, loss: 0.01110708899796009, step time: 45.97306251525879ms\r\nStep 1583, loss: 0.011112763546407223, step time: 46.025753021240234ms\r\nStep 1584, loss: 0.011121024377644062, step time: 45.763254165649414ms\r\nStep 1585, loss: 0.011095976456999779, step time: 45.83239555358887ms\r\nStep 1586, loss: 0.011095140129327774, step time: 45.72629928588867ms\r\nStep 1587, loss: 0.011098521761596203, step time: 45.87435722351074ms\r\nStep 1588, loss: 0.011086784303188324, step time: 46.050071716308594ms\r\nStep 1589, loss: 0.011103379540145397, step time: 45.809030532836914ms\r\nStep 1590, loss: 0.011076078750193119, step time: 46.6761589050293ms\r\nStep 1591, loss: 0.011078029870986938, step time: 45.909881591796875ms\r\nStep 1592, loss: 0.011085303500294685, step time: 46.07796669006348ms\r\nStep 1593, loss: 0.011082472279667854, step time: 45.91512680053711ms\r\nStep 1594, loss: 0.01108214259147644, step time: 45.74322700500488ms\r\nStep 1595, loss: 0.011087348684668541, step time: 45.90559005737305ms\r\nStep 1596, loss: 0.011068430729210377, step time: 45.896291732788086ms\r\nStep 1597, loss: 0.011087436228990555, step time: 45.69697380065918ms\r\nStep 1598, loss: 0.011062544770538807, step time: 46.04983329772949ms\r\nStep 1599, loss: 0.011064416728913784, step time: 45.68290710449219ms\r\nStep 1600, loss: 0.011069403029978275, step time: 46.79298400878906ms\r\nStep 1601, loss: 0.011090599000453949, step time: 45.9141731262207ms\r\nStep 1602, loss: 0.011086490005254745, step time: 45.75753211975098ms\r\nStep 1603, loss: 0.011070311069488525, step time: 45.801401138305664ms\r\nStep 1604, loss: 0.011075779795646667, step time: 45.758962631225586ms\r\nStep 1605, loss: 0.011071951128542423, step time: 45.73774337768555ms\r\nStep 1606, loss: 0.011058787815272808, step time: 45.68600654602051ms\r\nStep 1607, loss: 0.011060656048357487, step time: 45.711517333984375ms\r\nStep 1608, loss: 0.011067435145378113, step time: 45.89724540710449ms\r\nStep 1609, loss: 0.011057359166443348, step time: 45.658111572265625ms\r\nStep 1610, loss: 0.011035159230232239, step time: 47.09935188293457ms\r\nStep 1611, loss: 0.011062832549214363, step time: 45.975446701049805ms\r\nStep 1612, loss: 0.011036218143999577, step time: 45.84860801696777ms\r\nStep 1613, loss: 0.011019514873623848, step time: 45.923709869384766ms\r\nStep 1614, loss: 0.011033707298338413, step time: 45.65095901489258ms\r\nStep 1615, loss: 0.011027727276086807, step time: 45.83930969238281ms\r\nStep 1616, loss: 0.011005737818777561, step time: 45.84312438964844ms\r\nStep 1617, loss: 0.011005720123648643, step time: 45.86601257324219ms\r\nStep 1618, loss: 0.01100975088775158, step time: 45.87054252624512ms\r\nStep 1619, loss: 0.010973655618727207, step time: 45.714616775512695ms\r\nStep 1620, loss: 0.010998549871146679, step time: 46.78964614868164ms\r\nStep 1621, loss: 0.010995423421263695, step time: 46.159982681274414ms\r\nStep 1622, loss: 0.010999907739460468, step time: 46.010494232177734ms\r\nStep 1623, loss: 0.010985073633491993, step time: 45.966148376464844ms\r\nStep 1624, loss: 0.010970629751682281, step time: 45.78351974487305ms\r\nStep 1625, loss: 0.010982582345604897, step time: 45.89438438415527ms\r\nStep 1626, loss: 0.010951420292258263, step time: 45.830726623535156ms\r\nStep 1627, loss: 0.01095176674425602, step time: 45.75800895690918ms\r\nStep 1628, loss: 0.010964461602270603, step time: 45.84217071533203ms\r\nStep 1629, loss: 0.010966658592224121, step time: 45.737266540527344ms\r\n",,terminal_output +1143,2293795,"TERMINAL",0,0,"Step 1630, loss: 0.010972355492413044, step time: 47.01495170593262ms\r\nStep 1631, loss: 0.010964582674205303, step time: 46.10586166381836ms\r\nStep 1632, loss: 0.010956298559904099, step time: 46.17810249328613ms\r\nStep 1633, loss: 0.01095382496714592, step time: 45.92728614807129ms\r\nStep 1634, loss: 0.010968036018311977, step time: 45.66645622253418ms\r\nStep 1635, loss: 0.010961305350065231, step time: 45.71843147277832ms\r\nStep 1636, loss: 0.010956615209579468, step time: 45.934438705444336ms\r\nStep 1637, loss: 0.010967285372316837, step time: 45.74775695800781ms\r\nStep 1638, loss: 0.010961239226162434, step time: 45.92013359069824ms\r\nStep 1639, loss: 0.010953289456665516, step time: 45.8979606628418ms\r\nStep 1640, loss: 0.010964637622237206, step time: 46.572208404541016ms\r\nStep 1641, loss: 0.010961799882352352, step time: 45.983314514160156ms\r\nStep 1642, loss: 0.011007840745151043, step time: 45.69649696350098ms\r\nStep 1643, loss: 0.010978179052472115, step time: 45.916080474853516ms\r\nStep 1644, loss: 0.01096852496266365, step time: 45.73512077331543ms\r\nStep 1645, loss: 0.010975266806781292, step time: 45.5632209777832ms\r\nStep 1646, loss: 0.010959630832076073, step time: 46.86856269836426ms\r\nStep 1647, loss: 0.010944557376205921, step time: 47.365427017211914ms\r\nStep 1648, loss: 0.010961495339870453, step time: 47.092437744140625ms\r\nStep 1649, loss: 0.010983383283019066, step time: 47.292232513427734ms\r\nStep 1650, loss: 0.010916637256741524, step time: 47.52516746520996ms\r\nStep 1651, loss: 0.010932612232863903, step time: 46.26274108886719ms\r\nStep 1652, loss: 0.010926429182291031, step time: 45.90129852294922ms\r\nStep 1653, loss: 0.010910874232649803, step time: 45.781850814819336ms\r\nStep 1654, loss: 0.010921800509095192, step time: 46.06056213378906ms\r\nStep 1655, loss: 0.010916300117969513, step time: 45.50671577453613ms\r\nStep 1656, loss: 0.010930359363555908, step time: 45.58229446411133ms\r\nStep 1657, loss: 0.010913798585534096, step time: 45.59659957885742ms\r\nStep 1658, loss: 0.010888921096920967, step time: 45.74894905090332ms\r\nStep 1659, loss: 0.010889445431530476, step time: 45.86958885192871ms\r\nStep 1660, loss: 0.010896286927163601, step time: 46.75436019897461ms\r\nStep 1661, loss: 0.01088930293917656, step time: 46.04506492614746ms\r\nStep 1662, loss: 0.010881327092647552, step time: 45.831918716430664ms\r\nStep 1663, loss: 0.010883579961955547, step time: 45.679330825805664ms\r\nStep 1664, loss: 0.010889539495110512, step time: 45.789241790771484ms\r\nStep 1665, loss: 0.010878724977374077, step time: 45.86935043334961ms\r\nStep 1666, loss: 0.01087083388119936, step time: 45.697689056396484ms\r\nStep 1667, loss: 0.010851838625967503, step time: 45.928955078125ms\r\nStep 1668, loss: 0.010861851274967194, step time: 45.55964469909668ms\r\nStep 1669, loss: 0.010852937586605549, step time: 45.91703414916992ms\r\nStep 1670, loss: 0.01087304949760437, step time: 46.84162139892578ms\r\nStep 1671, loss: 0.010855987668037415, step time: 45.95351219177246ms\r\nStep 1672, loss: 0.010864723473787308, step time: 45.94779014587402ms\r\nStep 1673, loss: 0.010850160382688046, step time: 45.65906524658203ms\r\nStep 1674, loss: 0.01084657572209835, step time: 45.90201377868652ms\r\nStep 1675, loss: 0.010855159722268581, step time: 45.719146728515625ms\r\nStep 1676, loss: 0.010852188803255558, step time: 45.74251174926758ms\r\nStep 1677, loss: 0.010886174626648426, step time: 45.9439754486084ms\r\nStep 1678, loss: 0.010889599099755287, step time: 45.630455017089844ms\r\nStep 1679, loss: 0.010890322737395763, step time: 45.81570625305176ms\r\nStep 1680, loss: 0.010880477726459503, step time: 46.62442207336426ms\r\nStep 1681, loss: 0.010878986679017544, step time: 46.01311683654785ms\r\nStep 1682, loss: 0.010856295935809612, step time: 46.65184020996094ms\r\nStep 1683, loss: 0.010856326669454575, step time: 45.69888114929199ms\r\nStep 1684, loss: 0.01087291818112135, step time: 45.931100845336914ms\r\nStep 1685, loss: 0.010833163745701313, step time: 45.697927474975586ms\r\nStep 1686, loss: 0.010860353708267212, step time: 45.74131965637207ms\r\nStep 1687, loss: 0.010864654555916786, step time: 45.97020149230957ms\r\nStep 1688, loss: 0.010857931338250637, step time: 45.68195343017578ms\r\nStep 1689, loss: 0.010864722542464733, step time: 45.78852653503418ms\r\nStep 1690, loss: 0.010830686427652836, step time: 49.369096755981445ms\r\nStep 1691, loss: 0.010824487544596195, step time: 46.09847068786621ms\r\nStep 1692, loss: 0.010839074850082397, step time: 45.93157768249512ms\r\nStep 1693, loss: 0.010804770514369011, step time: 45.73178291320801ms\r\nStep 1694, loss: 0.010814804583787918, step time: 46.06151580810547ms\r\nStep 1695, loss: 0.010830201208591461, step time: 45.74298858642578ms\r\nStep 1696, loss: 0.01082579419016838, step time: 45.65143585205078ms\r\nStep 1697, loss: 0.010846679098904133, step time: 45.841217041015625ms\r\nStep 1698, loss: 0.010802648030221462, step time: 45.728445053100586ms\r\nStep 1699, loss: 0.010811328887939453, step time: 45.76539993286133ms\r\nStep 1700, loss: 0.010818416252732277, step time: 49.43537712097168ms\r\nStep 1701, loss: 0.010791689157485962, step time: 46.11396789550781ms\r\nStep 1702, loss: 0.010810896754264832, step time: 45.743703842163086ms\r\nStep 1703, loss: 0.010775514878332615, step time: 45.62854766845703ms\r\nStep 1704, loss: 0.010793047957122326, step time: 45.77803611755371ms\r\nStep 1705, loss: 0.010801468044519424, step time: 45.784950256347656ms\r\nStep 1706, loss: 0.010777727700769901, step time: 45.928955078125ms\r\nStep 1707, loss: 0.010783832520246506, step time: 45.82834243774414ms\r\nStep 1708, loss: 0.010766420513391495, step time: 45.8528995513916ms\r\nStep 1709, loss: 0.010823538526892662, step time: 45.99618911743164ms\r\n",,terminal_output +1144,2296798,"TERMINAL",0,0,"Step 1710, loss: 0.01076575554907322, step time: 46.680450439453125ms\r\nStep 1711, loss: 0.010796880349516869, step time: 46.137332916259766ms\r\nStep 1712, loss: 0.010786629281938076, step time: 45.84193229675293ms\r\nStep 1713, loss: 0.010792269371449947, step time: 45.656442642211914ms\r\nStep 1714, loss: 0.010794606059789658, step time: 45.8674430847168ms\r\nStep 1715, loss: 0.010808904655277729, step time: 45.69220542907715ms\r\nStep 1716, loss: 0.010837660171091557, step time: 45.821428298950195ms\r\nStep 1717, loss: 0.010834802873432636, step time: 45.629024505615234ms\r\nStep 1718, loss: 0.010798577219247818, step time: 45.638322830200195ms\r\nStep 1719, loss: 0.01079870667308569, step time: 45.66812515258789ms\r\nStep 1720, loss: 0.01079572830349207, step time: 45.69721221923828ms\r\nStep 1721, loss: 0.010792660526931286, step time: 45.69649696350098ms\r\nStep 1722, loss: 0.010788324289023876, step time: 45.65572738647461ms\r\nStep 1723, loss: 0.010781780816614628, step time: 45.61567306518555ms\r\nStep 1724, loss: 0.010781287215650082, step time: 45.67432403564453ms\r\nStep 1725, loss: 0.010752773843705654, step time: 45.58849334716797ms\r\nStep 1726, loss: 0.01073836162686348, step time: 45.64619064331055ms\r\nStep 1727, loss: 0.010754222981631756, step time: 45.659780502319336ms\r\nStep 1728, loss: 0.010750634595751762, step time: 45.76706886291504ms\r\nStep 1729, loss: 0.010754093527793884, step time: 45.61614990234375ms\r\nStep 1730, loss: 0.010737013071775436, step time: 47.739505767822266ms\r\nStep 1731, loss: 0.010740647092461586, step time: 45.97902297973633ms\r\nStep 1732, loss: 0.01074327901005745, step time: 45.76826095581055ms\r\nStep 1733, loss: 0.010742509737610817, step time: 45.77016830444336ms\r\nStep 1734, loss: 0.01072636153548956, step time: 45.7310676574707ms\r\nStep 1735, loss: 0.010716469958424568, step time: 45.82047462463379ms\r\nStep 1736, loss: 0.010705463588237762, step time: 45.76253890991211ms\r\nStep 1737, loss: 0.010724312625825405, step time: 45.66764831542969ms\r\nStep 1738, loss: 0.010720519348978996, step time: 45.77374458312988ms\r\nStep 1739, loss: 0.010722153820097446, step time: 45.586585998535156ms\r\nStep 1740, loss: 0.010722462087869644, step time: 49.198150634765625ms\r\nStep 1741, loss: 0.010741285048425198, step time: 46.02360725402832ms\r\nStep 1742, loss: 0.010716088116168976, step time: 45.84097862243652ms\r\nStep 1743, loss: 0.010694115422666073, step time: 45.57061195373535ms\r\nStep 1744, loss: 0.010729645378887653, step time: 45.80569267272949ms\r\nStep 1745, loss: 0.01072060689330101, step time: 46.018123626708984ms\r\nStep 1746, loss: 0.010717547498643398, step time: 45.74728012084961ms\r\nStep 1747, loss: 0.01073133572936058, step time: 45.73941230773926ms\r\nStep 1748, loss: 0.010724065825343132, step time: 45.77898979187012ms\r\nStep 1749, loss: 0.010704918764531612, step time: 45.63140869140625ms\r\nStep 1750, loss: 0.010732407681643963, step time: 50.03857612609863ms\r\nStep 1751, loss: 0.010720628313720226, step time: 46.10419273376465ms\r\nStep 1752, loss: 0.010724401101469994, step time: 45.84479331970215ms\r\nStep 1753, loss: 0.010728669352829456, step time: 45.73225975036621ms\r\nStep 1754, loss: 0.010706159286201, step time: 45.64213752746582ms\r\nStep 1755, loss: 0.010703758336603642, step time: 45.84240913391113ms\r\nStep 1756, loss: 0.010701136663556099, step time: 45.618534088134766ms\r\nStep 1757, loss: 0.010709922760725021, step time: 45.734405517578125ms\r\nStep 1758, loss: 0.01070171594619751, step time: 45.659542083740234ms\r\nStep 1759, loss: 0.010699938982725143, step time: 46.106815338134766ms\r\n",,terminal_output +1145,2301802,"TERMINAL",0,0,"Step 1760, loss: 0.010701799765229225, step time: 46.888113021850586ms\r\nStep 1761, loss: 0.010689538903534412, step time: 45.95613479614258ms\r\nStep 1762, loss: 0.010713418014347553, step time: 45.97353935241699ms\r\nStep 1763, loss: 0.010703838430345058, step time: 45.77755928039551ms\r\nStep 1764, loss: 0.010695094242691994, step time: 45.69244384765625ms\r\nStep 1765, loss: 0.010692381300032139, step time: 45.8836555480957ms\r\nStep 1766, loss: 0.010673168115317822, step time: 45.598745346069336ms\r\nStep 1767, loss: 0.010659978725016117, step time: 45.676231384277344ms\r\nStep 1768, loss: 0.010660254396498203, step time: 45.79520225524902ms\r\nStep 1769, loss: 0.010634191334247589, step time: 45.807838439941406ms\r\nStep 1770, loss: 0.010665255598723888, step time: 46.69499397277832ms\r\nStep 1771, loss: 0.010648490861058235, step time: 45.91536521911621ms\r\nStep 1772, loss: 0.010646576061844826, step time: 45.740365982055664ms\r\nStep 1773, loss: 0.010625546798110008, step time: 45.63713073730469ms\r\nStep 1774, loss: 0.010625199414789677, step time: 45.64404487609863ms\r\nStep 1775, loss: 0.010607183910906315, step time: 45.70150375366211ms\r\nStep 1776, loss: 0.010625270195305347, step time: 45.62950134277344ms\r\nStep 1777, loss: 0.010616461746394634, step time: 45.53651809692383ms\r\nStep 1778, loss: 0.010655265301465988, step time: 45.740365982055664ms\r\nStep 1779, loss: 0.010650340467691422, step time: 45.60708999633789ms\r\nStep 1780, loss: 0.010614972561597824, step time: 46.887874603271484ms\r\nStep 1781, loss: 0.010634755715727806, step time: 46.08774185180664ms\r\nStep 1782, loss: 0.01060892641544342, step time: 45.945167541503906ms\r\nStep 1783, loss: 0.010613043792545795, step time: 45.961856842041016ms\r\nStep 1784, loss: 0.010614080354571342, step time: 45.9897518157959ms\r\nStep 1785, loss: 0.010607792995870113, step time: 45.807600021362305ms\r\nStep 1786, loss: 0.010594572871923447, step time: 45.68815231323242ms\r\nStep 1787, loss: 0.010617446154356003, step time: 45.71032524108887ms\r\nStep 1788, loss: 0.010596071369946003, step time: 45.78375816345215ms\r\nStep 1789, loss: 0.010587889701128006, step time: 45.65882682800293ms\r\nStep 1790, loss: 0.010605785064399242, step time: 46.708106994628906ms\r\nStep 1791, loss: 0.010590549558401108, step time: 45.93992233276367ms\r\nStep 1792, loss: 0.010593157261610031, step time: 45.786142349243164ms\r\nStep 1793, loss: 0.010572782717645168, step time: 45.93801498413086ms\r\nStep 1794, loss: 0.01057483721524477, step time: 46.48566246032715ms\r\nStep 1795, loss: 0.010600678622722626, step time: 46.138763427734375ms\r\nStep 1796, loss: 0.010597934946417809, step time: 45.821428298950195ms\r\nStep 1797, loss: 0.010591372847557068, step time: 45.935869216918945ms\r\nStep 1798, loss: 0.010576336644589901, step time: 45.88580131530762ms\r\nStep 1799, loss: 0.010563807561993599, step time: 45.76826095581055ms\r\nStep 1800, loss: 0.01058170199394226, step time: 47.12533950805664ms\r\nStep 1801, loss: 0.010569864884018898, step time: 46.08464241027832ms\r\nStep 1802, loss: 0.010531092062592506, step time: 46.39768600463867ms\r\nStep 1803, loss: 0.010569430887699127, step time: 45.93396186828613ms\r\nStep 1804, loss: 0.010528471320867538, step time: 45.62807083129883ms\r\nStep 1805, loss: 0.010513241402804852, step time: 45.7916259765625ms\r\nStep 1806, loss: 0.010513929650187492, step time: 45.536041259765625ms\r\nStep 1807, loss: 0.01048741489648819, step time: 45.68076133728027ms\r\nStep 1808, loss: 0.010527534410357475, step time: 45.87578773498535ms\r\nStep 1809, loss: 0.010516224429011345, step time: 45.769691467285156ms\r\nStep 1810, loss: 0.010487383231520653, step time: 49.787044525146484ms\r\nStep 1811, loss: 0.010469822213053703, step time: 45.92537879943848ms\r\nStep 1812, loss: 0.010476265102624893, step time: 45.78685760498047ms\r\nStep 1813, loss: 0.010493581183254719, step time: 45.7613468170166ms\r\nStep 1814, loss: 0.010497983545064926, step time: 45.69888114929199ms\r\nStep 1815, loss: 0.010496251285076141, step time: 45.83430290222168ms\r\nStep 1816, loss: 0.010481974110007286, step time: 45.66526412963867ms\r\nStep 1817, loss: 0.010477123782038689, step time: 45.7611083984375ms\r\nStep 1818, loss: 0.010515374131500721, step time: 45.799970626831055ms\r\nStep 1819, loss: 0.010500711388885975, step time: 45.67241668701172ms\r\nStep 1820, loss: 0.010495689697563648, step time: 46.78964614868164ms\r\nStep 1821, loss: 0.01047072745859623, step time: 46.027183532714844ms\r\nStep 1822, loss: 0.0104681933298707, step time: 45.89200019836426ms\r\nStep 1823, loss: 0.010504031553864479, step time: 45.79949378967285ms\r\nStep 1824, loss: 0.010480895638465881, step time: 45.73416709899902ms\r\nStep 1825, loss: 0.010464867576956749, step time: 45.82071304321289ms\r\nStep 1826, loss: 0.010471610352396965, step time: 45.67980766296387ms\r\nStep 1827, loss: 0.010483256541192532, step time: 46.0810661315918ms\r\nStep 1828, loss: 0.010502188466489315, step time: 45.86958885192871ms\r\nStep 1829, loss: 0.010448112152516842, step time: 45.72939872741699ms\r\nStep 1830, loss: 0.010438057594001293, step time: 46.68998718261719ms\r\nStep 1831, loss: 0.010477421805262566, step time: 46.09513282775879ms\r\nStep 1832, loss: 0.010431702248752117, step time: 45.917510986328125ms\r\nStep 1833, loss: 0.010406797751784325, step time: 45.91536521911621ms\r\nStep 1834, loss: 0.010431770235300064, step time: 50.28676986694336ms\r\nStep 1835, loss: 0.010433105751872063, step time: 45.880794525146484ms\r\nStep 1836, loss: 0.010415870696306229, step time: 45.835256576538086ms\r\nStep 1837, loss: 0.01041695661842823, step time: 45.714378356933594ms\r\nStep 1838, loss: 0.01044539362192154, step time: 45.7148551940918ms\r\nStep 1839, loss: 0.010402076877653599, step time: 45.65858840942383ms\r\n",,terminal_output +1146,2304797,"TERMINAL",0,0,"Step 1840, loss: 0.010404380038380623, step time: 46.66733741760254ms\r\nStep 1841, loss: 0.010432111099362373, step time: 46.05364799499512ms\r\nStep 1842, loss: 0.010410218499600887, step time: 45.83740234375ms\r\nStep 1843, loss: 0.010425515472888947, step time: 45.66478729248047ms\r\nStep 1844, loss: 0.010421915911138058, step time: 45.64332962036133ms\r\nStep 1845, loss: 0.010422125458717346, step time: 45.786380767822266ms\r\nStep 1846, loss: 0.010444067418575287, step time: 45.656442642211914ms\r\nStep 1847, loss: 0.010406279005110264, step time: 45.651912689208984ms\r\nStep 1848, loss: 0.010409969836473465, step time: 45.73178291320801ms\r\nStep 1849, loss: 0.010384108871221542, step time: 45.5777645111084ms\r\nStep 1850, loss: 0.010395996272563934, step time: 46.96345329284668ms\r\nStep 1851, loss: 0.010456228628754616, step time: 45.950889587402344ms\r\nStep 1852, loss: 0.010406866669654846, step time: 45.73249816894531ms\r\nStep 1853, loss: 0.010428736917674541, step time: 45.810699462890625ms\r\nStep 1854, loss: 0.010424938052892685, step time: 45.68815231323242ms\r\nStep 1855, loss: 0.010383122600615025, step time: 45.70889472961426ms\r\nStep 1856, loss: 0.010371199809014797, step time: 45.610666275024414ms\r\nStep 1857, loss: 0.010411187075078487, step time: 45.66645622253418ms\r\nStep 1858, loss: 0.010386364534497261, step time: 45.74108123779297ms\r\nStep 1859, loss: 0.010381756350398064, step time: 45.612335205078125ms\r\nStep 1860, loss: 0.010386694222688675, step time: 47.031402587890625ms\r\nStep 1861, loss: 0.01040329597890377, step time: 45.96662521362305ms\r\nStep 1862, loss: 0.01038032304495573, step time: 45.70579528808594ms\r\nStep 1863, loss: 0.010394296608865261, step time: 45.744895935058594ms\r\nStep 1864, loss: 0.01035784650593996, step time: 45.626163482666016ms\r\nStep 1865, loss: 0.010353202931582928, step time: 46.236515045166016ms\r\nStep 1866, loss: 0.010367827489972115, step time: 45.79734802246094ms\r\nStep 1867, loss: 0.010333909653127193, step time: 45.656442642211914ms\r\nStep 1868, loss: 0.010326184332370758, step time: 45.9136962890625ms\r\nStep 1869, loss: 0.010338496416807175, step time: 45.66359519958496ms\r\nStep 1870, loss: 0.010314998216927052, step time: 46.80180549621582ms\r\nStep 1871, loss: 0.010324280709028244, step time: 45.896053314208984ms\r\nStep 1872, loss: 0.010322312824428082, step time: 45.73512077331543ms\r\nStep 1873, loss: 0.010328942909836769, step time: 45.73321342468262ms\r\nStep 1874, loss: 0.010319574736058712, step time: 45.586585998535156ms\r\nStep 1875, loss: 0.010317182168364525, step time: 45.81260681152344ms\r\nStep 1876, loss: 0.01030510663986206, step time: 45.798540115356445ms\r\nStep 1877, loss: 0.010328894481062889, step time: 45.691490173339844ms\r\nStep 1878, loss: 0.010351196862757206, step time: 45.8528995513916ms\r\nStep 1879, loss: 0.010331868194043636, step time: 45.678138732910156ms\r\nStep 1880, loss: 0.01030807290226221, step time: 50.16779899597168ms\r\nStep 1881, loss: 0.010322372429072857, step time: 46.025991439819336ms\r\nStep 1882, loss: 0.010334656573832035, step time: 45.88770866394043ms\r\nStep 1883, loss: 0.010325372219085693, step time: 45.77755928039551ms\r\nStep 1884, loss: 0.010329043492674828, step time: 45.728206634521484ms\r\nStep 1885, loss: 0.010311302728950977, step time: 45.90439796447754ms\r\nStep 1886, loss: 0.010342291556298733, step time: 45.55535316467285ms\r\nStep 1887, loss: 0.010326994583010674, step time: 45.68958282470703ms\r\nStep 1888, loss: 0.010314138606190681, step time: 45.69578170776367ms\r\nStep 1889, loss: 0.010341345332562923, step time: 45.621395111083984ms\r\n",,terminal_output +1147,2306593,"TERMINAL",0,0,"Step 1890, loss: 0.010298280045390129, step time: 49.67856407165527ms\r\nStep 1891, loss: 0.010289477184414864, step time: 45.95446586608887ms\r\nStep 1892, loss: 0.010288921184837818, step time: 46.02861404418945ms\r\nStep 1893, loss: 0.010275915265083313, step time: 46.04792594909668ms\r\nStep 1894, loss: 0.010266471654176712, step time: 45.83430290222168ms\r\nStep 1895, loss: 0.01026909425854683, step time: 46.03314399719238ms\r\nStep 1896, loss: 0.010240807197988033, step time: 45.72296142578125ms\r\nStep 1897, loss: 0.010253040120005608, step time: 45.87912559509277ms\r\nStep 1898, loss: 0.010243263095617294, step time: 45.7310676574707ms\r\nStep 1899, loss: 0.010263965465128422, step time: 45.66144943237305ms\r\nStep 1900, loss: 0.010310470126569271, step time: 46.920061111450195ms\r\nStep 1901, loss: 0.0102242361754179, step time: 46.0052490234375ms\r\nStep 1902, loss: 0.010230659507215023, step time: 45.84240913391113ms\r\nStep 1903, loss: 0.010236326605081558, step time: 45.68123817443848ms\r\nStep 1904, loss: 0.010218917392194271, step time: 45.67265510559082ms\r\nStep 1905, loss: 0.010222714394330978, step time: 45.70960998535156ms\r\nStep 1906, loss: 0.010195083916187286, step time: 45.65548896789551ms\r\nStep 1907, loss: 0.01020968146622181, step time: 46.033382415771484ms\r\nStep 1908, loss: 0.010213765315711498, step time: 45.9592342376709ms\r\nStep 1909, loss: 0.010212702676653862, step time: 45.61114311218262ms\r\nStep 1910, loss: 0.010223183780908585, step time: 46.99420928955078ms\r\nStep 1911, loss: 0.010209457017481327, step time: 46.085357666015625ms\r\nStep 1912, loss: 0.010219893418252468, step time: 46.076059341430664ms\r\nStep 1913, loss: 0.010217170231044292, step time: 45.77922821044922ms\r\nStep 1914, loss: 0.010208677500486374, step time: 45.805931091308594ms\r\nStep 1915, loss: 0.01022452861070633, step time: 45.798540115356445ms\r\nStep 1916, loss: 0.010217171162366867, step time: 45.65906524658203ms\r\nStep 1917, loss: 0.010211296379566193, step time: 45.978546142578125ms\r\nStep 1918, loss: 0.010227345861494541, step time: 45.63498497009277ms\r\nStep 1919, loss: 0.010216937400400639, step time: 45.64070701599121ms\r\n",,terminal_output +1148,2306973,"TERMINAL",0,0,"Step 1920, loss: 0.01021320465952158, step time: 47.43504524230957ms\r\nStep 1921, loss: 0.01023211982101202, step time: 47.34635353088379ms\r\nStep 1922, loss: 0.010234813205897808, step time: 47.15251922607422ms\r\nStep 1923, loss: 0.01022388692945242, step time: 47.08981513977051ms\r\nStep 1924, loss: 0.010209372267127037, step time: 46.70381546020508ms\r\n",,terminal_output +1149,2307027,"TERMINAL",0,0,"Step 1925, loss: 0.010189404711127281, step time: 46.579599380493164ms\r\n",,terminal_output +1150,2307215,"TERMINAL",0,0,"Step 1926, loss: 0.010168497450649738, step time: 46.21315002441406ms\r\nStep 1927, loss: 0.010193229652941227, step time: 45.71080207824707ms\r\nStep 1928, loss: 0.010187003761529922, step time: 46.254873275756836ms\r\nStep 1929, loss: 0.010183477774262428, step time: 45.71175575256348ms\r\n",,terminal_output +1151,2307594,"TERMINAL",0,0,"Step 1930, loss: 0.01018992904573679, step time: 46.6160774230957ms\r\nStep 1931, loss: 0.010193428955972195, step time: 46.02384567260742ms\r\nStep 1932, loss: 0.010169963352382183, step time: 46.04792594909668ms\r\nStep 1933, loss: 0.01015534345060587, step time: 46.00024223327637ms\r\nStep 1934, loss: 0.01017084065824747, step time: 45.67265510559082ms\r\n",,terminal_output +1152,2307831,"TERMINAL",0,0,"Step 1935, loss: 0.010152467526495457, step time: 45.73678970336914ms\r\nStep 1936, loss: 0.010167882777750492, step time: 45.675039291381836ms\r\nStep 1937, loss: 0.010153647512197495, step time: 45.61758041381836ms\r\nStep 1938, loss: 0.010163376107811928, step time: 45.84360122680664ms\r\nStep 1939, loss: 0.010178064927458763, step time: 45.766592025756836ms\r\n",,terminal_output +1153,2308077,"TERMINAL",0,0,"Step 1940, loss: 0.010142121464014053, step time: 49.74031448364258ms\r\nStep 1941, loss: 0.01015132199972868, step time: 46.08464241027832ms\r\n",,terminal_output +1154,2308212,"TERMINAL",0,0,"Step 1942, loss: 0.0101391626521945, step time: 45.979976654052734ms\r\nStep 1943, loss: 0.010154512710869312, step time: 45.723915100097656ms\r\nStep 1944, loss: 0.010194155387580395, step time: 45.584678649902344ms\r\n",,terminal_output +1155,2308417,"notes.md",0,0,"",markdown,tab +1156,2308438,"TERMINAL",0,0,"Step 1945, loss: 0.010170875117182732, step time: 45.68886756896973ms\r\nStep 1946, loss: 0.01013706810772419, step time: 45.59206962585449ms\r\nStep 1947, loss: 0.010149672627449036, step time: 45.67694664001465ms\r\nStep 1948, loss: 0.010152090340852737, step time: 45.96686363220215ms\r\n",,terminal_output +1157,2308474,"TERMINAL",0,0,"Step 1949, loss: 0.010201973840594292, step time: 45.77517509460449ms\r\n",,terminal_output +1158,2308616,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +1159,2308844,"TERMINAL",0,0,"Step 1950, loss: 0.010163521394133568, step time: 46.73266410827637ms\r\nStep 1951, loss: 0.010160551406443119, step time: 45.96304893493652ms\r\nStep 1952, loss: 0.010146647691726685, step time: 45.7761287689209ms\r\nStep 1953, loss: 0.010162778198719025, step time: 45.75967788696289ms\r\n",,terminal_output +1160,2309062,"TERMINAL",0,0,"Step 1954, loss: 0.010179329663515091, step time: 45.67122459411621ms\r\nStep 1955, loss: 0.010166916996240616, step time: 45.78375816345215ms\r\nStep 1956, loss: 0.010145289823412895, step time: 45.82571983337402ms\r\nStep 1957, loss: 0.010154464282095432, step time: 45.6700325012207ms\r\nStep 1958, loss: 0.010125022381544113, step time: 45.856475830078125ms\r\nStep 1959, loss: 0.010133667849004269, step time: 45.696258544921875ms\r\n",,terminal_output +1161,2309674,"TERMINAL",0,0,"Step 1960, loss: 0.01014460064470768, step time: 46.68617248535156ms\r\nStep 1961, loss: 0.010138904675841331, step time: 45.91965675354004ms\r\nStep 1962, loss: 0.010164525359869003, step time: 45.77779769897461ms\r\nStep 1963, loss: 0.010129726491868496, step time: 45.74775695800781ms\r\nStep 1964, loss: 0.010127952322363853, step time: 45.587778091430664ms\r\nStep 1965, loss: 0.010131681337952614, step time: 45.66597938537598ms\r\nStep 1966, loss: 0.010107719339430332, step time: 45.75634002685547ms\r\nStep 1967, loss: 0.010101442225277424, step time: 45.58825492858887ms\r\nStep 1968, loss: 0.010122088715434074, step time: 45.888662338256836ms\r\nStep 1969, loss: 0.010110653005540371, step time: 45.7000732421875ms\r\n",,terminal_output +1162,2310166,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",740,0,"",shellscript,selection_command +1163,2310239,"TERMINAL",0,0,"Step 1970, loss: 0.01009116880595684, step time: 46.776533126831055ms\r\nStep 1971, loss: 0.010138972662389278, step time: 45.928955078125ms\r\nStep 1972, loss: 0.01011672057211399, step time: 45.80187797546387ms\r\nStep 1973, loss: 0.010083110071718693, step time: 45.737266540527344ms\r\nStep 1974, loss: 0.01010610070079565, step time: 45.67074775695801ms\r\nStep 1975, loss: 0.010073112323880196, step time: 45.88651657104492ms\r\nStep 1976, loss: 0.010086419992148876, step time: 45.94278335571289ms\r\nStep 1977, loss: 0.010088915936648846, step time: 45.71199417114258ms\r\nStep 1978, loss: 0.010092999786138535, step time: 45.94588279724121ms\r\n",,terminal_output +1164,2310291,"TERMINAL",0,0,"Step 1979, loss: 0.01010179053992033, step time: 45.823097229003906ms\r\n",,terminal_output +1165,2310407,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",719,0,"",shellscript,selection_command +1166,2310441,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",698,0,"",shellscript,selection_command +1167,2310478,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",676,0,"",shellscript,selection_command +1168,2310481,"TERMINAL",0,0,"Step 1980, loss: 0.010116786696016788, step time: 46.73504829406738ms\r\n",,terminal_output +1169,2310504,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",650,0,"",shellscript,selection_command +1170,2310536,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",629,0,"",shellscript,selection_command +1171,2310618,"TERMINAL",0,0,"Step 1981, loss: 0.010104223154485226, step time: 45.99785804748535ms\r\nStep 1982, loss: 0.010119426995515823, step time: 45.93157768249512ms\r\nStep 1983, loss: 0.010104742832481861, step time: 45.81165313720703ms\r\n",,terminal_output +1172,2310685,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",608,0,"",shellscript,selection_command +1173,2310903,"TERMINAL",0,0,"Step 1984, loss: 0.010125432163476944, step time: 45.763492584228516ms\r\nStep 1985, loss: 0.010139723308384418, step time: 46.248674392700195ms\r\nStep 1986, loss: 0.010139470919966698, step time: 45.679330825805664ms\r\nStep 1987, loss: 0.010104095563292503, step time: 45.69292068481445ms\r\nStep 1988, loss: 0.01014940906316042, step time: 45.70341110229492ms\r\nStep 1989, loss: 0.010099208913743496, step time: 45.78232765197754ms\r\n",,terminal_output +1174,2311019,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",588,0,"\n ",shellscript,content +1175,2311148,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",589,4,"",shellscript,content +1176,2311243,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",589,0,"""--min_lr=1e-4"",\n ""--max_lr=1e-4"",",shellscript,content +1177,2311248,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",589,0,"",shellscript,selection_command +1178,2311430,"TERMINAL",0,0,"Step 1990, loss: 0.010081049054861069, step time: 47.10054397583008ms\r\nStep 1991, loss: 0.010124812833964825, step time: 47.301292419433594ms\r\nStep 1992, loss: 0.010064130648970604, step time: 46.08607292175293ms\r\nStep 1993, loss: 0.010115093551576138, step time: 45.97187042236328ms\r\nStep 1994, loss: 0.010052897967398167, step time: 45.84550857543945ms\r\nStep 1995, loss: 0.010094083845615387, step time: 46.05913162231445ms\r\nStep 1996, loss: 0.010036508552730083, step time: 45.838117599487305ms\r\nStep 1997, loss: 0.010040363296866417, step time: 46.813249588012695ms\r\n",,terminal_output +1179,2311527,"TERMINAL",0,0,"Step 1998, loss: 0.01004720013588667, step time: 45.78542709350586ms\r\nStep 1999, loss: 0.010059020482003689, step time: 45.77469825744629ms\r\n",,terminal_output +1180,2311765,"TERMINAL",0,0,"Step 2000, loss: 0.010030403733253479, step time: 49.631357192993164ms\r\nStep 2001, loss: 0.010021926835179329, step time: 46.00644111633301ms\r\n",,terminal_output +1181,2311907,"TERMINAL",0,0,"Step 2002, loss: 0.01003683265298605, step time: 46.23985290527344ms\r\nStep 2003, loss: 0.01004691980779171, step time: 50.54354667663574ms\r\nStep 2004, loss: 0.010044866241514683, step time: 45.69602012634277ms\r\n",,terminal_output +1182,2312145,"TERMINAL",0,0,"Step 2005, loss: 0.01001487672328949, step time: 45.743703842163086ms\r\nStep 2006, loss: 0.010006251744925976, step time: 45.81809043884277ms\r\nStep 2007, loss: 0.010024422779679298, step time: 45.85385322570801ms\r\nStep 2008, loss: 0.01003269013017416, step time: 45.68600654602051ms\r\nStep 2009, loss: 0.010020840913057327, step time: 45.644283294677734ms\r\n",,terminal_output +1183,2312529,"TERMINAL",0,0,"Step 2010, loss: 0.010048938915133476, step time: 46.915292739868164ms\r\nStep 2011, loss: 0.010033827275037766, step time: 46.11325263977051ms\r\nStep 2012, loss: 0.010033918544650078, step time: 46.01621627807617ms\r\nStep 2013, loss: 0.010021645575761795, step time: 45.701026916503906ms\r\nStep 2014, loss: 0.010040214285254478, step time: 45.853614807128906ms\r\n",,terminal_output +1184,2312769,"TERMINAL",0,0,"Step 2015, loss: 0.010048131458461285, step time: 45.76826095581055ms\r\nStep 2016, loss: 0.010044327937066555, step time: 45.74084281921387ms\r\nStep 2017, loss: 0.010042029432952404, step time: 45.92609405517578ms\r\nStep 2018, loss: 0.010064390487968922, step time: 45.67575454711914ms\r\nStep 2019, loss: 0.010035889223217964, step time: 45.68672180175781ms\r\n",,terminal_output +1185,2313451,"TERMINAL",0,0,"Step 2020, loss: 0.010043231770396233, step time: 46.797990798950195ms\r\nStep 2021, loss: 0.010085124522447586, step time: 45.96352577209473ms\r\nStep 2022, loss: 0.010037420317530632, step time: 45.79567909240723ms\r\nStep 2023, loss: 0.010057689622044563, step time: 45.659542083740234ms\r\nStep 2024, loss: 0.010052931495010853, step time: 45.768022537231445ms\r\nStep 2025, loss: 0.010042458772659302, step time: 45.84765434265137ms\r\nStep 2026, loss: 0.010056756436824799, step time: 45.66454887390137ms\r\n",,terminal_output +1186,2313454,"TERMINAL",0,0,"Step 2027, loss: 0.010024948045611382, step time: 46.01120948791504ms\r\nStep 2028, loss: 0.010036111809313297, step time: 45.79806327819824ms\r\nStep 2029, loss: 0.010010533966124058, step time: 45.850515365600586ms\r\n",,terminal_output +1187,2314000,"TERMINAL",0,0,"Step 2030, loss: 0.01002180390059948, step time: 46.54383659362793ms\r\nStep 2031, loss: 0.010035503655672073, step time: 46.13351821899414ms\r\nStep 2032, loss: 0.010042511858046055, step time: 45.80187797546387ms\r\nStep 2033, loss: 0.010009856894612312, step time: 45.63593864440918ms\r\nStep 2034, loss: 0.009982552379369736, step time: 45.78709602355957ms\r\nStep 2035, loss: 0.00998604390770197, step time: 45.812129974365234ms\r\nStep 2036, loss: 0.009983854368329048, step time: 45.69053649902344ms\r\nStep 2037, loss: 0.00998656451702118, step time: 45.916080474853516ms\r\nStep 2038, loss: 0.009977087378501892, step time: 45.59922218322754ms\r\nStep 2039, loss: 0.010014280676841736, step time: 45.92108726501465ms\r\n",,terminal_output +1188,2314188,"TERMINAL",0,0,"Step 2040, loss: 0.009987306781113148, step time: 46.76532745361328ms\r\n",,terminal_output +1189,2314621,"TERMINAL",0,0,"Step 2041, loss: 0.009999431669712067, step time: 46.38099670410156ms\r\nStep 2042, loss: 0.010007213801145554, step time: 45.89724540710449ms\r\nStep 2043, loss: 0.009965574368834496, step time: 45.801639556884766ms\r\nStep 2044, loss: 0.009980208240449429, step time: 46.035051345825195ms\r\nStep 2045, loss: 0.009964235126972198, step time: 45.55225372314453ms\r\nStep 2046, loss: 0.009944035671651363, step time: 45.73416709899902ms\r\nStep 2047, loss: 0.009976894594728947, step time: 45.865774154663086ms\r\nStep 2048, loss: 0.009956717491149902, step time: 45.84670066833496ms\r\nStep 2049, loss: 0.009956303983926773, step time: 45.99642753601074ms\r\n",,terminal_output +1190,2314809,"TERMINAL",0,0,"Step 2050, loss: 0.009975440800189972, step time: 46.55289649963379ms\r\n",,terminal_output +1191,2315236,"TERMINAL",0,0,"Step 2051, loss: 0.010003645904362202, step time: 46.295881271362305ms\r\nStep 2052, loss: 0.009973788633942604, step time: 45.83144187927246ms\r\nStep 2053, loss: 0.009997278451919556, step time: 45.73369026184082ms\r\nStep 2054, loss: 0.009982449933886528, step time: 45.88055610656738ms\r\nStep 2055, loss: 0.010009124875068665, step time: 45.612335205078125ms\r\nStep 2056, loss: 0.009990629740059376, step time: 45.71223258972168ms\r\nStep 2057, loss: 0.009995595552027225, step time: 45.70937156677246ms\r\nStep 2058, loss: 0.009998621419072151, step time: 45.69077491760254ms\r\nStep 2059, loss: 0.01001471932977438, step time: 45.8531379699707ms\r\n",,terminal_output +1192,2315480,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",589,37,"",shellscript,content +1193,2315485,"TERMINAL",0,0,"Step 2060, loss: 0.01002797856926918, step time: 47.260284423828125ms\r\nStep 2061, loss: 0.009992877021431923, step time: 46.057939529418945ms\r\n",,terminal_output +1194,2315613,"TERMINAL",0,0,"Step 2062, loss: 0.009975760243833065, step time: 45.69125175476074ms\r\nStep 2063, loss: 0.009973755106329918, step time: 45.74990272521973ms\r\nStep 2064, loss: 0.009976189583539963, step time: 45.87888717651367ms\r\n",,terminal_output +1195,2315959,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",589,1,"",shellscript,content +1196,2315967,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",608,0,"",shellscript,selection_command +1197,2316032,"TERMINAL",0,0,"Step 2065, loss: 0.009993374347686768, step time: 225.3561019897461ms\r\nStep 2066, loss: 0.00996652152389288, step time: 47.96576499938965ms\r\nStep 2067, loss: 0.009984971024096012, step time: 46.05507850646973ms\r\nStep 2068, loss: 0.009968075901269913, step time: 46.196937561035156ms\r\nStep 2069, loss: 0.009946135804057121, step time: 45.79663276672363ms\r\n",,terminal_output +1198,2316655,"TERMINAL",0,0,"Step 2070, loss: 0.009928319603204727, step time: 49.40152168273926ms\r\nStep 2071, loss: 0.009963766671717167, step time: 46.04339599609375ms\r\nStep 2072, loss: 0.009960255585610867, step time: 45.815467834472656ms\r\nStep 2073, loss: 0.009978617541491985, step time: 46.025753021240234ms\r\nStep 2074, loss: 0.009931049309670925, step time: 45.69697380065918ms\r\nStep 2075, loss: 0.009953060187399387, step time: 45.748233795166016ms\r\nStep 2076, loss: 0.009957721456885338, step time: 45.75920104980469ms\r\nStep 2077, loss: 0.00999105628579855, step time: 45.73798179626465ms\r\nStep 2078, loss: 0.009918500669300556, step time: 45.78590393066406ms\r\nStep 2079, loss: 0.009928974322974682, step time: 45.676231384277344ms\r\n",,terminal_output +1199,2317270,"TERMINAL",0,0,"Step 2080, loss: 0.009969609789550304, step time: 46.72646522521973ms\r\nStep 2081, loss: 0.009970773942768574, step time: 45.9141731262207ms\r\nStep 2082, loss: 0.009959381073713303, step time: 45.701026916503906ms\r\nStep 2083, loss: 0.00993435736745596, step time: 45.845746994018555ms\r\nStep 2084, loss: 0.009968980215489864, step time: 45.49670219421387ms\r\nStep 2085, loss: 0.00991130992770195, step time: 45.95494270324707ms\r\nStep 2086, loss: 0.009950137697160244, step time: 45.754194259643555ms\r\nStep 2087, loss: 0.009945446625351906, step time: 45.79782485961914ms\r\nStep 2088, loss: 0.009968130849301815, step time: 45.87602615356445ms\r\nStep 2089, loss: 0.00992136262357235, step time: 45.713186264038086ms\r\n",,terminal_output +1200,2317881,"TERMINAL",0,0,"Step 2090, loss: 0.009913831017911434, step time: 46.65255546569824ms\r\nStep 2091, loss: 0.009941506199538708, step time: 45.882463455200195ms\r\nStep 2092, loss: 0.009955362416803837, step time: 45.95136642456055ms\r\nStep 2093, loss: 0.009942635893821716, step time: 45.83382606506348ms\r\nStep 2094, loss: 0.009933426044881344, step time: 45.63474655151367ms\r\nStep 2095, loss: 0.009949496015906334, step time: 45.87912559509277ms\r\nStep 2096, loss: 0.00991136021912098, step time: 45.685768127441406ms\r\nStep 2097, loss: 0.009911450557410717, step time: 45.81809043884277ms\r\nStep 2098, loss: 0.009919974952936172, step time: 45.873165130615234ms\r\nStep 2099, loss: 0.009926609694957733, step time: 45.56441307067871ms\r\n",,terminal_output +1201,2318258,"TERMINAL",0,0,"Step 2100, loss: 0.009895898401737213, step time: 46.71335220336914ms\r\nStep 2101, loss: 0.00988336093723774, step time: 45.90630531311035ms\r\nStep 2102, loss: 0.009908811189234257, step time: 45.784950256347656ms\r\nStep 2103, loss: 0.00988481380045414, step time: 45.62807083129883ms\r\nStep 2104, loss: 0.00989462435245514, step time: 45.80879211425781ms\r\n",,terminal_output +1202,2318498,"TERMINAL",0,0,"Step 2105, loss: 0.009897053241729736, step time: 45.925140380859375ms\r\nStep 2106, loss: 0.009873290546238422, step time: 45.78137397766113ms\r\nStep 2107, loss: 0.009858015924692154, step time: 45.86362838745117ms\r\nStep 2108, loss: 0.009873188100755215, step time: 45.84026336669922ms\r\nStep 2109, loss: 0.009875454939901829, step time: 45.736074447631836ms\r\n",,terminal_output +1203,2319110,"TERMINAL",0,0,"Step 2110, loss: 0.009881260804831982, step time: 46.64301872253418ms\r\nStep 2111, loss: 0.009858752600848675, step time: 45.888662338256836ms\r\nStep 2112, loss: 0.009858043864369392, step time: 45.66788673400879ms\r\nStep 2113, loss: 0.009860023856163025, step time: 45.72248458862305ms\r\nStep 2114, loss: 0.009843728505074978, step time: 45.63474655151367ms\r\nStep 2115, loss: 0.009856117889285088, step time: 45.92490196228027ms\r\nStep 2116, loss: 0.00986917968839407, step time: 45.73822021484375ms\r\nStep 2117, loss: 0.009856775403022766, step time: 45.839548110961914ms\r\nStep 2118, loss: 0.009853780269622803, step time: 45.79734802246094ms\r\nStep 2119, loss: 0.009880236349999905, step time: 45.70770263671875ms\r\n",,terminal_output +1204,2319794,"TERMINAL",0,0,"Step 2120, loss: 0.009857924655079842, step time: 46.717166900634766ms\r\nStep 2121, loss: 0.009867480956017971, step time: 45.98212242126465ms\r\nStep 2122, loss: 0.009891327470541, step time: 45.769691467285156ms\r\nStep 2123, loss: 0.009850805625319481, step time: 45.80044746398926ms\r\nStep 2124, loss: 0.009826759807765484, step time: 45.65858840942383ms\r\nStep 2125, loss: 0.009853125549852848, step time: 45.75395584106445ms\r\nStep 2126, loss: 0.009827697649598122, step time: 45.67241668701172ms\r\nStep 2127, loss: 0.009824167005717754, step time: 45.781850814819336ms\r\nStep 2128, loss: 0.009827562607824802, step time: 45.77493667602539ms\r\nStep 2129, loss: 0.00982956774532795, step time: 45.6087589263916ms\r\n",,terminal_output +1205,2324796,"TERMINAL",0,0,"Step 2130, loss: 0.009824583306908607, step time: 46.71454429626465ms\r\nStep 2131, loss: 0.009809446521103382, step time: 46.07868194580078ms\r\nStep 2132, loss: 0.0098088588565588, step time: 45.86219787597656ms\r\nStep 2133, loss: 0.009813171811401844, step time: 45.85623741149902ms\r\nStep 2134, loss: 0.00980720017105341, step time: 45.75848579406738ms\r\nStep 2135, loss: 0.009860897436738014, step time: 45.89509963989258ms\r\nStep 2136, loss: 0.009784777648746967, step time: 45.77803611755371ms\r\nStep 2137, loss: 0.009801613166928291, step time: 45.83430290222168ms\r\nStep 2138, loss: 0.009841951541602612, step time: 45.84097862243652ms\r\nStep 2139, loss: 0.009780668653547764, step time: 45.755624771118164ms\r\nStep 2140, loss: 0.009800435043871403, step time: 46.88715934753418ms\r\nStep 2141, loss: 0.009812978096306324, step time: 46.04053497314453ms\r\nStep 2142, loss: 0.009791060350835323, step time: 46.009063720703125ms\r\nStep 2143, loss: 0.009814112447202206, step time: 45.96829414367676ms\r\nStep 2144, loss: 0.009825808927416801, step time: 45.680999755859375ms\r\nStep 2145, loss: 0.00982210785150528, step time: 45.86005210876465ms\r\nStep 2146, loss: 0.009799321182072163, step time: 45.797109603881836ms\r\nStep 2147, loss: 0.009812640957534313, step time: 45.75538635253906ms\r\nStep 2148, loss: 0.009823324158787727, step time: 45.65834999084473ms\r\nStep 2149, loss: 0.009815006516873837, step time: 45.7460880279541ms\r\nStep 2150, loss: 0.009808806702494621, step time: 47.18160629272461ms\r\nStep 2151, loss: 0.009804929606616497, step time: 46.02384567260742ms\r\nStep 2152, loss: 0.009825848042964935, step time: 46.01573944091797ms\r\nStep 2153, loss: 0.009809990413486958, step time: 45.83549499511719ms\r\nStep 2154, loss: 0.009810690768063068, step time: 45.78590393066406ms\r\nStep 2155, loss: 0.009871145710349083, step time: 45.839786529541016ms\r\nStep 2156, loss: 0.009805253706872463, step time: 45.73535919189453ms\r\nStep 2157, loss: 0.009794490411877632, step time: 45.844078063964844ms\r\nStep 2158, loss: 0.009865574538707733, step time: 45.712947845458984ms\r\nStep 2159, loss: 0.009798777289688587, step time: 45.691728591918945ms\r\nStep 2160, loss: 0.00979260541498661, step time: 47.15442657470703ms\r\nStep 2161, loss: 0.009805753827095032, step time: 46.02837562561035ms\r\nStep 2162, loss: 0.009826169349253178, step time: 46.02503776550293ms\r\nStep 2163, loss: 0.009784380905330181, step time: 45.74275016784668ms\r\nStep 2164, loss: 0.009770669974386692, step time: 45.67432403564453ms\r\nStep 2165, loss: 0.009839261882007122, step time: 45.75824737548828ms\r\nStep 2166, loss: 0.009779369458556175, step time: 45.5780029296875ms\r\nStep 2167, loss: 0.009764183312654495, step time: 45.89104652404785ms\r\nStep 2168, loss: 0.009816065430641174, step time: 45.684814453125ms\r\nStep 2169, loss: 0.009768316522240639, step time: 45.65310478210449ms\r\nStep 2170, loss: 0.009766563773155212, step time: 49.72553253173828ms\r\nStep 2171, loss: 0.009809029288589954, step time: 46.109914779663086ms\r\nStep 2172, loss: 0.009781255386769772, step time: 46.24462127685547ms\r\nStep 2173, loss: 0.009776981547474861, step time: 45.835256576538086ms\r\nStep 2174, loss: 0.009795631282031536, step time: 45.77302932739258ms\r\nStep 2175, loss: 0.0097788255661726, step time: 45.851945877075195ms\r\nStep 2176, loss: 0.009769829921424389, step time: 45.76921463012695ms\r\nStep 2177, loss: 0.009770294651389122, step time: 46.021461486816406ms\r\nStep 2178, loss: 0.009784694761037827, step time: 45.79472541809082ms\r\nStep 2179, loss: 0.009791182354092598, step time: 45.78995704650879ms\r\nStep 2180, loss: 0.009756775572896004, step time: 46.76508903503418ms\r\nStep 2181, loss: 0.00977029837667942, step time: 47.997236251831055ms\r\nStep 2182, loss: 0.009771828539669514, step time: 45.873165130615234ms\r\nStep 2183, loss: 0.00977601483464241, step time: 45.6087589263916ms\r\nStep 2184, loss: 0.009794913232326508, step time: 45.82691192626953ms\r\nStep 2185, loss: 0.009843177162110806, step time: 45.8226203918457ms\r\nStep 2186, loss: 0.009766190312802792, step time: 45.7460880279541ms\r\nStep 2187, loss: 0.009781129658222198, step time: 45.81928253173828ms\r\nStep 2188, loss: 0.009840433485805988, step time: 45.6998348236084ms\r\nStep 2189, loss: 0.00977071188390255, step time: 45.87101936340332ms\r\nStep 2190, loss: 0.009767313487827778, step time: 46.802520751953125ms\r\nStep 2191, loss: 0.009779499843716621, step time: 46.20480537414551ms\r\nStep 2192, loss: 0.009777508676052094, step time: 45.89676856994629ms\r\nStep 2193, loss: 0.00978157389909029, step time: 45.74847221374512ms\r\nStep 2194, loss: 0.00976575817912817, step time: 45.93849182128906ms\r\nStep 2195, loss: 0.0097780367359519, step time: 45.55797576904297ms\r\nStep 2196, loss: 0.009753772057592869, step time: 45.716047286987305ms\r\nStep 2197, loss: 0.009761135093867779, step time: 45.761823654174805ms\r\nStep 2198, loss: 0.009741632267832756, step time: 45.697689056396484ms\r\nStep 2199, loss: 0.009778373874723911, step time: 45.903921127319336ms\r\nStep 2200, loss: 0.009766815230250359, step time: 46.57864570617676ms\r\nStep 2201, loss: 0.00973503477871418, step time: 46.18430137634277ms\r\nStep 2202, loss: 0.009749888442456722, step time: 45.862436294555664ms\r\nStep 2203, loss: 0.009740892797708511, step time: 45.78042030334473ms\r\nStep 2204, loss: 0.009755478240549564, step time: 45.85981369018555ms\r\nStep 2205, loss: 0.009761137887835503, step time: 45.53866386413574ms\r\nStep 2206, loss: 0.009736867621541023, step time: 45.68934440612793ms\r\nStep 2207, loss: 0.009747437201440334, step time: 45.775413513183594ms\r\nStep 2208, loss: 0.009727722965180874, step time: 45.665740966796875ms\r\nStep 2209, loss: 0.009748769924044609, step time: 45.90892791748047ms\r\n",,terminal_output +1206,2327794,"TERMINAL",0,0,"Step 2210, loss: 0.009752942249178886, step time: 46.106576919555664ms\r\nStep 2211, loss: 0.009730594232678413, step time: 45.98808288574219ms\r\nStep 2212, loss: 0.00975740235298872, step time: 45.74942588806152ms\r\nStep 2213, loss: 0.009740869514644146, step time: 45.613765716552734ms\r\nStep 2214, loss: 0.009738065302371979, step time: 45.80974578857422ms\r\nStep 2215, loss: 0.00975427683442831, step time: 45.53961753845215ms\r\nStep 2216, loss: 0.009729256853461266, step time: 45.76683044433594ms\r\nStep 2217, loss: 0.009762058965861797, step time: 45.70579528808594ms\r\nStep 2218, loss: 0.009747551754117012, step time: 45.57967185974121ms\r\nStep 2219, loss: 0.009752020239830017, step time: 45.74179649353027ms\r\nStep 2220, loss: 0.009758670814335346, step time: 46.479225158691406ms\r\nStep 2221, loss: 0.009732269681990147, step time: 46.32091522216797ms\r\nStep 2222, loss: 0.009719152003526688, step time: 45.771121978759766ms\r\nStep 2223, loss: 0.00976607482880354, step time: 45.79329490661621ms\r\nStep 2224, loss: 0.009735289961099625, step time: 45.7606315612793ms\r\nStep 2225, loss: 0.009735102765262127, step time: 45.65024375915527ms\r\nStep 2226, loss: 0.009739129804074764, step time: 45.81904411315918ms\r\nStep 2227, loss: 0.009705723263323307, step time: 45.92180252075195ms\r\nStep 2228, loss: 0.009761069901287556, step time: 45.63760757446289ms\r\nStep 2229, loss: 0.009743635542690754, step time: 45.84455490112305ms\r\nStep 2230, loss: 0.009733032435178757, step time: 46.57602310180664ms\r\nStep 2231, loss: 0.009769304655492306, step time: 46.13184928894043ms\r\nStep 2232, loss: 0.009687328711152077, step time: 45.816659927368164ms\r\nStep 2233, loss: 0.009764241054654121, step time: 45.78566551208496ms\r\nStep 2234, loss: 0.009710526093840599, step time: 45.67718505859375ms\r\nStep 2235, loss: 0.0097482455894351, step time: 45.74131965637207ms\r\nStep 2236, loss: 0.009702303446829319, step time: 46.0057258605957ms\r\nStep 2237, loss: 0.009732118807733059, step time: 45.66025733947754ms\r\nStep 2238, loss: 0.00972010288387537, step time: 45.67527770996094ms\r\nStep 2239, loss: 0.00971915852278471, step time: 45.67384719848633ms\r\nStep 2240, loss: 0.009700593538582325, step time: 46.68688774108887ms\r\nStep 2241, loss: 0.009730092249810696, step time: 46.43511772155762ms\r\nStep 2242, loss: 0.00969670806080103, step time: 46.0817813873291ms\r\nStep 2243, loss: 0.009721340611577034, step time: 46.0810661315918ms\r\nStep 2244, loss: 0.00972029846161604, step time: 45.968055725097656ms\r\nStep 2245, loss: 0.009701662696897984, step time: 45.58968544006348ms\r\nStep 2246, loss: 0.009715452790260315, step time: 45.68314552307129ms\r\nStep 2247, loss: 0.009692694060504436, step time: 45.722246170043945ms\r\nStep 2248, loss: 0.009752145037055016, step time: 45.72463035583496ms\r\nStep 2249, loss: 0.009711606428027153, step time: 45.61662673950195ms\r\nStep 2250, loss: 0.009708347730338573, step time: 47.56736755371094ms\r\nStep 2251, loss: 0.00968622975051403, step time: 47.551870346069336ms\r\nStep 2252, loss: 0.009718667715787888, step time: 46.854496002197266ms\r\nStep 2253, loss: 0.009704613126814365, step time: 46.68617248535156ms\r\nStep 2254, loss: 0.009721050970256329, step time: 46.776533126831055ms\r\nStep 2255, loss: 0.009706412442028522, step time: 45.87197303771973ms\r\nStep 2256, loss: 0.00970172043889761, step time: 45.74155807495117ms\r\nStep 2257, loss: 0.009714487008750439, step time: 45.99881172180176ms\r\nStep 2258, loss: 0.009689487516880035, step time: 45.98379135131836ms\r\nStep 2259, loss: 0.009689902886748314, step time: 45.89390754699707ms\r\n",,terminal_output +1207,2332794,"TERMINAL",0,0,"Step 2260, loss: 0.009675804525613785, step time: 46.744346618652344ms\r\nStep 2261, loss: 0.00969596765935421, step time: 45.905113220214844ms\r\nStep 2262, loss: 0.009668556042015553, step time: 45.613765716552734ms\r\nStep 2263, loss: 0.009676256217062473, step time: 45.56584358215332ms\r\nStep 2264, loss: 0.00968841090798378, step time: 45.70960998535156ms\r\nStep 2265, loss: 0.009700360707938671, step time: 45.61138153076172ms\r\nStep 2266, loss: 0.009701394475996494, step time: 45.85552215576172ms\r\nStep 2267, loss: 0.009671764448285103, step time: 46.03767395019531ms\r\nStep 2268, loss: 0.009714015759527683, step time: 45.76230049133301ms\r\nStep 2269, loss: 0.009649003855884075, step time: 45.85719108581543ms\r\nStep 2270, loss: 0.009666439145803452, step time: 47.29485511779785ms\r\nStep 2271, loss: 0.00968596339225769, step time: 46.69356346130371ms\r\nStep 2272, loss: 0.00968844909220934, step time: 46.3716983795166ms\r\nStep 2273, loss: 0.009666046127676964, step time: 46.26274108886719ms\r\nStep 2274, loss: 0.0096379229798913, step time: 46.28467559814453ms\r\nStep 2275, loss: 0.009671593084931374, step time: 46.18215560913086ms\r\nStep 2276, loss: 0.009654467925429344, step time: 46.1726188659668ms\r\nStep 2277, loss: 0.009642567485570908, step time: 46.366214752197266ms\r\nStep 2278, loss: 0.009651106782257557, step time: 45.84693908691406ms\r\nStep 2279, loss: 0.009622305631637573, step time: 45.58062553405762ms\r\nStep 2280, loss: 0.009646343067288399, step time: 47.46723175048828ms\r\nStep 2281, loss: 0.00962669774889946, step time: 46.22960090637207ms\r\nStep 2282, loss: 0.009651130996644497, step time: 45.72701454162598ms\r\nStep 2283, loss: 0.009650747291743755, step time: 48.6750602722168ms\r\nStep 2284, loss: 0.009617398492991924, step time: 46.21386528015137ms\r\nStep 2285, loss: 0.009645924903452396, step time: 45.619964599609375ms\r\nStep 2286, loss: 0.009633030742406845, step time: 45.58920860290527ms\r\nStep 2287, loss: 0.009628848172724247, step time: 45.59159278869629ms\r\nStep 2288, loss: 0.009654728695750237, step time: 45.578718185424805ms\r\nStep 2289, loss: 0.00963588710874319, step time: 45.95375061035156ms\r\nStep 2290, loss: 0.009647472761571407, step time: 48.63882064819336ms\r\nStep 2291, loss: 0.009641152806580067, step time: 45.68624496459961ms\r\nStep 2292, loss: 0.009628714062273502, step time: 45.52602767944336ms\r\nStep 2293, loss: 0.009659056551754475, step time: 45.55773735046387ms\r\nStep 2294, loss: 0.0096358647570014, step time: 45.67742347717285ms\r\nStep 2295, loss: 0.009633555077016354, step time: 45.60708999633789ms\r\nStep 2296, loss: 0.0096378643065691, step time: 45.63403129577637ms\r\nStep 2297, loss: 0.00964852049946785, step time: 45.5629825592041ms\r\nStep 2298, loss: 0.00966227613389492, step time: 45.46976089477539ms\r\nStep 2299, loss: 0.009677339345216751, step time: 45.64714431762695ms\r\nStep 2300, loss: 0.00969856046140194, step time: 47.16849327087402ms\r\nStep 2301, loss: 0.009648328647017479, step time: 46.61679267883301ms\r\nStep 2302, loss: 0.009649775922298431, step time: 46.549081802368164ms\r\nStep 2303, loss: 0.009680325165390968, step time: 47.05381393432617ms\r\nStep 2304, loss: 0.00965392030775547, step time: 46.579599380493164ms\r\nStep 2305, loss: 0.009652586653828621, step time: 45.94254493713379ms\r\nStep 2306, loss: 0.009646154008805752, step time: 46.97823524475098ms\r\nStep 2307, loss: 0.00962691567838192, step time: 46.27060890197754ms\r\nStep 2308, loss: 0.009642820805311203, step time: 45.81761360168457ms\r\nStep 2309, loss: 0.009648033417761326, step time: 45.62664031982422ms\r\nStep 2310, loss: 0.009628362022340298, step time: 47.185659408569336ms\r\nStep 2311, loss: 0.00962775107473135, step time: 46.705007553100586ms\r\nStep 2312, loss: 0.009642536751925945, step time: 46.40507698059082ms\r\nStep 2313, loss: 0.009610338136553764, step time: 45.99308967590332ms\r\nStep 2314, loss: 0.009608975611627102, step time: 45.78828811645508ms\r\nStep 2315, loss: 0.009611968882381916, step time: 45.8526611328125ms\r\nStep 2316, loss: 0.009589307941496372, step time: 45.7301139831543ms\r\nStep 2317, loss: 0.009584779851138592, step time: 45.86076736450195ms\r\nStep 2318, loss: 0.009599193930625916, step time: 45.908451080322266ms\r\nStep 2319, loss: 0.00958778616040945, step time: 45.67432403564453ms\r\nStep 2320, loss: 0.00961625948548317, step time: 47.95384407043457ms\r\nStep 2321, loss: 0.009609547443687916, step time: 45.931100845336914ms\r\nStep 2322, loss: 0.009617800824344158, step time: 45.897722244262695ms\r\nStep 2323, loss: 0.009613928385078907, step time: 45.76683044433594ms\r\nStep 2324, loss: 0.009693818166851997, step time: 45.62497138977051ms\r\nStep 2325, loss: 0.009671667590737343, step time: 45.856475830078125ms\r\nStep 2326, loss: 0.009610340930521488, step time: 45.617103576660156ms\r\nStep 2327, loss: 0.009641178883612156, step time: 45.743465423583984ms\r\nStep 2328, loss: 0.009609008207917213, step time: 45.74847221374512ms\r\nStep 2329, loss: 0.009639005176723003, step time: 45.64309120178223ms\r\nStep 2330, loss: 0.009602945297956467, step time: 50.22263526916504ms\r\nStep 2331, loss: 0.00963896606117487, step time: 45.993804931640625ms\r\nStep 2332, loss: 0.009646342135965824, step time: 46.06747627258301ms\r\nStep 2333, loss: 0.009630685672163963, step time: 45.80235481262207ms\r\nStep 2334, loss: 0.009642529301345348, step time: 45.652151107788086ms\r\nStep 2335, loss: 0.009585045278072357, step time: 45.82786560058594ms\r\nStep 2336, loss: 0.00962493009865284, step time: 45.83573341369629ms\r\nStep 2337, loss: 0.009595215320587158, step time: 45.8221435546875ms\r\nStep 2338, loss: 0.009636796079576015, step time: 45.76706886291504ms\r\nStep 2339, loss: 0.009598926641047001, step time: 45.696258544921875ms\r\n",,terminal_output +1208,2337797,"TERMINAL",0,0,"Step 2340, loss: 0.009607188403606415, step time: 46.98824882507324ms\r\nStep 2341, loss: 0.009584251791238785, step time: 46.00048065185547ms\r\nStep 2342, loss: 0.009561377577483654, step time: 45.97353935241699ms\r\nStep 2343, loss: 0.009623279795050621, step time: 45.77445983886719ms\r\nStep 2344, loss: 0.00956813059747219, step time: 45.7148551940918ms\r\nStep 2345, loss: 0.009601814672350883, step time: 45.73988914489746ms\r\nStep 2346, loss: 0.009570824913680553, step time: 45.67241668701172ms\r\nStep 2347, loss: 0.009592477232217789, step time: 45.8834171295166ms\r\nStep 2348, loss: 0.009584370069205761, step time: 45.961618423461914ms\r\nStep 2349, loss: 0.0095752514898777, step time: 45.729875564575195ms\r\nStep 2350, loss: 0.009593667462468147, step time: 46.83566093444824ms\r\nStep 2351, loss: 0.009593757800757885, step time: 46.06437683105469ms\r\nStep 2352, loss: 0.00960841216146946, step time: 45.89986801147461ms\r\nStep 2353, loss: 0.009585849940776825, step time: 45.78661918640137ms\r\nStep 2354, loss: 0.009587178938090801, step time: 45.705318450927734ms\r\nStep 2355, loss: 0.009603595361113548, step time: 45.74871063232422ms\r\nStep 2356, loss: 0.009594393894076347, step time: 45.7301139831543ms\r\nStep 2357, loss: 0.00959325022995472, step time: 45.943498611450195ms\r\nStep 2358, loss: 0.009606101550161839, step time: 45.805931091308594ms\r\nStep 2359, loss: 0.009611787274479866, step time: 45.64094543457031ms\r\nStep 2360, loss: 0.009615959599614143, step time: 46.71216011047363ms\r\nStep 2361, loss: 0.009631733410060406, step time: 46.034812927246094ms\r\nStep 2362, loss: 0.009649560786783695, step time: 46.14615440368652ms\r\nStep 2363, loss: 0.009625643491744995, step time: 45.77159881591797ms\r\nStep 2364, loss: 0.0096236951649189, step time: 45.691490173339844ms\r\nStep 2365, loss: 0.009622493758797646, step time: 45.647621154785156ms\r\nStep 2366, loss: 0.009591336362063885, step time: 45.64547538757324ms\r\nStep 2367, loss: 0.009587302803993225, step time: 45.90892791748047ms\r\nStep 2368, loss: 0.009616381488740444, step time: 45.67527770996094ms\r\nStep 2369, loss: 0.009575995616614819, step time: 45.60542106628418ms\r\nStep 2370, loss: 0.009563288651406765, step time: 47.475576400756836ms\r\nStep 2371, loss: 0.009587159380316734, step time: 47.194719314575195ms\r\nStep 2372, loss: 0.009579749777913094, step time: 46.20218276977539ms\r\nStep 2373, loss: 0.009580238722264767, step time: 45.82548141479492ms\r\nStep 2374, loss: 0.009596504271030426, step time: 45.94779014587402ms\r\nStep 2375, loss: 0.009563829749822617, step time: 45.743703842163086ms\r\nStep 2376, loss: 0.009531437419354916, step time: 45.844078063964844ms\r\nStep 2377, loss: 0.009576487354934216, step time: 45.91941833496094ms\r\nStep 2378, loss: 0.009542100131511688, step time: 45.67837715148926ms\r\nStep 2379, loss: 0.009543797001242638, step time: 45.74131965637207ms\r\nStep 2380, loss: 0.009584310464560986, step time: 50.45008659362793ms\r\nStep 2381, loss: 0.009572376497089863, step time: 47.43480682373047ms\r\nStep 2382, loss: 0.00957625824958086, step time: 47.18494415283203ms\r\nStep 2383, loss: 0.009596291929483414, step time: 47.11484909057617ms\r\nStep 2384, loss: 0.009579252451658249, step time: 46.723127365112305ms\r\nStep 2385, loss: 0.00959022343158722, step time: 46.536922454833984ms\r\nStep 2386, loss: 0.009577249176800251, step time: 46.189069747924805ms\r\nStep 2387, loss: 0.009569209069013596, step time: 45.90868949890137ms\r\nStep 2388, loss: 0.0095995357260108, step time: 45.84622383117676ms\r\nStep 2389, loss: 0.009572411887347698, step time: 45.8526611328125ms\r\nStep 2390, loss: 0.009589659981429577, step time: 46.81038856506348ms\r\nStep 2391, loss: 0.009593890979886055, step time: 46.03743553161621ms\r\nStep 2392, loss: 0.009585503488779068, step time: 45.701026916503906ms\r\nStep 2393, loss: 0.009580622427165508, step time: 45.82715034484863ms\r\nStep 2394, loss: 0.009561053477227688, step time: 45.74441909790039ms\r\nStep 2395, loss: 0.009573458693921566, step time: 45.680999755859375ms\r\nStep 2396, loss: 0.009579358622431755, step time: 45.67575454711914ms\r\nStep 2397, loss: 0.009572373703122139, step time: 45.66788673400879ms\r\nStep 2398, loss: 0.00955784972757101, step time: 46.0047721862793ms\r\nStep 2399, loss: 0.00955783762037754, step time: 45.86148262023926ms\r\nStep 2400, loss: 0.009548326954245567, step time: 46.80490493774414ms\r\nStep 2401, loss: 0.009534253738820553, step time: 46.09346389770508ms\r\nStep 2402, loss: 0.009533029980957508, step time: 45.78208923339844ms\r\nStep 2403, loss: 0.009516836144030094, step time: 46.22507095336914ms\r\nStep 2404, loss: 0.009514235891401768, step time: 45.64499855041504ms\r\nStep 2405, loss: 0.009522584266960621, step time: 45.659780502319336ms\r\nStep 2406, loss: 0.009508023038506508, step time: 45.72486877441406ms\r\nStep 2407, loss: 0.009527062065899372, step time: 45.69530487060547ms\r\nStep 2408, loss: 0.009531540796160698, step time: 45.79567909240723ms\r\nStep 2409, loss: 0.00949800107628107, step time: 45.633792877197266ms\r\nStep 2410, loss: 0.009505433030426502, step time: 46.68998718261719ms\r\nStep 2411, loss: 0.009511949494481087, step time: 46.0054874420166ms\r\nStep 2412, loss: 0.00949939526617527, step time: 45.69268226623535ms\r\nStep 2413, loss: 0.00954153947532177, step time: 45.865535736083984ms\r\nStep 2414, loss: 0.00954270176589489, step time: 45.74847221374512ms\r\nStep 2415, loss: 0.009514525532722473, step time: 45.74275016784668ms\r\nStep 2416, loss: 0.00955271814018488, step time: 45.72725296020508ms\r\nStep 2417, loss: 0.009521493688225746, step time: 45.58992385864258ms\r\nStep 2418, loss: 0.009545569308102131, step time: 45.95518112182617ms\r\nStep 2419, loss: 0.009572851471602917, step time: 45.87292671203613ms\r\n",,terminal_output +1209,2341795,"TERMINAL",0,0,"Step 2420, loss: 0.009520688094198704, step time: 46.955108642578125ms\r\nStep 2421, loss: 0.009530219249427319, step time: 46.13327980041504ms\r\nStep 2422, loss: 0.009559213183820248, step time: 45.855045318603516ms\r\nStep 2423, loss: 0.00953969918191433, step time: 45.96567153930664ms\r\nStep 2424, loss: 0.009580143727362156, step time: 45.59731483459473ms\r\nStep 2425, loss: 0.009539426304399967, step time: 46.01168632507324ms\r\nStep 2426, loss: 0.009521301835775375, step time: 45.64404487609863ms\r\nStep 2427, loss: 0.009539417922496796, step time: 45.79043388366699ms\r\nStep 2428, loss: 0.009513428434729576, step time: 45.90630531311035ms\r\nStep 2429, loss: 0.009507501497864723, step time: 45.70937156677246ms\r\nStep 2430, loss: 0.009503856301307678, step time: 49.371957778930664ms\r\nStep 2431, loss: 0.009504219517111778, step time: 46.118974685668945ms\r\nStep 2432, loss: 0.009504023008048534, step time: 45.76539993286133ms\r\nStep 2433, loss: 0.009509672410786152, step time: 45.705556869506836ms\r\nStep 2434, loss: 0.009530521929264069, step time: 45.55988311767578ms\r\nStep 2435, loss: 0.009504701942205429, step time: 45.82476615905762ms\r\nStep 2436, loss: 0.009498299099504948, step time: 45.71247100830078ms\r\nStep 2437, loss: 0.009498260915279388, step time: 45.635223388671875ms\r\nStep 2438, loss: 0.009484614245593548, step time: 45.83549499511719ms\r\nStep 2439, loss: 0.009510519914329052, step time: 45.66001892089844ms\r\nStep 2440, loss: 0.009491043165326118, step time: 49.81589317321777ms\r\nStep 2441, loss: 0.009502771310508251, step time: 45.97353935241699ms\r\nStep 2442, loss: 0.009509030729532242, step time: 45.79734802246094ms\r\nStep 2443, loss: 0.009494137950241566, step time: 45.771121978759766ms\r\nStep 2444, loss: 0.009497924707829952, step time: 45.77016830444336ms\r\nStep 2445, loss: 0.009552501142024994, step time: 45.77803611755371ms\r\nStep 2446, loss: 0.00949193350970745, step time: 45.65620422363281ms\r\nStep 2447, loss: 0.00950794480741024, step time: 45.68123817443848ms\r\nStep 2448, loss: 0.009571424685418606, step time: 45.70150375366211ms\r\nStep 2449, loss: 0.009511228650808334, step time: 45.567989349365234ms\r\nStep 2450, loss: 0.009509542025625706, step time: 46.87309265136719ms\r\nStep 2451, loss: 0.009580861777067184, step time: 45.861005783081055ms\r\nStep 2452, loss: 0.009521018713712692, step time: 45.813560485839844ms\r\nStep 2453, loss: 0.009522427804768085, step time: 45.6700325012207ms\r\nStep 2454, loss: 0.009567598812282085, step time: 45.519351959228516ms\r\nStep 2455, loss: 0.009512616321444511, step time: 45.82953453063965ms\r\nStep 2456, loss: 0.00951410736888647, step time: 45.685768127441406ms\r\nStep 2457, loss: 0.009521007537841797, step time: 45.8376407623291ms\r\nStep 2458, loss: 0.00949697196483612, step time: 45.73965072631836ms\r\nStep 2459, loss: 0.009513678029179573, step time: 45.68982124328613ms\r\nStep 2460, loss: 0.009504102170467377, step time: 46.84734344482422ms\r\nStep 2461, loss: 0.009503016248345375, step time: 46.06509208679199ms\r\nStep 2462, loss: 0.009506870061159134, step time: 45.920372009277344ms\r\nStep 2463, loss: 0.009501500055193901, step time: 45.832157135009766ms\r\nStep 2464, loss: 0.009525938890874386, step time: 45.671939849853516ms\r\nStep 2465, loss: 0.00954935047775507, step time: 45.8683967590332ms\r\nStep 2466, loss: 0.00945893581956625, step time: 45.615196228027344ms\r\nStep 2467, loss: 0.009534262120723724, step time: 45.86338996887207ms\r\nStep 2468, loss: 0.009459765627980232, step time: 45.73345184326172ms\r\nStep 2469, loss: 0.009489434771239758, step time: 45.79043388366699ms\r\n",,terminal_output +1210,2346796,"TERMINAL",0,0,"Step 2470, loss: 0.009491673670709133, step time: 47.41930961608887ms\r\nStep 2471, loss: 0.0094860615208745, step time: 46.297311782836914ms\r\nStep 2472, loss: 0.009505102410912514, step time: 46.00811004638672ms\r\nStep 2473, loss: 0.009470338001847267, step time: 45.746564865112305ms\r\nStep 2474, loss: 0.00949294213205576, step time: 45.63307762145996ms\r\nStep 2475, loss: 0.009472937323153019, step time: 45.757293701171875ms\r\nStep 2476, loss: 0.009455578401684761, step time: 45.5622673034668ms\r\nStep 2477, loss: 0.009519708342850208, step time: 45.79496383666992ms\r\nStep 2478, loss: 0.009450864046812057, step time: 45.61209678649902ms\r\nStep 2479, loss: 0.009469370357692242, step time: 45.75610160827637ms\r\nStep 2480, loss: 0.009488455019891262, step time: 49.34358596801758ms\r\nStep 2481, loss: 0.009464970789849758, step time: 45.97353935241699ms\r\nStep 2482, loss: 0.009492424316704273, step time: 45.93801498413086ms\r\nStep 2483, loss: 0.009462859481573105, step time: 45.66526412963867ms\r\nStep 2484, loss: 0.009487596340477467, step time: 45.742034912109375ms\r\nStep 2485, loss: 0.009486427530646324, step time: 45.72248458862305ms\r\nStep 2486, loss: 0.009471626952290535, step time: 45.75061798095703ms\r\nStep 2487, loss: 0.00945930927991867, step time: 46.06962203979492ms\r\nStep 2488, loss: 0.009467068128287792, step time: 45.77898979187012ms\r\nStep 2489, loss: 0.009493955411016941, step time: 45.8071231842041ms\r\nStep 2490, loss: 0.009487766772508621, step time: 49.45969581604004ms\r\nStep 2491, loss: 0.009449520148336887, step time: 46.35190963745117ms\r\nStep 2492, loss: 0.009512066841125488, step time: 46.11015319824219ms\r\nStep 2493, loss: 0.00945630855858326, step time: 45.79758644104004ms\r\nStep 2494, loss: 0.009486250579357147, step time: 46.02861404418945ms\r\nStep 2495, loss: 0.009459263645112514, step time: 45.67384719848633ms\r\nStep 2496, loss: 0.00943560991436243, step time: 45.75204849243164ms\r\nStep 2497, loss: 0.009481007233262062, step time: 45.90034484863281ms\r\nStep 2498, loss: 0.009412906132638454, step time: 45.71342468261719ms\r\nStep 2499, loss: 0.009446204639971256, step time: 45.815467834472656ms\r\nStep 2500, loss: 0.009462591260671616, step time: 46.56696319580078ms\r\nStep 2501, loss: 0.009451979771256447, step time: 46.31638526916504ms\r\nStep 2502, loss: 0.009448573924601078, step time: 45.80569267272949ms\r\nStep 2503, loss: 0.00940987654030323, step time: 45.607566833496094ms\r\nStep 2504, loss: 0.00944814644753933, step time: 45.84026336669922ms\r\nStep 2505, loss: 0.009413066320121288, step time: 45.59969902038574ms\r\nStep 2506, loss: 0.009432056918740273, step time: 45.69816589355469ms\r\nStep 2507, loss: 0.009403049945831299, step time: 46.02551460266113ms\r\nStep 2508, loss: 0.009450630284845829, step time: 45.66335678100586ms\r\nStep 2509, loss: 0.00940459594130516, step time: 45.92323303222656ms\r\nStep 2510, loss: 0.009435493499040604, step time: 46.540260314941406ms\r\nStep 2511, loss: 0.00942525826394558, step time: 46.259403228759766ms\r\nStep 2512, loss: 0.009417441673576832, step time: 45.82643508911133ms\r\nStep 2513, loss: 0.009420626796782017, step time: 45.69816589355469ms\r\nStep 2514, loss: 0.009414450265467167, step time: 45.723915100097656ms\r\nStep 2515, loss: 0.009441056288778782, step time: 45.701026916503906ms\r\nStep 2516, loss: 0.009412451647222042, step time: 45.83311080932617ms\r\nStep 2517, loss: 0.00944325141608715, step time: 45.94588279724121ms\r\nStep 2518, loss: 0.00946893636137247, step time: 45.794010162353516ms\r\nStep 2519, loss: 0.009422710165381432, step time: 45.885324478149414ms\r\nStep 2520, loss: 0.009429379366338253, step time: 46.78654670715332ms\r\nStep 2521, loss: 0.009448554366827011, step time: 46.13828659057617ms\r\nStep 2522, loss: 0.009420128539204597, step time: 45.82929611206055ms\r\nStep 2523, loss: 0.009467873722314835, step time: 45.629024505615234ms\r\nStep 2524, loss: 0.009403296746313572, step time: 45.853376388549805ms\r\nStep 2525, loss: 0.009435221552848816, step time: 45.629024505615234ms\r\nStep 2526, loss: 0.009458670392632484, step time: 45.65834999084473ms\r\nStep 2527, loss: 0.00939328595995903, step time: 45.86982727050781ms\r\nStep 2528, loss: 0.009426991455256939, step time: 45.74298858642578ms\r\nStep 2529, loss: 0.009426231496036053, step time: 45.74084281921387ms\r\nStep 2530, loss: 0.009381023235619068, step time: 47.304391860961914ms\r\nStep 2531, loss: 0.009426997974514961, step time: 45.98093032836914ms\r\nStep 2532, loss: 0.009379938244819641, step time: 45.8531379699707ms\r\nStep 2533, loss: 0.009394143708050251, step time: 45.67122459411621ms\r\nStep 2534, loss: 0.009394571185112, step time: 45.737504959106445ms\r\nStep 2535, loss: 0.00938537996262312, step time: 45.78828811645508ms\r\nStep 2536, loss: 0.009403369389474392, step time: 45.7158088684082ms\r\nStep 2537, loss: 0.009394400753080845, step time: 46.20814323425293ms\r\nStep 2538, loss: 0.009383145719766617, step time: 46.00644111633301ms\r\nStep 2539, loss: 0.009381407871842384, step time: 45.63617706298828ms\r\nStep 2540, loss: 0.009385492652654648, step time: 49.31235313415527ms\r\nStep 2541, loss: 0.009397603571414948, step time: 45.85599899291992ms\r\nStep 2542, loss: 0.009395009838044643, step time: 45.84789276123047ms\r\nStep 2543, loss: 0.009411397390067577, step time: 45.7611083984375ms\r\nStep 2544, loss: 0.009426390752196312, step time: 45.68004608154297ms\r\nStep 2545, loss: 0.009422818198800087, step time: 45.80402374267578ms\r\nStep 2546, loss: 0.009439799934625626, step time: 45.601844787597656ms\r\nStep 2547, loss: 0.009469939395785332, step time: 45.778512954711914ms\r\nStep 2548, loss: 0.009483483619987965, step time: 45.75967788696289ms\r\nStep 2549, loss: 0.009424776770174503, step time: 45.618295669555664ms\r\n",,terminal_output +1211,2351795,"TERMINAL",0,0,"Step 2550, loss: 0.00949295237660408, step time: 49.558162689208984ms\r\nStep 2551, loss: 0.00942922942340374, step time: 46.01287841796875ms\r\nStep 2552, loss: 0.009403646923601627, step time: 46.00882530212402ms\r\nStep 2553, loss: 0.009460264816880226, step time: 45.74775695800781ms\r\nStep 2554, loss: 0.009399292059242725, step time: 45.76539993286133ms\r\nStep 2555, loss: 0.009433846920728683, step time: 45.78042030334473ms\r\nStep 2556, loss: 0.009377691894769669, step time: 45.57633399963379ms\r\nStep 2557, loss: 0.009428892284631729, step time: 45.69673538208008ms\r\nStep 2558, loss: 0.009401818737387657, step time: 45.835018157958984ms\r\nStep 2559, loss: 0.009389018639922142, step time: 45.630455017089844ms\r\nStep 2560, loss: 0.009368037804961205, step time: 46.92554473876953ms\r\nStep 2561, loss: 0.009359613992273808, step time: 45.967817306518555ms\r\nStep 2562, loss: 0.009352268651127815, step time: 45.847177505493164ms\r\nStep 2563, loss: 0.009332055225968361, step time: 45.76706886291504ms\r\nStep 2564, loss: 0.009350364096462727, step time: 45.64094543457031ms\r\nStep 2565, loss: 0.009371503256261349, step time: 45.9287166595459ms\r\nStep 2566, loss: 0.009345118887722492, step time: 45.691490173339844ms\r\nStep 2567, loss: 0.009376167319715023, step time: 45.69435119628906ms\r\nStep 2568, loss: 0.009381632320582867, step time: 45.71223258972168ms\r\nStep 2569, loss: 0.009360372088849545, step time: 45.56393623352051ms\r\nStep 2570, loss: 0.009411175735294819, step time: 47.07527160644531ms\r\nStep 2571, loss: 0.009360079653561115, step time: 46.0057258605957ms\r\nStep 2572, loss: 0.009411115199327469, step time: 45.737266540527344ms\r\nStep 2573, loss: 0.00939006544649601, step time: 45.70627212524414ms\r\nStep 2574, loss: 0.009374442510306835, step time: 45.68743705749512ms\r\nStep 2575, loss: 0.009441574104130268, step time: 45.78042030334473ms\r\nStep 2576, loss: 0.009386356920003891, step time: 45.752525329589844ms\r\nStep 2577, loss: 0.009405680932104588, step time: 45.815467834472656ms\r\nStep 2578, loss: 0.009389461018145084, step time: 45.84050178527832ms\r\nStep 2579, loss: 0.009409040212631226, step time: 45.68743705749512ms\r\nStep 2580, loss: 0.009381566196680069, step time: 46.766042709350586ms\r\nStep 2581, loss: 0.009365735575556755, step time: 45.987606048583984ms\r\nStep 2582, loss: 0.009396328590810299, step time: 46.082496643066406ms\r\nStep 2583, loss: 0.009349379688501358, step time: 45.75395584106445ms\r\nStep 2584, loss: 0.009399697184562683, step time: 45.62997817993164ms\r\nStep 2585, loss: 0.00937199592590332, step time: 45.8376407623291ms\r\nStep 2586, loss: 0.009358243085443974, step time: 45.63760757446289ms\r\nStep 2587, loss: 0.009368499740958214, step time: 45.64547538757324ms\r\nStep 2588, loss: 0.0093645378947258, step time: 45.81928253173828ms\r\nStep 2589, loss: 0.009357678703963757, step time: 45.5927848815918ms\r\nStep 2590, loss: 0.009340907447040081, step time: 49.86262321472168ms\r\nStep 2591, loss: 0.009326578117907047, step time: 46.10919952392578ms\r\nStep 2592, loss: 0.009329983964562416, step time: 45.91846466064453ms\r\nStep 2593, loss: 0.009328966028988361, step time: 45.762062072753906ms\r\nStep 2594, loss: 0.009401194751262665, step time: 45.720577239990234ms\r\nStep 2595, loss: 0.009359754621982574, step time: 45.738935470581055ms\r\nStep 2596, loss: 0.009324082173407078, step time: 45.76754570007324ms\r\nStep 2597, loss: 0.009443707764148712, step time: 45.74179649353027ms\r\nStep 2598, loss: 0.009325645864009857, step time: 45.75681686401367ms\r\nStep 2599, loss: 0.00939127616584301, step time: 45.661211013793945ms\r\nStep 2600, loss: 0.009347684681415558, step time: 49.72696304321289ms\r\nStep 2601, loss: 0.009392957203090191, step time: 45.98283767700195ms\r\nStep 2602, loss: 0.00934256799519062, step time: 45.77469825744629ms\r\nStep 2603, loss: 0.009343749843537807, step time: 45.74012756347656ms\r\nStep 2604, loss: 0.009338724426925182, step time: 45.609235763549805ms\r\nStep 2605, loss: 0.009359116666018963, step time: 45.82953453063965ms\r\nStep 2606, loss: 0.00935708824545145, step time: 45.64023017883301ms\r\nStep 2607, loss: 0.00932994857430458, step time: 45.5629825592041ms\r\nStep 2608, loss: 0.009358744136989117, step time: 45.774221420288086ms\r\nStep 2609, loss: 0.009333341382443905, step time: 45.606374740600586ms\r\nStep 2610, loss: 0.009374164044857025, step time: 46.877145767211914ms\r\nStep 2611, loss: 0.009341645054519176, step time: 45.98569869995117ms\r\nStep 2612, loss: 0.009339083917438984, step time: 45.72868347167969ms\r\nStep 2613, loss: 0.009327614679932594, step time: 45.809268951416016ms\r\nStep 2614, loss: 0.009329845197498798, step time: 45.738935470581055ms\r\nStep 2615, loss: 0.009359721094369888, step time: 45.75157165527344ms\r\nStep 2616, loss: 0.009345423430204391, step time: 45.731306076049805ms\r\nStep 2617, loss: 0.009332056157290936, step time: 45.560359954833984ms\r\nStep 2618, loss: 0.0093354107812047, step time: 45.8683967590332ms\r\nStep 2619, loss: 0.00934050977230072, step time: 45.6235408782959ms\r\nStep 2620, loss: 0.009319904260337353, step time: 46.81253433227539ms\r\nStep 2621, loss: 0.009335791692137718, step time: 46.013593673706055ms\r\nStep 2622, loss: 0.009319928474724293, step time: 45.63713073730469ms\r\nStep 2623, loss: 0.009321118704974651, step time: 45.838356018066406ms\r\nStep 2624, loss: 0.009332569316029549, step time: 45.67217826843262ms\r\nStep 2625, loss: 0.009318183176219463, step time: 45.83334922790527ms\r\nStep 2626, loss: 0.009329698979854584, step time: 45.78518867492676ms\r\nStep 2627, loss: 0.00932053942233324, step time: 45.723915100097656ms\r\nStep 2628, loss: 0.009280267171561718, step time: 45.90725898742676ms\r\nStep 2629, loss: 0.009289894253015518, step time: 45.6995964050293ms\r\n",,terminal_output +1212,2351796,"TERMINAL",0,0,"Step 2630, loss: 0.009284569881856441, step time: 47.15108871459961ms\r\nStep 2631, loss: 0.009294353425502777, step time: 47.03640937805176ms\r\nStep 2632, loss: 0.009279594756662846, step time: 47.09768295288086ms\r\nStep 2633, loss: 0.009272342547774315, step time: 47.247886657714844ms\r\nStep 2634, loss: 0.009273946285247803, step time: 46.92339897155762ms\r\nStep 2635, loss: 0.009302167221903801, step time: 46.9663143157959ms\r\nStep 2636, loss: 0.00931925605982542, step time: 46.57173156738281ms\r\nStep 2637, loss: 0.00933011807501316, step time: 46.10252380371094ms\r\nStep 2638, loss: 0.009373173117637634, step time: 45.69697380065918ms\r\nStep 2639, loss: 0.009284503757953644, step time: 45.90320587158203ms\r\nStep 2640, loss: 0.009313459508121014, step time: 46.6008186340332ms\r\nStep 2641, loss: 0.009338974952697754, step time: 46.15426063537598ms\r\nStep 2642, loss: 0.009337165392935276, step time: 45.81952095031738ms\r\nStep 2643, loss: 0.009338689036667347, step time: 45.64976692199707ms\r\nStep 2644, loss: 0.009283093735575676, step time: 45.80354690551758ms\r\nStep 2645, loss: 0.009308922104537487, step time: 45.65238952636719ms\r\nStep 2646, loss: 0.009281165897846222, step time: 45.63641548156738ms\r\n",,terminal_output +1213,2358799,"TERMINAL",0,0,"Step 2647, loss: 0.009316185489296913, step time: 45.720577239990234ms\r\nStep 2648, loss: 0.009292295202612877, step time: 45.960426330566406ms\r\nStep 2649, loss: 0.00929314736276865, step time: 45.851945877075195ms\r\nStep 2650, loss: 0.009313629940152168, step time: 46.48160934448242ms\r\nStep 2651, loss: 0.009287246502935886, step time: 46.167612075805664ms\r\nStep 2652, loss: 0.009313174523413181, step time: 45.74131965637207ms\r\nStep 2653, loss: 0.009313962422311306, step time: 45.61161994934082ms\r\nStep 2654, loss: 0.009288085624575615, step time: 45.900821685791016ms\r\nStep 2655, loss: 0.009294845163822174, step time: 45.51196098327637ms\r\nStep 2656, loss: 0.009270139038562775, step time: 46.11063003540039ms\r\nStep 2657, loss: 0.009261519648134708, step time: 45.65072059631348ms\r\nStep 2658, loss: 0.009252996183931828, step time: 45.650482177734375ms\r\nStep 2659, loss: 0.00927029736340046, step time: 45.84360122680664ms\r\nStep 2660, loss: 0.009258153848350048, step time: 46.52142524719238ms\r\nStep 2661, loss: 0.009261583909392357, step time: 46.40555381774902ms\r\nStep 2662, loss: 0.009243564680218697, step time: 45.845746994018555ms\r\nStep 2663, loss: 0.00928795337677002, step time: 45.69244384765625ms\r\nStep 2664, loss: 0.009274045005440712, step time: 49.22962188720703ms\r\nStep 2665, loss: 0.009310007095336914, step time: 45.51196098327637ms\r\nStep 2666, loss: 0.009330161847174168, step time: 45.72558403015137ms\r\nStep 2667, loss: 0.00927132461220026, step time: 45.607805252075195ms\r\nStep 2668, loss: 0.009254942648112774, step time: 45.62211036682129ms\r\nStep 2669, loss: 0.009290213696658611, step time: 45.845985412597656ms\r\nStep 2670, loss: 0.009263266809284687, step time: 46.56720161437988ms\r\nStep 2671, loss: 0.00925909448415041, step time: 46.35190963745117ms\r\nStep 2672, loss: 0.009312567301094532, step time: 47.730445861816406ms\r\nStep 2673, loss: 0.009276666678488255, step time: 45.68791389465332ms\r\nStep 2674, loss: 0.009286421351134777, step time: 45.716285705566406ms\r\nStep 2675, loss: 0.009333410300314426, step time: 45.65834999084473ms\r\nStep 2676, loss: 0.009310983121395111, step time: 45.93086242675781ms\r\nStep 2677, loss: 0.009276410564780235, step time: 45.86338996887207ms\r\nStep 2678, loss: 0.009343289770185947, step time: 45.83621025085449ms\r\nStep 2679, loss: 0.009274851530790329, step time: 45.95184326171875ms\r\nStep 2680, loss: 0.009295953437685966, step time: 46.556711196899414ms\r\nStep 2681, loss: 0.009308010339736938, step time: 46.21267318725586ms\r\nStep 2682, loss: 0.00926058366894722, step time: 45.662879943847656ms\r\nStep 2683, loss: 0.0092800697311759, step time: 45.60089111328125ms\r\nStep 2684, loss: 0.009271565824747086, step time: 45.67575454711914ms\r\nStep 2685, loss: 0.009267373010516167, step time: 45.571327209472656ms\r\nStep 2686, loss: 0.009279513731598854, step time: 45.7615852355957ms\r\nStep 2687, loss: 0.009247086010873318, step time: 45.76849937438965ms\r\nStep 2688, loss: 0.00928836315870285, step time: 45.57347297668457ms\r\nStep 2689, loss: 0.009256478399038315, step time: 45.729637145996094ms\r\nStep 2690, loss: 0.009235568344593048, step time: 46.653032302856445ms\r\nStep 2691, loss: 0.009272702038288116, step time: 46.18716239929199ms\r\nStep 2692, loss: 0.009255636483430862, step time: 45.66240310668945ms\r\nStep 2693, loss: 0.009261573664844036, step time: 45.754194259643555ms\r\nStep 2694, loss: 0.00923189427703619, step time: 45.67527770996094ms\r\nStep 2695, loss: 0.009275882504880428, step time: 45.70126533508301ms\r\nStep 2696, loss: 0.009267316199839115, step time: 45.90034484863281ms\r\nStep 2697, loss: 0.009242267347872257, step time: 45.670270919799805ms\r\nStep 2698, loss: 0.009260009974241257, step time: 45.82476615905762ms\r\nStep 2699, loss: 0.009246963076293468, step time: 45.90940475463867ms\r\nStep 2700, loss: 0.00927147176116705, step time: 46.56100273132324ms\r\nStep 2701, loss: 0.009269338101148605, step time: 46.102046966552734ms\r\nStep 2702, loss: 0.009232928045094013, step time: 45.6547737121582ms\r\nStep 2703, loss: 0.009245692752301693, step time: 45.87721824645996ms\r\nStep 2704, loss: 0.009227434173226357, step time: 45.68743705749512ms\r\nStep 2705, loss: 0.00924411416053772, step time: 45.73464393615723ms\r\nStep 2706, loss: 0.009231923148036003, step time: 46.04053497314453ms\r\nStep 2707, loss: 0.009235404431819916, step time: 45.639991760253906ms\r\nStep 2708, loss: 0.009236943908035755, step time: 45.737504959106445ms\r\nStep 2709, loss: 0.009243512526154518, step time: 45.75681686401367ms\r\nStep 2710, loss: 0.009223123081028461, step time: 46.89836502075195ms\r\nStep 2711, loss: 0.009229559451341629, step time: 46.14090919494629ms\r\nStep 2712, loss: 0.00920652411878109, step time: 45.6395149230957ms\r\nStep 2713, loss: 0.009216668084263802, step time: 45.905113220214844ms\r\nStep 2714, loss: 0.00923813134431839, step time: 45.767784118652344ms\r\nStep 2715, loss: 0.009261270053684711, step time: 45.708417892456055ms\r\nStep 2716, loss: 0.009197953157126904, step time: 45.89104652404785ms\r\nStep 2717, loss: 0.00921820942312479, step time: 45.68600654602051ms\r\nStep 2718, loss: 0.009236309677362442, step time: 45.88580131530762ms\r\nStep 2719, loss: 0.009197209030389786, step time: 45.645713806152344ms\r\nStep 2720, loss: 0.009206758812069893, step time: 46.55051231384277ms\r\nStep 2721, loss: 0.009200694039463997, step time: 46.34380340576172ms\r\nStep 2722, loss: 0.009188423864543438, step time: 45.729637145996094ms\r\nStep 2723, loss: 0.009205634705722332, step time: 45.8521842956543ms\r\nStep 2724, loss: 0.009224768728017807, step time: 45.71962356567383ms\r\nStep 2725, loss: 0.00918503850698471, step time: 45.685529708862305ms\r\nStep 2726, loss: 0.009199938736855984, step time: 46.29659652709961ms\r\nStep 2727, loss: 0.009201297536492348, step time: 46.13852500915527ms\r\nStep 2728, loss: 0.00919891707599163, step time: 45.9897518157959ms\r\nStep 2729, loss: 0.009215584956109524, step time: 45.98522186279297ms\r\nStep 2730, loss: 0.009256363846361637, step time: 47.147512435913086ms\r\nStep 2731, loss: 0.009215308353304863, step time: 46.28252983093262ms\r\nStep 2732, loss: 0.00918485876172781, step time: 45.84836959838867ms\r\nStep 2733, loss: 0.009209917858242989, step time: 46.10586166381836ms\r\nStep 2734, loss: 0.00919781718403101, step time: 46.50282859802246ms\r\nStep 2735, loss: 0.009200936183333397, step time: 45.68362236022949ms\r\nStep 2736, loss: 0.009246094152331352, step time: 45.8378791809082ms\r\nStep 2737, loss: 0.00918806903064251, step time: 45.73631286621094ms\r\nStep 2738, loss: 0.009182803332805634, step time: 45.713186264038086ms\r\nStep 2739, loss: 0.009204174391925335, step time: 45.81904411315918ms\r\nStep 2740, loss: 0.00919191725552082, step time: 46.64158821105957ms\r\nStep 2741, loss: 0.009187422692775726, step time: 46.13494873046875ms\r\nStep 2742, loss: 0.009222186170518398, step time: 45.69125175476074ms\r\nStep 2743, loss: 0.009203137829899788, step time: 45.858144760131836ms\r\nStep 2744, loss: 0.009183165617287159, step time: 45.728206634521484ms\r\nStep 2745, loss: 0.00919981300830841, step time: 45.93157768249512ms\r\nStep 2746, loss: 0.009210317395627499, step time: 45.74441909790039ms\r\nStep 2747, loss: 0.009199215099215508, step time: 45.59493064880371ms\r\nStep 2748, loss: 0.009185600094497204, step time: 45.57299613952637ms\r\nStep 2749, loss: 0.009191722609102726, step time: 45.679330825805664ms\r\nStep 2750, loss: 0.009213538840413094, step time: 47.272682189941406ms\r\nStep 2751, loss: 0.009201960638165474, step time: 46.114206314086914ms\r\nStep 2752, loss: 0.009192727506160736, step time: 45.85695266723633ms\r\nStep 2753, loss: 0.009207673370838165, step time: 45.9742546081543ms\r\nStep 2754, loss: 0.009238126687705517, step time: 45.80259323120117ms\r\nStep 2755, loss: 0.009244698099792004, step time: 47.56617546081543ms\r\nStep 2756, loss: 0.009196476079523563, step time: 45.72582244873047ms\r\nStep 2757, loss: 0.009254978969693184, step time: 45.676231384277344ms\r\nStep 2758, loss: 0.009232078678905964, step time: 46.58770561218262ms\r\nStep 2759, loss: 0.009211273863911629, step time: 45.71843147277832ms\r\n",,terminal_output +1214,2363800,"TERMINAL",0,0,"Step 2760, loss: 0.009216646663844585, step time: 47.16157913208008ms\r\nStep 2761, loss: 0.009195457212626934, step time: 46.087026596069336ms\r\nStep 2762, loss: 0.009209614247083664, step time: 45.6850528717041ms\r\nStep 2763, loss: 0.009207691997289658, step time: 45.81141471862793ms\r\nStep 2764, loss: 0.009219301864504814, step time: 45.493125915527344ms\r\nStep 2765, loss: 0.009247355163097382, step time: 45.65167427062988ms\r\nStep 2766, loss: 0.0091786440461874, step time: 45.78900337219238ms\r\nStep 2767, loss: 0.00919712521135807, step time: 45.52745819091797ms\r\nStep 2768, loss: 0.009228019043803215, step time: 47.40118980407715ms\r\nStep 2769, loss: 0.009214657358825207, step time: 45.75181007385254ms\r\nStep 2770, loss: 0.009209960699081421, step time: 46.692609786987305ms\r\nStep 2771, loss: 0.009209861047565937, step time: 45.946359634399414ms\r\nStep 2772, loss: 0.009193377569317818, step time: 45.60041427612305ms\r\nStep 2773, loss: 0.009211592376232147, step time: 45.862674713134766ms\r\nStep 2774, loss: 0.009203452616930008, step time: 45.7003116607666ms\r\nStep 2775, loss: 0.009203149005770683, step time: 45.52268981933594ms\r\nStep 2776, loss: 0.009208761155605316, step time: 45.80545425415039ms\r\nStep 2777, loss: 0.009214570745825768, step time: 45.60732841491699ms\r\nStep 2778, loss: 0.009167063049972057, step time: 45.81880569458008ms\r\nStep 2779, loss: 0.009153652004897594, step time: 45.60589790344238ms\r\nStep 2780, loss: 0.009179322049021721, step time: 46.7839241027832ms\r\nStep 2781, loss: 0.009182839654386044, step time: 45.95828056335449ms\r\nStep 2782, loss: 0.009182034060359001, step time: 45.801401138305664ms\r\nStep 2783, loss: 0.009161782450973988, step time: 45.732975006103516ms\r\nStep 2784, loss: 0.009185416623950005, step time: 45.63403129577637ms\r\nStep 2785, loss: 0.009211676195263863, step time: 45.751333236694336ms\r\nStep 2786, loss: 0.009176733903586864, step time: 45.757293701171875ms\r\nStep 2787, loss: 0.00915208738297224, step time: 45.768022537231445ms\r\nStep 2788, loss: 0.009182850830256939, step time: 45.838356018066406ms\r\nStep 2789, loss: 0.009178136475384235, step time: 45.67241668701172ms\r\nStep 2790, loss: 0.00919230654835701, step time: 46.79298400878906ms\r\nStep 2791, loss: 0.009208899922668934, step time: 46.15640640258789ms\r\nStep 2792, loss: 0.009198475629091263, step time: 46.001434326171875ms\r\nStep 2793, loss: 0.009185346774756908, step time: 45.92394828796387ms\r\nStep 2794, loss: 0.009165581315755844, step time: 45.74942588806152ms\r\nStep 2795, loss: 0.00916194822639227, step time: 46.24438285827637ms\r\nStep 2796, loss: 0.009157332591712475, step time: 45.87912559509277ms\r\nStep 2797, loss: 0.009184413589537144, step time: 45.77183723449707ms\r\nStep 2798, loss: 0.009213444776833057, step time: 45.751333236694336ms\r\nStep 2799, loss: 0.009193843230605125, step time: 45.645713806152344ms\r\nStep 2800, loss: 0.009154356084764004, step time: 46.78511619567871ms\r\nStep 2801, loss: 0.009161408990621567, step time: 46.05889320373535ms\r\nStep 2802, loss: 0.00916717667132616, step time: 45.90654373168945ms\r\nStep 2803, loss: 0.009171690791845322, step time: 45.94111442565918ms\r\nStep 2804, loss: 0.00921502523124218, step time: 45.784711837768555ms\r\nStep 2805, loss: 0.00920193549245596, step time: 45.89390754699707ms\r\nStep 2806, loss: 0.009153211489319801, step time: 45.712947845458984ms\r\nStep 2807, loss: 0.009172691963613033, step time: 45.80807685852051ms\r\nStep 2808, loss: 0.009163504466414452, step time: 45.74465751647949ms\r\nStep 2809, loss: 0.009143367409706116, step time: 45.84050178527832ms\r\nStep 2810, loss: 0.009211240336298943, step time: 46.765804290771484ms\r\nStep 2811, loss: 0.009133851155638695, step time: 45.93372344970703ms\r\nStep 2812, loss: 0.009149069897830486, step time: 45.84503173828125ms\r\nStep 2813, loss: 0.009137528017163277, step time: 45.77827453613281ms\r\nStep 2814, loss: 0.009158286266028881, step time: 45.69530487060547ms\r\nStep 2815, loss: 0.00919483695179224, step time: 45.91846466064453ms\r\nStep 2816, loss: 0.009140046313405037, step time: 45.80879211425781ms\r\nStep 2817, loss: 0.009233152493834496, step time: 45.93181610107422ms\r\nStep 2818, loss: 0.009138230234384537, step time: 45.91083526611328ms\r\nStep 2819, loss: 0.00913668517023325, step time: 45.81499099731445ms\r\nStep 2820, loss: 0.009148688986897469, step time: 46.816110610961914ms\r\nStep 2821, loss: 0.009186940267682076, step time: 46.05245590209961ms\r\nStep 2822, loss: 0.009121205657720566, step time: 46.06986045837402ms\r\nStep 2823, loss: 0.009146595373749733, step time: 45.7768440246582ms\r\nStep 2824, loss: 0.009194816462695599, step time: 45.7453727722168ms\r\nStep 2825, loss: 0.009167623706161976, step time: 45.76897621154785ms\r\nStep 2826, loss: 0.009199188090860844, step time: 45.510292053222656ms\r\nStep 2827, loss: 0.009149064309895039, step time: 45.755624771118164ms\r\nStep 2828, loss: 0.009182578884065151, step time: 45.62711715698242ms\r\nStep 2829, loss: 0.009137699380517006, step time: 45.61114311218262ms\r\nStep 2830, loss: 0.009158038534224033, step time: 46.675920486450195ms\r\nStep 2831, loss: 0.009133636020123959, step time: 46.0209846496582ms\r\nStep 2832, loss: 0.009175908751785755, step time: 45.82691192626953ms\r\nStep 2833, loss: 0.009151593782007694, step time: 45.61614990234375ms\r\nStep 2834, loss: 0.009154652245342731, step time: 45.662879943847656ms\r\nStep 2835, loss: 0.009145986288785934, step time: 45.79758644104004ms\r\nStep 2836, loss: 0.009169363416731358, step time: 45.72558403015137ms\r\nStep 2837, loss: 0.009156154468655586, step time: 45.85623741149902ms\r\nStep 2838, loss: 0.00912200752645731, step time: 45.76897621154785ms\r\nStep 2839, loss: 0.009171898476779461, step time: 45.66597938537598ms\r\n",,terminal_output +1215,2368800,"TERMINAL",0,0,"Step 2840, loss: 0.009124667383730412, step time: 46.59390449523926ms\r\nStep 2841, loss: 0.009146105498075485, step time: 45.97973823547363ms\r\nStep 2842, loss: 0.009188415482640266, step time: 46.63968086242676ms\r\nStep 2843, loss: 0.009137958288192749, step time: 45.87745666503906ms\r\nStep 2844, loss: 0.009145479649305344, step time: 45.75347900390625ms\r\nStep 2845, loss: 0.009116562083363533, step time: 45.73369026184082ms\r\nStep 2846, loss: 0.00915013998746872, step time: 45.6998348236084ms\r\nStep 2847, loss: 0.009120856411755085, step time: 45.807838439941406ms\r\nStep 2848, loss: 0.009123147465288639, step time: 45.615434646606445ms\r\nStep 2849, loss: 0.009154049679636955, step time: 45.702219009399414ms\r\nStep 2850, loss: 0.00911679770797491, step time: 46.80633544921875ms\r\nStep 2851, loss: 0.009129669517278671, step time: 46.19860649108887ms\r\nStep 2852, loss: 0.009151777252554893, step time: 45.95518112182617ms\r\nStep 2853, loss: 0.009137374348938465, step time: 45.78709602355957ms\r\nStep 2854, loss: 0.009140443988144398, step time: 45.84836959838867ms\r\nStep 2855, loss: 0.009159352630376816, step time: 45.67265510559082ms\r\nStep 2856, loss: 0.009147007949650288, step time: 46.152353286743164ms\r\nStep 2857, loss: 0.009176163002848625, step time: 45.949459075927734ms\r\nStep 2858, loss: 0.00915937963873148, step time: 45.66764831542969ms\r\nStep 2859, loss: 0.009149490855634212, step time: 45.880794525146484ms\r\nStep 2860, loss: 0.009193755686283112, step time: 46.705007553100586ms\r\nStep 2861, loss: 0.009130249731242657, step time: 46.17667198181152ms\r\nStep 2862, loss: 0.009134385734796524, step time: 45.95351219177246ms\r\nStep 2863, loss: 0.009211593307554722, step time: 45.80044746398926ms\r\nStep 2864, loss: 0.009143546223640442, step time: 45.74918746948242ms\r\nStep 2865, loss: 0.009134378284215927, step time: 45.55964469909668ms\r\nStep 2866, loss: 0.009216070175170898, step time: 45.60399055480957ms\r\nStep 2867, loss: 0.009109802544116974, step time: 46.163320541381836ms\r\nStep 2868, loss: 0.009144247509539127, step time: 48.97594451904297ms\r\nStep 2869, loss: 0.009210922755300999, step time: 46.11635208129883ms\r\nStep 2870, loss: 0.009165043011307716, step time: 46.73004150390625ms\r\nStep 2871, loss: 0.009136060252785683, step time: 46.25535011291504ms\r\nStep 2872, loss: 0.00912162009626627, step time: 45.73369026184082ms\r\nStep 2873, loss: 0.009209008887410164, step time: 45.67384719848633ms\r\nStep 2874, loss: 0.009116175584495068, step time: 45.78852653503418ms\r\nStep 2875, loss: 0.009121870622038841, step time: 45.6392765045166ms\r\nStep 2876, loss: 0.009139616042375565, step time: 45.77302932739258ms\r\nStep 2877, loss: 0.009145758114755154, step time: 45.798540115356445ms\r\nStep 2878, loss: 0.009123632684350014, step time: 45.797109603881836ms\r\nStep 2879, loss: 0.009120992384850979, step time: 45.90272903442383ms\r\nStep 2880, loss: 0.009198806248605251, step time: 46.54669761657715ms\r\nStep 2881, loss: 0.009103763848543167, step time: 46.2956428527832ms\r\nStep 2882, loss: 0.009127622470259666, step time: 45.86338996887207ms\r\nStep 2883, loss: 0.009096787311136723, step time: 45.78828811645508ms\r\nStep 2884, loss: 0.009147618897259235, step time: 46.02646827697754ms\r\nStep 2885, loss: 0.009104445576667786, step time: 45.72272300720215ms\r\nStep 2886, loss: 0.009115239605307579, step time: 45.73345184326172ms\r\nStep 2887, loss: 0.009155348874628544, step time: 47.00803756713867ms\r\nStep 2888, loss: 0.009130723774433136, step time: 47.128915786743164ms\r\nStep 2889, loss: 0.009120810776948929, step time: 47.54209518432617ms\r\nStep 2890, loss: 0.00914207473397255, step time: 47.5466251373291ms\r\nStep 2891, loss: 0.009146614000201225, step time: 46.05674743652344ms\r\nStep 2892, loss: 0.009120570495724678, step time: 45.883893966674805ms\r\nStep 2893, loss: 0.009113500826060772, step time: 45.798540115356445ms\r\nStep 2894, loss: 0.009129795245826244, step time: 45.81475257873535ms\r\nStep 2895, loss: 0.009118401445448399, step time: 45.98212242126465ms\r\nStep 2896, loss: 0.009114062413573265, step time: 45.78232765197754ms\r\nStep 2897, loss: 0.009112355299293995, step time: 45.882225036621094ms\r\nStep 2898, loss: 0.009104011580348015, step time: 45.83883285522461ms\r\nStep 2899, loss: 0.009123961441218853, step time: 45.75610160827637ms\r\nStep 2900, loss: 0.00912162009626627, step time: 46.7984676361084ms\r\nStep 2901, loss: 0.009137782268226147, step time: 46.0505485534668ms\r\nStep 2902, loss: 0.009120919741690159, step time: 45.882225036621094ms\r\nStep 2903, loss: 0.009108620695769787, step time: 45.77016830444336ms\r\nStep 2904, loss: 0.009124163538217545, step time: 45.66025733947754ms\r\nStep 2905, loss: 0.009124855510890484, step time: 45.8066463470459ms\r\nStep 2906, loss: 0.009115154854953289, step time: 45.68934440612793ms\r\nStep 2907, loss: 0.009145786985754967, step time: 45.84670066833496ms\r\nStep 2908, loss: 0.009141352958977222, step time: 45.71938514709473ms\r\nStep 2909, loss: 0.009133249521255493, step time: 45.686960220336914ms\r\nStep 2910, loss: 0.00913788191974163, step time: 46.80967330932617ms\r\nStep 2911, loss: 0.0091494619846344, step time: 46.144723892211914ms\r\nStep 2912, loss: 0.00913997832685709, step time: 46.120643615722656ms\r\nStep 2913, loss: 0.009151388891041279, step time: 45.82643508911133ms\r\nStep 2914, loss: 0.009172942489385605, step time: 45.986175537109375ms\r\nStep 2915, loss: 0.009139219298958778, step time: 45.79782485961914ms\r\nStep 2916, loss: 0.009150064550340176, step time: 45.74322700500488ms\r\nStep 2917, loss: 0.009183171205222607, step time: 45.88723182678223ms\r\nStep 2918, loss: 0.009124633856117725, step time: 45.75324058532715ms\r\nStep 2919, loss: 0.00912823248654604, step time: 45.96233367919922ms\r\n",,terminal_output +1216,2371796,"TERMINAL",0,0,"Step 2920, loss: 0.00918630976229906, step time: 46.67949676513672ms\r\nStep 2921, loss: 0.009128231555223465, step time: 46.09370231628418ms\r\nStep 2922, loss: 0.00910983607172966, step time: 45.6700325012207ms\r\nStep 2923, loss: 0.009169983677566051, step time: 45.73798179626465ms\r\nStep 2924, loss: 0.009115718305110931, step time: 45.740604400634766ms\r\nStep 2925, loss: 0.009091881103813648, step time: 45.69530487060547ms\r\nStep 2926, loss: 0.009165768511593342, step time: 45.69673538208008ms\r\nStep 2927, loss: 0.009084931574761868, step time: 45.977115631103516ms\r\nStep 2928, loss: 0.009131926111876965, step time: 45.68958282470703ms\r\nStep 2929, loss: 0.009094185195863247, step time: 45.905113220214844ms\r\nStep 2930, loss: 0.009135577827692032, step time: 46.81587219238281ms\r\nStep 2931, loss: 0.009095342829823494, step time: 46.07796669006348ms\r\nStep 2932, loss: 0.009094174951314926, step time: 46.0352897644043ms\r\nStep 2933, loss: 0.0091389836743474, step time: 45.84527015686035ms\r\nStep 2934, loss: 0.009111909195780754, step time: 45.874834060668945ms\r\nStep 2935, loss: 0.00910915806889534, step time: 45.645952224731445ms\r\nStep 2936, loss: 0.009127659723162651, step time: 45.572757720947266ms\r\nStep 2937, loss: 0.00914700049906969, step time: 45.992374420166016ms\r\nStep 2938, loss: 0.009154509752988815, step time: 45.673370361328125ms\r\nStep 2939, loss: 0.009108420461416245, step time: 45.84932327270508ms\r\nStep 2940, loss: 0.009174621663987637, step time: 46.66948318481445ms\r\nStep 2941, loss: 0.009132318198680878, step time: 46.057701110839844ms\r\nStep 2942, loss: 0.009123977273702621, step time: 45.813560485839844ms\r\nStep 2943, loss: 0.009146291762590408, step time: 45.65715789794922ms\r\nStep 2944, loss: 0.009124211966991425, step time: 45.80879211425781ms\r\nStep 2945, loss: 0.009123307652771473, step time: 45.6392765045166ms\r\nStep 2946, loss: 0.009127586148679256, step time: 45.66812515258789ms\r\nStep 2947, loss: 0.00910022109746933, step time: 45.96543312072754ms\r\nStep 2948, loss: 0.009093064814805984, step time: 45.69411277770996ms\r\nStep 2949, loss: 0.009100458584725857, step time: 45.838117599487305ms\r\nStep 2950, loss: 0.009086928330361843, step time: 46.98514938354492ms\r\nStep 2951, loss: 0.009087646380066872, step time: 46.51474952697754ms\r\nStep 2952, loss: 0.009117433801293373, step time: 46.05913162231445ms\r\nStep 2953, loss: 0.009067201986908913, step time: 45.862674713134766ms\r\nStep 2954, loss: 0.009068909101188183, step time: 45.93682289123535ms\r\nStep 2955, loss: 0.009096335619688034, step time: 45.58110237121582ms\r\nStep 2956, loss: 0.009072934277355671, step time: 45.770883560180664ms\r\nStep 2957, loss: 0.009091774001717567, step time: 46.01120948791504ms\r\nStep 2958, loss: 0.009126453660428524, step time: 45.61257362365723ms\r\nStep 2959, loss: 0.009084024466574192, step time: 45.781612396240234ms\r\nStep 2960, loss: 0.009072544984519482, step time: 46.40913009643555ms\r\nStep 2961, loss: 0.00913594663143158, step time: 46.154022216796875ms\r\nStep 2962, loss: 0.009109266102313995, step time: 45.81594467163086ms\r\nStep 2963, loss: 0.00909497868269682, step time: 45.6843376159668ms\r\nStep 2964, loss: 0.00912795402109623, step time: 45.83621025085449ms\r\nStep 2965, loss: 0.009112921543419361, step time: 45.614004135131836ms\r\nStep 2966, loss: 0.00909266248345375, step time: 45.827388763427734ms\r\nStep 2967, loss: 0.009142323397099972, step time: 45.7460880279541ms\r\nStep 2968, loss: 0.009101152420043945, step time: 45.66192626953125ms\r\nStep 2969, loss: 0.009091716259717941, step time: 45.85528373718262ms\r\n",,terminal_output +1217,2376795,"TERMINAL",0,0,"Step 2970, loss: 0.009130001068115234, step time: 46.4322566986084ms\r\nStep 2971, loss: 0.009095188230276108, step time: 46.26822471618652ms\r\nStep 2972, loss: 0.009098125621676445, step time: 45.69697380065918ms\r\nStep 2973, loss: 0.00911924708634615, step time: 45.5777645111084ms\r\nStep 2974, loss: 0.00907024834305048, step time: 45.80235481262207ms\r\nStep 2975, loss: 0.009070103988051414, step time: 45.53699493408203ms\r\nStep 2976, loss: 0.009064832702279091, step time: 45.71104049682617ms\r\nStep 2977, loss: 0.00907142274081707, step time: 45.79925537109375ms\r\nStep 2978, loss: 0.009066230617463589, step time: 45.690298080444336ms\r\nStep 2979, loss: 0.009074975736439228, step time: 45.96066474914551ms\r\nStep 2980, loss: 0.009044572710990906, step time: 46.538591384887695ms\r\nStep 2981, loss: 0.009046388790011406, step time: 46.20838165283203ms\r\nStep 2982, loss: 0.009069402702152729, step time: 45.777320861816406ms\r\nStep 2983, loss: 0.009054291993379593, step time: 45.5625057220459ms\r\nStep 2984, loss: 0.009056361392140388, step time: 45.806169509887695ms\r\nStep 2985, loss: 0.009050596505403519, step time: 45.5935001373291ms\r\nStep 2986, loss: 0.0090330820530653, step time: 45.73392868041992ms\r\nStep 2987, loss: 0.009034166112542152, step time: 45.90249061584473ms\r\nStep 2988, loss: 0.00902979914098978, step time: 45.702457427978516ms\r\nStep 2989, loss: 0.009060513228178024, step time: 45.9902286529541ms\r\nStep 2990, loss: 0.009140752255916595, step time: 46.68307304382324ms\r\nStep 2991, loss: 0.009145326912403107, step time: 46.37789726257324ms\r\nStep 2992, loss: 0.009033492766320705, step time: 45.792579650878906ms\r\nStep 2993, loss: 0.009145926684141159, step time: 45.684814453125ms\r\nStep 2994, loss: 0.009097542613744736, step time: 45.83096504211426ms\r\nStep 2995, loss: 0.00908464565873146, step time: 45.5780029296875ms\r\nStep 2996, loss: 0.00913300085812807, step time: 45.80259323120117ms\r\nStep 2997, loss: 0.009058238007128239, step time: 45.799970626831055ms\r\nStep 2998, loss: 0.00911439023911953, step time: 45.64332962036133ms\r\nStep 2999, loss: 0.00904044695198536, step time: 45.83144187927246ms\r\nStep 3000, loss: 0.009103826247155666, step time: 46.584367752075195ms\r\nStep 3001, loss: 0.009088858962059021, step time: 46.37861251831055ms\r\nStep 3002, loss: 0.009074925445020199, step time: 45.68290710449219ms\r\nStep 3003, loss: 0.009078534319996834, step time: 45.764923095703125ms\r\nStep 3004, loss: 0.009053229354321957, step time: 45.75324058532715ms\r\nStep 3005, loss: 0.009066690690815449, step time: 45.7301139831543ms\r\nStep 3006, loss: 0.00903167575597763, step time: 45.97067832946777ms\r\nStep 3007, loss: 0.009057952091097832, step time: 45.75300216674805ms\r\nStep 3008, loss: 0.009049512445926666, step time: 45.64523696899414ms\r\nStep 3009, loss: 0.00903930515050888, step time: 45.78375816345215ms\r\nStep 3010, loss: 0.009035906754434109, step time: 46.58389091491699ms\r\nStep 3011, loss: 0.009024701081216335, step time: 46.18263244628906ms\r\nStep 3012, loss: 0.009054649621248245, step time: 45.746564865112305ms\r\nStep 3013, loss: 0.00903958361595869, step time: 45.81308364868164ms\r\nStep 3014, loss: 0.009037340991199017, step time: 45.75967788696289ms\r\nStep 3015, loss: 0.00903850793838501, step time: 45.66335678100586ms\r\nStep 3016, loss: 0.00903264433145523, step time: 45.8226203918457ms\r\nStep 3017, loss: 0.009033899754285812, step time: 45.61734199523926ms\r\nStep 3018, loss: 0.009042681194841862, step time: 45.69864273071289ms\r\nStep 3019, loss: 0.009039836935698986, step time: 45.77302932739258ms\r\nStep 3020, loss: 0.009031761437654495, step time: 46.72384262084961ms\r\nStep 3021, loss: 0.00902783963829279, step time: 46.37265205383301ms\r\nStep 3022, loss: 0.009074980393052101, step time: 45.75681686401367ms\r\nStep 3023, loss: 0.009087475016713142, step time: 45.886993408203125ms\r\nStep 3024, loss: 0.009059181436896324, step time: 45.705556869506836ms\r\nStep 3025, loss: 0.009031934663653374, step time: 47.4703311920166ms\r\nStep 3026, loss: 0.009063361212611198, step time: 45.92561721801758ms\r\nStep 3027, loss: 0.009062248282134533, step time: 45.74847221374512ms\r\nStep 3028, loss: 0.009031331166625023, step time: 45.694589614868164ms\r\nStep 3029, loss: 0.0090456772595644, step time: 45.75324058532715ms\r\nStep 3030, loss: 0.009031969122588634, step time: 47.051429748535156ms\r\nStep 3031, loss: 0.009036741219460964, step time: 46.135902404785156ms\r\nStep 3032, loss: 0.009050252847373486, step time: 45.68791389465332ms\r\nStep 3033, loss: 0.009052624925971031, step time: 45.746564865112305ms\r\nStep 3034, loss: 0.009036494418978691, step time: 45.66144943237305ms\r\nStep 3035, loss: 0.009013707749545574, step time: 45.70722579956055ms\r\nStep 3036, loss: 0.009013567119836807, step time: 45.85909843444824ms\r\nStep 3037, loss: 0.009030086919665337, step time: 45.70364952087402ms\r\nStep 3038, loss: 0.009021444246172905, step time: 45.84765434265137ms\r\nStep 3039, loss: 0.00899339560419321, step time: 45.806169509887695ms\r\nStep 3040, loss: 0.00903644971549511, step time: 49.58081245422363ms\r\nStep 3041, loss: 0.009011593647301197, step time: 46.12898826599121ms\r\nStep 3042, loss: 0.009017117321491241, step time: 45.68171501159668ms\r\nStep 3043, loss: 0.009023108519613743, step time: 45.80569267272949ms\r\nStep 3044, loss: 0.00901309959590435, step time: 45.61567306518555ms\r\nStep 3045, loss: 0.009039119817316532, step time: 45.821189880371094ms\r\nStep 3046, loss: 0.009001372382044792, step time: 45.70960998535156ms\r\nStep 3047, loss: 0.00899906549602747, step time: 45.604705810546875ms\r\nStep 3048, loss: 0.009004274383187294, step time: 45.7921028137207ms\r\nStep 3049, loss: 0.009016981348395348, step time: 45.59326171875ms\r\n",,terminal_output +1218,2377947,"TERMINAL",0,0,"Step 3050, loss: 0.009010950103402138, step time: 46.94318771362305ms\r\nStep 3051, loss: 0.008989661931991577, step time: 46.22173309326172ms\r\nStep 3052, loss: 0.008995971642434597, step time: 45.75347900390625ms\r\nStep 3053, loss: 0.009040280245244503, step time: 45.78256607055664ms\r\nStep 3054, loss: 0.008992854505777359, step time: 45.62664031982422ms\r\nStep 3055, loss: 0.009016027674078941, step time: 45.78208923339844ms\r\nStep 3056, loss: 0.008989240042865276, step time: 45.768022537231445ms\r\nStep 3057, loss: 0.00900652352720499, step time: 45.732736587524414ms\r\nStep 3058, loss: 0.00900105107575655, step time: 45.911312103271484ms\r\nStep 3059, loss: 0.008968714624643326, step time: 45.65548896789551ms\r\nStep 3060, loss: 0.009018382988870144, step time: 46.86546325683594ms\r\nStep 3061, loss: 0.008975427597761154, step time: 45.969247817993164ms\r\nStep 3062, loss: 0.009015155956149101, step time: 45.80855369567871ms\r\nStep 3063, loss: 0.00901020411401987, step time: 45.777320861816406ms\r\nStep 3064, loss: 0.008976936340332031, step time: 45.6538200378418ms\r\nStep 3065, loss: 0.00902173388749361, step time: 45.70817947387695ms\r\nStep 3066, loss: 0.009001336060464382, step time: 45.842885971069336ms\r\nStep 3067, loss: 0.008975882083177567, step time: 45.70722579956055ms\r\nStep 3068, loss: 0.009005851112306118, step time: 45.87435722351074ms\r\nStep 3069, loss: 0.0089825838804245, step time: 45.78089714050293ms\r\n",,terminal_output +1219,2378468,"TERMINAL",0,0,"Step 3070, loss: 0.008998310193419456, step time: 46.62799835205078ms\r\nStep 3071, loss: 0.009035785682499409, step time: 45.89486122131348ms\r\nStep 3072, loss: 0.009113533422350883, step time: 45.7456111907959ms\r\nStep 3073, loss: 0.009055880829691887, step time: 45.656681060791016ms\r\nStep 3074, loss: 0.009010672569274902, step time: 45.6545352935791ms\r\nStep 3075, loss: 0.009067153558135033, step time: 45.819997787475586ms\r\nStep 3076, loss: 0.008998142555356026, step time: 45.690059661865234ms\r\nStep 3077, loss: 0.009032892063260078, step time: 45.636653900146484ms\r\n",,terminal_output +1220,2378560,"TERMINAL",0,0,"Step 3078, loss: 0.009014688432216644, step time: 45.805931091308594ms\r\nStep 3079, loss: 0.00904683768749237, step time: 45.732975006103516ms\r\n",,terminal_output +1221,2381797,"TERMINAL",0,0,"Step 3080, loss: 0.009094991721212864, step time: 46.634674072265625ms\r\nStep 3081, loss: 0.00898636132478714, step time: 45.93920707702637ms\r\nStep 3082, loss: 0.009092243388295174, step time: 45.88031768798828ms\r\nStep 3083, loss: 0.009005402214825153, step time: 45.71843147277832ms\r\nStep 3084, loss: 0.00904769916087389, step time: 45.79925537109375ms\r\nStep 3085, loss: 0.009017927572131157, step time: 45.931339263916016ms\r\nStep 3086, loss: 0.009019437246024609, step time: 45.5937385559082ms\r\nStep 3087, loss: 0.0090071065351367, step time: 45.79782485961914ms\r\nStep 3088, loss: 0.00901093427091837, step time: 45.81308364868164ms\r\nStep 3089, loss: 0.00904255174100399, step time: 45.83144187927246ms\r\nStep 3090, loss: 0.00898819137364626, step time: 46.87380790710449ms\r\nStep 3091, loss: 0.009001361206173897, step time: 46.11778259277344ms\r\nStep 3092, loss: 0.008984399028122425, step time: 46.004533767700195ms\r\nStep 3093, loss: 0.009015717543661594, step time: 45.74418067932129ms\r\nStep 3094, loss: 0.00899924524128437, step time: 45.6690788269043ms\r\nStep 3095, loss: 0.009001273661851883, step time: 45.877933502197266ms\r\nStep 3096, loss: 0.009043761529028416, step time: 45.61424255371094ms\r\nStep 3097, loss: 0.008981849066913128, step time: 45.89486122131348ms\r\nStep 3098, loss: 0.008995650336146355, step time: 45.77445983886719ms\r\nStep 3099, loss: 0.008978904224932194, step time: 46.12159729003906ms\r\nStep 3100, loss: 0.008991309441626072, step time: 46.67019844055176ms\r\nStep 3101, loss: 0.00896801520138979, step time: 46.12374305725098ms\r\nStep 3102, loss: 0.008974365890026093, step time: 46.004295349121094ms\r\nStep 3103, loss: 0.00900114793330431, step time: 45.754432678222656ms\r\nStep 3104, loss: 0.00898634921759367, step time: 45.65620422363281ms\r\nStep 3105, loss: 0.008954770863056183, step time: 45.59755325317383ms\r\nStep 3106, loss: 0.009006540291011333, step time: 45.8829402923584ms\r\nStep 3107, loss: 0.008993610739707947, step time: 46.01240158081055ms\r\nStep 3108, loss: 0.008954818360507488, step time: 45.9597110748291ms\r\nStep 3109, loss: 0.009015959687530994, step time: 45.85123062133789ms\r\nStep 3110, loss: 0.008999445475637913, step time: 46.776533126831055ms\r\nStep 3111, loss: 0.00897216610610485, step time: 46.163320541381836ms\r\nStep 3112, loss: 0.00901198759675026, step time: 45.98069190979004ms\r\nStep 3113, loss: 0.008986364118754864, step time: 45.70364952087402ms\r\nStep 3114, loss: 0.008987849578261375, step time: 45.74990272521973ms\r\nStep 3115, loss: 0.009006981737911701, step time: 45.78042030334473ms\r\nStep 3116, loss: 0.008978480473160744, step time: 45.83120346069336ms\r\nStep 3117, loss: 0.008975205942988396, step time: 46.00119590759277ms\r\nStep 3118, loss: 0.009009119123220444, step time: 45.61209678649902ms\r\nStep 3119, loss: 0.008993957191705704, step time: 46.051979064941406ms\r\nStep 3120, loss: 0.008976917713880539, step time: 46.65350914001465ms\r\nStep 3121, loss: 0.008969297632575035, step time: 45.906782150268555ms\r\nStep 3122, loss: 0.009017868898808956, step time: 45.59469223022461ms\r\nStep 3123, loss: 0.008991159498691559, step time: 45.51815986633301ms\r\nStep 3124, loss: 0.008958814665675163, step time: 45.72606086730957ms\r\nStep 3125, loss: 0.008981208316981792, step time: 45.6387996673584ms\r\nStep 3126, loss: 0.008978741243481636, step time: 45.61567306518555ms\r\nStep 3127, loss: 0.008997065015137196, step time: 45.932769775390625ms\r\nStep 3128, loss: 0.00895465537905693, step time: 45.804738998413086ms\r\nStep 3129, loss: 0.008972070179879665, step time: 45.702219009399414ms\r\n",,terminal_output +1222,2384813,"TERMINAL",0,0,"Step 3130, loss: 0.00895120482891798, step time: 46.59128189086914ms\r\nStep 3131, loss: 0.008965259417891502, step time: 45.975685119628906ms\r\nStep 3132, loss: 0.008980095386505127, step time: 45.91012001037598ms\r\nStep 3133, loss: 0.008972064591944218, step time: 45.744895935058594ms\r\nStep 3134, loss: 0.008995546028017998, step time: 45.75300216674805ms\r\nStep 3135, loss: 0.009051640518009663, step time: 45.75061798095703ms\r\nStep 3136, loss: 0.00900327879935503, step time: 45.70770263671875ms\r\nStep 3137, loss: 0.008968725800514221, step time: 46.00811004638672ms\r\nStep 3138, loss: 0.008997858501970768, step time: 45.85123062133789ms\r\nStep 3139, loss: 0.008998394012451172, step time: 45.784711837768555ms\r\nStep 3140, loss: 0.008983773179352283, step time: 46.72122001647949ms\r\nStep 3141, loss: 0.008975290693342686, step time: 46.042442321777344ms\r\nStep 3142, loss: 0.008971652016043663, step time: 45.87388038635254ms\r\nStep 3143, loss: 0.00897123571485281, step time: 45.65858840942383ms\r\nStep 3144, loss: 0.008975522592663765, step time: 45.72176933288574ms\r\nStep 3145, loss: 0.008978261612355709, step time: 45.71819305419922ms\r\nStep 3146, loss: 0.008971885778009892, step time: 45.64619064331055ms\r\nStep 3147, loss: 0.008956940844655037, step time: 45.95828056335449ms\r\nStep 3148, loss: 0.00895649567246437, step time: 45.69292068481445ms\r\nStep 3149, loss: 0.008961974643170834, step time: 45.836448669433594ms\r\nStep 3150, loss: 0.008972052484750748, step time: 46.579599380493164ms\r\nStep 3151, loss: 0.008962324820458889, step time: 46.05388641357422ms\r\nStep 3152, loss: 0.008966750465333462, step time: 45.920610427856445ms\r\nStep 3153, loss: 0.00900479406118393, step time: 45.75777053833008ms\r\nStep 3154, loss: 0.009037526324391365, step time: 45.76730728149414ms\r\nStep 3155, loss: 0.008961809799075127, step time: 46.79059982299805ms\r\nStep 3156, loss: 0.008911843411624432, step time: 47.185659408569336ms\r\nStep 3157, loss: 0.008961094543337822, step time: 47.27888107299805ms\r\nStep 3158, loss: 0.008908514864742756, step time: 221.2851047515869ms\r\nStep 3159, loss: 0.008921770378947258, step time: 46.98491096496582ms\r\n",,terminal_output +1223,2386797,"TERMINAL",0,0,"Step 3160, loss: 0.008962993510067463, step time: 46.7066764831543ms\r\nStep 3161, loss: 0.008928023278713226, step time: 46.03004455566406ms\r\nStep 3162, loss: 0.00893730204552412, step time: 45.94731330871582ms\r\nStep 3163, loss: 0.008939532563090324, step time: 45.6395149230957ms\r\nStep 3164, loss: 0.008941132575273514, step time: 45.69053649902344ms\r\nStep 3165, loss: 0.008946845307946205, step time: 45.67456245422363ms\r\nStep 3166, loss: 0.00893050990998745, step time: 45.60375213623047ms\r\nStep 3167, loss: 0.008941687643527985, step time: 45.87054252624512ms\r\nStep 3168, loss: 0.00894126296043396, step time: 45.705556869506836ms\r\nStep 3169, loss: 0.008948558941483498, step time: 45.6545352935791ms\r\nStep 3170, loss: 0.008958188816905022, step time: 46.682119369506836ms\r\nStep 3171, loss: 0.009061053395271301, step time: 45.91226577758789ms\r\nStep 3172, loss: 0.009016313590109348, step time: 45.8829402923584ms\r\nStep 3173, loss: 0.008945806883275509, step time: 45.72010040283203ms\r\nStep 3174, loss: 0.009032338857650757, step time: 45.66454887390137ms\r\nStep 3175, loss: 0.008926508016884327, step time: 45.73178291320801ms\r\nStep 3176, loss: 0.00901060551404953, step time: 45.700788497924805ms\r\nStep 3177, loss: 0.009011127054691315, step time: 46.005964279174805ms\r\nStep 3178, loss: 0.008993871510028839, step time: 45.717716217041016ms\r\nStep 3179, loss: 0.008959128521382809, step time: 45.78089714050293ms\r\nStep 3180, loss: 0.008931536227464676, step time: 46.712398529052734ms\r\nStep 3181, loss: 0.00899133924394846, step time: 46.282291412353516ms\r\nStep 3182, loss: 0.008956805802881718, step time: 45.865774154663086ms\r\nStep 3183, loss: 0.00901237316429615, step time: 45.69411277770996ms\r\nStep 3184, loss: 0.008926079608500004, step time: 45.845985412597656ms\r\nStep 3185, loss: 0.00899038277566433, step time: 45.72415351867676ms\r\nStep 3186, loss: 0.008923729881644249, step time: 45.76921463012695ms\r\nStep 3187, loss: 0.008941663429141045, step time: 45.85623741149902ms\r\nStep 3188, loss: 0.008922782726585865, step time: 45.73225975036621ms\r\nStep 3189, loss: 0.008967913687229156, step time: 45.8986759185791ms\r\nStep 3190, loss: 0.008904757909476757, step time: 46.43845558166504ms\r\nStep 3191, loss: 0.008923444896936417, step time: 46.154022216796875ms\r\nStep 3192, loss: 0.008957930840551853, step time: 45.72558403015137ms\r\nStep 3193, loss: 0.008925477974116802, step time: 45.67217826843262ms\r\nStep 3194, loss: 0.008915522135794163, step time: 45.79281806945801ms\r\nStep 3195, loss: 0.008903048001229763, step time: 45.625925064086914ms\r\nStep 3196, loss: 0.008949997834861279, step time: 45.75157165527344ms\r\nStep 3197, loss: 0.008921823464334011, step time: 45.74704170227051ms\r\nStep 3198, loss: 0.00892404280602932, step time: 45.64809799194336ms\r\nStep 3199, loss: 0.008949840441346169, step time: 45.77207565307617ms\r\nStep 3200, loss: 0.008930731564760208, step time: 46.48089408874512ms\r\nStep 3201, loss: 0.008934667333960533, step time: 46.09560966491699ms\r\nStep 3202, loss: 0.008955402299761772, step time: 45.82810401916504ms\r\nStep 3203, loss: 0.008936491794884205, step time: 45.61781883239746ms\r\nStep 3204, loss: 0.008960394188761711, step time: 45.73369026184082ms\r\nStep 3205, loss: 0.008946883492171764, step time: 45.69101333618164ms\r\nStep 3206, loss: 0.008973433636128902, step time: 45.68839073181152ms\r\nStep 3207, loss: 0.008944205939769745, step time: 45.68910598754883ms\r\nStep 3208, loss: 0.00891127623617649, step time: 45.90201377868652ms\r\nStep 3209, loss: 0.008962273597717285, step time: 46.43368721008301ms\r\n",,terminal_output +1224,2388798,"TERMINAL",0,0,"Step 3210, loss: 0.00893021933734417, step time: 47.083377838134766ms\r\nStep 3211, loss: 0.008907832205295563, step time: 46.30637168884277ms\r\nStep 3212, loss: 0.008935282938182354, step time: 45.92561721801758ms\r\nStep 3213, loss: 0.00891872774809599, step time: 45.75061798095703ms\r\nStep 3214, loss: 0.00891436729580164, step time: 45.76444625854492ms\r\nStep 3215, loss: 0.00894409790635109, step time: 45.69292068481445ms\r\nStep 3216, loss: 0.008904105052351952, step time: 45.63641548156738ms\r\nStep 3217, loss: 0.008920283056795597, step time: 45.774221420288086ms\r\nStep 3218, loss: 0.008923184126615524, step time: 45.70627212524414ms\r\nStep 3219, loss: 0.0088863680139184, step time: 45.90106010437012ms\r\nStep 3220, loss: 0.00887713860720396, step time: 46.74410820007324ms\r\nStep 3221, loss: 0.008913571946322918, step time: 46.474456787109375ms\r\nStep 3222, loss: 0.008900778368115425, step time: 46.03385925292969ms\r\nStep 3223, loss: 0.008896117098629475, step time: 45.79591751098633ms\r\nStep 3224, loss: 0.008899269625544548, step time: 45.8071231842041ms\r\nStep 3225, loss: 0.0089091332629323, step time: 45.56584358215332ms\r\nStep 3226, loss: 0.008951504714787006, step time: 45.824527740478516ms\r\nStep 3227, loss: 0.008892970159649849, step time: 45.7155704498291ms\r\nStep 3228, loss: 0.008898046799004078, step time: 45.668601989746094ms\r\nStep 3229, loss: 0.00896660890430212, step time: 45.94707489013672ms\r\nStep 3230, loss: 0.008934913203120232, step time: 47.4095344543457ms\r\nStep 3231, loss: 0.008897043764591217, step time: 46.270132064819336ms\r\nStep 3232, loss: 0.008974033407866955, step time: 45.74084281921387ms\r\nStep 3233, loss: 0.008893126621842384, step time: 45.71175575256348ms\r\nStep 3234, loss: 0.008909360505640507, step time: 45.78089714050293ms\r\nStep 3235, loss: 0.00896939542144537, step time: 45.63331604003906ms\r\nStep 3236, loss: 0.008898022584617138, step time: 45.94898223876953ms\r\nStep 3237, loss: 0.008888127282261848, step time: 45.777082443237305ms\r\nStep 3238, loss: 0.008961311541497707, step time: 45.69077491760254ms\r\nStep 3239, loss: 0.008898107334971428, step time: 45.74084281921387ms\r\n",,terminal_output +1225,2391808,"TERMINAL",0,0,"Step 3240, loss: 0.008894248865544796, step time: 48.85697364807129ms\r\nStep 3241, loss: 0.008931108750402927, step time: 46.65732383728027ms\r\nStep 3242, loss: 0.008877718821167946, step time: 45.867204666137695ms\r\nStep 3243, loss: 0.008907001465559006, step time: 45.900583267211914ms\r\nStep 3244, loss: 0.008918865583837032, step time: 45.80807685852051ms\r\nStep 3245, loss: 0.00888845231384039, step time: 45.57061195373535ms\r\nStep 3246, loss: 0.00888462271541357, step time: 45.98259925842285ms\r\nStep 3247, loss: 0.008916560560464859, step time: 45.7301139831543ms\r\nStep 3248, loss: 0.008885151706635952, step time: 45.745849609375ms\r\nStep 3249, loss: 0.008889380842447281, step time: 45.75085639953613ms\r\nStep 3250, loss: 0.00889076478779316, step time: 47.126054763793945ms\r\nStep 3251, loss: 0.008884980343282223, step time: 46.323537826538086ms\r\nStep 3252, loss: 0.008930051699280739, step time: 45.80378532409668ms\r\nStep 3253, loss: 0.008858421817421913, step time: 45.91655731201172ms\r\nStep 3254, loss: 0.008878611028194427, step time: 45.925140380859375ms\r\nStep 3255, loss: 0.008965523913502693, step time: 45.62687873840332ms\r\nStep 3256, loss: 0.008923722431063652, step time: 45.58539390563965ms\r\nStep 3257, loss: 0.008894684724509716, step time: 45.79615592956543ms\r\nStep 3258, loss: 0.008907376788556576, step time: 45.87531089782715ms\r\nStep 3259, loss: 0.008899987675249577, step time: 47.21951484680176ms\r\nStep 3260, loss: 0.00892009399831295, step time: 46.88453674316406ms\r\nStep 3261, loss: 0.008932757191359997, step time: 46.041250228881836ms\r\nStep 3262, loss: 0.00890179444104433, step time: 45.73798179626465ms\r\nStep 3263, loss: 0.00892830453813076, step time: 45.841217041015625ms\r\nStep 3264, loss: 0.008903096430003643, step time: 45.8376407623291ms\r\nStep 3265, loss: 0.008903498761355877, step time: 45.58205604553223ms\r\nStep 3266, loss: 0.008936506696045399, step time: 45.6845760345459ms\r\nStep 3267, loss: 0.008883257396519184, step time: 45.641183853149414ms\r\nStep 3268, loss: 0.008878881111741066, step time: 45.81022262573242ms\r\nStep 3269, loss: 0.008923175744712353, step time: 45.78661918640137ms\r\nStep 3270, loss: 0.008910252712666988, step time: 46.82302474975586ms\r\nStep 3271, loss: 0.008922813460230827, step time: 46.029090881347656ms\r\nStep 3272, loss: 0.008903003297746181, step time: 45.815229415893555ms\r\nStep 3273, loss: 0.008895622566342354, step time: 45.84550857543945ms\r\nStep 3274, loss: 0.008939112536609173, step time: 45.64976692199707ms\r\nStep 3275, loss: 0.008915511891245842, step time: 45.64237594604492ms\r\nStep 3276, loss: 0.008902612142264843, step time: 45.729875564575195ms\r\nStep 3277, loss: 0.008890500292181969, step time: 45.858144760131836ms\r\nStep 3278, loss: 0.008894582279026508, step time: 46.01693153381348ms\r\nStep 3279, loss: 0.008919969201087952, step time: 45.78661918640137ms\r\nStep 3280, loss: 0.008879154920578003, step time: 46.76008224487305ms\r\nStep 3281, loss: 0.008872071281075478, step time: 46.05460166931152ms\r\nStep 3282, loss: 0.008872921578586102, step time: 45.7918643951416ms\r\nStep 3283, loss: 0.0088982954621315, step time: 45.789480209350586ms\r\nStep 3284, loss: 0.008880450390279293, step time: 45.694589614868164ms\r\nStep 3285, loss: 0.008972994051873684, step time: 45.736074447631836ms\r\nStep 3286, loss: 0.008901667781174183, step time: 45.7758903503418ms\r\nStep 3287, loss: 0.008892187848687172, step time: 45.859336853027344ms\r\nStep 3288, loss: 0.008993623778223991, step time: 45.80950736999512ms\r\nStep 3289, loss: 0.008887519128620625, step time: 45.754194259643555ms\r\n",,terminal_output +1226,2396793,"TERMINAL",0,0,"Step 3290, loss: 0.008918424136936665, step time: 46.9052791595459ms\r\nStep 3291, loss: 0.008973093703389168, step time: 45.990943908691406ms\r\nStep 3292, loss: 0.008922836743295193, step time: 45.84670066833496ms\r\nStep 3293, loss: 0.00892050750553608, step time: 45.815229415893555ms\r\nStep 3294, loss: 0.008885469287633896, step time: 45.87507247924805ms\r\nStep 3295, loss: 0.008971539326012135, step time: 45.86648941040039ms\r\nStep 3296, loss: 0.008911785669624805, step time: 45.71795463562012ms\r\nStep 3297, loss: 0.008918623439967632, step time: 45.72701454162598ms\r\nStep 3298, loss: 0.008913206867873669, step time: 45.845746994018555ms\r\nStep 3299, loss: 0.008925849571824074, step time: 45.74179649353027ms\r\nStep 3300, loss: 0.008899986743927002, step time: 46.7228889465332ms\r\nStep 3301, loss: 0.008894560858607292, step time: 46.00787162780762ms\r\nStep 3302, loss: 0.008940037339925766, step time: 45.86458206176758ms\r\nStep 3303, loss: 0.00887021142989397, step time: 45.68958282470703ms\r\nStep 3304, loss: 0.008881771937012672, step time: 45.63164710998535ms\r\nStep 3305, loss: 0.008901497349143028, step time: 45.78757286071777ms\r\nStep 3306, loss: 0.0089357178658247, step time: 45.746564865112305ms\r\nStep 3307, loss: 0.008887261152267456, step time: 45.81570625305176ms\r\nStep 3308, loss: 0.008875316008925438, step time: 45.697927474975586ms\r\nStep 3309, loss: 0.008948367089033127, step time: 45.65143585205078ms\r\nStep 3310, loss: 0.00884556770324707, step time: 46.60463333129883ms\r\nStep 3311, loss: 0.008861187845468521, step time: 46.056509017944336ms\r\nStep 3312, loss: 0.008918398059904575, step time: 46.02503776550293ms\r\nStep 3313, loss: 0.008870125748217106, step time: 45.96567153930664ms\r\nStep 3314, loss: 0.008876845240592957, step time: 45.68767547607422ms\r\nStep 3315, loss: 0.00891615729779005, step time: 45.70794105529785ms\r\nStep 3316, loss: 0.008874294348061085, step time: 45.66597938537598ms\r\nStep 3317, loss: 0.00887465849518776, step time: 45.74441909790039ms\r\nStep 3318, loss: 0.008910047821700573, step time: 45.72486877441406ms\r\nStep 3319, loss: 0.008882371708750725, step time: 45.65262794494629ms\r\nStep 3320, loss: 0.008875822648406029, step time: 46.68450355529785ms\r\nStep 3321, loss: 0.008917962200939655, step time: 45.889854431152344ms\r\nStep 3322, loss: 0.00888048019260168, step time: 45.687198638916016ms\r\nStep 3323, loss: 0.008872407488524914, step time: 45.64261436462402ms\r\nStep 3324, loss: 0.008906882256269455, step time: 45.5470085144043ms\r\nStep 3325, loss: 0.008888058364391327, step time: 45.928955078125ms\r\nStep 3326, loss: 0.00892166793346405, step time: 45.84956169128418ms\r\nStep 3327, loss: 0.00887511670589447, step time: 46.51594161987305ms\r\nStep 3328, loss: 0.00886769499629736, step time: 45.83406448364258ms\r\nStep 3329, loss: 0.008894464001059532, step time: 45.79472541809082ms\r\nStep 3330, loss: 0.008863401599228382, step time: 47.051191329956055ms\r\nStep 3331, loss: 0.00888430792838335, step time: 46.547651290893555ms\r\nStep 3332, loss: 0.008891464211046696, step time: 46.466827392578125ms\r\nStep 3333, loss: 0.008877436630427837, step time: 46.31161689758301ms\r\nStep 3334, loss: 0.008893917314708233, step time: 46.18191719055176ms\r\nStep 3335, loss: 0.008848503232002258, step time: 46.22697830200195ms\r\nStep 3336, loss: 0.00887114554643631, step time: 46.27084732055664ms\r\nStep 3337, loss: 0.00888581108301878, step time: 46.161651611328125ms\r\nStep 3338, loss: 0.008849302306771278, step time: 45.79043388366699ms\r\nStep 3339, loss: 0.008834011852741241, step time: 45.77445983886719ms\r\nStep 3340, loss: 0.008854630403220654, step time: 47.371864318847656ms\r\nStep 3341, loss: 0.008837496861815453, step time: 47.063589096069336ms\r\nStep 3342, loss: 0.008859424851834774, step time: 46.831369400024414ms\r\nStep 3343, loss: 0.008823818527162075, step time: 46.24438285827637ms\r\nStep 3344, loss: 0.008845235221087933, step time: 46.07725143432617ms\r\nStep 3345, loss: 0.008843710646033287, step time: 45.63617706298828ms\r\nStep 3346, loss: 0.008857935667037964, step time: 45.89414596557617ms\r\nStep 3347, loss: 0.008981561288237572, step time: 45.93014717102051ms\r\nStep 3348, loss: 0.008862767368555069, step time: 45.93610763549805ms\r\nStep 3349, loss: 0.008814011700451374, step time: 45.890092849731445ms\r\nStep 3350, loss: 0.008922812528908253, step time: 46.209096908569336ms\r\nStep 3351, loss: 0.008845959790050983, step time: 45.90749740600586ms\r\nStep 3352, loss: 0.008875724859535694, step time: 45.61114311218262ms\r\nStep 3353, loss: 0.008875536732375622, step time: 45.6540584564209ms\r\nStep 3354, loss: 0.008913111872971058, step time: 45.61948776245117ms\r\nStep 3355, loss: 0.008859449066221714, step time: 45.801639556884766ms\r\nStep 3356, loss: 0.008870522491633892, step time: 45.824289321899414ms\r\nStep 3357, loss: 0.00893616396933794, step time: 46.27799987792969ms\r\nStep 3358, loss: 0.008850052021443844, step time: 46.44775390625ms\r\nStep 3359, loss: 0.008842429146170616, step time: 46.60153388977051ms\r\nStep 3360, loss: 0.008878827095031738, step time: 48.521995544433594ms\r\nStep 3361, loss: 0.008875079452991486, step time: 47.02591896057129ms\r\nStep 3362, loss: 0.008853498846292496, step time: 45.850276947021484ms\r\nStep 3363, loss: 0.008841544389724731, step time: 45.55845260620117ms\r\nStep 3364, loss: 0.008851044811308384, step time: 45.79329490661621ms\r\nStep 3365, loss: 0.008822932839393616, step time: 45.61638832092285ms\r\nStep 3366, loss: 0.008822568692266941, step time: 45.89247703552246ms\r\nStep 3367, loss: 0.008851132355630398, step time: 46.987295150756836ms\r\nStep 3368, loss: 0.008802130818367004, step time: 47.270774841308594ms\r\nStep 3369, loss: 0.00881608109921217, step time: 47.22881317138672ms\r\n",,terminal_output +1227,2397799,"TERMINAL",0,0,"Step 3370, loss: 0.00882653333246708, step time: 47.53589630126953ms\r\nStep 3371, loss: 0.008788897655904293, step time: 46.65637016296387ms\r\nStep 3372, loss: 0.008807164616882801, step time: 46.44274711608887ms\r\nStep 3373, loss: 0.008805353194475174, step time: 45.97330093383789ms\r\nStep 3374, loss: 0.008834918960928917, step time: 45.65072059631348ms\r\nStep 3375, loss: 0.008793719112873077, step time: 45.71413993835449ms\r\nStep 3376, loss: 0.008811315521597862, step time: 45.702457427978516ms\r\nStep 3377, loss: 0.00881787296384573, step time: 45.70460319519043ms\r\nStep 3378, loss: 0.008830337785184383, step time: 45.84026336669922ms\r\nStep 3379, loss: 0.00881446897983551, step time: 45.70174217224121ms\r\nStep 3380, loss: 0.008830714039504528, step time: 46.756744384765625ms\r\nStep 3381, loss: 0.008835972286760807, step time: 45.95494270324707ms\r\nStep 3382, loss: 0.008928547613322735, step time: 45.7911491394043ms\r\nStep 3383, loss: 0.00882007461041212, step time: 46.4627742767334ms\r\nStep 3384, loss: 0.00881410576403141, step time: 45.61638832092285ms\r\n",,terminal_output +1228,2398799,"TERMINAL",0,0,"Step 3385, loss: 0.008900885470211506, step time: 45.908212661743164ms\r\nStep 3386, loss: 0.00878797098994255, step time: 45.73225975036621ms\r\nStep 3387, loss: 0.008880384266376495, step time: 45.7456111907959ms\r\nStep 3388, loss: 0.008785729296505451, step time: 45.69268226623535ms\r\nStep 3389, loss: 0.00885284785181284, step time: 45.583248138427734ms\r\nStep 3390, loss: 0.008786600083112717, step time: 46.723365783691406ms\r\nStep 3391, loss: 0.008789566345512867, step time: 46.00977897644043ms\r\nStep 3392, loss: 0.00881993118673563, step time: 45.88460922241211ms\r\nStep 3393, loss: 0.00879085622727871, step time: 45.69840431213379ms\r\nStep 3394, loss: 0.008769560605287552, step time: 45.740604400634766ms\r\nStep 3395, loss: 0.008783672004938126, step time: 45.85576057434082ms\r\nStep 3396, loss: 0.008803440257906914, step time: 45.645713806152344ms\r\nStep 3397, loss: 0.00881214253604412, step time: 45.7913875579834ms\r\nStep 3398, loss: 0.008760899305343628, step time: 45.71104049682617ms\r\nStep 3399, loss: 0.00881219282746315, step time: 45.6843376159668ms\r\n",,terminal_output +1229,2401803,"TERMINAL",0,0,"Step 3400, loss: 0.008777474984526634, step time: 46.846866607666016ms\r\nStep 3401, loss: 0.008803441189229488, step time: 46.102285385131836ms\r\nStep 3402, loss: 0.008798019960522652, step time: 45.998334884643555ms\r\nStep 3403, loss: 0.008773300796747208, step time: 45.78733444213867ms\r\nStep 3404, loss: 0.008770299144089222, step time: 45.81880569458008ms\r\nStep 3405, loss: 0.00879514031112194, step time: 45.766353607177734ms\r\nStep 3406, loss: 0.008817761205136776, step time: 45.670270919799805ms\r\nStep 3407, loss: 0.008778599090874195, step time: 45.93539237976074ms\r\nStep 3408, loss: 0.008792577311396599, step time: 45.78542709350586ms\r\nStep 3409, loss: 0.008762121200561523, step time: 45.70770263671875ms\r\nStep 3410, loss: 0.008755701594054699, step time: 49.68523979187012ms\r\nStep 3411, loss: 0.008804570883512497, step time: 48.161983489990234ms\r\nStep 3412, loss: 0.008795911446213722, step time: 45.93658447265625ms\r\nStep 3413, loss: 0.008746929466724396, step time: 45.82834243774414ms\r\nStep 3414, loss: 0.008802799507975578, step time: 46.10395431518555ms\r\nStep 3415, loss: 0.00876662041991949, step time: 45.670270919799805ms\r\nStep 3416, loss: 0.008750301785767078, step time: 45.694589614868164ms\r\nStep 3417, loss: 0.008794721215963364, step time: 45.8524227142334ms\r\nStep 3418, loss: 0.008747716434299946, step time: 45.64189910888672ms\r\nStep 3419, loss: 0.008787723258137703, step time: 45.8989143371582ms\r\nStep 3420, loss: 0.00878960732370615, step time: 46.480655670166016ms\r\nStep 3421, loss: 0.00875156931579113, step time: 46.125173568725586ms\r\nStep 3422, loss: 0.008784555830061436, step time: 45.76444625854492ms\r\nStep 3423, loss: 0.008779431693255901, step time: 45.7613468170166ms\r\nStep 3424, loss: 0.00875066127628088, step time: 45.95160484313965ms\r\nStep 3425, loss: 0.008796005509793758, step time: 45.50457000732422ms\r\nStep 3426, loss: 0.008737956173717976, step time: 45.69411277770996ms\r\nStep 3427, loss: 0.008773819543421268, step time: 45.87292671203613ms\r\nStep 3428, loss: 0.008770577609539032, step time: 45.74418067932129ms\r\nStep 3429, loss: 0.008745054714381695, step time: 45.85766792297363ms\r\nStep 3430, loss: 0.008759298361837864, step time: 46.805381774902344ms\r\nStep 3431, loss: 0.008745509199798107, step time: 46.33688926696777ms\r\nStep 3432, loss: 0.00873328372836113, step time: 45.87864875793457ms\r\nStep 3433, loss: 0.008784516714513302, step time: 45.740604400634766ms\r\nStep 3434, loss: 0.00877247005701065, step time: 45.79901695251465ms\r\nStep 3435, loss: 0.008728205226361752, step time: 45.578718185424805ms\r\nStep 3436, loss: 0.008779141120612621, step time: 45.920610427856445ms\r\nStep 3437, loss: 0.008775915019214153, step time: 45.821428298950195ms\r\nStep 3438, loss: 0.008726924657821655, step time: 45.740365982055664ms\r\nStep 3439, loss: 0.008773141540586948, step time: 45.94707489013672ms\r\nStep 3440, loss: 0.008754647336900234, step time: 46.54073715209961ms\r\nStep 3441, loss: 0.008721619844436646, step time: 46.11945152282715ms\r\nStep 3442, loss: 0.008781458251178265, step time: 45.90463638305664ms\r\nStep 3443, loss: 0.008751542307436466, step time: 45.72629928588867ms\r\nStep 3444, loss: 0.008718101307749748, step time: 45.87101936340332ms\r\nStep 3445, loss: 0.008761377073824406, step time: 45.75943946838379ms\r\nStep 3446, loss: 0.008750654757022858, step time: 45.629262924194336ms\r\nStep 3447, loss: 0.008757293224334717, step time: 45.851945877075195ms\r\nStep 3448, loss: 0.008766734041273594, step time: 45.6697940826416ms\r\nStep 3449, loss: 0.008709855377674103, step time: 45.91202735900879ms\r\n",,terminal_output +1230,2406797,"TERMINAL",0,0,"Step 3450, loss: 0.008712566457688808, step time: 46.74530029296875ms\r\nStep 3451, loss: 0.008726056665182114, step time: 46.31543159484863ms\r\nStep 3452, loss: 0.008738460950553417, step time: 45.873165130615234ms\r\nStep 3453, loss: 0.008736025542020798, step time: 45.75753211975098ms\r\nStep 3454, loss: 0.008736282587051392, step time: 46.94390296936035ms\r\nStep 3455, loss: 0.008745490573346615, step time: 45.68839073181152ms\r\nStep 3456, loss: 0.008769466541707516, step time: 45.76754570007324ms\r\nStep 3457, loss: 0.008732040412724018, step time: 45.7606315612793ms\r\nStep 3458, loss: 0.008733433671295643, step time: 45.55535316467285ms\r\nStep 3459, loss: 0.008742579258978367, step time: 45.72486877441406ms\r\nStep 3460, loss: 0.008738486096262932, step time: 49.11470413208008ms\r\nStep 3461, loss: 0.008741957135498524, step time: 46.208858489990234ms\r\nStep 3462, loss: 0.008724653162062168, step time: 45.81451416015625ms\r\nStep 3463, loss: 0.008734419010579586, step time: 45.76826095581055ms\r\nStep 3464, loss: 0.008787516504526138, step time: 46.02670669555664ms\r\nStep 3465, loss: 0.00872218981385231, step time: 45.65930366516113ms\r\nStep 3466, loss: 0.008736958727240562, step time: 45.93610763549805ms\r\nStep 3467, loss: 0.008766300044953823, step time: 45.72868347167969ms\r\nStep 3468, loss: 0.008719357661902905, step time: 48.78044128417969ms\r\nStep 3469, loss: 0.008721351623535156, step time: 46.183109283447266ms\r\nStep 3470, loss: 0.008746761828660965, step time: 46.84853553771973ms\r\nStep 3471, loss: 0.008704913780093193, step time: 46.3709831237793ms\r\nStep 3472, loss: 0.00870281271636486, step time: 45.8223819732666ms\r\nStep 3473, loss: 0.008766000159084797, step time: 45.855045318603516ms\r\nStep 3474, loss: 0.008727779611945152, step time: 45.79472541809082ms\r\nStep 3475, loss: 0.00871084164828062, step time: 45.612335205078125ms\r\nStep 3476, loss: 0.008762011304497719, step time: 45.774221420288086ms\r\nStep 3477, loss: 0.008714698255062103, step time: 45.72796821594238ms\r\nStep 3478, loss: 0.008747351355850697, step time: 45.72033882141113ms\r\nStep 3479, loss: 0.008779761381447315, step time: 45.84908485412598ms\r\nStep 3480, loss: 0.008709623478353024, step time: 46.68784141540527ms\r\nStep 3481, loss: 0.008764120750129223, step time: 46.39410972595215ms\r\nStep 3482, loss: 0.008775812573730946, step time: 45.769691467285156ms\r\nStep 3483, loss: 0.008728059940040112, step time: 45.815229415893555ms\r\nStep 3484, loss: 0.008763671852648258, step time: 45.80116271972656ms\r\nStep 3485, loss: 0.008702167309820652, step time: 45.60661315917969ms\r\nStep 3486, loss: 0.008779341354966164, step time: 45.92537879943848ms\r\nStep 3487, loss: 0.008696964010596275, step time: 45.778751373291016ms\r\nStep 3488, loss: 0.008721975609660149, step time: 45.751094818115234ms\r\nStep 3489, loss: 0.008736438117921352, step time: 45.79019546508789ms\r\nStep 3490, loss: 0.00871568638831377, step time: 46.858787536621094ms\r\nStep 3491, loss: 0.00873726885765791, step time: 46.13685607910156ms\r\nStep 3492, loss: 0.008702617138624191, step time: 45.76873779296875ms\r\nStep 3493, loss: 0.008745539002120495, step time: 45.89247703552246ms\r\nStep 3494, loss: 0.008713653311133385, step time: 45.81475257873535ms\r\nStep 3495, loss: 0.008708958514034748, step time: 45.6690788269043ms\r\nStep 3496, loss: 0.008761407807469368, step time: 45.80426216125488ms\r\nStep 3497, loss: 0.008726419880986214, step time: 45.61638832092285ms\r\nStep 3498, loss: 0.008723510429263115, step time: 45.89343070983887ms\r\nStep 3499, loss: 0.008730880916118622, step time: 45.76230049133301ms\r\nStep 3500, loss: 0.00873575359582901, step time: 46.92792892456055ms\r\nStep 3501, loss: 0.008732164278626442, step time: 46.10943794250488ms\r\nStep 3502, loss: 0.008727644570171833, step time: 45.65620422363281ms\r\nStep 3503, loss: 0.008724231272935867, step time: 46.392202377319336ms\r\nStep 3504, loss: 0.008710934780538082, step time: 45.89033126831055ms\r\nStep 3505, loss: 0.00868516881018877, step time: 45.72319984436035ms\r\nStep 3506, loss: 0.00871260091662407, step time: 45.72868347167969ms\r\nStep 3507, loss: 0.008743178099393845, step time: 45.74441909790039ms\r\nStep 3508, loss: 0.008685566484928131, step time: 45.937299728393555ms\r\nStep 3509, loss: 0.008709801360964775, step time: 45.758962631225586ms\r\nStep 3510, loss: 0.008714117109775543, step time: 49.23439025878906ms\r\nStep 3511, loss: 0.008689341135323048, step time: 45.90868949890137ms\r\nStep 3512, loss: 0.008705845102667809, step time: 45.919179916381836ms\r\nStep 3513, loss: 0.008675788529217243, step time: 45.8831787109375ms\r\nStep 3514, loss: 0.008689956739544868, step time: 45.71843147277832ms\r\nStep 3515, loss: 0.00870949774980545, step time: 45.920372009277344ms\r\nStep 3516, loss: 0.0087122255936265, step time: 45.80044746398926ms\r\nStep 3517, loss: 0.00869256816804409, step time: 45.85981369018555ms\r\nStep 3518, loss: 0.008698276244103909, step time: 45.98832130432129ms\r\nStep 3519, loss: 0.008677862584590912, step time: 45.73822021484375ms\r\nStep 3520, loss: 0.008726232685148716, step time: 48.92086982727051ms\r\nStep 3521, loss: 0.008715983480215073, step time: 45.76849937438965ms\r\nStep 3522, loss: 0.00870485883206129, step time: 45.52650451660156ms\r\nStep 3523, loss: 0.008741825819015503, step time: 45.6995964050293ms\r\nStep 3524, loss: 0.008684824220836163, step time: 45.797109603881836ms\r\nStep 3525, loss: 0.008700866252183914, step time: 45.679569244384766ms\r\nStep 3526, loss: 0.008732250891625881, step time: 45.68982124328613ms\r\nStep 3527, loss: 0.008691794238984585, step time: 45.74942588806152ms\r\nStep 3528, loss: 0.0086827352643013, step time: 45.80402374267578ms\r\nStep 3529, loss: 0.008671192452311516, step time: 45.80426216125488ms\r\n",,terminal_output +1231,2407138,"TERMINAL",0,0,"Step 3530, loss: 0.008665197528898716, step time: 45.884132385253906ms\r\nStep 3531, loss: 0.008690659888088703, step time: 45.70746421813965ms\r\nStep 3532, loss: 0.008648829534649849, step time: 45.61495780944824ms\r\nStep 3533, loss: 0.008661993779242039, step time: 45.728206634521484ms\r\nStep 3534, loss: 0.008670290000736713, step time: 45.66168785095215ms\r\n",,terminal_output +1232,2407379,"TERMINAL",0,0,"Step 3535, loss: 0.008647337555885315, step time: 45.71342468261719ms\r\nStep 3536, loss: 0.008691461756825447, step time: 45.66216468811035ms\r\nStep 3537, loss: 0.008688408881425858, step time: 45.760154724121094ms\r\nStep 3538, loss: 0.008662695065140724, step time: 45.66144943237305ms\r\nStep 3539, loss: 0.008657383732497692, step time: 45.770883560180664ms\r\n",,terminal_output +1233,2407996,"TERMINAL",0,0,"Step 3540, loss: 0.008695269003510475, step time: 45.78876495361328ms\r\nStep 3541, loss: 0.008751800283789635, step time: 45.647382736206055ms\r\nStep 3542, loss: 0.008687340654432774, step time: 45.6235408782959ms\r\nStep 3543, loss: 0.008676046505570412, step time: 45.653581619262695ms\r\nStep 3544, loss: 0.008720040321350098, step time: 45.69864273071289ms\r\nStep 3545, loss: 0.008695937693119049, step time: 45.67384719848633ms\r\nStep 3546, loss: 0.008705518208444118, step time: 45.71270942687988ms\r\nStep 3547, loss: 0.008704788982868195, step time: 45.69268226623535ms\r\nStep 3548, loss: 0.008707829751074314, step time: 45.70508003234863ms\r\nStep 3549, loss: 0.008711649104952812, step time: 45.720815658569336ms\r\n",,terminal_output +1234,2411797,"TERMINAL",0,0,"Step 3550, loss: 0.008676819503307343, step time: 46.692848205566406ms\r\nStep 3551, loss: 0.00868004746735096, step time: 45.70293426513672ms\r\nStep 3552, loss: 0.008685448206961155, step time: 45.679569244384766ms\r\nStep 3553, loss: 0.008681862615048885, step time: 45.61018943786621ms\r\nStep 3554, loss: 0.008670644834637642, step time: 45.601844787597656ms\r\nStep 3555, loss: 0.00864197313785553, step time: 45.53866386413574ms\r\nStep 3556, loss: 0.008652043528854847, step time: 45.97043991088867ms\r\nStep 3557, loss: 0.008693196810781956, step time: 45.5930233001709ms\r\nStep 3558, loss: 0.008697506971657276, step time: 45.57013511657715ms\r\nStep 3559, loss: 0.008683349005877972, step time: 45.60351371765137ms\r\nStep 3560, loss: 0.008705046027898788, step time: 47.8816032409668ms\r\nStep 3561, loss: 0.008643699809908867, step time: 45.67861557006836ms\r\nStep 3562, loss: 0.008706510998308659, step time: 45.55797576904297ms\r\nStep 3563, loss: 0.008707473054528236, step time: 45.65834999084473ms\r\nStep 3564, loss: 0.008652376011013985, step time: 45.647621154785156ms\r\nStep 3565, loss: 0.008709604851901531, step time: 45.70412635803223ms\r\nStep 3566, loss: 0.008660247549414635, step time: 45.85099220275879ms\r\nStep 3567, loss: 0.008672412484884262, step time: 45.81284523010254ms\r\nStep 3568, loss: 0.00864247977733612, step time: 45.58396339416504ms\r\nStep 3569, loss: 0.008636509999632835, step time: 45.746803283691406ms\r\nStep 3570, loss: 0.008701312355697155, step time: 48.500776290893555ms\r\nStep 3571, loss: 0.008685202337801456, step time: 45.71223258972168ms\r\nStep 3572, loss: 0.008653433062136173, step time: 45.71652412414551ms\r\nStep 3573, loss: 0.008692665956914425, step time: 45.80521583557129ms\r\nStep 3574, loss: 0.008648279123008251, step time: 45.784950256347656ms\r\nStep 3575, loss: 0.008686850778758526, step time: 45.7310676574707ms\r\nStep 3576, loss: 0.00870584137737751, step time: 45.76277732849121ms\r\nStep 3577, loss: 0.008673482574522495, step time: 45.77469825744629ms\r\nStep 3578, loss: 0.008649537339806557, step time: 45.75967788696289ms\r\nStep 3579, loss: 0.008688775822520256, step time: 45.929908752441406ms\r\nStep 3580, loss: 0.00867221225053072, step time: 45.8979606628418ms\r\nStep 3581, loss: 0.008660869672894478, step time: 46.09513282775879ms\r\nStep 3582, loss: 0.008670065551996231, step time: 45.86935043334961ms\r\nStep 3583, loss: 0.008654267527163029, step time: 45.7305908203125ms\r\nStep 3584, loss: 0.008662705309689045, step time: 45.789480209350586ms\r\nStep 3585, loss: 0.008651329204440117, step time: 45.68791389465332ms\r\nStep 3586, loss: 0.008622140623629093, step time: 45.7308292388916ms\r\nStep 3587, loss: 0.008665225468575954, step time: 46.042680740356445ms\r\nStep 3588, loss: 0.008634936064481735, step time: 45.717477798461914ms\r\nStep 3589, loss: 0.008626616559922695, step time: 45.87364196777344ms\r\nStep 3590, loss: 0.008603756316006184, step time: 46.72837257385254ms\r\nStep 3591, loss: 0.008589070290327072, step time: 46.234130859375ms\r\nStep 3592, loss: 0.008624708279967308, step time: 45.86672782897949ms\r\nStep 3593, loss: 0.008604710921645164, step time: 45.75967788696289ms\r\nStep 3594, loss: 0.008619992062449455, step time: 45.763492584228516ms\r\nStep 3595, loss: 0.00861607026308775, step time: 45.52912712097168ms\r\nStep 3596, loss: 0.008624693378806114, step time: 45.673370361328125ms\r\nStep 3597, loss: 0.008634218014776707, step time: 45.80092430114746ms\r\nStep 3598, loss: 0.00862983800470829, step time: 45.71366310119629ms\r\nStep 3599, loss: 0.008703092113137245, step time: 45.9439754486084ms\r\nStep 3600, loss: 0.008690602146089077, step time: 46.41103744506836ms\r\nStep 3601, loss: 0.008650492876768112, step time: 46.18477821350098ms\r\nStep 3602, loss: 0.008625590242445469, step time: 45.79472541809082ms\r\nStep 3603, loss: 0.008629495278000832, step time: 45.68815231323242ms\r\nStep 3604, loss: 0.008682536892592907, step time: 45.76277732849121ms\r\nStep 3605, loss: 0.00866926833987236, step time: 45.593976974487305ms\r\nStep 3606, loss: 0.008639620617032051, step time: 45.67909240722656ms\r\nStep 3607, loss: 0.008678538724780083, step time: 45.71223258972168ms\r\nStep 3608, loss: 0.008608895353972912, step time: 45.68839073181152ms\r\nStep 3609, loss: 0.008642046712338924, step time: 46.17619514465332ms\r\n",,terminal_output +1235,2416796,"TERMINAL",0,0,"Step 3610, loss: 0.008661468513309956, step time: 46.51212692260742ms\r\nStep 3611, loss: 0.008626979775726795, step time: 46.33951187133789ms\r\nStep 3612, loss: 0.008610068820416927, step time: 45.79806327819824ms\r\nStep 3613, loss: 0.008644022047519684, step time: 45.751333236694336ms\r\nStep 3614, loss: 0.008644621819257736, step time: 46.317100524902344ms\r\nStep 3615, loss: 0.008627415634691715, step time: 45.538902282714844ms\r\nStep 3616, loss: 0.008610481396317482, step time: 45.86672782897949ms\r\nStep 3617, loss: 0.008618231862783432, step time: 45.7911491394043ms\r\nStep 3618, loss: 0.008640321902930737, step time: 45.81594467163086ms\r\nStep 3619, loss: 0.008610265329480171, step time: 45.91202735900879ms\r\nStep 3620, loss: 0.00865965150296688, step time: 48.966169357299805ms\r\nStep 3621, loss: 0.008591965772211552, step time: 46.22387886047363ms\r\nStep 3622, loss: 0.008604921400547028, step time: 45.67146301269531ms\r\nStep 3623, loss: 0.00862420815974474, step time: 45.79758644104004ms\r\nStep 3624, loss: 0.008595830760896206, step time: 45.702219009399414ms\r\nStep 3625, loss: 0.008587419986724854, step time: 45.58897018432617ms\r\nStep 3626, loss: 0.008605563081800938, step time: 45.94898223876953ms\r\nStep 3627, loss: 0.008654075674712658, step time: 45.8674430847168ms\r\nStep 3628, loss: 0.008646982721984386, step time: 45.78399658203125ms\r\nStep 3629, loss: 0.00859751831740141, step time: 45.732736587524414ms\r\nStep 3630, loss: 0.00863859336823225, step time: 49.76487159729004ms\r\nStep 3631, loss: 0.008594022132456303, step time: 46.117305755615234ms\r\nStep 3632, loss: 0.008601738139986992, step time: 45.805931091308594ms\r\nStep 3633, loss: 0.00862199068069458, step time: 46.12565040588379ms\r\nStep 3634, loss: 0.008626720868051052, step time: 45.79734802246094ms\r\nStep 3635, loss: 0.008622257970273495, step time: 45.619964599609375ms\r\nStep 3636, loss: 0.00862574577331543, step time: 45.48811912536621ms\r\nStep 3637, loss: 0.008577188476920128, step time: 45.73559761047363ms\r\nStep 3638, loss: 0.00862487405538559, step time: 46.02861404418945ms\r\nStep 3639, loss: 0.008658007718622684, step time: 45.8216667175293ms\r\nStep 3640, loss: 0.008614512160420418, step time: 46.88549041748047ms\r\nStep 3641, loss: 0.008612805977463722, step time: 46.0355281829834ms\r\nStep 3642, loss: 0.008615130558609962, step time: 45.68362236022949ms\r\nStep 3643, loss: 0.008619085885584354, step time: 45.636892318725586ms\r\nStep 3644, loss: 0.008614529855549335, step time: 45.77469825744629ms\r\nStep 3645, loss: 0.008596726693212986, step time: 45.80354690551758ms\r\nStep 3646, loss: 0.008627761155366898, step time: 45.69721221923828ms\r\nStep 3647, loss: 0.008572166785597801, step time: 45.6080436706543ms\r\nStep 3648, loss: 0.008575060404837132, step time: 45.847177505493164ms\r\nStep 3649, loss: 0.008587022311985493, step time: 45.68672180175781ms\r\nStep 3650, loss: 0.008585073985159397, step time: 46.77391052246094ms\r\nStep 3651, loss: 0.008595277555286884, step time: 45.9291934967041ms\r\nStep 3652, loss: 0.008568666875362396, step time: 45.71890830993652ms\r\nStep 3653, loss: 0.008556235581636429, step time: 45.75467109680176ms\r\nStep 3654, loss: 0.008557084947824478, step time: 45.655250549316406ms\r\nStep 3655, loss: 0.008566807024180889, step time: 45.72439193725586ms\r\nStep 3656, loss: 0.008591742254793644, step time: 45.90177536010742ms\r\nStep 3657, loss: 0.00856566708534956, step time: 45.61567306518555ms\r\nStep 3658, loss: 0.008563104085624218, step time: 45.68004608154297ms\r\nStep 3659, loss: 0.008570980280637741, step time: 45.59040069580078ms\r\nStep 3660, loss: 0.008620915934443474, step time: 46.666622161865234ms\r\nStep 3661, loss: 0.008640693500638008, step time: 45.96590995788574ms\r\nStep 3662, loss: 0.008679171092808247, step time: 45.835256576538086ms\r\nStep 3663, loss: 0.008618311025202274, step time: 45.79615592956543ms\r\nStep 3664, loss: 0.008632010780274868, step time: 45.64261436462402ms\r\nStep 3665, loss: 0.008608425036072731, step time: 45.870304107666016ms\r\nStep 3666, loss: 0.008578797802329063, step time: 45.66192626953125ms\r\nStep 3667, loss: 0.008631586097180843, step time: 45.77231407165527ms\r\nStep 3668, loss: 0.008617401123046875, step time: 45.75824737548828ms\r\nStep 3669, loss: 0.008572862483561039, step time: 45.60565948486328ms\r\nStep 3670, loss: 0.008579876273870468, step time: 47.2867488861084ms\r\nStep 3671, loss: 0.00860023032873869, step time: 45.97663879394531ms\r\nStep 3672, loss: 0.008568678051233292, step time: 45.88174819946289ms\r\nStep 3673, loss: 0.008555913344025612, step time: 45.626163482666016ms\r\nStep 3674, loss: 0.008610013872385025, step time: 45.68123817443848ms\r\nStep 3675, loss: 0.008573772385716438, step time: 45.80211639404297ms\r\nStep 3676, loss: 0.008573506958782673, step time: 45.83907127380371ms\r\nStep 3677, loss: 0.00856721866875887, step time: 45.891523361206055ms\r\nStep 3678, loss: 0.008534882217645645, step time: 45.71723937988281ms\r\nStep 3679, loss: 0.008525308221578598, step time: 45.838117599487305ms\r\nStep 3680, loss: 0.008577045053243637, step time: 46.723127365112305ms\r\nStep 3681, loss: 0.008581366389989853, step time: 46.099185943603516ms\r\nStep 3682, loss: 0.008582585491240025, step time: 45.96281051635742ms\r\nStep 3683, loss: 0.008585246279835701, step time: 45.722246170043945ms\r\nStep 3684, loss: 0.008628252893686295, step time: 45.82500457763672ms\r\nStep 3685, loss: 0.008547450415790081, step time: 45.706748962402344ms\r\nStep 3686, loss: 0.008610939607024193, step time: 45.52507400512695ms\r\nStep 3687, loss: 0.008621256798505783, step time: 45.8369255065918ms\r\nStep 3688, loss: 0.00857381708920002, step time: 45.65715789794922ms\r\nStep 3689, loss: 0.008592146448791027, step time: 45.76921463012695ms\r\n",,terminal_output +1236,2421795,"TERMINAL",0,0,"Step 3690, loss: 0.008573018945753574, step time: 47.92475700378418ms\r\nStep 3691, loss: 0.008586063049733639, step time: 46.35429382324219ms\r\nStep 3692, loss: 0.008600560948252678, step time: 45.94087600708008ms\r\nStep 3693, loss: 0.008569330908358097, step time: 45.69864273071289ms\r\nStep 3694, loss: 0.008611498400568962, step time: 45.922040939331055ms\r\nStep 3695, loss: 0.008557984605431557, step time: 45.629262924194336ms\r\nStep 3696, loss: 0.00855302158743143, step time: 45.743465423583984ms\r\nStep 3697, loss: 0.008624466136097908, step time: 45.893192291259766ms\r\nStep 3698, loss: 0.008543211966753006, step time: 45.7158088684082ms\r\nStep 3699, loss: 0.00854374561458826, step time: 45.870065689086914ms\r\nStep 3700, loss: 0.008565478958189487, step time: 48.666954040527344ms\r\nStep 3701, loss: 0.008560830727219582, step time: 46.45085334777832ms\r\nStep 3702, loss: 0.008548300713300705, step time: 45.914411544799805ms\r\nStep 3703, loss: 0.008549226447939873, step time: 45.73512077331543ms\r\nStep 3704, loss: 0.008513462729752064, step time: 45.96209526062012ms\r\nStep 3705, loss: 0.008541490882635117, step time: 45.61877250671387ms\r\nStep 3706, loss: 0.008563730865716934, step time: 45.61424255371094ms\r\nStep 3707, loss: 0.008540723472833633, step time: 47.237396240234375ms\r\nStep 3708, loss: 0.00851541105657816, step time: 46.26345634460449ms\r\nStep 3709, loss: 0.008511563763022423, step time: 45.61114311218262ms\r\nStep 3710, loss: 0.008566286414861679, step time: 46.51021957397461ms\r\nStep 3711, loss: 0.008595019578933716, step time: 46.1728572845459ms\r\nStep 3712, loss: 0.00853944756090641, step time: 45.67837715148926ms\r\nStep 3713, loss: 0.008515002205967903, step time: 45.829057693481445ms\r\nStep 3714, loss: 0.008566107600927353, step time: 45.70126533508301ms\r\nStep 3715, loss: 0.008555165491998196, step time: 45.731306076049805ms\r\nStep 3716, loss: 0.008543498814105988, step time: 45.77517509460449ms\r\nStep 3717, loss: 0.008603143505752087, step time: 45.70603370666504ms\r\nStep 3718, loss: 0.008577878586947918, step time: 45.636653900146484ms\r\nStep 3719, loss: 0.008531639352440834, step time: 45.89223861694336ms\r\nStep 3720, loss: 0.008619952946901321, step time: 46.48256301879883ms\r\nStep 3721, loss: 0.008551472797989845, step time: 46.17190361022949ms\r\nStep 3722, loss: 0.008520168252289295, step time: 45.80354690551758ms\r\nStep 3723, loss: 0.008635512553155422, step time: 46.228885650634766ms\r\nStep 3724, loss: 0.008524732664227486, step time: 45.93682289123535ms\r\nStep 3725, loss: 0.008554356172680855, step time: 45.625925064086914ms\r\nStep 3726, loss: 0.008569430559873581, step time: 46.01764678955078ms\r\nStep 3727, loss: 0.008544154465198517, step time: 45.62258720397949ms\r\nStep 3728, loss: 0.008555794134736061, step time: 45.670509338378906ms\r\nStep 3729, loss: 0.008526853285729885, step time: 45.85456848144531ms\r\nStep 3730, loss: 0.008597196079790592, step time: 47.11151123046875ms\r\nStep 3731, loss: 0.008543020114302635, step time: 46.32997512817383ms\r\nStep 3732, loss: 0.008511408232152462, step time: 45.87602615356445ms\r\nStep 3733, loss: 0.00860598124563694, step time: 46.01025581359863ms\r\nStep 3734, loss: 0.008515037596225739, step time: 45.760154724121094ms\r\nStep 3735, loss: 0.008558372966945171, step time: 45.69411277770996ms\r\nStep 3736, loss: 0.00855260994285345, step time: 45.81785202026367ms\r\nStep 3737, loss: 0.008516961708664894, step time: 45.6852912902832ms\r\nStep 3738, loss: 0.008534463122487068, step time: 45.84050178527832ms\r\nStep 3739, loss: 0.00852670706808567, step time: 45.72653770446777ms\r\nStep 3740, loss: 0.008530217222869396, step time: 46.65017127990723ms\r\nStep 3741, loss: 0.008526504039764404, step time: 46.01144790649414ms\r\nStep 3742, loss: 0.008511374704539776, step time: 45.63617706298828ms\r\nStep 3743, loss: 0.008504168130457401, step time: 45.81022262573242ms\r\nStep 3744, loss: 0.008531440049409866, step time: 45.59636116027832ms\r\nStep 3745, loss: 0.008508184924721718, step time: 45.7305908203125ms\r\nStep 3746, loss: 0.008513894863426685, step time: 45.79448699951172ms\r\nStep 3747, loss: 0.008548891171813011, step time: 45.67098617553711ms\r\nStep 3748, loss: 0.008523844182491302, step time: 45.9747314453125ms\r\nStep 3749, loss: 0.008521006442606449, step time: 45.6697940826416ms\r\nStep 3750, loss: 0.008511928841471672, step time: 46.75459861755371ms\r\nStep 3751, loss: 0.008543611504137516, step time: 46.08869552612305ms\r\nStep 3752, loss: 0.0085108308121562, step time: 45.668840408325195ms\r\nStep 3753, loss: 0.00854212511330843, step time: 45.841217041015625ms\r\nStep 3754, loss: 0.008518948219716549, step time: 45.705318450927734ms\r\nStep 3755, loss: 0.008508404716849327, step time: 45.6695556640625ms\r\nStep 3756, loss: 0.008505587466061115, step time: 45.72439193725586ms\r\nStep 3757, loss: 0.008531377650797367, step time: 45.59826850891113ms\r\nStep 3758, loss: 0.008526620455086231, step time: 46.16069793701172ms\r\nStep 3759, loss: 0.008538239635527134, step time: 45.7155704498291ms\r\nStep 3760, loss: 0.008511004969477654, step time: 46.64444923400879ms\r\nStep 3761, loss: 0.008523599244654179, step time: 45.935630798339844ms\r\nStep 3762, loss: 0.008550293743610382, step time: 45.809030532836914ms\r\nStep 3763, loss: 0.008558040484786034, step time: 45.696258544921875ms\r\nStep 3764, loss: 0.008530572056770325, step time: 45.555830001831055ms\r\nStep 3765, loss: 0.008513886481523514, step time: 45.78995704650879ms\r\nStep 3766, loss: 0.008535941131412983, step time: 45.68004608154297ms\r\nStep 3767, loss: 0.00855165533721447, step time: 45.735836029052734ms\r\nStep 3768, loss: 0.008524976670742035, step time: 45.66025733947754ms\r\nStep 3769, loss: 0.00853341817855835, step time: 45.821189880371094ms\r\n",,terminal_output +1237,2426797,"TERMINAL",0,0,"Step 3770, loss: 0.008557470515370369, step time: 47.092437744140625ms\r\nStep 3771, loss: 0.00855832640081644, step time: 46.015262603759766ms\r\nStep 3772, loss: 0.00854887068271637, step time: 45.98832130432129ms\r\nStep 3773, loss: 0.008515178225934505, step time: 45.85623741149902ms\r\nStep 3774, loss: 0.008546433411538601, step time: 45.67456245422363ms\r\nStep 3775, loss: 0.008559387177228928, step time: 45.751333236694336ms\r\nStep 3776, loss: 0.008537791669368744, step time: 45.575618743896484ms\r\nStep 3777, loss: 0.008538344874978065, step time: 45.6695556640625ms\r\nStep 3778, loss: 0.008519263938069344, step time: 45.68910598754883ms\r\nStep 3779, loss: 0.008550005964934826, step time: 45.58825492858887ms\r\nStep 3780, loss: 0.00858963280916214, step time: 46.88739776611328ms\r\nStep 3781, loss: 0.008555888198316097, step time: 45.942068099975586ms\r\nStep 3782, loss: 0.008546316996216774, step time: 45.82071304321289ms\r\nStep 3783, loss: 0.00853684451431036, step time: 45.737266540527344ms\r\nStep 3784, loss: 0.008508697152137756, step time: 45.72916030883789ms\r\nStep 3785, loss: 0.008556473068892956, step time: 45.93944549560547ms\r\nStep 3786, loss: 0.008543635718524456, step time: 46.166181564331055ms\r\nStep 3787, loss: 0.008574102073907852, step time: 45.84193229675293ms\r\nStep 3788, loss: 0.008535944856703281, step time: 45.85075378417969ms\r\nStep 3789, loss: 0.008544143289327621, step time: 45.82357406616211ms\r\nStep 3790, loss: 0.008592016063630581, step time: 46.738386154174805ms\r\nStep 3791, loss: 0.008605290204286575, step time: 45.96257209777832ms\r\nStep 3792, loss: 0.00852834340184927, step time: 45.906782150268555ms\r\nStep 3793, loss: 0.008537832647562027, step time: 45.729637145996094ms\r\nStep 3794, loss: 0.008547832258045673, step time: 45.61901092529297ms\r\nStep 3795, loss: 0.008522097021341324, step time: 45.68076133728027ms\r\nStep 3796, loss: 0.008527218364179134, step time: 45.691490173339844ms\r\nStep 3797, loss: 0.008487673476338387, step time: 45.797109603881836ms\r\nStep 3798, loss: 0.008482009172439575, step time: 45.68743705749512ms\r\nStep 3799, loss: 0.008517071604728699, step time: 45.65834999084473ms\r\nStep 3800, loss: 0.00851353257894516, step time: 49.82924461364746ms\r\nStep 3801, loss: 0.008491871878504753, step time: 46.085357666015625ms\r\nStep 3802, loss: 0.00850314274430275, step time: 45.94898223876953ms\r\nStep 3803, loss: 0.008521347306668758, step time: 45.67861557006836ms\r\nStep 3804, loss: 0.008542565628886223, step time: 45.752525329589844ms\r\nStep 3805, loss: 0.008499055169522762, step time: 45.6700325012207ms\r\nStep 3806, loss: 0.008484414778649807, step time: 45.7911491394043ms\r\nStep 3807, loss: 0.00852242298424244, step time: 46.01693153381348ms\r\nStep 3808, loss: 0.008488473482429981, step time: 45.71938514709473ms\r\nStep 3809, loss: 0.00849221833050251, step time: 45.873403549194336ms\r\nStep 3810, loss: 0.008540986105799675, step time: 49.57437515258789ms\r\nStep 3811, loss: 0.00852267723530531, step time: 46.19169235229492ms\r\nStep 3812, loss: 0.008524254895746708, step time: 45.7758903503418ms\r\nStep 3813, loss: 0.008466826751828194, step time: 45.67217826843262ms\r\nStep 3814, loss: 0.008512687869369984, step time: 45.8369255065918ms\r\nStep 3815, loss: 0.008520467206835747, step time: 45.60589790344238ms\r\nStep 3816, loss: 0.008520437404513359, step time: 45.697689056396484ms\r\nStep 3817, loss: 0.00850323960185051, step time: 45.71127891540527ms\r\nStep 3818, loss: 0.00853095855563879, step time: 45.69435119628906ms\r\nStep 3819, loss: 0.008490377105772495, step time: 46.051025390625ms\r\nStep 3820, loss: 0.008514721877872944, step time: 46.777963638305664ms\r\nStep 3821, loss: 0.008546670898795128, step time: 46.33665084838867ms\r\nStep 3822, loss: 0.00860128179192543, step time: 45.87602615356445ms\r\nStep 3823, loss: 0.008530715480446815, step time: 45.6998348236084ms\r\nStep 3824, loss: 0.008513267152011395, step time: 45.79663276672363ms\r\nStep 3825, loss: 0.008575651794672012, step time: 45.5777645111084ms\r\nStep 3826, loss: 0.008497951552271843, step time: 45.813798904418945ms\r\nStep 3827, loss: 0.008509931154549122, step time: 45.716285705566406ms\r\nStep 3828, loss: 0.008519107475876808, step time: 45.725107192993164ms\r\nStep 3829, loss: 0.008466009050607681, step time: 45.87864875793457ms\r\nStep 3830, loss: 0.00848845299333334, step time: 46.523332595825195ms\r\nStep 3831, loss: 0.008530063554644585, step time: 46.66566848754883ms\r\nStep 3832, loss: 0.008543559350073338, step time: 46.624183654785156ms\r\nStep 3833, loss: 0.008540920913219452, step time: 47.24907875061035ms\r\nStep 3834, loss: 0.00857632327824831, step time: 47.185659408569336ms\r\nStep 3835, loss: 0.00854589231312275, step time: 46.96798324584961ms\r\nStep 3836, loss: 0.008531159721314907, step time: 46.74887657165527ms\r\nStep 3837, loss: 0.008540790528059006, step time: 46.65184020996094ms\r\nStep 3838, loss: 0.008497231639921665, step time: 46.339988708496094ms\r\nStep 3839, loss: 0.008520075120031834, step time: 45.89200019836426ms\r\nStep 3840, loss: 0.008547130972146988, step time: 46.796321868896484ms\r\nStep 3841, loss: 0.00854387879371643, step time: 45.979976654052734ms\r\nStep 3842, loss: 0.008523823693394661, step time: 45.96686363220215ms\r\nStep 3843, loss: 0.00850016437470913, step time: 45.72176933288574ms\r\nStep 3844, loss: 0.008525717072188854, step time: 45.7301139831543ms\r\nStep 3845, loss: 0.00852127280086279, step time: 45.781850814819336ms\r\nStep 3846, loss: 0.008482225239276886, step time: 45.516252517700195ms\r\nStep 3847, loss: 0.008510134182870388, step time: 45.79329490661621ms\r\nStep 3848, loss: 0.00849800743162632, step time: 45.71676254272461ms\r\nStep 3849, loss: 0.00847915280610323, step time: 45.60375213623047ms\r\n",,terminal_output +1238,2431796,"TERMINAL",0,0,"Step 3850, loss: 0.008493071421980858, step time: 47.02186584472656ms\r\nStep 3851, loss: 0.008509651757776737, step time: 46.58913612365723ms\r\nStep 3852, loss: 0.008480149321258068, step time: 46.15163803100586ms\r\nStep 3853, loss: 0.00848496425896883, step time: 45.717477798461914ms\r\nStep 3854, loss: 0.008492785505950451, step time: 45.88961601257324ms\r\nStep 3855, loss: 0.008526179939508438, step time: 45.734405517578125ms\r\nStep 3856, loss: 0.00852427538484335, step time: 45.79973220825195ms\r\nStep 3857, loss: 0.008504682220518589, step time: 45.8378791809082ms\r\nStep 3858, loss: 0.008498732931911945, step time: 45.72725296020508ms\r\nStep 3859, loss: 0.0085000554099679, step time: 45.857906341552734ms\r\nStep 3860, loss: 0.00851074792444706, step time: 47.58810997009277ms\r\nStep 3861, loss: 0.008509068749845028, step time: 46.2033748626709ms\r\nStep 3862, loss: 0.008519414812326431, step time: 45.84383964538574ms\r\nStep 3863, loss: 0.008496219292283058, step time: 45.670509338378906ms\r\nStep 3864, loss: 0.008510465733706951, step time: 45.86315155029297ms\r\nStep 3865, loss: 0.008518142625689507, step time: 45.736074447631836ms\r\nStep 3866, loss: 0.008630179800093174, step time: 45.771121978759766ms\r\nStep 3867, loss: 0.008551223203539848, step time: 46.02479934692383ms\r\nStep 3868, loss: 0.008503864519298077, step time: 45.609235763549805ms\r\nStep 3869, loss: 0.008618575520813465, step time: 45.88484764099121ms\r\nStep 3870, loss: 0.008483950048685074, step time: 48.71726036071777ms\r\nStep 3871, loss: 0.008538521826267242, step time: 46.33212089538574ms\r\nStep 3872, loss: 0.008504706434905529, step time: 45.94731330871582ms\r\nStep 3873, loss: 0.00848286785185337, step time: 45.77445983886719ms\r\nStep 3874, loss: 0.00848348718136549, step time: 45.83001136779785ms\r\nStep 3875, loss: 0.00844322144985199, step time: 45.575857162475586ms\r\nStep 3876, loss: 0.0085143456235528, step time: 45.81761360168457ms\r\nStep 3877, loss: 0.008458882570266724, step time: 45.65119743347168ms\r\nStep 3878, loss: 0.008465840481221676, step time: 45.804738998413086ms\r\nStep 3879, loss: 0.008492219261825085, step time: 46.04840278625488ms\r\nStep 3880, loss: 0.00846822652965784, step time: 49.41201210021973ms\r\nStep 3881, loss: 0.008499088697135448, step time: 46.30589485168457ms\r\nStep 3882, loss: 0.008498883806169033, step time: 45.717716217041016ms\r\nStep 3883, loss: 0.008475402370095253, step time: 45.80426216125488ms\r\nStep 3884, loss: 0.008518127724528313, step time: 45.73178291320801ms\r\nStep 3885, loss: 0.008598623797297478, step time: 45.7150936126709ms\r\nStep 3886, loss: 0.008485637605190277, step time: 45.86219787597656ms\r\nStep 3887, loss: 0.008519366383552551, step time: 45.76563835144043ms\r\nStep 3888, loss: 0.00853121466934681, step time: 45.85623741149902ms\r\nStep 3889, loss: 0.008497446775436401, step time: 45.90344429016113ms\r\nStep 3890, loss: 0.008491547778248787, step time: 46.61107063293457ms\r\nStep 3891, loss: 0.00850705336779356, step time: 46.152353286743164ms\r\nStep 3892, loss: 0.008491799235343933, step time: 45.647621154785156ms\r\nStep 3893, loss: 0.008483550511300564, step time: 45.73249816894531ms\r\nStep 3894, loss: 0.00846092775464058, step time: 45.71247100830078ms\r\nStep 3895, loss: 0.008455567993223667, step time: 45.75014114379883ms\r\nStep 3896, loss: 0.008479893207550049, step time: 45.870304107666016ms\r\nStep 3897, loss: 0.008471759036183357, step time: 45.6395149230957ms\r\nStep 3898, loss: 0.008465254679322243, step time: 45.91679573059082ms\r\nStep 3899, loss: 0.008452010340988636, step time: 45.87984085083008ms\r\nStep 3900, loss: 0.008429326117038727, step time: 46.84567451477051ms\r\nStep 3901, loss: 0.008459256961941719, step time: 46.2956428527832ms\r\nStep 3902, loss: 0.008441360667347908, step time: 45.75395584106445ms\r\nStep 3903, loss: 0.008432217873632908, step time: 45.948028564453125ms\r\nStep 3904, loss: 0.008416195400059223, step time: 45.65715789794922ms\r\nStep 3905, loss: 0.008438357152044773, step time: 45.68028450012207ms\r\nStep 3906, loss: 0.008455898612737656, step time: 46.06294631958008ms\r\nStep 3907, loss: 0.008471531793475151, step time: 45.69864273071289ms\r\nStep 3908, loss: 0.00844650249928236, step time: 46.01883888244629ms\r\nStep 3909, loss: 0.008572939783334732, step time: 45.98045349121094ms\r\nStep 3910, loss: 0.008548316545784473, step time: 47.02615737915039ms\r\nStep 3911, loss: 0.008476048707962036, step time: 46.14114761352539ms\r\nStep 3912, loss: 0.008512083441019058, step time: 45.77922821044922ms\r\nStep 3913, loss: 0.00848446972668171, step time: 45.92490196228027ms\r\nStep 3914, loss: 0.008461846970021725, step time: 45.66836357116699ms\r\nStep 3915, loss: 0.008603502996265888, step time: 45.68934440612793ms\r\nStep 3916, loss: 0.008481214754283428, step time: 45.7460880279541ms\r\nStep 3917, loss: 0.008456753566861153, step time: 45.58396339416504ms\r\nStep 3918, loss: 0.008515034802258015, step time: 46.205759048461914ms\r\nStep 3919, loss: 0.008481292985379696, step time: 45.816898345947266ms\r\nStep 3920, loss: 0.008491311222314835, step time: 46.57149314880371ms\r\nStep 3921, loss: 0.008456195704638958, step time: 46.038150787353516ms\r\nStep 3922, loss: 0.008536526001989841, step time: 45.725107192993164ms\r\nStep 3923, loss: 0.00843591708689928, step time: 46.021461486816406ms\r\nStep 3924, loss: 0.008452573791146278, step time: 45.755624771118164ms\r\nStep 3925, loss: 0.00848735123872757, step time: 45.81618309020996ms\r\nStep 3926, loss: 0.008442775346338749, step time: 45.76253890991211ms\r\nStep 3927, loss: 0.008424045518040657, step time: 45.65167427062988ms\r\nStep 3928, loss: 0.008444215171039104, step time: 45.7758903503418ms\r\nStep 3929, loss: 0.008457016199827194, step time: 45.598745346069336ms\r\n",,terminal_output +1239,2436799,"TERMINAL",0,0,"Step 3930, loss: 0.008430258370935917, step time: 46.823740005493164ms\r\nStep 3931, loss: 0.008431190624833107, step time: 45.97306251525879ms\r\nStep 3932, loss: 0.008494537323713303, step time: 45.839548110961914ms\r\nStep 3933, loss: 0.00847395695745945, step time: 45.79663276672363ms\r\nStep 3934, loss: 0.008439844474196434, step time: 45.706987380981445ms\r\nStep 3935, loss: 0.008506827987730503, step time: 45.91965675354004ms\r\nStep 3936, loss: 0.008486076258122921, step time: 45.59159278869629ms\r\nStep 3937, loss: 0.008495514281094074, step time: 45.59946060180664ms\r\nStep 3938, loss: 0.00851564109325409, step time: 46.007394790649414ms\r\nStep 3939, loss: 0.008487723767757416, step time: 45.72629928588867ms\r\nStep 3940, loss: 0.008463453501462936, step time: 46.79155349731445ms\r\nStep 3941, loss: 0.008530979976058006, step time: 46.067237854003906ms\r\nStep 3942, loss: 0.00848578941076994, step time: 46.03838920593262ms\r\nStep 3943, loss: 0.008449599146842957, step time: 45.95303535461426ms\r\nStep 3944, loss: 0.008532879874110222, step time: 45.675039291381836ms\r\nStep 3945, loss: 0.008489361964166164, step time: 45.79591751098633ms\r\nStep 3946, loss: 0.008444600738584995, step time: 45.55177688598633ms\r\nStep 3947, loss: 0.00854773074388504, step time: 45.816659927368164ms\r\nStep 3948, loss: 0.008457701653242111, step time: 45.74251174926758ms\r\nStep 3949, loss: 0.00845402479171753, step time: 45.58396339416504ms\r\nStep 3950, loss: 0.008511308580636978, step time: 49.263715744018555ms\r\nStep 3951, loss: 0.008440361358225346, step time: 46.15020751953125ms\r\nStep 3952, loss: 0.008461094461381435, step time: 46.07653617858887ms\r\nStep 3953, loss: 0.008437580429017544, step time: 45.72033882141113ms\r\nStep 3954, loss: 0.008500548079609871, step time: 45.82691192626953ms\r\nStep 3955, loss: 0.00844602845609188, step time: 45.815229415893555ms\r\nStep 3956, loss: 0.008446699939668179, step time: 45.81284523010254ms\r\nStep 3957, loss: 0.008539450354874134, step time: 46.01907730102539ms\r\nStep 3958, loss: 0.008426671847701073, step time: 45.6082820892334ms\r\nStep 3959, loss: 0.008440835401415825, step time: 45.868873596191406ms\r\nStep 3960, loss: 0.008500144816935062, step time: 49.4685173034668ms\r\nStep 3961, loss: 0.008473366498947144, step time: 46.068668365478516ms\r\nStep 3962, loss: 0.008435039781033993, step time: 45.81761360168457ms\r\nStep 3963, loss: 0.00846271775662899, step time: 45.690298080444336ms\r\nStep 3964, loss: 0.00844818539917469, step time: 45.937538146972656ms\r\nStep 3965, loss: 0.008441455662250519, step time: 45.54915428161621ms\r\nStep 3966, loss: 0.008438894525170326, step time: 45.71413993835449ms\r\nStep 3967, loss: 0.008433823473751545, step time: 45.66836357116699ms\r\nStep 3968, loss: 0.008456715382635593, step time: 45.678138732910156ms\r\nStep 3969, loss: 0.008462546393275261, step time: 45.91703414916992ms\r\nStep 3970, loss: 0.00845317728817463, step time: 46.60773277282715ms\r\nStep 3971, loss: 0.008459793403744698, step time: 46.24032974243164ms\r\nStep 3972, loss: 0.008459178730845451, step time: 45.80402374267578ms\r\nStep 3973, loss: 0.008451567962765694, step time: 45.70889472961426ms\r\nStep 3974, loss: 0.008458378724753857, step time: 45.97187042236328ms\r\nStep 3975, loss: 0.008533133193850517, step time: 45.53365707397461ms\r\nStep 3976, loss: 0.008545195683836937, step time: 45.72033882141113ms\r\nStep 3977, loss: 0.008502149023115635, step time: 45.76373100280762ms\r\nStep 3978, loss: 0.008459129370748997, step time: 45.69673538208008ms\r\nStep 3979, loss: 0.008474352769553661, step time: 45.87554931640625ms\r\nStep 3980, loss: 0.008443078026175499, step time: 46.098947525024414ms\r\nStep 3981, loss: 0.008518217131495476, step time: 46.29683494567871ms\r\nStep 3982, loss: 0.008464187383651733, step time: 45.80426216125488ms\r\nStep 3983, loss: 0.008431674912571907, step time: 45.65834999084473ms\r\nStep 3984, loss: 0.008524009957909584, step time: 45.91822624206543ms\r\nStep 3985, loss: 0.00844433531165123, step time: 45.50313949584961ms\r\nStep 3986, loss: 0.008466820232570171, step time: 45.70722579956055ms\r\nStep 3987, loss: 0.008450777269899845, step time: 45.76396942138672ms\r\nStep 3988, loss: 0.00851922295987606, step time: 45.71676254272461ms\r\nStep 3989, loss: 0.00847494974732399, step time: 45.81618309020996ms\r\nStep 3990, loss: 0.008481604047119617, step time: 46.9670295715332ms\r\nStep 3991, loss: 0.008519482798874378, step time: 46.37002944946289ms\r\nStep 3992, loss: 0.008446266874670982, step time: 45.909881591796875ms\r\nStep 3993, loss: 0.008442445658147335, step time: 45.82071304321289ms\r\nStep 3994, loss: 0.00846093986183405, step time: 46.0057258605957ms\r\nStep 3995, loss: 0.008473390713334084, step time: 45.52793502807617ms\r\nStep 3996, loss: 0.008443580009043217, step time: 45.70603370666504ms\r\nStep 3997, loss: 0.008446418680250645, step time: 45.70293426513672ms\r\nStep 3998, loss: 0.008456200361251831, step time: 45.6693172454834ms\r\nStep 3999, loss: 0.008471023291349411, step time: 45.829057693481445ms\r\nStep 4000, loss: 0.00844133272767067, step time: 46.684980392456055ms\r\nStep 4001, loss: 0.008482703007757664, step time: 46.38218879699707ms\r\nStep 4002, loss: 0.008466627448797226, step time: 45.847415924072266ms\r\nStep 4003, loss: 0.00842235516756773, step time: 45.823097229003906ms\r\nStep 4004, loss: 0.008449242450296879, step time: 45.790672302246094ms\r\nStep 4005, loss: 0.008445415645837784, step time: 45.55153846740723ms\r\nStep 4006, loss: 0.008415759541094303, step time: 45.66383361816406ms\r\nStep 4007, loss: 0.008478429168462753, step time: 45.79424858093262ms\r\nStep 4008, loss: 0.008451937697827816, step time: 45.73202133178711ms\r\nStep 4009, loss: 0.008412711322307587, step time: 45.79663276672363ms\r\n",,terminal_output +1240,2441794,"TERMINAL",0,0,"Step 4010, loss: 0.008483024314045906, step time: 46.84615135192871ms\r\nStep 4011, loss: 0.00843682698905468, step time: 46.3712215423584ms\r\nStep 4012, loss: 0.008446993306279182, step time: 45.73702812194824ms\r\nStep 4013, loss: 0.008475031703710556, step time: 45.73631286621094ms\r\nStep 4014, loss: 0.00842110626399517, step time: 45.74847221374512ms\r\nStep 4015, loss: 0.008420821279287338, step time: 45.65691947937012ms\r\nStep 4016, loss: 0.008459506556391716, step time: 46.266794204711914ms\r\nStep 4017, loss: 0.008437545970082283, step time: 45.72463035583496ms\r\nStep 4018, loss: 0.008430776186287403, step time: 45.69435119628906ms\r\nStep 4019, loss: 0.008453627116978168, step time: 45.77779769897461ms\r\nStep 4020, loss: 0.008456462062895298, step time: 46.630859375ms\r\nStep 4021, loss: 0.008526582270860672, step time: 45.983314514160156ms\r\nStep 4022, loss: 0.008467650040984154, step time: 45.59135437011719ms\r\nStep 4023, loss: 0.008435685187578201, step time: 45.81904411315918ms\r\nStep 4024, loss: 0.008451037108898163, step time: 45.720577239990234ms\r\nStep 4025, loss: 0.008452927693724632, step time: 45.74394226074219ms\r\nStep 4026, loss: 0.008437121286988258, step time: 45.7763671875ms\r\nStep 4027, loss: 0.008422316052019596, step time: 45.75371742248535ms\r\nStep 4028, loss: 0.008425910957157612, step time: 45.79353332519531ms\r\nStep 4029, loss: 0.008491609245538712, step time: 45.7911491394043ms\r\nStep 4030, loss: 0.00843554362654686, step time: 47.902822494506836ms\r\nStep 4031, loss: 0.00841281283646822, step time: 46.01144790649414ms\r\nStep 4032, loss: 0.0084983566775918, step time: 45.713186264038086ms\r\nStep 4033, loss: 0.00845967885106802, step time: 45.85719108581543ms\r\nStep 4034, loss: 0.008440903387963772, step time: 45.61281204223633ms\r\nStep 4035, loss: 0.008509837090969086, step time: 45.827388763427734ms\r\nStep 4036, loss: 0.008406526409089565, step time: 45.64046859741211ms\r\nStep 4037, loss: 0.00844931323081255, step time: 45.7310676574707ms\r\nStep 4038, loss: 0.008495360612869263, step time: 45.7921028137207ms\r\nStep 4039, loss: 0.008454415947198868, step time: 45.516252517700195ms\r\nStep 4040, loss: 0.008453428745269775, step time: 46.81730270385742ms\r\nStep 4041, loss: 0.008489004336297512, step time: 45.914649963378906ms\r\nStep 4042, loss: 0.008455067873001099, step time: 45.70651054382324ms\r\nStep 4043, loss: 0.008437193930149078, step time: 45.66597938537598ms\r\nStep 4044, loss: 0.008420382626354694, step time: 45.59326171875ms\r\nStep 4045, loss: 0.008457222953438759, step time: 46.326637268066406ms\r\nStep 4046, loss: 0.008410305716097355, step time: 45.79305648803711ms\r\nStep 4047, loss: 0.008415001444518566, step time: 45.78113555908203ms\r\nStep 4048, loss: 0.008421208709478378, step time: 45.833587646484375ms\r\nStep 4049, loss: 0.008456792682409286, step time: 45.67098617553711ms\r\nStep 4050, loss: 0.00849376805126667, step time: 46.93961143493652ms\r\nStep 4051, loss: 0.008414827287197113, step time: 45.82858085632324ms\r\nStep 4052, loss: 0.00837770663201809, step time: 45.99571228027344ms\r\nStep 4053, loss: 0.008424844592809677, step time: 45.76706886291504ms\r\nStep 4054, loss: 0.008398707024753094, step time: 45.78256607055664ms\r\nStep 4055, loss: 0.00840123649686575, step time: 45.82715034484863ms\r\nStep 4056, loss: 0.008414986543357372, step time: 45.725107192993164ms\r\nStep 4057, loss: 0.008440371602773666, step time: 45.810699462890625ms\r\nStep 4058, loss: 0.008438863791525364, step time: 45.72248458862305ms\r\nStep 4059, loss: 0.008385902270674706, step time: 45.78065872192383ms\r\nStep 4060, loss: 0.008406397886574268, step time: 49.64256286621094ms\r\nStep 4061, loss: 0.0084531269967556, step time: 46.0200309753418ms\r\nStep 4062, loss: 0.00841814000159502, step time: 46.0505485534668ms\r\nStep 4063, loss: 0.008406532928347588, step time: 45.75538635253906ms\r\nStep 4064, loss: 0.008451592177152634, step time: 45.86362838745117ms\r\nStep 4065, loss: 0.008451687172055244, step time: 45.763492584228516ms\r\nStep 4066, loss: 0.0084797702729702, step time: 45.723915100097656ms\r\nStep 4067, loss: 0.00841725803911686, step time: 46.015024185180664ms\r\nStep 4068, loss: 0.008443801663815975, step time: 45.723676681518555ms\r\nStep 4069, loss: 0.008511379361152649, step time: 45.74155807495117ms\r\nStep 4070, loss: 0.008445300161838531, step time: 46.98801040649414ms\r\nStep 4071, loss: 0.008409153670072556, step time: 46.276092529296875ms\r\nStep 4072, loss: 0.008477110415697098, step time: 45.91202735900879ms\r\nStep 4073, loss: 0.00845585111528635, step time: 45.896053314208984ms\r\nStep 4074, loss: 0.008415951393544674, step time: 45.90415954589844ms\r\nStep 4075, loss: 0.008477022871375084, step time: 45.73392868041992ms\r\nStep 4076, loss: 0.00842115469276905, step time: 45.65620422363281ms\r\nStep 4077, loss: 0.00839980784803629, step time: 45.789241790771484ms\r\nStep 4078, loss: 0.008458765223622322, step time: 45.71032524108887ms\r\nStep 4079, loss: 0.008404155261814594, step time: 46.061038970947266ms\r\nStep 4080, loss: 0.008381580002605915, step time: 46.472787857055664ms\r\nStep 4081, loss: 0.008435801602900028, step time: 46.112775802612305ms\r\nStep 4082, loss: 0.00835725013166666, step time: 45.821428298950195ms\r\nStep 4083, loss: 0.008406427688896656, step time: 45.7150936126709ms\r\nStep 4084, loss: 0.008467496372759342, step time: 45.76516151428223ms\r\nStep 4085, loss: 0.008408965542912483, step time: 45.69101333618164ms\r\nStep 4086, loss: 0.008411064743995667, step time: 45.76849937438965ms\r\nStep 4087, loss: 0.008451856672763824, step time: 45.87912559509277ms\r\nStep 4088, loss: 0.008373296819627285, step time: 45.65906524658203ms\r\nStep 4089, loss: 0.008388682268559933, step time: 45.8526611328125ms\r\n",,terminal_output +1241,2444795,"TERMINAL",0,0,"Step 4090, loss: 0.008443075232207775, step time: 46.62895202636719ms\r\nStep 4091, loss: 0.008388672955334187, step time: 46.3862419128418ms\r\nStep 4092, loss: 0.008431360125541687, step time: 45.93157768249512ms\r\nStep 4093, loss: 0.008437390439212322, step time: 45.86195945739746ms\r\nStep 4094, loss: 0.008393511176109314, step time: 45.97663879394531ms\r\nStep 4095, loss: 0.00841523427516222, step time: 45.545101165771484ms\r\nStep 4096, loss: 0.008465360850095749, step time: 45.86029052734375ms\r\nStep 4097, loss: 0.008413632400333881, step time: 45.79877853393555ms\r\nStep 4098, loss: 0.008400053717195988, step time: 45.59135437011719ms\r\nStep 4099, loss: 0.008407005108892918, step time: 46.10872268676758ms\r\nStep 4100, loss: 0.008411080576479435, step time: 46.5543270111084ms\r\nStep 4101, loss: 0.008408543653786182, step time: 46.21291160583496ms\r\nStep 4102, loss: 0.008372554555535316, step time: 45.68815231323242ms\r\nStep 4103, loss: 0.008425683714449406, step time: 45.68362236022949ms\r\nStep 4104, loss: 0.008401704020798206, step time: 45.7763671875ms\r\nStep 4105, loss: 0.008391796611249447, step time: 45.48287391662598ms\r\nStep 4106, loss: 0.0083949975669384, step time: 45.84050178527832ms\r\nStep 4107, loss: 0.008381686173379421, step time: 45.71223258972168ms\r\nStep 4108, loss: 0.008416632190346718, step time: 45.699357986450195ms\r\nStep 4109, loss: 0.008405719883739948, step time: 45.81880569458008ms\r\nStep 4110, loss: 0.008513192646205425, step time: 46.75030708312988ms\r\nStep 4111, loss: 0.008426165208220482, step time: 46.24009132385254ms\r\nStep 4112, loss: 0.008390347473323345, step time: 45.81594467163086ms\r\nStep 4113, loss: 0.008527412079274654, step time: 45.93706130981445ms\r\nStep 4114, loss: 0.008398495614528656, step time: 45.82047462463379ms\r\nStep 4115, loss: 0.008402224630117416, step time: 45.57204246520996ms\r\nStep 4116, loss: 0.008449403569102287, step time: 45.705318450927734ms\r\nStep 4117, loss: 0.008362711407244205, step time: 45.748233795166016ms\r\nStep 4118, loss: 0.008433669805526733, step time: 45.68743705749512ms\r\nStep 4119, loss: 0.008439979515969753, step time: 45.732736587524414ms\r\nStep 4120, loss: 0.00842443760484457, step time: 46.559810638427734ms\r\nStep 4121, loss: 0.008409709669649601, step time: 45.93491554260254ms\r\nStep 4122, loss: 0.008355065248906612, step time: 45.84956169128418ms\r\nStep 4123, loss: 0.008443762548267841, step time: 45.92275619506836ms\r\nStep 4124, loss: 0.008416276425123215, step time: 45.77350616455078ms\r\nStep 4125, loss: 0.008374360390007496, step time: 45.56441307067871ms\r\nStep 4126, loss: 0.008431044407188892, step time: 45.7918643951416ms\r\nStep 4127, loss: 0.00838075764477253, step time: 45.55201530456543ms\r\nStep 4128, loss: 0.008370259776711464, step time: 45.71652412414551ms\r\nStep 4129, loss: 0.008402620442211628, step time: 45.67456245422363ms\r\nStep 4130, loss: 0.008372269570827484, step time: 46.93269729614258ms\r\nStep 4131, loss: 0.008404646068811417, step time: 45.95017433166504ms\r\nStep 4132, loss: 0.008391554467380047, step time: 45.70198059082031ms\r\nStep 4133, loss: 0.008379857055842876, step time: 45.861005783081055ms\r\nStep 4134, loss: 0.008357408456504345, step time: 45.61662673950195ms\r\nStep 4135, loss: 0.008381123654544353, step time: 45.7303524017334ms\r\nStep 4136, loss: 0.008377695456147194, step time: 45.69745063781738ms\r\nStep 4137, loss: 0.008343837223947048, step time: 45.68338394165039ms\r\nStep 4138, loss: 0.008387133479118347, step time: 45.85385322570801ms\r\nStep 4139, loss: 0.008382759056985378, step time: 45.855045318603516ms\r\n",,terminal_output +1242,2446796,"TERMINAL",0,0,"Step 4140, loss: 0.00837291032075882, step time: 46.95630073547363ms\r\nStep 4141, loss: 0.008417944423854351, step time: 46.08654975891113ms\r\nStep 4142, loss: 0.00835748016834259, step time: 45.688629150390625ms\r\nStep 4143, loss: 0.008407499641180038, step time: 45.78423500061035ms\r\nStep 4144, loss: 0.00845042522996664, step time: 45.5322265625ms\r\nStep 4145, loss: 0.008370763622224331, step time: 45.64356803894043ms\r\nStep 4146, loss: 0.008368394337594509, step time: 45.81618309020996ms\r\nStep 4147, loss: 0.00841897539794445, step time: 45.64547538757324ms\r\nStep 4148, loss: 0.008383255451917648, step time: 45.93205451965332ms\r\nStep 4149, loss: 0.008364259265363216, step time: 45.746564865112305ms\r\nStep 4150, loss: 0.008398409001529217, step time: 49.82590675354004ms\r\nStep 4151, loss: 0.008405894972383976, step time: 45.95470428466797ms\r\nStep 4152, loss: 0.008382637985050678, step time: 45.88651657104492ms\r\nStep 4153, loss: 0.008367599919438362, step time: 45.717716217041016ms\r\nStep 4154, loss: 0.008361867628991604, step time: 45.71890830993652ms\r\nStep 4155, loss: 0.00837318692356348, step time: 45.73631286621094ms\r\nStep 4156, loss: 0.008348003029823303, step time: 45.641422271728516ms\r\nStep 4157, loss: 0.008359684608876705, step time: 47.32823371887207ms\r\nStep 4158, loss: 0.008394339121878147, step time: 46.61202430725098ms\r\nStep 4159, loss: 0.008382235653698444, step time: 45.739173889160156ms\r\nStep 4160, loss: 0.008318335749208927, step time: 47.34611511230469ms\r\nStep 4161, loss: 0.008361286483705044, step time: 47.31559753417969ms\r\nStep 4162, loss: 0.008383442647755146, step time: 47.43218421936035ms\r\nStep 4163, loss: 0.008391222916543484, step time: 47.202348709106445ms\r\nStep 4164, loss: 0.00837340671569109, step time: 47.063589096069336ms\r\nStep 4165, loss: 0.008422823622822762, step time: 46.44274711608887ms\r\nStep 4166, loss: 0.008384037762880325, step time: 46.34594917297363ms\r\nStep 4167, loss: 0.008467591367661953, step time: 45.78876495361328ms\r\nStep 4168, loss: 0.008389651775360107, step time: 45.77136039733887ms\r\nStep 4169, loss: 0.008412902243435383, step time: 45.725345611572266ms\r\n",,terminal_output +1243,2449795,"TERMINAL",0,0,"Step 4170, loss: 0.008443505503237247, step time: 47.339439392089844ms\r\nStep 4171, loss: 0.008400481194257736, step time: 46.35977745056152ms\r\nStep 4172, loss: 0.008386854082345963, step time: 45.75824737548828ms\r\nStep 4173, loss: 0.008419984951615334, step time: 45.830726623535156ms\r\nStep 4174, loss: 0.008360859006643295, step time: 45.74942588806152ms\r\nStep 4175, loss: 0.008397456258535385, step time: 45.56727409362793ms\r\nStep 4176, loss: 0.008382638916373253, step time: 45.80259323120117ms\r\nStep 4177, loss: 0.008425373584032059, step time: 45.697927474975586ms\r\nStep 4178, loss: 0.008404160849750042, step time: 45.71819305419922ms\r\nStep 4179, loss: 0.008342485874891281, step time: 45.777320861816406ms\r\nStep 4180, loss: 0.008347156457602978, step time: 46.81706428527832ms\r\nStep 4181, loss: 0.008417569100856781, step time: 46.062469482421875ms\r\nStep 4182, loss: 0.008383112959563732, step time: 45.68910598754883ms\r\nStep 4183, loss: 0.008360795676708221, step time: 46.13447189331055ms\r\nStep 4184, loss: 0.008375066332519054, step time: 45.80998420715332ms\r\nStep 4185, loss: 0.00841490924358368, step time: 45.87531089782715ms\r\nStep 4186, loss: 0.00841936469078064, step time: 46.09537124633789ms\r\nStep 4187, loss: 0.008412905968725681, step time: 45.69697380065918ms\r\nStep 4188, loss: 0.00840411800891161, step time: 45.6392765045166ms\r\nStep 4189, loss: 0.008413572795689106, step time: 45.839786529541016ms\r\nStep 4190, loss: 0.008370406925678253, step time: 47.05405235290527ms\r\nStep 4191, loss: 0.008418424054980278, step time: 47.106266021728516ms\r\nStep 4192, loss: 0.008429489098489285, step time: 45.769691467285156ms\r\nStep 4193, loss: 0.008466033264994621, step time: 45.90106010437012ms\r\nStep 4194, loss: 0.008397011086344719, step time: 45.87721824645996ms\r\nStep 4195, loss: 0.008399232290685177, step time: 45.56894302368164ms\r\nStep 4196, loss: 0.008408807218074799, step time: 45.890092849731445ms\r\nStep 4197, loss: 0.008400704711675644, step time: 45.62568664550781ms\r\nStep 4198, loss: 0.008390873670578003, step time: 45.713186264038086ms\r\nStep 4199, loss: 0.008413477800786495, step time: 45.6693172454834ms\r\nStep 4200, loss: 0.00835332740098238, step time: 48.803091049194336ms\r\nStep 4201, loss: 0.008393332362174988, step time: 46.071767807006836ms\r\nStep 4202, loss: 0.008400673978030682, step time: 45.660972595214844ms\r\nStep 4203, loss: 0.00836537592113018, step time: 46.16260528564453ms\r\nStep 4204, loss: 0.00835892092436552, step time: 45.80330848693848ms\r\nStep 4205, loss: 0.008415985852479935, step time: 45.7606315612793ms\r\nStep 4206, loss: 0.008406903594732285, step time: 46.04911804199219ms\r\nStep 4207, loss: 0.008371268399059772, step time: 45.7613468170166ms\r\nStep 4208, loss: 0.008387361653149128, step time: 45.94683647155762ms\r\nStep 4209, loss: 0.008361191488802433, step time: 45.798301696777344ms\r\nStep 4210, loss: 0.008378888480365276, step time: 50.11606216430664ms\r\nStep 4211, loss: 0.00838756188750267, step time: 46.20647430419922ms\r\nStep 4212, loss: 0.008358423598110676, step time: 45.79663276672363ms\r\nStep 4213, loss: 0.008368153125047684, step time: 45.86434364318848ms\r\nStep 4214, loss: 0.008382860571146011, step time: 45.7155704498291ms\r\nStep 4215, loss: 0.008350517600774765, step time: 45.72010040283203ms\r\nStep 4216, loss: 0.008396629244089127, step time: 45.84097862243652ms\r\nStep 4217, loss: 0.0083845816552639, step time: 45.67885398864746ms\r\nStep 4218, loss: 0.008389059454202652, step time: 45.7913875579834ms\r\nStep 4219, loss: 0.008353976532816887, step time: 45.6845760345459ms\r\n",,terminal_output +1244,2451805,"TERMINAL",0,0,"Step 4220, loss: 0.00837311614304781, step time: 46.9815731048584ms\r\nStep 4221, loss: 0.008387284353375435, step time: 45.9592342376709ms\r\nStep 4222, loss: 0.008388891816139221, step time: 45.858144760131836ms\r\nStep 4223, loss: 0.008414295502007008, step time: 45.77016830444336ms\r\nStep 4224, loss: 0.008333162404596806, step time: 45.69268226623535ms\r\nStep 4225, loss: 0.00835554488003254, step time: 45.73631286621094ms\r\nStep 4226, loss: 0.008405805565416813, step time: 45.72582244873047ms\r\nStep 4227, loss: 0.008364127017557621, step time: 45.62234878540039ms\r\nStep 4228, loss: 0.008352535776793957, step time: 45.7303524017334ms\r\nStep 4229, loss: 0.008349188603460789, step time: 45.6387996673584ms\r\nStep 4230, loss: 0.008367914706468582, step time: 46.700477600097656ms\r\nStep 4231, loss: 0.008353006094694138, step time: 45.83740234375ms\r\nStep 4232, loss: 0.008351081050932407, step time: 46.06747627258301ms\r\nStep 4233, loss: 0.008337650448083878, step time: 45.71533203125ms\r\nStep 4234, loss: 0.008387493900954723, step time: 45.66192626953125ms\r\nStep 4235, loss: 0.008347444236278534, step time: 46.01407051086426ms\r\nStep 4236, loss: 0.008325021713972092, step time: 45.75824737548828ms\r\nStep 4237, loss: 0.008348878473043442, step time: 45.799970626831055ms\r\nStep 4238, loss: 0.008349158801138401, step time: 45.79520225524902ms\r\nStep 4239, loss: 0.008417819626629353, step time: 46.037912368774414ms\r\nStep 4240, loss: 0.008395222015678883, step time: 46.71144485473633ms\r\nStep 4241, loss: 0.008375182747840881, step time: 46.0362434387207ms\r\nStep 4242, loss: 0.00838635303080082, step time: 45.83907127380371ms\r\nStep 4243, loss: 0.008352506905794144, step time: 45.86338996887207ms\r\nStep 4244, loss: 0.008348081260919571, step time: 45.69077491760254ms\r\nStep 4245, loss: 0.008370992727577686, step time: 46.18573188781738ms\r\nStep 4246, loss: 0.008397385478019714, step time: 45.78447341918945ms\r\nStep 4247, loss: 0.008360297419130802, step time: 45.85099220275879ms\r\nStep 4248, loss: 0.00833934172987938, step time: 45.76683044433594ms\r\nStep 4249, loss: 0.00834436435252428, step time: 45.78709602355957ms\r\n",,terminal_output +1245,2453796,"TERMINAL",0,0,"Step 4250, loss: 0.008364925161004066, step time: 46.84162139892578ms\r\nStep 4251, loss: 0.008342242799699306, step time: 226.07064247131348ms\r\nStep 4252, loss: 0.008348156698048115, step time: 46.93484306335449ms\r\nStep 4253, loss: 0.008395964279770851, step time: 46.48590087890625ms\r\nStep 4254, loss: 0.00833403691649437, step time: 45.9592342376709ms\r\nStep 4255, loss: 0.008305193856358528, step time: 45.803070068359375ms\r\nStep 4256, loss: 0.008358427323400974, step time: 45.809030532836914ms\r\nStep 4257, loss: 0.008357131853699684, step time: 45.88675498962402ms\r\nStep 4258, loss: 0.008375694043934345, step time: 45.79877853393555ms\r\nStep 4259, loss: 0.00834130123257637, step time: 46.33831977844238ms\r\nStep 4260, loss: 0.00833204761147499, step time: 46.64134979248047ms\r\nStep 4261, loss: 0.008378556929528713, step time: 46.14424705505371ms\r\nStep 4262, loss: 0.008352917619049549, step time: 45.76230049133301ms\r\nStep 4263, loss: 0.008336193859577179, step time: 45.92108726501465ms\r\nStep 4264, loss: 0.008353031240403652, step time: 45.75753211975098ms\r\nStep 4265, loss: 0.008347378112375736, step time: 45.74084281921387ms\r\nStep 4266, loss: 0.008368819020688534, step time: 45.716047286987305ms\r\nStep 4267, loss: 0.008335748687386513, step time: 45.6387996673584ms\r\nStep 4268, loss: 0.008377911522984505, step time: 45.74847221374512ms\r\nStep 4269, loss: 0.008352108299732208, step time: 45.62187194824219ms\r\nStep 4270, loss: 0.008319037966430187, step time: 49.141883850097656ms\r\nStep 4271, loss: 0.008396881632506847, step time: 46.1421012878418ms\r\nStep 4272, loss: 0.008354942314326763, step time: 45.77469825744629ms\r\nStep 4273, loss: 0.008345049805939198, step time: 45.91941833496094ms\r\nStep 4274, loss: 0.008376091718673706, step time: 45.80879211425781ms\r\nStep 4275, loss: 0.008349561132490635, step time: 45.74704170227051ms\r\nStep 4276, loss: 0.008365473710000515, step time: 45.75991630554199ms\r\nStep 4277, loss: 0.008340958505868912, step time: 45.91846466064453ms\r\nStep 4278, loss: 0.00832981988787651, step time: 45.87388038635254ms\r\nStep 4279, loss: 0.008361908607184887, step time: 45.777082443237305ms\r\n",,terminal_output +1246,2458796,"TERMINAL",0,0,"Step 4280, loss: 0.00836264155805111, step time: 49.78489875793457ms\r\nStep 4281, loss: 0.008372473530471325, step time: 45.99738121032715ms\r\nStep 4282, loss: 0.008357123471796513, step time: 45.77136039733887ms\r\nStep 4283, loss: 0.008315890096127987, step time: 45.74322700500488ms\r\nStep 4284, loss: 0.00834420882165432, step time: 45.67122459411621ms\r\nStep 4285, loss: 0.008355758152902126, step time: 45.74131965637207ms\r\nStep 4286, loss: 0.008328971453011036, step time: 45.59779167175293ms\r\nStep 4287, loss: 0.008292216807603836, step time: 45.560598373413086ms\r\nStep 4288, loss: 0.00836986768990755, step time: 45.6850528717041ms\r\nStep 4289, loss: 0.008281489834189415, step time: 45.59946060180664ms\r\nStep 4290, loss: 0.008292965590953827, step time: 46.788930892944336ms\r\nStep 4291, loss: 0.008312436752021313, step time: 46.019554138183594ms\r\nStep 4292, loss: 0.00832502543926239, step time: 45.781850814819336ms\r\nStep 4293, loss: 0.008289303630590439, step time: 45.71890830993652ms\r\nStep 4294, loss: 0.008268414996564388, step time: 45.55869102478027ms\r\nStep 4295, loss: 0.008309636265039444, step time: 45.71533203125ms\r\nStep 4296, loss: 0.008311999961733818, step time: 45.69411277770996ms\r\nStep 4297, loss: 0.008313881233334541, step time: 45.5780029296875ms\r\nStep 4298, loss: 0.008280264213681221, step time: 45.74298858642578ms\r\nStep 4299, loss: 0.008290344849228859, step time: 45.53031921386719ms\r\nStep 4300, loss: 0.008304384537041187, step time: 47.12939262390137ms\r\nStep 4301, loss: 0.00830105971544981, step time: 46.18048667907715ms\r\nStep 4302, loss: 0.008390226401388645, step time: 45.96138000488281ms\r\nStep 4303, loss: 0.00832542683929205, step time: 45.912981033325195ms\r\nStep 4304, loss: 0.008287426084280014, step time: 45.777082443237305ms\r\nStep 4305, loss: 0.008340970613062382, step time: 45.87864875793457ms\r\nStep 4306, loss: 0.008273730985820293, step time: 45.763254165649414ms\r\nStep 4307, loss: 0.008290478028357029, step time: 45.75228691101074ms\r\nStep 4308, loss: 0.008304065093398094, step time: 45.72248458862305ms\r\nStep 4309, loss: 0.008280899375677109, step time: 45.82023620605469ms\r\nStep 4310, loss: 0.008268134668469429, step time: 46.6771125793457ms\r\nStep 4311, loss: 0.008276565000414848, step time: 45.989990234375ms\r\nStep 4312, loss: 0.008280403912067413, step time: 45.91655731201172ms\r\nStep 4313, loss: 0.008308548480272293, step time: 45.766592025756836ms\r\nStep 4314, loss: 0.008273500017821789, step time: 45.686960220336914ms\r\nStep 4315, loss: 0.008275256492197514, step time: 45.69053649902344ms\r\nStep 4316, loss: 0.008319590240716934, step time: 45.6690788269043ms\r\nStep 4317, loss: 0.008253159932792187, step time: 45.8369255065918ms\r\nStep 4318, loss: 0.008283888921141624, step time: 45.62997817993164ms\r\nStep 4319, loss: 0.008298397064208984, step time: 45.61591148376465ms\r\nStep 4320, loss: 0.008309613913297653, step time: 46.75483703613281ms\r\nStep 4321, loss: 0.008329952135682106, step time: 46.123504638671875ms\r\nStep 4322, loss: 0.008272289298474789, step time: 45.85146903991699ms\r\nStep 4323, loss: 0.008277126587927341, step time: 45.76230049133301ms\r\nStep 4324, loss: 0.008329280652105808, step time: 45.79019546508789ms\r\nStep 4325, loss: 0.008294823579490185, step time: 45.66168785095215ms\r\nStep 4326, loss: 0.008336573839187622, step time: 45.63760757446289ms\r\nStep 4327, loss: 0.008304907009005547, step time: 45.81737518310547ms\r\nStep 4328, loss: 0.008283505216240883, step time: 45.597076416015625ms\r\nStep 4329, loss: 0.008298886939883232, step time: 45.75324058532715ms\r\nStep 4330, loss: 0.008339124731719494, step time: 46.77534103393555ms\r\nStep 4331, loss: 0.008319302462041378, step time: 46.27227783203125ms\r\nStep 4332, loss: 0.008298799395561218, step time: 45.877695083618164ms\r\nStep 4333, loss: 0.00830636266618967, step time: 45.6540584564209ms\r\nStep 4334, loss: 0.008276374079287052, step time: 45.81880569458008ms\r\nStep 4335, loss: 0.00825782585889101, step time: 45.61495780944824ms\r\nStep 4336, loss: 0.00829948391765356, step time: 45.69077491760254ms\r\nStep 4337, loss: 0.008297285065054893, step time: 45.739173889160156ms\r\nStep 4338, loss: 0.008284660056233406, step time: 45.7003116607666ms\r\nStep 4339, loss: 0.008298688568174839, step time: 45.953989028930664ms\r\nStep 4340, loss: 0.008313450030982494, step time: 46.776771545410156ms\r\nStep 4341, loss: 0.00835890881717205, step time: 46.2493896484375ms\r\nStep 4342, loss: 0.008256513625383377, step time: 45.73822021484375ms\r\nStep 4343, loss: 0.008246418088674545, step time: 46.175479888916016ms\r\nStep 4344, loss: 0.00828347634524107, step time: 45.97616195678711ms\r\nStep 4345, loss: 0.008253566920757294, step time: 45.564889907836914ms\r\nStep 4346, loss: 0.008271786384284496, step time: 45.72892189025879ms\r\nStep 4347, loss: 0.008347008377313614, step time: 45.623064041137695ms\r\nStep 4348, loss: 0.008337054401636124, step time: 45.599937438964844ms\r\nStep 4349, loss: 0.00827507209032774, step time: 45.76873779296875ms\r\nStep 4350, loss: 0.008347594179213047, step time: 46.5998649597168ms\r\nStep 4351, loss: 0.008265592157840729, step time: 46.2489128112793ms\r\nStep 4352, loss: 0.008295352570712566, step time: 45.740604400634766ms\r\nStep 4353, loss: 0.00829839427024126, step time: 45.907020568847656ms\r\nStep 4354, loss: 0.008250647224485874, step time: 45.87292671203613ms\r\nStep 4355, loss: 0.008296617306768894, step time: 45.66526412963867ms\r\nStep 4356, loss: 0.008347263559699059, step time: 45.87984085083008ms\r\nStep 4357, loss: 0.008289898745715618, step time: 46.02408409118652ms\r\nStep 4358, loss: 0.008295061066746712, step time: 45.71890830993652ms\r\nStep 4359, loss: 0.008343348279595375, step time: 45.691490173339844ms\r\n",,terminal_output +1247,2463799,"TERMINAL",0,0,"Step 4360, loss: 0.008321193046867847, step time: 49.56388473510742ms\r\nStep 4361, loss: 0.008291823789477348, step time: 46.10013961791992ms\r\nStep 4362, loss: 0.008323883637785912, step time: 45.87078094482422ms\r\nStep 4363, loss: 0.008307693526148796, step time: 45.79877853393555ms\r\nStep 4364, loss: 0.008281223475933075, step time: 45.818328857421875ms\r\nStep 4365, loss: 0.008283342234790325, step time: 45.69554328918457ms\r\nStep 4366, loss: 0.008284730836749077, step time: 45.72343826293945ms\r\nStep 4367, loss: 0.008273905143141747, step time: 45.67861557006836ms\r\nStep 4368, loss: 0.008294680155813694, step time: 45.83740234375ms\r\nStep 4369, loss: 0.008273201063275337, step time: 45.76873779296875ms\r\nStep 4370, loss: 0.00834557693451643, step time: 49.89027976989746ms\r\nStep 4371, loss: 0.00828915648162365, step time: 46.181440353393555ms\r\nStep 4372, loss: 0.008297459222376347, step time: 45.76396942138672ms\r\nStep 4373, loss: 0.008324231021106243, step time: 45.81141471862793ms\r\nStep 4374, loss: 0.008290466852486134, step time: 45.630455017089844ms\r\nStep 4375, loss: 0.008283425122499466, step time: 45.66526412963867ms\r\nStep 4376, loss: 0.008258708752691746, step time: 45.78661918640137ms\r\nStep 4377, loss: 0.008246512152254581, step time: 45.675039291381836ms\r\nStep 4378, loss: 0.00828587543219328, step time: 45.653343200683594ms\r\nStep 4379, loss: 0.00828445702791214, step time: 45.70746421813965ms\r\nStep 4380, loss: 0.008274230174720287, step time: 47.43838310241699ms\r\nStep 4381, loss: 0.008291225880384445, step time: 47.414302825927734ms\r\nStep 4382, loss: 0.008288492448627949, step time: 47.10793495178223ms\r\nStep 4383, loss: 0.008318164385855198, step time: 47.00517654418945ms\r\nStep 4384, loss: 0.008261526003479958, step time: 46.613216400146484ms\r\nStep 4385, loss: 0.008269871585071087, step time: 46.24605178833008ms\r\nStep 4386, loss: 0.008280348032712936, step time: 46.010732650756836ms\r\nStep 4387, loss: 0.008316379971802235, step time: 45.74990272521973ms\r\nStep 4388, loss: 0.008279634639620781, step time: 45.96257209777832ms\r\nStep 4389, loss: 0.008287153206765652, step time: 46.312570571899414ms\r\nStep 4390, loss: 0.008310720324516296, step time: 47.220468521118164ms\r\nStep 4391, loss: 0.00829738937318325, step time: 46.76318168640137ms\r\nStep 4392, loss: 0.008316590450704098, step time: 46.460628509521484ms\r\nStep 4393, loss: 0.008294056169688702, step time: 46.294212341308594ms\r\nStep 4394, loss: 0.00833025760948658, step time: 46.18978500366211ms\r\nStep 4395, loss: 0.00825047679245472, step time: 46.27728462219238ms\r\nStep 4396, loss: 0.008331142365932465, step time: 46.308279037475586ms\r\nStep 4397, loss: 0.008225577883422375, step time: 45.935630798339844ms\r\nStep 4398, loss: 0.008282152004539967, step time: 45.90415954589844ms\r\nStep 4399, loss: 0.008292915299534798, step time: 45.72558403015137ms\r\nStep 4400, loss: 0.00822815764695406, step time: 46.567440032958984ms\r\nStep 4401, loss: 0.00823366641998291, step time: 45.93038558959961ms\r\nStep 4402, loss: 0.008273666724562645, step time: 45.67217826843262ms\r\nStep 4403, loss: 0.008278989233076572, step time: 45.71104049682617ms\r\nStep 4404, loss: 0.008245471864938736, step time: 45.59469223022461ms\r\nStep 4405, loss: 0.008312337100505829, step time: 45.52435874938965ms\r\nStep 4406, loss: 0.008282255381345749, step time: 45.57085037231445ms\r\nStep 4407, loss: 0.008297743275761604, step time: 45.58897018432617ms\r\nStep 4408, loss: 0.00825827568769455, step time: 45.65072059631348ms\r\nStep 4409, loss: 0.008292202837765217, step time: 45.805931091308594ms\r\nStep 4410, loss: 0.008293920196592808, step time: 45.71270942687988ms\r\nStep 4411, loss: 0.008313720114529133, step time: 45.70174217224121ms\r\nStep 4412, loss: 0.00832018069922924, step time: 45.542001724243164ms\r\nStep 4413, loss: 0.008289511315524578, step time: 45.702219009399414ms\r\nStep 4414, loss: 0.008301472291350365, step time: 45.75514793395996ms\r\nStep 4415, loss: 0.008291930891573429, step time: 45.82405090332031ms\r\nStep 4416, loss: 0.008288471028208733, step time: 45.88794708251953ms\r\nStep 4417, loss: 0.008346770890057087, step time: 45.649051666259766ms\r\nStep 4418, loss: 0.008263771422207355, step time: 45.82834243774414ms\r\nStep 4419, loss: 0.00827215425670147, step time: 45.83740234375ms\r\nStep 4420, loss: 0.008284359239041805, step time: 47.3630428314209ms\r\nStep 4421, loss: 0.008253148756921291, step time: 46.83256149291992ms\r\nStep 4422, loss: 0.00828571803867817, step time: 46.756744384765625ms\r\nStep 4423, loss: 0.00826088897883892, step time: 46.633243560791016ms\r\nStep 4424, loss: 0.00822892040014267, step time: 46.20790481567383ms\r\nStep 4425, loss: 0.008287555538117886, step time: 45.667409896850586ms\r\nStep 4426, loss: 0.008294926024973392, step time: 45.71819305419922ms\r\nStep 4427, loss: 0.008291912265121937, step time: 45.71819305419922ms\r\nStep 4428, loss: 0.008234524168074131, step time: 45.74298858642578ms\r\nStep 4429, loss: 0.008241305127739906, step time: 45.70317268371582ms\r\nStep 4430, loss: 0.00824672169983387, step time: 46.97585105895996ms\r\nStep 4431, loss: 0.008246898651123047, step time: 46.78845405578613ms\r\nStep 4432, loss: 0.00826555211097002, step time: 45.96710205078125ms\r\nStep 4433, loss: 0.008282179944217205, step time: 45.653581619262695ms\r\nStep 4434, loss: 0.008263852447271347, step time: 45.98379135131836ms\r\nStep 4435, loss: 0.008277875371277332, step time: 45.615196228027344ms\r\nStep 4436, loss: 0.008286303840577602, step time: 45.65739631652832ms\r\nStep 4437, loss: 0.00831605214625597, step time: 45.80068588256836ms\r\nStep 4438, loss: 0.008335513062775135, step time: 45.58134078979492ms\r\nStep 4439, loss: 0.00825597532093525, step time: 45.847415924072266ms\r\n",,terminal_output +1248,2468795,"TERMINAL",0,0,"Step 4440, loss: 0.008241838775575161, step time: 46.71144485473633ms\r\nStep 4441, loss: 0.008274359628558159, step time: 46.189308166503906ms\r\nStep 4442, loss: 0.008261699229478836, step time: 45.84383964538574ms\r\nStep 4443, loss: 0.008289072662591934, step time: 45.71938514709473ms\r\nStep 4444, loss: 0.008246858604252338, step time: 45.93944549560547ms\r\nStep 4445, loss: 0.008249073289334774, step time: 45.62234878540039ms\r\nStep 4446, loss: 0.00828802864998579, step time: 45.758724212646484ms\r\nStep 4447, loss: 0.008242107927799225, step time: 45.81594467163086ms\r\nStep 4448, loss: 0.00825455877929926, step time: 45.575857162475586ms\r\nStep 4449, loss: 0.00821972917765379, step time: 45.80974578857422ms\r\nStep 4450, loss: 0.008222079835832119, step time: 50.24218559265137ms\r\nStep 4451, loss: 0.008257465437054634, step time: 46.36979103088379ms\r\nStep 4452, loss: 0.008214766159653664, step time: 45.78685760498047ms\r\nStep 4453, loss: 0.008207982406020164, step time: 45.675039291381836ms\r\nStep 4454, loss: 0.008224181830883026, step time: 45.761823654174805ms\r\nStep 4455, loss: 0.008260417729616165, step time: 45.63784599304199ms\r\nStep 4456, loss: 0.008307882584631443, step time: 45.76444625854492ms\r\nStep 4457, loss: 0.008256337605416775, step time: 45.75157165527344ms\r\nStep 4458, loss: 0.008276896551251411, step time: 45.684814453125ms\r\nStep 4459, loss: 0.008260766044259071, step time: 45.865535736083984ms\r\nStep 4460, loss: 0.008252646774053574, step time: 46.74124717712402ms\r\nStep 4461, loss: 0.008261261507868767, step time: 46.3411808013916ms\r\nStep 4462, loss: 0.008268196135759354, step time: 45.75848579406738ms\r\nStep 4463, loss: 0.008300350047647953, step time: 45.78590393066406ms\r\nStep 4464, loss: 0.008261164650321007, step time: 45.68791389465332ms\r\nStep 4465, loss: 0.008261524140834808, step time: 45.75967788696289ms\r\nStep 4466, loss: 0.008322153240442276, step time: 45.973777770996094ms\r\nStep 4467, loss: 0.008223529905080795, step time: 45.88794708251953ms\r\nStep 4468, loss: 0.008272549137473106, step time: 45.8827018737793ms\r\nStep 4469, loss: 0.008277605287730694, step time: 46.186208724975586ms\r\nStep 4470, loss: 0.008225071243941784, step time: 49.73745346069336ms\r\nStep 4471, loss: 0.008229751139879227, step time: 46.21291160583496ms\r\nStep 4472, loss: 0.008248280733823776, step time: 45.78137397766113ms\r\nStep 4473, loss: 0.008227353915572166, step time: 46.03743553161621ms\r\nStep 4474, loss: 0.008225844241678715, step time: 45.868635177612305ms\r\nStep 4475, loss: 0.008253424428403378, step time: 45.7758903503418ms\r\nStep 4476, loss: 0.008242164738476276, step time: 45.819997787475586ms\r\nStep 4477, loss: 0.008210293017327785, step time: 45.638322830200195ms\r\nStep 4478, loss: 0.008242049254477024, step time: 45.935630798339844ms\r\nStep 4479, loss: 0.00823669508099556, step time: 45.85671424865723ms\r\nStep 4480, loss: 0.008227648213505745, step time: 46.955108642578125ms\r\nStep 4481, loss: 0.008212040178477764, step time: 46.01645469665527ms\r\nStep 4482, loss: 0.008199471049010754, step time: 45.81022262573242ms\r\nStep 4483, loss: 0.008202957920730114, step time: 45.84455490112305ms\r\nStep 4484, loss: 0.008221344090998173, step time: 45.578956604003906ms\r\nStep 4485, loss: 0.008205671794712543, step time: 45.8066463470459ms\r\nStep 4486, loss: 0.008228403516113758, step time: 45.86505889892578ms\r\nStep 4487, loss: 0.00825341697782278, step time: 45.82858085632324ms\r\nStep 4488, loss: 0.008258872665464878, step time: 45.9895133972168ms\r\nStep 4489, loss: 0.008209520019590855, step time: 45.89486122131348ms\r\nStep 4490, loss: 0.008221646770834923, step time: 46.97251319885254ms\r\nStep 4491, loss: 0.00825432874262333, step time: 46.02622985839844ms\r\nStep 4492, loss: 0.008260363712906837, step time: 45.902252197265625ms\r\nStep 4493, loss: 0.008217889815568924, step time: 45.747995376586914ms\r\nStep 4494, loss: 0.008263275027275085, step time: 45.740604400634766ms\r\nStep 4495, loss: 0.00827428326010704, step time: 45.84193229675293ms\r\nStep 4496, loss: 0.00821127649396658, step time: 45.66502571105957ms\r\nStep 4497, loss: 0.008219110779464245, step time: 45.87674140930176ms\r\nStep 4498, loss: 0.008269242011010647, step time: 45.93205451965332ms\r\nStep 4499, loss: 0.008232690393924713, step time: 45.723915100097656ms\r\nStep 4500, loss: 0.008226970210671425, step time: 46.91743850708008ms\r\nStep 4501, loss: 0.008241552859544754, step time: 46.23222351074219ms\r\nStep 4502, loss: 0.008270195685327053, step time: 46.03862762451172ms\r\nStep 4503, loss: 0.008262492716312408, step time: 45.989036560058594ms\r\nStep 4504, loss: 0.00820944458246231, step time: 45.95589637756348ms\r\nStep 4505, loss: 0.008195847272872925, step time: 45.82405090332031ms\r\nStep 4506, loss: 0.008238429203629494, step time: 45.78733444213867ms\r\nStep 4507, loss: 0.008193112909793854, step time: 45.81880569458008ms\r\nStep 4508, loss: 0.00821045320481062, step time: 45.801639556884766ms\r\nStep 4509, loss: 0.0082023274153471, step time: 45.70913314819336ms\r\nStep 4510, loss: 0.008215351030230522, step time: 46.515703201293945ms\r\nStep 4511, loss: 0.008258567191660404, step time: 46.15592956542969ms\r\nStep 4512, loss: 0.008249005302786827, step time: 45.84336280822754ms\r\nStep 4513, loss: 0.008210296742618084, step time: 45.73345184326172ms\r\nStep 4514, loss: 0.008248205296695232, step time: 45.92609405517578ms\r\nStep 4515, loss: 0.008298230357468128, step time: 45.548439025878906ms\r\nStep 4516, loss: 0.008255759254097939, step time: 45.6697940826416ms\r\nStep 4517, loss: 0.008244022727012634, step time: 45.827627182006836ms\r\nStep 4518, loss: 0.008233195170760155, step time: 45.653581619262695ms\r\nStep 4519, loss: 0.008306682109832764, step time: 45.85146903991699ms\r\n",,terminal_output +1249,2470796,"TERMINAL",0,0,"Step 4520, loss: 0.0082369614392519, step time: 46.73004150390625ms\r\nStep 4521, loss: 0.008256863802671432, step time: 46.27227783203125ms\r\nStep 4522, loss: 0.008254727348685265, step time: 45.784711837768555ms\r\nStep 4523, loss: 0.008276913315057755, step time: 45.712947845458984ms\r\nStep 4524, loss: 0.008210713043808937, step time: 45.80402374267578ms\r\nStep 4525, loss: 0.008249659091234207, step time: 45.55940628051758ms\r\nStep 4526, loss: 0.008227094076573849, step time: 45.89056968688965ms\r\nStep 4527, loss: 0.00824570283293724, step time: 45.7003116607666ms\r\nStep 4528, loss: 0.008194739930331707, step time: 45.65596580505371ms\r\nStep 4529, loss: 0.008201316930353642, step time: 45.79949378967285ms\r\nStep 4530, loss: 0.008237896487116814, step time: 46.87142372131348ms\r\nStep 4531, loss: 0.008243614807724953, step time: 46.15902900695801ms\r\nStep 4532, loss: 0.008172602392733097, step time: 45.69554328918457ms\r\nStep 4533, loss: 0.008179700933396816, step time: 45.728445053100586ms\r\nStep 4534, loss: 0.008170508779585361, step time: 45.68982124328613ms\r\nStep 4535, loss: 0.008221356198191643, step time: 45.62711715698242ms\r\nStep 4536, loss: 0.008191208355128765, step time: 46.486616134643555ms\r\nStep 4537, loss: 0.00821248721331358, step time: 46.94795608520508ms\r\nStep 4538, loss: 0.008218850009143353, step time: 50.121307373046875ms\r\nStep 4539, loss: 0.008221234194934368, step time: 47.42765426635742ms\r\nStep 4540, loss: 0.008208366110920906, step time: 47.40428924560547ms\r\nStep 4541, loss: 0.008226766251027584, step time: 46.209096908569336ms\r\nStep 4542, loss: 0.008270570077002048, step time: 46.175479888916016ms\r\nStep 4543, loss: 0.008259106427431107, step time: 45.81785202026367ms\r\nStep 4544, loss: 0.008216642774641514, step time: 45.80283164978027ms\r\nStep 4545, loss: 0.008260680362582207, step time: 47.629356384277344ms\r\nStep 4546, loss: 0.008201994933187962, step time: 45.757293701171875ms\r\nStep 4547, loss: 0.00824666302651167, step time: 45.91512680053711ms\r\nStep 4548, loss: 0.008222471922636032, step time: 45.78113555908203ms\r\nStep 4549, loss: 0.008237321861088276, step time: 45.784711837768555ms\r\n",,terminal_output +1250,2473796,"TERMINAL",0,0,"Step 4550, loss: 0.008238467387855053, step time: 46.82183265686035ms\r\nStep 4551, loss: 0.008251667022705078, step time: 46.080589294433594ms\r\nStep 4552, loss: 0.008204340003430843, step time: 45.92108726501465ms\r\nStep 4553, loss: 0.008239942602813244, step time: 45.58873176574707ms\r\nStep 4554, loss: 0.00822579674422741, step time: 46.12374305725098ms\r\nStep 4555, loss: 0.008231661282479763, step time: 45.67670822143555ms\r\nStep 4556, loss: 0.008193300105631351, step time: 45.75705528259277ms\r\nStep 4557, loss: 0.008216341957449913, step time: 45.94826698303223ms\r\nStep 4558, loss: 0.008260469883680344, step time: 45.523643493652344ms\r\nStep 4559, loss: 0.008216658607125282, step time: 45.798301696777344ms\r\nStep 4560, loss: 0.008192908950150013, step time: 46.442270278930664ms\r\nStep 4561, loss: 0.008240086026489735, step time: 46.34690284729004ms\r\nStep 4562, loss: 0.008191445842385292, step time: 45.809030532836914ms\r\nStep 4563, loss: 0.008233411237597466, step time: 45.81332206726074ms\r\nStep 4564, loss: 0.008188353851437569, step time: 45.81904411315918ms\r\nStep 4565, loss: 0.00818739365786314, step time: 45.69864273071289ms\r\nStep 4566, loss: 0.00821490865200758, step time: 45.7768440246582ms\r\nStep 4567, loss: 0.008264013566076756, step time: 45.75538635253906ms\r\nStep 4568, loss: 0.008174371905624866, step time: 45.726776123046875ms\r\nStep 4569, loss: 0.008232919499278069, step time: 45.995235443115234ms\r\nStep 4570, loss: 0.008201916702091694, step time: 46.49472236633301ms\r\nStep 4571, loss: 0.008284357376396656, step time: 46.27656936645508ms\r\nStep 4572, loss: 0.008218655362725258, step time: 45.691728591918945ms\r\nStep 4573, loss: 0.008215309120714664, step time: 45.71723937988281ms\r\nStep 4574, loss: 0.008208234794437885, step time: 45.79973220825195ms\r\nStep 4575, loss: 0.008230995386838913, step time: 45.43328285217285ms\r\nStep 4576, loss: 0.008208034560084343, step time: 45.80354690551758ms\r\nStep 4577, loss: 0.008217459544539452, step time: 45.888423919677734ms\r\nStep 4578, loss: 0.008229196071624756, step time: 45.70651054382324ms\r\nStep 4579, loss: 0.008262746967375278, step time: 45.97616195678711ms\r\nStep 4580, loss: 0.008321745321154594, step time: 46.61870002746582ms\r\nStep 4581, loss: 0.008200944401323795, step time: 46.22960090637207ms\r\nStep 4582, loss: 0.008177688345313072, step time: 45.77326774597168ms\r\nStep 4583, loss: 0.00824581366032362, step time: 45.89509963989258ms\r\nStep 4584, loss: 0.008189992979168892, step time: 45.806169509887695ms\r\nStep 4585, loss: 0.008177678100764751, step time: 45.91250419616699ms\r\nStep 4586, loss: 0.008182119578123093, step time: 45.920610427856445ms\r\nStep 4587, loss: 0.008156415075063705, step time: 45.68076133728027ms\r\nStep 4588, loss: 0.00816633366048336, step time: 45.71175575256348ms\r\nStep 4589, loss: 0.008198631927371025, step time: 45.80092430114746ms\r\nStep 4590, loss: 0.008183205500245094, step time: 46.95630073547363ms\r\nStep 4591, loss: 0.00817674957215786, step time: 46.09107971191406ms\r\nStep 4592, loss: 0.008178864605724812, step time: 45.70269584655762ms\r\nStep 4593, loss: 0.008203668519854546, step time: 45.9141731262207ms\r\nStep 4594, loss: 0.00824221596121788, step time: 45.69554328918457ms\r\nStep 4595, loss: 0.008178860880434513, step time: 45.67265510559082ms\r\nStep 4596, loss: 0.00817354116588831, step time: 45.65930366516113ms\r\nStep 4597, loss: 0.00820915587246418, step time: 45.656681060791016ms\r\nStep 4598, loss: 0.008255423977971077, step time: 45.75061798095703ms\r\nStep 4599, loss: 0.008276390843093395, step time: 45.64166069030762ms\r\n",,terminal_output +1251,2475795,"TERMINAL",0,0,"Step 4600, loss: 0.008230543695390224, step time: 47.3482608795166ms\r\nStep 4601, loss: 0.008225711062550545, step time: 46.0515022277832ms\r\nStep 4602, loss: 0.008248990401625633, step time: 45.719146728515625ms\r\nStep 4603, loss: 0.008220959454774857, step time: 45.85099220275879ms\r\nStep 4604, loss: 0.00828795786947012, step time: 45.67360877990723ms\r\nStep 4605, loss: 0.008235303685069084, step time: 45.784950256347656ms\r\nStep 4606, loss: 0.008236422203481197, step time: 45.783042907714844ms\r\nStep 4607, loss: 0.008241035044193268, step time: 45.70460319519043ms\r\nStep 4608, loss: 0.008236083202064037, step time: 45.82357406616211ms\r\nStep 4609, loss: 0.008301080204546452, step time: 45.617103576660156ms\r\nStep 4610, loss: 0.008246863260865211, step time: 49.346208572387695ms\r\nStep 4611, loss: 0.008206124417483807, step time: 45.9291934967041ms\r\nStep 4612, loss: 0.008226973935961723, step time: 45.98093032836914ms\r\nStep 4613, loss: 0.008179700002074242, step time: 45.69816589355469ms\r\nStep 4614, loss: 0.008204923942685127, step time: 45.68600654602051ms\r\nStep 4615, loss: 0.008212591521441936, step time: 45.768022537231445ms\r\nStep 4616, loss: 0.00819745659828186, step time: 45.598745346069336ms\r\nStep 4617, loss: 0.008195718750357628, step time: 45.81189155578613ms\r\nStep 4618, loss: 0.00818394310772419, step time: 45.65691947937012ms\r\nStep 4619, loss: 0.008156992495059967, step time: 45.606374740600586ms\r\nStep 4620, loss: 0.008207266218960285, step time: 49.70240592956543ms\r\nStep 4621, loss: 0.008198128081858158, step time: 45.98355293273926ms\r\nStep 4622, loss: 0.008199178613722324, step time: 45.96734046936035ms\r\nStep 4623, loss: 0.00820893608033657, step time: 45.7150936126709ms\r\nStep 4624, loss: 0.008194014430046082, step time: 45.54438591003418ms\r\nStep 4625, loss: 0.008190358988940716, step time: 45.723915100097656ms\r\nStep 4626, loss: 0.00822203978896141, step time: 45.64046859741211ms\r\nStep 4627, loss: 0.008211588487029076, step time: 45.87984085083008ms\r\nStep 4628, loss: 0.008209082297980785, step time: 45.67289352416992ms\r\nStep 4629, loss: 0.00818504299968481, step time: 45.79567909240723ms\r\n",,terminal_output +1252,2480793,"TERMINAL",0,0,"Step 4630, loss: 0.008182044140994549, step time: 46.76389694213867ms\r\nStep 4631, loss: 0.008234241046011448, step time: 46.00834846496582ms\r\nStep 4632, loss: 0.008220518007874489, step time: 45.94826698303223ms\r\nStep 4633, loss: 0.008230598643422127, step time: 45.67837715148926ms\r\nStep 4634, loss: 0.008215825073421001, step time: 45.79782485961914ms\r\nStep 4635, loss: 0.008314687758684158, step time: 45.827388763427734ms\r\nStep 4636, loss: 0.008247635327279568, step time: 45.68123817443848ms\r\nStep 4637, loss: 0.00822635181248188, step time: 46.04482650756836ms\r\nStep 4638, loss: 0.008202477358281612, step time: 45.73369026184082ms\r\nStep 4639, loss: 0.008204888552427292, step time: 45.78042030334473ms\r\nStep 4640, loss: 0.008197193033993244, step time: 46.43106460571289ms\r\nStep 4641, loss: 0.00822392012923956, step time: 46.051979064941406ms\r\nStep 4642, loss: 0.008225708268582821, step time: 45.84670066833496ms\r\nStep 4643, loss: 0.008135329000651836, step time: 45.67408561706543ms\r\nStep 4644, loss: 0.008226674981415272, step time: 45.82095146179199ms\r\nStep 4645, loss: 0.0081556411460042, step time: 45.73369026184082ms\r\nStep 4646, loss: 0.008153030648827553, step time: 46.041250228881836ms\r\nStep 4647, loss: 0.00823105126619339, step time: 46.0205078125ms\r\nStep 4648, loss: 0.008152222260832787, step time: 45.65262794494629ms\r\nStep 4649, loss: 0.008178862743079662, step time: 45.86529731750488ms\r\nStep 4650, loss: 0.008243026211857796, step time: 46.50425910949707ms\r\nStep 4651, loss: 0.008153000846505165, step time: 46.28348350524902ms\r\nStep 4652, loss: 0.008164782077074051, step time: 45.88675498962402ms\r\nStep 4653, loss: 0.008203182369470596, step time: 45.722246170043945ms\r\nStep 4654, loss: 0.008212042972445488, step time: 46.488285064697266ms\r\nStep 4655, loss: 0.008229619823396206, step time: 45.62687873840332ms\r\nStep 4656, loss: 0.008237196132540703, step time: 45.70174217224121ms\r\nStep 4657, loss: 0.008176550269126892, step time: 45.87197303771973ms\r\nStep 4658, loss: 0.00817837193608284, step time: 45.67718505859375ms\r\nStep 4659, loss: 0.008219175972044468, step time: 46.03862762451172ms\r\nStep 4660, loss: 0.008212252520024776, step time: 46.59581184387207ms\r\nStep 4661, loss: 0.008229982107877731, step time: 46.320199966430664ms\r\nStep 4662, loss: 0.008244425058364868, step time: 45.990943908691406ms\r\nStep 4663, loss: 0.008189290761947632, step time: 45.799970626831055ms\r\nStep 4664, loss: 0.008183415047824383, step time: 45.8376407623291ms\r\nStep 4665, loss: 0.008208591490983963, step time: 45.54414749145508ms\r\nStep 4666, loss: 0.00821356475353241, step time: 45.751094818115234ms\r\nStep 4667, loss: 0.00823347270488739, step time: 45.618295669555664ms\r\nStep 4668, loss: 0.008181414566934109, step time: 45.66597938537598ms\r\nStep 4669, loss: 0.008199265226721764, step time: 45.899391174316406ms\r\nStep 4670, loss: 0.008145688101649284, step time: 46.436309814453125ms\r\nStep 4671, loss: 0.008144109509885311, step time: 46.31447792053223ms\r\nStep 4672, loss: 0.008172154426574707, step time: 45.833587646484375ms\r\nStep 4673, loss: 0.008171994239091873, step time: 45.885562896728516ms\r\nStep 4674, loss: 0.008189467713236809, step time: 45.81475257873535ms\r\nStep 4675, loss: 0.008130128495395184, step time: 45.69816589355469ms\r\nStep 4676, loss: 0.008134618401527405, step time: 45.80569267272949ms\r\nStep 4677, loss: 0.008212164975702763, step time: 45.64476013183594ms\r\nStep 4678, loss: 0.00817064382135868, step time: 45.865774154663086ms\r\nStep 4679, loss: 0.008134809322655201, step time: 45.862674713134766ms\r\nStep 4680, loss: 0.008241488598287106, step time: 47.73235321044922ms\r\nStep 4681, loss: 0.008181125856935978, step time: 46.34714126586914ms\r\nStep 4682, loss: 0.008208313025534153, step time: 45.8226203918457ms\r\nStep 4683, loss: 0.008248597383499146, step time: 45.70913314819336ms\r\nStep 4684, loss: 0.008184738457202911, step time: 45.7310676574707ms\r\nStep 4685, loss: 0.008212578482925892, step time: 45.641422271728516ms\r\nStep 4686, loss: 0.008216126821935177, step time: 45.68886756896973ms\r\nStep 4687, loss: 0.008169524371623993, step time: 46.03719711303711ms\r\nStep 4688, loss: 0.008170448243618011, step time: 45.987606048583984ms\r\nStep 4689, loss: 0.008197041228413582, step time: 45.71270942687988ms\r\nStep 4690, loss: 0.008173374459147453, step time: 49.53932762145996ms\r\nStep 4691, loss: 0.008206906728446484, step time: 46.03695869445801ms\r\nStep 4692, loss: 0.00820646621286869, step time: 45.626163482666016ms\r\nStep 4693, loss: 0.00817013718187809, step time: 45.84312438964844ms\r\nStep 4694, loss: 0.008153070695698261, step time: 45.69864273071289ms\r\nStep 4695, loss: 0.008268799632787704, step time: 45.4251766204834ms\r\nStep 4696, loss: 0.008195903152227402, step time: 45.67360877990723ms\r\nStep 4697, loss: 0.008154762908816338, step time: 45.58706283569336ms\r\nStep 4698, loss: 0.008242342621088028, step time: 45.81785202026367ms\r\nStep 4699, loss: 0.008184409700334072, step time: 45.629262924194336ms\r\nStep 4700, loss: 0.008141606114804745, step time: 49.49355125427246ms\r\nStep 4701, loss: 0.008198064751923084, step time: 45.929670333862305ms\r\nStep 4702, loss: 0.008122391067445278, step time: 45.780181884765625ms\r\nStep 4703, loss: 0.008140644989907742, step time: 45.777320861816406ms\r\nStep 4704, loss: 0.008181683719158173, step time: 45.70150375366211ms\r\nStep 4705, loss: 0.008137763477861881, step time: 45.88174819946289ms\r\nStep 4706, loss: 0.008133524097502232, step time: 45.607805252075195ms\r\nStep 4707, loss: 0.008182533085346222, step time: 45.68052291870117ms\r\nStep 4708, loss: 0.008136202581226826, step time: 45.673370361328125ms\r\nStep 4709, loss: 0.008134943433105946, step time: 45.777082443237305ms\r\n",,terminal_output +1253,2485811,"TERMINAL",0,0,"Step 4710, loss: 0.008164534345269203, step time: 46.83041572570801ms\r\nStep 4711, loss: 0.008162468671798706, step time: 45.952796936035156ms\r\nStep 4712, loss: 0.008160432800650597, step time: 46.016693115234375ms\r\nStep 4713, loss: 0.008155940100550652, step time: 45.908212661743164ms\r\nStep 4714, loss: 0.008203091099858284, step time: 45.766353607177734ms\r\nStep 4715, loss: 0.008225739933550358, step time: 45.90177536010742ms\r\nStep 4716, loss: 0.008188655599951744, step time: 45.74251174926758ms\r\nStep 4717, loss: 0.008171443827450275, step time: 45.94707489013672ms\r\nStep 4718, loss: 0.008177717216312885, step time: 45.67861557006836ms\r\nStep 4719, loss: 0.008176106959581375, step time: 45.67885398864746ms\r\nStep 4720, loss: 0.008169513195753098, step time: 46.56171798706055ms\r\nStep 4721, loss: 0.008188068866729736, step time: 46.04601860046387ms\r\nStep 4722, loss: 0.00815622042864561, step time: 46.01907730102539ms\r\nStep 4723, loss: 0.008145762607455254, step time: 45.80116271972656ms\r\nStep 4724, loss: 0.00817162822932005, step time: 45.81451416015625ms\r\nStep 4725, loss: 0.00824692752212286, step time: 45.70269584655762ms\r\nStep 4726, loss: 0.008124702610075474, step time: 45.75991630554199ms\r\nStep 4727, loss: 0.00813155248761177, step time: 46.007394790649414ms\r\nStep 4728, loss: 0.008180235512554646, step time: 45.7613468170166ms\r\nStep 4729, loss: 0.008133938536047935, step time: 45.6085205078125ms\r\nStep 4730, loss: 0.008115435019135475, step time: 46.67997360229492ms\r\nStep 4731, loss: 0.008186153136193752, step time: 46.13637924194336ms\r\nStep 4732, loss: 0.008131328970193863, step time: 45.84503173828125ms\r\nStep 4733, loss: 0.008139826357364655, step time: 45.793771743774414ms\r\nStep 4734, loss: 0.00813000276684761, step time: 45.86029052734375ms\r\nStep 4735, loss: 0.00816267542541027, step time: 45.70817947387695ms\r\nStep 4736, loss: 0.008127019740641117, step time: 45.78423500061035ms\r\nStep 4737, loss: 0.008139517158269882, step time: 45.813560485839844ms\r\nStep 4738, loss: 0.00817161612212658, step time: 45.555830001831055ms\r\nStep 4739, loss: 0.008174313232302666, step time: 45.8219051361084ms\r\nStep 4740, loss: 0.00812836829572916, step time: 46.555280685424805ms\r\nStep 4741, loss: 0.008114065043628216, step time: 46.193838119506836ms\r\nStep 4742, loss: 0.008164908736944199, step time: 45.888423919677734ms\r\nStep 4743, loss: 0.008158043026924133, step time: 45.70960998535156ms\r\nStep 4744, loss: 0.008162446320056915, step time: 45.75181007385254ms\r\nStep 4745, loss: 0.008166254498064518, step time: 45.60208320617676ms\r\nStep 4746, loss: 0.008272778242826462, step time: 45.844316482543945ms\r\nStep 4747, loss: 0.008142204955220222, step time: 45.66168785095215ms\r\nStep 4748, loss: 0.008151291869580746, step time: 45.656442642211914ms\r\nStep 4749, loss: 0.00818344485014677, step time: 45.6995964050293ms\r\nStep 4750, loss: 0.008183212019503117, step time: 46.463727951049805ms\r\nStep 4751, loss: 0.00813165120780468, step time: 46.300411224365234ms\r\nStep 4752, loss: 0.008158119395375252, step time: 45.73798179626465ms\r\nStep 4753, loss: 0.008176974952220917, step time: 45.783281326293945ms\r\nStep 4754, loss: 0.008195430971682072, step time: 45.713186264038086ms\r\nStep 4755, loss: 0.008130138739943504, step time: 45.59159278869629ms\r\nStep 4756, loss: 0.00813448615372181, step time: 45.7613468170166ms\r\nStep 4757, loss: 0.008190994150936604, step time: 45.62711715698242ms\r\nStep 4758, loss: 0.00811359565705061, step time: 45.728206634521484ms\r\nStep 4759, loss: 0.008130437694489956, step time: 45.79901695251465ms\r\nStep 4760, loss: 0.008166168816387653, step time: 46.677589416503906ms\r\nStep 4761, loss: 0.008152663707733154, step time: 46.0665225982666ms\r\nStep 4762, loss: 0.008146131411194801, step time: 45.60351371765137ms\r\nStep 4763, loss: 0.008202087134122849, step time: 45.75705528259277ms\r\nStep 4764, loss: 0.008138537406921387, step time: 45.63260078430176ms\r\nStep 4765, loss: 0.008150209672749043, step time: 45.50313949584961ms\r\nStep 4766, loss: 0.008191730827093124, step time: 45.77207565307617ms\r\nStep 4767, loss: 0.008167989552021027, step time: 45.58920860290527ms\r\nStep 4768, loss: 0.00814809463918209, step time: 45.62020301818848ms\r\nStep 4769, loss: 0.008202939294278622, step time: 45.658111572265625ms\r\nStep 4770, loss: 0.00817836169153452, step time: 46.99587821960449ms\r\nStep 4771, loss: 0.008195138536393642, step time: 46.02861404418945ms\r\nStep 4772, loss: 0.008166790939867496, step time: 45.81809043884277ms\r\nStep 4773, loss: 0.008182073011994362, step time: 45.729875564575195ms\r\nStep 4774, loss: 0.008214058354496956, step time: 45.74918746948242ms\r\nStep 4775, loss: 0.008195513859391212, step time: 45.55320739746094ms\r\nStep 4776, loss: 0.008200868964195251, step time: 45.59469223022461ms\r\nStep 4777, loss: 0.008181356824934483, step time: 45.690298080444336ms\r\nStep 4778, loss: 0.008170412853360176, step time: 45.63117027282715ms\r\nStep 4779, loss: 0.0081673264503479, step time: 45.61424255371094ms\r\nStep 4780, loss: 0.008144790306687355, step time: 46.67925834655762ms\r\nStep 4781, loss: 0.008134189061820507, step time: 45.89271545410156ms\r\nStep 4782, loss: 0.0081285759806633, step time: 45.9592342376709ms\r\nStep 4783, loss: 0.008117465302348137, step time: 45.73678970336914ms\r\nStep 4784, loss: 0.008122765459120274, step time: 45.592546463012695ms\r\nStep 4785, loss: 0.008163069374859333, step time: 45.67766189575195ms\r\nStep 4786, loss: 0.00819515623152256, step time: 45.67313194274902ms\r\nStep 4787, loss: 0.008200399577617645, step time: 45.7911491394043ms\r\nStep 4788, loss: 0.00812198594212532, step time: 45.757293701171875ms\r\nStep 4789, loss: 0.008191668428480625, step time: 45.65119743347168ms\r\n",,terminal_output +1254,2486325,"TERMINAL",0,0,"Step 4790, loss: 0.008129744790494442, step time: 46.7686653137207ms\r\nStep 4791, loss: 0.008181878365576267, step time: 45.9294319152832ms\r\nStep 4792, loss: 0.008189472369849682, step time: 45.80259323120117ms\r\nStep 4793, loss: 0.00814715214073658, step time: 45.687198638916016ms\r\nStep 4794, loss: 0.008216431364417076, step time: 45.75848579406738ms\r\nStep 4795, loss: 0.008135627955198288, step time: 45.74108123779297ms\r\nStep 4796, loss: 0.00816892459988594, step time: 45.540809631347656ms\r\nStep 4797, loss: 0.008154545910656452, step time: 45.81713676452637ms\r\nStep 4798, loss: 0.008181516081094742, step time: 45.74465751647949ms\r\nStep 4799, loss: 0.008152266032993793, step time: 45.72463035583496ms\r\n",,terminal_output +1255,2486949,"TERMINAL",0,0,"Step 4800, loss: 0.008177656680345535, step time: 46.73957824707031ms\r\nStep 4801, loss: 0.008194595575332642, step time: 46.161651611328125ms\r\nStep 4802, loss: 0.008154946379363537, step time: 45.890092849731445ms\r\nStep 4803, loss: 0.008156221359968185, step time: 45.78423500061035ms\r\nStep 4804, loss: 0.008192608132958412, step time: 45.950889587402344ms\r\nStep 4805, loss: 0.008195469155907631, step time: 45.679330825805664ms\r\nStep 4806, loss: 0.00822039507329464, step time: 45.71652412414551ms\r\nStep 4807, loss: 0.008140161633491516, step time: 45.867204666137695ms\r\nStep 4808, loss: 0.008124579675495625, step time: 45.62950134277344ms\r\nStep 4809, loss: 0.008176489733159542, step time: 45.952558517456055ms\r\n",,terminal_output +1256,2487580,"TERMINAL",0,0,"Step 4810, loss: 0.008140786550939083, step time: 46.78630828857422ms\r\nStep 4811, loss: 0.008132260292768478, step time: 46.48303985595703ms\r\nStep 4812, loss: 0.008133633062243462, step time: 49.07536506652832ms\r\nStep 4813, loss: 0.008127441629767418, step time: 45.74418067932129ms\r\nStep 4814, loss: 0.008136386051774025, step time: 46.24295234680176ms\r\nStep 4815, loss: 0.008073357865214348, step time: 45.57299613952637ms\r\nStep 4816, loss: 0.008094782009720802, step time: 45.84145545959473ms\r\nStep 4817, loss: 0.008170653134584427, step time: 45.74084281921387ms\r\nStep 4818, loss: 0.008114166557788849, step time: 45.70269584655762ms\r\nStep 4819, loss: 0.008104387670755386, step time: 45.97663879394531ms\r\n",,terminal_output +1257,2488209,"TERMINAL",0,0,"Step 4820, loss: 0.008141039870679379, step time: 46.67305946350098ms\r\nStep 4821, loss: 0.008128313347697258, step time: 46.17023468017578ms\r\nStep 4822, loss: 0.008158359676599503, step time: 45.71199417114258ms\r\nStep 4823, loss: 0.008113343268632889, step time: 49.0109920501709ms\r\nStep 4824, loss: 0.008130715228617191, step time: 45.75634002685547ms\r\nStep 4825, loss: 0.008160597644746304, step time: 45.50528526306152ms\r\nStep 4826, loss: 0.008138793520629406, step time: 45.79353332519531ms\r\nStep 4827, loss: 0.008190917782485485, step time: 45.62664031982422ms\r\nStep 4828, loss: 0.008179552853107452, step time: 45.71938514709473ms\r\nStep 4829, loss: 0.00814766064286232, step time: 45.66454887390137ms\r\n",,terminal_output +1258,2488602,"TERMINAL",0,0,"Step 4830, loss: 0.008163733407855034, step time: 46.94795608520508ms\r\nStep 4831, loss: 0.008160198107361794, step time: 46.331167221069336ms\r\nStep 4832, loss: 0.008174711838364601, step time: 45.70651054382324ms\r\nStep 4833, loss: 0.008150793612003326, step time: 46.04768753051758ms\r\nStep 4834, loss: 0.008213572204113007, step time: 45.69530487060547ms\r\n",,terminal_output +1259,2488837,"TERMINAL",0,0,"Step 4835, loss: 0.008164566941559315, step time: 45.67241668701172ms\r\nStep 4836, loss: 0.00810917466878891, step time: 45.877695083618164ms\r\nStep 4837, loss: 0.00816415436565876, step time: 45.593976974487305ms\r\nStep 4838, loss: 0.00817948579788208, step time: 45.81880569458008ms\r\nStep 4839, loss: 0.008158205077052116, step time: 45.65000534057617ms\r\n",,terminal_output +1260,2489224,"TERMINAL",0,0,"Step 4840, loss: 0.008142122998833656, step time: 46.74506187438965ms\r\nStep 4841, loss: 0.008096134290099144, step time: 46.03290557861328ms\r\nStep 4842, loss: 0.008115800097584724, step time: 45.68743705749512ms\r\nStep 4843, loss: 0.008086839690804482, step time: 45.89200019836426ms\r\nStep 4844, loss: 0.00808838289231062, step time: 45.68910598754883ms\r\n",,terminal_output +1261,2491793,"TERMINAL",0,0,"Step 4845, loss: 0.00813241396099329, step time: 45.675039291381836ms\r\nStep 4846, loss: 0.00810418464243412, step time: 45.67766189575195ms\r\nStep 4847, loss: 0.008094996213912964, step time: 45.54390907287598ms\r\nStep 4848, loss: 0.008139090612530708, step time: 45.70746421813965ms\r\nStep 4849, loss: 0.008124745450913906, step time: 45.56608200073242ms\r\nStep 4850, loss: 0.008107714354991913, step time: 47.00040817260742ms\r\nStep 4851, loss: 0.008117892779409885, step time: 45.99404335021973ms\r\nStep 4852, loss: 0.00812695175409317, step time: 45.83573341369629ms\r\nStep 4853, loss: 0.008206941187381744, step time: 45.859575271606445ms\r\nStep 4854, loss: 0.008135118521749973, step time: 45.769691467285156ms\r\nStep 4855, loss: 0.00815556664019823, step time: 45.862436294555664ms\r\nStep 4856, loss: 0.00822488870471716, step time: 45.80330848693848ms\r\nStep 4857, loss: 0.008151265792548656, step time: 45.72439193725586ms\r\nStep 4858, loss: 0.008131121285259724, step time: 45.780181884765625ms\r\nStep 4859, loss: 0.00817150715738535, step time: 45.656681060791016ms\r\nStep 4860, loss: 0.008176885545253754, step time: 46.64754867553711ms\r\nStep 4861, loss: 0.008199225179851055, step time: 45.9752082824707ms\r\nStep 4862, loss: 0.008124122396111488, step time: 45.81928253173828ms\r\nStep 4863, loss: 0.008121117018163204, step time: 45.66168785095215ms\r\nStep 4864, loss: 0.008180868811905384, step time: 45.6085205078125ms\r\nStep 4865, loss: 0.008110332302749157, step time: 45.82929611206055ms\r\nStep 4866, loss: 0.008108137175440788, step time: 45.74322700500488ms\r\nStep 4867, loss: 0.008130662143230438, step time: 45.881032943725586ms\r\nStep 4868, loss: 0.008087020367383957, step time: 45.783281326293945ms\r\nStep 4869, loss: 0.00808442011475563, step time: 45.77350616455078ms\r\n",,terminal_output +1262,2496797,"TERMINAL",0,0,"Step 4870, loss: 0.008078807033598423, step time: 48.00248146057129ms\r\nStep 4871, loss: 0.008060837164521217, step time: 47.371625900268555ms\r\nStep 4872, loss: 0.008103945292532444, step time: 47.1034049987793ms\r\nStep 4873, loss: 0.008067790418863297, step time: 47.09887504577637ms\r\nStep 4874, loss: 0.008078498765826225, step time: 46.68021202087402ms\r\nStep 4875, loss: 0.008063406683504581, step time: 46.46587371826172ms\r\nStep 4876, loss: 0.008086277171969414, step time: 46.23889923095703ms\r\nStep 4877, loss: 0.008092086762189865, step time: 45.77779769897461ms\r\nStep 4878, loss: 0.00815194845199585, step time: 45.8831787109375ms\r\nStep 4879, loss: 0.008111173287034035, step time: 45.696258544921875ms\r\nStep 4880, loss: 0.008127089589834213, step time: 49.19004440307617ms\r\nStep 4881, loss: 0.008111829869449139, step time: 45.99332809448242ms\r\nStep 4882, loss: 0.008103693835437298, step time: 45.69506645202637ms\r\nStep 4883, loss: 0.008188730105757713, step time: 45.98641395568848ms\r\nStep 4884, loss: 0.008146297186613083, step time: 45.655250549316406ms\r\nStep 4885, loss: 0.008189219050109386, step time: 45.755863189697266ms\r\nStep 4886, loss: 0.008183115161955357, step time: 45.81594467163086ms\r\nStep 4887, loss: 0.008164197206497192, step time: 45.73869705200195ms\r\nStep 4888, loss: 0.00811765156686306, step time: 45.966386795043945ms\r\nStep 4889, loss: 0.008246401324868202, step time: 45.70460319519043ms\r\nStep 4890, loss: 0.008130033500492573, step time: 49.761295318603516ms\r\nStep 4891, loss: 0.008127707988023758, step time: 46.0515022277832ms\r\nStep 4892, loss: 0.008087092079222202, step time: 45.98569869995117ms\r\nStep 4893, loss: 0.008126132190227509, step time: 45.929908752441406ms\r\nStep 4894, loss: 0.008098535239696503, step time: 45.84002494812012ms\r\nStep 4895, loss: 0.008127300068736076, step time: 45.82834243774414ms\r\nStep 4896, loss: 0.008084289729595184, step time: 45.63164710998535ms\r\nStep 4897, loss: 0.008109250105917454, step time: 45.714616775512695ms\r\nStep 4898, loss: 0.008066622540354729, step time: 45.78757286071777ms\r\nStep 4899, loss: 0.008083992637693882, step time: 45.72176933288574ms\r\nStep 4900, loss: 0.008092672564089298, step time: 46.82111740112305ms\r\nStep 4901, loss: 0.008090771734714508, step time: 46.17643356323242ms\r\nStep 4902, loss: 0.008078041486442089, step time: 45.75777053833008ms\r\nStep 4903, loss: 0.00806230679154396, step time: 45.62211036682129ms\r\nStep 4904, loss: 0.008092433214187622, step time: 45.67432403564453ms\r\nStep 4905, loss: 0.008114111609756947, step time: 45.7606315612793ms\r\nStep 4906, loss: 0.008164945989847183, step time: 45.624732971191406ms\r\nStep 4907, loss: 0.008105139248073101, step time: 45.87531089782715ms\r\nStep 4908, loss: 0.008133688010275364, step time: 45.717716217041016ms\r\nStep 4909, loss: 0.008073392324149609, step time: 45.64309120178223ms\r\nStep 4910, loss: 0.008101784624159336, step time: 46.81205749511719ms\r\nStep 4911, loss: 0.008140850812196732, step time: 46.03171348571777ms\r\nStep 4912, loss: 0.008130594156682491, step time: 45.831918716430664ms\r\nStep 4913, loss: 0.00815282016992569, step time: 45.70150375366211ms\r\nStep 4914, loss: 0.0081185819581151, step time: 45.70126533508301ms\r\nStep 4915, loss: 0.008152198046445847, step time: 45.81022262573242ms\r\nStep 4916, loss: 0.008147768676280975, step time: 45.63403129577637ms\r\nStep 4917, loss: 0.00812818855047226, step time: 45.96447944641113ms\r\nStep 4918, loss: 0.008159822784364223, step time: 45.73822021484375ms\r\nStep 4919, loss: 0.0081184022128582, step time: 45.78995704650879ms\r\nStep 4920, loss: 0.008125369437038898, step time: 46.721458435058594ms\r\nStep 4921, loss: 0.00809724535793066, step time: 46.30422592163086ms\r\nStep 4922, loss: 0.008115002885460854, step time: 45.76468467712402ms\r\nStep 4923, loss: 0.008111783303320408, step time: 45.80569267272949ms\r\nStep 4924, loss: 0.008085785433650017, step time: 46.01311683654785ms\r\nStep 4925, loss: 0.008149477653205395, step time: 45.58420181274414ms\r\nStep 4926, loss: 0.008094980381429195, step time: 45.836687088012695ms\r\nStep 4927, loss: 0.008156650699675083, step time: 45.75157165527344ms\r\nStep 4928, loss: 0.008101020939648151, step time: 45.79019546508789ms\r\nStep 4929, loss: 0.008079764433205128, step time: 46.27513885498047ms\r\nStep 4930, loss: 0.00816996768116951, step time: 47.0733642578125ms\r\nStep 4931, loss: 0.008075430989265442, step time: 46.24032974243164ms\r\nStep 4932, loss: 0.00815265066921711, step time: 45.80497741699219ms\r\nStep 4933, loss: 0.008166021667420864, step time: 45.668840408325195ms\r\nStep 4934, loss: 0.008093063719570637, step time: 45.742034912109375ms\r\nStep 4935, loss: 0.00810064747929573, step time: 45.4716682434082ms\r\nStep 4936, loss: 0.0081646628677845, step time: 45.91035842895508ms\r\nStep 4937, loss: 0.008081652224063873, step time: 45.751333236694336ms\r\nStep 4938, loss: 0.008115005679428577, step time: 45.79496383666992ms\r\nStep 4939, loss: 0.00814876426011324, step time: 46.00238800048828ms\r\nStep 4940, loss: 0.008162693120539188, step time: 49.13663864135742ms\r\nStep 4941, loss: 0.00813351385295391, step time: 46.22483253479004ms\r\nStep 4942, loss: 0.008105973713099957, step time: 45.69530487060547ms\r\nStep 4943, loss: 0.00813255924731493, step time: 45.90630531311035ms\r\nStep 4944, loss: 0.008177505806088448, step time: 45.740365982055664ms\r\nStep 4945, loss: 0.008125639520585537, step time: 45.8371639251709ms\r\nStep 4946, loss: 0.008134089410305023, step time: 45.914411544799805ms\r\nStep 4947, loss: 0.008102795109152794, step time: 45.82977294921875ms\r\nStep 4948, loss: 0.008062672801315784, step time: 45.73345184326172ms\r\nStep 4949, loss: 0.008121246472001076, step time: 45.71199417114258ms\r\n",,terminal_output +1263,2501602,"TERMINAL",0,0,"Step 4950, loss: 0.00807924009859562, step time: 49.83115196228027ms\r\nStep 4951, loss: 0.008111860603094101, step time: 46.1573600769043ms\r\nStep 4952, loss: 0.008048556745052338, step time: 45.764923095703125ms\r\nStep 4953, loss: 0.00805092416703701, step time: 45.867204666137695ms\r\nStep 4954, loss: 0.00809578225016594, step time: 45.63093185424805ms\r\nStep 4955, loss: 0.008046894334256649, step time: 45.716285705566406ms\r\nStep 4956, loss: 0.008051646873354912, step time: 45.714378356933594ms\r\nStep 4957, loss: 0.008032568730413914, step time: 45.68815231323242ms\r\nStep 4958, loss: 0.008050361648201942, step time: 45.89200019836426ms\r\nStep 4959, loss: 0.00807054154574871, step time: 45.633554458618164ms\r\nStep 4960, loss: 0.008059625513851643, step time: 46.805620193481445ms\r\nStep 4961, loss: 0.008085759356617928, step time: 45.97616195678711ms\r\nStep 4962, loss: 0.008116510696709156, step time: 45.86529731750488ms\r\nStep 4963, loss: 0.008071981370449066, step time: 45.86935043334961ms\r\nStep 4964, loss: 0.008098524995148182, step time: 45.655250549316406ms\r\nStep 4965, loss: 0.00810722354799509, step time: 45.73869705200195ms\r\nStep 4966, loss: 0.008115320466458797, step time: 45.68624496459961ms\r\nStep 4967, loss: 0.00810760073363781, step time: 45.60041427612305ms\r\nStep 4968, loss: 0.008103204891085625, step time: 45.75300216674805ms\r\nStep 4969, loss: 0.008181462995707989, step time: 45.578956604003906ms\r\nStep 4970, loss: 0.008130247704684734, step time: 46.658992767333984ms\r\nStep 4971, loss: 0.00817977637052536, step time: 45.90606689453125ms\r\nStep 4972, loss: 0.008129029534757137, step time: 45.75014114379883ms\r\nStep 4973, loss: 0.008099999278783798, step time: 45.7005500793457ms\r\nStep 4974, loss: 0.008175489492714405, step time: 45.588016510009766ms\r\nStep 4975, loss: 0.008068090304732323, step time: 45.85981369018555ms\r\nStep 4976, loss: 0.008069448173046112, step time: 45.6089973449707ms\r\nStep 4977, loss: 0.008125574328005314, step time: 45.76539993286133ms\r\nStep 4978, loss: 0.008074487559497356, step time: 45.89128494262695ms\r\nStep 4979, loss: 0.008064238354563713, step time: 45.920372009277344ms\r\nStep 4980, loss: 0.008075674064457417, step time: 46.74243927001953ms\r\nStep 4981, loss: 0.008041497319936752, step time: 45.9904670715332ms\r\nStep 4982, loss: 0.00812219362705946, step time: 45.81308364868164ms\r\nStep 4983, loss: 0.00810111965984106, step time: 45.685529708862305ms\r\nStep 4984, loss: 0.008088834583759308, step time: 45.66526412963867ms\r\nStep 4985, loss: 0.00810336321592331, step time: 45.68910598754883ms\r\nStep 4986, loss: 0.008105960674583912, step time: 45.75228691101074ms\r\nStep 4987, loss: 0.008160675875842571, step time: 45.82095146179199ms\r\nStep 4988, loss: 0.008099770173430443, step time: 45.63260078430176ms\r\nStep 4989, loss: 0.008122097700834274, step time: 45.686960220336914ms\r\nStep 4990, loss: 0.008090056478977203, step time: 46.56386375427246ms\r\nStep 4991, loss: 0.008151896297931671, step time: 46.16379737854004ms\r\nStep 4992, loss: 0.00812484510242939, step time: 45.810699462890625ms\r\nStep 4993, loss: 0.008136092685163021, step time: 45.83144187927246ms\r\nStep 4994, loss: 0.008149724453687668, step time: 45.824289321899414ms\r\nStep 4995, loss: 0.00812461506575346, step time: 45.682668685913086ms\r\nStep 4996, loss: 0.008135564625263214, step time: 45.659780502319336ms\r\nStep 4997, loss: 0.008091342635452747, step time: 45.90153694152832ms\r\nStep 4998, loss: 0.008099659346044064, step time: 45.67456245422363ms\r\nStep 4999, loss: 0.008105077780783176, step time: 45.74441909790039ms\r\nStep 5000, loss: 0.008101715706288815, step time: 46.744585037231445ms\r\nStep 5001, loss: 0.008153161033987999, step time: 46.28467559814453ms\r\nStep 5002, loss: 0.008100928738713264, step time: 45.966148376464844ms\r\nStep 5003, loss: 0.008089032024145126, step time: 45.80426216125488ms\r\nStep 5004, loss: 0.008086118847131729, step time: 45.92156410217285ms\r\nStep 5005, loss: 0.008090333081781864, step time: 45.5174446105957ms\r\nStep 5006, loss: 0.008059020154178143, step time: 45.64976692199707ms\r\nStep 5007, loss: 0.00802925880998373, step time: 45.76468467712402ms\r\nStep 5008, loss: 0.008049728348851204, step time: 45.621395111083984ms\r\nStep 5009, loss: 0.00806349515914917, step time: 45.961856842041016ms\r\nStep 5010, loss: 0.008049148134887218, step time: 47.26886749267578ms\r\nStep 5011, loss: 0.008046974427998066, step time: 46.347618103027344ms\r\nStep 5012, loss: 0.008100105449557304, step time: 45.80807685852051ms\r\nStep 5013, loss: 0.008041633293032646, step time: 45.69864273071289ms\r\nStep 5014, loss: 0.008048837073147297, step time: 45.84455490112305ms\r\nStep 5015, loss: 0.008081618696451187, step time: 45.58110237121582ms\r\nStep 5016, loss: 0.008081942796707153, step time: 45.79663276672363ms\r\nStep 5017, loss: 0.008108949288725853, step time: 45.76253890991211ms\r\nStep 5018, loss: 0.008100750856101513, step time: 45.68195343017578ms\r\nStep 5019, loss: 0.008119631558656693, step time: 46.01311683654785ms\r\nStep 5020, loss: 0.008169274777173996, step time: 46.5545654296875ms\r\nStep 5021, loss: 0.008157058618962765, step time: 46.234130859375ms\r\nStep 5022, loss: 0.00813318882137537, step time: 45.67408561706543ms\r\nStep 5023, loss: 0.008093264885246754, step time: 46.0965633392334ms\r\nStep 5024, loss: 0.008093567565083504, step time: 45.610904693603516ms\r\nStep 5025, loss: 0.00811206828802824, step time: 45.74084281921387ms\r\nStep 5026, loss: 0.008074963465332985, step time: 46.087026596069336ms\r\nStep 5027, loss: 0.008041536435484886, step time: 45.8223819732666ms\r\nStep 5028, loss: 0.008082340471446514, step time: 45.71413993835449ms\r\nStep 5029, loss: 0.008093031123280525, step time: 45.792341232299805ms\r\n",,terminal_output +1264,2502157,"TERMINAL",0,0,"Step 5030, loss: 0.008074693381786346, step time: 46.80824279785156ms\r\nStep 5031, loss: 0.008065693080425262, step time: 46.51904106140137ms\r\nStep 5032, loss: 0.008068856783211231, step time: 45.80855369567871ms\r\nStep 5033, loss: 0.008054925128817558, step time: 45.7005500793457ms\r\nStep 5034, loss: 0.0080448342487216, step time: 45.76921463012695ms\r\nStep 5035, loss: 0.008027494885027409, step time: 45.52412033081055ms\r\nStep 5036, loss: 0.00805659219622612, step time: 45.993804931640625ms\r\nStep 5037, loss: 0.008033772930502892, step time: 45.73178291320801ms\r\nStep 5038, loss: 0.008045274764299393, step time: 47.4090576171875ms\r\nStep 5039, loss: 0.008119520731270313, step time: 45.75824737548828ms\r\nStep 5040, loss: 0.008212882094085217, step time: 46.81849479675293ms\r\nStep 5041, loss: 0.008113179355859756, step time: 46.67544364929199ms\r\nStep 5042, loss: 0.008053991943597794, step time: 45.64929008483887ms\r\nStep 5043, loss: 0.008219864219427109, step time: 45.97973823547363ms\r\nStep 5044, loss: 0.008063709363341331, step time: 45.81928253173828ms\r\nStep 5045, loss: 0.008133327588438988, step time: 45.68791389465332ms\r\nStep 5046, loss: 0.00811175350099802, step time: 45.63784599304199ms\r\nStep 5047, loss: 0.008143655955791473, step time: 45.6693172454834ms\r\nStep 5048, loss: 0.008137539029121399, step time: 46.07892036437988ms\r\nStep 5049, loss: 0.008087283931672573, step time: 45.64332962036133ms\r\n",,terminal_output +1265,2502649,"TERMINAL",0,0,"Step 5050, loss: 0.00814025942236185, step time: 46.892642974853516ms\r\nStep 5051, loss: 0.008088329806923866, step time: 46.03433609008789ms\r\nStep 5052, loss: 0.008170078508555889, step time: 45.6843376159668ms\r\nStep 5053, loss: 0.008060640655457973, step time: 45.9294319152832ms\r\nStep 5054, loss: 0.0081616947427392, step time: 45.61138153076172ms\r\nStep 5055, loss: 0.008069846779108047, step time: 45.60112953186035ms\r\nStep 5056, loss: 0.008139634504914284, step time: 45.77016830444336ms\r\nStep 5057, loss: 0.008076426573097706, step time: 45.60494422912598ms\r\nStep 5058, loss: 0.008100511506199837, step time: 45.77159881591797ms\r\nStep 5059, loss: 0.008052252233028412, step time: 45.60422897338867ms\r\n",,terminal_output +1266,2506794,"TERMINAL",0,0,"Step 5060, loss: 0.008094443939626217, step time: 47.049522399902344ms\r\nStep 5061, loss: 0.00809615571051836, step time: 46.19121551513672ms\r\nStep 5062, loss: 0.00802354235202074, step time: 45.76754570007324ms\r\nStep 5063, loss: 0.008055995218455791, step time: 45.78113555908203ms\r\nStep 5064, loss: 0.008013074286282063, step time: 45.58062553405762ms\r\nStep 5065, loss: 0.008068660274147987, step time: 45.710086822509766ms\r\nStep 5066, loss: 0.008068915456533432, step time: 45.720815658569336ms\r\nStep 5067, loss: 0.008103849366307259, step time: 45.65262794494629ms\r\nStep 5068, loss: 0.00806411262601614, step time: 45.77350616455078ms\r\nStep 5069, loss: 0.00810205563902855, step time: 45.76301574707031ms\r\nStep 5070, loss: 0.008055802434682846, step time: 46.61059379577637ms\r\nStep 5071, loss: 0.008083287626504898, step time: 45.83597183227539ms\r\nStep 5072, loss: 0.008114404045045376, step time: 45.96376419067383ms\r\nStep 5073, loss: 0.008126366883516312, step time: 45.74179649353027ms\r\nStep 5074, loss: 0.008095442317426205, step time: 45.5784797668457ms\r\nStep 5075, loss: 0.00811149924993515, step time: 45.97878456115723ms\r\nStep 5076, loss: 0.008124439977109432, step time: 45.65072059631348ms\r\nStep 5077, loss: 0.008162588812410831, step time: 45.799970626831055ms\r\nStep 5078, loss: 0.008091005496680737, step time: 45.68839073181152ms\r\nStep 5079, loss: 0.008102423511445522, step time: 45.75800895690918ms\r\nStep 5080, loss: 0.00812750868499279, step time: 46.92554473876953ms\r\nStep 5081, loss: 0.008129735477268696, step time: 45.97353935241699ms\r\nStep 5082, loss: 0.008120892569422722, step time: 46.02360725402832ms\r\nStep 5083, loss: 0.008039985783398151, step time: 45.80187797546387ms\r\nStep 5084, loss: 0.008082614280283451, step time: 45.673370361328125ms\r\nStep 5085, loss: 0.008075127378106117, step time: 45.586585998535156ms\r\nStep 5086, loss: 0.00803361739963293, step time: 45.68624496459961ms\r\nStep 5087, loss: 0.00803282018750906, step time: 45.8219051361084ms\r\nStep 5088, loss: 0.008071152493357658, step time: 45.67360877990723ms\r\nStep 5089, loss: 0.008009594865143299, step time: 45.645713806152344ms\r\nStep 5090, loss: 0.008012973703444004, step time: 47.37281799316406ms\r\nStep 5091, loss: 0.008040031418204308, step time: 46.034812927246094ms\r\nStep 5092, loss: 0.008043881505727768, step time: 45.877695083618164ms\r\nStep 5093, loss: 0.008032431825995445, step time: 45.81189155578613ms\r\nStep 5094, loss: 0.00801986176520586, step time: 45.832157135009766ms\r\nStep 5095, loss: 0.008044881746172905, step time: 45.712947845458984ms\r\nStep 5096, loss: 0.008053513243794441, step time: 45.59612274169922ms\r\nStep 5097, loss: 0.008061330765485764, step time: 45.8681583404541ms\r\nStep 5098, loss: 0.008115531876683235, step time: 45.744895935058594ms\r\nStep 5099, loss: 0.008127916604280472, step time: 45.77302932739258ms\r\nStep 5100, loss: 0.008172648958861828, step time: 49.13520812988281ms\r\nStep 5101, loss: 0.008099181577563286, step time: 46.185970306396484ms\r\nStep 5102, loss: 0.00813713576644659, step time: 45.762062072753906ms\r\nStep 5103, loss: 0.008144729770720005, step time: 45.636892318725586ms\r\nStep 5104, loss: 0.008093071170151234, step time: 45.85981369018555ms\r\nStep 5105, loss: 0.008110594004392624, step time: 45.54176330566406ms\r\nStep 5106, loss: 0.008142070844769478, step time: 45.67599296569824ms\r\nStep 5107, loss: 0.008075575344264507, step time: 45.682668685913086ms\r\nStep 5108, loss: 0.00806340016424656, step time: 45.63546180725098ms\r\nStep 5109, loss: 0.008048361167311668, step time: 45.96710205078125ms\r\n",,terminal_output +1267,2507795,"TERMINAL",0,0,"Step 5110, loss: 0.008086261339485645, step time: 46.69618606567383ms\r\nStep 5111, loss: 0.008089269511401653, step time: 46.243906021118164ms\r\nStep 5112, loss: 0.008054344914853573, step time: 48.12932014465332ms\r\nStep 5113, loss: 0.008098178543150425, step time: 45.873403549194336ms\r\nStep 5114, loss: 0.00804692879319191, step time: 45.738935470581055ms\r\nStep 5115, loss: 0.008031364530324936, step time: 45.71056365966797ms\r\nStep 5116, loss: 0.008046457543969154, step time: 45.94159126281738ms\r\nStep 5117, loss: 0.00805138610303402, step time: 45.61614990234375ms\r\nStep 5118, loss: 0.008017531596124172, step time: 45.694589614868164ms\r\nStep 5119, loss: 0.008035254664719105, step time: 45.835256576538086ms\r\nStep 5120, loss: 0.008049339056015015, step time: 46.64158821105957ms\r\nStep 5121, loss: 0.00802641175687313, step time: 46.04744911193848ms\r\nStep 5122, loss: 0.008005940355360508, step time: 45.82810401916504ms\r\nStep 5123, loss: 0.008009975776076317, step time: 46.64039611816406ms\r\nStep 5124, loss: 0.008050854317843914, step time: 46.55003547668457ms\r\nStep 5125, loss: 0.0080114072188735, step time: 45.88055610656738ms\r\nStep 5126, loss: 0.00798946712166071, step time: 46.05460166931152ms\r\nStep 5127, loss: 0.008026175200939178, step time: 45.804738998413086ms\r\nStep 5128, loss: 0.008024501614272594, step time: 46.088218688964844ms\r\nStep 5129, loss: 0.00802967045456171, step time: 45.71866989135742ms\r\nStep 5130, loss: 0.008043425157666206, step time: 46.996355056762695ms\r\nStep 5131, loss: 0.008045530878007412, step time: 46.07057571411133ms\r\nStep 5132, loss: 0.008025308139622211, step time: 45.723915100097656ms\r\nStep 5133, loss: 0.008066256530582905, step time: 45.938968658447266ms\r\nStep 5134, loss: 0.008044333197176456, step time: 45.6852912902832ms\r\nStep 5135, loss: 0.008058246225118637, step time: 45.95017433166504ms\r\nStep 5136, loss: 0.008042245171964169, step time: 45.90463638305664ms\r\nStep 5137, loss: 0.008066151291131973, step time: 45.68147659301758ms\r\nStep 5138, loss: 0.008049935102462769, step time: 46.09274864196777ms\r\nStep 5139, loss: 0.008104531094431877, step time: 45.91822624206543ms\r\n",,terminal_output +1268,2512794,"TERMINAL",0,0,"Step 5140, loss: 0.008074280805885792, step time: 47.07479476928711ms\r\nStep 5141, loss: 0.008025535382330418, step time: 46.12851142883301ms\r\nStep 5142, loss: 0.00807960331439972, step time: 45.809268951416016ms\r\nStep 5143, loss: 0.008056983351707458, step time: 45.71533203125ms\r\nStep 5144, loss: 0.008052934892475605, step time: 45.76516151428223ms\r\nStep 5145, loss: 0.008010958321392536, step time: 45.766353607177734ms\r\nStep 5146, loss: 0.007982155308127403, step time: 45.649051666259766ms\r\nStep 5147, loss: 0.008043384179472923, step time: 45.545101165771484ms\r\nStep 5148, loss: 0.007968255318701267, step time: 45.79949378967285ms\r\nStep 5149, loss: 0.0079934261739254, step time: 45.71127891540527ms\r\nStep 5150, loss: 0.007986204698681831, step time: 46.69904708862305ms\r\nStep 5151, loss: 0.007960798218846321, step time: 46.09370231628418ms\r\nStep 5152, loss: 0.008002707734704018, step time: 45.922279357910156ms\r\nStep 5153, loss: 0.007990142330527306, step time: 45.783042907714844ms\r\nStep 5154, loss: 0.008057966828346252, step time: 45.751094818115234ms\r\nStep 5155, loss: 0.00799243152141571, step time: 45.899152755737305ms\r\nStep 5156, loss: 0.008025075308978558, step time: 45.72153091430664ms\r\nStep 5157, loss: 0.008028027601540089, step time: 46.04673385620117ms\r\nStep 5158, loss: 0.008032388053834438, step time: 46.85020446777344ms\r\nStep 5159, loss: 0.00801212526857853, step time: 47.176361083984375ms\r\nStep 5160, loss: 0.008100840263068676, step time: 47.67036437988281ms\r\nStep 5161, loss: 0.008099881932139397, step time: 46.39840126037598ms\r\nStep 5162, loss: 0.008124900981783867, step time: 45.83454132080078ms\r\nStep 5163, loss: 0.008033393882215023, step time: 46.413421630859375ms\r\nStep 5164, loss: 0.008060137741267681, step time: 46.140432357788086ms\r\nStep 5165, loss: 0.008086180314421654, step time: 45.699357986450195ms\r\nStep 5166, loss: 0.008009005337953568, step time: 46.05674743652344ms\r\nStep 5167, loss: 0.00800955481827259, step time: 45.891761779785156ms\r\nStep 5168, loss: 0.008027840405702591, step time: 45.6843376159668ms\r\nStep 5169, loss: 0.007989710196852684, step time: 45.90344429016113ms\r\nStep 5170, loss: 0.008015706203877926, step time: 46.58317565917969ms\r\nStep 5171, loss: 0.00803191214799881, step time: 46.11992835998535ms\r\nStep 5172, loss: 0.008002002723515034, step time: 45.75014114379883ms\r\nStep 5173, loss: 0.008023889735341072, step time: 45.91655731201172ms\r\nStep 5174, loss: 0.008025155402719975, step time: 45.72248458862305ms\r\nStep 5175, loss: 0.007960918359458447, step time: 45.74418067932129ms\r\nStep 5176, loss: 0.008019068278372288, step time: 45.8981990814209ms\r\nStep 5177, loss: 0.007983334362506866, step time: 45.72153091430664ms\r\nStep 5178, loss: 0.007984678260982037, step time: 45.87888717651367ms\r\nStep 5179, loss: 0.007994373328983784, step time: 45.81141471862793ms\r\nStep 5180, loss: 0.007965360768139362, step time: 46.79083824157715ms\r\nStep 5181, loss: 0.008040092885494232, step time: 46.123504638671875ms\r\nStep 5182, loss: 0.007972192950546741, step time: 45.70746421813965ms\r\nStep 5183, loss: 0.00798812322318554, step time: 45.79281806945801ms\r\nStep 5184, loss: 0.007989349775016308, step time: 45.69840431213379ms\r\nStep 5185, loss: 0.007996371015906334, step time: 45.70269584655762ms\r\nStep 5186, loss: 0.008046627976000309, step time: 46.0047721862793ms\r\nStep 5187, loss: 0.008002913556993008, step time: 45.583486557006836ms\r\nStep 5188, loss: 0.007984941825270653, step time: 45.89128494262695ms\r\nStep 5189, loss: 0.008002780377864838, step time: 45.83287239074707ms\r\nStep 5190, loss: 0.00801183469593525, step time: 46.60749435424805ms\r\nStep 5191, loss: 0.008033785037696362, step time: 46.296119689941406ms\r\nStep 5192, loss: 0.007993511855602264, step time: 45.751094818115234ms\r\nStep 5193, loss: 0.007992255501449108, step time: 45.89104652404785ms\r\nStep 5194, loss: 0.0080155273899436, step time: 45.73178291320801ms\r\nStep 5195, loss: 0.008015237748622894, step time: 45.69220542907715ms\r\nStep 5196, loss: 0.008068235591053963, step time: 45.8219051361084ms\r\nStep 5197, loss: 0.008035111241042614, step time: 45.682668685913086ms\r\nStep 5198, loss: 0.008007330819964409, step time: 45.92442512512207ms\r\nStep 5199, loss: 0.008037061430513859, step time: 45.73369026184082ms\r\nStep 5200, loss: 0.00805804505944252, step time: 49.8197078704834ms\r\nStep 5201, loss: 0.008024252019822598, step time: 45.929670333862305ms\r\nStep 5202, loss: 0.007995227351784706, step time: 45.81737518310547ms\r\nStep 5203, loss: 0.007984266616404057, step time: 45.96853256225586ms\r\nStep 5204, loss: 0.008039237931370735, step time: 45.71700096130371ms\r\nStep 5205, loss: 0.007946240715682507, step time: 45.754432678222656ms\r\nStep 5206, loss: 0.007964332588016987, step time: 45.867204666137695ms\r\nStep 5207, loss: 0.008011619560420513, step time: 45.635223388671875ms\r\nStep 5208, loss: 0.008011899888515472, step time: 45.877695083618164ms\r\nStep 5209, loss: 0.008106940425932407, step time: 45.862674713134766ms\r\nStep 5210, loss: 0.007997212000191212, step time: 46.69594764709473ms\r\nStep 5211, loss: 0.008010657504200935, step time: 46.90718650817871ms\r\nStep 5212, loss: 0.008039084263145924, step time: 47.07622528076172ms\r\nStep 5213, loss: 0.007968100719153881, step time: 45.804500579833984ms\r\nStep 5214, loss: 0.008000476285815239, step time: 45.618534088134766ms\r\nStep 5215, loss: 0.008011436089873314, step time: 45.729875564575195ms\r\nStep 5216, loss: 0.008004331029951572, step time: 45.75991630554199ms\r\nStep 5217, loss: 0.00807542260736227, step time: 45.99261283874512ms\r\nStep 5218, loss: 0.007985888980329037, step time: 46.080827713012695ms\r\nStep 5219, loss: 0.007978842593729496, step time: 45.92132568359375ms\r\n",,terminal_output +1269,2514575,"TERMINAL",0,0,"Step 5220, loss: 0.00809059664607048, step time: 47.070980072021484ms\r\nStep 5221, loss: 0.00808009598404169, step time: 45.99571228027344ms\r\nStep 5222, loss: 0.00796245876699686, step time: 45.8521842956543ms\r\nStep 5223, loss: 0.008081253618001938, step time: 45.6547737121582ms\r\nStep 5224, loss: 0.007961934432387352, step time: 45.6547737121582ms\r\nStep 5225, loss: 0.008019485510885715, step time: 45.684814453125ms\r\nStep 5226, loss: 0.008038091473281384, step time: 45.644283294677734ms\r\nStep 5227, loss: 0.007955937646329403, step time: 45.83120346069336ms\r\nStep 5228, loss: 0.007941700518131256, step time: 45.58253288269043ms\r\nStep 5229, loss: 0.008031262084841728, step time: 45.71819305419922ms\r\nStep 5230, loss: 0.007939973846077919, step time: 46.64492607116699ms\r\nStep 5231, loss: 0.007912034168839455, step time: 45.89343070983887ms\r\nStep 5232, loss: 0.007991434074938297, step time: 45.880794525146484ms\r\nStep 5233, loss: 0.007921903394162655, step time: 45.719146728515625ms\r\nStep 5234, loss: 0.007908113300800323, step time: 45.801401138305664ms\r\nStep 5235, loss: 0.007982290349900723, step time: 45.6545352935791ms\r\nStep 5236, loss: 0.007939616218209267, step time: 45.812368392944336ms\r\nStep 5237, loss: 0.007911555469036102, step time: 46.254873275756836ms\r\nStep 5238, loss: 0.008022518828511238, step time: 45.81785202026367ms\r\nStep 5239, loss: 0.00793455820530653, step time: 45.803070068359375ms\r\nStep 5240, loss: 0.007952912710607052, step time: 46.52976989746094ms\r\nStep 5241, loss: 0.008065094240009785, step time: 46.09560966491699ms\r\nStep 5242, loss: 0.007948901504278183, step time: 45.76730728149414ms\r\nStep 5243, loss: 0.007975238375365734, step time: 45.63140869140625ms\r\nStep 5244, loss: 0.008027531206607819, step time: 45.8064079284668ms\r\nStep 5245, loss: 0.007962926290929317, step time: 45.549631118774414ms\r\nStep 5246, loss: 0.007988948374986649, step time: 45.725345611572266ms\r\nStep 5247, loss: 0.00801133830100298, step time: 45.70126533508301ms\r\nStep 5248, loss: 0.008066197857260704, step time: 45.575857162475586ms\r\nStep 5249, loss: 0.007974214851856232, step time: 45.82548141479492ms\r\n",,terminal_output +1270,2515190,"TERMINAL",0,0,"Step 5250, loss: 0.00795687921345234, step time: 46.52094841003418ms\r\nStep 5251, loss: 0.008055873215198517, step time: 46.20766639709473ms\r\nStep 5252, loss: 0.0080318758264184, step time: 45.75705528259277ms\r\nStep 5253, loss: 0.007986698299646378, step time: 45.64261436462402ms\r\nStep 5254, loss: 0.008043266832828522, step time: 45.728206634521484ms\r\nStep 5255, loss: 0.008018172346055508, step time: 45.5021858215332ms\r\nStep 5256, loss: 0.007981478236615658, step time: 45.717477798461914ms\r\nStep 5257, loss: 0.008028914220631123, step time: 45.72653770446777ms\r\nStep 5258, loss: 0.007998110726475716, step time: 45.57967185974121ms\r\nStep 5259, loss: 0.008005429059267044, step time: 45.81022262573242ms\r\n",,terminal_output +1271,2515818,"TERMINAL",0,0,"Step 5260, loss: 0.007933304645121098, step time: 46.64969444274902ms\r\nStep 5261, loss: 0.008030945435166359, step time: 46.08750343322754ms\r\nStep 5262, loss: 0.00792014691978693, step time: 45.62020301818848ms\r\nStep 5263, loss: 0.007914375513792038, step time: 45.72415351867676ms\r\nStep 5264, loss: 0.007976916618645191, step time: 45.79305648803711ms\r\nStep 5265, loss: 0.007912053726613522, step time: 45.54104804992676ms\r\nStep 5266, loss: 0.007931267842650414, step time: 45.96757888793945ms\r\nStep 5267, loss: 0.00796537846326828, step time: 45.743465423583984ms\r\nStep 5268, loss: 0.007908417843282223, step time: 45.9446907043457ms\r\nStep 5269, loss: 0.007923510856926441, step time: 45.828819274902344ms\r\n",,terminal_output +1272,2517795,"TERMINAL",0,0,"Step 5270, loss: 0.007982680574059486, step time: 46.89526557922363ms\r\nStep 5271, loss: 0.007919052615761757, step time: 46.19646072387695ms\r\nStep 5272, loss: 0.0079367496073246, step time: 45.76873779296875ms\r\nStep 5273, loss: 0.007984643802046776, step time: 45.89676856994629ms\r\nStep 5274, loss: 0.007955008186399937, step time: 45.68052291870117ms\r\nStep 5275, loss: 0.008023811504244804, step time: 45.668601989746094ms\r\nStep 5276, loss: 0.007994085550308228, step time: 45.83477973937988ms\r\nStep 5277, loss: 0.007984446361660957, step time: 45.7003116607666ms\r\nStep 5278, loss: 0.00801639724522829, step time: 45.84980010986328ms\r\nStep 5279, loss: 0.007986337877810001, step time: 45.851707458496094ms\r\nStep 5280, loss: 0.008049902506172657, step time: 46.979665756225586ms\r\nStep 5281, loss: 0.007952077314257622, step time: 45.89080810546875ms\r\nStep 5282, loss: 0.007982524111866951, step time: 45.87841033935547ms\r\nStep 5283, loss: 0.008022273890674114, step time: 45.76444625854492ms\r\nStep 5284, loss: 0.007952829822897911, step time: 45.713186264038086ms\r\nStep 5285, loss: 0.007998833432793617, step time: 45.769691467285156ms\r\nStep 5286, loss: 0.007986071519553661, step time: 45.62878608703613ms\r\nStep 5287, loss: 0.00791847426444292, step time: 45.69387435913086ms\r\nStep 5288, loss: 0.007961632683873177, step time: 45.777320861816406ms\r\nStep 5289, loss: 0.007964341901242733, step time: 45.84169387817383ms\r\nStep 5290, loss: 0.008009424433112144, step time: 46.854496002197266ms\r\nStep 5291, loss: 0.00791809894144535, step time: 46.0357666015625ms\r\nStep 5292, loss: 0.00792701356112957, step time: 45.915842056274414ms\r\nStep 5293, loss: 0.007956521585583687, step time: 45.82619667053223ms\r\nStep 5294, loss: 0.00790170207619667, step time: 45.8681583404541ms\r\nStep 5295, loss: 0.007950221188366413, step time: 45.82071304321289ms\r\nStep 5296, loss: 0.00795347336679697, step time: 45.7155704498291ms\r\nStep 5297, loss: 0.007964924909174442, step time: 45.84026336669922ms\r\nStep 5298, loss: 0.007942954078316689, step time: 45.73631286621094ms\r\nStep 5299, loss: 0.007950635626912117, step time: 45.66621780395508ms\r\n",,terminal_output +1273,2521729,"TERMINAL",0,0,"Step 5300, loss: 0.008015967905521393, step time: 47.14679718017578ms\r\nStep 5301, loss: 0.00794615875929594, step time: 45.996904373168945ms\r\nStep 5302, loss: 0.007967324927449226, step time: 45.97806930541992ms\r\nStep 5303, loss: 0.008074645884335041, step time: 45.71127891540527ms\r\nStep 5304, loss: 0.008036519400775433, step time: 45.86172103881836ms\r\nStep 5305, loss: 0.008220293559134007, step time: 45.75300216674805ms\r\nStep 5306, loss: 0.008007407188415527, step time: 45.71723937988281ms\r\nStep 5307, loss: 0.00805533304810524, step time: 45.90201377868652ms\r\nStep 5308, loss: 0.008174644783139229, step time: 45.67694664001465ms\r\nStep 5309, loss: 0.008015495724976063, step time: 45.768022537231445ms\r\nStep 5310, loss: 0.008009801618754864, step time: 47.24287986755371ms\r\nStep 5311, loss: 0.007985546253621578, step time: 46.25368118286133ms\r\nStep 5312, loss: 0.008010048419237137, step time: 45.93396186828613ms\r\nStep 5313, loss: 0.007968257181346416, step time: 45.8064079284668ms\r\nStep 5314, loss: 0.00794974621385336, step time: 45.780181884765625ms\r\nStep 5315, loss: 0.00801604613661766, step time: 45.5319881439209ms\r\nStep 5316, loss: 0.007954128086566925, step time: 45.682668685913086ms\r\nStep 5317, loss: 0.00794783141463995, step time: 45.71342468261719ms\r\nStep 5318, loss: 0.007996979169547558, step time: 45.563459396362305ms\r\nStep 5319, loss: 0.007935277186334133, step time: 45.891761779785156ms\r\nStep 5320, loss: 0.00790646206587553, step time: 46.58222198486328ms\r\nStep 5321, loss: 0.008003100752830505, step time: 46.33593559265137ms\r\nStep 5322, loss: 0.007939656265079975, step time: 45.84860801696777ms\r\nStep 5323, loss: 0.007896775379776955, step time: 45.66311836242676ms\r\nStep 5324, loss: 0.00797333475202322, step time: 46.23866081237793ms\r\nStep 5325, loss: 0.007968312129378319, step time: 45.50504684448242ms\r\nStep 5326, loss: 0.007935596629977226, step time: 45.8526611328125ms\r\nStep 5327, loss: 0.008001692593097687, step time: 45.86005210876465ms\r\nStep 5328, loss: 0.007971495389938354, step time: 45.615434646606445ms\r\nStep 5329, loss: 0.007982694543898106, step time: 45.865535736083984ms\r\nStep 5330, loss: 0.008032912388443947, step time: 46.58007621765137ms\r\nStep 5331, loss: 0.007965820841491222, step time: 46.219587326049805ms\r\nStep 5332, loss: 0.007982105016708374, step time: 45.665740966796875ms\r\nStep 5333, loss: 0.008004899136722088, step time: 45.859336853027344ms\r\nStep 5334, loss: 0.007981725037097931, step time: 45.77517509460449ms\r\nStep 5335, loss: 0.008046217262744904, step time: 45.60041427612305ms\r\nStep 5336, loss: 0.007978090085089207, step time: 45.8064079284668ms\r\nStep 5337, loss: 0.007996229454874992, step time: 45.59445381164551ms\r\nStep 5338, loss: 0.008015038445591927, step time: 45.69053649902344ms\r\nStep 5339, loss: 0.008006477728486061, step time: 45.747995376586914ms\r\nStep 5340, loss: 0.008026855066418648, step time: 49.59678649902344ms\r\nStep 5341, loss: 0.007970540784299374, step time: 46.09346389770508ms\r\nStep 5342, loss: 0.008056160062551498, step time: 45.684099197387695ms\r\nStep 5343, loss: 0.007996213622391224, step time: 45.87864875793457ms\r\nStep 5344, loss: 0.007967539131641388, step time: 220.90768814086914ms\r\nStep 5345, loss: 0.007986010983586311, step time: 46.80585861206055ms\r\nStep 5346, loss: 0.007992314174771309, step time: 45.861005783081055ms\r\nStep 5347, loss: 0.007995949126780033, step time: 46.27394676208496ms\r\nStep 5348, loss: 0.007942374795675278, step time: 45.845746994018555ms\r\nStep 5349, loss: 0.007977904751896858, step time: 45.90654373168945ms\r\nStep 5350, loss: 0.007938741706311703, step time: 46.28467559814453ms\r\nStep 5351, loss: 0.008003120310604572, step time: 45.9141731262207ms\r\nStep 5352, loss: 0.007969561964273453, step time: 45.82786560058594ms\r\nStep 5353, loss: 0.00792744755744934, step time: 45.66788673400879ms\r\nStep 5354, loss: 0.007911279797554016, step time: 45.89962959289551ms\r\nStep 5355, loss: 0.007940763607621193, step time: 45.598745346069336ms\r\nStep 5356, loss: 0.007960955612361431, step time: 45.63117027282715ms\r\nStep 5357, loss: 0.00793365016579628, step time: 45.86672782897949ms\r\nStep 5358, loss: 0.00800593663007021, step time: 45.62258720397949ms\r\nStep 5359, loss: 0.008004613220691681, step time: 45.75157165527344ms\r\n",,terminal_output +1274,2521929,"TERMINAL",0,0,"Step 5360, loss: 0.007950814440846443, step time: 46.654701232910156ms\r\nStep 5361, loss: 0.007931900210678577, step time: 46.22030258178711ms\r\n",,terminal_output +1275,2522275,"TERMINAL",0,0,"Step 5362, loss: 0.007985429838299751, step time: 45.789480209350586ms\r\nStep 5363, loss: 0.00800903420895338, step time: 45.62950134277344ms\r\nStep 5364, loss: 0.00795862078666687, step time: 45.8526611328125ms\r\nStep 5365, loss: 0.007956992834806442, step time: 45.534372329711914ms\r\nStep 5366, loss: 0.007979067973792553, step time: 45.80807685852051ms\r\nStep 5367, loss: 0.007996453903615475, step time: 45.84765434265137ms\r\nStep 5368, loss: 0.007998943328857422, step time: 45.7456111907959ms\r\nStep 5369, loss: 0.008024967275559902, step time: 45.880794525146484ms\r\n",,terminal_output +1276,2522564,"TERMINAL",0,0,"Step 5370, loss: 0.007959244772791862, step time: 46.74243927001953ms\r\nStep 5371, loss: 0.00793516356498003, step time: 46.22817039489746ms\r\n",,terminal_output +1277,2526796,"TERMINAL",0,0,"Step 5372, loss: 0.00798515323549509, step time: 45.80831527709961ms\r\nStep 5373, loss: 0.008021273650228977, step time: 45.72701454162598ms\r\nStep 5374, loss: 0.00801264401525259, step time: 45.8376407623291ms\r\nStep 5375, loss: 0.007904654368758202, step time: 45.53794860839844ms\r\nStep 5376, loss: 0.007902096025645733, step time: 45.8226203918457ms\r\nStep 5377, loss: 0.007982690818607807, step time: 45.62520980834961ms\r\nStep 5378, loss: 0.007928005419671535, step time: 45.61305046081543ms\r\nStep 5379, loss: 0.007936251349747181, step time: 45.805931091308594ms\r\nStep 5380, loss: 0.007921854965388775, step time: 46.69904708862305ms\r\nStep 5381, loss: 0.007889430969953537, step time: 46.38028144836426ms\r\nStep 5382, loss: 0.007890725508332253, step time: 45.71795463562012ms\r\nStep 5383, loss: 0.007880453951656818, step time: 47.963619232177734ms\r\nStep 5384, loss: 0.007880093529820442, step time: 45.78709602355957ms\r\nStep 5385, loss: 0.007974526844918728, step time: 45.64476013183594ms\r\nStep 5386, loss: 0.007915928028523922, step time: 45.737266540527344ms\r\nStep 5387, loss: 0.007967167533934116, step time: 45.5927848815918ms\r\nStep 5388, loss: 0.007907711900770664, step time: 45.79424858093262ms\r\nStep 5389, loss: 0.0079128323122859, step time: 45.66597938537598ms\r\nStep 5390, loss: 0.008042695932090282, step time: 46.64421081542969ms\r\nStep 5391, loss: 0.008068028837442398, step time: 45.94779014587402ms\r\nStep 5392, loss: 0.007927612401545048, step time: 45.75014114379883ms\r\nStep 5393, loss: 0.007985493168234825, step time: 45.84479331970215ms\r\nStep 5394, loss: 0.00792704988270998, step time: 45.66836357116699ms\r\nStep 5395, loss: 0.00794143509119749, step time: 45.75777053833008ms\r\nStep 5396, loss: 0.008020804263651371, step time: 45.73988914489746ms\r\nStep 5397, loss: 0.007972734980285168, step time: 45.75657844543457ms\r\nStep 5398, loss: 0.007982209324836731, step time: 45.810699462890625ms\r\nStep 5399, loss: 0.00794113241136074, step time: 45.84217071533203ms\r\nStep 5400, loss: 0.007930107414722443, step time: 46.828269958496094ms\r\nStep 5401, loss: 0.00794629380106926, step time: 46.04840278625488ms\r\nStep 5402, loss: 0.007955455221235752, step time: 50.487518310546875ms\r\nStep 5403, loss: 0.00792005192488432, step time: 46.96941375732422ms\r\nStep 5404, loss: 0.00793539173901081, step time: 47.18589782714844ms\r\nStep 5405, loss: 0.007946147583425045, step time: 47.193050384521484ms\r\nStep 5406, loss: 0.007946738041937351, step time: 46.86236381530762ms\r\nStep 5407, loss: 0.00791010819375515, step time: 46.61726951599121ms\r\nStep 5408, loss: 0.007954520173370838, step time: 48.102617263793945ms\r\nStep 5409, loss: 0.007934841327369213, step time: 46.22054100036621ms\r\nStep 5410, loss: 0.007894184440374374, step time: 46.57769203186035ms\r\nStep 5411, loss: 0.007895229384303093, step time: 46.080827713012695ms\r\nStep 5412, loss: 0.007906809449195862, step time: 45.816659927368164ms\r\nStep 5413, loss: 0.007983389310538769, step time: 46.05436325073242ms\r\nStep 5414, loss: 0.007892780937254429, step time: 45.735836029052734ms\r\nStep 5415, loss: 0.007897824048995972, step time: 45.6843376159668ms\r\nStep 5416, loss: 0.007910804823040962, step time: 45.790672302246094ms\r\nStep 5417, loss: 0.0078940000385046, step time: 45.725107192993164ms\r\nStep 5418, loss: 0.007952661253511906, step time: 45.84908485412598ms\r\nStep 5419, loss: 0.007949850521981716, step time: 45.82381248474121ms\r\nStep 5420, loss: 0.007925922982394695, step time: 47.06001281738281ms\r\nStep 5421, loss: 0.00795291643589735, step time: 46.01860046386719ms\r\nStep 5422, loss: 0.007960664108395576, step time: 45.83430290222168ms\r\nStep 5423, loss: 0.007959218695759773, step time: 45.801401138305664ms\r\nStep 5424, loss: 0.007975602522492409, step time: 45.69530487060547ms\r\nStep 5425, loss: 0.007996092550456524, step time: 45.654296875ms\r\nStep 5426, loss: 0.00794683862477541, step time: 45.56608200073242ms\r\nStep 5427, loss: 0.00795336440205574, step time: 45.72725296020508ms\r\nStep 5428, loss: 0.007932066917419434, step time: 46.105384826660156ms\r\nStep 5429, loss: 0.007934261113405228, step time: 45.97210884094238ms\r\nStep 5430, loss: 0.007928936742246151, step time: 47.21260070800781ms\r\nStep 5431, loss: 0.007969488389790058, step time: 46.54836654663086ms\r\nStep 5432, loss: 0.007921714335680008, step time: 46.27084732055664ms\r\nStep 5433, loss: 0.007904831320047379, step time: 46.149492263793945ms\r\nStep 5434, loss: 0.007888390682637691, step time: 46.13161087036133ms\r\nStep 5435, loss: 0.007870109751820564, step time: 46.07343673706055ms\r\nStep 5436, loss: 0.007904579862952232, step time: 46.15950584411621ms\r\nStep 5437, loss: 0.007893558591604233, step time: 46.077728271484375ms\r\nStep 5438, loss: 0.007869594730436802, step time: 46.01097106933594ms\r\nStep 5439, loss: 0.00788113847374916, step time: 45.99738121032715ms\r\n",,terminal_output +1278,2529203,"TERMINAL",0,0,"Step 5440, loss: 0.007846585474908352, step time: 47.00875282287598ms\r\nStep 5441, loss: 0.007872319780290127, step time: 46.007394790649414ms\r\nStep 5442, loss: 0.007919183000922203, step time: 45.804738998413086ms\r\nStep 5443, loss: 0.0078855836763978, step time: 45.64523696899414ms\r\nStep 5444, loss: 0.007879510521888733, step time: 45.76539993286133ms\r\nStep 5445, loss: 0.008074074983596802, step time: 45.7911491394043ms\r\nStep 5446, loss: 0.007991943508386612, step time: 45.80807685852051ms\r\nStep 5447, loss: 0.00795054528862238, step time: 45.73392868041992ms\r\nStep 5448, loss: 0.007951805368065834, step time: 45.77183723449707ms\r\nStep 5449, loss: 0.008031468838453293, step time: 45.85719108581543ms\r\nStep 5450, loss: 0.007947410456836224, step time: 45.75657844543457ms\r\nStep 5451, loss: 0.008034883067011833, step time: 45.67217826843262ms\r\nStep 5452, loss: 0.007922740653157234, step time: 45.67098617553711ms\r\nStep 5453, loss: 0.007986724376678467, step time: 45.59683799743652ms\r\nStep 5454, loss: 0.008006761781871319, step time: 45.78423500061035ms\r\nStep 5455, loss: 0.007955128327012062, step time: 45.670270919799805ms\r\nStep 5456, loss: 0.007929478771984577, step time: 45.651912689208984ms\r\nStep 5457, loss: 0.007936082780361176, step time: 45.64929008483887ms\r\nStep 5458, loss: 0.007955075241625309, step time: 45.748233795166016ms\r\nStep 5459, loss: 0.007916152477264404, step time: 45.565128326416016ms\r\nStep 5460, loss: 0.007910221815109253, step time: 45.603036880493164ms\r\nStep 5461, loss: 0.007889825850725174, step time: 45.78137397766113ms\r\nStep 5462, loss: 0.007884545251727104, step time: 45.678138732910156ms\r\nStep 5463, loss: 0.00788990780711174, step time: 45.67360877990723ms\r\nStep 5464, loss: 0.007966170087456703, step time: 46.0662841796875ms\r\nStep 5465, loss: 0.007918218150734901, step time: 46.16260528564453ms\r\nStep 5466, loss: 0.007866808213293552, step time: 46.35047912597656ms\r\nStep 5467, loss: 0.007849093526601791, step time: 46.65541648864746ms\r\nStep 5468, loss: 0.00788501650094986, step time: 47.25027084350586ms\r\nStep 5469, loss: 0.007870171219110489, step time: 47.040700912475586ms\r\nStep 5470, loss: 0.007852575741708279, step time: 49.30710792541504ms\r\nStep 5471, loss: 0.007880616933107376, step time: 46.042680740356445ms\r\nStep 5472, loss: 0.007893216796219349, step time: 45.86172103881836ms\r\nStep 5473, loss: 0.007862402126193047, step time: 45.739173889160156ms\r\nStep 5474, loss: 0.007891434244811535, step time: 45.69244384765625ms\r\nStep 5475, loss: 0.007856478914618492, step time: 46.28467559814453ms\r\nStep 5476, loss: 0.007846532389521599, step time: 46.135663986206055ms\r\nStep 5477, loss: 0.00791485421359539, step time: 45.85146903991699ms\r\nStep 5478, loss: 0.007917973212897778, step time: 45.63498497009277ms\r\nStep 5479, loss: 0.007913623936474323, step time: 45.9136962890625ms\r\n",,terminal_output +1279,2529833,"TERMINAL",0,0,"Step 5480, loss: 0.007895122282207012, step time: 49.41749572753906ms\r\nStep 5481, loss: 0.007935651578009129, step time: 45.983076095581055ms\r\nStep 5482, loss: 0.007953505963087082, step time: 45.95470428466797ms\r\nStep 5483, loss: 0.008059360086917877, step time: 45.69864273071289ms\r\nStep 5484, loss: 0.0079495869576931, step time: 45.76587677001953ms\r\nStep 5485, loss: 0.007913028821349144, step time: 45.653343200683594ms\r\nStep 5486, loss: 0.007970365695655346, step time: 45.702219009399414ms\r\nStep 5487, loss: 0.007966545410454273, step time: 45.98212242126465ms\r\nStep 5488, loss: 0.007904712110757828, step time: 45.65787315368652ms\r\nStep 5489, loss: 0.008001158013939857, step time: 45.839786529541016ms\r\n",,terminal_output +1280,2530461,"TERMINAL",0,0,"Step 5490, loss: 0.007908507250249386, step time: 46.88596725463867ms\r\nStep 5491, loss: 0.007911788299679756, step time: 46.27180099487305ms\r\nStep 5492, loss: 0.007969975471496582, step time: 45.89414596557617ms\r\nStep 5493, loss: 0.007847998291254044, step time: 45.71533203125ms\r\nStep 5494, loss: 0.007910223677754402, step time: 46.01645469665527ms\r\nStep 5495, loss: 0.00787795428186655, step time: 45.7301139831543ms\r\nStep 5496, loss: 0.007893246598541737, step time: 46.08297348022461ms\r\nStep 5497, loss: 0.007889721542596817, step time: 45.867204666137695ms\r\nStep 5498, loss: 0.007887236773967743, step time: 45.66764831542969ms\r\nStep 5499, loss: 0.007840670645236969, step time: 45.72749137878418ms\r\n",,terminal_output +1281,2530809,"TERMINAL",0,0,"Step 5500, loss: 0.007858600467443466, step time: 46.7219352722168ms\r\nStep 5501, loss: 0.007887468673288822, step time: 46.282052993774414ms\r\nStep 5502, loss: 0.007940501905977726, step time: 45.778751373291016ms\r\nStep 5503, loss: 0.007835263386368752, step time: 45.72701454162598ms\r\n",,terminal_output +1282,2531037,"TERMINAL",0,0,"Step 5504, loss: 0.00785325188189745, step time: 45.84765434265137ms\r\nStep 5505, loss: 0.00784002523869276, step time: 45.6693172454834ms\r\nStep 5506, loss: 0.007896680384874344, step time: 45.6538200378418ms\r\nStep 5507, loss: 0.007911513559520245, step time: 45.76587677001953ms\r\nStep 5508, loss: 0.007928621955215931, step time: 45.75634002685547ms\r\n",,terminal_output +1283,2531092,"TERMINAL",0,0,"Step 5509, loss: 0.007911107502877712, step time: 45.86672782897949ms\r\n",,terminal_output +1284,2531725,"TERMINAL",0,0,"Step 5510, loss: 0.007879078388214111, step time: 46.71645164489746ms\r\nStep 5511, loss: 0.0079001160338521, step time: 46.247243881225586ms\r\nStep 5512, loss: 0.007967261597514153, step time: 45.70508003234863ms\r\nStep 5513, loss: 0.007935765199363232, step time: 45.67718505859375ms\r\nStep 5514, loss: 0.007885165512561798, step time: 45.71342468261719ms\r\nStep 5515, loss: 0.00786446314305067, step time: 45.683860778808594ms\r\nStep 5516, loss: 0.007901555858552456, step time: 45.96567153930664ms\r\nStep 5517, loss: 0.0078732306137681, step time: 45.80807685852051ms\r\nStep 5518, loss: 0.007880176417529583, step time: 45.84097862243652ms\r\nStep 5519, loss: 0.007907049730420113, step time: 45.95613479614258ms\r\n",,terminal_output +1285,2532344,"TERMINAL",0,0,"Step 5520, loss: 0.007919959723949432, step time: 46.570777893066406ms\r\nStep 5521, loss: 0.007881750352680683, step time: 46.309709548950195ms\r\nStep 5522, loss: 0.007848821580410004, step time: 45.6693172454834ms\r\nStep 5523, loss: 0.007861066609621048, step time: 45.74131965637207ms\r\nStep 5524, loss: 0.007880340330302715, step time: 45.815229415893555ms\r\nStep 5525, loss: 0.007920009084045887, step time: 45.72701454162598ms\r\nStep 5526, loss: 0.007957917638123035, step time: 45.855045318603516ms\r\nStep 5527, loss: 0.007829533889889717, step time: 45.59326171875ms\r\nStep 5528, loss: 0.007841717451810837, step time: 45.73988914489746ms\r\nStep 5529, loss: 0.007946046069264412, step time: 45.891523361206055ms\r\n",,terminal_output +1286,2532742,"TERMINAL",0,0,"Step 5530, loss: 0.007831734605133533, step time: 46.60367965698242ms\r\nStep 5531, loss: 0.007877186872065067, step time: 45.96424102783203ms\r\nStep 5532, loss: 0.007947511970996857, step time: 45.78256607055664ms\r\nStep 5533, loss: 0.007902758195996284, step time: 45.98402976989746ms\r\n^CTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/train_tokenizer_single_sample.py"", line 240, in \r\n jax.block_until_ready(loss)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3117, in block_until_ready\r\n try_to_block(arrays[0])\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3100, in try_to_block\r\n return x.block_until_ready()\r\nKeyboardInterrupt\r\nTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/train_tokenizer_single_sample.py"", line 240, in \r\n jax.block_until_ready(loss)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3117, in block_until_ready\r\n try_to_block(arrays[0])\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/jax/_src/api.py"", line 3100, in try_to_block\r\n return x.block_until_ready()\r\nKeyboardInterrupt\r\n",,terminal_output +1287,2532997,"TERMINAL",0,0,"^CException ignored in atexit callback: .teardown_atexit at 0x1539140ddfc0>\r\nTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/service_connection.py"", line 94, in teardown_atexit\r\n conn.teardown(hooks.exit_code)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/service_connection.py"", line 226, in teardown\r\n self._router.join()\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/interface/router.py"", line 75, in join\r\n self._thread.join()\r\n File ""/home/hk-project-pai00039/tum_ind3695/.local/share/uv/python/cpython-3.10.17-linux-x86_64-gnu/lib/python3.10/threading.py"", line 1096, in join\r\n self._wait_for_tstate_lock()\r\n File ""/home/hk-project-pai00039/tum_ind3695/.local/share/uv/python/cpython-3.10.17-linux-x86_64-gnu/lib/python3.10/threading.py"", line 1116, in _wait_for_tstate_lock\r\n if lock.acquire(block, timeout):\r\nKeyboardInterrupt: \r\n",,terminal_output +1288,2533175,"TERMINAL",0,0,"^CException ignored in: .remove at 0x1539ec72a3b0>\r\nTraceback (most recent call last):\r\n File ""/home/hk-project-pai00039/tum_ind3695/.local/share/uv/python/cpython-3.10.17-linux-x86_64-gnu/lib/python3.10/weakref.py"", line 370, in remove\r\n def remove(k, selfref=ref(self)):\r\nKeyboardInterrupt: \r\n",,terminal_output +1289,2533676,"TERMINAL",0,0,"^C",,terminal_output +1290,2534085,"TERMINAL",0,0,"]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h[tum_ind3695@hkn0505 jafar_run_overfit]$ ",,terminal_output +1291,2534301,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +1292,2540269,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +1293,2541613,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",609,0,"",shellscript,selection_command +1294,2541766,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",610,0,"",shellscript,selection_command +1295,2541896,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",611,0,"",shellscript,selection_command +1296,2542023,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",612,0,"",shellscript,selection_command +1297,2542166,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",613,0,"",shellscript,selection_command +1298,2542301,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",614,0,"",shellscript,selection_command +1299,2542449,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",615,0,"",shellscript,selection_command +1300,2544204,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",615,0,"5",shellscript,content +1301,2544206,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",616,0,"",shellscript,selection_keyboard +1302,2544608,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",615,1,"",shellscript,content +1303,2544734,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",614,1,"",shellscript,content +1304,2544849,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",614,0,"5",shellscript,content +1305,2544850,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",615,0,"",shellscript,selection_keyboard +1306,2545563,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",614,0,"",shellscript,selection_command +1307,3655466,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",614,1,"",shellscript,content +1308,3655830,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",614,0,"1",shellscript,content +1309,3655831,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",615,0,"",shellscript,selection_keyboard +1310,3655993,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",615,0,"0",shellscript,content +1311,3655994,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",616,0,"",shellscript,selection_keyboard +1312,3656370,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",615,0,"",shellscript,selection_command +1313,3658486,"TERMINAL",0,0,"./slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",,terminal_output +1314,3661007,"TERMINAL",0,0,"\r\n[?2004l\r# Log the sbatch script\r\ncat $0\r\n\r\nmodule unload mpi/openmpi/5.0\r\nmodule unload devel/cuda/12.4\r\nsource .venv_jafar/bin/activate\r\n\r\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\r\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\r\n\r\njob_name=$SLURM_JOB_NAME\r\nslurm_job_id=$SLURM_JOB_ID\r\n\r\ntags=""overfit_sample tokenizer debug alfred""\r\n\r\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\r\nmkdir -p $CHECKPOINT_DIR\r\n\r\nenv | grep SLURM\r\n\r\npython train_tokenizer_single_sample.py \\r\n --ckpt_dir $CHECKPOINT_DIR \\r\n --batch_size=1 \\r\n --min_lr=4.3e-5 \\r\n --max_lr=4.3e-4 \\r\n --log_image_interval=100 \\r\n --log \\r\n --entity instant-uv \\r\n --project jafar \\r\n --name $job_name \\r\n --tags $tags \\r\n --model_dim 32 \\r\n --num_blocks 4 \\r\n --data_dir $tf_records_dir\r\n",,terminal_output +1315,3661176,"TERMINAL",0,0,"SLURM_STEP_NUM_TASKS=1\r\nSLURM_JOB_USER=tum_ind3695\r\nSLURM_TASKS_PER_NODE=1\r\nSLURM_JOB_UID=991285\r\nSLURM_TASK_PID=723504\r\nSLURM_JOB_GPUS=3\r\nSLURM_LOCALID=0\r\nSLURM_SUBMIT_DIR=/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit\r\nSLURMD_NODENAME=hkn0505\r\nSLURM_JOB_START_TIME=1751039803\r\nSLURM_STEP_NODELIST=hkn0505\r\nSLURM_CLUSTER_NAME=hk\r\nSLURM_JOB_END_TIME=1751041603\r\nSLURM_PMI2_SRUN_PORT=44943\r\nSLURM_CPUS_ON_NODE=8\r\nSLURM_JOB_CPUS_PER_NODE=8\r\nSLURM_GPUS_ON_NODE=1\r\nSLURM_GTIDS=0\r\nSLURM_JOB_PARTITION=accelerated\r\nSLURM_TRES_PER_TASK=cpu=8\r\nSLURM_OOM_KILL_STEP=0\r\nSLURM_JOB_NUM_NODES=1\r\nSLURM_STEPID=4294967290\r\nSLURM_JOBID=3300233\r\nSLURM_PTY_PORT=45785\r\nSLURM_JOB_QOS=normal\r\nSLURM_LAUNCH_NODE_IPADDR=10.0.7.201\r\nSLURM_PTY_WIN_ROW=68\r\nSLURM_PMI2_PROC_MAPPING=(vector,(0,1,1))\r\nSLURMD_DEBUG=2\r\nSLURM_PROCID=0\r\nSLURM_CPUS_PER_TASK=8\r\nSLURM_NTASKS=1\r\nSLURM_TOPOLOGY_ADDR=hkibb.hkibbi1.hkibbi1e10.hkn0505\r\nSLURM_TOPOLOGY_ADDR_PATTERN=switch.switch.switch.node\r\nSLURM_SRUN_COMM_HOST=10.0.7.201\r\nSLURM_SCRIPT_CONTEXT=prolog_task\r\nSLURM_PTY_WIN_COL=184\r\nSLURM_NODELIST=hkn0505\r\nSLURM_SRUN_COMM_PORT=44705\r\nSLURM_STEP_ID=4294967290\r\nSLURM_JOB_ACCOUNT=hk-project-p0023960\r\nSLURM_PRIO_PROCESS=0\r\nSLURM_NPROCS=1\r\nSLURM_NNODES=1\r\nSLURM_SUBMIT_HOST=hkn1993.localdomain\r\nSLURM_JOB_ID=3300233\r\nSLURM_NODEID=0\r\nSLURM_STEP_NUM_NODES=1\r\nSLURM_STEP_TASKS_PER_NODE=1\r\nSLURM_MPI_TYPE=pmi2\r\nSLURM_PMI2_STEP_NODES=hkn0505\r\nSLURM_CONF=/etc/slurm/slurm.conf\r\nSLURM_JOB_NAME=interactive\r\nSLURM_NTASKS_PER_NODE=1\r\nSLURM_STEP_LAUNCHER_PORT=44705\r\nSLURM_JOB_GID=502289\r\nSLURM_JOB_NODELIST=hkn0505\r\n",,terminal_output +1316,3667794,"TERMINAL",0,0,"2025-06-27 18:24:15.769796: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\r\nWARNING: All log messages before absl::InitializeLog() is called are written to STDERR\r\nE0000 00:00:1751041455.782539 736603 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\r\nE0000 00:00:1751041455.786707 736603 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\r\nW0000 00:00:1751041455.799147 736603 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751041455.799164 736603 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751041455.799166 736603 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751041455.799168 736603 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\n",,terminal_output +1317,3678798,"TERMINAL",0,0,"W0000 00:00:1751041466.589918 736603 gpu_device.cc:2341] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.\r\nSkipping registering GPU devices...\r\n",,terminal_output +1318,3679794,"TERMINAL",0,0,"Running on 1 devices.\r\n",,terminal_output +1319,3681857,"TERMINAL",0,0,"wandb: Currently logged in as: avocadoali (instant-uv) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin\r\nwandb: Tracking run with wandb version 0.19.11\r\nwandb: Run data is saved locally in /hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/wandb/run-20250627_182427-4agzsuf5\r\nwandb: Run `wandb offline` to turn off syncing.\r\nwandb: Syncing run interactive\r\nwandb: ⭐️ View project at https://wandb.ai/instant-uv/jafar\r\nwandb: 🚀 View run at https://wandb.ai/instant-uv/jafar/runs/4agzsuf5\r\n",,terminal_output +1320,3689798,"TERMINAL",0,0,"2025-06-27 18:24:37.023195: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1321,3691820,"TERMINAL",0,0,"2025-06-27 18:24:39.343037: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1322,3692868,"TERMINAL",0,0,"Counting all components: ['encoder', 'vq', 'decoder']\r\nParameter counts:\r\n{'encoder': 41568, 'vq': 32768, 'decoder': 41552, 'total': 115888}\r\nStarting training from step 0...\r\nbatch shape: (1, 16, 90, 160, 3)\r\n",,terminal_output +1323,3699798,"TERMINAL",0,0,"2025-06-27 18:24:47.246158: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:24:47.246265: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:24:47.246337: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:24:47.246362: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:24:47.246401: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:24:47.246870: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1324,3723803,"TERMINAL",0,0,"Step 0, loss: 0.2588540017604828, step time: 30638.042211532593ms\r\nStep 1, loss: 0.25632384419441223, step time: 48.95520210266113ms\r\nStep 2, loss: 0.25370118021965027, step time: 48.92897605895996ms\r\n",,terminal_output +1325,3725796,"TERMINAL",0,0,"Step 3, loss: 0.25102612376213074, step time: 49.018144607543945ms\r\nStep 4, loss: 0.24851061403751373, step time: 49.05366897583008ms\r\nStep 5, loss: 0.24617347121238708, step time: 47.36828804016113ms\r\nStep 6, loss: 0.2437678575515747, step time: 46.97680473327637ms\r\nStep 7, loss: 0.241388201713562, step time: 47.11294174194336ms\r\nStep 8, loss: 0.23891636729240417, step time: 47.15228080749512ms\r\nStep 9, loss: 0.23664674162864685, step time: 47.04618453979492ms\r\nStep 10, loss: 0.2343541532754898, step time: 46.85568809509277ms\r\nStep 11, loss: 0.23213382065296173, step time: 47.036170959472656ms\r\nStep 12, loss: 0.22984857857227325, step time: 47.0428466796875ms\r\nStep 13, loss: 0.22761084139347076, step time: 47.14775085449219ms\r\nStep 14, loss: 0.22571691870689392, step time: 47.058820724487305ms\r\nStep 15, loss: 0.2239087074995041, step time: 46.54693603515625ms\r\nStep 16, loss: 0.22216030955314636, step time: 47.27625846862793ms\r\nStep 17, loss: 0.22030605375766754, step time: 47.11747169494629ms\r\nStep 18, loss: 0.21858550608158112, step time: 47.28126525878906ms\r\nStep 19, loss: 0.21711067855358124, step time: 47.154903411865234ms\r\nStep 20, loss: 0.21537752449512482, step time: 46.872854232788086ms\r\nStep 21, loss: 0.21363909542560577, step time: 47.15085029602051ms\r\nStep 22, loss: 0.21193832159042358, step time: 47.028303146362305ms\r\nStep 23, loss: 0.2102765291929245, step time: 47.09124565124512ms\r\nStep 24, loss: 0.20878584682941437, step time: 46.74386978149414ms\r\nStep 25, loss: 0.20721258223056793, step time: 46.790361404418945ms\r\nStep 26, loss: 0.205897718667984, step time: 47.15323448181152ms\r\nStep 27, loss: 0.20423559844493866, step time: 47.00922966003418ms\r\nStep 28, loss: 0.2027696669101715, step time: 47.451019287109375ms\r\nStep 29, loss: 0.2011372298002243, step time: 47.12414741516113ms\r\nStep 30, loss: 0.19987423717975616, step time: 46.83232307434082ms\r\nStep 31, loss: 0.19857843220233917, step time: 47.19829559326172ms\r\nStep 32, loss: 0.19706743955612183, step time: 47.095298767089844ms\r\nStep 33, loss: 0.19596043229103088, step time: 47.02115058898926ms\r\nStep 34, loss: 0.19475919008255005, step time: 46.95773124694824ms\r\nStep 35, loss: 0.19349515438079834, step time: 46.80275917053223ms\r\nStep 36, loss: 0.19231966137886047, step time: 47.011613845825195ms\r\nStep 37, loss: 0.19106946885585785, step time: 47.19376564025879ms\r\nStep 38, loss: 0.18974639475345612, step time: 47.09291458129883ms\r\nStep 39, loss: 0.18839029967784882, step time: 47.16920852661133ms\r\nStep 40, loss: 0.18729807436466217, step time: 46.87190055847168ms\r\nStep 41, loss: 0.18631304800510406, step time: 47.147274017333984ms\r\nStep 42, loss: 0.18518875539302826, step time: 47.10268974304199ms\r\nStep 43, loss: 0.18399591743946075, step time: 46.68426513671875ms\r\nStep 44, loss: 0.1828818917274475, step time: 47.261714935302734ms\r\n",,terminal_output +1326,3728799,"TERMINAL",0,0,"Step 45, loss: 0.18207907676696777, step time: 46.77629470825195ms\r\nStep 46, loss: 0.18095140159130096, step time: 47.101736068725586ms\r\nStep 47, loss: 0.18003655970096588, step time: 47.16920852661133ms\r\nStep 48, loss: 0.17919646203517914, step time: 47.048091888427734ms\r\nStep 49, loss: 0.17814311385154724, step time: 47.10984230041504ms\r\nStep 50, loss: 0.17705172300338745, step time: 46.96488380432129ms\r\nStep 51, loss: 0.17623497545719147, step time: 47.01375961303711ms\r\nStep 52, loss: 0.17512616515159607, step time: 47.32966423034668ms\r\nStep 53, loss: 0.17420241236686707, step time: 46.44060134887695ms\r\nStep 54, loss: 0.1735842227935791, step time: 47.18828201293945ms\r\nStep 55, loss: 0.17293907701969147, step time: 46.77534103393555ms\r\nStep 56, loss: 0.17199254035949707, step time: 47.19114303588867ms\r\nStep 57, loss: 0.17119836807250977, step time: 47.25313186645508ms\r\nStep 58, loss: 0.17045216262340546, step time: 47.14488983154297ms\r\nStep 59, loss: 0.1696501225233078, step time: 47.19805717468262ms\r\nStep 60, loss: 0.16896313428878784, step time: 46.761512756347656ms\r\nStep 61, loss: 0.16830582916736603, step time: 47.06001281738281ms\r\nStep 62, loss: 0.1676800549030304, step time: 46.94056510925293ms\r\nStep 63, loss: 0.1670731157064438, step time: 46.63372039794922ms\r\nStep 64, loss: 0.1663384884595871, step time: 47.01066017150879ms\r\nStep 65, loss: 0.16554361581802368, step time: 46.88382148742676ms\r\nStep 66, loss: 0.16474205255508423, step time: 47.040700912475586ms\r\nStep 67, loss: 0.16422341763973236, step time: 47.09935188293457ms\r\nStep 68, loss: 0.1634874790906906, step time: 47.17731475830078ms\r\nStep 69, loss: 0.16287028789520264, step time: 47.07479476928711ms\r\nStep 70, loss: 0.16225475072860718, step time: 46.93031311035156ms\r\nStep 71, loss: 0.16150984168052673, step time: 47.1348762512207ms\r\nStep 72, loss: 0.16100169718265533, step time: 47.104597091674805ms\r\nStep 73, loss: 0.16032330691814423, step time: 47.029733657836914ms\r\nStep 74, loss: 0.1597132831811905, step time: 47.09339141845703ms\r\nStep 75, loss: 0.15898548066616058, step time: 46.71764373779297ms\r\nStep 76, loss: 0.15838508307933807, step time: 47.04642295837402ms\r\nStep 77, loss: 0.15774747729301453, step time: 47.45340347290039ms\r\nStep 78, loss: 0.15703000128269196, step time: 47.14632034301758ms\r\nStep 79, loss: 0.1564079076051712, step time: 47.03640937805176ms\r\nStep 80, loss: 0.1557472050189972, step time: 46.849966049194336ms\r\nStep 81, loss: 0.15512359142303467, step time: 47.08099365234375ms\r\nStep 82, loss: 0.15444275736808777, step time: 46.99444770812988ms\r\nStep 83, loss: 0.15373380482196808, step time: 46.90861701965332ms\r\nStep 84, loss: 0.1532105952501297, step time: 47.075510025024414ms\r\nStep 85, loss: 0.15253989398479462, step time: 46.860456466674805ms\r\nStep 86, loss: 0.15191680192947388, step time: 47.1806526184082ms\r\nStep 87, loss: 0.15131589770317078, step time: 47.10125923156738ms\r\nStep 88, loss: 0.15060220658779144, step time: 47.13010787963867ms\r\nStep 89, loss: 0.15011972188949585, step time: 47.13773727416992ms\r\nStep 90, loss: 0.149428129196167, step time: 46.813011169433594ms\r\nStep 91, loss: 0.14878955483436584, step time: 47.151803970336914ms\r\nStep 92, loss: 0.14819972217082977, step time: 47.121524810791016ms\r\nStep 93, loss: 0.14765413105487823, step time: 46.50735855102539ms\r\nStep 94, loss: 0.14702753722667694, step time: 47.1339225769043ms\r\nStep 95, loss: 0.14652061462402344, step time: 46.75769805908203ms\r\nStep 96, loss: 0.14593690633773804, step time: 47.16372489929199ms\r\nStep 97, loss: 0.14541099965572357, step time: 47.112464904785156ms\r\nStep 98, loss: 0.14478431642055511, step time: 47.0433235168457ms\r\nStep 99, loss: 0.1442810297012329, step time: 47.09935188293457ms\r\n",,terminal_output +1327,3734811,"TERMINAL",0,0,"Step 100, loss: 0.14370223879814148, step time: 47.13773727416992ms\r\nStep 101, loss: 0.1433049589395523, step time: 47.2102165222168ms\r\nStep 102, loss: 0.14266212284564972, step time: 47.135114669799805ms\r\nStep 103, loss: 0.14202828705310822, step time: 47.11580276489258ms\r\nStep 104, loss: 0.1414460986852646, step time: 47.14703559875488ms\r\nStep 105, loss: 0.14091458916664124, step time: 46.67806625366211ms\r\nStep 106, loss: 0.140398308634758, step time: 47.21331596374512ms\r\nStep 107, loss: 0.13982871174812317, step time: 46.991586685180664ms\r\nStep 108, loss: 0.13927516341209412, step time: 46.7989444732666ms\r\nStep 109, loss: 0.13885462284088135, step time: 47.05023765563965ms\r\nStep 110, loss: 0.1383342146873474, step time: 46.88596725463867ms\r\nStep 111, loss: 0.13799844682216644, step time: 46.96512222290039ms\r\nStep 112, loss: 0.1373925507068634, step time: 47.20878601074219ms\r\nStep 113, loss: 0.136880025267601, step time: 46.83852195739746ms\r\nStep 114, loss: 0.136351078748703, step time: 47.18637466430664ms\r\nStep 115, loss: 0.1358991116285324, step time: 46.866655349731445ms\r\nStep 116, loss: 0.13529415428638458, step time: 47.21999168395996ms\r\nStep 117, loss: 0.13491946458816528, step time: 47.08123207092285ms\r\nStep 118, loss: 0.13437411189079285, step time: 47.24526405334473ms\r\nStep 119, loss: 0.13399861752986908, step time: 46.71621322631836ms\r\nStep 120, loss: 0.13342896103858948, step time: 46.83828353881836ms\r\nStep 121, loss: 0.13294731080532074, step time: 46.982765197753906ms\r\nStep 122, loss: 0.13254886865615845, step time: 47.22714424133301ms\r\nStep 123, loss: 0.13204187154769897, step time: 47.112226486206055ms\r\nStep 124, loss: 0.13151636719703674, step time: 47.08099365234375ms\r\nStep 125, loss: 0.1311490684747696, step time: 46.83804512023926ms\r\nStep 126, loss: 0.13062603771686554, step time: 47.06454277038574ms\r\nStep 127, loss: 0.13012413680553436, step time: 47.10030555725098ms\r\nStep 128, loss: 0.12968489527702332, step time: 47.12653160095215ms\r\nStep 129, loss: 0.12924665212631226, step time: 46.86307907104492ms\r\nStep 130, loss: 0.12875190377235413, step time: 46.83232307434082ms\r\nStep 131, loss: 0.12830418348312378, step time: 46.8597412109375ms\r\nStep 132, loss: 0.12783357501029968, step time: 47.048091888427734ms\r\nStep 133, loss: 0.1273144781589508, step time: 46.996116638183594ms\r\nStep 134, loss: 0.12682276964187622, step time: 47.13177680969238ms\r\nStep 135, loss: 0.12632952630519867, step time: 47.17516899108887ms\r\nStep 136, loss: 0.12592719495296478, step time: 47.29914665222168ms\r\nStep 137, loss: 0.12555672228336334, step time: 47.20449447631836ms\r\nStep 138, loss: 0.12509405612945557, step time: 46.991825103759766ms\r\nStep 139, loss: 0.12456151843070984, step time: 46.99063301086426ms\r\nStep 140, loss: 0.12413745373487473, step time: 46.816349029541016ms\r\nStep 141, loss: 0.12376100569963455, step time: 46.980857849121094ms\r\nStep 142, loss: 0.12335172295570374, step time: 46.96249961853027ms\r\nStep 143, loss: 0.12293269485235214, step time: 46.998023986816406ms\r\nStep 144, loss: 0.12248598039150238, step time: 47.21355438232422ms\r\nStep 145, loss: 0.12209200114011765, step time: 47.54281044006348ms\r\nStep 146, loss: 0.12166392058134079, step time: 46.97060585021973ms\r\nStep 147, loss: 0.12116795778274536, step time: 46.91910743713379ms\r\nStep 148, loss: 0.1207425445318222, step time: 47.019243240356445ms\r\nStep 149, loss: 0.12028437107801437, step time: 47.00660705566406ms\r\nStep 150, loss: 0.11991284042596817, step time: 46.768903732299805ms\r\nStep 151, loss: 0.11958646774291992, step time: 46.66781425476074ms\r\nStep 152, loss: 0.11927706003189087, step time: 46.94247245788574ms\r\nStep 153, loss: 0.11883459240198135, step time: 47.04761505126953ms\r\nStep 154, loss: 0.11853121221065521, step time: 47.098398208618164ms\r\nStep 155, loss: 0.11818752437829971, step time: 46.78201675415039ms\r\nStep 156, loss: 0.11775194853544235, step time: 51.10955238342285ms\r\nStep 157, loss: 0.11744123697280884, step time: 47.044992446899414ms\r\nStep 158, loss: 0.11704645305871964, step time: 47.138214111328125ms\r\nStep 159, loss: 0.11666730791330338, step time: 47.0738410949707ms\r\nStep 160, loss: 0.11633703857660294, step time: 46.72527313232422ms\r\nStep 161, loss: 0.11593489348888397, step time: 46.97561264038086ms\r\nStep 162, loss: 0.11569484323263168, step time: 46.53763771057129ms\r\nStep 163, loss: 0.11529304087162018, step time: 47.173261642456055ms\r\nStep 164, loss: 0.1149464026093483, step time: 46.99087142944336ms\r\nStep 165, loss: 0.11464115977287292, step time: 46.776771545410156ms\r\nStep 166, loss: 0.1142633855342865, step time: 47.12343215942383ms\r\nStep 167, loss: 0.11389214545488358, step time: 46.99230194091797ms\r\nStep 168, loss: 0.11353147029876709, step time: 47.20592498779297ms\r\nStep 169, loss: 0.11325124651193619, step time: 47.087669372558594ms\r\nStep 170, loss: 0.11273884028196335, step time: 46.802520751953125ms\r\nStep 171, loss: 0.11246760934591293, step time: 47.19066619873047ms\r\nStep 172, loss: 0.11215664446353912, step time: 47.03807830810547ms\r\nStep 173, loss: 0.11178216338157654, step time: 46.65398597717285ms\r\nStep 174, loss: 0.1114940196275711, step time: 47.188520431518555ms\r\nStep 175, loss: 0.11118083447217941, step time: 46.73504829406738ms\r\nStep 176, loss: 0.11086312681436539, step time: 46.9820499420166ms\r\nStep 177, loss: 0.11056369543075562, step time: 47.08218574523926ms\r\nStep 178, loss: 0.11025260388851166, step time: 47.11747169494629ms\r\nStep 179, loss: 0.11001325398683548, step time: 47.44076728820801ms\r\nStep 180, loss: 0.10971887409687042, step time: 46.79679870605469ms\r\nStep 181, loss: 0.10937283933162689, step time: 47.16348648071289ms\r\nStep 182, loss: 0.10908651351928711, step time: 47.17063903808594ms\r\nStep 183, loss: 0.10879553109407425, step time: 46.87690734863281ms\r\nStep 184, loss: 0.1084529235959053, step time: 47.05095291137695ms\r\nStep 185, loss: 0.10807402431964874, step time: 46.77772521972656ms\r\nStep 186, loss: 0.10767654329538345, step time: 47.048091888427734ms\r\nStep 187, loss: 0.10738369822502136, step time: 47.0881462097168ms\r\nStep 188, loss: 0.10710352659225464, step time: 47.06740379333496ms\r\nStep 189, loss: 0.1068141758441925, step time: 47.15108871459961ms\r\nStep 190, loss: 0.10648244619369507, step time: 46.87905311584473ms\r\nStep 191, loss: 0.10611268877983093, step time: 46.99993133544922ms\r\nStep 192, loss: 0.10586913675069809, step time: 47.20926284790039ms\r\nStep 193, loss: 0.10546419024467468, step time: 47.05643653869629ms\r\nStep 194, loss: 0.10510364174842834, step time: 47.17254638671875ms\r\nStep 195, loss: 0.10468297451734543, step time: 46.89502716064453ms\r\nStep 196, loss: 0.10427547246217728, step time: 46.59414291381836ms\r\nStep 197, loss: 0.1039842739701271, step time: 47.23978042602539ms\r\nStep 198, loss: 0.10356908291578293, step time: 47.13702201843262ms\r\nStep 199, loss: 0.10319658368825912, step time: 46.95534706115723ms\r\nStep 200, loss: 0.10286301374435425, step time: 47.533273696899414ms\r\nStep 201, loss: 0.10256920009851456, step time: 46.86594009399414ms\r\nStep 202, loss: 0.10221586376428604, step time: 47.21212387084961ms\r\nStep 203, loss: 0.10194651782512665, step time: 47.128915786743164ms\r\nStep 204, loss: 0.10163696855306625, step time: 47.567129135131836ms\r\nStep 205, loss: 0.10136400163173676, step time: 46.803951263427734ms\r\nStep 206, loss: 0.1010265201330185, step time: 47.16968536376953ms\r\nStep 207, loss: 0.1006293073296547, step time: 47.29938507080078ms\r\nStep 208, loss: 0.10029143840074539, step time: 47.07932472229004ms\r\n",,terminal_output +1328,3746870,"TERMINAL",0,0,"Step 209, loss: 0.10000259429216385, step time: 47.11031913757324ms\r\nStep 210, loss: 0.09964495152235031, step time: 46.88262939453125ms\r\nStep 211, loss: 0.09930534660816193, step time: 47.01709747314453ms\r\nStep 212, loss: 0.09896154701709747, step time: 47.10674285888672ms\r\nStep 213, loss: 0.09867008030414581, step time: 47.119140625ms\r\nStep 214, loss: 0.09833896160125732, step time: 47.031402587890625ms\r\nStep 215, loss: 0.09799379855394363, step time: 46.900033950805664ms\r\nStep 216, loss: 0.09767057001590729, step time: 47.00040817260742ms\r\nStep 217, loss: 0.09724080562591553, step time: 47.16038703918457ms\r\nStep 218, loss: 0.09692220389842987, step time: 47.30939865112305ms\r\nStep 219, loss: 0.09660257399082184, step time: 47.39809036254883ms\r\nStep 220, loss: 0.09619900584220886, step time: 47.24454879760742ms\r\nStep 221, loss: 0.09592869877815247, step time: 47.49035835266113ms\r\nStep 222, loss: 0.09554395824670792, step time: 47.449350357055664ms\r\nStep 223, loss: 0.095191091299057, step time: 48.20537567138672ms\r\nStep 224, loss: 0.09483958780765533, step time: 47.147274017333984ms\r\nStep 225, loss: 0.09451817721128464, step time: 46.767234802246094ms\r\nStep 226, loss: 0.09418708086013794, step time: 47.104597091674805ms\r\nStep 227, loss: 0.09393803030252457, step time: 47.16134071350098ms\r\nStep 228, loss: 0.09356603026390076, step time: 46.52833938598633ms\r\nStep 229, loss: 0.09313967823982239, step time: 47.03330993652344ms\r\nStep 230, loss: 0.0928269773721695, step time: 46.82588577270508ms\r\nStep 231, loss: 0.09244920313358307, step time: 47.11103439331055ms\r\nStep 232, loss: 0.09213431179523468, step time: 47.14202880859375ms\r\nStep 233, loss: 0.09182045608758926, step time: 46.9818115234375ms\r\nStep 234, loss: 0.09146911650896072, step time: 46.95487022399902ms\r\nStep 235, loss: 0.09119055420160294, step time: 46.90361022949219ms\r\nStep 236, loss: 0.0908202975988388, step time: 47.0881462097168ms\r\nStep 237, loss: 0.09048065543174744, step time: 46.97918891906738ms\r\nStep 238, loss: 0.0902232900261879, step time: 47.09672927856445ms\r\nStep 239, loss: 0.08987390995025635, step time: 46.965599060058594ms\r\nStep 240, loss: 0.0895528793334961, step time: 46.590328216552734ms\r\nStep 241, loss: 0.08916240185499191, step time: 47.083377838134766ms\r\nStep 242, loss: 0.08886241912841797, step time: 46.96536064147949ms\r\nStep 243, loss: 0.0885821059346199, step time: 47.1501350402832ms\r\nStep 244, loss: 0.08823275566101074, step time: 47.00303077697754ms\r\nStep 245, loss: 0.0879596620798111, step time: 46.845197677612305ms\r\nStep 246, loss: 0.08759163320064545, step time: 48.628807067871094ms\r\nStep 247, loss: 0.08722583949565887, step time: 47.098636627197266ms\r\nStep 248, loss: 0.08696140348911285, step time: 47.07527160644531ms\r\nStep 249, loss: 0.08654806017875671, step time: 47.16610908508301ms\r\nStep 250, loss: 0.08618397265672684, step time: 47.03688621520996ms\r\nStep 251, loss: 0.08599361777305603, step time: 47.09219932556152ms\r\nStep 252, loss: 0.08556482940912247, step time: 46.36049270629883ms\r\nStep 253, loss: 0.08516348153352737, step time: 47.12820053100586ms\r\nStep 254, loss: 0.08483725786209106, step time: 47.01423645019531ms\r\nStep 255, loss: 0.0844462588429451, step time: 46.81706428527832ms\r\nStep 256, loss: 0.08409763127565384, step time: 47.14512825012207ms\r\nStep 257, loss: 0.08372966945171356, step time: 48.1569766998291ms\r\nStep 258, loss: 0.08338310569524765, step time: 47.16753959655762ms\r\nStep 259, loss: 0.0830516442656517, step time: 47.017812728881836ms\r\nStep 260, loss: 0.08267562836408615, step time: 46.846628189086914ms\r\nStep 261, loss: 0.08226979523897171, step time: 47.23501205444336ms\r\nStep 262, loss: 0.08195810765028, step time: 46.965837478637695ms\r\nStep 263, loss: 0.08158592134714127, step time: 46.945810317993164ms\r\nStep 264, loss: 0.08126642554998398, step time: 46.70858383178711ms\r\nStep 265, loss: 0.08084683120250702, step time: 46.77581787109375ms\r\nStep 266, loss: 0.08054066449403763, step time: 47.110557556152344ms\r\nStep 267, loss: 0.0801938995718956, step time: 47.06859588623047ms\r\nStep 268, loss: 0.07986930012702942, step time: 47.46866226196289ms\r\nStep 269, loss: 0.07954313606023788, step time: 47.174930572509766ms\r\nStep 270, loss: 0.07922237366437912, step time: 46.884775161743164ms\r\nStep 271, loss: 0.07894504070281982, step time: 47.25790023803711ms\r\nStep 272, loss: 0.07857024669647217, step time: 47.16300964355469ms\r\nStep 273, loss: 0.07817529141902924, step time: 47.2254753112793ms\r\nStep 274, loss: 0.07792884111404419, step time: 47.209739685058594ms\r\nStep 275, loss: 0.07759348303079605, step time: 46.888113021850586ms\r\nStep 276, loss: 0.07731612026691437, step time: 46.60916328430176ms\r\nStep 277, loss: 0.07698444277048111, step time: 47.138214111328125ms\r\nStep 278, loss: 0.07663720846176147, step time: 47.09506034851074ms\r\nStep 279, loss: 0.07631456106901169, step time: 47.04403877258301ms\r\nStep 280, loss: 0.07605161517858505, step time: 46.91910743713379ms\r\nStep 281, loss: 0.07577818632125854, step time: 47.14083671569824ms\r\nStep 282, loss: 0.07545248419046402, step time: 47.08218574523926ms\r\nStep 283, loss: 0.0751645416021347, step time: 46.991825103759766ms\r\nStep 284, loss: 0.07489757984876633, step time: 47.145843505859375ms\r\nStep 285, loss: 0.07453572750091553, step time: 46.8747615814209ms\r\nStep 286, loss: 0.07426051795482635, step time: 47.04546928405762ms\r\nStep 287, loss: 0.07399183511734009, step time: 47.18494415283203ms\r\nStep 288, loss: 0.07362183183431625, step time: 46.825408935546875ms\r\nStep 289, loss: 0.0734085664153099, step time: 47.00517654418945ms\r\nStep 290, loss: 0.07314790040254593, step time: 46.874046325683594ms\r\nStep 291, loss: 0.07284430414438248, step time: 47.05476760864258ms\r\nStep 292, loss: 0.07250440120697021, step time: 47.26767539978027ms\r\nStep 293, loss: 0.07222133874893188, step time: 47.194480895996094ms\r\nStep 294, loss: 0.07201816886663437, step time: 47.09219932556152ms\r\nStep 295, loss: 0.07170557230710983, step time: 46.92864418029785ms\r\nStep 296, loss: 0.07143533229827881, step time: 47.09458351135254ms\r\nStep 297, loss: 0.0712728500366211, step time: 47.22309112548828ms\r\nStep 298, loss: 0.07096567004919052, step time: 47.18589782714844ms\r\nStep 299, loss: 0.07074425369501114, step time: 47.14083671569824ms\r\nStep 300, loss: 0.07054556906223297, step time: 47.35255241394043ms\r\nStep 301, loss: 0.07023885101079941, step time: 46.380043029785156ms\r\nStep 302, loss: 0.07000863552093506, step time: 45.96877098083496ms\r\nStep 303, loss: 0.06976260244846344, step time: 46.21315002441406ms\r\nStep 304, loss: 0.06956946104764938, step time: 45.78709602355957ms\r\nStep 305, loss: 0.06930889189243317, step time: 46.14567756652832ms\r\nStep 306, loss: 0.06918160617351532, step time: 46.25844955444336ms\r\nStep 307, loss: 0.0689578577876091, step time: 46.22769355773926ms\r\nStep 308, loss: 0.06873895227909088, step time: 46.378135681152344ms\r\nStep 309, loss: 0.06857674568891525, step time: 46.262502670288086ms\r\nStep 310, loss: 0.06840220838785172, step time: 45.952796936035156ms\r\nStep 311, loss: 0.06826015561819077, step time: 46.350717544555664ms\r\nStep 312, loss: 0.06806612759828568, step time: 46.07057571411133ms\r\nStep 313, loss: 0.06785062700510025, step time: 46.95940017700195ms\r\nStep 314, loss: 0.06771637499332428, step time: 47.0888614654541ms\r\nStep 315, loss: 0.06754773110151291, step time: 46.79083824157715ms\r\nStep 316, loss: 0.06736108660697937, step time: 46.913862228393555ms\r\nStep 317, loss: 0.06721595674753189, step time: 46.103715896606445ms\r\nStep 318, loss: 0.06699009239673615, step time: 46.07677459716797ms\r\nStep 319, loss: 0.06700295209884644, step time: 46.120405197143555ms\r\nStep 320, loss: 0.0668451264500618, step time: 45.66812515258789ms\r\nStep 321, loss: 0.06669996678829193, step time: 46.347618103027344ms\r\nStep 322, loss: 0.06648317724466324, step time: 45.923471450805664ms\r\nStep 323, loss: 0.06639940291643143, step time: 45.86362838745117ms\r\nStep 324, loss: 0.06623447686433792, step time: 45.987606048583984ms\r\nStep 325, loss: 0.06603293120861053, step time: 45.807838439941406ms\r\nStep 326, loss: 0.06583762168884277, step time: 45.906782150268555ms\r\nStep 327, loss: 0.06571518629789352, step time: 45.96686363220215ms\r\nStep 328, loss: 0.06555461883544922, step time: 45.7301139831543ms\r\nStep 329, loss: 0.06542934477329254, step time: 46.80490493774414ms\r\nStep 330, loss: 0.06528272479772568, step time: 45.682668685913086ms\r\nStep 331, loss: 0.06510620564222336, step time: 45.94564437866211ms\r\nStep 332, loss: 0.06497849524021149, step time: 45.84145545959473ms\r\nStep 333, loss: 0.06471706926822662, step time: 45.828819274902344ms\r\nStep 334, loss: 0.0645749568939209, step time: 46.15664482116699ms\r\nStep 335, loss: 0.06434160470962524, step time: 45.83930969238281ms\r\nStep 336, loss: 0.06411866843700409, step time: 45.86005210876465ms\r\nStep 337, loss: 0.06391465663909912, step time: 46.22769355773926ms\r\nStep 338, loss: 0.06365352123975754, step time: 45.93324661254883ms\r\nStep 339, loss: 0.06346339732408524, step time: 46.033620834350586ms\r\nStep 340, loss: 0.06318063288927078, step time: 45.99142074584961ms\r\nStep 341, loss: 0.06302974373102188, step time: 45.890092849731445ms\r\nStep 342, loss: 0.0628303587436676, step time: 46.13828659057617ms\r\nStep 343, loss: 0.0626133605837822, step time: 45.8226203918457ms\r\nStep 344, loss: 0.062351472675800323, step time: 45.98593711853027ms\r\nStep 345, loss: 0.06209659203886986, step time: 46.011924743652344ms\r\nStep 346, loss: 0.06188994646072388, step time: 45.88770866394043ms\r\nStep 347, loss: 0.0616631805896759, step time: 46.40984535217285ms\r\nStep 348, loss: 0.0614466555416584, step time: 45.85552215576172ms\r\nStep 349, loss: 0.061143964529037476, step time: 46.09227180480957ms\r\nStep 350, loss: 0.06088586524128914, step time: 46.09274864196777ms\r\nStep 351, loss: 0.060657698661088943, step time: 45.900821685791016ms\r\nStep 352, loss: 0.06049825996160507, step time: 45.99881172180176ms\r\nStep 353, loss: 0.06031477078795433, step time: 45.97949981689453ms\r\nStep 354, loss: 0.060047827661037445, step time: 45.82929611206055ms\r\nStep 355, loss: 0.05981197953224182, step time: 45.81785202026367ms\r\nStep 356, loss: 0.05948052555322647, step time: 45.853376388549805ms\r\nStep 357, loss: 0.05929894745349884, step time: 45.74227333068848ms\r\nStep 358, loss: 0.05907362699508667, step time: 45.969486236572266ms\r\nStep 359, loss: 0.05882537364959717, step time: 45.787811279296875ms\r\nStep 360, loss: 0.05862332880496979, step time: 46.06795310974121ms\r\nStep 361, loss: 0.05846289172768593, step time: 45.8676815032959ms\r\nStep 362, loss: 0.05826568603515625, step time: 45.8524227142334ms\r\nStep 363, loss: 0.05807339400053024, step time: 46.16069793701172ms\r\nStep 364, loss: 0.05790321156382561, step time: 45.94874382019043ms\r\nStep 365, loss: 0.057693157345056534, step time: 45.815229415893555ms\r\nStep 366, loss: 0.05739673599600792, step time: 46.03219032287598ms\r\nStep 367, loss: 0.05724423751235008, step time: 45.88055610656738ms\r\nStep 368, loss: 0.05696367844939232, step time: 46.13947868347168ms\r\nStep 369, loss: 0.05676959082484245, step time: 45.86982727050781ms\r\nStep 370, loss: 0.05666578561067581, step time: 45.61471939086914ms\r\nStep 371, loss: 0.056386955082416534, step time: 45.95541954040527ms\r\nStep 372, loss: 0.05622946098446846, step time: 45.79615592956543ms\r\nStep 373, loss: 0.05608833208680153, step time: 45.97663879394531ms\r\nStep 374, loss: 0.05583064258098602, step time: 45.806884765625ms\r\nStep 375, loss: 0.05560281127691269, step time: 45.67146301269531ms\r\nStep 376, loss: 0.055418647825717926, step time: 46.08893394470215ms\r\nStep 377, loss: 0.05523425340652466, step time: 45.79043388366699ms\r\nStep 378, loss: 0.05493195354938507, step time: 45.71247100830078ms\r\nStep 379, loss: 0.05476433411240578, step time: 46.17881774902344ms\r\nStep 380, loss: 0.05463480204343796, step time: 45.75777053833008ms\r\nStep 381, loss: 0.05446488782763481, step time: 45.967817306518555ms\r\nStep 382, loss: 0.054187845438718796, step time: 45.86076736450195ms\r\nStep 383, loss: 0.05402743071317673, step time: 45.81284523010254ms\r\nStep 384, loss: 0.05378967523574829, step time: 46.012163162231445ms\r\nStep 385, loss: 0.05355072766542435, step time: 46.58079147338867ms\r\nStep 386, loss: 0.05345594510436058, step time: 46.155452728271484ms\r\nStep 387, loss: 0.05323247238993645, step time: 45.99928855895996ms\r\nStep 388, loss: 0.05314169451594353, step time: 45.80426216125488ms\r\nStep 389, loss: 0.052998535335063934, step time: 45.90916633605957ms\r\nStep 390, loss: 0.05276554077863693, step time: 45.76277732849121ms\r\nStep 391, loss: 0.052735283970832825, step time: 45.97592353820801ms\r\nStep 392, loss: 0.052523449063301086, step time: 46.06199264526367ms\r\nStep 393, loss: 0.05236538127064705, step time: 45.87841033935547ms\r\nStep 394, loss: 0.05211574211716652, step time: 45.98093032836914ms\r\nStep 395, loss: 0.052024662494659424, step time: 45.7911491394043ms\r\nStep 396, loss: 0.05192774161696434, step time: 45.764923095703125ms\r\nStep 397, loss: 0.05170684680342674, step time: 46.17190361022949ms\r\nStep 398, loss: 0.051624786108732224, step time: 45.83549499511719ms\r\nStep 399, loss: 0.05135619267821312, step time: 45.95184326171875ms\r\nStep 400, loss: 0.05124334245920181, step time: 48.56562614440918ms\r\nStep 401, loss: 0.05103858932852745, step time: 46.272993087768555ms\r\nStep 402, loss: 0.05097873508930206, step time: 46.404123306274414ms\r\nStep 403, loss: 0.050788454711437225, step time: 45.987844467163086ms\r\nStep 404, loss: 0.05059158056974411, step time: 45.746564865112305ms\r\nStep 405, loss: 0.05050133541226387, step time: 45.8223819732666ms\r\nStep 406, loss: 0.05031199753284454, step time: 45.75395584106445ms\r\nStep 407, loss: 0.05020718276500702, step time: 46.06914520263672ms\r\nStep 408, loss: 0.05002100393176079, step time: 45.81570625305176ms\r\nStep 409, loss: 0.049965448677539825, step time: 45.778512954711914ms\r\nStep 410, loss: 0.04975120723247528, step time: 45.90415954589844ms\r\nStep 411, loss: 0.049610305577516556, step time: 45.877933502197266ms\r\nStep 412, loss: 0.04946114867925644, step time: 45.90749740600586ms\r\nStep 413, loss: 0.04929230734705925, step time: 45.894622802734375ms\r\nStep 414, loss: 0.04914490506052971, step time: 45.82524299621582ms\r\nStep 415, loss: 0.04903155192732811, step time: 46.02217674255371ms\r\nStep 416, loss: 0.04891304671764374, step time: 45.83024978637695ms\r\nStep 417, loss: 0.04882834851741791, step time: 45.88127136230469ms\r\nStep 418, loss: 0.04865614324808121, step time: 46.011924743652344ms\r\nStep 419, loss: 0.04847683757543564, step time: 45.76444625854492ms\r\nStep 420, loss: 0.04828212782740593, step time: 45.912981033325195ms\r\nStep 421, loss: 0.04817681387066841, step time: 46.01764678955078ms\r\nStep 422, loss: 0.04801554977893829, step time: 45.79901695251465ms\r\nStep 423, loss: 0.047892726957798004, step time: 46.216487884521484ms\r\nStep 424, loss: 0.04777032509446144, step time: 45.81022262573242ms\r\nStep 425, loss: 0.047680485993623734, step time: 45.89986801147461ms\r\nStep 426, loss: 0.04753027856349945, step time: 45.873403549194336ms\r\nStep 427, loss: 0.0474187396466732, step time: 45.838117599487305ms\r\nStep 428, loss: 0.04732278361916542, step time: 46.10633850097656ms\r\nStep 429, loss: 0.04715166985988617, step time: 45.95208168029785ms\r\nStep 430, loss: 0.04698580875992775, step time: 45.85719108581543ms\r\n",,terminal_output +1329,3746872,"TERMINAL",0,0,"Step 431, loss: 0.04687514901161194, step time: 46.17595672607422ms\r\nStep 432, loss: 0.04674380272626877, step time: 45.87531089782715ms\r\nStep 433, loss: 0.046673987060785294, step time: 46.25511169433594ms\r\nStep 434, loss: 0.04647275060415268, step time: 45.787811279296875ms\r\nStep 435, loss: 0.04630628973245621, step time: 45.69387435913086ms\r\nStep 436, loss: 0.046204712241888046, step time: 45.942068099975586ms\r\nStep 437, loss: 0.04602600261569023, step time: 45.824289321899414ms\r\nStep 438, loss: 0.04588354378938675, step time: 45.85576057434082ms\r\nStep 439, loss: 0.045769426971673965, step time: 45.896291732788086ms\r\nStep 440, loss: 0.04571301490068436, step time: 45.577049255371094ms\r\nStep 441, loss: 0.045604828745126724, step time: 46.20218276977539ms\r\nStep 442, loss: 0.04538238048553467, step time: 45.79281806945801ms\r\nStep 443, loss: 0.04524844512343407, step time: 45.92466354370117ms\r\nStep 444, loss: 0.045119937509298325, step time: 45.87507247924805ms\r\nStep 445, loss: 0.045019786804914474, step time: 45.64976692199707ms\r\nStep 446, loss: 0.04486899450421333, step time: 46.18191719055176ms\r\nStep 447, loss: 0.04470854625105858, step time: 45.889854431152344ms\r\nStep 448, loss: 0.04450942575931549, step time: 45.77946662902832ms\r\nStep 449, loss: 0.04447757452726364, step time: 45.987606048583984ms\r\nStep 450, loss: 0.04439287632703781, step time: 45.708417892456055ms\r\nStep 451, loss: 0.04423554614186287, step time: 45.96734046936035ms\r\nStep 452, loss: 0.04403821751475334, step time: 45.96304893493652ms\r\nStep 453, loss: 0.043952759355306625, step time: 45.74084281921387ms\r\n",,terminal_output +1330,3756836,"TERMINAL",0,0,"Step 454, loss: 0.04381459951400757, step time: 46.3109016418457ms\r\nStep 455, loss: 0.043688055127859116, step time: 45.7460880279541ms\r\nStep 456, loss: 0.043536100536584854, step time: 45.97592353820801ms\r\nStep 457, loss: 0.04342110455036163, step time: 45.8829402923584ms\r\nStep 458, loss: 0.043283939361572266, step time: 45.78232765197754ms\r\nStep 459, loss: 0.04314972832798958, step time: 46.0507869720459ms\r\nStep 460, loss: 0.043038513511419296, step time: 45.949459075927734ms\r\nStep 461, loss: 0.042901039123535156, step time: 45.71175575256348ms\r\nStep 462, loss: 0.04280040040612221, step time: 46.07057571411133ms\r\nStep 463, loss: 0.04267904907464981, step time: 45.82810401916504ms\r\nStep 464, loss: 0.04262422025203705, step time: 46.087026596069336ms\r\nStep 465, loss: 0.042451608926057816, step time: 45.84836959838867ms\r\nStep 466, loss: 0.04232242703437805, step time: 45.83406448364258ms\r\nStep 467, loss: 0.04222364351153374, step time: 46.13518714904785ms\r\nStep 468, loss: 0.042040735483169556, step time: 45.85862159729004ms\r\nStep 469, loss: 0.04193957522511482, step time: 45.89700698852539ms\r\nStep 470, loss: 0.04182320833206177, step time: 45.912742614746094ms\r\nStep 471, loss: 0.041663967072963715, step time: 46.08750343322754ms\r\nStep 472, loss: 0.04160256311297417, step time: 46.42486572265625ms\r\nStep 473, loss: 0.04148316755890846, step time: 45.83549499511719ms\r\nStep 474, loss: 0.04136182367801666, step time: 45.94111442565918ms\r\nStep 475, loss: 0.04126034304499626, step time: 45.79329490661621ms\r\nStep 476, loss: 0.04113716259598732, step time: 45.84217071533203ms\r\nStep 477, loss: 0.04102308303117752, step time: 46.01788520812988ms\r\nStep 478, loss: 0.040924813598394394, step time: 45.86505889892578ms\r\nStep 479, loss: 0.040757451206445694, step time: 45.75157165527344ms\r\nStep 480, loss: 0.040653716772794724, step time: 46.64731025695801ms\r\nStep 481, loss: 0.040640078485012054, step time: 46.01407051086426ms\r\nStep 482, loss: 0.04045755788683891, step time: 46.10419273376465ms\r\nStep 483, loss: 0.040301818400621414, step time: 45.970916748046875ms\r\nStep 484, loss: 0.04022509232163429, step time: 45.92013359069824ms\r\nStep 485, loss: 0.04012152925133705, step time: 46.15211486816406ms\r\nStep 486, loss: 0.03999105468392372, step time: 46.05913162231445ms\r\nStep 487, loss: 0.039863184094429016, step time: 45.957088470458984ms\r\nStep 488, loss: 0.03979001194238663, step time: 46.01263999938965ms\r\nStep 489, loss: 0.03975343331694603, step time: 45.93014717102051ms\r\nStep 490, loss: 0.0395946204662323, step time: 46.10157012939453ms\r\nStep 491, loss: 0.03945944458246231, step time: 45.957088470458984ms\r\nStep 492, loss: 0.03927071765065193, step time: 45.82524299621582ms\r\nStep 493, loss: 0.039204537868499756, step time: 46.13852500915527ms\r\nStep 494, loss: 0.03913320600986481, step time: 45.839548110961914ms\r\nStep 495, loss: 0.03897859901189804, step time: 46.042442321777344ms\r\nStep 496, loss: 0.038864605128765106, step time: 45.9294319152832ms\r\nStep 497, loss: 0.03871997818350792, step time: 46.35477066040039ms\r\nStep 498, loss: 0.03865061700344086, step time: 46.350717544555664ms\r\nStep 499, loss: 0.03856829181313515, step time: 45.98069190979004ms\r\nStep 500, loss: 0.038403403013944626, step time: 47.15919494628906ms\r\nStep 501, loss: 0.03827649727463722, step time: 46.34857177734375ms\r\nStep 502, loss: 0.03820692002773285, step time: 45.935869216918945ms\r\nStep 503, loss: 0.03805800527334213, step time: 46.32973670959473ms\r\nStep 504, loss: 0.037969041615724564, step time: 46.14710807800293ms\r\nStep 505, loss: 0.03785966709256172, step time: 45.92180252075195ms\r\nStep 506, loss: 0.03773318603634834, step time: 46.0662841796875ms\r\nStep 507, loss: 0.037644144147634506, step time: 45.961618423461914ms\r\nStep 508, loss: 0.03749328851699829, step time: 46.443939208984375ms\r\nStep 509, loss: 0.03735354170203209, step time: 46.04196548461914ms\r\nStep 510, loss: 0.03722577169537544, step time: 45.90344429016113ms\r\nStep 511, loss: 0.037156857550144196, step time: 46.16284370422363ms\r\nStep 512, loss: 0.03698434680700302, step time: 46.005964279174805ms\r\nStep 513, loss: 0.03687994182109833, step time: 46.193599700927734ms\r\nStep 514, loss: 0.036713678389787674, step time: 46.10872268676758ms\r\nStep 515, loss: 0.03663820028305054, step time: 45.77493667602539ms\r\nStep 516, loss: 0.03662566840648651, step time: 46.36693000793457ms\r\nStep 517, loss: 0.0364471934735775, step time: 45.914411544799805ms\r\nStep 518, loss: 0.03631288930773735, step time: 45.996904373168945ms\r\nStep 519, loss: 0.036289867013692856, step time: 46.147823333740234ms\r\nStep 520, loss: 0.036090876907110214, step time: 45.766592025756836ms\r\nStep 521, loss: 0.03605906665325165, step time: 46.30398750305176ms\r\nStep 522, loss: 0.03594106808304787, step time: 45.98808288574219ms\r\nStep 523, loss: 0.035863105207681656, step time: 45.929670333862305ms\r\nStep 524, loss: 0.035800956189632416, step time: 46.042680740356445ms\r\nStep 525, loss: 0.035695768892765045, step time: 45.78447341918945ms\r\nStep 526, loss: 0.03556758165359497, step time: 46.129465103149414ms\r\nStep 527, loss: 0.035455022007226944, step time: 46.11635208129883ms\r\nStep 528, loss: 0.03537928685545921, step time: 45.84622383117676ms\r\nStep 529, loss: 0.035266730934381485, step time: 46.291351318359375ms\r\nStep 530, loss: 0.03513656556606293, step time: 45.82691192626953ms\r\nStep 531, loss: 0.035037506371736526, step time: 46.221017837524414ms\r\nStep 532, loss: 0.03493450954556465, step time: 45.92442512512207ms\r\nStep 533, loss: 0.03488466516137123, step time: 45.916080474853516ms\r\nStep 534, loss: 0.03477834165096283, step time: 46.079158782958984ms\r\nStep 535, loss: 0.034738700836896896, step time: 45.91512680053711ms\r\nStep 536, loss: 0.034536417573690414, step time: 46.02694511413574ms\r\nStep 537, loss: 0.03450656682252884, step time: 47.074317932128906ms\r\nStep 538, loss: 0.03436264768242836, step time: 47.3322868347168ms\r\nStep 539, loss: 0.03425471857190132, step time: 47.53422737121582ms\r\nStep 540, loss: 0.034191153943538666, step time: 47.9884147644043ms\r\nStep 541, loss: 0.034076351672410965, step time: 48.85983467102051ms\r\nStep 542, loss: 0.03404432162642479, step time: 46.66423797607422ms\r\nStep 543, loss: 0.03395712375640869, step time: 46.675920486450195ms\r\nStep 544, loss: 0.0338573083281517, step time: 46.19741439819336ms\r\nStep 545, loss: 0.03374044969677925, step time: 46.239614486694336ms\r\nStep 546, loss: 0.03371927887201309, step time: 46.10586166381836ms\r\nStep 547, loss: 0.033619124442338943, step time: 46.02456092834473ms\r\nStep 548, loss: 0.033509157598018646, step time: 46.31233215332031ms\r\nStep 549, loss: 0.03340911120176315, step time: 46.840667724609375ms\r\nStep 550, loss: 0.0333603173494339, step time: 46.0972785949707ms\r\nStep 551, loss: 0.03332936391234398, step time: 46.00715637207031ms\r\nStep 552, loss: 0.03319402039051056, step time: 46.8595027923584ms\r\nStep 553, loss: 0.03314777463674545, step time: 46.35739326477051ms\r\nStep 554, loss: 0.03305990993976593, step time: 45.995235443115234ms\r\nStep 555, loss: 0.03296144679188728, step time: 45.96590995788574ms\r\nStep 556, loss: 0.03287522494792938, step time: 46.09560966491699ms\r\nStep 557, loss: 0.03280596062541008, step time: 45.93658447265625ms\r\nStep 558, loss: 0.03278856351971626, step time: 46.224355697631836ms\r\nStep 559, loss: 0.032644305378198624, step time: 45.92251777648926ms\r\nStep 560, loss: 0.03263542801141739, step time: 45.73655128479004ms\r\nStep 561, loss: 0.03250106796622276, step time: 46.1580753326416ms\r\nStep 562, loss: 0.03240074962377548, step time: 45.845746994018555ms\r\nStep 563, loss: 0.032415058463811874, step time: 46.182870864868164ms\r\nStep 564, loss: 0.032263968139886856, step time: 45.82691192626953ms\r\nStep 565, loss: 0.03218816965818405, step time: 45.7921028137207ms\r\nStep 566, loss: 0.03214377164840698, step time: 46.20862007141113ms\r\nStep 567, loss: 0.032017603516578674, step time: 46.09346389770508ms\r\nStep 568, loss: 0.031921908259391785, step time: 45.98736763000488ms\r\nStep 569, loss: 0.03191956877708435, step time: 46.08631134033203ms\r\nStep 570, loss: 0.03180380538105965, step time: 45.76373100280762ms\r\nStep 571, loss: 0.03171404078602791, step time: 46.331167221069336ms\r\nStep 572, loss: 0.03159117326140404, step time: 45.86958885192871ms\r\nStep 573, loss: 0.03155058994889259, step time: 45.87554931640625ms\r\nStep 574, loss: 0.03141488507390022, step time: 46.02646827697754ms\r\nStep 575, loss: 0.03135927766561508, step time: 45.72463035583496ms\r\nStep 576, loss: 0.03129892796278, step time: 46.01407051086426ms\r\nStep 577, loss: 0.03121192939579487, step time: 46.00191116333008ms\r\nStep 578, loss: 0.031108595430850983, step time: 45.7158088684082ms\r\nStep 579, loss: 0.030966393649578094, step time: 46.2491512298584ms\r\nStep 580, loss: 0.030932245776057243, step time: 45.77803611755371ms\r\nStep 581, loss: 0.03084636852145195, step time: 46.10252380371094ms\r\nStep 582, loss: 0.030820056796073914, step time: 45.929670333862305ms\r\nStep 583, loss: 0.030723746865987778, step time: 45.81785202026367ms\r\nStep 584, loss: 0.030647912994027138, step time: 46.111345291137695ms\r\nStep 585, loss: 0.030597591772675514, step time: 45.87888717651367ms\r\nStep 586, loss: 0.030509797856211662, step time: 45.92609405517578ms\r\nStep 587, loss: 0.03040449693799019, step time: 46.14615440368652ms\r\nStep 588, loss: 0.030410733073949814, step time: 45.88913917541504ms\r\nStep 589, loss: 0.03027409128844738, step time: 46.18954658508301ms\r\nStep 590, loss: 0.030192725360393524, step time: 45.86052894592285ms\r\nStep 591, loss: 0.030118774622678757, step time: 45.8831787109375ms\r\nStep 592, loss: 0.030091119930148125, step time: 46.02813720703125ms\r\nStep 593, loss: 0.029974527657032013, step time: 45.897722244262695ms\r\nStep 594, loss: 0.02991901896893978, step time: 46.01860046386719ms\r\nStep 595, loss: 0.02987390011548996, step time: 45.86386680603027ms\r\nStep 596, loss: 0.029779089614748955, step time: 45.770883560180664ms\r\nStep 597, loss: 0.02970537170767784, step time: 46.17738723754883ms\r\nStep 598, loss: 0.02958296239376068, step time: 45.9134578704834ms\r\nStep 599, loss: 0.029550885781645775, step time: 45.91989517211914ms\r\nStep 600, loss: 0.02947285771369934, step time: 47.347068786621094ms\r\nStep 601, loss: 0.02940933220088482, step time: 46.38957977294922ms\r\nStep 602, loss: 0.029328707605600357, step time: 46.42462730407715ms\r\nStep 603, loss: 0.02925657480955124, step time: 45.964956283569336ms\r\nStep 604, loss: 0.02916126325726509, step time: 46.01335525512695ms\r\nStep 605, loss: 0.029076432809233665, step time: 46.00787162780762ms\r\nStep 606, loss: 0.029025929048657417, step time: 45.92633247375488ms\r\nStep 607, loss: 0.02894751727581024, step time: 46.338558197021484ms\r\nStep 608, loss: 0.028889723122119904, step time: 45.8989143371582ms\r\nStep 609, loss: 0.028775697574019432, step time: 45.909881591796875ms\r\nStep 610, loss: 0.0287100151181221, step time: 45.989036560058594ms\r\nStep 611, loss: 0.028607666492462158, step time: 45.969247817993164ms\r\nStep 612, loss: 0.02857566997408867, step time: 46.195268630981445ms\r\nStep 613, loss: 0.028548091650009155, step time: 46.04744911193848ms\r\nStep 614, loss: 0.02848527394235134, step time: 45.85099220275879ms\r\nStep 615, loss: 0.028429079800844193, step time: 46.30112648010254ms\r\nStep 616, loss: 0.028367452323436737, step time: 45.99809646606445ms\r\nStep 617, loss: 0.02829112857580185, step time: 46.21410369873047ms\r\nStep 618, loss: 0.0282397773116827, step time: 46.001434326171875ms\r\nStep 619, loss: 0.028209101408720016, step time: 45.88651657104492ms\r\nStep 620, loss: 0.028137821704149246, step time: 46.035051345825195ms\r\nStep 621, loss: 0.028047069907188416, step time: 46.0810661315918ms\r\nStep 622, loss: 0.028003409504890442, step time: 45.92180252075195ms\r\nStep 623, loss: 0.027916090562939644, step time: 46.07963562011719ms\r\nStep 624, loss: 0.02789180912077427, step time: 45.987606048583984ms\r\nStep 625, loss: 0.027831286191940308, step time: 46.21696472167969ms\r\nStep 626, loss: 0.02775075100362301, step time: 45.90129852294922ms\r\nStep 627, loss: 0.02765735797584057, step time: 46.54049873352051ms\r\nStep 628, loss: 0.02761842869222164, step time: 46.01860046386719ms\r\nStep 629, loss: 0.027568180114030838, step time: 45.882463455200195ms\r\nStep 630, loss: 0.027476228773593903, step time: 46.0662841796875ms\r\nStep 631, loss: 0.027476642280817032, step time: 46.021461486816406ms\r\nStep 632, loss: 0.027361400425434113, step time: 45.83001136779785ms\r\nStep 633, loss: 0.027358798310160637, step time: 46.54216766357422ms\r\nStep 634, loss: 0.02727588452398777, step time: 46.02408409118652ms\r\nStep 635, loss: 0.027226969599723816, step time: 45.96233367919922ms\r\nStep 636, loss: 0.02716553956270218, step time: 45.95136642456055ms\r\nStep 637, loss: 0.02711739018559456, step time: 45.85456848144531ms\r\nStep 638, loss: 0.02701236680150032, step time: 46.40913009643555ms\r\nStep 639, loss: 0.02690231241285801, step time: 45.975446701049805ms\r\nStep 640, loss: 0.026887986809015274, step time: 46.013593673706055ms\r\nStep 641, loss: 0.026787500828504562, step time: 46.42820358276367ms\r\nStep 642, loss: 0.026731783524155617, step time: 45.975685119628906ms\r\nStep 643, loss: 0.026666974648833275, step time: 46.22912406921387ms\r\nStep 644, loss: 0.026676638051867485, step time: 45.94302177429199ms\r\nStep 645, loss: 0.026582328602671623, step time: 45.78876495361328ms\r\nStep 646, loss: 0.02651035599410534, step time: 45.96662521362305ms\r\nStep 647, loss: 0.02646004408597946, step time: 45.82333564758301ms\r\nStep 648, loss: 0.02640547975897789, step time: 46.166419982910156ms\r\nStep 649, loss: 0.02628800831735134, step time: 46.02479934692383ms\r\nStep 650, loss: 0.02627289853990078, step time: 45.82500457763672ms\r\nStep 651, loss: 0.02619847096502781, step time: 46.28705978393555ms\r\nStep 652, loss: 0.02614089660346508, step time: 46.090126037597656ms\r\nStep 653, loss: 0.02605709433555603, step time: 45.98522186279297ms\r\nStep 654, loss: 0.02598467469215393, step time: 46.14114761352539ms\r\nStep 655, loss: 0.025911269709467888, step time: 45.819759368896484ms\r\nStep 656, loss: 0.02583947964012623, step time: 46.25535011291504ms\r\n",,terminal_output +1331,3759176,"TERMINAL",0,0,"Step 657, loss: 0.02579233981668949, step time: 45.94731330871582ms\r\nStep 658, loss: 0.02583185024559498, step time: 45.905351638793945ms\r\nStep 659, loss: 0.025705425068736076, step time: 46.13518714904785ms\r\nStep 660, loss: 0.025637323036789894, step time: 45.828819274902344ms\r\nStep 661, loss: 0.025598667562007904, step time: 46.04530334472656ms\r\nStep 662, loss: 0.025569526478648186, step time: 45.88961601257324ms\r\nStep 663, loss: 0.02549484744668007, step time: 45.83024978637695ms\r\nStep 664, loss: 0.02543899044394493, step time: 46.35000228881836ms\r\nStep 665, loss: 0.025410408154129982, step time: 45.770883560180664ms\r\nStep 666, loss: 0.025298509746789932, step time: 46.034812927246094ms\r\nStep 667, loss: 0.02526075951755047, step time: 45.88460922241211ms\r\nStep 668, loss: 0.02519826591014862, step time: 45.883893966674805ms\r\nStep 669, loss: 0.025174694135785103, step time: 46.0660457611084ms\r\nStep 670, loss: 0.025164205580949783, step time: 45.744895935058594ms\r\nStep 671, loss: 0.025060858577489853, step time: 45.769691467285156ms\r\nStep 672, loss: 0.025050289928913116, step time: 45.990943908691406ms\r\nStep 673, loss: 0.024952026084065437, step time: 45.804738998413086ms\r\nStep 674, loss: 0.0249276552349329, step time: 46.05531692504883ms\r\nStep 675, loss: 0.02485012076795101, step time: 45.7456111907959ms\r\nStep 676, loss: 0.02480376698076725, step time: 45.7761287689209ms\r\nStep 677, loss: 0.024719519540667534, step time: 46.047210693359375ms\r\nStep 678, loss: 0.02468055486679077, step time: 45.79949378967285ms\r\nStep 679, loss: 0.02460506558418274, step time: 45.88031768798828ms\r\nStep 680, loss: 0.02456578053534031, step time: 46.112060546875ms\r\nStep 681, loss: 0.02454129420220852, step time: 45.8064079284668ms\r\nStep 682, loss: 0.024456089362502098, step time: 46.30780220031738ms\r\nStep 683, loss: 0.02434464357793331, step time: 46.00644111633301ms\r\nStep 684, loss: 0.024385608732700348, step time: 45.91965675354004ms\r\nStep 685, loss: 0.024281330406665802, step time: 45.97640037536621ms\r\nStep 686, loss: 0.024260304868221283, step time: 45.908212661743164ms\r\nStep 687, loss: 0.024166997522115707, step time: 46.2346076965332ms\r\nStep 688, loss: 0.02412630245089531, step time: 45.9446907043457ms\r\nStep 689, loss: 0.02408788911998272, step time: 45.85766792297363ms\r\nStep 690, loss: 0.02401435375213623, step time: 45.981407165527344ms\r\nStep 691, loss: 0.023993197828531265, step time: 45.92084884643555ms\r\nStep 692, loss: 0.02397196553647518, step time: 45.9749698638916ms\r\nStep 693, loss: 0.023896558210253716, step time: 46.00024223327637ms\r\nStep 694, loss: 0.023888515308499336, step time: 45.84240913391113ms\r\nStep 695, loss: 0.02381913922727108, step time: 46.14996910095215ms\r\nStep 696, loss: 0.023804014548659325, step time: 45.862436294555664ms\r\nStep 697, loss: 0.023716531693935394, step time: 46.041011810302734ms\r\n",,terminal_output +1332,3760000,"TERMINAL",0,0,"Step 698, loss: 0.02372061088681221, step time: 45.94230651855469ms\r\nStep 699, loss: 0.023632897064089775, step time: 45.949697494506836ms\r\nStep 700, loss: 0.023603860288858414, step time: 47.12867736816406ms\r\nStep 701, loss: 0.023538686335086823, step time: 46.218156814575195ms\r\nStep 702, loss: 0.02348911389708519, step time: 45.900583267211914ms\r\nStep 703, loss: 0.02343268319964409, step time: 46.04172706604004ms\r\nStep 704, loss: 0.02336818352341652, step time: 46.02766036987305ms\r\nStep 705, loss: 0.023317458108067513, step time: 46.01860046386719ms\r\nStep 706, loss: 0.02332194708287716, step time: 46.045780181884766ms\r\nStep 707, loss: 0.023283815011382103, step time: 45.80378532409668ms\r\nStep 708, loss: 0.023196887224912643, step time: 46.19717597961426ms\r\nStep 709, loss: 0.023200681433081627, step time: 45.91536521911621ms\r\nStep 710, loss: 0.023141853511333466, step time: 45.96757888793945ms\r\nStep 711, loss: 0.02311013825237751, step time: 45.876264572143555ms\r\nStep 712, loss: 0.023039281368255615, step time: 45.7913875579834ms\r\nStep 713, loss: 0.02301868610084057, step time: 46.75698280334473ms\r\nStep 714, loss: 0.022931236773729324, step time: 45.81403732299805ms\r\n",,terminal_output +1333,3760858,"TERMINAL",0,0,"Step 715, loss: 0.02291707880795002, step time: 45.76373100280762ms\r\nStep 716, loss: 0.022869780659675598, step time: 45.91488838195801ms\r\nStep 717, loss: 0.022865090519189835, step time: 45.78828811645508ms\r\nStep 718, loss: 0.02277316153049469, step time: 46.08583450317383ms\r\nStep 719, loss: 0.022769127041101456, step time: 46.02551460266113ms\r\nStep 720, loss: 0.022686384618282318, step time: 45.81284523010254ms\r\nStep 721, loss: 0.022638434544205666, step time: 46.147823333740234ms\r\nStep 722, loss: 0.02262379415333271, step time: 45.871734619140625ms\r\nStep 723, loss: 0.022576473653316498, step time: 46.12088203430176ms\r\nStep 724, loss: 0.022519143298268318, step time: 45.91703414916992ms\r\nStep 725, loss: 0.02248455584049225, step time: 45.71223258972168ms\r\nStep 726, loss: 0.022424044087529182, step time: 46.16904258728027ms\r\nStep 727, loss: 0.022337866947054863, step time: 45.93181610107422ms\r\nStep 728, loss: 0.022293880581855774, step time: 46.18954658508301ms\r\nStep 729, loss: 0.022261489182710648, step time: 45.97330093383789ms\r\nStep 730, loss: 0.022239983081817627, step time: 45.73488235473633ms\r\nStep 731, loss: 0.022201772779226303, step time: 46.29921913146973ms\r\nStep 732, loss: 0.022143907845020294, step time: 45.84670066833496ms\r\nStep 733, loss: 0.02212372049689293, step time: 46.031951904296875ms\r\nStep 734, loss: 0.02206750214099884, step time: 46.01240158081055ms\r\nStep 735, loss: 0.02204984612762928, step time: 45.87292671203613ms\r\nStep 736, loss: 0.022015945985913277, step time: 46.35262489318848ms\r\n",,terminal_output +1334,3763795,"TERMINAL",0,0,"Step 737, loss: 0.021948883309960365, step time: 46.051979064941406ms\r\nStep 738, loss: 0.021888617426156998, step time: 45.78065872192383ms\r\nStep 739, loss: 0.021880190819501877, step time: 45.95136642456055ms\r\nStep 740, loss: 0.02184842713177204, step time: 45.70746421813965ms\r\nStep 741, loss: 0.021837439388036728, step time: 46.1125373840332ms\r\nStep 742, loss: 0.021760551258921623, step time: 45.79806327819824ms\r\nStep 743, loss: 0.02172926627099514, step time: 45.671701431274414ms\r\nStep 744, loss: 0.02166915126144886, step time: 47.556400299072266ms\r\nStep 745, loss: 0.021648012101650238, step time: 45.78518867492676ms\r\nStep 746, loss: 0.021600037813186646, step time: 46.03242874145508ms\r\nStep 747, loss: 0.021540667861700058, step time: 46.050071716308594ms\r\nStep 748, loss: 0.02148238942027092, step time: 45.821428298950195ms\r\nStep 749, loss: 0.02146277204155922, step time: 46.30780220031738ms\r\nStep 750, loss: 0.021410979330539703, step time: 45.80187797546387ms\r\nStep 751, loss: 0.021386120468378067, step time: 45.972347259521484ms\r\nStep 752, loss: 0.021316856145858765, step time: 46.04339599609375ms\r\nStep 753, loss: 0.021312804892659187, step time: 45.8674430847168ms\r\nStep 754, loss: 0.021280696615576744, step time: 46.16951942443848ms\r\nStep 755, loss: 0.02124042995274067, step time: 45.84312438964844ms\r\nStep 756, loss: 0.021264825016260147, step time: 45.731306076049805ms\r\nStep 757, loss: 0.02122976817190647, step time: 46.10919952392578ms\r\nStep 758, loss: 0.021181736141443253, step time: 45.84860801696777ms\r\nStep 759, loss: 0.021140873432159424, step time: 47.79696464538574ms\r\nStep 760, loss: 0.021127058193087578, step time: 45.65310478210449ms\r\nStep 761, loss: 0.021052636206150055, step time: 45.6693172454834ms\r\nStep 762, loss: 0.02101980894804001, step time: 45.99809646606445ms\r\nStep 763, loss: 0.021029286086559296, step time: 45.859575271606445ms\r\nStep 764, loss: 0.020967978984117508, step time: 45.94254493713379ms\r\nStep 765, loss: 0.02094082720577717, step time: 45.64166069030762ms\r\nStep 766, loss: 0.020871244370937347, step time: 45.64380645751953ms\r\nStep 767, loss: 0.020885571837425232, step time: 46.155452728271484ms\r\nStep 768, loss: 0.02083894982933998, step time: 45.8834171295166ms\r\nStep 769, loss: 0.020790142938494682, step time: 45.6392765045166ms\r\nStep 770, loss: 0.020759759470820427, step time: 45.80235481262207ms\r\nStep 771, loss: 0.020737016573548317, step time: 45.68910598754883ms\r\nStep 772, loss: 0.020690280944108963, step time: 46.09560966491699ms\r\nStep 773, loss: 0.020642833784222603, step time: 45.73988914489746ms\r\nStep 774, loss: 0.020614132285118103, step time: 45.79496383666992ms\r\nStep 775, loss: 0.02059858851134777, step time: 45.93229293823242ms\r\nStep 776, loss: 0.020569516345858574, step time: 45.80950736999512ms\r\nStep 777, loss: 0.020523689687252045, step time: 45.80879211425781ms\r\nStep 778, loss: 0.020494112744927406, step time: 45.879364013671875ms\r\nStep 779, loss: 0.020457429811358452, step time: 45.68934440612793ms\r\nStep 780, loss: 0.020409446209669113, step time: 46.06771469116211ms\r\nStep 781, loss: 0.020396316424012184, step time: 45.91107368469238ms\r\nStep 782, loss: 0.02033359929919243, step time: 45.7301139831543ms\r\nStep 783, loss: 0.020331326872110367, step time: 45.800209045410156ms\r\nStep 784, loss: 0.02027643658220768, step time: 45.79877853393555ms\r\nStep 785, loss: 0.020244643092155457, step time: 45.82405090332031ms\r\nStep 786, loss: 0.020211225375533104, step time: 45.87125778198242ms\r\nStep 787, loss: 0.02016317844390869, step time: 45.67265510559082ms\r\nStep 788, loss: 0.020146116614341736, step time: 46.484947204589844ms\r\nStep 789, loss: 0.020123446360230446, step time: 45.88127136230469ms\r\nStep 790, loss: 0.020098689943552017, step time: 45.773983001708984ms\r\nStep 791, loss: 0.020075451582670212, step time: 45.75490951538086ms\r\nStep 792, loss: 0.02000059373676777, step time: 45.703887939453125ms\r\nStep 793, loss: 0.01996559463441372, step time: 45.99428176879883ms\r\nStep 794, loss: 0.01995706558227539, step time: 45.728445053100586ms\r\nStep 795, loss: 0.019899925217032433, step time: 45.69101333618164ms\r\nStep 796, loss: 0.019879508763551712, step time: 45.81022262573242ms\r\nStep 797, loss: 0.01987021416425705, step time: 45.71032524108887ms\r\nStep 798, loss: 0.01981249451637268, step time: 46.06962203979492ms\r\nStep 799, loss: 0.019794993102550507, step time: 45.72439193725586ms\r\n",,terminal_output +1335,3765808,"TERMINAL",0,0,"Step 800, loss: 0.01977354846894741, step time: 46.906232833862305ms\r\nStep 801, loss: 0.01972520723938942, step time: 47.438859939575195ms\r\nStep 802, loss: 0.019700586795806885, step time: 46.51641845703125ms\r\nStep 803, loss: 0.019683755934238434, step time: 46.54502868652344ms\r\nStep 804, loss: 0.019655952230095863, step time: 47.12867736816406ms\r\nStep 805, loss: 0.019598446786403656, step time: 46.30708694458008ms\r\nStep 806, loss: 0.01957499235868454, step time: 46.92673683166504ms\r\nStep 807, loss: 0.019588904455304146, step time: 45.95184326171875ms\r\nStep 808, loss: 0.01949937641620636, step time: 47.05238342285156ms\r\nStep 809, loss: 0.019453497603535652, step time: 46.433210372924805ms\r\nStep 810, loss: 0.019413430243730545, step time: 46.46134376525879ms\r\nStep 811, loss: 0.019400326535105705, step time: 46.2799072265625ms\r\nStep 812, loss: 0.019341571256518364, step time: 45.853376388549805ms\r\nStep 813, loss: 0.019302483648061752, step time: 45.836687088012695ms\r\nStep 814, loss: 0.01929052546620369, step time: 45.78518867492676ms\r\nStep 815, loss: 0.019242849200963974, step time: 45.55463790893555ms\r\nStep 816, loss: 0.019223881885409355, step time: 47.20425605773926ms\r\nStep 817, loss: 0.019177798181772232, step time: 46.5703010559082ms\r\nStep 818, loss: 0.01916162669658661, step time: 46.202898025512695ms\r\nStep 819, loss: 0.01910056732594967, step time: 46.561479568481445ms\r\nStep 820, loss: 0.019110525026917458, step time: 46.42963409423828ms\r\nStep 821, loss: 0.019067242741584778, step time: 46.75722122192383ms\r\nStep 822, loss: 0.01904587633907795, step time: 46.23007774353027ms\r\nStep 823, loss: 0.01904081180691719, step time: 45.83406448364258ms\r\nStep 824, loss: 0.018986999988555908, step time: 45.95160484313965ms\r\nStep 825, loss: 0.01895705610513687, step time: 45.739173889160156ms\r\nStep 826, loss: 0.01895206607878208, step time: 45.8979606628418ms\r\nStep 827, loss: 0.018899373710155487, step time: 45.88007926940918ms\r\nStep 828, loss: 0.018878528848290443, step time: 45.66836357116699ms\r\nStep 829, loss: 0.018854372203350067, step time: 46.112775802612305ms\r\nStep 830, loss: 0.018860062584280968, step time: 45.74751853942871ms\r\nStep 831, loss: 0.018825404345989227, step time: 45.66073417663574ms\r\nStep 832, loss: 0.0187905952334404, step time: 45.78208923339844ms\r\nStep 833, loss: 0.018754934892058372, step time: 45.60041427612305ms\r\nStep 834, loss: 0.018735716119408607, step time: 45.75610160827637ms\r\nStep 835, loss: 0.018660547211766243, step time: 45.81046104431152ms\r\nStep 836, loss: 0.018679669126868248, step time: 45.82667350769043ms\r\nStep 837, loss: 0.018649963662028313, step time: 46.54407501220703ms\r\nStep 838, loss: 0.018592549487948418, step time: 46.92387580871582ms\r\n",,terminal_output +1336,3766801,"TERMINAL",0,0,"Step 839, loss: 0.018596649169921875, step time: 47.36495018005371ms\r\nStep 840, loss: 0.018558688461780548, step time: 47.18613624572754ms\r\nStep 841, loss: 0.01855682209134102, step time: 47.334909439086914ms\r\nStep 842, loss: 0.018510498106479645, step time: 47.8968620300293ms\r\nStep 843, loss: 0.018496578559279442, step time: 47.27935791015625ms\r\nStep 844, loss: 0.018500827252864838, step time: 47.52469062805176ms\r\nStep 845, loss: 0.01842133142054081, step time: 47.1804141998291ms\r\nStep 846, loss: 0.018391596153378487, step time: 47.270774841308594ms\r\nStep 847, loss: 0.018381869420409203, step time: 47.48821258544922ms\r\nStep 848, loss: 0.018348541110754013, step time: 46.43511772155762ms\r\nStep 849, loss: 0.018305059522390366, step time: 45.848846435546875ms\r\nStep 850, loss: 0.018277717754244804, step time: 46.483755111694336ms\r\nStep 851, loss: 0.018266351893544197, step time: 46.82564735412598ms\r\nStep 852, loss: 0.01822403259575367, step time: 47.34539985656738ms\r\nStep 853, loss: 0.018226230517029762, step time: 47.08385467529297ms\r\nStep 854, loss: 0.018201816827058792, step time: 47.182559967041016ms\r\nStep 855, loss: 0.01814883016049862, step time: 47.13296890258789ms\r\nStep 856, loss: 0.018143776804208755, step time: 47.403573989868164ms\r\nStep 857, loss: 0.018115734681487083, step time: 46.71907424926758ms\r\n",,terminal_output +1337,3767812,"TERMINAL",0,0,"Step 858, loss: 0.01810324937105179, step time: 46.60630226135254ms\r\nStep 859, loss: 0.0180866289883852, step time: 46.593427658081055ms\r\nStep 860, loss: 0.01805383898317814, step time: 46.51999473571777ms\r\nStep 861, loss: 0.018023738637566566, step time: 47.28078842163086ms\r\nStep 862, loss: 0.0179996769875288, step time: 47.348976135253906ms\r\nStep 863, loss: 0.017985152080655098, step time: 47.15442657470703ms\r\nStep 864, loss: 0.017953762784600258, step time: 47.342538833618164ms\r\nStep 865, loss: 0.01790674217045307, step time: 46.81730270385742ms\r\nStep 866, loss: 0.017875703051686287, step time: 47.27745056152344ms\r\nStep 867, loss: 0.017842674627900124, step time: 46.84162139892578ms\r\nStep 868, loss: 0.01780753582715988, step time: 46.19145393371582ms\r\nStep 869, loss: 0.017781084403395653, step time: 48.34914207458496ms\r\nStep 870, loss: 0.01776079647243023, step time: 46.126604080200195ms\r\nStep 871, loss: 0.017734380438923836, step time: 46.02932929992676ms\r\nStep 872, loss: 0.017700383439660072, step time: 47.22094535827637ms\r\nStep 873, loss: 0.01767698861658573, step time: 46.2038516998291ms\r\nStep 874, loss: 0.017631826922297478, step time: 46.22530937194824ms\r\nStep 875, loss: 0.01763138361275196, step time: 46.0813045501709ms\r\nStep 876, loss: 0.017593463882803917, step time: 46.54431343078613ms\r\nStep 877, loss: 0.017579326406121254, step time: 46.59724235534668ms\r\nStep 878, loss: 0.017542896792292595, step time: 46.32449150085449ms\r\nStep 879, loss: 0.017526790499687195, step time: 45.99761962890625ms\r\n",,terminal_output +1338,3768899,"TERMINAL",0,0,"Step 880, loss: 0.017493413761258125, step time: 46.07033729553223ms\r\nStep 881, loss: 0.017497718334197998, step time: 46.19336128234863ms\r\nStep 882, loss: 0.017475493252277374, step time: 46.44274711608887ms\r\nStep 883, loss: 0.017478886991739273, step time: 46.18668556213379ms\r\nStep 884, loss: 0.017447691410779953, step time: 45.979976654052734ms\r\nStep 885, loss: 0.017378179356455803, step time: 49.79538917541504ms\r\nStep 886, loss: 0.01736392080783844, step time: 47.12271690368652ms\r\nStep 887, loss: 0.017379602417349815, step time: 47.222137451171875ms\r\nStep 888, loss: 0.017255108803510666, step time: 47.199249267578125ms\r\nStep 889, loss: 0.017274193465709686, step time: 47.08361625671387ms\r\nStep 890, loss: 0.01724264584481716, step time: 47.15132713317871ms\r\nStep 891, loss: 0.017298750579357147, step time: 46.18024826049805ms\r\nStep 892, loss: 0.0172501802444458, step time: 46.1575984954834ms\r\nStep 893, loss: 0.017226774245500565, step time: 46.24819755554199ms\r\nStep 894, loss: 0.017216647043824196, step time: 46.179771423339844ms\r\nStep 895, loss: 0.017193041741847992, step time: 46.48399353027344ms\r\nStep 896, loss: 0.017204370349645615, step time: 46.1881160736084ms\r\nStep 897, loss: 0.017160708084702492, step time: 45.85599899291992ms\r\nStep 898, loss: 0.017118018120527267, step time: 46.19765281677246ms\r\nStep 899, loss: 0.017086206004023552, step time: 46.29874229431152ms\r\n",,terminal_output +1339,3770003,"TERMINAL",0,0,"Step 900, loss: 0.017087243497371674, step time: 47.44315147399902ms\r\nStep 901, loss: 0.017058422788977623, step time: 46.3864803314209ms\r\nStep 902, loss: 0.017011301591992378, step time: 46.0813045501709ms\r\nStep 903, loss: 0.01699962466955185, step time: 45.85123062133789ms\r\nStep 904, loss: 0.01699518971145153, step time: 45.86625099182129ms\r\nStep 905, loss: 0.016992071643471718, step time: 45.906782150268555ms\r\nStep 906, loss: 0.01700722612440586, step time: 45.77994346618652ms\r\nStep 907, loss: 0.01695246249437332, step time: 45.778751373291016ms\r\nStep 908, loss: 0.016915641725063324, step time: 46.14901542663574ms\r\nStep 909, loss: 0.01691465638577938, step time: 45.94874382019043ms\r\nStep 910, loss: 0.01688634231686592, step time: 45.72439193725586ms\r\nStep 911, loss: 0.01684410125017166, step time: 45.76563835144043ms\r\nStep 912, loss: 0.016833599656820297, step time: 45.79448699951172ms\r\nStep 913, loss: 0.01684042252600193, step time: 45.885562896728516ms\r\nStep 914, loss: 0.016793912276625633, step time: 45.94993591308594ms\r\nStep 915, loss: 0.01676853559911251, step time: 45.75920104980469ms\r\n",,terminal_output +1340,3770819,"TERMINAL",0,0,"Step 916, loss: 0.016746193170547485, step time: 45.76921463012695ms\r\nStep 917, loss: 0.01672111451625824, step time: 45.93515396118164ms\r\nStep 918, loss: 0.016700446605682373, step time: 46.022891998291016ms\r\nStep 919, loss: 0.01669873297214508, step time: 45.88770866394043ms\r\nStep 920, loss: 0.016648633405566216, step time: 45.760393142700195ms\r\nStep 921, loss: 0.016654327511787415, step time: 45.70937156677246ms\r\nStep 922, loss: 0.016611909493803978, step time: 45.63021659851074ms\r\nStep 923, loss: 0.016609108075499535, step time: 45.93992233276367ms\r\nStep 924, loss: 0.016583731397986412, step time: 45.77159881591797ms\r\nStep 925, loss: 0.016583571210503578, step time: 45.61901092529297ms\r\nStep 926, loss: 0.01657348871231079, step time: 45.845746994018555ms\r\nStep 927, loss: 0.01653369702398777, step time: 45.75824737548828ms\r\nStep 928, loss: 0.016532743349671364, step time: 45.74179649353027ms\r\nStep 929, loss: 0.01649761199951172, step time: 45.67265510559082ms\r\nStep 930, loss: 0.016476748511195183, step time: 45.45021057128906ms\r\nStep 931, loss: 0.01646673120558262, step time: 46.02861404418945ms\r\nStep 932, loss: 0.016437850892543793, step time: 45.90559005737305ms\r\nStep 933, loss: 0.016429804265499115, step time: 45.678138732910156ms\r\nStep 934, loss: 0.016406018286943436, step time: 45.76516151428223ms\r\nStep 935, loss: 0.01637968420982361, step time: 45.935630798339844ms\r\nStep 936, loss: 0.01635511964559555, step time: 45.77374458312988ms\r\nStep 937, loss: 0.01632506772875786, step time: 45.760393142700195ms\r\nStep 938, loss: 0.016293855383992195, step time: 45.75395584106445ms\r\nStep 939, loss: 0.01628696545958519, step time: 45.62640190124512ms\r\n",,terminal_output +1341,3778795,"TERMINAL",0,0,"Step 940, loss: 0.01626468449831009, step time: 45.555830001831055ms\r\nStep 941, loss: 0.016269877552986145, step time: 45.96138000488281ms\r\nStep 942, loss: 0.016225336119532585, step time: 45.68290710449219ms\r\nStep 943, loss: 0.01622948981821537, step time: 45.75800895690918ms\r\nStep 944, loss: 0.016179261729121208, step time: 45.82071304321289ms\r\nStep 945, loss: 0.01616770401597023, step time: 45.708656311035156ms\r\nStep 946, loss: 0.01615433767437935, step time: 45.80974578857422ms\r\nStep 947, loss: 0.01615232788026333, step time: 45.836448669433594ms\r\nStep 948, loss: 0.016117803752422333, step time: 45.72629928588867ms\r\nStep 949, loss: 0.016108965501189232, step time: 45.78447341918945ms\r\nStep 950, loss: 0.016104837879538536, step time: 45.77827453613281ms\r\nStep 951, loss: 0.0160718634724617, step time: 45.784950256347656ms\r\nStep 952, loss: 0.016054470092058182, step time: 45.84383964538574ms\r\nStep 953, loss: 0.01605365052819252, step time: 46.068429946899414ms\r\nStep 954, loss: 0.016012897714972496, step time: 45.9141731262207ms\r\nStep 955, loss: 0.015998797491192818, step time: 45.7921028137207ms\r\nStep 956, loss: 0.016003413125872612, step time: 45.943498611450195ms\r\nStep 957, loss: 0.015950940549373627, step time: 46.02169990539551ms\r\nStep 958, loss: 0.01591511256992817, step time: 45.8984375ms\r\nStep 959, loss: 0.015924351289868355, step time: 46.044111251831055ms\r\nStep 960, loss: 0.015895064920186996, step time: 45.79520225524902ms\r\nStep 961, loss: 0.015911763533949852, step time: 45.77183723449707ms\r\nStep 962, loss: 0.015898581594228745, step time: 45.97902297973633ms\r\nStep 963, loss: 0.015875017270445824, step time: 46.0357666015625ms\r\nStep 964, loss: 0.015845337882637978, step time: 45.87244987487793ms\r\nStep 965, loss: 0.015840889886021614, step time: 45.81928253173828ms\r\nStep 966, loss: 0.015817614272236824, step time: 45.81856727600098ms\r\nStep 967, loss: 0.015786919742822647, step time: 45.91655731201172ms\r\nStep 968, loss: 0.015784405171871185, step time: 46.01478576660156ms\r\nStep 969, loss: 0.0157786812633276, step time: 45.86935043334961ms\r\nStep 970, loss: 0.015763968229293823, step time: 45.7758903503418ms\r\nStep 971, loss: 0.015742745250463486, step time: 46.04148864746094ms\r\nStep 972, loss: 0.01572335883975029, step time: 46.02813720703125ms\r\nStep 973, loss: 0.01570778712630272, step time: 45.82810401916504ms\r\nStep 974, loss: 0.015666654333472252, step time: 45.93300819396973ms\r\nStep 975, loss: 0.015648849308490753, step time: 45.688629150390625ms\r\nStep 976, loss: 0.01564144343137741, step time: 45.882463455200195ms\r\nStep 977, loss: 0.015634024515748024, step time: 46.18096351623535ms\r\nStep 978, loss: 0.01566251553595066, step time: 45.78208923339844ms\r\nStep 979, loss: 0.015638744458556175, step time: 45.69745063781738ms\r\nStep 980, loss: 0.01558652613312006, step time: 45.82047462463379ms\r\nStep 981, loss: 0.015558489598333836, step time: 46.04148864746094ms\r\nStep 982, loss: 0.015564501285552979, step time: 45.71104049682617ms\r\nStep 983, loss: 0.0155604537576437, step time: 45.995473861694336ms\r\nStep 984, loss: 0.015534547157585621, step time: 243.81256103515625ms\r\nStep 985, loss: 0.015539022162556648, step time: 46.96464538574219ms\r\nStep 986, loss: 0.015486479736864567, step time: 46.5390682220459ms\r\nStep 987, loss: 0.015491481870412827, step time: 46.05436325073242ms\r\nStep 988, loss: 0.015478047542273998, step time: 45.940399169921875ms\r\nStep 989, loss: 0.015449870377779007, step time: 45.84145545959473ms\r\nStep 990, loss: 0.015434793196618557, step time: 45.714378356933594ms\r\nStep 991, loss: 0.015442264266312122, step time: 46.02980613708496ms\r\nStep 992, loss: 0.015425803139805794, step time: 45.876502990722656ms\r\nStep 993, loss: 0.015391597524285316, step time: 45.638084411621094ms\r\nStep 994, loss: 0.015369557775557041, step time: 45.68982124328613ms\r\nStep 995, loss: 0.015379050746560097, step time: 45.880794525146484ms\r\nStep 996, loss: 0.015348593704402447, step time: 45.74775695800781ms\r\nStep 997, loss: 0.015334182418882847, step time: 45.73512077331543ms\r\nStep 998, loss: 0.015329237096011639, step time: 45.70293426513672ms\r\nStep 999, loss: 0.015305617824196815, step time: 45.63426971435547ms\r\nStep 1000, loss: 0.01528987754136324, step time: 47.41549491882324ms\r\nStep 1001, loss: 0.01525110099464655, step time: 46.32210731506348ms\r\nStep 1002, loss: 0.015269909054040909, step time: 45.847415924072266ms\r\nStep 1003, loss: 0.01522746216505766, step time: 45.792579650878906ms\r\nStep 1004, loss: 0.015211174264550209, step time: 45.6700325012207ms\r\nStep 1005, loss: 0.015213843435049057, step time: 46.349525451660156ms\r\nStep 1006, loss: 0.015199367888271809, step time: 46.15902900695801ms\r\nStep 1007, loss: 0.015185602009296417, step time: 45.93539237976074ms\r\nStep 1008, loss: 0.015170210041105747, step time: 45.700788497924805ms\r\nStep 1009, loss: 0.015146438963711262, step time: 45.84002494812012ms\r\nStep 1010, loss: 0.015129916369915009, step time: 45.86219787597656ms\r\nStep 1011, loss: 0.015113042667508125, step time: 45.72486877441406ms\r\nStep 1012, loss: 0.015128721483051777, step time: 45.737266540527344ms\r\nStep 1013, loss: 0.015091910026967525, step time: 45.78423500061035ms\r\nStep 1014, loss: 0.01509589608758688, step time: 45.632123947143555ms\r\nStep 1015, loss: 0.015050993300974369, step time: 45.7911491394043ms\r\nStep 1016, loss: 0.015055610798299313, step time: 45.68004608154297ms\r\nStep 1017, loss: 0.0150318443775177, step time: 45.562028884887695ms\r\nStep 1018, loss: 0.015039986930787563, step time: 45.71270942687988ms\r\nStep 1019, loss: 0.015010862611234188, step time: 45.76444625854492ms\r\nStep 1020, loss: 0.014987390488386154, step time: 45.68767547607422ms\r\nStep 1021, loss: 0.014993071556091309, step time: 45.79353332519531ms\r\nStep 1022, loss: 0.014972005970776081, step time: 45.691490173339844ms\r\nStep 1023, loss: 0.014947543852031231, step time: 45.72653770446777ms\r\nStep 1024, loss: 0.014928718097507954, step time: 45.903921127319336ms\r\nStep 1025, loss: 0.014934038743376732, step time: 45.655250549316406ms\r\nStep 1026, loss: 0.014904910698533058, step time: 45.76587677001953ms\r\nStep 1027, loss: 0.014882867224514484, step time: 48.95353317260742ms\r\nStep 1028, loss: 0.014862743206322193, step time: 46.22220993041992ms\r\nStep 1029, loss: 0.014826588332653046, step time: 45.85003852844238ms\r\nStep 1030, loss: 0.014835664071142673, step time: 45.62020301818848ms\r\nStep 1031, loss: 0.014822028577327728, step time: 45.66001892089844ms\r\nStep 1032, loss: 0.014818348921835423, step time: 45.66049575805664ms\r\nStep 1033, loss: 0.014821074903011322, step time: 46.03075981140137ms\r\nStep 1034, loss: 0.014784407801926136, step time: 45.76706886291504ms\r\nStep 1035, loss: 0.014792969450354576, step time: 45.6235408782959ms\r\nStep 1036, loss: 0.014766758307814598, step time: 45.76611518859863ms\r\nStep 1037, loss: 0.014735870994627476, step time: 45.90463638305664ms\r\nStep 1038, loss: 0.01474889274686575, step time: 45.68147659301758ms\r\nStep 1039, loss: 0.014742502011358738, step time: 45.851707458496094ms\r\nStep 1040, loss: 0.014757893048226833, step time: 45.5470085144043ms\r\nStep 1041, loss: 0.014744047075510025, step time: 45.801401138305664ms\r\nStep 1042, loss: 0.014729003421962261, step time: 46.05674743652344ms\r\nStep 1043, loss: 0.01472347043454647, step time: 45.795440673828125ms\r\nStep 1044, loss: 0.0147154675796628, step time: 45.80211639404297ms\r\nStep 1045, loss: 0.01468444149941206, step time: 46.00262641906738ms\r\nStep 1046, loss: 0.0146693866699934, step time: 46.08011245727539ms\r\nStep 1047, loss: 0.014677593484520912, step time: 45.88651657104492ms\r\nStep 1048, loss: 0.014638765715062618, step time: 45.82500457763672ms\r\nStep 1049, loss: 0.014628821983933449, step time: 45.668601989746094ms\r\nStep 1050, loss: 0.014613938517868519, step time: 45.71795463562012ms\r\nStep 1051, loss: 0.0146174980327487, step time: 45.95184326171875ms\r\nStep 1052, loss: 0.014579926617443562, step time: 45.87602615356445ms\r\nStep 1053, loss: 0.01456183660775423, step time: 45.74441909790039ms\r\nStep 1054, loss: 0.014596114866435528, step time: 46.13900184631348ms\r\nStep 1055, loss: 0.01455969549715519, step time: 46.0665225982666ms\r\nStep 1056, loss: 0.014541559852659702, step time: 46.056509017944336ms\r\nStep 1057, loss: 0.01453967485576868, step time: 45.91202735900879ms\r\nStep 1058, loss: 0.014524097554385662, step time: 45.71390151977539ms\r\nStep 1059, loss: 0.01451188512146473, step time: 45.87888717651367ms\r\nStep 1060, loss: 0.014523047022521496, step time: 46.066999435424805ms\r\nStep 1061, loss: 0.014496699906885624, step time: 45.86291313171387ms\r\nStep 1062, loss: 0.01448829099535942, step time: 45.89676856994629ms\r\nStep 1063, loss: 0.01446880679577589, step time: 46.28276824951172ms\r\nStep 1064, loss: 0.01446035411208868, step time: 46.005964279174805ms\r\nStep 1065, loss: 0.01444926206022501, step time: 45.82357406616211ms\r\nStep 1066, loss: 0.014441033825278282, step time: 45.94922065734863ms\r\nStep 1067, loss: 0.014439222402870655, step time: 45.641422271728516ms\r\nStep 1068, loss: 0.014422650448977947, step time: 45.7005500793457ms\r\nStep 1069, loss: 0.014405980706214905, step time: 45.96757888793945ms\r\nStep 1070, loss: 0.01439821906387806, step time: 45.597076416015625ms\r\nStep 1071, loss: 0.014390068128705025, step time: 45.65882682800293ms\r\nStep 1072, loss: 0.014367854222655296, step time: 45.699357986450195ms\r\nStep 1073, loss: 0.014362523332238197, step time: 46.07081413269043ms\r\nStep 1074, loss: 0.01432604156434536, step time: 45.88174819946289ms\r\nStep 1075, loss: 0.014344407245516777, step time: 45.835018157958984ms\r\nStep 1076, loss: 0.014314637519419193, step time: 45.61328887939453ms\r\nStep 1077, loss: 0.014305674470961094, step time: 45.71986198425293ms\r\nStep 1078, loss: 0.014293206855654716, step time: 45.99142074584961ms\r\nStep 1079, loss: 0.014273983426392078, step time: 46.16260528564453ms\r\nStep 1080, loss: 0.014263056218624115, step time: 45.87960243225098ms\r\nStep 1081, loss: 0.014272498898208141, step time: 46.064138412475586ms\r\nStep 1082, loss: 0.014266321435570717, step time: 48.096656799316406ms\r\nStep 1083, loss: 0.014263074845075607, step time: 45.908212661743164ms\r\nStep 1084, loss: 0.01423500943928957, step time: 45.977115631103516ms\r\nStep 1085, loss: 0.01423339918255806, step time: 46.639442443847656ms\r\nStep 1086, loss: 0.014221220277249813, step time: 47.13034629821777ms\r\nStep 1087, loss: 0.014195816591382027, step time: 47.223806381225586ms\r\nStep 1088, loss: 0.014202926307916641, step time: 46.37002944946289ms\r\nStep 1089, loss: 0.014194847084581852, step time: 46.074867248535156ms\r\nStep 1090, loss: 0.014195789583027363, step time: 45.90153694152832ms\r\nStep 1091, loss: 0.014178279787302017, step time: 46.24128341674805ms\r\nStep 1092, loss: 0.014179288409650326, step time: 46.04792594909668ms\r\nStep 1093, loss: 0.014156397432088852, step time: 45.98093032836914ms\r\nStep 1094, loss: 0.014141304418444633, step time: 45.87411880493164ms\r\nStep 1095, loss: 0.01412226352840662, step time: 45.77970504760742ms\r\nStep 1096, loss: 0.014113984070718288, step time: 46.19169235229492ms\r\nStep 1097, loss: 0.014091385528445244, step time: 45.93849182128906ms\r\nStep 1098, loss: 0.014088006690144539, step time: 45.83024978637695ms\r\nStep 1099, loss: 0.01407249178737402, step time: 45.96900939941406ms\r\n",,terminal_output +1342,3841833,"TERMINAL",0,0,"Step 1100, loss: 0.014043997041881084, step time: 46.77844047546387ms\r\nStep 1101, loss: 0.014063739217817783, step time: 46.23055458068848ms\r\nStep 1102, loss: 0.014030864462256432, step time: 46.22197151184082ms\r\nStep 1103, loss: 0.014026938937604427, step time: 45.86482048034668ms\r\nStep 1104, loss: 0.013996574096381664, step time: 45.72105407714844ms\r\nStep 1105, loss: 0.014003009535372257, step time: 45.836448669433594ms\r\nStep 1106, loss: 0.013975754380226135, step time: 45.918941497802734ms\r\nStep 1107, loss: 0.013980579562485218, step time: 45.80426216125488ms\r\nStep 1108, loss: 0.013984170742332935, step time: 45.98593711853027ms\r\nStep 1109, loss: 0.013964168727397919, step time: 45.815229415893555ms\r\nStep 1110, loss: 0.013927449472248554, step time: 45.71127891540527ms\r\nStep 1111, loss: 0.013935772702097893, step time: 46.1885929107666ms\r\nStep 1112, loss: 0.013928837142884731, step time: 45.964717864990234ms\r\nStep 1113, loss: 0.013940324075520039, step time: 45.832157135009766ms\r\nStep 1114, loss: 0.013909116387367249, step time: 45.98259925842285ms\r\nStep 1115, loss: 0.013909956440329552, step time: 45.8221435546875ms\r\nStep 1116, loss: 0.013867282308638096, step time: 45.71890830993652ms\r\nStep 1117, loss: 0.013909363187849522, step time: 45.818328857421875ms\r\nStep 1118, loss: 0.013859529979526997, step time: 45.645952224731445ms\r\nStep 1119, loss: 0.013846486806869507, step time: 45.65739631652832ms\r\nStep 1120, loss: 0.013827565126121044, step time: 45.75490951538086ms\r\nStep 1121, loss: 0.013845833949744701, step time: 45.75467109680176ms\r\nStep 1122, loss: 0.01383017748594284, step time: 45.46046257019043ms\r\nStep 1123, loss: 0.013803888112306595, step time: 45.80402374267578ms\r\nStep 1124, loss: 0.013807862065732479, step time: 46.03409767150879ms\r\nStep 1125, loss: 0.013801435008645058, step time: 45.73559761047363ms\r\nStep 1126, loss: 0.013784856535494328, step time: 45.819997787475586ms\r\nStep 1127, loss: 0.013760936446487904, step time: 45.62544822692871ms\r\nStep 1128, loss: 0.013761642388999462, step time: 45.62854766845703ms\r\nStep 1129, loss: 0.01378016546368599, step time: 45.91012001037598ms\r\nStep 1130, loss: 0.013753320090472698, step time: 45.831918716430664ms\r\nStep 1131, loss: 0.013738522306084633, step time: 45.93801498413086ms\r\nStep 1132, loss: 0.013741608709096909, step time: 46.11063003540039ms\r\nStep 1133, loss: 0.013746721670031548, step time: 46.05579376220703ms\r\nStep 1134, loss: 0.013714880682528019, step time: 45.88913917541504ms\r\nStep 1135, loss: 0.013724043034017086, step time: 45.85671424865723ms\r\nStep 1136, loss: 0.013700658455491066, step time: 45.70364952087402ms\r\nStep 1137, loss: 0.013678377494215965, step time: 45.85433006286621ms\r\nStep 1138, loss: 0.013670834712684155, step time: 46.06127738952637ms\r\nStep 1139, loss: 0.013657055795192719, step time: 45.67098617553711ms\r\nStep 1140, loss: 0.01365370862185955, step time: 45.6233024597168ms\r\nStep 1141, loss: 0.013646687380969524, step time: 45.80378532409668ms\r\nStep 1142, loss: 0.013632092624902725, step time: 45.88794708251953ms\r\nStep 1143, loss: 0.013623738661408424, step time: 45.740604400634766ms\r\nStep 1144, loss: 0.013630295172333717, step time: 45.78089714050293ms\r\nStep 1145, loss: 0.01361059583723545, step time: 45.57538032531738ms\r\nStep 1146, loss: 0.013584986329078674, step time: 45.73988914489746ms\r\nStep 1147, loss: 0.013599238358438015, step time: 45.926809310913086ms\r\nStep 1148, loss: 0.013567435555160046, step time: 45.743465423583984ms\r\nStep 1149, loss: 0.013553244061768055, step time: 45.75157165527344ms\r\nStep 1150, loss: 0.013563474640250206, step time: 45.67265510559082ms\r\nStep 1151, loss: 0.013551385141909122, step time: 45.829057693481445ms\r\nStep 1152, loss: 0.013528075069189072, step time: 45.70627212524414ms\r\nStep 1153, loss: 0.013533803634345531, step time: 45.7766056060791ms\r\nStep 1154, loss: 0.013508073054254055, step time: 45.675039291381836ms\r\nStep 1155, loss: 0.013493656180799007, step time: 45.64332962036133ms\r\nStep 1156, loss: 0.01350173819810152, step time: 46.05865478515625ms\r\nStep 1157, loss: 0.013488028198480606, step time: 45.9132194519043ms\r\nStep 1158, loss: 0.013473676517605782, step time: 45.90725898742676ms\r\nStep 1159, loss: 0.013453844003379345, step time: 46.06914520263672ms\r\nStep 1160, loss: 0.013446258381009102, step time: 45.68052291870117ms\r\n",,terminal_output +1343,3841834,"TERMINAL",0,0,"Step 1161, loss: 0.013454677537083626, step time: 45.72176933288574ms\r\nStep 1162, loss: 0.013426028192043304, step time: 45.81117630004883ms\r\nStep 1163, loss: 0.013418866321444511, step time: 45.66621780395508ms\r\nStep 1164, loss: 0.013414937071502209, step time: 45.64809799194336ms\r\nStep 1165, loss: 0.013390167616307735, step time: 45.830488204956055ms\r\nStep 1166, loss: 0.0133849261328578, step time: 45.70603370666504ms\r\nStep 1167, loss: 0.0133627038449049, step time: 45.73655128479004ms\r\nStep 1168, loss: 0.01337136048823595, step time: 45.86005210876465ms\r\nStep 1169, loss: 0.01335582509636879, step time: 45.793771743774414ms\r\nStep 1170, loss: 0.013349682092666626, step time: 45.62950134277344ms\r\nStep 1171, loss: 0.01334628276526928, step time: 45.662879943847656ms\r\nStep 1172, loss: 0.013338176533579826, step time: 45.63450813293457ms\r\nStep 1173, loss: 0.013323417864739895, step time: 45.68767547607422ms\r\nStep 1174, loss: 0.01331963948905468, step time: 46.15354537963867ms\r\nStep 1175, loss: 0.013313866220414639, step time: 45.73941230773926ms\r\nStep 1176, loss: 0.013307188637554646, step time: 45.78876495361328ms\r\nStep 1177, loss: 0.013282885774970055, step time: 45.7916259765625ms\r\nStep 1178, loss: 0.013274590484797955, step time: 45.839548110961914ms\r\nStep 1179, loss: 0.013270528055727482, step time: 45.89390754699707ms\r\nStep 1180, loss: 0.013267837464809418, step time: 45.77946662902832ms\r\nStep 1181, loss: 0.013263300992548466, step time: 45.69101333618164ms\r\nStep 1182, loss: 0.013242751359939575, step time: 45.84097862243652ms\r\nStep 1183, loss: 0.013238470070064068, step time: 45.92132568359375ms\r\nStep 1184, loss: 0.013222722336649895, step time: 45.74275016784668ms\r\nStep 1185, loss: 0.013225318863987923, step time: 45.73488235473633ms\r\nStep 1186, loss: 0.013215537182986736, step time: 45.77302932739258ms\r\nStep 1187, loss: 0.013209911994636059, step time: 45.728206634521484ms\r\nStep 1188, loss: 0.013212025165557861, step time: 45.84336280822754ms\r\nStep 1189, loss: 0.013212206773459911, step time: 45.825958251953125ms\r\nStep 1190, loss: 0.013209975324571133, step time: 45.69649696350098ms\r\nStep 1191, loss: 0.013209190219640732, step time: 45.717716217041016ms\r\nStep 1192, loss: 0.01320299506187439, step time: 47.354936599731445ms\r\nStep 1193, loss: 0.013184705749154091, step time: 46.87309265136719ms\r\nStep 1194, loss: 0.013161982409656048, step time: 46.63348197937012ms\r\nStep 1195, loss: 0.01314445398747921, step time: 46.38218879699707ms\r\nStep 1196, loss: 0.01315387524664402, step time: 46.64492607116699ms\r\nStep 1197, loss: 0.01313814241439104, step time: 47.011375427246094ms\r\nStep 1198, loss: 0.013131203129887581, step time: 46.76556587219238ms\r\nStep 1199, loss: 0.013141365721821785, step time: 46.6766357421875ms\r\nStep 1200, loss: 0.013090346939861774, step time: 47.17850685119629ms\r\nStep 1201, loss: 0.013080115430057049, step time: 46.27585411071777ms\r\nStep 1202, loss: 0.013078694231808186, step time: 45.80879211425781ms\r\nStep 1203, loss: 0.01305653341114521, step time: 46.38242721557617ms\r\nStep 1204, loss: 0.013070520013570786, step time: 46.00834846496582ms\r\nStep 1205, loss: 0.013065065257251263, step time: 45.844078063964844ms\r\nStep 1206, loss: 0.013035919517278671, step time: 46.018362045288086ms\r\nStep 1207, loss: 0.013042841106653214, step time: 46.08321189880371ms\r\nStep 1208, loss: 0.013066526502370834, step time: 45.85576057434082ms\r\nStep 1209, loss: 0.013023587875068188, step time: 45.83859443664551ms\r\nStep 1210, loss: 0.013016484677791595, step time: 45.59159278869629ms\r\nStep 1211, loss: 0.013004275970160961, step time: 45.7766056060791ms\r\nStep 1212, loss: 0.013005012646317482, step time: 46.04792594909668ms\r\nStep 1213, loss: 0.012988238595426083, step time: 45.8071231842041ms\r\nStep 1214, loss: 0.012995036318898201, step time: 45.79925537109375ms\r\nStep 1215, loss: 0.012986728921532631, step time: 45.532941818237305ms\r\nStep 1216, loss: 0.012970169074833393, step time: 45.6700325012207ms\r\nStep 1217, loss: 0.012942923232913017, step time: 45.732975006103516ms\r\nStep 1218, loss: 0.012937545776367188, step time: 45.884132385253906ms\r\nStep 1219, loss: 0.012933283112943172, step time: 45.73941230773926ms\r\nStep 1220, loss: 0.012928947806358337, step time: 46.13375663757324ms\r\nStep 1221, loss: 0.012907358817756176, step time: 46.012163162231445ms\r\nStep 1222, loss: 0.012899937108159065, step time: 45.79329490661621ms\r\nStep 1223, loss: 0.012899990193545818, step time: 45.78852653503418ms\r\nStep 1224, loss: 0.012891331687569618, step time: 45.71175575256348ms\r\nStep 1225, loss: 0.012883719056844711, step time: 45.63188552856445ms\r\nStep 1226, loss: 0.012887272983789444, step time: 45.77279090881348ms\r\nStep 1227, loss: 0.012867975048720837, step time: 45.70651054382324ms\r\nStep 1228, loss: 0.012855098582804203, step time: 45.77493667602539ms\r\nStep 1229, loss: 0.012897443026304245, step time: 45.78113555908203ms\r\nStep 1230, loss: 0.01283825933933258, step time: 46.53525352478027ms\r\nStep 1231, loss: 0.012835483066737652, step time: 46.83327674865723ms\r\nStep 1232, loss: 0.012857530266046524, step time: 46.83113098144531ms\r\nStep 1233, loss: 0.012819170020520687, step time: 46.76508903503418ms\r\nStep 1234, loss: 0.012812488712370396, step time: 47.402381896972656ms\r\nStep 1235, loss: 0.012839429080486298, step time: 46.34976387023926ms\r\nStep 1236, loss: 0.012796950526535511, step time: 46.05436325073242ms\r\nStep 1237, loss: 0.012797374278306961, step time: 46.76389694213867ms\r\nStep 1238, loss: 0.012772912159562111, step time: 45.90964317321777ms\r\nStep 1239, loss: 0.012816797010600567, step time: 45.93920707702637ms\r\nStep 1240, loss: 0.012772857211530209, step time: 45.612335205078125ms\r\nStep 1241, loss: 0.01279456727206707, step time: 45.83597183227539ms\r\nStep 1242, loss: 0.012774939648807049, step time: 45.64332962036133ms\r\nStep 1243, loss: 0.012755898758769035, step time: 45.949697494506836ms\r\nStep 1244, loss: 0.01277386024594307, step time: 45.81189155578613ms\r\nStep 1245, loss: 0.012754649855196476, step time: 45.71413993835449ms\r\nStep 1246, loss: 0.012742663733661175, step time: 45.70364952087402ms\r\nStep 1247, loss: 0.012714417651295662, step time: 45.64237594604492ms\r\nStep 1248, loss: 0.012720204889774323, step time: 45.82023620605469ms\r\nStep 1249, loss: 0.012722077779471874, step time: 45.86529731750488ms\r\nStep 1250, loss: 0.012720368802547455, step time: 45.622825622558594ms\r\nStep 1251, loss: 0.01271582767367363, step time: 45.774221420288086ms\r\nStep 1252, loss: 0.012699514627456665, step time: 45.94230651855469ms\r\nStep 1253, loss: 0.012695656158030033, step time: 45.822858810424805ms\r\nStep 1254, loss: 0.012694188393652439, step time: 45.73535919189453ms\r\nStep 1255, loss: 0.012684161774814129, step time: 45.557260513305664ms\r\nStep 1256, loss: 0.012669762596487999, step time: 45.639991760253906ms\r\nStep 1257, loss: 0.012681730091571808, step time: 45.99785804748535ms\r\nStep 1258, loss: 0.012661767192184925, step time: 45.73535919189453ms\r\nStep 1259, loss: 0.012654367834329605, step time: 45.72558403015137ms\r\nStep 1260, loss: 0.012644401751458645, step time: 46.01311683654785ms\r\nStep 1261, loss: 0.012637380510568619, step time: 45.958757400512695ms\r\nStep 1262, loss: 0.01264734473079443, step time: 45.75848579406738ms\r\nStep 1263, loss: 0.012613357044756413, step time: 45.792341232299805ms\r\nStep 1264, loss: 0.012626408599317074, step time: 46.03743553161621ms\r\nStep 1265, loss: 0.012614875100553036, step time: 45.948028564453125ms\r\nStep 1266, loss: 0.012605641037225723, step time: 46.24009132385254ms\r\nStep 1267, loss: 0.012598841451108456, step time: 45.774221420288086ms\r\nStep 1268, loss: 0.012610377743840218, step time: 45.64857482910156ms\r\nStep 1269, loss: 0.01259828731417656, step time: 45.89056968688965ms\r\nStep 1270, loss: 0.012609779834747314, step time: 45.79806327819824ms\r\nStep 1271, loss: 0.012604527175426483, step time: 45.71247100830078ms\r\nStep 1272, loss: 0.012585155665874481, step time: 45.75157165527344ms\r\nStep 1273, loss: 0.0126064857468009, step time: 45.705318450927734ms\r\nStep 1274, loss: 0.012564141303300858, step time: 45.74251174926758ms\r\nStep 1275, loss: 0.01258926559239626, step time: 46.06914520263672ms\r\nStep 1276, loss: 0.012591758742928505, step time: 45.85385322570801ms\r\nStep 1277, loss: 0.01256309263408184, step time: 45.703887939453125ms\r\nStep 1278, loss: 0.012549206614494324, step time: 45.728206634521484ms\r\nStep 1279, loss: 0.012554020620882511, step time: 45.94302177429199ms\r\nStep 1280, loss: 0.012544386088848114, step time: 45.73392868041992ms\r\nStep 1281, loss: 0.012536046095192432, step time: 46.03219032287598ms\r\nStep 1282, loss: 0.012537400238215923, step time: 45.71342468261719ms\r\nStep 1283, loss: 0.01253677997738123, step time: 45.679330825805664ms\r\nStep 1284, loss: 0.012519214302301407, step time: 46.041011810302734ms\r\nStep 1285, loss: 0.01251330878585577, step time: 45.80235481262207ms\r\nStep 1286, loss: 0.012497075833380222, step time: 45.65739631652832ms\r\nStep 1287, loss: 0.012517224997282028, step time: 45.78208923339844ms\r\nStep 1288, loss: 0.012478548102080822, step time: 45.96877098083496ms\r\nStep 1289, loss: 0.01247206050902605, step time: 46.25248908996582ms\r\nStep 1290, loss: 0.012494492344558239, step time: 46.7526912689209ms\r\nStep 1291, loss: 0.012465283274650574, step time: 49.43966865539551ms\r\nStep 1292, loss: 0.012464798055589199, step time: 46.25988006591797ms\r\nStep 1293, loss: 0.012466602958738804, step time: 46.23579978942871ms\r\nStep 1294, loss: 0.012477189302444458, step time: 45.90034484863281ms\r\nStep 1295, loss: 0.01246099267154932, step time: 45.636892318725586ms\r\nStep 1296, loss: 0.012437542900443077, step time: 45.78375816345215ms\r\nStep 1297, loss: 0.012457283213734627, step time: 45.81499099731445ms\r\nStep 1298, loss: 0.01244855672121048, step time: 45.819759368896484ms\r\nStep 1299, loss: 0.01243811659514904, step time: 45.89128494262695ms\r\nStep 1300, loss: 0.012434575706720352, step time: 50.142526626586914ms\r\nStep 1301, loss: 0.012424557469785213, step time: 46.248435974121094ms\r\nStep 1302, loss: 0.01243073120713234, step time: 45.93038558959961ms\r\nStep 1303, loss: 0.012413287535309792, step time: 46.04315757751465ms\r\nStep 1304, loss: 0.012419262900948524, step time: 45.847177505493164ms\r\nStep 1305, loss: 0.012405824847519398, step time: 45.81308364868164ms\r\nStep 1306, loss: 0.012416432611644268, step time: 45.665740966796875ms\r\nStep 1307, loss: 0.012411006726324558, step time: 45.69530487060547ms\r\nStep 1308, loss: 0.012380561791360378, step time: 45.86482048034668ms\r\nStep 1309, loss: 0.012399058789014816, step time: 45.91846466064453ms\r\nStep 1310, loss: 0.012394142337143421, step time: 45.632362365722656ms\r\nStep 1311, loss: 0.012394863180816174, step time: 45.79329490661621ms\r\nStep 1312, loss: 0.012384370900690556, step time: 45.78804969787598ms\r\nStep 1313, loss: 0.012381087988615036, step time: 45.766353607177734ms\r\nStep 1314, loss: 0.012382744811475277, step time: 45.77994346618652ms\r\nStep 1315, loss: 0.012355505488812923, step time: 45.57633399963379ms\r\nStep 1316, loss: 0.012361952103674412, step time: 45.633792877197266ms\r\nStep 1317, loss: 0.012374067679047585, step time: 45.89986801147461ms\r\nStep 1318, loss: 0.012360064312815666, step time: 45.763254165649414ms\r\nStep 1319, loss: 0.01235783752053976, step time: 45.85862159729004ms\r\nStep 1320, loss: 0.012389383278787136, step time: 45.90916633605957ms\r\nStep 1321, loss: 0.012334238737821579, step time: 46.11086845397949ms\r\nStep 1322, loss: 0.012338714674115181, step time: 45.65072059631348ms\r\nStep 1323, loss: 0.012348994612693787, step time: 45.77445983886719ms\r\nStep 1324, loss: 0.012337345629930496, step time: 45.64642906188965ms\r\nStep 1325, loss: 0.012343105860054493, step time: 45.66550254821777ms\r\nStep 1326, loss: 0.012340517714619637, step time: 45.868873596191406ms\r\nStep 1327, loss: 0.01233579870313406, step time: 45.70960998535156ms\r\nStep 1328, loss: 0.012312929145991802, step time: 45.801639556884766ms\r\nStep 1329, loss: 0.012314314022660255, step time: 46.004295349121094ms\r\nStep 1330, loss: 0.012331552803516388, step time: 46.22244834899902ms\r\nStep 1331, loss: 0.012309220619499683, step time: 45.85599899291992ms\r\nStep 1332, loss: 0.012315720319747925, step time: 45.81761360168457ms\r\nStep 1333, loss: 0.012287156656384468, step time: 45.73798179626465ms\r\nStep 1334, loss: 0.012342222966253757, step time: 45.77302932739258ms\r\nStep 1335, loss: 0.012284064665436745, step time: 45.976877212524414ms\r\nStep 1336, loss: 0.012281606905162334, step time: 45.801639556884766ms\r\nStep 1337, loss: 0.012270258739590645, step time: 45.81165313720703ms\r\nStep 1338, loss: 0.012289234437048435, step time: 45.75300216674805ms\r\nStep 1339, loss: 0.01225599180907011, step time: 45.862436294555664ms\r\nStep 1340, loss: 0.012257913127541542, step time: 45.67909240722656ms\r\nStep 1341, loss: 0.01222953200340271, step time: 45.84050178527832ms\r\nStep 1342, loss: 0.012287809513509274, step time: 45.65739631652832ms\r\nStep 1343, loss: 0.012222708202898502, step time: 45.67217826843262ms\r\nStep 1344, loss: 0.012226175516843796, step time: 46.251535415649414ms\r\nStep 1345, loss: 0.012228534556925297, step time: 45.78828811645508ms\r\nStep 1346, loss: 0.012236867100000381, step time: 45.63713073730469ms\r\nStep 1347, loss: 0.012239014729857445, step time: 45.80068588256836ms\r\nStep 1348, loss: 0.012220215052366257, step time: 45.815229415893555ms\r\nStep 1349, loss: 0.012214508838951588, step time: 45.78709602355957ms\r\nStep 1350, loss: 0.0122393062338233, step time: 45.694828033447266ms\r\nStep 1351, loss: 0.012226786464452744, step time: 45.705556869506836ms\r\nStep 1352, loss: 0.012216695584356785, step time: 45.77779769897461ms\r\nStep 1353, loss: 0.012214972637593746, step time: 46.086788177490234ms\r\nStep 1354, loss: 0.012246282771229744, step time: 45.88818550109863ms\r\nStep 1355, loss: 0.012241327203810215, step time: 45.60494422912598ms\r\nStep 1356, loss: 0.012197609059512615, step time: 45.801401138305664ms\r\nStep 1357, loss: 0.01221647672355175, step time: 46.05865478515625ms\r\nStep 1358, loss: 0.012240415439009666, step time: 45.72606086730957ms\r\nStep 1359, loss: 0.012260762974619865, step time: 45.80235481262207ms\r\nStep 1360, loss: 0.012189662083983421, step time: 45.57490348815918ms\r\nStep 1361, loss: 0.012203944846987724, step time: 45.70364952087402ms\r\nStep 1362, loss: 0.01217204425483942, step time: 46.117305755615234ms\r\nStep 1363, loss: 0.012183144688606262, step time: 45.81093788146973ms\r\n",,terminal_output +1344,3841834,"TERMINAL",0,0,"Step 1364, loss: 0.012186959385871887, step time: 45.69435119628906ms\r\nStep 1365, loss: 0.012178377248346806, step time: 46.03123664855957ms\r\nStep 1366, loss: 0.012162494473159313, step time: 45.85909843444824ms\r\nStep 1367, loss: 0.012148763984441757, step time: 46.1118221282959ms\r\nStep 1368, loss: 0.012157458811998367, step time: 45.75490951538086ms\r\nStep 1369, loss: 0.012155959382653236, step time: 45.67885398864746ms\r\nStep 1370, loss: 0.012132847681641579, step time: 45.632362365722656ms\r\nStep 1371, loss: 0.012147661298513412, step time: 46.08559608459473ms\r\nStep 1372, loss: 0.012148682028055191, step time: 45.755863189697266ms\r\nStep 1373, loss: 0.012118158861994743, step time: 45.67313194274902ms\r\nStep 1374, loss: 0.012122171930968761, step time: 45.877695083618164ms\r\nStep 1375, loss: 0.012158986181020737, step time: 45.79496383666992ms\r\nStep 1376, loss: 0.012153777293860912, step time: 45.67599296569824ms\r\nStep 1377, loss: 0.012113229371607304, step time: 45.754194259643555ms\r\nStep 1378, loss: 0.012134630233049393, step time: 45.69888114929199ms\r\nStep 1379, loss: 0.012162582948803902, step time: 45.79019546508789ms\r\nStep 1380, loss: 0.012126144021749496, step time: 45.801401138305664ms\r\nStep 1381, loss: 0.012117097154259682, step time: 45.80283164978027ms\r\nStep 1382, loss: 0.012153140269219875, step time: 45.59946060180664ms\r\nStep 1383, loss: 0.012143298983573914, step time: 45.7763671875ms\r\nStep 1384, loss: 0.012097623199224472, step time: 45.88627815246582ms\r\nStep 1385, loss: 0.012084387242794037, step time: 45.615434646606445ms\r\n",,terminal_output +1345,3841834,"TERMINAL",0,0,"Step 1386, loss: 0.012097259052097797, step time: 45.747995376586914ms\r\nStep 1387, loss: 0.012067154981195927, step time: 45.77994346618652ms\r\nStep 1388, loss: 0.012081648223102093, step time: 45.595407485961914ms\r\nStep 1389, loss: 0.01207045279443264, step time: 45.97353935241699ms\r\nStep 1390, loss: 0.012054245918989182, step time: 45.73202133178711ms\r\nStep 1391, loss: 0.012033018283545971, step time: 45.647621154785156ms\r\nStep 1392, loss: 0.012055798433721066, step time: 45.6850528717041ms\r\nStep 1393, loss: 0.012092841789126396, step time: 45.94922065734863ms\r\nStep 1394, loss: 0.012037447653710842, step time: 45.71986198425293ms\r\nStep 1395, loss: 0.012080015614628792, step time: 45.705556869506836ms\r\nStep 1396, loss: 0.01209237053990364, step time: 45.64404487609863ms\r\nStep 1397, loss: 0.012037229724228382, step time: 45.578718185424805ms\r\nStep 1398, loss: 0.0120689170435071, step time: 46.09322547912598ms\r\nStep 1399, loss: 0.01206549908965826, step time: 45.71080207824707ms\r\nStep 1400, loss: 0.01203246507793665, step time: 46.66709899902344ms\r\nStep 1401, loss: 0.012024088762700558, step time: 46.164751052856445ms\r\nStep 1402, loss: 0.012040751054883003, step time: 45.89033126831055ms\r\nStep 1403, loss: 0.012019524350762367, step time: 45.697689056396484ms\r\nStep 1404, loss: 0.012001351453363895, step time: 45.899152755737305ms\r\nStep 1405, loss: 0.012041418813169003, step time: 45.78399658203125ms\r\nStep 1406, loss: 0.012007201090455055, step time: 45.78876495361328ms\r\nStep 1407, loss: 0.01201019436120987, step time: 45.8378791809082ms\r\nStep 1408, loss: 0.012011576443910599, step time: 45.84813117980957ms\r\nStep 1409, loss: 0.01200241968035698, step time: 45.810699462890625ms\r\nStep 1410, loss: 0.012017359957098961, step time: 45.75967788696289ms\r\nStep 1411, loss: 0.011991661041975021, step time: 45.7916259765625ms\r\nStep 1412, loss: 0.011995123699307442, step time: 45.78113555908203ms\r\nStep 1413, loss: 0.01197903323918581, step time: 46.00238800048828ms\r\nStep 1414, loss: 0.011993269436061382, step time: 45.75657844543457ms\r\nStep 1415, loss: 0.011993255466222763, step time: 45.73178291320801ms\r\nStep 1416, loss: 0.011983084492385387, step time: 45.85838317871094ms\r\nStep 1417, loss: 0.01200125738978386, step time: 45.90725898742676ms\r\nStep 1418, loss: 0.011960698291659355, step time: 45.88913917541504ms\r\nStep 1419, loss: 0.011986207216978073, step time: 46.141624450683594ms\r\nStep 1420, loss: 0.011961360462009907, step time: 45.72701454162598ms\r\nStep 1421, loss: 0.01196490228176117, step time: 45.61805725097656ms\r\nStep 1422, loss: 0.011931470595300198, step time: 46.04935646057129ms\r\nStep 1423, loss: 0.011926509439945221, step time: 46.004533767700195ms\r\nStep 1424, loss: 0.011944892816245556, step time: 45.81809043884277ms\r\nStep 1425, loss: 0.011926996521651745, step time: 45.777320861816406ms\r\nStep 1426, loss: 0.011925949715077877, step time: 47.222137451171875ms\r\nStep 1427, loss: 0.011930461972951889, step time: 45.85099220275879ms\r\nStep 1428, loss: 0.0119120292365551, step time: 45.781612396240234ms\r\nStep 1429, loss: 0.011920880526304245, step time: 45.90582847595215ms\r\nStep 1430, loss: 0.011915992014110088, step time: 45.66478729248047ms\r\nStep 1431, loss: 0.011918273754417896, step time: 46.00358009338379ms\r\nStep 1432, loss: 0.01193189062178135, step time: 45.84169387817383ms\r\nStep 1433, loss: 0.011914894916117191, step time: 45.68982124328613ms\r\nStep 1434, loss: 0.011917655356228352, step time: 45.693159103393555ms\r\nStep 1435, loss: 0.01191569771617651, step time: 45.93205451965332ms\r\nStep 1436, loss: 0.011903633363544941, step time: 45.86935043334961ms\r\nStep 1437, loss: 0.011883623898029327, step time: 45.889854431152344ms\r\nStep 1438, loss: 0.011914961971342564, step time: 45.75300216674805ms\r\nStep 1439, loss: 0.011890505440533161, step time: 45.603275299072266ms\r\nStep 1440, loss: 0.011882344260811806, step time: 45.84360122680664ms\r\nStep 1441, loss: 0.011859949678182602, step time: 45.95518112182617ms\r\nStep 1442, loss: 0.011895675212144852, step time: 45.621395111083984ms\r\nStep 1443, loss: 0.011837076395750046, step time: 45.90940475463867ms\r\nStep 1444, loss: 0.011843456886708736, step time: 45.966386795043945ms\r\nStep 1445, loss: 0.011856459081172943, step time: 45.77469825744629ms\r\nStep 1446, loss: 0.01182905025780201, step time: 45.897722244262695ms\r\nStep 1447, loss: 0.011817398481070995, step time: 45.773983001708984ms\r\nStep 1448, loss: 0.01184474490582943, step time: 45.74155807495117ms\r\nStep 1449, loss: 0.011846200563013554, step time: 45.80974578857422ms\r\nStep 1450, loss: 0.01184266060590744, step time: 46.04625701904297ms\r\nStep 1451, loss: 0.011836898513138294, step time: 45.77159881591797ms\r\nStep 1452, loss: 0.011871196329593658, step time: 45.72892189025879ms\r\nStep 1453, loss: 0.011826948262751102, step time: 45.9749698638916ms\r\nStep 1454, loss: 0.011842402629554272, step time: 45.847415924072266ms\r\nStep 1455, loss: 0.011827312409877777, step time: 45.73798179626465ms\r\nStep 1456, loss: 0.011808215640485287, step time: 45.889854431152344ms\r\nStep 1457, loss: 0.011800338514149189, step time: 45.92585563659668ms\r\nStep 1458, loss: 0.01182820275425911, step time: 45.77922821044922ms\r\nStep 1459, loss: 0.011821218766272068, step time: 45.94588279724121ms\r\nStep 1460, loss: 0.011829365976154804, step time: 45.67527770996094ms\r\nStep 1461, loss: 0.01183007750660181, step time: 45.60112953186035ms\r\nStep 1462, loss: 0.011818595230579376, step time: 46.018362045288086ms\r\nStep 1463, loss: 0.011803737841546535, step time: 45.8376407623291ms\r\nStep 1464, loss: 0.011810602620244026, step time: 45.83883285522461ms\r\nStep 1465, loss: 0.011798551306128502, step time: 45.629024505615234ms\r\nStep 1466, loss: 0.011803047731518745, step time: 47.04689979553223ms\r\nStep 1467, loss: 0.01179974153637886, step time: 46.25129699707031ms\r\nStep 1468, loss: 0.011757705360651016, step time: 46.15306854248047ms\r\nStep 1469, loss: 0.011760992929339409, step time: 45.96686363220215ms\r\nStep 1470, loss: 0.011753209866583347, step time: 45.61948776245117ms\r\nStep 1471, loss: 0.011749746277928352, step time: 46.28753662109375ms\r\nStep 1472, loss: 0.011751816608011723, step time: 45.961618423461914ms\r\nStep 1473, loss: 0.011755774728953838, step time: 45.84550857543945ms\r\nStep 1474, loss: 0.011768472380936146, step time: 45.82548141479492ms\r\nStep 1475, loss: 0.011769245378673077, step time: 45.75657844543457ms\r\nStep 1476, loss: 0.011733371764421463, step time: 45.90964317321777ms\r\nStep 1477, loss: 0.011721405200660229, step time: 45.983314514160156ms\r\nStep 1478, loss: 0.011718575842678547, step time: 45.76873779296875ms\r\nStep 1479, loss: 0.011722663417458534, step time: 45.75061798095703ms\r\nStep 1480, loss: 0.011721068993210793, step time: 45.84217071533203ms\r\nStep 1481, loss: 0.011757703498005867, step time: 46.01716995239258ms\r\nStep 1482, loss: 0.01170771662145853, step time: 45.934438705444336ms\r\nStep 1483, loss: 0.011700772680342197, step time: 45.86315155029297ms\r\nStep 1484, loss: 0.011694991029798985, step time: 45.8071231842041ms\r\nStep 1485, loss: 0.011668243445456028, step time: 45.88055610656738ms\r\nStep 1486, loss: 0.011685077100992203, step time: 45.8524227142334ms\r\nStep 1487, loss: 0.011690494604408741, step time: 45.81046104431152ms\r\nStep 1488, loss: 0.011666934937238693, step time: 45.71270942687988ms\r\nStep 1489, loss: 0.011667884886264801, step time: 46.0362434387207ms\r\nStep 1490, loss: 0.011691706255078316, step time: 45.623779296875ms\r\nStep 1491, loss: 0.011667166836559772, step time: 45.96352577209473ms\r\nStep 1492, loss: 0.011661233380436897, step time: 45.99475860595703ms\r\nStep 1493, loss: 0.011687735095620155, step time: 46.24366760253906ms\r\nStep 1494, loss: 0.011680212803184986, step time: 46.683549880981445ms\r\nStep 1495, loss: 0.01167494710534811, step time: 46.79512977600098ms\r\nStep 1496, loss: 0.011689434759318829, step time: 46.48303985595703ms\r\nStep 1497, loss: 0.011662391014397144, step time: 46.010732650756836ms\r\nStep 1498, loss: 0.011669169180095196, step time: 46.143293380737305ms\r\nStep 1499, loss: 0.011678177863359451, step time: 46.068429946899414ms\r\nStep 1500, loss: 0.011665720492601395, step time: 46.694040298461914ms\r\nStep 1501, loss: 0.011659801937639713, step time: 46.66709899902344ms\r\nStep 1502, loss: 0.011658231727778912, step time: 46.00405693054199ms\r\nStep 1503, loss: 0.011644046753644943, step time: 45.87268829345703ms\r\nStep 1504, loss: 0.011644151993095875, step time: 45.96090316772461ms\r\nStep 1505, loss: 0.011647380888462067, step time: 45.82405090332031ms\r\nStep 1506, loss: 0.011625035665929317, step time: 45.90106010437012ms\r\nStep 1507, loss: 0.011607231572270393, step time: 45.957088470458984ms\r\nStep 1508, loss: 0.011611816473305225, step time: 46.17667198181152ms\r\nStep 1509, loss: 0.011609110049903393, step time: 46.0512638092041ms\r\nStep 1510, loss: 0.011596022173762321, step time: 45.87578773498535ms\r\nStep 1511, loss: 0.011602211743593216, step time: 45.82524299621582ms\r\nStep 1512, loss: 0.011597726494073868, step time: 45.827627182006836ms\r\nStep 1513, loss: 0.011614435352385044, step time: 45.97735404968262ms\r\nStep 1514, loss: 0.01160347182303667, step time: 46.04339599609375ms\r\nStep 1515, loss: 0.01157884020358324, step time: 45.917510986328125ms\r\nStep 1516, loss: 0.01158942561596632, step time: 45.83930969238281ms\r\nStep 1517, loss: 0.011560460552573204, step time: 45.8827018737793ms\r\nStep 1518, loss: 0.01156414020806551, step time: 46.15664482116699ms\r\nStep 1519, loss: 0.011540071107447147, step time: 45.990705490112305ms\r\nStep 1520, loss: 0.011534890159964561, step time: 45.862436294555664ms\r\nStep 1521, loss: 0.01158531941473484, step time: 45.998334884643555ms\r\nStep 1522, loss: 0.011562983505427837, step time: 46.13327980041504ms\r\nStep 1523, loss: 0.011555140838027, step time: 45.92156410217285ms\r\nStep 1524, loss: 0.011527400463819504, step time: 46.152353286743164ms\r\nStep 1525, loss: 0.011538607999682426, step time: 45.79448699951172ms\r\nStep 1526, loss: 0.011522616259753704, step time: 45.906782150268555ms\r\nStep 1527, loss: 0.0115304384380579, step time: 46.15354537963867ms\r\nStep 1528, loss: 0.01152864471077919, step time: 46.082496643066406ms\r\nStep 1529, loss: 0.011532524600625038, step time: 45.78042030334473ms\r\nStep 1530, loss: 0.011518753133714199, step time: 45.72439193725586ms\r\nStep 1531, loss: 0.011526884511113167, step time: 45.93682289123535ms\r\nStep 1532, loss: 0.011509797535836697, step time: 45.93038558959961ms\r\nStep 1533, loss: 0.011501857079565525, step time: 45.94278335571289ms\r\nStep 1534, loss: 0.011513267643749714, step time: 45.78065872192383ms\r\nStep 1535, loss: 0.011525310575962067, step time: 45.61591148376465ms\r\nStep 1536, loss: 0.011502843350172043, step time: 45.90249061584473ms\r\nStep 1537, loss: 0.011489396914839745, step time: 45.91822624206543ms\r\nStep 1538, loss: 0.011485563591122627, step time: 45.74012756347656ms\r\nStep 1539, loss: 0.011497166007757187, step time: 45.89343070983887ms\r\nStep 1540, loss: 0.01147391926497221, step time: 45.7303524017334ms\r\nStep 1541, loss: 0.011498646810650826, step time: 45.945167541503906ms\r\nStep 1542, loss: 0.011471244506537914, step time: 45.88580131530762ms\r\nStep 1543, loss: 0.011481204070150852, step time: 45.79925537109375ms\r\nStep 1544, loss: 0.011491648852825165, step time: 45.94230651855469ms\r\nStep 1545, loss: 0.011483244597911835, step time: 46.083927154541016ms\r\nStep 1546, loss: 0.011471627280116081, step time: 49.77822303771973ms\r\nStep 1547, loss: 0.011475690640509129, step time: 45.80378532409668ms\r\nStep 1548, loss: 0.011458754539489746, step time: 45.81189155578613ms\r\nStep 1549, loss: 0.011467039585113525, step time: 45.96900939941406ms\r\nStep 1550, loss: 0.01147708110511303, step time: 45.93777656555176ms\r\nStep 1551, loss: 0.011467430740594864, step time: 45.922279357910156ms\r\nStep 1552, loss: 0.011462174355983734, step time: 46.0057258605957ms\r\nStep 1553, loss: 0.011445386335253716, step time: 45.86362838745117ms\r\nStep 1554, loss: 0.011472308076918125, step time: 45.97163200378418ms\r\nStep 1555, loss: 0.011440662667155266, step time: 45.900583267211914ms\r\nStep 1556, loss: 0.011457935906946659, step time: 45.81785202026367ms\r\nStep 1557, loss: 0.011441794224083424, step time: 45.89653015136719ms\r\nStep 1558, loss: 0.011476467363536358, step time: 46.064138412475586ms\r\nStep 1559, loss: 0.011447411961853504, step time: 47.37710952758789ms\r\nStep 1560, loss: 0.011433778330683708, step time: 45.790910720825195ms\r\nStep 1561, loss: 0.011427713558077812, step time: 45.83024978637695ms\r\nStep 1562, loss: 0.011483201757073402, step time: 46.038150787353516ms\r\nStep 1563, loss: 0.011402735486626625, step time: 45.95017433166504ms\r\nStep 1564, loss: 0.011404905468225479, step time: 45.87578773498535ms\r\nStep 1565, loss: 0.011411965824663639, step time: 45.76730728149414ms\r\nStep 1566, loss: 0.011442935094237328, step time: 46.04148864746094ms\r\nStep 1567, loss: 0.011372329667210579, step time: 46.225786209106445ms\r\nStep 1568, loss: 0.011381966061890125, step time: 45.823097229003906ms\r\nStep 1569, loss: 0.011381849646568298, step time: 45.93539237976074ms\r\nStep 1570, loss: 0.01139396894723177, step time: 45.78137397766113ms\r\nStep 1571, loss: 0.01138332299888134, step time: 46.063899993896484ms\r\nStep 1572, loss: 0.011383653618395329, step time: 45.952796936035156ms\r\nStep 1573, loss: 0.011401225812733173, step time: 45.95375061035156ms\r\nStep 1574, loss: 0.011389268562197685, step time: 45.789241790771484ms\r\nStep 1575, loss: 0.011372262611985207, step time: 45.636653900146484ms\r\nStep 1576, loss: 0.011378291063010693, step time: 45.989036560058594ms\r\nStep 1577, loss: 0.011385759338736534, step time: 45.897722244262695ms\r\nStep 1578, loss: 0.011381846852600574, step time: 45.83907127380371ms\r\nStep 1579, loss: 0.01139574870467186, step time: 45.897483825683594ms\r\nStep 1580, loss: 0.0113853570073843, step time: 47.41525650024414ms\r\nStep 1581, loss: 0.011379499919712543, step time: 48.02584648132324ms\r\nStep 1582, loss: 0.011367636732757092, step time: 47.82223701477051ms\r\nStep 1583, loss: 0.011355645954608917, step time: 48.166513442993164ms\r\nStep 1584, loss: 0.011360090225934982, step time: 48.088788986206055ms\r\nStep 1585, loss: 0.01135565247386694, step time: 47.896385192871094ms\r\nStep 1586, loss: 0.011350282467901707, step time: 47.87111282348633ms\r\nStep 1587, loss: 0.011348545551300049, step time: 48.200368881225586ms\r\nStep 1588, loss: 0.011355206370353699, step time: 47.89924621582031ms\r\n",,terminal_output +1346,3841834,"TERMINAL",0,0,"Step 1589, loss: 0.01134570688009262, step time: 48.12121391296387ms\r\nStep 1590, loss: 0.01135154627263546, step time: 49.23534393310547ms\r\nStep 1591, loss: 0.011351918801665306, step time: 49.24774169921875ms\r\nStep 1592, loss: 0.011355374939739704, step time: 48.26545715332031ms\r\nStep 1593, loss: 0.011341345496475697, step time: 48.21443557739258ms\r\nStep 1594, loss: 0.011365982703864574, step time: 47.91712760925293ms\r\nStep 1595, loss: 0.011346309445798397, step time: 48.035621643066406ms\r\nStep 1596, loss: 0.011341682635247707, step time: 47.936201095581055ms\r\nStep 1597, loss: 0.011330473236739635, step time: 49.43585395812988ms\r\nStep 1598, loss: 0.011330762878060341, step time: 48.13385009765625ms\r\nStep 1599, loss: 0.011309794150292873, step time: 48.105716705322266ms\r\nStep 1600, loss: 0.011293191462755203, step time: 48.34914207458496ms\r\nStep 1601, loss: 0.011328122578561306, step time: 48.2635498046875ms\r\nStep 1602, loss: 0.011292669922113419, step time: 47.87468910217285ms\r\nStep 1603, loss: 0.011276683770120144, step time: 48.09737205505371ms\r\nStep 1604, loss: 0.01128935907036066, step time: 47.850608825683594ms\r\nStep 1605, loss: 0.011307749897241592, step time: 47.91617393493652ms\r\n",,terminal_output +1347,3841834,"TERMINAL",0,0,"Step 1606, loss: 0.011282211169600487, step time: 47.87945747375488ms\r\nStep 1607, loss: 0.011270493268966675, step time: 48.1112003326416ms\r\nStep 1608, loss: 0.011295598931610584, step time: 47.87087440490723ms\r\nStep 1609, loss: 0.011298387311398983, step time: 48.239707946777344ms\r\nStep 1610, loss: 0.011269912123680115, step time: 47.77979850769043ms\r\nStep 1611, loss: 0.011276415549218655, step time: 48.24352264404297ms\r\nStep 1612, loss: 0.011309865862131119, step time: 47.98603057861328ms\r\nStep 1613, loss: 0.011253605596721172, step time: 48.21014404296875ms\r\nStep 1614, loss: 0.011268937960267067, step time: 47.86062240600586ms\r\nStep 1615, loss: 0.011282187886536121, step time: 47.756195068359375ms\r\nStep 1616, loss: 0.0112632280215621, step time: 47.99771308898926ms\r\nStep 1617, loss: 0.011264815926551819, step time: 48.08545112609863ms\r\nStep 1618, loss: 0.011255314573645592, step time: 47.858476638793945ms\r\nStep 1619, loss: 0.011317923665046692, step time: 48.05397987365723ms\r\nStep 1620, loss: 0.011262340471148491, step time: 47.597408294677734ms\r\nStep 1621, loss: 0.011243618093430996, step time: 48.29573631286621ms\r\nStep 1622, loss: 0.011279397644102573, step time: 47.8518009185791ms\r\nStep 1623, loss: 0.011253091506659985, step time: 48.19941520690918ms\r\nStep 1624, loss: 0.011253195814788342, step time: 47.96123504638672ms\r\nStep 1625, loss: 0.011245394125580788, step time: 47.83916473388672ms\r\nStep 1626, loss: 0.01123957708477974, step time: 47.90019989013672ms\r\nStep 1627, loss: 0.011265082284808159, step time: 48.303842544555664ms\r\nStep 1628, loss: 0.01124587468802929, step time: 48.026084899902344ms\r\nStep 1629, loss: 0.011239174753427505, step time: 48.38252067565918ms\r\nStep 1630, loss: 0.011241693049669266, step time: 47.77407646179199ms\r\nStep 1631, loss: 0.011233017779886723, step time: 48.065900802612305ms\r\nStep 1632, loss: 0.011240284889936447, step time: 47.814130783081055ms\r\nStep 1633, loss: 0.011225409805774689, step time: 48.21276664733887ms\r\nStep 1634, loss: 0.011274493299424648, step time: 48.131465911865234ms\r\nStep 1635, loss: 0.011228339746594429, step time: 47.9888916015625ms\r\nStep 1636, loss: 0.01122350711375475, step time: 48.436641693115234ms\r\nStep 1637, loss: 0.011253024451434612, step time: 48.2478141784668ms\r\nStep 1638, loss: 0.01123750302940607, step time: 47.9738712310791ms\r\nStep 1639, loss: 0.011218372732400894, step time: 48.326969146728516ms\r\nStep 1640, loss: 0.01120894867926836, step time: 47.853708267211914ms\r\nStep 1641, loss: 0.01124146394431591, step time: 48.20704460144043ms\r\nStep 1642, loss: 0.01120357308536768, step time: 49.868106842041016ms\r\nStep 1643, loss: 0.01123274490237236, step time: 47.90520668029785ms\r\nStep 1644, loss: 0.011236467398703098, step time: 46.332597732543945ms\r\nStep 1645, loss: 0.011214842088520527, step time: 47.48940467834473ms\r\nStep 1646, loss: 0.011174817569553852, step time: 47.66082763671875ms\r\nStep 1647, loss: 0.011164199560880661, step time: 48.065900802612305ms\r\nStep 1648, loss: 0.011194052174687386, step time: 47.76930809020996ms\r\nStep 1649, loss: 0.011163359507918358, step time: 47.93906211853027ms\r\nStep 1650, loss: 0.011165797710418701, step time: 47.70946502685547ms\r\nStep 1651, loss: 0.011153826490044594, step time: 47.99056053161621ms\r\nStep 1652, loss: 0.011144070886075497, step time: 47.78933525085449ms\r\nStep 1653, loss: 0.011147442273795605, step time: 48.058509826660156ms\r\nStep 1654, loss: 0.01112679298967123, step time: 48.07615280151367ms\r\nStep 1655, loss: 0.011144435033202171, step time: 47.86872863769531ms\r\nStep 1656, loss: 0.011140838265419006, step time: 47.93286323547363ms\r\nStep 1657, loss: 0.011134224012494087, step time: 49.10612106323242ms\r\nStep 1658, loss: 0.011128214187920094, step time: 48.088788986206055ms\r\nStep 1659, loss: 0.011167994700372219, step time: 48.128366470336914ms\r\nStep 1660, loss: 0.011148507706820965, step time: 47.707557678222656ms\r\nStep 1661, loss: 0.011144950054585934, step time: 48.22039604187012ms\r\nStep 1662, loss: 0.011149715632200241, step time: 48.191070556640625ms\r\nStep 1663, loss: 0.011137226596474648, step time: 48.22731018066406ms\r\nStep 1664, loss: 0.01114402711391449, step time: 47.97983169555664ms\r\nStep 1665, loss: 0.011156747117638588, step time: 47.78242111206055ms\r\nStep 1666, loss: 0.011132420971989632, step time: 48.00772666931152ms\r\nStep 1667, loss: 0.01114710047841072, step time: 48.05254936218262ms\r\nStep 1668, loss: 0.011160003952682018, step time: 48.45929145812988ms\r\nStep 1669, loss: 0.011137020774185658, step time: 48.161983489990234ms\r\nStep 1670, loss: 0.011154920794069767, step time: 47.54233360290527ms\r\nStep 1671, loss: 0.011157513596117496, step time: 49.11375045776367ms\r\nStep 1672, loss: 0.011146428063511848, step time: 48.23470115661621ms\r\nStep 1673, loss: 0.011162550188601017, step time: 48.26521873474121ms\r\nStep 1674, loss: 0.01115761324763298, step time: 48.03919792175293ms\r\nStep 1675, loss: 0.011147518642246723, step time: 47.824859619140625ms\r\nStep 1676, loss: 0.011111191473901272, step time: 47.922611236572266ms\r\nStep 1677, loss: 0.011122109368443489, step time: 48.116207122802734ms\r\nStep 1678, loss: 0.011120506562292576, step time: 54.60786819458008ms\r\nStep 1679, loss: 0.011102556250989437, step time: 48.00009727478027ms\r\nStep 1680, loss: 0.01111274678260088, step time: 47.52349853515625ms\r\nStep 1681, loss: 0.01113142166286707, step time: 48.043251037597656ms\r\nStep 1682, loss: 0.01109767984598875, step time: 47.837018966674805ms\r\nStep 1683, loss: 0.011095184832811356, step time: 47.82676696777344ms\r\nStep 1684, loss: 0.011102887801826, step time: 52.40440368652344ms\r\nStep 1685, loss: 0.011096463538706303, step time: 46.9050407409668ms\r\nStep 1686, loss: 0.011113738641142845, step time: 46.46110534667969ms\r\nStep 1687, loss: 0.011093967594206333, step time: 46.18573188781738ms\r\nStep 1688, loss: 0.011090132407844067, step time: 46.10800743103027ms\r\nStep 1689, loss: 0.011078649200499058, step time: 45.934200286865234ms\r\nStep 1690, loss: 0.011060172691941261, step time: 47.31607437133789ms\r\nStep 1691, loss: 0.011054303497076035, step time: 47.426462173461914ms\r\nStep 1692, loss: 0.011066230945289135, step time: 47.42908477783203ms\r\nStep 1693, loss: 0.011028876528143883, step time: 46.465396881103516ms\r\nStep 1694, loss: 0.011030609719455242, step time: 46.03457450866699ms\r\nStep 1695, loss: 0.011054249480366707, step time: 46.523094177246094ms\r\nStep 1696, loss: 0.011035861447453499, step time: 46.11063003540039ms\r\nStep 1697, loss: 0.01106608659029007, step time: 46.03409767150879ms\r\nStep 1698, loss: 0.011031168513000011, step time: 45.94588279724121ms\r\nStep 1699, loss: 0.011049806140363216, step time: 46.048641204833984ms\r\nStep 1700, loss: 0.011069187894463539, step time: 47.42264747619629ms\r\nStep 1701, loss: 0.011053579859435558, step time: 46.730756759643555ms\r\nStep 1702, loss: 0.011059100739657879, step time: 46.01335525512695ms\r\nStep 1703, loss: 0.011083665303885937, step time: 46.03123664855957ms\r\nStep 1704, loss: 0.01107859518378973, step time: 45.98259925842285ms\r\nStep 1705, loss: 0.011094440706074238, step time: 45.99952697753906ms\r\nStep 1706, loss: 0.01107068546116352, step time: 46.0050106048584ms\r\nStep 1707, loss: 0.011076129972934723, step time: 46.06795310974121ms\r\nStep 1708, loss: 0.0110841765999794, step time: 45.82643508911133ms\r\nStep 1709, loss: 0.011073809117078781, step time: 45.751333236694336ms\r\nStep 1710, loss: 0.011059755459427834, step time: 45.9437370300293ms\r\nStep 1711, loss: 0.011040082201361656, step time: 45.893192291259766ms\r\nStep 1712, loss: 0.011065822094678879, step time: 45.76587677001953ms\r\nStep 1713, loss: 0.011056700721383095, step time: 45.882463455200195ms\r\nStep 1714, loss: 0.01106009166687727, step time: 46.04315757751465ms\r\nStep 1715, loss: 0.011032333597540855, step time: 45.8378791809082ms\r\nStep 1716, loss: 0.01103828102350235, step time: 45.91774940490723ms\r\nStep 1717, loss: 0.011051623150706291, step time: 45.88508605957031ms\r\nStep 1718, loss: 0.011025264859199524, step time: 45.77445983886719ms\r\nStep 1719, loss: 0.011014237068593502, step time: 46.114444732666016ms\r\nStep 1720, loss: 0.01102546788752079, step time: 45.91012001037598ms\r\nStep 1721, loss: 0.011028174310922623, step time: 45.8376407623291ms\r\nStep 1722, loss: 0.011019962839782238, step time: 45.792579650878906ms\r\nStep 1723, loss: 0.0110166035592556, step time: 46.07272148132324ms\r\nStep 1724, loss: 0.011000624857842922, step time: 45.88937759399414ms\r\nStep 1725, loss: 0.01098648738116026, step time: 45.830726623535156ms\r\nStep 1726, loss: 0.010980034247040749, step time: 45.82548141479492ms\r\nStep 1727, loss: 0.010971266776323318, step time: 45.7158088684082ms\r\nStep 1728, loss: 0.010960192419588566, step time: 46.12088203430176ms\r\nStep 1729, loss: 0.01094646193087101, step time: 45.984745025634766ms\r\nStep 1730, loss: 0.010946721769869328, step time: 45.72939872741699ms\r\nStep 1731, loss: 0.010925425216555595, step time: 45.78399658203125ms\r\nStep 1732, loss: 0.010936888866126537, step time: 45.98402976989746ms\r\nStep 1733, loss: 0.010915202088654041, step time: 45.8378791809082ms\r\nStep 1734, loss: 0.010930916294455528, step time: 45.866966247558594ms\r\nStep 1735, loss: 0.010928092524409294, step time: 45.75920104980469ms\r\nStep 1736, loss: 0.01091940887272358, step time: 45.79043388366699ms\r\nStep 1737, loss: 0.010924162343144417, step time: 46.24795913696289ms\r\nStep 1738, loss: 0.010918671265244484, step time: 45.94111442565918ms\r\nStep 1739, loss: 0.01091834157705307, step time: 45.95494270324707ms\r\nStep 1740, loss: 0.010912244208157063, step time: 45.67861557006836ms\r\nStep 1741, loss: 0.010927821509540081, step time: 46.012163162231445ms\r\nStep 1742, loss: 0.010917870327830315, step time: 45.964956283569336ms\r\nStep 1743, loss: 0.010903564281761646, step time: 46.10180854797363ms\r\nStep 1744, loss: 0.010939138010144234, step time: 45.71104049682617ms\r\nStep 1745, loss: 0.01092632208019495, step time: 45.60041427612305ms\r\nStep 1746, loss: 0.010923529975116253, step time: 46.15163803100586ms\r\nStep 1747, loss: 0.010926318354904652, step time: 45.95160484313965ms\r\nStep 1748, loss: 0.01089735422283411, step time: 45.812129974365234ms\r\nStep 1749, loss: 0.010899935849010944, step time: 45.87507247924805ms\r\nStep 1750, loss: 0.010928265750408173, step time: 45.8834171295166ms\r\nStep 1751, loss: 0.010938704013824463, step time: 45.907020568847656ms\r\nStep 1752, loss: 0.010918702930212021, step time: 45.964717864990234ms\r\nStep 1753, loss: 0.010918425396084785, step time: 45.8071231842041ms\r\nStep 1754, loss: 0.010891042649745941, step time: 45.767784118652344ms\r\nStep 1755, loss: 0.010900591500103474, step time: 45.87912559509277ms\r\nStep 1756, loss: 0.010903334245085716, step time: 45.93515396118164ms\r\nStep 1757, loss: 0.010888666845858097, step time: 45.74990272521973ms\r\nStep 1758, loss: 0.010880162939429283, step time: 45.98569869995117ms\r\nStep 1759, loss: 0.010871061123907566, step time: 46.148061752319336ms\r\nStep 1760, loss: 0.010860390961170197, step time: 45.84813117980957ms\r\nStep 1761, loss: 0.010855192318558693, step time: 46.01907730102539ms\r\nStep 1762, loss: 0.01087260339409113, step time: 46.166181564331055ms\r\nStep 1763, loss: 0.010838477872312069, step time: 46.09060287475586ms\r\nStep 1764, loss: 0.01083866786211729, step time: 46.484947204589844ms\r\nStep 1765, loss: 0.010851687751710415, step time: 46.051740646362305ms\r\nStep 1766, loss: 0.010834140703082085, step time: 45.938968658447266ms\r\nStep 1767, loss: 0.010820348747074604, step time: 46.117305755615234ms\r\nStep 1768, loss: 0.010810221545398235, step time: 46.24533653259277ms\r\nStep 1769, loss: 0.010800745338201523, step time: 46.04005813598633ms\r\nStep 1770, loss: 0.010795362293720245, step time: 45.9752082824707ms\r\nStep 1771, loss: 0.01079052034765482, step time: 45.99452018737793ms\r\nStep 1772, loss: 0.010837222449481487, step time: 46.079397201538086ms\r\nStep 1773, loss: 0.010766669176518917, step time: 46.0209846496582ms\r\nStep 1774, loss: 0.010792904533445835, step time: 45.98832130432129ms\r\nStep 1775, loss: 0.010784496553242207, step time: 45.71652412414551ms\r\nStep 1776, loss: 0.010762893594801426, step time: 45.77469825744629ms\r\nStep 1777, loss: 0.010803181678056717, step time: 46.233177185058594ms\r\nStep 1778, loss: 0.010780402459204197, step time: 46.04458808898926ms\r\nStep 1779, loss: 0.010821355506777763, step time: 45.877933502197266ms\r\nStep 1780, loss: 0.010757697746157646, step time: 45.60136795043945ms\r\nStep 1781, loss: 0.010776637122035027, step time: 45.897483825683594ms\r\nStep 1782, loss: 0.010760282166302204, step time: 45.82691192626953ms\r\nStep 1783, loss: 0.010754624381661415, step time: 46.044349670410156ms\r\nStep 1784, loss: 0.010743477381765842, step time: 45.690059661865234ms\r\nStep 1785, loss: 0.010747989639639854, step time: 45.86029052734375ms\r\nStep 1786, loss: 0.010779881849884987, step time: 45.98188400268555ms\r\nStep 1787, loss: 0.010781259275972843, step time: 45.92299461364746ms\r\nStep 1788, loss: 0.010758000425994396, step time: 45.86362838745117ms\r\nStep 1789, loss: 0.010760798119008541, step time: 45.77827453613281ms\r\nStep 1790, loss: 0.01077757403254509, step time: 45.98212242126465ms\r\nStep 1791, loss: 0.010776027105748653, step time: 45.93038558959961ms\r\nStep 1792, loss: 0.010760417208075523, step time: 45.931100845336914ms\r\nStep 1793, loss: 0.010734617710113525, step time: 45.816659927368164ms\r\nStep 1794, loss: 0.010760938748717308, step time: 45.8066463470459ms\r\nStep 1795, loss: 0.010746395215392113, step time: 45.99356651306152ms\r\nStep 1796, loss: 0.010741486214101315, step time: 45.864105224609375ms\r\nStep 1797, loss: 0.010766442865133286, step time: 45.89223861694336ms\r\nStep 1798, loss: 0.010722187347710133, step time: 46.35000228881836ms\r\nStep 1799, loss: 0.010736670345067978, step time: 46.160221099853516ms\r\nStep 1800, loss: 0.010725924745202065, step time: 47.51420021057129ms\r\nStep 1801, loss: 0.010722426697611809, step time: 46.7069149017334ms\r\nStep 1802, loss: 0.010726505890488625, step time: 46.076297760009766ms\r\nStep 1803, loss: 0.010711755603551865, step time: 45.91941833496094ms\r\n",,terminal_output +1348,3841834,"TERMINAL",0,0,"Step 1804, loss: 0.010702362284064293, step time: 45.84550857543945ms\r\nStep 1805, loss: 0.01070489827543497, step time: 45.94111442565918ms\r\nStep 1806, loss: 0.010687218979001045, step time: 45.909881591796875ms\r\nStep 1807, loss: 0.010711668990552425, step time: 45.97592353820801ms\r\nStep 1808, loss: 0.01069046650081873, step time: 45.86076736450195ms\r\nStep 1809, loss: 0.010660873726010323, step time: 45.80235481262207ms\r\nStep 1810, loss: 0.010703064501285553, step time: 45.89223861694336ms\r\nStep 1811, loss: 0.01066487655043602, step time: 47.621965408325195ms\r\nStep 1812, loss: 0.010669710114598274, step time: 45.920372009277344ms\r\nStep 1813, loss: 0.010682852007448673, step time: 45.799970626831055ms\r\nStep 1814, loss: 0.010641258209943771, step time: 46.042680740356445ms\r\nStep 1815, loss: 0.0106440344825387, step time: 45.777082443237305ms\r\nStep 1816, loss: 0.010624028742313385, step time: 45.885562896728516ms\r\nStep 1817, loss: 0.01062324270606041, step time: 45.91512680053711ms\r\nStep 1818, loss: 0.01062130555510521, step time: 45.72176933288574ms\r\nStep 1819, loss: 0.010618699714541435, step time: 46.23675346374512ms\r\nStep 1820, loss: 0.010614040307700634, step time: 45.93634605407715ms\r\nStep 1821, loss: 0.0106040695682168, step time: 45.8521842956543ms\r\nStep 1822, loss: 0.010603360831737518, step time: 45.80211639404297ms\r\nStep 1823, loss: 0.010612419806420803, step time: 46.0970401763916ms\r\nStep 1824, loss: 0.010598532855510712, step time: 45.823097229003906ms\r\nStep 1825, loss: 0.010592524893581867, step time: 45.93157768249512ms\r\nStep 1826, loss: 0.010612978599965572, step time: 45.697689056396484ms\r\nStep 1827, loss: 0.010610446333885193, step time: 45.77302932739258ms\r\nStep 1828, loss: 0.01066149678081274, step time: 48.97570610046387ms\r\nStep 1829, loss: 0.010645044967532158, step time: 46.149492263793945ms\r\nStep 1830, loss: 0.010631387121975422, step time: 45.702457427978516ms\r\nStep 1831, loss: 0.010623310692608356, step time: 45.70317268371582ms\r\nStep 1832, loss: 0.010647470131516457, step time: 46.129703521728516ms\r\nStep 1833, loss: 0.0106354970484972, step time: 45.76730728149414ms\r\nStep 1834, loss: 0.010634241625666618, step time: 45.86911201477051ms\r\nStep 1835, loss: 0.010649643838405609, step time: 45.73416709899902ms\r\nStep 1836, loss: 0.01062527485191822, step time: 45.655250549316406ms\r\nStep 1837, loss: 0.010635926388204098, step time: 45.892953872680664ms\r\nStep 1838, loss: 0.010652325116097927, step time: 45.88460922241211ms\r\nStep 1839, loss: 0.010626031085848808, step time: 45.886993408203125ms\r\nStep 1840, loss: 0.010612727142870426, step time: 45.717477798461914ms\r\nStep 1841, loss: 0.010620642453432083, step time: 46.11086845397949ms\r\nStep 1842, loss: 0.010601373389363289, step time: 45.93920707702637ms\r\nStep 1843, loss: 0.01060570776462555, step time: 46.21315002441406ms\r\nStep 1844, loss: 0.010610579513013363, step time: 45.838117599487305ms\r\nStep 1845, loss: 0.010606108233332634, step time: 45.80354690551758ms\r\nStep 1846, loss: 0.010587591677904129, step time: 45.867204666137695ms\r\nStep 1847, loss: 0.010568102821707726, step time: 45.752763748168945ms\r\nStep 1848, loss: 0.01054900512099266, step time: 45.75324058532715ms\r\nStep 1849, loss: 0.010534260421991348, step time: 45.64952850341797ms\r\nStep 1850, loss: 0.010536246001720428, step time: 45.91989517211914ms\r\nStep 1851, loss: 0.010517765767872334, step time: 45.854806900024414ms\r\nStep 1852, loss: 0.01051185093820095, step time: 45.96066474914551ms\r\nStep 1853, loss: 0.01049786526709795, step time: 45.77040672302246ms\r\nStep 1854, loss: 0.01048180740326643, step time: 45.89223861694336ms\r\nStep 1855, loss: 0.010521878488361835, step time: 45.84670066833496ms\r\nStep 1856, loss: 0.010474856942892075, step time: 45.97187042236328ms\r\nStep 1857, loss: 0.010459517128765583, step time: 45.835256576538086ms\r\nStep 1858, loss: 0.010468992404639721, step time: 45.79758644104004ms\r\nStep 1859, loss: 0.010435856878757477, step time: 46.0052490234375ms\r\nStep 1860, loss: 0.010480865836143494, step time: 45.80807685852051ms\r\nStep 1861, loss: 0.010492884553968906, step time: 45.778751373291016ms\r\nStep 1862, loss: 0.010468430817127228, step time: 45.90797424316406ms\r\nStep 1863, loss: 0.010460112243890762, step time: 46.03385925292969ms\r\nStep 1864, loss: 0.01045831385999918, step time: 45.926570892333984ms\r\nStep 1865, loss: 0.010454332455992699, step time: 46.758174896240234ms\r\nStep 1866, loss: 0.01044355146586895, step time: 45.79734802246094ms\r\nStep 1867, loss: 0.010458074510097504, step time: 45.65000534057617ms\r\nStep 1868, loss: 0.010473637841641903, step time: 45.883893966674805ms\r\nStep 1869, loss: 0.010465574450790882, step time: 45.809268951416016ms\r\nStep 1870, loss: 0.01045144535601139, step time: 45.67432403564453ms\r\nStep 1871, loss: 0.010458091273903847, step time: 45.737266540527344ms\r\nStep 1872, loss: 0.01046082004904747, step time: 45.96352577209473ms\r\nStep 1873, loss: 0.010470126755535603, step time: 45.91631889343262ms\r\nStep 1874, loss: 0.010466454550623894, step time: 45.90582847595215ms\r\nStep 1875, loss: 0.010455118492245674, step time: 45.79877853393555ms\r\nStep 1876, loss: 0.010464105755090714, step time: 45.82571983337402ms\r\nStep 1877, loss: 0.010469978675246239, step time: 46.15139961242676ms\r\nStep 1878, loss: 0.010464750230312347, step time: 45.9284782409668ms\r\nStep 1879, loss: 0.010479725897312164, step time: 45.89986801147461ms\r\nStep 1880, loss: 0.010455086827278137, step time: 45.71175575256348ms\r\nStep 1881, loss: 0.010451627895236015, step time: 46.08011245727539ms\r\nStep 1882, loss: 0.01047500316053629, step time: 45.911550521850586ms\r\nStep 1883, loss: 0.010439084842801094, step time: 45.89343070983887ms\r\nStep 1884, loss: 0.010443955659866333, step time: 47.78170585632324ms\r\nStep 1885, loss: 0.010434688068926334, step time: 45.82023620605469ms\r\nStep 1886, loss: 0.010431289672851562, step time: 46.0202693939209ms\r\nStep 1887, loss: 0.010427315719425678, step time: 46.570539474487305ms\r\nStep 1888, loss: 0.010447521694004536, step time: 46.065568923950195ms\r\nStep 1889, loss: 0.010388935916125774, step time: 45.812129974365234ms\r\nStep 1890, loss: 0.010408703237771988, step time: 46.75459861755371ms\r\nStep 1891, loss: 0.010398882441222668, step time: 46.18024826049805ms\r\nStep 1892, loss: 0.010397427715361118, step time: 46.473026275634766ms\r\nStep 1893, loss: 0.010394732467830181, step time: 47.287702560424805ms\r\nStep 1894, loss: 0.010363897308707237, step time: 46.9968318939209ms\r\nStep 1895, loss: 0.010396153666079044, step time: 47.020673751831055ms\r\nStep 1896, loss: 0.010364712215960026, step time: 46.48017883300781ms\r\nStep 1897, loss: 0.010366016998887062, step time: 46.06127738952637ms\r\nStep 1898, loss: 0.010373393073678017, step time: 51.0561466217041ms\r\nStep 1899, loss: 0.010354752652347088, step time: 46.36979103088379ms\r\nStep 1900, loss: 0.01035426463931799, step time: 47.589778900146484ms\r\nStep 1901, loss: 0.0103524811565876, step time: 46.320438385009766ms\r\nStep 1902, loss: 0.010349975898861885, step time: 46.32210731506348ms\r\nStep 1903, loss: 0.010350151918828487, step time: 46.189308166503906ms\r\nStep 1904, loss: 0.010358073748648167, step time: 45.90344429016113ms\r\nStep 1905, loss: 0.010377839207649231, step time: 46.733856201171875ms\r\nStep 1906, loss: 0.010354950092732906, step time: 46.004533767700195ms\r\nStep 1907, loss: 0.01035266648977995, step time: 45.94564437866211ms\r\nStep 1908, loss: 0.010343339294195175, step time: 46.13065719604492ms\r\nStep 1909, loss: 0.010368294082581997, step time: 46.04387283325195ms\r\nStep 1910, loss: 0.01038646325469017, step time: 46.28872871398926ms\r\nStep 1911, loss: 0.01035273727029562, step time: 46.32258415222168ms\r\nStep 1912, loss: 0.010371414944529533, step time: 45.830488204956055ms\r\nStep 1913, loss: 0.010388985276222229, step time: 46.39935493469238ms\r\nStep 1914, loss: 0.010364320129156113, step time: 46.254873275756836ms\r\nStep 1915, loss: 0.010353739373385906, step time: 46.25129699707031ms\r\nStep 1916, loss: 0.01035391166806221, step time: 46.317338943481445ms\r\nStep 1917, loss: 0.010378384031355381, step time: 46.04458808898926ms\r\nStep 1918, loss: 0.0103465486317873, step time: 46.35214805603027ms\r\nStep 1919, loss: 0.010352352634072304, step time: 46.097755432128906ms\r\nStep 1920, loss: 0.010386364534497261, step time: 46.01478576660156ms\r\nStep 1921, loss: 0.010356385260820389, step time: 46.19932174682617ms\r\nStep 1922, loss: 0.010354164056479931, step time: 45.99118232727051ms\r\nStep 1923, loss: 0.01036487240344286, step time: 46.715736389160156ms\r\nStep 1924, loss: 0.010340860113501549, step time: 46.301841735839844ms\r\nStep 1925, loss: 0.010321982204914093, step time: 45.96376419067383ms\r\nStep 1926, loss: 0.01032327488064766, step time: 46.35143280029297ms\r\nStep 1927, loss: 0.010311458259820938, step time: 46.3252067565918ms\r\nStep 1928, loss: 0.01031999010592699, step time: 46.330928802490234ms\r\nStep 1929, loss: 0.010305476374924183, step time: 46.674251556396484ms\r\nStep 1930, loss: 0.01032082550227642, step time: 45.96400260925293ms\r\nStep 1931, loss: 0.010296817868947983, step time: 46.4017391204834ms\r\nStep 1932, loss: 0.010290633887052536, step time: 46.35334014892578ms\r\nStep 1933, loss: 0.010308732278645039, step time: 46.08440399169922ms\r\nStep 1934, loss: 0.01029265858232975, step time: 46.59390449523926ms\r\nStep 1935, loss: 0.01029934547841549, step time: 45.81308364868164ms\r\nStep 1936, loss: 0.010293124243617058, step time: 46.178340911865234ms\r\nStep 1937, loss: 0.010286145843565464, step time: 46.25892639160156ms\r\nStep 1938, loss: 0.010303094051778316, step time: 46.042680740356445ms\r\nStep 1939, loss: 0.010286879725754261, step time: 46.55933380126953ms\r\nStep 1940, loss: 0.010278193280100822, step time: 45.9747314453125ms\r\nStep 1941, loss: 0.010305149480700493, step time: 46.952009201049805ms\r\nStep 1942, loss: 0.010271470062434673, step time: 46.43726348876953ms\r\nStep 1943, loss: 0.01028747670352459, step time: 46.07343673706055ms\r\nStep 1944, loss: 0.010296743363142014, step time: 46.30851745605469ms\r\nStep 1945, loss: 0.010310354642570019, step time: 46.2033748626709ms\r\nStep 1946, loss: 0.01026410423219204, step time: 45.93491554260254ms\r\nStep 1947, loss: 0.010294017381966114, step time: 46.7836856842041ms\r\nStep 1948, loss: 0.010289396159350872, step time: 45.96304893493652ms\r\nStep 1949, loss: 0.010309439152479172, step time: 46.1270809173584ms\r\nStep 1950, loss: 0.010276236571371555, step time: 46.213626861572266ms\r\nStep 1951, loss: 0.010269519872963428, step time: 46.04482650756836ms\r\nStep 1952, loss: 0.010264173150062561, step time: 46.35190963745117ms\r\nStep 1953, loss: 0.010281320661306381, step time: 45.96996307373047ms\r\nStep 1954, loss: 0.010278694331645966, step time: 46.15187644958496ms\r\nStep 1955, loss: 0.010276813060045242, step time: 46.24605178833008ms\r\nStep 1956, loss: 0.010293924249708652, step time: 46.13828659057617ms\r\nStep 1957, loss: 0.010273261927068233, step time: 46.31400108337402ms\r\nStep 1958, loss: 0.010277962312102318, step time: 45.96257209777832ms\r\nStep 1959, loss: 0.010265132412314415, step time: 46.04029655456543ms\r\nStep 1960, loss: 0.010238791815936565, step time: 46.45848274230957ms\r\nStep 1961, loss: 0.010267972946166992, step time: 46.01120948791504ms\r\nStep 1962, loss: 0.010288282297551632, step time: 46.156883239746094ms\r\nStep 1963, loss: 0.010247217491269112, step time: 46.41842842102051ms\r\nStep 1964, loss: 0.01024010218679905, step time: 46.042680740356445ms\r\nStep 1965, loss: 0.010257684625685215, step time: 46.573638916015625ms\r\nStep 1966, loss: 0.010248285718262196, step time: 46.04506492614746ms\r\nStep 1967, loss: 0.010245268233120441, step time: 45.92251777648926ms\r\nStep 1968, loss: 0.01026329305022955, step time: 46.49472236633301ms\r\nStep 1969, loss: 0.010230041109025478, step time: 46.11492156982422ms\r\nStep 1970, loss: 0.010234854184091091, step time: 45.9291934967041ms\r\nStep 1971, loss: 0.010224724188446999, step time: 46.07391357421875ms\r\nStep 1972, loss: 0.010251478292047977, step time: 46.2040901184082ms\r\nStep 1973, loss: 0.010203564539551735, step time: 46.57793045043945ms\r\nStep 1974, loss: 0.010202636942267418, step time: 46.134233474731445ms\r\nStep 1975, loss: 0.01019995752722025, step time: 45.99285125732422ms\r\nStep 1976, loss: 0.010221829637885094, step time: 45.93706130981445ms\r\nStep 1977, loss: 0.010193787515163422, step time: 46.06437683105469ms\r\nStep 1978, loss: 0.010192313231527805, step time: 46.54574394226074ms\r\nStep 1979, loss: 0.010186558589339256, step time: 46.01001739501953ms\r\nStep 1980, loss: 0.010187992826104164, step time: 45.839786529541016ms\r\nStep 1981, loss: 0.01019548624753952, step time: 46.70214653015137ms\r\nStep 1982, loss: 0.010196930728852749, step time: 46.04077339172363ms\r\nStep 1983, loss: 0.010188144631683826, step time: 46.76318168640137ms\r\nStep 1984, loss: 0.010179747827351093, step time: 46.057939529418945ms\r\nStep 1985, loss: 0.010217536240816116, step time: 45.76253890991211ms\r\nStep 1986, loss: 0.010191492736339569, step time: 46.82493209838867ms\r\nStep 1987, loss: 0.010205543600022793, step time: 46.178579330444336ms\r\nStep 1988, loss: 0.010192745365202427, step time: 46.11468315124512ms\r\nStep 1989, loss: 0.010197743773460388, step time: 46.30923271179199ms\r\nStep 1990, loss: 0.010202758945524693, step time: 46.102046966552734ms\r\nStep 1991, loss: 0.010177931748330593, step time: 46.62346839904785ms\r\nStep 1992, loss: 0.010209024883806705, step time: 46.3106632232666ms\r\nStep 1993, loss: 0.010199857875704765, step time: 45.95136642456055ms\r\nStep 1994, loss: 0.010200858116149902, step time: 46.10705375671387ms\r\nStep 1995, loss: 0.010201463475823402, step time: 46.118974685668945ms\r\nStep 1996, loss: 0.010196534916758537, step time: 46.503543853759766ms\r\nStep 1997, loss: 0.010202805511653423, step time: 46.057939529418945ms\r\nStep 1998, loss: 0.010182810947299004, step time: 45.86195945739746ms\r\nStep 1999, loss: 0.010177914053201675, step time: 46.67019844055176ms\r\nStep 2000, loss: 0.010179034434258938, step time: 47.020912170410156ms\r\nStep 2001, loss: 0.010161527432501316, step time: 47.129154205322266ms\r\nStep 2002, loss: 0.010172272101044655, step time: 46.24295234680176ms\r\nStep 2003, loss: 0.010228115133941174, step time: 45.981645584106445ms\r\nStep 2004, loss: 0.01018949132412672, step time: 46.51331901550293ms\r\nStep 2005, loss: 0.010170773603022099, step time: 46.18215560913086ms\r\nStep 2006, loss: 0.010161475278437138, step time: 46.31495475769043ms\r\nStep 2007, loss: 0.010176933370530605, step time: 46.4174747467041ms\r\nStep 2008, loss: 0.010157357901334763, step time: 45.93539237976074ms\r\nStep 2009, loss: 0.010154127143323421, step time: 46.4329719543457ms\r\nStep 2010, loss: 0.01015638466924429, step time: 46.16808891296387ms\r\nStep 2011, loss: 0.010141599923372269, step time: 46.17714881896973ms\r\nStep 2012, loss: 0.010134006850421429, step time: 46.25511169433594ms\r\nStep 2013, loss: 0.010120061226189137, step time: 46.19717597961426ms\r\nStep 2014, loss: 0.010148279368877411, step time: 46.48089408874512ms\r\nStep 2015, loss: 0.010115678422152996, step time: 46.15592956542969ms\r\nStep 2016, loss: 0.010132093913853168, step time: 46.10276222229004ms\r\nStep 2017, loss: 0.010115601122379303, step time: 46.23293876647949ms\r\nStep 2018, loss: 0.010124349035322666, step time: 45.93300819396973ms\r\nStep 2019, loss: 0.010103191249072552, step time: 46.5395450592041ms\r\nStep 2020, loss: 0.010103554464876652, step time: 46.196699142456055ms\r\nStep 2021, loss: 0.01011085044592619, step time: 46.0052490234375ms\r\nStep 2022, loss: 0.010100061073899269, step time: 46.2489128112793ms\r\nStep 2023, loss: 0.010116655379533768, step time: 46.182870864868164ms\r\nStep 2024, loss: 0.010111899115145206, step time: 45.94230651855469ms\r\nStep 2025, loss: 0.01015416905283928, step time: 46.54812812805176ms\r\n",,terminal_output +1349,3841834,"TERMINAL",0,0,"Step 2026, loss: 0.010118108242750168, step time: 45.98855972290039ms\r\nStep 2027, loss: 0.010098624043166637, step time: 46.14067077636719ms\r\nStep 2028, loss: 0.01011936366558075, step time: 46.3414192199707ms\r\nStep 2029, loss: 0.010114675387740135, step time: 45.98116874694824ms\r\nStep 2030, loss: 0.010089966468513012, step time: 46.16594314575195ms\r\nStep 2031, loss: 0.01009674184024334, step time: 46.11682891845703ms\r\nStep 2032, loss: 0.010121379978954792, step time: 46.331167221069336ms\r\nStep 2033, loss: 0.010098178870975971, step time: 46.42629623413086ms\r\nStep 2034, loss: 0.010100477375090122, step time: 46.17619514465332ms\r\nStep 2035, loss: 0.010116064921021461, step time: 46.1573600769043ms\r\nStep 2036, loss: 0.010095197707414627, step time: 45.98712921142578ms\r\nStep 2037, loss: 0.010101787745952606, step time: 46.205997467041016ms\r\nStep 2038, loss: 0.010098445229232311, step time: 46.544790267944336ms\r\nStep 2039, loss: 0.01011465024203062, step time: 46.1122989654541ms\r\nStep 2040, loss: 0.01008861418813467, step time: 45.98855972290039ms\r\nStep 2041, loss: 0.010085901245474815, step time: 46.46563529968262ms\r\nStep 2042, loss: 0.010095889680087566, step time: 46.02384567260742ms\r\nStep 2043, loss: 0.010075774043798447, step time: 46.61846160888672ms\r\nStep 2044, loss: 0.010066444985568523, step time: 45.93849182128906ms\r\nStep 2045, loss: 0.01005840115249157, step time: 45.79734802246094ms\r\nStep 2046, loss: 0.010077515617012978, step time: 46.634674072265625ms\r\nStep 2047, loss: 0.010064180009067059, step time: 46.08964920043945ms\r\nStep 2048, loss: 0.010061481036245823, step time: 48.47526550292969ms\r\nStep 2049, loss: 0.010069606825709343, step time: 46.13184928894043ms\r\nStep 2050, loss: 0.010021060705184937, step time: 45.961618423461914ms\r\nStep 2051, loss: 0.010062345303595066, step time: 46.65708541870117ms\r\nStep 2052, loss: 0.0100825484842062, step time: 46.2498664855957ms\r\nStep 2053, loss: 0.010014803148806095, step time: 45.9747314453125ms\r\nStep 2054, loss: 0.010041235946118832, step time: 46.024322509765625ms\r\nStep 2055, loss: 0.010005734860897064, step time: 46.20695114135742ms\r\nStep 2056, loss: 0.010044919326901436, step time: 46.82445526123047ms\r\nStep 2057, loss: 0.01001805905252695, step time: 46.22340202331543ms\r\nStep 2058, loss: 0.010056750848889351, step time: 45.996904373168945ms\r\nStep 2059, loss: 0.010013088583946228, step time: 46.87905311584473ms\r\nStep 2060, loss: 0.010041533969342709, step time: 46.05746269226074ms\r\nStep 2061, loss: 0.01003158837556839, step time: 46.334266662597656ms\r\nStep 2062, loss: 0.010016393847763538, step time: 46.138763427734375ms\r\nStep 2063, loss: 0.010015911422669888, step time: 45.819997787475586ms\r\nStep 2064, loss: 0.010047433897852898, step time: 50.08959770202637ms\r\nStep 2065, loss: 0.010054840706288815, step time: 46.32139205932617ms\r\nStep 2066, loss: 0.010058276355266571, step time: 46.04530334472656ms\r\nStep 2067, loss: 0.010057838633656502, step time: 46.803951263427734ms\r\nStep 2068, loss: 0.010047354735434055, step time: 46.56219482421875ms\r\nStep 2069, loss: 0.010047010146081448, step time: 46.709537506103516ms\r\nStep 2070, loss: 0.010035819374024868, step time: 46.294450759887695ms\r\nStep 2071, loss: 0.01007095817476511, step time: 46.00334167480469ms\r\nStep 2072, loss: 0.010028496384620667, step time: 46.39315605163574ms\r\nStep 2073, loss: 0.010023392736911774, step time: 46.2954044342041ms\r\nStep 2074, loss: 0.010029857978224754, step time: 46.37265205383301ms\r\nStep 2075, loss: 0.010037526488304138, step time: 46.02861404418945ms\r\nStep 2076, loss: 0.010050826705992222, step time: 45.96519470214844ms\r\nStep 2077, loss: 0.010063732974231243, step time: 235.38875579833984ms\r\nStep 2078, loss: 0.010040060617029667, step time: 46.99563980102539ms\r\nStep 2079, loss: 0.01002940908074379, step time: 46.62322998046875ms\r\nStep 2080, loss: 0.010016693733632565, step time: 46.041250228881836ms\r\nStep 2081, loss: 0.010026329196989536, step time: 46.585798263549805ms\r\nStep 2082, loss: 0.009997009299695492, step time: 46.30279541015625ms\r\nStep 2083, loss: 0.010022813454270363, step time: 46.58341407775879ms\r\nStep 2084, loss: 0.009980360046029091, step time: 46.51331901550293ms\r\nStep 2085, loss: 0.009987452067434788, step time: 45.86434364318848ms\r\nStep 2086, loss: 0.010012476705014706, step time: 46.221256256103516ms\r\nStep 2087, loss: 0.009986224584281445, step time: 46.475887298583984ms\r\nStep 2088, loss: 0.010015225037932396, step time: 46.07844352722168ms\r\nStep 2089, loss: 0.009953487664461136, step time: 46.630859375ms\r\nStep 2090, loss: 0.009995999746024609, step time: 46.67949676513672ms\r\nStep 2091, loss: 0.009963535703718662, step time: 47.38020896911621ms\r\nStep 2092, loss: 0.009968516416847706, step time: 47.01399803161621ms\r\nStep 2093, loss: 0.009990506805479527, step time: 46.36335372924805ms\r\nStep 2094, loss: 0.009976334869861603, step time: 46.36192321777344ms\r\nStep 2095, loss: 0.009981997311115265, step time: 45.92299461364746ms\r\nStep 2096, loss: 0.009950878098607063, step time: 46.17476463317871ms\r\nStep 2097, loss: 0.009987981989979744, step time: 46.62013053894043ms\r\nStep 2098, loss: 0.009978506714105606, step time: 46.01430892944336ms\r\nStep 2099, loss: 0.009968815371394157, step time: 46.25082015991211ms\r\nStep 2100, loss: 0.009970315732061863, step time: 47.48415946960449ms\r\nStep 2101, loss: 0.009944613091647625, step time: 46.724796295166016ms\r\nStep 2102, loss: 0.009961568750441074, step time: 46.39267921447754ms\r\nStep 2103, loss: 0.009978000074625015, step time: 46.03314399719238ms\r\nStep 2104, loss: 0.00998469814658165, step time: 46.3101863861084ms\r\nStep 2105, loss: 0.009978723712265491, step time: 45.96543312072754ms\r\nStep 2106, loss: 0.009991094470024109, step time: 46.32449150085449ms\r\nStep 2107, loss: 0.009983229450881481, step time: 46.31328582763672ms\r\nStep 2108, loss: 0.010010450147092342, step time: 46.009063720703125ms\r\nStep 2109, loss: 0.010001594200730324, step time: 46.27513885498047ms\r\nStep 2110, loss: 0.01001138985157013, step time: 46.060800552368164ms\r\nStep 2111, loss: 0.010004718787968159, step time: 45.978546142578125ms\r\nStep 2112, loss: 0.009991468861699104, step time: 46.61130905151367ms\r\nStep 2113, loss: 0.009998342953622341, step time: 46.001434326171875ms\r\nStep 2114, loss: 0.009979518130421638, step time: 46.16880416870117ms\r\nStep 2115, loss: 0.009984729811549187, step time: 46.26178741455078ms\r\nStep 2116, loss: 0.009991028346121311, step time: 46.58365249633789ms\r\nStep 2117, loss: 0.009982663206756115, step time: 46.2336540222168ms\r\nStep 2118, loss: 0.009975983761250973, step time: 45.87578773498535ms\r\nStep 2119, loss: 0.009985276497900486, step time: 46.27370834350586ms\r\nStep 2120, loss: 0.009936777874827385, step time: 46.05579376220703ms\r\nStep 2121, loss: 0.009950648993253708, step time: 45.88913917541504ms\r\nStep 2122, loss: 0.009973644278943539, step time: 46.24795913696289ms\r\nStep 2123, loss: 0.00991147942841053, step time: 45.961856842041016ms\r\nStep 2124, loss: 0.009948693215847015, step time: 47.631263732910156ms\r\nsalloc: Job 3300233 has exceeded its time limit and its allocation has been revoked.\nStep 2125, loss: 0.009919729083776474, step time: 47.93190956115723ms\r\nsrun: Job step aborted: Waiting up to 32 seconds for job step to finish.\r\nslurmstepd: error: *** STEP 3300233.interactive ON hkn0505 CANCELLED AT 2025-06-27T18:26:58 DUE TO TIME LIMIT ***\r\nTerminated\r\n]0;tum_ind3695@hkn0505:~/projects/jafar_run_overfit[?2004h[tum_ind3695@hkn0505 jafar_run_overfit]$ Step 2126, loss: 0.009944713674485683, step time: 48.02393913269043ms\r\nStep 2127, loss: 0.009910260327160358, step time: 48.143863677978516ms\r\nStep 2128, loss: 0.009929561987519264, step time: 47.89328575134277ms\r\nStep 2129, loss: 0.009934062138199806, step time: 47.950029373168945ms\r\nTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/train_tokenizer_single_sample.py"", line 248, in \r\n wandb.log(\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 406, in wrapper\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 503, in wrapper\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 464, in wrapper_fn\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 451, in wrapper\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 2071, in log\r\n self._log(data=data, step=step, commit=commit)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 1783, in _log\r\n self._partial_history_callback(data, step, commit)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 406, in wrapper\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 1610, in _partial_history_callback\r\n self._backend.interface.publish_partial_history(\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/interface/interface.py"", line 691, in publish_partial_history\r\n self._publish_partial_history(partial_history)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/interface/interface_shared.py"", line 48, in _publish_partial_history\r\n self._publish(rec)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/interface/interface_sock.py"", line 39, in _publish\r\n self._sock_client.send_record_publish(record)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 174, in send_record_publish\r\n self.send_server_request(server_req)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 154, in send_server_request\r\n self._send_message(msg)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 151, in _send_message\r\n self._sendall_with_error_handle(header + data)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 130, in _sendall_with_error_handle\r\n sent = self._sock.send(data)\r\nBrokenPipeError: [Errno 32] Broken pipe\r\nTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/train_tokenizer_single_sample.py"", line 248, in \r\n wandb.log(\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 406, in wrapper\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 503, in wrapper\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 464, in wrapper_fn\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 451, in wrapper\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 2071, in log\r\n self._log(data=data, step=step, commit=commit)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 1783, in _log\r\n self._partial_history_callback(data, step, commit)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 406, in wrapper\r\n return func(self, *args, **kwargs)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/wandb_run.py"", line 1610, in _partial_history_callback\r\n self._backend.interface.publish_partial_history(\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/interface/interface.py"", line 691, in publish_partial_history\r\n self._publish_partial_history(partial_history)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/interface/interface_shared.py"", line 48, in _publish_partial_history\r\n self._publish(rec)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/interface/interface_sock.py"", line 39, in _publish\r\n self._sock_client.send_record_publish(record)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 174, in send_record_publish\r\n self.send_server_request(server_req)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 154, in send_server_request\r\n self._send_message(msg)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 151, in _send_message\r\n self._sendall_with_error_handle(header + data)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 130, in _sendall_with_error_handle\r\n sent = self._sock.send(data)\r\nBrokenPipeError: [Errno 32] Broken pipe\r\nException ignored in atexit callback: .teardown_atexit at 0x1470b40a5fc0>\r\nTraceback (most recent call last):\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/service_connection.py"", line 94, in teardown_atexit\r\n conn.teardown(hooks.exit_code)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/service_connection.py"", line 228, in teardown\r\n self._client.send_server_request(\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 154, in send_server_request\r\n self._send_message(msg)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 151, in _send_message\r\n self._sendall_with_error_handle(header + data)\r\n File ""/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/.venv_jafar/lib/python3.10/site-packages/wandb/sdk/lib/sock_client.py"", line 130, in _sendall_with_error_handle\r\n sent = self._sock.send(data)\r\nBrokenPipeError: [Errno 32] Broken pipe\r\n2025-06-27 18:26:58.668474: W external/xla/xla/tsl/distributed_runtime/preemption/preemption_notifier.cc:89] SIGTERM caught at 2025-06-27T18:26:58.638082813+02:00\r\n",,terminal_output +1350,3859798,"TERMINAL",0,0,"srun: error: hkn0505: task 0: Killed\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;137",,terminal_output +1351,3886735,"TERMINAL",0,0,"salloc --account=hk-project-p0023960 --time=00:30:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1",,terminal_command +1352,3886812,"TERMINAL",0,0,"]633;E;2025-06-27 18:27:54 salloc --account=hk-project-p0023960 --time=00:30:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1;a0805cec-1e49-41a5-b2c2-ec719b014a0e]633;Csalloc: Pending job allocation 3300287\r\nsalloc: job 3300287 queued and waiting for resources\r\n",,terminal_output +1353,3887369,"notes.md",0,0,"",markdown,tab +1354,3887520,"train_tokenizer_single_sample.py",0,0,"",python,tab +1355,3889341,"notes.md",0,0,"",markdown,tab +1356,3890116,"TERMINAL",0,0,"^Csalloc: Job allocation 3300287 has been revoked.\r\nsalloc: Job aborted due to signal\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;1",,terminal_output +1357,3890292,"TERMINAL",0,0,"^C",,terminal_command +1358,3890302,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;a0805cec-1e49-41a5-b2c2-ec719b014a0e]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D",,terminal_output +1359,3890468,"TERMINAL",0,0,"^C",,terminal_command +1360,3890481,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]633;E;;a0805cec-1e49-41a5-b2c2-ec719b014a0e]633;C]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D",,terminal_output +1361,3924840,"notes.md",0,0,"",markdown,tab +1362,3925023,"train_tokenizer_single_sample.py",0,0,"",python,tab +1363,3927026,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +1364,3938166,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",700,0,"",shellscript,selection_mouse +1365,3939413,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",700,0,"_",shellscript,content +1366,3939415,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",701,0,"",shellscript,selection_keyboard +1367,3941109,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",701,0,"m",shellscript,content +1368,3941111,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",702,0,"",shellscript,selection_keyboard +1369,3941386,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",702,0,"o",shellscript,content +1370,3941387,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",703,0,"",shellscript,selection_keyboard +1371,3941594,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",703,0,"d",shellscript,content +1372,3941595,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",704,0,"",shellscript,selection_keyboard +1373,3941748,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",704,0,"e",shellscript,content +1374,3941749,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",705,0,"",shellscript,selection_keyboard +1375,3943139,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",704,1,"",shellscript,content +1376,3943264,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",703,1,"",shellscript,content +1377,3943401,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",702,1,"",shellscript,content +1378,3943537,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",701,1,"",shellscript,content +1379,3943914,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",700,1,"",shellscript,content +1380,3944050,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",699,0,"",shellscript,selection_command +1381,3944177,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",677,0,"",shellscript,selection_command +1382,3944425,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",651,0,"",shellscript,selection_command +1383,3944457,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",630,0,"",shellscript,selection_command +1384,3944490,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",608,0,"",shellscript,selection_command +1385,3944523,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",586,0,"",shellscript,selection_command +1386,3944557,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",564,0,"",shellscript,selection_command +1387,3944591,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",543,0,"",shellscript,selection_command +1388,3944624,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",510,0,"",shellscript,selection_command +1389,3944799,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",468,0,"",shellscript,selection_command +1390,3944969,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",448,0,"",shellscript,selection_command +1391,3945346,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",447,0,"\n",shellscript,content +1392,3945696,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",448,0,"\n",shellscript,content +1393,3945845,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",449,0,"\n",shellscript,content +1394,3946095,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",449,0,"",shellscript,selection_command +1395,3946648,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",449,0,"m",shellscript,content +1396,3946806,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",450,0,"o",shellscript,content +1397,3946807,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",451,0,"",shellscript,selection_keyboard +1398,3946848,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",451,0,"d",shellscript,content +1399,3946849,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",452,0,"",shellscript,selection_keyboard +1400,3946960,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",452,0,"e",shellscript,content +1401,3946961,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",453,0,"",shellscript,selection_keyboard +1402,3947014,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",453,0,"l",shellscript,content +1403,3947015,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",454,0,"",shellscript,selection_keyboard +1404,3947881,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",454,0,"_dim=32",shellscript,content +1405,3948520,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",461,0,"\nnum_blocks=4",shellscript,content +1406,3950618,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",789,0,"$num_blocks",shellscript,content +1407,3950618,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",788,1,"",shellscript,content +1408,3950618,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",768,0,"$model_dim",shellscript,content +1409,3950618,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",766,2,"",shellscript,content +1410,3951333,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",753,0,"",shellscript,selection_command +1411,3951470,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",734,0,"",shellscript,selection_command +1412,3951646,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",711,0,"",shellscript,selection_command +1413,3951827,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",689,0,"",shellscript,selection_command +1414,3952081,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",663,0,"",shellscript,selection_command +1415,3952108,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",651,0,"",shellscript,selection_command +1416,3952140,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",620,0,"",shellscript,selection_command +1417,3952173,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",598,0,"",shellscript,selection_command +1418,3952208,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",576,0,"",shellscript,selection_command +1419,3952240,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",555,0,"",shellscript,selection_command +1420,3952274,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",522,0,"",shellscript,selection_command +1421,3952307,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",480,0,"",shellscript,selection_command +1422,3952465,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",476,0,"",shellscript,selection_command +1423,3952636,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",475,0,"",shellscript,selection_command +1424,3952887,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",474,0,"\n",shellscript,content +1425,3954363,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",475,0,"j",shellscript,content +1426,3954365,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",476,0,"",shellscript,selection_keyboard +1427,3954367,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",476,0,"o",shellscript,content +1428,3954368,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",477,0,"",shellscript,selection_keyboard +1429,3954561,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",477,0,"b",shellscript,content +1430,3954562,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",478,0,"",shellscript,selection_keyboard +1431,3955735,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",477,1,"",shellscript,content +1432,3955828,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",476,1,"",shellscript,content +1433,3955991,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",475,1,"",shellscript,content +1434,3956250,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",462,0,"",shellscript,selection_command +1435,3956499,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",449,0,"",shellscript,selection_command +1436,3956526,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",448,0,"",shellscript,selection_command +1437,3956563,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",431,0,"",shellscript,selection_command +1438,3956589,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",430,0,"",shellscript,selection_command +1439,3956623,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",405,0,"",shellscript,selection_command +1440,3956657,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",346,0,"",shellscript,selection_command +1441,3956690,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",345,0,"",shellscript,selection_command +1442,3956723,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",300,0,"",shellscript,selection_command +1443,3956757,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",299,0,"",shellscript,selection_command +1444,3956790,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",272,0,"",shellscript,selection_command +1445,3956824,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",247,0,"",shellscript,selection_command +1446,3957284,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",247,25,"",shellscript,content +1447,3957376,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",274,0,"",shellscript,selection_command +1448,3957632,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",275,0,"",shellscript,selection_command +1449,3957659,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",320,0,"",shellscript,selection_command +1450,3957701,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",321,0,"",shellscript,selection_command +1451,3957730,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",380,0,"",shellscript,selection_command +1452,3957758,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",405,0,"",shellscript,selection_command +1453,3957791,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",406,0,"",shellscript,selection_command +1454,3957826,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",423,0,"",shellscript,selection_command +1455,3957860,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",424,0,"",shellscript,selection_command +1456,3957893,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",437,0,"",shellscript,selection_command +1457,3957927,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",450,0,"",shellscript,selection_command +1458,3957961,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",451,0,"",shellscript,selection_command +1459,3958215,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",451,0,"\njob_name=$SLURM_JOB_NAME",shellscript,content +1460,3958221,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",452,0,"",shellscript,selection_command +1461,3958579,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",451,0,"",shellscript,selection_command +1462,3958894,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",452,0,"",shellscript,selection_command +1463,3959147,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",476,0,"",shellscript,selection_command +1464,3959492,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",476,0,"_",shellscript,content +1465,3959494,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",477,0,"",shellscript,selection_keyboard +1466,3960284,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",477,0,"m",shellscript,content +1467,3960285,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",478,0,"",shellscript,selection_keyboard +1468,3960348,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",478,0,"o",shellscript,content +1469,3960349,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",479,0,"",shellscript,selection_keyboard +1470,3961303,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",479,0,"del_dim_$model_dim_num_blocks_$num_blocks",shellscript,content +1471,3961953,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",519,0,"",shellscript,selection_command +1472,3962120,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",521,0,"",shellscript,selection_command +1473,3965981,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",519,0,"",shellscript,selection_command +1474,3966917,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",451,0,"",shellscript,selection_command +1475,3967079,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",450,0,"",shellscript,selection_command +1476,3967549,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",449,0,"\n",shellscript,content +1477,3967966,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",450,0,"l",shellscript,content +1478,3967967,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",451,0,"",shellscript,selection_keyboard +1479,3968119,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",451,0,"r",shellscript,content +1480,3968120,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",452,0,"",shellscript,selection_keyboard +1481,3969102,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",452,0,"=4.3e-5",shellscript,content +1482,3972414,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",647,0,"$lr",shellscript,content +1483,3972415,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",641,6,"",shellscript,content +1484,3973529,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",632,0,"j",shellscript,content +1485,3973531,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",633,0,"",shellscript,selection_keyboard +1486,3973997,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",632,1,"",shellscript,content +1487,3974214,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",631,0,"",shellscript,selection_command +1488,3974316,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",650,0,"",shellscript,selection_command +1489,3974848,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",666,0,"$lr",shellscript,content +1490,3974848,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",660,6,"",shellscript,content +1491,3975718,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",631,0,"",shellscript,selection_command +1492,3975973,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",610,0,"",shellscript,selection_command +1493,3975996,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",577,0,"",shellscript,selection_command +1494,3976032,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",535,0,"",shellscript,selection_command +1495,3976062,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",531,0,"",shellscript,selection_command +1496,3976257,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",465,0,"",shellscript,selection_command +1497,3976570,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",530,0,"",shellscript,selection_command +1498,3976929,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",530,0,"_lr_$lr",shellscript,content +1499,3987116,"TERMINAL",0,0,"smi",,terminal_command +1500,3987189,"TERMINAL",0,0,"]633;E;2025-06-27 18:29:35 smi;a0805cec-1e49-41a5-b2c2-ec719b014a0e]633;C[?1049h(B[?7hEvery 1.0s: nvidia-smihkn1993.localdomain: Fri Jun 27 18:29:35 2025sh: line 1: nvidia-smi: command not found",,terminal_output +1501,3988046,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit]633;D;0",,terminal_output +1502,3993536,"TERMINAL",0,0,"salloc --account=hk-project-p0023960 --time=01:00:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1",,terminal_command +1503,3993614,"TERMINAL",0,0,"]633;E;2025-06-27 18:29:41 salloc --account=hk-project-p0023960 --time=01:00:00 --partition=accelerated --nodes=1 --gres=gpu:1 --cpus-per-task=8 --ntasks-per-node=1;a0805cec-1e49-41a5-b2c2-ec719b014a0e]633;Csalloc: Pending job allocation 3300290\r\nsalloc: job 3300290 queued and waiting for resources\r\n",,terminal_output +1504,4030776,"TERMINAL",0,0,"bash",,terminal_focus +1505,4033564,"TERMINAL",0,0,"queue",,terminal_command +1506,4033616,"TERMINAL",0,0,"]633;E;2025-06-27 18:30:21 queue;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +1507,4033680,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Fri Jun 27 18:30:21 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3299271 accelerat train_dy tum_ind3 PD\t0:00\t 1 (Priority)3300290 accelerat interact tum_ind3 PD\t0:00\t 1 (Priority)",,terminal_output +1508,4034731,"TERMINAL",0,0,"2",,terminal_output +1509,4034831,"TERMINAL",0,0,"[?1049l\r[?1l>]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +1510,4037699,"TERMINAL",0,0,"idle",,terminal_command +1511,4037744,"TERMINAL",0,0,"]633;E;2025-06-27 18:30:25 idle;dcbf4775-e574-4e9d-b507-67c2737583de]633;CPartition dev_cpuonly : 10 nodes idle\r\nPartition cpuonly : 6 nodes idle\r\nPartition dev_accelerated : 0 nodes idle\r\nPartition accelerated : 11 nodes idle\r\nPartition dev_accelerated-h100 : 0 nodes idle\r\nPartition accelerated-h100 : 0 nodes idle\r\nPartition large : 8 nodes idle\r\n]0;tum_ind3695@hkn1993:~/projects/jafar_run_overfit/slurm]633;D;0",,terminal_output +1512,4063805,"TERMINAL",0,0,"salloc: job 3300290 has been allocated resources\r\nsalloc: Granted job allocation 3300290\r\nsalloc: Waiting for resource configuration\r\n",,terminal_output +1513,4080350,"TERMINAL",0,0,"queue",,terminal_command +1514,4080400,"TERMINAL",0,0,"]633;E;2025-06-27 18:31:08 queue;dcbf4775-e574-4e9d-b507-67c2737583de]633;C",,terminal_output +1515,4080458,"TERMINAL",0,0,"[?1049h(B[?7hEvery 1.0s: squeue --mehkn1993.localdomain: Fri Jun 27 18:31:08 2025JOBID PARTITION NAME USER ST\tTIME NODES NODELIST(REASON)3299271 accelerat train_dy tum_ind3 PD\t0:00\t 1 (Priority)3300290 accelerat interact tum_ind3 R\t0:17\t 1 hkn0414",,terminal_output +1516,4081495,"TERMINAL",0,0,"98",,terminal_output +1517,4081659,"TERMINAL",0,0,"salloc",,terminal_focus +1518,4082534,"TERMINAL",0,0,"109",,terminal_output +1519,4082763,"TERMINAL",0,0,"watch",,terminal_focus +1520,4083085,"TERMINAL",0,0,"salloc",,terminal_focus +1521,4083585,"TERMINAL",0,0,"120",,terminal_output +1522,4084632,"TERMINAL",0,0,"21",,terminal_output +1523,4085655,"TERMINAL",0,0,"32",,terminal_output +1524,4086768,"TERMINAL",0,0,"43",,terminal_output +1525,4087791,"TERMINAL",0,0,"54",,terminal_output +1526,4088816,"TERMINAL",0,0,"65",,terminal_output +1527,4089839,"TERMINAL",0,0,"76",,terminal_output +1528,4090466,"TERMINAL",0,0,"salloc: Nodes hkn0414 are ready for job\r\n",,terminal_output +1529,4090866,"TERMINAL",0,0,"87",,terminal_output +1530,4091539,"TERMINAL",0,0,"]0;tum_ind3695@hkn0414:~/projects/jafar_run_overfit[?2004h[tum_ind3695@hkn0414 jafar_run_overfit]$ ",,terminal_output +1531,4092803,"TERMINAL",0,0,"98",,terminal_output +1532,4093803,"TERMINAL",0,0,"2030",,terminal_output +1533,4094797,"TERMINAL",0,0,"21",,terminal_output +1534,4095796,"TERMINAL",0,0,"32",,terminal_output +1535,4096796,"TERMINAL",0,0,"43",,terminal_output +1536,4097799,"TERMINAL",0,0,"54",,terminal_output +1537,4098796,"TERMINAL",0,0,"65",,terminal_output +1538,4099795,"TERMINAL",0,0,"76",,terminal_output +1539,4100796,"TERMINAL",0,0,"87",,terminal_output +1540,4101798,"TERMINAL",0,0,"98",,terminal_output +1541,4102796,"TERMINAL",0,0,"309",,terminal_output +1542,4103800,"TERMINAL",0,0,"140",,terminal_output +1543,4104795,"TERMINAL",0,0,"21",,terminal_output +1544,4106315,"TERMINAL",0,0,"32",,terminal_output +1545,4106487,"TERMINAL",0,0,"43",,terminal_output +1546,4107532,"TERMINAL",0,0,"54",,terminal_output +1547,4107920,"TERMINAL",0,0,"s",,terminal_output +1548,4108019,"TERMINAL",0,0,"o",,terminal_output +1549,4108079,"TERMINAL",0,0,"u",,terminal_output +1550,4108162,"TERMINAL",0,0,"r",,terminal_output +1551,4108455,"TERMINAL",0,0,"ce ",,terminal_output +1552,4108585,"TERMINAL",0,0,"65",,terminal_output +1553,4108978,"TERMINAL",0,0,".",,terminal_output +1554,4109098,"TERMINAL",0,0,"ve",,terminal_output +1555,4109315,"TERMINAL",0,0,"nv_jafar/",,terminal_output +1556,4109484,"TERMINAL",0,0,"b",,terminal_output +1557,4109621,"TERMINAL",0,0,"76",,terminal_output +1558,4109630,"TERMINAL",0,0,"in/",,terminal_output +1559,4109817,"TERMINAL",0,0,"a",,terminal_output +1560,4109885,"TERMINAL",0,0,"c",,terminal_output +1561,4110057,"TERMINAL",0,0,"tivate",,terminal_output +1562,4110192,"TERMINAL",0,0,"\r\n[?2004l\r]0;tum_ind3695@hkn0414:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0414 jafar_run_overfit]$ ",,terminal_output +1563,4110659,"TERMINAL",0,0,"87",,terminal_output +1564,4111420,"notes.md",0,0,"",markdown,tab +1565,4111552,"train_tokenizer_single_sample.py",0,0,"",python,tab +1566,4111695,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +1567,4111702,"TERMINAL",0,0,"98",,terminal_output +1568,4112747,"TERMINAL",0,0,"409",,terminal_output +1569,4113799,"TERMINAL",0,0,"150",,terminal_output +1570,4114827,"TERMINAL",0,0,"21",,terminal_output +1571,4114973,"train_tokenizer_single_sample.py",0,0,"",python,tab +1572,4115054,"notes.md",0,0,"",markdown,tab +1573,4115873,"TERMINAL",0,0,"32",,terminal_output +1574,4116286,"TERMINAL",0,0,".",,terminal_output +1575,4116432,"TERMINAL",0,0,"/",,terminal_output +1576,4116559,"TERMINAL",0,0,"job_name=$SLURM_JOB_NAME",,terminal_output +1577,4116923,"TERMINAL",0,0,"43",,terminal_output +1578,4117969,"TERMINAL",0,0,"65",,terminal_output +1579,4118697,"notes.md",0,0,"",markdown,tab +1580,4118856,"train_tokenizer_single_sample.py",0,0,"",python,tab +1581,4118994,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",0,0,"",shellscript,tab +1582,4119057,"TERMINAL",0,0,"76",,terminal_output +1583,4120069,"TERMINAL",0,0,"87",,terminal_output +1584,4121108,"TERMINAL",0,0,"98",,terminal_output +1585,4122158,"TERMINAL",0,0,"509",,terminal_output +1586,4122227,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",538,0,"",shellscript,selection_mouse +1587,4123071,"train_tokenizer_single_sample.py",0,0,"",python,tab +1588,4123207,"TERMINAL",0,0,"11:00",,terminal_output +1589,4123864,"notes.md",0,0,"",markdown,tab +1590,4124260,"TERMINAL",0,0,"21",,terminal_output +1591,4125052,"TERMINAL",0,0,"^C[?2004l\r[?2004h[?2004l\r\r\n]0;tum_ind3695@hkn0414:~/projects/jafar_run_overfit[?2004h(.venv_jafar) [tum_ind3695@hkn0414 jafar_run_overfit]$ ",,terminal_output +1592,4125305,"TERMINAL",0,0,"32",,terminal_output +1593,4125371,"TERMINAL",0,0,".",,terminal_output +1594,4125462,"TERMINAL",0,0,"/",,terminal_output +1595,4125675,"TERMINAL",0,0,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh",,terminal_output +1596,4126352,"TERMINAL",0,0,"43",,terminal_output +1597,4127400,"TERMINAL",0,0,"54",,terminal_output +1598,4128448,"TERMINAL",0,0,"65",,terminal_output +1599,4129158,"TERMINAL",0,0,"\rslurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0_5.sh\r\n[?2004l\r# Log the sbatch script\r\ncat $0\r\n\r\nmodule unload mpi/openmpi/5.0\r\nmodule unload devel/cuda/12.4\r\nsource .venv_jafar/bin/activate\r\n\r\nws_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/'\r\ntf_records_dir=$ws_dir/data/knoms_tfrecords_200_shards\r\n\r\nslurm_job_id=$SLURM_JOB_ID\r\n\r\ntags=""overfit_sample tokenizer debug alfred""\r\n\r\nCHECKPOINT_DIR=$ws_dir/checkpoints/$job_name_$slurm_job_id\r\nmkdir -p $CHECKPOINT_DIR\r\n\r\nenv | grep SLURM\r\n\r\nmodel_dim=32\r\nnum_blocks=4\r\nlr=4.3e-5\r\n\r\n\r\njob_name=$SLURM_JOB_NAME_model_dim_$model_dim_num_blocks_$num_blocks_lr_$lr\r\n\r\npython train_tokenizer_single_sample.py \\r\n --ckpt_dir $CHECKPOINT_DIR \\r\n --batch_size=1 \\r\n --min_lr=$lr \\r\n --max_lr=$lr \\r\n --log_image_interval=100 \\r\n --log \\r\n --entity instant-uv \\r\n --project jafar \\r\n --name $job_name \\r\n --tags $tags \\r\n --model_dim $model_dim \\r\n --num_blocks $num_blocks \\r\n --data_dir $tf_records_dir\r\n",,terminal_output +1600,4129546,"TERMINAL",0,0,"76",,terminal_output +1601,4130544,"TERMINAL",0,0,"87",,terminal_output +1602,4130656,"TERMINAL",0,0,"SLURM_STEP_NUM_TASKS=1\r\nSLURM_JOB_USER=tum_ind3695\r\nSLURM_TASKS_PER_NODE=1\r\nSLURM_JOB_UID=991285\r\nSLURM_TASK_PID=2850057\r\nSLURM_JOB_GPUS=0\r\nSLURM_LOCALID=0\r\nSLURM_SUBMIT_DIR=/hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit\r\nSLURMD_NODENAME=hkn0414\r\nSLURM_JOB_START_TIME=1751041851\r\nSLURM_STEP_NODELIST=hkn0414\r\nSLURM_CLUSTER_NAME=hk\r\nSLURM_JOB_END_TIME=1751045451\r\nSLURM_PMI2_SRUN_PORT=45389\r\nSLURM_CPUS_ON_NODE=8\r\nSLURM_JOB_CPUS_PER_NODE=8\r\nSLURM_GPUS_ON_NODE=1\r\nSLURM_GTIDS=0\r\nSLURM_JOB_PARTITION=accelerated\r\nSLURM_TRES_PER_TASK=cpu=8\r\nSLURM_OOM_KILL_STEP=0\r\nSLURM_JOB_NUM_NODES=1\r\nSLURM_STEPID=4294967290\r\nSLURM_JOBID=3300290\r\nSLURM_PTY_PORT=36215\r\nSLURM_JOB_QOS=normal\r\nSLURM_LAUNCH_NODE_IPADDR=10.0.7.201\r\nSLURM_PTY_WIN_ROW=68\r\nSLURM_PMI2_PROC_MAPPING=(vector,(0,1,1))\r\nSLURMD_DEBUG=2\r\nSLURM_PROCID=0\r\nSLURM_CPUS_PER_TASK=8\r\nSLURM_NTASKS=1\r\nSLURM_TOPOLOGY_ADDR=hkibb.hkibbi1.hkibbi1e12.hkn0414\r\nSLURM_TOPOLOGY_ADDR_PATTERN=switch.switch.switch.node\r\nSLURM_SRUN_COMM_HOST=10.0.7.201\r\nSLURM_SCRIPT_CONTEXT=prolog_task\r\nSLURM_PTY_WIN_COL=175\r\nSLURM_NODELIST=hkn0414\r\nSLURM_SRUN_COMM_PORT=44729\r\nSLURM_STEP_ID=4294967290\r\nSLURM_JOB_ACCOUNT=hk-project-p0023960\r\nSLURM_PRIO_PROCESS=0\r\nSLURM_NPROCS=1\r\nSLURM_NNODES=1\r\nSLURM_SUBMIT_HOST=hkn1993.localdomain\r\nSLURM_JOB_ID=3300290\r\nSLURM_NODEID=0\r\nSLURM_STEP_NUM_NODES=1\r\nSLURM_STEP_TASKS_PER_NODE=1\r\nSLURM_MPI_TYPE=pmi2\r\nSLURM_PMI2_STEP_NODES=hkn0414\r\nSLURM_CONF=/etc/slurm/slurm.conf\r\nSLURM_JOB_NAME=interactive\r\nSLURM_NTASKS_PER_NODE=1\r\nSLURM_STEP_LAUNCHER_PORT=44729\r\nSLURM_JOB_GID=502289\r\nSLURM_JOB_NODELIST=hkn0414\r\n",,terminal_output +1603,4131598,"TERMINAL",0,0,"98",,terminal_output +1604,4132644,"TERMINAL",0,0,"2:009",,terminal_output +1605,4133689,"TERMINAL",0,0,"110",,terminal_output +1606,4134734,"TERMINAL",0,0,"21",,terminal_output +1607,4135787,"TERMINAL",0,0,"32",,terminal_output +1608,4136820,"TERMINAL",0,0,"43",,terminal_output +1609,4137868,"TERMINAL",0,0,"54",,terminal_output +1610,4138363,"rendererLog",0,0,"2025-06-27 17:22:47.362 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-vscode.vscode-selfhost-test-provider' wants API proposal 'attributableCoverage' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:47.362 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-toolsai.datawrangler' wants API proposal 'debugFocus' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:47.362 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-python.python' wants API proposal 'contribIssueReporter' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:47.362 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-python.debugpy' wants API proposal 'contribIssueReporter' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:47.362 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-azuretools.vscode-azure-github-copilot' wants API proposal 'lmTools' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:47.362 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-vscode.cpptools' wants API proposal 'lmTools' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:47.362 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'vscjava.vscode-java-pack' wants API proposal 'lmTools' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:47.362 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'apidev.azure-api-center' wants API proposal 'chatParticipant' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:47.362 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'apidev.azure-api-center' wants API proposal 'languageModels' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:47.375 [warning] Missing property ""modes"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""modes2"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""modes3"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""explicitEnableOrDisable"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""lastBackgroundBugbotAt"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""memoriesEnabled"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""repositoryIndexingError"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""repositoryIndexingStatus"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""repositoryLastSyncedTime"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""repositoryIndexingJobs"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""mainLocalRepositoryProgress"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""shouldHideWarning"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""persistentChatMetadata"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""aiPanePosition"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""shouldRerankByDefault"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""indexingData"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""composerState"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""isCursorPredictionOutOfRangeIndicatorMinimized2"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""needsComposerInitialOpening"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.375 [warning] Missing property ""approvedProjectMcpServers"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.376 [warning] Missing property ""disabledMcpServers"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.376 [warning] Missing property ""eligibleForSnippetLearning"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.376 [warning] Missing property ""solidJSLeakRecords"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:47.519 [info] Started local extension host with pid 10653.\n2025-06-27 17:22:47.594 [error] Extension 'ms-python.python' appears in product.json but enables LESS API proposals than the extension wants.\npackage.json (LOSES): contribEditorContentMenu, quickPickSortByLabel, testObserver, quickPickItemTooltip, terminalDataWriteEvent, terminalExecuteCommandEvent, codeActionAI, notebookReplDocument, notebookVariableProvider\nproduct.json (WINS): contribEditorContentMenu, quickPickSortByLabel, portsAttributes, testObserver, quickPickItemTooltip, terminalDataWriteEvent, terminalExecuteCommandEvent, notebookReplDocument\n2025-06-27 17:22:47.596 [info] Placing extension(s) vscodevim.vim on a separate extension host.\n2025-06-27 17:22:47.724 [info] Started local extension host with pid 10654.\n2025-06-27 17:22:48.011 [error] [Extension Host] (node:10653) ExperimentalWarning: Use `importAttributes` instead of `importAssertions`\n(Use `Cursor Helper (Plugin) --trace-warnings ...` to show where the warning was created)\n2025-06-27 17:22:48.166 [error] [Extension Host] (node:10654) ExperimentalWarning: Use `importAttributes` instead of `importAssertions`\n(Use `Cursor Helper (Plugin) --trace-warnings ...` to show where the warning was created)\n2025-06-27 17:22:48.685 [error] MainThreadChatAgents2#$updateAgent: No agent with handle 0 registered\n2025-06-27 17:22:50.125 [info] [perf] Render performance baseline is 9ms\n2025-06-27 17:22:50.874 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-vscode.vscode-selfhost-test-provider' wants API proposal 'attributableCoverage' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:50.874 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-toolsai.datawrangler' wants API proposal 'debugFocus' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:50.874 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-python.python' wants API proposal 'contribIssueReporter' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:50.874 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-python.debugpy' wants API proposal 'contribIssueReporter' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:50.874 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-azuretools.vscode-azure-github-copilot' wants API proposal 'lmTools' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:50.874 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-vscode.cpptools' wants API proposal 'lmTools' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:50.874 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'vscjava.vscode-java-pack' wants API proposal 'lmTools' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:50.874 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'apidev.azure-api-center' wants API proposal 'chatParticipant' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:50.874 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'apidev.azure-api-center' wants API proposal 'languageModels' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.\n2025-06-27 17:22:50.881 [warning] Missing property ""modes"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""modes2"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""modes3"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""explicitEnableOrDisable"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""lastBackgroundBugbotAt"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""memoriesEnabled"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""repositoryIndexingError"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""repositoryIndexingStatus"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""repositoryLastSyncedTime"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""repositoryIndexingJobs"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:50.881 [warning] Missing property ""mainLocalRepositoryProgress"" in oldValue. Filling with value from initValue. Please add a migration if necessary.\n2025-06-27 17:22:51.002 [info] Started local extension host with pid 10875.\n2025-06-27 17:22:51.372 [error] Extension 'ms-python.python' appears in product.json but enables LESS API proposals than the extension wants.\npackage.json (LOSES): contribEditorContentMenu, quickPickSortByLabel, testObserver, quickPickItemTooltip, terminalDataWriteEvent, terminalExecuteCommandEvent, codeActionAI, notebookReplDocument, notebookVariableProvider\nproduct.json (WINS): contribEditorContentMenu, quickPickSortByLabel, portsAttributes, testObserver, quickPickItemTooltip, terminalDataWriteEvent, terminalExecuteCommandEvent, notebookReplDocument\n2025-06-27 17:22:51.373 [info] Ignoring configured affinity for 'vscodevim.vim' because extension host(s) are already running. Reload window.\n2025-06-27 17:22:51.382 [error] [Extension Host] (node:10875) ExperimentalWarning: Use `importAttributes` instead of `importAssertions`\n(Use `Cursor Helper (Plugin) --trace-warnings ...` to show where the warning was created)\n2025-06-27 17:22:51.401 [info] Invoking resolveAuthority(ssh-remote)...\n2025-06-27 17:22:51.401 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][0ms] obtaining proxy...\n2025-06-27 17:22:51.401 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][0ms] invoking...\n2025-06-27 17:22:52.404 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][1002ms] waiting...\n2025-06-27 17:22:53.402 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][2001ms] waiting...\n2025-06-27 17:22:54.404 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][3002ms] waiting...\n2025-06-27 17:22:55.404 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][4002ms] waiting...\n2025-06-27 17:22:56.404 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][5002ms] waiting...\n2025-06-27 17:22:57.404 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][6002ms] waiting...\n2025-06-27 17:22:58.307 [error] Timeout waiting for EverythingProvider: Error: Timeout waiting for EverythingProvider\n at s (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:613:10486) Timeout waiting for EverythingProvider\n2025-06-27 17:22:58.320 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][6919ms] returned WebSocket(127.0.0.1:59908)\n2025-06-27 17:22:58.320 [info] resolveAuthority(ssh-remote) returned 'WebSocket(127.0.0.1:59908)' after 6919 ms\n2025-06-27 17:22:58.321 [info] Creating a socket (renderer-Management-329108cf-2e63-4f60-ae20-25723ca12747)...\n2025-06-27 17:22:58.322 [info] Creating a socket (renderer-ExtensionHost-d2c98e23-93b2-4dcf-87c8-380624ec4682)...\n2025-06-27 17:22:58.354 [info] Creating a socket (renderer-Management-329108cf-2e63-4f60-ae20-25723ca12747) was successful after 33 ms.\n2025-06-27 17:22:58.398 [info] Creating a socket (renderer-ExtensionHost-d2c98e23-93b2-4dcf-87c8-380624ec4682) was successful after 76 ms.\n2025-06-27 17:22:59.058 [error] Extension 'ms-python.python' appears in product.json but enables LESS API proposals than the extension wants.\npackage.json (LOSES): contribEditorContentMenu, quickPickSortByLabel, testObserver, quickPickItemTooltip, terminalDataWriteEvent, terminalExecuteCommandEvent, codeActionAI, notebookReplDocument, notebookVariableProvider\nproduct.json (WINS): contribEditorContentMenu, quickPickSortByLabel, portsAttributes, testObserver, quickPickItemTooltip, terminalDataWriteEvent, terminalExecuteCommandEvent, notebookReplDocument\n2025-06-27 17:22:59.059 [info] Placing extension(s) vscodevim.vim on a separate extension host.\n2025-06-27 17:22:59.198 [info] Started local extension host with pid 10888.\n2025-06-27 17:22:59.391 [info] [perf] Render performance baseline is 10ms\n2025-06-27 17:22:59.609 [error] [Extension Host] (node:10888) ExperimentalWarning: Use `importAttributes` instead of `importAssertions`\n(Use `Cursor Helper (Plugin) --trace-warnings ...` to show where the warning was created)\n2025-06-27 17:24:03.621 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:24:20.298 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:24:35.465 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:26:51.690 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:26:53.959 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:03.579 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:27:11.846 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:26.409 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:28.876 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:30.272 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:31.352 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:32.902 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:35.006 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:36.317 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:37.359 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:41.394 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:44.272 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:45.705 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:27:51.410 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:27:52.765 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:30:34.732 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:32:03.560 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:32:05.819 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:32:08.758 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:32:10.090 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:32:11.408 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:32:18.815 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:32:24.370 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:32:26.965 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at MQi.Y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:7021)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:5213)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:597)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at O0.setModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:465)\n at xan.setInput (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:5784:25765)\n at async eVi.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:786:20333)\n at async eVi.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:786:18884)\n at async eVi.openEditor (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:786:17964)\n at async vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:898:24625\n at async LGo.run (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:780:51851) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:32:27.018 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:12.404 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:20.555 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:23.428 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:28.211 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:29.227 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:30.678 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:33.443 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:42.387 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:43.834 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:33:45.403 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:47.130 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:33:47.700 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:33:59.063 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:34:01.311 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:34:01.982 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:34:03.042 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:35:46.438 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:36:24.493 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:36:27.435 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:38:31.818 [info] Extension host (Remote) is unresponsive.\n2025-06-27 17:38:31.836 [info] Extension host (Remote) is responsive.\n2025-06-27 17:38:35.720 [error] Unable to resolve resource vscode-terminal:/514444a73c0b56024e6b530df86e3a1d/6: Error: Unable to resolve resource vscode-terminal:/514444a73c0b56024e6b530df86e3a1d/6\n at Hxs.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4767:21500)\n at Hxs.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4767:21486)\n at async j5n.acquire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:44:2329)\n at async Wxs.createModelReference (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4767:22983)\n at async vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:679:10205 Unable to resolve resource vscode-terminal:/514444a73c0b56024e6b530df86e3a1d/6\n2025-06-27 17:38:35.751 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:40:07.529 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:40:51.096 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:40:55.394 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:41:01.975 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:41:03.657 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:41:06.155 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:41:08.651 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:41:12.086 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:42:35.026 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:42:39.461 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:42:40.786 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:42:43.998 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:42:45.124 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:42:49.841 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:42:52.986 [error] Illegal value for lineNumber: Error: Illegal value for lineNumber\n at uH.getLineMaxColumn (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:284:112)\n at O0.getBottomForLineNumber (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:1596)\n at mce.findScrollWidgetState (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4155:36034)\n at mce.db (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4155:35315)\n at async mce.bb (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4155:34801) Illegal value for lineNumber\n2025-06-27 17:42:54.294 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:42:58.311 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:42:58.995 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at MQi.Y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:7021)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:5213)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:597)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at O0.setModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:465)\n at xan.setInput (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:5784:25765)\n at async eVi.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:786:20333)\n at async eVi.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:786:18884)\n at async eVi.openEditor (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:786:17964)\n at async vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:898:24625\n at async LGo.run (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:780:51851) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:42:59.041 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:43:04.207 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:43:05.926 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:43:08.240 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:43:14.123 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:43:15.060 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6732)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 17:43:30.387 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:43:35.665 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:43:44.370 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:43:47.577 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:47:09.938 [info] Extension host (Remote) is unresponsive.\n2025-06-27 17:47:09.976 [info] Extension host (Remote) is responsive.\n2025-06-27 17:48:09.937 [info] Extension host (Remote) is unresponsive.\n2025-06-27 17:48:09.995 [info] Extension host (Remote) is responsive.\n2025-06-27 17:49:09.938 [info] Extension host (Remote) is unresponsive.\n2025-06-27 17:49:10.001 [info] Extension host (Remote) is responsive.\n2025-06-27 17:49:14.647 [info] Extension host (Remote) is unresponsive.\n2025-06-27 17:49:14.663 [info] Extension host (Remote) is responsive.\n2025-06-27 17:55:05.842 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:55:42.933 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:58:03.255 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:58:05.088 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:58:11.496 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:58:17.938 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:58:22.891 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:58:27.773 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:58:32.345 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 17:58:33.564 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:01:36.596 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:01:39.187 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:05:22.473 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:05:28.438 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:05:32.776 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:11:14.537 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:11:14.556 [info] Extension host (Remote) is responsive.\n2025-06-27 18:13:14.945 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:14:10.010 [info] Extension host (Remote) is responsive.\n2025-06-27 18:15:09.947 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:15:09.971 [info] Extension host (Remote) is responsive.\n2025-06-27 18:16:09.947 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:16:10.043 [info] Extension host (Remote) is responsive.\n2025-06-27 18:17:09.984 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:17:09.986 [info] Extension host (Remote) is responsive.\n2025-06-27 18:18:09.949 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:18:09.996 [info] Extension host (Remote) is responsive.\n2025-06-27 18:19:09.978 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:19:10.014 [info] Extension host (Remote) is responsive.\n2025-06-27 18:19:49.931 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:19:49.943 [info] Extension host (Remote) is responsive.\n2025-06-27 18:22:09.949 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:22:09.989 [info] Extension host (Remote) is responsive.\n2025-06-27 18:23:09.951 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:23:10.028 [info] Extension host (Remote) is responsive.\n2025-06-27 18:24:01.239 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:24:01.288 [info] Extension host (Remote) is responsive.\n2025-06-27 18:27:09.953 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:27:10.007 [info] Extension host (Remote) is responsive.\n2025-06-27 18:27:27.951 [info] Extension host (Remote) is unresponsive.\n2025-06-27 18:27:27.973 [info] Extension host (Remote) is responsive.\n2025-06-27 18:27:55.551 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:27:57.523 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:28:33.021 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:28:35.120 [error] Unable to resolve resource vscode-terminal:/514444a73c0b56024e6b530df86e3a1d/7: Error: Unable to resolve resource vscode-terminal:/514444a73c0b56024e6b530df86e3a1d/7\n at Hxs.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4767:21500)\n at Hxs.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4767:21486)\n at async j5n.acquire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:44:2329)\n at async Wxs.createModelReference (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4767:22983)\n at async vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:679:10205 Unable to resolve resource vscode-terminal:/514444a73c0b56024e6b530df86e3a1d/7\n2025-06-27 18:28:35.211 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:28:51.316 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:28:53.873 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:28:56.059 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:28:58.130 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:29:03.913 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:29:04.715 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13433)\n at pHs.clearSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13509)\n at pHs.rejectAndResetAllCppSuggestions (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12159)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25665)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2532)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15766)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.emitOutgoingEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:29990)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59499)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at MQi.X (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4187:6625)\n at MQi.removeAllInEditorNotModel (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3809)\n at MQi.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4191:3081)\n at mbe.update (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:3080)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4193:717)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2489)\n at O0.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:4887)\n at IKc.setSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:13058)\n at Y0s.$trySetSelections (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4219:19893)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 18:29:06.393 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:29:09.479 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:29:16.130 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at vHs.clearPrediction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:345)\n at vHs.clearCursorPrediction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:36702)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:24699)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at reo.emitSingleViewEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30827)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59460)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at vHs.clearPrediction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:345)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:6136)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15924)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2719)\n at jeo.type (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2912)\n at O0.Zb (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:7923)\n at O0.trigger (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:7081)\n at x8n.runCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:87:37711)\n at handler (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:51:9171)\n at mVs.invokeFunction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:5069:676)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1538\n at A8 (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:48:45248)\n at Qxs.n (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1431)\n at Qxs.executeCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1146)\n at gSa.$executeCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4211:529)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 18:29:17.279 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:29:19.189 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:29:21.690 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsSlowEnumeratesAllDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:12562)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:24419)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at reo.emitSingleViewEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30827)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59460)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at vHs.clearPrediction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:345)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:6136)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15924)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2719)\n at jeo.type (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2912)\n at O0.Zb (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:7923)\n at O0.trigger (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:7081)\n at x8n.runCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:87:37711)\n at handler (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:51:9171)\n at mVs.invokeFunction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:5069:676)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1538\n at A8 (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:48:45248)\n at Qxs.n (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1431)\n at Qxs.executeCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1146)\n at gSa.$executeCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4211:529)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 18:29:21.690 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at vHs.clearPrediction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:345)\n at vHs.clearCursorPrediction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:36702)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:24699)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at reo.emitSingleViewEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30827)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59460)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at vHs.clearPrediction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:345)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:6136)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15924)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2719)\n at jeo.type (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2912)\n at O0.Zb (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:7923)\n at O0.trigger (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:7081)\n at x8n.runCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:87:37711)\n at handler (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:51:9171)\n at mVs.invokeFunction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:5069:676)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1538\n at A8 (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:48:45248)\n at Qxs.n (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1431)\n at Qxs.executeCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1146)\n at gSa.$executeCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4211:529)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 18:29:21.690 [error] Invoking deltaDecorations recursively could lead to leaking decorations.: Error: Invoking deltaDecorations recursively could lead to leaking decorations.\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4111)\n at pHs.clearDecorationsFast (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6780:13188)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6763:25304)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15513)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at reo.emitSingleViewEvent (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30827)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:290:59460)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at OZr.y (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:16063)\n at OZr.endDeferredEmit (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:15533)\n at uH.deltaDecorations (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:4256)\n at vHs.clearPrediction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:345)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6785:6136)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.C (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2468)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2686)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:15924)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at reo.r (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30236)\n at reo.endEmitViewEvents (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:289:30739)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:4024\n at Object.batchChanges (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:14708)\n at jeo.U (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:3938)\n at jeo.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2719)\n at jeo.type (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:291:2912)\n at O0.Zb (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:7923)\n at O0.trigger (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:293:7081)\n at x8n.runCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:87:37711)\n at handler (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:51:9171)\n at mVs.invokeFunction (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:5069:676)\n at vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1538\n at A8 (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:48:45248)\n at Qxs.n (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1431)\n at Qxs.executeCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4787:1146)\n at gSa.$executeCommand (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4211:529)\n at Qjs.S (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17406)\n at Qjs.Q (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:17184)\n at Qjs.M (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:16272)\n at Qjs.L (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:15373)\n at Spt.value (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:494:14165)\n at ye.B (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2398)\n at ye.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:46:2617)\n at NQe.fire (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:4230:10378)\n at u.onmessage (vscode-file://vscode-app/Applications/Cursor.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:6712:12344) Invoking deltaDecorations recursively could lead to leaking decorations.\n2025-06-27 18:29:22.174 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:29:25.108 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:31:39.603 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:31:43.155 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:31:46.878 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n2025-06-27 18:31:51.252 [error] [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.: Error: [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:175:36882)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.C (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2461)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2678)\n\tat kfe.$acceptEditorPropertiesChanged (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:174:67151)\n\tat Unt.S (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161538)\n\tat Unt.Q (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:161318)\n\tat Unt.M (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:160406)\n\tat Unt.L (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:159511)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:158305)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:193:13457)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat no.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:9489)\n\tat YK.A (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:12615)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:11033)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat Slt.acceptChunk (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7970)\n\tat qW.value (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:7255)\n\tat x.B (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2391)\n\tat x.fire (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:27:2609)\n\tat tLt.y (file:///hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/bin/5b19bac7a947f54e4caa3eb7e4c5fbf832389850/out/vs/workbench/api/node/extensionHostProcess.js:42:21986) [ExtensionListenerError] Extension 'pdoom-org.crowd-code' FAILED to handle event: TypeError: Unknown selection change kind.\n",log,tab +1611,4138912,"TERMINAL",0,0,"65",,terminal_output +1612,4139532,"TERMINAL",0,0,"watch",,terminal_focus +1613,4139919,"TERMINAL",0,0,"srun",,terminal_focus +1614,4139946,"TERMINAL",0,0,"77",,terminal_output +1615,4140995,"TERMINAL",0,0,"98",,terminal_output +1616,4142040,"TERMINAL",0,0,"109",,terminal_output +1617,4143091,"TERMINAL",0,0,"120",,terminal_output +1618,4144136,"TERMINAL",0,0,"21",,terminal_output +1619,4145187,"TERMINAL",0,0,"32",,terminal_output +1620,4146113,"TERMINAL",0,0,"2025-06-27 18:32:14.188163: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\r\n",,terminal_output +1621,4146234,"TERMINAL",0,0,"43",,terminal_output +1622,4146405,"TERMINAL",0,0,"WARNING: All log messages before absl::InitializeLog() is called are written to STDERR\r\nE0000 00:00:1751041934.432624 2850326 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\r\nE0000 00:00:1751041934.482029 2850326 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\r\n",,terminal_output +1623,4146832,"TERMINAL",0,0,"W0000 00:00:1751041934.909916 2850326 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751041934.909944 2850326 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751041934.909947 2850326 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\nW0000 00:00:1751041934.909949 2850326 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\r\n",,terminal_output +1624,4147267,"TERMINAL",0,0,"54",,terminal_output +1625,4148310,"TERMINAL",0,0,"65",,terminal_output +1626,4149354,"TERMINAL",0,0,"76",,terminal_output +1627,4150406,"TERMINAL",0,0,"87",,terminal_output +1628,4151448,"TERMINAL",0,0,"98",,terminal_output +1629,4151823,"slurm/dev/alfred/overfit_sample/train_tokenizer_overfit_sample_size_0.6_mio.sbatch",0,0,"",shellscript,tab +1630,4152498,"TERMINAL",0,0,"209",,terminal_output +1631,4153549,"TERMINAL",0,0,"130",,terminal_output +1632,4154589,"TERMINAL",0,0,"21",,terminal_output +1633,4155635,"TERMINAL",0,0,"32",,terminal_output +1634,4156680,"TERMINAL",0,0,"43",,terminal_output +1635,4157728,"TERMINAL",0,0,"54",,terminal_output +1636,4158776,"TERMINAL",0,0,"65",,terminal_output +1637,4159825,"TERMINAL",0,0,"76",,terminal_output +1638,4160874,"TERMINAL",0,0,"87",,terminal_output +1639,4161924,"TERMINAL",0,0,"98",,terminal_output +1640,4162966,"TERMINAL",0,0,"3040",,terminal_output +1641,4164022,"TERMINAL",0,0,"21",,terminal_output +1642,4164731,"TERMINAL",0,0,"W0000 00:00:1751041952.809003 2850326 gpu_device.cc:2341] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.\r\nSkipping registering GPU devices...\r\n",,terminal_output +1643,4165069,"TERMINAL",0,0,"32",,terminal_output +1644,4165928,"TERMINAL",0,0,"Running on 1 devices.\r\n",,terminal_output +1645,4166117,"TERMINAL",0,0,"43",,terminal_output +1646,4167019,"TERMINAL",0,0,"wandb: Currently logged in as: avocadoali (instant-uv) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin\r\n",,terminal_output +1647,4167165,"TERMINAL",0,0,"54",,terminal_output +1648,4167995,"TERMINAL",0,0,"wandb: Tracking run with wandb version 0.19.11\r\nwandb: Run data is saved locally in /hkfs/home/project/hk-project-pai00039/tum_ind3695/projects/jafar_run_overfit/wandb/run-20250627_183235-04z1gp11\r\nwandb: Run `wandb offline` to turn off syncing.\r\nwandb: Syncing run 4.3e-5\r\nwandb: ⭐️ View project at https://wandb.ai/instant-uv/jafar\r\nwandb: 🚀 View run at https://wandb.ai/instant-uv/jafar/runs/04z1gp11\r\n",,terminal_output +1649,4168212,"TERMINAL",0,0,"65",,terminal_output +1650,4169254,"TERMINAL",0,0,"76",,terminal_output +1651,4170293,"TERMINAL",0,0,"87",,terminal_output +1652,4171334,"TERMINAL",0,0,"98",,terminal_output +1653,4172376,"TERMINAL",0,0,"409",,terminal_output +1654,4173415,"TERMINAL",0,0,"150",,terminal_output +1655,4174457,"TERMINAL",0,0,"21",,terminal_output +1656,4175502,"TERMINAL",0,0,"32",,terminal_output +1657,4176549,"TERMINAL",0,0,"43",,terminal_output +1658,4177582,"TERMINAL",0,0,"54",,terminal_output +1659,4177780,"TERMINAL",0,0,"2025-06-27 18:32:45.856753: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1660,4178624,"TERMINAL",0,0,"65",,terminal_output +1661,4179653,"TERMINAL",0,0,"76",,terminal_output +1662,4180195,"TERMINAL",0,0,"2025-06-27 18:32:48.271926: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1663,4180681,"TERMINAL",0,0,"87",,terminal_output +1664,4181346,"TERMINAL",0,0,"Counting all components: ['encoder', 'vq', 'decoder']\r\nParameter counts:\r\n{'encoder': 41568, 'vq': 32768, 'decoder': 41552, 'total': 115888}\r\n",,terminal_output +1665,4181728,"TERMINAL",0,0,"98",,terminal_output +1666,4182012,"TERMINAL",0,0,"Starting training from step 0...\r\nbatch shape: (1, 16, 90, 160, 3)\r\n",,terminal_output +1667,4182789,"TERMINAL",0,0,"509",,terminal_output +1668,4183820,"TERMINAL",0,0,"12:00",,terminal_output +1669,4184865,"TERMINAL",0,0,"21",,terminal_output +1670,4185907,"TERMINAL",0,0,"32",,terminal_output +1671,4186950,"TERMINAL",0,0,"44",,terminal_output +1672,4187991,"TERMINAL",0,0,"65",,terminal_output +1673,4188451,"TERMINAL",0,0,"2025-06-27 18:32:56.487528: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:32:56.487634: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:32:56.487694: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:32:56.487713: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:32:56.487750: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n2025-06-27 18:32:56.488188: W external/xla/xla/service/gpu/autotuning/dot_search_space.cc:200] All configs were filtered out because none of them sufficiently match the hints. Maybe the hints set does not contain a good representative set of valid configs?Working around this by using the full hints set instead.\r\n",,terminal_output +1674,4189028,"TERMINAL",0,0,"76",,terminal_output +1675,4190065,"TERMINAL",0,0,"87",,terminal_output +1676,4191114,"TERMINAL",0,0,"98",,terminal_output +1677,4192152,"TERMINAL",0,0,"3:009",,terminal_output +1678,4193198,"TERMINAL",0,0,"110",,terminal_output +1679,4194239,"TERMINAL",0,0,"21",,terminal_output +1680,4195290,"TERMINAL",0,0,"32",,terminal_output +1681,4196336,"TERMINAL",0,0,"43",,terminal_output +1682,4197462,"TERMINAL",0,0,"54",,terminal_output +1683,4198485,"TERMINAL",0,0,"65",,terminal_output +1684,4199461,"TERMINAL",0,0,"76",,terminal_output diff --git a/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-fe1de2ac-919a-4753-a5bb-5c68f3cb240b1750773379086-2025_06_24-15.56.40.593/source.csv b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-fe1de2ac-919a-4753-a5bb-5c68f3cb240b1750773379086-2025_06_24-15.56.40.593/source.csv new file mode 100644 index 0000000000000000000000000000000000000000..ced52b047f335a99307d5a89efd1b246ffb51a19 --- /dev/null +++ b/507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20/crowd-code-fe1de2ac-919a-4753-a5bb-5c68f3cb240b1750773379086-2025_06_24-15.56.40.593/source.csv @@ -0,0 +1,32 @@ +Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type +1,9,"data_download/download_scripts/download_6xx.sbatch",0,0,"#!/usr/bin/env bash\n\n#SBATCH --nodes=1\n#SBATCH --ntasks-per-node=1\n#SBATCH --time=6:00:00\n#SBATCH --partition=cpuonly\n#SBATCH --account=hk-project-p0023960\n#SBATCH --output=logs/%x_%j.log\n#SBATCH --error=logs/%x_%j.log\n#SBATCH --mail-user=avocadoaling@gmail.com\n#SBATCH --job-name=download_6xx\n#SBATCH --mail-type=ALL\n\nsource ../.venv/bin/activate\n\n\nindex_file='index_json/all_6xx_Jun_29.json'\noutput_dir='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft'\n\npython download_scripts/download_videos.py --index_file_path $index_file --output_dir $output_dir \n",shellscript,tab +2,855,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"3:56:40 PM [info] Activating crowd-code\n3:56:40 PM [info] Welcome back tum_ind3695. Your user-id is '507ab0ec0dfe0c18ad7778dd15e072f92367194c94623114de802c8ed9c52e20'. Happy coding!\n3:56:40 PM [info] Recording started\n",Log,tab +3,1707,"data_download/download_scripts/download_6xx.sbatch",0,0,"",shellscript,tab +4,2927,"TERMINAL",0,0,"/bin/python3 /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt",,terminal_command +5,2981,"TERMINAL",0,0,"]633;E;2025-06-24 15:56:43 /bin/python3 /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/printEnvVariablesToFile.py /hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash/envVars.txt;31cb0e7a-7016-4ee5-abfe-86d22d42bb62]633;C",,terminal_output +6,2993,"TERMINAL",0,0,"]0;tum_ind3695@hkn1993:/hkfs/home/project/hk-project-pai00039/tum_ind3695/.cursor-server/extensions/ms-python.python-2025.6.1-linux-x64/python_files/deactivate/bash]633;D;0",,terminal_output +7,21309,"data_download/download_scripts/download_6xx.sbatch",586,0,"",shellscript,selection_mouse +8,45294,"data_download/download_scripts/download_videos.py",0,0,"import json\nimport requests\nimport os\nimport tyro\nimport logging\nfrom urllib.parse import urljoin\nfrom dataclasses import dataclass\nfrom pathlib import Path\nfrom tqdm import tqdm\nfrom multiprocessing import Pool, cpu_count\nimport time\n\n@dataclass\nclass DownloadVideos:\n index_file_path: str ='index_json/all_6xx_Jun_29.json'\n output_dir: str ='/hkfs/work/workspace/scratch/tum_ind3695-jafa_ws_shared/data/open_ai_minecraft'\n\ndef download_single_file(args):\n """"""Download a single file - designed to be used with multiprocessing""""""\n url, output_path, relpath = args\n \n if os.path.exists(output_path):\n return f""Skipped {relpath} (already exists)""\n \n # Create parent directories if they don't exist\n os.makedirs(os.path.dirname(output_path), exist_ok=True)\n \n try:\n response = requests.get(url, stream=True, timeout=30)\n if response.status_code == 200:\n file_size = 0\n with open(output_path, 'wb') as f:\n for chunk in response.iter_content(chunk_size=8192):\n if chunk:\n f.write(chunk)\n file_size += len(chunk)\n \n # Convert to MB for logging\n file_size_mb = file_size / (1024 * 1024)\n return f""Downloaded {relpath} ({file_size_mb:.2f} MB)""\n else:\n return f""Failed to download {relpath}: HTTP {response.status_code}""\n except requests.exceptions.RequestException as e:\n return f""Request failed for {relpath}: {e}""\n except Exception as e:\n return f""Unexpected error downloading {relpath}: {e}""\n\ndef download_dataset(index_file_path, output_dir, num_workers=64):\n # Load the index file\n with open(index_file_path, 'r') as f:\n index_data = json.load(f)\n \n basedir = index_data['basedir']\n relpaths = index_data['relpaths']\n \n # Filter for mp4 files only\n mp4_files = [(relpath, urljoin(basedir, relpath), os.path.join(output_dir, relpath)) \n for relpath in relpaths if relpath.endswith('.mp4')]\n \n print(f""Found {len(mp4_files)} MP4 files to download"")\n print(f""Using {num_workers} workers for parallel downloads"")\n \n # Use multiprocessing pool to download files in parallel\n start_time = time.time()\n \n if num_workers > len(mp4_files):\n num_workers = len(mp4_files)\n \n # Create a progress bar for overall progress\n with tqdm(total=len(mp4_files), desc=""Overall Download Progress"", unit=""files"") as pbar:\n with Pool(processes=num_workers) as pool:\n # Map the download function to all files (without passing pbar)\n results = []\n for result in pool.imap_unordered(download_single_file, \n [(url, output_path, relpath) for relpath, url, output_path in mp4_files]):\n results.append(result)\n pbar.update(1)\n # Print every 100th result to avoid overwhelming output\n if len(results) % 100 == 0:\n print(f""Completed {len(results)} downloads..."")\n \n # Print final results summary\n successful_downloads = sum(1 for r in results if ""Downloaded"" in r)\n skipped_files = sum(1 for r in results if ""Skipped"" in r)\n failed_downloads = len(results) - successful_downloads - skipped_files\n \n print(f""\nDownload Summary:"")\n print(f"" Successful downloads: {successful_downloads}"")\n print(f"" Skipped files: {skipped_files}"")\n print(f"" Failed downloads: {failed_downloads}"")\n \n end_time = time.time()\n total_time = end_time - start_time\n print(f""Download completed in {total_time:.2f} seconds"")\n\nif __name__ == ""__main__"":\n args = tyro.cli(DownloadVideos)\n\n output_dir = os.path.join(args.output_dir, os.path.basename(args.index_file_path).split('.')[0])\n os.makedirs(output_dir, exist_ok=True)\n\n num_workers = os.cpu_count()\n\n # print all args\n print(f""Index file path: {args.index_file_path}"")\n print(f""Output directory: {output_dir}"")\n print(f""Number of workers: {num_workers}"")\n\n # get cpu count\n download_dataset(args.index_file_path, output_dir, num_workers)\n",python,tab +9,46501,"data_download/download_scripts/download_videos.py",4131,0,"",python,selection_command +10,49029,"data_download/download_scripts/download_videos.py",4133,0,"",python,selection_mouse +11,50432,"data_download/download_scripts/download_videos.py",1625,0,"",python,selection_mouse +12,50797,"data_download/download_scripts/download_videos.py",1671,0,"",python,selection_mouse +13,50953,"data_download/download_scripts/download_videos.py",1664,10,"output_dir",python,selection_mouse +14,57528,"data_download/download_scripts/download_videos.py",2692,0,"",python,selection_mouse +15,58027,"data_download/download_scripts/download_videos.py",2703,0,"",python,selection_mouse +16,59001,"data_download/download_scripts/download_videos.py",2929,0,"",python,selection_mouse +17,62123,"data_download/download_scripts/download_videos.py",3388,0,"",python,selection_mouse +18,64346,"data_download/download_scripts/download_videos.py",3119,0,"",python,selection_mouse +19,64355,"data_download/download_scripts/download_videos.py",3118,0,"",python,selection_command +20,68771,"data_download/download_scripts/download_videos.py",3117,0,"",python,selection_command +21,75051,"data_download/download_scripts/download_videos.py",458,0,"",python,selection_mouse +22,75174,"data_download/download_scripts/download_videos.py",456,4,"args",python,selection_mouse +23,78234,"data_download/download_scripts/download_videos.py",2098,0,"",python,selection_mouse +24,80870,"data_download/download_scripts/download_videos.py",2710,0,"",python,selection_mouse +25,81326,"data_download/download_scripts/download_videos.py",2720,0,"",python,selection_mouse +26,81703,"data_download/download_scripts/download_videos.py",2718,20,"download_single_file",python,selection_mouse +27,83165,"data_download/download_scripts/download_videos.py",2721,0,"",python,selection_mouse +28,84631,"data_download/download_scripts/download_videos.py",1000,0,"",python,selection_mouse +29,85027,"data_download/download_scripts/download_videos.py",1099,0,"",python,selection_mouse +30,85437,"data_download/download_scripts/download_videos.py",1239,0,"",python,selection_mouse +31,86711,"data_download/download_scripts/download_videos.py",1302,0,"",python,selection_mouse